diff --git a/system/bin/aal b/system/bin/aal new file mode 100755 index 0000000000000000000000000000000000000000..3fd30e00f9594999232e79249b205dc72dfba1c6 Binary files /dev/null and b/system/bin/aal differ diff --git a/system/bin/acpi b/system/bin/acpi new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/acpi @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/adbd b/system/bin/adbd new file mode 100755 index 0000000000000000000000000000000000000000..a9b658c0b09e575392809bf949a6fea6be4c3d0b Binary files /dev/null and b/system/bin/adbd differ diff --git a/system/bin/aee b/system/bin/aee new file mode 100755 index 0000000000000000000000000000000000000000..60dd22acb7ba10b69a39b73508a3806b699dc85c Binary files /dev/null and b/system/bin/aee differ diff --git a/system/bin/aee_aed b/system/bin/aee_aed new file mode 100755 index 0000000000000000000000000000000000000000..42b7d953f650141c4e156aad0dedb7fc3986788e Binary files /dev/null and b/system/bin/aee_aed differ diff --git a/system/bin/aee_archive b/system/bin/aee_archive new file mode 100755 index 0000000000000000000000000000000000000000..456094085b2d1f15fb617a6f918cbda8631f4ba9 Binary files /dev/null and b/system/bin/aee_archive differ diff --git a/system/bin/aee_dumpstate b/system/bin/aee_dumpstate new file mode 100755 index 0000000000000000000000000000000000000000..16e29ee2bdd6e6d62960c42f54561acbadfa65fc Binary files /dev/null and b/system/bin/aee_dumpstate differ diff --git a/system/bin/am b/system/bin/am new file mode 100755 index 0000000000000000000000000000000000000000..54c2d394be2c329e4d81233da8d326ff99820f01 --- /dev/null +++ b/system/bin/am @@ -0,0 +1,9 @@ +#!/system/bin/sh + +if [ "$1" != "instrument" ] ; then + cmd activity "$@" +else + base=/system + export CLASSPATH=$base/framework/am.jar + exec app_process $base/bin com.android.commands.am.Am "$@" +fi diff --git a/system/bin/app_process b/system/bin/app_process new file mode 120000 index 0000000000000000000000000000000000000000..ca041956cd62ea998f85bfffde364ce45421fe12 --- /dev/null +++ b/system/bin/app_process @@ -0,0 +1 @@ +app_process32 \ No newline at end of file diff --git a/system/bin/app_process32 b/system/bin/app_process32 new file mode 100755 index 0000000000000000000000000000000000000000..e25c75073a29bcfbaaeadb793c1b7af1e1ca3561 Binary files /dev/null and b/system/bin/app_process32 differ diff --git a/system/bin/applypatch b/system/bin/applypatch new file mode 100755 index 0000000000000000000000000000000000000000..6594f67a5830975e17f11e68c8fc91b0d6c8f4e0 Binary files /dev/null and b/system/bin/applypatch differ diff --git a/system/bin/appops b/system/bin/appops new file mode 100755 index 0000000000000000000000000000000000000000..5dc85aa0979ce762d5e90fa6a4137b475a2e022b --- /dev/null +++ b/system/bin/appops @@ -0,0 +1,2 @@ +#!/system/bin/sh +cmd appops "$@" diff --git a/system/bin/appwidget b/system/bin/appwidget new file mode 100755 index 0000000000000000000000000000000000000000..610500929519116d6ce8ddd3cfc56b7c20b8b8e2 --- /dev/null +++ b/system/bin/appwidget @@ -0,0 +1,5 @@ +# Script to start "appwidget" on the device, which has a very rudimentary shell. +base=/system +export CLASSPATH=$base/framework/appwidget.jar +exec app_process $base/bin com.android.commands.appwidget.AppWidget "$@" + diff --git a/system/bin/art b/system/bin/art new file mode 100755 index 0000000000000000000000000000000000000000..077dc4a8b7f279da4cfdfa85579756fec55bc6cc --- /dev/null +++ b/system/bin/art @@ -0,0 +1,315 @@ +# Copyright (C) 2011 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# This script is used on host and device. It uses a common subset +# shell dialect that should work on the host (e.g. bash), and +# Android (e.g. mksh). + +# Globals +ARCHS={arm,arm64,mips,mips64,x86,x86_64} +ART_BINARY=dalvikvm +DELETE_ANDROID_DATA="no" +LAUNCH_WRAPPER= +LIBART=libart.so +JIT_PROFILE="no" +VERBOSE="no" +EXTRA_OPTIONS=() + +# Follow all sym links to get the program name. +if [ z"$BASH_SOURCE" != z ]; then + PROG_NAME="$BASH_SOURCE" +else + PROG_NAME="$0" +fi +while [ -h "$PROG_NAME" ]; do + # On Mac OS, readlink -f doesn't work. + PROG_NAME="$(readlink "$PROG_NAME")" +done + +function find_libdir() { + # Get the actual file, $1 is the ART_BINARY_PATH and may be a symbolic link. + # Use realpath instead of readlink because Android does not have a readlink. + if [[ "$(realpath "$1")" == *dalvikvm64 ]]; then + echo "lib64" + else + echo "lib" + fi +} + +function replace_compiler_filter_with_quicken() { + ARGS_WITH_QUICKEN=("$@") + + found="false" + ((index=0)) + while ((index <= $#)); do + what="${ARGS_WITH_QUICKEN[$index]}" + + case "$what" in + --compiler-filter=*) + ARGS_WITH_QUICKEN[$index]="--compiler-filter=quicken" + found="true" + ;; + esac + + ((index++)) + shift + done + if [ "$found" != "true" ]; then + ARGS_WITH_QUICKEN=(-Xcompiler-option --compiler-filter=quicken "${ARGS_WITH_QUICKEN[@]}") + fi +} + +function usage() { + cat 1>&2 <<EOF +Usage: art [OPTIONS] [--] [ART_OPTIONS] CLASS + +Supported OPTIONS include: + --32 Use the 32-bit Android Runtime. + --64 Use the 64-bit Android Runtime. + --callgrind Launch the Android Runtime in callgrind. + -d Use the debug ART library (libartd.so). + --debug Equivalent to -d. + --gdb Launch the Android Runtime in gdb. + --help Display usage message. + --invoke-with <program> Launch the Android Runtime in <program>. + --perf Launch the Android Runtime with perf recording. + --perf-report Launch the Android Runtime with perf recording with + report upon completion. + --profile Run with profiling, then run using profile data. + --verbose Run script verbosely. + +The ART_OPTIONS are passed directly to the Android Runtime. + +Example: + art --32 -cp my_classes.dex MainClass + +Common errors: + 1) Not having core.art available (see $ANDROID_BUILD_TOP/art/Android.mk). + eg m -j32 build-art-host + 2) Not having boot.art available (see $ANDROID_BUILD_TOP/build/make/core/dex_preopt_libart_boot.mk) + eg m -j32 out/target/product/generic_x86_64/dex_bootjars/system/framework/x86_64/boot.art +EOF +} + +function clean_android_data() { + if [ "$DELETE_ANDROID_DATA" = "yes" ]; then + rm -rf $ANDROID_DATA + fi +} + +# Given 'VAR1=VAL VAR2=VAL2 ... cmd arg1 arg2 ... argN' run the 'cmd' with the args +# with the modified environment {VAR1=VAL,VAL2=,...}. +# +# Also prints the command to be run if verbose mode is enabled. +function verbose_run() { + if [ "$VERBOSE" = "yes" ]; then + echo "$@" + fi + + env "$@" +} + +# Automatically find the boot image location. It uses core.art by default. +# On a real device, it might only have a boot.art, so use that instead when core.art does not exist. +function detect_boot_image_location() { + local image_location_dir="$ANDROID_ROOT/framework" + local image_location_name="core.art" + + local maybe_arch + local core_image_exists="false" + + # Parse ARCHS={a,b,c,d} syntax. + local array + IFS=, read -a array <<< "${ARCHS:1:(-1)}"; + for maybe_arch in "${array[@]}"; do + if [[ -e "$image_location_dir/$maybe_arch/$image_location_name" ]]; then + core_image_exists="true" + break + fi + done + + if [[ "$core_image_exists" == "false" ]]; then + image_location_name="boot.art" + fi + + local image_location="$image_location_dir/$image_location_name" + echo "$image_location" +} + +function run_art() { + local image_location="$(detect_boot_image_location)" + + verbose_run ANDROID_DATA=$ANDROID_DATA \ + ANDROID_ROOT=$ANDROID_ROOT \ + LD_LIBRARY_PATH=$LD_LIBRARY_PATH \ + PATH=$ANDROID_ROOT/bin:$PATH \ + LD_USE_LOAD_BIAS=1 \ + $LAUNCH_WRAPPER $ART_BINARY_PATH $lib \ + -XXlib:$LIBART \ + -Xnorelocate \ + -Ximage:"$image_location" \ + "$@" +} + +while [[ "$1" = "-"* ]]; do + case "$1" in + --) + # No more arguments for this script. + shift + break + ;; + --32) + ART_BINARY=dalvikvm32 + ;; + --64) + ART_BINARY=dalvikvm64 + ;; + --callgrind) + LAUNCH_WRAPPER="valgrind --tool=callgrind" + ;; + -d) + ;& # Fallthrough + --debug) + LIBART="libartd.so" + # Expect that debug mode wants all checks. + EXTRA_OPTIONS+=(-XX:SlowDebug=true) + ;; + --gdb) + LIBART="libartd.so" + LAUNCH_WRAPPER="gdb --args" + ;; + --help) + usage + exit 0 + ;; + --invoke-with) + LAUNCH_WRAPPER=$2 + shift + ;; + --perf) + PERF="record" + ;; + --perf-report) + PERF="report" + ;; + --profile) + JIT_PROFILE="yes" + ;; + --verbose) + VERBOSE="yes" + ;; + --*) + echo "unknown option: $1" 1>&2 + usage + exit 1 + ;; + *) + break + ;; + esac + shift +done + +if [ $# -eq 0 ]; then + usage + exit 1 +fi + +PROG_DIR="$(cd "${PROG_NAME%/*}" ; pwd -P)" +ANDROID_ROOT=$PROG_DIR/.. +ART_BINARY_PATH=$ANDROID_ROOT/bin/$ART_BINARY + +if [ ! -x "$ART_BINARY_PATH" ]; then + cat 1>&2 <<EOF +Android Runtime not found: $ART_BINARY_PATH +This script should be in the same directory as the Android Runtime ($ART_BINARY). +EOF + exit 1 +fi + +LIBDIR="$(find_libdir $ART_BINARY_PATH)" +LD_LIBRARY_PATH=$ANDROID_ROOT/$LIBDIR + +# If ANDROID_DATA is the system ANDROID_DATA or is not set, use our own, +# and ensure we delete it at the end. +if [ "$ANDROID_DATA" = "/data" ] || [ "$ANDROID_DATA" = "" ]; then + if [[ $PWD != / ]]; then + ANDROID_DATA="$PWD/android-data$$" + else + # Use /data/local/tmp when running this from adb shell, since it starts out in / + # by default. + ANDROID_DATA="$ANDROID_DATA/local/tmp/android-data$$" + fi + mkdir -p $ANDROID_DATA/dalvik-cache/$ARCHS + DELETE_ANDROID_DATA="yes" +fi + +if [ "$PERF" != "" ]; then + LAUNCH_WRAPPER="perf record -g -o $ANDROID_DATA/perf.data -e cycles:u $LAUNCH_WRAPPER" + EXTRA_OPTIONS+=(-Xcompiler-option --generate-debug-info) +fi + +if [ "$JIT_PROFILE" = "yes" ]; then + # Create the profile. The runtime expects profiles to be created before + # execution. + PROFILE_PATH="$ANDROID_DATA/primary.prof" + touch $PROFILE_PATH + + # Replace the compiler filter with quicken so that we + # can capture the profile. + ARGS_WITH_QUICKEN= + replace_compiler_filter_with_quicken "$@" + + run_art -Xjitsaveprofilinginfo \ + -Xps-min-methods-to-save:1 \ + -Xps-min-classes-to-save:1 \ + -Xps-min-notification-before-wake:10 \ + -Xps-profile-path:$PROFILE_PATH \ + -Xusejit:true \ + "${ARGS_WITH_QUICKEN[@]}" \ + "&>" "$ANDROID_DATA/profile_gen.log" + EXIT_STATUS=$? + + if [ $EXIT_STATUS != 0 ]; then + cat "$ANDROID_DATA/profile_gen.log" + clean_android_data + exit $EXIT_STATUS + fi + + # Wipe dalvik-cache to prepare it for the next invocation. + rm -rf $ANDROID_DATA/dalvik-cache/$ARCHS/* + + # Append arguments so next invocation of run_art uses the profile. + EXTRA_OPTIONS+=(-Xcompiler-option --profile-file="$PROFILE_PATH") +fi + +# Protect additional arguments in quotes to preserve whitespaces (used by +# run-jdwp-test.sh when running on device), '$' (may be used as part of +# classpath) and other special characters when evaluated. +EXTRA_OPTIONS+=("$@") + +run_art "${EXTRA_OPTIONS[@]}" +EXIT_STATUS=$? + +if [ "$PERF" != "" ]; then + if [ "$PERF" = report ]; then + perf report -i $ANDROID_DATA/perf.data + fi + echo "Perf data saved in: $ANDROID_DATA/perf.data" +else + # Perf output is placed under $ANDROID_DATA so not cleaned when perf options used. + clean_android_data +fi + +exit $EXIT_STATUS diff --git a/system/bin/atcid b/system/bin/atcid new file mode 100755 index 0000000000000000000000000000000000000000..d15f1459108bfd408a41ce4e7ef05a8c5235c88b Binary files /dev/null and b/system/bin/atcid differ diff --git a/system/bin/atrace b/system/bin/atrace new file mode 100755 index 0000000000000000000000000000000000000000..bc1dcab5ed66e9d7c1fb4c28b840819b706fce79 Binary files /dev/null and b/system/bin/atrace differ diff --git a/system/bin/audiocmdservice_atci b/system/bin/audiocmdservice_atci new file mode 100755 index 0000000000000000000000000000000000000000..0d0160104db375dadff4b82db297b9d8121ff23c Binary files /dev/null and b/system/bin/audiocmdservice_atci differ diff --git a/system/bin/audioserver b/system/bin/audioserver new file mode 100755 index 0000000000000000000000000000000000000000..317a88658ba71529b3d545c2d7e2aaf250b6e6c4 Binary files /dev/null and b/system/bin/audioserver differ diff --git a/system/bin/badblocks b/system/bin/badblocks new file mode 100755 index 0000000000000000000000000000000000000000..a27a6c895c85552fa50e490aa4537d007feda3a4 Binary files /dev/null and b/system/bin/badblocks differ diff --git a/system/bin/base64 b/system/bin/base64 new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/base64 @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/basename b/system/bin/basename new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/basename @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/batterywarning b/system/bin/batterywarning new file mode 100755 index 0000000000000000000000000000000000000000..cfa3e36287260834055d4da11e903c348e8c0e5c Binary files /dev/null and b/system/bin/batterywarning differ diff --git a/system/bin/bcc b/system/bin/bcc new file mode 100755 index 0000000000000000000000000000000000000000..2fce80c1316a53fa4a493f976ddb06990a250c05 Binary files /dev/null and b/system/bin/bcc differ diff --git a/system/bin/blkid b/system/bin/blkid new file mode 100755 index 0000000000000000000000000000000000000000..5524554c183d31b3f048afb8bf11be7c0aa01f23 Binary files /dev/null and b/system/bin/blkid differ diff --git a/system/bin/blockdev b/system/bin/blockdev new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/blockdev @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/bmgr b/system/bin/bmgr new file mode 100755 index 0000000000000000000000000000000000000000..6b4bbe2d90326f402b60754420c8abdc3e8897bf --- /dev/null +++ b/system/bin/bmgr @@ -0,0 +1,7 @@ +# Script to start "bmgr" on the device, which has a very rudimentary +# shell. +# +base=/system +export CLASSPATH=$base/framework/bmgr.jar +exec app_process $base/bin com.android.commands.bmgr.Bmgr "$@" + diff --git a/system/bin/boot_logo_updater b/system/bin/boot_logo_updater new file mode 100755 index 0000000000000000000000000000000000000000..95edc67fa2a3ce2ad30d55a29a5152d9315c32ef Binary files /dev/null and b/system/bin/boot_logo_updater differ diff --git a/system/bin/bootanimation b/system/bin/bootanimation new file mode 100755 index 0000000000000000000000000000000000000000..88e7854257c61671f7de8e23c998c75419b801da Binary files /dev/null and b/system/bin/bootanimation differ diff --git a/system/bin/bootstat b/system/bin/bootstat new file mode 100755 index 0000000000000000000000000000000000000000..6fac7783fde5de3b3c6be2155fbbe917cc9fdaca Binary files /dev/null and b/system/bin/bootstat differ diff --git a/system/bin/bu b/system/bin/bu new file mode 100755 index 0000000000000000000000000000000000000000..e8dbc318818f36ddd70ff0fb37599e8f93766574 --- /dev/null +++ b/system/bin/bu @@ -0,0 +1,6 @@ +# Script to start "bu" on the device +# +base=/system +export CLASSPATH=$base/framework/bu.jar +exec app_process $base/bin com.android.commands.bu.Backup "$@" + diff --git a/system/bin/bugreport b/system/bin/bugreport new file mode 100755 index 0000000000000000000000000000000000000000..163de93909bb15dfca097ae2cf20866325a0b8bc Binary files /dev/null and b/system/bin/bugreport differ diff --git a/system/bin/bugreportz b/system/bin/bugreportz new file mode 100755 index 0000000000000000000000000000000000000000..2d5d71f7bd4c38238ef56a4a4094a774da2a9647 Binary files /dev/null and b/system/bin/bugreportz differ diff --git a/system/bin/bunzip2 b/system/bin/bunzip2 new file mode 120000 index 0000000000000000000000000000000000000000..a989e1da11aef72b6904b826475a113eee556a5b --- /dev/null +++ b/system/bin/bunzip2 @@ -0,0 +1 @@ +bzip2 \ No newline at end of file diff --git a/system/bin/bzcat b/system/bin/bzcat new file mode 120000 index 0000000000000000000000000000000000000000..a989e1da11aef72b6904b826475a113eee556a5b --- /dev/null +++ b/system/bin/bzcat @@ -0,0 +1 @@ +bzip2 \ No newline at end of file diff --git a/system/bin/bzip2 b/system/bin/bzip2 new file mode 100755 index 0000000000000000000000000000000000000000..4b890ba26edf1c47880f9954984b421b7d4908c5 Binary files /dev/null and b/system/bin/bzip2 differ diff --git a/system/bin/cal b/system/bin/cal new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/cal @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/cameraserver b/system/bin/cameraserver new file mode 100755 index 0000000000000000000000000000000000000000..21270a60040aa29a1308c2e6bfcb697cde347db2 Binary files /dev/null and b/system/bin/cameraserver differ diff --git a/system/bin/cat b/system/bin/cat new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/cat @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/chcon b/system/bin/chcon new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/chcon @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/chgrp b/system/bin/chgrp new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/chgrp @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/chmod b/system/bin/chmod new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/chmod @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/chown b/system/bin/chown new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/chown @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/chroot b/system/bin/chroot new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/chroot @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/chrt b/system/bin/chrt new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/chrt @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/cksum b/system/bin/cksum new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/cksum @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/clatd b/system/bin/clatd new file mode 100755 index 0000000000000000000000000000000000000000..bad230f1edc3657a3963db72580dd884bb97d1bf Binary files /dev/null and b/system/bin/clatd differ diff --git a/system/bin/clear b/system/bin/clear new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/clear @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/cmd b/system/bin/cmd new file mode 100755 index 0000000000000000000000000000000000000000..901572d844fc44c4c763df45cd86d7795b1f170a Binary files /dev/null and b/system/bin/cmd differ diff --git a/system/bin/cmp b/system/bin/cmp new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/cmp @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/comm b/system/bin/comm new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/comm @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/content b/system/bin/content new file mode 100755 index 0000000000000000000000000000000000000000..a8e056d04d6901a57d8eb6c758a3c06569f3a3f1 --- /dev/null +++ b/system/bin/content @@ -0,0 +1,5 @@ +# Script to start "content" on the device, which has a very rudimentary shell. +base=/system +export CLASSPATH=$base/framework/content.jar +exec app_process $base/bin com.android.commands.content.Content "$@" + diff --git a/system/bin/cp b/system/bin/cp new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/cp @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/cpio b/system/bin/cpio new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/cpio @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/crash_dump32 b/system/bin/crash_dump32 new file mode 100755 index 0000000000000000000000000000000000000000..710b62a8fc19fe01e8c275deee2ab88e304e2776 Binary files /dev/null and b/system/bin/crash_dump32 differ diff --git a/system/bin/cut b/system/bin/cut new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/cut @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/dalvikvm b/system/bin/dalvikvm new file mode 120000 index 0000000000000000000000000000000000000000..fae7fb90c2e5b20f0300ffc753c732dca49cf18e --- /dev/null +++ b/system/bin/dalvikvm @@ -0,0 +1 @@ +dalvikvm32 \ No newline at end of file diff --git a/system/bin/dalvikvm32 b/system/bin/dalvikvm32 new file mode 100755 index 0000000000000000000000000000000000000000..9fa782302e98231c5a669c4d4e193bc65f08970f Binary files /dev/null and b/system/bin/dalvikvm32 differ diff --git a/system/bin/date b/system/bin/date new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/date @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/dd b/system/bin/dd new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/dd @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/debuggerd b/system/bin/debuggerd new file mode 100755 index 0000000000000000000000000000000000000000..8c4e099287335e0f8196001b518d36c89f792a78 Binary files /dev/null and b/system/bin/debuggerd differ diff --git a/system/bin/dex2oat b/system/bin/dex2oat new file mode 100755 index 0000000000000000000000000000000000000000..3f913f30d54e7e0a669246b0b67d32b07bfd8aa1 Binary files /dev/null and b/system/bin/dex2oat differ diff --git a/system/bin/dexdiag b/system/bin/dexdiag new file mode 100755 index 0000000000000000000000000000000000000000..c0140a29f66ab8b5868495ee5fb01c61d7ab914c Binary files /dev/null and b/system/bin/dexdiag differ diff --git a/system/bin/dexdump b/system/bin/dexdump new file mode 100755 index 0000000000000000000000000000000000000000..7f946b996c12b045ff23d9d319e83a72a5cf9640 Binary files /dev/null and b/system/bin/dexdump differ diff --git a/system/bin/dexlist b/system/bin/dexlist new file mode 100755 index 0000000000000000000000000000000000000000..32ddd24f9926f5a19a9bed0730ee7be205b419d6 Binary files /dev/null and b/system/bin/dexlist differ diff --git a/system/bin/dexoptanalyzer b/system/bin/dexoptanalyzer new file mode 100755 index 0000000000000000000000000000000000000000..89360fc6e8e1c2b3f94435ccbb2d0590d9063dc6 Binary files /dev/null and b/system/bin/dexoptanalyzer differ diff --git a/system/bin/df b/system/bin/df new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/df @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/diff b/system/bin/diff new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/diff @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/dirname b/system/bin/dirname new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/dirname @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/dmesg b/system/bin/dmesg new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/dmesg @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/dnsmasq b/system/bin/dnsmasq new file mode 100755 index 0000000000000000000000000000000000000000..18dc5d1914aaa0473d3a2efd3f26aabaf127256e Binary files /dev/null and b/system/bin/dnsmasq differ diff --git a/system/bin/dos2unix b/system/bin/dos2unix new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/dos2unix @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/dpm b/system/bin/dpm new file mode 100755 index 0000000000000000000000000000000000000000..c2e5cbb61c18e1cf1dfdb2b387c899029d084480 --- /dev/null +++ b/system/bin/dpm @@ -0,0 +1,6 @@ +# Script to start "dpm" on the device +# +base=/system +export CLASSPATH=$base/framework/dpm.jar +exec app_process $base/bin com.android.commands.dpm.Dpm "$@" + diff --git a/system/bin/drmserver b/system/bin/drmserver new file mode 100755 index 0000000000000000000000000000000000000000..20069bb8a0cc20898623aceea77fe96e152439d5 Binary files /dev/null and b/system/bin/drmserver differ diff --git a/system/bin/du b/system/bin/du new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/du @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/dumpstate b/system/bin/dumpstate new file mode 100755 index 0000000000000000000000000000000000000000..7de8150e9a04a412d3bb6f918a74ca333db82b6c Binary files /dev/null and b/system/bin/dumpstate differ diff --git a/system/bin/dumpsys b/system/bin/dumpsys new file mode 100755 index 0000000000000000000000000000000000000000..32195c1ecda2c8c2562748d1a01e482c62f08bb6 Binary files /dev/null and b/system/bin/dumpsys differ diff --git a/system/bin/e2fsck b/system/bin/e2fsck new file mode 100755 index 0000000000000000000000000000000000000000..2ed626a9f9f037bd21ae6ab5fd26e4dad02ac17d Binary files /dev/null and b/system/bin/e2fsck differ diff --git a/system/bin/e2fsdroid b/system/bin/e2fsdroid new file mode 100755 index 0000000000000000000000000000000000000000..e64fc7a77153f3131d6bc2d3de1e08a99e15ca9d Binary files /dev/null and b/system/bin/e2fsdroid differ diff --git a/system/bin/echo b/system/bin/echo new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/echo @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/egrep b/system/bin/egrep new file mode 120000 index 0000000000000000000000000000000000000000..9b059dc5d829bf98c58317d4d6f9e75249e48b9d --- /dev/null +++ b/system/bin/egrep @@ -0,0 +1 @@ +grep \ No newline at end of file diff --git a/system/bin/emdlogger1 b/system/bin/emdlogger1 new file mode 100755 index 0000000000000000000000000000000000000000..11983377bccff9f916975cabc4f869dd9320a0c9 Binary files /dev/null and b/system/bin/emdlogger1 differ diff --git a/system/bin/emdlogger2 b/system/bin/emdlogger2 new file mode 100755 index 0000000000000000000000000000000000000000..5487a53841c2d237d7ba255c25ff8237837f8353 Binary files /dev/null and b/system/bin/emdlogger2 differ diff --git a/system/bin/emdlogger5 b/system/bin/emdlogger5 new file mode 100755 index 0000000000000000000000000000000000000000..c01ba28b341e3a69929f23038dd6e5a50b8f6c0f Binary files /dev/null and b/system/bin/emdlogger5 differ diff --git a/system/bin/env b/system/bin/env new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/env @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/expand b/system/bin/expand new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/expand @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/expr b/system/bin/expr new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/expr @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/factory b/system/bin/factory new file mode 100755 index 0000000000000000000000000000000000000000..06ebec1548a7440eec5dcb320a8dd23fe17cf168 Binary files /dev/null and b/system/bin/factory differ diff --git a/system/bin/fallocate b/system/bin/fallocate new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/fallocate @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/false b/system/bin/false new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/false @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/fgrep b/system/bin/fgrep new file mode 120000 index 0000000000000000000000000000000000000000..9b059dc5d829bf98c58317d4d6f9e75249e48b9d --- /dev/null +++ b/system/bin/fgrep @@ -0,0 +1 @@ +grep \ No newline at end of file diff --git a/system/bin/file b/system/bin/file new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/file @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/find b/system/bin/find new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/find @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/flock b/system/bin/flock new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/flock @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/free b/system/bin/free new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/free @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/fsck.f2fs b/system/bin/fsck.f2fs new file mode 100755 index 0000000000000000000000000000000000000000..58cf1c6117762349320e075abe087367ae4dcf11 Binary files /dev/null and b/system/bin/fsck.f2fs differ diff --git a/system/bin/fsck_msdos b/system/bin/fsck_msdos new file mode 100755 index 0000000000000000000000000000000000000000..fd56025f044a5928eb58caa73b7863c5838cc46e Binary files /dev/null and b/system/bin/fsck_msdos differ diff --git a/system/bin/gatekeeperd b/system/bin/gatekeeperd new file mode 100755 index 0000000000000000000000000000000000000000..9c43a98746d200f7c25ab94f9b8b55830e0d1970 Binary files /dev/null and b/system/bin/gatekeeperd differ diff --git a/system/bin/ged_srv b/system/bin/ged_srv new file mode 100755 index 0000000000000000000000000000000000000000..3b9c61f287f0adbb3ecce7d0915b5b9891e2b981 Binary files /dev/null and b/system/bin/ged_srv differ diff --git a/system/bin/getenforce b/system/bin/getenforce new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/getenforce @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/getevent b/system/bin/getevent new file mode 120000 index 0000000000000000000000000000000000000000..a7cf9a836224b834d2f81b63e885735abef189cb --- /dev/null +++ b/system/bin/getevent @@ -0,0 +1 @@ +toolbox \ No newline at end of file diff --git a/system/bin/getprop b/system/bin/getprop new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/getprop @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/grep b/system/bin/grep new file mode 100755 index 0000000000000000000000000000000000000000..d1968c51116c9bbc8b648fcf0f3ad2ee8627e21c Binary files /dev/null and b/system/bin/grep differ diff --git a/system/bin/groups b/system/bin/groups new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/groups @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/gunzip b/system/bin/gunzip new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/gunzip @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/gzip b/system/bin/gzip new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/gzip @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/head b/system/bin/head new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/head @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/healthd b/system/bin/healthd new file mode 100755 index 0000000000000000000000000000000000000000..6ec9113c4d7b8ed144f4fb0a9cfd057f5aafa72e Binary files /dev/null and b/system/bin/healthd differ diff --git a/system/bin/hid b/system/bin/hid new file mode 100755 index 0000000000000000000000000000000000000000..2359fcd738ddc9a1fd07ec7878114ff008d0a627 --- /dev/null +++ b/system/bin/hid @@ -0,0 +1,8 @@ +#!/system/bin/sh +# +# Script to start "hid" on the device, which has a very rudimentary +# shell. +# +base=/system +export CLASSPATH=$base/framework/hid.jar +exec app_process $base/bin com.android.commands.hid.Hid "$@" diff --git a/system/bin/hostname b/system/bin/hostname new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/hostname @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/hw/android.hidl.allocator@1.0-service b/system/bin/hw/android.hidl.allocator@1.0-service new file mode 100755 index 0000000000000000000000000000000000000000..d392f3e2495c3fbf301156d863c8db58c61c9f5e Binary files /dev/null and b/system/bin/hw/android.hidl.allocator@1.0-service differ diff --git a/system/bin/hwclock b/system/bin/hwclock new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/hwclock @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/hwservicemanager b/system/bin/hwservicemanager new file mode 100755 index 0000000000000000000000000000000000000000..30eb6699bf0c8dc1f765b3b369c5b0a88d04b2d9 Binary files /dev/null and b/system/bin/hwservicemanager differ diff --git a/system/bin/id b/system/bin/id new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/id @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/idmap b/system/bin/idmap new file mode 100755 index 0000000000000000000000000000000000000000..4782ed4eb47426701bce160b2046a5e543ae03a9 Binary files /dev/null and b/system/bin/idmap differ diff --git a/system/bin/ifconfig b/system/bin/ifconfig new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/ifconfig @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/ime b/system/bin/ime new file mode 100755 index 0000000000000000000000000000000000000000..96c56d3bde0ac426902e4c71c09d84ab77463480 --- /dev/null +++ b/system/bin/ime @@ -0,0 +1,7 @@ +# Script to start "pm" on the device, which has a very rudimentary +# shell. +# +base=/system +export CLASSPATH=$base/framework/ime.jar +exec app_process $base/bin com.android.commands.ime.Ime "$@" + diff --git a/system/bin/incident b/system/bin/incident new file mode 100755 index 0000000000000000000000000000000000000000..7a21f5d945b7f59f81041d803bf40287e7305c87 Binary files /dev/null and b/system/bin/incident differ diff --git a/system/bin/incidentd b/system/bin/incidentd new file mode 100755 index 0000000000000000000000000000000000000000..d3b1e65427f1a1104ee3856a528fda18abb73e68 Binary files /dev/null and b/system/bin/incidentd differ diff --git a/system/bin/inotifyd b/system/bin/inotifyd new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/inotifyd @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/input b/system/bin/input new file mode 100755 index 0000000000000000000000000000000000000000..7f1a18e369c6999069ee294ed627b06fe9f24b08 --- /dev/null +++ b/system/bin/input @@ -0,0 +1,7 @@ +# Script to start "input" on the device, which has a very rudimentary +# shell. +# +base=/system +export CLASSPATH=$base/framework/input.jar +exec app_process $base/bin com.android.commands.input.Input "$@" + diff --git a/system/bin/insmod b/system/bin/insmod new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/insmod @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/install-recovery.sh b/system/bin/install-recovery.sh new file mode 100755 index 0000000000000000000000000000000000000000..3a1ff139c1615bd0c5a2bcd21b2b8fcc4f3fc571 --- /dev/null +++ b/system/bin/install-recovery.sh @@ -0,0 +1,6 @@ +#!/system/bin/sh +if ! applypatch -c EMMC:/dev/block/platform/bootdevice/by-name/recovery:12258928:556198215586df7e79b9a9f17248df5c59947b56; then + applypatch -b /system/etc/recovery-resource.dat EMMC:/dev/block/platform/bootdevice/by-name/boot:7951984:edabed7b0e7381fedde0223e8e9674dc9a63bfb6 EMMC:/dev/block/platform/bootdevice/by-name/recovery 556198215586df7e79b9a9f17248df5c59947b56 12258928 edabed7b0e7381fedde0223e8e9674dc9a63bfb6:/system/recovery-from-boot.p && log -t recovery "Installing new recovery image: succeeded" || log -t recovery "Installing new recovery image: failed" +else + log -t recovery "Recovery image already installed" +fi diff --git a/system/bin/installd b/system/bin/installd new file mode 100755 index 0000000000000000000000000000000000000000..70a2b3f6244ef5613d9c181f47b0ea9d827a3fe0 Binary files /dev/null and b/system/bin/installd differ diff --git a/system/bin/ionice b/system/bin/ionice new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/ionice @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/iorenice b/system/bin/iorenice new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/iorenice @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/ip b/system/bin/ip new file mode 100755 index 0000000000000000000000000000000000000000..5fbf1ed32124c97c10d1f799abf388fd323cec80 Binary files /dev/null and b/system/bin/ip differ diff --git a/system/bin/ip-wrapper-1.0 b/system/bin/ip-wrapper-1.0 new file mode 120000 index 0000000000000000000000000000000000000000..cf5c05df522dedc654dd0012a1b40a44c19793c9 --- /dev/null +++ b/system/bin/ip-wrapper-1.0 @@ -0,0 +1 @@ +netutils-wrapper-1.0 \ No newline at end of file diff --git a/system/bin/ip6tables b/system/bin/ip6tables new file mode 100755 index 0000000000000000000000000000000000000000..234100b92ef51f3b82d4a0b676156d0892610d90 Binary files /dev/null and b/system/bin/ip6tables differ diff --git a/system/bin/ip6tables-restore b/system/bin/ip6tables-restore new file mode 120000 index 0000000000000000000000000000000000000000..54d4c75f53ca0f7b3a9eac44643b38cc097d27f3 --- /dev/null +++ b/system/bin/ip6tables-restore @@ -0,0 +1 @@ +ip6tables \ No newline at end of file diff --git a/system/bin/ip6tables-save b/system/bin/ip6tables-save new file mode 120000 index 0000000000000000000000000000000000000000..54d4c75f53ca0f7b3a9eac44643b38cc097d27f3 --- /dev/null +++ b/system/bin/ip6tables-save @@ -0,0 +1 @@ +ip6tables \ No newline at end of file diff --git a/system/bin/ip6tables-wrapper-1.0 b/system/bin/ip6tables-wrapper-1.0 new file mode 120000 index 0000000000000000000000000000000000000000..cf5c05df522dedc654dd0012a1b40a44c19793c9 --- /dev/null +++ b/system/bin/ip6tables-wrapper-1.0 @@ -0,0 +1 @@ +netutils-wrapper-1.0 \ No newline at end of file diff --git a/system/bin/iptables b/system/bin/iptables new file mode 100755 index 0000000000000000000000000000000000000000..476d0cb23ef6e2b4259f1a5c00391344dd4ddc08 Binary files /dev/null and b/system/bin/iptables differ diff --git a/system/bin/iptables-restore b/system/bin/iptables-restore new file mode 120000 index 0000000000000000000000000000000000000000..59cead781ec27561b0bf514f67d4d1b9ecbbafb2 --- /dev/null +++ b/system/bin/iptables-restore @@ -0,0 +1 @@ +iptables \ No newline at end of file diff --git a/system/bin/iptables-save b/system/bin/iptables-save new file mode 120000 index 0000000000000000000000000000000000000000..59cead781ec27561b0bf514f67d4d1b9ecbbafb2 --- /dev/null +++ b/system/bin/iptables-save @@ -0,0 +1 @@ +iptables \ No newline at end of file diff --git a/system/bin/iptables-wrapper-1.0 b/system/bin/iptables-wrapper-1.0 new file mode 120000 index 0000000000000000000000000000000000000000..cf5c05df522dedc654dd0012a1b40a44c19793c9 --- /dev/null +++ b/system/bin/iptables-wrapper-1.0 @@ -0,0 +1 @@ +netutils-wrapper-1.0 \ No newline at end of file diff --git a/system/bin/keystore b/system/bin/keystore new file mode 100755 index 0000000000000000000000000000000000000000..8f29b092a946d0bda0a912908be76e1166819777 Binary files /dev/null and b/system/bin/keystore differ diff --git a/system/bin/kill b/system/bin/kill new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/kill @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/killall b/system/bin/killall new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/killall @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/kpoc_charger b/system/bin/kpoc_charger new file mode 100755 index 0000000000000000000000000000000000000000..f2499ebf8e4c03ecfc241f2b6f16071bd41f1312 Binary files /dev/null and b/system/bin/kpoc_charger differ diff --git a/system/bin/lcdc_screen_cap b/system/bin/lcdc_screen_cap new file mode 100755 index 0000000000000000000000000000000000000000..9232d72b32bf53f38a1f9e4be312fbbb5a5f0d07 Binary files /dev/null and b/system/bin/lcdc_screen_cap differ diff --git a/system/bin/ld.mc b/system/bin/ld.mc new file mode 100755 index 0000000000000000000000000000000000000000..6942fe778a003cfa9f1e5046bfea9422dddc42ee Binary files /dev/null and b/system/bin/ld.mc differ diff --git a/system/bin/linker b/system/bin/linker new file mode 100755 index 0000000000000000000000000000000000000000..6efd67d315bf55777b11cea780f788f8717aa471 Binary files /dev/null and b/system/bin/linker differ diff --git a/system/bin/linker_asan b/system/bin/linker_asan new file mode 120000 index 0000000000000000000000000000000000000000..d8ca144dcb84978ca189edd5d84e86da7fec92a0 --- /dev/null +++ b/system/bin/linker_asan @@ -0,0 +1 @@ +linker \ No newline at end of file diff --git a/system/bin/lmkd b/system/bin/lmkd new file mode 100755 index 0000000000000000000000000000000000000000..638943935de2f1b8178f903d28284a0bf672c3bb Binary files /dev/null and b/system/bin/lmkd differ diff --git a/system/bin/ln b/system/bin/ln new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/ln @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/load_policy b/system/bin/load_policy new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/load_policy @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/locksettings b/system/bin/locksettings new file mode 100755 index 0000000000000000000000000000000000000000..c963b238726b1140464c861dca4dce005cb4446d --- /dev/null +++ b/system/bin/locksettings @@ -0,0 +1,5 @@ +# Script to start "locksettings" on the device +# +base=/system +export CLASSPATH=$base/framework/locksettings.jar +exec app_process $base/bin com.android.commands.locksettings.LockSettingsCmd "$@" diff --git a/system/bin/log b/system/bin/log new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/log @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/logcat b/system/bin/logcat new file mode 100755 index 0000000000000000000000000000000000000000..9cc1bea3cf677b5edad6c2e001c719d9677555fa Binary files /dev/null and b/system/bin/logcat differ diff --git a/system/bin/logd b/system/bin/logd new file mode 100755 index 0000000000000000000000000000000000000000..73ea8de0d2ba7fa444a45c14b9699233cf4a558e Binary files /dev/null and b/system/bin/logd differ diff --git a/system/bin/logname b/system/bin/logname new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/logname @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/logwrapper b/system/bin/logwrapper new file mode 100755 index 0000000000000000000000000000000000000000..268c38379fa2a1a4422e4be19f77a9cd80ae6ddb Binary files /dev/null and b/system/bin/logwrapper differ diff --git a/system/bin/losetup b/system/bin/losetup new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/losetup @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/ls b/system/bin/ls new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/ls @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/lshal b/system/bin/lshal new file mode 100755 index 0000000000000000000000000000000000000000..cfb09e750885973dfa412303f34118a7e4004f17 Binary files /dev/null and b/system/bin/lshal differ diff --git a/system/bin/lsmod b/system/bin/lsmod new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/lsmod @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/lsof b/system/bin/lsof new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/lsof @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/lspci b/system/bin/lspci new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/lspci @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/lsusb b/system/bin/lsusb new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/lsusb @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/make_ext4fs b/system/bin/make_ext4fs new file mode 100755 index 0000000000000000000000000000000000000000..c8b7207fb7717cdb40011391bb38f5f7c86bc30c Binary files /dev/null and b/system/bin/make_ext4fs differ diff --git a/system/bin/make_f2fs b/system/bin/make_f2fs new file mode 100755 index 0000000000000000000000000000000000000000..2f27d51997975c93999a29fe5c46755ec31ed527 Binary files /dev/null and b/system/bin/make_f2fs differ diff --git a/system/bin/md5sum b/system/bin/md5sum new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/md5sum @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/md_monitor b/system/bin/md_monitor new file mode 100755 index 0000000000000000000000000000000000000000..2ff4c60dc2944d787878969b381832d71962083f Binary files /dev/null and b/system/bin/md_monitor differ diff --git a/system/bin/md_monitor_ctrl b/system/bin/md_monitor_ctrl new file mode 100755 index 0000000000000000000000000000000000000000..783bcdf024346dcd6e69650751a6dcf8f1636ef1 Binary files /dev/null and b/system/bin/md_monitor_ctrl differ diff --git a/system/bin/mdlogger b/system/bin/mdlogger new file mode 100755 index 0000000000000000000000000000000000000000..f7a53ad721013e98b85dd49edc3d0b5b6c494fff Binary files /dev/null and b/system/bin/mdlogger differ diff --git a/system/bin/mdnsd b/system/bin/mdnsd new file mode 100755 index 0000000000000000000000000000000000000000..1dbe28d7d71f0ada6619f20292396c853535371c Binary files /dev/null and b/system/bin/mdnsd differ diff --git a/system/bin/media b/system/bin/media new file mode 100755 index 0000000000000000000000000000000000000000..11944426b316d24b4385d4c2b215b486f3909e52 --- /dev/null +++ b/system/bin/media @@ -0,0 +1,6 @@ +# Script to start "media_cmd" on the device, which has a very rudimentary +# shell. +# +base=/system +export CLASSPATH=$base/framework/media_cmd.jar +exec app_process $base/bin com.android.commands.media.Media "$@" diff --git a/system/bin/mediadrmserver b/system/bin/mediadrmserver new file mode 100755 index 0000000000000000000000000000000000000000..701c50f5848c01181a5677d4b1a79b13195e384d Binary files /dev/null and b/system/bin/mediadrmserver differ diff --git a/system/bin/mediaextractor b/system/bin/mediaextractor new file mode 100755 index 0000000000000000000000000000000000000000..679e68eff6b08a6cee7315ccee24aa1620951c6e Binary files /dev/null and b/system/bin/mediaextractor differ diff --git a/system/bin/mediaserver b/system/bin/mediaserver new file mode 100755 index 0000000000000000000000000000000000000000..aaf938b2fd4e8f57a403409d4ec0d8a975ecb6f1 Binary files /dev/null and b/system/bin/mediaserver differ diff --git a/system/bin/met-cmd b/system/bin/met-cmd new file mode 100755 index 0000000000000000000000000000000000000000..33f2943e78578d37e7f9d4edc5f208c9a5715db3 Binary files /dev/null and b/system/bin/met-cmd differ diff --git a/system/bin/met_log_d b/system/bin/met_log_d new file mode 100755 index 0000000000000000000000000000000000000000..d446648dc4d2368312f17158b61624fb8f0af989 Binary files /dev/null and b/system/bin/met_log_d differ diff --git a/system/bin/meta_tst b/system/bin/meta_tst new file mode 100755 index 0000000000000000000000000000000000000000..131a1703de67da1dc68f71b6bb7f9bb3eb2b468a Binary files /dev/null and b/system/bin/meta_tst differ diff --git a/system/bin/microcom b/system/bin/microcom new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/microcom @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/mkdir b/system/bin/mkdir new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/mkdir @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/mke2fs b/system/bin/mke2fs new file mode 100755 index 0000000000000000000000000000000000000000..f00f5f9c43f393555ac1fa77bed8dd62a52e3722 Binary files /dev/null and b/system/bin/mke2fs differ diff --git a/system/bin/mkfifo b/system/bin/mkfifo new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/mkfifo @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/mknod b/system/bin/mknod new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/mknod @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/mkswap b/system/bin/mkswap new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/mkswap @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/mktemp b/system/bin/mktemp new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/mktemp @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/mobile_log_d b/system/bin/mobile_log_d new file mode 100755 index 0000000000000000000000000000000000000000..6efc49fb24ccc756b93a8f916c1d9fe192cbd680 Binary files /dev/null and b/system/bin/mobile_log_d differ diff --git a/system/bin/modinfo b/system/bin/modinfo new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/modinfo @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/modprobe b/system/bin/modprobe new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/modprobe @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/monkey b/system/bin/monkey new file mode 100755 index 0000000000000000000000000000000000000000..a334990e3ebe172112723fe12edc12faa9fc133a --- /dev/null +++ b/system/bin/monkey @@ -0,0 +1,11 @@ +# Script to start "monkey" on the device, which has a very rudimentary +# shell. +# +base=/system +export CLASSPATH=$base/framework/monkey.jar +trap "" HUP +for a in "$@"; do + echo " bash arg:" $a +done +exec app_process $base/bin com.android.commands.monkey.Monkey "$@" + diff --git a/system/bin/more b/system/bin/more new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/more @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/mount b/system/bin/mount new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/mount @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/mountpoint b/system/bin/mountpoint new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/mountpoint @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/mtpd b/system/bin/mtpd new file mode 100755 index 0000000000000000000000000000000000000000..e163288eca0eafc69acfebba7d7e2acd149bfd5e Binary files /dev/null and b/system/bin/mtpd differ diff --git a/system/bin/mv b/system/bin/mv new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/mv @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/ndc b/system/bin/ndc new file mode 100755 index 0000000000000000000000000000000000000000..633656f0d38cec0919a544a68dd3bbab05997a96 Binary files /dev/null and b/system/bin/ndc differ diff --git a/system/bin/ndc-wrapper-1.0 b/system/bin/ndc-wrapper-1.0 new file mode 120000 index 0000000000000000000000000000000000000000..cf5c05df522dedc654dd0012a1b40a44c19793c9 --- /dev/null +++ b/system/bin/ndc-wrapper-1.0 @@ -0,0 +1 @@ +netutils-wrapper-1.0 \ No newline at end of file diff --git a/system/bin/netd b/system/bin/netd new file mode 100755 index 0000000000000000000000000000000000000000..798b30d3de51f4420aabb1989d0eee111cf349f7 Binary files /dev/null and b/system/bin/netd differ diff --git a/system/bin/netdiag b/system/bin/netdiag new file mode 100755 index 0000000000000000000000000000000000000000..a48ab2f45d0760f853e57f4dca7d8177cc54fced Binary files /dev/null and b/system/bin/netdiag differ diff --git a/system/bin/netstat b/system/bin/netstat new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/netstat @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/netutils-wrapper-1.0 b/system/bin/netutils-wrapper-1.0 new file mode 100755 index 0000000000000000000000000000000000000000..1b0fe57de6c6d27cb38a972a9c018ce16481acce Binary files /dev/null and b/system/bin/netutils-wrapper-1.0 differ diff --git a/system/bin/newfs_msdos b/system/bin/newfs_msdos new file mode 120000 index 0000000000000000000000000000000000000000..a7cf9a836224b834d2f81b63e885735abef189cb --- /dev/null +++ b/system/bin/newfs_msdos @@ -0,0 +1 @@ +toolbox \ No newline at end of file diff --git a/system/bin/nice b/system/bin/nice new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/nice @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/nl b/system/bin/nl new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/nl @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/nohup b/system/bin/nohup new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/nohup @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/oatdump b/system/bin/oatdump new file mode 100755 index 0000000000000000000000000000000000000000..14f2cfa3e7c5665a996b6da08677d1ec7a54eee9 Binary files /dev/null and b/system/bin/oatdump differ diff --git a/system/bin/od b/system/bin/od new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/od @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/paste b/system/bin/paste new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/paste @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/patch b/system/bin/patch new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/patch @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/patchoat b/system/bin/patchoat new file mode 100755 index 0000000000000000000000000000000000000000..27ed06f2148a46e7f55701be8558e9fa727a9a18 Binary files /dev/null and b/system/bin/patchoat differ diff --git a/system/bin/pgrep b/system/bin/pgrep new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/pgrep @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/pidof b/system/bin/pidof new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/pidof @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/ping b/system/bin/ping new file mode 100755 index 0000000000000000000000000000000000000000..1e803066eaa427e5cb1bf881f994e6c85a151e1d Binary files /dev/null and b/system/bin/ping differ diff --git a/system/bin/ping6 b/system/bin/ping6 new file mode 100755 index 0000000000000000000000000000000000000000..399fc9849e6e26a9b9743368d69df02455a26a79 Binary files /dev/null and b/system/bin/ping6 differ diff --git a/system/bin/pkill b/system/bin/pkill new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/pkill @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/pm b/system/bin/pm new file mode 100755 index 0000000000000000000000000000000000000000..81838386c055e35958b7b7ff6d9a2e934f05daca --- /dev/null +++ b/system/bin/pm @@ -0,0 +1,7 @@ +# Script to start "pm" on the device, which has a very rudimentary +# shell. +# +base=/system +export CLASSPATH=$base/framework/pm.jar +exec app_process $base/bin com.android.commands.pm.Pm "$@" + diff --git a/system/bin/pmap b/system/bin/pmap new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/pmap @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/pppd b/system/bin/pppd new file mode 100755 index 0000000000000000000000000000000000000000..1bb2fdad1ad1f1dec290b7a698884a7ff012859b Binary files /dev/null and b/system/bin/pppd differ diff --git a/system/bin/printenv b/system/bin/printenv new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/printenv @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/printf b/system/bin/printf new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/printf @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/profman b/system/bin/profman new file mode 100755 index 0000000000000000000000000000000000000000..3809d843f304d3ccd9b067a471eeaee109d9b2ef Binary files /dev/null and b/system/bin/profman differ diff --git a/system/bin/program_binary_builder b/system/bin/program_binary_builder new file mode 100755 index 0000000000000000000000000000000000000000..1ff85447fcf773f881701fd6d3f71ca06131d2ce Binary files /dev/null and b/system/bin/program_binary_builder differ diff --git a/system/bin/program_binary_service b/system/bin/program_binary_service new file mode 100755 index 0000000000000000000000000000000000000000..ffcf989a751076fb35a3b15aae74c86c9df2e5c9 Binary files /dev/null and b/system/bin/program_binary_service differ diff --git a/system/bin/ps b/system/bin/ps new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/ps @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/pwd b/system/bin/pwd new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/pwd @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/racoon b/system/bin/racoon new file mode 100755 index 0000000000000000000000000000000000000000..190716abcbaaaeba6bfdb6b31aa0425d8b80448d Binary files /dev/null and b/system/bin/racoon differ diff --git a/system/bin/readlink b/system/bin/readlink new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/readlink @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/realpath b/system/bin/realpath new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/realpath @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/reboot b/system/bin/reboot new file mode 100755 index 0000000000000000000000000000000000000000..c8aa9d53810497452663360653c46a0c60e477bf Binary files /dev/null and b/system/bin/reboot differ diff --git a/system/bin/renice b/system/bin/renice new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/renice @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/requestsync b/system/bin/requestsync new file mode 100755 index 0000000000000000000000000000000000000000..931567583e90b120b0109dcbc9c28c6e4d1b927d --- /dev/null +++ b/system/bin/requestsync @@ -0,0 +1,6 @@ +# Script to start "requestsync" on the device +# +base=/system +export CLASSPATH=$base/framework/requestsync.jar +exec app_process $base/bin com.android.commands.requestsync.RequestSync "$@" + diff --git a/system/bin/resize.f2fs b/system/bin/resize.f2fs new file mode 100755 index 0000000000000000000000000000000000000000..58cf1c6117762349320e075abe087367ae4dcf11 Binary files /dev/null and b/system/bin/resize.f2fs differ diff --git a/system/bin/resize2fs b/system/bin/resize2fs new file mode 100755 index 0000000000000000000000000000000000000000..f7bae0ca560206bc69c24437124f0280e3d9f9d4 Binary files /dev/null and b/system/bin/resize2fs differ diff --git a/system/bin/restorecon b/system/bin/restorecon new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/restorecon @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/rm b/system/bin/rm new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/rm @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/rmdir b/system/bin/rmdir new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/rmdir @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/rmmod b/system/bin/rmmod new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/rmmod @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/rtt b/system/bin/rtt new file mode 100755 index 0000000000000000000000000000000000000000..bb5c65d8db7f3b64b9b16f5484779806c3a55c8e Binary files /dev/null and b/system/bin/rtt differ diff --git a/system/bin/run-as b/system/bin/run-as new file mode 100755 index 0000000000000000000000000000000000000000..1602c81b8ad42992c96d1260a29663b109b1c661 Binary files /dev/null and b/system/bin/run-as differ diff --git a/system/bin/runcon b/system/bin/runcon new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/runcon @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/schedtest b/system/bin/schedtest new file mode 100755 index 0000000000000000000000000000000000000000..9997ae0a439b673e8073104e75a20c63ce419970 Binary files /dev/null and b/system/bin/schedtest differ diff --git a/system/bin/screencap b/system/bin/screencap new file mode 100755 index 0000000000000000000000000000000000000000..c5c0d2e49e8f632b711e7f6171656563a315d746 Binary files /dev/null and b/system/bin/screencap differ diff --git a/system/bin/screenrecord b/system/bin/screenrecord new file mode 100755 index 0000000000000000000000000000000000000000..11cdf20fab0cafd582790411000a1440064d78e5 Binary files /dev/null and b/system/bin/screenrecord differ diff --git a/system/bin/sdcard b/system/bin/sdcard new file mode 100755 index 0000000000000000000000000000000000000000..5aa5e6c0932cc26d2354c14b812168b6ce16d43d Binary files /dev/null and b/system/bin/sdcard differ diff --git a/system/bin/secdiscard b/system/bin/secdiscard new file mode 100755 index 0000000000000000000000000000000000000000..58564d6037c07e4f4307b54feb877b986c153986 Binary files /dev/null and b/system/bin/secdiscard differ diff --git a/system/bin/secilc b/system/bin/secilc new file mode 100755 index 0000000000000000000000000000000000000000..a9bd318b9b56d98099121601a6d10a916620688e Binary files /dev/null and b/system/bin/secilc differ diff --git a/system/bin/sed b/system/bin/sed new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/sed @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/sendevent b/system/bin/sendevent new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/sendevent @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/sensorcal b/system/bin/sensorcal new file mode 100755 index 0000000000000000000000000000000000000000..0931bb8d981ede89f94d56eba7ba8d752a09f6ef Binary files /dev/null and b/system/bin/sensorcal differ diff --git a/system/bin/sensorservice b/system/bin/sensorservice new file mode 100755 index 0000000000000000000000000000000000000000..e1419d85724e670b3ce4175524ec0abc9bc84648 Binary files /dev/null and b/system/bin/sensorservice differ diff --git a/system/bin/seq b/system/bin/seq new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/seq @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/service b/system/bin/service new file mode 100755 index 0000000000000000000000000000000000000000..95393073af053a16d24df9d1ca6b72e581a5797f Binary files /dev/null and b/system/bin/service differ diff --git a/system/bin/servicemanager b/system/bin/servicemanager new file mode 100755 index 0000000000000000000000000000000000000000..749f148daaa31103239780f294bf03820b095aa3 Binary files /dev/null and b/system/bin/servicemanager differ diff --git a/system/bin/setenforce b/system/bin/setenforce new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/setenforce @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/setprop b/system/bin/setprop new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/setprop @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/setsid b/system/bin/setsid new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/setsid @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/settings b/system/bin/settings new file mode 100755 index 0000000000000000000000000000000000000000..d41ccc62811abdb765b1c7cd0ca602ec8354ec3b --- /dev/null +++ b/system/bin/settings @@ -0,0 +1,2 @@ +#!/system/bin/sh +cmd settings "$@" diff --git a/system/bin/sgdisk b/system/bin/sgdisk new file mode 100755 index 0000000000000000000000000000000000000000..d67f57229baca9230786b96032806fb6c262753d Binary files /dev/null and b/system/bin/sgdisk differ diff --git a/system/bin/sh b/system/bin/sh new file mode 100755 index 0000000000000000000000000000000000000000..c634aa3f20d22c18b924bc401c87413c90196230 Binary files /dev/null and b/system/bin/sh differ diff --git a/system/bin/sha1sum b/system/bin/sha1sum new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/sha1sum @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/sha224sum b/system/bin/sha224sum new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/sha224sum @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/sha256sum b/system/bin/sha256sum new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/sha256sum @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/sha384sum b/system/bin/sha384sum new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/sha384sum @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/sha512sum b/system/bin/sha512sum new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/sha512sum @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/sleep b/system/bin/sleep new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/sleep @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/sm b/system/bin/sm new file mode 100755 index 0000000000000000000000000000000000000000..8fba0070630f228eda1839c4a1023cba53021046 --- /dev/null +++ b/system/bin/sm @@ -0,0 +1,6 @@ +# Script to start "sm" on the device, which has a very rudimentary +# shell. +# +base=/system +export CLASSPATH=$base/framework/sm.jar +exec app_process $base/bin com.android.commands.sm.Sm "$@" diff --git a/system/bin/sn b/system/bin/sn new file mode 100755 index 0000000000000000000000000000000000000000..de5361c658aa94fb9966984db84a735a91d50791 Binary files /dev/null and b/system/bin/sn differ diff --git a/system/bin/sort b/system/bin/sort new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/sort @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/split b/system/bin/split new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/split @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/start b/system/bin/start new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/start @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/stat b/system/bin/stat new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/stat @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/stop b/system/bin/stop new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/stop @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/storaged b/system/bin/storaged new file mode 100755 index 0000000000000000000000000000000000000000..62e511f5aff3cf6da14e71f5153c6bf1e6b7859c Binary files /dev/null and b/system/bin/storaged differ diff --git a/system/bin/storagemanagerd b/system/bin/storagemanagerd new file mode 100755 index 0000000000000000000000000000000000000000..e094c6970727a13f107ec3d7018d502b65203edc Binary files /dev/null and b/system/bin/storagemanagerd differ diff --git a/system/bin/strings b/system/bin/strings new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/strings @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/surfaceflinger b/system/bin/surfaceflinger new file mode 100755 index 0000000000000000000000000000000000000000..579181ebf3f0378c98efb116ecabadcf6db3d5c1 Binary files /dev/null and b/system/bin/surfaceflinger differ diff --git a/system/bin/svc b/system/bin/svc new file mode 100755 index 0000000000000000000000000000000000000000..27111cdcc6c9b42c7ec0ac05fb93bd9d1ace1e6f --- /dev/null +++ b/system/bin/svc @@ -0,0 +1,7 @@ +# Script to start "am" on the device, which has a very rudimentary +# shell. +# +base=/system +export CLASSPATH=$base/framework/svc.jar +exec app_process $base/bin com.android.commands.svc.Svc $* + diff --git a/system/bin/swapoff b/system/bin/swapoff new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/swapoff @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/swapon b/system/bin/swapon new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/swapon @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/sync b/system/bin/sync new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/sync @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/sysctl b/system/bin/sysctl new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/sysctl @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/tac b/system/bin/tac new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/tac @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/tail b/system/bin/tail new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/tail @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/tar b/system/bin/tar new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/tar @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/taskset b/system/bin/taskset new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/taskset @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/tc b/system/bin/tc new file mode 100755 index 0000000000000000000000000000000000000000..ae50f3c8bb7172325710779b9169cc9a79139f2b Binary files /dev/null and b/system/bin/tc differ diff --git a/system/bin/tc-wrapper-1.0 b/system/bin/tc-wrapper-1.0 new file mode 120000 index 0000000000000000000000000000000000000000..cf5c05df522dedc654dd0012a1b40a44c19793c9 --- /dev/null +++ b/system/bin/tc-wrapper-1.0 @@ -0,0 +1 @@ +netutils-wrapper-1.0 \ No newline at end of file diff --git a/system/bin/tee b/system/bin/tee new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/tee @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/telecom b/system/bin/telecom new file mode 100755 index 0000000000000000000000000000000000000000..9efdcfdec88e29d6e5f8e5be28987713edfd4b95 --- /dev/null +++ b/system/bin/telecom @@ -0,0 +1,6 @@ +# Script to start "telecom" on the device +# +base=/system +export CLASSPATH=$base/framework/telecom.jar +exec app_process $base/bin com.android.commands.telecom.Telecom "$@" + diff --git a/system/bin/terservice b/system/bin/terservice new file mode 100755 index 0000000000000000000000000000000000000000..7c0a811c4f705a4e9037598612e8ced87b4b6bd5 Binary files /dev/null and b/system/bin/terservice differ diff --git a/system/bin/tertestclient b/system/bin/tertestclient new file mode 100755 index 0000000000000000000000000000000000000000..4d20f82a8c86134ce6ee95ee73b6b73c210bb9b3 Binary files /dev/null and b/system/bin/tertestclient differ diff --git a/system/bin/thermald b/system/bin/thermald new file mode 100755 index 0000000000000000000000000000000000000000..13f4d450b813ca86d005ee8bbd2b9208d39fd3f1 Binary files /dev/null and b/system/bin/thermald differ diff --git a/system/bin/thermalindicator b/system/bin/thermalindicator new file mode 100755 index 0000000000000000000000000000000000000000..2aa1c4a078748edaba666fc395b2c40000dd7acb Binary files /dev/null and b/system/bin/thermalindicator differ diff --git a/system/bin/thermalserviced b/system/bin/thermalserviced new file mode 100755 index 0000000000000000000000000000000000000000..2fb1d33c3768707f3d2ba7be18cf72914be52af6 Binary files /dev/null and b/system/bin/thermalserviced differ diff --git a/system/bin/time b/system/bin/time new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/time @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/timeout b/system/bin/timeout new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/timeout @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/tombstoned b/system/bin/tombstoned new file mode 100755 index 0000000000000000000000000000000000000000..0c737ef14ddee97ad50e5ab896315c6d68ac46e2 Binary files /dev/null and b/system/bin/tombstoned differ diff --git a/system/bin/toolbox b/system/bin/toolbox new file mode 100755 index 0000000000000000000000000000000000000000..ce8607693099271de7a8bcbc9a2a6f6372e53d2f Binary files /dev/null and b/system/bin/toolbox differ diff --git a/system/bin/top b/system/bin/top new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/top @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/touch b/system/bin/touch new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/touch @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/toybox b/system/bin/toybox new file mode 100755 index 0000000000000000000000000000000000000000..d128284237a56fb1d3268ed592e71f91920a7ec9 Binary files /dev/null and b/system/bin/toybox differ diff --git a/system/bin/tr b/system/bin/tr new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/tr @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/trace-cmd b/system/bin/trace-cmd new file mode 100755 index 0000000000000000000000000000000000000000..0572832aaca89b184f82f6be15663994c19fec37 Binary files /dev/null and b/system/bin/trace-cmd differ diff --git a/system/bin/true b/system/bin/true new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/true @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/truncate b/system/bin/truncate new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/truncate @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/tty b/system/bin/tty new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/tty @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/tune2fs b/system/bin/tune2fs new file mode 100755 index 0000000000000000000000000000000000000000..ed09fb1a17aa2fc0d751e71a51bc8e6217c64131 Binary files /dev/null and b/system/bin/tune2fs differ diff --git a/system/bin/tzdatacheck b/system/bin/tzdatacheck new file mode 100755 index 0000000000000000000000000000000000000000..f40b9ee376bd37d85437d046b7400b060daa27c6 Binary files /dev/null and b/system/bin/tzdatacheck differ diff --git a/system/bin/uiautomator b/system/bin/uiautomator new file mode 100755 index 0000000000000000000000000000000000000000..86a1dbaad119dcb390d4cb8a34e73a88c36447ec --- /dev/null +++ b/system/bin/uiautomator @@ -0,0 +1,128 @@ +# +# Copyright (C) 2012 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Script to start "uiautomator" on the device +# +# The script does a couple of things: +# * Use an alternative dalvik cache when running as non-root. Jar file needs +# to be dexopt'd to run in Dalvik. For plain jar files, this is done at first +# use. shell user does not have write permission to default system Dalvik +# cache so we redirect to an alternative cache +# * special processing for subcommand 'runtest': +# * '--nohup' allows process continue to run even if parent process that +# started it has already terminated. We parse for this parameter and set +# signal trap. This is useful for testing with USB disconnected +# * all jar files that the test classes resides in, or dependent on are +# provided on command line and exported to CLASSPATH environment variable +# before starting the Java code. This offloads the task of class loading +# and resolving of cross jar class dependency to Dalvik +# * all other subcommand or options are directly passed into Java code for +# further parsing + +export run_base=/data/local/tmp +export base=/system + +# if not running as root, trick dalvik into using an alternative dex cache +if [ ${USER_ID} -ne 0 ]; then + tmp_cache=${run_base}/dalvik-cache + + if [ ! -d ${tmp_cache} ]; then + mkdir -p ${tmp_cache} + fi + + export ANDROID_DATA=${run_base} +fi + +# take first parameter as the command +cmd=${1} + +if [ -z "${1}" ]; then + cmd="help" +fi + +# strip the command parameter +if [ -n "${1}" ]; then + shift +fi + +CLASSPATH=/system/framework/android.test.runner.jar:${base}/framework/uiautomator.jar + +# eventually args will be what get passed down to Java code +args= +# we also pass the list of jar files, so we can extract class names for tests +# if they are not explicitly specified +jars= + +# special case pre-processing for 'runtest' command +if [ "${cmd}" == "runtest" ]; then + # Print deprecation warning + echo "Warning: This version of UI Automator is deprecated. New tests should be written using" + echo "UI Automator 2.0 which is available as part of the Android Testing Support Library." + echo "See https://developer.android.com/training/testing/ui-testing/uiautomator-testing.html" + echo "for more details." + # first parse the jar paths + while [ true ]; do + if [ -z "${1}" ] && [ -z "${jars}" ]; then + echo "Error: more parameters expected for runtest; please see usage for details" + cmd="help" + break + fi + if [ -z "${1}" ]; then + break + fi + jar=${1} + if [ "${1:0:1}" = "-" ]; then + # we are done with jars, starting with parameters now + break + fi + # if relative path, append the default path prefix + if [ "${1:0:1}" != "/" ]; then + jar=${run_base}/${1} + fi + # about to add the file to class path, check if it's valid + if [ ! -f ${jar} ]; then + echo "Error: ${jar} does not exist" + # force to print help message + cmd="help" + break + fi + jars=${jars}:${jar} + # done processing current arg, moving on + shift + done + # look for --nohup: if found, consume it and trap SIG_HUP, otherwise just + # append the arg to args + while [ -n "${1}" ]; do + if [ "${1}" = "--nohup" ]; then + trap "" HUP + shift + else + args="${args} ${1}" + shift + fi + done +else + # if cmd is not 'runtest', just take the rest of the args + args=${@} +fi + +args="${cmd} ${args}" +if [ -n "${jars}" ]; then + args="${args} -e jars ${jars}" +fi + +CLASSPATH=${CLASSPATH}:${jars} +export CLASSPATH +exec app_process ${base}/bin com.android.commands.uiautomator.Launcher ${args} diff --git a/system/bin/ulimit b/system/bin/ulimit new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/ulimit @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/umount b/system/bin/umount new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/umount @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/uname b/system/bin/uname new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/uname @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/uncrypt b/system/bin/uncrypt new file mode 100755 index 0000000000000000000000000000000000000000..0b9ace2c5f33ab9eb85b2c1b8a106c050d93ca2c Binary files /dev/null and b/system/bin/uncrypt differ diff --git a/system/bin/uniq b/system/bin/uniq new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/uniq @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/unix2dos b/system/bin/unix2dos new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/unix2dos @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/uptime b/system/bin/uptime new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/uptime @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/usleep b/system/bin/usleep new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/usleep @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/uudecode b/system/bin/uudecode new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/uudecode @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/uuencode b/system/bin/uuencode new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/uuencode @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/vdc b/system/bin/vdc new file mode 100755 index 0000000000000000000000000000000000000000..d62d0d07716ed705c3ab17d00abec728b33f5578 Binary files /dev/null and b/system/bin/vdc differ diff --git a/system/bin/vintf b/system/bin/vintf new file mode 100755 index 0000000000000000000000000000000000000000..3092faac4fadd1850aafbe091e42f77d9fcfa539 Binary files /dev/null and b/system/bin/vintf differ diff --git a/system/bin/vmstat b/system/bin/vmstat new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/vmstat @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/vold b/system/bin/vold new file mode 100755 index 0000000000000000000000000000000000000000..904985674ae89f5e484dc521551bd516f5f43662 Binary files /dev/null and b/system/bin/vold differ diff --git a/system/bin/vr b/system/bin/vr new file mode 100755 index 0000000000000000000000000000000000000000..a279007caed48ffecf68965df5b05e91487650a5 --- /dev/null +++ b/system/bin/vr @@ -0,0 +1,6 @@ +# Script to start "vr" on the device +# +base=/system +export CLASSPATH=$base/framework/vr.jar +exec app_process $base/bin com.android.commands.vr.Vr "$@" + diff --git a/system/bin/vtservice b/system/bin/vtservice new file mode 100755 index 0000000000000000000000000000000000000000..3ac362c12660276f201a9e190447c661f2be730a Binary files /dev/null and b/system/bin/vtservice differ diff --git a/system/bin/wc b/system/bin/wc new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/wc @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/webview_zygote32 b/system/bin/webview_zygote32 new file mode 100755 index 0000000000000000000000000000000000000000..e99b8a2f971fc17a1972b4cdff970e631be62ff2 Binary files /dev/null and b/system/bin/webview_zygote32 differ diff --git a/system/bin/which b/system/bin/which new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/which @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/whoami b/system/bin/whoami new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/whoami @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/wificond b/system/bin/wificond new file mode 100755 index 0000000000000000000000000000000000000000..53ee91ff24abac99f713b6bcfe4a2511131dd530 Binary files /dev/null and b/system/bin/wificond differ diff --git a/system/bin/wm b/system/bin/wm new file mode 100755 index 0000000000000000000000000000000000000000..f7a5bc736831c2cc5859587d204565265b5d0f16 --- /dev/null +++ b/system/bin/wm @@ -0,0 +1,6 @@ +# Script to start "wm" on the device, which has a very rudimentary +# shell. +# +base=/system +export CLASSPATH=$base/framework/wm.jar +exec app_process $base/bin com.android.commands.wm.Wm "$@" diff --git a/system/bin/xargs b/system/bin/xargs new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/xargs @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/xxd b/system/bin/xxd new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/xxd @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/yes b/system/bin/yes new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/yes @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/bin/zcat b/system/bin/zcat new file mode 120000 index 0000000000000000000000000000000000000000..f978d793771e0d521857e6d8fb244fdbe1030987 --- /dev/null +++ b/system/bin/zcat @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/system/build.prop b/system/build.prop new file mode 100644 index 0000000000000000000000000000000000000000..190e68fe6f7c18f3a73113bb886202788376a233 --- /dev/null +++ b/system/build.prop @@ -0,0 +1,139 @@ + +# begin build properties +# autogenerated by buildinfo.sh +ro.build.id=O11019 +ro.build.display.id=YUHO_Y1_PRO_V1.0_20180829 +ro.build.version.incremental=1530698598 +ro.build.version.sdk=27 +ro.build.version.preview_sdk=0 +ro.build.version.codename=REL +ro.build.version.all_codenames=REL +ro.build.version.release=8.1.0 +ro.build.version.security_patch=2018-06-05 +ro.build.version.base_os= +ro.build.date=Wed Aug 29 21:03:44 CST 2018 +ro.build.date.utc=1535547824 +ro.build.type=user +ro.build.user=android +ro.build.host=android-pc +ro.build.tags=release-keys +ro.build.flavor=full_k39tv1_bsp_512-user +ro.product.model=YUHO_Y1_PRO +ro.product.brand=YUHO +ro.product.name=YUHO_Y1_PRO +ro.product.device=YUHO_Y1_PRO +# ro.product.cpu.abi and ro.product.cpu.abi2 are obsolete, +# use ro.product.cpu.abilist instead. +ro.product.cpu.abi=armeabi-v7a +ro.product.cpu.abi2=armeabi +ro.product.cpu.abilist=armeabi-v7a,armeabi +ro.product.cpu.abilist32=armeabi-v7a,armeabi +ro.product.cpu.abilist64= +ro.product.manufacturer=YUHO +ro.product.locale=en-US +ro.wifi.channels= +# ro.build.product is obsolete; use ro.product.device +ro.build.product=YUHO_Y1_PRO +# Do not try to parse description, fingerprint, or thumbprint +ro.build.description=full_k39tv1_bsp_512-user 8.1.0 O11019 1530698598 release-keys +ro.build.fingerprint=YUHO/YUHO_Y1_PRO/YUHO_Y1_PRO:8.1.0/O11019/1530698598:user/release-keys +ro.build.characteristics=default +ro.build.phone.name=YUHO_Y1_PRO +ro.build.phone.brand=YUHO +ro.build.user.sw.version=YUHO_Y1_PRO_V1.0 +ro.build.user.sw.date=20180829 +ro.build.user.bt.name=YUHO_Y1_PRO +ro.build.user.wifi.name=YUHO_Y1_PRO +ro.build.user.sw.fota.version=YUHO_Y1_PRO_V1.0_20180829 +ro.build.version.internal=YUHO_Y1_PRO_V1.0_20180829 +# end build properties +# +# from device/mediateksample/k39tv1_bsp_512/system.prop +# +# +# system.prop for generic sdk +# + +rild.libpath=mtk-ril.so +rild.libargs=-d /dev/ttyC0 + + +# MTK, Infinity, 20090720 { +wifi.interface=wlan0 +# MTK, Infinity, 20090720 } + +# MTK, mtk03034, 20101210 { +ro.mediatek.wlan.wsc=1 +# MTK, mtk03034 20101210} +# MTK, mtk03034, 20110318 { +ro.mediatek.wlan.p2p=1 +# MTK, mtk03034 20110318} + +# MTK, mtk03034, 20101213 { +mediatek.wlan.ctia=0 +# MTK, mtk03034 20101213} + + +# +wifi.tethering.interface=ap0 +# + +ro.opengles.version=196610 +# ro.kernel.qemu=1 +# ro.kernel.qemu.gles=0 + +wifi.direct.interface=p2p0 +#dalvik.vm.heapgrowthlimit=256m +#dalvik.vm.heapsize=512m + +# USB MTP WHQL +ro.sys.usb.mtp.whql.enable=0 + +# Power off opt in IPO +sys.ipo.pwrdncap=2 + +ro.sys.usb.storage.type=mtp + +# USB BICR function +ro.sys.usb.bicr=no + +# USB Charge only function +ro.sys.usb.charging.only=yes + +# audio +ro.camera.sound.forced=0 +ro.audio.silent=0 + +ro.zygote.preload.enable=0 + +# temporary enables NAV bar (soft keys) +# qemu.hw.mainkeys=0 + +ro.kernel.zio=38,108,105,16 +#ro.kernel.qemu=1 +#ro.kernel.qemu.gles=0 +#ro.boot.selinux=disable + +# Disable dirty region for Mali +#debug.hwui.render_dirty_regions=false + + +# performance +ro.mtk_perf_simple_start_win=1 +ro.mtk_perf_fast_start_win=1 +ro.mtk_perf_response_time=1 + +# disable ipo for development +sys.ipo.disable=1 + +# +# ADDITIONAL_BUILD_PROPERTIES +# +ro.treble.enabled=true +persist.sys.dalvik.vm.lib.2=libart.so +dalvik.vm.isa.arm.variant=cortex-a53 +dalvik.vm.isa.arm.features=default +dalvik.vm.systemservercompilerfilter=speed-profile +net.bt.name=Android +dalvik.vm.stack-trace-dir=/data/anr +ro.expect.recovery_id=0xc736be001cf4b0e03dfa3bed46b52282f6bdf5ec000000000000000000000000 diff --git a/system/compatibility_matrix.xml b/system/compatibility_matrix.xml new file mode 100644 index 0000000000000000000000000000000000000000..a221f28ce6d0de2d20a72ee947b19d24007ac522 --- /dev/null +++ b/system/compatibility_matrix.xml @@ -0,0 +1,2375 @@ +<compatibility-matrix version="1.0" type="framework"> + <hal format="hidl" optional="false"> + <name>android.hardware.audio</name> + <version>2.0</version> + <interface> + <name>IDevicesFactory</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="false"> + <name>android.hardware.audio.effect</name> + <version>2.0</version> + <interface> + <name>IEffectsFactory</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.automotive.evs</name> + <version>1.0</version> + <interface> + <name>IEvsEnumerator</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.automotive.vehicle</name> + <version>2.0</version> + <interface> + <name>IVehicle</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.biometrics.fingerprint</name> + <version>2.1</version> + <interface> + <name>IBiometricsFingerprint</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.bluetooth</name> + <version>1.0</version> + <interface> + <name>IBluetoothHci</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.boot</name> + <version>1.0</version> + <interface> + <name>IBootControl</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.broadcastradio</name> + <version>1.0-1</version> + <interface> + <name>IBroadcastRadioFactory</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.camera.provider</name> + <version>2.4</version> + <interface> + <name>ICameraProvider</name> + <instance>legacy/0</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.cas</name> + <version>1.0</version> + <interface> + <name>IMediaCasService</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="false"> + <name>android.hardware.configstore</name> + <version>1.0</version> + <interface> + <name>ISurfaceFlingerConfigs</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.contexthub</name> + <version>1.0</version> + <interface> + <name>IContexthub</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="false"> + <name>android.hardware.drm</name> + <version>1.0</version> + <interface> + <name>ICryptoFactory</name> + <instance>default</instance> + </interface> + <interface> + <name>IDrmFactory</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.dumpstate</name> + <version>1.0</version> + <interface> + <name>IDumpstateDevice</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="false"> + <name>android.hardware.gatekeeper</name> + <version>1.0</version> + <interface> + <name>IGatekeeper</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.gnss</name> + <version>1.0</version> + <interface> + <name>IGnss</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="false"> + <name>android.hardware.graphics.allocator</name> + <version>2.0</version> + <interface> + <name>IAllocator</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="false"> + <name>android.hardware.graphics.composer</name> + <version>2.1</version> + <interface> + <name>IComposer</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="false"> + <name>android.hardware.graphics.mapper</name> + <version>2.0</version> + <interface> + <name>IMapper</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.health</name> + <version>1.0</version> + <interface> + <name>IHealth</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.ir</name> + <version>1.0</version> + </hal> + <hal format="hidl" optional="false"> + <name>android.hardware.keymaster</name> + <version>3.0</version> + <interface> + <name>IKeymasterDevice</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.light</name> + <version>2.0</version> + <interface> + <name>ILight</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="false"> + <name>android.hardware.media.omx</name> + <version>1.0</version> + <interface> + <name>IOmx</name> + <instance>default</instance> + </interface> + <interface> + <name>IOmxStore</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.memtrack</name> + <version>1.0</version> + <interface> + <name>IMemtrack</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.nfc</name> + <version>1.0</version> + <interface> + <name>INfc</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.oemlock</name> + <version>1.0</version> + <interface> + <name>IOemLock</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.power</name> + <version>1.0-1</version> + <interface> + <name>IPower</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.radio</name> + <version>1.0-1</version> + <interface> + <name>IRadio</name> + <instance>slot1</instance> + </interface> + <interface> + <name>ISap</name> + <instance>slot1</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.radio.deprecated</name> + <version>1.0</version> + <interface> + <name>IOemHook</name> + <instance>slot1</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.renderscript</name> + <version>1.0</version> + <interface> + <name>IDevice</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.sensors</name> + <version>1.0</version> + <interface> + <name>ISensors</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.soundtrigger</name> + <version>2.0</version> + <interface> + <name>ISoundTriggerHw</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.tetheroffload.config</name> + <version>1.0</version> + <interface> + <name>IOffloadConfig</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.tetheroffload.control</name> + <version>1.0</version> + <interface> + <name>IOffloadControl</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.thermal</name> + <version>1.0-1</version> + <interface> + <name>IThermal</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.tv.cec</name> + <version>1.0</version> + <interface> + <name>IHdmiCec</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.tv.input</name> + <version>1.0</version> + <interface> + <name>ITvInput</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.usb</name> + <version>1.0-1</version> + <interface> + <name>IUsb</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.vibrator</name> + <version>1.0-1</version> + <interface> + <name>IVibrator</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.vr</name> + <version>1.0</version> + <interface> + <name>IVr</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.weaver</name> + <version>1.0</version> + <interface> + <name>IWeaver</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.wifi</name> + <version>1.0-1</version> + <interface> + <name>IWifi</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.wifi.offload</name> + <version>1.0</version> + <interface> + <name>IOffload</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl" optional="true"> + <name>android.hardware.wifi.supplicant</name> + <version>1.0</version> + <interface> + <name>ISupplicant</name> + <instance>default</instance> + </interface> + </hal> + <kernel version="3.18.0"> + <config> + <key>CONFIG_ANDROID</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_ANDROID_BINDER_DEVICES</key> + <value type="string">binder,hwbinder,vndbinder</value> + </config> + <config> + <key>CONFIG_ANDROID_BINDER_IPC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_ANDROID_LOW_MEMORY_KILLER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_ASHMEM</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_AUDIT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_BLK_DEV_INITRD</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_CGROUPS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_CGROUP_CPUACCT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_CGROUP_FREEZER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_CGROUP_SCHED</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_DEFAULT_SECURITY_SELINUX</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_DEVKMEM</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_DEVMEM</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_EMBEDDED</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_FB</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_FHANDLE</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_HARDENED_USERCOPY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_HIGH_RES_TIMERS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IKCONFIG</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IKCONFIG_PROC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_INET</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_INET6_AH</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_INET6_ESP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_INET6_IPCOMP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_INET_DIAG_DESTROY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_INET_ESP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_INET_LRO</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_INET_XFRM_MODE_TUNNEL</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP6_NF_FILTER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP6_NF_IPTABLES</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP6_NF_MANGLE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP6_NF_RAW</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP6_NF_TARGET_REJECT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IPV6</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IPV6_MIP6</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IPV6_MULTIPLE_TABLES</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IPV6_OPTIMISTIC_DAD</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IPV6_ROUTER_PREF</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IPV6_ROUTE_INFO</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_ADVANCED_ROUTER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_MULTICAST</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_MULTIPLE_TABLES</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_ARPFILTER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_ARPTABLES</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_ARP_MANGLE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_FILTER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_IPTABLES</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_MANGLE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_MATCH_AH</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_MATCH_ECN</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_MATCH_TTL</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_NAT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_RAW</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_SECURITY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_TARGET_MASQUERADE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_TARGET_NETMAP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_TARGET_REDIRECT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_TARGET_REJECT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_MODULES</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_MODULE_UNLOAD</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_MODVERSIONS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETDEVICES</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_COMMENT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_CONNLIMIT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_CONNMARK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_CONNTRACK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_HASHLIMIT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_HELPER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_IPRANGE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_LENGTH</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_LIMIT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_MAC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_MARK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_PKTTYPE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_POLICY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_QTAGUID</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_QUOTA</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_QUOTA2</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_SOCKET</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_STATE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_STATISTIC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_STRING</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_TIME</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_U32</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_CLASSIFY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_CONNMARK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_CONNSECMARK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_IDLETIMER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_MARK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_NFLOG</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_NFQUEUE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_SECMARK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_TCPMSS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_TPROXY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_TRACE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET_CLS_ACT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET_CLS_U32</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET_EMATCH</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET_EMATCH_U32</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET_KEY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET_SCHED</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET_SCH_HTB</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NFSD</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_NFS_FS</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_AMANDA</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_EVENTS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_FTP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_H323</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_IPV4</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_IPV6</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_IRC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_NETBIOS_NS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_PPTP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_SANE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_SECMARK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_TFTP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CT_NETLINK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CT_PROTO_DCCP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CT_PROTO_SCTP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CT_PROTO_UDPLITE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_NAT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NO_HZ</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_OABI_COMPAT</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_PACKET</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PM_AUTOSLEEP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PM_WAKELOCKS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PPP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PPPOLAC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PPPOPNS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PPP_BSDCOMP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PPP_DEFLATE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PPP_MPPE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PREEMPT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_RESOURCE_COUNTERS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_RTC_CLASS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_RT_GROUP_SCHED</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SECCOMP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SECURITY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SECURITY_NETWORK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SECURITY_PERF_EVENTS_RESTRICT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SECURITY_SELINUX</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_STAGING</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SWITCH</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SYNC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SYSVIPC</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_TUN</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_UID_SYS_STATS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_UNIX</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USB_GADGET</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USELIB</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_XFRM_USER</key> + <value type="tristate">y</value> + </config> + </kernel> + <kernel version="3.18.0"> + <conditions> + <config> + <key>CONFIG_ARM64</key> + <value type="tristate">y</value> + </config> + </conditions> + <config> + <key>CONFIG_ARMV8_DEPRECATED</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_CP15_BARRIER_EMULATION</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SETEND_EMULATION</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SWP_EMULATION</key> + <value type="tristate">y</value> + </config> + </kernel> + <kernel version="4.4.0"> + <config> + <key>CONFIG_ANDROID</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_ANDROID_BINDER_DEVICES</key> + <value type="string">binder,hwbinder,vndbinder</value> + </config> + <config> + <key>CONFIG_ANDROID_BINDER_IPC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_ANDROID_LOW_MEMORY_KILLER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_ASHMEM</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_AUDIT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_BLK_DEV_INITRD</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_CGROUPS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_CGROUP_CPUACCT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_CGROUP_FREEZER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_CGROUP_SCHED</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_DEFAULT_SECURITY_SELINUX</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_DEVKMEM</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_DEVMEM</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_EMBEDDED</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_FB</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_FHANDLE</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_HARDENED_USERCOPY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_HIGH_RES_TIMERS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IKCONFIG</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IKCONFIG_PROC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_INET</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_INET6_AH</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_INET6_ESP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_INET6_IPCOMP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_INET_DIAG_DESTROY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_INET_ESP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_INET_XFRM_MODE_TUNNEL</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP6_NF_FILTER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP6_NF_IPTABLES</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP6_NF_MANGLE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP6_NF_RAW</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP6_NF_TARGET_REJECT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IPV6</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IPV6_MIP6</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IPV6_MULTIPLE_TABLES</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IPV6_OPTIMISTIC_DAD</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IPV6_ROUTER_PREF</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IPV6_ROUTE_INFO</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_ADVANCED_ROUTER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_MULTICAST</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_MULTIPLE_TABLES</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_ARPFILTER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_ARPTABLES</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_ARP_MANGLE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_FILTER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_IPTABLES</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_MANGLE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_MATCH_AH</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_MATCH_ECN</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_MATCH_TTL</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_NAT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_RAW</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_SECURITY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_TARGET_MASQUERADE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_TARGET_NETMAP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_TARGET_REDIRECT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_TARGET_REJECT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_MODULES</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_MODULE_UNLOAD</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_MODVERSIONS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETDEVICES</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_COMMENT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_CONNLIMIT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_CONNMARK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_CONNTRACK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_HASHLIMIT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_HELPER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_IPRANGE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_LENGTH</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_LIMIT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_MAC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_MARK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_PKTTYPE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_POLICY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_QTAGUID</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_QUOTA</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_QUOTA2</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_SOCKET</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_STATE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_STATISTIC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_STRING</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_TIME</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_U32</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_CLASSIFY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_CONNMARK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_CONNSECMARK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_IDLETIMER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_MARK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_NFLOG</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_NFQUEUE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_SECMARK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_TCPMSS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_TPROXY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_TRACE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET_CLS_ACT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET_CLS_U32</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET_EMATCH</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET_EMATCH_U32</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET_KEY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET_SCHED</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET_SCH_HTB</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NFSD</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_NFS_FS</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_AMANDA</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_EVENTS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_FTP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_H323</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_IPV4</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_IPV6</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_IRC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_NETBIOS_NS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_PPTP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_SANE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_SECMARK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_TFTP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CT_NETLINK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CT_PROTO_DCCP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CT_PROTO_SCTP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CT_PROTO_UDPLITE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_NAT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NO_HZ</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_OABI_COMPAT</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_PACKET</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PM_AUTOSLEEP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PM_WAKELOCKS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PPP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PPPOLAC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PPPOPNS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PPP_BSDCOMP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PPP_DEFLATE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PPP_MPPE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PREEMPT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PROFILING</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_RTC_CLASS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_RT_GROUP_SCHED</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SECCOMP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SECURITY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SECURITY_NETWORK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SECURITY_PERF_EVENTS_RESTRICT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SECURITY_SELINUX</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_STAGING</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SYNC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SYSVIPC</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_TUN</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_UID_SYS_STATS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_UNIX</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USB_CONFIGFS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USB_CONFIGFS_F_ACC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USB_CONFIGFS_F_AUDIO_SRC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USB_CONFIGFS_F_FS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USB_CONFIGFS_F_MIDI</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USB_CONFIGFS_F_MTP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USB_CONFIGFS_F_PTP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USB_CONFIGFS_UEVENT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USB_GADGET</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USELIB</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_XFRM_USER</key> + <value type="tristate">y</value> + </config> + </kernel> + <kernel version="4.4.0"> + <conditions> + <config> + <key>CONFIG_ARM64</key> + <value type="tristate">y</value> + </config> + </conditions> + <config> + <key>CONFIG_ARMV8_DEPRECATED</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_CP15_BARRIER_EMULATION</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_RANDOMIZE_BASE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SETEND_EMULATION</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SWP_EMULATION</key> + <value type="tristate">y</value> + </config> + </kernel> + <kernel version="4.9.0"> + <config> + <key>CONFIG_ANDROID</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_ANDROID_BINDER_DEVICES</key> + <value type="string">binder,hwbinder,vndbinder</value> + </config> + <config> + <key>CONFIG_ANDROID_BINDER_IPC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_ANDROID_LOW_MEMORY_KILLER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_ASHMEM</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_AUDIT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_BLK_DEV_INITRD</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_CGROUPS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_CGROUP_BPF</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_CGROUP_CPUACCT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_CGROUP_FREEZER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_CGROUP_SCHED</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_DEFAULT_SECURITY_SELINUX</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_DEVKMEM</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_DEVMEM</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_EMBEDDED</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_FB</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_FHANDLE</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_HARDENED_USERCOPY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_HIGH_RES_TIMERS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IKCONFIG</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IKCONFIG_PROC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_INET</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_INET6_AH</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_INET6_ESP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_INET6_IPCOMP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_INET_DIAG_DESTROY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_INET_ESP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_INET_LRO</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_INET_XFRM_MODE_TUNNEL</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP6_NF_FILTER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP6_NF_IPTABLES</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP6_NF_MANGLE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP6_NF_RAW</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP6_NF_TARGET_REJECT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IPV6</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IPV6_MIP6</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IPV6_MULTIPLE_TABLES</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IPV6_OPTIMISTIC_DAD</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IPV6_ROUTER_PREF</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IPV6_ROUTE_INFO</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_ADVANCED_ROUTER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_MULTICAST</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_MULTIPLE_TABLES</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_ARPFILTER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_ARPTABLES</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_ARP_MANGLE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_FILTER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_IPTABLES</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_MANGLE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_MATCH_AH</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_MATCH_ECN</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_MATCH_TTL</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_NAT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_RAW</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_SECURITY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_TARGET_MASQUERADE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_TARGET_NETMAP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_TARGET_REDIRECT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_IP_NF_TARGET_REJECT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_MODULES</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_MODULE_UNLOAD</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_MODVERSIONS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETDEVICES</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_COMMENT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_CONNLIMIT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_CONNMARK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_CONNTRACK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_HASHLIMIT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_HELPER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_IPRANGE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_LENGTH</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_LIMIT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_MAC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_MARK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_PKTTYPE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_POLICY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_QTAGUID</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_QUOTA</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_QUOTA2</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_SOCKET</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_STATE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_STATISTIC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_STRING</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_TIME</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_MATCH_U32</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_CLASSIFY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_CONNMARK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_CONNSECMARK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_IDLETIMER</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_MARK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_NFLOG</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_NFQUEUE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_SECMARK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_TCPMSS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_TPROXY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NETFILTER_XT_TARGET_TRACE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET_CLS_ACT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET_CLS_U32</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET_EMATCH</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET_EMATCH_U32</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET_KEY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET_SCHED</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NET_SCH_HTB</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NFSD</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_NFS_FS</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_AMANDA</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_EVENTS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_FTP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_H323</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_IPV4</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_IPV6</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_IRC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_NETBIOS_NS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_PPTP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_SANE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_SECMARK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CONNTRACK_TFTP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CT_NETLINK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CT_PROTO_DCCP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CT_PROTO_SCTP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_CT_PROTO_UDPLITE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NF_NAT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_NO_HZ</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_OABI_COMPAT</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_PACKET</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PM_AUTOSLEEP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PM_WAKELOCKS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PPP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PPPOLAC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PPPOPNS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PPP_BSDCOMP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PPP_DEFLATE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PPP_MPPE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PREEMPT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_PROFILING</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_RTC_CLASS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_RT_GROUP_SCHED</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SECCOMP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SECURITY</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SECURITY_NETWORK</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SECURITY_PERF_EVENTS_RESTRICT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SECURITY_SELINUX</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_STAGING</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SYSVIPC</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_TUN</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_UID_SYS_STATS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_UNIX</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USB_CONFIGFS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USB_CONFIGFS_F_ACC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USB_CONFIGFS_F_AUDIO_SRC</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USB_CONFIGFS_F_FS</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USB_CONFIGFS_F_MIDI</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USB_CONFIGFS_F_MTP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USB_CONFIGFS_F_PTP</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USB_CONFIGFS_UEVENT</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USB_GADGET</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_USELIB</key> + <value type="tristate">n</value> + </config> + <config> + <key>CONFIG_XFRM_USER</key> + <value type="tristate">y</value> + </config> + </kernel> + <kernel version="4.9.0"> + <conditions> + <config> + <key>CONFIG_ARM64</key> + <value type="tristate">y</value> + </config> + </conditions> + <config> + <key>CONFIG_ARMV8_DEPRECATED</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_CP15_BARRIER_EMULATION</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_RANDOMIZE_BASE</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SETEND_EMULATION</key> + <value type="tristate">y</value> + </config> + <config> + <key>CONFIG_SWP_EMULATION</key> + <value type="tristate">y</value> + </config> + </kernel> + <sepolicy> + <kernel-sepolicy-version>30</kernel-sepolicy-version> + <sepolicy-version>27.0</sepolicy-version> + </sepolicy> + <avb> + <vbmeta-version>0.0</vbmeta-version> + </avb> +</compatibility-matrix> diff --git a/system/etc/NOTICE.xml.gz b/system/etc/NOTICE.xml.gz new file mode 100644 index 0000000000000000000000000000000000000000..2aa8ec49eb53d34da6010c54140dc095bcf971d5 Binary files /dev/null and b/system/etc/NOTICE.xml.gz differ diff --git a/system/etc/a2dp_audio_policy_configuration.xml b/system/etc/a2dp_audio_policy_configuration.xml new file mode 100644 index 0000000000000000000000000000000000000000..7bcab5cddeae1eefe4c41efbf92b4294dd7b8052 --- /dev/null +++ b/system/etc/a2dp_audio_policy_configuration.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- A2dp Audio HAL Audio Policy Configuration file --> +<module name="a2dp" halVersion="2.0"> + <mixPorts> + <mixPort name="a2dp output" role="source"/> + <mixPort name="a2dp input" role="sink"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="44100,48000" + channelMasks="AUDIO_CHANNEL_IN_MONO,AUDIO_CHANNEL_IN_STEREO"/> + </mixPort> + </mixPorts> + <devicePorts> + <devicePort tagName="BT A2DP Out" type="AUDIO_DEVICE_OUT_BLUETOOTH_A2DP" role="sink"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="44100" + channelMasks="AUDIO_CHANNEL_OUT_STEREO"/> + </devicePort> + <devicePort tagName="BT A2DP Headphones" type="AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES" role="sink"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="44100" + channelMasks="AUDIO_CHANNEL_OUT_STEREO"/> + </devicePort> + <devicePort tagName="BT A2DP Speaker" type="AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_SPEAKER" role="sink"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="44100" + channelMasks="AUDIO_CHANNEL_OUT_STEREO"/> + </devicePort> + <devicePort tagName="BT A2DP In" type="AUDIO_DEVICE_IN_BLUETOOTH_A2DP" role="source"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="44100,48000" + channelMasks="AUDIO_CHANNEL_IN_MONO,AUDIO_CHANNEL_IN_STEREO"/> + </devicePort> + </devicePorts> + <routes> + <route type="mix" sink="BT A2DP Out" + sources="a2dp output"/> + <route type="mix" sink="BT A2DP Headphones" + sources="a2dp output"/> + <route type="mix" sink="BT A2DP Speaker" + sources="a2dp output"/> + <route type="mix" sink="a2dp input" + sources="BT A2DP In"/> + </routes> +</module> diff --git a/system/etc/aee-config b/system/etc/aee-config new file mode 100644 index 0000000000000000000000000000000000000000..8a484ed03a2281d6ff9cb88697321966bca45448 --- /dev/null +++ b/system/etc/aee-config @@ -0,0 +1,2 @@ +AE_FORCE_MODE = 0 +AE_EE = n diff --git a/system/etc/apdb/APDB_MT6739_S01_alps-trunk-o1.bsp_W18.24 b/system/etc/apdb/APDB_MT6739_S01_alps-trunk-o1.bsp_W18.24 new file mode 100644 index 0000000000000000000000000000000000000000..f49325873a1a133e3c96a70f279ee0fdf016e112 Binary files /dev/null and b/system/etc/apdb/APDB_MT6739_S01_alps-trunk-o1.bsp_W18.24 differ diff --git a/system/etc/apdb/APDB_MT6739_S01_alps-trunk-o1.bsp_W18.24_ENUM b/system/etc/apdb/APDB_MT6739_S01_alps-trunk-o1.bsp_W18.24_ENUM new file mode 100644 index 0000000000000000000000000000000000000000..beb707fb8feaea5f0b004270717e1356cbea2fc6 --- /dev/null +++ b/system/etc/apdb/APDB_MT6739_S01_alps-trunk-o1.bsp_W18.24_ENUM @@ -0,0 +1,286 @@ +AP_CFG_CUSTOM_BEGIN_LID 51 +AP_CFG_CUSTOM_FILE_FUEL_GAUGE_LID 76 +AP_CFG_CUSTOM_FILE_GPS_LID 52 +AP_CFG_CUSTOM_FILE_MAX_LID 77 +AP_CFG_FILE_EXT_MDTYPE_LID 20 +AP_CFG_FILE_MDTYPE_LID 19 +AP_CFG_FILE_VER_INFO_LID 0 +AP_CFG_RDCL_BWCS_LID 11 +AP_CFG_RDCL_CAMERA_3A_LID 4 +AP_CFG_RDCL_CAMERA_AF_LID 49 +AP_CFG_RDCL_CAMERA_DEFECT_LID 6 +AP_CFG_RDCL_CAMERA_FEATURE_LID 23 +AP_CFG_RDCL_CAMERA_FLASH_CALIBRATION_LID 50 +AP_CFG_RDCL_CAMERA_GEOMETRY_LID 24 +AP_CFG_RDCL_CAMERA_LENS_LID 8 +AP_CFG_RDCL_CAMERA_PARA_LID 3 +AP_CFG_RDCL_CAMERA_PLINE10_LID 46 +AP_CFG_RDCL_CAMERA_PLINE11_LID 47 +AP_CFG_RDCL_CAMERA_PLINE12_LID 48 +AP_CFG_RDCL_CAMERA_PLINE2_LID 38 +AP_CFG_RDCL_CAMERA_PLINE3_LID 39 +AP_CFG_RDCL_CAMERA_PLINE4_LID 40 +AP_CFG_RDCL_CAMERA_PLINE5_LID 41 +AP_CFG_RDCL_CAMERA_PLINE6_LID 42 +AP_CFG_RDCL_CAMERA_PLINE7_LID 43 +AP_CFG_RDCL_CAMERA_PLINE8_LID 44 +AP_CFG_RDCL_CAMERA_PLINE9_LID 45 +AP_CFG_RDCL_CAMERA_PLINE_LID 37 +AP_CFG_RDCL_CAMERA_SENSOR_LID 7 +AP_CFG_RDCL_CAMERA_SHADING10_LID 34 +AP_CFG_RDCL_CAMERA_SHADING11_LID 35 +AP_CFG_RDCL_CAMERA_SHADING12_LID 36 +AP_CFG_RDCL_CAMERA_SHADING2_LID 26 +AP_CFG_RDCL_CAMERA_SHADING3_LID 27 +AP_CFG_RDCL_CAMERA_SHADING4_LID 28 +AP_CFG_RDCL_CAMERA_SHADING5_LID 29 +AP_CFG_RDCL_CAMERA_SHADING6_LID 30 +AP_CFG_RDCL_CAMERA_SHADING7_LID 31 +AP_CFG_RDCL_CAMERA_SHADING8_LID 32 +AP_CFG_RDCL_CAMERA_SHADING9_LID 33 +AP_CFG_RDCL_CAMERA_SHADING_LID 5 +AP_CFG_RDCL_CAMERA_VERSION_LID 22 +AP_CFG_RDCL_FACTORY_LID 10 +AP_CFG_RDCL_FILE_AUDIO_AUDENH_CONTROL_OPTION_PAR_LID 16 +AP_CFG_RDCL_FILE_AUDIO_BT_GAIN_CUSTOM_LID 74 +AP_CFG_RDCL_FILE_AUDIO_BUFFER_DC_CALIBRATION_PAR_LID 67 +AP_CFG_RDCL_FILE_AUDIO_COMPFLT_LID 53 +AP_CFG_RDCL_FILE_AUDIO_EFFECT_LID 54 +AP_CFG_RDCL_FILE_AUDIO_FUNC_SWITCH_PARAM_LID 75 +AP_CFG_RDCL_FILE_AUDIO_GAIN_TABLE_LID 63 +AP_CFG_RDCL_FILE_AUDIO_HAC_PARAM_LID 72 +AP_CFG_RDCL_FILE_AUDIO_HD_REC_PAR_LID 65 +AP_CFG_RDCL_FILE_AUDIO_HD_REC_SCENE_LID 66 +AP_CFG_RDCL_FILE_AUDIO_LID 51 +AP_CFG_RDCL_FILE_AUDIO_MAGI_CONFERENCE_LID 71 +AP_CFG_RDCL_FILE_AUDIO_MUSIC_DRC_LID 69 +AP_CFG_RDCL_FILE_AUDIO_PARAM_MED_LID 57 +AP_CFG_RDCL_FILE_AUDIO_RINGTONE_DRC_LID 70 +AP_CFG_RDCL_FILE_AUDIO_SPEECH_LPBK_PARAM_LID 73 +AP_CFG_RDCL_FILE_AUDIO_VER1_VOLUME_CUSTOM_LID 64 +AP_CFG_RDCL_FILE_AUDIO_VOIP_PAR_LID 17 +AP_CFG_RDCL_FILE_AUDIO_VOLUME_CUSTOM_LID 58 +AP_CFG_RDCL_FILE_AUDIO_WB_PARAM_LID 60 +AP_CFG_RDCL_FILE_AUXADC_LID 2 +AP_CFG_RDCL_FILE_DUAL_MIC_CUSTOM_LID 59 +AP_CFG_RDCL_FILE_HEADPHONE_COMPFLT_LID 62 +AP_CFG_RDCL_FILE_MD_SBP_LID 25 +AP_CFG_RDCL_FILE_SDIO_LID 21 +AP_CFG_RDCL_FILE_VIBSPK_COMPFLT_LID 68 +AP_CFG_RDCL_FILE_VOICE_RECOGNIZE_PARAM_LID 15 +AP_CFG_RDCL_HWMON_ACC_LID 12 +AP_CFG_RDCL_HWMON_GYRO_LID 13 +AP_CFG_RDCL_HWMON_PS_LID 18 +AP_CFG_RDCL_UART_LID 9 +AP_CFG_RDEB_FILE_BT_ADDR_LID 1 +AP_CFG_RDEB_FILE_WIFI_LID 55 +AP_CFG_RDEB_OMADM_USB_LID 14 +AP_CFG_RDEB_WIFI_CUSTOM_LID 56 +AP_CFG_REEB_PRODUCT_INFO_LID 61 +AUDIO_GAIN_ALARM 4 +AUDIO_GAIN_BLUETOOTH_SCO 6 +AUDIO_GAIN_DEFAULT -1 +AUDIO_GAIN_DTMF 8 +AUDIO_GAIN_ENFORCED_AUDIBLE 7 +AUDIO_GAIN_FM 10 +AUDIO_GAIN_MATV 11 +AUDIO_GAIN_MAX_STREAM 11 +AUDIO_GAIN_MUSIC 3 +AUDIO_GAIN_NOTIFICATION 5 +AUDIO_GAIN_RING 2 +AUDIO_GAIN_SYSTEM 1 +AUDIO_GAIN_TTS 9 +AUDIO_GAIN_VOICE_CALL 0 +AUDIO_HFP_DEVICE_HEADSET 2 +AUDIO_HFP_DEVICE_NORMAL 0 +AUDIO_HFP_DEVICE_RESERVED 3 +AUDIO_HFP_DEVICE_SPEAKER 1 +AUDIO_VOIP_DEVICE_BT 3 +AUDIO_VOIP_DEVICE_HEADSET 2 +AUDIO_VOIP_DEVICE_NORMAL 0 +AUDIO_VOIP_DEVICE_SPEAKER 1 +DATA_MPAL_SAP 7 +DRIVER_PS_SAP 11 +EXTAMP_VOLUME_TYPE_MAX 6 +GAIN_ANALOG_PLAY 17 +GAIN_IDLE_RECORD_HEADSET 1 +GAIN_IDLE_RECORD_MIC 0 +GAIN_INCALL_NB_ECEIVER 6 +GAIN_INCALL_NB_HEADSET 7 +GAIN_INCALL_NB_SPEAKER 8 +GAIN_INCALL_WB_ECEIVER 9 +GAIN_INCALL_WB_HEADSET 10 +GAIN_INCALL_WB_SPEAKER 11 +GAIN_LEVEL_SHIFT 16 +GAIN_OUTPUT_DOCK 3 +GAIN_OUTPUT_EARPIECE 0 +GAIN_OUTPUT_HEADSET 1 +GAIN_OUTPUT_SPEAKER 2 +GAIN_RESERVED1_HEADSET 21 +GAIN_RESERVED1_MIC 20 +GAIN_RESERVED2_HEADSET 23 +GAIN_RESERVED2_MIC 22 +GAIN_TTY_DEVICE 15 +GAIN_VIDEO_REC_HEADSET 5 +GAIN_VIDEO_REC_MIC 4 +GAIN_VOICE_REC_HEADSET 3 +GAIN_VOICE_REC_MIC 2 +GAIN_VOICE_UNLOCK_HEADSET 19 +GAIN_VOICE_UNLOCK_MIC 18 +GAIN_VOIP_HEADSET 13 +GAIN_VOIP_RECEIVER 12 +GAIN_VOIP_SPEAKER 14 +GMMREG_SAP 1 +HD_REC_DEVICE_SOURCE_BT_EARPHONE 2 +HD_REC_DEVICE_SOURCE_HANDSET 0 +HD_REC_DEVICE_SOURCE_HEADSET 1 +HEADSET_AUDIO_BUFFER 0 +HEADSET_FM_RECORD_A 1 +HEADSET_FM_RECORD_D 2 +HEADSET_RSERVED_2 4 +HEADSET_RSERVED_3 5 +HEADSET_SIP_AUDIO_BUFFER 3 +HEADSET_SPEAKER_AMP 1 +HEADSET_SPEAKER_AUDIO_BUFFER 0 +HEADSET_SPEAKER_FM_RECORD_A 3 +HEADSET_SPEAKER_FM_RECORD_D 4 +HEADSET_SPEAKER_IV_BUFFER 2 +HEADSET_SPEAKER_RSERVED_2 6 +HEADSET_SPEAKER_RSERVED_3 7 +HEADSET_SPEAKER_SIP_AUDIO_BUFFER 5 +HEADSET_SPEAKER_VOLUME_TYPE_MAX 8 +HEADSET_VOLUME_TYPE_MAX 6 +INVALID_SAP 0 +L1_L1_SAP 8 +L1_MPAL_SAP 9 +LAST_MOD_ID 27 +LAST_SAP_CODE 12 +MAX_VOL_CATE 3 +MAX_VOL_TYPE 7 +MM_CC_SAP 3 +MM_SMS_SAP 2 +MM_SS_SAP 4 +MOD_ATCI 4 +MOD_CC 6 +MOD_CISS 7 +MOD_CUSTOM1 12 +MOD_CUSTOM_BEGIN 12 +MOD_CUSTOM_END 13 +MOD_FT 0 +MOD_MM 5 +MOD_NIL 0 +MOD_NVRAM 1 +MOD_SMS 8 +MOD_SYSDEBUG 11 +MOD_SYSTEM 10 +MOD_TIMER 9 +MOD_TST 2 +MOD_TST_READER 3 +MPAL_L1_SAP 10 +MSG_ID_END 10000 +MSG_ID_FT 9500 +MSG_ID_INVALID_TYPE 0 +MSG_ID_L1TASK_WAKEUP 14 +MSG_ID_MMCC_DATA_REQ 6 +MSG_ID_MMCC_EST_REQ 4 +MSG_ID_MMCC_PROMPT_REJ 1 +MSG_ID_MMCC_PROMPT_RSP 2 +MSG_ID_MMCC_REEST_REQ 5 +MSG_ID_MMCC_REL_REQ 3 +MSG_ID_MPHC_BLOCK_QUALITY_IND 9 +MSG_ID_MPHC_EXTENDED_MEAS_IND 8 +MSG_ID_MPHC_NEIGHBOR_BSIC_IND 13 +MSG_ID_MPHC_NEIGHBOR_MEAS_IND 12 +MSG_ID_MPHC_OPEN_TCH_LOOP_CNF 7 +MSG_ID_MPHC_SERV_DEDI_MEAS_IND 11 +MSG_ID_MPHC_SERV_IDLE_MEAS_IND 10 +MSG_ID_TIMER_EXPIRY 9000 +MSG_ID_TST_INJECT_STRING 6000 +NORMAL_AUDIO_BUFFER 0 +NORMAL_FM_RECORD_A 1 +NORMAL_FM_RECORD_D 2 +NORMAL_RSERVED_2 4 +NORMAL_RSERVED_3 5 +NORMAL_SIP_AUDIO_BUFFER 3 +NORMAL_VOLUME_TYPE_MAX 6 +NUM_AUDIO_GAIN_TYPES 12 +NUM_AUDIO_HFP_DEVICE 4 +NUM_AUDIO_VOIP_DEVICE 4 +NUM_GAIN_OUTPUT_DEVICES 4 +NUM_HD_REC_DEVICE_SOURCE 3 +NUM_MIC_GAINS 24 +NUM_OF_VOL_MODE 4 +SME_READER_SAP 5 +SME_TIMER_SAP 6 +SPEAKER_AMP 0 +SPEAKER_FM_RECORD_A 1 +SPEAKER_FM_RECORD_D 2 +SPEAKER_RSERVED_2 4 +SPEAKER_RSERVED_3 5 +SPEAKER_SIP_AUDIO_BUFFER 3 +SPEAKER_VOLUME_TYPE_MAX 6 +STACK_TIMER_SAP 12 +TRACE_ERROR 4 +TRACE_FUNC 0 +TRACE_GROUP_1 5 +TRACE_GROUP_10 14 +TRACE_GROUP_2 6 +TRACE_GROUP_3 7 +TRACE_GROUP_4 8 +TRACE_GROUP_5 9 +TRACE_GROUP_6 10 +TRACE_GROUP_7 11 +TRACE_GROUP_8 12 +TRACE_GROUP_9 13 +TRACE_INFO 2 +TRACE_STATE 1 +TRACE_WARNING 3 +TST_CTI_COMMAND_CMD 56 +TST_EM_MODE_CONFIG 12 +TST_FT_MODE_CONFIG 16 +TST_FT_SAP 200 +TST_INJECT_AT_CMD 7 +TST_INJECT_STRING_TO_MODULE 6 +TST_LOG_ON_OFF 1 +TST_NULL_COMMAND 0 +TST_READ_GLOBAL_VARIABLE 10 +TST_REBOOT_TARGET_CMD 8 +TST_SET_L1_TRC_FILTER 5 +TST_SET_PRIM_MOD_FILTER 2 +TST_SET_PRIM_SAP_FILTER 3 +TST_SET_PS_TRC_FILTER 4 +TST_SET_TRAP_FILTER 9 +TST_SIM_FILE_INFO_REQ 13 +TST_SIM_READ_REQ 14 +TST_SIM_WRITE_REQ 15 +TST_WRITE_GLOBAL_VARIABLE 11 +VER1_NUM_OF_VOL_TYPE 9 +VER1_VOL_TYPE_FM 3 +VER1_VOL_TYPE_MATV 8 +VER1_VOL_TYPE_MEDIA 7 +VER1_VOL_TYPE_MIC 2 +VER1_VOL_TYPE_RING 0 +VER1_VOL_TYPE_SID 6 +VER1_VOL_TYPE_SIP 1 +VER1_VOL_TYPE_SPH 4 +VER1_VOL_TYPE_SPH2 5 +VOLUME_AUDIO_BUFFER_EXTAMP 1 +VOLUME_EXTAMP 2 +VOLUME_EXTAMP_RSERVED_1 3 +VOLUME_EXTAMP_RSERVED_2 4 +VOLUME_EXTAMP_RSERVED_3 5 +VOLUME_HEADSET_MODE 1 +VOLUME_HEADSET_SPEAKER_MODE 3 +VOLUME_IV_BUFFER_EXTAMP 0 +VOLUME_NORMAL_MODE 0 +VOLUME_SPEAKER_MODE 2 +VOL_HANDFREE 2 +VOL_HEADSET 1 +VOL_NORMAL 0 +VOL_TYPE_FMR 3 +VOL_TYPE_KEY 1 +VOL_TYPE_MEDIA 6 +VOL_TYPE_MIC 2 +VOL_TYPE_SID 5 +VOL_TYPE_SPH 4 +VOL_TYPE_TON 0 diff --git a/system/etc/apns-conf.xml b/system/etc/apns-conf.xml new file mode 100644 index 0000000000000000000000000000000000000000..0cab0a0ef1f574e4c2ebcd21e7258d5013c4abdb --- /dev/null +++ b/system/etc/apns-conf.xml @@ -0,0 +1,21008 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** Copyright 2006, Google Inc. +** +** Licensed under the Apache License, Version 2.0 (the "License"); +** you may not use this file except in compliance with the License. +** You may obtain a copy of the License at +** +** http://www.apache.org/licenses/LICENSE-2.0 +** +** Unless required by applicable law or agreed to in writing, software +** distributed under the License is distributed on an "AS IS" BASIS, +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +** See the License for the specific language governing permissions and +** limitations under the License. +*/ +--> + +<!-- use empty string to specify no proxy or port --> +<!-- This version must agree with that in apps/common/res/apns.xml --> +<apns version="8"> + +<!-- Keep this Emergency as the first, so it will be the backup Emergency Apn --> + <apn carrier="Emergency" + mcc="" + mnc="" + apn="" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Cosmote Internet" + mcc="202" + mnc="01" + apn="internet" + type="default,supl,dun,ia,xcap" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="Cosmote MMS" + mcc="202" + mnc="01" + apn="mms" + mmsc="http://mmsc.cosmote.gr:8002" + mmsproxy="10.10.10.20" + mmsport="8080" + type="mms" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="HOS" + mcc="202" + mnc="01" + apn="hos" + mmsc="http://mmsc.cosmote.gr:8002" + mmsproxy="10.10.10.20" + mmsport="8080" + type="mms,xcap" + protocol="IPV4V6" + roaming_protocol="IP" + bearer_bitmask ="18" + user_visible="false" + /> + + <apn carrier="IMS" + mcc="202" + mnc="01" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Cosmote Wireless Internet" + mcc="202" + mnc="02" + apn="internet" + type="default,supl,xcap" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="Cosmote MMS" + mcc="202" + mnc="02" + apn="mms" + mmsc="http://mmsc.cosmote.gr:8002" + mmsproxy="10.10.10.20" + mmsport="8080" + type="mms" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="HOS" + mcc="202" + mnc="02" + apn="hos" + mmsc="http://mmsc.cosmote.gr:8002" + mmsproxy="10.10.10.20" + mmsport="8080" + type="mms,xcap" + protocol="IPV4V6" + roaming_protocol="IP" + bearer_bitmask ="18" + /> + + <apn carrier="IMS" + mcc="202" + mnc="02" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="Vodafone IMS" + mcc="202" + mnc="05" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Vf Internet Corporate" + mcc="202" + mnc="05" + apn="internet" + user="user" + password="pass" + type="default,supl,xcap" + /> + + <apn carrier="Vf Internet" + mcc="202" + mnc="05" + apn="internet.vodafone.gr" + user="user" + password="pass" + type="default,supl,xcap" + /> + + <apn carrier="Vodafone GR-MMS" + mcc="202" + mnc="05" + apn="mms.vodafone.net" + user="user" + password="pass" + mmsc="http://mms.vodafone.gr" + mmsproxy="213.249.19.49" + mmsport="5080" + type="mms" + /> + + <apn carrier="Vodafone GR" + mcc="202" + mnc="05" + apn="surfonly.vodafone.gr" + type="default,supl,xcap" + /> + + <apn carrier="Vf Mobile Internet" + mcc="202" + mnc="05" + apn="" + type="ia" + /> + + <apn carrier="Q-Telecom MMS GPRS" + mcc="202" + mnc="09" + apn="q-mms.myq.gr" + mmsc="http://mms.myq.gr" + mmsproxy="192.168.80.134" + mmsport="8080" + type="mms" + /> + + <apn carrier="Wind Internet" + mcc="202" + mnc="10" + apn="gint.b-online.gr" + user="wap" + password="wap" + type="default,supl" + /> + + <apn carrier="Wind MMS" + mcc="202" + mnc="10" + apn="mnet.b-online.gr" + mmsc="http://192.168.200.95/servlets/mms" + mmsproxy="192.168.200.11" + mmsport="9401" + type="mms" + /> + + <apn carrier="Orange World" + mcc="203" + mnc="10" + apn="mworld.be" + proxy="212.65.63.143" + port="8080" + type="wap" + /> + + <apn carrier="VOX GPRS" + mcc="203" + mnc="10" + apn="vox.lu" + proxy="212.088.139.044" + port="8080" + type="wap" + /> + + <apn carrier="Tele2 GPRS" + mcc="204" + mnc="02" + apn="internet.tele2.nl" + mmsc="http://mmsc.tele2.nl" + mmsproxy="193.12.40.64" + mmsport="8080" + type="default,supl,mms,xcap" + /> + + <apn carrier="Tele2 IMS" + mcc="204" + mnc="02" + apn="ims" + type="ims" + protocol="IPV6" + /> + + <apn carrier="Vodafone NL" + mcc="204" + mnc="04" + apn="live.vodafone.com" + user="vodafone" + password="vodafone" + mmsc="http://mmsc.mms.vodafone.nl" + mmsproxy="192.168.251.150" + mmsport="8799" + type="default,supl,mms,xcap" + /> + + <apn carrier="Vodafone MMS Business" + mcc="204" + mnc="04" + apn="office.vodafone.nl" + user="vodafone" + password="vodafone" + mmsc="http://mmsc.mms.vodafone.nl" + mmsproxy="192.168.251.150" + mmsport="8799" + type="mms" + /> + + <apn carrier="IMS" + mcc="204" + mnc="04" + apn="IMS" + type="ims" + mvno_type="spn" + mvno_match_data="ä¸å›½ç”µä¿¡" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="CTNET" + mcc="204" + mnc="04" + apn="ctnet" + authtype="3" + user="ctnet@mycdma.cn" + password="vnet.mobi" + type="default,dun,xcap" + mvno_type="spn" + mvno_match_data="ä¸å›½ç”µä¿¡" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="8•ta" + mcc="204" + mnc="04" + apn="8ta.internet" + type="default,supl,xcap" + mvno_type="spn" + mvno_match_data="8.ta Δ" + /> + + <apn carrier="8•ta mms" + mcc="204" + mnc="04" + apn="mms" + mmsproxy="41.151.254.162" + mmsport="8080" + mmsc="http://mms.8ta.com:38090/was" + type="mms" + mvno_type="spn" + mvno_match_data="8.ta Δ" + /> + + <apn carrier="IMS" + mcc="204" + mnc="04" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="KPN Mobiel Internet" + mcc="204" + mnc="08" + apn="internet" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="204" + mnc="08" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="UT-Interface" + mcc="204" + mnc="08" + apn="ut" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="lyca" + mcc="204" + mnc="09" + apn="data.lycamobile.nl" + type="default" + /> + + <apn carrier="Telfort Mobiel Internet" + mcc="204" + mnc="12" + apn="internet" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="T-Mobile Internet" + mcc="204" + mnc="16" + apn="smartsites.t-mobile" + type="default,supl,dun,ia" + protocol="IPV4V6" + roaming_protocol="IP" + authtype="1" + /> + + <apn carrier="T-Mobile MMS" + mcc="204" + mnc="16" + apn="mms" + user="tmobilemms" + password="tmobilemms" + mmsc="http://t-mobilemms" + mmsproxy="10.10.10.11" + mmsport="8080" + type="mms" + protocol="IPV4V6" + roaming_protocol="IP" + authtype="1" + /> + + <apn carrier="IMS" + mcc="204" + mnc="16" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <!-- MVNO BEN, need mvno item? --> + <apn carrier="Ben internet" + mcc="204" + mnc="16" + apn="smartsites.t-mobile" + type="default,supl,dun,ia" + protocol="IPV4V6" + roaming_protocol="IP" + authtype="1" + /> + + <apn carrier="Ben MMS" + mcc="204" + mnc="16" + apn="mms.ben" + mmsc="http://benmms" + mmsproxy="10.10.10.11" + mmsport="8080" + type="mms" + protocol="IPV4V6" + roaming_protocol="IP" + authtype="1" + /> + + <apn carrier="T-Mobile Internet" + mcc="204" + mnc="20" + apn="smartsites.t-mobile" + type="default,supl,dun,ia" + protocol="IPV4V6" + roaming_protocol="IP" + authtype="1" + /> + + <apn carrier="T-Mobile MMS" + mcc="204" + mnc="20" + apn="mms" + user="tmobilemms" + password="tmobilemms" + mmsc="http://t-mobilemms" + mmsproxy="10.10.10.11" + mmsport="8080" + type="mms" + protocol="IPV4V6" + roaming_protocol="IP" + authtype="1" + /> + + <apn carrier="IMS" + mcc="204" + mnc="20" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="KPN Mobiel Internet" + mcc="204" + mnc="69" + apn="internet" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="204" + mnc="69" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="UT-Interface" + mcc="204" + mnc="69" + apn="ut" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Px WAP" + mcc="206" + mnc="01" + apn="wap.proximus.be" + user="wap" + password="wap" + proxy="10.253.7.3" + port="8080" + type="wap" + /> + + <apn carrier="Px Internet" + mcc="206" + mnc="01" + apn="INTERNET.PROXIMUS.BE" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Px MMS" + mcc="206" + mnc="01" + apn="EVENT.PROXIMUS.BE" + user="mms" + password="mms" + mmsc="http://mmsc.proximus.be/mms" + mmsproxy="10.55.14.75" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="206" + mnc="01" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="XCAP" + mcc="206" + mnc="01" + apn="hos" + type="xcap" + /> + + <apn carrier="Debitel" + mcc="206" + mnc="08" + apn="wap.debitel.de" + user="debitel" + password="wap" + proxy="193.168.128.127" + port="8080" + type="wap" + /> + + <apn carrier="O2 Internet" + mcc="206" + mnc="08" + apn="internet" + type="default,supl" + /> + + <apn carrier="O2 MMS" + mcc="206" + mnc="08" + apn="internet" + mmsc="http://10.81.0.7:8002" + mmsproxy="82.113.100.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="Orange internet" + mcc="206" + mnc="10" + apn="mworld.be" + type="default,supl" + protocol="IPV4V6" + /> + + <apn carrier="Orange MMS" + mcc="206" + mnc="10" + apn="mms.be" + mmsc="http://mmsc.mobistar.be" + mmsproxy="212.65.63.143" + mmsport="8080" + type="mms" + /> + + <apn carrier="ims" + mcc="206" + mnc="10" + apn="ims" + type="ims" + protocol="IPV4V6" + /> + + <apn carrier="Base Mobile Internet" + mcc="206" + mnc="20" + apn="gprs.base.be" + user="base" + password="base" + type="default,supl" + /> + + <apn carrier="BASE MMS" + mcc="206" + mnc="20" + apn="mms.base.be" + user="base" + password="base" + mmsc="http://mmsc.base.be" + mmsproxy="217.72.235.1" + mmsport="8080" + type="mms" + /> + + <apn carrier="BASE WAP" + mcc="206" + mnc="20" + apn="" + type="ia" + /> + + <apn carrier="Orange Entreprise" + mcc="208" + mnc="01" + apn="orange-mib" + proxy="172.16.2.8" + port="8000" + authtype="0" + user="orange" + password="orange" + type="default,supl" + /> + + <apn carrier="Orange World" + mcc="208" + mnc="01" + apn="orange" + authtype="0" + user="orange" + password="orange" + type="default,supl" + /> + + <apn carrier="Orange MMS" + mcc="208" + mnc="01" + apn="orange.acte" + user="orange" + password="orange" + mmsc="http://mms.orange.fr" + mmsproxy="192.168.10.200" + mmsport="9201" + type="mms" + /> + + <apn carrier="Orange Internet" + mcc="208" + mnc="01" + apn="orange.fr" + authtype="0" + user="orange" + password="orange" + type="dun" + /> + + <apn carrier="Orange IMS APN" + mcc="208" + mnc="01" + apn="ims" + type="ims" + /> + + <apn carrier="Orange IA" + mcc="208" + mnc="01" + apn="" + type="ia" + /> + + <apn carrier="Orange" + mcc="208" + mnc="01" + apn="nisginet" + authtype="1" + type="default,supl,xcap" + /> + + <apn carrier="MMS Orange GPRS" + mcc="208" + mnc="02" + apn="orange.acte" + user="orange" + password="orange" + mmsc="http://mms.orange.fr/" + mmsproxy="192.168.10.200" + mmsport="8080" + type="mms" + /> + + <apn carrier="Orange GPRS ISP" + mcc="208" + mnc="02" + apn="orange.fr" + type="default,supl" + /> + + <apn carrier="SFR-MMS" + mcc="208" + mnc="10" + apn="mmssfr" + mmsc="http://mms1" + mmsproxy="10.151.0.1" + mmsport="8080" + type="mms" + /> + + <apn carrier="SFR" + mcc="208" + mnc="10" + apn="sl2sfr" + type="default,supl,xcap,mms" + /> + + <apn carrier="ACCESS DATA" + mcc="208" + mnc="10" + apn="websfr" + type="default,supl" + /> + + <apn carrier="SFR IMS" + mcc="208" + mnc="10" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="SFR webphone" + mcc="208" + mnc="10" + apn="" + type="ia" + /> + + <apn carrier="MMS" + mcc="208" + mnc="11" + apn="mmssfr" + mmsc="http://mms1" + mmsproxy="10.151.0.1" + mmsport="8080" + type="mms" + /> + + <apn carrier="ACCESS DATA" + mcc="208" + mnc="11" + apn="websfr" + type="default,supl" + /> + + <apn carrier="MMS" + mcc="208" + mnc="13" + apn="mmssfr" + mmsc="http://mms1" + mmsproxy="10.151.0.1" + mmsport="8080" + type="mms" + /> + + <apn carrier="ACCESS DATA" + mcc="208" + mnc="13" + apn="websfr" + type="default,supl" + /> + + <apn carrier="Free" + mcc="208" + mnc="15" + apn="free" + type="default" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Bouygues Telecom" + mcc="208" + mnc="20" + apn="mmsbouygtel.com" + mmsc="http://mms.bouyguestelecom.fr/mms/wapenc" + mmsproxy="62.201.129.226" + mmsport="8080" + type="default,supl,mms,xcap" + /> + + <apn carrier="Bouygues Pro" + mcc="208" + mnc="20" + apn="a2bouygtel.com" + type="default,supl,mms" + /> + + <apn carrier="Bouygues IMS" + mcc="208" + mnc="20" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="BouyguesGPRS ISP" + mcc="208" + mnc="21" + apn="ebouygtel.com" + type="default,supl" + /> + + <apn carrier="MMS Bouygues" + mcc="208" + mnc="21" + apn="mmsbouygtel.com" + mmsc="http://mms.bouyguestelecom.fr/mms/wapenc" + mmsproxy="62.201.129.226" + mmsport="8080" + type="mms" + /> + + <apn carrier="BouyguesGPRS ISP" + mcc="208" + mnc="88" + apn="ebouygtel.com" + type="default,supl" + /> + + <apn carrier="MMS Bouygues" + mcc="208" + mnc="88" + apn="mmsbouygtel.com" + mmsc="http://mms.bouyguestelecom.fr/mms/wapenc" + mmsproxy="62.201.129.226" + mmsport="8080" + type="mms,xcap" + /> + + <apn carrier="Bouygues IMS" + mcc="208" + mnc="88" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone" + mcc="214" + mnc="01" + apn="airtelwap.es" + user="wap@wap" + password="wap125" + type="default,supl" + authtype="0" + /> + + <apn carrier="Ut" + mcc="214" + mnc="01" + apn="ut.es" + type="xcap" + server="xcap.ims.mnc001.mcc214.pub.3gppnetwork.org" + port="8090" + protocol="IP" + /> + + <apn carrier="Vodafone ES-MMS" + mcc="214" + mnc="01" + apn="mms.vodafone.net" + user="wap@wap" + password="wap125" + mmsc="http://mmsc.vodafone.es/servlets/mms" + mmsproxy="212.73.32.10" + mmsport="80" + type="mms" + /> + + <apn carrier="ims" + mcc="214" + mnc="01" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Orange MMS" + mcc="214" + mnc="03" + apn="orangemms" + user="orange" + password="orange" + mmsc="http://mms.orange.es" + mmsproxy="172.22.188.25" + mmsport="8080" + authtype="1" + type="mms" + /> + + <apn carrier="Orange Internet Móvil" + mcc="214" + mnc="03" + apn="orangeworld" + user="orange" + password="orange" + authtype="1" + type="default" + /> + + <!-- Spain 2.5g or 3g --> + <apn carrier="Orange Internet PC" + mcc="214" + mnc="03" + apn="internet" + user="orange" + password="orange" + type="default" + /> + + <apn carrier="Orange Internet PC" + mcc="214" + mnc="03" + apn="internet" + authtype="0" + user="orange" + password="orange" + type="dun" + /> + + <apn carrier="IMS" + mcc="214" + mnc="03" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Euskaltel Internet" + mcc="214" + mnc="03" + apn="internet.euskaltel.mobi" + user="CLIENTE" + password="EUSKALTEL" + authtype="1" + type="default,supl" + mvno_type="imsi" + mvno_match_data="2140359" + /> + + <apn carrier="Euskaltel MMS" + mcc="214" + mnc="03" + apn="euskaltelmms.euskaltel.mobi" + user="MMS" + password="EUSKALTEL" + authtype="1" + mmsc="http://mms.euskaltel.mobi" + mmsproxy="172.16.18.74" + mmsport="8080" + type="mms" + mvno_type="imsi" + mvno_match_data="2140359" + /> + + <apn carrier="Carrefour" + mcc="214" + mnc="03" + apn="CARREFOURINTERNET" + authtype="1" + type="default,supl" + mvno_type="imsi" + mvno_match_data="2140352xxxxxxxx" + /> + + <apn carrier="Carrefour MMS" + mcc="214" + mnc="03" + apn="CARREFOURMMS" + user="CARREFOUR" + password="CARREFOUR" + authtype="1" + mmsc="http://mms.orange.es" + mmsproxy="172.022.188.025" + mmsport="8080" + mvno_type="imsi" + mvno_match_data="2140352xxxxxxxx" + type="mms" + /> + + <apn carrier="GPRS Connection" + mcc="214" + mnc="04" + apn="internet" + type="default,supl" + /> + + <apn carrier="Yoigo MMS" + mcc="214" + mnc="04" + apn="mms" + mmsc="http://mmss/" + mmsproxy="193.209.134.141" + mmsport="80" + type="mms" + /> + + <apn carrier="Yoigo Internet" + mcc="214" + mnc="04" + apn="" + type="ia" + /> + + <apn carrier="INTERNET GPRS" + mcc="214" + mnc="06" + apn="airtelnet.es" + user="vodafone" + password="vodafone" + type="default,supl,xcap" + /> + + <apn carrier="MMS Vodafone" + mcc="214" + mnc="06" + apn="mms.vodafone.net" + user="wap@wap" + password="wap125" + mmsc="http://mmsc.vodafone.es/servlets/mms" + mmsproxy="212.73.32.10" + mmsport="80" + type="mms" + /> + + <apn carrier="movistar Internet" + mcc="214" + mnc="07" + apn="movistar.es" + user="MOVISTAR" + password="MOVISTAR" + type="default,supl" + /> + + <apn carrier="Telefonica Internet" + mcc="214" + mnc="07" + apn="telefonica.es" + user="telefonica" + password="telefonica" + type="default,supl" + /> + + <apn carrier="Telefonica MMS" + mcc="214" + mnc="07" + apn="telefonica.es" + user="telefonica" + password="telefonica" + mmsc="http://mms.movistar.com" + mmsproxy="10.138.255.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="Euskaltel Internet" + mcc="214" + mnc="08" + apn="internet.euskaltel.mobi" + user="CLIENTE" + password="EUSKALTEL" + type="default,supl" + /> + + <apn carrier="Euskaltel MMS" + mcc="214" + mnc="08" + apn="euskaltelmms.euskaltel.mobi" + user="MMS" + password="EUSKALTEL" + mmsc="http://mms.euskaltel.mobi" + mmsproxy="172.16.18.74" + mmsport="8080" + type="mms" + /> + + <apn carrier="blau ES" + mcc="214" + mnc="19" + apn="gprs-service.com" + mmsc="http://217.18.32.180:8080" + mmsproxy="217.18.32.181" + mmsport="8080" + type="default,supl,mms" + /> + + <apn carrier="Simyo ES" + mcc="214" + mnc="19" + apn="gprs-service.com" + type="default,supl" + /> + + <apn carrier="Simyo ES-MMS" + mcc="214" + mnc="19" + apn="gprs-service.com" + password="1234" + mmsc="http://mms-services.eu" + mmsproxy="217.12.32.180" + mmsport="8080" + type="mms" + /> + + <apn carrier="Jazztel" + mcc="214" + mnc="21" + apn="jazzinternet" + type="default,supl" + /> + + <apn carrier="Jazztel MMS" + mcc="214" + mnc="21" + apn="jazzmms" + mmsc="http://jazztelmms.com:8081" + mmsproxy="217.18.32.183" + mmsport="8081" + type="mms" + /> + + <apn carrier="Telenor MMS" + mcc="216" + mnc="01" + apn="mms" + mmsc="http://mmsc.telenor.hu/" + mmsproxy="84.225.255.1" + mmsport="8080" + type="mms" + /> + + <apn carrier="Telenor Online" + mcc="216" + mnc="01" + apn="online" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="216" + mnc="01" + apn="ims" + type="ims,ia" + protocol="IPV6" + /> + + <apn carrier="XCAP" + mcc="216" + mnc="01" + apn="xcap" + type="xcap" + /> + + <apn carrier="IMS" + mcc="216" + mnc="03" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="xcap" + mcc="216" + mnc="03" + apn="xcap" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Telekom HU NET" + mcc="216" + mnc="30" + apn="internet.telekom" + type="default,dun,supl,ia,xcap" + authtype="1" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="Telekom HU MMS" + mcc="216" + mnc="30" + apn="internet.telekom" + mmsc="http://mms.t-mobile.hu/servlets/mms" + mmsproxy="212.51.126.10" + mmsport="8080" + type="mms" + authtype="1" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="IMS" + mcc="216" + mnc="30" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Elofizetes" + mcc="216" + mnc="70" + apn="vitamax.internet.vodafone.net" + type="default,supl" + /> + + <apn carrier="MMS Elofizetes" + mcc="216" + mnc="70" + apn="mms.vodafone.net" + mmsc="http://mms.vodafone.hu/servlets/mms" + mmsproxy="80.244.97.2" + mmsport="8080" + type="mms" + /> + + <apn carrier="Tesco Internet" + mcc="216" + mnc="70" + apn="internet.tescomobile.hu" + type="default,supl,xcap" + /> + + <apn carrier="MMS Tesco" + mcc="216" + mnc="70" + apn="mms.tescomobile.hu" + mmsc="http://mms.tescomobile.hu/servlets/mms" + mmsproxy="80.244.97.2" + mmsport="8080" + type="mms" + /> + + <apn carrier="ERONET WAP" + mcc="218" + mnc="03" + apn="wap.eronet.ba" + proxy="10.12.3.10" + port="8080" + type="wap" + /> + + <apn carrier="ERONET GPRS" + mcc="218" + mnc="03" + apn="gprs.eronet.ba" + type="default,supl" + /> + + <apn carrier="MMS-ERONET" + mcc="218" + mnc="03" + apn="mms.eronet.ba" + mmsc="http://mms.gprs.eronet.ba/mms/wapenc" + mmsproxy="10.12.3.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="MTEL WAP" + mcc="218" + mnc="05" + apn="3g1" + proxy="10.12.3.10" + port="8080" + type="wap" + /> + + <apn carrier="MTEL GPRS" + mcc="218" + mnc="05" + apn="3g3" + type="default,supl" + /> + + <apn carrier="MMS-MTEL" + mcc="218" + mnc="05" + apn="mtelmms" + mmsc="http://mmsc.mtel.ba/mms/wapenc" + mmsproxy="192.168.61.11" + mmsport="80" + type="mms" + /> + + <apn carrier="BHMobile WAP" + mcc="218" + mnc="90" + apn="active.bhmobile.ba" + proxy="195.222.56.41" + port="8080" + type="wap" + /> + + <apn carrier="BHMobile MMS" + mcc="218" + mnc="90" + apn="mms.eronet.ba" + mmsc="http://mmsc.mtel.ba/mms/wapenc" + mmsproxy="10.12.3.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="Internet" + mcc="219" + mnc="01" + apn="internet.ht.hr" + type="default,supl,dun,ia" + protocol="IPV4V6" + roaming_protocol="IP" + authtype="1" + /> + + <apn carrier="MMS" + mcc="219" + mnc="01" + apn="mms.htgprs" + mmsc="http://mms.t-mobile.hr/servlets/mms" + mmsproxy="10.12.0.4" + mmsport="8080" + type="mms" + protocol="IPV4V6" + roaming_protocol="IP" + authtype="1" + /> + + <apn carrier="IMS" + mcc="219" + mnc="01" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="HOS" + mcc="219" + mnc="01" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="Vip GPRS" + mcc="219" + mnc="10" + apn="gprs0.vipnet.hr" + user="38591" + password="38591" + proxy="212.91.99.91" + port="8080" + type="default,supl" + /> + + <apn carrier="Vip MMS" + mcc="219" + mnc="10" + apn="mms.vipnet.hr" + mmsc="http://mms.vipnet.hr/servlets/mms" + mmsproxy="212.91.99.91" + mmsport="8080" + type="mms" + /> + + <apn carrier="Broadband" + mcc="219" + mnc="10" + apn="" + type="ia" + /> + + <apn carrier="Telenor Internet" + mcc="220" + mnc="01" + apn="internet" + user="telenor" + password="gprs" + proxy="217.65.192.33" + port="8080" + type="default,supl" + /> + + <apn carrier="Telenor MMS" + mcc="220" + mnc="01" + apn="mms" + mmsc="http://mms.telenor.rs/servlets/mms" + mmsproxy="217.65.192.33" + mmsport="8080" + type="mms" + /> + + <apn carrier="Pro GPRS" + mcc="220" + mnc="02" + apn="gprs.promonte.com" + user="gprs" + password="gprs" + proxy="192.168.246.5" + port="9201" + type="wap" + /> + + <apn carrier="Pro MMS" + mcc="220" + mnc="02" + apn="mms.promonte.com" + user="mms" + password="mms" + mmsc="http://mms.telenor.rs/servlets/mms" + mmsproxy="192.168.246.5" + mmsport="9201" + type="mms" + /> + + <apn carrier="mt:s mondo" + mcc="220" + mnc="03" + apn="gprswap" + user="mts" + password="064" + proxy="172.17.88.198" + port="8080" + type="wap" + /> + + <apn carrier="MMS" + mcc="220" + mnc="03" + apn="mms" + user="mts" + password="064" + mmsc="http://mms.mts064.telekom.yu/mms/wapenc" + mmsproxy="172.17.85.131" + mmsport="8080" + type="mms" + /> + + <apn carrier="web and walk" + mcc="220" + mnc="04" + apn="tmcg-wnw" + user="38267" + password="38267" + proxy="10.0.5.19" + port="8080" + type="wap" + /> + + <apn carrier="T-Mobile MMS" + mcc="220" + mnc="04" + apn="mms" + user="38267" + password="38267" + mmsc="http://192.168.180.100/servlets/mms" + mmsproxy="10.0.5.19" + mmsport="8080" + type="mms" + /> + + <apn carrier="Vip GPRS" + mcc="220" + mnc="05" + apn="vipmobile" + user="vipmobile" + password="vipmobile" + proxy="212.15.182.82" + port="8080" + type="wap" + /> + + <apn carrier="Vip MMS" + mcc="220" + mnc="05" + apn="vipmobile.mms" + user="vipmobile" + password="vipmobile" + mmsc="http://mmsc.vipmobile.rs" + mmsproxy="212.15.182.82" + mmsport="8080" + type="mms" + /> + + <apn carrier="TIM WEB" + mcc="222" + mnc="01" + apn="ibox.tim.it" + type="default,supl,dun" + /> + +<apn carrier="TIM WAP" + mcc="222" + mnc="01" + apn="wap.tim.it" + type="default,supl" + /> + + <apn carrier="TIM MMS" + mcc="222" + mnc="01" + apn="unico.tim.it" + proxy="213.230.130.89" + port="80" + mmsc="http://mms.tim.it/servlets/mms" + mmsproxy="213.230.130.89" + mmsport="80" + type="mms" + /> + + <apn carrier="TIM XCAP" + mcc="222" + mnc="01" + apn="xcap.tim.it" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="222" + mnc="01" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone IT-MMS" + mcc="222" + mnc="06" + apn="mms.vodafone.it" + mmsc="http://mms.vodafone.it/servlets/mms" + mmsproxy="10.128.224.10" + mmsport="80" + type="mms" + /> + + <apn carrier="Vodafone IT" + mcc="222" + mnc="06" + apn="mobile.vodafone.it" + type="default,supl,xcap" + /> + + <apn carrier="Vodafone WEB" + mcc="222" + mnc="06" + apn="web.omnitel.it" + type="default,supl,xcap" + /> + + <apn carrier="ims" + mcc="222" + mnc="06" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Acc. Internet da cell" + mcc="222" + mnc="06" + apn="" + type="ia" + /> + + <apn carrier="NOVERCA WEB" + mcc="222" + mnc="07" + apn="web.noverca.it" + type="default,supl" + /> + + <apn carrier="NOVERCA MMS" + mcc="222" + mnc="07" + apn="mms.noverca.it" + mmsc="http://mms.noverca.it/" + mmsproxy="213.230.130.89" + mmsport="80" + type="mms" + /> + + <apn carrier="Vodafone IT-MMS" + mcc="222" + mnc="10" + apn="mms.vodafone.it" + mmsc="http://mms.vodafone.it/servlets/mms" + mmsproxy="10.128.224.10" + mmsport="80" + type="mms" + /> + + <apn carrier="Vodafone IT" + mcc="222" + mnc="10" + apn="mobile.vodafone.it" + type="default,supl,xcap" + /> + + <apn carrier="Vodafone WEB" + mcc="222" + mnc="10" + apn="web.omnitel.it" + type="default,supl,xcap" + /> + + <apn carrier="ims" + mcc="222" + mnc="10" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Acc. Internet da cell" + mcc="222" + mnc="10" + apn="" + type="ia" + /> + + <apn carrier="WIND Internet" + mcc="222" + mnc="88" + apn="internet.wind" + type="default,supl" + /> + + <apn carrier="WIND BIZ WEB" + mcc="222" + mnc="88" + apn="internet.wind.biz" + type="default,supl" + /> + + <apn carrier="MMS Wind" + mcc="222" + mnc="88" + apn="mms.wind" + mmsc=" http://mms.wind.it" + mmsproxy="212.245.244.100" + mmsport="8080" + type="mms" + /> + + <apn carrier="3" + mcc="222" + mnc="99" + apn="tre.it" + mmsc="http://10.216.59.240:10021/mmsc" + mmsproxy="62.13.171.3" + mmsport="8799" + type="default,supl,mms" + /> + + <apn carrier="Vodafone Internet" + mcc="226" + mnc="01" + apn="internet.vodafone.ro" + user="internet.vodafone.ro" + password="vodafone" + type="default,supl,xcap" + /> + + <apn carrier="Vodafone MMS" + mcc="226" + mnc="01" + apn="mms.vodafone.ro" + user="mms" + password="vodafone" + mmsc="http://multimedia/servlets/mms" + mmsproxy="193.230.161.231" + mmsport="8080" + type="mms" + /> + + <apn carrier="Vodafone live!" + mcc="226" + mnc="01" + apn="" + type="ia" + /> + + <apn carrier="Connect Mobile" + mcc="226" + mnc="03" + apn="broadband" + type="default,supl" + /> + + <apn carrier="web'n'walk" + mcc="226" + mnc="03" + apn="wnw" + user="wnw" + password="wnw" + type="default,supl" + authtype="3" + /> + + <apn carrier="Cosmote MMS" + mcc="226" + mnc="03" + apn="mms" + user="mms" + password="mms" + mmsc="http://mmsc1.mms.telekom.ro:8002" + mmsproxy="10.252.1.62" + mmsport="8080" + type="mms" + authtype="1" + /> + + <apn carrier="Connect Mobile IA" + mcc="226" + mnc="03" + apn="" + type="ia" + protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="226" + mnc="03" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="226" + mnc="05" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Connect Mobile" + mcc="226" + mnc="06" + apn="broadband" + type="default,supl" + /> + + <apn carrier="web'n'walk" + mcc="226" + mnc="06" + apn="wnw" + user="wnw" + password="wnw" + type="default,supl" + authtype="3" + /> + + <apn carrier="Cosmote MMS" + mcc="226" + mnc="06" + apn="mms" + user="mms" + password="mms" + mmsc="http://mmsc1.mms.telekom.ro:8002" + mmsproxy="10.252.1.62" + mmsport="8080" + type="mms" + authtype="1" + /> + + <apn carrier="Connect Mobile IA" + mcc="226" + mnc="06" + apn="" + type="ia" + protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="226" + mnc="06" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <!-- Romania MMS --> + <apn carrier="Orange MMS" + mcc="226" + mnc="10" + apn="mms" + user="mms" + password="mms" + mmsc="http://wap.mms.orange.ro:8002" + mmsproxy="62.217.247.252" + mmsport="8799" + authtype="1" + type="mms" + /> + + <!-- Romania 2.5g or 3g --> + <apn carrier="Orange Internet" + mcc="226" + mnc="10" + apn="net" + type="default" + /> + + <apn carrier="Orange IMS" + mcc="226" + mnc="10" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IPV6" + /> + + <apn carrier="Swisscom-MMS" + mcc="228" + mnc="01" + apn="event.swisscom.ch" + mmsc="http://mms.natel.ch:8079" + mmsproxy="192.168.210.2" + mmsport="8080" + type="mms" + /> + + <apn carrier="Swisscom Services" + mcc="228" + mnc="01" + apn="gprs.swisscom.ch" + type="default,supl" + protocol="IP" + /> + + <apn carrier="ims" + mcc="228" + mnc="01" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IPV6" + /> + + <apn carrier="Swisscom XCAP" + mcc="228" + mnc="01" + apn="hos" + type="xcap" + protocol="IP" + /> + + <apn carrier="Sunrise" + mcc="228" + mnc="02" + apn="internet" + user="internet" + password="internet" + type="default,supl" + /> + + <apn carrier="Sunrise MMS" + mcc="228" + mnc="02" + apn="mms.sunrise.ch" + mmsc="http://mmsc.sunrise.ch" + mmsproxy="212.35.34.75" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="228" + mnc="02" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="XCAP" + mcc="228" + mnc="02" + apn="xcap" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Orange Internet" + mcc="228" + mnc="03" + apn="internet" + type="default,supl" + /> + + <apn carrier="Orange MMS" + mcc="228" + mnc="03" + apn="mms" + mmsproxy="192.168.151.2" + mmsport="8080" + mmsc="http://192.168.151.3:8002" + type="mms" + /> + + <apn carrier="Tele2 WAP" + mcc="228" + mnc="08" + apn="internet.tele2.ch" + proxy="130.244.196.90" + port="8080" + type="default,supl" + /> + + <apn carrier="Tele2 MMS" + mcc="228" + mnc="08" + apn="internet.tele2.ch" + mmsc="http://mmsc.tele2.ch" + mmsproxy="193.12.40.67" + mmsport="8080" + type="mms" + /> + + <apn carrier="T-Mobile Internet" + mcc="230" + mnc="01" + apn="internet.t-mobile.cz" + type="default,supl,dun,ia" + authtype="1" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="T-Mobile MMS" + mcc="230" + mnc="01" + apn="mms.t-mobile.cz" + user="mms" + password="mms" + mmsc="http://mms" + mmsproxy="10.0.0.10" + mmsport="80" + type="mms" + authtype="1" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="HOS" + mcc="230" + mnc="01" + apn="hos" + mmsc="http://mms" + mmsproxy="10.0.0.10" + mmsport="80" + type="mms" + authtype="1" + protocol="IPV4V6" + roaming_protocol="IP" + bearer_bitmask="18" + /> + + <apn carrier="ims" + mcc="230" + mnc="01" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="TMO Czech XCAP" + mcc="230" + mnc="01" + apn="hos" + type="xcap" + authtype="1" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="O2 internet" + mcc="230" + mnc="02" + apn="internet" + type="default,supl" + /> + + <apn carrier="O2 MMS" + mcc="230" + mnc="02" + apn="mms" + mmsc="http://mms.o2active.cz:8002" + mmsproxy="160.218.160.218" + mmsport="8080" + type="mms" + /> + + <apn carrier="O2 VoLTE Hlas" + mcc="230" + mnc="02" + apn="ims" + type="ims" + protocol="IPV6" + /> + + <apn carrier="O2 VoLTE" + mcc="230" + mnc="02" + apn="xcap" + type="xcap" + protocol="IPV6" + /> + + <apn carrier="GPRS Web" + mcc="230" + mnc="03" + apn="internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="GPRS MMS" + mcc="230" + mnc="03" + apn="mms" + user="mms" + password="mms" + mmsc="http://mms" + mmsproxy="10.11.10.111" + mmsport="80" + type="mms" + /> + + <apn carrier="GPRS Web" + mcc="230" + mnc="03" + apn="ointernet" + type="default,supl" + /> + + <apn carrier="ims" + mcc="230" + mnc="03" + apn="ims" + type="ims" + /> + + <apn carrier="Orange SK" + mcc="231" + mnc="01" + apn="internet" + type="default" + /> + + <apn carrier="Orange World" + mcc="231" + mnc="01" + apn="orangewap" + user="wap" + password="wap" + authtype="1" + proxy="213.151.208.156" + port="8799" + type="default,supl" + /> + + <apn carrier="Orange SK MMS" + mcc="231" + mnc="01" + apn="mms" + user="wap" + password="wap" + authtype="1" + mmsc="http://imms.orange.sk" + mmsproxy="213.151.208.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="IMS" + mcc="231" + mnc="01" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Telekom Internet" + mcc="231" + mnc="02" + apn="internet" + type="default,supl,dun,ia" + protocol="IPV4V6" + roaming_protocol="IP" + authtype="1" + /> + + <apn carrier="HOS" + mcc="231" + mnc="02" + apn="hos" + user="mms" + password="mms" + mmsc="http://mmsc.telekom.sk" + type="mms,xcap" + authtype="1" + protocol="IP" + roaming_protocol="IP" + user_visible="false" + /> + + <apn carrier="IMS" + mcc="231" + mnc="02" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Telekom Internet" + mcc="231" + mnc="04" + apn="internet" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="Telekom MMS" + mcc="231" + mnc="04" + apn="mms" + user="mms" + password="mms" + mmsc="http://mms" + mmsproxy="192.168.1.1" + mmsport="8080" + type="mms" + authtype="1" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="IMS" + mcc="231" + mnc="04" + apn="ims" + type="ims" + protocol="IPV4V6" + /> + + <apn carrier="HOS" + mcc="231" + mnc="04" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="Orange Internet" + mcc="231" + mnc="05" + apn="internet" + type="default,supl" + /> + + <apn carrier="Orange MMS" + mcc="231" + mnc="05" + apn="mms" + user="wap" + password="wap" + mmsc="http://imms.orange.sk" + mmsproxy="213.151.208.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="O2 SK" + mcc="231" + mnc="06" + apn="o2internet" + type="default,supl" + /> + + <apn carrier="O2 SK MMS" + mcc="231" + mnc="06" + apn="o2mms" + mmsc="http://mms.o2world.sk:8002" + mmsproxy="10.97.1.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="Mobilkom" + mcc="232" + mnc="01" + apn="a1.net" + user="ppp@a1plus.at" + password="ppp" + type="default,supl" + /> + + <apn carrier="Mobilkom-MMS" + mcc="232" + mnc="01" + apn="free.a1.net" + user="ppp@a1plus.at" + password="ppp" + mmsc="http://mmsc.a1.net" + mmsproxy="194.48.124.71" + mmsport="8001" + type="mms" + /> + + <apn carrier="IMS" + mcc="232" + mnc="01" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="T-Mobile Internet" + mcc="232" + mnc="03" + apn="internet.t-mobile.at" + user="t-mobile" + password="tm" + type="default,supl,dun,ia" + authtype="1" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="T-Mobile MMS" + mcc="232" + mnc="03" + apn="gprsmms" + user="t-mobile" + password="tm" + mmsc="http://mmsc.t-mobile.at/servlets/mms" + mmsproxy="10.12.0.20" + mmsport="80" + type="mms" + authtype="1" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="IMS" + mcc="232" + mnc="03" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Planet3" + mcc="232" + mnc="05" + apn="drei.at" + mmsc="http://mmsc" + mmsproxy="213.94.78.133" + mmsport="8799" + type="default,supl,mms" + /> + + <apn carrier="tele.ring web" + mcc="232" + mnc="07" + apn="web" + user="web@telering.at" + password="web" + type="default,supl,dun,ia" + authtype="1" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="telering mms" + mcc="232" + mnc="07" + apn="mms" + user="wap@telering.at" + password="wap" + mmsc="http://relay.mms.telering.at" + mmsproxy="212.95.31.50" + mmsport="80" + type="mms" + authtype="1" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="IMS" + mcc="232" + mnc="07" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Tele2 GPRS" + mcc="232" + mnc="09" + apn="web" + proxy="130.244.196.90" + port="8080" + type="wap" + /> + + <apn carrier="Tele2 MMS" + mcc="232" + mnc="09" + apn="internet.tele2.at" + mmsc="http://mmsc.tele2.at" + mmsproxy="193.12.40.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="Planet3" + mcc="232" + mnc="10" + apn="drei.at" + mmsc="http://mmsc" + mmsproxy="213.94.78.133" + mmsport="8799" + type="default,supl,mms" + /> + + <apn carrier="BOB GPRS" + mcc="232" + mnc="11" + apn="bob.at" + user="data@bob.at" + password="ppp" + proxy="194.048.124.7" + port="8001" + type="wap" + /> + + <apn carrier="BOB MMS" + mcc="232" + mnc="11" + apn="mms.bob.at" + user="data@bob.at" + password="ppp" + mmsc="http://mmsc.bob.at" + mmsproxy="194.048.124.7" + mmsport="8001" + type="mms" + /> + + <apn carrier="UBIQUISYS" + mcc="234" + mnc="01" + apn="internet" + type="default,supl,mms" + /> + + <apn carrier="O2 MOBILE WEB" + mcc="234" + mnc="02" + apn="mobile.o2.co.uk" + user="O2web" + password="O2web" + type="default,supl" + /> + + <apn carrier="O2 MMS Prepay" + mcc="234" + mnc="02" + apn="payandgo.o2.co.uk" + user="payandgo" + password="password" + mmsc="http://mmsc.mms.o2.co.uk:8002" + mmsproxy="193.113.200.195" + mmsport="8080" + type="mms" + /> + + <apn carrier="O2 MMS Postpay" + mcc="234" + mnc="02" + apn="wap.o2.co.uk" + user="o2wap" + password="password" + mmsc="http://mmsc.mms.o2.co.uk:8002" + mmsproxy="193.113.200.195" + mmsport="8080" + type="mms" + /> + + <apn carrier="O2 UK MMS" + mcc="234" + mnc="10" + apn="idata.o2.co.uk" + user="vertigo" + password="password" + mmsc="http://mmsc.mms.o2.co.uk:8002" + mmsproxy="193.113.200.195" + mmsport="8080" + type="mms" + /> + + <apn carrier="O2 UK" + mcc="234" + mnc="10" + apn="mobile.o2.co.uk" + user="O2web" + password="O2web" + type="default,supl,xcap" + /> + + <apn carrier="O2 MMS Prepay" + mcc="234" + mnc="10" + apn="payandgo.o2.co.uk" + user="payandgo" + password="password" + mmsc="http://mmsc.mms.o2.co.uk:8002" + mmsproxy="193.113.200.195" + mmsport="8080" + type="mms" + /> + + <apn carrier="O2 MMS Postpay" + mcc="234" + mnc="10" + apn="wap.o2.co.uk" + user="o2wap" + password="password" + mmsc="http://mmsc.mms.o2.co.uk:8002" + mmsproxy="193.113.200.195" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="234" + mnc="10" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier=" Internet " + mcc="234" + mnc="10" + apn="mobile.o2.co.uk" + type="xcap" + user="O2web" + password="O2web" + bearer_bitmask="18" + /> + + <apn carrier="O2 MOBILE WEB" + mcc="234" + mnc="11" + apn="mobile.o2.co.uk" + user="O2web" + password="O2web" + type="default,supl" + /> + + <apn carrier="O2 MMS Prepay" + mcc="234" + mnc="11" + apn="payandgo.o2.co.uk" + user="payandgo" + password="password" + mmsc="http://mmsc.mms.o2.co.uk:8002" + mmsproxy="193.113.200.195" + mmsport="8080" + type="mms" + /> + + <apn carrier="O2 MMS Postpay" + mcc="234" + mnc="11" + apn="wap.o2.co.uk" + user="o2wap" + password="password" + mmsc="http://mmsc.mms.o2.co.uk:8002" + mmsproxy="193.113.200.195" + mmsport="8080" + type="mms" + /> + + <apn carrier="ims" + mcc="234" + mnc="15" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone UK" + mcc="234" + mnc="15" + apn="wap.vodafone.co.uk" + user="wap" + password="wap" + mmsc="http://mms.vodafone.co.uk/servlets/mms" + mmsproxy="212.183.137.12" + mmsport="8799" + type="default,supl,mms" + /> + + <apn carrier="Vodafone Post-pay ISP" + mcc="234" + mnc="15" + apn="internet" + user="web" + password="web" + type="default,supl" + /> + + <apn carrier="Vodafone Prepay" + mcc="234" + mnc="15" + apn="pp.vodafone.co.uk" + user="wap" + password="wap" + mmsc="http://mms.vodafone.co.uk/servlets/mms" + mmsproxy="212.183.137.12" + mmsport="8799" + type="default,supl,mms" + /> + + <apn carrier="Vodafone UK XCAP" + mcc="234" + mnc="15" + apn="xcap" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="3 UK" + mcc="234" + mnc="20" + apn="three.co.uk" + mmsc="http://mms.um.three.co.uk:10021/mmsc" + mmsproxy="mms.three.co.uk" + mmsport="8799" + type="default,supl,mms" + /> + + <apn carrier="3 UK Xcap" + mcc="234" + mnc="20" + apn="three.co.uk" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="IMS" + mcc="234" + mnc="20" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="234" + mnc="30" + apn="everywhere" + user="eesecure" + password="secure" + authtype="1" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="MMS" + mcc="234" + mnc="30" + apn="eezone" + user="eesecure" + password="secure" + mmsc="http://mms/" + mmsproxy="149.254.201.135" + mmsport="8080" + authtype="1" + type="mms,xcap" + protocol="IP" + /> + + <apn carrier="IMS" + mcc="234" + mnc="30" + apn="ims" + type="ims" + authtype="1" + protocol="IPV6" + /> + + <apn carrier="SOS(wifi)" + mcc="234" + mnc="30" + apn="SOS" + type="emergency" + authtype="1" + protocol="IPV6" + bearer_bitmask="18" + /> + + <apn carrier="Internet" + mcc="234" + mnc="31" + apn="everywhere" + user="eesecure" + password="secure" + authtype="1" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="MMS" + mcc="234" + mnc="31" + apn="eezone" + user="eesecure" + password="secure" + mmsc="http://mms/" + mmsproxy="149.254.201.135" + mmsport="8080" + authtype="1" + type="mms,xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="IMS" + mcc="234" + mnc="31" + apn="ims" + type="ims" + authtype="1" + protocol="IPV6" + /> + + <apn carrier="SOS(wifi)" + mcc="234" + mnc="31" + apn="SOS" + type="emergency" + authtype="1" + protocol="IPV6" + bearer_bitmask="18" + /> + + <apn carrier="Internet" + mcc="234" + mnc="32" + apn="everywhere" + user="eesecure" + password="secure" + authtype="1" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="MMS" + mcc="234" + mnc="32" + apn="eezone" + user="eesecure" + password="secure" + mmsc="http://mms/" + mmsproxy="149.254.201.135" + mmsport="8080" + authtype="1" + type="mms,xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="IMS" + mcc="234" + mnc="32" + apn="ims" + type="ims" + authtype="1" + protocol="IPV6" + /> + + <apn carrier="SOS(wifi)" + mcc="234" + mnc="32" + apn="SOS" + type="emergency" + authtype="1" + protocol="IPV6" + bearer_bitmask="18" + /> + + <apn carrier="Internet" + mcc="234" + mnc="33" + apn="everywhere" + user="eesecure" + password="secure" + authtype="1" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="MMS" + mcc="234" + mnc="33" + apn="eezone" + user="eesecure" + password="secure" + mmsc="http://mms/" + mmsproxy="149.254.201.135" + mmsport="8080" + authtype="1" + type="mms,xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="IMS" + mcc="234" + mnc="33" + apn="ims" + type="ims" + authtype="1" + protocol="IPV6" + /> + + <apn carrier="SOS(wifi)" + mcc="234" + mnc="33" + apn="SOS" + type="emergency" + authtype="1" + protocol="IPV6" + bearer_bitmask="18" + /> + + <apn carrier="Internet" + mcc="234" + mnc="34" + apn="everywhere" + user="eesecure" + password="secure" + authtype="1" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="MMS" + mcc="234" + mnc="34" + apn="eezone" + user="eesecure" + password="secure" + mmsc="http://mms/" + mmsproxy="149.254.201.135" + mmsport="8080" + authtype="1" + type="mms,xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="IMS" + mcc="234" + mnc="34" + apn="ims" + type="ims" + authtype="1" + protocol="IPV6" + /> + + <apn carrier="SOS(wifi)" + mcc="234" + mnc="34" + apn="SOS" + type="emergency" + authtype="1" + protocol="IPV6" + bearer_bitmask="18" + /> + + <apn carrier="Jersey Telecom" + mcc="234" + mnc="50" + apn="mms" + user="mms" + password="mms" + mmsc="http://mms.surfmail.com/mmsc" + mmsproxy="212.9.19.199" + mmsport="3130" + type="mms" + /> + + <apn carrier="pepperWEB (Jersey)" + mcc="234" + mnc="50" + apn="pepper" + type="default,supl" + /> + + <apn carrier="HOS" + mcc="234" + mnc="53" + apn="HOS" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="HOS" + mcc="234" + mnc="54" + apn="HOS" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="C&W Guernsey Internet" + mcc="234" + mnc="55" + apn="internet" + type="default,supl" + /> + + <apn carrier="Sure Picture Messaging" + mcc="234" + mnc="55" + apn="mms" + mmsc="http://mmsc.gprs.cw.com/" + mmsproxy="10.0.3.101" + mmsport="80" + type="mms" + /> + + <apn carrier="3G HSDPA" + mcc="234" + mnc="58" + apn="3gpronto" + type="default,supl" + /> + + <apn carrier="Manx Telecom Contract MMS" + mcc="234" + mnc="58" + apn="mms.manxpronto.net" + user="mms" + password="mms" + mmsc="http://mms.manxpronto.net:8002" + mmsproxy="195.10.99.46" + mmsport="8080" + type="mms" + /> + + <apn carrier="Manx Telecom Prepay MMS" + mcc="234" + mnc="58" + apn="mms.prontogo.net" + user="mmsgo" + password="mmsgo" + mmsc="http://mms.manxpronto.net:8002" + mmsproxy="195.10.99.41" + mmsport="8080" + type="mms" + /> + + <apn carrier="Manx Telecom Contract WEB" + mcc="234" + mnc="58" + apn="web.manxpronto.net" + user="gprs" + password="gprs" + type="default,supl" + /> + + <apn carrier="EE Internet" + mcc="234" + mnc="86" + apn="everywhere" + user="eesecure" + password="secure" + authtype="1" + type="default,supl" + /> + + <apn carrier="EE MMS" + mcc="234" + mnc="86" + apn="eezone" + user="eesecure" + password="secure" + mmsc="http://mms/" + mmsproxy="149.254.201.135" + mmsport="8080" + authtype="1" + type="mms" + /> + + <apn carrier="IMS" + mcc="234" + mnc="86" + apn="ims" + type="ims" + protocol="IPV6" + /> + + <apn carrier="EE Xcap" + mcc="234" + mnc="86" + apn="eezone" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="EE Xcap" + mcc="235" + mnc="01" + apn="eezone" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="EE Xcap" + mcc="235" + mnc="02" + apn="eezone" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="ims" + mcc="235" + mnc="91" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone UK" + mcc="235" + mnc="91" + apn="wap.vodafone.co.uk" + user="wap" + password="wap" + mmsc="http://mms.vodafone.co.uk/servlets/mms" + mmsproxy="212.183.137.12" + mmsport="8799" + type="default,supl,mms" + /> + + <apn carrier="Vodafone Post-pay ISP" + mcc="235" + mnc="91" + apn="internet" + user="web" + password="web" + type="default,supl" + /> + + <apn carrier="Vodafone Prepay" + mcc="235" + mnc="91" + apn="pp.vodafone.co.uk" + user="wap" + password="wap" + mmsc="http://mms.vodafone.co.uk/servlets/mms" + mmsproxy="212.183.137.12" + mmsport="8799" + type="default,supl,mms" + /> + + <apn carrier="Vodafone UK XCAP" + mcc="235" + mnc="91" + apn="xcap" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="3 UK" + mcc="235" + mnc="94" + apn="three.co.uk" + mmsc="http://mms.um.three.co.uk:10021/mmsc" + mmsproxy="mms.three.co.uk" + mmsport="8799" + type="default,supl,mms,xcap" + /> + + <apn carrier="IMS" + mcc="235" + mnc="94" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="TDC MMS" + mcc="238" + mnc="01" + apn="mms" + mmsc="http://192.168.241.114:8002" + mmsproxy="194.182.251.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="TDC WAP" + mcc="238" + mnc="01" + apn="internet" + type="default,supl" + /> + + <apn carrier="Telenor Internet" + mcc="238" + mnc="02" + apn="Internet" + type="default,supl" + /> + + <apn carrier="Telenor MMS" + mcc="238" + mnc="02" + apn="telenor" + mmsc="http://mms.telenor.dk" + mmsproxy="212.88.64.8" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="238" + mnc="02" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="XCAP" + mcc="238" + mnc="02" + apn="xcap" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="3 Danmark" + mcc="238" + mnc="06" + apn="data.tre.dk" + mmsc="http://mms.3.dk/" + mmsproxy="mmsproxy.3.dk" + mmsport="8799" + type="default,supl,mms" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="ims" + mcc="238" + mnc="06" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="services" + mcc="238" + mnc="06" + apn="services" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="services(wifi)" + mcc="238" + mnc="06" + apn="services" + type="xcap,mms" + protocol="IPV4V6" + roaming_protocol="IP" + bearer_bitmask="18" + /> + + <apn carrier="Telia Internet" + mcc="238" + mnc="20" + apn="www.internet.mtelia.dk" + type="default,supl" + /> + + <apn carrier="Telia MMS" + mcc="238" + mnc="20" + apn="www.mms.mtelia.dk" + mmsc="http://mms.telia.dk" + mmsproxy="193.209.134.131" + mmsport="8080" + type="mms" + /> + + <apn carrier="Telia Internet" + mcc="238" + mnc="30" + apn="www.internet.mtelia.dk" + type="default,supl" + /> + + <apn carrier="Telia MMS" + mcc="238" + mnc="30" + apn="www.mms.mtelia.dk" + mmsc="http://mms.telia.dk" + mmsproxy="193.209.134.131" + mmsport="8080" + type="mms" + /> + + <apn carrier="Telenor Internet" + mcc="238" + mnc="77" + apn="Internet" + type="default,supl" + /> + + <apn carrier="Telenor MMS" + mcc="238" + mnc="77" + apn="telenor" + mmsc="http://mms.telenor.dk" + mmsproxy="212.88.64.8" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="238" + mnc="77" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="XCAP" + mcc="238" + mnc="77" + apn="xcap" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Telia MMS" + mcc="240" + mnc="01" + apn="mms.telia.se" + mmsc="http://mmss/" + mmsproxy="193.209.134.132" + mmsport="8080" + type="mms" + /> + + <apn carrier="Telia Online" + mcc="240" + mnc="01" + apn="online.telia.se" + type="default,supl" + /> + + <apn carrier="IMS" + mcc="240" + mnc="01" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="hos" + mcc="240" + mnc="01" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="3" + mcc="240" + mnc="02" + apn="data.tre.se" + mmsc="http://mms.tre.se" + mmsproxy="mmsproxy.tre.se" + mmsport="8799" + type="default,supl,mms" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="ims" + mcc="240" + mnc="02" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="services" + mcc="240" + mnc="02" + apn="services" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="services(wifi)" + mcc="240" + mnc="02" + apn="services" + type="xcap,mms" + protocol="IPV4V6" + roaming_protocol="IP" + bearer_bitmask="18" + /> + + <apn carrier="Telenor Mobilsurf" + mcc="240" + mnc="04" + apn="services.telenor.se" + proxy="172.30.253.241" + port="8799" + type="default,supl" + /> + + <apn carrier="Telenor MMS" + mcc="240" + mnc="04" + apn="services.telenor.se" + mmsc="http://mms" + mmsproxy="172.30.253.241" + mmsport="8799" + type="mms" + /> + + <apn carrier="Telia MMS" + mcc="240" + mnc="05" + apn="mms.telia.se" + mmsc="http://mmss" + mmsproxy="193.209.134.132" + mmsport="80" + type="mms" + mvno_match_data="Telia" + mvno_type="spn" + /> + + <apn carrier="Telia" + mcc="240" + mnc="05" + apn="online.telia.se" + type="default,supl" + mvno_match_data="Telia" + mvno_type="spn" + /> + + <apn carrier="IMS" + mcc="240" + mnc="05" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="hos" + mcc="240" + mnc="05" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Telenor MMS" + mcc="240" + mnc="06" + apn="services.telenor.se" + mmsc="http://mms" + mmsproxy="173.30.253.241" + mmsport="8799" + type="mms" + /> + + <apn carrier="Telenor Mobilsurf" + mcc="240" + mnc="06" + apn="services.telenor.se" + proxy="173.30.253.241" + port="8799" + type="default,supl" + /> + + <apn carrier="Tele2" + mcc="240" + mnc="07" + apn="4g.tele2.se" + mmsc="http://mmsc.tele2.se" + mmsproxy="130.244.202.30" + mmsport="8080" + type="default,supl,mms" + /> + + <apn carrier="IMS" + mcc="240" + mnc="07" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Telenor Mobilsurf" + mcc="240" + mnc="08" + apn="services.telenor.se" + type="default,supl" + mvno_type="imsi" + mvno_match_data="24008" + /> + + <apn carrier="Telenor MMS" + mcc="240" + mnc="08" + apn="mms" + mmsc="http://mms" + mmsproxy="172.30.253.241" + mmsport="8799" + type="mms" + mvno_type="imsi" + mvno_match_data="24008" + /> + + <apn carrier="IMS" + mcc="240" + mnc="08" + apn="IMS" + type="ims" + protocol="IPV6" + mvno_type="imsi" + mvno_match_data="24008" + /> + + <apn carrier="Telenor MMS" + mcc="240" + mnc="09" + apn="services.telenor.se" + mmsc="http://mms" + mmsproxy="173.30.253.241" + mmsport="8799" + type="mms" + /> + + <apn carrier="TelenorMobilsurf" + mcc="240" + mnc="09" + apn="services.telenor.se" + proxy="173.30.253.241" + port="8799" + type="default,supl" + /> + + <apn carrier="Spring data" + mcc="240" + mnc="10" + apn="data.springmobil.se" + type="default,supl" + /> + + <apn carrier="Spring MMS" + mcc="240" + mnc="10" + apn="mms.springmobil.se" + mmsc="http://mms.springmobil.se" + mmsproxy="213.88.184.37" + mmsport="8080" + type="mms" + /> + + <apn carrier="Halebop Internet" + mcc="240" + mnc="017" + apn="halebop.telia.se" + type="default,supl" + /> + + <apn carrier="Halebop MMS" + mcc="240" + mnc="017" + apn="mms.telia.se" + user="mms" + password="telia" + mmsc="http://mmss" + mmsproxy="193.209.134.132" + mmsport="9201" + type="mms" + /> + + <apn carrier="IMS" + mcc="240" + mnc="99" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Telenor MMS" + mcc="242" + mnc="01" + apn="telenor.mms" + mmsc="http://mmsc/" + mmsproxy="10.10.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="Telenor Internett" + mcc="242" + mnc="01" + apn="telenor" + type="default,supl" + /> + + <apn carrier="IMS" + mcc="242" + mnc="01" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="hos" + mcc="242" + mnc="01" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Telia MMS" + mcc="242" + mnc="02" + apn="mms" + mmsc="http://mm/" + mmsproxy="212.169.66.4" + mmsport="8080" + type="mms" + /> + + <apn carrier="NetCom Internett" + mcc="242" + mnc="02" + apn="netcom" + proxy="10.254.254.10" + port="8080" + type="default,supl" + /> + + <apn carrier="IMS" + mcc="242" + mnc="02" + apn="ims" + type="ims" + protocol="IPV6" + /> + + <apn carrier="HOS" + mcc="242" + mnc="02" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Tele2 Internett" + mcc="242" + mnc="04" + apn="internet.tele2.no" + type="default,supl" + /> + + <apn carrier="Tele2 MMS" + mcc="242" + mnc="04" + apn="internet.tele2.no" + mmsc="http://mmsc.tele2.no" + mmsproxy="193.12.40.14" + mmsport="8080" + type="mms" + /> + + <apn carrier="OneCall Internet" + mcc="242" + mnc="05" + apn="internet" + type="default,supl" + /> + + <apn carrier="OneCall MMS" + mcc="242" + mnc="05" + apn="mms" + mmsc="http://mms.nwn.no" + mmsproxy="188.149.250.10" + mmsport="80" + type="mms" + /> + + <apn carrier="IMS" + mcc="242" + mnc="05" + apn="ims" + type="ims" + protocol="IPV6" + /> + + <apn carrier="HOS" + mcc="242" + mnc="05" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="DNA Internet" + mcc="244" + mnc="03" + apn="internet" + type="default,supl" + /> + + <apn carrier="DNA MMS" + mcc="244" + mnc="03" + apn="mms" + user="dna" + password="mms" + mmsc="http://mmsc.dnafinland.fi/" + mmsproxy="10.1.1.2" + mmsport="8080" + type="mms" + /> + + <apn carrier="DNA Internet" + mcc="244" + mnc="04" + apn="internet" + type="default,supl" + /> + + <apn carrier="DNA MMS" + mcc="244" + mnc="04" + apn="mms" + user="dna" + password="mms" + mmsc="http://mmsc.dnafinland.fi/" + mmsproxy="10.1.1.2" + mmsport="8080" + type="mms" + /> + + <apn carrier="Elisa Internet" + mcc="244" + mnc="05" + apn="internet" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Elisa MMS" + mcc="244" + mnc="05" + apn="mms" + mmsc="http://mms.elisa.fi" + mmsproxy="213.161.41.57" + mmsport="80" + type="mms" + /> + + <apn carrier="Elisa IMS" + mcc="244" + mnc="05" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Elisa XCAP" + mcc="244" + mnc="05" + apn="xcap" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="NSN Internet" + mcc="244" + mnc="09" + apn="internet" + type="default,supl" + /> + + <apn carrier="TDC Internet" + mcc="244" + mnc="10" + apn="internet.song.fi" + user="song@internet" + password="songnet" + type="default,supl" + /> + + <apn carrier="TDC MMS" + mcc="244" + mnc="10" + apn="mms.song.fi" + mmsc="http://mms.song.fi" + mmsproxy="213.161.41.58" + mmsport="80" + type="mms" + /> + + <apn carrier="DNA Internet" + mcc="244" + mnc="12" + apn="internet" + type="default,supl" + /> + + <apn carrier="DNA MMS" + mcc="244" + mnc="12" + apn="mms" + user="dna" + password="mms" + mmsc="http://mmsc.dnafinland.fi/" + mmsproxy="10.1.1.2" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="244" + mnc="12" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IPV6" + /> + + <apn carrier="hos" + mcc="244" + mnc="12" + apn="hos" + type="xcap" + protocol="IPV6" + roaming_protocol="IPV6" + /> + + <apn carrier="DNA Internet" + mcc="244" + mnc="13" + apn="internet" + type="default,supl" + /> + + <apn carrier="DNA MMS" + mcc="244" + mnc="13" + apn="mms" + user="dna" + password="mms" + mmsc="http://mmsc.dnafinland.fi/" + mmsproxy="10.1.1.2" + mmsport="8080" + type="mms" + /> + + <apn carrier="Saunalahti Wap" + mcc="244" + mnc="21" + apn="wap.saunalahti.fi" + type="default,supl" + /> + + <apn carrier="Saunalahti MMS" + mcc="244" + mnc="21" + apn="mms.saunalahti.fi" + mmsc="http://mms.saunalahti.fi:8002/" + mmsproxy="62.142.4.197" + mmsport="8080" + type="mms" + /> + + <apn carrier="DNA Internet" + mcc="244" + mnc="30" + apn="internet" + type="default,supl" + /> + + <apn carrier="DNA MMS" + mcc="244" + mnc="30" + apn="mms" + user="dna" + password="mms" + mmsc="http://mmsc.dnafinland.fi/" + mmsproxy="10.1.1.2" + mmsport="8080" + type="mms" + /> + + <apn carrier="TeliaSonera Internet" + mcc="244" + mnc="91" + apn="internet" + type="default,supl" + /> + + <apn carrier="TeliaSonera MMS" + mcc="244" + mnc="91" + apn="wap.sonera.net" + mmsc="http://mms.sonera.fi:8002" + mmsproxy="195.156.25.33" + mmsport="8080" + type="mms" + /> + + <apn carrier="TeliaSonera IMS" + mcc="244" + mnc="91" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="TeliaSonera HOS" + mcc="244" + mnc="91" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Omnitel MMS" + mcc="246" + mnc="01" + apn="gprs.mms.lt" + user="mms" + password="mms" + mmsc="http://mms.omnitel.net:8002/" + mmsproxy="194.176.32.149" + mmsport="8080" + type="mms" + /> + + <apn carrier="Omnitel Internet" + mcc="246" + mnc="01" + apn="omnitel" + user="omni" + password="omni" + type="default,supl" + /> + + <apn carrier="Omnitel IMS" + mcc="246" + mnc="01" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Bite LT Internet" + mcc="246" + mnc="02" + apn="banga" + type="default,supl" + /> + + <apn carrier="Bite LT MMS" + mcc="246" + mnc="02" + apn="mms" + mmsc="http://mmsc" + mmsproxy="192.168.150.2" + mmsport="8080" + type="mms" + /> + + <apn carrier="Tele2 Internet LT" + mcc="246" + mnc="03" + apn="internet.tele2.lt" + proxy="130.244.196.90" + port="8080" + type="default,supl" + /> + + <apn carrier="Tele2 MMS LT" + mcc="246" + mnc="03" + apn="mms.tele2.lt" + mmsc="http://mmsc.tele2.lt/" + mmsproxy="193.12.40.29" + mmsport="8080" + type="mms" + /> + + <apn carrier="LMT Internet" + mcc="247" + mnc="01" + apn="internet.lmt.lv" + user="lmt" + password="lmt" + type="default,supl" + /> + + <apn carrier="LMT MMS" + mcc="247" + mnc="01" + apn="mms.lmt.lv" + mmsc="http://mmsc.lmt.lv/mmsc" + mmsport="8080" + type="mms" + /> + + <apn carrier="Tele2 Internet LV" + mcc="247" + mnc="02" + apn="internet.tele2.lv" + user="wap" + password="wap" + proxy="130.244.196.90" + port="8080" + type="default,supl" + /> + + <apn carrier="Tele2 MMS LV" + mcc="247" + mnc="02" + apn="mms.tele2.lv" + user="wap" + password="wap" + mmsc="http://mmsc.tele2.lv/" + mmsproxy="193.12.40.38" + mmsport="8080" + type="mms" + /> + + <apn carrier="Bite LV Internet" + mcc="247" + mnc="05" + apn="internet" + type="default,supl" + /> + + <apn carrier="Bite MMS" + mcc="247" + mnc="05" + apn="mms" + mmsc="http://mmsc" + mmsproxy="192.168.150.2" + mmsport="8080" + type="mms" + /> + + <apn carrier="EMT Internet" + mcc="248" + mnc="01" + apn="internet.emt.ee" + type="default,supl" + /> + + <apn carrier="EMT MMS" + mcc="248" + mnc="01" + apn="mms.emt.ee" + mmsc="http://mms.emt.ee/servlets/mms" + mmsproxy="217.71.32.82" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="248" + mnc="01" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IPV6" + /> + + <apn carrier="hos" + mcc="248" + mnc="01" + apn="hos" + type="xcap" + protocol="IPV6" + roaming_protocol="IPV6" + /> + + <apn carrier="ELISA_GPRS" + mcc="248" + mnc="02" + apn="wap" + proxy="194.204.2.6" + port="8000" + type="wap" + /> + + <apn carrier="ELISA MMS" + mcc="248" + mnc="02" + apn="mms" + mmsc="http://194.204.2.10" + mmsproxy="194.204.2.6" + mmsport="8000" + type="mms" + /> + + <apn carrier="Tele2 Internet" + mcc="248" + mnc="03" + apn="internet.tele2.ee" + type="default,supl" + /> + + <apn carrier="Tele2 MMS" + mcc="248" + mnc="03" + apn="mms.tele2.ee" + mmsc="http://mmsc.tele2.ee" + mmsproxy="193.12.40.6" + mmsport="8080" + type="mms" + /> + + <apn carrier="МТС-интернет" + mcc="250" + mnc="01" + apn="internet.mts.ru" + user="mts" + password="mts" + type="default,supl" + authtype="1" + /> + + <apn carrier="МТС Центр MMS" + mcc="250" + mnc="01" + apn="mms.mts.ru" + user="mts" + password="mts" + mmsc="http://mmsc" + mmsproxy="192.168.192.192" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="250" + mnc="01" + apn="ims" + type="ims" + protocol="IPV4V6" + /> + + <apn carrier="Megafon internet" + mcc="250" + mnc="02" + apn="internet" + user="gdata" + password="gdata" + type="default,supl" + /> + + <apn carrier="Megafon MMS" + mcc="250" + mnc="02" + apn="mms" + user="mms" + password="mms" + mmsc="http://mmsc:8002" + mmsproxy="10.10.10.10" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="250" + mnc="02" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Megafon XCAP1" + mcc="250" + mnc="02" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="NCC" + mcc="250" + mnc="03" + apn="mms" + mmsc="http://10.0.3.50" + mmsproxy="10.0.3.20" + mmsport="8080" + type="mms" + /> + + <apn carrier="МТС-интернет" + mcc="250" + mnc="04" + apn="internet.mts.ru" + user="mts" + password="mts" + type="default,supl" + /> + + <apn carrier="МТС Центр MMS" + mcc="250" + mnc="04" + apn="mms.mts.ru" + user="mts" + password="mts" + mmsc="http://mmsc" + mmsproxy="192.168.192.192" + mmsport="8080" + type="mms" + /> + + <apn carrier="МТС-интернет" + mcc="250" + mnc="05" + apn="internet.mts.ru" + user="mts" + password="mts" + type="default,supl" + /> + + <apn carrier="МТС Центр MMS" + mcc="250" + mnc="05" + apn="mms.mts.ru" + user="mts" + password="mts" + mmsc="http://mmsc" + mmsproxy="192.168.192.192" + mmsport="8080" + type="mms" + /> + + <apn carrier="internet" + mcc="250" + mnc="07" + apn="internet.smarts.ru" + user="any" + password="any" + type="default,supl" + /> + + <apn carrier="mms" + mcc="250" + mnc="07" + apn="mms.smarts.ru" + user="wap" + password="wap" + mmsc="http://172.24.120.135/mms/wapenc" + mmsproxy="172.24.128.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="МТС-интернет" + mcc="250" + mnc="10" + apn="internet.mts.ru" + user="mts" + password="mts" + type="default,supl" + /> + + <apn carrier="МТС Центр MMS" + mcc="250" + mnc="10" + apn="mms.mts.ru" + user="mts" + password="mts" + mmsc="http://mmsc" + mmsproxy="192.168.192.192" + mmsport="8080" + type="mms" + /> + + <apn carrier="Beeline internet" + mcc="250" + mnc="11" + apn="internet.beeline.ru" + user="beeline" + password="beeline" + type="default,supl" + /> + + <apn carrier="Beeline MMS" + mcc="250" + mnc="11" + apn="mms.beeline.ru" + user="beeline" + password="beeline" + mmsc="http://mms/" + mmsproxy="192.168.94.23" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="250" + mnc="011" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Megafon XCAP2" + mcc="250" + mnc="011" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="GPRS-Internet" + mcc="250" + mnc="12" + apn="inet.bwc.ru" + user="bwc" + password="bwc" + type="default,supl" + /> + + <apn carrier="BWC MMS" + mcc="250" + mnc="12" + apn="mms.bwc.ru" + user="bwc" + password="bwc" + mmsc="http://mmsc/mms" + mmsproxy="10.10.17.2" + mmsport="8080" + type="mms" + /> + + <apn carrier="МТС-интернет" + mcc="250" + mnc="13" + apn="internet.mts.ru" + user="mts" + password="mts" + type="default,supl" + /> + + <apn carrier="МТС Центр MMS" + mcc="250" + mnc="13" + apn="mms.mts.ru" + user="mts" + password="mts" + mmsc="http://mmsc" + mmsproxy="192.168.192.192" + mmsport="8080" + type="mms" + /> + + <apn carrier="MMS" + mcc="250" + mnc="16" + apn="mms.ntc" + mmsc="http://mmsc.vntc.ru/was" + mmsproxy="80.243.64.68" + mmsport="8080" + type="mms" + /> + + <apn carrier="Internet" + mcc="250" + mnc="17" + apn="internet.usi.ru" + type="default,supl" + /> + + <apn carrier="MMS" + mcc="250" + mnc="17" + apn="mms.usi.ru" + mmsc="http://mms" + mmsproxy="192.168.168.192" + mmsport="8080" + type="mms" + /> + + <apn carrier="TELE2" + mcc="250" + mnc="20" + apn="internet.tele2.ru" + type="default,supl" + /> + + <apn carrier="TELE2 Wap" + mcc="250" + mnc="20" + apn="wap.tele2.ru" + proxy="130.244.196.90" + port="8080" + type="default,supl" + /> + + <apn carrier="TELE2 MMS" + mcc="250" + mnc="20" + apn="mms.tele2.ru" + mmsc="http://mmsc.tele2.ru" + mmsproxy="193.12.40.65" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="250" + mnc="20" + apn="ims.tele2.ru" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="XCAP" + mcc="250" + mnc="20" + apn="hos" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="МТС-интернет" + mcc="250" + mnc="39" + apn="internet.mts.ru" + user="mts" + password="mts" + type="default,supl" + /> + + <apn carrier="МТС Центр MMS" + mcc="250" + mnc="39" + apn="mms.mts.ru" + user="mts" + password="mts" + mmsc="http://mmsc" + mmsproxy="192.168.192.192" + mmsport="8080" + type="mms" + /> + + <apn carrier="Beeline internet" + mcc="250" + mnc="44" + apn="internet.beeline.ru" + user="beeline" + password="beeline" + type="default,supl" + /> + + <apn carrier="Beeline MMS" + mcc="250" + mnc="44" + apn="mms.beeline.ru" + user="beeline" + password="beeline" + mmsc="http://mms/" + mmsproxy="192.168.94.23" + mmsport="8080" + type="mms" + /> + + <apn carrier="internet" + mcc="250" + mnc="50" + apn="internet.sberbank-tele.com" + type="default,supl" + /> + + <apn carrier="ims" + mcc="250" + mnc="50" + apn="ims" + type="ims" + /> + + <apn carrier="МТС-интернет" + mcc="250" + mnc="92" + apn="internet.mts.ru" + user="mts" + password="mts" + type="default,supl" + /> + + <apn carrier="МТС Центр MMS" + mcc="250" + mnc="92" + apn="mms.mts.ru" + user="mts" + password="mts" + mmsc="http://mmsc" + mmsproxy="192.168.192.192" + mmsport="8080" + type="mms" + /> + + <apn carrier="МТС-интернет" + mcc="250" + mnc="93" + apn="internet.mts.ru" + user="mts" + password="mts" + type="default,supl" + /> + + <apn carrier="МТС Центр MMS" + mcc="250" + mnc="93" + apn="mms.mts.ru" + user="mts" + password="mts" + mmsc="http://mmsc" + mmsproxy="192.168.192.192" + mmsport="8080" + type="mms" + /> + + <apn carrier="Beeline internet" + mcc="250" + mnc="99" + apn="internet.beeline.ru" + user="beeline" + password="beeline" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Beeline MMS" + mcc="250" + mnc="99" + apn="mms.beeline.ru" + user="beeline" + password="beeline" + mmsc="http://mms/" + mmsproxy="192.168.94.23" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="250" + mnc="99" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + user_visible="false" + /> + + <apn carrier="Beeline XCAP" + mcc="250" + mnc="99" + apn="xcap.beeline.ru" + type="xcap" + protocol="IP" + roaming_protocol="IP" + user_visible="false" + /> + + <apn carrier="MTS-MMS" + mcc="255" + mnc="01" + apn="mms" + mmsc="http://mmsc:8002" + mmsproxy="192.168.10.10" + mmsport="8080" + type="mms" + /> + + <apn carrier="MTS-internet" + mcc="255" + mnc="01" + apn="www.mts.com.ua" + type="default,supl" + /> + + <apn carrier="Beeline-internet" + mcc="255" + mnc="02" + apn="internet.beeline.ua" + type="default,supl" + /> + + <apn carrier="Beeline-MMS" + mcc="255" + mnc="02" + apn="mms.beeline.ua" + mmsc="http://mms/" + mmsproxy="10.11.8.18" + mmsport="8080" + type="mms" + /> + + <apn carrier="Kyivstar MMS" + mcc="255" + mnc="03" + apn="mms.kyivstar.net" + user="mms" + password="mms" + mmsc="http://mms.kyivstar.net" + mmsproxy="10.10.10.10" + mmsport="8080" + type="mms" + /> + + <apn carrier="Kyivstar-internet" + mcc="255" + mnc="03" + apn="www.kyivstar.net" + user="igprs" + password="internet" + type="default,supl" + /> + + <apn carrier="life:) internet" + mcc="255" + mnc="06" + apn="internet" + type="default,supl" + /> + + <apn carrier="life:) MMS" + mcc="255" + mnc="06" + apn="mms" + mmsc="http://mms.life.com.ua/cmmsc/post" + mmsproxy="212.58.162.230" + mmsport="8080" + type="mms" + /> + + <apn carrier="Utel" + mcc="255" + mnc="07" + apn="3g.utel.ua" + mmsc="http://10.212.1.4/mms/wapenc" + mmsproxy="10.212.3.148" + mmsport="8080" + type="default,supl,mms" + /> + + <apn carrier="Orange internet" + mcc="259" + mnc="01" + apn="wap.orange.md" + type="default,supl" + /> + + <apn carrier="Orange MMS" + mcc="259" + mnc="01" + apn="mms.orange.md" + mmsc="http://mms/mms" + mmsproxy="192.168.127.125" + mmsport="9201" + type="mms" + /> + + <apn carrier="Moldcell WAP" + mcc="259" + mnc="02" + apn="internet" + type="default,supl" + /> + + <apn carrier="Moldcell MMS" + mcc="259" + mnc="02" + apn="mms" + mmsc="http://mms.moldcell.md/cmmsc/post" + mmsproxy="10.0.10.10" + mmsport="9201" + type="mms" + /> + + <apn carrier="Eventis WAP" + mcc="259" + mnc="04" + apn="internet.md" + type="default,supl" + /> + + <apn carrier="Eventis MMS" + mcc="259" + mnc="04" + apn="mms.md" + mmsc="http://mmsc:8002/" + mmsproxy="10.10.10.10" + mmsport="9201" + type="mms" + /> + + <apn carrier="Plus Internet" + mcc="260" + mnc="01" + apn="internet" + type="default,supl" + /> + + <apn carrier="Plus MMS" + mcc="260" + mnc="01" + apn="mms.plusgsm.pl" + mmsc="http://mms.plusgsm.pl:8002" + mmsproxy="212.2.96.16" + mmsport="8080" + type="mms" + /> + + <apn carrier="Internet" + mcc="260" + mnc="02" + apn="internet" + type="default,supl,dun,ia" + protocol="IPV4V6" + roaming_protocol="IP" + authtype="1" + /> + + <apn carrier="HOS" + mcc="260" + mnc="02" + apn="hos" + mmsc="http://mms/servlets/mms" + mmsproxy="213.158.194.226" + mmsport="8080" + type="mms,xcap" + protocol="IPV4V6" + roaming_protocol="IP" + authtype="1" + user_visible="false" + /> + + <apn carrier="IMS" + mcc="260" + mnc="02" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <!-- MVNO Heyah, need mvno item? --> + <apn carrier="HOS" + mcc="260" + mnc="02" + apn="hos" + mmsc="http://mms.heyah.pl/servlets/mms" + mmsproxy="213.158.194.226" + mmsport="8080" + type="mms,xcap" + protocol="IPV4V6" + roaming_protocol="IP" + authtype="1" + user_visible="false" + /> + + <!-- Poland 2.5g or 3g --> + <apn carrier="Internet" + mcc="260" + mnc="03" + apn="internet" + user="internet" + password="internet" + type="default" + /> + + <apn carrier="Internet CSD" + mcc="260" + mnc="03" + apn="Internet" + user="internet" + password="internet" + type="default" + /> + + <apn carrier="Orange Internet" + mcc="260" + mnc="03" + apn="Internet" + user="internet" + password="internet" + authtype="1" + type="default,supl" + /> + + <!-- Poland MMS --> + <apn carrier="Orange MMS" + mcc="260" + mnc="03" + apn="mms" + user="mms" + password="mms" + mmsc="http://mms.orange.pl" + mmsproxy="192.168.6.104" + mmsport="8080" + authtype="1" + type="mms" + /> + + <apn carrier="Orange IMS" + mcc="260" + mnc="03" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="P4 Internet" + mcc="260" + mnc="06" + apn="internet" + type="default,supl" + /> + + <apn carrier="P4 MMS" + mcc="260" + mnc="06" + apn="mms" + mmsc="http://10.10.28.164/mms/wapenc" + mmsproxy="10.10.25.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="P4 IMS" + mcc="260" + mnc="06" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="xcap" + mcc="260" + mnc="06" + apn="xcap" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="T-mobile.pl" + mcc="260" + mnc="34" + apn="" + type="ia" + /> + + <apn carrier="T-mobile.pl" + mcc="260" + mnc="34" + apn="internet" + type="default,supl" + /> + + <apn carrier="heyahinternet" + mcc="260" + mnc="34" + apn="heyah.pl" + type="default,supl" + /> + + <apn carrier="HOS" + mcc="260" + mnc="34" + apn="hos" + mmsc="http://mms/servlets/mms" + mmsproxy="213.158.194.226" + mmsport="8080" + type="mms,xcap" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="HOS" + mcc="260" + mnc="34" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="Telekom Internet" + mcc="262" + mnc="01" + apn="internet.telekom" + user="telekom" + password="telekom" + type="default,supl,dun,ia" + authtype="1" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <!--MVNO congstar, need mvno_type item?--> + <apn carrier="congstar Internet" + mcc="262" + mnc="01" + apn="internet.telekom" + user="congstar" + password="cs" + type="default,supl,dun,ia" + authtype="1" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="HOS" + mcc="262" + mnc="01" + apn="hos" + type="mms" + user="telekom" + password="telekom" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + mmsc="http://mms.t-mobile.de/servlets/mms" + mmsproxy="109.237.176.193" + mmsport="8008" + authtype="1" + user_visible="false" + /> + + <apn carrier="Telekom Deutschland" + mcc="262" + mnc="01" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Telekom Deutschland XCAP" + mcc="262" + mnc="01" + apn="internet.telekom" + type="xcap" + protocol="IPV4V6" + /> + + <apn carrier="Vodafone DE-MMS" + mcc="262" + mnc="02" + apn="event.vodafone.de" + mmsc="http://139.7.24.1/servlets/mms" + mmsproxy="139.7.29.17" + mmsport="80" + type="mms" + /> + + <apn carrier="Vodafone DE" + mcc="262" + mnc="02" + apn="web.vodafone.de" + type="default,supl,xcap" + /> + + <apn carrier="Vodafone DE IMS" + mcc="262" + mnc="02" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IPV6" + /> + + <apn carrier="Vodafone DE" + mcc="262" + mnc="02" + apn="" + type="ia" + /> + + <apn carrier="E-Plus Web GPRS" + mcc="262" + mnc="03" + apn="internet.eplus.de" + user="eplus" + password="internet" + type="default,supl" + /> + + <apn carrier="E-Plus MMS" + mcc="262" + mnc="03" + apn="mms.eplus.de" + user="mms" + password="eplus" + mmsc="http://mms/eplus/" + mmsproxy="212.23.97.153" + mmsport="5080" + type="mms" + /> + + <apn carrier="E-Plus WAP GPRS" + mcc="262" + mnc="03" + apn="wap.eplus.de" + proxy="212.23.97.9" + port="8080" + type="default,supl,mms" + /> + + <apn carrier="Vodafone DE-MMS" + mcc="262" + mnc="04" + apn="event.vodafone.de" + mmsc="http://139.7.24.1/servlets/mms" + mmsproxy="139.7.29.17" + mmsport="80" + type="mms" + /> + + <apn carrier="Vodafone DE" + mcc="262" + mnc="04" + apn="web.vodafone.de" + type="default,supl,xcap" + /> + + <apn carrier="E-Plus Web GPRS" + mcc="262" + mnc="05" + apn="internet.eplus.de" + user="eplus" + password="internet" + type="default,supl" + /> + + <apn carrier="E-Plus MMS" + mcc="262" + mnc="05" + apn="mms.eplus.de" + user="mms" + password="eplus" + mmsc="http://mms/eplus/" + mmsproxy="212.23.97.153" + mmsport="5080" + type="mms" + /> + + <apn carrier="T-Mobile Internet" + mcc="262" + mnc="06" + apn="internet.t-mobile" + user="t-mobile" + password="tm" + mmsc="http://mms.t-mobile.de/servlets/mms" + mmsproxy="172.28.23.131" + mmsport="8008" + type="default,supl,mms" + /> + + <apn carrier="Telekom Deutschland" + mcc="262" + mnc="06" + apn="ims" + type="ia,ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Telekom Deutschland XCAP" + mcc="262" + mnc="06" + apn="internet.telekom" + type="xcap" + protocol="IPV4V6" + /> + + <apn carrier="TMO DTAG XCAP" + mcc="262" + mnc="06" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + bearer_bitmask="18" + /> + + <apn carrier="o2" + mcc="262" + mnc="07" + apn="internet" + mmsc="http://10.81.0.7:8002" + mmsproxy="82.113.100.5" + mmsport="8080" + type="default,supl,mms,xcap" + /> + + <apn carrier="Telefonica IMS" + mcc="262" + mnc="07" + apn="ims" + type="ims" + protocol="IPV4V6" + /> + + <apn carrier="o2" + mcc="262" + mnc="08" + apn="internet" + mmsc="http://10.81.0.7:8002" + mmsproxy="82.113.100.5" + mmsport="8080" + type="default,supl,mms,xcap" + /> + + <apn carrier="Vodafone DE-MMS" + mcc="262" + mnc="09" + apn="event.vodafone.de" + mmsc="http://139.7.24.1/servlets/mms" + mmsproxy="139.7.29.17" + mmsport="80" + type="mms" + /> + + <apn carrier="Vodafone DE" + mcc="262" + mnc="09" + apn="web.vodafone.de" + type="default,supl,xcap" + /> + + <apn carrier="o2" + mcc="262" + mnc="11" + apn="internet" + mmsc="http://10.81.0.7:8002" + mmsproxy="82.113.100.5" + mmsport="8080" + type="default,supl,mms,xcap" + /> + + <apn carrier="Telekom Deutschland XCAP" + mcc="262" + mnc="78" + apn="internet.telekom" + type="xcap" + protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="262" + mnc="80" + apn="apn01.epg78.ericsson.se" + type="default" + protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="262" + mnc="80" + apn="ims01.epg78.ericsson.se" + type="ims" + protocol="IPV4V6" + /> + + <apn carrier="XCAP" + mcc="262" + mnc="80" + apn="apn01.epg78.ericsson.se" + type="xcap" + protocol="IPV4V6" + /> + + <apn carrier="Vodafone PT-MMS" + mcc="268" + mnc="01" + apn="net2.vodafone.pt" + user="vodafone" + password="vodafone" + mmsc="http://mms.vodafone.pt/servlets/mms" + mmsproxy="iproxy.vodafone.pt" + mmsport="80" + type="mms" + /> + + <apn carrier="Vodafone PT" + mcc="268" + mnc="01" + apn="net2.vodafone.pt" + user="vodafone" + password="vodafone" + type="default,supl,xcap" + /> + + <apn carrier="Vodafone IMS" + mcc="268" + mnc="01" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Vodafone Net2" + mcc="268" + mnc="01" + apn="" + type="ia" + /> + + <apn carrier="ZON Internet" + mcc="268" + mnc="01" + apn="" + type="ia" + mvno_match_data="ZON" + mvno_type="spn" + /> + + <apn carrier="Optimus" + mcc="268" + mnc="03" + apn="umts" + mmsc="http://mmsc:10021/mmsc" + mmsproxy="62.169.66.5" + mmsport="8799" + type="default,supl,mms" + /> + + <apn carrier="IMS" + mcc="268" + mnc="03" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="XCAP" + mcc="268" + mnc="03" + apn="XCAP" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="tmn internet" + mcc="268" + mnc="06" + apn="internet" + type="default,supl" + /> + + <apn carrier="mms tmn" + mcc="268" + mnc="06" + apn="mmsc.tmn.pt" + user="tmn" + password="tmnnet" + mmsc="http://mmsc/" + mmsproxy="10.111.2.16" + mmsport="8080" + type="mms" + /> + + <apn carrier="tmn internet" + mcc="268" + mnc="06" + apn="" + type="ia" + /> + + <apn carrier="Optimus" + mcc="268" + mnc="99" + apn="umts" + mmsc="http://mmsc:10021/mmsc" + mmsproxy="62.169.66.5" + mmsport="8799" + type="default,supl,mms" + /> + + <apn carrier="IMS" + mcc="268" + mnc="99" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="XCAP" + mcc="268" + mnc="99" + apn="XCAP" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone IE" + mcc="272" + mnc="01" + apn="live.vodafone.com" + type="default,supl" + /> + + <apn carrier="Vodafone IE-MMS" + mcc="272" + mnc="01" + apn="mms.vodafone.net" + mmsc="http://www.vodafone.ie/mms" + mmsproxy="10.24.59.200" + mmsport="80" + type="mms" + /> + + <apn carrier="ims" + mcc="272" + mnc="01" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="xcap" + mcc="272" + mnc="01" + apn="xcap" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="O2 Ireland" + mcc="272" + mnc="02" + apn="internet" + mmsc="http://mmsc.mms.o2.ie:8002" + mmsproxy="62.40.32.40" + mmsport="8080" + type="default,supl,mms" + /> + + <apn carrier="Meteor Data" + mcc="272" + mnc="03" + apn="data.mymeteor.ie" + type="default,supl" + /> + + <apn carrier="Meteor MMS" + mcc="272" + mnc="03" + apn="mms.mymeteor.ie" + user="my" + password="wap" + proxy="10.85.85.85" + port="8799" + mmsc="http://mms.mymeteor.ie" + mmsproxy="10.85.85.85" + mmsport="8799" + type="mms" + /> + + <apn carrier="eMobile WAP" + mcc="272" + mnc="03" + apn="mms.eircom.ie" + proxy="10.85.85.85" + type="default,supl" + /> + + <apn carrier="eMobile MMS" + mcc="272" + mnc="03" + apn="mms.eircom.ie" + mmsc="http://mms.eircom.ie" + mmsproxy="10.85.85.85" + type="mms" + /> + + <apn carrier="3 Ireland" + mcc="272" + mnc="05" + apn="3ireland.ie" + mmsc="http://mms.um.3ireland.ie:10021/mmsc" + mmsproxy="mms.3ireland.ie" + mmsport="8799" + type="default,supl,mms" + /> + + <apn carrier="Tesco Mobile" + mcc="272" + mnc="11" + apn="Tescomobile.liffeytelecom.com" + proxy="10.1.11.19" + port="8080" + type="default,supl" + /> + + <apn carrier="Tesco Mobile" + mcc="272" + mnc="11" + apn="Tescomobile.liffeytelecom.com" + mmsc="http://mmc1/servlets/mms" + mmsproxy="10.1.11.19" + mmsport="8080" + type="mms" + /> + + <apn carrier="Siminn Internet" + mcc="274" + mnc="01" + apn="internet" + type="default,supl" + /> + + <apn carrier="Siminn MMS" + mcc="274" + mnc="01" + apn="mms.simi.is" + mmsc="http://mms.simi.is/servlets/mms" + mmsproxy="213.167.138.200" + mmsport="8080" + type="mms" + /> + + <apn carrier="Vodafone Internet" + mcc="274" + mnc="02" + apn="gprs.is" + type="default,supl,xcap" + /> + + <apn carrier="Vodafone MMS" + mcc="274" + mnc="02" + apn="mms.gprs.is" + mmsc="http://mmsc.vodafone.is" + mmsproxy="10.22.0.10" + mmsport="8080" + type="mms" + /> + + <apn carrier="MMS Nova" + mcc="274" + mnc="11" + apn="mms.nova.is" + mmsc="http://mmsc.nova.is" + mmsproxy="10.10.2.60" + mmsport="8080" + type="mms" + /> + + <apn carrier="Net Nova" + mcc="274" + mnc="11" + apn="net.nova.is" + type="default,supl" + /> + + <apn carrier="Telekom Internet" + mcc="276" + mnc="01" + apn="internet.t" + type="default,supl,dun" + authtype="1" + /> + + <apn carrier="Telekom MMS" + mcc="276" + mnc="01" + apn="mms" + type="mms" + authtype="1" + mmsc="http://195.167.65.220:8002" + mmsproxy="10.10.10.20" + mmsport="8080" + /> + + <apn carrier="IMS" + mcc="276" + mnc="01" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Telekom IA" + mcc="276" + mnc="01" + apn="" + type="ia" + /> + + <apn carrier="Vodafone Internet" + mcc="278" + mnc="01" + apn="internet" + user="internet" + password="internet" + type="default,supl,xcap" + /> + + <apn carrier="Vodafone MMS" + mcc="278" + mnc="01" + apn="mms.vodafone.com.mt" + user="mms" + password="mms" + mmsc="http://mmsc.vodafone.com.mt/servlets/mms" + mmsproxy="10.12.0.3" + mmsport="8080" + type="mms" + /> + + <apn carrier="M-Tel Internet" + mcc="284" + mnc="01" + apn="wap-gprs.mtel.bg" + type="default,supl" + /> + + <apn carrier="M-Tel MMS" + mcc="284" + mnc="01" + apn="mms-gprs.mtel.bg" + user="mtel" + password="mtel" + mmsc="http://mmsc" + mmsproxy="10.150.0.33" + mmsport="8080" + type="mms" + /> + + <apn carrier="VIVACOM Internet" + mcc="284" + mnc="03" + apn="Internet.vivacom.bg" + user="vivacom" + password="vivacom" + type="default,supl" + /> + + <apn carrier="VIVACOM MMS" + mcc="284" + mnc="03" + apn="mms.vivacom.bg" + user="mms" + password="mms" + mmsc="http://mmsc.vivacom.bg" + mmsproxy="192.168.123.123" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="284" + mnc="03" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="hos" + mcc="284" + mnc="03" + apn="hos" + type="xcap" + /> + + <apn carrier="Telenor Internet" + mcc="284" + mnc="05" + apn="telenorbg" + type="default,supl" + /> + + <apn carrier="Telenor MMS" + mcc="284" + mnc="05" + apn="mms" + user="mms" + mmsc="http://mmsc" + mmsproxy="192.168.87.11" + mmsport="8004" + type="mms" + /> + + <apn carrier="Telenor VoLTE" + mcc="284" + mnc="05" + apn="ims" + type="ims" + /> + + <apn carrier="Turkcell Internet" + mcc="286" + mnc="01" + apn="internet" + type="default,supl" + /> + + <apn carrier="Turkcell MMS" + mcc="286" + mnc="01" + apn="mms" + user="mms" + password="mms" + mmsc="http://mms.turkcell.com.tr/servlets/mms" + mmsproxy="212.252.169.217" + mmsport="8080" + type="mms" + /> + + <apn carrier="Turkcell VoLTE" + mcc="286" + mnc="01" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Turkcell Xcap" + mcc="286" + mnc="01" + apn="xcap" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Internet" + mcc="286" + mnc="02" + apn="internet" + user="vodafone" + password="vodafone" + type="default,supl,xcap" + /> + + <apn carrier="Vodafone MMS" + mcc="286" + mnc="02" + apn="mms" + user="vodafone" + password="vodafone" + mmsc="http://217.31.233.18:6001/MM1Servlet" + mmsproxy="217.31.233.18" + mmsport="9401" + type="mms" + /> + + <apn carrier="Vodafone IMS" + mcc="286" + mnc="02" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Vodafone Turkey Xcap" + mcc="286" + mnc="02" + apn="hos" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Avea Internet" + mcc="286" + mnc="03" + apn="internet" + type="default,supl" + /> + + <apn carrier="Avea MMS" + mcc="286" + mnc="03" + apn="mms" + user="mms" + password="mms" + mmsc="http://mms.avea.com.tr/servlets/mms" + mmsproxy="213.161.151.201" + mmsport="8080" + type="mms" + /> + + <apn carrier="Avea IMS" + mcc="286" + mnc="03" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Avea Xcap" + mcc="286" + mnc="03" + apn="web" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Si.mobil Internet" + mcc="293" + mnc="40" + apn="internet.simobil.si" + user="simobil" + password="internet" + proxy="80.95.224.17" + port="9090" + type="wap" + /> + + <apn carrier="Si.mobil MMS" + mcc="293" + mnc="40" + apn="mms.simobil.si" + user="simobil" + password="internet" + mmsc="http://mmc" + mmsproxy="80.95.224.46" + mmsport="9201" + type="mms" + /> + + <apn carrier="TUS WAP" + mcc="293" + mnc="70" + apn="internet.tusmobil.si" + user="tusmobil" + password="internet" + proxy="91.185.221.85" + port="8080" + type="wap" + /> + + <apn carrier="TUS MMS" + mcc="293" + mnc="70" + apn="mms.tusmobil.si" + user="tusmobil" + password="mms" + mmsc="http://mms.tusmobil.si:8002" + mmsproxy="91.185.221.85" + mmsport="8080" + type="mms" + /> + + <apn carrier="Telekom MK Internet" + mcc="294" + mnc="01" + apn="internet" + user="internet" + password="t-mobile" + type="default,supl,dun" + authtype="1" + /> + + <apn carrier="T-Mobile MK MMS" + mcc="294" + mnc="01" + apn="mms" + user="mms" + password="mms" + mmsc="http://mms.t-mobile.com.mk" + mmsproxy="62.162.155.227" + mmsport="8080" + type="mms" + authtype="1" + /> + + <apn carrier="Telekom MK IA" + mcc="294" + mnc="01" + apn="" + type="ia" + protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="294" + mnc="01" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="ONE Internet" + mcc="294" + mnc="02" + apn="internet" + type="default,supl" + /> + + <apn carrier="ONE MMS" + mcc="294" + mnc="02" + apn="mms" + mmsc="http://195.167.65.220:8002" + mmsproxy="10.10.10.20" + mmsport="8080" + type="mms" + /> + + <apn carrier="Vip" + mcc="294" + mnc="03" + apn="VIPOPERATOR" + user="VIPOPERATOR" + password="VIPOPERATOR" + proxy="78.40.0.1" + port="9201" + type="wap" + /> + + <apn carrier="Vip MMS" + mcc="294" + mnc="03" + apn="VIPOPERATOR.MMS" + user="VIPOPERATOR" + password="VIPOPERATOR" + mmsc="http://mmsc.vipoperator.com.mk" + mmsproxy="78.40.0.1" + mmsport="8080" + type="mms" + /> + + <apn carrier="Planet" + mcc="294" + mnc="31" + apn="internet" + user="mobitel" + password="internet" + proxy="213.229.249.40" + port="8080" + type="wap" + /> + + <apn carrier="Swisscom Services" + mcc="295" + mnc="01" + apn="gprs.swisscom.ch" + type="default,supl" + protocol="IP" + /> + + <apn carrier="ims" + mcc="295" + mnc="01" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IPV6" + /> + + <apn carrier="Swisscom XCAP" + mcc="295" + mnc="01" + apn="hos" + type="xcap" + protocol="IP" + /> + + <apn carrier="Telenor MNE internet" + mcc="297" + mnc="01" + apn="flat" + user="gprs" + password="gprs" + proxy="192.168.246.5" + port="8080" + type="default,supl" + /> + + <apn carrier="Telenor MNE MMS" + mcc="297" + mnc="01" + apn="mms" + user="mms" + password="mms" + mmsc="http://mm.vor.telenor.me" + mmsproxy="192.168.246.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="Telekom Internet" + mcc="297" + mnc="02" + apn="tmcg-4g" + user="38267" + password="38267" + type="default,supl" + authtype="1" + /> + + <apn carrier="Telekom MMS" + mcc="297" + mnc="02" + apn="mms" + user="38267" + password="38267" + mmsc="http://192.168.180.100/servlets/mms" + mmsproxy="10.0.5.19" + mmsport="8080" + type="mms" + authtype="1" + /> + + <apn carrier="Telekom IA" + mcc="297" + mnc="02" + apn="" + type="ia" + protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="297" + mnc="02" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Mtel WAP" + mcc="297" + mnc="03" + apn="mtelwap" + user="wap" + password="068" + proxy="172.25.25.23" + port="8080" + type="wap" + /> + + <apn carrier="Mtel MMS" + mcc="297" + mnc="03" + apn="mtelmms" + user="mms" + password="068" + mmsc="http://mmsmtel.com/mms/wapenc" + mmsproxy="172.17.85.131" + mmsport="8080" + type="mms" + /> + + <apn carrier="TELUS SP" + mcc="302" + mnc="220" + apn="sp.telus.com" + proxy="74.49.0.18" + port="80" + mmsc="http://aliasredirect.net/proxy/mmsc" + mmsproxy="mmscproxy.mobility.ca" + mmsport="8799" + type="default,supl,mms" + /> + + <apn carrier="TELUS ISP" + mcc="302" + mnc="220" + apn="isp.telus.com" + type="dun" + user_visible="false" + /> + + <apn carrier="IMS" + mcc="302" + mnc="220" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="SOS" + mcc="302" + mnc="220" + apn="sos" + type="emergency" + protocol="IPV6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="TELUS Services" + mcc="302" + mnc="220" + apn="services.telus.com" + type="xcap" + protocol="IPV6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="KOODO SP" + mcc="302" + mnc="220" + apn="sp.koodo.com" + proxy="74.49.0.18" + port="80" + mmsc="http://aliasredirect.net/proxy/koodo/mmsc" + mmsproxy="mmscproxy.mobility.ca" + mmsport="8799" + type="default,supl,mms,dun" + mvno_type="gid" + mvno_match_data="4B" + /> + + <apn carrier="IMS" + mcc="302" + mnc="220" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IPV4V6" + mvno_type="gid" + mvno_match_data="4B" + /> + + <apn carrier="SOS" + mcc="302" + mnc="220" + apn="sos" + type="emergency" + protocol="IPV6" + roaming_protocol="IPV4V6" + user_visible="false" + mvno_type="gid" + mvno_match_data="4B" + /> + + <apn carrier="Koodo Services" + mcc="302" + mnc="220" + apn="services.koodo.com" + type="xcap" + protocol="IPV6" + roaming_protocol="IPV4V6" + mvno_type="gid" + mvno_match_data="4B" + /> + + <apn carrier="KOODO SP" + mcc="302" + mnc="220" + apn="sp.koodo.com" + proxy="74.49.0.18" + port="80" + mmsc="http://aliasredirect.net/proxy/koodo/mmsc" + mmsproxy="mmscproxy.mobility.ca" + mmsport="8799" + type="default,supl,mms,dun" + mvno_type="gid" + mvno_match_data="4F" + /> + + <apn carrier="IMS" + mcc="302" + mnc="220" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IPV4V6" + mvno_type="gid" + mvno_match_data="4F" + /> + + <apn carrier="SOS" + mcc="302" + mnc="220" + apn="sos" + type="emergency" + protocol="IPV6" + roaming_protocol="IPV4V6" + user_visible="false" + mvno_type="gid" + mvno_match_data="4F" + /> + + <apn carrier="Koodo Services" + mcc="302" + mnc="220" + apn="services.koodo.com" + type="xcap" + protocol="IPV6" + roaming_protocol="IPV4V6" + mvno_type="gid" + mvno_match_data="4F" + /> + + <apn carrier="TELUS SP" + mcc="302" + mnc="221" + apn="sp.telus.com" + proxy="74.49.0.18" + port="80" + mmsc="http://aliasredirect.net/proxy/mmsc" + mmsproxy="mmscproxy.mobility.ca" + mmsport="8799" + type="default,supl,mms" + /> + + <apn carrier="TELUS ISP" + mcc="302" + mnc="221" + apn="isp.telus.com" + type="dun" + user_visible="false" + /> + + <apn carrier="IMS" + mcc="302" + mnc="221" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="SOS" + mcc="302" + mnc="221" + apn="sos" + type="emergency" + protocol="IPV6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="TELUS Services" + mcc="302" + mnc="221" + apn="services.telus.com" + type="xcap" + protocol="IPV6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="fido internet" + mcc="302" + mnc="370" + apn="ltemobile.apn" + user="fido" + password="fido" + type="default,supl" + /> + + <apn carrier="fido mms" + mcc="302" + mnc="370" + apn="mms.fido.ca" + mmsc="http://mms.fido.ca" + mmsproxy="205.151.11.13" + type="mms" + /> + + <apn carrier="Fido Tethering" + mcc="302" + mnc="370" + apn="isp.fido.apn" + type="dun" + /> + + <apn carrier="Fido ISP GPRS" + mcc="302" + mnc="370" + apn="fido-core-appl1.apn" + mmsc="http://mms.fido.ca" + mmsproxy="205.151.11.13" + mmsport="80" + type="default,supl,mms" + /> + + <apn carrier="Internet" + mcc="302" + mnc="490" + apn="internet.freedommobile.ca" + type="default" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="MMS" + mcc="302" + mnc="490" + apn="mms.freedommobile.ca" + type="mms" + protocol="IP" + roaming_protocol="IP" + mmsc="http://mms.freedommobile.ca" + mmsproxy="74.115.197.70" + mmsport="8080" + /> + + <apn carrier="E911" + mcc="302" + mnc="490" + apn="e911.mobilefrdm.ca" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IP" + user_visible="false" + /> + + <apn carrier="VoLTE" + mcc="302" + mnc="490" + apn="volte.mobilefrdm.ca" + type="ims" + protocol="IPV4V6" + roaming_protocol="IP" + user_visible="false" + /> + + <apn carrier="XCAP" + mcc="302" + mnc="490" + apn="xcap.freedommobile.ca" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IP" + user_visible="false" + /> + + <apn carrier="Bell-Internet" + mcc="302" + mnc="610" + apn="pda.bell.ca" + type="default,supl,xcap,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + mmsc="http://mms.bell.ca/mms/wapenc" + proxy="web.wireless.bell.ca" + port="80" + /> + + <apn carrier="IMS" + mcc="302" + mnc="610" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="SOS" + mcc="302" + mnc="610" + apn="sos" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Bell-Internet" + mcc="302" + mnc="630" + apn="pda.bell.ca" + type="default,supl,xcap,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + mmsc="http://mms.bell.ca/mms/wapenc" + proxy="web.wireless.bell.ca" + port="80" + /> + + <apn carrier="IMS" + mcc="302" + mnc="630" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="SOS" + mcc="302" + mnc="630" + apn="sos" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Bell-Internet" + mcc="302" + mnc="640" + apn="pda.bell.ca" + type="default,supl,xcap,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + mmsc="http://mms.bell.ca/mms/wapenc" + proxy="web.wireless.bell.ca" + port="80" + /> + + <apn carrier="IMS" + mcc="302" + mnc="640" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="SOS" + mcc="302" + mnc="640" + apn="sos" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Rogers LTE" + mcc="302" + mnc="720" + apn="ltemobile.apn" + mmsc="http://mms.gprs.rogers.com" + mmsproxy="10.128.1.69" + mmsport="80" + protocol="IP" + type="default,supl,mms" + /> + + <apn carrier="Rogers" + mcc="302" + mnc="720" + apn="rogers-core-appl1.apn" + mmsc="http://mms.gprs.rogers.com" + mmsproxy="10.128.1.69" + mmsport="80" + type="default,supl,mms" + /> + + <apn carrier="Rogers" + mcc="302" + mnc="720" + apn="internet.com" + user="wapuser1" + password="wap" + type="default,supl" + /> + + <apn carrier="Rogers MMS" + mcc="302" + mnc="720" + apn="media.com" + user="media" + password="mda01" + server="172.25.0.107" + mmsc="http://mms.gprs.rogers.com" + mmsproxy="10.128.1.69" + port="80" + type="mms" + /> + + <apn carrier="Rogers Tethering" + mcc="302" + mnc="720" + apn="isp.apn" + type="dun" + /> + + <apn carrier="Rogers" + mcc="302" + mnc="720" + apn="internet.com" + user="guest" + password="guest" + type="default,supl,mms" + /> + + <apn carrier="Rogers" + mcc="302" + mnc="720" + apn="rogers-core-appl1.apn" + mmsc="http://mms.gprs.rogers.com" + mmsproxy="10.128.1.69" + mmsport="80" + type="default,supl,mms" + /> + + <apn carrier="Wholesale" + mcc="310" + mnc="000" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + /> + + <apn carrier="ATT Nextgenphone" + mcc="310" + mnc="030" + apn="nxtgenphone" + protocol="IPV4V6" + mmsc="http://mmsc.mobile.att.net" + mmsproxy="proxy.mobile.att.net" + mmsport="80" + type="default,supl,mms,hipri,fota,xcap" + /> + + <apn carrier="IMS" + mcc="310" + mnc="030" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="ATT Nextgenphone" + mcc="310" + mnc="070" + apn="nxtgenphone" + protocol="IPV4V6" + mmsc="http://mmsc.mobile.att.net" + mmsproxy="proxy.mobile.att.net" + mmsport="80" + type="default,supl,mms,hipri,fota,xcap" + /> + + <apn carrier="ATT Nextgenphone(wifi)" + mcc="310" + mnc="070" + apn="nxtgenphone" + protocol="IPV4V6" + mmsc="http://mmsc.mobile.att.net" + mmsproxy="proxy.mobile.att.net" + mmsport="80" + type="mms,xcap" + bearer_bitmask="18" + /> + + <apn carrier="IMS" + mcc="310" + mnc="070" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="ATT SOS" + mcc="310" + mnc="070" + apn="" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="ATT SOS(wifi)" + mcc="310" + mnc="070" + apn="sos" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + bearer_bitmask="18" + /> + + <apn carrier="CorrMMS" + mcc="310" + mnc="080" + apn="corrmms" + mmsc="http://mms.iot1.com/corr/mms.php" + mmsproxy="66.255.55.23" + mmsport="80" + type="mms" + /> + + <apn carrier="Internet" + mcc="310" + mnc="090" + apn="isp" + type="default,supl" + /> + + <apn carrier="MMS" + mcc="310" + mnc="090" + apn="mms" + mmsc="http://mms.edgemobile.net/mmsc" + mmsproxy="12.108.12.13" + mmsport="3128" + type="mms" + /> + + <apn carrier="Edge MMS Prepay" + mcc="310" + mnc="090" + apn="ppmms" + mmsc="http://mms.edgemobile.net/mmsc" + mmsproxy="12.108.12.13" + mmsport="3128" + type="mms" + /> + + <apn carrier="ATT Nextgenphone" + mcc="310" + mnc="090" + apn="nxtgenphone" + protocol="IPV4V6" + mmsc="http://mmsc.mobile.att.net" + mmsproxy="proxy.mobile.att.net" + mmsport="80" + type="default,supl,mms,hipri,fota,xcap" + /> + + <apn carrier="ATT Nextgenphone(wifi)" + mcc="310" + mnc="090" + apn="nxtgenphone" + protocol="IPV4V6" + mmsc="http://mmsc.mobile.att.net" + mmsproxy="proxy.mobile.att.net" + mmsport="80" + type="mms" + bearer_bitmask="18" + /> + + <apn carrier="IMS" + mcc="310" + mnc="090" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="ATT SOS" + mcc="310" + mnc="090" + apn="" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="ATT SOS(wifi)" + mcc="310" + mnc="090" + apn="sos" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + bearer_bitmask="18" + /> + + <apn carrier="PLAT-OTA-MMS" + mcc="310" + mnc="100" + apn="plateaumms" + password="mmsc" + mmsc="208.254.124.11:8514" + mmsproxy="208.254.124.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="PLATWEB" + mcc="310" + mnc="100" + apn="plateauweb" + type="default,supl" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.ispsn" + mmsc="http://mms.sprintpcs.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="000001" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="x.boost.ispsn" + mmsc="http://mm.myboostmobile.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="000002" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="x.vmu.ispsn" + mmsc="http://mmsc.vmobl.com:8088" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="000003" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="x.sprpre.ispsn" + mmsc="http://mmsc.vmobl.com:8088" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="000004" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="x.vi.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="000005" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="x.vmu.ispsn" + mmsc="http://mmsc.vmobl.com:8088" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="000006" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.ae.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00022" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.y7.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00305" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.q6.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00209" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.t7.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00250" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.p2.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00207" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.f6.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00105" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.nw.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00181" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.po.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00263" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.t9.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00271" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.n4.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00006" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.l2.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00151" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.c7.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00058" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.w1.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00301" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.k6.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00143" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + pn="n.nv.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00184" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.st.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00247" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.t8.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00274" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.c4.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00042" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.eg.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00092" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.ik.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00312" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.c5.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00050" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="internet" + mcc="310" + mnc="120" + apn="n.b7.ispsn" + mmsc="http://mms.plspictures.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + mvno_type="gid" + mvno_match_data="A00034" + type="default,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="ota" + mcc="310" + mnc="120" + apn="otasn" + type="fota" + protocol="IPV4V6" + /> + + <apn carrier="cinet" + mcc="310" + mnc="120" + apn="cinet.spcs" + mmsc="http://mms.sprintpcs.com" + mmsproxy="68.28.31.7" + mmsport="80" + type="default,fota,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Sprint IMS" + mcc="310" + mnc="120" + apn="ims" + mvno_type="gid" + mvno_match_data="000001" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="My Multi Media" + mcc="310" + mnc="130" + apn="mms.c1.ama" + user="cell1mms" + password="cell1" + mmsc="http://mms.iot1.com/amarillo/mms.php" + type="mms" + /> + + <apn carrier="internet" + mcc="310" + mnc="150" + apn="ndo" + mmsc="http://mmsc.aiowireless.net" + mmsproxy="proxy.aiowireless.net" + mmsport="80" + type="default,mms,fota,hipri,supl,xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="IMS" + mcc="310" + mnc="150" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="mht" + mcc="310" + mnc="150" + apn="mht" + type="dun" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="T-Mobile US LTE" + mcc="310" + mnc="160" + apn="fast.t-mobile.com" + type="default,supl,mms,rcs" + mmsc="http://mms.msg.eng.t-mobile.com/mms/wapenc" + protocol="IPV6" + /> + + <apn carrier="T-Mobile US 160 IMS" + mcc="310" + mnc="160" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IP" + /> + + <apn carrier="T-Mobile US 160 Emergency" + mcc="310" + mnc="160" + apn="" + type="emergency" + protocol="IPV6" + roaming_protocol="IP" + /> + + <apn carrier="DataConnect" + mcc="310" + mnc="170" + apn="isp.cingular" + type="default,supl" + /> + + <apn carrier="Cingular MMS" + mcc="310" + mnc="170" + apn="wap.cingular" + user="WAP@CINGULARGPRS.COM" + password="CINGULAR1" + mmsc="http://mmsc.cingular.com" + mmsproxy="66.209.11.32" + mmsport="8080" + type="mms" + /> + + <apn carrier="ATT Nextgenphone" + mcc="310" + mnc="170" + apn="nxtgenphone" + protocol="IPV4V6" + mmsc="http://mmsc.mobile.att.net" + mmsproxy="proxy.mobile.att.net" + mmsport="80" + type="default,supl,mms,hipri,fota,xcap" + /> + + <apn carrier="ATT Nextgenphone(wifi)" + mcc="310" + mnc="170" + apn="nxtgenphone" + protocol="IPV4V6" + mmsc="http://mmsc.mobile.att.net" + mmsproxy="proxy.mobile.att.net" + mmsport="80" + type="mms,xcap" + bearer_bitmask="18" + /> + + <apn carrier="IMS" + mcc="310" + mnc="170" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="ATT SOS" + mcc="310" + mnc="170" + apn="" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="ATT SOS(wifi)" + mcc="310" + mnc="170" + apn="sos" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + bearer_bitmask="18" + /> + + <apn carrier="T-Mobile US LTE" + mcc="310" + mnc="200" + apn="fast.t-mobile.com" + type="default,supl,mms,rcs" + mmsc="http://mms.msg.eng.t-mobile.com/mms/wapenc" + protocol="IPV6" + /> + + <apn carrier="T-Mobile US 200 IMS" + mcc="310" + mnc="200" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IP" + /> + + <apn carrier="T-Mobile US 200 Emergency" + mcc="310" + mnc="200" + apn="" + type="emergency" + protocol="IPV6" + roaming_protocol="IP" + /> + + <apn carrier="T-Mobile US LTE" + mcc="310" + mnc="210" + apn="fast.t-mobile.com" + type="default,supl,mms,rcs" + mmsc="http://mms.msg.eng.t-mobile.com/mms/wapenc" + protocol="IPV6" + roaming_protocol="IP" + /> + + <apn carrier="T-Mobile US LTE wifi" + mcc="310" + mnc="210" + apn="tmus" + type="mms" + mmsc="http://mms.msg.eng.t-mobile.com/mms/wapenc" + protocol="IPV6" + roaming_protocol="IPV6" + bearer_bitmask="18" + /> + + <apn carrier="T-Mobile US 210 IMS" + mcc="310" + mnc="210" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IP" + /> + + <apn carrier="T-Mobile US 210 Emergency" + mcc="310" + mnc="210" + apn="" + type="emergency" + protocol="IPV6" + roaming_protocol="IP" + /> + + <apn carrier="T-Mobile US LTE" + mcc="310" + mnc="220" + apn="fast.t-mobile.com" + type="default,supl,mms,rcs" + mmsc="http://mms.msg.eng.t-mobile.com/mms/wapenc" + protocol="IPV6" + /> + + <apn carrier="T-Mobile US 220 IMS" + mcc="310" + mnc="220" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IP" + /> + + <apn carrier="T-Mobile US 220 Emergency" + mcc="310" + mnc="220" + apn="" + type="emergency" + protocol="IPV6" + roaming_protocol="IP" + /> + + <apn carrier="T-Mobile US LTE" + mcc="310" + mnc="230" + apn="fast.t-mobile.com" + type="default,supl,mms,rcs" + mmsc="http://mms.msg.eng.t-mobile.com/mms/wapenc" + protocol="IPV6" + /> + + <apn carrier="T-Mobile US 230 IMS" + mcc="310" + mnc="230" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IP" + /> + + <apn carrier="T-Mobile US 230 Emergency" + mcc="310" + mnc="230" + apn="" + type="emergency" + protocol="IPV6" + roaming_protocol="IP" + /> + + <apn carrier="T-Mobile US LTE" + mcc="310" + mnc="240" + apn="fast.t-mobile.com" + type="default,supl,mms,rcs" + mmsc="http://mms.msg.eng.t-mobile.com/mms/wapenc" + protocol="IPV6" + /> + + <apn carrier="T-Mobile US 240 IMS" + mcc="310" + mnc="240" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IP" + /> + + <apn carrier="T-Mobile US 240 Emergency" + mcc="310" + mnc="240" + apn="" + type="emergency" + protocol="IPV6" + roaming_protocol="IP" + /> + + <apn carrier="T-Mobile US LTE" + mcc="310" + mnc="250" + apn="fast.t-mobile.com" + type="default,supl,mms,rcs" + mmsc="http://mms.msg.eng.t-mobile.com/mms/wapenc" + protocol="IPV6" + /> + + <apn carrier="T-Mobile US 250 IMS" + mcc="310" + mnc="250" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IP" + /> + + <apn carrier="T-Mobile US 250 Emergency" + mcc="310" + mnc="250" + apn="" + type="emergency" + protocol="IPV6" + roaming_protocol="IP" + /> + + <apn carrier="T-Mobile US LTE" + mcc="310" + mnc="260" + apn="fast.t-mobile.com" + type="default,mms,supl,rcs" + mmsc="http://mms.msg.eng.t-mobile.com/mms/wapenc" + protocol="IPV6" + /> + + <apn carrier="T-Mobile US IMS" + mcc="310" + mnc="260" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IP" + /> + + <apn carrier="T-Mobile US 260 Emergency" + mcc="310" + mnc="260" + apn="" + type="emergency" + protocol="IPV6" + roaming_protocol="IP" + /> + + <apn carrier="T-Mobile US MMS" + mcc="310" + mnc="260" + apn="fast" + type="mms" + mmsc="http://mms.msg.eng.t-mobile.com/mms/wapenc" + protocol="IPV6" + /> + + <apn carrier="T-Mobile US MMS over WiFi" + mcc="310" + mnc="260" + apn="tmus" + type="mms" + mmsc="http://mms.msg.eng.t-mobile.com/mms/wapenc" + protocol="IPV6" + bearer_bitmask="18" + /> + + <apn carrier="T-Mobile US LTE" + mcc="310" + mnc="270" + apn="fast.t-mobile.com" + type="default,supl,mms,rcs" + mmsc="http://mms.msg.eng.t-mobile.com/mms/wapenc" + protocol="IPV6" + /> + + <apn carrier="T-Mobile US 270 IMS" + mcc="310" + mnc="270" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IPV6" + /> + + <apn carrier="ATT Nextgenphone" + mcc="310" + mnc="280" + apn="nxtgenphone" + protocol="IPV4V6" + mmsc="http://mmsc.mobile.att.net" + mmsproxy="proxy.mobile.att.net" + mmsport="80" + type="default,supl,mms,hipri,fota,xcap" + /> + + <apn carrier="IMS" + mcc="310" + mnc="280" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="T-Mobile US LTE" + mcc="310" + mnc="300" + apn="fast.t-mobile.com" + type="default,supl,mms,rcs" + mmsc="http://mms.msg.eng.t-mobile.com/mms/wapenc" + protocol="IPV6" + /> + + <apn carrier="T-Mobile US LTE" + mcc="310" + mnc="310" + apn="fast.t-mobile.com" + type="default,supl,mms,rcs" + mmsc="http://mms.msg.eng.t-mobile.com/mms/wapenc" + protocol="IPV6" + /> + + <apn carrier="T-Mobile US 310 IMS" + mcc="310" + mnc="310" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IP" + /> + + <apn carrier="T-Mobile US 310 Emergency" + mcc="310" + mnc="310" + apn="" + type="emergency" + protocol="IPV6" + roaming_protocol="IP" + /> + + <apn carrier="AWS MMS" + mcc="310" + mnc="380" + apn="proxy" + mmsc="http://mmsc.mymmode.com" + mmsproxy="10.250.250.55" + mmsport="8080" + type="mms" + /> + + <apn carrier="ATT Nextgenphone" + mcc="310" + mnc="380" + apn="nxtgenphone" + protocol="IPV4V6" + mmsc="http://mmsc.mobile.att.net" + mmsproxy="proxy.mobile.att.net" + mmsport="80" + type="default,supl,mms,hipri,fota,xcap" + /> + + <apn carrier="ATT Nextgenphone(wifi)" + mcc="310" + mnc="380" + apn="nxtgenphone" + protocol="IPV4V6" + mmsc="http://mmsc.mobile.att.net" + mmsproxy="proxy.mobile.att.net" + mmsport="80" + type="mms,xcap" + bearer_bitmask="18" + /> + + <apn carrier="IMS" + mcc="310" + mnc="380" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="ATT SOS" + mcc="310" + mnc="380" + apn="" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="ATT SOS(wifi)" + mcc="310" + mnc="380" + apn="sos" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + bearer_bitmask="18" + /> + + <apn carrier="Celloneet MMS" + mcc="310" + mnc="390" + apn="mms.celloneet.com" + user="user1@mms.celloneet.com" + password="celloneet" + mmsc="http://mms.celloneet.com/servlets/mms" + mmsproxy="63.99.231.135" + mmsport="8080" + type="mms" + /> + + <apn carrier="ATT Nextgenphone" + mcc="310" + mnc="410" + apn="nxtgenphone" + mmsc="http://mmsc.mobile.att.net" + mmsproxy="proxy.mobile.att.net" + mmsport="80" + type="default,mms,supl,fota,hipri,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="ATT Nextgenphone(wifi)" + mcc="310" + mnc="410" + apn="nxtgenphone" + mmsc="http://mmsc.mobile.att.net" + mmsproxy="proxy.mobile.att.net" + mmsport="80" + type="mms,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + bearer_bitmask="18" + /> + + <apn carrier="IMS" + mcc="310" + mnc="410" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="ATT SOS" + mcc="310" + mnc="410" + apn="" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + bearer_bitmask ="1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|17" + /> + + <apn carrier="ATT SOS(wifi)" + mcc="310" + mnc="410" + apn="sos" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + bearer_bitmask="18" + /> + + <apn carrier="CBW MMS" + mcc="310" + mnc="420" + apn="wap.gocbw.com" + mmsc="http://mms.gocbw.com:8088/mms" + mmsproxy="216.68.79.202" + mmsport="80" + type="mms" + /> + + <apn carrier="DataConnect" + mcc="310" + mnc="470" + apn="isp.cingular" + type="default,supl" + /> + + <apn carrier="MediaNet" + mcc="310" + mnc="470" + apn="wap.cingular" + user="WAP@CINGULARGPRS.COM" + password="CINGULAR1" + mmsc="http://mmsc.cingular.com" + mmsproxy="66.209.11.32" + mmsport="8080" + type="default,supl,mms" + /> + + <apn carrier="DataConnect" + mcc="310" + mnc="480" + apn="isp.cingular" + type="default,supl" + /> + + <apn carrier="MediaNet" + mcc="310" + mnc="480" + apn="wap.cingular" + user="WAP@CINGULARGPRS.COM" + password="CINGULAR1" + mmsc="http://mmsc.cingular.com" + mmsproxy="66.209.11.32" + mmsport="8080" + type="default,supl,mms" + /> + + <apn carrier="T-Mobile US LTE" + mcc="310" + mnc="490" + apn="fast.t-mobile.com" + type="default,supl,mms,rcs" + mmsc="http://mms.msg.eng.t-mobile.com/mms/wapenc" + protocol="IPV6" + /> + + <apn carrier="T-Mobile US 490 IMS" + mcc="310" + mnc="490" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IPV6" + /> + + <apn carrier="GoodCall Picture Message" + mcc="310" + mnc="490" + apn="good.call" + mmsc="http://mms.suncom.net:8088/mms" + mmsproxy="66.150.33.125" + mmsport="8080" + type="mms" + /> + + <apn carrier="Suncom MMS" + mcc="310" + mnc="490" + apn="mms" + mmsc="http://mms.suncom.net:8088/mms" + mmsproxy="66.150.33.125" + mmsport="8080" + type="mms" + /> + + <apn carrier="T-Mobile US LTE" + mcc="310" + mnc="530" + apn="fast.t-mobile.com" + type="default,supl,mms,rcs" + mmsc="http://mms.msg.eng.t-mobile.com/mms/wapenc" + protocol="IPV6" + /> + + <apn carrier="DobsonMMS" + mcc="310" + mnc="560" + apn="dobsoncellularwap" + mmsc="http://mmsc" + mmsproxy="172.23.1.252" + mmsport="8799" + type="mms" + /> + + <apn carrier="ATT Nextgenphone" + mcc="310" + mnc="560" + apn="nxtgenphone" + protocol="IPV4V6" + mmsc="http://mmsc.mobile.att.net" + mmsproxy="proxy.mobile.att.net" + mmsport="80" + type="default,supl,mms,hipri,fota,xcap" + /> + + <apn carrier="ATT Nextgenphone(wifi)" + mcc="310" + mnc="560" + apn="nxtgenphone" + protocol="IPV4V6" + mmsc="http://mmsc.mobile.att.net" + mmsproxy="proxy.mobile.att.net" + mmsport="80" + type="mms,xcap" + bearer_bitmask="18" + /> + + <apn carrier="IMS" + mcc="310" + mnc="560" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="ATT SOS" + mcc="310" + mnc="560" + apn="" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="ATT SOS(wifi)" + mcc="310" + mnc="560" + apn="sos" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + bearer_bitmask="18" + /> + + <apn carrier="ChinookMMS" + mcc="310" + mnc="570" + apn="wapgw.chinookwireless.net" + mmsc="http://mms.cellonenation.net/mms/" + mmsproxy="204.181.155.195" + mmsport="8080" + type="mms" + /> + + <apn carrier="T-Mobile US LTE" + mcc="310" + mnc="590" + apn="fast.t-mobile.com" + type="default,supl,mms,rcs" + mmsc="http://mms.msg.eng.t-mobile.com/mms/wapenc" + protocol="IPV6" + /> + + <apn carrier="T-Mobile US IMS" + mcc="310" + mnc="590" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IPV6" + /> + + <apn carrier="CellularOne MMS" + mcc="310" + mnc="590" + apn="cellular1wap" + mmsc="http://mmsc" + mmsproxy="172.23.1.252" + mmsport="8799" + type="mms" + /> + + <apn carrier="EpicINT" + mcc="310" + mnc="610" + apn="internet.epictouch" + type="default,supl" + /> + + <apn carrier="EpicMMS" + mcc="310" + mnc="610" + apn="mms.epictouch" + mmsc="http://mmsc.westlinkcom.com/servlets/mms" + mmsproxy="63.99.231.135" + mmsport="8080" + type="mms" + /> + + <apn carrier="T-Mobile US LTE" + mcc="310" + mnc="640" + apn="fast.t-mobile.com" + type="default,supl,mms,rcs" + mmsc="http://mms.msg.eng.t-mobile.com/mms/wapenc" + protocol="IPV6" + /> + + <apn carrier="T-Mobile US LTE" + mcc="310" + mnc="660" + apn="fast.t-mobile.com" + type="default,supl,mms,rcs" + mmsc="http://mms.msg.eng.t-mobile.com/mms/wapenc" + protocol="IPV6" + /> + + <apn carrier="T-Mobile US 660 IMS" + mcc="310" + mnc="660" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IPV6" + /> + + <apn carrier="ATT Nextgenphone" + mcc="310" + mnc="680" + apn="nxtgenphone" + protocol="IPV4V6" + mmsc="http://mmsc.mobile.att.net" + mmsproxy="proxy.mobile.att.net" + mmsport="80" + type="default,supl,mms,hipri,fota,xcap" + /> + + <apn carrier="ATT Nextgenphone(wifi)" + mcc="310" + mnc="680" + apn="nxtgenphone" + protocol="IPV4V6" + mmsc="http://mmsc.mobile.att.net" + mmsproxy="proxy.mobile.att.net" + mmsport="80" + type="mms,xcap" + bearer_bitmask="18" + /> + + <apn carrier="IMS" + mcc="310" + mnc="680" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="ATT SOS" + mcc="310" + mnc="680" + apn="" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="ATT SOS(wifi)" + mcc="310" + mnc="680" + apn="sos" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + bearer_bitmask="18" + /> + + <apn carrier="WEB 2" + mcc="310" + mnc="770" + apn="i2.iwireless.com" + type="default,supl" + /> + + <apn carrier="Picture Messaging" + mcc="310" + mnc="770" + apn="wap1.iwireless.com" + mmsc="http://mmsc.iwireless.dataonair.net:6672" + mmsproxy="209.4.229.31" + mmsport="9401" + type="mms" + /> + + <apn carrier="PIAPicture Messaging" + mcc="310" + mnc="770" + apn="wap9.iwireless.com" + mmsc="http://mmsc.iwireless.dataonair.net:6672" + mmsproxy="209.4.229.32" + mmsport="9401" + type="mms" + /> + + <apn carrier="T-Mobile US LTE" + mcc="310" + mnc="800" + apn="fast.t-mobile.com" + type="default,supl,mms,rcs" + mmsc="http://mms.msg.eng.t-mobile.com/mms/wapenc" + protocol="IPV6" + /> + + <apn carrier="T-Mobile US LTE(wifi)" + mcc="310" + mnc="800" + apn="fast.t-mobile.com" + type="mms" + mmsc="http://mms.msg.eng.t-mobile.com/mms/wapenc" + protocol="IPV6" + bearer_bitmask="18" + /> + + <apn carrier="T-Mobile US 800 IMS" + mcc="310" + mnc="800" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IPV6" + /> + + <apn carrier="Internet" + mcc="310" + mnc="840" + apn="isp" + type="default,supl" + /> + + <apn carrier="MMS" + mcc="310" + mnc="840" + apn="mms" + mmsc="http://mms.edgemobile.net/mmsc" + mmsproxy="12.108.12.13" + mmsport="3128" + type="mms" + /> + + <apn carrier="Edge MMS Prepay" + mcc="310" + mnc="840" + apn="ppmms" + mmsc="http://mms.edgemobile.net/mmsc" + mmsproxy="12.108.12.13" + mmsport="3128" + type="mms" + /> + + <apn carrier="DTC MMS" + mcc="310" + mnc="880" + apn="mms.adv.com" + mmsc="http://mms.iot1.com/advantage/mms.php" + type="mms" + /> + + <apn carrier="WOW_WAP" + mcc="310" + mnc="910" + apn="wap.firstcellular.com" + mmsc="mms.firstcellular.net/mmsc" + mmsproxy="10.101.1.5" + mmsport="3128" + type="default,supl,mms" + /> + + <apn carrier="ATT Nextgenphone" + mcc="310" + mnc="950" + apn="nxtgenphone" + protocol="IPV4V6" + mmsc="http://mmsc.mobile.att.net" + mmsproxy="proxy.mobile.att.net" + mmsport="80" + type="default,supl,mms,hipri,fota,xcap" + /> + + <apn carrier="IMS" + mcc="310" + mnc="950" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="ATT Nextgenphone" + mcc="311" + mnc="180" + apn="nxtgenphone" + protocol="IPV4V6" + mmsc="http://mmsc.mobile.att.net" + mmsproxy="proxy.mobile.att.net" + mmsport="80" + type="default,supl,mms,hipri,fota,xcap" + /> + + <apn carrier="ATT Nextgenphone(wifi)" + mcc="311" + mnc="180" + apn="nxtgenphone" + protocol="IPV4V6" + mmsc="http://mmsc.mobile.att.net" + mmsproxy="proxy.mobile.att.net" + mmsport="80" + type="mms" + bearer_bitmask="18" + /> + + <apn carrier="IMS" + mcc="311" + mnc="180" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="ATT SOS" + mcc="311" + mnc="180" + apn="" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="ATT SOS(wifi)" + mcc="311" + mnc="180" + apn="sos" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + bearer_bitmask="18" + /> + + <apn carrier="MMS" + mcc="311" + mnc="190" + apn="wap.cellular1.net" + mmsc="http://mms.cellular1.net/ecit/mms.php" + type="mms" + /> + + <apn carrier="Farmers GPRS" + mcc="311" + mnc="210" + apn="internet.farmerswireless.com" + type="default,supl" + /> + + <apn carrier="Farmers MMS" + mcc="311" + mnc="210" + apn="mms.farmers.com" + mmsc="172.16.0.37:8514" + type="mms" + /> + + <!-- Modify Apn database for VZW LTE support --> + <apn carrier="LTE - Verizon Internet" + mcc="311" + mnc="270" + apn="VZWINTERNET" + type="default,dun" + protocol="IPV4V6" + roaming_protocol="IP" + max_conns="20" + max_conns_time="300" + wait_time="0" + /> + <apn carrier="LTE - Verizon FOTA" + mcc="311" + mnc="270" + apn="VZWADMIN" + type="fota" + protocol="IPV4V6" + roaming_protocol="IP" + max_conns="20" + max_conns_time="300" + wait_time="0" + /> + <apn carrier="LTE - Verizon IMS" + mcc="311" + mnc="270" + apn="IMS" + type="ims,ia" + protocol="IPV4V6" + roaming_protocol="IPV6" + max_conns="20" + max_conns_time="300" + wait_time="0" + /> + <apn carrier="LTE - Verizon CBS" + mcc="311" + mnc="270" + apn="VZWAPP" + type="cbs,mms" + mmsc="http://mms.vtext.com/servlets/mms" + protocol="IPV4V6" + roaming_protocol="IP" + max_conns="20" + max_conns_time="300" + wait_time="0" + /> + <apn carrier="LTE - Verizon EMERGENCY" + mcc="311" + mnc="270" + apn="" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV6" + max_conns="1023" + max_conns_time="300" + wait_time="0" + /> + <apn carrier="ePDG - Verizon EMERGENCY" + mcc="311" + mnc="270" + apn="VZWEMERGENCY" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV6" + max_conns="1023" + max_conns_time="300" + wait_time="0" + bearer_bitmask="18" + /> + <apn carrier="LTE - Verizon Internet" + mcc="311" + mnc="480" + apn="VZWINTERNET" + type="default,dun" + protocol="IPV4V6" + roaming_protocol="IP" + max_conns="20" + max_conns_time="300" + wait_time="0" + /> + <apn carrier="LTE - Verizon FOTA" + mcc="311" + mnc="480" + apn="VZWADMIN" + type="fota" + protocol="IPV4V6" + roaming_protocol="IP" + max_conns="20" + max_conns_time="300" + wait_time="0" + /> + <apn carrier="LTE - Verizon IMS" + mcc="311" + mnc="480" + apn="IMS" + type="ims,ia" + protocol="IPV4V6" + roaming_protocol="IPV6" + max_conns="20" + max_conns_time="300" + wait_time="0" + /> + <apn carrier="LTE - Verizon CBS" + mcc="311" + mnc="480" + apn="VZWAPP" + type="cbs,mms" + mmsc="http://mms.vtext.com/servlets/mms" + protocol="IPV4V6" + roaming_protocol="IP" + max_conns="20" + max_conns_time="300" + wait_time="0" + /> + <apn carrier="LTE - Verizon EMERGENCY" + mcc="311" + mnc="480" + apn="" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV6" + max_conns="1023" + max_conns_time="300" + wait_time="0" + /> + <apn carrier="ePDG - Verizon EMERGENCY" + mcc="311" + mnc="480" + apn="VZWEMERGENCY" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV6" + max_conns="1023" + max_conns_time="300" + wait_time="0" + bearer_bitmask="18" + /> + + <apn carrier="Virgin" + mcc="311" + mnc="490" + mmsc="http://mmsc.vmobl.com:8088" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + /> + + <apn carrier="Virgin Mobile - IMS" + mcc="311" + mnc="490" + apn="ims" + mvno_type="gid" + mvno_match_data="000003" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Virgin Evolution - IMS" + mcc="311" + mnc="490" + apn="ims" + mvno_type="gid" + mvno_match_data="000005" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS for all MVNOs" + mcc="311" + mnc="490" + apn="ims" + mvno_type="gid" + mvno_match_data="000006" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Boost" + mcc="311" + mnc="870" + mmsc="http://mm.myboostmobile.com" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + /> + + <apn carrier="Boost - IMS" + mcc="311" + mnc="870" + apn="ims" + mvno_type="gid" + mvno_match_data="000002" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Sprint Prepaid" + mcc="312" + mnc="530" + mmsc="http://mmsc.vmobl.com:8088" + mmsproxy="oap7.sprintpcs.com" + mmsport="80" + /> + + <apn carrier="Sprint Prepaid - IMS" + mcc="312" + mnc="530" + apn="ims" + mvno_type="gid" + mvno_match_data="000004" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="ATT FirstNet-Phone" + mcc="312" + mnc="670" + apn="firstnet-phone" + mmsc="http://mmsc.mobile.att.net" + mmsproxy="proxy.mobile.att.net" + mmsport="80" + type="default,mms,fota,supl,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="312" + mnc="670" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="LTE - Verizon Internet" + mcc="312" + mnc="770" + apn="VZWINTERNET" + type="default,dun" + protocol="IPV4V6" + roaming_protocol="IP" + max_conns="20" + max_conns_time="300" + wait_time="0" + /> + <apn carrier="LTE - Verizon FOTA" + mcc="312" + mnc="770" + apn="VZWADMIN" + type="fota" + protocol="IPV4V6" + roaming_protocol="IP" + max_conns="20" + max_conns_time="300" + wait_time="0" + /> + <apn carrier="LTE - Verizon IMS" + mcc="312" + mnc="770" + apn="IMS" + type="ims,ia" + protocol="IPV4V6" + roaming_protocol="IPV6" + max_conns="20" + max_conns_time="300" + wait_time="0" + /> + <apn carrier="LTE - Verizon CBS" + mcc="312" + mnc="770" + apn="VZWAPP" + type="cbs,mms" + mmsc="http://mms.vtext.com/servlets/mms" + protocol="IPV4V6" + roaming_protocol="IP" + max_conns="20" + max_conns_time="300" + wait_time="0" + /> + <apn carrier="LTE - Verizon EMERGENCY" + mcc="312" + mnc="770" + apn="" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV6" + max_conns="1023" + max_conns_time="300" + wait_time="0" + /> + <apn carrier="ePDG - Verizon EMERGENCY" + mcc="312" + mnc="770" + apn="VZWEMERGENCY" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV6" + max_conns="1023" + max_conns_time="300" + wait_time="0" + bearer_bitmask="18" + /> + <!-- END modify Apn database for VZW LTE support --> + + <apn carrier="ATT FirstNet-Phone" + mcc="313" + mnc="100" + apn="firstnet-phone" + mmsc="http://mmsc.mobile.att.net" + mmsproxy="proxy.mobile.att.net" + mmsport="80" + type="default,mms,fota,supl,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="313" + mnc="100" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="CLARO WAP" + mcc="330" + mnc="110" + apn="wap.claropr.com" + proxy="10.50.38.3" + port="8799" + type="wap" + /> + + <apn carrier="CLARO MMS" + mcc="330" + mnc="110" + apn="mms.claropr.com" + mmsc="http://mmsg.claropr.com:10021/mmsc" + mmsproxy="10.50.38.3" + mmsport="8799" + type="mms" + /> + + <apn carrier="Telcel Internet" + mcc="334" + mnc="02" + apn="internet.itelcel.com" + user="webgprs" + password="webgprs2002" + type="default,supl" + /> + + <apn carrier="Mensajas Multimedia" + mcc="334" + mnc="02" + apn="mms.itelcel.com" + user="mmsgprs" + password="mmsgprs2003" + mmsc="http://mms.itelcel.com/servlets/mms" + mmsproxy="148.233.151.240" + mmsport="8080" + type="mms" + /> + + <apn carrier="MoviStar Internet" + mcc="334" + mnc="03" + apn="internet.movistar.mx" + user="movistar" + password="movistar" + type="default,supl,xcap" + /> + + <apn carrier="MoviStar Mms" + mcc="334" + mnc="03" + apn="mms.movistar.mx" + user="movistar" + password="movistar" + mmsc="http://mms.movistar.mx" + mmsproxy="10.2.20.1" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="334" + mnc="03" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Telcel Internet" + mcc="334" + mnc="020" + apn="internet.itelcel.com" + type="default,supl,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Telcel MMS" + mcc="334" + mnc="020" + apn="mms.itelcel.com" + user="mmsgprs" + password="mmsgprs2003" + mmsc="http://mms.itelcel.com/servlets/mms" + mmsproxy="148.233.151.240" + mmsport="8080" + type="mms" + /> + + <apn carrier="Telcel IMS" + mcc="334" + mnc="020" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Telcel XCAP" + mcc="334" + mnc="020" + apn="internet.itelcel.com" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + bearer_bitmask="18" + /> + + <apn carrier="Telcel SOS" + mcc="334" + mnc="020" + apn="sos" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="MoviStar Internet" + mcc="334" + mnc="030" + apn="internet.movistar.mx" + user="movistar" + password="movistar" + type="default,supl,xcap" + /> + + <apn carrier="MoviStar Mms" + mcc="334" + mnc="030" + apn="mms.movistar.mx" + mmsc="http://mms.movistar.mx" + mmsproxy="10.2.20.1" + mmsport="80" + user="movistar" + password="movistar" + type="mms" + /> + + <apn carrier="IMS" + mcc="334" + mnc="030" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="wap.attmex.mx" + mcc="334" + mnc="050" + apn="wap.attmex.mx" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="334" + mnc="050" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="wap.attmex.mx" + mcc="334" + mnc="050" + apn="wap.attmex.mx" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + bearer_bitmask ="18" + /> + + <apn carrier="wap.attmex.mx" + mcc="334" + mnc="090" + apn="wap.attmex.mx" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="334" + mnc="090" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="wap.attmex.mx" + mcc="334" + mnc="090" + apn="wap.attmex.mx" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + bearer_bitmask ="18" + /> + + <apn carrier="Orange World" + mcc="340" + mnc="01" + apn="orangewap" + user="orange" + password="orange" + mmsc="http://193.251.160.246/servlets/mms" + mmsproxy="10.0.0.10" + mmsport="8082" + type="default,wap,mms" + /> + + <apn carrier="Onlywap-GPRS" + mcc="340" + mnc="02" + apn="onlywap" + user="only" + password="only" + proxy="10.2.85.50" + port="8080" + type="wap" + /> + + <apn carrier="Onlymms-GPRS" + mcc="340" + mnc="02" + apn="onlymms" + user="only" + password="only" + mmsc="http://10.2.85.50:8514" + mmsproxy="10.2.85.50" + mmsport="8080" + type="mms" + /> + + <apn carrier="Digicel WAP" + mcc="340" + mnc="20" + apn="wap.digicelfr.com" + user="wap" + password="wap" + proxy="172.20.6.12" + port="8080" + type="wap" + /> + + <apn carrier="Digicel MMS" + mcc="340" + mnc="20" + apn="wap.digicelfr.com" + user="wap" + password="wap" + mmsc="http://mmc.digiceltt.com/servlets/mms" + mmsproxy="172.20.6.12" + mmsport="9201" + type="mms" + /> + + <apn carrier="Orange World" + mcc="370" + mnc="01" + apn="orangeworld" + user="orange" + password="orange" + mmsc="http://mms.orange.com.do/servlets/mms" + mmsproxy="172.16.126.70" + mmsport="8080" + type="wap,mms" + /> + + <apn carrier="CLARO WEB" + mcc="370" + mnc="02" + apn="internet.ideasclaro.com.jm" + type="default,supl" + /> + + <apn carrier="CLARO WEB" + mcc="370" + mnc="20" + apn="internet.ideasclaro.com.jm" + type="default,supl" + /> + + <apn carrier="BeeLine Internet" + mcc="401" + mnc="01" + apn="wap.k-mobile" + user="@wap.k-mobile" + password="k-mobile" + type="default,supl" + /> + + <apn carrier="BeeLine MMS" + mcc="401" + mnc="01" + apn="mms.beeline.kz" + user="@mms.beeline" + password="beeline" + mmsc="http://mms.beeline.kz/mms/wapenc" + mmsproxy="172.27.6.93" + mmsport="8080" + type="mms" + /> + + <apn carrier="KCELL WAP" + mcc="401" + mnc="02" + apn="wap" + proxy="195.47.255.7" + port="8080" + type="wap" + /> + + <apn carrier="KCELL MMS" + mcc="401" + mnc="02" + apn="mms" + mmsc="http://mms.kcell.kz/post" + mmsproxy="195.47.255.7" + mmsport="8080" + type="mms" + /> + + <apn carrier="NEO WAP" + mcc="401" + mnc="77" + apn="wap" + proxy="10.1.26.10" + port="8080" + type="wap" + /> + + <apn carrier="NEO MMS" + mcc="401" + mnc="77" + apn="mms" + mmsc="http://mms.neogsm.kz/mms/wapenc" + mmsproxy="10.1.26.10" + mmsport="8080" + type="mms" + /> + + <apn carrier="TATA Indicom" + mcc="404" + mnc="00" + apn="internet" + user="wapuser" + password="wapuser" + type="default,supl" + /> + + <apn carrier="RCOM CDMA" + mcc="404" + mnc="00" + apn="#777" + user="net" + password="net" + type="default,supl" + /> + + <apn carrier="Vodafone Connect" + mcc="404" + mnc="01" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Live" + mcc="404" + mnc="01" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="01" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="404" + mnc="01" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone MMS" + mcc="404" + mnc="01" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel" + mcc="404" + mnc="02" + apn="airtelgprs.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live" + mcc="404" + mnc="02" + apn="airtelfun.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel MMS" + mcc="404" + mnc="02" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="02" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel" + mcc="404" + mnc="03" + apn="airtelgprs.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live" + mcc="404" + mnc="03" + apn="airtelfun.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel MMS" + mcc="404" + mnc="03" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="03" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="404" + mnc="04" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="404" + mnc="04" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="04" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone" + mcc="404" + mnc="05" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Live!" + mcc="404" + mnc="05" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone MMS" + mcc="404" + mnc="05" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="05" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="404" + mnc="05" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live!" + mcc="404" + mnc="06" + apn="airtelgprs.com" + type="default,supl" + /> + + <apn carrier="Airtel MMS" + mcc="404" + mnc="06" + apn="airtelmms.com" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + /> + + <apn carrier="Internet" + mcc="404" + mnc="07" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="404" + mnc="07" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="404" + mnc="07" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Reliance RTel MMS" + mcc="404" + mnc="09" + apn="MMS" + mmsc="http://10.239.221.47/mms/" + mmsproxy="10.239.221.7" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RTel" + mcc="404" + mnc="09" + apn="SMARTNET" + type="default,supl" + /> + <apn carrier="Airtel" + mcc="404" + mnc="10" + apn="airtelgprs.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live" + mcc="404" + mnc="10" + apn="airtelfun.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel MMS" + mcc="404" + mnc="10" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="10" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Connect" + mcc="404" + mnc="11" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Live" + mcc="404" + mnc="11" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone MMS" + mcc="404" + mnc="11" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="11" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="404" + mnc="11" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="404" + mnc="12" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="404" + mnc="12" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="404" + mnc="12" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone internet" + mcc="404" + mnc="13" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone live" + mcc="404" + mnc="13" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone_MMS" + mcc="404" + mnc="13" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="13" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="404" + mnc="13" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="404" + mnc="14" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="404" + mnc="14" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="404" + mnc="14" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Connect" + mcc="404" + mnc="15" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Live" + mcc="404" + mnc="15" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone MMS" + mcc="404" + mnc="15" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="15" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="404" + mnc="15" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel" + mcc="404" + mnc="16" + apn="airtelgprs.com" + type="default,supl" + /> + + <apn carrier="Airtel MMS" + mcc="404" + mnc="16" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + /> + + <apn carrier="IMS" + mcc="404" + mnc="16" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="AIRCEL NE MMS" + mcc="404" + mnc="17" + apn="aircelmms" + mmsc="http://10.50.1.166/servlets/mms" + mmsproxy="172.17.83.69" + mmsport="8080" + type="mms" + /> + + <apn carrier="AIRCEL NE" + mcc="404" + mnc="17" + apn="aircelwebpost" + type="default,supl" + /> + + <apn carrier="Reliance RTel MMS" + mcc="404" + mnc="18" + apn="MMS" + mmsc="http://10.239.221.47/mms/" + mmsproxy="10.239.221.7" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RTel" + mcc="404" + mnc="18" + apn="SMARTNET" + type="default,supl" + /> + + <apn carrier="Internet" + mcc="404" + mnc="19" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="404" + mnc="19" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="404" + mnc="19" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone" + mcc="404" + mnc="20" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Live!" + mcc="404" + mnc="20" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone MMS" + mcc="404" + mnc="20" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="20" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="404" + mnc="20" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Loop Mobile" + mcc="404" + mnc="21" + apn="www" + type="default,supl" + /> + + <apn carrier="Loop Mobile MMS" + mcc="404" + mnc="21" + apn="mizone" + password="mmsc" + mmsc="http://mms.loopmobile.in:8080" + mmsproxy="10.0.0.10" + mmsport="9401" + type="mms" + /> + + <apn carrier="Internet" + mcc="404" + mnc="22" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="404" + mnc="22" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="404" + mnc="22" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="404" + mnc="24" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="404" + mnc="24" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="404" + mnc="24" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="AIRCEL NE MMS" + mcc="404" + mnc="25" + apn="aircelmms" + mmsc="http://10.50.1.166/servlets/mms" + mmsproxy="172.17.83.69" + mmsport="8080" + type="mms" + /> + + <apn carrier="AIRCEL NE" + mcc="404" + mnc="25" + apn="aircelwebpost" + type="default,supl" + /> + + <apn carrier="Vodafone Connect" + mcc="404" + mnc="27" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Live" + mcc="404" + mnc="27" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone MMS" + mcc="404" + mnc="27" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="27" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="404" + mnc="27" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="AIRCEL NE MMS" + mcc="404" + mnc="28" + apn="aircelmms" + mmsc="http://10.50.1.166/servlets/mms" + mmsproxy="172.17.83.69" + mmsport="8080" + type="mms" + /> + + <apn carrier="AIRCEL NE" + mcc="404" + mnc="28" + apn="aircelwebpost" + type="default,supl" + /> + + <apn carrier="AIRCEL NE MMS" + mcc="404" + mnc="29" + apn="aircelmms" + mmsc="http://10.50.1.166/servlets/mms" + mmsproxy="172.17.83.69" + mmsport="8080" + type="mms" + /> + + <apn carrier="AIRCEL NE" + mcc="404" + mnc="29" + apn="aircelwebpost" + type="default,supl" + /> + + <apn carrier="Vodafone Connect" + mcc="404" + mnc="30" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Live" + mcc="404" + mnc="30" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone MMS" + mcc="404" + mnc="30" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="30" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="404" + mnc="30" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel" + mcc="404" + mnc="31" + apn="airtelgprs.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live" + mcc="404" + mnc="31" + apn="airtelfun.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel MMS" + mcc="404" + mnc="31" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="31" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="AIRCEL NE MMS" + mcc="404" + mnc="33" + apn="aircelmms" + mmsc="http://10.50.1.166/servlets/mms" + mmsproxy="172.17.83.69" + mmsport="8080" + type="mms" + /> + + <apn carrier="AIRCEL NE" + mcc="404" + mnc="33" + apn="aircelwebpost" + type="default,supl" + /> + + <apn carrier="Cellone_North MMS" + mcc="404" + mnc="34" + apn="bsnlmms" + mmsc="http://bsnlmmsc.in" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="Cellone_North" + mcc="404" + mnc="34" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="AIRCEL NE MMS" + mcc="404" + mnc="35" + apn="aircelmms" + mmsc="http://10.50.1.166/servlets/mms" + mmsproxy="172.17.83.69" + mmsport="8080" + type="mms" + /> + + <apn carrier="AIRCEL NE" + mcc="404" + mnc="35" + apn="aircelwebpost" + type="default,supl" + /> + + <apn carrier="Reliance RTel MMS" + mcc="404" + mnc="36" + apn="MMS" + mmsc="http://10.239.221.47/mms/" + mmsproxy="10.239.221.7" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RTel" + mcc="404" + mnc="36" + apn="SMARTNET" + type="default,supl" + /> + + <apn carrier="AIRCEL NE MMS" + mcc="404" + mnc="37" + apn="aircelmms" + mmsc="http://10.50.1.166/servlets/mms" + mmsproxy="172.17.83.69" + mmsport="8080" + type="mms" + /> + + <apn carrier="AIRCEL NE" + mcc="404" + mnc="37" + apn="aircelwebpost" + type="default,supl" + /> + + <apn carrier="CellOne_Kolkata MMS" + mcc="404" + mnc="38" + apn="bsnlmms" + mmsc="http://bsnlmmsc.in:8514" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="CellOne_Kolkata" + mcc="404" + mnc="38" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="Airtel" + mcc="404" + mnc="40" + apn="airtelgprs.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live" + mcc="404" + mnc="40" + apn="airtelfun.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel MMS" + mcc="404" + mnc="40" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="40" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="AIRCEL TN" + mcc="404" + mnc="41" + apn="aircelgprs.po" + type="default,supl" + /> + + <apn carrier="AIRCEL TN MMS" + mcc="404" + mnc="41" + apn="aircelmms.po" + mmsc="http://mmsc/mmrelay.app" + mmsproxy="192.168.35.196" + mmsport="8081" + type="mms" + /> + + <apn carrier="AIRCEL TN" + mcc="404" + mnc="42" + apn="aircelgprs.po" + type="default,supl" + /> + + <apn carrier="AIRCEL TN MMS" + mcc="404" + mnc="42" + apn="aircelmms.po" + mmsc="http://mmsc/mmrelay.app" + mmsproxy="192.168.35.196" + mmsport="8081" + type="mms" + /> + + <apn carrier="Vodafone Connect" + mcc="404" + mnc="43" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Live" + mcc="404" + mnc="43" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone MMS" + mcc="404" + mnc="43" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="43" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="404" + mnc="43" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="404" + mnc="44" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="404" + mnc="44" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="404" + mnc="44" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel" + mcc="404" + mnc="45" + apn="airtelgprs.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live" + mcc="404" + mnc="45" + apn="airtelfun.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel MMS" + mcc="404" + mnc="45" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="45" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Connect" + mcc="404" + mnc="46" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Live" + mcc="404" + mnc="46" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone MMS" + mcc="404" + mnc="46" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="46" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="404" + mnc="46" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel" + mcc="404" + mnc="49" + apn="airtelgprs.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live" + mcc="404" + mnc="49" + apn="airtelfun.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel MMS" + mcc="404" + mnc="49" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="49" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Reliance RTel MMS" + mcc="404" + mnc="50" + apn="MMS" + mmsc="http://10.239.221.47/mms/" + mmsproxy="10.239.221.7" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RTel" + mcc="404" + mnc="50" + apn="SMARTNET" + type="default,supl" + /> + + <apn carrier="Cellone_North MMS" + mcc="404" + mnc="51" + apn="bsnlmms" + mmsc="http://bsnlmmsc.in" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="Cellone_North" + mcc="404" + mnc="51" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="Reliance RTel MMS" + mcc="404" + mnc="52" + apn="MMS" + mmsc="http://10.239.221.47/mms/" + mmsproxy="10.239.221.7" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RTel" + mcc="404" + mnc="52" + apn="SMARTNET" + type="default,supl" + /> + + <apn carrier="Cellone_North MMS" + mcc="404" + mnc="53" + apn="bsnlmms" + mmsc="http://bsnlmmsc.in" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="Cellone_North" + mcc="404" + mnc="53" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="Cellone_North MMS" + mcc="404" + mnc="54" + apn="bsnlmms" + mmsc="http://bsnlmmsc.in" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="Cellone_North" + mcc="404" + mnc="54" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="Cellone_North MMS" + mcc="404" + mnc="55" + apn="bsnlmms" + mmsc="http://bsnlmmsc.in" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="Cellone_North" + mcc="404" + mnc="55" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="Internet" + mcc="404" + mnc="56" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="404" + mnc="56" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="404" + mnc="56" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Cellone_West MMS" + mcc="404" + mnc="57" + apn="bsnlmms" + mmsc="http://bsnlmmsc.in" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="Cellone_West" + mcc="404" + mnc="57" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="Cellone_West MMS" + mcc="404" + mnc="58" + apn="bsnlmms" + mmsc="http://bsnlmmsc.in" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="Cellone_West" + mcc="404" + mnc="58" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="Cellone_North MMS" + mcc="404" + mnc="59" + apn="bsnlmms" + mmsc="http://bsnlmmsc.in" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="Cellone_North" + mcc="404" + mnc="59" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="Vodafone internet" + mcc="404" + mnc="60" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone live" + mcc="404" + mnc="60" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone_MMS" + mcc="404" + mnc="60" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="60" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="404" + mnc="60" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Cellone_North MMS" + mcc="404" + mnc="62" + apn="bsnlmms" + mmsc="http://bsnlmmsc.in" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="Cellone_North" + mcc="404" + mnc="62" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="CellOne_South MMS" + mcc="404" + mnc="64" + apn="bsnlmms" + password="mmsc" + mmsc="http://bsnlmmsc.in:8514" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="CellOne_South" + mcc="404" + mnc="64" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="Cellone_West MMS" + mcc="404" + mnc="66" + apn="bsnlmms" + mmsc="http://bsnlmmsc.in" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="Cellone_West" + mcc="404" + mnc="66" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="Reliance RTel MMS" + mcc="404" + mnc="67" + apn="MMS" + mmsc="http://10.239.221.47/mms/" + mmsproxy="10.239.221.7" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RTel" + mcc="404" + mnc="67" + apn="SMARTNET" + type="default,supl" + /> + + <apn carrier="Dolphin_Delhi MMS" + mcc="404" + mnc="68" + apn="gprsmtnldel" + user="mtnl" + password="mtnl123" + mmsc="http://172.16.31.136/mms/" + mmsproxy="172.16.31.10" + mmsport="9401" + type="mms" + /> + + <apn carrier="MTNL prepaid" + mcc="404" + mnc="68" + apn="gprsppsdel" + user="mtnl" + password="mtnl123" + mmsc="http://172.16.31.136/mms/" + mmsproxy="172.16.31.10" + mmsport="9401" + type="mms" + /> + + <apn carrier="Dolphin_Delhi" + mcc="404" + mnc="68" + apn="mtnl.net" + user="mtnl" + password="mtnl123" + type="default,supl" + /> + + <apn carrier="Dolphin_Delhi_3G MMS" + mcc="404" + mnc="68" + apn="mtnl3g" + user="mtnl" + password="mtnl123" + mmsc="http://172.16.31.165/mms/" + mmsproxy="172.16.31.10" + mmsport="9401" + type="mms" + /> + + <apn carrier="Dolphin_Delhi_3G" + mcc="404" + mnc="68" + apn="mtnl3g" + user="mtnl" + password="mtnl123" + type="default,supl" + /> + + <apn carrier="Dolphin_Mumbai MMS" + mcc="404" + mnc="69" + apn="mtnl.net" + mmsc="http://mtnlmms/" + mmsproxy="10.10.10.10" + mmsport="9401" + type="mms" + /> + + <apn carrier="Dolphin_Mumbai" + mcc="404" + mnc="69" + apn="mtnl.net" + type="default,supl" + mmsc="http://wap.mtnl.in" + proxy="http://10.10.10.10" + port="9401" + /> + + <apn carrier="Dolphin_Mumbai_3G" + mcc="404" + mnc="69" + apn="mtnl.net" + type="default,supl" + /> + + <apn carrier="Airtel" + mcc="404" + mnc="70" + apn="airtelgprs.com" + type="default,supl" + /> + + <apn carrier="Airtel MMS" + mcc="404" + mnc="70" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + /> + + <apn carrier="IMS" + mcc="404" + mnc="70" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="CellOne_South MMS" + mcc="404" + mnc="71" + apn="bsnlmms" + password="mmsc" + mmsc="http://bsnlmmsc.in:8514" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="CellOne_South" + mcc="404" + mnc="71" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="CellOne_South MMS" + mcc="404" + mnc="72" + apn="bsnlmms" + password="mmsc" + mmsc="http://bsnlmmsc.in:8514" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="CellOne_South" + mcc="404" + mnc="72" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="CellOne_South MMS" + mcc="404" + mnc="73" + apn="bsnlmms" + password="mmsc" + mmsc="http://bsnlmmsc.in:8514" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="CellOne_South" + mcc="404" + mnc="73" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="CellOne_Kolkata MMS" + mcc="404" + mnc="74" + apn="bsnlmms" + mmsc="http://bsnlmmsc.in:8514" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="CellOne_Kolkata" + mcc="404" + mnc="74" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="CellOne_Kolkata MMS" + mcc="404" + mnc="75" + apn="bsnlmms" + mmsc="http://bsnlmmsc.in:8514" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="CellOne_Kolkata" + mcc="404" + mnc="75" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="CellOne_Kolkata MMS" + mcc="404" + mnc="76" + apn="bsnlmms" + mmsc="http://bsnlmmsc.in:8514" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="CellOne_Kolkata" + mcc="404" + mnc="76" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="CellOne_Kolkata MMS" + mcc="404" + mnc="77" + apn="bsnlmms" + mmsc="http://bsnlmmsc.in:8514" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="CellOne_Kolkata" + mcc="404" + mnc="77" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="Internet" + mcc="404" + mnc="78" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="404" + mnc="78" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="404" + mnc="78" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="CellOne_South MMS" + mcc="404" + mnc="79" + apn="bsnlmms" + password="mmsc" + mmsc="http://bsnlmmsc.in:8514" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="CellOne_South" + mcc="404" + mnc="79" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="CellOne_South MMS" + mcc="404" + mnc="80" + apn="bsnlmms" + password="mmsc" + mmsc="http://bsnlmmsc.in:8514" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="CellOne_South" + mcc="404" + mnc="80" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="CellOne_Kolkata MMS" + mcc="404" + mnc="81" + apn="bsnlmms" + mmsc="http://bsnlmmsc.in:8514" + mmsproxy="10.210.10.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="CellOne_Kolkata" + mcc="404" + mnc="81" + apn="bsnlnet" + type="default,supl" + /> + + <apn carrier="Internet" + mcc="404" + mnc="82" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="404" + mnc="82" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="404" + mnc="82" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Reliance RTel MMS" + mcc="404" + mnc="83" + apn="MMS" + mmsc="http://10.239.221.47/mms/" + mmsproxy="10.239.221.7" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RTel" + mcc="404" + mnc="83" + apn="SMARTNET" + type="default,supl" + /> + + <apn carrier="Vodafone connect" + mcc="404" + mnc="84" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone live" + mcc="404" + mnc="84" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone_MMS" + mcc="404" + mnc="84" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="84" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="404" + mnc="84" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Reliance RTel MMS" + mcc="404" + mnc="85" + apn="MMS" + mmsc="http://10.239.221.47/mms/" + mmsproxy="10.239.221.7" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RTel" + mcc="404" + mnc="85" + apn="SMARTNET" + type="default,supl" + /> + + <apn carrier="Vodafone internet" + mcc="404" + mnc="86" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone live" + mcc="404" + mnc="86" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone_MMS" + mcc="404" + mnc="86" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="86" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="404" + mnc="86" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="404" + mnc="87" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="404" + mnc="87" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="404" + mnc="87" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Connect" + mcc="404" + mnc="88" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Live" + mcc="404" + mnc="88" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone MMS" + mcc="404" + mnc="88" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="88" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="404" + mnc="88" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="404" + mnc="89" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="404" + mnc="89" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="404" + mnc="89" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel" + mcc="404" + mnc="90" + apn="airtelgprs.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live" + mcc="404" + mnc="90" + apn="airtelfun.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel MMS" + mcc="404" + mnc="90" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="90" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="AIRCEL NE MMS" + mcc="404" + mnc="91" + apn="aircelmms" + mmsc="http://10.50.1.166/servlets/mms" + mmsproxy="172.17.83.69" + mmsport="8080" + type="mms" + /> + + <apn carrier="AIRCEL NE" + mcc="404" + mnc="91" + apn="aircelwebpost" + type="default,supl" + /> + + <apn carrier="Airtel" + mcc="404" + mnc="92" + apn="airtelgprs.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live" + mcc="404" + mnc="92" + apn="airtelfun.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel MMS" + mcc="404" + mnc="92" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="92" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel" + mcc="404" + mnc="93" + apn="airtelgprs.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live" + mcc="404" + mnc="93" + apn="airtelfun.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel MMS" + mcc="404" + mnc="93" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="93" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel" + mcc="404" + mnc="94" + apn="airtelgprs.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live" + mcc="404" + mnc="94" + apn="airtelfun.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel MMS" + mcc="404" + mnc="94" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="94" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel" + mcc="404" + mnc="95" + apn="airtelgprs.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live" + mcc="404" + mnc="95" + apn="airtelfun.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel MMS" + mcc="404" + mnc="95" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="95" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel" + mcc="404" + mnc="96" + apn="airtelgprs.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live" + mcc="404" + mnc="96" + apn="airtelfun.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel MMS" + mcc="404" + mnc="96" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="96" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel" + mcc="404" + mnc="97" + apn="airtelgprs.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live" + mcc="404" + mnc="97" + apn="airtelfun.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel MMS" + mcc="404" + mnc="97" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="97" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel" + mcc="404" + mnc="98" + apn="airtelgprs.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live" + mcc="404" + mnc="98" + apn="airtelfun.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel MMS" + mcc="404" + mnc="98" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="404" + mnc="98" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Reliance RCOM MMS" + mcc="405" + mnc="01" + apn="rcommms" + mmsc="http://mmsc.rcom.co.in/mms/" + mmsproxy="10.239.221.5" + mmsport="8080" + type="mms" + /> + <apn carrier="Reliance RCOM" + mcc="405" + mnc="01" + apn="rcomnet" + type="default,supl" + /> +<apn carrier="Reliance RCOM MMS" + mcc="405" + mnc="03" + apn="rcommms" + mmsc="http://mmsc.rcom.co.in/mms/" + mmsproxy="10.239.221.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RCOM" + mcc="405" + mnc="03" + apn="rcomnet" + type="default,supl" + /> + <apn carrier="Reliance RCOM MMS" + mcc="405" + mnc="04" + apn="rcommms" + mmsc="http://mmsc.rcom.co.in/mms/" + mmsproxy="10.239.221.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RCOM" + mcc="405" + mnc="04" + apn="rcomnet" + type="default,supl" + /> + <apn carrier="Reliance" + mcc="405" + mnc="05" + apn="rcomnet" + type="default,supl" + /> + + <apn carrier="Reliance MMS" + mcc="405" + mnc="05" + apn="rcommms" + mmsc="http://mmsc.rcom.co.in/mms/" + mmsproxy="10.239.221.5" + mmsport="8080" + type="mms" + /> + <apn carrier="Reliance RCOM MMS" + mcc="405" + mnc="06" + apn="rcommms" + mmsc="http://mmsc.rcom.co.in/mms/" + mmsproxy="10.239.221.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RCOM" + mcc="405" + mnc="06" + apn="rcomnet" + type="default,supl" + /> + <apn carrier="Reliance RCOM MMS" + mcc="405" + mnc="07" + apn="rcommms" + mmsc="http://mmsc.rcom.co.in/mms/" + mmsproxy="10.239.221.5" + mmsport="8080" + type="mms" + /> + <apn carrier="Reliance RCOM" + mcc="405" + mnc="07" + apn="rcomnet" + type="default,supl" + /> + <apn carrier="Reliance RCOM MMS" + mcc="405" + mnc="08" + apn="rcommms" + mmsc="http://mmsc.rcom.co.in/mms/" + mmsproxy="10.239.221.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RCOM" + mcc="405" + mnc="08" + apn="rcomnet" + type="default,supl" + /> + <apn carrier="Reliance RCOM MMS" + mcc="405" + mnc="09" + apn="rcommms" + mmsc="http://mmsc.rcom.co.in/mms/" + mmsproxy="10.239.221.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RCOM" + mcc="405" + mnc="09" + apn="rcomnet" + type="default,supl" + /> +<apn carrier="Reliance RCOM MMS" + mcc="405" + mnc="10" + apn="rcommms" + mmsc="http://mmsc.rcom.co.in/mms/" + mmsproxy="10.239.221.5" + mmsport="8080" + type="mms" + /> + <apn carrier="Reliance RCOM" + mcc="405" + mnc="10" + apn="rcomnet" + type="default,supl" + /> + <apn carrier="Reliance RCOM MMS" + mcc="405" + mnc="11" + apn="rcommms" + mmsc="http://mmsc.rcom.co.in/mms/" + mmsproxy="10.239.221.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RCOM" + mcc="405" + mnc="11" + apn="rcomnet" + type="default,supl" + /> + <apn carrier="Reliance RCOM MMS" + mcc="405" + mnc="12" + apn="rcommms" + mmsc="http://mmsc.rcom.co.in/mms/" + mmsproxy="10.239.221.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RCOM" + mcc="405" + mnc="12" + apn="rcomnet" + type="default,supl" + /> + <apn carrier="Reliance RCOM MMS" + mcc="405" + mnc="13" + apn="rcommms" + mmsc="http://mmsc.rcom.co.in/mms/" + mmsproxy="10.239.221.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RCOM" + mcc="405" + mnc="13" + apn="rcomnet" + type="default,supl" + /> + + <apn carrier="Reliance RCOM MMS" + mcc="405" + mnc="14" + apn="rcommms" + mmsc="http://mmsc.rcom.co.in/mms/" + mmsproxy="10.239.221.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RCOM" + mcc="405" + mnc="14" + apn="rcomnet" + type="default,supl" + /> + + <apn carrier="Reliance RCOM MMS" + mcc="405" + mnc="15" + apn="rcommms" + mmsc="http://mmsc.rcom.co.in/mms/" + mmsproxy="10.239.221.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RCOM" + mcc="405" + mnc="15" + apn="rcomnet" + type="default,supl" + /> + + <apn carrier="Reliance RCOM MMS" + mcc="405" + mnc="17" + apn="rcommms" + mmsc="http://mmsc.rcom.co.in/mms/" + mmsproxy="10.239.221.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RCOM" + mcc="405" + mnc="17" + apn="rcomnet" + type="default,supl" + /> + + <apn carrier="Reliance RCOM MMS" + mcc="405" + mnc="18" + apn="rcommms" + mmsc="http://mmsc.rcom.co.in/mms/" + mmsproxy="10.239.221.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RCOM" + mcc="405" + mnc="18" + apn="rcomnet" + type="default,supl" + /> + + <apn carrier="Reliance RCOM MMS" + mcc="405" + mnc="19" + apn="rcommms" + mmsc="http://mmsc.rcom.co.in/mms/" + mmsproxy="10.239.221.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RCOM" + mcc="405" + mnc="19" + apn="rcomnet" + type="default,supl" + /> + + <apn carrier="Reliance RCOM MMS" + mcc="405" + mnc="20" + apn="rcommms" + mmsc="http://mmsc.rcom.co.in/mms/" + mmsproxy="10.239.221.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RCOM" + mcc="405" + mnc="20" + apn="rcomnet" + type="default,supl" + /> + + <apn carrier="Reliance RCOM MMS" + mcc="405" + mnc="21" + apn="rcommms" + mmsc="http://mmsc.rcom.co.in/mms/" + mmsproxy="10.239.221.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RCOM" + mcc="405" + mnc="21" + apn="rcomnet" + type="default,supl" + /> + + <apn carrier="Reliance RCOM MMS" + mcc="405" + mnc="22" + apn="rcommms" + mmsc="http://mmsc.rcom.co.in/mms/" + mmsproxy="10.239.221.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RCOM" + mcc="405" + mnc="22" + apn="rcomnet" + type="default,supl" + /> + + <apn carrier="Reliance RCOM MMS" + mcc="405" + mnc="23" + apn="rcommms" + mmsc="http://mmsc.rcom.co.in/mms/" + mmsproxy="10.239.221.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="Reliance RCOM" + mcc="405" + mnc="23" + apn="rcomnet" + type="default,supl" + /> + + <apn carrier="TataDOCOMO" + mcc="405" + mnc="025" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="TataDOCOMO MMS" + mcc="405" + mnc="025" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> + + <apn carrier="TATA DOCOMO INTERNET" + mcc="405" + mnc="025" + apn="Tata.Docomo.internet" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="default,supl,mms" + protocol="IP" + /> + + <apn carrier="TataDOCOMO" + mcc="405" + mnc="026" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="TataDOCOMO MMS" + mcc="405" + mnc="026" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> + + <apn carrier="TataDOCOMO" + mcc="405" + mnc="027" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="TataDOCOMO MMS" + mcc="405" + mnc="027" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> + + <apn carrier="TataDOCOMO" + mcc="405" + mnc="028" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="TataDOCOMO MMS" + mcc="405" + mnc="028" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> + + <apn carrier="TataDOCOMO" + mcc="405" + mnc="029" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="TataDOCOMO MMS" + mcc="405" + mnc="029" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> + <apn carrier="TataDOCOMO" + mcc="405" + mnc="030" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="TataDOCOMO DIVE-IN" + mcc="405" + mnc="030" + apn="TATA.DOCOMO.DIVE.IN" + proxy="10.124.94.7" + port="8080" + type="default,supl" + /> + + <apn carrier="TataDOCOMO MMS" + mcc="405" + mnc="030" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> +<apn carrier="TataDOCOMO" + mcc="405" + mnc="031" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="TataDOCOMO MMS" + mcc="405" + mnc="031" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> + + <apn carrier="TataDOCOMO" + mcc="405" + mnc="032" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="TataDOCOMO MMS" + mcc="405" + mnc="032" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> + + <apn carrier="TataDOCOMO" + mcc="405" + mnc="033" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="TataDOCOMO MMS" + mcc="405" + mnc="033" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> + <apn carrier="TATA DoCoMo" + mcc="405" + mnc="034" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + +<apn carrier="TATA DoCoMo MMS" + mcc="405" + mnc="034" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" +/> + +<apn carrier="TataDOCOMO" + mcc="405" + mnc="035" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="TataDOCOMO MMS" + mcc="405" + mnc="035" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> + <apn carrier="TataDOCOMO" + mcc="405" + mnc="036" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="TataDOCOMO MMS" + mcc="405" + mnc="036" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> +<apn carrier="TataDOCOMO" + mcc="405" + mnc="037" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="TataDOCOMO MMS" + mcc="405" + mnc="037" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> +<apn carrier="TataDOCOMO" + mcc="405" + mnc="038" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="TataDOCOMO MMS" + mcc="405" + mnc="038" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> + + <apn carrier="TATA DOCOMO INTERNET" + mcc="405" + mnc="039" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + protocol="IPV4V6" + /> + + <apn carrier="TATA DOCOMO MMS" + mcc="405" + mnc="039" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + protocol="IPV4V6" + /> + + <apn carrier="TataDOCOMO" + mcc="405" + mnc="040" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="TataDOCOMO MMS" + mcc="405" + mnc="040" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> + + <apn carrier="TataDOCOMO" + mcc="405" + mnc="041" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="TataDOCOMO MMS" + mcc="405" + mnc="041" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> + + <apn carrier="TataDOCOMO" + mcc="405" + mnc="042" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="TataDOCOMO MMS" + mcc="405" + mnc="042" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> + + <apn carrier="TataDOCOMO" + mcc="405" + mnc="043" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="TataDOCOMO MMS" + mcc="405" + mnc="043" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> + + <apn carrier="Tata DOCOMO" + mcc="405" + mnc="044" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="Tata DOCOMO MMS" + mcc="405" + mnc="044" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> + + <apn carrier="TataDOCOMO" + mcc="405" + mnc="44" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="TataDOCOMO MMS" + mcc="405" + mnc="44" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> + + <apn carrier="TataDOCOMO" + mcc="405" + mnc="045" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="TataDOCOMO MMS" + mcc="405" + mnc="045" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> + + <apn carrier="TataDOCOMO" + mcc="405" + mnc="046" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="TataDOCOMO MMS" + mcc="405" + mnc="046" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> + + <apn carrier="TataDOCOMO" + mcc="405" + mnc="047" + apn="TATA.DOCOMO.INTERNET" + type="default,supl" + /> + + <apn carrier="TataDOCOMO MMS" + mcc="405" + mnc="047" + apn="TATA.DOCOMO.MMS" + mmsc="http://mmsc/" + mmsproxy="10.124.26.94" + mmsport="8799" + type="mms" + /> + +<apn carrier="Airtel" + mcc="405" + mnc="51" + apn="airtelgprs.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live" + mcc="405" + mnc="51" + apn="airtelfun.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel MMS" + mcc="405" + mnc="51" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="405" + mnc="51" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel" + mcc="405" + mnc="52" + apn="airtelgprs.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live" + mcc="405" + mnc="52" + apn="airtelfun.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel MMS" + mcc="405" + mnc="52" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="405" + mnc="52" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel" + mcc="405" + mnc="53" + apn="airtelgprs.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live" + mcc="405" + mnc="53" + apn="airtelfun.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel MMS" + mcc="405" + mnc="53" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="405" + mnc="53" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel" + mcc="405" + mnc="54" + apn="airtelgprs.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live" + mcc="405" + mnc="54" + apn="airtelfun.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel MMS" + mcc="405" + mnc="54" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="405" + mnc="54" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel" + mcc="405" + mnc="55" + apn="airtelgprs.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live" + mcc="405" + mnc="55" + apn="airtelfun.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel MMS" + mcc="405" + mnc="55" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="405" + mnc="55" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel" + mcc="405" + mnc="56" + apn="airtelgprs.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel Live" + mcc="405" + mnc="56" + apn="airtelfun.com" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Airtel MMS" + mcc="405" + mnc="56" + apn="airtelmms.com" + mmsc="http://100.1.201.171:10021/mmsc" + mmsproxy="100.1.201.172" + mmsport="8799" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="405" + mnc="56" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Connect" + mcc="405" + mnc="66" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Live" + mcc="405" + mnc="66" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + +<apn carrier="Vodafone MMS" + mcc="405" + mnc="66" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="405" + mnc="66" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="405" + mnc="66" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Connect" + mcc="405" + mnc="67" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Live" + mcc="405" + mnc="67" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone MMS" + mcc="405" + mnc="67" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="405" + mnc="67" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="405" + mnc="67" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="405" + mnc="70" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="405" + mnc="70" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="405" + mnc="70" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="MTS internet" + mcc="405" + mnc="89" + apn="#777" + user="internet@internet.mtsindia.in" + password="MTS" + type="default,supl" + /> + + <apn carrier="Vodafone Connect" + mcc="405" + mnc="750" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Live" + mcc="405" + mnc="750" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="405" + mnc="750" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="405" + mnc="750" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone MMS" + mcc="405" + mnc="750" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Connect" + mcc="405" + mnc="751" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Live" + mcc="405" + mnc="751" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone MMS" + mcc="405" + mnc="751" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="405" + mnc="751" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="405" + mnc="751" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Connect" + mcc="405" + mnc="752" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Live" + mcc="405" + mnc="752" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone MMS" + mcc="405" + mnc="752" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="405" + mnc="752" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="405" + mnc="752" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Connect" + mcc="405" + mnc="753" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Live" + mcc="405" + mnc="753" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone MMS" + mcc="405" + mnc="753" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="405" + mnc="753" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="405" + mnc="753" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Connect" + mcc="405" + mnc="754" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Live!" + mcc="405" + mnc="754" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone MMS" + mcc="405" + mnc="754" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="405" + mnc="754" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="405" + mnc="754" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Connect" + mcc="405" + mnc="755" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Live" + mcc="405" + mnc="755" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone MMS" + mcc="405" + mnc="755" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="405" + mnc="755" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="405" + mnc="755" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Connect" + mcc="405" + mnc="756" + apn="www" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone Live" + mcc="405" + mnc="756" + apn="portalnmms" + proxy="10.10.1.100" + port="9401" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone MMS" + mcc="405" + mnc="756" + apn="portalnmms" + mmsc="http://mms1.live.vodafone.in/mms/" + mmsproxy="10.10.1.100" + mmsport="9401" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="405" + mnc="756" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="hos" + mcc="405" + mnc="756" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="405" + mnc="799" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="405" + mnc="799" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="405" + mnc="799" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="AIRCEL" + mcc="405" + mnc="800" + apn="aircelgprs" + type="default,supl" + /> + + <apn carrier="AIRCEL WAP" + mcc="405" + mnc="800" + apn="aircelwap" + proxy="172.17.83.69" + port="8080" + type="default,supl" + /> + + <apn carrier="AIRCEL MMS" + mcc="405" + mnc="800" + apn="aircelmms" + mmsc="http://172.17.83.67/servlets/mms" + mmsproxy="172.17.83.69" + mmsport="8080" + type="mms" + /> + <apn carrier="AIRCEL South" + mcc="405" + mnc="801" + apn="aircelgprs" + type="default,supl" + /> + + <apn carrier="AIRCEL South MMS" + mcc="405" + mnc="801" + apn="aircelmms" + mmsc="http://mmsc/mmrelay.app" + mmsproxy="192.168.35.196" + mmsport="8081" + type="mms" + /> + + <apn carrier="AIRCEL Central" + mcc="405" + mnc="802" + apn="aircelgprs" + type="default,supl" + /> + + <apn carrier="AIRCEL Central MMS" + mcc="405" + mnc="802" + apn="aircelmms" + mmsc="http://10.50.1.166/servlets/mms" + mmsproxy="172.17.83.69" + mmsport="8080" + type="mms" + /> + <apn carrier="AIRCEL" + mcc="405" + mnc="803" + apn="aircelgprs" + type="default,supl" + /> + + <apn carrier="AIRCEL MMS" + mcc="405" + mnc="803" + apn="aircelmms" + mmsc="http://mmsc/mmrelay.app" + mmsproxy="192.168.35.196" + mmsport="8081" + type="mms" + /> + <apn carrier="AIRCEL ROI" + mcc="405" + mnc="804" + apn="aircelgprs" + type="default,supl" + /> + + <apn carrier="AIRCEL ROI MMS" + mcc="405" + mnc="804" + apn="aircelmms" + mmsc="http://10.50.1.166/servlets/mms" + mmsproxy="172.17.83.69" + mmsport="8080" + type="mms" + /> + + <apn carrier="AIRCEL ROI" + mcc="405" + mnc="805" + apn="aircelgprs" + mmsc="http://myaircel.com" + proxy="0.0.0.0" + type="default,supl" + /> + + <apn carrier="AIRCEL ROI MMS" + mcc="405" + mnc="805" + apn="aircelmms" + mmsc="http://172.17.83.67/servlets/mms" + mmsproxy="172.17.83.69" + mmsport="8080" + type="mms" + /> + + <apn carrier="AIRCEL Central" + mcc="405" + mnc="806" + apn="aircelgprs" + type="default,supl" + /> + + <apn carrier="AIRCEL Central MMS" + mcc="405" + mnc="806" + apn="aircelmms" + mmsc="http://10.50.1.166/servlets/mms" + mmsproxy="172.17.83.69" + mmsport="8080" + type="mms" + /> + + <apn carrier="AIRCEL Central" + mcc="405" + mnc="807" + apn="aircelgprs" + type="default,supl" + /> + + <apn carrier="AIRCEL Central MMS" + mcc="405" + mnc="807" + apn="aircelmms" + mmsc="http://10.50.1.166/servlets/mms" + mmsproxy="172.17.83.69" + mmsport="8080" + type="mms" + /> + + <apn carrier="AIRCEL Central" + mcc="405" + mnc="808" + apn="aircelgprs" + type="default,supl" + /> + + <apn carrier="AIRCEL Central MMS" + mcc="405" + mnc="808" + apn="aircelmms" + mmsc="http://10.50.1.166/servlets/mms" + mmsproxy="172.17.83.69" + mmsport="8080" + type="mms" + /> + + <apn carrier="AIRCEL South" + mcc="405" + mnc="809" + apn="aircelgprs" + type="default,supl" + /> + + <apn carrier="AIRCEL South MMS" + mcc="405" + mnc="809" + apn="aircelmms" + mmsc="http://mmsc/mmrelay.app" + mmsproxy="192.168.35.196" + mmsport="8081" + type="mms" + /> + + <apn carrier="AIRCEL ROI" + mcc="405" + mnc="810" + apn="aircelgprs" + type="default,supl" + /> + + <apn carrier="AIRCEL ROI MMS" + mcc="405" + mnc="810" + apn="aircelmms" + mmsc="http://10.50.1.166/servlets/mms" + mmsproxy="172.17.83.69" + mmsport="8080" + type="mms" + /> + + <apn carrier="AIRCEL ROI" + mcc="405" + mnc="811" + apn="aircelgprs" + type="default,supl" + /> + + <apn carrier="AIRCEL ROI MMS" + mcc="405" + mnc="811" + apn="aircelmms" + mmsc="http://10.50.1.166/servlets/mms" + mmsproxy="172.17.83.69" + mmsport="8080" + type="mms" + /> + + <apn carrier="AIRCEL Central" + mcc="405" + mnc="812" + apn="aircelgprs" + type="default,supl" + /> + + <apn carrier="AIRCEL Central MMS" + mcc="405" + mnc="812" + apn="aircelmms" + mmsc="http://10.50.1.166/servlets/mms" + mmsproxy="172.17.83.69" + mmsport="8080" + type="mms" + /> + + <apn carrier="Uninor MMS" + mcc="405" + mnc="813" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="Uninor MMS" + mcc="405" + mnc="814" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="Uninor MMS" + mcc="405" + mnc="815" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="Uninor MMS" + mcc="405" + mnc="816" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="Uninor MMS" + mcc="405" + mnc="817" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="Uninor MMS" + mcc="405" + mnc="818" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="Uninor Internet" + mcc="405" + mnc="819" + apn="uninor" + authtype="1" + type="default,supl" + /> + + <apn carrier="Uninor Wap" + mcc="405" + mnc="819" + apn="uninor" + proxy="10.58.10.58" + port="8080" + type="default,supl" + /> + + <apn carrier="Uninor MMS" + mcc="405" + mnc="819" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="UNINOR WAP" + mcc="405" + mnc="820" + apn="uninor" + proxy="10.58.10.58" + port="8080" + type="wap" + /> + + <apn carrier="UNINOR Internet" + mcc="405" + mnc="820" + apn="uninor" + type="default,cmmail" + /> + + <apn carrier="UNINOR MMS" + mcc="405" + mnc="820" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + <apn carrier="Uninor MMS" + mcc="405" + mnc="821" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="Uninor MMS" + mcc="405" + mnc="822" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="823" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="823" + apn="vinternet.com" + type="default,supl" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="824" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="824" + apn="vinternet.com" + type="default,supl" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="825" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="825" + apn="vinternet.com" + type="default,supl" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="826" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="826" + apn="vinternet.com" + type="default,supl" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="827" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="827" + apn="vinternet.com" + type="default,supl" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="828" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="828" + apn="vinternet.com" + type="default,supl" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="829" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="829" + apn="vinternet.com" + type="default,supl" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="830" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="830" + apn="vinternet.com" + type="default,supl" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="831" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="831" + apn="vinternet.com" + type="default,supl" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="832" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="832" + apn="vinternet.com" + type="default,supl" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="833" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="833" + apn="vinternet.com" + type="default,supl" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="834" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="834" + apn="vinternet.com" + type="default,supl" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="835" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="835" + apn="vinternet.com" + type="default,supl" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="836" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="836" + apn="vinternet.com" + type="default,supl" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="837" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="837" + apn="vinternet.com" + type="default,supl" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="838" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="838" + apn="vinternet.com" + type="default,supl" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="839" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="839" + apn="vinternet.com" + type="default,supl" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="840" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="840" + apn="vinternet.com" + type="default,supl" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="840" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="840" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="841" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="841" + apn="vinternet.com" + type="default,supl" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="842" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="842" + apn="vinternet.com" + type="default,supl" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="843" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="843" + apn="vinternet.com" + type="default,supl" + /> + + <apn carrier="Uninor MMS" + mcc="405" + mnc="844" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="Internet" + mcc="405" + mnc="845" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="405" + mnc="845" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="405" + mnc="845" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="405" + mnc="846" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="405" + mnc="846" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="405" + mnc="846" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="405" + mnc="847" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="405" + mnc="847" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="405" + mnc="847" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="405" + mnc="848" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="405" + mnc="848" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="405" + mnc="848" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="405" + mnc="849" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="405" + mnc="849" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="405" + mnc="849" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="405" + mnc="850" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="405" + mnc="850" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="405" + mnc="850" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="405" + mnc="851" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="405" + mnc="851" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="405" + mnc="851" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="405" + mnc="852" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="405" + mnc="852" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="405" + mnc="852" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="405" + mnc="853" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="405" + mnc="853" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="405" + mnc="853" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="854" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="854" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="855" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="855" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="856" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="856" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="857" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="857" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="858" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="858" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="859" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="859" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="860" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="860" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="861" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="861" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="862" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="862" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="863" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="863" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="864" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="864" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="865" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="865" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="866" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="866" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="867" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="867" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="868" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="868" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="869" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="869" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="870" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="870" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="871" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="871" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="872" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="872" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="873" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="873" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Jionet" + mcc="405" + mnc="874" + apn="Jionet" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Ims" + mcc="405" + mnc="874" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Uninor Internet" + mcc="405" + mnc="875" + apn="uninor" + authtype="1" + type="default,supl" + /> + + <apn carrier="Uninor Wap" + mcc="405" + mnc="875" + apn="uninor" + proxy="10.58.10.58" + port="8080" + type="default,supl" + /> + + <apn carrier="Uninor MMS" + mcc="405" + mnc="875" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="Telenor Internet" + mcc="405" + mnc="876" + apn="telenor" + type="default" + /> + + <apn carrier="Uninor Wap" + mcc="405" + mnc="876" + apn="uninor" + proxy="10.58.10.58" + port="8080" + type="default,supl" + /> + + <apn carrier="Uninor MMS" + mcc="405" + mnc="876" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="Uninor Internet" + mcc="405" + mnc="877" + apn="uninor" + authtype="1" + type="default,supl" + /> + + <apn carrier="Uninor Wap" + mcc="405" + mnc="877" + apn="uninor" + proxy="10.58.10.58" + port="8080" + type="default,supl" + /> + + <apn carrier="Uninor MMS" + mcc="405" + mnc="877" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="Uninor Internet" + mcc="405" + mnc="878" + apn="uninor" + authtype="1" + type="default,supl" + /> + + <apn carrier="Uninor Wap" + mcc="405" + mnc="878" + apn="uninor" + proxy="10.58.10.58" + port="8080" + type="default,supl" + /> + + <apn carrier="Uninor MMS" + mcc="405" + mnc="878" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="Uninor Internet" + mcc="405" + mnc="879" + apn="uninor" + authtype="1" + type="default,supl" + /> + + <apn carrier="Uninor Wap" + mcc="405" + mnc="879" + apn="uninor" + proxy="10.58.10.58" + port="8080" + type="default,supl" + /> + + <apn carrier="Uninor MMS" + mcc="405" + mnc="879" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="Uninor Internet" + mcc="405" + mnc="880" + apn="uninor" + authtype="1" + type="default,supl" + /> + + <apn carrier="Uninor Wap" + mcc="405" + mnc="880" + apn="uninor" + proxy="10.58.10.58" + port="8080" + type="default,supl" + /> + + <apn carrier="Uninor MMS" + mcc="405" + mnc="880" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="STEL" + mcc="405" + mnc="881" + apn="gprs.stel.in" + type="default,supl" + /> + + <apn carrier="STEL" + mcc="405" + mnc="882" + apn="gprs.stel.in" + type="default,supl" + /> + + <apn carrier="STEL" + mcc="405" + mnc="883" + apn="gprs.stel.in" + type="default,supl" + /> + + <apn carrier="STEL" + mcc="405" + mnc="884" + apn="gprs.stel.in" + type="default,supl" + /> + + <apn carrier="STEL" + mcc="405" + mnc="885" + apn="gprs.stel.in" + type="default,supl" + /> + + <apn carrier="STEL" + mcc="405" + mnc="886" + apn="gprs.stel.in" + type="default,supl" + /> + + <apn carrier="Internet" + mcc="405" + mnc="908" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="405" + mnc="908" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="405" + mnc="908" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="405" + mnc="909" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="405" + mnc="909" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="405" + mnc="909" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="405" + mnc="910" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="405" + mnc="910" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="405" + mnc="910" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="405" + mnc="911" + apn="Internet" + type="default,supl,xcap" + protocol="IPV4V6" + /> + + <apn carrier="IDEA MMS" + mcc="405" + mnc="911" + apn="mmsc" + mmsc="http://10.4.42.21:8002/" + mmsproxy="10.4.42.15" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="405" + mnc="911" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Uninor MMS" + mcc="405" + mnc="925" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="Uninor MMS" + mcc="405" + mnc="926" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="Uninor MMS" + mcc="405" + mnc="927" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="Uninor MMS" + mcc="405" + mnc="928" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="Uninor MMS" + mcc="405" + mnc="929" + apn="uninor" + mmsc="http://10.58.2.120" + mmsproxy="10.58.10.59" + mmsport="8080" + type="mms" + /> + + <apn carrier="Videocon MMS" + mcc="405" + mnc="932" + apn="vgprs.com" + mmsc="http://10.202.4.119:10021/mmsc/" + mmsproxy="10.202.5.145" + mmsport="8799" + type="mms" + /> + + <apn carrier="Videocon" + mcc="405" + mnc="932" + apn="vinternet.com" + type="default,supl" + /> + + + <apn carrier="Mobilink" + mcc="410" + mnc="01" + apn="jazzwap.mobilinkworld.com" + proxy="172.24.97.29" + port="8080" + type="default,supl" + /> + + <apn carrier="Mobilink-MMS" + mcc="410" + mnc="01" + apn="mms.mobilinkworld.com" + user="mobilink" + password="mobilink" + mmsc="HTTP://mms/" + mmsproxy="172.25.20.12" + mmsport="8080" + type="mms" + /> + + <apn carrier="Mobilink-Internet" + mcc="410" + mnc="01" + apn="Jazzconnect.mobilinkworld.com" + proxy="172.24.97.29" + port="8080" + type="default,supl" + /> + + <apn carrier="Ufone" + mcc="410" + mnc="03" + apn="ufone.pwap" + user="Ufone" + password="Ufone" + proxy="172.16.13.26" + port="8080" + type="default,supl" + /> + + <apn carrier="Ufone-MMS" + mcc="410" + mnc="03" + apn="ufone.pmms" + mmsc="http://www.ufonemms.com:80" + mmsproxy="172.16.13.27" + mmsport="8080" + type="mms" + /> + + <apn carrier="Ufone-Internet" + mcc="410" + mnc="03" + apn="ufone.pinternet" + user="Ufone" + password="ufone" + proxy="172.16.13.26" + port="8080" + type="default,supl" + /> + + <apn carrier="Zong" + mcc="410" + mnc="04" + apn="Zongwap" + proxy="10.81.6.33" + port="8000" + type="default,supl" + /> + + <apn carrier="Zong-MMS" + mcc="410" + mnc="04" + apn="zongmms" + mmsc="http://10.81.6.11:8080" + mmsproxy="10.81.6.33" + mmsport="8000" + type="mms" + /> + + <apn carrier="Zong-Internet" + mcc="410" + mnc="04" + apn="zonginternet" + proxy="10.81.6.33" + port="8000" + type="default,supl" + /> + + <apn carrier="Telenor" + mcc="410" + mnc="06" + apn="wap" + user="Telenor" + password="Telenor" + proxy="172.18.19.11" + port="8080" + type="default,supl" + /> + + <apn carrier="Telenor-MMS" + mcc="410" + mnc="06" + apn="mms " + user="Telenor" + password="Telenor" + mmsc="http://mmstelenor" + mmsproxy="172.18.19.11" + mmsport="8080" + type="mms" + /> + + <apn carrier="Telenor-Internet" + mcc="410" + mnc="06" + apn="internet" + user="Telenor" + password="Telenor" + proxy="172.18.19.11" + port="8080" + type="default,supl" + /> + + <apn carrier="Warid" + mcc="410" + mnc="07" + apn="wap.warid" + proxy="10.4.2.1" + port="8080" + type="default,supl" + /> + + <apn carrier="Warid-MMS" + mcc="410" + mnc="07" + apn="mms.warid" + mmsc="http://10.4.0.132/servlets/mms" + mmsproxy="10.4.2.1" + mmsport="8080" + type="mms" + /> + + <apn carrier="Warid-Internet" + mcc="410" + mnc="07" + apn="wap.warid" + proxy="10.4.2.1" + port="8080" + type="default,supl" + /> + + <apn carrier="Mobitel" + mcc="413" + mnc="01" + apn="mobitel" + type="default,supl" + /> + + <apn carrier="Mobitel MMS" + mcc="413" + mnc="01" + apn="mobitel" + mmsc="http://192.168.050.165" + type="mms" + /> + + <apn carrier="Dialog Postpaid" + mcc="413" + mnc="02" + apn="Dialogbb" + type="default,supl" + /> + + <apn carrier="Dialog MMS-Postpaid" + mcc="413" + mnc="02" + apn="Dialogbb" + mmsc="http://mms.dialog.lk:3130/mmsc" + type="mms" + /> + + <apn carrier="IMS" + mcc="413" + mnc="02" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Etisalat" + mcc="413" + mnc="03" + apn="ebb" + type="default,supl" + /> + + <apn carrier="Etisalat MMS" + mcc="413" + mnc="03" + apn="ebb" + mmsc="http://mms.etisalat.lk:8085" + type="mms" + /> + + <apn carrier="AirTel" + mcc="413" + mnc="05" + apn="AirtelLive" + type="default,supl" + /> + + <apn carrier="AirTel MMS" + mcc="413" + mnc="05" + apn="AirtelLive" + mmsc="http://mms.Airtel.lk" + type="mms" + /> + + <apn carrier="Hutch" + mcc="413" + mnc="08" + apn="hu" + type="default,supl" + /> + + <apn carrier="MPT" + mcc="414" + mnc="01" + apn="mptnet" + user="mptnet" + password="12345" + type="default,supl" + /> + + <apn carrier="Telenor" + mcc="414" + mnc="06" + apn="wap" + proxy="10.3.0.14" + port="8080" + type="default,supl" + /> + + <apn carrier="Telenor-MMS" + mcc="414" + mnc="06" + apn="mms" + mmsc="http://10.3.3.38:19090/was" + mmsproxy="10.3.0.13" + mmsport="8080" + type="mms" + /> + + <apn carrier="Telenor-Internet" + mcc="414" + mnc="06" + apn="internet" + type="default,supl" + /> + + <apn carrier="Alfa" + mcc="415" + mnc="01" + apn="internet.mic1.com.lb" + user="mic1" + password="mic1" + type="default,supl" + /> + + <apn carrier="Alfa MMS" + mcc="415" + mnc="01" + apn="mms.mic1.com.lb" + user="mic1" + password="mic1" + mmsc="http://mms.mic1.com.lb" + mmsproxy="192.168.23.51" + mmsport="9201" + type="mms" + /> + + <apn carrier="MTC Touch" + mcc="415" + mnc="03" + apn="gprs.mtctouch.com.lb" + type="default,supl" + /> + + <apn carrier="MTC Touch MMS" + mcc="415" + mnc="03" + apn="mms.mtctouch.com.lb" + mmsc="http://mms:8080/mms/" + mmsproxy="192.168.4.103" + mmsport="9201" + type="mms" + /> + + <apn carrier="Zain JO" + mcc="416" + mnc="01" + apn="internet" + type="default,supl" + /> + + <apn carrier="Zain JO MMS" + mcc="416" + mnc="01" + apn="mms" + user="mms" + password="mms" + mmsc="http://mms.jo.zain.com" + mmsproxy="192.168.55.10" + mmsport="80" + type="mms" + /> + + <apn carrier="Umniah" + mcc="416" + mnc="03" + apn="net" + type="default,supl" + /> + + <apn carrier="Umniah MMS" + mcc="416" + mnc="03" + apn="mms" + mmsc="http://mms.umniah.com/" + mmsproxy="10.1.1.10" + mmsport="9201" + type="mms" + /> + + <apn carrier="Orange JO" + mcc="416" + mnc="77" + apn="inet.orange.jo" + user="net" + password="net" + type="default,supl" + /> + + <apn carrier="Orange JO MMS" + mcc="416" + mnc="77" + apn="mms.orangemobile.jo" + user="mmc" + password="mmc" + mmsc="http://172.16.1.96/servlets/mms" + mmsproxy="172.16.1.2" + mmsport="8080" + type="mms" + /> + + <apn carrier="Syriatel" + mcc="417" + mnc="01" + apn="net.syriatel.com" + proxy="172.20.5.6" + port="8080" + type="default,supl" + /> + + <apn carrier="Syriatel MMS" + mcc="417" + mnc="01" + apn="mms.syriatel.com" + mmsc="http://mymms.syriatel.com/" + mmsproxy="172.20.5.6" + mmsport="80" + type="mms" + /> + + <apn carrier="MTN Internet" + mcc="417" + mnc="02" + apn="" + type="default,supl" + /> + + <apn carrier="MTN MMS" + mcc="417" + mnc="02" + apn="mms" + mmsc="http://mms/" + mmsproxy="10.110.0.134" + mmsport="8799" + type="mms" + /> + + <apn carrier="Zain IQ" + mcc="418" + mnc="20" + apn="internet" + type="default,supl" + /> + + <apn carrier="Zain IQ MMS" + mcc="418" + mnc="20" + apn="mms" + mmsc="http://mms:8002/" + mmsproxy="172.29.11.12" + mmsport="8080" + type="mms" + /> + + <apn carrier="Zain IQ" + mcc="418" + mnc="30" + apn="internet" + type="default,supl" + /> + + <apn carrier="Zain IQ MMS" + mcc="418" + mnc="30" + apn="mms" + mmsc="http://mms:8002/" + mmsproxy="172.29.11.12" + mmsport="8080" + type="mms" + /> + + <apn carrier="Korek" + mcc="418" + mnc="40" + apn="internet.korek.com" + user="korek" + password="korek" + type="default,supl" + /> + + <apn carrier="Fastlink Internet" + mcc="418" + mnc="66" + apn="fastlink" + type="default,supl,xcap" + /> + + <apn carrier="ims" + mcc="418" + mnc="66" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Zain KW" + mcc="419" + mnc="02" + apn="pps" + user="pps" + password="pps" + type="default,supl" + /> + + <apn carrier="Zain KW MMS" + mcc="419" + mnc="02" + apn="pps" + user="mms" + password="mms" + mmsc="http://mms.zain" + mmsproxy="176.0.0.65" + mmsport="8080" + type="mms" + /> + + <apn carrier="Wataniya" + mcc="419" + mnc="03" + apn="action.wataniya.com" + type="default,supl" + /> + + <apn carrier="Wataniya MMS" + mcc="419" + mnc="03" + apn="mms.wataniya.com" + mmsc="http://action.wataniya.com" + mmsproxy="194.126.53.64" + mmsport="8080" + type="mms" + /> + + <apn carrier="Viva KW" + mcc="419" + mnc="04" + apn="viva" + type="default,supl" + /> + + <apn carrier="Viva KW MMS" + mcc="419" + mnc="04" + apn="viva" + mmsc="http://172.16.128.80:38090/was" + mmsproxy="172.16.128.228" + mmsport="8080" + type="mms" + /> + + <apn carrier="STC" + mcc="420" + mnc="01" + apn="jawalnet.com.sa" + type="default,supl" + /> + + <apn carrier="STC MMS" + mcc="420" + mnc="01" + apn="mms.net.sa" + mmsc="http://mms.net.sa:8002/" + mmsproxy="10.1.1.1" + mmsport="9201" + type="mms" + /> + + <apn carrier="jawalnet.com.sa" + mcc="420" + mnc="01" + apn="jawalnet.com.sa" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="STC KSA IMS" + mcc="420" + mnc="01" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Mobily" + mcc="420" + mnc="03" + apn="wap1" + type="default,supl" + /> + + <apn carrier="Mobily MMS" + mcc="420" + mnc="03" + apn="mms1" + mmsc="http://10.3.3.133:9090/was" + mmsproxy="10.3.2.133" + mmsport="8080" + type="mms" + /> + + <apn carrier="zain-Internet Wap" + mcc="420" + mnc="04" + apn="zain" + type="default,supl" + /> + + <apn carrier="zain-mms" + mcc="420" + mnc="04" + apn="zainmms" + mmsc="http://10.122.200.12:8002" + mmsproxy="10.122.200.10" + mmsport="8080" + type="mms" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="zain-xcap" + mcc="420" + mnc="04" + apn="xcap" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Zain KSA IMS" + mcc="420" + mnc="04" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Oman Mobile" + mcc="422" + mnc="02" + apn="wap" + user="wap" + password="wap" + type="default,supl" + /> + + <apn carrier="Oman Mobile MMS" + mcc="422" + mnc="02" + apn="mms" + user="mms" + password="mms" + mmsc="http://mmsc.omanmobile.com:10021/mmsc" + mmsproxy="192.168.203.35" + mmsport="9201" + type="mms" + /> + + <apn carrier="Nawras" + mcc="422" + mnc="03" + apn="isp.nawras.com.om" + user="test" + password="test" + type="default,supl" + /> + + <apn carrier="Nawras MMS" + mcc="422" + mnc="03" + apn="mms.nawras.com.om" + user="test" + password="test" + mmsc="http://10.128.240.16/servlets/mms" + mmsproxy="10.128.240.19" + mmsport="8080" + type="mms" + /> + + <apn carrier="Etisalat postpaid-GPRS" + mcc="424" + mnc="01" + apn="ewap" + user="ewap" + password="ewap" + type="default,supl" + /> + + <apn carrier="DATA Package" + mcc="424" + mnc="02" + apn="etisalat.ae" + type="default,supl" + + /> + + <apn carrier="Etisalat ims" + mcc="424" + mnc="02" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + + /> + + <apn carrier="Etisalat MMS" + mcc="424" + mnc="02" + apn="etisalat" + mmsc="http://mms/servlets/mms" + mmsproxy="10.12.0.32" + mmsport="8080" + type="mms" + /> + + <apn carrier="Etisalat XCAP" + mcc="424" + mnc="02" + apn="ut" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Du" + mcc="424" + mnc="03" + apn="du" + mmsc="http://mms.du.ae" + mmsproxy="10.19.18.4" + mmsport="8080" + type="default,supl,mms" + /> + + <apn carrier="ims" + mcc="424" + mnc="03" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="3G" + mcc="425" + mnc="01" + apn="uwap.orange.co.il" + user="orange" + password="mobile54" + proxy="192.118.11.56" + port="8080" + type="default,supl" + /> + + <apn carrier="3G MMS" + mcc="425" + mnc="01" + apn="uwap.orange.co.il" + user="orange" + password="mobile54" + mmsc="http://192.168.220.15/servlets/mms" + mmsproxy="192.118.11.55" + mmsport="8080" + type="mms" + /> + + <apn carrier="Cellcom" + mcc="425" + mnc="02" + apn="wapu" + type="default,supl" + /> + + <apn carrier="Cellcom MMS" + mcc="425" + mnc="02" + apn="mms" + mmsc="http://vwapm2.ain.co.il" + mmsproxy="10.19.18.4" + mmsport="8080" + type="mms" + /> + + <apn carrier="Portal Pelephone" + mcc="425" + mnc="03" + apn="internet.pelephone.net.il" + user="pcl@3g" + password="pcl" + type="default,supl" + /> + + <apn carrier="Multimedia Pelephone" + mcc="425" + mnc="03" + apn="mms.pelephone.net.il" + user="pcl@3g" + password="pcl" + mmsc="http://mmsu.pelephone.net.il" + mmsproxy="10.170.252.104" + mmsport="9093" + type="mms" + /> + + <apn carrier="Jawwal" + mcc="425" + mnc="05" + apn="wap" + proxy="213.244.118.129" + port="8080" + type="default,supl" + /> + + <apn carrier="Jawwal MMS" + mcc="425" + mnc="05" + apn="mms" + mmsc="http://mms.jawwal.ps/servlets/mms" + mmsproxy="213.244.118.129" + mmsport="8080" + type="mms" + /> + + <apn carrier="Batelco Internet" + mcc="426" + mnc="01" + apn="internet.batelco.com" + type="default,supl" + /> + + <apn carrier="Batelco MMS" + mcc="426" + mnc="01" + apn="mms.batelco.com" + user="wap" + password="wap" + mmsc="http://192.168.36.10/servlets/mms" + mmsproxy="192.168.1.2" + mmsport="80" + type="mms" + /> + + <apn carrier="Zain NET" + mcc="426" + mnc="02" + apn="internet" + user="internet" + password="internet" + type="default,supl" + /> + + <apn carrier="Zain MMS" + mcc="426" + mnc="02" + apn="mms" + user="mms" + password="mms" + mmsc="http://172.18.83.129" + mmsproxy="172.18.85.34" + mmsport="80" + type="mms" + /> + + <apn carrier="Beeline-Uz-GPRSWAP" + mcc="434" + mnc="04" + apn="wap.beeline.uz" + user="beeline" + password="beeline" + proxy="172.30.30.166" + port="8080" + type="default,supl" + /> + + <apn carrier="Beeline-Uz-MMS" + mcc="434" + mnc="04" + apn="mms.beeline.uz" + user="beeline" + password="beeline" + mmsc="http://mms" + mmsproxy="172.30.30.166" + mmsport="8080" + type="mms" + /> + + <apn carrier="UCELL WAPGPRS" + mcc="434" + mnc="05" + apn="wap" + proxy="10.64.164.10" + port="8080" + type="default,supl" + /> + + <apn carrier="UCELL MMS" + mcc="434" + mnc="05" + apn="mms" + mmsc="http://mmsc:8002/" + mmsproxy="10.64.164.10" + mmsport="8080" + type="mms" + /> + + <apn carrier="MTS-Uzb-GPRSWAP" + mcc="434" + mnc="07" + apn="wap.mts.uz" + proxy="10.10.0.10" + port="8080" + type="default,supl" + /> + + <apn carrier="MTS-Uzb-MMS" + mcc="434" + mnc="07" + apn="mms.mts.uz" + mmsc="http://mmsc/was" + mmsproxy="10.10.0.10" + mmsport="8080" + type="mms" + /> + + <apn carrier="spmode" + mcc="440" + mnc="10" + apn="spmode.ne.jp" + type="default,supl" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="mopera" + mcc="440" + mnc="10" + apn="mopera.net" + type="default,supl,mms" + /> + + <apn carrier="mopera U(Biz・ホーダ〿" + mcc="440" + mnc="10" + apn="mpr2.bizho.net" + type="default,supl,mms" + /> + + <apn carrier="b-mobile" + mcc="440" + mnc="10" + apn="bmobile.ne.jp" + user="bmobile@fr" + password="bmobile" + authtype="3" + type="default,supl,mms" + /> + + <apn carrier="IMS" + mcc="440" + mnc="10" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Y!mobile APN" + mcc="440" + mnc="20" + apn="plus.acs.jp" + user="ym" + password="ym" + mmsc="http://mms-s/" + mmsproxy="andmms.plusacs.ne.jp" + mmsport="8080" + type="default,supl,mms,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="SoftBank 4G" + mcc="440" + mnc="20" + apn="plus.4g" + user="plus" + password="4g" + mmsc="http://mms-s/" + mmsproxy="andmms.plusacs.ne.jp" + mmsport="8080" + type="default,supl,mms,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="440" + mnc="20" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="KDDI" + mcc="440" + mnc="51" + apn="au.au-net.ne.jp" + user="user@au.au-net.ne.jp" + password="au" + type="default" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="KDDI" + mcc="440" + mnc="51" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="KDDI admin" + mcc="440" + mnc="51" + apn="admin.au.net.net.jp" + user="au@admin.au.net.net.up" + password="au" + type="fota" + /> + + <apn carrier="KDDI admin" + mcc="440" + mnc="54" + apn="admin.au.net.net.jp" + user="au@admin.au.net.net.up" + password="au" + type="fota" + protocol="IPV4V6" + /> + + <apn carrier="KDDI" + mcc="440" + mnc="54" + apn="au.au-net.ne.jp" + user="user@au.au-net.ne.jp" + password="au" + type="default" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="KDDI" + mcc="440" + mnc="54" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="SKT LTE" + mcc="450" + mnc="05" + apn="lte.sktelecom.com" + mmsc="http://omms.nate.com:9082/oma_mms" + mmsproxy="lteoma.nate.com" + mmsport="9093" + type="default,supl,mms" + /> + + <apn carrier="SKT 3G" + mcc="450" + mnc="05" + apn="web.sktelecom.com" + mmsc="http://omms.nate.com:9082/oma_mms" + mmsproxy="smart.nate.com" + mmsport="9093" + authtype="3" + type="default,supl,mms" + /> + + <apn carrier="LGE Uplus(U+)" + mcc="450" + mnc="06" + apn="internet.lguplus.co.kr" + mmsc="http://omammsc.uplus.co.kr:9084" + type="default,supl,mms" + /> + + <apn carrier="KT LTE" + mcc="450" + mnc="08" + apn="lte.ktfwing.com" + mmsc="http://mmsc.ktfwing.com:9082" + type="default,supl,mms" + /> + + <apn carrier="KT 3G" + mcc="450" + mnc="08" + apn="alwayson.ktfwing.com" + mmsc="http://mmsc.ktfwing.com:9082" + type="default,supl,mms" + /> + + <apn carrier="Mobifone" + mcc="452" + mnc="01" + apn="m-wap" + user="mms" + type="default,supl" + /> + + <apn carrier="Mobifone MMS" + mcc="452" + mnc="01" + apn="m-i090" + user="mms" + mmsc="http://203.162.21.114/mmsc" + mmsproxy="203.162.21.114" + mmsport="3130" + type="mms" + /> + + <apn carrier="Vinaphone" + mcc="452" + mnc="02" + apn="m3-world" + user="mms" + type="default,supl" + /> + + <apn carrier="Vinaphone MMS" + mcc="452" + mnc="02" + apn="m3-mms" + user="mms" + password="mms" + mmsc="http://mms.vinaphone.com.vn" + mmsproxy="10.1.10.46" + mmsport="8000" + type="mms" + /> + + <apn carrier="Viettelmobile" + mcc="452" + mnc="04" + apn="v-internet" + type="default,supl" + /> + + <apn carrier="Viettelmobile MMS" + mcc="452" + mnc="04" + apn="v-mms" + mmsc="http://mms.viettelmobile.com.vn/mms/wapenc" + mmsproxy="192.168.233.10" + mmsport="8080" + type="mms" + /> + + <apn carrier="Viettel IMS" + mcc="452" + mnc="04" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Viettel XCAP" + mcc="452" + mnc="04" + apn="xcap" + type="xcap" + /> + + <apn carrier="Vietnamobile" + mcc="452" + mnc="05" + apn="internet" + type="default,supl" + /> + + <apn carrier="Vietnamobile MMS" + mcc="452" + mnc="05" + apn="mms" + mmsc="http://10.10.128.58/servlets/mms" + mmsproxy="10.10.128.44" + mmsport="8080" + type="mms" + /> + + <apn carrier="BeeLine" + mcc="452" + mnc="07" + user="mms" + apn="internet" + type="default,supl" + /> + + <apn carrier="Beeline MMS" + mcc="452" + mnc="07" + apn="mms" + user="mms" + password="mms" + mmsc="http://mms" + mmsproxy="10.16.70.199" + mmsport="8080" + type="mms" + /> + + <apn carrier="CSL Data" + mcc="454" + mnc="00" + apn="hkcsl" + proxy="192.168.59.51" + port="8080" + mmsc="http://192.168.58.171:8002" + mmsproxy="192.168.59.51" + mmsport="8080" + type="default,supl,mms" + /> + + <apn carrier="IMS" + mcc="454" + mnc="00" + apn="ims" + type="ims" + /> + + <apn carrier="CTEXCEL" + mcc="454" + mnc="00" + apn="ctexcel" + type="default,dun,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + mvno_type="spn" + mvno_match_data="CTExcel" + /> + + <apn carrier="IMS" + mcc="454" + mnc="00" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + mvno_type="spn" + mvno_match_data="CTExcel" + /> + + <apn carrier="CSL GPRS" + mcc="454" + mnc="02" + apn="hkcsl" + proxy="192.168.59.51" + port="8080" + mmsc="http://192.168.58.171:8002" + mmsproxy="192.168.59.51" + mmsport="8080" + type="default,supl,mms" + /> + + <apn carrier="3 LTE" + mcc="454" + mnc="03" + apn="mobile.lte.three.com.hk" + mmsc="http://mms.um.three.com.hk:10021/mmsc" + mmsproxy="172.20.97.116" + mmsport="8799" + type="default,supl,mms" + authtype="1" + /> + + <apn carrier="3-HK" + mcc="454" + mnc="03" + apn="mobile.three.com.hk" + mmsc="http://mms.um.three.com.hk:10021/mmsc" + mmsproxy="mms.three.com.hk" + mmsport="8799" + type="default,supl,mms" + /> + + <apn carrier="IMS" + mcc="454" + mnc="03" + apn="ims.lte.three.com.hk" + type="ims" + /> + + <apn carrier="IMS" + mcc="454" + mnc="03" + apn="IMS" + type="ims" + mvno_type="spn" + mvno_match_data="ä¸å›½ç”µä¿¡" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="CTNET" + mcc="454" + mnc="03" + apn="ctnet" + authtype="3" + user="ctnet@mycdma.cn" + password="vnet.mobi" + type="default,dun,xcap" + mvno_type="spn" + mvno_match_data="ä¸å›½ç”µä¿¡" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="454" + mnc="04" + apn="IMS" + type="ims" + mvno_type="spn" + mvno_match_data="ä¸å›½ç”µä¿¡" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="CTNET" + mcc="454" + mnc="04" + apn="ctnet" + authtype="3" + user="ctnet@mycdma.cn" + password="vnet.mobi" + type="default,dun,xcap" + mvno_type="spn" + mvno_match_data="ä¸å›½ç”µä¿¡" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="3 (2G) MMS" + mcc="454" + mnc="04" + apn="mms-g.three.com.hk" + mmsc="http://10.30.15.51:10021/mmsc" + mmsproxy="10.30.15.53" + mmsport="9201" + type="mms" + /> + + <apn carrier="3 (2G)" + mcc="454" + mnc="04" + apn="web-g.three.com.hk" + type="default,supl" + /> + + <apn carrier="SmarTone" + mcc="454" + mnc="06" + apn="smartone" + mmsc="http://mms.smartone.com/server" + mmsproxy="10.9.9.9" + mmsport="8080" + type="default,supl,mms" + authtype="2" + /> + + <apn carrier="SMC-Voda Internet" + mcc="454" + mnc="06" + apn="SmarTone-Vodafone" + mmsc="http://mms.smartone-vodafone.com/server" + mmsproxy="10.9.9.9" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="454" + mnc="06" + apn="ims" + type="ims" + /> + + <apn carrier="3gnet" + mcc="454" + mnc="07" + apn="3gnet" + type="default,supl" + /> + + <apn carrier="one2free 2G" + mcc="454" + mnc="10" + apn="hkcsl" + mmsc="http://192.168.58.171:8002" + mmsproxy="192.168.59.51" + mmsport="8080" + type="default,supl,mms" + /> + + <apn carrier="CMHK Data" + mcc="454" + mnc="12" + apn="cmhk" + mmsc="http://mms.hk.chinamobile.com/mms" + mmsproxy="" + mmsport="" + type="default,supl,mms" + authtype="1" + /> + + <apn carrier="China Mobile HK MMS" + mcc="454" + mnc="12" + apn="peoples.mms" + mmsc="http://mms.peoples.com.hk/mms" + mmsproxy="172.31.31.36" + mmsport="8080" + type="mms" + /> + + <apn carrier="China Mobile HK" + mcc="454" + mnc="12" + apn="peoples.net" + type="default,supl" + /> + + <apn carrier="IMS" + mcc="454" + mnc="12" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="xcap" + mcc="454" + mnc="12" + apn="xcap" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="PCCW 2G" + mcc="454" + mnc="16" + apn="pccwdata" + type="default,supl" + /> + + <apn carrier="PCCW 2G MMS" + mcc="454" + mnc="16" + apn="pccwmms" + mmsc="http://mmsc.mms.pccwmobile.com:8002/" + mmsproxy="10.131.2.8" + mmsport="8080" + type="mms" + /> + + <apn carrier="PCCW-HKT" + mcc="454" + mnc="19" + apn="pccw" + mmsc="http://3gmms.pccwmobile.com:8080/was" + mmsproxy="10.140.14.10" + mmsport="8080" + type="default,supl,mms" + authtype="1" + /> + + <apn carrier="PCCW 3G" + mcc="454" + mnc="19" + apn="pccw" + mmsc="http://3gmms.pccwmobile.com:8080/was" + mmsproxy="10.140.14.10" + mmsport="8080" + type="default,supl,mms" + /> + + <apn carrier="IMS" + mcc="454" + mnc="19" + apn="ims" + type="ims" + /> + + <apn carrier="CTEXCEL" + mcc="454" + mnc="31" + apn="ctexcel" + type="default,dun,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + mvno_type="spn" + mvno_match_data="CTExcel" + /> + + <apn carrier="IMS" + mcc="454" + mnc="31" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + mvno_type="spn" + mvno_match_data="CTExcel" + /> + + <apn carrier="CTNET" + mcc="454" + mnc="31" + apn="ctnet" + type="default,dun,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + mvno_type="spn" + mvno_match_data="ä¸å›½ç”µä¿¡" + /> + + <apn carrier="IMS" + mcc="454" + mnc="31" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + mvno_type="spn" + mvno_match_data="ä¸å›½ç”µä¿¡" + /> + + <apn carrier="SmarTone Macau" + mcc="455" + mnc="00" + apn="smartgprs" + proxy="10.9.9.29" + port="8080" + mmsc="http://mms.smartone.com.mo/dmog/mo" + mmsproxy="10.9.9.29" + mmsport="8080" + type="default,supl,mms" + /> + + <apn carrier="CTM" + mcc="455" + mnc="01" + apn="ctmprepaid" + type="default,supl" + /> + + <apn carrier="CTM MMS" + mcc="455" + mnc="01" + apn="ctmmms" + mmsc="http://mms.wap.ctm.net:8002" + mmsproxy="192.168.99.3" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="455" + mnc="02" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="CTNET" + mcc="455" + mnc="02" + apn="ctnet" + authtype="3" + user="ctnet@mycdma.cn" + password="vnet.mobi" + type="default,dun,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + ppp="#777" + /> + + <apn carrier="CTWAP" + mcc="455" + mnc="02" + apn="ctwap" + authtype="3" + user="ctwap@mycdma.cn" + password="vnet.mobi" + mmsproxy="10.0.0.200" + mmsport="80" + mmsc="http://mmsc.vnet.mobi" + type="default,mms,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Hutchison Macau MMS" + mcc="455" + mnc="03" + apn="mms.hutchisonmacau.com" + mmsc="http://10.30.15.51:10021/mmsc" + mmsproxy="10.30.15.53" + mmsport="8080" + type="mms" + /> + + <apn carrier="Hutchison Macau" + mcc="455" + mnc="03" + apn="web-g.three.com.hk" + user="hutchison" + password="1234" + type="default,supl" + /> + + <apn carrier="CTM" + mcc="455" + mnc="04" + apn="ctm-mobile" + proxy="192.168.99.2" + port="8080" + type="default,supl" + /> + + <apn carrier="CTM MMS" + mcc="455" + mnc="04" + apn="ctmmms" + mmsc="http://mms.wap.ctm.net:8002" + mmsproxy="192.168.99.3" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="455" + mnc="07" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="CTNET" + mcc="455" + mnc="07" + apn="ctnet" + authtype="3" + user="ctnet@mycdma.cn" + password="vnet.mobi" + type="default,dun,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="CTWAP" + mcc="455" + mnc="07" + apn="ctwap" + authtype="3" + user="ctwap@mycdma.cn" + password="vnet.mobi" + mmsproxy="10.0.0.200" + mmsport="80" + mmsc="http://mmsc.vnet.mobi" + type="mms,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Cellcard WAP" + mcc="456" + mnc="01" + apn="cellcard" + user="mobitel" + password="mobitel" + proxy="203.144.95.100" + port="8080" + type="wap" + /> + + <apn carrier="Cellcard MMS" + mcc="456" + mnc="01" + apn="mms" + user="mobitel" + password="mobitel" + mmsc="http://mms.mobitel.com.kh/mmsc" + mmsproxy="203.144.95.98" + mmsport="3130" + type="mms" + /> + + <apn carrier="Hello mms" + mcc="456" + mnc="02" + apn="hellomms" + mmsc="http://mmsc.tmic.com.kh/mssc" + mmsproxy="10.221.41.33" + mmsport="8080" + type="mms" + /> + + <apn carrier="Hello WAP" + mcc="456" + mnc="02" + apn="hellowww" + proxy="10.221.41.33" + port="8080" + type="wap" + /> + + <apn carrier="qb mms" + mcc="456" + mnc="04" + apn="mms" + mmsc="http://mms.qbmore.mbi" + mmsproxy="172.16.96.66" + mmsport="8080" + type="mms" + /> + <apn carrier="qb web" + mcc="456" + mnc="04" + apn="wap" + proxy="172.16.96.66" + port="8080" + type="wap" + /> + + <apn carrier="Smart mms" + mcc="456" + mnc="06" + apn="mms" + mmsc="http://mmsc" + mmsproxy="10.12.1.142" + mmsport="8080" + type="mms" + /> + + <apn carrier="Smart" + mcc="456" + mnc="06" + apn="smart" + protocol="IP" + roaming_protocol="IP" + type="default,supl,xcap" + /> + + <apn carrier="IMS" + mcc="456" + mnc="06" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Smart" + mcc="456" + mnc="06" + apn="smart" + type="xcap" + protocol="IP" + roaming_protocol="IP" + bearer_bitmask ="18" + /> + + <apn carrier="Bee MMS" + mcc="456" + mnc="09" + apn="mms.beeline.com.kh " + mmsc="http://mms/" + mmsproxy="10.18.34.135" + mmsport="8080" + type="mms" + /> + + <apn carrier="Bee WAP" + mcc="456" + mnc="09" + apn="gprs.beeline.com.kh" + proxy="10.18.34.135" + port="8080" + type="wap" + /> + + <apn carrier="Seatel" + mcc="456" + mnc="11" + apn="seatel" + type="default,supl,xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="IMS" + mcc="456" + mnc="11" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="CMNET" + mcc="460" + mnc="00" + apn="cmnet" + type="default,supl,net,xcap,rcs" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="CMWAP" + mcc="460" + mnc="00" + apn="cmwap" + proxy="10.0.0.172" + port="80" + type="default,supl,wap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="ä¸å›½ç§»åŠ¨å½©ä¿¡ (China Mobile)" + mcc="460" + mnc="00" + apn="cmwap" + proxy="10.0.0.172" + port="80" + mmsc="http://mmsc.monternet.com" + mmsproxy="10.0.0.172" + mmsport="80" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IA" + mcc="460" + mnc="00" + apn="" + type="ia" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="460" + mnc="00" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="沃宽带用户连接互è”网" + mcc="460" + mnc="01" + apn="3gnet" + type="default,supl,net,xcap" + protocol="IPV4V6" + /> + + <apn carrier="沃宽带用户手机上网" + mcc="460" + mnc="01" + apn="3gwap" + type="default,wap" + proxy="10.0.0.172" + port="80" + protocol="IPV4V6" + /> + + <apn carrier="ä¸å›½è”通 3g 彩信 (China Unicom)" + mcc="460" + mnc="01" + apn="3gwap" + mmsc="http://mmsc.myuni.com.cn" + mmsproxy="10.0.0.172" + mmsport="80" + type="mms" + protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="460" + mnc="01" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="China Telecom" + mcc="460" + mnc="01" + apn="3gnet" + type="default,dun,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + mvno_type="spn" + mvno_match_data="China Telecom" + /> + + <apn carrier="IMS" + mcc="460" + mnc="01" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + mvno_type="spn" + mvno_match_data="China Telecom" + /> + + <apn carrier="沃宽带用户连接互è”网" + mcc="460" + mnc="09" + apn="3gnet" + type="default,net,xcap" + protocol="IPV4V6" + /> + + <apn carrier="沃宽带用户手机上网" + mcc="460" + mnc="09" + apn="3gwap" + type="default,wap,dun" + proxy="10.0.0.172" + port="80" + protocol="IPV4V6" + /> + + <apn carrier="CMNET" + mcc="460" + mnc="02" + apn="cmnet" + type="default,supl,net,xcap,rcs" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="CMWAP" + mcc="460" + mnc="02" + apn="cmwap" + proxy="10.0.0.172" + port="80" + type="default,supl,wap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="ä¸å›½ç§»åŠ¨å½©ä¿¡ (China Mobile)" + mcc="460" + mnc="02" + apn="cmwap" + proxy="10.0.0.172" + port="80" + mmsc="http://mmsc.monternet.com" + mmsproxy="10.0.0.172" + mmsport="80" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IA" + mcc="460" + mnc="02" + apn="" + type="ia" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="460" + mnc="02" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="460" + mnc="03" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="CTNET" + mcc="460" + mnc="03" + apn="ctnet" + authtype="3" + user="ctnet@mycdma.cn" + password="vnet.mobi" + type="default,dun,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + ppp="#777" + /> + + <apn carrier="CTWAP" + mcc="460" + mnc="03" + apn="ctwap" + authtype="3" + user="ctwap@mycdma.cn" + password="vnet.mobi" + mmsproxy="10.0.0.200" + mmsport="80" + mmsc="http://mmsc.vnet.mobi" + type="default,supl,mms" + protocol="IPV4V6" + ppp="#777" + /> + + <apn carrier="CMNET" + mcc="460" + mnc="04" + apn="cmnet" + type="default,supl" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="CMNET MMS" + mcc="460" + mnc="04" + apn="cmwap" + proxy="10.0.0.172" + port="80" + mmsc="http://mmsc.monternet.com" + mmsproxy="10.0.0.172" + mmsport="80" + type="mms" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="CMNET" + mcc="460" + mnc="07" + apn="cmnet" + type="default,supl,net,xcap,rcs" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="CMWAP" + mcc="460" + mnc="07" + apn="cmwap" + proxy="10.0.0.172" + port="80" + type="default,supl,wap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="ä¸å›½ç§»åŠ¨å½©ä¿¡ (China Mobile)" + mcc="460" + mnc="07" + apn="cmwap" + proxy="10.0.0.172" + port="80" + mmsc="http://mmsc.monternet.com" + mmsproxy="10.0.0.172" + mmsport="80" + type="mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IA" + mcc="460" + mnc="07" + apn="" + type="ia" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="460" + mnc="07" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="ä¸å›½è”通 3g 网络 (China Unicom)" + mcc="460" + mnc="09" + apn="3gnet" + type="default,net,xcap" + protocol="IPV4V6" + /> + + <apn carrier="ä¸å›½è”通 Wap 网络 (China Unicom)" + mcc="460" + mnc="09" + apn="3gwap" + type="default,wap" + proxy="10.0.0.172" + port="80" + protocol="IPV4V6" + /> + + <apn carrier="ä¸å›½è”通 3g 彩信 (China Unicom)" + mcc="460" + mnc="09" + apn="3gwap" + mmsc="http://mmsc.myuni.com.cn" + mmsproxy="10.0.0.172" + mmsport="80" + type="mms" + protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="460" + mnc="09" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + + <apn carrier="IMS" + mcc="460" + mnc="11" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="CTNET" + mcc="460" + mnc="11" + apn="ctnet" + authtype="3" + user="ctnet@mycdma.cn" + password="vnet.mobi" + type="default,dun,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + ppp="#777" + /> + + <apn carrier="CTWAP" + mcc="460" + mnc="11" + apn="ctwap" + authtype="3" + user="ctwap@mycdma.cn" + password="vnet.mobi" + mmsproxy="10.0.0.200" + mmsport="80" + mmsc="http://mmsc.vnet.mobi" + type="mms,supl" + protocol="IPV4V6" + ppp="#777" + /> + + <apn carrier="IMS" + mcc="460" + mnc="12" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="CTNET" + mcc="460" + mnc="12" + apn="ctnet" + user="ctnet@mycdma.cn" + password="vnet.mobi" + type="default,dun,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + <apn carrier="CTWAP" + mcc="460" + mnc="12" + apn="ctwap" + user="ctwap@mycdma.cn" + password="vnet.mobi" + mmsproxy="10.0.0.200" + mmsport="80" + mmsc="http://mmsc.vnet.mobi" + type="default,supl,mms" + protocol="IPV4V6" + /> + + <apn carrier="CTNET" + mcc="460" + mnc="13" + apn="ctnet" + user="ctnet@mycdma.cn" + password="vnet.mobi" + type="default,dun" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="CTWAP" + mcc="460" + mnc="13" + apn="ctwap" + user="ctwap@mycdma.cn" + password="vnet.mobi" + mmsproxy="10.0.0.200" + mmsport="80" + mmsc="http://mmsc.vnet.mobi" + type="default,supl,mms" + protocol="IPV4V6" + /> + + <apn carrier="é 傳電信(Far EasTone) (Fetnet01)" + mcc="466" + mnc="01" + apn="fetnet01" + proxy="210.241.199.199" + port="80" + type="supl" + /> + + <apn carrier="é 傳電信(Far EasTone) (MMS)" + mcc="466" + mnc="01" + apn="fetnet01" + mmsc="http://mms" + mmsproxy="210.241.199.199" + mmsport="9201" + type="mms" + /> + + <apn carrier="é 傳電信(Far EasTone)" + mcc="466" + mnc="01" + apn="internet" + type="default,supl" + /> + + <apn carrier="é 傳電信(Far EasTone) (IMS)" + mcc="466" + mnc="01" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="é 傳電信(Far EasTone)(SOS)" + mcc="466" + mnc="01" + apn="sos" + type="emergency" + /> + + <apn carrier="GT Internet" + mcc="466" + mnc="05" + apn="gtnet" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="466" + mnc="05" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="xCAP" + mcc="466" + mnc="05" + apn="gtnet" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="和信電訊(KGT-Online) (Internet)" + mcc="466" + mnc="88" + apn="internet" + type="default,supl" + /> + + <apn carrier="和信電訊(KGT-Online) (MMS)" + mcc="466" + mnc="88" + apn="kgtmms" + mmsc="http://mms.kgtmms.net.tw/mms/wapenc" + mmsproxy="172.28.33.5" + mmsport="8080" + type="mms" + /> + + <apn carrier="T Star (Internet)" + mcc="466" + mnc="89" + apn="internet" + type="default,supl" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="T Star (MMS)" + mcc="466" + mnc="89" + apn="internet" + mmsc="http://mms.vibo.net.tw" + mmsproxy="172.24.128.36" + mmsport="8080" + type="mms" + /> + + <apn carrier="T Star (IMS)" + mcc="466" + mnc="89" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="ä¸è¯é›»ä¿¡(Chunghwa) (Internet)" + mcc="466" + mnc="92" + apn="internet" + type="default,supl" + /> + + <apn carrier="ä¸è¯é›»ä¿¡(Chunghwa)" + mcc="466" + mnc="92" + apn="emome" + mmsc="http://mms.emome.net:8002" + mmsproxy="10.1.1.1" + mmsport="8080" + type="default,supl,mms" + /> + + <apn carrier="ä¸è¯é›»ä¿¡ç¶²è·¯MMS" + mcc="466" + mnc="92" + apn="emome" + mmsc="http://mms.emome.net:8002" + mmsproxy="10.1.1.1" + mmsport="8080" + type="mms" + /> + + <apn carrier="CHT IMS" + mcc="466" + mnc="92" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="CHT XCAP" + mcc="466" + mnc="92" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="CHT SOS(Wifi)" + mcc="466" + mnc="92" + apn="sos" + type="emergency" + protocol="IP" + roaming_protocol="IP" + bearer_bitmask ="18" + /> + + <apn carrier="å°ç£å¤§å“¥å¤§(TW Mobile) (Internet)" + mcc="466" + mnc="93" + apn="internet" + type="default,supl" + /> + + <apn carrier="å°ç£å¤§å“¥å¤§(TW Mobile) (MMS)" + mcc="466" + mnc="93" + apn="mms" + mmsc="http://mms.catch.net.tw" + mmsproxy="10.1.1.2" + mmsport="80" + type="mms" + /> + + <apn carrier="å°ç£å¤§å“¥å¤§(TW Mobile) (twm)" + mcc="466" + mnc="93" + apn="twm" + type="default,supl" + /> + + <apn carrier="å°ç£å¤§å“¥å¤§(TW Mobile) (Internet)" + mcc="466" + mnc="97" + apn="internet" + type="default,supl" + /> + + <apn carrier="å°ç£å¤§å“¥å¤§(TW Mobile) (MMS)" + mcc="466" + mnc="97" + apn="mms" + mmsc="http://mms.catch.net.tw" + mmsproxy="10.1.1.2" + mmsport="80" + type="mms" + /> + + <apn carrier="å°ç£å¤§å“¥å¤§(TW Mobile) (IMS)" + mcc="466" + mnc="97" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="å°ç£å¤§å“¥å¤§(TW Mobile) (twm)" + mcc="466" + mnc="97" + apn="twm" + type="default,supl" + /> + + <apn carrier="å°ç£å¤§å“¥å¤§(TW Mobile) (Internet)" + mcc="466" + mnc="99" + apn="internet" + type="default,supl" + /> + + <apn carrier="å°ç£å¤§å“¥å¤§(TW Mobile) (MMS)" + mcc="466" + mnc="99" + apn="mms" + mmsc="http://mms.catch.net.tw" + mmsproxy="10.1.1.2" + mmsport="80" + type="mms" + /> + + <apn carrier="å°ç£å¤§å“¥å¤§(TW Mobile) (twm)" + mcc="466" + mnc="99" + apn="twm" + type="default,supl" + /> + + <apn carrier="Grameenphone" + mcc="470" + mnc="01" + apn="gpinternet" + type="default,supl" + /> + + <apn carrier="Grameenphone" + mcc="470" + mnc="01" + apn="gpmms" + mmsc="http://mmsc.grameenphone.com/servlets/mms" + type="mms" + /> + + <apn carrier="Robi" + mcc="470" + mnc="02" + apn="internet" + type="default,supl" + /> + + <apn carrier="Robi" + mcc="470" + mnc="02" + apn="wap" + mmsc="http://10.16.18.40:38090/was" + mmsproxy="10.16.18.77" + mmsport="9028" + type="mms" + /> + + <apn carrier="Banglalink" + mcc="470" + mnc="03" + apn="blweb" + type="default,supl" + /> + + <apn carrier="Banglalink" + mcc="470" + mnc="03" + apn="blmms" + mmsc="http://mmsc1:10021/mmsc/01" + mmsproxy="10.10.55.34" + mmsport="8799" + type="mms" + /> + + <apn carrier="Teletalk" + mcc="470" + mnc="04" + apn="wap" + type="default,supl" + /> + + <apn carrier="TT-MMS" + mcc="470" + mnc="04" + apn="mms" + mmsc="http://10.5.4.22:38090/was" + mmsproxy="10.5.4.40" + mmsport="8080" + type="mms" + /> + + <apn carrier="Airtel" + mcc="470" + mnc="07" + apn="internet" + type="default,supl" + /> + + <apn carrier="Airtel" + mcc="470" + mnc="07" + apn="wap" + mmsc="http://10.16.18.40:38090/was" + mmsproxy="10.16.18.77" + mmsport="9028" + type="mms" + /> + + + <!-- SMILE operator --> + <apn carrier="IMS" + mcc="502" + mnc="08" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet" + mcc="502" + mnc="08" + apn="internet" + type="default" + /> + + <apn carrier="Maxis 2G Internet" + mcc="502" + mnc="12" + apn="net" + user="maxis" + password="wap" + type="default,supl" + /> + + <apn carrier="Maxis 2G MMS" + mcc="502" + mnc="12" + apn="net" + user="maxis" + password="wap" + server="202.75.133.49" + mmsc="http://172.16.74.100:10021/mmsc" + mmsproxy="202.75.133.49" + mmsport="80" + type="mms" + /> + + <apn carrier="Maxis 3G Internet" + mcc="502" + mnc="12" + apn="unet" + user="maxis" + password="wap" + type="default,supl" + /> + + <apn carrier="Maxis 3G MMS" + mcc="502" + mnc="12" + apn="unet" + user="maxis" + password="wap" + server="202.75.133.49" + mmsc="http://172.16.74.100:10021/mmsc" + mmsproxy="202.75.133.49" + mmsport="80" + type="mms" + /> + <apn carrier="Celcom" + mcc="502" + mnc="13" + apn="celcom3g" + type="default,supl" + /> + + <apn carrier="Celcom MMS" + mcc="502" + mnc="13" + apn="celcom3g" + user="mms" + password="mms" + mmsc="http://mms.celcom.net.my" + mmsproxy="10.128.1.242" + mmsport="8080" + type="mms" + /> + + <apn carrier="Digi" + mcc="502" + mnc="16" + apn="diginet" + user="digi" + password="digi" + type="default,supl" + /> + + <apn carrier="Digi MMS" + mcc="502" + mnc="16" + apn="digimms" + user="mms" + password="mms" + mmsc="http://mms.digi.com.my/servlets/mms" + mmsproxy="203.92.128.160" + mmsport="80" + type="mms" + /> + + <apn carrier="IMS" + mcc="502" + mnc="16" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IPV6" + /> + + <apn carrier="hos" + mcc="502" + mnc="16" + apn="hos" + type="xcap" + protocol="IPV6" + roaming_protocol="IPV6" + /> + + <apn carrier="my3g" + mcc="502" + mnc="18" + apn="my3g" + type="default,supl,mms" + mmsc="http://10.30.3.11/servlets/mms" + mmsproxy="10.30.5.11" + mmsport="8080" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="502" + mnc="18" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="XCAP" + mcc="502" + mnc="18" + apn="XCAP" + type="xcap" + protocol="IPV6" + roaming_protocol="IPV6" + /> + + <apn carrier="Celcom 3G" + mcc="502" + mnc="19" + apn="celcom3g" + type="default,supl" + /> + + <apn carrier="Celcom MMS" + mcc="502" + mnc="19" + apn="celcom3g" + mmsc="http://mms.celcom.net.my" + mmsproxy="10.128.1.242" + mmsport="8080" + type="mms" + /> + + <apn carrier="Yest Internet" + mcc="502" + mnc="152" + apn="yesnet" + type="default,supl,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="502" + mnc="152" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Unifi Internet" + mcc="502" + mnc="153" + apn="unifi" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="502" + mnc="153" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="hos" + mcc="505" + mnc="01" + apn="hos" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="ims" + mcc="505" + mnc="01" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Telstra MMS" + mcc="505" + mnc="01" + apn="Telstra.mms" + mmsc="http://mmsc.telstra.com:8002" + mmsproxy="10.1.1.180" + mmsport="80" + type="mms" + /> + + <apn carrier="Telstra Internet" + mcc="505" + mnc="01" + apn="Telstra.wap" + type="default,supl" + /> + + <apn carrier="Optus Internet" + mcc="505" + mnc="02" + apn="yesinternet" + type="default,supl" + /> + + <apn carrier="Optus Internet" + mcc="505" + mnc="02" + apn="internet" + type="default,supl" + /> + + <apn carrier="Optus MMS" + mcc="505" + mnc="02" + apn="mms" + mmsc="http://mmsc.optus.com.au:8002/" + mmsproxy="61.88.190.10" + mmsport="8070" + type="mms" + /> + + <apn carrier="Optus IMS" + mcc="505" + mnc="02" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Optus Call Settings" + mcc="505" + mnc="02" + apn="hos" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Vodafone AU" + mcc="505" + mnc="03" + apn="live.vodafone.com" + mmsc="http://pxt.vodafone.net.au/pxtsend" + mmsproxy="10.202.2.60" + mmsport="8080" + type="default,supl,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="505" + mnc="03" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="VHA XCAP" + mcc="505" + mnc="03" + apn="hos" + type="xcap,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodafone AU" + mcc="505" + mnc="06" + apn="live.vodafone.com" + mmsc="http://pxt.vodafone.net.au/pxtsend" + mmsproxy="10.202.2.60" + mmsport="8080" + type="default,supl,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="505" + mnc="06" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="VHA XCAP" + mcc="505" + mnc="06" + apn="hos" + type="xcap,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="VF AU PXT" + mcc="505" + mnc="07" + apn="live.vodafone.com" + mmsc="http://pxt.vodafone.net.au/pxtsend" + mmsproxy="10.202.2.60" + mmsport="8080" + type="mms" + /> + + <apn carrier="VF Internet" + mcc="505" + mnc="07" + apn="vfinternet.au" + type="default,supl" + /> + + <apn carrier="Telstra MMS" + mcc="505" + mnc="11" + apn="Telstra.mms" + mmsc="http://mmsc.telstra.com:8002" + mmsproxy="10.1.1.180" + mmsport="80" + type="mms" + /> + + <apn carrier="Telstra Internet" + mcc="505" + mnc="11" + apn="Telstra.wap" + type="default,supl" + /> + + <apn carrier="3Internet" + mcc="505" + mnc="12" + apn="3netaccess" + type="default,supl" + /> + + <apn carrier="3" + mcc="505" + mnc="12" + apn="3services" + mmsc="http://mmsc.three.net.au:10021/mmsc" + mmsproxy="10.176.57.25" + mmsport="8799" + type="default,supl,mms" + /> + + <apn carrier="LM AU GPRS DATA" + mcc="505" + mnc="19" + apn="data.lycamobile.com.au" + type="default,supl" + /> + + <apn carrier="Telstra MMS" + mcc="505" + mnc="71" + apn="Telstra.mms" + mmsc="http://mmsc.telstra.com:8002" + mmsproxy="10.1.1.180" + mmsport="80" + type="mms" + /> + + <apn carrier="Telstra Internet" + mcc="505" + mnc="71" + apn="Telstra.wap" + type="default,supl" + /> + + <apn carrier="hos" + mcc="505" + mnc="71" + apn="hos" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="ims" + mcc="505" + mnc="71" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Telstra MMS" + mcc="505" + mnc="72" + apn="Telstra.mms" + mmsc="http://mmsc.telstra.com:8002" + mmsproxy="10.1.1.180" + mmsport="80" + type="mms" + /> + + <apn carrier="Telstra Internet" + mcc="505" + mnc="72" + apn="Telstra.wap" + type="default,supl" + /> + + <apn carrier="hos" + mcc="505" + mnc="72" + apn="hos" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="ims" + mcc="505" + mnc="72" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="VF AU PXT" + mcc="505" + mnc="88" + apn="live.vodafone.com" + mmsc="http://pxt.vodafone.net.au/pxtsend" + mmsproxy="10.202.2.60" + mmsport="8080" + type="mms" + /> + + <apn carrier="VF Internet" + mcc="505" + mnc="88" + apn="vfinternet.au" + type="default,supl" + /> + + <apn carrier="Optus Internet" + mcc="505" + mnc="90" + apn="internet" + type="default,supl" + /> + + <apn carrier="Optus MMS" + mcc="505" + mnc="90" + apn="mms" + mmsc="http://mmsc.optus.com.au:8002/" + mmsproxy="61.88.190.10" + mmsport="8070" + type="mms" + /> + + <apn carrier="Indosat Internet" + mcc="510" + mnc="01" + apn="internet" + type="default,supl" + /> + + <apn carrier="Indosat MMS" + mcc="510" + mnc="01" + apn="indosatmms" + user="indosat" + password="indosat" + mmsc="http://mmsc.indosat.com" + mmsproxy="10.19.19.19" + mmsport="8080" + type="mms" + /> + + <apn carrier="AXIS GPRS" + mcc="510" + mnc="08" + apn="AXIS" + user="axis" + password="123456" + type="default,supl" + /> + + <apn carrier="AXIS MMS" + mcc="510" + mnc="08" + apn="AXISmms" + user="axis" + password="123456" + proxy="10.8.3.8" + port="8080" + mmsc="http://mmsc.AXIS" + mmsproxy="10.8.3.8" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="510" + mnc="09" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="510" + mnc="09" + apn="ims" + type="ims,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + bearer_bitmask="18" + /> + + <apn carrier="Smartfren4G" + mcc="510" + mnc="09" + apn="Smartfren4G" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Telkomsel GPRS" + mcc="510" + mnc="10" + apn="telkomsel" + user="wap" + password="wap123" + type="default,supl" + /> + + <apn carrier="Telkomsel MMS" + mcc="510" + mnc="10" + apn="mms" + user="wap" + password="wap123" + mmsc="http://mms.telkomsel.com" + mmsproxy="10.1.89.150" + mmsport="8000" + type="mms" + /> + + <apn carrier="XL GPRS" + mcc="510" + mnc="11" + apn="www.xlgprs.net" + user="xlgprs" + password="proxl" + type="default,supl" + /> + + <apn carrier="XL MMS" + mcc="510" + mnc="11" + apn="www.xlmms.net" + user="xlgprs" + password="proxl" + mmsc="http://mmsc.xl.net.id/servlets/mms" + mmsproxy="202.152.240.50" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="510" + mnc="28" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="510" + mnc="28" + apn="ims" + type="ims,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + bearer_bitmask="18" + /> + + <apn carrier="Smartfren4G" + mcc="510" + mnc="28" + apn="Smartfren4G" + type="default,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="3 GPRS" + mcc="510" + mnc="89" + apn="3gprs" + user="3gprs" + password="3gprs" + proxy="10.4.0.10" + port="3128" + type="default,supl" + /> + + <apn carrier="3 MMS" + mcc="510" + mnc="89" + apn="3mms" + user="3mms" + password="3mms" + mmsc="http://mms.three.co.id" + mmsproxy="10.4.0.10" + mmsport="3128" + type="mms" + /> + + <apn carrier="Globe Prepaid" + mcc="515" + mnc="02" + apn="http.globe.com.ph" + type="default,supl" + /> + + <apn carrier="Globe Postpaid" + mcc="515" + mnc="02" + apn="internet.globe.com.ph" + type="default,supl" + /> + + <apn carrier="MyGlobeMMS" + mcc="515" + mnc="02" + apn="mms.globe.com.ph" + mmsc="http://192.40.100.22:10021/mmsc" + mmsproxy="203.177.42.21" + mmsport="8080" + type="mms" + /> + + <apn carrier="Cherry Prepaid" + mcc="515" + mnc="02" + apn="internet.cherry.com.ph" + type="default,supl" + mvno_type="pnn" + mvno_match_data="Cherry Mobile" + /> + + <apn carrier="Cherry Prepaid MMS" + mcc="515" + mnc="02" + apn="mms.globe.com.ph" + mmsc="http://192.40.100.22:10021/mmsc" + mmsproxy="203.177.42.21" + mmsport="8080" + type="mms" + mvno_type="pnn" + mvno_match_data="Cherry Mobile" + /> + + <apn carrier="Cherry Prepaid" + mcc="515" + mnc="02" + apn="internet.cherry.com.ph" + type="default,supl" + mvno_type="spn" + mvno_match_data="Cherry Prepaid" + /> + + <apn carrier="Cherry Prepaid MMS" + mcc="515" + mnc="02" + apn="mms.globe.com.ph" + mmsc="http://192.40.100.22:10021/mmsc" + mmsproxy="203.177.42.21" + mmsport="8080" + type="mms" + mvno_type="spn" + mvno_match_data="Cherry Prepaid" + /> + + <apn carrier="Globe Prepaid" + mcc="515" + mnc="02" + apn="http.globe.com.ph" + type="default,supl" + mvno_type="spn" + mvno_match_data="TM" + /> + + <apn carrier="MyGlobeMMS" + mcc="515" + mnc="02" + apn="mms.globe.com.ph" + mmsc="http://192.40.100.22:10021/mmsc" + mmsproxy="203.177.42.21" + mmsport="8080" + type="mms" + mvno_type="spn" + mvno_match_data="TM" + /> + + <apn carrier="Globe Prepaid" + mcc="515" + mnc="02" + apn="http.globe.com.ph" + type="default,supl" + mvno_type="spn" + mvno_match_data="ABS-CBN" + /> + + <apn carrier="MyGlobeMMS" + mcc="515" + mnc="02" + apn="mms.globe.com.ph" + mmsc="http://192.40.100.22:10021/mmsc" + mmsproxy="203.177.42.21" + mmsport="8080" + type="mms" + mvno_type="spn" + mvno_match_data="ABS-CBN" + /> + + <apn carrier="Sun INTERNET" + mcc="515" + mnc="03" + apn="minternet" + authtype="1" + type="default,supl" + /> + + <apn carrier="Smart MMS" + mcc="515" + mnc="03" + apn="mms" + mmsc="http://10.102.61.238:8002" + mmsproxy="10.102.61.46" + mmsport="8080" + type="mms" + /> + + <apn carrier="Smart INTERNET" + mcc="515" + mnc="03" + apn="internet" + type="default,supl" + mvno_type="spn" + mvno_match_data="Talk N Text" + /> + + <apn carrier="Smart MMS" + mcc="515" + mnc="03" + apn="mms" + mmsc="http://10.102.61.238:8002" + mmsproxy="10.102.61.46" + mmsport="8080" + type="mms" + mvno_type="spn" + mvno_match_data="Talk N Text" + /> + + <apn carrier="IMS" + mcc="515" + mnc="03" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="XCAP" + mcc="515" + mnc="03" + apn="xcap" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Sun INTERNET" + mcc="515" + mnc="05" + apn="minternet" + type="default,supl" + /> + + <apn carrier="Sun MMS" + mcc="515" + mnc="05" + apn="mms" + mmsc="http://mmscenter.suncellular.com.ph" + mmsproxy="202.138.159.78" + mmsport="8080" + type="mms" + /> + + <apn carrier="RED Internet" + mcc="515" + mnc="18" + apn="redinternet" + type="default,supl" + /> + + <apn carrier="RED MOBILE MMS" + mcc="515" + mnc="18" + apn="redmms" + mmsc="http://10.102.61.193:8002/mmsc" + mmsproxy="10.138.3.35" + mmsport="8080" + type="mms" + /> + + <apn carrier="TrueMove GPRS" + mcc="520" + mnc="00" + apn="hinternet" + user="true" + password="true" + type="default,supl" + /> + + <apn carrier="TrueMove MMS" + mcc="520" + mnc="00" + apn="hmms" + user="true" + password="true" + mmsc="http://mms.trueh.com:8002/" + mmsproxy="10.4.7.39" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="520" + mnc="00" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="AIS GPRS" + mcc="520" + mnc="01" + apn="internet" + user="ais" + password="ais" + type="default,supl" + /> + + <apn carrier="AIS MMS" + mcc="520" + mnc="01" + apn="multimedia" + user="ais" + password="ais" + mmsc="http://mms.mobilelife.co.th" + mmsproxy="203.170.229.34" + mmsport="8080" + type="mms" + /> + + <apn carrier="AIS Internet" + mcc="520" + mnc="03" + apn="internet" + authtype="0" + type="default,supl" + /> + + <apn carrier="AIS MMS" + mcc="520" + mnc="03" + apn="multimedia" + mmsc="http://mms.mobilelife.co.th" + mmsproxy="203.170.229.34" + mmsport="8080" + type="mms" + /> + + <apn carrier="AIS IMS" + mcc="520" + mnc="03" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IP" + /> + + <apn carrier="TRUE-H Internet" + mcc="520" + mnc="04" + apn="internet" + user="true" + password="true" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="TRUE-H MMS" + mcc="520" + mnc="04" + apn="hmms" + user="true" + password="true" + mmsc="http://mms.trueh.com:8002/" + mmsproxy="10.4.7.39" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="520" + mnc="04" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="DTAC Internet" + mcc="520" + mnc="05" + apn="www.dtac.co.th" + type="default,supl" + /> + + <apn carrier="DTAC MMS" + mcc="520" + mnc="05" + apn="mms" + mmsc="http://mms2.dtac.co.th:8002/" + mmsproxy="10.10.10.10" + mmsport="8080" + type="mms" + /> + + <apn carrier="DTAC XCAP" + mcc="520" + mnc="05" + apn="xcap" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="DTAC IMS" + mcc="520" + mnc="05" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="tot internet" + mcc="520" + mnc="15" + apn="internet" + type="default,supl" + /> + + <apn carrier="tot mms" + mcc="520" + mnc="15" + apn="mms" + mmsc="http://mmsc.tot3g.net:8002" + mmsproxy="10.218.24.83" + mmsport="8080" + type="mms" + /> + + <apn carrier="DTAC GPRS" + mcc="520" + mnc="18" + apn="www.dtac.co.th" + user="" + password="" + type="default,supl" + /> + + <apn carrier="DTAC MMS" + mcc="520" + mnc="18" + apn="mms" + user="" + password="" + mmsc="http://mms.dtac.co.th:8002" + mmsproxy="203.155.200.133" + mmsport="8080" + type="mms" + /> + + <apn carrier="DTAC XCAP" + mcc="520" + mnc="18" + apn="xcap" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="TRUE GPRS" + mcc="520" + mnc="99" + apn="internet" + user="true" + password="true" + type="default,supl" + /> + + <apn carrier="TRUE MMS" + mcc="520" + mnc="99" + apn="mms" + user="true" + password="true" + mmsc="http://mms.trueworld.net:8002" + mmsproxy="10.4.7.39" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="525" + mnc="01" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="SingTel XCAP" + mcc="525" + mnc="01" + apn="stm-ut" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="IDEAS" + mcc="525" + mnc="01" + apn="e-ideas" + type="default,supl,ia" + /> + + <apn carrier="IDEAS MMS" + mcc="525" + mnc="01" + apn="e-ideas" + user="65IDEAS" + password="65IDEAS" + mmsc="http://mms.singtel.com:10021/mmsc" + mmsproxy="165.21.42.84" + mmsport="8080" + type="mms" + /> + + <apn carrier="IDEAS" + mcc="525" + mnc="02" + apn="e-ideas" + type="default,supl" + /> + + <apn carrier="IDEAS MMS" + mcc="525" + mnc="02" + apn="e-ideas" + user="65IDEAS" + password="65IDEAS" + mmsc="http://mms.singtel.com:10021/mmsc" + mmsproxy="165.21.42.84" + mmsport="8080" + type="mms" + /> + + <apn carrier="M1 MMS" + mcc="525" + mnc="03" + apn="miworld" + user="65" + password="user123" + mmsc="http://mmsgw:8002" + mmsproxy="172.16.14.10" + mmsport="8080" + type="mms" + /> + + <apn carrier="M1" + mcc="525" + mnc="03" + apn="sunsurf" + user="65" + password="user123" + type="default,supl" + /> + + <apn carrier="IMS" + mcc="525" + mnc="03" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="MobileOne XCAP" + mcc="525" + mnc="03" + apn="xcap" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Gee! (GPRS)" + mcc="525" + mnc="05" + apn="shwap" + type="default,supl" + /> + + <apn carrier="Gee! MMS" + mcc="525" + mnc="05" + apn="shmms" + mmsc="http://mms.starhubgee.com.sg:8002" + mmsproxy="10.12.1.80" + mmsport="80" + type="mms" + /> + + <apn carrier="ims" + mcc="525" + mnc="05" + apn="ims" + type="ims" + /> + + <apn carrier="GT Roaming" + mcc="525" + mnc="05" + apn="gtnet" + type="default,supl" + mvno_type="imsi" + mvno_match_data="525053095x" + /> + + <apn carrier="GT Roaming" + mcc="525" + mnc="05" + apn="gtnet" + type="default,supl" + mvno_type="imsi" + mvno_match_data="525053096x" + /> + + <apn carrier="GT Roaming" + mcc="525" + mnc="05" + apn="gtnet" + type="default,supl" + mvno_type="gid" + mvno_match_data="0A" + /> + + <apn carrier="GT Roaming" + mcc="525" + mnc="05" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + mvno_type="imsi" + mvno_match_data="525053095x" + user_visible="false" + /> + + <apn carrier="GT Roaming" + mcc="525" + mnc="05" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + mvno_type="imsi" + mvno_match_data="525053096x" + user_visible="false" + /> + + <apn carrier="GT Roaming" + mcc="525" + mnc="05" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + mvno_type="gid" + mvno_match_data="0A" + user_visible="false" + /> + + <apn carrier="Vodafone NZ-MMS" + mcc="530" + mnc="01" + apn="live.vodafone.com" + mmsc="http://pxt.vodafone.net.nz/pxtsend" + mmsproxy="172.30.38.3" + mmsport="8080" + type="mms" + /> + + <apn carrier="Vodafone NZ" + mcc="530" + mnc="01" + apn="www.vodafone.net.nz" + type="default,supl" + /> + + <apn carrier="VFNZ PXT" + mcc="530" + mnc="02" + apn="live.vodafone.com" + mmsc="http://pxt.vodafone.net.nz/pxtsend" + mmsproxy="172.30.38.3" + mmsport="8080" + type="mms" + /> + + <apn carrier="VFNZ Internet" + mcc="530" + mnc="02" + apn="www.vodafone.net.nz" + type="default,supl" + /> + + <apn carrier="Telecom Internet" + mcc="530" + mnc="05" + apn="internet.telecom.co.nz" + type="default,supl" + /> + + <apn carrier="Telecom MMS" + mcc="530" + mnc="05" + apn="wap.telecom.co.nz" + mmsc="http://lsmmsc.xtra.co.nz" + mmsproxy="210.55.11.73" + mmsport="80" + type="mms" + /> + + <apn carrier="2degrees Internet" + mcc="530" + mnc="24" + apn="internet" + type="default,supl" + /> + + <apn carrier="2degrees MMS" + mcc="530" + mnc="24" + apn="mms" + mmsc="http://mms.2degreesmobile.net.nz:48090" + mmsproxy="118.148.1.118" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="530" + mnc="24" + apn="ims" + type="ims" + /> + + <apn carrier="hos" + mcc="530" + mnc="24" + apn="hos" + type="xcap" + /> + + <apn carrier="Mobinil MMS" + mcc="602" + mnc="01" + apn="mobinilmms" + mmsc="http://10.7.13.24:8002" + mmsproxy="62.241.155.45" + mmsport="8080" + type="mms" + /> + + <apn carrier="Mobinil Alo wap" + mcc="602" + mnc="01" + apn="alowap" + type="default,supl" + /> + + <apn carrier="Vodafone EG" + mcc="602" + mnc="02" + apn="wap.vodafone.com.eg" + user="wap" + password="wap" + proxy="163.121.178.2" + port="8080" + type="default,supl" + /> + + <apn carrier="Vodafone EG MMS" + mcc="602" + mnc="02" + apn="mms.vodafone.com.eg" + user="mms" + password="mms" + mmsc="http://mms.vodafone.com.eg/servlets/mms" + mmsproxy="163.121.178.2" + mmsport="8080" + type="mms" + /> + + <apn carrier="Etisalat Internet" + mcc="602" + mnc="03" + apn="etisalat" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="Etisalat MMS" + mcc="602" + mnc="03" + apn="etisalat" + mmsc="http://10.71.131.7:38090" + mmsproxy="10.71.130.29" + mmsport="8080" + type="mms" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="Etisalat IMS" + mcc="602" + mnc="03" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="Telecom IMS" + mcc="602" + mnc="04" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="hos" + mcc="602" + mnc="04" + apn="hos" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Mobilis" + mcc="603" + mnc="01" + apn="internet" + user="internet" + password="internet" + type="default,supl" + /> + + <apn carrier="Mobilis MMS" + mcc="603" + mnc="01" + apn="mms" + user="mms" + password="mms" + mmsc="http://172.025.049.009/servlets/mms" + mmsproxy="172.25.49.2" + mmsport="8080" + type="mms" + /> + + <apn carrier="Djezzy" + mcc="603" + mnc="02" + apn="djezzy.internet" + type="default,supl" + /> + + <apn carrier="Djezzy MMS" + mcc="603" + mnc="02" + apn="djezzy.mms" + mmsc="http://172.024.97.152:10021/mmsc" + mmsproxy="172.024.97.158" + mmsport="8799" + type="mms" + /> + + <apn carrier="Nedjma" + mcc="603" + mnc="03" + apn="internet" + user="nedjma" + password="nedjma" + type="default,supl" + /> + + <apn carrier="Nedjma MMS" + mcc="603" + mnc="03" + apn="nedjmaMMS" + user="mms" + password="mms" + mmsc="http://10.10.111.1" + mmsproxy="192.168.52.3" + mmsport="9201" + type="mms" + /> + + <apn carrier="Meditel" + mcc="604" + mnc="00" + apn="internet1.meditel.ma" + user="MEDIWAP" + password="MEDIWAP" + type="default,supl" + /> + + <apn carrier="Meditel MMS" + mcc="604" + mnc="00" + apn="mms.meditel.ma" + user="MEDIMMS" + password="MEDIMMS" + mmsc="http://mms.meditel.ma:8088/mms" + mmsproxy="10.8.8.9" + mmsport="8080" + type="mms" + /> + + <apn carrier="IAM" + mcc="604" + mnc="01" + apn="www.iamgprs1.ma" + type="default,supl" + /> + + <apn carrier="IAM MMS" + mcc="604" + mnc="01" + apn="mmsiam" + mmsc="http://mms:8002" + mmsproxy="10.16.35.50" + mmsport="8080" + type="default,supl,mms" + /> + + <apn carrier="Orange TN" + mcc="605" + mnc="01" + apn="keypro" + type="default,supl" + /> + + <apn carrier="Orange MMS" + mcc="605" + mnc="01" + apn="mms.otun" + mmsc="http://mms.orange.tn" + mmsproxy="10.12.10.52" + mmsport="8080" + type="mms" + /> + + <apn carrier="Tunisie Telecom" + mcc="605" + mnc="02" + apn="Wap.tn" + user="wap@tt1" + password="Wap.tn" + proxy="213.150.186.106" + port="9201" + type="default,supl" + /> + + <apn carrier="Tunisie Telecom MMS" + mcc="605" + mnc="02" + apn="mms.tn" + user="mms@tt1" + password="mms" + mmsc="http://192.168.0.3:19090/was" + mmsproxy="192.168.0.2" + mmsport="8080" + type="mms" + /> + + <apn carrier="Tunisiana-Internet" + mcc="605" + mnc="03" + apn="internet.tunisiana.com" + proxy="10.3.2.99" + port="80" + type="default,supl" + /> + + <apn carrier="Tunisiana MMS" + mcc="605" + mnc="03" + apn="mms.tunisiana.com" + user="mms" + password="mms" + mmsc="http://mmsc.tunisiana.com" + mmsproxy="10.3.2.100" + mmsport="9201" + type="mms" + /> + + <apn carrier="Orange ML" + mcc="610" + mnc="02" + apn="internet" + user="internet" + password="internet" + type="default,supl" + /> + + <apn carrier="Orange ML MMS" + mcc="610" + mnc="02" + apn="mms" + user="mms" + password="mms" + mmsc="http://10.109.6.2/servlets/mms" + mmsproxy="10.109.4.35" + mmsport="8080" + type="mms" + /> + + <apn carrier="Emtel" + mcc="617" + mnc="10" + apn="web" + user="cell number" + password="MMSC" + type="default,supl" + /> + + <apn carrier="Ghana MTN" + mcc="620" + mnc="01" + apn="internet" + /> + + <apn carrier="Ghana vodafone" + mcc="620" + mnc="02" + apn="browse" + /> + + <apn carrier="Ghana Tigo" + mcc="620" + mnc="03" + apn="web.tigo.com.gh" + /> + + <apn carrier="MMS Tigo" + mcc="620" + mnc="03" + apn="wap.tigo.com.gh" + mmsproxy="10.4.1.7" + mmsport="8080" + mmsc="http://mmsc.tigo.com.gh:19090" + type="mms" + /> + + <apn carrier="Ghana Airtel" + mcc="620" + mnc="06" + apn="web" + /> + + <apn carrier="Ghana glo" + mcc="620" + mnc="07" + apn="internet" + /> + + <apn carrier="Zain NG" + mcc="621" + mnc="20" + apn="internet.ng.zain.com" + user="internet" + password="internet" + proxy="172.18.254.5" + port="8080" + type="default,supl" + /> + + <apn carrier="Airtel MMS" + mcc="621" + mnc="20" + apn="mms.ng.airtel.com" + user="mms" + password="mms" + mmsc="http://10.210.3.239:9800/mm1" + mmsproxy="192.168.175.184" + mmsport="8080" + authtype="1" + type="mms" + /> + + <apn carrier="Airtel NG" + mcc="621" + mnc="20" + apn="internet.ng.airtel.com" + /> + + <apn carrier="Zain NG" + mcc="621" + mnc="20" + apn="internet.ng.airtel.com" + user="internet" + password="internet" + port="8080" + type="default,supl" + /> + + <apn carrier="Smile IMS" + mcc="621" + mnc="27" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Smile Internet" + mcc="621" + mnc="27" + apn="internet" + type="default" + /> + + <apn carrier="MTN NG" + mcc="621" + mnc="30" + apn="web.gprs.mtnnigeria.net" + user="web" + password="web" + proxy="10.199.212.2" + port="8080" + type="default,supl" + /> + + <apn carrier="MTN NG MMS" + mcc="621" + mnc="30" + apn="web.gprs.mtnnigeria.net" + user="web" + password="web" + mmsc="http://10.199.212.8/servlets/mms" + mmsproxy="10.199.212.2" + mmsport="8080" + type="mms" + /> + + <apn carrier="ims" + mcc="621" + mnc="40" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="GLO NG" + mcc="621" + mnc="50" + apn="gloflat" + user="flat" + password="flat" + /> + + <apn carrier="Glo MMS" + mcc="621" + mnc="50" + apn="glomms" + user="mms" + password="mms" + mmsc="http://mms.gloworld.com/mmsc" + mmsproxy="10.100.82.4" + mmsport="9201" + type="mms" + /> + + <apn carrier="Glo" + mcc="621" + mnc="50" + apn="glosecure" + proxy="10.100.82.4" + port="8080" + type="default,supl" + /> + + <apn carrier="Etisalat MMS" + mcc="621" + mnc="60" + apn="etisalat" + mmsc="http://10.71.170.30:38090/was" + mmsproxy="10.71.170.5" + type="mms" + /> + + <apn carrier="Etisalat WAP" + mcc="621" + mnc="60" + apn="etisalat" + proxy="10.71.170.5" + port="8080" + type="default,supl" + /> + + <apn carrier="OrangeCM WAP" + mcc="624" + mnc="02" + apn="orangecmgprs" + user="orange" + password="orange" + proxy="192.168.122.101" + port="8080" + type="default,supl" + /> + + <apn carrier="Orange WAP" + mcc="627" + mnc="01" + apn="orangeworld" + user="wap" + password="wap" + proxy="192.168.17.2" + port="8080" + type="default,supl" + /> + + <apn carrier="Vodacom" + mcc="630" + mnc="01" + apn="vodanet" + user="vodalive" + type="default,supl" + /> + + <apn carrier="Unitel" + mcc="631" + mnc="02" + apn="internet.unitel.co.ao" + user="guest" + password="guest" + type="default,supl" + /> + + <apn carrier="Zain SD" + mcc="634" + mnc="01" + apn="internet" + type="default,supl" + /> + + <apn carrier="Internet" + mcc="636" + mnc="01" + apn="etc.com" + type="default,supl" + /> + + <apn carrier="Safaricom" + mcc="639" + mnc="02" + apn="safaricom" + user="saf" + password="data" + mmsc="http://www.safaricom.com" + mmsproxy="172.22.2.38" + mmsport="8080" + type="default,supl,mms" + /> + + <apn carrier="ims" + mcc="639" + mnc="02" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="xcap" + mcc="639" + mnc="02" + apn="xcap" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Airtel Internet" + mcc="639" + mnc="03" + apn="internet" + type="default,supl" + /> + + <apn carrier="Airtel MMS" + mcc="639" + mnc="03" + apn="mms" + user="mms" + password="mms" + mmsproxy="172.30.9.8" + mmsport="8080" + type="mms" + authtype="1" + /> + + <apn carrier="yu" + mcc="639" + mnc="05" + apn="internet" + proxy="10.4.16.6" + port="8080" + type="default,supl" + /> + + <apn carrier="yu MMS" + mcc="639" + mnc="05" + apn="iternet" + mmsc="http://10.4.16.22/servlets/mms" + mmsproxy="10.4.16.6" + mmsport="8080" + type="mms" + /> + + <apn carrier="Telkom GPRS" + mcc="639" + mnc="07" + apn="telkom" + type="default" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Orange KE MMS" + mcc="639" + mnc="07" + apn="orange internet" + user="02web" + password="02web" + mmsc="http://mms.orange.co.ke" + mmsproxy="10.36.17.130" + mmsport="8080" + type="mms" + /> + + <apn carrier="faiba" + mcc="639" + mnc="10" + apn="faiba.co.ke" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="ims" + mcc="639" + mnc="10" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="hos" + mcc="639" + mnc="10" + apn="hos" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Celtel Tz" + mcc="640" + mnc="09" + apn="internet.tz.celtel.com" + user="guest" + password="guest" + type="default,supl" + /> + + <apn carrier="Smile IMS" + mcc="640" + mnc="11" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Smile Internet" + mcc="640" + mnc="11" + apn="internet" + type="default" + /> + + <apn carrier="MTN" + mcc="641" + mnc="10" + apn="yellopix.mtn.co.ug" + user="guest" + password="guest" + type="default,supl" + /> + + <apn carrier="Smile IMS" + mcc="641" + mnc="33" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="MCel" + mcc="643" + mnc="01" + apn="isp.mcel.mz" + user="guest" + password="guest" + type="default,supl" + /> + + <apn carrier="Vodafone" + mcc="645" + mnc="05" + apn="internet" + type="default" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="IMS" + mcc="645" + mnc="05" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="XCAP" + mcc="645" + mnc="05" + apn="xcap" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Airtel Internet" + mcc="646" + mnc="01" + apn="internet.mg.airtel.com" + type="default,supl" + /> + + <apn carrier="Orange World Internet" + mcc="646" + mnc="02" + apn="orangenet" + type="default,supl" + /> + + <apn carrier="Orange World MMS" + mcc="646" + mnc="02" + apn="orangemms" + mmsc="http://10.152.10.70:38090" + mmsproxy="10.150.0.115" + mmsport="8080" + type="mms" + /> + + <apn carrier="Telma Internet" + mcc="646" + mnc="04" + apn="internet" + proxy="10.150.0.115" + port="8080" + type="default,supl" + /> + + <apn carrier="Orange MMS" + mcc="647" + mnc="00" + apn="orangerun.acte" + user="orange" + password="orange" + mmsc="http://mms.orange.fr" + mmsproxy="192.168.10.200" + mmsport="8080" + type="mms" + /> + + <apn carrier="Orange World" + mcc="647" + mnc="00" + apn="orangerun" + user="orange" + password="orange" + proxy="192.168.10.100" + port="8080" + type="default,supl" + /> + + <apn carrier="Orange Enterprise" + mcc="647" + mnc="00" + apn="orangerun.enterprise" + user="orange" + password="orange" + proxy="192.168.10.100" + port="8080" + type="default,supl" + /> + + <apn carrier="Onlymms-GPRS" + mcc="647" + mnc="02" + apn="onlymms" + user="only" + password="only" + mmsc="http://10.2.85.50:8514" + mmsproxy="10.2.85.50" + mmsport="8080" + type="mms" + /> + + <apn carrier="Onlywap-GPRS" + mcc="647" + mnc="02" + apn="onlywap" + user="only" + password="only" + proxy="10.2.85.50" + port="8080" + type="default,supl" + /> + + <apn carrier="SFR MMS" + mcc="647" + mnc="10" + apn="mmssfr" + user="mms" + password="mms" + mmsc="http://mms" + mmsproxy="10.0.224.145" + mmsport="8080" + type="mms" + /> + + <apn carrier="SFR WAP" + mcc="647" + mnc="10" + apn="wapsfr" + user="wap" + password="wap" + proxy="10.0.224.161" + port="8080" + type="default,supl" + /> + + <apn carrier="MTC" + mcc="649" + mnc="01" + apn="ppsinternet" + user="guest" + password="guest" + type="default,supl" + /> + + <apn carrier="VCL Internet GPRS" + mcc="651" + mnc="01" + apn="internet" + type="default,supl" + /> + + <apn carrier="Mascom Wireless" + mcc="652" + mnc="01" + apn="internet.mascom" + user="guest" + password="guest" + type="default,supl" + /> + + <apn carrier="Orange" + mcc="652" + mnc="02" + apn="internet.orange.co.bw" + user="guest" + password="guest" + type="default,supl" + /> + + <apn carrier="IMS" + mcc="653" + mnc="02" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Vodacom" + mcc="655" + mnc="01" + apn="internet" + type="default,supl" + /> + + <apn carrier="Vodacom MMS" + mcc="655" + mnc="01" + apn="mms.vodacom.net" + mmsc="http://mmsc.vodacom4me.co.za/" + mmsproxy="196.6.128.13" + mmsport="8080" + type="mms" + /> + + <apn carrier="Vlive!" + mcc="655" + mnc="01" + apn="vlive" + proxy="196.6.128.12" + port="8080" + type="default,supl" + /> + + <apn carrier="IMS" + mcc="655" + mnc="01" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="XCAP" + mcc="655" + mnc="01" + apn="xcap" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + +<apn carrier="8•ta" + mcc="655" + mnc="02" + apn="internet" + type="default,supl" + /> +<apn carrier="8•ta mms" + mcc="655" + mnc="02" + apn="mms" + mmsproxy="41.151.254.162" + mmsport="8080" + mmsc="http://mms.8ta.com:38090/was" + type="mms" + /> + + <apn carrier="Cell C Internet" + mcc="655" + mnc="07" + apn="Internet" + type="default,supl" + /> + + <apn carrier="Cell C MMS" + mcc="655" + mnc="07" + apn="mms" + mmsc="http://mms.cmobile.co.za" + mmsproxy="196.31.116.250" + mmsport="8080" + type="mms" + /> + + <apn carrier="Cell C IMS" + mcc="655" + mnc="07" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + bearer_bitmask="18" + /> + + <apn carrier="Virgin Mobile SA Internet" + mcc="655" + mnc="07" + apn="vdata" + type="default,supl" + /> + + <apn carrier="Virgin Mobile SA Internet" + mcc="655" + mnc="07" + apn="vmms" + mmsc="http://mms.virginmobile.co.za" + mmsproxy="196.31.116.242" + mmsport="8080" + type="mms" + /> + + <apn carrier="MTN SA Web" + mcc="655" + mnc="10" + apn="internet" + type="default,supl" + /> + + <apn carrier="MTN MMS" + mcc="655" + mnc="10" + apn="myMTN" + user="mtnmms" + password="mtnmms" + mmsc="http://mms.mtn.co.za/mms/wapenc" + mmsproxy="196.11.240.241" + mmsport="8080" + type="mms" + authtype="1" + /> + + <apn carrier="MTN Data" + mcc="655" + mnc="10" + apn="myMTN" + type="default,supl" + /> + + <apn carrier="MTN SA IMS" + mcc="655" + mnc="10" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="hos" + mcc="655" + mnc="10" + apn="hos" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="TIGO INTERNET" + mcc="704" + mnc="02" + apn="internet.tigo.gt" + type="default,supl" + /> + + <apn carrier="TIGO WAP" + mcc="704" + mnc="02" + apn="wap.tigo.gt" + proxy="10.16.17.20" + port="8888" + type="default,supl" + /> + + <apn carrier="TIGO MMS" + mcc="704" + mnc="02" + apn="mms.tigo.gt" + mmsc="http://mms" + mmsproxy="10.16.17.12" + mmsport="8888" + type="mms" + /> + + <apn carrier="MOVISTAR INTERNET" + mcc="704" + mnc="03" + apn="internet.movistar.gt" + user="movistargt" + password="movistargt" + type="default,supl" + /> + + <apn carrier="MOVISTAR WAP" + mcc="704" + mnc="03" + apn="wap.movistar.gt" + user="movistargt" + password="movistargt" + proxy="10.12.22.1" + port="80" + type="default,supl" + /> + + <apn carrier="MOVISTAR MMS" + mcc="704" + mnc="03" + apn="mms.movistar.gt" + user="movistargt" + password="movistargt" + mmsc="http://mms.movistar.gt" + mmsproxy="10.12.22.1" + mmsport="80" + type="mms" + /> + + <apn carrier="TIGO INTERNET" + mcc="704" + mnc="20" + apn="internet.tigo.gt" + type="default,supl" + /> + + <apn carrier="MOVISTAR INTERNET" + mcc="704" + mnc="30" + apn="internet.movistar.gt" + user="movistargt" + password="movistargt" + type="default,supl" + /> + + <apn carrier="MOVISTAR WAP" + mcc="704" + mnc="30" + apn="wap.movistar.gt" + user="movistargt" + password="movistargt" + proxy="10.12.22.1" + port="80" + type="default,supl" + /> + + <apn carrier="MOVISTAR MMS" + mcc="704" + mnc="30" + apn="mms.movistar.gt" + user="movistargt" + password="movistargt" + mmsc="http://mms.movistar.gt" + mmsproxy="10.12.22.1" + mmsport="80" + type="mms" + /> + + <apn carrier="TIGO WAP" + mcc="706" + mnc="03" + apn="wap.tigo.sv" + proxy="10.16.17.20" + port="8888" + type="default,supl" + /> + + <apn carrier="TIGO MMS" + mcc="706" + mnc="03" + apn="mms.tigo.sv" + mmsc="http://mms" + mmsproxy="10.16.17.12" + mmsport="8888" + type="mms" + /> + + <apn carrier="MOVISTAR INTERNET" + mcc="706" + mnc="04" + apn="internet.movistar.sv" + user="movistarsv" + password="movistarsv" + type="default,supl" + /> + + <apn carrier="MOVISTAR WAP" + mcc="706" + mnc="04" + apn="wap.movistar.sv" + user="movistarsv" + password="movistarsv" + proxy="10.12.22.1" + port="80" + type="default,supl" + /> + + <apn carrier="MOVISTAR MMS" + mcc="706" + mnc="04" + apn="mms.movistar.sv" + user="movistarsv" + password="movistarsv" + mmsc="http://mms.movistar.sv" + mmsproxy="10.12.22.1" + mmsport="80" + type="mms" + /> + + <apn carrier="TIGO WAP" + mcc="706" + mnc="30" + apn="wap.tigo.sv" + proxy="10.16.17.20" + port="8888" + type="default,supl" + /> + + <apn carrier="TIGO MMS" + mcc="706" + mnc="30" + apn="mms.tigo.sv" + mmsc="http://mms" + mmsproxy="10.16.17.12" + mmsport="8888" + type="mms" + /> + + <apn carrier="MOVISTAR INTERNET" + mcc="706" + mnc="40" + apn="internet.movistar.sv" + user="movistarsv" + password="movistarsv" + type="default,supl" + /> + + <apn carrier="MOVISTAR WAP" + mcc="706" + mnc="40" + apn="wap.movistar.sv" + user="movistarsv" + password="movistarsv" + proxy="10.12.22.1" + port="80" + type="default,supl" + /> + + <apn carrier="MOVISTAR MMS" + mcc="706" + mnc="40" + apn="mms.movistar.sv" + user="movistarsv" + password="movistarsv" + mmsc="http://mms.movistar.sv" + mmsproxy="10.12.22.1" + mmsport="80" + type="mms" + /> + + <apn carrier="TIGO WAP" + mcc="708" + mnc="02" + apn="wap.tigo.hn" + proxy="10.16.17.20" + port="8888" + type="default,supl" + /> + + <apn carrier="TIGO MMS" + mcc="708" + mnc="02" + apn="mms.tigo.hn" + mmsc="http://mms" + mmsproxy="10.16.17.12" + mmsport="8888" + type="mms" + /> + + <apn carrier="MOVISTAR WAP" + mcc="710" + mnc="30" + apn="wap.movistar.ni" + user="movistarni" + password="movistarni" + proxy="10.12.23.1" + port="80" + type="default,supl" + /> + + <apn carrier="MOVISTAR MMS" + mcc="710" + mnc="30" + apn="mms.movistar.ni" + user="movistarni" + password="movistarni" + mmsc="http://mms.movistar.ni" + mmsproxy="10.12.23.1" + mmsport="80" + type="mms" + /> + + <apn carrier="MOVISTAR WAP" + mcc="710" + mnc="300" + apn="wap.movistar.ni" + user="movistarni" + password="movistarni" + proxy="10.12.23.1" + port="80" + type="default,supl" + /> + + <apn carrier="MOVISTAR MMS" + mcc="710" + mnc="300" + apn="mms.movistar.ni" + user="movistarni" + password="movistarni" + mmsc="http://mms.movistar.ni" + mmsproxy="10.12.23.1" + mmsport="80" + type="mms" + /> + + <apn carrier="MOVISTAR WAP" + mcc="714" + mnc="20" + apn="wap.movistar.pa" + user="movistarpawap" + password="movistarpa" + proxy="10.12.21.1" + port="80" + type="default,supl" + /> + + <apn carrier="MOVISTAR MMS" + mcc="714" + mnc="20" + apn="mms.movistar.pa" + user="movistarpamms" + password="movistarpa" + mmsc="http://mms.movistar.pa" + mmsproxy="10.12.21.1" + mmsport="80" + type="mms" + /> + + <apn carrier="MOVISTAR" + mcc="716" + mnc="06" + apn="movistar.pe" + type="default,supl,xcap" + /> + + <apn carrier="MOVISTAR WAP" + mcc="716" + mnc="06" + apn="wap.movistar.pe" + user="movistar@wap" + password="movistar" + proxy="200.4.196.117" + port="8080" + type="default,supl" + /> + + <apn carrier="MOVISTAR MMS" + mcc="716" + mnc="06" + apn="mms.movistar.pe" + user="movistar@mms" + password="movistar" + mmsc="http://mmsc.telefonicamovistar.com.pe:8088/mms/" + mmsproxy="200.4.196.118" + mmsport="8080" + type="mms" + /> + + <apn carrier="MOVISTAR IMS" + mcc="716" + mnc="06" + apn="volte.movistar.pe" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Nextel WAP" + mcc="716" + mnc="07" + apn="wap.nextel.com.pe" + type="default,supl" + /> + + <apn carrier="Nextel MMS" + mcc="716" + mnc="07" + apn="mms.nextel.com.pe" + mmsc="http://mms.nextel.pe" + mmsproxy="129.192.129.104" + mmsport="8080" + type="mms" + /> + + <apn carrier="Claro Datos" + mcc="716" + mnc="10" + apn="claro.pe" + authtype="1" + type="default,supl" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="CLARO MMS" + mcc="716" + mnc="10" + apn="mms.claro.pe" + user="claro" + password="claro" + mmsc="http://claro/servlets/mms" + mmsproxy="192.168.231.30" + mmsport="80" + type="mms" + /> + + <apn carrier="CLARO IMS" + mcc="716" + mnc="10" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="CLARO XCAP" + mcc="716" + mnc="10" + apn="claro.pe" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="NEXTEL" + mcc="716" + mnc="17" + apn="mms.nextel.com.pe" + mmsc="http://mms.nextel.pe" + mmsproxy="129.192.129.104" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="716" + mnc="17" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Entel PE" + mcc="716" + mnc="17" + apn="entel.pe" + type="default,dun" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="MOVISTAR Internet" + mcc="722" + mnc="07" + apn="wap.gprs.unifon.com.ar" + user="wap" + password="wap" + type="default,supl" + authtype="1" + /> + + <apn carrier="MOVISTAR MMS" + mcc="722" + mnc="07" + apn="mms.gprs.unifon.com.ar" + user="mms" + password="mms" + mmsc="http://mms.movistar.com.ar" + mmsproxy="200.68.32.239" + mmsport="8080" + type="mms" + /> + + <apn carrier="MOVISTAR IMS" + mcc="722" + mnc="07" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="MOVISTAR XCAP" + mcc="722" + mnc="07" + apn="Internet" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Personal Datos" + mcc="722" + mnc="34" + apn="datos.personal.com" + user="datos" + password="datos" + authtype="1" + type="default,supl" + /> + + <apn carrier="Personal MMS" + mcc="722" + mnc="34" + apn="mms" + user="mms" + password="mms" + mmsproxy="172.25.7.31" + mmsport="8080" + mmsc="http://mms.personal.com" + authtype="1" + type="mms" + /> + + <apn carrier="Personal IMS" + mcc="722" + mnc="34" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Personal IMS (wifi)" + mcc="722" + mnc="34" + apn="ims" + type="ims,mms" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + bearer_bitmask ="18" + /> + + <apn carrier="Personal XCAP" + mcc="722" + mnc="34" + apn="hos" + type="xcap" + /> + + <apn carrier="Claro AR" + mcc="722" + mnc="310" + apn="igprs.claro.com.ar" + mmsc="http://mms.claro.com.ar" + type="default,supl,mms" + /> + + <apn carrier="CLARO IMS" + mcc="722" + mnc="310" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="CLARO XCAP" + mcc="722" + mnc="310" + apn="igprs.claro.com.ar" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="TIM MMS" + mcc="724" + mnc="02" + apn="timbrasil.br" + user="tim" + password="tim" + mmsc="http://mms.tim.br" + mmsproxy="200.179.66.242" + mmsport="8080" + type="default,mms" + /> + + <apn carrier="TIM WAP FAST" + mcc="724" + mnc="02" + apn="timbrasil.br" + user="tim" + password="tim" + type="default,supl" + /> + + <apn carrier="TIM IMS" + mcc="724" + mnc="02" + apn="ims" + type="ims,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="TIM MMS" + mcc="724" + mnc="03" + apn="timbrasil.br" + user="tim" + password="tim" + mmsc="http://mms.tim.br" + mmsproxy="200.179.66.242" + mmsport="8080" + type="default,mms" + /> + + <apn carrier="TIM WAP FAST" + mcc="724" + mnc="03" + apn="timbrasil.br" + user="tim" + password="tim" + type="default,supl" + /> + + <apn carrier="TIM IMS" + mcc="724" + mnc="03" + apn="ims" + type="ims,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="TIM MMS" + mcc="724" + mnc="04" + apn="timbrasil.br" + user="tim" + password="tim" + mmsc="http://mms.tim.br" + mmsproxy="200.179.66.242" + mmsport="8080" + type="default,mms" + /> + + <apn carrier="TIM WAP FAST" + mcc="724" + mnc="04" + apn="timbrasil.br" + user="tim" + password="tim" + type="default,supl" + /> + + <apn carrier="TIM IMS" + mcc="724" + mnc="04" + apn="ims" + type="ims,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Java Session" + mcc="724" + mnc="05" + apn="java.claro.com.br" + user="Claro" + password="claro" + authtype="1" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Claro Dados" + mcc="724" + mnc="05" + apn="claro.com.br" + user="Claro" + password="claro" + type="dun" + /> + + <apn carrier="Claro Foto" + mcc="724" + mnc="05" + apn="mms.claro.com.br" + user="claro" + password="claro" + mmsc="http://mms.claro.com.br" + mmsproxy="200.169.126.10" + mmsport="8799" + type="mms" + /> + + <apn carrier="Claro IMS" + mcc="724" + mnc="05" + apn="ims" + type="ims" + protocol="IPV6" + roaming_protocol="IPV6" + /> + + <apn carrier="Claro IMS (wifi)" + mcc="724" + mnc="05" + apn="ims" + type="ims,mms" + protocol="IPV6" + roaming_protocol="IPV6" + bearer_bitmask ="18" + /> + + <apn carrier="VIVO MMS" + mcc="724" + mnc="06" + apn="mms.vivo.com.br" + user="vivo" + password="vivo" + mmsc="http://termnat.vivomms.com.br:8088/mms" + mmsproxy="200.142.130.104" + mmsport="80" + type="mms" + /> + + <apn carrier="VIVO ZAP" + mcc="724" + mnc="06" + apn="zap.vivo.com.br" + user="vivo" + password="vivo" + type="default,supl" + /> + + <apn carrier="VIVO IMS" + mcc="724" + mnc="06" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="VIVO XCAP" + mcc="724" + mnc="06" + apn="xcap" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="SCTL MMS" + mcc="724" + mnc="07" + apn="mms.sercomtel.com.br" + user="sercomtel" + password="sercomtel" + mmsc="http://mms.claro.com.br" + mmsproxy="200.169.126.10" + mmsport="8799" + type="mms" + /> + + <apn carrier="SCTL GPRS" + mcc="724" + mnc="07" + apn="sercomtel.com.br" + user="sercomtel" + password="sercomtel" + type="default,supl" + /> + + <apn carrier="VIVO MMS" + mcc="724" + mnc="10" + apn="mms.vivo.com.br" + user="vivo" + password="vivo" + mmsc="http://termnat.vivomms.com.br:8088/mms" + mmsproxy="200.142.130.104" + mmsport="80" + authtype="1" + type="mms" + /> + + <apn carrier="VIVO ZAP" + mcc="724" + mnc="10" + apn="zap.vivo.com.br" + user="vivo" + password="vivo" + type="default,supl" + /> + + <apn carrier="VIVO IMS" + mcc="724" + mnc="10" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="VIVO XCAP" + mcc="724" + mnc="10" + apn="xcap" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="VIVO MMS" + mcc="724" + mnc="11" + apn="mms.vivo.com.br" + user="vivo" + password="vivo" + mmsc="http://termnat.vivomms.com.br:8088/mms" + mmsproxy="200.142.130.104" + mmsport="80" + type="mms" + /> + + <apn carrier="VIVO ZAP" + mcc="724" + mnc="11" + apn="zap.vivo.com.br" + user="vivo" + password="vivo" + type="default,supl" + /> + + <apn carrier="VIVO IMS" + mcc="724" + mnc="11" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="VIVO XCAP" + mcc="724" + mnc="11" + apn="xcap" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="BrT WAP 1" + mcc="724" + mnc="16" + apn="wap.brt.br" + user="brt" + password="brt" + proxy="200.96.8.30" + port="8080" + type="default,supl" + /> + + <apn carrier="BrT WAP 2" + mcc="724" + mnc="16" + apn="wap.brt.br" + user="brt" + password="brt" + proxy="200.96.8.30" + port="9201" + /> + + <apn carrier="BrT MMS" + mcc="724" + mnc="16" + apn="mms.brt.br" + user="brt" + password="brt" + mmsc="http://mms.brasiltelecom.com.br/" + mmsproxy="200.96.8.29" + mmsport="8080" + type="mms" + /> + + <apn carrier="TelemigC GPRS" + mcc="724" + mnc="19" + apn="gprs.telemigcelular.com.br" + user="celular" + password="celular" + type="default,supl" + /> + + <apn carrier="Telemig MMS" + mcc="724" + mnc="19" + apn="mmsgprs.telemigcelular.com.br" + user="celular" + password="celular" + mmsc="http://mms.telemigcelular.com.br" + mmsproxy="200.192.230.142" + mmsport="8080" + type="mms" + /> + + <apn carrier="VIVO MMS" + mcc="724" + mnc="23" + apn="mms.vivo.com.br" + user="vivo" + password="vivo" + mmsc="http://termnat.vivomms.com.br:8088/mms" + mmsproxy="200.142.130.104" + mmsport="80" + type="mms" + /> + + <apn carrier="VIVO ZAP" + mcc="724" + mnc="23" + apn="zap.vivo.com.br" + user="vivo" + password="vivo" + type="default,supl" + /> + + <apn carrier="VIVO IMS" + mcc="724" + mnc="23" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="VIVO XCAP" + mcc="724" + mnc="23" + apn="xcap" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Amazonia MMS" + mcc="724" + mnc="24" + apn="mmsgprs.amazoniacelular.com.br" + user="celular" + password="celular" + mmsc="http://mms.amazoniacelular.com.br" + mmsproxy="200.192.230.142" + mmsport="8080" + type="mms" + /> + + <apn carrier="Amazonia GPRS" + mcc="724" + mnc="24" + apn="gprs.amazoniacelular.com.br" + user="celular" + password="celular" + type="default,supl" + /> + + <apn carrier="OI MMS" + mcc="724" + mnc="31" + apn="mmsgprs.oi.com.br" + user="oimms" + password="oioioi" + mmsc="http://200.222.42.204:8002" + mmsproxy="192.168.10.50" + mmsport="3128" + protocol="IPV4V6" + type="mms" + /> + + <apn carrier="OI GPRS" + mcc="724" + mnc="31" + apn="gprs.oi.com.br" + protocol="IPV4V6" + type="default,supl" + /> + + <apn carrier="CTBC MMS" + mcc="724" + mnc="32" + apn="mms.ctbc.br" + user="ctbc" + password="1212" + mmsc="http://mms.ctbccelular.com.br/was" + mmsproxy="172.29.7.70" + mmsport="8080" + type="mms" + /> + + <apn carrier="CTBC MMS" + mcc="724" + mnc="33" + apn="mms.ctbc.br" + user="ctbc" + password="1212" + mmsc="http://mms.ctbccelular.com.br/was" + mmsproxy="172.29.7.70" + mmsport="8080" + type="mms" + /> + + <apn carrier="CTBC MMS" + mcc="724" + mnc="34" + apn="mms.ctbc.br" + user="ctbc" + password="1212" + mmsc="http://mms.ctbccelular.com.br/was" + mmsproxy="172.29.7.70" + mmsport="8080" + type="mms" + /> + + <apn carrier="Internet" + mcc="724" + mnc="80" + apn="apn06.mpg28.ericsson.se" + type="default,supl" + protocol="IPV4V6" + /> + + <apn carrier="IMS" + mcc="724" + mnc="80" + apn="ims.mnc080.mcc724.3gppnetwork.org" + type="ims" + protocol="IPV4V6" + /> + + <apn carrier="XCAP" + mcc="724" + mnc="80" + apn="apn06.mpg28.ericsson.se" + type="xcap" + protocol="IPV4V6" + /> + + <apn carrier="Internet Movil" + mcc="730" + mnc="01" + apn="bam.entelpcs.cl" + user="entelpcs" + password="entelpcs" + type="default,supl" + /> + + <apn carrier="Mensajes Multimedia" + mcc="730" + mnc="01" + apn="mms.entelpcs.cl" + user="entelpcs" + password="entelpcs" + mmsc="http://mmsc.entelpcs.cl" + mmsproxy="10.99.0.10" + mmsport="8080" + type="mms" + /> + + <apn carrier="Movistar INTERNET" + mcc="730" + mnc="02" + apn="wap.tmovil.cl" + user="wap" + password="wap" + type="default,supl,dun,xcap" + /> + + <apn carrier="Movistar MMS" + mcc="730" + mnc="02" + apn="mms.tmovil.cl" + user="mms" + password="mms" + mmsproxy="172.17.8.10" + mmsport="8080" + mmsc="http://mms.movistar.cl" + type="mms" + /> + + <apn carrier="IMS" + mcc="730" + mnc="02" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="XCAP" + mcc="730" + mnc="02" + apn="wap.tmovil.cl" + proxy="172.17.8.11" + port="8080" + user="wap" + password="wap" + type="xcap" + bearer_bitmask="18" + /> + + <apn carrier="WEB CLARO" + mcc="730" + mnc="03" + apn="bam.clarochile.cl" + user="clarochile" + password="clarochile" + type="default,supl,xcap" + /> + + <apn carrier="MMS CLARO" + mcc="730" + mnc="03" + apn="mms.clarochile.cl" + user="clarochile" + password="clarochile" + mmsc="http://mms.clarochile.cl" + mmsproxy="172.23.200.200" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="730" + mnc="03" + apn="ims" + type="ims" + /> + + <apn carrier="Internet" + mcc="730" + mnc="07" + apn="imovil.virginmobile.cl" + type="default,supl" + /> + + <apn carrier="MMS" + mcc="730" + mnc="07" + apn="mmsc.virginmobile.cl" + mmsc="http://mms.virginmobile.cl:1981/mms" + type="mms" + /> + + <apn carrier="VTR Internet" + mcc="730" + mnc="08" + apn="movil.vtr.com" + type="default,supl" + /> + + <apn carrier="VTR MMS" + mcc="730" + mnc="08" + apn="mms.vtr.com" + mmsc="http://192.168.94.162:19090/was" + mmsproxy="192.168.94.210" + type="mms" + /> + + <apn carrier="Internet Nextel" + mcc="730" + mnc="09" + apn="wap.nextelmovil.cl" + type="default" + /> + + <apn carrier="Internet WOM" + mcc="730" + mnc="09" + apn="internet" + type="default" + /> + + <apn carrier="MMS Nextel" + mcc="730" + mnc="09" + apn="mms.nextelmovil.cl" + mmsc="http://3gmms.nextelmovil.cl" + mmsproxy="129.192.129.104" + mmsport="8080" + type="mms" + /> + + <apn carrier="Internet Movil" + mcc="730" + mnc="10" + apn="bam.entelpcs.cl" + user="entelpcs" + password="entelpcs" + proxy="10.99.0.10" + port="8080" + type="default,supl" + /> + + <apn carrier="WEB EPCS" + mcc="730" + mnc="10" + apn="imovil.entelpcs.cl" + user="entelpcs" + password="entelpcs" + type="default,supl" + /> + + <apn carrier="MMS EPCS" + mcc="730" + mnc="10" + apn="mms.entelpcs.cl" + user="entelmms" + password="entelpcs" + mmsc="http://mmsc.entelpcs.cl" + mmsproxy="10.99.0.10" + mmsport="8080" + type="mms" + /> + + <apn carrier="WEB Comcel 3GSM" + mcc="732" + mnc="101" + apn="internet.comcel.com.co" + user="COMCELWEB" + password="COMCELWEB" + type="default,supl,xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="MMS Comcel 3GSM" + mcc="732" + mnc="101" + apn="mms.comcel.com.co" + user="COMCELMMS" + password="COMCELMMS" + mmsc="http://www.comcel.com.co/mms/" + mmsproxy="198.228.90.225" + mmsport="8799" + type="mms" + /> + + <apn carrier="Claro IMS" + mcc="732" + mnc="101" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + user_visible="false" + /> + + <apn carrier="Claro Emergency" + mcc="732" + mnc="101" + apn="sos" + type="emergency" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="TIGO WEB" + mcc="732" + mnc="103" + apn="web.colombiamovil.com.co" + type="default,supl" + /> + + <apn carrier="TIGO Multimedia" + mcc="732" + mnc="103" + apn="mms.colombiamovil.com.co" + user="mms-cm1900" + password="mms-cm1900" + mmsc="http://mms.ola.com.co" + mmsproxy="190.102.206.48" + mmsport="8080" + type="mms" + /> + + <apn carrier="TIGO WEB" + mcc="732" + mnc="111" + apn="web.colombiamovil.com.co" + type="default,supl" + /> + + <apn carrier="TIGO Multimedia" + mcc="732" + mnc="111" + apn="mms.colombiamovil.com.co" + user="mms-cm1900" + password="mms-cm1900" + mmsc="http://mms.ola.com.co" + mmsproxy="190.102.206.48" + mmsport="8080" + type="mms" + /> + + <apn carrier="MOVISTAR INTERNET" + mcc="732" + mnc="123" + apn="internet.movistar.com.co" + user="movistar" + password="movistar" + authtype="1" + type="default,supl" + /> + + <apn carrier="MOVISTAR MMS" + mcc="732" + mnc="123" + apn="mms.movistar.com.co" + user="movistar" + password="movistar" + mmsc="http://mms.movistar.com.co" + mmsproxy="192.168.222.7" + mmsport="9001" + type="mms" + /> + + <apn carrier="MOVISTAR IMS" + mcc="732" + mnc="123" + apn="ims" + type="ims" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="MOVISTAR XCAP" + mcc="732" + mnc="123" + apn="hos" + type="xcap" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="ETB LTE" + mcc="732" + mnc="187" + apn="internetmovil.etb.net.co" + type="default,supl" + protocol="IP" + roaming_protocol="IP" + /> + + <apn carrier="Digitel WEB" + mcc="734" + mnc="02" + apn="gprsweb.digitel.ve" + type="default,supl" + /> + + <apn carrier="Digitel MMS" + mcc="734" + mnc="02" + apn="expresate.digitel.ve" + mmsc="http://expresate.digitel.com.ve/servlets/mms" + mmsproxy="213.26.205.1" + mmsport="8080" + type="mms" + /> + + <apn carrier="MOVISTAR Wap" + mcc="734" + mnc="04" + apn="wap.movistar.ve" + user="movistar" + password="movistar" + proxy="200.35.64.73" + port="9001" + type="default,supl" + /> + + <apn carrier="MOVISTAR MMS" + mcc="734" + mnc="04" + apn="mms.movistar.ve" + mmsc="http://mms.movistar.com.ve:8088/mms" + mmsproxy="200.35.64.73" + mmsport="9001" + type="mms" + /> + + <apn carrier="Movilnet WEB" + mcc="734" + mnc="06" + apn="app.movilnet.com.ve" + proxy="192.168.201.170" + port="8080" + type="default,supl" + /> + + <apn carrier="Movilnet MMS" + mcc="734" + mnc="06" + apn="mm.movilnet.com.ve" + mmsc="http://mms2.movilnet.com.ve/servlets/mms" + mmsproxy="192.168.16.12" + mmsport="8080" + type="mms" + /> + + <apn carrier="Tigo WEB" + mcc="736" + mnc="03" + apn="wap.tigo.bo" + proxy="172.25.100.8" + port="9201" + type="default,supl" + /> + + <apn carrier="Tigo MMS" + mcc="736" + mnc="03" + apn="mms.tigo.bo" + mmsc="http://mms" + mmsproxy="172.25.100.8" + mmsport="8888" + type="mms" + /> + + <apn carrier="Movistar INTERNET" + mcc="740" + mnc="00" + apn="internet.movistar.com.ec" + user="movistar" + password="movistar" + type="default,supl" + protocol="IPV4V6" + roaming_protocol="IP" + /> + + <apn carrier="MOVISTAR MMS" + mcc="740" + mnc="00" + apn="mms.movistar.com.ec" + user="movistar" + password="movistar" + mmsc="http://mms.movistar.com.ec:8088/mms" + mmsproxy="10.3.5.50" + mmsport="9001" + type="mms" + /> + + <apn carrier="IMS" + mcc="740" + mnc="00" + apn="ims" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="XCAP" + mcc="740" + mnc="00" + apn="ims" + type="xcap" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Internet Claro" + mcc="740" + mnc="01" + apn="internet.claro.com.ec" + type="default,supl" + /> + + <apn carrier="PORTA MMS" + mcc="740" + mnc="01" + apn="mms.porta.com.ec" + user="portamms" + password="portamms2003" + mmsc="http://iesmms.porta.com.ec" + mmsproxy="216.250.208.94" + mmsport="8799" + type="mms" + /> + + <apn carrier="MOVISTAR Wap" + mcc="740" + mnc="02" + apn="wap.movistar.com.ec" + user="movistar" + password="movistar" + proxy="10.3.5.50" + port="9001" + type="default,supl" + /> + + <apn carrier="ALEGRO MMS" + mcc="740" + mnc="02" + apn="mms.alegro.net.ec" + mmsc="http://mms.alegro.net.ec" + mmsproxy="10.4.85.3" + mmsport="8080" + type="mms" + /> + + <apn carrier="VOXWAP" + mcc="744" + mnc="01" + apn="vox.wap" + user="vox" + password="1234" + proxy="172.24.97.29" + port="8080" + type="wap" + /> + <apn carrier="VOXINTERNET" + mcc="744" + mnc="01" + apn="vox.internet" + user="" + password="" + type="default,supl" + /> + <apn carrier="Vox Mms" + mcc="744" + mnc="01" + apn="vox.mms" + user="" + password="" + mmsproxy="172.24.97.29" + mmsport="8080" + mmsc="http://mms.vox.com.py/mmsc" + type="mms" + /> + <apn carrier="WAP GPRS" + mcc="744" + mnc="02" + apn="wap.ctimovil.com.py" + user="ctigprs" + password="ctigprs999" + proxy="170.51.255.240" + port="8080" + type="wap" + /> + <apn carrier="Internet Claro" + mcc="744" + mnc="02" + apn="internet.ctimovil.com.py" + user="" + password="" + type="default,supl" + /> + + <apn carrier="CLARO MMS PY" + mcc="744" + mnc="02" + apn="mms.ctimovil.com.py" + user="" + password="" + mmsproxy="170.51.255.240" + mmsport="8080" + mmsc="http://mms.ctimovil.com.py" + type="mms" + /> + <apn carrier="WAP Tigo" + mcc="744" + mnc="04" + apn="wap.tigo.py" + user="" + password="" + proxy="10.16.17.12" + port="8888" + type="wap" + /> + <apn carrier="Ineternet TIGO" + mcc="744" + mnc="04" + apn="internet.tigo.py" + user="" + password="" + type="default,supl" + /> + + <apn carrier="MMS Tigo" + mcc="744" + mnc="04" + apn="mms.tigo.py" + user="" + password="" + mmsproxy="10.16.17.12" + mmsport="8888" + mmsc="http://mms" + type="mms" + /> + <apn carrier="Personal WAP" + mcc="744" + mnc="05" + apn="wap.personal.com.py" + user="personal" + password="personal" + proxy="172.16.192.6" + port="9201" + type="wap" + /> + <apn carrier="Internet Personal" + mcc="744" + mnc="05" + apn="internet" + user="" + password="" + type="default,supl" + /> + + <apn carrier="WAP PERSONAL" + mcc="744" + mnc="05" + apn="mms" + user="" + password="" + mmsproxy="172.16.192.7" + mmsport="8080" + mmsc="http://mms" + type="mms" + /> + + <apn carrier="AntelLTE" + mcc="748" + mnc="01" + apn="antel.lte" + type="default,supl" + /> + + <apn carrier="ANCEL MMS" + mcc="748" + mnc="01" + apn="mms" + mmsc="http://mmsc.mms.ancelutil.com.uy" + mmsproxy="200.40.246.2" + mmsport="3128" + type="mms" + /> + + <apn carrier="Movistar INTERNET" + mcc="748" + mnc="07" + apn="webapn.movistar.com.uy" + user="movistar" + password="movistar" + type="default,supl" + /> + + <apn carrier="MOVISTAR MMS" + mcc="748" + mnc="07" + apn="apnmms.movistar.com.uy" + user="mmsuy" + password="mmsuy" + mmsc="http://mmsc.movistar.com.uy" + mmsproxy="10.0.2.29" + mmsport="8080" + type="mms" + /> + + <apn carrier="IMS" + mcc="748" + mnc="07" + apn="IMS" + type="ims" + protocol="IPV4V6" + roaming_protocol="IPV4V6" + /> + + <apn carrier="Claro INTERNET" + mcc="748" + mnc="10" + apn="igprs.claro.com.uy" + type="default,supl" + /> + + <apn carrier="CLARO MMS" + mcc="748" + mnc="10" + apn="mms.ctimovil.com.uy" + user="ctimms" + password="ctimms999" + mmsc="http://mms.ctimovil.com.uy" + mmsproxy="170.51.255.240" + mmsport="8080" + type="mms" + /> +</apns> diff --git a/system/etc/audio_effects.conf b/system/etc/audio_effects.conf new file mode 100644 index 0000000000000000000000000000000000000000..14a171b9a32560207b1cf878d06f413ecd5d5090 --- /dev/null +++ b/system/etc/audio_effects.conf @@ -0,0 +1,188 @@ +# List of effect libraries to load. Each library element must contain a "path" element +# giving the full path of the library .so file. +# libraries { +# <lib name> { +# path <lib path> +# } +# } +libraries { +# This is a proxy library that will be an abstraction for +# the HW and SW effects + + #proxy { + #path /vendor/lib/soundfx/libeffectproxy.so + #} + +# This is the SW implementation library of the effect + #libSW { + #path /vendor/lib/soundfx/libswwrapper.so + #} + +# This is the HW implementation library for the effect + #libHW { + #path /vendor/lib/soundfx/libhwwrapper.so + #} + + bundle { + path /vendor/lib/soundfx/libbundlewrapper.so + } + reverb { + path /vendor/lib/soundfx/libreverbwrapper.so + } + visualizer { + path /vendor/lib/soundfx/libvisualizer.so + } + downmix { + path /vendor/lib/soundfx/libdownmix.so + } + loudness_enhancer { + path /vendor/lib/soundfx/libldnhncr.so + } +} + +# Default pre-processing library. Add to audio_effect.conf "libraries" section if +# audio HAL implements support for default software audio pre-processing effects +# +# pre_processing { +# path /vendor/lib/soundfx/libaudiopreprocessing.so +# } + +# list of effects to load. Each effect element must contain a "library" and a "uuid" element. +# The value of the "library" element must correspond to the name of one library element in the +# "libraries" element. +# The name of the effect element is indicative, only the value of the "uuid" element +# designates the effect. +# The uuid is the implementation specific UUID as specified by the effect vendor. This is not the +# generic effect type UUID. +# effects { +# <fx name> { +# library <lib name> +# uuid <effect uuid> +# } +# ... +# } + +effects { + +# additions for the proxy implementation +# Proxy implementation + #effectname { + #library proxy + #uuid xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx + + # SW implemetation of the effect. Added as a node under the proxy to + # indicate this as a sub effect. + #libsw { + #library libSW + #uuid yyyyyyyy-yyyy-yyyy-yyyy-yyyyyyyyyyyy + #} End of SW effect + + # HW implementation of the effect. Added as a node under the proxy to + # indicate this as a sub effect. + #libhw { + #library libHW + #uuid zzzzzzzz-zzzz-zzzz-zzzz-zzzzzzzzzzzz + #}End of HW effect + #} End of effect proxy + + bassboost { + library bundle + uuid 8631f300-72e2-11df-b57e-0002a5d5c51b + } + virtualizer { + library bundle + uuid 1d4033c0-8557-11df-9f2d-0002a5d5c51b + } + equalizer { + library bundle + uuid ce772f20-847d-11df-bb17-0002a5d5c51b + } + volume { + library bundle + uuid 119341a0-8469-11df-81f9-0002a5d5c51b + } + reverb_env_aux { + library reverb + uuid 4a387fc0-8ab3-11df-8bad-0002a5d5c51b + } + reverb_env_ins { + library reverb + uuid c7a511a0-a3bb-11df-860e-0002a5d5c51b + } + reverb_pre_aux { + library reverb + uuid f29a1400-a3bb-11df-8ddc-0002a5d5c51b + } + reverb_pre_ins { + library reverb + uuid 172cdf00-a3bc-11df-a72f-0002a5d5c51b + } + visualizer { + library visualizer + uuid d069d9e0-8329-11df-9168-0002a5d5c51b + } + downmix { + library downmix + uuid 93f04452-e4fe-41cc-91f9-e475b6d1d69f + } + loudness_enhancer { + library loudness_enhancer + uuid fa415329-2034-4bea-b5dc-5b381c8d1e2c + } +} + +# Default pre-processing effects. Add to audio_effect.conf "effects" section if +# audio HAL implements support for them. +# +# agc { +# library pre_processing +# uuid aa8130e0-66fc-11e0-bad0-0002a5d5c51b +# } +# aec { +# library pre_processing +# uuid bb392ec0-8d4d-11e0-a896-0002a5d5c51b +# } +# ns { +# library pre_processing +# uuid c06c8400-8e06-11e0-9cb6-0002a5d5c51b +# } + +# Audio preprocessor configurations. +# The pre processor configuration consists in a list of elements each describing +# pre processor settings for a given input source. Valid input source names are: +# "mic", "camcorder", "voice_recognition", "voice_communication" +# Each input source element contains a list of effects elements. The name of the effect +# element must be the name of one of the effects in the "effects" list of the file. +# Each effect element may optionally contain a list of parameters and their +# default value to apply when the pre processor effect is created. +# A parameter is defined by a "param" element and a "value" element. Each of these elements +# consists in one or more elements specifying a type followed by a value. +# The types defined are: "int", "short", "float", "bool" and "string" +# When both "param" and "value" are a single int, a simple form is allowed where just +# the param and value pair is present in the parameter description +# pre_processing { +# <input source name> { +# <fx name> { +# <param 1 name> { +# param { +# int|short|float|bool|string <value> +# [ int|short|float|bool|string <value> ] +# ... +# } +# value { +# int|short|float|bool|string <value> +# [ int|short|float|bool|string <value> ] +# ... +# } +# } +# <param 2 name > {<param> <value>} +# ... +# } +# ... +# } +# ... +# } + +# +# TODO: add default audio pre processor configurations after debug and tuning phase +# diff --git a/system/etc/audio_policy_configuration.xml b/system/etc/audio_policy_configuration.xml new file mode 100644 index 0000000000000000000000000000000000000000..7af2f810a76eba84e3ee5fbcdef160dd06be9d29 --- /dev/null +++ b/system/etc/audio_policy_configuration.xml @@ -0,0 +1,216 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<!-- Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<audioPolicyConfiguration version="1.0" xmlns:xi="http://www.w3.org/2001/XInclude"> + <!-- version section contains a “version†tag in the form “major.minor†e.g version=â€1.0†--> + + <!-- Global configuration Decalaration --> + <globalConfiguration speaker_drc_enabled="true"/> + + + <!-- Modules section: + There is one section per audio HW module present on the platform. + Each module section will contains two mandatory tags for audio HAL “halVersion†and “nameâ€. + The module names are the same as in current .conf file: + “primaryâ€, “A2DPâ€, “remote_submixâ€, “USB†+ Each module will contain the following sections: + “devicePortsâ€: a list of device descriptors for all input and output devices accessible via this + module. + This contains both permanently attached devices and removable devices. + “mixPortsâ€: listing all output and input streams exposed by the audio HAL + “routesâ€: list of possible connections between input and output devices or between stream and + devices. + "route": is defined by an attribute: + -"type": <mux|mix> means all sources are mutual exclusive (mux) or can be mixed (mix) + -"sink": the sink involved in this route + -"sources": all the sources than can be connected to the sink via vis route + “attachedDevicesâ€: permanently attached devices. + The attachedDevices section is a list of devices names. The names correspond to device names + defined in <devicePorts> section. + “defaultOutputDeviceâ€: device to be used by default when no policy rule applies + --> + <modules> + <!-- Primary Audio HAL --> + <module name="primary" halVersion="3.0"> + <attachedDevices> + <item>Speaker</item> + <item>Built-In Mic</item> + <item>Built-In Back Mic</item> + </attachedDevices> + <defaultOutputDevice>Speaker</defaultOutputDevice> + <mixPorts> + <mixPort name="primary output" role="source" flags="AUDIO_OUTPUT_FLAG_PRIMARY"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="48000" channelMasks="AUDIO_CHANNEL_OUT_STEREO"/> + </mixPort> + <mixPort name="deep_buffer" role="source" + flags="AUDIO_OUTPUT_FLAG_DEEP_BUFFER"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="48000" channelMasks="AUDIO_CHANNEL_OUT_STEREO"/> + </mixPort> + <mixPort name="compressed_offload" role="source" + flags="AUDIO_OUTPUT_FLAG_DIRECT|AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD|AUDIO_OUTPUT_FLAG_NON_BLOCKING"> + <profile name="" format="AUDIO_FORMAT_MP3" + samplingRates="8000,11025,12000,16000,22050,24000,32000,44100,48000" + channelMasks="AUDIO_CHANNEL_OUT_STEREO,AUDIO_CHANNEL_OUT_MONO"/> + <profile name="" format="AUDIO_FORMAT_AAC" + samplingRates="8000,11025,12000,16000,22050,24000,32000,44100,48000" + channelMasks="AUDIO_CHANNEL_OUT_STEREO,AUDIO_CHANNEL_OUT_MONO"/> + <profile name="" format="AUDIO_FORMAT_AAC_LC" + samplingRates="8000,11025,12000,16000,22050,24000,32000,44100,48000" + channelMasks="AUDIO_CHANNEL_OUT_STEREO,AUDIO_CHANNEL_OUT_MONO"/> + </mixPort> + <mixPort name="voice_tx" role="source"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="8000,16000" channelMasks="AUDIO_CHANNEL_OUT_MONO"/> + </mixPort> + <mixPort name="primary input" role="sink"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="8000,11025,12000,16000,22050,24000,32000,44100,48000" + channelMasks="AUDIO_CHANNEL_IN_MONO,AUDIO_CHANNEL_IN_STEREO,AUDIO_CHANNEL_IN_FRONT_BACK"/> + </mixPort> + <mixPort name="voice_rx" role="sink"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="8000,16000" channelMasks="AUDIO_CHANNEL_IN_MONO"/> + </mixPort> + </mixPorts> + <devicePorts> + <!-- Output devices declaration, i.e. Sink DEVICE PORT --> + <devicePort tagName="Earpiece" type="AUDIO_DEVICE_OUT_EARPIECE" role="sink"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="48000" channelMasks="AUDIO_CHANNEL_IN_MONO"/> + </devicePort> + <devicePort tagName="Speaker" role="sink" type="AUDIO_DEVICE_OUT_SPEAKER" address=""> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="48000" channelMasks="AUDIO_CHANNEL_OUT_STEREO"/> + <gains> + <gain name="gain_1" mode="AUDIO_GAIN_MODE_JOINT" + minValueMB="-8400" + maxValueMB="4000" + defaultValueMB="0" + stepValueMB="100"/> + </gains> + </devicePort> + <devicePort tagName="Wired Headset" type="AUDIO_DEVICE_OUT_WIRED_HEADSET" role="sink"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="48000" channelMasks="AUDIO_CHANNEL_OUT_STEREO"/> + </devicePort> + <devicePort tagName="Wired Headphones" type="AUDIO_DEVICE_OUT_WIRED_HEADPHONE" role="sink"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="48000" channelMasks="AUDIO_CHANNEL_OUT_STEREO"/> + </devicePort> + <devicePort tagName="BT SCO" type="AUDIO_DEVICE_OUT_BLUETOOTH_SCO" role="sink"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="8000,16000" channelMasks="AUDIO_CHANNEL_OUT_MONO"/> + </devicePort> + <devicePort tagName="BT SCO Headset" type="AUDIO_DEVICE_OUT_BLUETOOTH_SCO_HEADSET" role="sink"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="8000,16000" channelMasks="AUDIO_CHANNEL_OUT_MONO"/> + </devicePort> + <devicePort tagName="BT SCO Car Kit" type="AUDIO_DEVICE_OUT_BLUETOOTH_SCO_CARKIT" role="sink"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="8000,16000" channelMasks="AUDIO_CHANNEL_OUT_MONO"/> + </devicePort> + <devicePort tagName="Telephony Tx" type="AUDIO_DEVICE_OUT_TELEPHONY_TX" role="sink"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="8000,16000" channelMasks="AUDIO_CHANNEL_OUT_MONO"/> + </devicePort> + + <devicePort tagName="Built-In Mic" type="AUDIO_DEVICE_IN_BUILTIN_MIC" role="source"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="8000,11025,12000,16000,22050,24000,32000,44100,48000" + channelMasks="AUDIO_CHANNEL_IN_MONO,AUDIO_CHANNEL_IN_STEREO,AUDIO_CHANNEL_IN_FRONT_BACK"/> + </devicePort> + <devicePort tagName="Built-In Back Mic" type="AUDIO_DEVICE_IN_BACK_MIC" role="source"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="8000,11025,12000,16000,22050,24000,32000,44100,48000" + channelMasks="AUDIO_CHANNEL_IN_MONO,AUDIO_CHANNEL_IN_STEREO,AUDIO_CHANNEL_IN_FRONT_BACK"/> + </devicePort> + <devicePort tagName="Wired Headset Mic" type="AUDIO_DEVICE_IN_WIRED_HEADSET" role="source"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="8000,11025,12000,16000,22050,24000,32000,44100,48000" + channelMasks="AUDIO_CHANNEL_IN_MONO,AUDIO_CHANNEL_IN_STEREO,AUDIO_CHANNEL_IN_FRONT_BACK"/> + </devicePort> + <devicePort tagName="BT SCO Headset Mic" type="AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET" role="source"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="8000,16000" channelMasks="AUDIO_CHANNEL_IN_MONO"/> + </devicePort> + <devicePort tagName="Telephony Rx" type="AUDIO_DEVICE_IN_TELEPHONY_RX" role="source"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="8000,16000" channelMasks="AUDIO_CHANNEL_IN_MONO"/> + </devicePort> + </devicePorts> + <!-- route declaration, i.e. list all available sources for a given sink --> + <routes> + <route type="mix" sink="Earpiece" + sources="primary output,deep_buffer,BT SCO Headset Mic"/> + <route type="mix" sink="Speaker" + sources="primary output,deep_buffer,compressed_offload,BT SCO Headset Mic,Telephony Rx"/> + <route type="mix" sink="Wired Headset" + sources="primary output,deep_buffer,compressed_offload,BT SCO Headset Mic,Telephony Rx"/> + <route type="mix" sink="Wired Headphones" + sources="primary output,deep_buffer,compressed_offload,BT SCO Headset Mic,Telephony Rx"/> + <route type="mix" sink="Telephony Tx" + sources="voice_tx"/> + <route type="mix" sink="primary input" + sources="Built-In Mic,Built-In Back Mic,Wired Headset Mic,BT SCO Headset Mic"/> + <route type="mix" sink="Telephony Tx" + sources="Built-In Mic,Built-In Back Mic,Wired Headset Mic,BT SCO Headset Mic"/> + <route type="mix" sink="voice_rx" + sources="Telephony Rx"/> + </routes> + + </module> + + <!-- HDMI Audio HAL --> + <module description="HDMI Audio HAL" name="hdmi" version="2.0"> + <mixPorts> + <mixPort name="hdmi output" role="source"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" samplingRates="48000"/> + </mixPort> + </mixPorts> + <devicePorts> + <devicePort tagName="HDMI Out" type="AUDIO_DEVICE_OUT_AUX_DIGITAL" role="sink"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="48000" channelMasks="AUDIO_CHANNEL_OUT_STEREO"/> + </devicePort> + </devicePorts> + <routes> + <route type="mix" sink="HDMI Out" + sources="hdmi output"/> + </routes> + </module> + + <!-- A2dp Audio HAL --> + <xi:include href="a2dp_audio_policy_configuration.xml"/> + + <!-- Usb Audio HAL --> + <xi:include href="usb_audio_policy_configuration.xml"/> + + <!-- Remote Submix Audio HAL --> + <xi:include href="r_submix_audio_policy_configuration.xml"/> + + </modules> + <!-- End of Modules section --> + + <!-- Volume section --> + + <xi:include href="audio_policy_volumes.xml"/> + <xi:include href="default_volume_tables.xml"/> + + <!-- End of Volume section --> + +</audioPolicyConfiguration> diff --git a/system/etc/audio_policy_configuration_stub.xml b/system/etc/audio_policy_configuration_stub.xml new file mode 100644 index 0000000000000000000000000000000000000000..26c381f561c394db2b01078a23b7cca11bd271e6 --- /dev/null +++ b/system/etc/audio_policy_configuration_stub.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<!-- Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<audioPolicyConfiguration version="1.0" xmlns:xi="http://www.w3.org/2001/XInclude"> + <modules> + <!-- Stub Audio HAL --> + <xi:include href="stub_audio_policy_configuration.xml"/> + + <!-- Remote Submix Audio HAL --> + <xi:include href="r_submix_audio_policy_configuration.xml"/> + + </modules> + + <xi:include href="audio_policy_volumes.xml"/> + <xi:include href="default_volume_tables.xml"/> + +</audioPolicyConfiguration> diff --git a/system/etc/audio_policy_volumes.xml b/system/etc/audio_policy_volumes.xml new file mode 100644 index 0000000000000000000000000000000000000000..43a47b045ea17d9ed9e5a01bf516567fb1d440d2 --- /dev/null +++ b/system/etc/audio_policy_volumes.xml @@ -0,0 +1,179 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<!-- Volume section defines a volume curve for a given use case and device category. +It contains a list of points of this curve expressing the attenuation in Millibels for a given +volume index from 0 to 100. +<volume stream=â€AUDIO_STREAM_MUSIC†deviceCategory=â€â€> +<point>0,-9600</point> +<point>100,0</point> +</volume> +--> + +<volumes> + <volume stream="AUDIO_STREAM_VOICE_CALL" deviceCategory="DEVICE_CATEGORY_HEADSET"> + <point>0,-4200</point> + <point>33,-2800</point> + <point>66,-1400</point> + <point>100,0</point> + </volume> + <volume stream="AUDIO_STREAM_VOICE_CALL" deviceCategory="DEVICE_CATEGORY_SPEAKER"> + <point>0,-2400</point> + <point>33,-1600</point> + <point>66,-800</point> + <point>100,0</point> + </volume> + <volume stream="AUDIO_STREAM_VOICE_CALL" deviceCategory="DEVICE_CATEGORY_EARPIECE"> + <point>0,-2400</point> + <point>33,-1600</point> + <point>66,-800</point> + <point>100,0</point> + </volume> + <volume stream="AUDIO_STREAM_VOICE_CALL" deviceCategory="DEVICE_CATEGORY_EXT_MEDIA" + ref="DEFAULT_MEDIA_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_SYSTEM" deviceCategory="DEVICE_CATEGORY_HEADSET"> + <point>1,-3000</point> + <point>33,-2600</point> + <point>66,-2200</point> + <point>100,-1800</point> + </volume> + <volume stream="AUDIO_STREAM_SYSTEM" deviceCategory="DEVICE_CATEGORY_SPEAKER" + ref="DEFAULT_SYSTEM_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_SYSTEM" deviceCategory="DEVICE_CATEGORY_EARPIECE" + ref="DEFAULT_SYSTEM_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_SYSTEM" deviceCategory="DEVICE_CATEGORY_EXT_MEDIA" + ref="DEFAULT_DEVICE_CATEGORY_EXT_MEDIA_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_RING" deviceCategory="DEVICE_CATEGORY_HEADSET" + ref="DEFAULT_DEVICE_CATEGORY_HEADSET_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_RING" deviceCategory="DEVICE_CATEGORY_SPEAKER"> + <point>1,-2970</point> + <point>33,-2010</point> + <point>66,-1020</point> + <point>100,0</point> + </volume> + <volume stream="AUDIO_STREAM_RING" deviceCategory="DEVICE_CATEGORY_EARPIECE" + ref="DEFAULT_DEVICE_CATEGORY_EARPIECE_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_RING" deviceCategory="DEVICE_CATEGORY_EXT_MEDIA" + ref="DEFAULT_DEVICE_CATEGORY_EXT_MEDIA_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_MUSIC" deviceCategory="DEVICE_CATEGORY_HEADSET" + ref="DEFAULT_MEDIA_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_MUSIC" deviceCategory="DEVICE_CATEGORY_SPEAKER" + ref="DEFAULT_DEVICE_CATEGORY_SPEAKER_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_MUSIC" deviceCategory="DEVICE_CATEGORY_EARPIECE" + ref="DEFAULT_MEDIA_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_MUSIC" deviceCategory="DEVICE_CATEGORY_EXT_MEDIA" + ref="DEFAULT_MEDIA_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_ALARM" deviceCategory="DEVICE_CATEGORY_HEADSET" + ref="DEFAULT_DEVICE_CATEGORY_HEADSET_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_ALARM" deviceCategory="DEVICE_CATEGORY_SPEAKER"> + <point>1,-2970</point> + <point>33,-2010</point> + <point>66,-1020</point> + <point>100,0</point> + </volume> + <volume stream="AUDIO_STREAM_ALARM" deviceCategory="DEVICE_CATEGORY_EARPIECE" + ref="DEFAULT_DEVICE_CATEGORY_EARPIECE_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_ALARM" deviceCategory="DEVICE_CATEGORY_EXT_MEDIA" + ref="DEFAULT_DEVICE_CATEGORY_EXT_MEDIA_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_NOTIFICATION" deviceCategory="DEVICE_CATEGORY_HEADSET" + ref="DEFAULT_DEVICE_CATEGORY_HEADSET_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_NOTIFICATION" deviceCategory="DEVICE_CATEGORY_SPEAKER"> + <point>1,-2970</point> + <point>33,-2010</point> + <point>66,-1020</point> + <point>100,0</point> + </volume> + <volume stream="AUDIO_STREAM_NOTIFICATION" deviceCategory="DEVICE_CATEGORY_EARPIECE" + ref="DEFAULT_DEVICE_CATEGORY_EARPIECE_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_NOTIFICATION" deviceCategory="DEVICE_CATEGORY_EXT_MEDIA" + ref="DEFAULT_DEVICE_CATEGORY_EXT_MEDIA_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_BLUETOOTH_SCO" deviceCategory="DEVICE_CATEGORY_HEADSET"> + <point>0,-4200</point> + <point>33,-2800</point> + <point>66,-1400</point> + <point>100,0</point> + </volume> + <volume stream="AUDIO_STREAM_BLUETOOTH_SCO" deviceCategory="DEVICE_CATEGORY_SPEAKER"> + <point>0,-2400</point> + <point>33,-1600</point> + <point>66,-800</point> + <point>100,0</point> + </volume> + <volume stream="AUDIO_STREAM_BLUETOOTH_SCO" deviceCategory="DEVICE_CATEGORY_EARPIECE"> + <point>0,-4200</point> + <point>33,-2800</point> + <point>66,-1400</point> + <point>100,0</point> + </volume> + <volume stream="AUDIO_STREAM_BLUETOOTH_SCO" deviceCategory="DEVICE_CATEGORY_EXT_MEDIA" + ref="DEFAULT_MEDIA_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_ENFORCED_AUDIBLE" deviceCategory="DEVICE_CATEGORY_HEADSET"> + <point>1,-3000</point> + <point>33,-2600</point> + <point>66,-2200</point> + <point>100,-1800</point> + </volume> + <volume stream="AUDIO_STREAM_ENFORCED_AUDIBLE" deviceCategory="DEVICE_CATEGORY_SPEAKER" + ref="DEFAULT_SYSTEM_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_ENFORCED_AUDIBLE" deviceCategory="DEVICE_CATEGORY_EARPIECE" + ref="DEFAULT_SYSTEM_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_ENFORCED_AUDIBLE" deviceCategory="DEVICE_CATEGORY_EXT_MEDIA" + ref="DEFAULT_DEVICE_CATEGORY_EXT_MEDIA_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_DTMF" deviceCategory="DEVICE_CATEGORY_HEADSET"> + <point>1,-3000</point> + <point>33,-2600</point> + <point>66,-2200</point> + <point>100,-1800</point> + </volume> + <volume stream="AUDIO_STREAM_DTMF" deviceCategory="DEVICE_CATEGORY_SPEAKER" + ref="DEFAULT_SYSTEM_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_DTMF" deviceCategory="DEVICE_CATEGORY_EARPIECE" + ref="DEFAULT_SYSTEM_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_DTMF" deviceCategory="DEVICE_CATEGORY_EXT_MEDIA" + ref="DEFAULT_DEVICE_CATEGORY_EXT_MEDIA_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_TTS" deviceCategory="DEVICE_CATEGORY_HEADSET" + ref="SILENT_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_TTS" deviceCategory="DEVICE_CATEGORY_SPEAKER" + ref="FULL_SCALE_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_TTS" deviceCategory="DEVICE_CATEGORY_EARPIECE" + ref="SILENT_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_TTS" deviceCategory="DEVICE_CATEGORY_EXT_MEDIA" + ref="SILENT_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_ACCESSIBILITY" deviceCategory="DEVICE_CATEGORY_HEADSET" + ref="DEFAULT_MEDIA_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_ACCESSIBILITY" deviceCategory="DEVICE_CATEGORY_SPEAKER" + ref="DEFAULT_DEVICE_CATEGORY_SPEAKER_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_ACCESSIBILITY" deviceCategory="DEVICE_CATEGORY_EARPIECE" + ref="DEFAULT_MEDIA_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_ACCESSIBILITY" deviceCategory="DEVICE_CATEGORY_EXT_MEDIA" + ref="DEFAULT_MEDIA_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_REROUTING" deviceCategory="DEVICE_CATEGORY_HEADSET" + ref="FULL_SCALE_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_REROUTING" deviceCategory="DEVICE_CATEGORY_SPEAKER" + ref="FULL_SCALE_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_REROUTING" deviceCategory="DEVICE_CATEGORY_EARPIECE" + ref="FULL_SCALE_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_REROUTING" deviceCategory="DEVICE_CATEGORY_EXT_MEDIA" + ref="FULL_SCALE_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_PATCH" deviceCategory="DEVICE_CATEGORY_HEADSET" + ref="FULL_SCALE_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_PATCH" deviceCategory="DEVICE_CATEGORY_SPEAKER" + ref="FULL_SCALE_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_PATCH" deviceCategory="DEVICE_CATEGORY_EARPIECE" + ref="FULL_SCALE_VOLUME_CURVE"/> + <volume stream="AUDIO_STREAM_PATCH" deviceCategory="DEVICE_CATEGORY_EXT_MEDIA" + ref="FULL_SCALE_VOLUME_CURVE"/> +</volumes> + diff --git a/system/etc/bluetooth/bt_did.conf b/system/etc/bluetooth/bt_did.conf new file mode 100644 index 0000000000000000000000000000000000000000..942a854f5f020ae20c76721149dfb15f241666b0 --- /dev/null +++ b/system/etc/bluetooth/bt_did.conf @@ -0,0 +1,88 @@ +# Device ID (DID) configuration +[DID1] + +# Primary Record - true or false (default) +# There can be only one primary record +primaryRecord = true + +# Vendor ID '0xFFFF' indicates no Device ID Service Record is present in the device +# 0x000F = Broadcom Corporation (default) +#vendorId = 0x000F + +# Set right vendorId +vendorId = 0x0046 + +# Vendor ID Source +# 0x0001 = Bluetooth SIG assigned Device ID Vendor ID value (default) +# 0x0002 = USB Implementer's Forum assigned Device ID Vendor ID value +#vendorIdSource = 0x0001 + +# Product ID & Product Version +# Per spec DID v1.3 0xJJMN for version is interpreted as JJ.M.N +# JJ: major version number, M: minor version number, N: sub-minor version number +# For example: 1200, v14.3.6 +productId = 0x1200 +version = 0x1436 + +# Optional attributes +#clientExecutableURL = +#serviceDescription = +#documentationURL = + +#=================================================================================================# +# Device ID (DID) configuration +[DID2] + +# Primary Record - true or false (default) +# There can be only one primary record +#primaryRecord = false + +# Vendor ID '0xFFFF' indicates no Device ID Service Record is present in the device +# 0x000F = Broadcom Corporation (default) +#vendorId = 0x000F + +# Vendor ID Source +# 0x0001 = Bluetooth SIG assigned Device ID Vendor ID value (default) +# 0x0002 = USB Implementer's Forum assigned Device ID Vendor ID value +#vendorIdSource = 0x0001 + +# Product ID & Product Version +# Per spec DID v1.3 0xJJMN for version is interpreted as JJ.M.N +# JJ: major version number, M: minor version number, N: sub-minor version number +# Default: 0x0000, v00.0.0 +#productId = 0x0000 +#version = 0x0000 + +# Optional attributes +#clientExecutableURL = +#serviceDescription = +#documentationURL = + +#=================================================================================================# +# Device ID (DID) configuration +[DID3] + +# Primary Record - true or false (default) +# There can be only one primary record +#primaryRecord = false + +# Vendor ID '0xFFFF' indicates no Device ID Service Record is present in the device +# 0x000F = Broadcom Corporation (default) +#vendorId = 0x000F + +# Vendor ID Source +# 0x0001 = Bluetooth SIG assigned Device ID Vendor ID value (default) +# 0x0002 = USB Implementer's Forum assigned Device ID Vendor ID value +#vendorIdSource = 0x0001 + +# Product ID & Product Version +# Per spec DID v1.3 0xJJMN for version is interpreted as JJ.M.N +# JJ: major version number, M: minor version number, N: sub-minor version number +# Default: 0x0000, v00.0.0 +#productId = 0x0000 +#version = 0x0000 + +# Optional attributes +#clientExecutableURL = +#serviceDescription = +#documentationURL = diff --git a/system/etc/bluetooth/bt_stack.conf b/system/etc/bluetooth/bt_stack.conf new file mode 100644 index 0000000000000000000000000000000000000000..f1557b162d368cc820e614f46fc947894e822f99 --- /dev/null +++ b/system/etc/bluetooth/bt_stack.conf @@ -0,0 +1,67 @@ +# Enable trace level reconfiguration function +# Must be present before any TRC_ trace level settings +TraceConf=true + +# Trace level configuration +# BT_TRACE_LEVEL_NONE 0 ( No trace messages to be generated ) +# BT_TRACE_LEVEL_ERROR 1 ( Error condition trace messages ) +# BT_TRACE_LEVEL_WARNING 2 ( Warning condition trace messages ) +# BT_TRACE_LEVEL_API 3 ( API traces ) +# BT_TRACE_LEVEL_EVENT 4 ( Debug messages for events ) +# BT_TRACE_LEVEL_DEBUG 5 ( Full debug messages ) +# BT_TRACE_LEVEL_VERBOSE 6 ( Verbose messages ) - Currently supported for TRC_BTAPP only. +TRC_BTM=2 +TRC_HCI=2 +TRC_L2CAP=2 +TRC_RFCOMM=2 +TRC_OBEX=2 +TRC_AVCT=2 +TRC_AVDT=2 +TRC_AVRC=2 +TRC_AVDT_SCB=2 +TRC_AVDT_CCB=2 +TRC_A2D=2 +TRC_SDP=2 +TRC_SMP=2 +TRC_BTAPP=2 +TRC_BTIF=2 +TRC_BNEP=2 +TRC_PAN=2 +TRC_HID_HOST=2 +TRC_HID_DEV=2 + +# This is Log configuration for new C++ code using LOG() macros. +# See libchrome/base/logging.h for description on how to configure your logs. +# sample configuration: +#LoggingV=--v=0 +#LoggingVModule=--vmodule=*/btm/*=1,btm_ble_multi*=2,btif_*=1 + +# PTS testing helpers + +# Secure connections only mode. +# PTS_SecurePairOnly=true + +# Disable LE Connection updates +#PTS_DisableConnUpdates=true + +# Disable BR/EDR discovery after LE pairing to avoid cross key derivation errors +#PTS_DisableSDPOnLEPair=true + +# SMP Pair options (formatted as hex bytes) auth, io, ikey, rkey, ksize +#PTS_SmpOptions=0xD,0x4,0xf,0xf,0x10 + +# SMP Certification Failure Cases +# Set any of the following SMP error values (from smp_api_types.h) +# to induce pairing failues for various PTS SMP test cases. +# Setting PTS_SmpFailureCase to 0 means normal operation. +# Failure modes: +# +# SMP_PASSKEY_ENTRY_FAIL = 1 +# SMP_PAIR_AUTH_FAIL = 3 +# SMP_CONFIRM_VALUE_ERR = 4 +# SMP_PAIR_NOT_SUPPORT = 5 +# SMP_PAIR_FAIL_UNKNOWN = 8 +# SMP_REPEATED_ATTEMPTS = 9 +# SMP_NUMERIC_COMPAR_FAIL = 12 +#PTS_SmpFailureCase=0 + diff --git a/system/etc/bluetooth/mtk_bt_fw.conf b/system/etc/bluetooth/mtk_bt_fw.conf new file mode 100644 index 0000000000000000000000000000000000000000..0c65fe905e279a1024a26c8d25952ea689d47618 --- /dev/null +++ b/system/etc/bluetooth/mtk_bt_fw.conf @@ -0,0 +1,84 @@ +# +# Control FW Log +# + +[MtkBtFwLogOff] +# FCBE switch +# Ex. Disable FWlog to set C1 = 01 BE FC 01 00 / Enable FWlog to set C1 = 01 BE FC 01 05 +C1 = 01 BE FC 01 00 +# FC5F filter +C2 = 01 5F FC 2A 50 01 09 00 00 00 +# FC5F group filter bitmap +# SYS +C201 = 00 00 00 00 +# TIM +C202 = 00 00 00 00 +# PKV +C203 = 00 00 00 00 +# LC +C204 = 00 00 00 00 +# LL +C205 = 00 00 00 00 +# ANT +C206 = 00 00 00 00 +# LMP +C207 = 00 00 00 00 +# CO +C208 = 00 00 00 00 +# VOICE +C209 = 00 00 00 00 + + +[MtkBtFwLogSqc] + +# FCBE switch - Disable +# Ex. Disable FWlog to set C1 = 01 BE FC 01 00 / Enable FWlog to set C1 = 01 BE FC 01 05 +C1 = 01 BE FC 01 05 +# FC5F filter +C2 = 01 5F FC 2A 50 01 09 00 00 00 +# FC5F group filter bitmap +# SYS +C201 = 00 00 00 88 +# TIM +C202 = 00 00 00 00 +# PKV +C203 = 00 00 00 00 +# LC +C204 = 00 00 00 00 +# LL +C205 = 00 00 00 00 +# ANT +C206 = 00 00 00 00 +# LMP +C207 = 00 00 00 00 +# CO +C208 = 00 00 00 00 +# VOICE +C209 = 00 00 00 00 + +[MtkBtFwLogDebug] + +# FCBE switch - Enable +# Ex. Disable FWlog to set C1 = 01 BE FC 01 00 / Enable FWlog to set C1 = 01 BE FC 01 05 +C1 = 01 BE FC 01 05 +# FC5F filter +C2 = 01 5F FC 2A 50 01 09 00 00 00 +# FC5F group filter bitmap +# SYS +C201 = 00 00 00 CC +# TIM +C202 = 00 00 00 00 +# PKV +C203 = 00 00 00 00 +# LC +C204 = 1F F0 00 00 +# LL +C205 = 07 27 06 00 +# ANT +C206 = 00 00 00 00 +# LMP +C207 = 03 00 03 00 +# CO +C208 = 03 08 00 00 +# VOICE +C209 = 00 00 00 00 \ No newline at end of file diff --git a/system/etc/bluetooth/mtk_bt_stack.conf b/system/etc/bluetooth/mtk_bt_stack.conf new file mode 100644 index 0000000000000000000000000000000000000000..3223e2caaf31ab3368a4a9e400b6d0905779d7bd --- /dev/null +++ b/system/etc/bluetooth/mtk_bt_stack.conf @@ -0,0 +1,39 @@ +# Enable trace level reconfiguration function +# Must be present before any TRC_ trace level settings +TraceConf=true + +# Trace level configuration +# BT_TRACE_LEVEL_NONE 0 ( No trace messages to be generated ) +# BT_TRACE_LEVEL_ERROR 1 ( Error condition trace messages ) +# BT_TRACE_LEVEL_WARNING 2 ( Warning condition trace messages ) +# BT_TRACE_LEVEL_API 3 ( API traces ) +# BT_TRACE_LEVEL_EVENT 4 ( Debug messages for events ) +# BT_TRACE_LEVEL_DEBUG 5 ( Full debug messages ) +# BT_TRACE_LEVEL_VERBOSE 6 ( Verbose messages ) - Currently supported for TRC_BTAPP only. +TRC_BTM=6 +TRC_HCI=6 +TRC_L2CAP=6 +TRC_RFCOMM=6 +TRC_OBEX=6 +TRC_AVCT=6 +TRC_AVDT=6 +TRC_AVRC=6 +TRC_AVDT_SCB=6 +TRC_AVDT_CCB=6 +TRC_A2D=6 +TRC_SDP=6 +TRC_GATT=6 +TRC_SMP=6 +TRC_BTAPP=6 +TRC_BTIF=6 +TRC_GAP=6 +TRC_BNEP=6 +TRC_PAN=6 +TRC_HID_HOST=6 +TRC_HID_DEV=6 + +# This is Log configuration for new C++ code using LOG() macros. +# See libchrome/base/logging.h for description on how to configure your logs. +# sample configuration: +LoggingV=--v=2 +#LoggingVModule=--vmodule=*/btm/*=1,btm_ble_multi*=2,btif_*=1 diff --git a/system/etc/boot-image.prof b/system/etc/boot-image.prof new file mode 100644 index 0000000000000000000000000000000000000000..f8f13c897f65fafda9186633fd0350f658095fa6 Binary files /dev/null and b/system/etc/boot-image.prof differ diff --git a/system/etc/clatd.conf b/system/etc/clatd.conf new file mode 100644 index 0000000000000000000000000000000000000000..ff80975ea61b3595d96f46f95ee2ad9673c552df --- /dev/null +++ b/system/etc/clatd.conf @@ -0,0 +1,22 @@ +# Host IID to use as the source of CLAT traffic. +# This is a /128 taken out of the /64 on the parent interface. +# A host IID of :: means to generate a checksum-neutral, random IID. +ipv6_host_id :: + +# IPv4 address configuration to use when selecting a host address. The first +# clat daemon started will use the address specified by ipv4_local_subnet. If +# more than one daemon is run at the same time, subsequent daemons will use +# other addresses in the prefix of length ipv4_local prefixlen that contains +# ipv4_local_subnet. The default is to use the IANA-assigned range 192.0.0.0/29, +# which allows up to 8 clat daemons (.4, .5, .6, .7, .0, .1, .2, .3). +ipv4_local_subnet 192.0.0.4 +ipv4_local_prefixlen 29 + +# get the plat_subnet from dns lookups (requires DNS64) +plat_from_dns64 yes +# hostname to use to lookup plat subnet. must contain only A records +plat_from_dns64_hostname ipv4only.arpa + +# plat subnet to send ipv4 traffic to. This is a /96 subnet. +# This setting only makes sense with: plat_from_dns64 no +#plat_subnet 2001:db8:1:2:3:4:: diff --git a/system/etc/compiled-classes b/system/etc/compiled-classes new file mode 100644 index 0000000000000000000000000000000000000000..7d8a7b518c46ca63cb2ae1a2f2e2530fe9d741a0 --- /dev/null +++ b/system/etc/compiled-classes @@ -0,0 +1,8664 @@ +# +# Copyright (C) 2017 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# +# +# Compiled-classes filter file for phones. +# +# Using a compiled-classes file filters non-mentioned classes from being compiled into +# the boot.oat file(s), reducing the size of the boot image. This is a tradeoff, as classes +# that have not been compiled must be run with the interpreter or through JIT. +# +# This file has been derived for mainline phone (and tablet) usage in concern with the +# preloaded-classes file, but is not used by default. To use this file, add a copy statement +# to your device.mk, e.g., +# +# PRODUCT_COPY_FILES += \ +# frameworks/base/config/compiled-classes-phone:system/etc/compiled-classes +# +android.R$styleable +android.accessibilityservice.AccessibilityServiceInfo +android.accessibilityservice.AccessibilityServiceInfo$1 +android.accessibilityservice.IAccessibilityServiceClient +android.accessibilityservice.IAccessibilityServiceConnection +android.accessibilityservice.IAccessibilityServiceConnection$Stub +android.accounts.AbstractAccountAuthenticator +android.accounts.AbstractAccountAuthenticator$Transport +android.accounts.Account +android.accounts.Account$1 +android.accounts.AccountAndUser +android.accounts.AccountAuthenticatorResponse +android.accounts.AccountAuthenticatorResponse$1 +android.accounts.AccountManager +android.accounts.AccountManager$1 +android.accounts.AccountManager$11 +android.accounts.AccountManager$19 +android.accounts.AccountManager$3 +android.accounts.AccountManager$4 +android.accounts.AccountManager$AmsTask +android.accounts.AccountManager$AmsTask$1 +android.accounts.AccountManager$AmsTask$Response +android.accounts.AccountManager$BaseFutureTask +android.accounts.AccountManager$BaseFutureTask$1 +android.accounts.AccountManager$BaseFutureTask$Response +android.accounts.AccountManager$Future2Task +android.accounts.AccountManager$Future2Task$1 +android.accounts.AccountManagerCallback +android.accounts.AccountManagerFuture +android.accounts.AccountManagerInternal +android.accounts.AccountManagerInternal$OnAppPermissionChangeListener +android.accounts.AccountsException +android.accounts.AuthenticatorDescription +android.accounts.AuthenticatorDescription$1 +android.accounts.AuthenticatorException +android.accounts.IAccountAuthenticator +android.accounts.IAccountAuthenticator$Stub +android.accounts.IAccountAuthenticator$Stub$Proxy +android.accounts.IAccountAuthenticatorResponse +android.accounts.IAccountAuthenticatorResponse$Stub +android.accounts.IAccountAuthenticatorResponse$Stub$Proxy +android.accounts.IAccountManager +android.accounts.IAccountManager$Stub +android.accounts.IAccountManager$Stub$Proxy +android.accounts.IAccountManagerResponse +android.accounts.IAccountManagerResponse$Stub +android.accounts.IAccountManagerResponse$Stub$Proxy +android.accounts.OnAccountsUpdateListener +android.accounts.OperationCanceledException +android.animation.AnimationHandler +android.animation.AnimationHandler$1 +android.animation.AnimationHandler$AnimationFrameCallback +android.animation.AnimationHandler$AnimationFrameCallbackProvider +android.animation.AnimationHandler$MyFrameCallbackProvider +android.animation.Animator +android.animation.Animator$AnimatorConstantState +android.animation.Animator$AnimatorListener +android.animation.Animator$AnimatorPauseListener +android.animation.AnimatorInflater +android.animation.AnimatorInflater$PathDataEvaluator +android.animation.AnimatorListenerAdapter +android.animation.AnimatorSet +android.animation.AnimatorSet$1 +android.animation.AnimatorSet$2 +android.animation.AnimatorSet$3 +android.animation.AnimatorSet$AnimationEvent +android.animation.AnimatorSet$Builder +android.animation.AnimatorSet$Node +android.animation.AnimatorSet$SeekState +android.animation.ArgbEvaluator +android.animation.FloatArrayEvaluator +android.animation.FloatEvaluator +android.animation.FloatKeyframeSet +android.animation.IntEvaluator +android.animation.IntKeyframeSet +android.animation.Keyframe +android.animation.Keyframe$FloatKeyframe +android.animation.Keyframe$IntKeyframe +android.animation.Keyframe$ObjectKeyframe +android.animation.KeyframeSet +android.animation.Keyframes +android.animation.Keyframes$FloatKeyframes +android.animation.Keyframes$IntKeyframes +android.animation.LayoutTransition +android.animation.LayoutTransition$1 +android.animation.LayoutTransition$2 +android.animation.LayoutTransition$3 +android.animation.LayoutTransition$4 +android.animation.LayoutTransition$5 +android.animation.LayoutTransition$CleanupCallback +android.animation.LayoutTransition$TransitionListener +android.animation.ObjectAnimator +android.animation.PathKeyframes +android.animation.PathKeyframes$1 +android.animation.PathKeyframes$2 +android.animation.PathKeyframes$FloatKeyframesBase +android.animation.PathKeyframes$IntKeyframesBase +android.animation.PathKeyframes$SimpleKeyframes +android.animation.PropertyValuesHolder +android.animation.PropertyValuesHolder$1 +android.animation.PropertyValuesHolder$FloatPropertyValuesHolder +android.animation.PropertyValuesHolder$IntPropertyValuesHolder +android.animation.PropertyValuesHolder$PropertyValues +android.animation.PropertyValuesHolder$PropertyValues$DataSource +android.animation.RectEvaluator +android.animation.RevealAnimator +android.animation.StateListAnimator +android.animation.StateListAnimator$1 +android.animation.StateListAnimator$StateListAnimatorConstantState +android.animation.StateListAnimator$Tuple +android.animation.TimeAnimator +android.animation.TimeAnimator$TimeListener +android.animation.TimeInterpolator +android.animation.TypeEvaluator +android.animation.ValueAnimator +android.animation.ValueAnimator$AnimatorUpdateListener +android.app.-$Lambda$9I5WEMsoBc7l4QrNqZ4wx59yuHU +android.app.-$Lambda$9I5WEMsoBc7l4QrNqZ4wx59yuHU$1 +android.app.-$Lambda$CsyQO--8YdRe5wlajUCi-L98enA$1 +android.app.-$Lambda$CsyQO--8YdRe5wlajUCi-L98enA$2 +android.app.-$Lambda$CsyQO--8YdRe5wlajUCi-L98enA$3 +android.app.-$Lambda$FilBqgnXJrN9Mgyks1XHeAxzSTk +android.app.-$Lambda$aS31cHIhRx41653CMnd4gZqshIQ +android.app.-$Lambda$c44uHH2WE4sJvw5tZZB6gRzEaHI +android.app.-$Lambda$c44uHH2WE4sJvw5tZZB6gRzEaHI$1 +android.app.-$Lambda$vZ1qb742P9hE4drBY-TrOZB_qKo +android.app.-$Lambda$w9bG0NLfK6B6UpQKzQS6S1ayAh0 +android.app.-$Lambda$w9bG0NLfK6B6UpQKzQS6S1ayAh0$1 +android.app.ActionBar +android.app.ActionBar$LayoutParams +android.app.Activity +android.app.Activity$HostCallbacks +android.app.ActivityManager +android.app.ActivityManager$1 +android.app.ActivityManager$AppTask +android.app.ActivityManager$MemoryInfo +android.app.ActivityManager$MemoryInfo$1 +android.app.ActivityManager$OnUidImportanceListener +android.app.ActivityManager$ProcessErrorStateInfo +android.app.ActivityManager$RecentTaskInfo +android.app.ActivityManager$RecentTaskInfo$1 +android.app.ActivityManager$RunningAppProcessInfo +android.app.ActivityManager$RunningAppProcessInfo$1 +android.app.ActivityManager$RunningServiceInfo +android.app.ActivityManager$RunningServiceInfo$1 +android.app.ActivityManager$RunningTaskInfo +android.app.ActivityManager$RunningTaskInfo$1 +android.app.ActivityManager$StackId +android.app.ActivityManager$StackInfo +android.app.ActivityManager$StackInfo$1 +android.app.ActivityManager$TaskDescription +android.app.ActivityManager$TaskDescription$1 +android.app.ActivityManager$TaskSnapshot +android.app.ActivityManager$TaskSnapshot$1 +android.app.ActivityManager$TaskThumbnail +android.app.ActivityManager$TaskThumbnailInfo +android.app.ActivityManager$TaskThumbnailInfo$1 +android.app.ActivityManager$UidObserver +android.app.ActivityManagerInternal +android.app.ActivityManagerInternal$SleepToken +android.app.ActivityOptions +android.app.ActivityOptions$1 +android.app.ActivityOptions$1$1 +android.app.ActivityOptions$OnAnimationFinishedListener +android.app.ActivityOptions$OnAnimationStartedListener +android.app.ActivityThread +android.app.ActivityThread$1 +android.app.ActivityThread$2 +android.app.ActivityThread$ActivityClientRecord +android.app.ActivityThread$ActivityConfigChangeData +android.app.ActivityThread$AppBindData +android.app.ActivityThread$ApplicationThread +android.app.ActivityThread$BindServiceData +android.app.ActivityThread$ContextCleanupInfo +android.app.ActivityThread$CreateServiceData +android.app.ActivityThread$DropBoxReporter +android.app.ActivityThread$EventLoggingReporter +android.app.ActivityThread$GcIdler +android.app.ActivityThread$H +android.app.ActivityThread$Idler +android.app.ActivityThread$NewIntentData +android.app.ActivityThread$Profiler +android.app.ActivityThread$ProviderClientRecord +android.app.ActivityThread$ProviderKey +android.app.ActivityThread$ProviderRefCount +android.app.ActivityThread$ReceiverData +android.app.ActivityThread$RequestAssistContextExtras +android.app.ActivityThread$ResultData +android.app.ActivityThread$ServiceArgsData +android.app.ActivityThread$StopInfo +android.app.ActivityTransitionCoordinator +android.app.ActivityTransitionCoordinator$ContinueTransitionListener +android.app.ActivityTransitionCoordinator$FixedEpicenterCallback +android.app.ActivityTransitionCoordinator$GhostViewListeners +android.app.ActivityTransitionCoordinator$SharedElementOriginalState +android.app.ActivityTransitionState +android.app.AlarmManager$AlarmClockInfo +android.app.AlarmManager$ListenerWrapper +android.app.AlarmManager$OnAlarmListener +android.app.AlertDialog +android.app.AlertDialog$Builder +android.app.AppGlobals +android.app.AppOpsManager +android.app.AppOpsManager$1 +android.app.AppOpsManager$OnOpChangedInternalListener +android.app.AppOpsManager$OnOpChangedListener +android.app.AppOpsManager$OpEntry +android.app.AppOpsManager$OpEntry$1 +android.app.AppOpsManager$PackageOps +android.app.AppOpsManager$PackageOps$1 +android.app.Application +android.app.Application$ActivityLifecycleCallbacks +android.app.ApplicationErrorReport +android.app.ApplicationErrorReport$AnrInfo +android.app.ApplicationErrorReport$CrashInfo +android.app.ApplicationErrorReport$ParcelableCrashInfo +android.app.ApplicationErrorReport$ParcelableCrashInfo$1 +android.app.ApplicationLoaders +android.app.ApplicationPackageManager +android.app.ApplicationPackageManager$MoveCallbackDelegate +android.app.ApplicationPackageManager$OnPermissionsChangeListenerDelegate +android.app.ApplicationPackageManager$ResourceName +android.app.AutomaticZenRule +android.app.BackStackRecord +android.app.BackStackRecord$Op +android.app.BroadcastOptions +android.app.ContentProviderHolder +android.app.ContentProviderHolder$1 +android.app.ContextImpl +android.app.ContextImpl$1 +android.app.ContextImpl$ApplicationContentResolver +android.app.DatePickerDialog$OnDateSetListener +android.app.DexLoadReporter +android.app.Dialog +android.app.Dialog$ListenersHandler +android.app.DialogFragment +android.app.DownloadManager +android.app.DownloadManager$CursorTranslator +android.app.DownloadManager$Query +android.app.EnterTransitionCoordinator +android.app.EnterTransitionCoordinator$1 +android.app.EnterTransitionCoordinator$2 +android.app.EnterTransitionCoordinator$3 +android.app.EnterTransitionCoordinator$4 +android.app.EnterTransitionCoordinator$5 +android.app.EnterTransitionCoordinator$6 +android.app.ExitTransitionCoordinator +android.app.ExitTransitionCoordinator$10 +android.app.ExitTransitionCoordinator$3 +android.app.ExitTransitionCoordinator$9 +android.app.Fragment +android.app.Fragment$1 +android.app.Fragment$AnimationInfo +android.app.FragmentContainer +android.app.FragmentController +android.app.FragmentHostCallback +android.app.FragmentManager +android.app.FragmentManager$BackStackEntry +android.app.FragmentManager$FragmentLifecycleCallbacks +android.app.FragmentManager$OnBackStackChangedListener +android.app.FragmentManagerImpl +android.app.FragmentManagerImpl$1 +android.app.FragmentManagerImpl$AnimateOnHWLayerIfNeededListener +android.app.FragmentManagerImpl$OpGenerator +android.app.FragmentManagerState +android.app.FragmentManagerState$1 +android.app.FragmentState +android.app.FragmentState$1 +android.app.FragmentTransaction +android.app.FragmentTransition +android.app.FragmentTransition$FragmentContainerTransition +android.app.IActivityContainer +android.app.IActivityContainer$Stub +android.app.IActivityContainerCallback +android.app.IActivityController +android.app.IActivityManager +android.app.IActivityManager$Stub +android.app.IActivityManager$Stub$Proxy +android.app.IAlarmCompleteListener +android.app.IAlarmCompleteListener$Stub +android.app.IAlarmCompleteListener$Stub$Proxy +android.app.IAlarmListener +android.app.IAlarmListener$Stub +android.app.IAlarmListener$Stub$Proxy +android.app.IAlarmManager +android.app.IAlarmManager$Stub +android.app.IAlarmManager$Stub$Proxy +android.app.IAppTask +android.app.IAppTask$Stub +android.app.IAppTask$Stub$Proxy +android.app.IApplicationThread +android.app.IApplicationThread$Stub +android.app.IApplicationThread$Stub$Proxy +android.app.IInstantAppResolver +android.app.IInstantAppResolver$Stub +android.app.IInstantAppResolver$Stub$Proxy +android.app.IInstrumentationWatcher +android.app.IInstrumentationWatcher$Stub +android.app.INotificationManager +android.app.INotificationManager$Stub +android.app.INotificationManager$Stub$Proxy +android.app.IProcessObserver +android.app.IProcessObserver$Stub +android.app.IProcessObserver$Stub$Proxy +android.app.ISearchManager +android.app.ISearchManager$Stub +android.app.ISearchManager$Stub$Proxy +android.app.IServiceConnection +android.app.IServiceConnection$Stub +android.app.IServiceConnection$Stub$Proxy +android.app.IStopUserCallback +android.app.ITaskStackListener +android.app.ITaskStackListener$Stub +android.app.ITaskStackListener$Stub$Proxy +android.app.ITransientNotification +android.app.ITransientNotification$Stub +android.app.ITransientNotification$Stub$Proxy +android.app.IUiAutomationConnection +android.app.IUiAutomationConnection$Stub +android.app.IUiModeManager +android.app.IUiModeManager$Stub +android.app.IUiModeManager$Stub$Proxy +android.app.IUidObserver +android.app.IUidObserver$Stub +android.app.IUidObserver$Stub$Proxy +android.app.IUserSwitchObserver +android.app.IUserSwitchObserver$Stub +android.app.IUserSwitchObserver$Stub$Proxy +android.app.IWallpaperManager +android.app.IWallpaperManager$Stub +android.app.IWallpaperManager$Stub$Proxy +android.app.IWallpaperManagerCallback +android.app.IWallpaperManagerCallback$Stub +android.app.IWallpaperManagerCallback$Stub$Proxy +android.app.InstantAppResolverService +android.app.InstantAppResolverService$1 +android.app.InstantAppResolverService$InstantAppResolutionCallback +android.app.InstantAppResolverService$ServiceHandler +android.app.Instrumentation +android.app.IntentReceiverLeaked +android.app.IntentService +android.app.IntentService$ServiceHandler +android.app.JobSchedulerImpl +android.app.KeyguardManager +android.app.KeyguardManager$1 +android.app.KeyguardManager$KeyguardDismissCallback +android.app.ListActivity +android.app.ListFragment +android.app.ListFragment$1 +android.app.ListFragment$2 +android.app.LoadedApk +android.app.LoadedApk$ReceiverDispatcher +android.app.LoadedApk$ReceiverDispatcher$Args +android.app.LoadedApk$ReceiverDispatcher$InnerReceiver +android.app.LoadedApk$ServiceDispatcher +android.app.LoadedApk$ServiceDispatcher$ConnectionInfo +android.app.LoadedApk$ServiceDispatcher$DeathMonitor +android.app.LoadedApk$ServiceDispatcher$InnerConnection +android.app.LoadedApk$ServiceDispatcher$RunConnection +android.app.LoadedApk$WarningContextClassLoader +android.app.LoaderManager +android.app.LoaderManager$LoaderCallbacks +android.app.LoaderManagerImpl +android.app.LoaderManagerImpl$LoaderInfo +android.app.NativeActivity +android.app.Notification +android.app.Notification$1 +android.app.Notification$Action +android.app.Notification$Action$1 +android.app.Notification$Action$Builder +android.app.Notification$BigPictureStyle +android.app.Notification$BigTextStyle +android.app.Notification$Builder +android.app.Notification$BuilderRemoteViews +android.app.Notification$DecoratedCustomViewStyle +android.app.Notification$DecoratedMediaCustomViewStyle +android.app.Notification$Extender +android.app.Notification$InboxStyle +android.app.Notification$MediaStyle +android.app.Notification$MessagingStyle +android.app.Notification$StandardTemplateParams +android.app.Notification$Style +android.app.Notification$TvExtender +android.app.Notification$WearableExtender +android.app.NotificationChannel +android.app.NotificationChannel$1 +android.app.NotificationChannelGroup +android.app.NotificationChannelGroup$1 +android.app.NotificationManager +android.app.NotificationManager$Policy +android.app.NotificationManager$Policy$1 +android.app.OnActivityPausedListener +android.app.PackageInstallObserver +android.app.PackageInstallObserver$1 +android.app.PendingIntent +android.app.PendingIntent$1 +android.app.PendingIntent$CanceledException +android.app.PendingIntent$FinishedDispatcher +android.app.PendingIntent$OnFinished +android.app.PendingIntent$OnMarshaledListener +android.app.PictureInPictureParams +android.app.PictureInPictureParams$1 +android.app.PictureInPictureParams$Builder +android.app.ProfilerInfo +android.app.ProgressDialog +android.app.QueuedWork +android.app.QueuedWork$QueuedWorkHandler +android.app.ReceiverRestrictedContext +android.app.RemoteAction +android.app.RemoteAction$1 +android.app.RemoteInput +android.app.RemoteInput$1 +android.app.ResourcesManager +android.app.ResourcesManager$1 +android.app.ResourcesManager$ActivityResources +android.app.ResultInfo +android.app.ResultInfo$1 +android.app.SearchableInfo +android.app.SearchableInfo$1 +android.app.Service +android.app.ServiceConnectionLeaked +android.app.ServiceStartArgs +android.app.ServiceStartArgs$1 +android.app.SharedElementCallback +android.app.SharedElementCallback$1 +android.app.SharedElementCallback$OnSharedElementsReadyListener +android.app.SharedPreferencesImpl +android.app.SharedPreferencesImpl$1 +android.app.SharedPreferencesImpl$2 +android.app.SharedPreferencesImpl$EditorImpl +android.app.SharedPreferencesImpl$EditorImpl$1 +android.app.SharedPreferencesImpl$EditorImpl$2 +android.app.SharedPreferencesImpl$EditorImpl$3 +android.app.SharedPreferencesImpl$MemoryCommitResult +android.app.StatusBarManager +android.app.SynchronousUserSwitchObserver +android.app.SystemServiceRegistry +android.app.SystemServiceRegistry$1 +android.app.SystemServiceRegistry$10 +android.app.SystemServiceRegistry$11 +android.app.SystemServiceRegistry$12 +android.app.SystemServiceRegistry$13 +android.app.SystemServiceRegistry$14 +android.app.SystemServiceRegistry$15 +android.app.SystemServiceRegistry$16 +android.app.SystemServiceRegistry$17 +android.app.SystemServiceRegistry$18 +android.app.SystemServiceRegistry$19 +android.app.SystemServiceRegistry$2 +android.app.SystemServiceRegistry$20 +android.app.SystemServiceRegistry$21 +android.app.SystemServiceRegistry$22 +android.app.SystemServiceRegistry$23 +android.app.SystemServiceRegistry$24 +android.app.SystemServiceRegistry$25 +android.app.SystemServiceRegistry$26 +android.app.SystemServiceRegistry$27 +android.app.SystemServiceRegistry$28 +android.app.SystemServiceRegistry$29 +android.app.SystemServiceRegistry$3 +android.app.SystemServiceRegistry$30 +android.app.SystemServiceRegistry$31 +android.app.SystemServiceRegistry$32 +android.app.SystemServiceRegistry$33 +android.app.SystemServiceRegistry$34 +android.app.SystemServiceRegistry$35 +android.app.SystemServiceRegistry$36 +android.app.SystemServiceRegistry$37 +android.app.SystemServiceRegistry$38 +android.app.SystemServiceRegistry$39 +android.app.SystemServiceRegistry$4 +android.app.SystemServiceRegistry$40 +android.app.SystemServiceRegistry$41 +android.app.SystemServiceRegistry$42 +android.app.SystemServiceRegistry$43 +android.app.SystemServiceRegistry$44 +android.app.SystemServiceRegistry$45 +android.app.SystemServiceRegistry$46 +android.app.SystemServiceRegistry$47 +android.app.SystemServiceRegistry$48 +android.app.SystemServiceRegistry$49 +android.app.SystemServiceRegistry$5 +android.app.SystemServiceRegistry$50 +android.app.SystemServiceRegistry$51 +android.app.SystemServiceRegistry$52 +android.app.SystemServiceRegistry$53 +android.app.SystemServiceRegistry$54 +android.app.SystemServiceRegistry$55 +android.app.SystemServiceRegistry$56 +android.app.SystemServiceRegistry$57 +android.app.SystemServiceRegistry$58 +android.app.SystemServiceRegistry$59 +android.app.SystemServiceRegistry$6 +android.app.SystemServiceRegistry$60 +android.app.SystemServiceRegistry$61 +android.app.SystemServiceRegistry$62 +android.app.SystemServiceRegistry$63 +android.app.SystemServiceRegistry$64 +android.app.SystemServiceRegistry$65 +android.app.SystemServiceRegistry$66 +android.app.SystemServiceRegistry$67 +android.app.SystemServiceRegistry$68 +android.app.SystemServiceRegistry$69 +android.app.SystemServiceRegistry$7 +android.app.SystemServiceRegistry$70 +android.app.SystemServiceRegistry$71 +android.app.SystemServiceRegistry$72 +android.app.SystemServiceRegistry$73 +android.app.SystemServiceRegistry$74 +android.app.SystemServiceRegistry$75 +android.app.SystemServiceRegistry$76 +android.app.SystemServiceRegistry$77 +android.app.SystemServiceRegistry$78 +android.app.SystemServiceRegistry$79 +android.app.SystemServiceRegistry$8 +android.app.SystemServiceRegistry$80 +android.app.SystemServiceRegistry$81 +android.app.SystemServiceRegistry$82 +android.app.SystemServiceRegistry$83 +android.app.SystemServiceRegistry$84 +android.app.SystemServiceRegistry$85 +android.app.SystemServiceRegistry$9 +android.app.SystemServiceRegistry$CachedServiceFetcher +android.app.SystemServiceRegistry$ServiceFetcher +android.app.SystemServiceRegistry$StaticApplicationContextServiceFetcher +android.app.SystemServiceRegistry$StaticServiceFetcher +android.app.TaskStackListener +android.app.TimePickerDialog$OnTimeSetListener +android.app.UiModeManager +android.app.UserSwitchObserver +android.app.Vr2dDisplayProperties +android.app.VrManager +android.app.WaitResult +android.app.WallpaperColors +android.app.WallpaperColors$1 +android.app.WallpaperInfo +android.app.WallpaperInfo$1 +android.app.WallpaperManager +android.app.WallpaperManager$Globals +android.app.admin.DeviceAdminInfo +android.app.admin.DeviceAdminInfo$1 +android.app.admin.DeviceAdminInfo$PolicyInfo +android.app.admin.DevicePolicyManager +android.app.admin.DevicePolicyManagerInternal +android.app.admin.DevicePolicyManagerInternal$OnCrossProfileWidgetProvidersChangeListener +android.app.admin.IDevicePolicyManager +android.app.admin.IDevicePolicyManager$Stub +android.app.admin.IDevicePolicyManager$Stub$Proxy +android.app.admin.PasswordMetrics +android.app.admin.PasswordMetrics$1 +android.app.admin.SecurityLog +android.app.admin.SecurityLog$SecurityEvent +android.app.admin.SecurityLog$SecurityEvent$1 +android.app.admin.SystemUpdateInfo +android.app.admin.SystemUpdateInfo$1 +android.app.admin.SystemUpdatePolicy +android.app.admin.SystemUpdatePolicy$1 +android.app.assist.AssistContent +android.app.assist.AssistStructure +android.app.assist.AssistStructure$1 +android.app.assist.AssistStructure$AutofillOverlay +android.app.assist.AssistStructure$ParcelTransferReader +android.app.assist.AssistStructure$ParcelTransferWriter +android.app.assist.AssistStructure$SendChannel +android.app.assist.AssistStructure$ViewNode +android.app.assist.AssistStructure$ViewNodeBuilder +android.app.assist.AssistStructure$ViewNodeText +android.app.assist.AssistStructure$ViewStackEntry +android.app.assist.AssistStructure$WindowNode +android.app.backup.BackupAgent +android.app.backup.BackupAgentHelper +android.app.backup.BackupDataInput +android.app.backup.BackupDataInput$EntityHeader +android.app.backup.BackupDataOutput +android.app.backup.BackupHelper +android.app.backup.BackupHelperDispatcher +android.app.backup.BackupHelperDispatcher$Header +android.app.backup.BackupManager +android.app.backup.BackupTransport +android.app.backup.BackupTransport$TransportImpl +android.app.backup.FileBackupHelperBase +android.app.backup.FullBackup +android.app.backup.FullBackupDataOutput +android.app.backup.IBackupManager +android.app.backup.IBackupManager$Stub +android.app.backup.IBackupManager$Stub$Proxy +android.app.backup.IBackupManagerMonitor +android.app.backup.IBackupObserver +android.app.backup.IFullBackupRestoreObserver +android.app.backup.IRestoreSession +android.app.backup.ISelectBackupTransportCallback +android.app.backup.RestoreDescription +android.app.backup.RestoreSet +android.app.job.IJobCallback +android.app.job.IJobCallback$Stub +android.app.job.IJobCallback$Stub$Proxy +android.app.job.IJobScheduler +android.app.job.IJobScheduler$Stub +android.app.job.IJobScheduler$Stub$Proxy +android.app.job.IJobService +android.app.job.IJobService$Stub +android.app.job.IJobService$Stub$Proxy +android.app.job.JobInfo +android.app.job.JobInfo$1 +android.app.job.JobInfo$Builder +android.app.job.JobInfo$TriggerContentUri +android.app.job.JobInfo$TriggerContentUri$1 +android.app.job.JobParameters +android.app.job.JobParameters$1 +android.app.job.JobScheduler +android.app.job.JobService +android.app.job.JobService$1 +android.app.job.JobServiceEngine +android.app.job.JobServiceEngine$JobHandler +android.app.job.JobServiceEngine$JobInterface +android.app.job.JobWorkItem +android.app.job.JobWorkItem$1 +android.app.timezone.RulesManager +android.app.trust.IStrongAuthTracker +android.app.trust.IStrongAuthTracker$Stub +android.app.trust.IStrongAuthTracker$Stub$Proxy +android.app.trust.ITrustListener +android.app.trust.ITrustListener$Stub +android.app.trust.ITrustListener$Stub$Proxy +android.app.trust.ITrustManager +android.app.trust.ITrustManager$Stub +android.app.trust.ITrustManager$Stub$Proxy +android.app.trust.TrustManager +android.app.trust.TrustManager$1 +android.app.trust.TrustManager$2 +android.app.trust.TrustManager$TrustListener +android.app.usage.CacheQuotaHint +android.app.usage.CacheQuotaHint$1 +android.app.usage.CacheQuotaHint$Builder +android.app.usage.ConfigurationStats +android.app.usage.ConfigurationStats$1 +android.app.usage.ExternalStorageStats +android.app.usage.ICacheQuotaService +android.app.usage.ICacheQuotaService$Stub +android.app.usage.ICacheQuotaService$Stub$Proxy +android.app.usage.IStorageStatsManager +android.app.usage.IStorageStatsManager$Stub +android.app.usage.IUsageStatsManager +android.app.usage.IUsageStatsManager$Stub +android.app.usage.IUsageStatsManager$Stub$Proxy +android.app.usage.NetworkStatsManager +android.app.usage.StorageStats +android.app.usage.StorageStatsManager +android.app.usage.TimeSparseArray +android.app.usage.UsageEvents +android.app.usage.UsageEvents$1 +android.app.usage.UsageEvents$Event +android.app.usage.UsageStats +android.app.usage.UsageStats$1 +android.app.usage.UsageStatsManager +android.app.usage.UsageStatsManagerInternal +android.app.usage.UsageStatsManagerInternal$AppIdleStateChangeListener +android.appwidget.AppWidgetHost +android.appwidget.AppWidgetHost$Callbacks +android.appwidget.AppWidgetHost$UpdateHandler +android.appwidget.AppWidgetHostView +android.appwidget.AppWidgetHostView$1 +android.appwidget.AppWidgetHostView$ParcelableSparseArray +android.appwidget.AppWidgetHostView$ParcelableSparseArray$1 +android.appwidget.AppWidgetManager +android.appwidget.AppWidgetProvider +android.appwidget.AppWidgetProviderInfo +android.appwidget.AppWidgetProviderInfo$1 +android.appwidget.PendingHostUpdate +android.appwidget.PendingHostUpdate$1 +android.bluetooth.BluetoothA2dp +android.bluetooth.BluetoothA2dp$1 +android.bluetooth.BluetoothA2dp$2 +android.bluetooth.BluetoothActivityEnergyInfo +android.bluetooth.BluetoothAdapter +android.bluetooth.BluetoothAdapter$1 +android.bluetooth.BluetoothAdapter$BluetoothStateChangeCallback +android.bluetooth.BluetoothCodecConfig +android.bluetooth.BluetoothCodecConfig$1 +android.bluetooth.BluetoothCodecStatus +android.bluetooth.BluetoothDevice +android.bluetooth.BluetoothDevice$1 +android.bluetooth.BluetoothDevice$2 +android.bluetooth.BluetoothGatt +android.bluetooth.BluetoothGattCallback +android.bluetooth.BluetoothGattCharacteristic +android.bluetooth.BluetoothGattDescriptor +android.bluetooth.BluetoothGattService +android.bluetooth.BluetoothHeadset +android.bluetooth.BluetoothHeadset$1 +android.bluetooth.BluetoothHeadset$2 +android.bluetooth.BluetoothHeadset$3 +android.bluetooth.BluetoothHealthAppConfiguration +android.bluetooth.BluetoothInputDevice +android.bluetooth.BluetoothInputDevice$1 +android.bluetooth.BluetoothInputDevice$2 +android.bluetooth.BluetoothInputStream +android.bluetooth.BluetoothManager +android.bluetooth.BluetoothMap +android.bluetooth.BluetoothMap$1 +android.bluetooth.BluetoothMap$2 +android.bluetooth.BluetoothOutputStream +android.bluetooth.BluetoothPan +android.bluetooth.BluetoothPan$1 +android.bluetooth.BluetoothPan$2 +android.bluetooth.BluetoothPbap +android.bluetooth.BluetoothPbap$1 +android.bluetooth.BluetoothPbap$2 +android.bluetooth.BluetoothPbap$ServiceListener +android.bluetooth.BluetoothProfile +android.bluetooth.BluetoothProfile$ServiceListener +android.bluetooth.BluetoothServerSocket +android.bluetooth.BluetoothSocket +android.bluetooth.BluetoothSocket$SocketState +android.bluetooth.BluetoothUuid +android.bluetooth.IBluetooth +android.bluetooth.IBluetooth$Stub +android.bluetooth.IBluetooth$Stub$Proxy +android.bluetooth.IBluetoothA2dp +android.bluetooth.IBluetoothA2dp$Stub +android.bluetooth.IBluetoothA2dp$Stub$Proxy +android.bluetooth.IBluetoothCallback +android.bluetooth.IBluetoothCallback$Stub +android.bluetooth.IBluetoothCallback$Stub$Proxy +android.bluetooth.IBluetoothGatt +android.bluetooth.IBluetoothGatt$Stub +android.bluetooth.IBluetoothGatt$Stub$Proxy +android.bluetooth.IBluetoothGattCallback +android.bluetooth.IBluetoothGattServerCallback +android.bluetooth.IBluetoothHeadset +android.bluetooth.IBluetoothHeadset$Stub +android.bluetooth.IBluetoothHeadset$Stub$Proxy +android.bluetooth.IBluetoothHeadsetPhone +android.bluetooth.IBluetoothHeadsetPhone$Stub +android.bluetooth.IBluetoothHeadsetPhone$Stub$Proxy +android.bluetooth.IBluetoothHealth +android.bluetooth.IBluetoothHealth$Stub +android.bluetooth.IBluetoothHealthCallback +android.bluetooth.IBluetoothInputDevice +android.bluetooth.IBluetoothInputDevice$Stub +android.bluetooth.IBluetoothInputDevice$Stub$Proxy +android.bluetooth.IBluetoothManager +android.bluetooth.IBluetoothManager$Stub +android.bluetooth.IBluetoothManager$Stub$Proxy +android.bluetooth.IBluetoothManagerCallback +android.bluetooth.IBluetoothManagerCallback$Stub +android.bluetooth.IBluetoothManagerCallback$Stub$Proxy +android.bluetooth.IBluetoothMap +android.bluetooth.IBluetoothMap$Stub +android.bluetooth.IBluetoothMap$Stub$Proxy +android.bluetooth.IBluetoothPan +android.bluetooth.IBluetoothPan$Stub +android.bluetooth.IBluetoothPan$Stub$Proxy +android.bluetooth.IBluetoothPbap +android.bluetooth.IBluetoothPbap$Stub +android.bluetooth.IBluetoothPbap$Stub$Proxy +android.bluetooth.IBluetoothProfileServiceConnection +android.bluetooth.IBluetoothProfileServiceConnection$Stub +android.bluetooth.IBluetoothProfileServiceConnection$Stub$Proxy +android.bluetooth.IBluetoothSap +android.bluetooth.IBluetoothSap$Stub +android.bluetooth.IBluetoothStateChangeCallback +android.bluetooth.IBluetoothStateChangeCallback$Stub +android.bluetooth.IBluetoothStateChangeCallback$Stub$Proxy +android.bluetooth.OobData +android.bluetooth.UidTraffic +android.bluetooth.UidTraffic$1 +android.bluetooth.le.AdvertiseData +android.bluetooth.le.AdvertisingSetParameters +android.bluetooth.le.BluetoothLeAdvertiser +android.bluetooth.le.BluetoothLeScanner +android.bluetooth.le.BluetoothLeScanner$BleScanCallbackWrapper +android.bluetooth.le.BluetoothLeScanner$BleScanCallbackWrapper$1 +android.bluetooth.le.BluetoothLeUtils +android.bluetooth.le.IAdvertisingSetCallback +android.bluetooth.le.IPeriodicAdvertisingCallback +android.bluetooth.le.IScannerCallback +android.bluetooth.le.IScannerCallback$Stub +android.bluetooth.le.IScannerCallback$Stub$Proxy +android.bluetooth.le.PeriodicAdvertisingParameters +android.bluetooth.le.ScanCallback +android.bluetooth.le.ScanFilter +android.bluetooth.le.ScanFilter$1 +android.bluetooth.le.ScanFilter$Builder +android.bluetooth.le.ScanRecord +android.bluetooth.le.ScanResult +android.bluetooth.le.ScanResult$1 +android.bluetooth.le.ScanSettings +android.bluetooth.le.ScanSettings$1 +android.bluetooth.le.ScanSettings$Builder +android.companion.AssociationRequest +android.companion.CompanionDeviceManager +android.companion.ICompanionDeviceManager +android.companion.ICompanionDeviceManager$Stub +android.companion.IFindDeviceCallback +android.content.AbstractThreadedSyncAdapter +android.content.AbstractThreadedSyncAdapter$ISyncAdapterImpl +android.content.AbstractThreadedSyncAdapter$SyncThread +android.content.ActivityNotFoundException +android.content.AsyncQueryHandler +android.content.AsyncQueryHandler$WorkerArgs +android.content.AsyncQueryHandler$WorkerHandler +android.content.AsyncTaskLoader +android.content.AsyncTaskLoader$LoadTask +android.content.BroadcastReceiver +android.content.BroadcastReceiver$PendingResult +android.content.BroadcastReceiver$PendingResult$1 +android.content.ClipData +android.content.ClipData$1 +android.content.ClipData$Item +android.content.ClipDescription +android.content.ClipDescription$1 +android.content.ClipboardManager +android.content.ClipboardManager$1 +android.content.ClipboardManager$2 +android.content.ClipboardManager$OnPrimaryClipChangedListener +android.content.ComponentCallbacks +android.content.ComponentCallbacks2 +android.content.ComponentName +android.content.ComponentName$1 +android.content.ContentProvider +android.content.ContentProvider$PipeDataWriter +android.content.ContentProvider$Transport +android.content.ContentProviderClient +android.content.ContentProviderClient$CursorWrapperInner +android.content.ContentProviderNative +android.content.ContentProviderOperation +android.content.ContentProviderOperation$1 +android.content.ContentProviderOperation$Builder +android.content.ContentProviderProxy +android.content.ContentProviderResult +android.content.ContentProviderResult$1 +android.content.ContentQueryMap +android.content.ContentResolver +android.content.ContentResolver$1 +android.content.ContentResolver$CursorWrapperInner +android.content.ContentResolver$ParcelFileDescriptorInner +android.content.ContentUris +android.content.ContentValues +android.content.ContentValues$1 +android.content.Context +android.content.ContextWrapper +android.content.CursorLoader +android.content.DialogInterface +android.content.DialogInterface$OnCancelListener +android.content.DialogInterface$OnClickListener +android.content.DialogInterface$OnDismissListener +android.content.DialogInterface$OnKeyListener +android.content.DialogInterface$OnMultiChoiceClickListener +android.content.DialogInterface$OnShowListener +android.content.IClipboard +android.content.IClipboard$Stub +android.content.IClipboard$Stub$Proxy +android.content.IContentProvider +android.content.IContentService +android.content.IContentService$Stub +android.content.IContentService$Stub$Proxy +android.content.IIntentReceiver +android.content.IIntentReceiver$Stub +android.content.IIntentReceiver$Stub$Proxy +android.content.IIntentSender +android.content.IIntentSender$Stub +android.content.IIntentSender$Stub$Proxy +android.content.IOnPrimaryClipChangedListener +android.content.IOnPrimaryClipChangedListener$Stub +android.content.IRestrictionsManager +android.content.IRestrictionsManager$Stub +android.content.IRestrictionsManager$Stub$Proxy +android.content.ISyncAdapter +android.content.ISyncAdapter$Stub +android.content.ISyncAdapter$Stub$Proxy +android.content.ISyncContext +android.content.ISyncContext$Stub +android.content.ISyncContext$Stub$Proxy +android.content.ISyncStatusObserver +android.content.ISyncStatusObserver$Stub +android.content.ISyncStatusObserver$Stub$Proxy +android.content.Intent +android.content.Intent$1 +android.content.Intent$FilterComparison +android.content.Intent$ShortcutIconResource +android.content.Intent$ShortcutIconResource$1 +android.content.IntentFilter +android.content.IntentFilter$1 +android.content.IntentFilter$AuthorityEntry +android.content.IntentFilter$MalformedMimeTypeException +android.content.IntentSender +android.content.IntentSender$1 +android.content.IntentSender$SendIntentException +android.content.Loader +android.content.Loader$ForceLoadContentObserver +android.content.Loader$OnLoadCanceledListener +android.content.Loader$OnLoadCompleteListener +android.content.OperationApplicationException +android.content.PeriodicSync +android.content.PeriodicSync$1 +android.content.ReceiverCallNotAllowedException +android.content.RestrictionEntry +android.content.RestrictionEntry$1 +android.content.RestrictionsManager +android.content.SearchRecentSuggestionsProvider +android.content.SearchRecentSuggestionsProvider$DatabaseHelper +android.content.ServiceConnection +android.content.SharedPreferences +android.content.SharedPreferences$Editor +android.content.SharedPreferences$OnSharedPreferenceChangeListener +android.content.SyncAdapterType +android.content.SyncAdapterType$1 +android.content.SyncAdaptersCache +android.content.SyncAdaptersCache$MySerializer +android.content.SyncContext +android.content.SyncInfo +android.content.SyncInfo$1 +android.content.SyncRequest +android.content.SyncRequest$1 +android.content.SyncRequest$Builder +android.content.SyncResult +android.content.SyncResult$1 +android.content.SyncStats +android.content.SyncStats$1 +android.content.SyncStatusInfo +android.content.SyncStatusInfo$1 +android.content.SyncStatusObserver +android.content.UndoManager +android.content.UndoManager$UndoState +android.content.UndoOperation +android.content.UndoOwner +android.content.UriMatcher +android.content.om.IOverlayManager +android.content.om.IOverlayManager$Stub +android.content.om.OverlayInfo +android.content.pm.ActivityInfo +android.content.pm.ActivityInfo$1 +android.content.pm.ActivityInfo$WindowLayout +android.content.pm.ApplicationInfo +android.content.pm.ApplicationInfo$1 +android.content.pm.AuxiliaryResolveInfo +android.content.pm.BaseParceledListSlice +android.content.pm.BaseParceledListSlice$1 +android.content.pm.ChangedPackages +android.content.pm.ComponentInfo +android.content.pm.ConfigurationInfo +android.content.pm.ConfigurationInfo$1 +android.content.pm.FallbackCategoryProvider +android.content.pm.FeatureGroupInfo +android.content.pm.FeatureGroupInfo$1 +android.content.pm.FeatureInfo +android.content.pm.FeatureInfo$1 +android.content.pm.ILauncherApps +android.content.pm.ILauncherApps$Stub +android.content.pm.ILauncherApps$Stub$Proxy +android.content.pm.IOnAppsChangedListener +android.content.pm.IOnAppsChangedListener$Stub +android.content.pm.IOnAppsChangedListener$Stub$Proxy +android.content.pm.IOnPermissionsChangeListener +android.content.pm.IOnPermissionsChangeListener$Stub +android.content.pm.IOnPermissionsChangeListener$Stub$Proxy +android.content.pm.IOtaDexopt +android.content.pm.IOtaDexopt$Stub +android.content.pm.IPackageDataObserver +android.content.pm.IPackageDataObserver$Stub +android.content.pm.IPackageDataObserver$Stub$Proxy +android.content.pm.IPackageDeleteObserver +android.content.pm.IPackageDeleteObserver2 +android.content.pm.IPackageInstallObserver +android.content.pm.IPackageInstallObserver2 +android.content.pm.IPackageInstallObserver2$Stub +android.content.pm.IPackageInstaller +android.content.pm.IPackageInstaller$Stub +android.content.pm.IPackageInstaller$Stub$Proxy +android.content.pm.IPackageInstallerCallback +android.content.pm.IPackageInstallerCallback$Stub +android.content.pm.IPackageInstallerCallback$Stub$Proxy +android.content.pm.IPackageInstallerSession +android.content.pm.IPackageInstallerSession$Stub +android.content.pm.IPackageInstallerSession$Stub$Proxy +android.content.pm.IPackageManager +android.content.pm.IPackageManager$Stub +android.content.pm.IPackageManager$Stub$Proxy +android.content.pm.IPackageMoveObserver +android.content.pm.IPackageMoveObserver$Stub +android.content.pm.IPackageMoveObserver$Stub$Proxy +android.content.pm.IPackageStatsObserver +android.content.pm.IPackageStatsObserver$Stub +android.content.pm.IShortcutService +android.content.pm.IShortcutService$Stub +android.content.pm.IShortcutService$Stub$Proxy +android.content.pm.InstantAppRequest +android.content.pm.InstantAppResolveInfo$InstantAppDigest +android.content.pm.InstantAppResolveInfo$InstantAppDigest$1 +android.content.pm.InstrumentationInfo +android.content.pm.InstrumentationInfo$1 +android.content.pm.IntentFilterVerificationInfo +android.content.pm.IntentFilterVerificationInfo$1 +android.content.pm.KeySet +android.content.pm.LauncherActivityInfo +android.content.pm.LauncherApps +android.content.pm.LauncherApps$1 +android.content.pm.LauncherApps$Callback +android.content.pm.LauncherApps$CallbackMessageHandler +android.content.pm.LauncherApps$CallbackMessageHandler$CallbackInfo +android.content.pm.LauncherApps$ShortcutQuery +android.content.pm.PackageCleanItem +android.content.pm.PackageInfo +android.content.pm.PackageInfo$1 +android.content.pm.PackageInfoLite +android.content.pm.PackageInfoLite$1 +android.content.pm.PackageInstaller +android.content.pm.PackageInstaller$Session +android.content.pm.PackageInstaller$SessionCallback +android.content.pm.PackageInstaller$SessionCallbackDelegate +android.content.pm.PackageInstaller$SessionInfo +android.content.pm.PackageInstaller$SessionInfo$1 +android.content.pm.PackageInstaller$SessionParams +android.content.pm.PackageInstaller$SessionParams$1 +android.content.pm.PackageItemInfo +android.content.pm.PackageManager +android.content.pm.PackageManager$MoveCallback +android.content.pm.PackageManager$NameNotFoundException +android.content.pm.PackageManager$OnPermissionsChangedListener +android.content.pm.PackageManagerInternal +android.content.pm.PackageManagerInternal$ExternalSourcesPolicy +android.content.pm.PackageManagerInternal$PackagesProvider +android.content.pm.PackageManagerInternal$SyncAdapterPackagesProvider +android.content.pm.PackageParser +android.content.pm.PackageParser$Activity +android.content.pm.PackageParser$Activity$1 +android.content.pm.PackageParser$ActivityIntentInfo +android.content.pm.PackageParser$ApkLite +android.content.pm.PackageParser$Callback +android.content.pm.PackageParser$CallbackImpl +android.content.pm.PackageParser$Component +android.content.pm.PackageParser$IntentInfo +android.content.pm.PackageParser$NewPermissionInfo +android.content.pm.PackageParser$Package +android.content.pm.PackageParser$Package$1 +android.content.pm.PackageParser$PackageLite +android.content.pm.PackageParser$PackageParserException +android.content.pm.PackageParser$ParseComponentArgs +android.content.pm.PackageParser$ParsePackageItemArgs +android.content.pm.PackageParser$Permission +android.content.pm.PackageParser$Permission$1 +android.content.pm.PackageParser$PermissionGroup +android.content.pm.PackageParser$PermissionGroup$1 +android.content.pm.PackageParser$Provider +android.content.pm.PackageParser$Provider$1 +android.content.pm.PackageParser$ProviderIntentInfo +android.content.pm.PackageParser$Service +android.content.pm.PackageParser$Service$1 +android.content.pm.PackageParser$ServiceIntentInfo +android.content.pm.PackageParser$SplitNameComparator +android.content.pm.PackageParser$SplitPermissionInfo +android.content.pm.PackageStats +android.content.pm.PackageUserState +android.content.pm.ParceledListSlice +android.content.pm.ParceledListSlice$1 +android.content.pm.PathPermission +android.content.pm.PathPermission$1 +android.content.pm.PermissionGroupInfo +android.content.pm.PermissionGroupInfo$1 +android.content.pm.PermissionInfo +android.content.pm.PermissionInfo$1 +android.content.pm.ProviderInfo +android.content.pm.ProviderInfo$1 +android.content.pm.RegisteredServicesCache +android.content.pm.RegisteredServicesCache$1 +android.content.pm.RegisteredServicesCache$2 +android.content.pm.RegisteredServicesCache$3 +android.content.pm.RegisteredServicesCache$ServiceInfo +android.content.pm.RegisteredServicesCache$UserServices +android.content.pm.RegisteredServicesCacheListener +android.content.pm.ResolveInfo +android.content.pm.ResolveInfo$1 +android.content.pm.SELinuxUtil +android.content.pm.ServiceInfo +android.content.pm.ServiceInfo$1 +android.content.pm.SharedLibraryInfo +android.content.pm.SharedLibraryInfo$1 +android.content.pm.ShortcutInfo +android.content.pm.ShortcutInfo$1 +android.content.pm.ShortcutInfo$Builder +android.content.pm.ShortcutManager +android.content.pm.ShortcutServiceInternal +android.content.pm.ShortcutServiceInternal$ShortcutChangeListener +android.content.pm.Signature +android.content.pm.Signature$1 +android.content.pm.StringParceledListSlice +android.content.pm.StringParceledListSlice$1 +android.content.pm.UserInfo +android.content.pm.UserInfo$1 +android.content.pm.VerifierDeviceIdentity +android.content.pm.VerifierInfo +android.content.pm.VersionedPackage +android.content.pm.VersionedPackage$1 +android.content.pm.XmlSerializerAndParser +android.content.pm.split.DefaultSplitAssetLoader +android.content.pm.split.SplitAssetLoader +android.content.pm.split.SplitDependencyLoader$IllegalDependencyException +android.content.res.AssetFileDescriptor +android.content.res.AssetFileDescriptor$1 +android.content.res.AssetFileDescriptor$AutoCloseInputStream +android.content.res.AssetManager +android.content.res.AssetManager$AssetInputStream +android.content.res.ColorStateList +android.content.res.ColorStateList$1 +android.content.res.ColorStateList$ColorStateListFactory +android.content.res.CompatResources +android.content.res.CompatibilityInfo +android.content.res.CompatibilityInfo$1 +android.content.res.CompatibilityInfo$2 +android.content.res.ComplexColor +android.content.res.Configuration +android.content.res.Configuration$1 +android.content.res.ConfigurationBoundResourceCache +android.content.res.ConstantState +android.content.res.DrawableCache +android.content.res.GradientColor +android.content.res.ObbInfo +android.content.res.ObbInfo$1 +android.content.res.ObbScanner +android.content.res.ResourceId +android.content.res.Resources +android.content.res.Resources$NotFoundException +android.content.res.Resources$Theme +android.content.res.Resources$ThemeKey +android.content.res.ResourcesImpl +android.content.res.ResourcesImpl$ThemeImpl +android.content.res.ResourcesKey +android.content.res.StringBlock +android.content.res.StringBlock$StyleIDs +android.content.res.ThemedResourceCache +android.content.res.TypedArray +android.content.res.XmlBlock +android.content.res.XmlBlock$Parser +android.content.res.XmlResourceParser +android.database.AbstractCursor +android.database.AbstractCursor$SelfContentObserver +android.database.AbstractWindowedCursor +android.database.BulkCursorDescriptor +android.database.BulkCursorDescriptor$1 +android.database.BulkCursorNative +android.database.BulkCursorProxy +android.database.BulkCursorToCursorAdaptor +android.database.CharArrayBuffer +android.database.ContentObservable +android.database.ContentObserver +android.database.ContentObserver$NotificationRunnable +android.database.ContentObserver$Transport +android.database.CrossProcessCursor +android.database.CrossProcessCursorWrapper +android.database.Cursor +android.database.CursorIndexOutOfBoundsException +android.database.CursorToBulkCursorAdaptor +android.database.CursorToBulkCursorAdaptor$ContentObserverProxy +android.database.CursorWindow +android.database.CursorWindow$1 +android.database.CursorWrapper +android.database.DataSetObservable +android.database.DataSetObserver +android.database.DatabaseErrorHandler +android.database.DatabaseUtils +android.database.DatabaseUtils$InsertHelper +android.database.DefaultDatabaseErrorHandler +android.database.IBulkCursor +android.database.IContentObserver +android.database.IContentObserver$Stub +android.database.IContentObserver$Stub$Proxy +android.database.MatrixCursor +android.database.MatrixCursor$RowBuilder +android.database.MergeCursor +android.database.MergeCursor$1 +android.database.Observable +android.database.SQLException +android.database.StaleDataException +android.database.sqlite.-$Lambda$gPaS7kMbZ8xtrrEx06GlwJ2iDWE +android.database.sqlite.DatabaseObjectNotClosedException +android.database.sqlite.SQLiteAbortException +android.database.sqlite.SQLiteCantOpenDatabaseException +android.database.sqlite.SQLiteClosable +android.database.sqlite.SQLiteConnection +android.database.sqlite.SQLiteConnection$Operation +android.database.sqlite.SQLiteConnection$OperationLog +android.database.sqlite.SQLiteConnection$PreparedStatement +android.database.sqlite.SQLiteConnection$PreparedStatementCache +android.database.sqlite.SQLiteConnectionPool +android.database.sqlite.SQLiteConnectionPool$AcquiredConnectionStatus +android.database.sqlite.SQLiteConnectionPool$ConnectionWaiter +android.database.sqlite.SQLiteConnectionPool$IdleConnectionHandler +android.database.sqlite.SQLiteConstraintException +android.database.sqlite.SQLiteCursor +android.database.sqlite.SQLiteCursorDriver +android.database.sqlite.SQLiteCustomFunction +android.database.sqlite.SQLiteDatabase +android.database.sqlite.SQLiteDatabase$1 +android.database.sqlite.SQLiteDatabase$2 +android.database.sqlite.SQLiteDatabase$CursorFactory +android.database.sqlite.SQLiteDatabase$CustomFunction +android.database.sqlite.SQLiteDatabase$OpenParams +android.database.sqlite.SQLiteDatabase$OpenParams$Builder +android.database.sqlite.SQLiteDatabaseConfiguration +android.database.sqlite.SQLiteDatabaseCorruptException +android.database.sqlite.SQLiteDatabaseLockedException +android.database.sqlite.SQLiteDebug +android.database.sqlite.SQLiteDebug$PagerStats +android.database.sqlite.SQLiteDirectCursorDriver +android.database.sqlite.SQLiteDiskIOException +android.database.sqlite.SQLiteDoneException +android.database.sqlite.SQLiteException +android.database.sqlite.SQLiteFullException +android.database.sqlite.SQLiteGlobal +android.database.sqlite.SQLiteOpenHelper +android.database.sqlite.SQLiteProgram +android.database.sqlite.SQLiteQuery +android.database.sqlite.SQLiteQueryBuilder +android.database.sqlite.SQLiteReadOnlyDatabaseException +android.database.sqlite.SQLiteSession +android.database.sqlite.SQLiteSession$Transaction +android.database.sqlite.SQLiteStatement +android.database.sqlite.SQLiteStatementInfo +android.database.sqlite.SQLiteTransactionListener +android.database.sqlite.SqliteWrapper +android.ddm.DdmHandleAppName +android.ddm.DdmHandleExit +android.ddm.DdmHandleHeap +android.ddm.DdmHandleHello +android.ddm.DdmHandleNativeHeap +android.ddm.DdmHandleProfiling +android.ddm.DdmHandleThread +android.ddm.DdmHandleViewDebug +android.ddm.DdmRegister +android.drm.DrmManagerClient$OnErrorListener +android.drm.DrmManagerClient$OnEventListener +android.drm.DrmManagerClient$OnInfoListener +android.drm.DrmOutputStream +android.graphics.-$Lambda$ZrP-zejiEXAqfwV-MyP5lE9mYC8 +android.graphics.-$Lambda$ZrP-zejiEXAqfwV-MyP5lE9mYC8$1 +android.graphics.-$Lambda$ZrP-zejiEXAqfwV-MyP5lE9mYC8$2 +android.graphics.-$Lambda$ZrP-zejiEXAqfwV-MyP5lE9mYC8$4 +android.graphics.-$Lambda$ZrP-zejiEXAqfwV-MyP5lE9mYC8$6 +android.graphics.-$Lambda$ZrP-zejiEXAqfwV-MyP5lE9mYC8$7 +android.graphics.-$Lambda$ZrP-zejiEXAqfwV-MyP5lE9mYC8$8 +android.graphics.BaseCanvas +android.graphics.Bitmap +android.graphics.Bitmap$1 +android.graphics.Bitmap$CompressFormat +android.graphics.Bitmap$Config +android.graphics.BitmapFactory +android.graphics.BitmapFactory$Options +android.graphics.BitmapRegionDecoder +android.graphics.BitmapShader +android.graphics.BlurMaskFilter +android.graphics.BlurMaskFilter$Blur +android.graphics.Camera +android.graphics.Canvas +android.graphics.Canvas$EdgeType +android.graphics.Canvas$NoImagePreloadHolder +android.graphics.CanvasProperty +android.graphics.Color +android.graphics.ColorFilter +android.graphics.ColorFilter$NoImagePreloadHolder +android.graphics.ColorMatrix +android.graphics.ColorMatrixColorFilter +android.graphics.ColorSpace +android.graphics.ColorSpace$Adaptation +android.graphics.ColorSpace$Lab +android.graphics.ColorSpace$Model +android.graphics.ColorSpace$Named +android.graphics.ColorSpace$Rgb +android.graphics.ColorSpace$Rgb$TransferParameters +android.graphics.ColorSpace$Xyz +android.graphics.ComposePathEffect +android.graphics.ComposeShader +android.graphics.CornerPathEffect +android.graphics.DashPathEffect +android.graphics.DiscretePathEffect +android.graphics.DrawFilter +android.graphics.EmbossMaskFilter +android.graphics.FontFamily +android.graphics.FontListParser +android.graphics.GraphicBuffer +android.graphics.GraphicBuffer$1 +android.graphics.ImageFormat +android.graphics.Insets +android.graphics.Interpolator +android.graphics.Interpolator$Result +android.graphics.LeakyTypefaceStorage +android.graphics.LightingColorFilter +android.graphics.LinearGradient +android.graphics.MaskFilter +android.graphics.Matrix +android.graphics.Matrix$1 +android.graphics.Matrix$NoImagePreloadHolder +android.graphics.Matrix$ScaleToFit +android.graphics.Movie +android.graphics.NinePatch +android.graphics.NinePatch$InsetStruct +android.graphics.Outline +android.graphics.Paint +android.graphics.Paint$Align +android.graphics.Paint$Cap +android.graphics.Paint$FontMetrics +android.graphics.Paint$FontMetricsInt +android.graphics.Paint$Join +android.graphics.Paint$NoImagePreloadHolder +android.graphics.Paint$Style +android.graphics.PaintFlagsDrawFilter +android.graphics.Path +android.graphics.Path$Direction +android.graphics.Path$FillType +android.graphics.Path$Op +android.graphics.PathDashPathEffect +android.graphics.PathEffect +android.graphics.PathMeasure +android.graphics.Picture +android.graphics.Picture$RecordingCanvas +android.graphics.PixelFormat +android.graphics.Point +android.graphics.Point$1 +android.graphics.PointF +android.graphics.PointF$1 +android.graphics.PorterDuff +android.graphics.PorterDuff$Mode +android.graphics.PorterDuffColorFilter +android.graphics.PorterDuffXfermode +android.graphics.RadialGradient +android.graphics.Rect +android.graphics.Rect$1 +android.graphics.Rect$UnflattenHelper +android.graphics.RectF +android.graphics.RectF$1 +android.graphics.Region +android.graphics.Region$1 +android.graphics.Region$Op +android.graphics.RegionIterator +android.graphics.Shader +android.graphics.Shader$NoImagePreloadHolder +android.graphics.Shader$TileMode +android.graphics.SumPathEffect +android.graphics.SurfaceTexture +android.graphics.SurfaceTexture$1 +android.graphics.SurfaceTexture$OnFrameAvailableListener +android.graphics.SweepGradient +android.graphics.TableMaskFilter +android.graphics.TemporaryBuffer +android.graphics.Typeface +android.graphics.Typeface$Builder +android.graphics.Xfermode +android.graphics.YuvImage +android.graphics.drawable.AdaptiveIconDrawable +android.graphics.drawable.AdaptiveIconDrawable$ChildDrawable +android.graphics.drawable.AdaptiveIconDrawable$LayerState +android.graphics.drawable.Animatable +android.graphics.drawable.Animatable2 +android.graphics.drawable.Animatable2$AnimationCallback +android.graphics.drawable.AnimatedStateListDrawable +android.graphics.drawable.AnimatedStateListDrawable$AnimatedStateListState +android.graphics.drawable.AnimatedStateListDrawable$AnimatedVectorDrawableTransition +android.graphics.drawable.AnimatedStateListDrawable$AnimationDrawableTransition +android.graphics.drawable.AnimatedStateListDrawable$FrameInterpolator +android.graphics.drawable.AnimatedStateListDrawable$Transition +android.graphics.drawable.AnimatedVectorDrawable +android.graphics.drawable.AnimatedVectorDrawable$1 +android.graphics.drawable.AnimatedVectorDrawable$2 +android.graphics.drawable.AnimatedVectorDrawable$AnimatedVectorDrawableState +android.graphics.drawable.AnimatedVectorDrawable$AnimatedVectorDrawableState$PendingAnimator +android.graphics.drawable.AnimatedVectorDrawable$VectorDrawableAnimator +android.graphics.drawable.AnimatedVectorDrawable$VectorDrawableAnimatorRT +android.graphics.drawable.AnimatedVectorDrawable$VectorDrawableAnimatorUI +android.graphics.drawable.AnimationDrawable +android.graphics.drawable.AnimationDrawable$AnimationState +android.graphics.drawable.BitmapDrawable +android.graphics.drawable.BitmapDrawable$BitmapState +android.graphics.drawable.ClipDrawable +android.graphics.drawable.ClipDrawable$ClipState +android.graphics.drawable.ColorDrawable +android.graphics.drawable.ColorDrawable$ColorState +android.graphics.drawable.Drawable +android.graphics.drawable.Drawable$Callback +android.graphics.drawable.Drawable$ConstantState +android.graphics.drawable.DrawableContainer +android.graphics.drawable.DrawableContainer$1 +android.graphics.drawable.DrawableContainer$BlockInvalidateCallback +android.graphics.drawable.DrawableContainer$DrawableContainerState +android.graphics.drawable.DrawableInflater +android.graphics.drawable.DrawableWrapper +android.graphics.drawable.DrawableWrapper$DrawableWrapperState +android.graphics.drawable.GradientDrawable +android.graphics.drawable.GradientDrawable$GradientState +android.graphics.drawable.GradientDrawable$Orientation +android.graphics.drawable.Icon +android.graphics.drawable.Icon$1 +android.graphics.drawable.InsetDrawable +android.graphics.drawable.InsetDrawable$InsetState +android.graphics.drawable.InsetDrawable$InsetValue +android.graphics.drawable.LayerDrawable +android.graphics.drawable.LayerDrawable$ChildDrawable +android.graphics.drawable.LayerDrawable$LayerState +android.graphics.drawable.NinePatchDrawable +android.graphics.drawable.NinePatchDrawable$NinePatchState +android.graphics.drawable.PaintDrawable +android.graphics.drawable.PictureDrawable +android.graphics.drawable.RippleBackground +android.graphics.drawable.RippleBackground$1 +android.graphics.drawable.RippleBackground$BackgroundProperty +android.graphics.drawable.RippleComponent +android.graphics.drawable.RippleComponent$RenderNodeAnimatorSet +android.graphics.drawable.RippleDrawable +android.graphics.drawable.RippleDrawable$RippleState +android.graphics.drawable.RippleForeground +android.graphics.drawable.RippleForeground$1 +android.graphics.drawable.RippleForeground$2 +android.graphics.drawable.RippleForeground$3 +android.graphics.drawable.RippleForeground$4 +android.graphics.drawable.RippleForeground$LogDecelerateInterpolator +android.graphics.drawable.RotateDrawable +android.graphics.drawable.RotateDrawable$RotateState +android.graphics.drawable.ScaleDrawable +android.graphics.drawable.ScaleDrawable$ScaleState +android.graphics.drawable.ShapeDrawable +android.graphics.drawable.ShapeDrawable$ShaderFactory +android.graphics.drawable.ShapeDrawable$ShapeState +android.graphics.drawable.StateListDrawable +android.graphics.drawable.StateListDrawable$StateListState +android.graphics.drawable.TransitionDrawable +android.graphics.drawable.TransitionDrawable$TransitionState +android.graphics.drawable.VectorDrawable +android.graphics.drawable.VectorDrawable$VClipPath +android.graphics.drawable.VectorDrawable$VFullPath +android.graphics.drawable.VectorDrawable$VFullPath$1 +android.graphics.drawable.VectorDrawable$VFullPath$10 +android.graphics.drawable.VectorDrawable$VFullPath$2 +android.graphics.drawable.VectorDrawable$VFullPath$3 +android.graphics.drawable.VectorDrawable$VFullPath$4 +android.graphics.drawable.VectorDrawable$VFullPath$5 +android.graphics.drawable.VectorDrawable$VFullPath$6 +android.graphics.drawable.VectorDrawable$VFullPath$7 +android.graphics.drawable.VectorDrawable$VFullPath$8 +android.graphics.drawable.VectorDrawable$VFullPath$9 +android.graphics.drawable.VectorDrawable$VGroup +android.graphics.drawable.VectorDrawable$VGroup$1 +android.graphics.drawable.VectorDrawable$VGroup$2 +android.graphics.drawable.VectorDrawable$VGroup$3 +android.graphics.drawable.VectorDrawable$VGroup$4 +android.graphics.drawable.VectorDrawable$VGroup$5 +android.graphics.drawable.VectorDrawable$VGroup$6 +android.graphics.drawable.VectorDrawable$VGroup$7 +android.graphics.drawable.VectorDrawable$VGroup$8 +android.graphics.drawable.VectorDrawable$VGroup$9 +android.graphics.drawable.VectorDrawable$VObject +android.graphics.drawable.VectorDrawable$VPath +android.graphics.drawable.VectorDrawable$VPath$1 +android.graphics.drawable.VectorDrawable$VectorDrawableState +android.graphics.drawable.VectorDrawable$VectorDrawableState$1 +android.graphics.drawable.shapes.OvalShape +android.graphics.drawable.shapes.RectShape +android.graphics.drawable.shapes.RoundRectShape +android.graphics.drawable.shapes.Shape +android.graphics.fonts.FontVariationAxis +android.graphics.pdf.PdfDocument +android.graphics.pdf.PdfEditor +android.graphics.pdf.PdfRenderer +android.hardware.Camera +android.hardware.Camera$CameraInfo +android.hardware.Camera$ErrorCallback +android.hardware.Camera$Face +android.hardware.CameraStatus +android.hardware.CameraStatus$1 +android.hardware.ConsumerIrManager +android.hardware.GeomagneticField +android.hardware.GeomagneticField$LegendreTable +android.hardware.HardwareBuffer +android.hardware.HardwareBuffer$1 +android.hardware.ICameraService +android.hardware.ICameraService$Stub +android.hardware.ICameraService$Stub$Proxy +android.hardware.ICameraServiceListener +android.hardware.ICameraServiceListener$Stub +android.hardware.ICameraServiceProxy +android.hardware.ICameraServiceProxy$Stub +android.hardware.IConsumerIrService +android.hardware.IConsumerIrService$Stub +android.hardware.ISerialManager +android.hardware.ISerialManager$Stub +android.hardware.Sensor +android.hardware.SensorAdditionalInfo +android.hardware.SensorEvent +android.hardware.SensorEventListener +android.hardware.SensorManager +android.hardware.SerialManager +android.hardware.SerialPort +android.hardware.SystemSensorManager +android.hardware.SystemSensorManager$BaseEventQueue +android.hardware.SystemSensorManager$SensorEventQueue +android.hardware.SystemSensorManager$TriggerEventQueue +android.hardware.TriggerEvent +android.hardware.TriggerEventListener +android.hardware.camera2.CameraAccessException +android.hardware.camera2.CameraCaptureSession +android.hardware.camera2.CameraCaptureSession$CaptureCallback +android.hardware.camera2.CameraCaptureSession$StateCallback +android.hardware.camera2.CameraCharacteristics +android.hardware.camera2.CameraCharacteristics$1 +android.hardware.camera2.CameraCharacteristics$2 +android.hardware.camera2.CameraCharacteristics$3 +android.hardware.camera2.CameraCharacteristics$4 +android.hardware.camera2.CameraCharacteristics$5 +android.hardware.camera2.CameraCharacteristics$Key +android.hardware.camera2.CameraDevice +android.hardware.camera2.CameraDevice$StateCallback +android.hardware.camera2.CameraManager +android.hardware.camera2.CameraManager$AvailabilityCallback +android.hardware.camera2.CameraManager$CameraManagerGlobal +android.hardware.camera2.CameraManager$CameraManagerGlobal$1 +android.hardware.camera2.CameraManager$CameraManagerGlobal$2 +android.hardware.camera2.CameraManager$CameraManagerGlobal$3 +android.hardware.camera2.CameraManager$CameraManagerGlobal$4 +android.hardware.camera2.CameraManager$TorchCallback +android.hardware.camera2.CameraMetadata +android.hardware.camera2.CaptureFailure +android.hardware.camera2.CaptureRequest +android.hardware.camera2.CaptureRequest$1 +android.hardware.camera2.CaptureRequest$2 +android.hardware.camera2.CaptureRequest$Builder +android.hardware.camera2.CaptureRequest$Key +android.hardware.camera2.CaptureResult +android.hardware.camera2.CaptureResult$1 +android.hardware.camera2.CaptureResult$2 +android.hardware.camera2.CaptureResult$3 +android.hardware.camera2.CaptureResult$Key +android.hardware.camera2.DngCreator +android.hardware.camera2.ICameraDeviceCallbacks +android.hardware.camera2.ICameraDeviceCallbacks$Stub +android.hardware.camera2.ICameraDeviceUser +android.hardware.camera2.ICameraDeviceUser$Stub +android.hardware.camera2.ICameraDeviceUser$Stub$Proxy +android.hardware.camera2.TotalCaptureResult +android.hardware.camera2.dispatch.ArgumentReplacingDispatcher +android.hardware.camera2.dispatch.BroadcastDispatcher +android.hardware.camera2.dispatch.Dispatchable +android.hardware.camera2.dispatch.DuckTypingDispatcher +android.hardware.camera2.dispatch.HandlerDispatcher +android.hardware.camera2.dispatch.HandlerDispatcher$1 +android.hardware.camera2.dispatch.InvokeDispatcher +android.hardware.camera2.dispatch.MethodNameInvoker +android.hardware.camera2.impl.CallbackProxies$DeviceCaptureCallbackProxy +android.hardware.camera2.impl.CallbackProxies$SessionStateCallbackProxy +android.hardware.camera2.impl.CameraCaptureSessionCore +android.hardware.camera2.impl.CameraCaptureSessionImpl +android.hardware.camera2.impl.CameraCaptureSessionImpl$1 +android.hardware.camera2.impl.CameraCaptureSessionImpl$2 +android.hardware.camera2.impl.CameraCaptureSessionImpl$AbortDrainListener +android.hardware.camera2.impl.CameraCaptureSessionImpl$IdleDrainListener +android.hardware.camera2.impl.CameraCaptureSessionImpl$SequenceDrainListener +android.hardware.camera2.impl.CameraDeviceImpl +android.hardware.camera2.impl.CameraDeviceImpl$1 +android.hardware.camera2.impl.CameraDeviceImpl$10 +android.hardware.camera2.impl.CameraDeviceImpl$2 +android.hardware.camera2.impl.CameraDeviceImpl$3 +android.hardware.camera2.impl.CameraDeviceImpl$4 +android.hardware.camera2.impl.CameraDeviceImpl$5 +android.hardware.camera2.impl.CameraDeviceImpl$6 +android.hardware.camera2.impl.CameraDeviceImpl$7 +android.hardware.camera2.impl.CameraDeviceImpl$9 +android.hardware.camera2.impl.CameraDeviceImpl$CameraDeviceCallbacks +android.hardware.camera2.impl.CameraDeviceImpl$CameraDeviceCallbacks$2 +android.hardware.camera2.impl.CameraDeviceImpl$CameraDeviceCallbacks$3 +android.hardware.camera2.impl.CameraDeviceImpl$CameraDeviceCallbacks$4 +android.hardware.camera2.impl.CameraDeviceImpl$CaptureCallback +android.hardware.camera2.impl.CameraDeviceImpl$CaptureCallbackHolder +android.hardware.camera2.impl.CameraDeviceImpl$FrameNumberTracker +android.hardware.camera2.impl.CameraDeviceImpl$RequestLastFrameNumbersHolder +android.hardware.camera2.impl.CameraDeviceImpl$StateCallbackKK +android.hardware.camera2.impl.CameraMetadataNative +android.hardware.camera2.impl.CameraMetadataNative$1 +android.hardware.camera2.impl.CameraMetadataNative$10 +android.hardware.camera2.impl.CameraMetadataNative$11 +android.hardware.camera2.impl.CameraMetadataNative$12 +android.hardware.camera2.impl.CameraMetadataNative$13 +android.hardware.camera2.impl.CameraMetadataNative$14 +android.hardware.camera2.impl.CameraMetadataNative$15 +android.hardware.camera2.impl.CameraMetadataNative$16 +android.hardware.camera2.impl.CameraMetadataNative$17 +android.hardware.camera2.impl.CameraMetadataNative$18 +android.hardware.camera2.impl.CameraMetadataNative$19 +android.hardware.camera2.impl.CameraMetadataNative$2 +android.hardware.camera2.impl.CameraMetadataNative$3 +android.hardware.camera2.impl.CameraMetadataNative$4 +android.hardware.camera2.impl.CameraMetadataNative$5 +android.hardware.camera2.impl.CameraMetadataNative$6 +android.hardware.camera2.impl.CameraMetadataNative$7 +android.hardware.camera2.impl.CameraMetadataNative$8 +android.hardware.camera2.impl.CameraMetadataNative$9 +android.hardware.camera2.impl.CameraMetadataNative$Key +android.hardware.camera2.impl.CaptureResultExtras +android.hardware.camera2.impl.CaptureResultExtras$1 +android.hardware.camera2.impl.GetCommand +android.hardware.camera2.impl.ICameraDeviceUserWrapper +android.hardware.camera2.impl.SetCommand +android.hardware.camera2.legacy.LegacyCameraDevice +android.hardware.camera2.legacy.LegacyExceptionUtils +android.hardware.camera2.legacy.LegacyExceptionUtils$BufferQueueAbandonedException +android.hardware.camera2.legacy.PerfMeasurement +android.hardware.camera2.marshal.MarshalHelpers +android.hardware.camera2.marshal.MarshalQueryable +android.hardware.camera2.marshal.MarshalRegistry +android.hardware.camera2.marshal.MarshalRegistry$MarshalToken +android.hardware.camera2.marshal.Marshaler +android.hardware.camera2.marshal.impl.MarshalQueryableArray +android.hardware.camera2.marshal.impl.MarshalQueryableArray$MarshalerArray +android.hardware.camera2.marshal.impl.MarshalQueryableBlackLevelPattern +android.hardware.camera2.marshal.impl.MarshalQueryableBlackLevelPattern$MarshalerBlackLevelPattern +android.hardware.camera2.marshal.impl.MarshalQueryableBoolean +android.hardware.camera2.marshal.impl.MarshalQueryableBoolean$MarshalerBoolean +android.hardware.camera2.marshal.impl.MarshalQueryableColorSpaceTransform +android.hardware.camera2.marshal.impl.MarshalQueryableColorSpaceTransform$MarshalerColorSpaceTransform +android.hardware.camera2.marshal.impl.MarshalQueryableEnum +android.hardware.camera2.marshal.impl.MarshalQueryableHighSpeedVideoConfiguration +android.hardware.camera2.marshal.impl.MarshalQueryableHighSpeedVideoConfiguration$MarshalerHighSpeedVideoConfiguration +android.hardware.camera2.marshal.impl.MarshalQueryableMeteringRectangle +android.hardware.camera2.marshal.impl.MarshalQueryableMeteringRectangle$MarshalerMeteringRectangle +android.hardware.camera2.marshal.impl.MarshalQueryableNativeByteToInteger +android.hardware.camera2.marshal.impl.MarshalQueryableNativeByteToInteger$MarshalerNativeByteToInteger +android.hardware.camera2.marshal.impl.MarshalQueryablePair +android.hardware.camera2.marshal.impl.MarshalQueryablePair$MarshalerPair +android.hardware.camera2.marshal.impl.MarshalQueryableParcelable +android.hardware.camera2.marshal.impl.MarshalQueryablePrimitive +android.hardware.camera2.marshal.impl.MarshalQueryablePrimitive$MarshalerPrimitive +android.hardware.camera2.marshal.impl.MarshalQueryableRange +android.hardware.camera2.marshal.impl.MarshalQueryableRange$MarshalerRange +android.hardware.camera2.marshal.impl.MarshalQueryableRect +android.hardware.camera2.marshal.impl.MarshalQueryableRect$MarshalerRect +android.hardware.camera2.marshal.impl.MarshalQueryableReprocessFormatsMap +android.hardware.camera2.marshal.impl.MarshalQueryableReprocessFormatsMap$MarshalerReprocessFormatsMap +android.hardware.camera2.marshal.impl.MarshalQueryableRggbChannelVector +android.hardware.camera2.marshal.impl.MarshalQueryableRggbChannelVector$MarshalerRggbChannelVector +android.hardware.camera2.marshal.impl.MarshalQueryableSize +android.hardware.camera2.marshal.impl.MarshalQueryableSize$MarshalerSize +android.hardware.camera2.marshal.impl.MarshalQueryableSizeF +android.hardware.camera2.marshal.impl.MarshalQueryableStreamConfiguration +android.hardware.camera2.marshal.impl.MarshalQueryableStreamConfiguration$MarshalerStreamConfiguration +android.hardware.camera2.marshal.impl.MarshalQueryableStreamConfigurationDuration +android.hardware.camera2.marshal.impl.MarshalQueryableStreamConfigurationDuration$MarshalerStreamConfigurationDuration +android.hardware.camera2.marshal.impl.MarshalQueryableString +android.hardware.camera2.params.BlackLevelPattern +android.hardware.camera2.params.ColorSpaceTransform +android.hardware.camera2.params.Face +android.hardware.camera2.params.HighSpeedVideoConfiguration +android.hardware.camera2.params.InputConfiguration +android.hardware.camera2.params.LensShadingMap +android.hardware.camera2.params.MeteringRectangle +android.hardware.camera2.params.OutputConfiguration +android.hardware.camera2.params.OutputConfiguration$1 +android.hardware.camera2.params.ReprocessFormatsMap +android.hardware.camera2.params.RggbChannelVector +android.hardware.camera2.params.StreamConfiguration +android.hardware.camera2.params.StreamConfigurationDuration +android.hardware.camera2.params.StreamConfigurationMap +android.hardware.camera2.params.TonemapCurve +android.hardware.camera2.utils.HashCodeHelpers +android.hardware.camera2.utils.SubmitInfo +android.hardware.camera2.utils.SubmitInfo$1 +android.hardware.camera2.utils.SurfaceUtils +android.hardware.camera2.utils.TaskDrainer +android.hardware.camera2.utils.TaskDrainer$1 +android.hardware.camera2.utils.TaskDrainer$DrainListener +android.hardware.camera2.utils.TaskSingleDrainer +android.hardware.camera2.utils.TypeReference +android.hardware.camera2.utils.TypeReference$SpecializedBaseTypeReference +android.hardware.camera2.utils.TypeReference$SpecializedTypeReference +android.hardware.display.DisplayManager +android.hardware.display.DisplayManager$DisplayListener +android.hardware.display.DisplayManagerGlobal +android.hardware.display.DisplayManagerGlobal$DisplayListenerDelegate +android.hardware.display.DisplayManagerGlobal$DisplayManagerCallback +android.hardware.display.DisplayManagerInternal +android.hardware.display.DisplayManagerInternal$DisplayPowerCallbacks +android.hardware.display.DisplayManagerInternal$DisplayPowerRequest +android.hardware.display.DisplayManagerInternal$DisplayTransactionListener +android.hardware.display.DisplayViewport +android.hardware.display.IDisplayManager +android.hardware.display.IDisplayManager$Stub +android.hardware.display.IDisplayManager$Stub$Proxy +android.hardware.display.IDisplayManagerCallback +android.hardware.display.IDisplayManagerCallback$Stub +android.hardware.display.IDisplayManagerCallback$Stub$Proxy +android.hardware.display.IVirtualDisplayCallback +android.hardware.display.WifiDisplay +android.hardware.display.WifiDisplay$1 +android.hardware.display.WifiDisplaySessionInfo +android.hardware.display.WifiDisplaySessionInfo$1 +android.hardware.display.WifiDisplayStatus +android.hardware.display.WifiDisplayStatus$1 +android.hardware.fingerprint.Fingerprint +android.hardware.fingerprint.Fingerprint$1 +android.hardware.fingerprint.FingerprintManager +android.hardware.fingerprint.FingerprintManager$1 +android.hardware.fingerprint.FingerprintManager$2 +android.hardware.fingerprint.FingerprintManager$AuthenticationCallback +android.hardware.fingerprint.FingerprintManager$AuthenticationResult +android.hardware.fingerprint.FingerprintManager$LockoutResetCallback +android.hardware.fingerprint.FingerprintManager$MyHandler +android.hardware.fingerprint.IFingerprintClientActiveCallback +android.hardware.fingerprint.IFingerprintService +android.hardware.fingerprint.IFingerprintService$Stub +android.hardware.fingerprint.IFingerprintService$Stub$Proxy +android.hardware.fingerprint.IFingerprintServiceLockoutResetCallback +android.hardware.fingerprint.IFingerprintServiceLockoutResetCallback$Stub +android.hardware.fingerprint.IFingerprintServiceLockoutResetCallback$Stub$Proxy +android.hardware.fingerprint.IFingerprintServiceReceiver +android.hardware.fingerprint.IFingerprintServiceReceiver$Stub +android.hardware.hdmi.HdmiControlManager +android.hardware.hdmi.HdmiPlaybackClient$DisplayStatusCallback +android.hardware.input.IInputDevicesChangedListener +android.hardware.input.IInputDevicesChangedListener$Stub +android.hardware.input.IInputDevicesChangedListener$Stub$Proxy +android.hardware.input.IInputManager +android.hardware.input.IInputManager$Stub +android.hardware.input.IInputManager$Stub$Proxy +android.hardware.input.ITabletModeChangedListener +android.hardware.input.InputDeviceIdentifier +android.hardware.input.InputDeviceIdentifier$1 +android.hardware.input.InputManager +android.hardware.input.InputManager$InputDeviceListener +android.hardware.input.InputManager$InputDeviceListenerDelegate +android.hardware.input.InputManager$InputDevicesChangedListener +android.hardware.input.InputManager$OnTabletModeChangedListener +android.hardware.input.InputManagerInternal +android.hardware.input.KeyboardLayout +android.hardware.input.KeyboardLayout$1 +android.hardware.input.TouchCalibration +android.hardware.input.TouchCalibration$1 +android.hardware.location.ActivityRecognitionHardware +android.hardware.location.ContextHubInfo +android.hardware.location.ContextHubInfo$1 +android.hardware.location.ContextHubManager +android.hardware.location.ContextHubManager$1 +android.hardware.location.ContextHubManager$Callback +android.hardware.location.ContextHubManager$ICallback +android.hardware.location.ContextHubMessage +android.hardware.location.ContextHubMessage$1 +android.hardware.location.GeofenceHardware +android.hardware.location.GeofenceHardware$GeofenceHardwareMonitorCallbackWrapper +android.hardware.location.GeofenceHardwareCallback +android.hardware.location.GeofenceHardwareImpl +android.hardware.location.GeofenceHardwareImpl$1 +android.hardware.location.GeofenceHardwareImpl$2 +android.hardware.location.GeofenceHardwareImpl$3 +android.hardware.location.GeofenceHardwareImpl$Reaper +android.hardware.location.GeofenceHardwareMonitorCallback +android.hardware.location.GeofenceHardwareService +android.hardware.location.GeofenceHardwareService$1 +android.hardware.location.IActivityRecognitionHardware +android.hardware.location.IActivityRecognitionHardware$Stub +android.hardware.location.IActivityRecognitionHardwareClient +android.hardware.location.IActivityRecognitionHardwareClient$Stub +android.hardware.location.IActivityRecognitionHardwareClient$Stub$Proxy +android.hardware.location.IActivityRecognitionHardwareWatcher +android.hardware.location.IContextHubCallback +android.hardware.location.IContextHubCallback$Stub +android.hardware.location.IContextHubCallback$Stub$Proxy +android.hardware.location.IContextHubService +android.hardware.location.IContextHubService$Stub +android.hardware.location.IContextHubService$Stub$Proxy +android.hardware.location.IFusedLocationHardware +android.hardware.location.IGeofenceHardware +android.hardware.location.IGeofenceHardware$Stub +android.hardware.location.IGeofenceHardware$Stub$Proxy +android.hardware.location.IGeofenceHardwareMonitorCallback +android.hardware.location.IGeofenceHardwareMonitorCallback$Stub +android.hardware.location.IGeofenceHardwareMonitorCallback$Stub$Proxy +android.hardware.location.MemoryRegion +android.hardware.location.MemoryRegion$1 +android.hardware.location.NanoApp +android.hardware.location.NanoAppFilter +android.hardware.location.NanoAppFilter$1 +android.hardware.location.NanoAppInstanceInfo +android.hardware.location.NanoAppInstanceInfo$1 +android.hardware.radio.RadioManager +android.hardware.radio.RadioManager$AmBandConfig +android.hardware.radio.RadioManager$AmBandConfig$1 +android.hardware.radio.RadioManager$AmBandDescriptor +android.hardware.radio.RadioManager$AmBandDescriptor$1 +android.hardware.radio.RadioManager$BandConfig +android.hardware.radio.RadioManager$BandConfig$1 +android.hardware.radio.RadioManager$BandDescriptor +android.hardware.radio.RadioManager$BandDescriptor$1 +android.hardware.radio.RadioManager$FmBandConfig +android.hardware.radio.RadioManager$FmBandConfig$1 +android.hardware.radio.RadioManager$FmBandDescriptor +android.hardware.radio.RadioManager$FmBandDescriptor$1 +android.hardware.radio.RadioManager$ModuleProperties +android.hardware.radio.RadioManager$ModuleProperties$1 +android.hardware.radio.RadioManager$ProgramInfo +android.hardware.radio.RadioManager$ProgramInfo$1 +android.hardware.radio.RadioMetadata +android.hardware.radio.RadioMetadata$1 +android.hardware.radio.RadioModule +android.hardware.radio.RadioTuner +android.hardware.radio.V1_0.Call +android.hardware.radio.V1_0.CardStatus +android.hardware.radio.V1_0.CdmaSignalStrength +android.hardware.radio.V1_0.CellIdentity +android.hardware.radio.V1_0.CellIdentityCdma +android.hardware.radio.V1_0.CellIdentityGsm +android.hardware.radio.V1_0.CellIdentityLte +android.hardware.radio.V1_0.CellIdentityTdscdma +android.hardware.radio.V1_0.CellIdentityWcdma +android.hardware.radio.V1_0.CellInfo +android.hardware.radio.V1_0.CellInfoCdma +android.hardware.radio.V1_0.CellInfoGsm +android.hardware.radio.V1_0.CellInfoLte +android.hardware.radio.V1_0.CellInfoTdscdma +android.hardware.radio.V1_0.CellInfoType +android.hardware.radio.V1_0.CellInfoWcdma +android.hardware.radio.V1_0.DataRegStateResult +android.hardware.radio.V1_0.EvdoSignalStrength +android.hardware.radio.V1_0.GsmSignalStrength +android.hardware.radio.V1_0.HardwareConfig +android.hardware.radio.V1_0.IRadio +android.hardware.radio.V1_0.IRadio$Proxy +android.hardware.radio.V1_0.IRadioIndication +android.hardware.radio.V1_0.IRadioIndication$Stub +android.hardware.radio.V1_0.IRadioResponse +android.hardware.radio.V1_0.IRadioResponse$Stub +android.hardware.radio.V1_0.LceStatusInfo +android.hardware.radio.V1_0.LteSignalStrength +android.hardware.radio.V1_0.RadioCapability +android.hardware.radio.V1_0.RadioResponseInfo +android.hardware.radio.V1_0.RegState +android.hardware.radio.V1_0.SignalStrength +android.hardware.radio.V1_0.TdScdmaSignalStrength +android.hardware.radio.V1_0.VoiceRegStateResult +android.hardware.radio.V1_0.WcdmaSignalStrength +android.hardware.radio.deprecated.V1_0.IOemHook +android.hardware.radio.deprecated.V1_0.IOemHook$Proxy +android.hardware.radio.deprecated.V1_0.IOemHookIndication +android.hardware.radio.deprecated.V1_0.IOemHookIndication$Stub +android.hardware.radio.deprecated.V1_0.IOemHookResponse +android.hardware.radio.deprecated.V1_0.IOemHookResponse$Stub +android.hardware.soundtrigger.IRecognitionStatusCallback +android.hardware.soundtrigger.IRecognitionStatusCallback$Stub +android.hardware.soundtrigger.KeyphraseEnrollmentInfo +android.hardware.soundtrigger.KeyphraseMetadata +android.hardware.soundtrigger.SoundTrigger +android.hardware.soundtrigger.SoundTrigger$ConfidenceLevel +android.hardware.soundtrigger.SoundTrigger$ConfidenceLevel$1 +android.hardware.soundtrigger.SoundTrigger$GenericRecognitionEvent +android.hardware.soundtrigger.SoundTrigger$GenericRecognitionEvent$1 +android.hardware.soundtrigger.SoundTrigger$GenericSoundModel +android.hardware.soundtrigger.SoundTrigger$GenericSoundModel$1 +android.hardware.soundtrigger.SoundTrigger$Keyphrase +android.hardware.soundtrigger.SoundTrigger$Keyphrase$1 +android.hardware.soundtrigger.SoundTrigger$KeyphraseRecognitionEvent +android.hardware.soundtrigger.SoundTrigger$KeyphraseRecognitionEvent$1 +android.hardware.soundtrigger.SoundTrigger$KeyphraseRecognitionExtra +android.hardware.soundtrigger.SoundTrigger$KeyphraseRecognitionExtra$1 +android.hardware.soundtrigger.SoundTrigger$KeyphraseSoundModel +android.hardware.soundtrigger.SoundTrigger$KeyphraseSoundModel$1 +android.hardware.soundtrigger.SoundTrigger$ModuleProperties +android.hardware.soundtrigger.SoundTrigger$ModuleProperties$1 +android.hardware.soundtrigger.SoundTrigger$RecognitionConfig +android.hardware.soundtrigger.SoundTrigger$RecognitionConfig$1 +android.hardware.soundtrigger.SoundTrigger$RecognitionEvent +android.hardware.soundtrigger.SoundTrigger$RecognitionEvent$1 +android.hardware.soundtrigger.SoundTrigger$SoundModel +android.hardware.soundtrigger.SoundTrigger$SoundModelEvent +android.hardware.soundtrigger.SoundTrigger$SoundModelEvent$1 +android.hardware.soundtrigger.SoundTrigger$StatusListener +android.hardware.soundtrigger.SoundTriggerModule +android.hardware.usb.IUsbManager +android.hardware.usb.IUsbManager$Stub +android.hardware.usb.IUsbManager$Stub$Proxy +android.hardware.usb.UsbAccessory +android.hardware.usb.UsbDevice +android.hardware.usb.UsbDevice$1 +android.hardware.usb.UsbDeviceConnection +android.hardware.usb.UsbManager +android.hardware.usb.UsbPort +android.hardware.usb.UsbPort$1 +android.hardware.usb.UsbPortStatus +android.hardware.usb.UsbPortStatus$1 +android.hardware.usb.UsbRequest +android.hidl.base.V1_0.DebugInfo +android.hidl.base.V1_0.IBase +android.hidl.manager.V1_0.IServiceManager +android.hidl.manager.V1_0.IServiceManager$Proxy +android.hidl.manager.V1_0.IServiceNotification +android.hidl.manager.V1_0.IServiceNotification$Stub +android.icu.impl.BMPSet +android.icu.impl.CacheBase +android.icu.impl.CacheValue +android.icu.impl.CacheValue$NullValue +android.icu.impl.CacheValue$SoftValue +android.icu.impl.CacheValue$Strength +android.icu.impl.CalendarUtil +android.icu.impl.CalendarUtil$CalendarPreferences +android.icu.impl.CaseMapImpl +android.icu.impl.CaseMapImpl$GreekUpper +android.icu.impl.CaseMapImpl$StringContextIterator +android.icu.impl.CharTrie +android.icu.impl.CharacterIteration +android.icu.impl.ClassLoaderUtil +android.icu.impl.CurrencyData +android.icu.impl.CurrencyData$CurrencyDisplayInfo +android.icu.impl.CurrencyData$CurrencyDisplayInfoProvider +android.icu.impl.CurrencyData$CurrencySpacingInfo +android.icu.impl.CurrencyData$CurrencySpacingInfo$SpacingPattern +android.icu.impl.CurrencyData$CurrencySpacingInfo$SpacingType +android.icu.impl.DateNumberFormat +android.icu.impl.DontCareFieldPosition +android.icu.impl.Grego +android.icu.impl.ICUBinary +android.icu.impl.ICUBinary$Authenticate +android.icu.impl.ICUBinary$DatPackageReader +android.icu.impl.ICUBinary$DatPackageReader$IsAcceptable +android.icu.impl.ICUBinary$DataFile +android.icu.impl.ICUBinary$PackageDataFile +android.icu.impl.ICUCache +android.icu.impl.ICUConfig +android.icu.impl.ICUCurrencyDisplayInfoProvider +android.icu.impl.ICUCurrencyDisplayInfoProvider$ICUCurrencyDisplayInfo +android.icu.impl.ICUCurrencyDisplayInfoProvider$ICUCurrencyDisplayInfo$SpacingInfoSink +android.icu.impl.ICUCurrencyMetaInfo +android.icu.impl.ICUCurrencyMetaInfo$Collector +android.icu.impl.ICUCurrencyMetaInfo$CurrencyCollector +android.icu.impl.ICUCurrencyMetaInfo$UniqueList +android.icu.impl.ICUData +android.icu.impl.ICUDebug +android.icu.impl.ICULangDataTables +android.icu.impl.ICULocaleService +android.icu.impl.ICULocaleService$ICUResourceBundleFactory +android.icu.impl.ICULocaleService$LocaleKey +android.icu.impl.ICULocaleService$LocaleKeyFactory +android.icu.impl.ICUNotifier +android.icu.impl.ICURWLock +android.icu.impl.ICURegionDataTables +android.icu.impl.ICUResourceBundle +android.icu.impl.ICUResourceBundle$1 +android.icu.impl.ICUResourceBundle$2 +android.icu.impl.ICUResourceBundle$3 +android.icu.impl.ICUResourceBundle$3$1 +android.icu.impl.ICUResourceBundle$4 +android.icu.impl.ICUResourceBundle$AvailEntry +android.icu.impl.ICUResourceBundle$Loader +android.icu.impl.ICUResourceBundle$OpenType +android.icu.impl.ICUResourceBundle$WholeBundle +android.icu.impl.ICUResourceBundleImpl +android.icu.impl.ICUResourceBundleImpl$ResourceArray +android.icu.impl.ICUResourceBundleImpl$ResourceBinary +android.icu.impl.ICUResourceBundleImpl$ResourceContainer +android.icu.impl.ICUResourceBundleImpl$ResourceInt +android.icu.impl.ICUResourceBundleImpl$ResourceIntVector +android.icu.impl.ICUResourceBundleImpl$ResourceString +android.icu.impl.ICUResourceBundleImpl$ResourceTable +android.icu.impl.ICUResourceBundleReader +android.icu.impl.ICUResourceBundleReader$Array +android.icu.impl.ICUResourceBundleReader$Array16 +android.icu.impl.ICUResourceBundleReader$Array32 +android.icu.impl.ICUResourceBundleReader$Container +android.icu.impl.ICUResourceBundleReader$IsAcceptable +android.icu.impl.ICUResourceBundleReader$ReaderCache +android.icu.impl.ICUResourceBundleReader$ReaderCacheKey +android.icu.impl.ICUResourceBundleReader$ReaderValue +android.icu.impl.ICUResourceBundleReader$ResourceCache +android.icu.impl.ICUResourceBundleReader$ResourceCache$Level +android.icu.impl.ICUResourceBundleReader$Table +android.icu.impl.ICUResourceBundleReader$Table16 +android.icu.impl.ICUResourceBundleReader$Table1632 +android.icu.impl.ICUResourceTableAccess +android.icu.impl.ICUService +android.icu.impl.ICUService$CacheEntry +android.icu.impl.ICUService$Factory +android.icu.impl.ICUService$Key +android.icu.impl.IDNA2003 +android.icu.impl.JavaTimeZone +android.icu.impl.LocaleDisplayNamesImpl +android.icu.impl.LocaleDisplayNamesImpl$Cache +android.icu.impl.LocaleDisplayNamesImpl$CapitalizationContextUsage +android.icu.impl.LocaleDisplayNamesImpl$DataTable +android.icu.impl.LocaleDisplayNamesImpl$DataTables +android.icu.impl.LocaleDisplayNamesImpl$ICUDataTable +android.icu.impl.LocaleDisplayNamesImpl$ICUDataTables +android.icu.impl.LocaleDisplayNamesImpl$LangDataTables +android.icu.impl.LocaleDisplayNamesImpl$RegionDataTables +android.icu.impl.LocaleIDParser +android.icu.impl.LocaleIDs +android.icu.impl.Norm2AllModes +android.icu.impl.Norm2AllModes$1 +android.icu.impl.Norm2AllModes$ComposeNormalizer2 +android.icu.impl.Norm2AllModes$DecomposeNormalizer2 +android.icu.impl.Norm2AllModes$FCDNormalizer2 +android.icu.impl.Norm2AllModes$NFCSingleton +android.icu.impl.Norm2AllModes$NFKCSingleton +android.icu.impl.Norm2AllModes$NoopNormalizer2 +android.icu.impl.Norm2AllModes$Norm2AllModesSingleton +android.icu.impl.Norm2AllModes$Normalizer2WithImpl +android.icu.impl.Normalizer2Impl +android.icu.impl.Normalizer2Impl$1 +android.icu.impl.Normalizer2Impl$IsAcceptable +android.icu.impl.Normalizer2Impl$ReorderingBuffer +android.icu.impl.OlsonTimeZone +android.icu.impl.Pair +android.icu.impl.PatternProps +android.icu.impl.PatternTokenizer +android.icu.impl.PluralRulesLoader +android.icu.impl.ReplaceableUCharacterIterator +android.icu.impl.RuleCharacterIterator +android.icu.impl.SimpleCache +android.icu.impl.SimpleFormatterImpl +android.icu.impl.SoftCache +android.icu.impl.StandardPlural +android.icu.impl.StringPrepDataReader +android.icu.impl.TextTrieMap +android.icu.impl.TextTrieMap$Node +android.icu.impl.TimeZoneNamesFactoryImpl +android.icu.impl.TimeZoneNamesImpl +android.icu.impl.TimeZoneNamesImpl$MZ2TZsCache +android.icu.impl.TimeZoneNamesImpl$MZMapEntry +android.icu.impl.TimeZoneNamesImpl$TZ2MZsCache +android.icu.impl.TimeZoneNamesImpl$ZNames +android.icu.impl.TimeZoneNamesImpl$ZNames$NameTypeIndex +android.icu.impl.TimeZoneNamesImpl$ZNamesLoader +android.icu.impl.Trie +android.icu.impl.Trie$DataManipulate +android.icu.impl.Trie$DefaultGetFoldingOffset +android.icu.impl.Trie2 +android.icu.impl.Trie2$1 +android.icu.impl.Trie2$Range +android.icu.impl.Trie2$Trie2Iterator +android.icu.impl.Trie2$UTrie2Header +android.icu.impl.Trie2$ValueMapper +android.icu.impl.Trie2$ValueWidth +android.icu.impl.Trie2_16 +android.icu.impl.Trie2_32 +android.icu.impl.UBiDiProps +android.icu.impl.UBiDiProps$IsAcceptable +android.icu.impl.UCaseProps +android.icu.impl.UCaseProps$ContextIterator +android.icu.impl.UCaseProps$IsAcceptable +android.icu.impl.UCharacterProperty +android.icu.impl.UCharacterProperty$1 +android.icu.impl.UCharacterProperty$10 +android.icu.impl.UCharacterProperty$11 +android.icu.impl.UCharacterProperty$12 +android.icu.impl.UCharacterProperty$13 +android.icu.impl.UCharacterProperty$14 +android.icu.impl.UCharacterProperty$15 +android.icu.impl.UCharacterProperty$16 +android.icu.impl.UCharacterProperty$17 +android.icu.impl.UCharacterProperty$18 +android.icu.impl.UCharacterProperty$19 +android.icu.impl.UCharacterProperty$2 +android.icu.impl.UCharacterProperty$20 +android.icu.impl.UCharacterProperty$21 +android.icu.impl.UCharacterProperty$22 +android.icu.impl.UCharacterProperty$23 +android.icu.impl.UCharacterProperty$3 +android.icu.impl.UCharacterProperty$4 +android.icu.impl.UCharacterProperty$5 +android.icu.impl.UCharacterProperty$6 +android.icu.impl.UCharacterProperty$7 +android.icu.impl.UCharacterProperty$8 +android.icu.impl.UCharacterProperty$9 +android.icu.impl.UCharacterProperty$BiDiIntProperty +android.icu.impl.UCharacterProperty$BinaryProperty +android.icu.impl.UCharacterProperty$CaseBinaryProperty +android.icu.impl.UCharacterProperty$CombiningClassIntProperty +android.icu.impl.UCharacterProperty$IntProperty +android.icu.impl.UCharacterProperty$IsAcceptable +android.icu.impl.UCharacterProperty$NormInertBinaryProperty +android.icu.impl.UCharacterProperty$NormQuickCheckIntProperty +android.icu.impl.UPropertyAliases +android.icu.impl.UPropertyAliases$IsAcceptable +android.icu.impl.URLHandler$URLVisitor +android.icu.impl.UResource$Array +android.icu.impl.UResource$Key +android.icu.impl.UResource$Sink +android.icu.impl.UResource$Table +android.icu.impl.UResource$Value +android.icu.impl.USerializedSet +android.icu.impl.Utility +android.icu.impl.ZoneMeta +android.icu.impl.ZoneMeta$CustomTimeZoneCache +android.icu.impl.ZoneMeta$SystemTimeZoneCache +android.icu.impl.coll.Collation +android.icu.impl.coll.CollationCompare +android.icu.impl.coll.CollationData +android.icu.impl.coll.CollationDataReader +android.icu.impl.coll.CollationDataReader$IsAcceptable +android.icu.impl.coll.CollationFCD +android.icu.impl.coll.CollationFastLatin +android.icu.impl.coll.CollationIterator +android.icu.impl.coll.CollationIterator$CEBuffer +android.icu.impl.coll.CollationKeys +android.icu.impl.coll.CollationKeys$LevelCallback +android.icu.impl.coll.CollationKeys$SortKeyByteSink +android.icu.impl.coll.CollationLoader +android.icu.impl.coll.CollationRoot +android.icu.impl.coll.CollationSettings +android.icu.impl.coll.CollationTailoring +android.icu.impl.coll.ContractionsAndExpansions +android.icu.impl.coll.FCDUTF16CollationIterator +android.icu.impl.coll.SharedObject +android.icu.impl.coll.SharedObject$Reference +android.icu.impl.coll.UTF16CollationIterator +android.icu.impl.locale.AsciiUtil +android.icu.impl.locale.BaseLocale +android.icu.impl.locale.BaseLocale$Cache +android.icu.impl.locale.BaseLocale$Key +android.icu.impl.locale.LocaleObjectCache +android.icu.impl.locale.LocaleObjectCache$CacheEntry +android.icu.impl.locale.LocaleSyntaxException +android.icu.lang.UCharacter +android.icu.lang.UCharacterEnums$ECharacterCategory +android.icu.lang.UCharacterEnums$ECharacterDirection +android.icu.lang.UScript +android.icu.lang.UScript$ScriptUsage +android.icu.math.BigDecimal +android.icu.math.MathContext +android.icu.text.AlphabeticIndex +android.icu.text.AlphabeticIndex$1 +android.icu.text.AlphabeticIndex$Bucket +android.icu.text.AlphabeticIndex$Bucket$LabelType +android.icu.text.AlphabeticIndex$BucketList +android.icu.text.AlphabeticIndex$ImmutableIndex +android.icu.text.Bidi +android.icu.text.Bidi$ImpTabPair +android.icu.text.BreakIterator +android.icu.text.BreakIterator$BreakIteratorCache +android.icu.text.BreakIterator$BreakIteratorServiceShim +android.icu.text.BreakIteratorFactory +android.icu.text.BreakIteratorFactory$BFService +android.icu.text.BreakIteratorFactory$BFService$1RBBreakIteratorFactory +android.icu.text.CaseMap +android.icu.text.CaseMap$Upper +android.icu.text.CollationKey +android.icu.text.Collator +android.icu.text.Collator$ServiceShim +android.icu.text.CollatorServiceShim +android.icu.text.CollatorServiceShim$CService +android.icu.text.CollatorServiceShim$CService$1CollatorFactory +android.icu.text.CurrencyDisplayNames +android.icu.text.CurrencyMetaInfo +android.icu.text.CurrencyMetaInfo$CurrencyDigits +android.icu.text.CurrencyMetaInfo$CurrencyFilter +android.icu.text.CurrencyPluralInfo +android.icu.text.DateFormat +android.icu.text.DateFormat$BooleanAttribute +android.icu.text.DateFormat$Field +android.icu.text.DateFormatSymbols +android.icu.text.DateFormatSymbols$1 +android.icu.text.DateFormatSymbols$CalendarDataSink +android.icu.text.DateFormatSymbols$CalendarDataSink$AliasType +android.icu.text.DateFormatSymbols$CapitalizationContextUsage +android.icu.text.DateIntervalFormat +android.icu.text.DateIntervalFormat$BestMatchInfo +android.icu.text.DateIntervalFormat$SkeletonAndItsBestMatch +android.icu.text.DateIntervalInfo +android.icu.text.DateIntervalInfo$DateIntervalSink +android.icu.text.DateIntervalInfo$PatternInfo +android.icu.text.DateTimePatternGenerator +android.icu.text.DateTimePatternGenerator$AppendItemFormatsSink +android.icu.text.DateTimePatternGenerator$AppendItemNamesSink +android.icu.text.DateTimePatternGenerator$AvailableFormatsSink +android.icu.text.DateTimePatternGenerator$DTPGflags +android.icu.text.DateTimePatternGenerator$DateTimeMatcher +android.icu.text.DateTimePatternGenerator$DayPeriodAllowedHoursSink +android.icu.text.DateTimePatternGenerator$DistanceInfo +android.icu.text.DateTimePatternGenerator$FormatParser +android.icu.text.DateTimePatternGenerator$PatternInfo +android.icu.text.DateTimePatternGenerator$PatternWithMatcher +android.icu.text.DateTimePatternGenerator$PatternWithSkeletonFlag +android.icu.text.DateTimePatternGenerator$SkeletonFields +android.icu.text.DateTimePatternGenerator$VariableField +android.icu.text.DecimalFormat +android.icu.text.DecimalFormat$Unit +android.icu.text.DecimalFormatSymbols +android.icu.text.DecimalFormatSymbols$1 +android.icu.text.DecimalFormatSymbols$CacheData +android.icu.text.DecimalFormatSymbols$DecFmtDataSink +android.icu.text.DigitList +android.icu.text.DisplayContext +android.icu.text.DisplayContext$Type +android.icu.text.Edits +android.icu.text.IDNA +android.icu.text.LanguageBreakEngine +android.icu.text.ListFormatter$Style +android.icu.text.LocaleDisplayNames +android.icu.text.LocaleDisplayNames$DialectHandling +android.icu.text.MeasureFormat +android.icu.text.MeasureFormat$FormatWidth +android.icu.text.MeasureFormat$ImmutableNumberFormat +android.icu.text.MeasureFormat$MeasureFormatData +android.icu.text.MeasureFormat$UnitDataSink +android.icu.text.Normalizer +android.icu.text.Normalizer$FCDMode +android.icu.text.Normalizer$Mode +android.icu.text.Normalizer$ModeImpl +android.icu.text.Normalizer$NFCMode +android.icu.text.Normalizer$NFCModeImpl +android.icu.text.Normalizer$NFDMode +android.icu.text.Normalizer$NFKCMode +android.icu.text.Normalizer$NFKDMode +android.icu.text.Normalizer$NFKDModeImpl +android.icu.text.Normalizer$NONEMode +android.icu.text.Normalizer$QuickCheckResult +android.icu.text.Normalizer2 +android.icu.text.NumberFormat +android.icu.text.NumberFormat$Field +android.icu.text.NumberFormat$NumberFormatShim +android.icu.text.NumberFormatServiceShim +android.icu.text.NumberFormatServiceShim$NFService +android.icu.text.NumberFormatServiceShim$NFService$1RBNumberFormatFactory +android.icu.text.NumberingSystem +android.icu.text.NumberingSystem$1 +android.icu.text.NumberingSystem$2 +android.icu.text.NumberingSystem$LocaleLookupData +android.icu.text.PluralRanges +android.icu.text.PluralRanges$Matrix +android.icu.text.PluralRules +android.icu.text.PluralRules$1 +android.icu.text.PluralRules$AndConstraint +android.icu.text.PluralRules$BinaryConstraint +android.icu.text.PluralRules$Constraint +android.icu.text.PluralRules$Factory +android.icu.text.PluralRules$FixedDecimal +android.icu.text.PluralRules$FixedDecimalRange +android.icu.text.PluralRules$FixedDecimalSamples +android.icu.text.PluralRules$Operand +android.icu.text.PluralRules$PluralType +android.icu.text.PluralRules$RangeConstraint +android.icu.text.PluralRules$Rule +android.icu.text.PluralRules$RuleList +android.icu.text.PluralRules$SampleType +android.icu.text.PluralRules$SimpleTokenizer +android.icu.text.QuantityFormatter +android.icu.text.RBBIDataWrapper +android.icu.text.RBBIDataWrapper$IsAcceptable +android.icu.text.RBBIDataWrapper$RBBIDataHeader +android.icu.text.RBBIDataWrapper$TrieFoldingFunc +android.icu.text.RawCollationKey +android.icu.text.RelativeDateTimeFormatter +android.icu.text.RelativeDateTimeFormatter$AbsoluteUnit +android.icu.text.RelativeDateTimeFormatter$Cache +android.icu.text.RelativeDateTimeFormatter$Cache$1 +android.icu.text.RelativeDateTimeFormatter$Direction +android.icu.text.RelativeDateTimeFormatter$Loader +android.icu.text.RelativeDateTimeFormatter$RelDateTimeDataSink +android.icu.text.RelativeDateTimeFormatter$RelDateTimeDataSink$DateTimeUnit +android.icu.text.RelativeDateTimeFormatter$RelativeDateTimeFormatterData +android.icu.text.RelativeDateTimeFormatter$RelativeUnit +android.icu.text.RelativeDateTimeFormatter$Style +android.icu.text.Replaceable +android.icu.text.ReplaceableString +android.icu.text.RuleBasedBreakIterator +android.icu.text.RuleBasedBreakIterator$LookAheadResults +android.icu.text.RuleBasedCollator +android.icu.text.RuleBasedCollator$CollationBuffer +android.icu.text.RuleBasedCollator$CollationKeyByteSink +android.icu.text.RuleBasedCollator$FCDUTF16NFDIterator +android.icu.text.RuleBasedCollator$NFDIterator +android.icu.text.RuleBasedCollator$UTF16NFDIterator +android.icu.text.SimpleDateFormat +android.icu.text.SimpleDateFormat$PatternItem +android.icu.text.StringPrep +android.icu.text.StringPrepParseException +android.icu.text.TimeZoneNames +android.icu.text.TimeZoneNames$Cache +android.icu.text.TimeZoneNames$Factory +android.icu.text.TimeZoneNames$NameType +android.icu.text.UCharacterIterator +android.icu.text.UFieldPosition +android.icu.text.UFormat +android.icu.text.UForwardCharacterIterator +android.icu.text.UTF16 +android.icu.text.UTF16$StringComparator +android.icu.text.UnhandledBreakEngine +android.icu.text.UnicodeFilter +android.icu.text.UnicodeMatcher +android.icu.text.UnicodeSet +android.icu.text.UnicodeSet$Filter +android.icu.text.UnicodeSet$GeneralCategoryMaskFilter +android.icu.text.UnicodeSet$IntPropertyFilter +android.icu.text.UnicodeSet$UnicodeSetIterator2 +android.icu.text.UnicodeSetSpanner +android.icu.util.BasicTimeZone +android.icu.util.ByteArrayWrapper +android.icu.util.BytesTrie +android.icu.util.BytesTrie$Result +android.icu.util.Calendar +android.icu.util.Calendar$CalType +android.icu.util.Calendar$FormatConfiguration +android.icu.util.Calendar$PatternData +android.icu.util.Calendar$WeekData +android.icu.util.Calendar$WeekDataCache +android.icu.util.CharsTrie +android.icu.util.CharsTrie$Entry +android.icu.util.CharsTrie$Iterator +android.icu.util.Currency +android.icu.util.Currency$1 +android.icu.util.Currency$CurrencyUsage +android.icu.util.Currency$EquivalenceRelation +android.icu.util.CurrencyAmount +android.icu.util.Freezable +android.icu.util.GregorianCalendar +android.icu.util.ICUException +android.icu.util.ICUUncheckedIOException +android.icu.util.LocaleData +android.icu.util.Measure +android.icu.util.MeasureUnit +android.icu.util.MeasureUnit$1 +android.icu.util.MeasureUnit$2 +android.icu.util.MeasureUnit$3 +android.icu.util.MeasureUnit$Factory +android.icu.util.Output +android.icu.util.SimpleTimeZone +android.icu.util.TimeUnit +android.icu.util.TimeZone +android.icu.util.TimeZone$ConstantZone +android.icu.util.ULocale +android.icu.util.ULocale$1 +android.icu.util.ULocale$2 +android.icu.util.ULocale$Category +android.icu.util.ULocale$JDKLocaleHelper +android.icu.util.ULocale$Type +android.icu.util.UResourceBundle +android.icu.util.UResourceBundle$RootType +android.icu.util.UResourceBundleIterator +android.icu.util.UResourceTypeMismatchException +android.icu.util.VersionInfo +android.inputmethodservice.AbstractInputMethodService +android.inputmethodservice.AbstractInputMethodService$AbstractInputMethodImpl +android.inputmethodservice.AbstractInputMethodService$AbstractInputMethodSessionImpl +android.inputmethodservice.IInputMethodSessionWrapper +android.inputmethodservice.IInputMethodSessionWrapper$ImeInputEventReceiver +android.inputmethodservice.IInputMethodWrapper +android.inputmethodservice.IInputMethodWrapper$InputMethodSessionCallbackWrapper +android.inputmethodservice.InputMethodService +android.inputmethodservice.InputMethodService$1 +android.inputmethodservice.InputMethodService$2 +android.inputmethodservice.InputMethodService$InputMethodImpl +android.inputmethodservice.InputMethodService$InputMethodSessionImpl +android.inputmethodservice.InputMethodService$Insets +android.inputmethodservice.InputMethodService$SettingsObserver +android.inputmethodservice.SoftInputWindow +android.location.Address +android.location.Address$1 +android.location.BatchedLocationCallbackTransport +android.location.BatchedLocationCallbackTransport$CallbackTransport +android.location.Country +android.location.Country$1 +android.location.CountryDetector +android.location.CountryDetector$ListenerTransport +android.location.CountryDetector$ListenerTransport$1 +android.location.CountryListener +android.location.Criteria +android.location.Criteria$1 +android.location.Geocoder +android.location.GeocoderParams +android.location.GeocoderParams$1 +android.location.Geofence +android.location.GnssMeasurementCallbackTransport +android.location.GnssMeasurementCallbackTransport$ListenerTransport +android.location.GnssNavigationMessageCallbackTransport +android.location.GnssNavigationMessageCallbackTransport$ListenerTransport +android.location.GnssStatus +android.location.GnssStatus$Callback +android.location.GpsSatellite +android.location.GpsStatus +android.location.GpsStatus$1 +android.location.GpsStatus$Listener +android.location.GpsStatus$SatelliteIterator +android.location.IBatchedLocationCallback +android.location.IBatchedLocationCallback$Stub +android.location.ICountryDetector +android.location.ICountryDetector$Stub +android.location.ICountryDetector$Stub$Proxy +android.location.ICountryListener +android.location.ICountryListener$Stub +android.location.ICountryListener$Stub$Proxy +android.location.IFusedProvider +android.location.IFusedProvider$Stub +android.location.IGeocodeProvider +android.location.IGeocodeProvider$Stub +android.location.IGeocodeProvider$Stub$Proxy +android.location.IGeofenceProvider +android.location.IGeofenceProvider$Stub +android.location.IGeofenceProvider$Stub$Proxy +android.location.IGnssMeasurementsListener +android.location.IGnssMeasurementsListener$Stub +android.location.IGnssNavigationMessageListener +android.location.IGnssNavigationMessageListener$Stub +android.location.IGnssStatusListener +android.location.IGnssStatusListener$Stub +android.location.IGnssStatusListener$Stub$Proxy +android.location.IGnssStatusProvider +android.location.IGnssStatusProvider$Stub +android.location.IGpsGeofenceHardware +android.location.IGpsGeofenceHardware$Stub +android.location.ILocationListener +android.location.ILocationListener$Stub +android.location.ILocationListener$Stub$Proxy +android.location.ILocationManager +android.location.ILocationManager$Stub +android.location.ILocationManager$Stub$Proxy +android.location.INetInitiatedListener +android.location.INetInitiatedListener$Stub +android.location.LocalListenerHelper +android.location.Location +android.location.Location$1 +android.location.Location$2 +android.location.Location$BearingDistanceCache +android.location.LocationListener +android.location.LocationManager +android.location.LocationManager$GnssStatusListenerTransport +android.location.LocationManager$GnssStatusListenerTransport$1 +android.location.LocationManager$GnssStatusListenerTransport$GnssHandler +android.location.LocationManager$ListenerTransport +android.location.LocationManager$ListenerTransport$1 +android.location.LocationManager$ListenerTransport$2 +android.location.LocationProvider +android.location.LocationRequest +android.location.LocationRequest$1 +android.media.AudioAttributes +android.media.AudioAttributes$1 +android.media.AudioAttributes$Builder +android.media.AudioDeviceCallback +android.media.AudioDeviceInfo +android.media.AudioDevicePort +android.media.AudioDevicePortConfig +android.media.AudioFocusInfo +android.media.AudioFocusInfo$1 +android.media.AudioFocusRequest +android.media.AudioFocusRequest$Builder +android.media.AudioFormat +android.media.AudioFormat$1 +android.media.AudioFormat$Builder +android.media.AudioGain +android.media.AudioGainConfig +android.media.AudioHandle +android.media.AudioManager +android.media.AudioManager$1 +android.media.AudioManager$2 +android.media.AudioManager$3 +android.media.AudioManager$FocusRequestInfo +android.media.AudioManager$NativeEventHandlerDelegate +android.media.AudioManager$NativeEventHandlerDelegate$1 +android.media.AudioManager$OnAmPortUpdateListener +android.media.AudioManager$OnAudioFocusChangeListener +android.media.AudioManager$OnAudioPortUpdateListener +android.media.AudioManager$ServiceEventHandlerDelegate +android.media.AudioManager$ServiceEventHandlerDelegate$1 +android.media.AudioManagerInternal +android.media.AudioManagerInternal$RingerModeDelegate +android.media.AudioMixPort +android.media.AudioMixPortConfig +android.media.AudioPatch +android.media.AudioPlaybackConfiguration +android.media.AudioPlaybackConfiguration$1 +android.media.AudioPlaybackConfiguration$IPlayerShell +android.media.AudioPlaybackConfiguration$PlayerDeathMonitor +android.media.AudioPort +android.media.AudioPortConfig +android.media.AudioPortEventHandler +android.media.AudioPortEventHandler$1 +android.media.AudioRecord +android.media.AudioRoutesInfo +android.media.AudioRoutesInfo$1 +android.media.AudioRouting +android.media.AudioSystem +android.media.AudioSystem$AudioRecordingCallback +android.media.AudioSystem$DynamicPolicyCallback +android.media.AudioSystem$ErrorCallback +android.media.AudioTimestamp +android.media.AudioTrack +android.media.BufferingParams +android.media.BufferingParams$1 +android.media.CamcorderProfile +android.media.CameraProfile +android.media.DecoderCapabilities +android.media.DeniedByServerException +android.media.EncoderCapabilities +android.media.ExifInterface +android.media.ExifInterface$ByteOrderedDataInputStream +android.media.ExifInterface$ExifAttribute +android.media.ExifInterface$ExifTag +android.media.IAudioFocusDispatcher +android.media.IAudioFocusDispatcher$Stub +android.media.IAudioFocusDispatcher$Stub$Proxy +android.media.IAudioRoutesObserver +android.media.IAudioRoutesObserver$Stub +android.media.IAudioRoutesObserver$Stub$Proxy +android.media.IAudioService +android.media.IAudioService$Stub +android.media.IAudioService$Stub$Proxy +android.media.IMediaHTTPConnection +android.media.IMediaHTTPConnection$Stub +android.media.IMediaHTTPService +android.media.IMediaHTTPService$Stub +android.media.IMediaResourceMonitor +android.media.IMediaResourceMonitor$Stub +android.media.IMediaRouterClient +android.media.IMediaRouterClient$Stub +android.media.IMediaRouterClient$Stub$Proxy +android.media.IMediaRouterService +android.media.IMediaRouterService$Stub +android.media.IMediaRouterService$Stub$Proxy +android.media.IPlaybackConfigDispatcher +android.media.IPlaybackConfigDispatcher$Stub +android.media.IPlayer +android.media.IPlayer$Stub +android.media.IPlayer$Stub$Proxy +android.media.IRecordingConfigDispatcher +android.media.IRecordingConfigDispatcher$Stub +android.media.IRemoteVolumeController +android.media.IRemoteVolumeController$Stub +android.media.IRemoteVolumeController$Stub$Proxy +android.media.IRemoteVolumeObserver +android.media.IRemoteVolumeObserver$Stub +android.media.IRingtonePlayer +android.media.IRingtonePlayer$Stub +android.media.IRingtonePlayer$Stub$Proxy +android.media.IVolumeController +android.media.IVolumeController$Stub +android.media.IVolumeController$Stub$Proxy +android.media.Image +android.media.Image$Plane +android.media.ImageReader +android.media.ImageReader$ListenerHandler +android.media.ImageReader$OnImageAvailableListener +android.media.ImageReader$SurfaceImage +android.media.ImageReader$SurfaceImage$SurfacePlane +android.media.ImageUtils +android.media.ImageWriter +android.media.ImageWriter$ListenerHandler +android.media.ImageWriter$OnImageReleasedListener +android.media.ImageWriter$WriterSurfaceImage +android.media.ImageWriter$WriterSurfaceImage$SurfacePlane +android.media.JetPlayer +android.media.MediaCodec +android.media.MediaCodec$BufferInfo +android.media.MediaCodec$BufferMap +android.media.MediaCodec$BufferMap$CodecBuffer +android.media.MediaCodec$CodecException +android.media.MediaCodec$CryptoException +android.media.MediaCodec$CryptoInfo +android.media.MediaCodec$CryptoInfo$Pattern +android.media.MediaCodec$EventHandler +android.media.MediaCodec$PersistentSurface +android.media.MediaCodecInfo +android.media.MediaCodecInfo$AudioCapabilities +android.media.MediaCodecInfo$CodecCapabilities +android.media.MediaCodecInfo$CodecProfileLevel +android.media.MediaCodecInfo$EncoderCapabilities +android.media.MediaCodecInfo$Feature +android.media.MediaCodecInfo$VideoCapabilities +android.media.MediaCodecList +android.media.MediaCrypto +android.media.MediaCryptoException +android.media.MediaDescrambler +android.media.MediaDescription +android.media.MediaDescription$1 +android.media.MediaDescription$Builder +android.media.MediaDrm +android.media.MediaDrm$Certificate +android.media.MediaDrm$EventHandler +android.media.MediaDrm$KeyRequest +android.media.MediaDrm$MediaDrmStateException +android.media.MediaDrm$OnEventListener +android.media.MediaDrm$ProvisionRequest +android.media.MediaDrmException +android.media.MediaExtractor +android.media.MediaFile +android.media.MediaFile$MediaFileType +android.media.MediaFormat +android.media.MediaHTTPConnection +android.media.MediaHTTPService +android.media.MediaMetadata +android.media.MediaMetadata$1 +android.media.MediaMetadata$Builder +android.media.MediaMetadataRetriever +android.media.MediaMuxer +android.media.MediaPlayer +android.media.MediaPlayer$1 +android.media.MediaPlayer$2 +android.media.MediaPlayer$4 +android.media.MediaPlayer$4$1 +android.media.MediaPlayer$EventHandler +android.media.MediaPlayer$OnCompletionListener +android.media.MediaPlayer$OnErrorListener +android.media.MediaPlayer$OnInfoListener +android.media.MediaPlayer$OnPreparedListener +android.media.MediaPlayer$OnSeekCompleteListener +android.media.MediaPlayer$OnSubtitleDataListener +android.media.MediaPlayer$TimeProvider +android.media.MediaPlayer$TimeProvider$EventHandler +android.media.MediaPlayer$TrackInfo +android.media.MediaPlayer$TrackInfo$1 +android.media.MediaRecorder +android.media.MediaRecorder$EventHandler +android.media.MediaRecorder$OnErrorListener +android.media.MediaRouter +android.media.MediaRouter$Callback +android.media.MediaRouter$CallbackInfo +android.media.MediaRouter$RouteCategory +android.media.MediaRouter$RouteGroup +android.media.MediaRouter$RouteInfo +android.media.MediaRouter$RouteInfo$1 +android.media.MediaRouter$SimpleCallback +android.media.MediaRouter$Static +android.media.MediaRouter$Static$1 +android.media.MediaRouter$Static$1$1 +android.media.MediaRouter$Static$Client +android.media.MediaRouter$Static$Client$1 +android.media.MediaRouter$VolumeCallback +android.media.MediaRouter$VolumeChangeReceiver +android.media.MediaRouter$WifiDisplayStatusChangedReceiver +android.media.MediaRouterClientState +android.media.MediaRouterClientState$1 +android.media.MediaRouterClientState$RouteInfo +android.media.MediaRouterClientState$RouteInfo$1 +android.media.MediaScanner +android.media.MediaScannerConnection +android.media.MediaScannerConnection$OnScanCompletedListener +android.media.MediaSync +android.media.MediaTimeProvider +android.media.MediaTimeProvider$OnMediaTimeListener +android.media.MiniThumbFile +android.media.NotProvisionedException +android.media.PlaybackParams +android.media.PlaybackParams$1 +android.media.PlayerBase +android.media.PlayerBase$IAppOpsCallbackWrapper +android.media.PlayerBase$IPlayerWrapper +android.media.PlayerBase$PlayerIdCard +android.media.PlayerBase$PlayerIdCard$1 +android.media.PlayerProxy +android.media.Rating +android.media.Rating$1 +android.media.RemoteDisplay +android.media.ResampleInputStream +android.media.Ringtone$MyOnCompletionListener +android.media.SoundPool +android.media.SoundPool$Builder +android.media.SoundPool$EventHandler +android.media.SoundPool$OnLoadCompleteListener +android.media.SubtitleController +android.media.SubtitleController$1 +android.media.SubtitleController$2 +android.media.SubtitleController$Anchor +android.media.SubtitleController$Listener +android.media.SubtitleTrack +android.media.SyncParams +android.media.ThumbnailUtils +android.media.ThumbnailUtils$SizedThumbnailBitmap +android.media.ToneGenerator +android.media.UnsupportedSchemeException +android.media.Utils +android.media.Utils$1 +android.media.Utils$2 +android.media.VolumeAutomation +android.media.VolumePolicy +android.media.VolumePolicy$1 +android.media.VolumeShaper +android.media.VolumeShaper$Configuration +android.media.VolumeShaper$Configuration$1 +android.media.VolumeShaper$Configuration$Builder +android.media.VolumeShaper$Operation +android.media.VolumeShaper$Operation$1 +android.media.VolumeShaper$Operation$Builder +android.media.VolumeShaper$State +android.media.VolumeShaper$State$1 +android.media.audiofx.AudioEffect +android.media.audiofx.AudioEffect$Descriptor +android.media.audiofx.LoudnessEnhancer +android.media.audiofx.Virtualizer +android.media.audiofx.Visualizer +android.media.audiopolicy.AudioMix +android.media.audiopolicy.AudioMixingRule +android.media.audiopolicy.AudioMixingRule$AudioMixMatchCriterion +android.media.audiopolicy.AudioPolicyConfig +android.media.audiopolicy.IAudioPolicyCallback +android.media.audiopolicy.IAudioPolicyCallback$Stub +android.media.browse.MediaBrowser +android.media.browse.MediaBrowser$1 +android.media.browse.MediaBrowser$2 +android.media.browse.MediaBrowser$6 +android.media.browse.MediaBrowser$ConnectionCallback +android.media.browse.MediaBrowser$MediaServiceConnection +android.media.browse.MediaBrowser$MediaServiceConnection$1 +android.media.browse.MediaBrowser$ServiceCallbacks +android.media.midi.IMidiDeviceListener +android.media.midi.IMidiDeviceOpenCallback +android.media.midi.IMidiDeviceServer +android.media.midi.IMidiManager +android.media.midi.IMidiManager$Stub +android.media.midi.MidiDeviceInfo +android.media.midi.MidiDeviceStatus +android.media.midi.MidiManager +android.media.projection.IMediaProjection +android.media.projection.IMediaProjectionManager +android.media.projection.IMediaProjectionManager$Stub +android.media.projection.IMediaProjectionManager$Stub$Proxy +android.media.projection.IMediaProjectionWatcherCallback +android.media.projection.IMediaProjectionWatcherCallback$Stub +android.media.projection.IMediaProjectionWatcherCallback$Stub$Proxy +android.media.projection.MediaProjectionInfo +android.media.projection.MediaProjectionManager +android.media.projection.MediaProjectionManager$Callback +android.media.projection.MediaProjectionManager$CallbackDelegate +android.media.session.IActiveSessionsListener +android.media.session.IActiveSessionsListener$Stub +android.media.session.IActiveSessionsListener$Stub$Proxy +android.media.session.ICallback +android.media.session.ICallback$Stub +android.media.session.ICallback$Stub$Proxy +android.media.session.IOnMediaKeyListener +android.media.session.IOnVolumeKeyLongPressListener +android.media.session.ISession +android.media.session.ISession$Stub +android.media.session.ISession$Stub$Proxy +android.media.session.ISessionCallback +android.media.session.ISessionCallback$Stub +android.media.session.ISessionCallback$Stub$Proxy +android.media.session.ISessionController +android.media.session.ISessionController$Stub +android.media.session.ISessionController$Stub$Proxy +android.media.session.ISessionControllerCallback +android.media.session.ISessionControllerCallback$Stub +android.media.session.ISessionControllerCallback$Stub$Proxy +android.media.session.ISessionManager +android.media.session.ISessionManager$Stub +android.media.session.ISessionManager$Stub$Proxy +android.media.session.MediaController +android.media.session.MediaController$Callback +android.media.session.MediaController$CallbackStub +android.media.session.MediaController$MessageHandler +android.media.session.MediaController$PlaybackInfo +android.media.session.MediaController$TransportControls +android.media.session.MediaSession +android.media.session.MediaSession$Callback +android.media.session.MediaSession$CallbackMessageHandler +android.media.session.MediaSession$CallbackStub +android.media.session.MediaSession$QueueItem +android.media.session.MediaSession$QueueItem$1 +android.media.session.MediaSession$Token +android.media.session.MediaSession$Token$1 +android.media.session.MediaSessionManager +android.media.session.MediaSessionManager$Callback +android.media.session.MediaSessionManager$CallbackImpl +android.media.session.MediaSessionManager$CallbackImpl$3 +android.media.session.MediaSessionManager$CallbackImpl$4 +android.media.session.MediaSessionManager$OnActiveSessionsChangedListener +android.media.session.MediaSessionManager$SessionsChangedWrapper +android.media.session.MediaSessionManager$SessionsChangedWrapper$1 +android.media.session.MediaSessionManager$SessionsChangedWrapper$1$1 +android.media.session.ParcelableVolumeInfo +android.media.session.ParcelableVolumeInfo$1 +android.media.session.PlaybackState +android.media.session.PlaybackState$1 +android.media.session.PlaybackState$Builder +android.media.session.PlaybackState$CustomAction +android.media.session.PlaybackState$CustomAction$1 +android.media.session.PlaybackState$CustomAction$Builder +android.media.soundtrigger.SoundTriggerManager +android.media.tv.TvInputHardwareInfo$Builder +android.media.tv.TvInputManager +android.media.tv.TvStreamConfig +android.media.tv.TvStreamConfig$Builder +android.metrics.LogMaker +android.mtp.MtpDatabase +android.mtp.MtpDevice +android.mtp.MtpDeviceInfo +android.mtp.MtpEvent +android.mtp.MtpObjectInfo +android.mtp.MtpPropertyGroup +android.mtp.MtpPropertyList +android.mtp.MtpServer +android.mtp.MtpStorage +android.mtp.MtpStorageInfo +android.net.ConnectivityManager +android.net.ConnectivityManager$CallbackHandler +android.net.ConnectivityManager$NetworkCallback +android.net.ConnectivityManager$OnNetworkActiveListener +android.net.ConnectivityManager$PacketKeepaliveCallback +android.net.ConnectivityMetricsEvent +android.net.ConnectivityMetricsEvent$1 +android.net.ConnectivityThread +android.net.ConnectivityThread$Singleton +android.net.Credentials +android.net.DataUsageRequest +android.net.DhcpInfo +android.net.DhcpInfo$1 +android.net.DhcpResults +android.net.DhcpResults$1 +android.net.EthernetManager +android.net.EthernetManager$1 +android.net.EthernetManager$2 +android.net.EventLogTags +android.net.IConnectivityManager +android.net.IConnectivityManager$Stub +android.net.IConnectivityManager$Stub$Proxy +android.net.IEthernetManager +android.net.IEthernetManager$Stub +android.net.IEthernetServiceListener +android.net.IEthernetServiceListener$Stub +android.net.IIpConnectivityMetrics +android.net.IIpConnectivityMetrics$Stub +android.net.IIpSecService +android.net.IIpSecService$Stub +android.net.INetd +android.net.INetd$Stub +android.net.INetd$Stub$Proxy +android.net.INetdEventCallback +android.net.INetworkManagementEventObserver +android.net.INetworkManagementEventObserver$Stub +android.net.INetworkPolicyListener +android.net.INetworkPolicyListener$Stub +android.net.INetworkPolicyListener$Stub$Proxy +android.net.INetworkPolicyManager +android.net.INetworkPolicyManager$Stub +android.net.INetworkPolicyManager$Stub$Proxy +android.net.INetworkRecommendationProvider +android.net.INetworkRecommendationProvider$Stub +android.net.INetworkRecommendationProvider$Stub$Proxy +android.net.INetworkScoreCache +android.net.INetworkScoreCache$Stub +android.net.INetworkScoreCache$Stub$Proxy +android.net.INetworkScoreService +android.net.INetworkScoreService$Stub +android.net.INetworkScoreService$Stub$Proxy +android.net.INetworkStatsService +android.net.INetworkStatsService$Stub +android.net.INetworkStatsService$Stub$Proxy +android.net.INetworkStatsSession +android.net.InterfaceConfiguration +android.net.InterfaceConfiguration$1 +android.net.IpConfiguration +android.net.IpConfiguration$1 +android.net.IpConfiguration$IpAssignment +android.net.IpConfiguration$ProxySettings +android.net.IpPrefix +android.net.IpPrefix$1 +android.net.IpSecConfig +android.net.IpSecManager +android.net.IpSecManager$SpiUnavailableException +android.net.LinkAddress +android.net.LinkAddress$1 +android.net.LinkProperties +android.net.LinkProperties$1 +android.net.LinkProperties$CompareResult +android.net.LinkProperties$ProvisioningChange +android.net.LocalServerSocket +android.net.LocalSocket +android.net.LocalSocketAddress +android.net.LocalSocketAddress$Namespace +android.net.LocalSocketImpl +android.net.LocalSocketImpl$SocketInputStream +android.net.LocalSocketImpl$SocketOutputStream +android.net.MatchAllNetworkSpecifier +android.net.MatchAllNetworkSpecifier$1 +android.net.Network +android.net.Network$1 +android.net.Network$2 +android.net.Network$NetworkBoundSocketFactory +android.net.NetworkAgent +android.net.NetworkCapabilities +android.net.NetworkCapabilities$1 +android.net.NetworkConfig +android.net.NetworkFactory +android.net.NetworkFactory$NetworkRequestInfo +android.net.NetworkIdentity +android.net.NetworkInfo +android.net.NetworkInfo$1 +android.net.NetworkInfo$DetailedState +android.net.NetworkInfo$State +android.net.NetworkKey +android.net.NetworkKey$1 +android.net.NetworkMisc +android.net.NetworkMisc$1 +android.net.NetworkPolicy +android.net.NetworkPolicy$1 +android.net.NetworkPolicyManager +android.net.NetworkQuotaInfo +android.net.NetworkRecommendationProvider +android.net.NetworkRecommendationProvider$ServiceWrapper +android.net.NetworkRecommendationProvider$ServiceWrapper$1 +android.net.NetworkRequest +android.net.NetworkRequest$1 +android.net.NetworkRequest$Builder +android.net.NetworkRequest$Type +android.net.NetworkScoreManager +android.net.NetworkScorerAppData +android.net.NetworkScorerAppData$1 +android.net.NetworkSpecifier +android.net.NetworkState +android.net.NetworkState$1 +android.net.NetworkStats +android.net.NetworkStats$1 +android.net.NetworkStats$Entry +android.net.NetworkStats$NonMonotonicObserver +android.net.NetworkStatsHistory +android.net.NetworkStatsHistory$1 +android.net.NetworkStatsHistory$DataStreamUtils +android.net.NetworkStatsHistory$Entry +android.net.NetworkTemplate +android.net.NetworkTemplate$1 +android.net.NetworkUtils +android.net.ParseException +android.net.Proxy +android.net.ProxyInfo +android.net.ProxyInfo$1 +android.net.RouteInfo +android.net.RouteInfo$1 +android.net.RssiCurve +android.net.RssiCurve$1 +android.net.SSLCertificateSocketFactory +android.net.SSLCertificateSocketFactory$1 +android.net.SSLSessionCache +android.net.ScoredNetwork +android.net.ScoredNetwork$1 +android.net.SntpClient +android.net.StaticIpConfiguration +android.net.StaticIpConfiguration$1 +android.net.StringNetworkSpecifier +android.net.StringNetworkSpecifier$1 +android.net.TrafficStats +android.net.UidRange +android.net.Uri +android.net.Uri$1 +android.net.Uri$AbstractHierarchicalUri +android.net.Uri$AbstractPart +android.net.Uri$Builder +android.net.Uri$HierarchicalUri +android.net.Uri$OpaqueUri +android.net.Uri$Part +android.net.Uri$Part$EmptyPart +android.net.Uri$PathPart +android.net.Uri$PathSegments +android.net.Uri$PathSegmentsBuilder +android.net.Uri$StringUri +android.net.WebAddress +android.net.WifiKey +android.net.WifiKey$1 +android.net.http.AndroidHttpClient +android.net.http.AndroidHttpClient$1 +android.net.http.AndroidHttpClient$2 +android.net.http.AndroidHttpClient$CurlLogger +android.net.http.AndroidHttpClient$LoggingConfiguration +android.net.http.HttpResponseCache +android.net.http.SslCertificate +android.net.http.X509TrustManagerExtensions +android.net.lowpan.LowpanManager +android.net.metrics.ApfProgramEvent +android.net.metrics.ApfProgramEvent$1 +android.net.metrics.ApfStats +android.net.metrics.ApfStats$1 +android.net.metrics.ConnectStats +android.net.metrics.DefaultNetworkEvent +android.net.metrics.DefaultNetworkEvent$1 +android.net.metrics.DhcpClientEvent +android.net.metrics.DhcpClientEvent$1 +android.net.metrics.DnsEvent +android.net.metrics.IpConnectivityLog +android.net.metrics.IpManagerEvent +android.net.metrics.IpManagerEvent$1 +android.net.metrics.NetworkEvent +android.net.metrics.NetworkEvent$1 +android.net.metrics.RaEvent +android.net.metrics.RaEvent$1 +android.net.metrics.RaEvent$Builder +android.net.metrics.ValidationProbeEvent +android.net.metrics.ValidationProbeEvent$1 +android.net.metrics.ValidationProbeEvent$Decoder +android.net.nsd.INsdManager +android.net.nsd.INsdManager$Stub +android.net.nsd.NsdManager +android.net.sip.ISipService +android.net.sip.ISipService$Stub +android.net.sip.SipManager +android.net.wifi.IRttManager +android.net.wifi.IRttManager$Stub +android.net.wifi.IWifiManager +android.net.wifi.IWifiManager$Stub +android.net.wifi.IWifiManager$Stub$Proxy +android.net.wifi.IWifiScanner +android.net.wifi.IWifiScanner$Stub +android.net.wifi.IWifiScanner$Stub$Proxy +android.net.wifi.ParcelUtil +android.net.wifi.RttManager +android.net.wifi.RttManager$RttCapabilities +android.net.wifi.RttManager$RttListener +android.net.wifi.RttManager$RttResult +android.net.wifi.ScanResult +android.net.wifi.ScanResult$1 +android.net.wifi.ScanResult$InformationElement +android.net.wifi.ScanSettings +android.net.wifi.SupplicantState +android.net.wifi.SupplicantState$1 +android.net.wifi.WifiActivityEnergyInfo +android.net.wifi.WifiActivityEnergyInfo$1 +android.net.wifi.WifiConfiguration +android.net.wifi.WifiConfiguration$1 +android.net.wifi.WifiConfiguration$KeyMgmt +android.net.wifi.WifiConfiguration$NetworkSelectionStatus +android.net.wifi.WifiConfiguration$Visibility +android.net.wifi.WifiConnectionStatistics +android.net.wifi.WifiConnectionStatistics$1 +android.net.wifi.WifiEnterpriseConfig +android.net.wifi.WifiEnterpriseConfig$1 +android.net.wifi.WifiInfo +android.net.wifi.WifiInfo$1 +android.net.wifi.WifiLinkLayerStats +android.net.wifi.WifiLinkLayerStats$1 +android.net.wifi.WifiManager +android.net.wifi.WifiManager$ActionListener +android.net.wifi.WifiManager$MulticastLock +android.net.wifi.WifiManager$WifiLock +android.net.wifi.WifiNetworkScoreCache +android.net.wifi.WifiNetworkScoreCache$CacheListener +android.net.wifi.WifiNetworkScoreCache$CacheListener$1 +android.net.wifi.WifiScanner +android.net.wifi.WifiScanner$ActionListener +android.net.wifi.WifiScanner$ChannelSpec +android.net.wifi.WifiScanner$ParcelableScanData +android.net.wifi.WifiScanner$ParcelableScanData$1 +android.net.wifi.WifiScanner$ParcelableScanResults +android.net.wifi.WifiScanner$ParcelableScanResults$1 +android.net.wifi.WifiScanner$PnoScanListener +android.net.wifi.WifiScanner$ScanData +android.net.wifi.WifiScanner$ScanData$1 +android.net.wifi.WifiScanner$ScanListener +android.net.wifi.WifiScanner$ScanSettings +android.net.wifi.WifiScanner$ScanSettings$1 +android.net.wifi.WifiScanner$ScanSettings$HiddenNetwork +android.net.wifi.WifiScanner$ServiceHandler +android.net.wifi.WifiSsid +android.net.wifi.WifiSsid$1 +android.net.wifi.WpsInfo +android.net.wifi.WpsInfo$1 +android.net.wifi.aware.WifiAwareManager +android.net.wifi.hotspot2.PasspointConfiguration +android.net.wifi.p2p.IWifiP2pManager +android.net.wifi.p2p.IWifiP2pManager$Stub +android.net.wifi.p2p.WifiP2pConfig +android.net.wifi.p2p.WifiP2pConfig$1 +android.net.wifi.p2p.WifiP2pDevice +android.net.wifi.p2p.WifiP2pDevice$1 +android.net.wifi.p2p.WifiP2pDeviceList +android.net.wifi.p2p.WifiP2pDeviceList$1 +android.net.wifi.p2p.WifiP2pGroup +android.net.wifi.p2p.WifiP2pGroup$1 +android.net.wifi.p2p.WifiP2pGroupList +android.net.wifi.p2p.WifiP2pGroupList$1 +android.net.wifi.p2p.WifiP2pGroupList$2 +android.net.wifi.p2p.WifiP2pGroupList$GroupDeleteListener +android.net.wifi.p2p.WifiP2pInfo +android.net.wifi.p2p.WifiP2pInfo$1 +android.net.wifi.p2p.WifiP2pManager +android.net.wifi.p2p.WifiP2pWfdInfo +android.net.wifi.p2p.WifiP2pWfdInfo$1 +android.nfc.BeamShareData +android.nfc.FormatException +android.nfc.IAppCallback +android.nfc.IAppCallback$Stub +android.nfc.IAppCallback$Stub$Proxy +android.nfc.INfcAdapter +android.nfc.INfcAdapter$Stub +android.nfc.INfcAdapter$Stub$Proxy +android.nfc.INfcAdapterExtras +android.nfc.INfcCardEmulation +android.nfc.INfcCardEmulation$Stub +android.nfc.INfcCardEmulation$Stub$Proxy +android.nfc.INfcFCardEmulation +android.nfc.INfcFCardEmulation$Stub +android.nfc.INfcFCardEmulation$Stub$Proxy +android.nfc.INfcTag +android.nfc.INfcTag$Stub +android.nfc.INfcTag$Stub$Proxy +android.nfc.INfcUnlockHandler +android.nfc.ITagRemovedCallback +android.nfc.NdefMessage +android.nfc.NfcActivityManager +android.nfc.NfcActivityManager$NfcActivityState +android.nfc.NfcActivityManager$NfcApplicationState +android.nfc.NfcAdapter +android.nfc.NfcAdapter$1 +android.nfc.NfcAdapter$CreateBeamUrisCallback +android.nfc.NfcAdapter$CreateNdefMessageCallback +android.nfc.NfcAdapter$OnNdefPushCompleteCallback +android.nfc.NfcEvent +android.nfc.NfcManager +android.nfc.Tag +android.nfc.TechListParcel +android.nfc.TransceiveResult +android.nfc.cardemulation.AidGroup +android.nfc.cardemulation.AidGroup$1 +android.nfc.cardemulation.ApduServiceInfo +android.nfc.cardemulation.ApduServiceInfo$1 +android.nfc.cardemulation.CardEmulation +android.nfc.cardemulation.HostApduService +android.nfc.cardemulation.HostApduService$MsgHandler +android.opengl.EGL14 +android.opengl.EGLConfig +android.opengl.EGLContext +android.opengl.EGLDisplay +android.opengl.EGLExt +android.opengl.EGLObjectHandle +android.opengl.EGLSurface +android.opengl.ETC1 +android.opengl.GLES10 +android.opengl.GLES10Ext +android.opengl.GLES11 +android.opengl.GLES11Ext +android.opengl.GLES20 +android.opengl.GLES30 +android.opengl.GLES31 +android.opengl.GLES31Ext +android.opengl.GLES32 +android.opengl.GLUtils +android.opengl.Matrix +android.opengl.Visibility +android.os.-$Lambda$-dncxFEc2F2bgG2fsIoC6FC6WNE +android.os.-$Lambda$-dncxFEc2F2bgG2fsIoC6FC6WNE$1 +android.os.-$Lambda$6x30vPJhBKUfNY8tswxuZo3DCe0 +android.os.-$Lambda$BcGBlsGjMZMF6Ej78rWJ608MYSM +android.os.AsyncResult +android.os.AsyncTask +android.os.AsyncTask$1 +android.os.AsyncTask$2 +android.os.AsyncTask$3 +android.os.AsyncTask$AsyncTaskResult +android.os.AsyncTask$InternalHandler +android.os.AsyncTask$SerialExecutor +android.os.AsyncTask$SerialExecutor$1 +android.os.AsyncTask$Status +android.os.AsyncTask$WorkerRunnable +android.os.BadParcelableException +android.os.BaseBundle +android.os.BaseBundle$NoImagePreloadHolder +android.os.BatteryManager +android.os.BatteryManagerInternal +android.os.BatteryProperties +android.os.BatteryProperties$1 +android.os.BatteryStats +android.os.BatteryStats$BitDescription +android.os.BatteryStats$ControllerActivityCounter +android.os.BatteryStats$Counter +android.os.BatteryStats$DailyItem +android.os.BatteryStats$HistoryEventTracker +android.os.BatteryStats$HistoryItem +android.os.BatteryStats$HistoryStepDetails +android.os.BatteryStats$HistoryTag +android.os.BatteryStats$IntToString +android.os.BatteryStats$LevelStepTracker +android.os.BatteryStats$LongCounter +android.os.BatteryStats$LongCounterArray +android.os.BatteryStats$PackageChange +android.os.BatteryStats$Timer +android.os.BatteryStats$Uid +android.os.BatteryStats$Uid$Pid +android.os.BatteryStats$Uid$Pkg +android.os.BatteryStats$Uid$Pkg$Serv +android.os.BatteryStats$Uid$Proc +android.os.BatteryStats$Uid$Sensor +android.os.BatteryStats$Uid$Wakelock +android.os.Binder +android.os.BinderProxy +android.os.Build +android.os.Build$VERSION +android.os.Bundle +android.os.Bundle$1 +android.os.CancellationSignal +android.os.CancellationSignal$OnCancelListener +android.os.CancellationSignal$Transport +android.os.CommonTimeConfig$OnServerDiedListener +android.os.ConditionVariable +android.os.CountDownTimer +android.os.CpuUsageInfo +android.os.CpuUsageInfo$1 +android.os.DeadObjectException +android.os.DeadSystemException +android.os.Debug +android.os.Debug$MemoryInfo +android.os.Debug$MemoryInfo$1 +android.os.DropBoxManager +android.os.DropBoxManager$Entry +android.os.DropBoxManager$Entry$1 +android.os.Environment +android.os.Environment$UserEnvironment +android.os.FactoryTest +android.os.FileBridge +android.os.FileBridge$FileBridgeOutputStream +android.os.FileObserver$ObserverThread +android.os.FileUtils +android.os.GraphicsEnvironment +android.os.Handler +android.os.Handler$BlockingRunnable +android.os.Handler$Callback +android.os.Handler$MessengerImpl +android.os.HandlerThread +android.os.HardwarePropertiesManager +android.os.HwBinder +android.os.HwBlob +android.os.HwParcel +android.os.HwRemoteBinder +android.os.IBatteryPropertiesListener +android.os.IBatteryPropertiesListener$Stub +android.os.IBatteryPropertiesRegistrar +android.os.IBatteryPropertiesRegistrar$Stub +android.os.IBatteryPropertiesRegistrar$Stub$Proxy +android.os.IBinder +android.os.IBinder$DeathRecipient +android.os.ICancellationSignal +android.os.ICancellationSignal$Stub +android.os.ICancellationSignal$Stub$Proxy +android.os.IDeviceIdentifiersPolicyService +android.os.IDeviceIdentifiersPolicyService$Stub +android.os.IDeviceIdleController +android.os.IDeviceIdleController$Stub +android.os.IDeviceIdleController$Stub$Proxy +android.os.IHardwarePropertiesManager +android.os.IHardwarePropertiesManager$Stub +android.os.IHardwarePropertiesManager$Stub$Proxy +android.os.IHwBinder +android.os.IHwBinder$DeathRecipient +android.os.IHwInterface +android.os.IIncidentManager +android.os.IIncidentManager$Stub +android.os.IInstalld +android.os.IInstalld$Stub +android.os.IInstalld$Stub$Proxy +android.os.IInterface +android.os.IMaintenanceActivityListener +android.os.IMessenger +android.os.IMessenger$Stub +android.os.IMessenger$Stub$Proxy +android.os.INetworkActivityListener +android.os.INetworkManagementService +android.os.INetworkManagementService$Stub +android.os.INetworkManagementService$Stub$Proxy +android.os.IPermissionController +android.os.IPermissionController$Stub +android.os.IPowerManager +android.os.IPowerManager$Stub +android.os.IPowerManager$Stub$Proxy +android.os.IProcessInfoService +android.os.IProcessInfoService$Stub +android.os.IProgressListener +android.os.IRecoverySystem +android.os.IRecoverySystem$Stub +android.os.IRecoverySystemProgressListener +android.os.IRemoteCallback +android.os.IRemoteCallback$Stub +android.os.IRemoteCallback$Stub$Proxy +android.os.ISchedulingPolicyService +android.os.ISchedulingPolicyService$Stub +android.os.IServiceManager +android.os.IUpdateLock +android.os.IUpdateLock$Stub +android.os.IUserManager +android.os.IUserManager$Stub +android.os.IUserManager$Stub$Proxy +android.os.IVibratorService +android.os.IVibratorService$Stub +android.os.IVibratorService$Stub$Proxy +android.os.IncidentManager +android.os.LocaleList +android.os.LocaleList$1 +android.os.Looper +android.os.MemoryFile +android.os.Message +android.os.Message$1 +android.os.MessageQueue +android.os.MessageQueue$FileDescriptorRecord +android.os.MessageQueue$IdleHandler +android.os.MessageQueue$OnFileDescriptorEventListener +android.os.Messenger +android.os.Messenger$1 +android.os.OperationCanceledException +android.os.Parcel +android.os.Parcel$1 +android.os.Parcel$2 +android.os.Parcel$ReadWriteHelper +android.os.ParcelFileDescriptor +android.os.ParcelFileDescriptor$1 +android.os.ParcelFileDescriptor$2 +android.os.ParcelFileDescriptor$AutoCloseInputStream +android.os.ParcelFileDescriptor$AutoCloseOutputStream +android.os.ParcelFileDescriptor$OnCloseListener +android.os.ParcelFileDescriptor$Status +android.os.ParcelFormatException +android.os.ParcelUuid +android.os.ParcelUuid$1 +android.os.Parcelable +android.os.Parcelable$ClassLoaderCreator +android.os.Parcelable$Creator +android.os.ParcelableException +android.os.ParcelableException$1 +android.os.ParcelableParcel +android.os.ParcelableParcel$1 +android.os.PatternMatcher +android.os.PatternMatcher$1 +android.os.PersistableBundle +android.os.PersistableBundle$1 +android.os.PersistableBundle$MyReadMapCallback +android.os.PooledStringReader +android.os.PooledStringWriter +android.os.PowerManager +android.os.PowerManager$WakeLock +android.os.PowerManager$WakeLock$1 +android.os.PowerManagerInternal +android.os.PowerManagerInternal$LowPowerModeListener +android.os.PowerSaveState +android.os.PowerSaveState$1 +android.os.PowerSaveState$Builder +android.os.Process +android.os.Process$ProcessStartResult +android.os.RecoverySystem +android.os.RecoverySystem$ProgressListener +android.os.Registrant +android.os.RegistrantList +android.os.RemoteCallback +android.os.RemoteCallback$1 +android.os.RemoteCallback$2 +android.os.RemoteCallback$OnResultListener +android.os.RemoteCallbackList +android.os.RemoteCallbackList$Callback +android.os.RemoteException +android.os.ResultReceiver +android.os.ResultReceiver$1 +android.os.ResultReceiver$MyResultReceiver +android.os.ResultReceiver$MyRunnable +android.os.SELinux +android.os.Seccomp +android.os.ServiceManager +android.os.ServiceManager$ServiceNotFoundException +android.os.ServiceManagerNative +android.os.ServiceManagerProxy +android.os.ServiceSpecificException +android.os.SharedMemory +android.os.SharedMemory$1 +android.os.ShellCallback +android.os.ShellCallback$1 +android.os.StatFs +android.os.StrictMode +android.os.StrictMode$1 +android.os.StrictMode$2 +android.os.StrictMode$3 +android.os.StrictMode$4 +android.os.StrictMode$5 +android.os.StrictMode$6 +android.os.StrictMode$7 +android.os.StrictMode$8 +android.os.StrictMode$9 +android.os.StrictMode$AndroidBlockGuardPolicy +android.os.StrictMode$AndroidBlockGuardPolicy$1 +android.os.StrictMode$AndroidCloseGuardReporter +android.os.StrictMode$InstanceCountViolation +android.os.StrictMode$InstanceTracker +android.os.StrictMode$LogStackTrace +android.os.StrictMode$Span +android.os.StrictMode$StrictModeCustomViolation +android.os.StrictMode$StrictModeDiskReadViolation +android.os.StrictMode$StrictModeDiskWriteViolation +android.os.StrictMode$StrictModeViolation +android.os.StrictMode$ThreadPolicy +android.os.StrictMode$ThreadPolicy$Builder +android.os.StrictMode$ThreadSpanState +android.os.StrictMode$ViolationInfo +android.os.StrictMode$ViolationInfo$1 +android.os.StrictMode$VmPolicy +android.os.StrictMode$VmPolicy$Builder +android.os.SynchronousResultReceiver +android.os.SynchronousResultReceiver$Result +android.os.SystemClock +android.os.SystemProperties +android.os.SystemService +android.os.SystemService$1 +android.os.SystemService$State +android.os.SystemVibrator +android.os.TokenWatcher +android.os.TokenWatcher$1 +android.os.Trace +android.os.Trace$1 +android.os.TransactionTooLargeException +android.os.UEventObserver +android.os.UEventObserver$UEvent +android.os.UEventObserver$UEventThread +android.os.UpdateLock +android.os.UserHandle +android.os.UserHandle$1 +android.os.UserManager +android.os.UserManager$EnforcingUser +android.os.UserManager$EnforcingUser$1 +android.os.UserManagerInternal +android.os.UserManagerInternal$UserRestrictionsListener +android.os.VibrationEffect +android.os.VibrationEffect$1 +android.os.VibrationEffect$OneShot +android.os.VibrationEffect$Prebaked +android.os.VibrationEffect$Prebaked$1 +android.os.VibrationEffect$Waveform +android.os.VibrationEffect$Waveform$1 +android.os.Vibrator +android.os.VintfObject +android.os.VintfRuntimeInfo +android.os.WorkSource +android.os.WorkSource$1 +android.os.ZygoteProcess +android.os.ZygoteProcess$ZygoteState +android.os.ZygoteStartFailedEx +android.os.health.HealthStatsParceler +android.os.health.SystemHealthManager +android.os.storage.DiskInfo +android.os.storage.DiskInfo$1 +android.os.storage.IObbActionListener +android.os.storage.IObbActionListener$Stub +android.os.storage.IStorageEventListener +android.os.storage.IStorageEventListener$Stub +android.os.storage.IStorageEventListener$Stub$Proxy +android.os.storage.IStorageManager +android.os.storage.IStorageManager$Stub +android.os.storage.IStorageManager$Stub$Proxy +android.os.storage.IStorageShutdownObserver +android.os.storage.StorageEventListener +android.os.storage.StorageManager +android.os.storage.StorageManager$ObbActionListener +android.os.storage.StorageManager$StorageEventListenerDelegate +android.os.storage.StorageManagerInternal +android.os.storage.StorageManagerInternal$ExternalStorageMountPolicy +android.os.storage.StorageVolume +android.os.storage.StorageVolume$1 +android.os.storage.VolumeInfo +android.os.storage.VolumeInfo$1 +android.os.storage.VolumeInfo$2 +android.os.storage.VolumeRecord +android.os.storage.VolumeRecord$1 +android.preference.GenericInflater$Parent +android.preference.Preference +android.preference.Preference$BaseSavedState +android.preference.Preference$BaseSavedState$1 +android.preference.Preference$OnPreferenceChangeListener +android.preference.PreferenceActivity +android.preference.PreferenceFragment +android.preference.PreferenceFragment$OnPreferenceStartFragmentCallback +android.preference.PreferenceGroup +android.preference.PreferenceManager +android.preference.PreferenceManager$OnPreferenceTreeClickListener +android.preference.PreferenceScreen +android.print.IPrintDocumentAdapter +android.print.IPrintJobStateChangeListener +android.print.IPrintManager +android.print.IPrintManager$Stub +android.print.IPrintServicesChangeListener +android.print.IPrintSpooler +android.print.IPrintSpooler$Stub +android.print.IPrintSpooler$Stub$Proxy +android.print.IPrintSpoolerCallbacks +android.print.IPrintSpoolerCallbacks$Stub +android.print.IPrintSpoolerClient +android.print.IPrintSpoolerClient$Stub +android.print.IPrinterDiscoveryObserver +android.print.PageRange +android.print.PrintAttributes +android.print.PrintDocumentAdapter +android.print.PrintDocumentAdapter$LayoutResultCallback +android.print.PrintDocumentAdapter$WriteResultCallback +android.print.PrintJobId +android.print.PrintJobInfo +android.print.PrintManager +android.print.PrinterId +android.printservice.IPrintServiceClient +android.printservice.IPrintServiceClient$Stub +android.printservice.PrintServiceInfo +android.printservice.PrintServiceInfo$1 +android.printservice.recommendation.IRecommendationsChangeListener +android.provider.-$Lambda$87WmhkvObehVg0OMBzwa_MTVV8g +android.provider.-$Lambda$a7Jyr6j_Mb70hHJ2ssL1AAhKh4c +android.provider.-$Lambda$asz6VwQ86PPY-v8JLMb7rx-pSqg +android.provider.BaseColumns +android.provider.BlockedNumberContract +android.provider.BlockedNumberContract$BlockedNumbers +android.provider.CalendarContract +android.provider.CalendarContract$Attendees +android.provider.CalendarContract$AttendeesColumns +android.provider.CalendarContract$CalendarAlerts +android.provider.CalendarContract$CalendarAlertsColumns +android.provider.CalendarContract$CalendarCache +android.provider.CalendarContract$CalendarCacheColumns +android.provider.CalendarContract$CalendarColumns +android.provider.CalendarContract$CalendarSyncColumns +android.provider.CalendarContract$Calendars +android.provider.CalendarContract$Colors +android.provider.CalendarContract$ColorsColumns +android.provider.CalendarContract$Events +android.provider.CalendarContract$EventsColumns +android.provider.CalendarContract$ExtendedProperties +android.provider.CalendarContract$ExtendedPropertiesColumns +android.provider.CalendarContract$Instances +android.provider.CalendarContract$Reminders +android.provider.CalendarContract$RemindersColumns +android.provider.CalendarContract$SyncColumns +android.provider.CallLog +android.provider.CallLog$Calls +android.provider.ContactsContract +android.provider.ContactsContract$BaseSyncColumns +android.provider.ContactsContract$CommonDataKinds$BaseTypes +android.provider.ContactsContract$CommonDataKinds$Callable +android.provider.ContactsContract$CommonDataKinds$CommonColumns +android.provider.ContactsContract$CommonDataKinds$Email +android.provider.ContactsContract$CommonDataKinds$Event +android.provider.ContactsContract$CommonDataKinds$Im +android.provider.ContactsContract$CommonDataKinds$Phone +android.provider.ContactsContract$CommonDataKinds$Relation +android.provider.ContactsContract$CommonDataKinds$StructuredPostal +android.provider.ContactsContract$ContactCounts +android.provider.ContactsContract$ContactNameColumns +android.provider.ContactsContract$ContactOptionsColumns +android.provider.ContactsContract$ContactStatusColumns +android.provider.ContactsContract$Contacts +android.provider.ContactsContract$ContactsColumns +android.provider.ContactsContract$Data +android.provider.ContactsContract$DataColumns +android.provider.ContactsContract$DataColumnsWithJoins +android.provider.ContactsContract$DataUsageFeedback +android.provider.ContactsContract$DataUsageStatColumns +android.provider.ContactsContract$DeletedContacts +android.provider.ContactsContract$DeletedContactsColumns +android.provider.ContactsContract$Directory +android.provider.ContactsContract$DisplayPhoto +android.provider.ContactsContract$Groups +android.provider.ContactsContract$GroupsColumns +android.provider.ContactsContract$MetadataSync +android.provider.ContactsContract$MetadataSyncColumns +android.provider.ContactsContract$PhoneLookup +android.provider.ContactsContract$PhoneLookupColumns +android.provider.ContactsContract$Profile +android.provider.ContactsContract$ProviderStatus +android.provider.ContactsContract$RawContacts +android.provider.ContactsContract$RawContactsColumns +android.provider.ContactsContract$RawContactsEntity +android.provider.ContactsContract$StatusColumns +android.provider.ContactsContract$SyncColumns +android.provider.DocumentsContract +android.provider.DocumentsContract$Path +android.provider.DocumentsProvider +android.provider.Downloads +android.provider.Downloads$Impl +android.provider.FontsContract +android.provider.FontsContract$1 +android.provider.MediaStore$Audio +android.provider.MediaStore$Audio$AlbumColumns +android.provider.MediaStore$Audio$Albums +android.provider.MediaStore$Audio$AudioColumns +android.provider.MediaStore$Audio$Media +android.provider.MediaStore$Audio$Playlists +android.provider.MediaStore$Audio$PlaylistsColumns +android.provider.MediaStore$Files +android.provider.MediaStore$Images$ImageColumns +android.provider.MediaStore$Images$Media +android.provider.MediaStore$Images$Thumbnails +android.provider.MediaStore$MediaColumns +android.provider.MediaStore$Video$Media +android.provider.MediaStore$Video$VideoColumns +android.provider.OpenableColumns +android.provider.SearchIndexableData +android.provider.SearchIndexableResource +android.provider.SearchIndexablesProvider +android.provider.SearchRecentSuggestions +android.provider.Settings +android.provider.Settings$ContentProviderHolder +android.provider.Settings$GenerationTracker +android.provider.Settings$Global +android.provider.Settings$NameValueCache +android.provider.Settings$NameValueTable +android.provider.Settings$Secure +android.provider.Settings$SettingNotFoundException +android.provider.Settings$System +android.provider.Settings$System$1 +android.provider.Settings$System$2 +android.provider.Settings$System$3 +android.provider.Settings$System$4 +android.provider.Settings$System$5 +android.provider.Settings$System$6 +android.provider.Settings$System$7 +android.provider.Settings$System$8 +android.provider.Settings$System$9 +android.provider.Settings$System$DiscreteValueValidator +android.provider.Settings$System$InclusiveFloatRangeValidator +android.provider.Settings$System$InclusiveIntegerRangeValidator +android.provider.Settings$System$Validator +android.provider.SyncStateContract$Columns +android.provider.Telephony$BaseMmsColumns +android.provider.Telephony$Carriers +android.provider.Telephony$Mms +android.provider.Telephony$MmsSms +android.provider.Telephony$ServiceStateTable +android.provider.Telephony$Sms +android.provider.Telephony$TextBasedSmsColumns +android.provider.Telephony$Threads +android.provider.Telephony$ThreadsColumns +android.provider.UserDictionary$Words +android.provider.VoicemailContract$Status +android.provider.VoicemailContract$Voicemails +android.renderscript.Allocation +android.renderscript.BaseObj +android.renderscript.Matrix4f +android.renderscript.RenderScriptCacheDir +android.security.GateKeeper +android.security.IKeyChainService +android.security.IKeyChainService$Stub +android.security.IKeyChainService$Stub$Proxy +android.security.IKeystoreService +android.security.IKeystoreService$Stub +android.security.IKeystoreService$Stub$Proxy +android.security.KeyChain +android.security.KeyChain$1 +android.security.KeyChain$KeyChainConnection +android.security.KeyStore +android.security.NetworkSecurityPolicy +android.security.keymaster.IKeyAttestationApplicationIdProvider +android.security.keymaster.IKeyAttestationApplicationIdProvider$Stub +android.security.keymaster.KeyAttestationApplicationId +android.security.keymaster.KeymasterArguments +android.security.keymaster.KeymasterArguments$1 +android.security.keystore.AndroidKeyStoreBCWorkaroundProvider +android.security.keystore.AndroidKeyStoreKeyGeneratorSpi +android.security.keystore.AndroidKeyStoreKeyGeneratorSpi$AES +android.security.keystore.AndroidKeyStoreProvider +android.security.keystore.AndroidKeyStoreSpi +android.security.keystore.ArrayUtils +android.security.keystore.KeyGenParameterSpec +android.security.keystore.KeyGenParameterSpec$Builder +android.security.keystore.KeyInfo +android.security.keystore.KeyPermanentlyInvalidatedException +android.security.keystore.KeyProperties +android.security.keystore.KeyProperties$BlockMode +android.security.keystore.KeyProperties$EncryptionPadding +android.security.keystore.KeyProperties$Purpose +android.security.keystore.KeymasterUtils +android.security.keystore.UserNotAuthenticatedException +android.security.keystore.Utils +android.security.net.config.ApplicationConfig +android.security.net.config.CertificateSource +android.security.net.config.CertificatesEntryRef +android.security.net.config.ConfigNetworkSecurityPolicy +android.security.net.config.ConfigSource +android.security.net.config.DirectoryCertificateSource +android.security.net.config.DirectoryCertificateSource$1 +android.security.net.config.DirectoryCertificateSource$3 +android.security.net.config.DirectoryCertificateSource$CertSelector +android.security.net.config.KeyStoreCertificateSource +android.security.net.config.KeyStoreConfigSource +android.security.net.config.ManifestConfigSource +android.security.net.config.ManifestConfigSource$DefaultConfigSource +android.security.net.config.NetworkSecurityConfig +android.security.net.config.NetworkSecurityConfig$1 +android.security.net.config.NetworkSecurityConfig$Builder +android.security.net.config.NetworkSecurityConfigProvider +android.security.net.config.NetworkSecurityTrustManager +android.security.net.config.PinSet +android.security.net.config.RootTrustManager +android.security.net.config.RootTrustManagerFactorySpi +android.security.net.config.SystemCertificateSource +android.security.net.config.TrustedCertificateStoreAdapter +android.security.net.config.UserCertificateSource +android.security.net.config.XmlConfigSource +android.security.net.config.XmlConfigSource$ParserException +android.service.autofill.-$Lambda$svbjmB3NFhHnuZrn67G14PFSJlY +android.service.autofill.AutofillService +android.service.autofill.AutofillService$1 +android.service.autofill.AutofillServiceInfo +android.service.autofill.FillCallback +android.service.autofill.FillContext +android.service.autofill.FillContext$1 +android.service.autofill.FillEventHistory +android.service.autofill.FillRequest +android.service.autofill.FillRequest$1 +android.service.autofill.FillResponse +android.service.autofill.IAutoFillService +android.service.autofill.IAutoFillService$Stub +android.service.autofill.IAutoFillService$Stub$Proxy +android.service.autofill.IFillCallback +android.service.autofill.IFillCallback$Stub +android.service.autofill.IFillCallback$Stub$Proxy +android.service.autofill.SaveCallback +android.service.autofill.SaveRequest +android.service.carrier.CarrierIdentifier +android.service.carrier.CarrierIdentifier$1 +android.service.carrier.ICarrierService +android.service.carrier.ICarrierService$Stub +android.service.carrier.ICarrierService$Stub$Proxy +android.service.dreams.DreamManagerInternal +android.service.dreams.IDreamManager +android.service.dreams.IDreamManager$Stub +android.service.dreams.IDreamManager$Stub$Proxy +android.service.gatekeeper.IGateKeeperService +android.service.gatekeeper.IGateKeeperService$Stub +android.service.gatekeeper.IGateKeeperService$Stub$Proxy +android.service.media.IMediaBrowserService +android.service.media.IMediaBrowserService$Stub +android.service.media.IMediaBrowserService$Stub$Proxy +android.service.media.IMediaBrowserServiceCallbacks +android.service.media.IMediaBrowserServiceCallbacks$Stub +android.service.notification.Adjustment +android.service.notification.Condition +android.service.notification.Condition$1 +android.service.notification.ConditionProviderService +android.service.notification.ConditionProviderService$H +android.service.notification.ConditionProviderService$Provider +android.service.notification.IConditionListener +android.service.notification.IConditionListener$Stub +android.service.notification.IConditionProvider +android.service.notification.IConditionProvider$Stub +android.service.notification.INotificationListener +android.service.notification.INotificationListener$Stub +android.service.notification.INotificationListener$Stub$Proxy +android.service.notification.IStatusBarNotificationHolder +android.service.notification.IStatusBarNotificationHolder$Stub +android.service.notification.IStatusBarNotificationHolder$Stub$Proxy +android.service.notification.NotificationListenerService +android.service.notification.NotificationListenerService$MyHandler +android.service.notification.NotificationListenerService$NotificationListenerWrapper +android.service.notification.NotificationListenerService$Ranking +android.service.notification.NotificationListenerService$RankingMap +android.service.notification.NotificationListenerService$RankingMap$1 +android.service.notification.NotificationRankingUpdate +android.service.notification.NotificationRankingUpdate$1 +android.service.notification.StatusBarNotification +android.service.notification.StatusBarNotification$1 +android.service.notification.ZenModeConfig +android.service.notification.ZenModeConfig$1 +android.service.notification.ZenModeConfig$Diff +android.service.notification.ZenModeConfig$EventInfo +android.service.notification.ZenModeConfig$ScheduleInfo +android.service.notification.ZenModeConfig$ZenRule +android.service.notification.ZenModeConfig$ZenRule$1 +android.service.oemlock.IOemLockService +android.service.oemlock.IOemLockService$Stub +android.service.oemlock.OemLockManager +android.service.persistentdata.IPersistentDataBlockService +android.service.persistentdata.IPersistentDataBlockService$Stub +android.service.persistentdata.IPersistentDataBlockService$Stub$Proxy +android.service.persistentdata.PersistentDataBlockManager +android.service.quicksettings.IQSService +android.service.quicksettings.IQSService$Stub +android.service.quicksettings.Tile +android.service.textservice.SpellCheckerService +android.service.textservice.SpellCheckerService$InternalISpellCheckerSession +android.service.textservice.SpellCheckerService$Session +android.service.textservice.SpellCheckerService$SpellCheckerServiceBinder +android.service.voice.AlwaysOnHotwordDetector +android.service.voice.AlwaysOnHotwordDetector$Callback +android.service.voice.AlwaysOnHotwordDetector$EventPayload +android.service.voice.AlwaysOnHotwordDetector$MyHandler +android.service.voice.AlwaysOnHotwordDetector$RefreshAvailabiltyTask +android.service.voice.AlwaysOnHotwordDetector$SoundTriggerListener +android.service.voice.IVoiceInteractionService +android.service.voice.IVoiceInteractionService$Stub +android.service.voice.IVoiceInteractionService$Stub$Proxy +android.service.voice.IVoiceInteractionSession +android.service.voice.VoiceInteractionManagerInternal +android.service.voice.VoiceInteractionService +android.service.voice.VoiceInteractionService$1 +android.service.voice.VoiceInteractionService$MyHandler +android.service.voice.VoiceInteractionServiceInfo +android.service.vr.IPersistentVrStateCallbacks +android.service.vr.IPersistentVrStateCallbacks$Stub +android.service.vr.IVrManager +android.service.vr.IVrManager$Stub +android.service.vr.IVrManager$Stub$Proxy +android.service.vr.IVrStateCallbacks +android.service.vr.IVrStateCallbacks$Stub +android.service.vr.IVrStateCallbacks$Stub$Proxy +android.service.wallpaper.IWallpaperConnection +android.service.wallpaper.IWallpaperConnection$Stub +android.service.wallpaper.IWallpaperConnection$Stub$Proxy +android.service.wallpaper.IWallpaperEngine +android.service.wallpaper.IWallpaperEngine$Stub +android.service.wallpaper.IWallpaperEngine$Stub$Proxy +android.service.wallpaper.IWallpaperService +android.service.wallpaper.IWallpaperService$Stub +android.service.wallpaper.IWallpaperService$Stub$Proxy +android.service.wallpaper.WallpaperService +android.service.wallpaper.WallpaperService$Engine +android.service.wallpaper.WallpaperService$Engine$1 +android.service.wallpaper.WallpaperService$Engine$2 +android.service.wallpaper.WallpaperService$Engine$3 +android.service.wallpaper.WallpaperService$Engine$WallpaperInputEventReceiver +android.service.wallpaper.WallpaperService$IWallpaperEngineWrapper +android.service.wallpaper.WallpaperService$IWallpaperServiceWrapper +android.service.wallpaper.WallpaperService$WallpaperCommand +android.speech.SpeechRecognizer +android.speech.tts.AbstractEventLogger +android.speech.tts.AbstractSynthesisCallback +android.speech.tts.AudioPlaybackHandler +android.speech.tts.AudioPlaybackHandler$MessageLoop +android.speech.tts.EventLogger +android.speech.tts.FileSynthesisCallback +android.speech.tts.ITextToSpeechCallback +android.speech.tts.ITextToSpeechCallback$Stub +android.speech.tts.ITextToSpeechCallback$Stub$Proxy +android.speech.tts.ITextToSpeechService +android.speech.tts.ITextToSpeechService$Stub +android.speech.tts.ITextToSpeechService$Stub$Proxy +android.speech.tts.SynthesisCallback +android.speech.tts.SynthesisRequest +android.speech.tts.TextToSpeech +android.speech.tts.TextToSpeech$10 +android.speech.tts.TextToSpeech$16 +android.speech.tts.TextToSpeech$17 +android.speech.tts.TextToSpeech$7 +android.speech.tts.TextToSpeech$Action +android.speech.tts.TextToSpeech$Connection +android.speech.tts.TextToSpeech$Connection$1 +android.speech.tts.TextToSpeech$Connection$SetupConnectionAsyncTask +android.speech.tts.TextToSpeech$EngineInfo +android.speech.tts.TextToSpeech$OnInitListener +android.speech.tts.TextToSpeechService +android.speech.tts.TextToSpeechService$1 +android.speech.tts.TextToSpeechService$CallbackMap +android.speech.tts.TextToSpeechService$SpeechItem +android.speech.tts.TextToSpeechService$SynthHandler +android.speech.tts.TextToSpeechService$SynthHandler$1 +android.speech.tts.TextToSpeechService$SynthHandler$2 +android.speech.tts.TextToSpeechService$SynthThread +android.speech.tts.TextToSpeechService$SynthesisSpeechItem +android.speech.tts.TextToSpeechService$SynthesisToFileOutputStreamSpeechItem +android.speech.tts.TextToSpeechService$UtteranceProgressDispatcher +android.speech.tts.TextToSpeechService$UtteranceSpeechItem +android.speech.tts.TextToSpeechService$UtteranceSpeechItemWithParams +android.speech.tts.TtsEngines +android.speech.tts.TtsEngines$EngineInfoComparator +android.speech.tts.UtteranceProgressListener +android.system.ErrnoException +android.system.GaiException +android.system.NetlinkSocketAddress +android.system.Os +android.system.OsConstants +android.system.PacketSocketAddress +android.system.StructAddrinfo +android.system.StructFlock +android.system.StructGroupReq +android.system.StructGroupSourceReq +android.system.StructIcmpHdr +android.system.StructIfaddrs +android.system.StructLinger +android.system.StructPasswd +android.system.StructPollfd +android.system.StructStat +android.system.StructStatVfs +android.system.StructTimespec +android.system.StructTimeval +android.system.StructUcred +android.system.StructUtsname +android.system.UnixSocketAddress +android.telecom.-$Lambda$afyb_ODGzn3xMew6fjs8ANSIdVo +android.telecom.CallAudioState +android.telecom.CallAudioState$1 +android.telecom.Conference +android.telecom.Conference$Listener +android.telecom.Conferenceable +android.telecom.Connection +android.telecom.Connection$1 +android.telecom.Connection$2 +android.telecom.Connection$FailureSignalingConnection +android.telecom.Connection$Listener +android.telecom.ConnectionRequest +android.telecom.ConnectionRequest$1 +android.telecom.ConnectionRequest$Builder +android.telecom.ConnectionService +android.telecom.ConnectionService$1 +android.telecom.ConnectionService$2 +android.telecom.ConnectionService$2$1 +android.telecom.ConnectionService$3 +android.telecom.ConnectionService$4 +android.telecom.ConnectionService$5 +android.telecom.ConnectionService$5$1 +android.telecom.ConnectionServiceAdapter +android.telecom.DefaultDialerManager +android.telecom.DisconnectCause +android.telecom.DisconnectCause$1 +android.telecom.Log +android.telecom.Log$1 +android.telecom.Logging.-$Lambda$OwO3BlCgqcOx28O1BaOAPVPor24 +android.telecom.Logging.-$Lambda$OwO3BlCgqcOx28O1BaOAPVPor24$1 +android.telecom.Logging.-$Lambda$OwO3BlCgqcOx28O1BaOAPVPor24$2 +android.telecom.Logging.EventManager +android.telecom.Logging.EventManager$Event +android.telecom.Logging.EventManager$EventListener +android.telecom.Logging.EventManager$EventRecord +android.telecom.Logging.EventManager$Loggable +android.telecom.Logging.EventManager$TimedEventPair +android.telecom.Logging.Runnable +android.telecom.Logging.Runnable$1 +android.telecom.Logging.Session +android.telecom.Logging.Session$Info +android.telecom.Logging.Session$Info$1 +android.telecom.Logging.SessionManager +android.telecom.Logging.SessionManager$ICurrentThreadId +android.telecom.Logging.SessionManager$ISessionCleanupTimeoutMs +android.telecom.Logging.SessionManager$ISessionIdQueryHandler +android.telecom.Logging.SessionManager$ISessionListener +android.telecom.ParcelableCall +android.telecom.ParcelableCall$1 +android.telecom.ParcelableConference +android.telecom.ParcelableConnection +android.telecom.ParcelableConnection$1 +android.telecom.PhoneAccount +android.telecom.PhoneAccount$1 +android.telecom.PhoneAccount$Builder +android.telecom.PhoneAccountHandle +android.telecom.PhoneAccountHandle$1 +android.telecom.RemoteConnectionManager +android.telecom.StatusHints +android.telecom.TelecomAnalytics +android.telecom.TelecomManager +android.telecom.VideoProfile +android.telecom.VideoProfile$1 +android.telephony.CarrierConfigManager +android.telephony.CellIdentityLte +android.telephony.CellIdentityLte$1 +android.telephony.CellIdentityWcdma +android.telephony.CellIdentityWcdma$1 +android.telephony.CellInfo +android.telephony.CellInfo$1 +android.telephony.CellInfoCdma +android.telephony.CellInfoGsm +android.telephony.CellInfoLte +android.telephony.CellInfoLte$1 +android.telephony.CellInfoWcdma +android.telephony.CellInfoWcdma$1 +android.telephony.CellLocation +android.telephony.CellSignalStrength +android.telephony.CellSignalStrengthLte +android.telephony.CellSignalStrengthLte$1 +android.telephony.CellSignalStrengthWcdma +android.telephony.CellSignalStrengthWcdma$1 +android.telephony.ClientRequestStats +android.telephony.ClientRequestStats$1 +android.telephony.DisconnectCause +android.telephony.IccOpenLogicalChannelResponse +android.telephony.ModemActivityInfo +android.telephony.PhoneNumberFormattingTextWatcher +android.telephony.PhoneNumberUtils +android.telephony.PhoneStateListener +android.telephony.PhoneStateListener$1 +android.telephony.PhoneStateListener$IPhoneStateListenerStub +android.telephony.PreciseCallState +android.telephony.PreciseCallState$1 +android.telephony.PreciseDataConnectionState +android.telephony.PreciseDataConnectionState$1 +android.telephony.RadioAccessFamily +android.telephony.Rlog +android.telephony.ServiceState +android.telephony.ServiceState$1 +android.telephony.SignalStrength +android.telephony.SignalStrength$1 +android.telephony.SmsManager +android.telephony.SmsMessage +android.telephony.SubscriptionInfo +android.telephony.SubscriptionInfo$1 +android.telephony.SubscriptionManager +android.telephony.SubscriptionManager$OnSubscriptionsChangedListener +android.telephony.SubscriptionManager$OnSubscriptionsChangedListener$1 +android.telephony.SubscriptionManager$OnSubscriptionsChangedListener$2 +android.telephony.TelephonyHistogram +android.telephony.TelephonyHistogram$1 +android.telephony.TelephonyManager +android.telephony.TelephonyManager$MultiSimVariants +android.telephony.VisualVoicemailSmsFilterSettings +android.telephony.VoLteServiceState +android.telephony.VoLteServiceState$1 +android.telephony.euicc.EuiccManager +android.telephony.gsm.GsmCellLocation +android.telephony.ims.ImsServiceProxy$INotifyStatusChanged +android.telephony.ims.ImsServiceProxyCompat +android.telephony.ims.feature.IMMTelFeature +android.telephony.ims.stub.ImsConfigImplBase +android.telephony.ims.stub.ImsEcbmImplBase +android.telephony.ims.stub.ImsUtImplBase +android.telephony.ims.stub.ImsUtListenerImplBase +android.text.AndroidBidi +android.text.AndroidCharacter +android.text.Annotation +android.text.BidiFormatter +android.text.BidiFormatter$DirectionalityEstimator +android.text.BoringLayout +android.text.BoringLayout$Metrics +android.text.CharSequenceCharacterIterator +android.text.ClipboardManager +android.text.DynamicLayout +android.text.DynamicLayout$ChangeWatcher +android.text.Editable +android.text.Editable$Factory +android.text.FontConfig +android.text.FontConfig$Alias +android.text.FontConfig$Family +android.text.FontConfig$Font +android.text.GetChars +android.text.GraphicsOperations +android.text.Html +android.text.Html$HtmlParser +android.text.Html$TagHandler +android.text.HtmlToSpannedConverter +android.text.HtmlToSpannedConverter$Bold +android.text.HtmlToSpannedConverter$Href +android.text.Hyphenator +android.text.Hyphenator$HyphenationData +android.text.InputFilter +android.text.InputFilter$LengthFilter +android.text.InputType +android.text.Layout +android.text.Layout$Alignment +android.text.Layout$Directions +android.text.Layout$Ellipsizer +android.text.Layout$SpannedEllipsizer +android.text.MeasuredText +android.text.NoCopySpan +android.text.NoCopySpan$Concrete +android.text.PackedIntVector +android.text.PackedObjectVector +android.text.ParcelableSpan +android.text.Selection +android.text.Selection$END +android.text.Selection$PositionIterator +android.text.Selection$START +android.text.SpanSet +android.text.SpanWatcher +android.text.Spannable +android.text.Spannable$Factory +android.text.SpannableString +android.text.SpannableStringBuilder +android.text.SpannableStringInternal +android.text.Spanned +android.text.SpannedString +android.text.StaticLayout +android.text.StaticLayout$Builder +android.text.StaticLayout$LineBreaks +android.text.TextDirectionHeuristic +android.text.TextDirectionHeuristics +android.text.TextDirectionHeuristics$AnyStrong +android.text.TextDirectionHeuristics$FirstStrong +android.text.TextDirectionHeuristics$TextDirectionAlgorithm +android.text.TextDirectionHeuristics$TextDirectionHeuristicImpl +android.text.TextDirectionHeuristics$TextDirectionHeuristicInternal +android.text.TextDirectionHeuristics$TextDirectionHeuristicLocale +android.text.TextLine +android.text.TextLine$DecorationInfo +android.text.TextPaint +android.text.TextUtils +android.text.TextUtils$1 +android.text.TextUtils$EllipsizeCallback +android.text.TextUtils$SimpleStringSplitter +android.text.TextUtils$StringSplitter +android.text.TextUtils$TruncateAt +android.text.TextWatcher +android.text.format.DateFormat +android.text.format.DateUtils +android.text.format.Formatter +android.text.format.Formatter$BytesResult +android.text.format.Time +android.text.format.Time$TimeCalculator +android.text.format.TimeFormatter +android.text.method.AllCapsTransformationMethod +android.text.method.ArrowKeyMovementMethod +android.text.method.BaseKeyListener +android.text.method.BaseMovementMethod +android.text.method.DialerKeyListener +android.text.method.KeyListener +android.text.method.LinkMovementMethod +android.text.method.MetaKeyKeyListener +android.text.method.MovementMethod +android.text.method.NumberKeyListener +android.text.method.PasswordTransformationMethod +android.text.method.QwertyKeyListener +android.text.method.QwertyKeyListener$Replaced +android.text.method.ReplacementTransformationMethod +android.text.method.ReplacementTransformationMethod$ReplacementCharSequence +android.text.method.ReplacementTransformationMethod$SpannedReplacementCharSequence +android.text.method.ScrollingMovementMethod +android.text.method.SingleLineTransformationMethod +android.text.method.TextKeyListener +android.text.method.TextKeyListener$Capitalize +android.text.method.TextKeyListener$SettingsObserver +android.text.method.Touch +android.text.method.Touch$DragState +android.text.method.TransformationMethod +android.text.method.TransformationMethod2 +android.text.method.WordIterator +android.text.style.AlignmentSpan +android.text.style.BackgroundColorSpan +android.text.style.CharacterStyle +android.text.style.CharacterStyle$Passthrough +android.text.style.ClickableSpan +android.text.style.DynamicDrawableSpan +android.text.style.EasyEditSpan +android.text.style.ForegroundColorSpan +android.text.style.ImageSpan +android.text.style.LeadingMarginSpan +android.text.style.LeadingMarginSpan$LeadingMarginSpan2 +android.text.style.LeadingMarginSpan$Standard +android.text.style.LineBackgroundSpan +android.text.style.LineHeightSpan +android.text.style.LineHeightSpan$WithDensity +android.text.style.MetricAffectingSpan +android.text.style.MetricAffectingSpan$Passthrough +android.text.style.ParagraphStyle +android.text.style.RelativeSizeSpan +android.text.style.ReplacementSpan +android.text.style.SpellCheckSpan +android.text.style.StrikethroughSpan +android.text.style.StyleSpan +android.text.style.SuggestionSpan +android.text.style.SuggestionSpan$1 +android.text.style.TabStopSpan +android.text.style.TextAppearanceSpan +android.text.style.TtsSpan +android.text.style.TtsSpan$Builder +android.text.style.TtsSpan$SemioticClassBuilder +android.text.style.TtsSpan$TelephoneBuilder +android.text.style.TtsSpan$VerbatimBuilder +android.text.style.TypefaceSpan +android.text.style.URLSpan +android.text.style.UnderlineSpan +android.text.style.UpdateAppearance +android.text.style.UpdateLayout +android.text.style.WrapTogetherSpan +android.text.util.Linkify +android.text.util.Linkify$1 +android.text.util.Linkify$2 +android.text.util.Linkify$3 +android.text.util.Linkify$4 +android.text.util.Linkify$MatchFilter +android.text.util.Linkify$TransformFilter +android.text.util.Rfc822Token +android.text.util.Rfc822Tokenizer +android.transition.ArcMotion +android.transition.AutoTransition +android.transition.ChangeBounds +android.transition.ChangeBounds$1 +android.transition.ChangeBounds$2 +android.transition.ChangeBounds$3 +android.transition.ChangeBounds$4 +android.transition.ChangeBounds$5 +android.transition.ChangeBounds$6 +android.transition.ChangeBounds$9 +android.transition.ChangeClipBounds +android.transition.ChangeImageTransform +android.transition.ChangeImageTransform$1 +android.transition.ChangeImageTransform$2 +android.transition.ChangeTransform +android.transition.ChangeTransform$1 +android.transition.ChangeTransform$2 +android.transition.ChangeTransform$3 +android.transition.ChangeTransform$GhostListener +android.transition.ChangeTransform$PathAnimatorMatrix +android.transition.ChangeTransform$Transforms +android.transition.CircularPropagation +android.transition.Explode +android.transition.Fade +android.transition.Fade$1 +android.transition.Fade$FadeAnimatorListener +android.transition.PathMotion +android.transition.Scene +android.transition.SidePropagation +android.transition.Slide +android.transition.Slide$1 +android.transition.Slide$2 +android.transition.Slide$3 +android.transition.Slide$4 +android.transition.Slide$5 +android.transition.Slide$6 +android.transition.Slide$CalculateSlide +android.transition.Slide$CalculateSlideHorizontal +android.transition.Slide$CalculateSlideVertical +android.transition.Transition +android.transition.Transition$1 +android.transition.Transition$2 +android.transition.Transition$3 +android.transition.Transition$AnimationInfo +android.transition.Transition$ArrayListManager +android.transition.Transition$EpicenterCallback +android.transition.Transition$TransitionListener +android.transition.TransitionInflater +android.transition.TransitionListenerAdapter +android.transition.TransitionManager +android.transition.TransitionManager$MultiListener +android.transition.TransitionManager$MultiListener$1 +android.transition.TransitionPropagation +android.transition.TransitionSet +android.transition.TransitionSet$TransitionSetListener +android.transition.TransitionUtils +android.transition.TransitionValues +android.transition.TransitionValuesMaps +android.transition.Visibility +android.transition.Visibility$1 +android.transition.Visibility$VisibilityInfo +android.transition.VisibilityPropagation +android.util.AndroidException +android.util.AndroidRuntimeException +android.util.ArrayMap +android.util.ArrayMap$1 +android.util.ArraySet +android.util.ArraySet$1 +android.util.AtomicFile +android.util.AttributeSet +android.util.Base64 +android.util.Base64$Coder +android.util.Base64$Decoder +android.util.Base64$Encoder +android.util.ByteStringUtils +android.util.ContainerHelpers +android.util.DebugUtils +android.util.DisplayMetrics +android.util.EventLog +android.util.EventLog$Event +android.util.FastImmutableArraySet +android.util.FastImmutableArraySet$FastIterator +android.util.FloatProperty +android.util.IconDrawableFactory +android.util.IntArray +android.util.IntProperty +android.util.JsonReader +android.util.JsonScope +android.util.JsonToken +android.util.JsonWriter +android.util.KeyValueListParser +android.util.LauncherIcons +android.util.LauncherIcons$ShadowDrawable +android.util.LauncherIcons$ShadowDrawable$MyConstantState +android.util.LocalLog +android.util.LocalLog$ReadOnlyLocalLog +android.util.Log +android.util.Log$1 +android.util.Log$ImmediateLogWriter +android.util.Log$PreloadHolder +android.util.Log$TerribleFailure +android.util.Log$TerribleFailureHandler +android.util.LogPrinter +android.util.LongArray +android.util.LongSparseArray +android.util.LongSparseLongArray +android.util.LruCache +android.util.MapCollections +android.util.MapCollections$ArrayIterator +android.util.MapCollections$EntrySet +android.util.MapCollections$KeySet +android.util.MapCollections$MapIterator +android.util.MapCollections$ValuesCollection +android.util.MathUtils +android.util.MemoryIntArray +android.util.MemoryIntArray$1 +android.util.MergedConfiguration +android.util.MergedConfiguration$1 +android.util.MutableBoolean +android.util.MutableInt +android.util.MutableLong +android.util.NtpTrustedTime +android.util.Pair +android.util.PathParser +android.util.PathParser$PathData +android.util.Patterns +android.util.Pools$Pool +android.util.Pools$SimplePool +android.util.Pools$SynchronizedPool +android.util.Printer +android.util.Property +android.util.Range +android.util.Rational +android.util.ReflectiveProperty +android.util.Singleton +android.util.Size +android.util.SizeF +android.util.Slog +android.util.SparseArray +android.util.SparseBooleanArray +android.util.SparseIntArray +android.util.SparseLongArray +android.util.Spline +android.util.Spline$MonotoneCubicSpline +android.util.StateSet +android.util.SuperNotCalledException +android.util.TimeFormatException +android.util.TimeUtils +android.util.TimedRemoteCaller +android.util.TimingLogger +android.util.TimingsTraceLog +android.util.TrustedTime +android.util.TypedValue +android.util.Xml +android.util.Xml$XmlSerializerFactory +android.util.XmlPullAttributes +android.util.apk.ApkSignatureSchemeV2Verifier +android.util.apk.ApkSignatureSchemeV2Verifier$SignatureNotFoundException +android.util.apk.ZipUtils +android.util.jar.StrictJarFile +android.util.jar.StrictJarFile$EntryIterator +android.util.jar.StrictJarFile$FDStream +android.util.jar.StrictJarFile$JarFileInputStream +android.util.jar.StrictJarFile$ZipInflaterInputStream +android.util.jar.StrictJarManifest +android.util.jar.StrictJarManifest$Chunk +android.util.jar.StrictJarManifestReader +android.util.jar.StrictJarVerifier +android.util.jar.StrictJarVerifier$VerifierEntry +android.view.-$Lambda$6k_RnLLpNi5zg27ubDxN4lDdBbk +android.view.-$Lambda$6k_RnLLpNi5zg27ubDxN4lDdBbk$1 +android.view.-$Lambda$6k_RnLLpNi5zg27ubDxN4lDdBbk$2 +android.view.-$Lambda$6k_RnLLpNi5zg27ubDxN4lDdBbk$3 +android.view.-$Lambda$P6MTGFSudLpwrqb6oVD8FdorW1c +android.view.-$Lambda$XmA8Y30pNAdQP9ujRlGx1qfDHH8 +android.view.-$Lambda$iU_USrtPm1XIm5H9QYQvXfBGDE4 +android.view.-$Lambda$iU_USrtPm1XIm5H9QYQvXfBGDE4$1 +android.view.AbsSavedState +android.view.AbsSavedState$1 +android.view.AbsSavedState$2 +android.view.AccessibilityInteractionController +android.view.AccessibilityInteractionController$AccessibilityNodePrefetcher +android.view.AccessibilityInteractionController$PrivateHandler +android.view.ActionMode +android.view.ActionMode$Callback +android.view.ActionMode$Callback2 +android.view.ActionProvider +android.view.ActionProvider$SubUiVisibilityListener +android.view.AppTransitionAnimationSpec +android.view.AppTransitionAnimationSpec$1 +android.view.Choreographer +android.view.Choreographer$1 +android.view.Choreographer$2 +android.view.Choreographer$3 +android.view.Choreographer$CallbackQueue +android.view.Choreographer$CallbackRecord +android.view.Choreographer$FrameCallback +android.view.Choreographer$FrameDisplayEventReceiver +android.view.Choreographer$FrameHandler +android.view.ContextMenu +android.view.ContextMenu$ContextMenuInfo +android.view.ContextThemeWrapper +android.view.Display +android.view.Display$HdrCapabilities +android.view.Display$HdrCapabilities$1 +android.view.Display$Mode +android.view.Display$Mode$1 +android.view.DisplayAdjustments +android.view.DisplayEventReceiver +android.view.DisplayInfo +android.view.DisplayInfo$1 +android.view.DisplayListCanvas +android.view.DragEvent +android.view.FallbackEventHandler +android.view.FocusFinder +android.view.FocusFinder$1 +android.view.FocusFinder$FocusSorter +android.view.FocusFinder$UserSpecifiedFocusComparator +android.view.FocusFinder$UserSpecifiedFocusComparator$NextFocusGetter +android.view.FrameInfo +android.view.FrameMetrics +android.view.FrameMetricsObserver +android.view.FrameStats +android.view.GestureDetector +android.view.GestureDetector$GestureHandler +android.view.GestureDetector$OnContextClickListener +android.view.GestureDetector$OnDoubleTapListener +android.view.GestureDetector$OnGestureListener +android.view.GestureDetector$SimpleOnGestureListener +android.view.GhostView +android.view.Gravity +android.view.HandlerActionQueue +android.view.HandlerActionQueue$HandlerAction +android.view.HardwareLayer +android.view.IAppTransitionAnimationSpecsFuture +android.view.IAppTransitionAnimationSpecsFuture$Stub +android.view.IAppTransitionAnimationSpecsFuture$Stub$Proxy +android.view.IApplicationToken +android.view.IApplicationToken$Stub +android.view.IDockedStackListener +android.view.IDockedStackListener$Stub +android.view.IDockedStackListener$Stub$Proxy +android.view.IGraphicsStats +android.view.IGraphicsStats$Stub +android.view.IGraphicsStats$Stub$Proxy +android.view.IGraphicsStatsCallback +android.view.IGraphicsStatsCallback$Stub +android.view.IGraphicsStatsCallback$Stub$Proxy +android.view.IInputFilter +android.view.IOnKeyguardExitResult +android.view.IPinnedStackController +android.view.IPinnedStackController$Stub +android.view.IPinnedStackController$Stub$Proxy +android.view.IPinnedStackListener +android.view.IPinnedStackListener$Stub +android.view.IPinnedStackListener$Stub$Proxy +android.view.IRotationWatcher +android.view.IRotationWatcher$Stub +android.view.IRotationWatcher$Stub$Proxy +android.view.IWindow +android.view.IWindow$Stub +android.view.IWindow$Stub$Proxy +android.view.IWindowFocusObserver +android.view.IWindowId +android.view.IWindowId$Stub +android.view.IWindowId$Stub$Proxy +android.view.IWindowManager +android.view.IWindowManager$Stub +android.view.IWindowManager$Stub$Proxy +android.view.IWindowSession +android.view.IWindowSession$Stub +android.view.IWindowSession$Stub$Proxy +android.view.IWindowSessionCallback +android.view.IWindowSessionCallback$Stub +android.view.IWindowSessionCallback$Stub$Proxy +android.view.InflateException +android.view.InputChannel +android.view.InputChannel$1 +android.view.InputDevice +android.view.InputDevice$1 +android.view.InputDevice$MotionRange +android.view.InputEvent +android.view.InputEvent$1 +android.view.InputEventConsistencyVerifier +android.view.InputEventReceiver +android.view.InputEventReceiver$Factory +android.view.InputEventSender +android.view.InputQueue +android.view.InputQueue$Callback +android.view.InputQueue$FinishedInputEventCallback +android.view.KeyCharacterMap +android.view.KeyCharacterMap$1 +android.view.KeyCharacterMap$FallbackAction +android.view.KeyEvent +android.view.KeyEvent$1 +android.view.KeyEvent$Callback +android.view.KeyEvent$DispatcherState +android.view.KeyboardShortcutGroup +android.view.KeyboardShortcutGroup$1 +android.view.KeyboardShortcutInfo +android.view.KeyboardShortcutInfo$1 +android.view.LayoutInflater +android.view.LayoutInflater$Factory +android.view.LayoutInflater$Factory2 +android.view.LayoutInflater$FactoryMerger +android.view.LayoutInflater$Filter +android.view.MagnificationSpec +android.view.Menu +android.view.MenuInflater +android.view.MenuInflater$MenuState +android.view.MenuItem +android.view.MenuItem$OnActionExpandListener +android.view.MenuItem$OnMenuItemClickListener +android.view.MotionEvent +android.view.MotionEvent$1 +android.view.MotionEvent$PointerCoords +android.view.MotionEvent$PointerProperties +android.view.NotificationHeaderView +android.view.NotificationHeaderView$1 +android.view.NotificationHeaderView$HeaderTouchListener +android.view.OrientationEventListener +android.view.OrientationEventListener$SensorEventListenerImpl +android.view.PointerIcon +android.view.PointerIcon$1 +android.view.RecordingCanvas +android.view.RemotableViewMethod +android.view.RenderNode +android.view.RenderNode$NoImagePreloadHolder +android.view.RenderNodeAnimator +android.view.RenderNodeAnimator$1 +android.view.RenderNodeAnimatorSetHelper +android.view.ScaleGestureDetector +android.view.ScaleGestureDetector$1 +android.view.ScaleGestureDetector$OnScaleGestureListener +android.view.ScaleGestureDetector$SimpleOnScaleGestureListener +android.view.SearchEvent +android.view.SubMenu +android.view.Surface +android.view.Surface$1 +android.view.Surface$CompatibleCanvas +android.view.Surface$OutOfResourcesException +android.view.SurfaceControl +android.view.SurfaceControl$PhysicalDisplayInfo +android.view.SurfaceHolder +android.view.SurfaceHolder$Callback +android.view.SurfaceHolder$Callback2 +android.view.SurfaceSession +android.view.SurfaceView +android.view.SurfaceView$1 +android.view.SurfaceView$2 +android.view.SurfaceView$3 +android.view.SurfaceView$4 +android.view.SurfaceView$SurfaceControlWithBackground +android.view.TextureView +android.view.TextureView$1 +android.view.TextureView$SurfaceTextureListener +android.view.ThreadedRenderer +android.view.ThreadedRenderer$DrawCallbacks +android.view.ThreadedRenderer$ProcessInitializer +android.view.ThreadedRenderer$ProcessInitializer$1 +android.view.TouchDelegate +android.view.VelocityTracker +android.view.VelocityTracker$Estimator +android.view.View +android.view.View$1 +android.view.View$10 +android.view.View$11 +android.view.View$12 +android.view.View$2 +android.view.View$3 +android.view.View$4 +android.view.View$5 +android.view.View$6 +android.view.View$7 +android.view.View$8 +android.view.View$9 +android.view.View$AccessibilityDelegate +android.view.View$AttachInfo +android.view.View$AttachInfo$Callbacks +android.view.View$BaseSavedState +android.view.View$BaseSavedState$1 +android.view.View$CheckForLongPress +android.view.View$CheckForTap +android.view.View$DeclaredOnClickListener +android.view.View$ForegroundInfo +android.view.View$ListenerInfo +android.view.View$MatchIdPredicate +android.view.View$MatchLabelForPredicate +android.view.View$MeasureSpec +android.view.View$OnApplyWindowInsetsListener +android.view.View$OnAttachStateChangeListener +android.view.View$OnClickListener +android.view.View$OnCreateContextMenuListener +android.view.View$OnDragListener +android.view.View$OnFocusChangeListener +android.view.View$OnGenericMotionListener +android.view.View$OnHoverListener +android.view.View$OnKeyListener +android.view.View$OnLayoutChangeListener +android.view.View$OnLongClickListener +android.view.View$OnScrollChangeListener +android.view.View$OnSystemUiVisibilityChangeListener +android.view.View$OnTouchListener +android.view.View$PerformClick +android.view.View$ScrollabilityCache +android.view.View$SendViewScrolledAccessibilityEvent +android.view.View$TintInfo +android.view.View$TooltipInfo +android.view.View$TransformationInfo +android.view.View$UnsetPressedState +android.view.View$VisibilityChangeForAutofillHandler +android.view.ViewAnimationUtils +android.view.ViewConfiguration +android.view.ViewDebug$CapturedViewProperty +android.view.ViewDebug$ExportedProperty +android.view.ViewDebug$HierarchyHandler +android.view.ViewGroup +android.view.ViewGroup$1 +android.view.ViewGroup$2 +android.view.ViewGroup$3 +android.view.ViewGroup$4 +android.view.ViewGroup$ChildListForAutoFill +android.view.ViewGroup$LayoutParams +android.view.ViewGroup$MarginLayoutParams +android.view.ViewGroup$OnHierarchyChangeListener +android.view.ViewGroup$TouchTarget +android.view.ViewGroupOverlay +android.view.ViewManager +android.view.ViewOutlineProvider +android.view.ViewOutlineProvider$1 +android.view.ViewOutlineProvider$2 +android.view.ViewOutlineProvider$3 +android.view.ViewOverlay +android.view.ViewOverlay$OverlayViewGroup +android.view.ViewParent +android.view.ViewPropertyAnimator +android.view.ViewPropertyAnimator$1 +android.view.ViewPropertyAnimator$2 +android.view.ViewPropertyAnimator$3 +android.view.ViewPropertyAnimator$AnimatorEventListener +android.view.ViewPropertyAnimator$NameValuesHolder +android.view.ViewPropertyAnimator$PropertyBundle +android.view.ViewRootImpl +android.view.ViewRootImpl$1 +android.view.ViewRootImpl$2 +android.view.ViewRootImpl$4 +android.view.ViewRootImpl$AccessibilityInteractionConnection +android.view.ViewRootImpl$AccessibilityInteractionConnectionManager +android.view.ViewRootImpl$ActivityConfigCallback +android.view.ViewRootImpl$AsyncInputStage +android.view.ViewRootImpl$ConfigChangedCallback +android.view.ViewRootImpl$ConsumeBatchedInputImmediatelyRunnable +android.view.ViewRootImpl$ConsumeBatchedInputRunnable +android.view.ViewRootImpl$EarlyPostImeInputStage +android.view.ViewRootImpl$HighContrastTextManager +android.view.ViewRootImpl$ImeInputStage +android.view.ViewRootImpl$InputStage +android.view.ViewRootImpl$InvalidateOnAnimationRunnable +android.view.ViewRootImpl$NativePostImeInputStage +android.view.ViewRootImpl$NativePreImeInputStage +android.view.ViewRootImpl$QueuedInputEvent +android.view.ViewRootImpl$SendWindowContentChangedAccessibilityEvent +android.view.ViewRootImpl$SyntheticInputStage +android.view.ViewRootImpl$SyntheticJoystickHandler +android.view.ViewRootImpl$SyntheticKeyboardHandler +android.view.ViewRootImpl$SyntheticTouchNavigationHandler +android.view.ViewRootImpl$SyntheticTouchNavigationHandler$1 +android.view.ViewRootImpl$SyntheticTrackballHandler +android.view.ViewRootImpl$SystemUiVisibilityInfo +android.view.ViewRootImpl$TrackballAxis +android.view.ViewRootImpl$TraversalRunnable +android.view.ViewRootImpl$ViewPostImeInputStage +android.view.ViewRootImpl$ViewPreImeInputStage +android.view.ViewRootImpl$ViewRootHandler +android.view.ViewRootImpl$W +android.view.ViewRootImpl$WindowInputEventReceiver +android.view.ViewRootImpl$WindowStoppedCallback +android.view.ViewStructure +android.view.ViewStructure$HtmlInfo +android.view.ViewStub +android.view.ViewStub$OnInflateListener +android.view.ViewStub$ViewReplaceRunnable +android.view.ViewTreeObserver +android.view.ViewTreeObserver$CopyOnWriteArray +android.view.ViewTreeObserver$CopyOnWriteArray$Access +android.view.ViewTreeObserver$InternalInsetsInfo +android.view.ViewTreeObserver$OnComputeInternalInsetsListener +android.view.ViewTreeObserver$OnDrawListener +android.view.ViewTreeObserver$OnGlobalFocusChangeListener +android.view.ViewTreeObserver$OnGlobalLayoutListener +android.view.ViewTreeObserver$OnPreDrawListener +android.view.ViewTreeObserver$OnScrollChangedListener +android.view.ViewTreeObserver$OnTouchModeChangeListener +android.view.Window +android.view.Window$Callback +android.view.Window$OnWindowDismissedCallback +android.view.Window$OnWindowSwipeDismissedCallback +android.view.Window$WindowControllerCallback +android.view.WindowAnimationFrameStats +android.view.WindowAnimationFrameStats$1 +android.view.WindowCallbackWrapper +android.view.WindowCallbacks +android.view.WindowContentFrameStats +android.view.WindowContentFrameStats$1 +android.view.WindowId +android.view.WindowId$1 +android.view.WindowInsets +android.view.WindowLeaked +android.view.WindowManager +android.view.WindowManager$BadTokenException +android.view.WindowManager$InvalidDisplayException +android.view.WindowManager$KeyboardShortcutsReceiver +android.view.WindowManager$LayoutParams +android.view.WindowManager$LayoutParams$1 +android.view.WindowManagerGlobal +android.view.WindowManagerGlobal$1 +android.view.WindowManagerGlobal$2 +android.view.WindowManagerImpl +android.view.WindowManagerInternal +android.view.WindowManagerInternal$AppTransitionListener +android.view.WindowManagerInternal$MagnificationCallbacks +android.view.WindowManagerInternal$OnHardKeyboardStatusChangeListener +android.view.WindowManagerInternal$WindowsForAccessibilityCallback +android.view.WindowManagerPolicy +android.view.WindowManagerPolicy$InputConsumer +android.view.WindowManagerPolicy$OnKeyguardExitResult +android.view.WindowManagerPolicy$PointerEventListener +android.view.WindowManagerPolicy$ScreenOffListener +android.view.WindowManagerPolicy$ScreenOnListener +android.view.WindowManagerPolicy$StartingSurface +android.view.WindowManagerPolicy$WindowManagerFuncs +android.view.WindowManagerPolicy$WindowState +android.view.accessibility.-$Lambda$T3m_l9_RA18vCOcakSWp1lZCy5g$1 +android.view.accessibility.AccessibilityEvent +android.view.accessibility.AccessibilityEvent$1 +android.view.accessibility.AccessibilityEventSource +android.view.accessibility.AccessibilityManager +android.view.accessibility.AccessibilityManager$1 +android.view.accessibility.AccessibilityManager$AccessibilityServicesStateChangeListener +android.view.accessibility.AccessibilityManager$AccessibilityStateChangeListener +android.view.accessibility.AccessibilityManager$HighTextContrastChangeListener +android.view.accessibility.AccessibilityManager$MyCallback +android.view.accessibility.AccessibilityManager$TouchExplorationStateChangeListener +android.view.accessibility.AccessibilityNodeInfo +android.view.accessibility.AccessibilityNodeInfo$1 +android.view.accessibility.AccessibilityNodeInfo$AccessibilityAction +android.view.accessibility.AccessibilityNodeProvider +android.view.accessibility.AccessibilityRecord +android.view.accessibility.CaptioningManager +android.view.accessibility.CaptioningManager$1 +android.view.accessibility.CaptioningManager$CaptionStyle +android.view.accessibility.CaptioningManager$CaptioningChangeListener +android.view.accessibility.CaptioningManager$MyContentObserver +android.view.accessibility.IAccessibilityInteractionConnection +android.view.accessibility.IAccessibilityInteractionConnection$Stub +android.view.accessibility.IAccessibilityInteractionConnection$Stub$Proxy +android.view.accessibility.IAccessibilityInteractionConnectionCallback +android.view.accessibility.IAccessibilityInteractionConnectionCallback$Stub +android.view.accessibility.IAccessibilityInteractionConnectionCallback$Stub$Proxy +android.view.accessibility.IAccessibilityManager +android.view.accessibility.IAccessibilityManager$Stub +android.view.accessibility.IAccessibilityManager$Stub$Proxy +android.view.accessibility.IAccessibilityManagerClient +android.view.accessibility.IAccessibilityManagerClient$Stub +android.view.accessibility.IAccessibilityManagerClient$Stub$Proxy +android.view.animation.AccelerateDecelerateInterpolator +android.view.animation.AccelerateInterpolator +android.view.animation.AlphaAnimation +android.view.animation.Animation +android.view.animation.Animation$1 +android.view.animation.Animation$2 +android.view.animation.Animation$3 +android.view.animation.Animation$AnimationListener +android.view.animation.Animation$Description +android.view.animation.Animation$NoImagePreloadHolder +android.view.animation.AnimationSet +android.view.animation.AnimationUtils +android.view.animation.AnimationUtils$1 +android.view.animation.AnimationUtils$AnimationState +android.view.animation.BaseInterpolator +android.view.animation.ClipRectAnimation +android.view.animation.CycleInterpolator +android.view.animation.DecelerateInterpolator +android.view.animation.GridLayoutAnimationController$AnimationParameters +android.view.animation.Interpolator +android.view.animation.LayoutAnimationController +android.view.animation.LayoutAnimationController$AnimationParameters +android.view.animation.LinearInterpolator +android.view.animation.OvershootInterpolator +android.view.animation.PathInterpolator +android.view.animation.ScaleAnimation +android.view.animation.Transformation +android.view.animation.TranslateAnimation +android.view.autofill.AutofillId +android.view.autofill.AutofillId$1 +android.view.autofill.AutofillManager +android.view.autofill.AutofillManager$AutofillClient +android.view.autofill.AutofillManager$AutofillManagerClient +android.view.autofill.AutofillValue +android.view.autofill.AutofillValue$1 +android.view.autofill.Helper +android.view.autofill.IAutoFillManager +android.view.autofill.IAutoFillManager$Stub +android.view.autofill.IAutoFillManager$Stub$Proxy +android.view.autofill.IAutoFillManagerClient +android.view.autofill.IAutoFillManagerClient$Stub +android.view.autofill.IAutoFillManagerClient$Stub$Proxy +android.view.autofill.IAutofillWindowPresenter +android.view.inputmethod.BaseInputConnection +android.view.inputmethod.CompletionInfo +android.view.inputmethod.CompletionInfo$1 +android.view.inputmethod.ComposingText +android.view.inputmethod.CorrectionInfo +android.view.inputmethod.CursorAnchorInfo +android.view.inputmethod.CursorAnchorInfo$Builder +android.view.inputmethod.EditorInfo +android.view.inputmethod.EditorInfo$1 +android.view.inputmethod.ExtractedText +android.view.inputmethod.ExtractedText$1 +android.view.inputmethod.ExtractedTextRequest +android.view.inputmethod.ExtractedTextRequest$1 +android.view.inputmethod.InputBinding +android.view.inputmethod.InputBinding$1 +android.view.inputmethod.InputConnection +android.view.inputmethod.InputConnectionInspector +android.view.inputmethod.InputConnectionWrapper +android.view.inputmethod.InputContentInfo +android.view.inputmethod.InputMethod +android.view.inputmethod.InputMethod$SessionCallback +android.view.inputmethod.InputMethodInfo +android.view.inputmethod.InputMethodInfo$1 +android.view.inputmethod.InputMethodManager +android.view.inputmethod.InputMethodManager$1 +android.view.inputmethod.InputMethodManager$2 +android.view.inputmethod.InputMethodManager$ControlledInputConnectionWrapper +android.view.inputmethod.InputMethodManager$FinishedInputEventCallback +android.view.inputmethod.InputMethodManager$H +android.view.inputmethod.InputMethodManager$ImeInputEventSender +android.view.inputmethod.InputMethodManager$PendingEvent +android.view.inputmethod.InputMethodManagerInternal +android.view.inputmethod.InputMethodSession +android.view.inputmethod.InputMethodSession$EventCallback +android.view.inputmethod.InputMethodSubtype +android.view.inputmethod.InputMethodSubtype$1 +android.view.inputmethod.InputMethodSubtype$InputMethodSubtypeBuilder +android.view.inputmethod.InputMethodSubtypeArray +android.view.textclassifier.TextClassificationManager +android.view.textclassifier.TextClassifier +android.view.textclassifier.TextClassifier$1 +android.view.textclassifier.TextClassifierImpl +android.view.textclassifier.logging.SmartSelectionEventTracker +android.view.textservice.SpellCheckerInfo +android.view.textservice.SpellCheckerInfo$1 +android.view.textservice.SpellCheckerSession +android.view.textservice.SpellCheckerSession$1 +android.view.textservice.SpellCheckerSession$InternalListener +android.view.textservice.SpellCheckerSession$SpellCheckerSessionListener +android.view.textservice.SpellCheckerSession$SpellCheckerSessionListenerImpl +android.view.textservice.SpellCheckerSession$SpellCheckerSessionListenerImpl$SpellCheckerParams +android.view.textservice.SpellCheckerSubtype +android.view.textservice.SpellCheckerSubtype$1 +android.view.textservice.SuggestionsInfo +android.view.textservice.TextInfo +android.view.textservice.TextServicesManager +android.webkit.ConsoleMessage +android.webkit.ConsoleMessage$MessageLevel +android.webkit.CookieManager +android.webkit.CookieSyncManager +android.webkit.DownloadListener +android.webkit.GeolocationPermissions +android.webkit.IWebViewUpdateService +android.webkit.IWebViewUpdateService$Stub +android.webkit.IWebViewUpdateService$Stub$Proxy +android.webkit.JavascriptInterface +android.webkit.MimeTypeMap +android.webkit.ServiceWorkerClient +android.webkit.ServiceWorkerController +android.webkit.ServiceWorkerWebSettings +android.webkit.TokenBindingService +android.webkit.URLUtil +android.webkit.UserPackage +android.webkit.ValueCallback +android.webkit.WebBackForwardList +android.webkit.WebChromeClient +android.webkit.WebChromeClient$CustomViewCallback +android.webkit.WebIconDatabase +android.webkit.WebMessage +android.webkit.WebMessagePort +android.webkit.WebResourceRequest +android.webkit.WebSettings +android.webkit.WebSettings$LayoutAlgorithm +android.webkit.WebSettings$PluginState +android.webkit.WebSettings$RenderPriority +android.webkit.WebSettings$ZoomDensity +android.webkit.WebStorage +android.webkit.WebSyncManager +android.webkit.WebView +android.webkit.WebView$FindListener +android.webkit.WebView$HitTestResult +android.webkit.WebView$PictureListener +android.webkit.WebView$PrivateAccess +android.webkit.WebView$VisualStateCallback +android.webkit.WebViewClient +android.webkit.WebViewDatabase +android.webkit.WebViewDelegate +android.webkit.WebViewDelegate$1 +android.webkit.WebViewDelegate$OnTraceEnabledChangeListener +android.webkit.WebViewFactory +android.webkit.WebViewFactory$1 +android.webkit.WebViewFactory$MissingWebViewPackageException +android.webkit.WebViewFactory$RelroFileCreator +android.webkit.WebViewFactoryProvider +android.webkit.WebViewFactoryProvider$Statics +android.webkit.WebViewLibraryLoader +android.webkit.WebViewProvider +android.webkit.WebViewProvider$ScrollDelegate +android.webkit.WebViewProvider$ViewDelegate +android.webkit.WebViewProviderInfo +android.webkit.WebViewProviderInfo$1 +android.webkit.WebViewProviderResponse +android.webkit.WebViewProviderResponse$1 +android.webkit.WebViewZygote +android.widget.-$Lambda$ISuHLqeK-K4pmesAfzlFglc3xF4 +android.widget.-$Lambda$ISuHLqeK-K4pmesAfzlFglc3xF4$1 +android.widget.-$Lambda$ISuHLqeK-K4pmesAfzlFglc3xF4$2 +android.widget.-$Lambda$ISuHLqeK-K4pmesAfzlFglc3xF4$3 +android.widget.-$Lambda$tfOQKOmkDz_xLYaBQX_cysn8vbE +android.widget.AbsListView +android.widget.AbsListView$3 +android.widget.AbsListView$AdapterDataSetObserver +android.widget.AbsListView$CheckForTap +android.widget.AbsListView$FlingRunnable +android.widget.AbsListView$FlingRunnable$1 +android.widget.AbsListView$LayoutParams +android.widget.AbsListView$MultiChoiceModeListener +android.widget.AbsListView$MultiChoiceModeWrapper +android.widget.AbsListView$OnScrollListener +android.widget.AbsListView$PerformClick +android.widget.AbsListView$RecycleBin +android.widget.AbsListView$RecyclerListener +android.widget.AbsListView$SavedState +android.widget.AbsListView$SavedState$1 +android.widget.AbsListView$SelectionBoundsAdjuster +android.widget.AbsListView$WindowRunnnable +android.widget.AbsSeekBar +android.widget.AbsSpinner +android.widget.AbsSpinner$RecycleBin +android.widget.AbsoluteLayout +android.widget.ActionMenuPresenter +android.widget.ActionMenuPresenter$1 +android.widget.ActionMenuPresenter$2 +android.widget.ActionMenuPresenter$ActionMenuPopupCallback +android.widget.ActionMenuPresenter$OverflowMenuButton +android.widget.ActionMenuPresenter$OverflowMenuButton$1 +android.widget.ActionMenuPresenter$PopupPresenterCallback +android.widget.ActionMenuView +android.widget.ActionMenuView$ActionMenuChildView +android.widget.ActionMenuView$ActionMenuPresenterCallback +android.widget.ActionMenuView$LayoutParams +android.widget.ActionMenuView$MenuBuilderCallback +android.widget.ActionMenuView$OnMenuItemClickListener +android.widget.Adapter +android.widget.AdapterView +android.widget.AdapterView$AdapterDataSetObserver +android.widget.AdapterView$OnItemClickListener +android.widget.AdapterView$OnItemLongClickListener +android.widget.AdapterView$OnItemSelectedListener +android.widget.AdapterView$SelectionNotifier +android.widget.ArrayAdapter +android.widget.AutoCompleteTextView +android.widget.AutoCompleteTextView$DropDownItemClickListener +android.widget.AutoCompleteTextView$MyWatcher +android.widget.AutoCompleteTextView$PassThroughClickListener +android.widget.AutoCompleteTextView$PopupDataSetObserver +android.widget.AutoCompleteTextView$PopupDataSetObserver$1 +android.widget.AutoCompleteTextView$Validator +android.widget.BaseAdapter +android.widget.Button +android.widget.CheckBox +android.widget.Checkable +android.widget.CheckedTextView +android.widget.Chronometer +android.widget.Chronometer$1 +android.widget.CompoundButton +android.widget.CompoundButton$OnCheckedChangeListener +android.widget.CursorAdapter +android.widget.CursorFilter$CursorFilterClient +android.widget.DatePicker +android.widget.DateTimeView +android.widget.DateTimeView$ReceiverInfo +android.widget.DateTimeView$ReceiverInfo$1 +android.widget.DateTimeView$ReceiverInfo$2 +android.widget.DropDownListView +android.widget.EdgeEffect +android.widget.EditText +android.widget.Editor +android.widget.Editor$1 +android.widget.Editor$2 +android.widget.Editor$Blink +android.widget.Editor$CursorAnchorInfoNotifier +android.widget.Editor$CursorController +android.widget.Editor$EditOperation +android.widget.Editor$EditOperation$1 +android.widget.Editor$HandleView +android.widget.Editor$InputContentType +android.widget.Editor$InputMethodState +android.widget.Editor$InsertionHandleView +android.widget.Editor$InsertionHandleView$2 +android.widget.Editor$InsertionPointCursorController +android.widget.Editor$PositionListener +android.widget.Editor$ProcessTextIntentActionsHandler +android.widget.Editor$SelectionModifierCursorController +android.widget.Editor$SpanController +android.widget.Editor$SuggestionHelper +android.widget.Editor$SuggestionHelper$SuggestionSpanComparator +android.widget.Editor$TextRenderNode +android.widget.Editor$TextViewPositionListener +android.widget.Editor$UndoInputFilter +android.widget.ExpandableListConnector +android.widget.FastScroller +android.widget.FastScroller$1 +android.widget.FastScroller$2 +android.widget.FastScroller$3 +android.widget.FastScroller$4 +android.widget.FastScroller$5 +android.widget.FastScroller$6 +android.widget.Filter +android.widget.Filter$FilterListener +android.widget.Filter$FilterResults +android.widget.Filter$RequestArguments +android.widget.Filter$RequestHandler +android.widget.Filter$ResultsHandler +android.widget.Filterable +android.widget.ForwardingListener +android.widget.FrameLayout +android.widget.FrameLayout$LayoutParams +android.widget.GridLayout +android.widget.GridLayout$1 +android.widget.GridLayout$2 +android.widget.GridLayout$3 +android.widget.GridLayout$4 +android.widget.GridLayout$5 +android.widget.GridLayout$6 +android.widget.GridLayout$6$1 +android.widget.GridLayout$7 +android.widget.GridLayout$8 +android.widget.GridLayout$Alignment +android.widget.GridLayout$Arc +android.widget.GridLayout$Assoc +android.widget.GridLayout$Axis +android.widget.GridLayout$Axis$1 +android.widget.GridLayout$Bounds +android.widget.GridLayout$Interval +android.widget.GridLayout$LayoutParams +android.widget.GridLayout$MutableInt +android.widget.GridLayout$PackedMap +android.widget.GridLayout$Spec +android.widget.GridView +android.widget.HeaderViewListAdapter +android.widget.HorizontalScrollView +android.widget.HorizontalScrollView$SavedState +android.widget.HorizontalScrollView$SavedState$1 +android.widget.ImageButton +android.widget.ImageView +android.widget.ImageView$ImageDrawableCallback +android.widget.ImageView$ScaleType +android.widget.LinearLayout +android.widget.LinearLayout$LayoutParams +android.widget.ListAdapter +android.widget.ListPopupWindow +android.widget.ListPopupWindow$2 +android.widget.ListPopupWindow$3 +android.widget.ListPopupWindow$ListSelectorHider +android.widget.ListPopupWindow$PopupDataSetObserver +android.widget.ListPopupWindow$PopupScrollListener +android.widget.ListPopupWindow$PopupTouchInterceptor +android.widget.ListPopupWindow$ResizePopupRunnable +android.widget.ListView +android.widget.ListView$ArrowScrollFocusResult +android.widget.ListView$FixedViewInfo +android.widget.MediaController +android.widget.MediaController$MediaPlayerControl +android.widget.MultiAutoCompleteTextView +android.widget.MultiAutoCompleteTextView$Tokenizer +android.widget.NumberPicker +android.widget.NumberPicker$Formatter +android.widget.NumberPicker$OnValueChangeListener +android.widget.OverScroller +android.widget.OverScroller$SplineOverScroller +android.widget.PopupMenu +android.widget.PopupMenu$1 +android.widget.PopupMenu$2 +android.widget.PopupMenu$3 +android.widget.PopupMenu$OnMenuItemClickListener +android.widget.PopupWindow +android.widget.PopupWindow$1 +android.widget.PopupWindow$2 +android.widget.PopupWindow$OnDismissListener +android.widget.PopupWindow$PopupBackgroundView +android.widget.PopupWindow$PopupDecorView +android.widget.PopupWindow$PopupDecorView$1 +android.widget.ProgressBar +android.widget.ProgressBar$1 +android.widget.ProgressBar$AccessibilityEventSender +android.widget.ProgressBar$ProgressTintInfo +android.widget.ProgressBar$RefreshData +android.widget.ProgressBar$RefreshProgressRunnable +android.widget.ProgressBar$SavedState +android.widget.ProgressBar$SavedState$1 +android.widget.QuickContactBadge +android.widget.QuickContactBadge$QueryHandler +android.widget.RadioButton +android.widget.RadioGroup +android.widget.RadioGroup$CheckedStateTracker +android.widget.RadioGroup$LayoutParams +android.widget.RadioGroup$OnCheckedChangeListener +android.widget.RadioGroup$PassThroughHierarchyChangeListener +android.widget.RatingBar +android.widget.RelativeLayout +android.widget.RelativeLayout$DependencyGraph +android.widget.RelativeLayout$DependencyGraph$Node +android.widget.RelativeLayout$LayoutParams +android.widget.RelativeLayout$TopToBottomLeftToRightComparator +android.widget.RemoteViews +android.widget.RemoteViews$1 +android.widget.RemoteViews$2 +android.widget.RemoteViews$3 +android.widget.RemoteViews$Action +android.widget.RemoteViews$ActionException +android.widget.RemoteViews$AsyncApplyTask +android.widget.RemoteViews$BitmapCache +android.widget.RemoteViews$BitmapReflectionAction +android.widget.RemoteViews$LayoutParamAction +android.widget.RemoteViews$MemoryUsageCounter +android.widget.RemoteViews$MutablePair +android.widget.RemoteViews$OnClickHandler +android.widget.RemoteViews$OnViewAppliedListener +android.widget.RemoteViews$ReflectionAction +android.widget.RemoteViews$RemoteView +android.widget.RemoteViews$RemoteViewsContextWrapper +android.widget.RemoteViews$RunnableAction +android.widget.RemoteViews$RuntimeAction +android.widget.RemoteViews$SetDrawableParameters +android.widget.RemoteViews$SetOnClickPendingIntent +android.widget.RemoteViews$SetOnClickPendingIntent$1 +android.widget.RemoteViews$ViewGroupAction +android.widget.RemoteViews$ViewGroupAction$1 +android.widget.RemoteViews$ViewGroupAction$2 +android.widget.RemoteViews$ViewPaddingAction +android.widget.RemoteViews$ViewTree +android.widget.RemoteViewsAdapter$RemoteAdapterConnectionCallback +android.widget.ResourceCursorAdapter +android.widget.RtlSpacingHelper +android.widget.ScrollBarDrawable +android.widget.ScrollView +android.widget.ScrollView$SavedState +android.widget.ScrollView$SavedState$1 +android.widget.Scroller +android.widget.Scroller$ViscousFluidInterpolator +android.widget.SearchView$OnCloseListener +android.widget.SectionIndexer +android.widget.SeekBar +android.widget.SeekBar$OnSeekBarChangeListener +android.widget.SelectionActionModeHelper +android.widget.SelectionActionModeHelper$SelectionMetricsLogger +android.widget.SelectionActionModeHelper$SelectionTracker +android.widget.SelectionActionModeHelper$SelectionTracker$LogAbandonRunnable +android.widget.SelectionActionModeHelper$TextClassificationHelper +android.widget.SimpleCursorAdapter +android.widget.Space +android.widget.SpellChecker +android.widget.SpellChecker$SpellParser +android.widget.Spinner +android.widget.Spinner$1 +android.widget.Spinner$DialogPopup +android.widget.Spinner$DropDownAdapter +android.widget.Spinner$DropdownPopup +android.widget.Spinner$DropdownPopup$1 +android.widget.Spinner$SpinnerPopup +android.widget.SpinnerAdapter +android.widget.Switch +android.widget.Switch$1 +android.widget.TabHost +android.widget.TabHost$1 +android.widget.TabHost$2 +android.widget.TabHost$ContentStrategy +android.widget.TabHost$FactoryContentStrategy +android.widget.TabHost$IndicatorStrategy +android.widget.TabHost$OnTabChangeListener +android.widget.TabHost$TabContentFactory +android.widget.TabHost$TabSpec +android.widget.TabHost$ViewIndicatorStrategy +android.widget.TabWidget +android.widget.TabWidget$OnTabSelectionChanged +android.widget.TabWidget$TabClickListener +android.widget.TableLayout +android.widget.TextClock +android.widget.TextClock$1 +android.widget.TextClock$2 +android.widget.TextClock$FormatChangeObserver +android.widget.TextSwitcher +android.widget.TextView +android.widget.TextView$2 +android.widget.TextView$3 +android.widget.TextView$BufferType +android.widget.TextView$ChangeWatcher +android.widget.TextView$CharWrapper +android.widget.TextView$Drawables +android.widget.TextView$Marquee +android.widget.TextView$Marquee$1 +android.widget.TextView$Marquee$2 +android.widget.TextView$Marquee$3 +android.widget.TextView$OnEditorActionListener +android.widget.TextView$SavedState +android.widget.TextView$SavedState$1 +android.widget.ThemedSpinnerAdapter +android.widget.TimePicker +android.widget.TimePicker$OnTimeChangedListener +android.widget.Toast +android.widget.Toast$TN +android.widget.Toast$TN$1 +android.widget.ToggleButton +android.widget.Toolbar +android.widget.Toolbar$1 +android.widget.Toolbar$2 +android.widget.Toolbar$ExpandedActionViewMenuPresenter +android.widget.Toolbar$LayoutParams +android.widget.Toolbar$OnMenuItemClickListener +android.widget.Toolbar$SavedState$1 +android.widget.VideoView +android.widget.ViewAnimator +android.widget.ViewFlipper +android.widget.ViewFlipper$1 +android.widget.ViewFlipper$2 +android.widget.ViewSwitcher +android.widget.WrapperListAdapter +com.android.framework.protobuf.nano.CodedInputByteBufferNano +com.android.framework.protobuf.nano.CodedOutputByteBufferNano +com.android.framework.protobuf.nano.InternalNano +com.android.framework.protobuf.nano.InvalidProtocolBufferNanoException +com.android.framework.protobuf.nano.MessageNano +com.android.framework.protobuf.nano.WireFormatNano +com.android.i18n.phonenumbers.AlternateFormatsCountryCodeSet +com.android.i18n.phonenumbers.AsYouTypeFormatter +com.android.i18n.phonenumbers.CountryCodeToRegionCodeMap +com.android.i18n.phonenumbers.MetadataLoader +com.android.i18n.phonenumbers.MetadataManager +com.android.i18n.phonenumbers.MetadataManager$1 +com.android.i18n.phonenumbers.MetadataSource +com.android.i18n.phonenumbers.MultiFileMetadataSourceImpl +com.android.i18n.phonenumbers.NumberParseException +com.android.i18n.phonenumbers.NumberParseException$ErrorType +com.android.i18n.phonenumbers.PhoneNumberMatcher +com.android.i18n.phonenumbers.PhoneNumberMatcher$State +com.android.i18n.phonenumbers.PhoneNumberUtil +com.android.i18n.phonenumbers.PhoneNumberUtil$1 +com.android.i18n.phonenumbers.PhoneNumberUtil$Leniency +com.android.i18n.phonenumbers.PhoneNumberUtil$Leniency$1 +com.android.i18n.phonenumbers.PhoneNumberUtil$Leniency$2 +com.android.i18n.phonenumbers.PhoneNumberUtil$Leniency$3 +com.android.i18n.phonenumbers.PhoneNumberUtil$Leniency$4 +com.android.i18n.phonenumbers.PhoneNumberUtil$PhoneNumberFormat +com.android.i18n.phonenumbers.PhoneNumberUtil$PhoneNumberType +com.android.i18n.phonenumbers.PhoneNumberUtil$ValidationResult +com.android.i18n.phonenumbers.Phonemetadata$NumberFormat +com.android.i18n.phonenumbers.Phonemetadata$PhoneMetadata +com.android.i18n.phonenumbers.Phonemetadata$PhoneMetadataCollection +com.android.i18n.phonenumbers.Phonemetadata$PhoneNumberDesc +com.android.i18n.phonenumbers.Phonenumber$PhoneNumber +com.android.i18n.phonenumbers.Phonenumber$PhoneNumber$CountryCodeSource +com.android.i18n.phonenumbers.RegexCache +com.android.i18n.phonenumbers.RegexCache$LRUCache +com.android.i18n.phonenumbers.RegexCache$LRUCache$1 +com.android.i18n.phonenumbers.ShortNumbersRegionCodeSet +com.android.i18n.phonenumbers.geocoding.PhoneNumberOfflineGeocoder +com.android.i18n.phonenumbers.prefixmapper.MappingFileProvider +com.android.i18n.phonenumbers.prefixmapper.PrefixFileReader +com.android.ims.-$Lambda$AvFHcs3Z6Dq6dkOugMW9Kc7Qzng$4 +com.android.ims.ImsCall$Listener +com.android.ims.ImsCallForwardInfo +com.android.ims.ImsCallProfile +com.android.ims.ImsConfig +com.android.ims.ImsConfigListener +com.android.ims.ImsConfigListener$Stub +com.android.ims.ImsConnectionStateListener +com.android.ims.ImsEcbm +com.android.ims.ImsEcbm$ImsEcbmListenerProxy +com.android.ims.ImsEcbmStateListener +com.android.ims.ImsException +com.android.ims.ImsExternalCallStateListener +com.android.ims.ImsManager +com.android.ims.ImsManager$1 +com.android.ims.ImsManager$ImsRegistrationListenerProxy +com.android.ims.ImsManager$ImsServiceDeathRecipient +com.android.ims.ImsReasonInfo +com.android.ims.ImsReasonInfo$1 +com.android.ims.ImsSsInfo +com.android.ims.internal.IImsCallSession +com.android.ims.internal.IImsCallSessionListener +com.android.ims.internal.IImsConfig +com.android.ims.internal.IImsConfig$Stub +com.android.ims.internal.IImsEcbm +com.android.ims.internal.IImsEcbm$Stub +com.android.ims.internal.IImsEcbmListener +com.android.ims.internal.IImsEcbmListener$Stub +com.android.ims.internal.IImsMultiEndpoint +com.android.ims.internal.IImsRegistrationListener +com.android.ims.internal.IImsRegistrationListener$Stub +com.android.ims.internal.IImsService +com.android.ims.internal.IImsService$Stub +com.android.ims.internal.IImsServiceController +com.android.ims.internal.IImsServiceFeatureListener +com.android.ims.internal.IImsUt +com.android.ims.internal.IImsUt$Stub +com.android.ims.internal.IImsUtListener +com.android.ims.internal.IImsUtListener$Stub +com.android.internal.R$styleable +com.android.internal.alsa.AlsaCardsParser +com.android.internal.alsa.AlsaCardsParser$AlsaCardRecord +com.android.internal.alsa.AlsaDevicesParser +com.android.internal.alsa.LineTokenizer +com.android.internal.app.AlertController +com.android.internal.app.AlertController$1 +com.android.internal.app.AlertController$AlertParams +com.android.internal.app.AlertController$AlertParams$1 +com.android.internal.app.AlertController$AlertParams$4 +com.android.internal.app.AlertController$ButtonHandler +com.android.internal.app.AlertController$RecycleListView +com.android.internal.app.AssistUtils +com.android.internal.app.IAppOpsCallback +com.android.internal.app.IAppOpsCallback$Stub +com.android.internal.app.IAppOpsCallback$Stub$Proxy +com.android.internal.app.IAppOpsService +com.android.internal.app.IAppOpsService$Stub +com.android.internal.app.IAppOpsService$Stub$Proxy +com.android.internal.app.IAssistScreenshotReceiver +com.android.internal.app.IBatteryStats +com.android.internal.app.IBatteryStats$Stub +com.android.internal.app.IBatteryStats$Stub$Proxy +com.android.internal.app.IMediaContainerService +com.android.internal.app.IMediaContainerService$Stub +com.android.internal.app.IMediaContainerService$Stub$Proxy +com.android.internal.app.ISoundTriggerService +com.android.internal.app.ISoundTriggerService$Stub +com.android.internal.app.IVoiceInteractionManagerService +com.android.internal.app.IVoiceInteractionManagerService$Stub +com.android.internal.app.IVoiceInteractionManagerService$Stub$Proxy +com.android.internal.app.IVoiceInteractionSessionListener +com.android.internal.app.IVoiceInteractionSessionListener$Stub +com.android.internal.app.IVoiceInteractionSessionListener$Stub$Proxy +com.android.internal.app.IVoiceInteractionSessionShowCallback +com.android.internal.app.IVoiceInteractionSessionShowCallback$Stub +com.android.internal.app.IVoiceInteractor +com.android.internal.app.IVoiceInteractor$Stub +com.android.internal.app.NightDisplayController +com.android.internal.app.NightDisplayController$1 +com.android.internal.app.NightDisplayController$Callback +com.android.internal.app.ProcessMap +com.android.internal.app.ResolverActivity +com.android.internal.app.ToolbarActionBar +com.android.internal.app.ToolbarActionBar$1 +com.android.internal.app.ToolbarActionBar$2 +com.android.internal.app.ToolbarActionBar$ActionMenuPresenterCallback +com.android.internal.app.ToolbarActionBar$MenuBuilderCallback +com.android.internal.app.ToolbarActionBar$ToolbarCallbackWrapper +com.android.internal.app.WindowDecorActionBar +com.android.internal.app.WindowDecorActionBar$1 +com.android.internal.app.WindowDecorActionBar$2 +com.android.internal.app.WindowDecorActionBar$3 +com.android.internal.app.WindowDecorActionBar$ActionModeImpl +com.android.internal.app.procstats.DurationsTable +com.android.internal.app.procstats.IProcessStats +com.android.internal.app.procstats.IProcessStats$Stub +com.android.internal.app.procstats.ProcessState +com.android.internal.app.procstats.ProcessState$1 +com.android.internal.app.procstats.ProcessStats +com.android.internal.app.procstats.ProcessStats$1 +com.android.internal.app.procstats.ProcessStats$PackageState +com.android.internal.app.procstats.ProcessStats$ProcessStateHolder +com.android.internal.app.procstats.PssTable +com.android.internal.app.procstats.ServiceState +com.android.internal.app.procstats.SparseMappingTable +com.android.internal.app.procstats.SparseMappingTable$Table +com.android.internal.app.procstats.SysMemUsageTable +com.android.internal.appwidget.IAppWidgetHost +com.android.internal.appwidget.IAppWidgetHost$Stub +com.android.internal.appwidget.IAppWidgetHost$Stub$Proxy +com.android.internal.appwidget.IAppWidgetService +com.android.internal.appwidget.IAppWidgetService$Stub +com.android.internal.appwidget.IAppWidgetService$Stub$Proxy +com.android.internal.backup.IBackupTransport +com.android.internal.backup.IBackupTransport$Stub +com.android.internal.backup.IBackupTransport$Stub$Proxy +com.android.internal.backup.LocalTransport +com.android.internal.backup.LocalTransportService +com.android.internal.content.FileSystemProvider +com.android.internal.content.NativeLibraryHelper +com.android.internal.content.NativeLibraryHelper$Handle +com.android.internal.content.PackageHelper +com.android.internal.content.PackageHelper$1 +com.android.internal.content.PackageHelper$TestableInterface +com.android.internal.content.PackageMonitor +com.android.internal.content.ReferrerIntent +com.android.internal.content.ReferrerIntent$1 +com.android.internal.graphics.drawable.AnimationScaleListDrawable +com.android.internal.graphics.drawable.AnimationScaleListDrawable$AnimationScaleListState +com.android.internal.hardware.AmbientDisplayConfiguration +com.android.internal.inputmethod.IInputContentUriToken +com.android.internal.inputmethod.InputMethodSubtypeHandle +com.android.internal.inputmethod.InputMethodSubtypeSwitchingController +com.android.internal.inputmethod.InputMethodSubtypeSwitchingController$ControllerImpl +com.android.internal.inputmethod.InputMethodSubtypeSwitchingController$DynamicRotationList +com.android.internal.inputmethod.InputMethodSubtypeSwitchingController$ImeSubtypeListItem +com.android.internal.inputmethod.InputMethodSubtypeSwitchingController$InputMethodAndSubtypeList +com.android.internal.inputmethod.InputMethodSubtypeSwitchingController$InputMethodAndSubtypeList$1 +com.android.internal.inputmethod.InputMethodSubtypeSwitchingController$StaticRotationList +com.android.internal.inputmethod.InputMethodUtils +com.android.internal.inputmethod.InputMethodUtils$1 +com.android.internal.inputmethod.InputMethodUtils$InputMethodListBuilder +com.android.internal.inputmethod.InputMethodUtils$InputMethodSettings +com.android.internal.inputmethod.LocaleUtils +com.android.internal.inputmethod.LocaleUtils$LocaleExtractor +com.android.internal.inputmethod.LocaleUtils$ScoreEntry +com.android.internal.location.GpsNetInitiatedHandler +com.android.internal.location.GpsNetInitiatedHandler$1 +com.android.internal.location.GpsNetInitiatedHandler$2 +com.android.internal.location.ILocationProvider +com.android.internal.location.ILocationProvider$Stub +com.android.internal.location.ILocationProvider$Stub$Proxy +com.android.internal.location.ProviderProperties +com.android.internal.location.ProviderProperties$1 +com.android.internal.location.ProviderRequest +com.android.internal.location.ProviderRequest$1 +com.android.internal.logging.AndroidConfig +com.android.internal.logging.AndroidHandler +com.android.internal.logging.AndroidHandler$1 +com.android.internal.logging.EventLogTags +com.android.internal.logging.MetricsLogger +com.android.internal.net.LegacyVpnInfo +com.android.internal.net.NetworkStatsFactory +com.android.internal.net.VpnConfig +com.android.internal.net.VpnInfo +com.android.internal.net.VpnProfile +com.android.internal.notification.SystemNotificationChannels +com.android.internal.os.AndroidPrintStream +com.android.internal.os.AppFuseMount +com.android.internal.os.AtomicFile +com.android.internal.os.BackgroundThread +com.android.internal.os.BatteryStatsHelper +com.android.internal.os.BatteryStatsImpl +com.android.internal.os.BatteryStatsImpl$1 +com.android.internal.os.BatteryStatsImpl$6 +com.android.internal.os.BatteryStatsImpl$BatchTimer +com.android.internal.os.BatteryStatsImpl$BatteryCallback +com.android.internal.os.BatteryStatsImpl$Clocks +com.android.internal.os.BatteryStatsImpl$ControllerActivityCounterImpl +com.android.internal.os.BatteryStatsImpl$Counter +com.android.internal.os.BatteryStatsImpl$DualTimer +com.android.internal.os.BatteryStatsImpl$DurationTimer +com.android.internal.os.BatteryStatsImpl$ExternalStatsSync +com.android.internal.os.BatteryStatsImpl$LongSamplingCounter +com.android.internal.os.BatteryStatsImpl$LongSamplingCounterArray +com.android.internal.os.BatteryStatsImpl$MyHandler +com.android.internal.os.BatteryStatsImpl$OverflowArrayMap +com.android.internal.os.BatteryStatsImpl$PlatformIdleStateCallback +com.android.internal.os.BatteryStatsImpl$SamplingTimer +com.android.internal.os.BatteryStatsImpl$StopwatchTimer +com.android.internal.os.BatteryStatsImpl$SystemClocks +com.android.internal.os.BatteryStatsImpl$TimeBase +com.android.internal.os.BatteryStatsImpl$TimeBaseObs +com.android.internal.os.BatteryStatsImpl$Timer +com.android.internal.os.BatteryStatsImpl$Uid +com.android.internal.os.BatteryStatsImpl$Uid$1 +com.android.internal.os.BatteryStatsImpl$Uid$2 +com.android.internal.os.BatteryStatsImpl$Uid$3 +com.android.internal.os.BatteryStatsImpl$Uid$Pkg +com.android.internal.os.BatteryStatsImpl$Uid$Pkg$Serv +com.android.internal.os.BatteryStatsImpl$Uid$Proc +com.android.internal.os.BatteryStatsImpl$Uid$Sensor +com.android.internal.os.BatteryStatsImpl$Uid$Wakelock +com.android.internal.os.BinderInternal +com.android.internal.os.BinderInternal$GcWatcher +com.android.internal.os.ClassLoaderFactory +com.android.internal.os.FuseAppLoop +com.android.internal.os.FuseAppLoop$1 +com.android.internal.os.FuseUnavailableMountException +com.android.internal.os.HandlerCaller +com.android.internal.os.HandlerCaller$Callback +com.android.internal.os.HandlerCaller$MyHandler +com.android.internal.os.IDropBoxManagerService +com.android.internal.os.IDropBoxManagerService$Stub +com.android.internal.os.IDropBoxManagerService$Stub$Proxy +com.android.internal.os.IResultReceiver +com.android.internal.os.IResultReceiver$Stub +com.android.internal.os.IResultReceiver$Stub$Proxy +com.android.internal.os.KernelCpuSpeedReader +com.android.internal.os.KernelMemoryBandwidthStats +com.android.internal.os.KernelUidCpuFreqTimeReader +com.android.internal.os.KernelUidCpuTimeReader +com.android.internal.os.KernelWakelockReader +com.android.internal.os.KernelWakelockStats +com.android.internal.os.KernelWakelockStats$Entry +com.android.internal.os.LoggingPrintStream +com.android.internal.os.LoggingPrintStream$1 +com.android.internal.os.PathClassLoaderFactory +com.android.internal.os.PowerProfile +com.android.internal.os.PowerProfile$CpuClusterKey +com.android.internal.os.ProcessCpuTracker +com.android.internal.os.ProcessCpuTracker$1 +com.android.internal.os.ProcessCpuTracker$FilterStats +com.android.internal.os.ProcessCpuTracker$Stats +com.android.internal.os.RoSystemProperties +com.android.internal.os.RuntimeInit +com.android.internal.os.RuntimeInit$1 +com.android.internal.os.RuntimeInit$Arguments +com.android.internal.os.RuntimeInit$KillApplicationHandler +com.android.internal.os.RuntimeInit$LoggingHandler +com.android.internal.os.RuntimeInit$MethodAndArgsCaller +com.android.internal.os.SamplingProfilerIntegration +com.android.internal.os.SomeArgs +com.android.internal.os.Zygote +com.android.internal.os.Zygote$MethodAndArgsCaller +com.android.internal.os.ZygoteConnection +com.android.internal.os.ZygoteConnection$Arguments +com.android.internal.os.ZygoteInit +com.android.internal.os.ZygoteSecurityException +com.android.internal.os.ZygoteServer +com.android.internal.policy.DecorContext +com.android.internal.policy.DecorView +com.android.internal.policy.DecorView$1 +com.android.internal.policy.DecorView$ActionModeCallback2Wrapper +com.android.internal.policy.DecorView$ColorViewAttributes +com.android.internal.policy.DecorView$ColorViewState +com.android.internal.policy.DividerSnapAlgorithm +com.android.internal.policy.DividerSnapAlgorithm$SnapTarget +com.android.internal.policy.DockedDividerUtils +com.android.internal.policy.IKeyguardDismissCallback +com.android.internal.policy.IKeyguardDismissCallback$Stub +com.android.internal.policy.IKeyguardDrawnCallback +com.android.internal.policy.IKeyguardDrawnCallback$Stub +com.android.internal.policy.IKeyguardDrawnCallback$Stub$Proxy +com.android.internal.policy.IKeyguardExitCallback +com.android.internal.policy.IKeyguardService +com.android.internal.policy.IKeyguardService$Stub +com.android.internal.policy.IKeyguardService$Stub$Proxy +com.android.internal.policy.IKeyguardStateCallback +com.android.internal.policy.IKeyguardStateCallback$Stub +com.android.internal.policy.IKeyguardStateCallback$Stub$Proxy +com.android.internal.policy.IShortcutService +com.android.internal.policy.IShortcutService$Stub +com.android.internal.policy.IShortcutService$Stub$Proxy +com.android.internal.policy.PhoneFallbackEventHandler +com.android.internal.policy.PhoneLayoutInflater +com.android.internal.policy.PhoneWindow +com.android.internal.policy.PhoneWindow$1 +com.android.internal.policy.PhoneWindow$ActionMenuPresenterCallback +com.android.internal.policy.PhoneWindow$PanelFeatureState +com.android.internal.policy.PhoneWindow$PanelFeatureState$SavedState$1 +com.android.internal.policy.PhoneWindow$PhoneWindowMenuCallback +com.android.internal.policy.PhoneWindow$RotationWatcher +com.android.internal.policy.PhoneWindow$RotationWatcher$1 +com.android.internal.policy.PipSnapAlgorithm +com.android.internal.statusbar.IStatusBar +com.android.internal.statusbar.IStatusBar$Stub +com.android.internal.statusbar.IStatusBar$Stub$Proxy +com.android.internal.statusbar.IStatusBarService +com.android.internal.statusbar.IStatusBarService$Stub +com.android.internal.statusbar.IStatusBarService$Stub$Proxy +com.android.internal.statusbar.NotificationVisibility +com.android.internal.statusbar.NotificationVisibility$1 +com.android.internal.statusbar.StatusBarIcon +com.android.internal.statusbar.StatusBarIcon$1 +com.android.internal.telecom.IConnectionService +com.android.internal.telecom.IConnectionService$Stub +com.android.internal.telecom.IConnectionService$Stub$Proxy +com.android.internal.telecom.IConnectionServiceAdapter +com.android.internal.telecom.IConnectionServiceAdapter$Stub +com.android.internal.telecom.IConnectionServiceAdapter$Stub$Proxy +com.android.internal.telecom.IInCallAdapter +com.android.internal.telecom.IInCallAdapter$Stub +com.android.internal.telecom.IInCallService +com.android.internal.telecom.IInCallService$Stub +com.android.internal.telecom.IInCallService$Stub$Proxy +com.android.internal.telecom.ITelecomService +com.android.internal.telecom.ITelecomService$Stub +com.android.internal.telecom.ITelecomService$Stub$Proxy +com.android.internal.telecom.IVideoProvider +com.android.internal.telecom.IVideoProvider$Stub +com.android.internal.telecom.RemoteServiceCallback +com.android.internal.telecom.RemoteServiceCallback$Stub +com.android.internal.telecom.RemoteServiceCallback$Stub$Proxy +com.android.internal.telephony.AppSmsManager +com.android.internal.telephony.BaseCommands +com.android.internal.telephony.Call +com.android.internal.telephony.Call$SrvccState +com.android.internal.telephony.Call$State +com.android.internal.telephony.CallManager +com.android.internal.telephony.CallManager$CallManagerHandler +com.android.internal.telephony.CallStateException +com.android.internal.telephony.CallTracker +com.android.internal.telephony.CallerInfo +com.android.internal.telephony.CallerInfoAsyncQuery +com.android.internal.telephony.CallerInfoAsyncQuery$CallerInfoAsyncQueryHandler +com.android.internal.telephony.CallerInfoAsyncQuery$CallerInfoAsyncQueryHandler$CallerInfoWorkerHandler +com.android.internal.telephony.CallerInfoAsyncQuery$CookieWrapper +com.android.internal.telephony.CallerInfoAsyncQuery$OnQueryCompleteListener +com.android.internal.telephony.CarrierActionAgent +com.android.internal.telephony.CarrierActionAgent$1 +com.android.internal.telephony.CarrierActionAgent$SettingsObserver +com.android.internal.telephony.CarrierAppUtils +com.android.internal.telephony.CarrierServiceBindHelper +com.android.internal.telephony.CarrierServiceBindHelper$1 +com.android.internal.telephony.CarrierServiceBindHelper$2 +com.android.internal.telephony.CarrierServiceBindHelper$AppBinding +com.android.internal.telephony.CarrierServiceBindHelper$CarrierServicePackageMonitor +com.android.internal.telephony.CarrierServiceStateTracker +com.android.internal.telephony.CarrierServiceStateTracker$1 +com.android.internal.telephony.CarrierSignalAgent +com.android.internal.telephony.CarrierSignalAgent$1 +com.android.internal.telephony.CellBroadcastHandler +com.android.internal.telephony.CellNetworkScanResult +com.android.internal.telephony.ClientWakelockAccountant +com.android.internal.telephony.ClientWakelockTracker +com.android.internal.telephony.CommandException +com.android.internal.telephony.CommandException$Error +com.android.internal.telephony.CommandsInterface +com.android.internal.telephony.CommandsInterface$RadioState +com.android.internal.telephony.Connection +com.android.internal.telephony.DctConstants$Activity +com.android.internal.telephony.DctConstants$State +com.android.internal.telephony.DebugService +com.android.internal.telephony.DefaultPhoneNotifier +com.android.internal.telephony.DeviceStateMonitor +com.android.internal.telephony.DeviceStateMonitor$1 +com.android.internal.telephony.DeviceStateMonitor$2 +com.android.internal.telephony.EncodeException +com.android.internal.telephony.GsmAlphabet +com.android.internal.telephony.GsmAlphabet$TextEncodingDetails +com.android.internal.telephony.GsmCdmaCall +com.android.internal.telephony.GsmCdmaCallTracker +com.android.internal.telephony.GsmCdmaCallTracker$1 +com.android.internal.telephony.GsmCdmaConnection +com.android.internal.telephony.GsmCdmaPhone +com.android.internal.telephony.GsmCdmaPhone$1 +com.android.internal.telephony.GsmCdmaPhone$2 +com.android.internal.telephony.HardwareConfig +com.android.internal.telephony.ICarrierConfigLoader +com.android.internal.telephony.ICarrierConfigLoader$Stub +com.android.internal.telephony.ICarrierConfigLoader$Stub$Proxy +com.android.internal.telephony.IIccPhoneBook +com.android.internal.telephony.IIccPhoneBook$Stub +com.android.internal.telephony.IMms +com.android.internal.telephony.IMms$Stub +com.android.internal.telephony.IOnSubscriptionsChangedListener +com.android.internal.telephony.IOnSubscriptionsChangedListener$Stub +com.android.internal.telephony.IOnSubscriptionsChangedListener$Stub$Proxy +com.android.internal.telephony.IPhoneStateListener +com.android.internal.telephony.IPhoneStateListener$Stub +com.android.internal.telephony.IPhoneStateListener$Stub$Proxy +com.android.internal.telephony.IPhoneSubInfo +com.android.internal.telephony.IPhoneSubInfo$Stub +com.android.internal.telephony.IPhoneSubInfo$Stub$Proxy +com.android.internal.telephony.ISms +com.android.internal.telephony.ISms$Stub +com.android.internal.telephony.ISms$Stub$Proxy +com.android.internal.telephony.ISub +com.android.internal.telephony.ISub$Stub +com.android.internal.telephony.ISub$Stub$Proxy +com.android.internal.telephony.ITelephony +com.android.internal.telephony.ITelephony$Stub +com.android.internal.telephony.ITelephony$Stub$Proxy +com.android.internal.telephony.ITelephonyRegistry +com.android.internal.telephony.ITelephonyRegistry$Stub +com.android.internal.telephony.ITelephonyRegistry$Stub$Proxy +com.android.internal.telephony.IWapPushManager +com.android.internal.telephony.IccCard +com.android.internal.telephony.IccCardConstants$State +com.android.internal.telephony.IccPhoneBookInterfaceManager +com.android.internal.telephony.IccPhoneBookInterfaceManager$1 +com.android.internal.telephony.IccProvider +com.android.internal.telephony.IccSmsInterfaceManager +com.android.internal.telephony.IccSmsInterfaceManager$1 +com.android.internal.telephony.IccSmsInterfaceManager$CdmaBroadcastRangeManager +com.android.internal.telephony.IccSmsInterfaceManager$CellBroadcastRangeManager +com.android.internal.telephony.ImsSMSDispatcher +com.android.internal.telephony.InboundSmsHandler +com.android.internal.telephony.InboundSmsHandler$1 +com.android.internal.telephony.InboundSmsHandler$DefaultState +com.android.internal.telephony.InboundSmsHandler$DeliveringState +com.android.internal.telephony.InboundSmsHandler$IdleState +com.android.internal.telephony.InboundSmsHandler$NewMessageNotificationActionReceiver +com.android.internal.telephony.InboundSmsHandler$StartupState +com.android.internal.telephony.InboundSmsHandler$WaitingState +com.android.internal.telephony.IntRangeManager +com.android.internal.telephony.OemHookIndication +com.android.internal.telephony.OemHookResponse +com.android.internal.telephony.OperatorInfo +com.android.internal.telephony.Phone +com.android.internal.telephony.Phone$1 +com.android.internal.telephony.PhoneConstantConversions +com.android.internal.telephony.PhoneConstants$DataState +com.android.internal.telephony.PhoneConstants$State +com.android.internal.telephony.PhoneFactory +com.android.internal.telephony.PhoneInternalInterface +com.android.internal.telephony.PhoneInternalInterface$DataActivityState +com.android.internal.telephony.PhoneNotifier +com.android.internal.telephony.PhoneSubInfoController +com.android.internal.telephony.PhoneSwitcher +com.android.internal.telephony.PhoneSwitcher$1 +com.android.internal.telephony.PhoneSwitcher$2 +com.android.internal.telephony.PhoneSwitcher$PhoneState +com.android.internal.telephony.PhoneSwitcher$PhoneSwitcherNetworkRequestListener +com.android.internal.telephony.ProxyController +com.android.internal.telephony.ProxyController$1 +com.android.internal.telephony.RIL +com.android.internal.telephony.RIL$RadioProxyDeathRecipient +com.android.internal.telephony.RIL$RilHandler +com.android.internal.telephony.RILConstants +com.android.internal.telephony.RILRequest +com.android.internal.telephony.RadioCapability +com.android.internal.telephony.RadioIndication +com.android.internal.telephony.RadioResponse +com.android.internal.telephony.RatRatcheter +com.android.internal.telephony.RatRatcheter$1 +com.android.internal.telephony.RestrictedState +com.android.internal.telephony.RetryManager +com.android.internal.telephony.RilWakelockInfo +com.android.internal.telephony.SMSDispatcher +com.android.internal.telephony.SMSDispatcher$SettingsObserver +com.android.internal.telephony.ServiceStateTracker +com.android.internal.telephony.ServiceStateTracker$1 +com.android.internal.telephony.ServiceStateTracker$2 +com.android.internal.telephony.ServiceStateTracker$3 +com.android.internal.telephony.ServiceStateTracker$CellInfoResult +com.android.internal.telephony.ServiceStateTracker$SstSubscriptionsChangedListener +com.android.internal.telephony.SimActivationTracker +com.android.internal.telephony.SimActivationTracker$1 +com.android.internal.telephony.SmsApplication +com.android.internal.telephony.SmsApplication$SmsApplicationData +com.android.internal.telephony.SmsApplication$SmsPackageMonitor +com.android.internal.telephony.SmsBroadcastUndelivered +com.android.internal.telephony.SmsBroadcastUndelivered$1 +com.android.internal.telephony.SmsBroadcastUndelivered$ScanRawTableThread +com.android.internal.telephony.SmsMessageBase +com.android.internal.telephony.SmsStorageMonitor +com.android.internal.telephony.SmsStorageMonitor$1 +com.android.internal.telephony.SmsUsageMonitor +com.android.internal.telephony.SmsUsageMonitor$SettingsObserver +com.android.internal.telephony.SmsUsageMonitor$SettingsObserverHandler +com.android.internal.telephony.SubscriptionController +com.android.internal.telephony.SubscriptionController$ScLocalLog +com.android.internal.telephony.SubscriptionInfoUpdater +com.android.internal.telephony.SubscriptionInfoUpdater$1 +com.android.internal.telephony.SubscriptionInfoUpdater$2 +com.android.internal.telephony.SubscriptionMonitor +com.android.internal.telephony.SubscriptionMonitor$1 +com.android.internal.telephony.SubscriptionMonitor$2 +com.android.internal.telephony.TelephonyCapabilities +com.android.internal.telephony.TelephonyComponentFactory +com.android.internal.telephony.TelephonyDevController +com.android.internal.telephony.TelephonyTester +com.android.internal.telephony.TelephonyTester$1 +com.android.internal.telephony.UiccPhoneBookController +com.android.internal.telephony.UiccSmsController +com.android.internal.telephony.WakeLockStateMachine +com.android.internal.telephony.WakeLockStateMachine$1 +com.android.internal.telephony.WakeLockStateMachine$DefaultState +com.android.internal.telephony.WakeLockStateMachine$IdleState +com.android.internal.telephony.WakeLockStateMachine$WaitingState +com.android.internal.telephony.WapPushOverSms +com.android.internal.telephony.WapPushOverSms$1 +com.android.internal.telephony.WapPushOverSms$BindServiceThread +com.android.internal.telephony.cat.AppInterface +com.android.internal.telephony.cat.CatLog +com.android.internal.telephony.cat.CatService +com.android.internal.telephony.cdma.CdmaInboundSmsHandler +com.android.internal.telephony.cdma.CdmaSMSDispatcher +com.android.internal.telephony.cdma.CdmaServiceCategoryProgramHandler +com.android.internal.telephony.cdma.CdmaServiceCategoryProgramHandler$1 +com.android.internal.telephony.cdma.CdmaSubscriptionSourceManager +com.android.internal.telephony.cdma.EriInfo +com.android.internal.telephony.cdma.EriManager +com.android.internal.telephony.cdma.EriManager$EriFile +com.android.internal.telephony.dataconnection.ApnContext +com.android.internal.telephony.dataconnection.DataConnection +com.android.internal.telephony.dataconnection.DataEnabledSettings +com.android.internal.telephony.dataconnection.DcController +com.android.internal.telephony.dataconnection.DcController$1 +com.android.internal.telephony.dataconnection.DcController$DccDefaultState +com.android.internal.telephony.dataconnection.DcFailBringUp +com.android.internal.telephony.dataconnection.DcFailCause +com.android.internal.telephony.dataconnection.DcRequest +com.android.internal.telephony.dataconnection.DcTesterDeactivateAll +com.android.internal.telephony.dataconnection.DcTesterDeactivateAll$1 +com.android.internal.telephony.dataconnection.DcTesterFailBringUpAll +com.android.internal.telephony.dataconnection.DcTesterFailBringUpAll$1 +com.android.internal.telephony.dataconnection.DcTracker +com.android.internal.telephony.dataconnection.DcTracker$1 +com.android.internal.telephony.dataconnection.DcTracker$2 +com.android.internal.telephony.dataconnection.DcTracker$3 +com.android.internal.telephony.dataconnection.DcTracker$4 +com.android.internal.telephony.dataconnection.DcTracker$ApnChangeObserver +com.android.internal.telephony.dataconnection.DcTracker$DataAllowFailReason +com.android.internal.telephony.dataconnection.DcTracker$DataAllowFailReasonType +com.android.internal.telephony.dataconnection.DcTracker$RetryFailures +com.android.internal.telephony.dataconnection.DcTracker$SettingsObserver +com.android.internal.telephony.dataconnection.DcTracker$TxRxSum +com.android.internal.telephony.dataconnection.TelephonyNetworkFactory +com.android.internal.telephony.dataconnection.TelephonyNetworkFactory$InternalHandler +com.android.internal.telephony.gsm.GsmCellBroadcastHandler +com.android.internal.telephony.gsm.GsmInboundSmsHandler +com.android.internal.telephony.gsm.GsmSMSDispatcher +com.android.internal.telephony.gsm.SmsMessage +com.android.internal.telephony.gsm.UsimDataDownloadHandler +com.android.internal.telephony.ims.-$Lambda$6hDwuvYxqWrzW_Ex5wc53XnUOpg +com.android.internal.telephony.ims.-$Lambda$6hDwuvYxqWrzW_Ex5wc53XnUOpg$1 +com.android.internal.telephony.ims.-$Lambda$6hDwuvYxqWrzW_Ex5wc53XnUOpg$2 +com.android.internal.telephony.ims.ImsResolver +com.android.internal.telephony.ims.ImsResolver$1 +com.android.internal.telephony.ims.ImsResolver$2 +com.android.internal.telephony.ims.ImsResolver$3 +com.android.internal.telephony.ims.ImsResolver$ImsServiceControllerFactory +com.android.internal.telephony.ims.ImsResolver$SubscriptionManagerProxy +com.android.internal.telephony.ims.ImsServiceController$ImsServiceControllerCallbacks +com.android.internal.telephony.imsphone.-$Lambda$tILLuSJl16qfDJK1ikBVGFm2D5w +com.android.internal.telephony.imsphone.-$Lambda$tILLuSJl16qfDJK1ikBVGFm2D5w$1 +com.android.internal.telephony.imsphone.ImsExternalCallTracker +com.android.internal.telephony.imsphone.ImsExternalCallTracker$1 +com.android.internal.telephony.imsphone.ImsExternalCallTracker$2 +com.android.internal.telephony.imsphone.ImsExternalCallTracker$ExternalCallStateListener +com.android.internal.telephony.imsphone.ImsExternalCallTracker$ExternalConnectionListener +com.android.internal.telephony.imsphone.ImsExternalCallTracker$ImsCallNotify +com.android.internal.telephony.imsphone.ImsExternalConnection$Listener +com.android.internal.telephony.imsphone.ImsPhone +com.android.internal.telephony.imsphone.ImsPhone$1 +com.android.internal.telephony.imsphone.ImsPhone$2 +com.android.internal.telephony.imsphone.ImsPhone$3 +com.android.internal.telephony.imsphone.ImsPhoneBase +com.android.internal.telephony.imsphone.ImsPhoneCall +com.android.internal.telephony.imsphone.ImsPhoneCallTracker +com.android.internal.telephony.imsphone.ImsPhoneCallTracker$1 +com.android.internal.telephony.imsphone.ImsPhoneCallTracker$2 +com.android.internal.telephony.imsphone.ImsPhoneCallTracker$3 +com.android.internal.telephony.imsphone.ImsPhoneCallTracker$4 +com.android.internal.telephony.imsphone.ImsPhoneCallTracker$5 +com.android.internal.telephony.imsphone.ImsPhoneCallTracker$IRetryTimeout +com.android.internal.telephony.imsphone.ImsPhoneCallTracker$PhoneStateListener +com.android.internal.telephony.imsphone.ImsPhoneCommandInterface +com.android.internal.telephony.imsphone.ImsPhoneFactory +com.android.internal.telephony.imsphone.ImsPullCall +com.android.internal.telephony.metrics.CallSessionEventBuilder +com.android.internal.telephony.metrics.InProgressCallSession +com.android.internal.telephony.metrics.InProgressSmsSession +com.android.internal.telephony.metrics.SmsSessionEventBuilder +com.android.internal.telephony.metrics.TelephonyEventBuilder +com.android.internal.telephony.metrics.TelephonyMetrics +com.android.internal.telephony.nano.TelephonyProto$ImsCapabilities +com.android.internal.telephony.nano.TelephonyProto$ImsConnectionState +com.android.internal.telephony.nano.TelephonyProto$ImsReasonInfo +com.android.internal.telephony.nano.TelephonyProto$RilDataCall +com.android.internal.telephony.nano.TelephonyProto$SmsSession$Event +com.android.internal.telephony.nano.TelephonyProto$TelephonyCallSession$Event +com.android.internal.telephony.nano.TelephonyProto$TelephonyCallSession$Event$RilCall +com.android.internal.telephony.nano.TelephonyProto$TelephonyEvent +com.android.internal.telephony.nano.TelephonyProto$TelephonyServiceState +com.android.internal.telephony.nano.TelephonyProto$TelephonyServiceState$TelephonyOperator +com.android.internal.telephony.nano.TelephonyProto$TelephonySettings +com.android.internal.telephony.protobuf.nano.CodedOutputByteBufferNano +com.android.internal.telephony.protobuf.nano.ExtendableMessageNano +com.android.internal.telephony.protobuf.nano.InternalNano +com.android.internal.telephony.protobuf.nano.InvalidProtocolBufferNanoException +com.android.internal.telephony.protobuf.nano.MessageNano +com.android.internal.telephony.protobuf.nano.WireFormatNano +com.android.internal.telephony.test.SimulatedRadioControl +com.android.internal.telephony.uicc.IccCardApplicationStatus +com.android.internal.telephony.uicc.IccCardApplicationStatus$AppType +com.android.internal.telephony.uicc.IccCardProxy +com.android.internal.telephony.uicc.IccCardStatus +com.android.internal.telephony.uicc.IccCardStatus$CardState +com.android.internal.telephony.uicc.IccCardStatus$PinState +com.android.internal.telephony.uicc.IccConstants +com.android.internal.telephony.uicc.IccRecords +com.android.internal.telephony.uicc.IccUtils +com.android.internal.telephony.uicc.UiccCard +com.android.internal.telephony.uicc.UiccCard$1 +com.android.internal.telephony.uicc.UiccCardApplication +com.android.internal.telephony.uicc.UiccController +com.android.internal.telephony.uicc.UiccStateChangedLauncher +com.android.internal.telephony.util.NotificationChannelController +com.android.internal.telephony.util.NotificationChannelController$1 +com.android.internal.textservice.ISpellCheckerService +com.android.internal.textservice.ISpellCheckerService$Stub +com.android.internal.textservice.ISpellCheckerService$Stub$Proxy +com.android.internal.textservice.ISpellCheckerServiceCallback +com.android.internal.textservice.ISpellCheckerServiceCallback$Stub +com.android.internal.textservice.ISpellCheckerServiceCallback$Stub$Proxy +com.android.internal.textservice.ISpellCheckerSession +com.android.internal.textservice.ISpellCheckerSession$Stub +com.android.internal.textservice.ISpellCheckerSession$Stub$Proxy +com.android.internal.textservice.ISpellCheckerSessionListener +com.android.internal.textservice.ISpellCheckerSessionListener$Stub +com.android.internal.textservice.ISpellCheckerSessionListener$Stub$Proxy +com.android.internal.textservice.ITextServicesManager +com.android.internal.textservice.ITextServicesManager$Stub +com.android.internal.textservice.ITextServicesManager$Stub$Proxy +com.android.internal.textservice.ITextServicesSessionListener +com.android.internal.textservice.ITextServicesSessionListener$Stub +com.android.internal.textservice.ITextServicesSessionListener$Stub$Proxy +com.android.internal.transition.EpicenterTranslateClipReveal +com.android.internal.transition.TransitionConstants +com.android.internal.util.ArrayUtils +com.android.internal.util.AsyncChannel +com.android.internal.util.AsyncChannel$AsyncChannelConnection +com.android.internal.util.AsyncChannel$DeathMonitor +com.android.internal.util.AsyncChannel$SyncMessenger +com.android.internal.util.AsyncChannel$SyncMessenger$SyncHandler +com.android.internal.util.BitUtils +com.android.internal.util.CollectionUtils +com.android.internal.util.ConcurrentUtils +com.android.internal.util.ConcurrentUtils$1 +com.android.internal.util.ConcurrentUtils$1$1 +com.android.internal.util.DumpUtils$Dump +com.android.internal.util.ExponentiallyBucketedHistogram +com.android.internal.util.FastMath +com.android.internal.util.FastPrintWriter +com.android.internal.util.FastPrintWriter$DummyWriter +com.android.internal.util.FastXmlSerializer +com.android.internal.util.FileRotator +com.android.internal.util.FileRotator$FileInfo +com.android.internal.util.FileRotator$Reader +com.android.internal.util.FileRotator$Rewriter +com.android.internal.util.FileRotator$Writer +com.android.internal.util.GrowingArrayUtils +com.android.internal.util.HexDump +com.android.internal.util.IState +com.android.internal.util.ImageUtils +com.android.internal.util.IndentingPrintWriter +com.android.internal.util.IntPair +com.android.internal.util.JournaledFile +com.android.internal.util.LineBreakBufferedWriter +com.android.internal.util.LocalLog +com.android.internal.util.MemInfoReader +com.android.internal.util.MessageUtils +com.android.internal.util.NotificationColorUtil +com.android.internal.util.NotificationColorUtil$ColorUtilsFromCompat +com.android.internal.util.NotificationMessagingUtil +com.android.internal.util.NotificationMessagingUtil$1 +com.android.internal.util.Preconditions +com.android.internal.util.ProcFileReader +com.android.internal.util.ProgressReporter +com.android.internal.util.RingBufferIndices +com.android.internal.util.ScreenShapeHelper +com.android.internal.util.State +com.android.internal.util.StateMachine +com.android.internal.util.StateMachine$LogRec +com.android.internal.util.StateMachine$LogRecords +com.android.internal.util.StateMachine$SmHandler +com.android.internal.util.StateMachine$SmHandler$HaltingState +com.android.internal.util.StateMachine$SmHandler$QuittingState +com.android.internal.util.StateMachine$SmHandler$StateInfo +com.android.internal.util.ToBooleanFunction +com.android.internal.util.TokenBucket +com.android.internal.util.VirtualRefBasePtr +com.android.internal.util.WakeupMessage +com.android.internal.util.XmlUtils +com.android.internal.util.XmlUtils$ReadMapCallback +com.android.internal.util.XmlUtils$WriteMapCallback +com.android.internal.view.ActionBarPolicy +com.android.internal.view.BaseIWindow +com.android.internal.view.BaseSurfaceHolder +com.android.internal.view.IInputConnectionWrapper +com.android.internal.view.IInputConnectionWrapper$MyHandler +com.android.internal.view.IInputContext +com.android.internal.view.IInputContext$Stub +com.android.internal.view.IInputContext$Stub$Proxy +com.android.internal.view.IInputContextCallback +com.android.internal.view.IInputContextCallback$Stub +com.android.internal.view.IInputContextCallback$Stub$Proxy +com.android.internal.view.IInputMethod +com.android.internal.view.IInputMethod$Stub +com.android.internal.view.IInputMethod$Stub$Proxy +com.android.internal.view.IInputMethodClient +com.android.internal.view.IInputMethodClient$Stub +com.android.internal.view.IInputMethodClient$Stub$Proxy +com.android.internal.view.IInputMethodManager +com.android.internal.view.IInputMethodManager$Stub +com.android.internal.view.IInputMethodManager$Stub$Proxy +com.android.internal.view.IInputMethodSession +com.android.internal.view.IInputMethodSession$Stub +com.android.internal.view.IInputMethodSession$Stub$Proxy +com.android.internal.view.IInputSessionCallback +com.android.internal.view.IInputSessionCallback$Stub +com.android.internal.view.IInputSessionCallback$Stub$Proxy +com.android.internal.view.InputBindResult +com.android.internal.view.InputBindResult$1 +com.android.internal.view.InputConnectionWrapper +com.android.internal.view.InputConnectionWrapper$InputContextCallback +com.android.internal.view.OneShotPreDrawListener +com.android.internal.view.RootViewSurfaceTaker +com.android.internal.view.RotationPolicy +com.android.internal.view.RotationPolicy$RotationPolicyListener +com.android.internal.view.RotationPolicy$RotationPolicyListener$1 +com.android.internal.view.SurfaceCallbackHelper +com.android.internal.view.SurfaceCallbackHelper$1 +com.android.internal.view.SurfaceFlingerVsyncChoreographer +com.android.internal.view.WindowManagerPolicyThread +com.android.internal.view.animation.FallbackLUTInterpolator +com.android.internal.view.animation.HasNativeInterpolator +com.android.internal.view.animation.NativeInterpolatorFactory +com.android.internal.view.animation.NativeInterpolatorFactoryHelper +com.android.internal.view.menu.ActionMenuItem +com.android.internal.view.menu.ActionMenuItemView +com.android.internal.view.menu.ActionMenuItemView$PopupCallback +com.android.internal.view.menu.BaseMenuPresenter +com.android.internal.view.menu.ContextMenuBuilder +com.android.internal.view.menu.MenuBuilder +com.android.internal.view.menu.MenuBuilder$Callback +com.android.internal.view.menu.MenuBuilder$ItemInvoker +com.android.internal.view.menu.MenuHelper +com.android.internal.view.menu.MenuItemImpl +com.android.internal.view.menu.MenuPopupHelper +com.android.internal.view.menu.MenuPopupHelper$1 +com.android.internal.view.menu.MenuPresenter +com.android.internal.view.menu.MenuPresenter$Callback +com.android.internal.view.menu.MenuView +com.android.internal.view.menu.MenuView$ItemView +com.android.internal.view.menu.ShowableListMenu +com.android.internal.widget.-$Lambda$LaTFiUorkqfcqmu-zMQbCLeO77c +com.android.internal.widget.AbsActionBarView +com.android.internal.widget.AbsActionBarView$VisibilityAnimListener +com.android.internal.widget.ActionBarContainer +com.android.internal.widget.ActionBarContainer$ActionBarBackgroundDrawable +com.android.internal.widget.ActionBarContextView +com.android.internal.widget.ActionBarContextView$1 +com.android.internal.widget.ActionBarOverlayLayout +com.android.internal.widget.ActionBarOverlayLayout$1 +com.android.internal.widget.ActionBarOverlayLayout$2 +com.android.internal.widget.ActionBarOverlayLayout$3 +com.android.internal.widget.ActionBarOverlayLayout$4 +com.android.internal.widget.ActionBarOverlayLayout$5 +com.android.internal.widget.ActionBarOverlayLayout$ActionBarVisibilityCallback +com.android.internal.widget.ActionBarOverlayLayout$LayoutParams +com.android.internal.widget.AlertDialogLayout +com.android.internal.widget.BackgroundFallback +com.android.internal.widget.ButtonBarLayout +com.android.internal.widget.CachingIconView +com.android.internal.widget.DecorContentParent +com.android.internal.widget.DecorToolbar +com.android.internal.widget.DialogTitle +com.android.internal.widget.EditableInputConnection +com.android.internal.widget.ICheckCredentialProgressCallback +com.android.internal.widget.ILockSettings +com.android.internal.widget.ILockSettings$Stub +com.android.internal.widget.ILockSettings$Stub$Proxy +com.android.internal.widget.ImageFloatingTextView +com.android.internal.widget.LockPatternUtils +com.android.internal.widget.LockPatternUtils$RequestThrottledException +com.android.internal.widget.LockPatternUtils$StrongAuthTracker +com.android.internal.widget.LockPatternUtils$StrongAuthTracker$1 +com.android.internal.widget.LockPatternUtils$StrongAuthTracker$H +com.android.internal.widget.MediaNotificationView +com.android.internal.widget.NotificationActionListLayout +com.android.internal.widget.NotificationExpandButton +com.android.internal.widget.ScrollBarUtils +com.android.internal.widget.ToolbarWidgetWrapper +com.android.internal.widget.ToolbarWidgetWrapper$1 +com.android.internal.widget.ToolbarWidgetWrapper$2 +com.android.internal.widget.VerifyCredentialResponse +com.android.okhttp.Address +com.android.okhttp.AndroidInternal +com.android.okhttp.AndroidShimResponseCache +com.android.okhttp.Authenticator +com.android.okhttp.Cache +com.android.okhttp.Cache$1 +com.android.okhttp.Cache$CacheRequestImpl +com.android.okhttp.Cache$CacheRequestImpl$1 +com.android.okhttp.Cache$Entry +com.android.okhttp.CacheControl +com.android.okhttp.CacheControl$Builder +com.android.okhttp.CertificatePinner +com.android.okhttp.CertificatePinner$Builder +com.android.okhttp.CipherSuite +com.android.okhttp.ConfigAwareConnectionPool +com.android.okhttp.ConfigAwareConnectionPool$1 +com.android.okhttp.Connection +com.android.okhttp.ConnectionPool +com.android.okhttp.ConnectionPool$1 +com.android.okhttp.ConnectionSpec +com.android.okhttp.ConnectionSpec$Builder +com.android.okhttp.Dispatcher +com.android.okhttp.Dns +com.android.okhttp.Dns$1 +com.android.okhttp.Handshake +com.android.okhttp.Headers +com.android.okhttp.Headers$Builder +com.android.okhttp.HttpHandler +com.android.okhttp.HttpHandler$CleartextURLFilter +com.android.okhttp.HttpUrl +com.android.okhttp.HttpUrl$Builder +com.android.okhttp.HttpUrl$Builder$ParseResult +com.android.okhttp.HttpsHandler +com.android.okhttp.OkCacheContainer +com.android.okhttp.OkHttpClient +com.android.okhttp.OkHttpClient$1 +com.android.okhttp.OkUrlFactory +com.android.okhttp.Protocol +com.android.okhttp.Request +com.android.okhttp.Request$Builder +com.android.okhttp.RequestBody +com.android.okhttp.RequestBody$2 +com.android.okhttp.Response +com.android.okhttp.Response$Builder +com.android.okhttp.ResponseBody +com.android.okhttp.Route +com.android.okhttp.TlsVersion +com.android.okhttp.internal.ConnectionSpecSelector +com.android.okhttp.internal.DiskLruCache +com.android.okhttp.internal.DiskLruCache$1 +com.android.okhttp.internal.DiskLruCache$2 +com.android.okhttp.internal.DiskLruCache$3 +com.android.okhttp.internal.DiskLruCache$Editor +com.android.okhttp.internal.DiskLruCache$Editor$1 +com.android.okhttp.internal.DiskLruCache$Entry +com.android.okhttp.internal.FaultHidingSink +com.android.okhttp.internal.Internal +com.android.okhttp.internal.InternalCache +com.android.okhttp.internal.OptionalMethod +com.android.okhttp.internal.Platform +com.android.okhttp.internal.RouteDatabase +com.android.okhttp.internal.URLFilter +com.android.okhttp.internal.Util +com.android.okhttp.internal.Util$1 +com.android.okhttp.internal.http.AuthenticatorAdapter +com.android.okhttp.internal.http.CacheRequest +com.android.okhttp.internal.http.CacheStrategy +com.android.okhttp.internal.http.CacheStrategy$Factory +com.android.okhttp.internal.http.HeaderParser +com.android.okhttp.internal.http.Http1xStream +com.android.okhttp.internal.http.Http1xStream$AbstractSource +com.android.okhttp.internal.http.Http1xStream$ChunkedSink +com.android.okhttp.internal.http.Http1xStream$ChunkedSource +com.android.okhttp.internal.http.Http1xStream$FixedLengthSink +com.android.okhttp.internal.http.Http1xStream$FixedLengthSource +com.android.okhttp.internal.http.Http1xStream$UnknownLengthSource +com.android.okhttp.internal.http.HttpEngine +com.android.okhttp.internal.http.HttpEngine$1 +com.android.okhttp.internal.http.HttpEngine$2 +com.android.okhttp.internal.http.HttpMethod +com.android.okhttp.internal.http.HttpStream +com.android.okhttp.internal.http.OkHeaders +com.android.okhttp.internal.http.OkHeaders$1 +com.android.okhttp.internal.http.RealResponseBody +com.android.okhttp.internal.http.RequestException +com.android.okhttp.internal.http.RequestLine +com.android.okhttp.internal.http.RetryableSink +com.android.okhttp.internal.http.RouteException +com.android.okhttp.internal.http.RouteSelector +com.android.okhttp.internal.http.StatusLine +com.android.okhttp.internal.http.StreamAllocation +com.android.okhttp.internal.huc.DelegatingHttpsURLConnection +com.android.okhttp.internal.huc.HttpURLConnectionImpl +com.android.okhttp.internal.huc.HttpsURLConnectionImpl +com.android.okhttp.internal.io.FileSystem +com.android.okhttp.internal.io.FileSystem$1 +com.android.okhttp.internal.io.RealConnection +com.android.okhttp.internal.tls.OkHostnameVerifier +com.android.okhttp.okio.AsyncTimeout +com.android.okhttp.okio.AsyncTimeout$1 +com.android.okhttp.okio.AsyncTimeout$2 +com.android.okhttp.okio.AsyncTimeout$Watchdog +com.android.okhttp.okio.Base64 +com.android.okhttp.okio.Buffer +com.android.okhttp.okio.BufferedSink +com.android.okhttp.okio.BufferedSource +com.android.okhttp.okio.ByteString +com.android.okhttp.okio.ForwardingSink +com.android.okhttp.okio.ForwardingTimeout +com.android.okhttp.okio.GzipSource +com.android.okhttp.okio.InflaterSource +com.android.okhttp.okio.Okio +com.android.okhttp.okio.Okio$1 +com.android.okhttp.okio.Okio$2 +com.android.okhttp.okio.Okio$3 +com.android.okhttp.okio.RealBufferedSink +com.android.okhttp.okio.RealBufferedSink$1 +com.android.okhttp.okio.RealBufferedSource +com.android.okhttp.okio.RealBufferedSource$1 +com.android.okhttp.okio.Segment +com.android.okhttp.okio.SegmentPool +com.android.okhttp.okio.Sink +com.android.okhttp.okio.Source +com.android.okhttp.okio.Timeout +com.android.okhttp.okio.Timeout$1 +com.android.okhttp.okio.Util +com.android.org.bouncycastle.asn1.ASN1BitString +com.android.org.bouncycastle.asn1.ASN1Choice +com.android.org.bouncycastle.asn1.ASN1Encodable +com.android.org.bouncycastle.asn1.ASN1EncodableVector +com.android.org.bouncycastle.asn1.ASN1InputStream +com.android.org.bouncycastle.asn1.ASN1Integer +com.android.org.bouncycastle.asn1.ASN1Null +com.android.org.bouncycastle.asn1.ASN1Object +com.android.org.bouncycastle.asn1.ASN1ObjectIdentifier +com.android.org.bouncycastle.asn1.ASN1ObjectIdentifier$OidHandle +com.android.org.bouncycastle.asn1.ASN1OutputStream +com.android.org.bouncycastle.asn1.ASN1Primitive +com.android.org.bouncycastle.asn1.ASN1Sequence +com.android.org.bouncycastle.asn1.ASN1Set +com.android.org.bouncycastle.asn1.ASN1StreamParser +com.android.org.bouncycastle.asn1.ASN1String +com.android.org.bouncycastle.asn1.ASN1TaggedObject +com.android.org.bouncycastle.asn1.ASN1TaggedObjectParser +com.android.org.bouncycastle.asn1.ASN1UTCTime +com.android.org.bouncycastle.asn1.BERTags +com.android.org.bouncycastle.asn1.DERBitString +com.android.org.bouncycastle.asn1.DERFactory +com.android.org.bouncycastle.asn1.DERNull +com.android.org.bouncycastle.asn1.DEROutputStream +com.android.org.bouncycastle.asn1.DERPrintableString +com.android.org.bouncycastle.asn1.DERSequence +com.android.org.bouncycastle.asn1.DERSet +com.android.org.bouncycastle.asn1.DERTaggedObject +com.android.org.bouncycastle.asn1.DLSequence +com.android.org.bouncycastle.asn1.DLSet +com.android.org.bouncycastle.asn1.DefiniteLengthInputStream +com.android.org.bouncycastle.asn1.InMemoryRepresentable +com.android.org.bouncycastle.asn1.IndefiniteLengthInputStream +com.android.org.bouncycastle.asn1.LimitedInputStream +com.android.org.bouncycastle.asn1.OIDTokenizer +com.android.org.bouncycastle.asn1.StreamUtil +com.android.org.bouncycastle.asn1.bc.BCObjectIdentifiers +com.android.org.bouncycastle.asn1.iana.IANAObjectIdentifiers +com.android.org.bouncycastle.asn1.misc.MiscObjectIdentifiers +com.android.org.bouncycastle.asn1.nist.NISTObjectIdentifiers +com.android.org.bouncycastle.asn1.oiw.OIWObjectIdentifiers +com.android.org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers +com.android.org.bouncycastle.asn1.x500.RDN +com.android.org.bouncycastle.asn1.x500.X500Name +com.android.org.bouncycastle.asn1.x500.X500NameStyle +com.android.org.bouncycastle.asn1.x500.style.AbstractX500NameStyle +com.android.org.bouncycastle.asn1.x500.style.BCStyle +com.android.org.bouncycastle.asn1.x509.AlgorithmIdentifier +com.android.org.bouncycastle.asn1.x509.Certificate +com.android.org.bouncycastle.asn1.x509.SubjectPublicKeyInfo +com.android.org.bouncycastle.asn1.x509.TBSCertificate +com.android.org.bouncycastle.asn1.x509.Time +com.android.org.bouncycastle.asn1.x509.X509ObjectIdentifiers +com.android.org.bouncycastle.asn1.x9.X9ObjectIdentifiers +com.android.org.bouncycastle.crypto.AsymmetricBlockCipher +com.android.org.bouncycastle.crypto.CipherKeyGenerator +com.android.org.bouncycastle.crypto.CipherParameters +com.android.org.bouncycastle.crypto.CryptoException +com.android.org.bouncycastle.crypto.Digest +com.android.org.bouncycastle.crypto.ExtendedDigest +com.android.org.bouncycastle.crypto.InvalidCipherTextException +com.android.org.bouncycastle.crypto.KeyGenerationParameters +com.android.org.bouncycastle.crypto.Mac +com.android.org.bouncycastle.crypto.PBEParametersGenerator +com.android.org.bouncycastle.crypto.digests.AndroidDigestFactory +com.android.org.bouncycastle.crypto.digests.AndroidDigestFactoryInterface +com.android.org.bouncycastle.crypto.digests.AndroidDigestFactoryOpenSSL +com.android.org.bouncycastle.crypto.digests.EncodableDigest +com.android.org.bouncycastle.crypto.digests.GeneralDigest +com.android.org.bouncycastle.crypto.digests.OpenSSLDigest +com.android.org.bouncycastle.crypto.digests.OpenSSLDigest$SHA1 +com.android.org.bouncycastle.crypto.digests.SHA1Digest +com.android.org.bouncycastle.crypto.encodings.OAEPEncoding +com.android.org.bouncycastle.crypto.engines.RSABlindedEngine +com.android.org.bouncycastle.crypto.engines.RSACoreEngine +com.android.org.bouncycastle.crypto.generators.PKCS12ParametersGenerator +com.android.org.bouncycastle.crypto.io.MacInputStream +com.android.org.bouncycastle.crypto.macs.HMac +com.android.org.bouncycastle.crypto.params.KeyParameter +com.android.org.bouncycastle.jcajce.provider.asymmetric.DH +com.android.org.bouncycastle.jcajce.provider.asymmetric.DH$Mappings +com.android.org.bouncycastle.jcajce.provider.asymmetric.DSA$Mappings +com.android.org.bouncycastle.jcajce.provider.asymmetric.EC +com.android.org.bouncycastle.jcajce.provider.asymmetric.EC$Mappings +com.android.org.bouncycastle.jcajce.provider.asymmetric.RSA +com.android.org.bouncycastle.jcajce.provider.asymmetric.RSA$Mappings +com.android.org.bouncycastle.jcajce.provider.asymmetric.X509$Mappings +com.android.org.bouncycastle.jcajce.provider.asymmetric.dh.KeyFactorySpi +com.android.org.bouncycastle.jcajce.provider.asymmetric.dsa.DSAUtil +com.android.org.bouncycastle.jcajce.provider.asymmetric.dsa.KeyFactorySpi +com.android.org.bouncycastle.jcajce.provider.asymmetric.ec.KeyFactorySpi +com.android.org.bouncycastle.jcajce.provider.asymmetric.ec.KeyFactorySpi$EC +com.android.org.bouncycastle.jcajce.provider.asymmetric.rsa.CipherSpi +com.android.org.bouncycastle.jcajce.provider.asymmetric.rsa.CipherSpi$NoPadding +com.android.org.bouncycastle.jcajce.provider.asymmetric.rsa.KeyFactorySpi +com.android.org.bouncycastle.jcajce.provider.asymmetric.util.BaseCipherSpi +com.android.org.bouncycastle.jcajce.provider.asymmetric.util.BaseKeyFactorySpi +com.android.org.bouncycastle.jcajce.provider.asymmetric.util.PKCS12BagAttributeCarrierImpl +com.android.org.bouncycastle.jcajce.provider.asymmetric.x509.CertificateFactory +com.android.org.bouncycastle.jcajce.provider.asymmetric.x509.PEMUtil +com.android.org.bouncycastle.jcajce.provider.asymmetric.x509.X509CertificateObject +com.android.org.bouncycastle.jcajce.provider.config.ConfigurableProvider +com.android.org.bouncycastle.jcajce.provider.config.ProviderConfiguration +com.android.org.bouncycastle.jcajce.provider.config.ProviderConfigurationPermission +com.android.org.bouncycastle.jcajce.provider.digest.DigestAlgorithmProvider +com.android.org.bouncycastle.jcajce.provider.digest.MD5 +com.android.org.bouncycastle.jcajce.provider.digest.MD5$Mappings +com.android.org.bouncycastle.jcajce.provider.digest.SHA1 +com.android.org.bouncycastle.jcajce.provider.digest.SHA1$KeyGenerator +com.android.org.bouncycastle.jcajce.provider.digest.SHA1$Mappings +com.android.org.bouncycastle.jcajce.provider.digest.SHA224 +com.android.org.bouncycastle.jcajce.provider.digest.SHA224$Mappings +com.android.org.bouncycastle.jcajce.provider.digest.SHA256 +com.android.org.bouncycastle.jcajce.provider.digest.SHA256$Mappings +com.android.org.bouncycastle.jcajce.provider.digest.SHA384 +com.android.org.bouncycastle.jcajce.provider.digest.SHA384$Mappings +com.android.org.bouncycastle.jcajce.provider.digest.SHA512 +com.android.org.bouncycastle.jcajce.provider.digest.SHA512$Mappings +com.android.org.bouncycastle.jcajce.provider.keystore.BC$Mappings +com.android.org.bouncycastle.jcajce.provider.keystore.PKCS12$Mappings +com.android.org.bouncycastle.jcajce.provider.keystore.bc.BcKeyStoreSpi +com.android.org.bouncycastle.jcajce.provider.keystore.bc.BcKeyStoreSpi$Std +com.android.org.bouncycastle.jcajce.provider.keystore.bc.BcKeyStoreSpi$StoreEntry +com.android.org.bouncycastle.jcajce.provider.symmetric.AES +com.android.org.bouncycastle.jcajce.provider.symmetric.AES$Mappings +com.android.org.bouncycastle.jcajce.provider.symmetric.ARC4 +com.android.org.bouncycastle.jcajce.provider.symmetric.ARC4$Mappings +com.android.org.bouncycastle.jcajce.provider.symmetric.Blowfish +com.android.org.bouncycastle.jcajce.provider.symmetric.Blowfish$Mappings +com.android.org.bouncycastle.jcajce.provider.symmetric.DES +com.android.org.bouncycastle.jcajce.provider.symmetric.DES$Mappings +com.android.org.bouncycastle.jcajce.provider.symmetric.DESede +com.android.org.bouncycastle.jcajce.provider.symmetric.DESede$Mappings +com.android.org.bouncycastle.jcajce.provider.symmetric.PBEPBKDF2 +com.android.org.bouncycastle.jcajce.provider.symmetric.PBEPBKDF2$Mappings +com.android.org.bouncycastle.jcajce.provider.symmetric.PBEPKCS12 +com.android.org.bouncycastle.jcajce.provider.symmetric.PBEPKCS12$Mappings +com.android.org.bouncycastle.jcajce.provider.symmetric.PBES2AlgorithmParameters +com.android.org.bouncycastle.jcajce.provider.symmetric.PBES2AlgorithmParameters$Mappings +com.android.org.bouncycastle.jcajce.provider.symmetric.RC2 +com.android.org.bouncycastle.jcajce.provider.symmetric.RC2$Mappings +com.android.org.bouncycastle.jcajce.provider.symmetric.SymmetricAlgorithmProvider +com.android.org.bouncycastle.jcajce.provider.symmetric.Twofish +com.android.org.bouncycastle.jcajce.provider.symmetric.Twofish$Mappings +com.android.org.bouncycastle.jcajce.provider.symmetric.util.BaseKeyGenerator +com.android.org.bouncycastle.jcajce.provider.util.AlgorithmProvider +com.android.org.bouncycastle.jcajce.provider.util.AsymmetricAlgorithmProvider +com.android.org.bouncycastle.jcajce.provider.util.AsymmetricKeyInfoConverter +com.android.org.bouncycastle.jcajce.provider.util.DigestFactory +com.android.org.bouncycastle.jcajce.util.BCJcaJceHelper +com.android.org.bouncycastle.jcajce.util.JcaJceHelper +com.android.org.bouncycastle.jcajce.util.ProviderJcaJceHelper +com.android.org.bouncycastle.jce.interfaces.BCKeyStore +com.android.org.bouncycastle.jce.interfaces.PKCS12BagAttributeCarrier +com.android.org.bouncycastle.jce.provider.BouncyCastleProvider +com.android.org.bouncycastle.jce.provider.BouncyCastleProvider$1 +com.android.org.bouncycastle.jce.provider.BouncyCastleProviderConfiguration +com.android.org.bouncycastle.jce.provider.CertStoreCollectionSpi +com.android.org.bouncycastle.util.Arrays +com.android.org.bouncycastle.util.Encodable +com.android.org.bouncycastle.util.Integers +com.android.org.bouncycastle.util.Iterable +com.android.org.bouncycastle.util.Memoable +com.android.org.bouncycastle.util.Pack +com.android.org.bouncycastle.util.Strings +com.android.org.bouncycastle.util.Strings$1 +com.android.org.bouncycastle.util.io.Streams +com.android.org.conscrypt.AbstractConscryptSocket +com.android.org.conscrypt.AbstractConscryptSocket$1 +com.android.org.conscrypt.AbstractOpenSSLSession +com.android.org.conscrypt.AbstractSessionContext +com.android.org.conscrypt.AbstractSessionContext$1 +com.android.org.conscrypt.ActiveSession +com.android.org.conscrypt.AddressUtils +com.android.org.conscrypt.ArrayUtils +com.android.org.conscrypt.ByteArray +com.android.org.conscrypt.CertBlacklist +com.android.org.conscrypt.CertificatePriorityComparator +com.android.org.conscrypt.ChainStrengthAnalyzer +com.android.org.conscrypt.ClientSessionContext +com.android.org.conscrypt.ClientSessionContext$HostAndPort +com.android.org.conscrypt.Conscrypt +com.android.org.conscrypt.ConscryptFileDescriptorSocket +com.android.org.conscrypt.ConscryptFileDescriptorSocket$SSLInputStream +com.android.org.conscrypt.ConscryptFileDescriptorSocket$SSLOutputStream +com.android.org.conscrypt.CryptoUpcalls +com.android.org.conscrypt.DefaultSSLContextImpl +com.android.org.conscrypt.DelegatingExtendedSSLSession +com.android.org.conscrypt.EvpMdRef$MD5 +com.android.org.conscrypt.EvpMdRef$SHA1 +com.android.org.conscrypt.EvpMdRef$SHA256 +com.android.org.conscrypt.FileClientSessionCache +com.android.org.conscrypt.FileClientSessionCache$CacheFile +com.android.org.conscrypt.FileClientSessionCache$Impl +com.android.org.conscrypt.Hex +com.android.org.conscrypt.InternalUtil +com.android.org.conscrypt.JSSEProvider +com.android.org.conscrypt.KeyManagerFactoryImpl +com.android.org.conscrypt.KeyManagerImpl +com.android.org.conscrypt.NativeCrypto +com.android.org.conscrypt.NativeCrypto$SSLHandshakeCallbacks +com.android.org.conscrypt.NativeCryptoJni +com.android.org.conscrypt.NativeRef +com.android.org.conscrypt.NativeRef$EC_GROUP +com.android.org.conscrypt.NativeRef$EC_POINT +com.android.org.conscrypt.NativeRef$EVP_CIPHER_CTX +com.android.org.conscrypt.NativeRef$EVP_MD_CTX +com.android.org.conscrypt.NativeRef$EVP_PKEY +com.android.org.conscrypt.NativeRef$HMAC_CTX +com.android.org.conscrypt.NativeRef$SSL_SESSION +com.android.org.conscrypt.OpenSSLBIOInputStream +com.android.org.conscrypt.OpenSSLCipher +com.android.org.conscrypt.OpenSSLCipher$EVP_CIPHER +com.android.org.conscrypt.OpenSSLCipher$EVP_CIPHER$AES +com.android.org.conscrypt.OpenSSLCipher$EVP_CIPHER$AES$CBC +com.android.org.conscrypt.OpenSSLCipher$EVP_CIPHER$AES$CBC$PKCS5Padding +com.android.org.conscrypt.OpenSSLCipher$EVP_CIPHER$AES_BASE +com.android.org.conscrypt.OpenSSLCipher$Mode +com.android.org.conscrypt.OpenSSLCipher$Padding +com.android.org.conscrypt.OpenSSLContextImpl +com.android.org.conscrypt.OpenSSLContextImpl$TLSv12 +com.android.org.conscrypt.OpenSSLECGroupContext +com.android.org.conscrypt.OpenSSLECKeyFactory +com.android.org.conscrypt.OpenSSLECPointContext +com.android.org.conscrypt.OpenSSLECPublicKey +com.android.org.conscrypt.OpenSSLExtendedSessionImpl +com.android.org.conscrypt.OpenSSLKey +com.android.org.conscrypt.OpenSSLKeyHolder +com.android.org.conscrypt.OpenSSLMac +com.android.org.conscrypt.OpenSSLMac$HmacSHA1 +com.android.org.conscrypt.OpenSSLMac$HmacSHA256 +com.android.org.conscrypt.OpenSSLMessageDigestJDK +com.android.org.conscrypt.OpenSSLMessageDigestJDK$MD5 +com.android.org.conscrypt.OpenSSLMessageDigestJDK$SHA1 +com.android.org.conscrypt.OpenSSLMessageDigestJDK$SHA256 +com.android.org.conscrypt.OpenSSLProvider +com.android.org.conscrypt.OpenSSLRSAKeyFactory +com.android.org.conscrypt.OpenSSLRSAPublicKey +com.android.org.conscrypt.OpenSSLRandom +com.android.org.conscrypt.OpenSSLSessionImpl +com.android.org.conscrypt.OpenSSLSignature +com.android.org.conscrypt.OpenSSLSignature$EngineType +com.android.org.conscrypt.OpenSSLSignature$RSAPKCS1Padding +com.android.org.conscrypt.OpenSSLSignature$SHA1RSA +com.android.org.conscrypt.OpenSSLSignature$SHA256RSA +com.android.org.conscrypt.OpenSSLSocketFactoryImpl +com.android.org.conscrypt.OpenSSLSocketImpl +com.android.org.conscrypt.OpenSSLSocketImpl$SSLInputStream +com.android.org.conscrypt.OpenSSLSocketImpl$SSLOutputStream +com.android.org.conscrypt.OpenSSLSocketImplWrapper +com.android.org.conscrypt.OpenSSLX509CertPath +com.android.org.conscrypt.OpenSSLX509CertPath$Encoding +com.android.org.conscrypt.OpenSSLX509Certificate +com.android.org.conscrypt.OpenSSLX509CertificateFactory +com.android.org.conscrypt.OpenSSLX509CertificateFactory$1 +com.android.org.conscrypt.OpenSSLX509CertificateFactory$2 +com.android.org.conscrypt.OpenSSLX509CertificateFactory$Parser +com.android.org.conscrypt.OpenSSLX509CertificateFactory$ParsingException +com.android.org.conscrypt.PeerInfoProvider +com.android.org.conscrypt.PeerInfoProvider$1 +com.android.org.conscrypt.Platform +com.android.org.conscrypt.Preconditions +com.android.org.conscrypt.SSLClientSessionCache +com.android.org.conscrypt.SSLParametersImpl +com.android.org.conscrypt.SSLParametersImpl$AliasChooser +com.android.org.conscrypt.SSLParametersImpl$PSKCallbacks +com.android.org.conscrypt.SSLUtils +com.android.org.conscrypt.SSLUtils$SessionType +com.android.org.conscrypt.ServerSessionContext +com.android.org.conscrypt.SslSessionWrapper +com.android.org.conscrypt.SslSessionWrapper$Impl +com.android.org.conscrypt.SslSessionWrapper$Impl$1 +com.android.org.conscrypt.SslWrapper +com.android.org.conscrypt.TrustManagerFactoryImpl +com.android.org.conscrypt.TrustManagerImpl +com.android.org.conscrypt.TrustManagerImpl$ExtendedKeyUsagePKIXCertPathChecker +com.android.org.conscrypt.TrustManagerImpl$TrustAnchorComparator +com.android.org.conscrypt.TrustedCertificateIndex +com.android.org.conscrypt.TrustedCertificateKeyStoreSpi +com.android.org.conscrypt.TrustedCertificateStore +com.android.org.conscrypt.TrustedCertificateStore$1 +com.android.org.conscrypt.TrustedCertificateStore$2 +com.android.org.conscrypt.TrustedCertificateStore$4 +com.android.org.conscrypt.TrustedCertificateStore$5 +com.android.org.conscrypt.TrustedCertificateStore$CertSelector +com.android.org.conscrypt.TrustedCertificateStore$PreloadHolder +com.android.org.conscrypt.ct.CTLogInfo +com.android.org.conscrypt.ct.CTLogStore +com.android.org.conscrypt.ct.CTLogStoreImpl +com.android.org.conscrypt.ct.CTLogStoreImpl$InvalidLogFileException +com.android.org.conscrypt.ct.CTPolicy +com.android.org.conscrypt.ct.CTPolicyImpl +com.android.org.conscrypt.ct.CTVerifier +com.android.org.conscrypt.ct.KnownLogs +com.android.org.conscrypt.ct.SerializationException +com.android.server.AppWidgetBackupBridge +com.android.server.BootReceiver +com.android.server.BootReceiver$1 +com.android.server.BootReceiver$2 +com.android.server.LocalServices +com.android.server.NetworkManagementSocketTagger +com.android.server.NetworkManagementSocketTagger$1 +com.android.server.NetworkManagementSocketTagger$SocketTags +com.android.server.SystemConfig +com.android.server.SystemConfig$PermissionEntry +com.android.server.WidgetBackupProvider +com.android.server.backup.AccountSyncSettingsBackupHelper +com.android.server.net.BaseNetworkObserver +com.android.server.net.DnsServerEntry +com.android.server.net.DnsServerRepository +com.android.server.net.NetlinkTracker +com.android.server.net.NetlinkTracker$Callback +com.android.server.sip.SipService +com.android.server.sip.SipService$ConnectivityReceiver +com.android.server.sip.SipService$MyExecutor +com.android.server.sip.SipWakeLock +com.android.server.sip.SipWakeupTimer +com.android.server.sip.SipWakeupTimer$MyEventComparator +com.android.server.wifi.nano.WifiMetricsProto$AlertReasonCount +com.android.server.wifi.nano.WifiMetricsProto$ConnectionEvent +com.android.server.wifi.nano.WifiMetricsProto$RouterFingerPrint +com.android.server.wifi.nano.WifiMetricsProto$RssiPollCount +com.android.server.wifi.nano.WifiMetricsProto$SoftApDurationBucket +com.android.server.wifi.nano.WifiMetricsProto$SoftApReturnCodeCount +com.android.server.wifi.nano.WifiMetricsProto$StaEvent +com.android.server.wifi.nano.WifiMetricsProto$StaEvent$ConfigInfo +com.android.server.wifi.nano.WifiMetricsProto$WifiLog +com.android.server.wifi.nano.WifiMetricsProto$WifiLog$ScanReturnEntry +com.android.server.wifi.nano.WifiMetricsProto$WifiLog$WifiSystemStateEntry +com.android.server.wifi.nano.WifiMetricsProto$WifiScoreCount +com.android.server.wm.nano.WindowManagerProtos$TaskSnapshotProto +com.google.android.collect.Lists +com.google.android.collect.Maps +com.google.android.collect.Sets +com.google.android.gles_jni.EGLConfigImpl +com.google.android.gles_jni.EGLContextImpl +com.google.android.gles_jni.EGLDisplayImpl +com.google.android.gles_jni.EGLImpl +com.google.android.gles_jni.EGLSurfaceImpl +com.google.android.gles_jni.GLImpl +com.google.android.mms.MmsException +dalvik.annotation.optimization.CriticalNative +dalvik.annotation.optimization.FastNative +dalvik.system.-$Lambda$xxvwQBVHC44UYbpcpA8j0sUqLOo +dalvik.system.BaseDexClassLoader +dalvik.system.BaseDexClassLoader$Reporter +dalvik.system.BlockGuard +dalvik.system.BlockGuard$1 +dalvik.system.BlockGuard$2 +dalvik.system.BlockGuard$BlockGuardPolicyException +dalvik.system.BlockGuard$Policy +dalvik.system.ClassExt +dalvik.system.CloseGuard +dalvik.system.CloseGuard$DefaultReporter +dalvik.system.CloseGuard$DefaultTracker +dalvik.system.CloseGuard$Reporter +dalvik.system.CloseGuard$Tracker +dalvik.system.DalvikLogHandler +dalvik.system.DalvikLogging +dalvik.system.DelegateLastClassLoader +dalvik.system.DexClassLoader +dalvik.system.DexFile +dalvik.system.DexFile$DFEnum +dalvik.system.DexPathList +dalvik.system.DexPathList$Element +dalvik.system.DexPathList$NativeLibraryElement +dalvik.system.EmulatedStackFrame +dalvik.system.EmulatedStackFrame$Range +dalvik.system.PathClassLoader +dalvik.system.SocketTagger +dalvik.system.SocketTagger$1 +dalvik.system.VMDebug +dalvik.system.VMRuntime +dalvik.system.VMStack +dalvik.system.ZygoteHooks +java.io.Bits +java.io.BufferedInputStream +java.io.BufferedOutputStream +java.io.BufferedReader +java.io.BufferedWriter +java.io.ByteArrayInputStream +java.io.ByteArrayOutputStream +java.io.CharArrayWriter +java.io.Closeable +java.io.Console +java.io.DataInput +java.io.DataInputStream +java.io.DataOutput +java.io.DataOutputStream +java.io.DefaultFileSystem +java.io.EOFException +java.io.ExpiringCache +java.io.ExpiringCache$1 +java.io.ExpiringCache$Entry +java.io.Externalizable +java.io.File +java.io.File$PathStatus +java.io.File$TempDirectory +java.io.FileDescriptor +java.io.FileDescriptor$1 +java.io.FileFilter +java.io.FileInputStream +java.io.FileInputStream$UseManualSkipException +java.io.FileNotFoundException +java.io.FileOutputStream +java.io.FileReader +java.io.FileSystem +java.io.FileWriter +java.io.FilenameFilter +java.io.FilterInputStream +java.io.FilterOutputStream +java.io.FilterReader +java.io.Flushable +java.io.IOException +java.io.InputStream +java.io.InputStreamReader +java.io.InterruptedIOException +java.io.InvalidClassException +java.io.InvalidObjectException +java.io.ObjectInput +java.io.ObjectInputStream +java.io.ObjectInputStream$BlockDataInputStream +java.io.ObjectInputStream$HandleTable +java.io.ObjectInputStream$HandleTable$HandleList +java.io.ObjectInputStream$PeekInputStream +java.io.ObjectInputStream$ValidationList +java.io.ObjectOutput +java.io.ObjectOutputStream +java.io.ObjectOutputStream$BlockDataOutputStream +java.io.ObjectOutputStream$HandleTable +java.io.ObjectOutputStream$PutField +java.io.ObjectOutputStream$ReplaceTable +java.io.ObjectStreamClass +java.io.ObjectStreamClass$1 +java.io.ObjectStreamClass$2 +java.io.ObjectStreamClass$3 +java.io.ObjectStreamClass$4 +java.io.ObjectStreamClass$5 +java.io.ObjectStreamClass$Caches +java.io.ObjectStreamClass$ClassDataSlot +java.io.ObjectStreamClass$EntryFuture +java.io.ObjectStreamClass$ExceptionInfo +java.io.ObjectStreamClass$FieldReflector +java.io.ObjectStreamClass$FieldReflectorKey +java.io.ObjectStreamClass$MemberSignature +java.io.ObjectStreamClass$WeakClassKey +java.io.ObjectStreamConstants +java.io.ObjectStreamException +java.io.ObjectStreamField +java.io.OutputStream +java.io.OutputStreamWriter +java.io.PrintStream +java.io.PrintWriter +java.io.PushbackInputStream +java.io.PushbackReader +java.io.RandomAccessFile +java.io.Reader +java.io.SequenceInputStream +java.io.SerialCallbackContext +java.io.Serializable +java.io.SerializablePermission +java.io.StreamCorruptedException +java.io.StringReader +java.io.StringWriter +java.io.UnixFileSystem +java.io.UnsupportedEncodingException +java.io.Writer +java.lang.-$Lambda$S9HjrJh0nDg7IyU6wZdPArnZWRQ +java.lang.-$Lambda$S9HjrJh0nDg7IyU6wZdPArnZWRQ$1 +java.lang.AbstractMethodError +java.lang.AbstractStringBuilder +java.lang.AndroidHardcodedSystemProperties +java.lang.Appendable +java.lang.ArithmeticException +java.lang.ArrayIndexOutOfBoundsException +java.lang.ArrayStoreException +java.lang.AssertionError +java.lang.AutoCloseable +java.lang.Boolean +java.lang.BootClassLoader +java.lang.Byte +java.lang.Byte$ByteCache +java.lang.CaseMapper +java.lang.CaseMapper$1 +java.lang.CharSequence +java.lang.CharSequence$1CharIterator +java.lang.CharSequence$1CodePointIterator +java.lang.Character +java.lang.Character$CharacterCache +java.lang.Character$Subset +java.lang.Character$UnicodeBlock +java.lang.Class +java.lang.Class$Caches +java.lang.ClassCastException +java.lang.ClassLoader +java.lang.ClassLoader$SystemClassLoader +java.lang.ClassNotFoundException +java.lang.CloneNotSupportedException +java.lang.Cloneable +java.lang.Comparable +java.lang.Daemons +java.lang.Daemons$Daemon +java.lang.Daemons$FinalizerDaemon +java.lang.Daemons$FinalizerWatchdogDaemon +java.lang.Daemons$HeapTaskDaemon +java.lang.Daemons$ReferenceQueueDaemon +java.lang.Deprecated +java.lang.DexCache +java.lang.Double +java.lang.Enum +java.lang.Enum$1 +java.lang.EnumConstantNotPresentException +java.lang.Error +java.lang.Exception +java.lang.ExceptionInInitializerError +java.lang.Float +java.lang.IllegalAccessError +java.lang.IllegalAccessException +java.lang.IllegalArgumentException +java.lang.IllegalMonitorStateException +java.lang.IllegalStateException +java.lang.IllegalThreadStateException +java.lang.IncompatibleClassChangeError +java.lang.IndexOutOfBoundsException +java.lang.InheritableThreadLocal +java.lang.InstantiationError +java.lang.InstantiationException +java.lang.Integer +java.lang.Integer$IntegerCache +java.lang.InternalError +java.lang.InterruptedException +java.lang.Iterable +java.lang.JavaLangAccess +java.lang.LinkageError +java.lang.Long +java.lang.Long$LongCache +java.lang.Math +java.lang.Math$RandomNumberGeneratorHolder +java.lang.NegativeArraySizeException +java.lang.NoClassDefFoundError +java.lang.NoSuchFieldError +java.lang.NoSuchFieldException +java.lang.NoSuchMethodError +java.lang.NoSuchMethodException +java.lang.NullPointerException +java.lang.Number +java.lang.NumberFormatException +java.lang.Object +java.lang.OutOfMemoryError +java.lang.Package +java.lang.Process +java.lang.ProcessBuilder +java.lang.ProcessEnvironment +java.lang.ProcessEnvironment$ExternalData +java.lang.ProcessEnvironment$StringEnvironment +java.lang.ProcessEnvironment$Value +java.lang.ProcessEnvironment$Variable +java.lang.Readable +java.lang.ReflectiveOperationException +java.lang.Runnable +java.lang.Runtime +java.lang.RuntimeException +java.lang.RuntimePermission +java.lang.SecurityException +java.lang.SecurityManager +java.lang.Short +java.lang.Short$ShortCache +java.lang.StackOverflowError +java.lang.StackTraceElement +java.lang.StrictMath +java.lang.String +java.lang.String$CaseInsensitiveComparator +java.lang.StringBuffer +java.lang.StringBuilder +java.lang.StringFactory +java.lang.StringIndexOutOfBoundsException +java.lang.System +java.lang.System$PropertiesWithNonOverrideableDefaults +java.lang.Thread +java.lang.Thread$1 +java.lang.Thread$Caches +java.lang.Thread$State +java.lang.Thread$UncaughtExceptionHandler +java.lang.Thread$WeakClassKey +java.lang.ThreadDeath +java.lang.ThreadGroup +java.lang.ThreadLocal +java.lang.ThreadLocal$SuppliedThreadLocal +java.lang.ThreadLocal$ThreadLocalMap +java.lang.ThreadLocal$ThreadLocalMap$Entry +java.lang.Throwable +java.lang.Throwable$PrintStreamOrWriter +java.lang.Throwable$SentinelHolder +java.lang.Throwable$WrappedPrintStream +java.lang.Throwable$WrappedPrintWriter +java.lang.TypeNotPresentException +java.lang.UNIXProcess +java.lang.UNIXProcess$1 +java.lang.UNIXProcess$ProcessReaperThreadFactory +java.lang.UNIXProcess$ProcessReaperThreadFactory$1 +java.lang.UnsatisfiedLinkError +java.lang.UnsupportedOperationException +java.lang.VMClassLoader +java.lang.VerifyError +java.lang.VirtualMachineError +java.lang.Void +java.lang.annotation.Annotation +java.lang.annotation.AnnotationTypeMismatchException +java.lang.annotation.IncompleteAnnotationException +java.lang.annotation.Inherited +java.lang.annotation.Retention +java.lang.annotation.Target +java.lang.invoke.CallSite +java.lang.invoke.ConstantCallSite +java.lang.invoke.MethodHandle +java.lang.invoke.MethodHandleImpl +java.lang.invoke.MethodHandleImpl$HandleInfo +java.lang.invoke.MethodHandleInfo +java.lang.invoke.MethodHandleStatics +java.lang.invoke.MethodHandles +java.lang.invoke.MethodHandles$Lookup +java.lang.invoke.MethodType +java.lang.invoke.MethodType$ConcurrentWeakInternSet +java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry +java.lang.invoke.MethodTypeForm +java.lang.invoke.Transformers$AlwaysThrow +java.lang.invoke.Transformers$BindTo +java.lang.invoke.Transformers$CatchException +java.lang.invoke.Transformers$CollectArguments +java.lang.invoke.Transformers$Collector +java.lang.invoke.Transformers$Constant +java.lang.invoke.Transformers$Construct +java.lang.invoke.Transformers$DropArguments +java.lang.invoke.Transformers$ExplicitCastArguments +java.lang.invoke.Transformers$FilterArguments +java.lang.invoke.Transformers$FilterReturnValue +java.lang.invoke.Transformers$FoldArguments +java.lang.invoke.Transformers$GuardWithTest +java.lang.invoke.Transformers$InsertArguments +java.lang.invoke.Transformers$Invoker +java.lang.invoke.Transformers$PermuteArguments +java.lang.invoke.Transformers$ReferenceArrayElementGetter +java.lang.invoke.Transformers$ReferenceArrayElementSetter +java.lang.invoke.Transformers$ReferenceIdentity +java.lang.invoke.Transformers$Spreader +java.lang.invoke.Transformers$Transformer +java.lang.invoke.Transformers$VarargsCollector +java.lang.invoke.WrongMethodTypeException +java.lang.ref.FinalizerReference +java.lang.ref.FinalizerReference$Sentinel +java.lang.ref.PhantomReference +java.lang.ref.Reference +java.lang.ref.ReferenceQueue +java.lang.ref.SoftReference +java.lang.ref.WeakReference +java.lang.reflect.AccessibleObject +java.lang.reflect.AnnotatedElement +java.lang.reflect.Array +java.lang.reflect.Constructor +java.lang.reflect.Executable +java.lang.reflect.Executable$GenericInfo +java.lang.reflect.Field +java.lang.reflect.GenericArrayType +java.lang.reflect.GenericDeclaration +java.lang.reflect.InvocationHandler +java.lang.reflect.InvocationTargetException +java.lang.reflect.MalformedParametersException +java.lang.reflect.Member +java.lang.reflect.Method +java.lang.reflect.Method$1 +java.lang.reflect.Modifier +java.lang.reflect.Parameter +java.lang.reflect.ParameterizedType +java.lang.reflect.Proxy +java.lang.reflect.Proxy$1 +java.lang.reflect.Proxy$Key1 +java.lang.reflect.Proxy$Key2 +java.lang.reflect.Proxy$KeyFactory +java.lang.reflect.Proxy$KeyX +java.lang.reflect.Proxy$ProxyClassFactory +java.lang.reflect.Type +java.lang.reflect.TypeVariable +java.lang.reflect.UndeclaredThrowableException +java.lang.reflect.WeakCache +java.lang.reflect.WeakCache$CacheKey +java.lang.reflect.WeakCache$CacheValue +java.lang.reflect.WeakCache$Factory +java.lang.reflect.WeakCache$LookupValue +java.lang.reflect.WeakCache$Value +java.lang.reflect.WildcardType +java.math.BigDecimal +java.math.BigInt +java.math.BigInteger +java.math.Conversion +java.math.Division +java.math.MathContext +java.math.Multiplication +java.math.NativeBN +java.math.RoundingMode +java.net.AbstractPlainDatagramSocketImpl +java.net.AbstractPlainSocketImpl +java.net.AddressCache +java.net.AddressCache$AddressCacheEntry +java.net.AddressCache$AddressCacheKey +java.net.ConnectException +java.net.CookieHandler +java.net.CookieManager +java.net.CookiePolicy +java.net.CookiePolicy$1 +java.net.CookiePolicy$2 +java.net.CookiePolicy$3 +java.net.CookieStore +java.net.DatagramPacket +java.net.DatagramSocket +java.net.DatagramSocket$1 +java.net.DatagramSocketImpl +java.net.DefaultDatagramSocketImplFactory +java.net.DefaultFileNameMap +java.net.DefaultInterface +java.net.FileNameMap +java.net.HttpURLConnection +java.net.IDN +java.net.InMemoryCookieStore +java.net.Inet4Address +java.net.Inet6Address +java.net.Inet6Address$Inet6AddressHolder +java.net.Inet6AddressImpl +java.net.InetAddress +java.net.InetAddress$1 +java.net.InetAddress$InetAddressHolder +java.net.InetAddressImpl +java.net.InetSocketAddress +java.net.InetSocketAddress$InetSocketAddressHolder +java.net.InterfaceAddress +java.net.JarURLConnection +java.net.MalformedURLException +java.net.MulticastSocket +java.net.NetworkInterface +java.net.NetworkInterface$1checkedAddresses +java.net.NoRouteToHostException +java.net.Parts +java.net.PlainDatagramSocketImpl +java.net.PlainSocketImpl +java.net.PortUnreachableException +java.net.ProtocolException +java.net.ProtocolFamily +java.net.Proxy +java.net.Proxy$Type +java.net.ProxySelector +java.net.ResponseCache +java.net.ServerSocket +java.net.Socket +java.net.Socket$1 +java.net.Socket$2 +java.net.Socket$3 +java.net.SocketAddress +java.net.SocketException +java.net.SocketImpl +java.net.SocketInputStream +java.net.SocketOptions +java.net.SocketOutputStream +java.net.SocketTimeoutException +java.net.SocksConsts +java.net.SocksSocketImpl +java.net.StandardProtocolFamily +java.net.URI +java.net.URI$Parser +java.net.URISyntaxException +java.net.URL +java.net.URLConnection +java.net.URLDecoder +java.net.URLEncoder +java.net.URLStreamHandler +java.net.URLStreamHandlerFactory +java.net.UnknownHostException +java.net.UnknownServiceException +java.nio.Bits +java.nio.Buffer +java.nio.BufferOverflowException +java.nio.BufferUnderflowException +java.nio.ByteBuffer +java.nio.ByteBufferAsCharBuffer +java.nio.ByteBufferAsDoubleBuffer +java.nio.ByteBufferAsFloatBuffer +java.nio.ByteBufferAsIntBuffer +java.nio.ByteBufferAsLongBuffer +java.nio.ByteBufferAsShortBuffer +java.nio.ByteOrder +java.nio.CharBuffer +java.nio.DirectByteBuffer +java.nio.DirectByteBuffer$MemoryRef +java.nio.DoubleBuffer +java.nio.FloatBuffer +java.nio.HeapByteBuffer +java.nio.HeapCharBuffer +java.nio.IntBuffer +java.nio.InvalidMarkException +java.nio.LongBuffer +java.nio.MappedByteBuffer +java.nio.NIOAccess +java.nio.NioUtils +java.nio.ReadOnlyBufferException +java.nio.ShortBuffer +java.nio.StringCharBuffer +java.nio.channels.AsynchronousCloseException +java.nio.channels.ByteChannel +java.nio.channels.CancelledKeyException +java.nio.channels.Channel +java.nio.channels.Channels +java.nio.channels.Channels$1 +java.nio.channels.ClosedByInterruptException +java.nio.channels.ClosedChannelException +java.nio.channels.DatagramChannel +java.nio.channels.FileChannel +java.nio.channels.FileChannel$MapMode +java.nio.channels.FileLock +java.nio.channels.GatheringByteChannel +java.nio.channels.InterruptibleChannel +java.nio.channels.MulticastChannel +java.nio.channels.NetworkChannel +java.nio.channels.NonWritableChannelException +java.nio.channels.OverlappingFileLockException +java.nio.channels.ReadableByteChannel +java.nio.channels.ScatteringByteChannel +java.nio.channels.SeekableByteChannel +java.nio.channels.SelectableChannel +java.nio.channels.SelectionKey +java.nio.channels.Selector +java.nio.channels.ServerSocketChannel +java.nio.channels.SocketChannel +java.nio.channels.WritableByteChannel +java.nio.channels.spi.AbstractInterruptibleChannel +java.nio.channels.spi.AbstractInterruptibleChannel$1 +java.nio.channels.spi.AbstractSelectableChannel +java.nio.channels.spi.AbstractSelectionKey +java.nio.channels.spi.AbstractSelector +java.nio.channels.spi.AbstractSelector$1 +java.nio.channels.spi.SelectorProvider +java.nio.channels.spi.SelectorProvider$1 +java.nio.charset.CharacterCodingException +java.nio.charset.Charset +java.nio.charset.CharsetDecoder +java.nio.charset.CharsetDecoderICU +java.nio.charset.CharsetEncoder +java.nio.charset.CharsetEncoderICU +java.nio.charset.CharsetICU +java.nio.charset.CoderResult +java.nio.charset.CoderResult$1 +java.nio.charset.CoderResult$2 +java.nio.charset.CoderResult$Cache +java.nio.charset.CodingErrorAction +java.nio.charset.IllegalCharsetNameException +java.nio.charset.StandardCharsets +java.nio.charset.UnsupportedCharsetException +java.nio.file.AccessMode +java.nio.file.CopyOption +java.nio.file.FileAlreadyExistsException +java.nio.file.FileSystem +java.nio.file.FileSystemException +java.nio.file.FileSystems +java.nio.file.FileSystems$DefaultFileSystemHolder +java.nio.file.FileSystems$DefaultFileSystemHolder$1 +java.nio.file.Files +java.nio.file.LinkOption +java.nio.file.NoSuchFileException +java.nio.file.OpenOption +java.nio.file.Path +java.nio.file.Paths +java.nio.file.StandardOpenOption +java.nio.file.Watchable +java.nio.file.attribute.AttributeView +java.nio.file.attribute.BasicFileAttributeView +java.nio.file.attribute.BasicFileAttributes +java.nio.file.attribute.FileAttribute +java.nio.file.attribute.FileAttributeView +java.nio.file.attribute.PosixFileAttributes +java.nio.file.spi.FileSystemProvider +java.security.AccessControlContext +java.security.AccessControlException +java.security.AccessController +java.security.AlgorithmConstraints +java.security.AlgorithmParameters +java.security.AlgorithmParametersSpi +java.security.BasicPermission +java.security.CodeSigner +java.security.CryptoPrimitive +java.security.DigestException +java.security.GeneralSecurityException +java.security.Guard +java.security.InvalidAlgorithmParameterException +java.security.InvalidKeyException +java.security.InvalidParameterException +java.security.Key +java.security.KeyException +java.security.KeyFactory +java.security.KeyFactorySpi +java.security.KeyManagementException +java.security.KeyPair +java.security.KeyPairGenerator +java.security.KeyPairGeneratorSpi +java.security.KeyStore +java.security.KeyStore$1 +java.security.KeyStoreException +java.security.KeyStoreSpi +java.security.MessageDigest +java.security.MessageDigest$Delegate +java.security.MessageDigestSpi +java.security.NoSuchAlgorithmException +java.security.NoSuchProviderException +java.security.Permission +java.security.PermissionCollection +java.security.Permissions +java.security.Principal +java.security.PrivateKey +java.security.PrivilegedAction +java.security.PrivilegedActionException +java.security.PrivilegedExceptionAction +java.security.ProtectionDomain +java.security.Provider +java.security.Provider$EngineDescription +java.security.Provider$Service +java.security.Provider$ServiceKey +java.security.Provider$UString +java.security.PublicKey +java.security.SecureRandom +java.security.SecureRandomSpi +java.security.Security +java.security.Signature +java.security.Signature$Delegate +java.security.SignatureException +java.security.SignatureSpi +java.security.UnrecoverableEntryException +java.security.UnrecoverableKeyException +java.security.cert.CRL +java.security.cert.CRLException +java.security.cert.CRLReason +java.security.cert.CertPath +java.security.cert.CertPathBuilderException +java.security.cert.CertPathChecker +java.security.cert.CertPathHelperImpl +java.security.cert.CertPathParameters +java.security.cert.CertPathValidator +java.security.cert.CertPathValidatorException +java.security.cert.CertPathValidatorResult +java.security.cert.CertPathValidatorSpi +java.security.cert.CertSelector +java.security.cert.CertStore +java.security.cert.CertStoreException +java.security.cert.CertStoreParameters +java.security.cert.CertStoreSpi +java.security.cert.Certificate +java.security.cert.CertificateEncodingException +java.security.cert.CertificateException +java.security.cert.CertificateExpiredException +java.security.cert.CertificateFactory +java.security.cert.CertificateFactorySpi +java.security.cert.CertificateNotYetValidException +java.security.cert.CertificateParsingException +java.security.cert.CollectionCertStoreParameters +java.security.cert.Extension +java.security.cert.PKIXCertPathChecker +java.security.cert.PKIXCertPathValidatorResult +java.security.cert.PKIXParameters +java.security.cert.PKIXRevocationChecker +java.security.cert.PKIXRevocationChecker$Option +java.security.cert.PolicyNode +java.security.cert.PolicyQualifierInfo +java.security.cert.TrustAnchor +java.security.cert.X509CertSelector +java.security.cert.X509Certificate +java.security.cert.X509Extension +java.security.interfaces.DSAKey +java.security.interfaces.DSAPublicKey +java.security.interfaces.ECKey +java.security.interfaces.ECPrivateKey +java.security.interfaces.ECPublicKey +java.security.interfaces.RSAKey +java.security.interfaces.RSAPrivateKey +java.security.interfaces.RSAPublicKey +java.security.spec.AlgorithmParameterSpec +java.security.spec.ECField +java.security.spec.ECFieldFp +java.security.spec.ECGenParameterSpec +java.security.spec.ECParameterSpec +java.security.spec.ECPoint +java.security.spec.ECPrivateKeySpec +java.security.spec.ECPublicKeySpec +java.security.spec.EllipticCurve +java.security.spec.EncodedKeySpec +java.security.spec.InvalidKeySpecException +java.security.spec.InvalidParameterSpecException +java.security.spec.KeySpec +java.security.spec.MGF1ParameterSpec +java.security.spec.PKCS8EncodedKeySpec +java.security.spec.RSAPrivateCrtKeySpec +java.security.spec.RSAPrivateKeySpec +java.security.spec.RSAPublicKeySpec +java.security.spec.X509EncodedKeySpec +java.sql.Timestamp +java.text.AttributedCharacterIterator$Attribute +java.text.Bidi +java.text.BreakIterator +java.text.CalendarBuilder +java.text.CharacterIterator +java.text.CollationKey +java.text.Collator +java.text.DateFormat +java.text.DateFormat$Field +java.text.DateFormatSymbols +java.text.DecimalFormat +java.text.DecimalFormatSymbols +java.text.DontCareFieldPosition +java.text.DontCareFieldPosition$1 +java.text.FieldPosition +java.text.FieldPosition$Delegate +java.text.Format +java.text.Format$Field +java.text.Format$FieldDelegate +java.text.IcuIteratorWrapper +java.text.MessageFormat +java.text.MessageFormat$Field +java.text.Normalizer +java.text.Normalizer$Form +java.text.NumberFormat +java.text.ParseException +java.text.ParsePosition +java.text.RuleBasedCollator +java.text.SimpleDateFormat +java.text.StringCharacterIterator +java.time.DateTimeException +java.time.format.DateTimeParseException +java.util.-$Lambda$4EqhxufgNKat19m0CB0-toH_lzo +java.util.-$Lambda$4EqhxufgNKat19m0CB0-toH_lzo$1 +java.util.-$Lambda$4EqhxufgNKat19m0CB0-toH_lzo$2 +java.util.-$Lambda$4EqhxufgNKat19m0CB0-toH_lzo$3 +java.util.-$Lambda$4EqhxufgNKat19m0CB0-toH_lzo$4 +java.util.-$Lambda$4EqhxufgNKat19m0CB0-toH_lzo$5 +java.util.-$Lambda$Hazqao1eYCE_pmZR5Jlrc2GvLhk +java.util.-$Lambda$aUGKT4ItCOku5-JSG-x8Aqj2pJw +java.util.-$Lambda$aUGKT4ItCOku5-JSG-x8Aqj2pJw$1 +java.util.-$Lambda$aUGKT4ItCOku5-JSG-x8Aqj2pJw$2 +java.util.-$Lambda$aUGKT4ItCOku5-JSG-x8Aqj2pJw$3 +java.util.AbstractCollection +java.util.AbstractList +java.util.AbstractList$Itr +java.util.AbstractList$ListItr +java.util.AbstractMap +java.util.AbstractMap$1 +java.util.AbstractMap$2 +java.util.AbstractMap$2$1 +java.util.AbstractMap$SimpleEntry +java.util.AbstractMap$SimpleImmutableEntry +java.util.AbstractQueue +java.util.AbstractSequentialList +java.util.AbstractSet +java.util.ArrayDeque +java.util.ArrayDeque$DeqIterator +java.util.ArrayDeque$DescendingIterator +java.util.ArrayList +java.util.ArrayList$ArrayListSpliterator +java.util.ArrayList$Itr +java.util.ArrayList$ListItr +java.util.ArrayList$SubList +java.util.ArrayList$SubList$1 +java.util.ArrayPrefixHelpers$CumulateTask +java.util.ArrayPrefixHelpers$DoubleCumulateTask +java.util.ArrayPrefixHelpers$IntCumulateTask +java.util.ArrayPrefixHelpers$LongCumulateTask +java.util.Arrays +java.util.Arrays$ArrayList +java.util.Arrays$NaturalOrder +java.util.ArraysParallelSortHelpers$FJByte$Sorter +java.util.ArraysParallelSortHelpers$FJChar$Sorter +java.util.ArraysParallelSortHelpers$FJDouble$Sorter +java.util.ArraysParallelSortHelpers$FJFloat$Sorter +java.util.ArraysParallelSortHelpers$FJInt$Sorter +java.util.ArraysParallelSortHelpers$FJLong$Sorter +java.util.ArraysParallelSortHelpers$FJObject$Sorter +java.util.ArraysParallelSortHelpers$FJShort$Sorter +java.util.Base64 +java.util.Base64$Decoder +java.util.Base64$Encoder +java.util.BitSet +java.util.Calendar +java.util.Collection +java.util.Collections +java.util.Collections$1 +java.util.Collections$2 +java.util.Collections$3 +java.util.Collections$AsLIFOQueue +java.util.Collections$CheckedCollection +java.util.Collections$CheckedList +java.util.Collections$CheckedMap +java.util.Collections$CheckedNavigableMap +java.util.Collections$CheckedNavigableSet +java.util.Collections$CheckedQueue +java.util.Collections$CheckedRandomAccessList +java.util.Collections$CheckedSet +java.util.Collections$CheckedSortedMap +java.util.Collections$CheckedSortedSet +java.util.Collections$CopiesList +java.util.Collections$EmptyEnumeration +java.util.Collections$EmptyIterator +java.util.Collections$EmptyList +java.util.Collections$EmptyListIterator +java.util.Collections$EmptyMap +java.util.Collections$EmptySet +java.util.Collections$ReverseComparator +java.util.Collections$ReverseComparator2 +java.util.Collections$SetFromMap +java.util.Collections$SingletonList +java.util.Collections$SingletonMap +java.util.Collections$SingletonSet +java.util.Collections$SynchronizedCollection +java.util.Collections$SynchronizedList +java.util.Collections$SynchronizedMap +java.util.Collections$SynchronizedNavigableMap +java.util.Collections$SynchronizedNavigableSet +java.util.Collections$SynchronizedRandomAccessList +java.util.Collections$SynchronizedSet +java.util.Collections$SynchronizedSortedMap +java.util.Collections$SynchronizedSortedSet +java.util.Collections$UnmodifiableCollection +java.util.Collections$UnmodifiableCollection$1 +java.util.Collections$UnmodifiableList +java.util.Collections$UnmodifiableList$1 +java.util.Collections$UnmodifiableMap +java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet +java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$1 +java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$UnmodifiableEntry +java.util.Collections$UnmodifiableNavigableMap +java.util.Collections$UnmodifiableNavigableMap$EmptyNavigableMap +java.util.Collections$UnmodifiableNavigableSet +java.util.Collections$UnmodifiableNavigableSet$EmptyNavigableSet +java.util.Collections$UnmodifiableRandomAccessList +java.util.Collections$UnmodifiableSet +java.util.Collections$UnmodifiableSortedMap +java.util.Collections$UnmodifiableSortedSet +java.util.ComparableTimSort +java.util.Comparator +java.util.Comparators$NaturalOrderComparator +java.util.Comparators$NullComparator +java.util.ConcurrentModificationException +java.util.Currency +java.util.Date +java.util.Deque +java.util.Dictionary +java.util.DualPivotQuicksort +java.util.EmptyStackException +java.util.EnumMap +java.util.EnumMap$1 +java.util.EnumMap$EntryIterator +java.util.EnumMap$EntryIterator$Entry +java.util.EnumMap$EntrySet +java.util.EnumMap$EnumMapIterator +java.util.EnumMap$KeyIterator +java.util.EnumMap$KeySet +java.util.EnumMap$ValueIterator +java.util.EnumMap$Values +java.util.EnumSet +java.util.EnumSet$SerializationProxy +java.util.Enumeration +java.util.EventListener +java.util.FormatFlagsConversionMismatchException +java.util.Formattable +java.util.Formatter +java.util.Formatter$Conversion +java.util.Formatter$DateTime +java.util.Formatter$FixedString +java.util.Formatter$Flags +java.util.Formatter$FormatSpecifier +java.util.Formatter$FormatSpecifierParser +java.util.Formatter$FormatString +java.util.FormatterClosedException +java.util.GregorianCalendar +java.util.HashMap +java.util.HashMap$EntryIterator +java.util.HashMap$EntrySet +java.util.HashMap$HashIterator +java.util.HashMap$KeyIterator +java.util.HashMap$KeySet +java.util.HashMap$Node +java.util.HashMap$TreeNode +java.util.HashMap$ValueIterator +java.util.HashMap$Values +java.util.HashSet +java.util.Hashtable +java.util.Hashtable$EntrySet +java.util.Hashtable$Enumerator +java.util.Hashtable$HashtableEntry +java.util.Hashtable$KeySet +java.util.Hashtable$ValueCollection +java.util.IdentityHashMap +java.util.IdentityHashMap$EntryIterator +java.util.IdentityHashMap$EntryIterator$Entry +java.util.IdentityHashMap$EntrySet +java.util.IdentityHashMap$IdentityHashMapIterator +java.util.IdentityHashMap$KeyIterator +java.util.IdentityHashMap$KeySet +java.util.IdentityHashMap$ValueIterator +java.util.IdentityHashMap$Values +java.util.IllegalFormatException +java.util.IllformedLocaleException +java.util.Iterator +java.util.JumboEnumSet +java.util.JumboEnumSet$EnumSetIterator +java.util.LinkedHashMap +java.util.LinkedHashMap$LinkedEntryIterator +java.util.LinkedHashMap$LinkedEntrySet +java.util.LinkedHashMap$LinkedHashIterator +java.util.LinkedHashMap$LinkedHashMapEntry +java.util.LinkedHashMap$LinkedKeyIterator +java.util.LinkedHashMap$LinkedKeySet +java.util.LinkedHashMap$LinkedValueIterator +java.util.LinkedHashMap$LinkedValues +java.util.LinkedHashSet +java.util.LinkedList +java.util.LinkedList$DescendingIterator +java.util.LinkedList$ListItr +java.util.LinkedList$Node +java.util.List +java.util.ListIterator +java.util.Locale +java.util.Locale$Builder +java.util.Locale$Cache +java.util.Locale$Category +java.util.Locale$FilteringMode +java.util.Locale$LanguageRange +java.util.Locale$LocaleKey +java.util.Locale$NoImagePreloadHolder +java.util.Map +java.util.Map$Entry +java.util.MissingFormatArgumentException +java.util.MissingResourceException +java.util.NavigableMap +java.util.NavigableSet +java.util.NoSuchElementException +java.util.Objects +java.util.Observable +java.util.Observer +java.util.Optional +java.util.PrimitiveIterator +java.util.PrimitiveIterator$OfInt +java.util.PriorityQueue +java.util.PriorityQueue$Itr +java.util.Properties +java.util.Properties$LineReader +java.util.PropertyResourceBundle +java.util.Queue +java.util.Random +java.util.RandomAccess +java.util.RandomAccessSubList +java.util.RegularEnumSet +java.util.RegularEnumSet$EnumSetIterator +java.util.ResourceBundle +java.util.ResourceBundle$1 +java.util.ResourceBundle$BundleReference +java.util.ResourceBundle$CacheKey +java.util.ResourceBundle$CacheKeyReference +java.util.ResourceBundle$Control +java.util.ResourceBundle$Control$1 +java.util.ResourceBundle$Control$CandidateListCache +java.util.ResourceBundle$LoaderReference +java.util.Scanner +java.util.Scanner$1 +java.util.ServiceConfigurationError +java.util.ServiceLoader +java.util.ServiceLoader$1 +java.util.ServiceLoader$LazyIterator +java.util.Set +java.util.SimpleTimeZone +java.util.SortedMap +java.util.SortedSet +java.util.Spliterator +java.util.Spliterator$OfDouble +java.util.Spliterator$OfInt +java.util.Spliterator$OfLong +java.util.Spliterator$OfPrimitive +java.util.Spliterators +java.util.Spliterators$EmptySpliterator +java.util.Spliterators$EmptySpliterator$OfDouble +java.util.Spliterators$EmptySpliterator$OfInt +java.util.Spliterators$EmptySpliterator$OfLong +java.util.Spliterators$EmptySpliterator$OfRef +java.util.Spliterators$IntArraySpliterator +java.util.Spliterators$IteratorSpliterator +java.util.Stack +java.util.StringJoiner +java.util.StringTokenizer +java.util.SubList +java.util.SubList$1 +java.util.TaskQueue +java.util.TimSort +java.util.TimeZone +java.util.Timer +java.util.Timer$1 +java.util.TimerTask +java.util.TimerThread +java.util.TreeMap +java.util.TreeMap$AscendingSubMap +java.util.TreeMap$AscendingSubMap$AscendingEntrySetView +java.util.TreeMap$EntryIterator +java.util.TreeMap$EntrySet +java.util.TreeMap$KeyIterator +java.util.TreeMap$KeySet +java.util.TreeMap$NavigableSubMap +java.util.TreeMap$NavigableSubMap$EntrySetView +java.util.TreeMap$NavigableSubMap$SubMapEntryIterator +java.util.TreeMap$NavigableSubMap$SubMapIterator +java.util.TreeMap$NavigableSubMap$SubMapKeyIterator +java.util.TreeMap$PrivateEntryIterator +java.util.TreeMap$TreeMapEntry +java.util.TreeMap$ValueIterator +java.util.TreeMap$Values +java.util.TreeSet +java.util.UUID +java.util.UUID$Holder +java.util.UnknownFormatConversionException +java.util.Vector +java.util.Vector$1 +java.util.Vector$Itr +java.util.WeakHashMap +java.util.WeakHashMap$Entry +java.util.WeakHashMap$EntrySet +java.util.WeakHashMap$HashIterator +java.util.WeakHashMap$KeyIterator +java.util.WeakHashMap$KeySet +java.util.WeakHashMap$ValueIterator +java.util.WeakHashMap$Values +java.util.concurrent.-$Lambda$xR9BLpu6SifNikvFgr4lEiECBsk +java.util.concurrent.AbstractExecutorService +java.util.concurrent.ArrayBlockingQueue +java.util.concurrent.BlockingDeque +java.util.concurrent.BlockingQueue +java.util.concurrent.Callable +java.util.concurrent.CancellationException +java.util.concurrent.CompletableFuture +java.util.concurrent.CompletableFuture$AltResult +java.util.concurrent.CompletableFuture$AsynchronousCompletionTask +java.util.concurrent.CompletableFuture$Completion +java.util.concurrent.CompletionStage +java.util.concurrent.ConcurrentHashMap +java.util.concurrent.ConcurrentHashMap$BaseIterator +java.util.concurrent.ConcurrentHashMap$BulkTask +java.util.concurrent.ConcurrentHashMap$CollectionView +java.util.concurrent.ConcurrentHashMap$CounterCell +java.util.concurrent.ConcurrentHashMap$EntryIterator +java.util.concurrent.ConcurrentHashMap$EntrySetView +java.util.concurrent.ConcurrentHashMap$ForEachEntryTask +java.util.concurrent.ConcurrentHashMap$ForEachKeyTask +java.util.concurrent.ConcurrentHashMap$ForEachMappingTask +java.util.concurrent.ConcurrentHashMap$ForEachTransformedEntryTask +java.util.concurrent.ConcurrentHashMap$ForEachTransformedKeyTask +java.util.concurrent.ConcurrentHashMap$ForEachTransformedMappingTask +java.util.concurrent.ConcurrentHashMap$ForEachTransformedValueTask +java.util.concurrent.ConcurrentHashMap$ForEachValueTask +java.util.concurrent.ConcurrentHashMap$ForwardingNode +java.util.concurrent.ConcurrentHashMap$KeyIterator +java.util.concurrent.ConcurrentHashMap$KeySetView +java.util.concurrent.ConcurrentHashMap$KeySpliterator +java.util.concurrent.ConcurrentHashMap$MapEntry +java.util.concurrent.ConcurrentHashMap$MapReduceEntriesTask +java.util.concurrent.ConcurrentHashMap$MapReduceEntriesToDoubleTask +java.util.concurrent.ConcurrentHashMap$MapReduceEntriesToIntTask +java.util.concurrent.ConcurrentHashMap$MapReduceEntriesToLongTask +java.util.concurrent.ConcurrentHashMap$MapReduceKeysTask +java.util.concurrent.ConcurrentHashMap$MapReduceKeysToDoubleTask +java.util.concurrent.ConcurrentHashMap$MapReduceKeysToIntTask +java.util.concurrent.ConcurrentHashMap$MapReduceKeysToLongTask +java.util.concurrent.ConcurrentHashMap$MapReduceMappingsTask +java.util.concurrent.ConcurrentHashMap$MapReduceMappingsToDoubleTask +java.util.concurrent.ConcurrentHashMap$MapReduceMappingsToIntTask +java.util.concurrent.ConcurrentHashMap$MapReduceMappingsToLongTask +java.util.concurrent.ConcurrentHashMap$MapReduceValuesTask +java.util.concurrent.ConcurrentHashMap$MapReduceValuesToDoubleTask +java.util.concurrent.ConcurrentHashMap$MapReduceValuesToIntTask +java.util.concurrent.ConcurrentHashMap$MapReduceValuesToLongTask +java.util.concurrent.ConcurrentHashMap$Node +java.util.concurrent.ConcurrentHashMap$ReduceEntriesTask +java.util.concurrent.ConcurrentHashMap$ReduceKeysTask +java.util.concurrent.ConcurrentHashMap$ReduceValuesTask +java.util.concurrent.ConcurrentHashMap$ReservationNode +java.util.concurrent.ConcurrentHashMap$SearchEntriesTask +java.util.concurrent.ConcurrentHashMap$SearchKeysTask +java.util.concurrent.ConcurrentHashMap$SearchMappingsTask +java.util.concurrent.ConcurrentHashMap$SearchValuesTask +java.util.concurrent.ConcurrentHashMap$Segment +java.util.concurrent.ConcurrentHashMap$Traverser +java.util.concurrent.ConcurrentHashMap$TreeBin +java.util.concurrent.ConcurrentHashMap$TreeNode +java.util.concurrent.ConcurrentHashMap$ValueIterator +java.util.concurrent.ConcurrentHashMap$ValuesView +java.util.concurrent.ConcurrentLinkedDeque +java.util.concurrent.ConcurrentLinkedDeque$Node +java.util.concurrent.ConcurrentLinkedQueue +java.util.concurrent.ConcurrentLinkedQueue$Itr +java.util.concurrent.ConcurrentLinkedQueue$Node +java.util.concurrent.ConcurrentMap +java.util.concurrent.ConcurrentNavigableMap +java.util.concurrent.ConcurrentSkipListMap +java.util.concurrent.ConcurrentSkipListMap$HeadIndex +java.util.concurrent.ConcurrentSkipListMap$Index +java.util.concurrent.ConcurrentSkipListMap$Iter +java.util.concurrent.ConcurrentSkipListMap$Node +java.util.concurrent.ConcurrentSkipListMap$ValueIterator +java.util.concurrent.ConcurrentSkipListMap$Values +java.util.concurrent.CopyOnWriteArrayList +java.util.concurrent.CopyOnWriteArrayList$COWIterator +java.util.concurrent.CopyOnWriteArraySet +java.util.concurrent.CountDownLatch +java.util.concurrent.CountDownLatch$Sync +java.util.concurrent.CountedCompleter +java.util.concurrent.DelayQueue +java.util.concurrent.Delayed +java.util.concurrent.ExecutionException +java.util.concurrent.Executor +java.util.concurrent.ExecutorService +java.util.concurrent.Executors +java.util.concurrent.Executors$DefaultThreadFactory +java.util.concurrent.Executors$DelegatedExecutorService +java.util.concurrent.Executors$DelegatedScheduledExecutorService +java.util.concurrent.Executors$FinalizableDelegatedExecutorService +java.util.concurrent.Executors$RunnableAdapter +java.util.concurrent.ForkJoinPool +java.util.concurrent.ForkJoinPool$1 +java.util.concurrent.ForkJoinPool$DefaultForkJoinWorkerThreadFactory +java.util.concurrent.ForkJoinPool$ForkJoinWorkerThreadFactory +java.util.concurrent.ForkJoinTask +java.util.concurrent.ForkJoinTask$ExceptionNode +java.util.concurrent.Future +java.util.concurrent.FutureTask +java.util.concurrent.FutureTask$WaitNode +java.util.concurrent.LinkedBlockingDeque +java.util.concurrent.LinkedBlockingDeque$AbstractItr +java.util.concurrent.LinkedBlockingDeque$Itr +java.util.concurrent.LinkedBlockingDeque$Node +java.util.concurrent.LinkedBlockingQueue +java.util.concurrent.LinkedBlockingQueue$Itr +java.util.concurrent.LinkedBlockingQueue$Node +java.util.concurrent.PriorityBlockingQueue +java.util.concurrent.RejectedExecutionException +java.util.concurrent.RejectedExecutionHandler +java.util.concurrent.RunnableFuture +java.util.concurrent.RunnableScheduledFuture +java.util.concurrent.ScheduledExecutorService +java.util.concurrent.ScheduledFuture +java.util.concurrent.ScheduledThreadPoolExecutor +java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue +java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask +java.util.concurrent.Semaphore +java.util.concurrent.Semaphore$NonfairSync +java.util.concurrent.Semaphore$Sync +java.util.concurrent.SynchronousQueue +java.util.concurrent.SynchronousQueue$TransferQueue +java.util.concurrent.SynchronousQueue$TransferStack +java.util.concurrent.SynchronousQueue$TransferStack$SNode +java.util.concurrent.SynchronousQueue$Transferer +java.util.concurrent.ThreadFactory +java.util.concurrent.ThreadLocalRandom +java.util.concurrent.ThreadLocalRandom$1 +java.util.concurrent.ThreadPoolExecutor +java.util.concurrent.ThreadPoolExecutor$AbortPolicy +java.util.concurrent.ThreadPoolExecutor$DiscardOldestPolicy +java.util.concurrent.ThreadPoolExecutor$DiscardPolicy +java.util.concurrent.ThreadPoolExecutor$Worker +java.util.concurrent.TimeUnit +java.util.concurrent.TimeUnit$1 +java.util.concurrent.TimeUnit$2 +java.util.concurrent.TimeUnit$3 +java.util.concurrent.TimeUnit$4 +java.util.concurrent.TimeUnit$5 +java.util.concurrent.TimeUnit$6 +java.util.concurrent.TimeUnit$7 +java.util.concurrent.TimeoutException +java.util.concurrent.atomic.AtomicBoolean +java.util.concurrent.atomic.AtomicInteger +java.util.concurrent.atomic.AtomicIntegerArray +java.util.concurrent.atomic.AtomicIntegerFieldUpdater +java.util.concurrent.atomic.AtomicIntegerFieldUpdater$AtomicIntegerFieldUpdaterImpl +java.util.concurrent.atomic.AtomicIntegerFieldUpdater$AtomicIntegerFieldUpdaterImpl$1 +java.util.concurrent.atomic.AtomicLong +java.util.concurrent.atomic.AtomicLongArray +java.util.concurrent.atomic.AtomicReference +java.util.concurrent.atomic.AtomicReferenceArray +java.util.concurrent.atomic.AtomicReferenceFieldUpdater +java.util.concurrent.atomic.AtomicReferenceFieldUpdater$AtomicReferenceFieldUpdaterImpl +java.util.concurrent.locks.AbstractOwnableSynchronizer +java.util.concurrent.locks.AbstractQueuedSynchronizer +java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject +java.util.concurrent.locks.AbstractQueuedSynchronizer$Node +java.util.concurrent.locks.Condition +java.util.concurrent.locks.Lock +java.util.concurrent.locks.LockSupport +java.util.concurrent.locks.ReadWriteLock +java.util.concurrent.locks.ReentrantLock +java.util.concurrent.locks.ReentrantLock$FairSync +java.util.concurrent.locks.ReentrantLock$NonfairSync +java.util.concurrent.locks.ReentrantLock$Sync +java.util.concurrent.locks.ReentrantReadWriteLock +java.util.concurrent.locks.ReentrantReadWriteLock$FairSync +java.util.concurrent.locks.ReentrantReadWriteLock$NonfairSync +java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock +java.util.concurrent.locks.ReentrantReadWriteLock$Sync +java.util.concurrent.locks.ReentrantReadWriteLock$Sync$HoldCounter +java.util.concurrent.locks.ReentrantReadWriteLock$Sync$ThreadLocalHoldCounter +java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock +java.util.function.-$Lambda$1MZdIZ-DL_fjy9l0o8IMJk57T2g +java.util.function.-$Lambda$VGDeaUHZQIZywZW2ttlyhwk3Cmk +java.util.function.-$Lambda$VGDeaUHZQIZywZW2ttlyhwk3Cmk$1 +java.util.function.BiConsumer +java.util.function.BiFunction +java.util.function.BinaryOperator +java.util.function.Consumer +java.util.function.DoubleBinaryOperator +java.util.function.DoubleUnaryOperator +java.util.function.Function +java.util.function.IntBinaryOperator +java.util.function.IntConsumer +java.util.function.IntFunction +java.util.function.IntToDoubleFunction +java.util.function.IntToLongFunction +java.util.function.IntUnaryOperator +java.util.function.LongBinaryOperator +java.util.function.LongConsumer +java.util.function.LongUnaryOperator +java.util.function.Predicate +java.util.function.Supplier +java.util.function.ToDoubleBiFunction +java.util.function.ToDoubleFunction +java.util.function.ToIntBiFunction +java.util.function.ToIntFunction +java.util.function.ToLongBiFunction +java.util.function.ToLongFunction +java.util.function.UnaryOperator +java.util.jar.Attributes +java.util.jar.Attributes$Name +java.util.jar.JarEntry +java.util.jar.JarFile +java.util.jar.JarFile$JarEntryIterator +java.util.jar.JarFile$JarFileEntry +java.util.jar.JarVerifier +java.util.jar.JarVerifier$1 +java.util.jar.JarVerifier$VerifierStream +java.util.jar.Manifest +java.util.jar.Manifest$FastInputStream +java.util.logging.ErrorManager +java.util.logging.FileHandler +java.util.logging.FileHandler$InitializationErrorManager +java.util.logging.FileHandler$MeteredStream +java.util.logging.Filter +java.util.logging.Formatter +java.util.logging.Handler +java.util.logging.Level +java.util.logging.Level$KnownLevel +java.util.logging.LogManager +java.util.logging.LogManager$1 +java.util.logging.LogManager$2 +java.util.logging.LogManager$3 +java.util.logging.LogManager$5 +java.util.logging.LogManager$Cleaner +java.util.logging.LogManager$LogNode +java.util.logging.LogManager$LoggerContext +java.util.logging.LogManager$LoggerContext$1 +java.util.logging.LogManager$LoggerWeakRef +java.util.logging.LogManager$RootLogger +java.util.logging.LogManager$SystemLoggerContext +java.util.logging.LogRecord +java.util.logging.Logger +java.util.logging.Logger$1 +java.util.logging.Logger$LoggerBundle +java.util.logging.LoggingPermission +java.util.logging.LoggingProxyImpl +java.util.logging.SimpleFormatter +java.util.logging.StreamHandler +java.util.logging.XMLFormatter +java.util.prefs.AbstractPreferences +java.util.prefs.BackingStoreException +java.util.prefs.FileSystemPreferences +java.util.prefs.FileSystemPreferences$1 +java.util.prefs.FileSystemPreferencesFactory +java.util.prefs.Preferences +java.util.prefs.PreferencesFactory +java.util.regex.MatchResult +java.util.regex.Matcher +java.util.regex.Matcher$OffsetBasedMatchResult +java.util.regex.Pattern +java.util.regex.PatternSyntaxException +java.util.stream.-$Lambda$DJvCeprCIGMk0JvfSkTmQUmEYKA$1 +java.util.stream.-$Lambda$QgGTJrv63_zzBbeGjswm_UMqEbo$12 +java.util.stream.-$Lambda$QgGTJrv63_zzBbeGjswm_UMqEbo$5 +java.util.stream.-$Lambda$QgGTJrv63_zzBbeGjswm_UMqEbo$6 +java.util.stream.-$Lambda$RYrQKhHyGc-mMxiERR98xxRAWkA$5 +java.util.stream.-$Lambda$ioGbka_-VkWTFjRjTt8T4zzsxgk$3 +java.util.stream.-$Lambda$ioGbka_-VkWTFjRjTt8T4zzsxgk$7 +java.util.stream.-$Lambda$qTstLJg88fs2C3g6LH-R51vCVP0$21 +java.util.stream.-$Lambda$qTstLJg88fs2C3g6LH-R51vCVP0$22 +java.util.stream.-$Lambda$qTstLJg88fs2C3g6LH-R51vCVP0$26 +java.util.stream.-$Lambda$qTstLJg88fs2C3g6LH-R51vCVP0$4 +java.util.stream.-$Lambda$qTstLJg88fs2C3g6LH-R51vCVP0$5 +java.util.stream.-$Lambda$qTstLJg88fs2C3g6LH-R51vCVP0$51 +java.util.stream.-$Lambda$qTstLJg88fs2C3g6LH-R51vCVP0$54 +java.util.stream.-$Lambda$qTstLJg88fs2C3g6LH-R51vCVP0$67 +java.util.stream.-$Lambda$qTstLJg88fs2C3g6LH-R51vCVP0$83 +java.util.stream.AbstractPipeline +java.util.stream.AbstractSpinedBuffer +java.util.stream.BaseStream +java.util.stream.Collector +java.util.stream.Collector$Characteristics +java.util.stream.Collectors +java.util.stream.Collectors$CollectorImpl +java.util.stream.DistinctOps +java.util.stream.DistinctOps$1 +java.util.stream.DistinctOps$1$2 +java.util.stream.DoubleStream +java.util.stream.FindOps +java.util.stream.FindOps$FindOp +java.util.stream.FindOps$FindSink +java.util.stream.FindOps$FindSink$OfRef +java.util.stream.ForEachOps +java.util.stream.ForEachOps$ForEachOp +java.util.stream.ForEachOps$ForEachOp$OfRef +java.util.stream.IntPipeline +java.util.stream.IntPipeline$4 +java.util.stream.IntPipeline$4$1 +java.util.stream.IntPipeline$Head +java.util.stream.IntPipeline$StatelessOp +java.util.stream.IntStream +java.util.stream.LongPipeline +java.util.stream.LongPipeline$StatelessOp +java.util.stream.LongStream +java.util.stream.Node +java.util.stream.Node$Builder +java.util.stream.Node$Builder$OfInt +java.util.stream.Node$OfDouble +java.util.stream.Node$OfInt +java.util.stream.Node$OfLong +java.util.stream.Node$OfPrimitive +java.util.stream.Nodes +java.util.stream.Nodes$EmptyNode +java.util.stream.Nodes$EmptyNode$OfDouble +java.util.stream.Nodes$EmptyNode$OfInt +java.util.stream.Nodes$EmptyNode$OfLong +java.util.stream.Nodes$EmptyNode$OfRef +java.util.stream.Nodes$IntSpinedNodeBuilder +java.util.stream.PipelineHelper +java.util.stream.ReduceOps +java.util.stream.ReduceOps$3 +java.util.stream.ReduceOps$3ReducingSink +java.util.stream.ReduceOps$8 +java.util.stream.ReduceOps$8ReducingSink +java.util.stream.ReduceOps$AccumulatingSink +java.util.stream.ReduceOps$Box +java.util.stream.ReduceOps$ReduceOp +java.util.stream.ReferencePipeline +java.util.stream.ReferencePipeline$2 +java.util.stream.ReferencePipeline$2$1 +java.util.stream.ReferencePipeline$3 +java.util.stream.ReferencePipeline$3$1 +java.util.stream.ReferencePipeline$4 +java.util.stream.ReferencePipeline$4$1 +java.util.stream.ReferencePipeline$5 +java.util.stream.ReferencePipeline$5$1 +java.util.stream.ReferencePipeline$Head +java.util.stream.ReferencePipeline$StatefulOp +java.util.stream.ReferencePipeline$StatelessOp +java.util.stream.Sink +java.util.stream.Sink$ChainedInt +java.util.stream.Sink$ChainedReference +java.util.stream.Sink$OfInt +java.util.stream.Sink$OfLong +java.util.stream.SliceOps +java.util.stream.SliceOps$1 +java.util.stream.SliceOps$1$1 +java.util.stream.SpinedBuffer$OfInt +java.util.stream.SpinedBuffer$OfPrimitive +java.util.stream.Stream +java.util.stream.StreamOpFlag +java.util.stream.StreamOpFlag$MaskBuilder +java.util.stream.StreamOpFlag$Type +java.util.stream.StreamShape +java.util.stream.StreamSpliterators$InfiniteSupplyingSpliterator +java.util.stream.StreamSpliterators$InfiniteSupplyingSpliterator$OfRef +java.util.stream.StreamSupport +java.util.stream.TerminalOp +java.util.stream.TerminalSink +java.util.zip.Adler32 +java.util.zip.CRC32 +java.util.zip.CheckedInputStream +java.util.zip.Checksum +java.util.zip.DataFormatException +java.util.zip.Deflater +java.util.zip.DeflaterOutputStream +java.util.zip.GZIPInputStream +java.util.zip.GZIPInputStream$1 +java.util.zip.GZIPOutputStream +java.util.zip.Inflater +java.util.zip.InflaterInputStream +java.util.zip.ZStreamRef +java.util.zip.ZipCoder +java.util.zip.ZipConstants +java.util.zip.ZipEntry +java.util.zip.ZipException +java.util.zip.ZipFile +java.util.zip.ZipFile$ZipEntryIterator +java.util.zip.ZipFile$ZipFileInflaterInputStream +java.util.zip.ZipFile$ZipFileInputStream +java.util.zip.ZipInputStream +java.util.zip.ZipUtils +javax.crypto.BadPaddingException +javax.crypto.Cipher +javax.crypto.Cipher$CipherSpiAndProvider +javax.crypto.Cipher$InitParams +javax.crypto.Cipher$InitType +javax.crypto.Cipher$NeedToSet +javax.crypto.Cipher$SpiAndProviderUpdater +javax.crypto.Cipher$Transform +javax.crypto.CipherSpi +javax.crypto.IllegalBlockSizeException +javax.crypto.JarVerifier +javax.crypto.JceSecurity +javax.crypto.JceSecurity$1 +javax.crypto.KeyGenerator +javax.crypto.KeyGeneratorSpi +javax.crypto.Mac +javax.crypto.MacSpi +javax.crypto.NoSuchPaddingException +javax.crypto.NullCipher +javax.crypto.SecretKey +javax.crypto.ShortBufferException +javax.crypto.spec.GCMParameterSpec +javax.crypto.spec.IvParameterSpec +javax.crypto.spec.OAEPParameterSpec +javax.crypto.spec.PBEParameterSpec +javax.crypto.spec.PSource +javax.crypto.spec.PSource$PSpecified +javax.crypto.spec.SecretKeySpec +javax.microedition.khronos.egl.EGL +javax.microedition.khronos.egl.EGL10 +javax.microedition.khronos.egl.EGLConfig +javax.microedition.khronos.egl.EGLContext +javax.microedition.khronos.egl.EGLDisplay +javax.microedition.khronos.egl.EGLSurface +javax.microedition.khronos.opengles.GL +javax.microedition.khronos.opengles.GL10 +javax.microedition.khronos.opengles.GL10Ext +javax.microedition.khronos.opengles.GL11 +javax.microedition.khronos.opengles.GL11Ext +javax.microedition.khronos.opengles.GL11ExtensionPack +javax.net.DefaultSocketFactory +javax.net.ServerSocketFactory +javax.net.SocketFactory +javax.net.ssl.ExtendedSSLSession +javax.net.ssl.HandshakeCompletedListener +javax.net.ssl.HostnameVerifier +javax.net.ssl.HttpsURLConnection +javax.net.ssl.KeyManager +javax.net.ssl.KeyManagerFactory +javax.net.ssl.KeyManagerFactory$1 +javax.net.ssl.KeyManagerFactorySpi +javax.net.ssl.SNIHostName +javax.net.ssl.SNIServerName +javax.net.ssl.SSLContext +javax.net.ssl.SSLContextSpi +javax.net.ssl.SSLEngine +javax.net.ssl.SSLException +javax.net.ssl.SSLParameters +javax.net.ssl.SSLPeerUnverifiedException +javax.net.ssl.SSLProtocolException +javax.net.ssl.SSLServerSocketFactory +javax.net.ssl.SSLSession +javax.net.ssl.SSLSessionContext +javax.net.ssl.SSLSocket +javax.net.ssl.SSLSocketFactory +javax.net.ssl.SSLSocketFactory$1 +javax.net.ssl.TrustManager +javax.net.ssl.TrustManagerFactory +javax.net.ssl.TrustManagerFactory$1 +javax.net.ssl.TrustManagerFactorySpi +javax.net.ssl.X509ExtendedKeyManager +javax.net.ssl.X509ExtendedTrustManager +javax.net.ssl.X509KeyManager +javax.net.ssl.X509TrustManager +javax.security.auth.Destroyable +javax.security.auth.callback.UnsupportedCallbackException +javax.security.auth.x500.X500Principal +javax.security.cert.Certificate +javax.security.cert.CertificateEncodingException +javax.security.cert.CertificateException +javax.security.cert.X509Certificate +javax.sip.SipException +javax.xml.parsers.ParserConfigurationException +javax.xml.parsers.SAXParser +javax.xml.parsers.SAXParserFactory +javax.xml.transform.TransformerConfigurationException +javax.xml.transform.TransformerException +junit.framework.Assert +libcore.icu.CollationKeyICU +libcore.icu.DateIntervalFormat +libcore.icu.DateUtilsBridge +libcore.icu.ICU +libcore.icu.LocaleData +libcore.icu.NativeConverter +libcore.icu.RelativeDateTimeFormatter +libcore.icu.RelativeDateTimeFormatter$FormatterCache +libcore.icu.TimeZoneNames +libcore.icu.TimeZoneNames$1 +libcore.icu.TimeZoneNames$ZoneStringsCache +libcore.internal.StringPool +libcore.io.AsynchronousCloseMonitor +libcore.io.BlockGuardOs +libcore.io.BufferIterator +libcore.io.ClassPathURLStreamHandler +libcore.io.ClassPathURLStreamHandler$ClassPathURLConnection +libcore.io.ClassPathURLStreamHandler$ClassPathURLConnection$1 +libcore.io.DropBox +libcore.io.DropBox$DefaultReporter +libcore.io.DropBox$Reporter +libcore.io.EventLogger +libcore.io.EventLogger$DefaultReporter +libcore.io.EventLogger$Reporter +libcore.io.ForwardingOs +libcore.io.IoBridge +libcore.io.IoTracker +libcore.io.IoTracker$Mode +libcore.io.IoUtils +libcore.io.IoUtils$FileReader +libcore.io.Libcore +libcore.io.Linux +libcore.io.Memory +libcore.io.MemoryMappedFile +libcore.io.NioBufferIterator +libcore.io.Os +libcore.io.Streams +libcore.math.MathUtils +libcore.net.MimeUtils +libcore.net.NetworkSecurityPolicy +libcore.net.NetworkSecurityPolicy$DefaultNetworkSecurityPolicy +libcore.net.UriCodec +libcore.net.event.NetworkEventDispatcher +libcore.net.event.NetworkEventListener +libcore.reflect.AnnotatedElements +libcore.reflect.AnnotationFactory +libcore.reflect.AnnotationMember +libcore.reflect.AnnotationMember$DefaultValues +libcore.reflect.GenericArrayTypeImpl +libcore.reflect.GenericSignatureParser +libcore.reflect.ListOfTypes +libcore.reflect.ListOfVariables +libcore.reflect.ParameterizedTypeImpl +libcore.reflect.TypeVariableImpl +libcore.reflect.Types +libcore.util.BasicLruCache +libcore.util.CharsetUtils +libcore.util.CollectionUtils +libcore.util.EmptyArray +libcore.util.HexEncoding +libcore.util.NativeAllocationRegistry +libcore.util.NativeAllocationRegistry$CleanerRunner +libcore.util.NativeAllocationRegistry$CleanerThunk +libcore.util.Objects +libcore.util.TimeZoneDataFiles +libcore.util.ZoneInfo +libcore.util.ZoneInfo$CheckedArithmeticException +libcore.util.ZoneInfo$OffsetInterval +libcore.util.ZoneInfo$WallTime +libcore.util.ZoneInfoDB +libcore.util.ZoneInfoDB$TzData +libcore.util.ZoneInfoDB$TzData$1 +org.apache.commons.logging.Log +org.apache.commons.logging.LogFactory +org.apache.commons.logging.impl.Jdk14Logger +org.apache.commons.logging.impl.WeakHashtable +org.apache.harmony.dalvik.NativeTestTarget +org.apache.harmony.dalvik.ddmc.Chunk +org.apache.harmony.dalvik.ddmc.ChunkHandler +org.apache.harmony.dalvik.ddmc.DdmServer +org.apache.harmony.dalvik.ddmc.DdmVmInternal +org.apache.harmony.luni.internal.util.TimezoneGetter +org.apache.harmony.xml.ExpatAttributes +org.apache.harmony.xml.ExpatException +org.apache.harmony.xml.ExpatParser +org.apache.harmony.xml.ExpatParser$CurrentAttributes +org.apache.harmony.xml.ExpatParser$ExpatLocator +org.apache.harmony.xml.ExpatReader +org.apache.harmony.xml.parsers.SAXParserFactoryImpl +org.apache.harmony.xml.parsers.SAXParserImpl +org.apache.http.ConnectionReuseStrategy +org.apache.http.FormattedHeader +org.apache.http.Header +org.apache.http.HeaderElement +org.apache.http.HeaderElementIterator +org.apache.http.HeaderIterator +org.apache.http.HttpClientConnection +org.apache.http.HttpConnection +org.apache.http.HttpConnectionMetrics +org.apache.http.HttpEntity +org.apache.http.HttpEntityEnclosingRequest +org.apache.http.HttpException +org.apache.http.HttpHost +org.apache.http.HttpInetConnection +org.apache.http.HttpMessage +org.apache.http.HttpRequest +org.apache.http.HttpRequestFactory +org.apache.http.HttpRequestInterceptor +org.apache.http.HttpResponse +org.apache.http.HttpResponseFactory +org.apache.http.HttpResponseInterceptor +org.apache.http.HttpServerConnection +org.apache.http.HttpVersion +org.apache.http.NameValuePair +org.apache.http.ParseException +org.apache.http.ProtocolException +org.apache.http.ProtocolVersion +org.apache.http.ReasonPhraseCatalog +org.apache.http.RequestLine +org.apache.http.StatusLine +org.apache.http.auth.AuthSchemeFactory +org.apache.http.auth.AuthSchemeRegistry +org.apache.http.auth.AuthState +org.apache.http.auth.AuthenticationException +org.apache.http.client.AuthenticationHandler +org.apache.http.client.ClientProtocolException +org.apache.http.client.CookieStore +org.apache.http.client.CredentialsProvider +org.apache.http.client.HttpClient +org.apache.http.client.HttpRequestRetryHandler +org.apache.http.client.HttpResponseException +org.apache.http.client.RedirectHandler +org.apache.http.client.RequestDirector +org.apache.http.client.ResponseHandler +org.apache.http.client.UserTokenHandler +org.apache.http.client.entity.UrlEncodedFormEntity +org.apache.http.client.methods.AbortableHttpRequest +org.apache.http.client.methods.HttpEntityEnclosingRequestBase +org.apache.http.client.methods.HttpGet +org.apache.http.client.methods.HttpPost +org.apache.http.client.methods.HttpPut +org.apache.http.client.methods.HttpRequestBase +org.apache.http.client.methods.HttpUriRequest +org.apache.http.client.params.HttpClientParams +org.apache.http.client.protocol.RequestAddCookies +org.apache.http.client.protocol.RequestDefaultHeaders +org.apache.http.client.protocol.RequestProxyAuthentication +org.apache.http.client.protocol.RequestTargetAuthentication +org.apache.http.client.protocol.ResponseProcessCookies +org.apache.http.client.utils.URIUtils +org.apache.http.client.utils.URLEncodedUtils +org.apache.http.conn.BasicManagedEntity +org.apache.http.conn.ClientConnectionManager +org.apache.http.conn.ClientConnectionOperator +org.apache.http.conn.ClientConnectionRequest +org.apache.http.conn.ConnectTimeoutException +org.apache.http.conn.ConnectionKeepAliveStrategy +org.apache.http.conn.ConnectionReleaseTrigger +org.apache.http.conn.EofSensorInputStream +org.apache.http.conn.EofSensorWatcher +org.apache.http.conn.ManagedClientConnection +org.apache.http.conn.OperatedClientConnection +org.apache.http.conn.params.ConnManagerPNames +org.apache.http.conn.params.ConnManagerParamBean +org.apache.http.conn.params.ConnManagerParams +org.apache.http.conn.params.ConnManagerParams$1 +org.apache.http.conn.params.ConnPerRoute +org.apache.http.conn.params.ConnPerRouteBean +org.apache.http.conn.params.ConnRoutePNames +org.apache.http.conn.params.ConnRouteParams +org.apache.http.conn.routing.BasicRouteDirector +org.apache.http.conn.routing.HttpRoute +org.apache.http.conn.routing.HttpRouteDirector +org.apache.http.conn.routing.HttpRoutePlanner +org.apache.http.conn.routing.RouteInfo +org.apache.http.conn.routing.RouteInfo$LayerType +org.apache.http.conn.routing.RouteInfo$TunnelType +org.apache.http.conn.routing.RouteTracker +org.apache.http.conn.scheme.LayeredSocketFactory +org.apache.http.conn.scheme.PlainSocketFactory +org.apache.http.conn.scheme.Scheme +org.apache.http.conn.scheme.SchemeRegistry +org.apache.http.conn.scheme.SocketFactory +org.apache.http.conn.ssl.AbstractVerifier +org.apache.http.conn.ssl.AllowAllHostnameVerifier +org.apache.http.conn.ssl.AndroidDistinguishedNameParser +org.apache.http.conn.ssl.BrowserCompatHostnameVerifier +org.apache.http.conn.ssl.SSLSocketFactory +org.apache.http.conn.ssl.StrictHostnameVerifier +org.apache.http.conn.ssl.X509HostnameVerifier +org.apache.http.cookie.ClientCookie +org.apache.http.cookie.Cookie +org.apache.http.cookie.CookieAttributeHandler +org.apache.http.cookie.CookieIdentityComparator +org.apache.http.cookie.CookieOrigin +org.apache.http.cookie.CookiePathComparator +org.apache.http.cookie.CookieSpec +org.apache.http.cookie.CookieSpecFactory +org.apache.http.cookie.CookieSpecRegistry +org.apache.http.cookie.MalformedCookieException +org.apache.http.cookie.SetCookie +org.apache.http.entity.AbstractHttpEntity +org.apache.http.entity.BasicHttpEntity +org.apache.http.entity.ByteArrayEntity +org.apache.http.entity.ContentLengthStrategy +org.apache.http.entity.HttpEntityWrapper +org.apache.http.entity.InputStreamEntity +org.apache.http.entity.StringEntity +org.apache.http.impl.AbstractHttpClientConnection +org.apache.http.impl.AbstractHttpServerConnection +org.apache.http.impl.DefaultConnectionReuseStrategy +org.apache.http.impl.DefaultHttpRequestFactory +org.apache.http.impl.DefaultHttpResponseFactory +org.apache.http.impl.DefaultHttpServerConnection +org.apache.http.impl.EnglishReasonPhraseCatalog +org.apache.http.impl.HttpConnectionMetricsImpl +org.apache.http.impl.SocketHttpClientConnection +org.apache.http.impl.SocketHttpServerConnection +org.apache.http.impl.auth.BasicSchemeFactory +org.apache.http.impl.auth.DigestSchemeFactory +org.apache.http.impl.client.AbstractAuthenticationHandler +org.apache.http.impl.client.AbstractHttpClient +org.apache.http.impl.client.BasicCookieStore +org.apache.http.impl.client.BasicCredentialsProvider +org.apache.http.impl.client.ClientParamsStack +org.apache.http.impl.client.DefaultConnectionKeepAliveStrategy +org.apache.http.impl.client.DefaultHttpClient +org.apache.http.impl.client.DefaultHttpRequestRetryHandler +org.apache.http.impl.client.DefaultProxyAuthenticationHandler +org.apache.http.impl.client.DefaultRedirectHandler +org.apache.http.impl.client.DefaultRequestDirector +org.apache.http.impl.client.DefaultTargetAuthenticationHandler +org.apache.http.impl.client.DefaultUserTokenHandler +org.apache.http.impl.client.EntityEnclosingRequestWrapper +org.apache.http.impl.client.RequestWrapper +org.apache.http.impl.client.RoutedRequest +org.apache.http.impl.client.TunnelRefusedException +org.apache.http.impl.conn.AbstractClientConnAdapter +org.apache.http.impl.conn.AbstractPoolEntry +org.apache.http.impl.conn.AbstractPooledConnAdapter +org.apache.http.impl.conn.DefaultClientConnection +org.apache.http.impl.conn.DefaultClientConnectionOperator +org.apache.http.impl.conn.DefaultResponseParser +org.apache.http.impl.conn.IdleConnectionHandler +org.apache.http.impl.conn.IdleConnectionHandler$TimeValues +org.apache.http.impl.conn.ProxySelectorRoutePlanner +org.apache.http.impl.conn.tsccm.AbstractConnPool +org.apache.http.impl.conn.tsccm.BasicPoolEntry +org.apache.http.impl.conn.tsccm.BasicPoolEntryRef +org.apache.http.impl.conn.tsccm.BasicPooledConnAdapter +org.apache.http.impl.conn.tsccm.ConnPoolByRoute +org.apache.http.impl.conn.tsccm.ConnPoolByRoute$1 +org.apache.http.impl.conn.tsccm.PoolEntryRequest +org.apache.http.impl.conn.tsccm.RefQueueHandler +org.apache.http.impl.conn.tsccm.RefQueueWorker +org.apache.http.impl.conn.tsccm.RouteSpecificPool +org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager +org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager$1 +org.apache.http.impl.conn.tsccm.WaitingThreadAborter +org.apache.http.impl.cookie.AbstractCookieAttributeHandler +org.apache.http.impl.cookie.AbstractCookieSpec +org.apache.http.impl.cookie.BasicClientCookie +org.apache.http.impl.cookie.BasicCommentHandler +org.apache.http.impl.cookie.BasicDomainHandler +org.apache.http.impl.cookie.BasicExpiresHandler +org.apache.http.impl.cookie.BasicMaxAgeHandler +org.apache.http.impl.cookie.BasicPathHandler +org.apache.http.impl.cookie.BasicSecureHandler +org.apache.http.impl.cookie.BestMatchSpec +org.apache.http.impl.cookie.BestMatchSpecFactory +org.apache.http.impl.cookie.BrowserCompatSpec +org.apache.http.impl.cookie.BrowserCompatSpecFactory +org.apache.http.impl.cookie.CookieSpecBase +org.apache.http.impl.cookie.DateParseException +org.apache.http.impl.cookie.DateUtils +org.apache.http.impl.cookie.DateUtils$DateFormatHolder +org.apache.http.impl.cookie.DateUtils$DateFormatHolder$1 +org.apache.http.impl.cookie.NetscapeDomainHandler +org.apache.http.impl.cookie.NetscapeDraftHeaderParser +org.apache.http.impl.cookie.NetscapeDraftSpec +org.apache.http.impl.cookie.NetscapeDraftSpecFactory +org.apache.http.impl.cookie.RFC2109DomainHandler +org.apache.http.impl.cookie.RFC2109Spec +org.apache.http.impl.cookie.RFC2109SpecFactory +org.apache.http.impl.cookie.RFC2109VersionHandler +org.apache.http.impl.cookie.RFC2965CommentUrlAttributeHandler +org.apache.http.impl.cookie.RFC2965DiscardAttributeHandler +org.apache.http.impl.cookie.RFC2965DomainAttributeHandler +org.apache.http.impl.cookie.RFC2965PortAttributeHandler +org.apache.http.impl.cookie.RFC2965Spec +org.apache.http.impl.cookie.RFC2965SpecFactory +org.apache.http.impl.cookie.RFC2965VersionAttributeHandler +org.apache.http.impl.entity.EntityDeserializer +org.apache.http.impl.entity.EntitySerializer +org.apache.http.impl.entity.LaxContentLengthStrategy +org.apache.http.impl.entity.StrictContentLengthStrategy +org.apache.http.impl.io.AbstractMessageParser +org.apache.http.impl.io.AbstractMessageWriter +org.apache.http.impl.io.AbstractSessionInputBuffer +org.apache.http.impl.io.AbstractSessionOutputBuffer +org.apache.http.impl.io.ChunkedInputStream +org.apache.http.impl.io.ContentLengthInputStream +org.apache.http.impl.io.ContentLengthOutputStream +org.apache.http.impl.io.HttpRequestParser +org.apache.http.impl.io.HttpRequestWriter +org.apache.http.impl.io.HttpResponseWriter +org.apache.http.impl.io.HttpTransportMetricsImpl +org.apache.http.impl.io.IdentityOutputStream +org.apache.http.impl.io.SocketInputBuffer +org.apache.http.impl.io.SocketOutputBuffer +org.apache.http.io.HttpMessageParser +org.apache.http.io.HttpMessageWriter +org.apache.http.io.HttpTransportMetrics +org.apache.http.io.SessionInputBuffer +org.apache.http.io.SessionOutputBuffer +org.apache.http.message.AbstractHttpMessage +org.apache.http.message.BasicHeader +org.apache.http.message.BasicHeaderElement +org.apache.http.message.BasicHeaderElementIterator +org.apache.http.message.BasicHeaderValueParser +org.apache.http.message.BasicHttpRequest +org.apache.http.message.BasicHttpResponse +org.apache.http.message.BasicLineFormatter +org.apache.http.message.BasicLineParser +org.apache.http.message.BasicListHeaderIterator +org.apache.http.message.BasicNameValuePair +org.apache.http.message.BasicRequestLine +org.apache.http.message.BasicStatusLine +org.apache.http.message.BufferedHeader +org.apache.http.message.HeaderGroup +org.apache.http.message.HeaderValueParser +org.apache.http.message.LineFormatter +org.apache.http.message.LineParser +org.apache.http.message.ParserCursor +org.apache.http.params.AbstractHttpParams +org.apache.http.params.BasicHttpParams +org.apache.http.params.CoreConnectionPNames +org.apache.http.params.CoreProtocolPNames +org.apache.http.params.DefaultedHttpParams +org.apache.http.params.HttpAbstractParamBean +org.apache.http.params.HttpConnectionParams +org.apache.http.params.HttpParams +org.apache.http.params.HttpProtocolParams +org.apache.http.protocol.BasicHttpContext +org.apache.http.protocol.BasicHttpProcessor +org.apache.http.protocol.DefaultedHttpContext +org.apache.http.protocol.HTTP +org.apache.http.protocol.HttpContext +org.apache.http.protocol.HttpProcessor +org.apache.http.protocol.HttpRequestExecutor +org.apache.http.protocol.HttpRequestHandler +org.apache.http.protocol.HttpRequestHandlerRegistry +org.apache.http.protocol.HttpRequestHandlerResolver +org.apache.http.protocol.HttpRequestInterceptorList +org.apache.http.protocol.HttpResponseInterceptorList +org.apache.http.protocol.HttpService +org.apache.http.protocol.RequestConnControl +org.apache.http.protocol.RequestContent +org.apache.http.protocol.RequestExpectContinue +org.apache.http.protocol.RequestTargetHost +org.apache.http.protocol.RequestUserAgent +org.apache.http.protocol.ResponseConnControl +org.apache.http.protocol.ResponseContent +org.apache.http.protocol.UriPatternMatcher +org.apache.http.util.ByteArrayBuffer +org.apache.http.util.CharArrayBuffer +org.apache.http.util.EntityUtils +org.apache.http.util.LangUtils +org.ccil.cowan.tagsoup.AttributesImpl +org.ccil.cowan.tagsoup.AutoDetector +org.ccil.cowan.tagsoup.Element +org.ccil.cowan.tagsoup.ElementType +org.ccil.cowan.tagsoup.HTMLModels +org.ccil.cowan.tagsoup.HTMLScanner +org.ccil.cowan.tagsoup.HTMLSchema +org.ccil.cowan.tagsoup.Parser +org.ccil.cowan.tagsoup.Parser$1 +org.ccil.cowan.tagsoup.ScanHandler +org.ccil.cowan.tagsoup.Scanner +org.ccil.cowan.tagsoup.Schema +org.json.JSON +org.json.JSONArray +org.json.JSONException +org.json.JSONObject +org.json.JSONObject$1 +org.json.JSONStringer +org.json.JSONStringer$Scope +org.json.JSONTokener +org.kxml2.io.KXmlParser +org.kxml2.io.KXmlParser$ValueContext +org.kxml2.io.KXmlSerializer +org.xml.sax.Attributes +org.xml.sax.ContentHandler +org.xml.sax.DTDHandler +org.xml.sax.EntityResolver +org.xml.sax.ErrorHandler +org.xml.sax.InputSource +org.xml.sax.Locator +org.xml.sax.SAXException +org.xml.sax.SAXNotRecognizedException +org.xml.sax.SAXNotSupportedException +org.xml.sax.SAXParseException +org.xml.sax.XMLReader +org.xml.sax.ext.DeclHandler +org.xml.sax.ext.DefaultHandler2 +org.xml.sax.ext.EntityResolver2 +org.xml.sax.ext.LexicalHandler +org.xml.sax.helpers.AttributesImpl +org.xml.sax.helpers.DefaultHandler +org.xmlpull.v1.XmlPullParser +org.xmlpull.v1.XmlPullParserException +org.xmlpull.v1.XmlPullParserFactory +org.xmlpull.v1.XmlSerializer +sun.invoke.util.BytecodeDescriptor +sun.invoke.util.VerifyAccess +sun.invoke.util.Wrapper +sun.invoke.util.Wrapper$Format +sun.misc.ASCIICaseInsensitiveComparator +sun.misc.Cleaner +sun.misc.CompoundEnumeration +sun.misc.FDBigInteger +sun.misc.FloatingDecimal +sun.misc.FloatingDecimal$1 +sun.misc.FloatingDecimal$ASCIIToBinaryBuffer +sun.misc.FloatingDecimal$ASCIIToBinaryConverter +sun.misc.FloatingDecimal$BinaryToASCIIBuffer +sun.misc.FloatingDecimal$BinaryToASCIIConverter +sun.misc.FloatingDecimal$ExceptionalBinaryToASCIIBuffer +sun.misc.FloatingDecimal$PreparedASCIIToBinaryBuffer +sun.misc.FormattedFloatingDecimal +sun.misc.FormattedFloatingDecimal$1 +sun.misc.FormattedFloatingDecimal$Form +sun.misc.IOUtils +sun.misc.JavaIOFileDescriptorAccess +sun.misc.LRUCache +sun.misc.REException +sun.misc.SharedSecrets +sun.misc.Unsafe +sun.misc.VM +sun.misc.Version +sun.net.ConnectionResetException +sun.net.NetHooks +sun.net.NetProperties +sun.net.NetProperties$1 +sun.net.ResourceManager +sun.net.spi.DefaultProxySelector +sun.net.spi.DefaultProxySelector$1 +sun.net.spi.DefaultProxySelector$NonProxyInfo +sun.net.spi.nameservice.NameService +sun.net.util.IPAddressUtil +sun.net.www.ParseUtil +sun.net.www.protocol.file.Handler +sun.net.www.protocol.jar.Handler +sun.nio.ch.AbstractPollArrayWrapper +sun.nio.ch.AbstractPollSelectorImpl +sun.nio.ch.AllocatedNativeObject +sun.nio.ch.ChannelInputStream +sun.nio.ch.DatagramChannelImpl +sun.nio.ch.DatagramDispatcher +sun.nio.ch.DefaultSelectorProvider +sun.nio.ch.DirectBuffer +sun.nio.ch.FileChannelImpl +sun.nio.ch.FileChannelImpl$Unmapper +sun.nio.ch.FileDescriptorHolderSocketImpl +sun.nio.ch.FileDispatcher +sun.nio.ch.FileDispatcherImpl +sun.nio.ch.FileKey +sun.nio.ch.FileLockImpl +sun.nio.ch.FileLockTable +sun.nio.ch.IOStatus +sun.nio.ch.IOUtil +sun.nio.ch.Interruptible +sun.nio.ch.NativeDispatcher +sun.nio.ch.NativeObject +sun.nio.ch.NativeThread +sun.nio.ch.NativeThreadSet +sun.nio.ch.Net +sun.nio.ch.Net$1 +sun.nio.ch.Net$4 +sun.nio.ch.PollArrayWrapper +sun.nio.ch.PollSelectorImpl +sun.nio.ch.PollSelectorProvider +sun.nio.ch.SelChImpl +sun.nio.ch.SelectionKeyImpl +sun.nio.ch.SelectorImpl +sun.nio.ch.SelectorProviderImpl +sun.nio.ch.ServerSocketChannelImpl +sun.nio.ch.SharedFileLockTable +sun.nio.ch.SharedFileLockTable$FileLockReference +sun.nio.ch.SocketAdaptor +sun.nio.ch.SocketAdaptor$1 +sun.nio.ch.SocketAdaptor$2 +sun.nio.ch.SocketAdaptor$SocketInputStream +sun.nio.ch.SocketChannelImpl +sun.nio.ch.SocketDispatcher +sun.nio.ch.Util +sun.nio.ch.Util$1 +sun.nio.ch.Util$2 +sun.nio.ch.Util$BufferCache +sun.nio.cs.ArrayDecoder +sun.nio.cs.ArrayEncoder +sun.nio.cs.StreamDecoder +sun.nio.cs.StreamEncoder +sun.nio.cs.ThreadLocalCoders +sun.nio.cs.ThreadLocalCoders$1 +sun.nio.cs.ThreadLocalCoders$2 +sun.nio.cs.ThreadLocalCoders$Cache +sun.nio.fs.AbstractBasicFileAttributeView +sun.nio.fs.AbstractFileSystemProvider +sun.nio.fs.AbstractPath +sun.nio.fs.DefaultFileSystemProvider +sun.nio.fs.DynamicFileAttributeView +sun.nio.fs.LinuxFileSystem +sun.nio.fs.LinuxFileSystemProvider +sun.nio.fs.NativeBuffer +sun.nio.fs.NativeBuffer$Deallocator +sun.nio.fs.NativeBuffers +sun.nio.fs.UnixChannelFactory +sun.nio.fs.UnixChannelFactory$Flags +sun.nio.fs.UnixConstants +sun.nio.fs.UnixException +sun.nio.fs.UnixFileAttributeViews +sun.nio.fs.UnixFileAttributeViews$Basic +sun.nio.fs.UnixFileAttributes +sun.nio.fs.UnixFileAttributes$UnixAsBasicFileAttributes +sun.nio.fs.UnixFileModeAttribute +sun.nio.fs.UnixFileStoreAttributes +sun.nio.fs.UnixFileSystem +sun.nio.fs.UnixFileSystemProvider +sun.nio.fs.UnixMountEntry +sun.nio.fs.UnixNativeDispatcher +sun.nio.fs.UnixPath +sun.nio.fs.Util +sun.reflect.misc.ReflectUtil +sun.security.action.GetBooleanAction +sun.security.action.GetIntegerAction +sun.security.action.GetPropertyAction +sun.security.jca.GetInstance +sun.security.jca.GetInstance$Instance +sun.security.jca.JCAUtil +sun.security.jca.JCAUtil$CachedSecureRandomHolder +sun.security.jca.ProviderConfig +sun.security.jca.ProviderConfig$2 +sun.security.jca.ProviderList +sun.security.jca.ProviderList$1 +sun.security.jca.ProviderList$2 +sun.security.jca.ProviderList$3 +sun.security.jca.ProviderList$ServiceList +sun.security.jca.ProviderList$ServiceList$1 +sun.security.jca.Providers +sun.security.jca.ServiceId +sun.security.pkcs.ContentInfo +sun.security.pkcs.PKCS7 +sun.security.pkcs.PKCS7$VerbatimX509Certificate +sun.security.pkcs.PKCS7$WrappedX509Certificate +sun.security.pkcs.PKCS9Attribute +sun.security.pkcs.SignerInfo +sun.security.provider.CertPathProvider +sun.security.provider.X509Factory +sun.security.provider.certpath.AdaptableX509CertSelector +sun.security.provider.certpath.AlgorithmChecker +sun.security.provider.certpath.BasicChecker +sun.security.provider.certpath.CertId +sun.security.provider.certpath.CertPathHelper +sun.security.provider.certpath.ConstraintsChecker +sun.security.provider.certpath.KeyChecker +sun.security.provider.certpath.OCSP$RevocationStatus +sun.security.provider.certpath.OCSP$RevocationStatus$CertStatus +sun.security.provider.certpath.OCSPResponse +sun.security.provider.certpath.OCSPResponse$ResponseStatus +sun.security.provider.certpath.OCSPResponse$SingleResponse +sun.security.provider.certpath.PKIX +sun.security.provider.certpath.PKIX$ValidatorParams +sun.security.provider.certpath.PKIXCertPathValidator +sun.security.provider.certpath.PKIXMasterCertPathValidator +sun.security.provider.certpath.PolicyChecker +sun.security.provider.certpath.PolicyNodeImpl +sun.security.provider.certpath.RevocationChecker +sun.security.provider.certpath.RevocationChecker$1 +sun.security.provider.certpath.RevocationChecker$Mode +sun.security.provider.certpath.RevocationChecker$RevocationProperties +sun.security.util.AbstractAlgorithmConstraints +sun.security.util.AbstractAlgorithmConstraints$1 +sun.security.util.AlgorithmDecomposer +sun.security.util.BitArray +sun.security.util.ByteArrayLexOrder +sun.security.util.ByteArrayTagOrder +sun.security.util.Cache +sun.security.util.Cache$EqualByteArray +sun.security.util.CertConstraintParameters +sun.security.util.Debug +sun.security.util.DerEncoder +sun.security.util.DerIndefLenConverter +sun.security.util.DerInputBuffer +sun.security.util.DerInputStream +sun.security.util.DerOutputStream +sun.security.util.DerValue +sun.security.util.DisabledAlgorithmConstraints +sun.security.util.DisabledAlgorithmConstraints$Constraint +sun.security.util.DisabledAlgorithmConstraints$Constraint$Operator +sun.security.util.DisabledAlgorithmConstraints$Constraints +sun.security.util.DisabledAlgorithmConstraints$KeySizeConstraint +sun.security.util.KeyUtil +sun.security.util.Length +sun.security.util.ManifestDigester +sun.security.util.ManifestDigester$Entry +sun.security.util.ManifestDigester$Position +sun.security.util.ManifestEntryVerifier +sun.security.util.ManifestEntryVerifier$SunProviderHolder +sun.security.util.MemoryCache +sun.security.util.MemoryCache$CacheEntry +sun.security.util.MemoryCache$SoftCacheEntry +sun.security.util.ObjectIdentifier +sun.security.util.SignatureFileVerifier +sun.security.x509.AVA +sun.security.x509.AVAKeyword +sun.security.x509.AccessDescription +sun.security.x509.AlgorithmId +sun.security.x509.AuthorityInfoAccessExtension +sun.security.x509.AuthorityKeyIdentifierExtension +sun.security.x509.BasicConstraintsExtension +sun.security.x509.CRLDistributionPointsExtension +sun.security.x509.CRLNumberExtension +sun.security.x509.CRLReasonCodeExtension +sun.security.x509.CertAttrSet +sun.security.x509.CertificateAlgorithmId +sun.security.x509.CertificateExtensions +sun.security.x509.CertificateIssuerExtension +sun.security.x509.CertificatePoliciesExtension +sun.security.x509.CertificatePolicyId +sun.security.x509.CertificateSerialNumber +sun.security.x509.CertificateValidity +sun.security.x509.CertificateVersion +sun.security.x509.CertificateX509Key +sun.security.x509.DNSName +sun.security.x509.DeltaCRLIndicatorExtension +sun.security.x509.DistributionPoint +sun.security.x509.ExtendedKeyUsageExtension +sun.security.x509.Extension +sun.security.x509.FreshestCRLExtension +sun.security.x509.GeneralName +sun.security.x509.GeneralNameInterface +sun.security.x509.GeneralNames +sun.security.x509.InhibitAnyPolicyExtension +sun.security.x509.IssuerAlternativeNameExtension +sun.security.x509.IssuingDistributionPointExtension +sun.security.x509.KeyIdentifier +sun.security.x509.KeyUsageExtension +sun.security.x509.NameConstraintsExtension +sun.security.x509.NetscapeCertTypeExtension +sun.security.x509.OCSPNoCheckExtension +sun.security.x509.OIDMap +sun.security.x509.OIDMap$OIDInfo +sun.security.x509.PKIXExtensions +sun.security.x509.PolicyConstraintsExtension +sun.security.x509.PolicyInformation +sun.security.x509.PolicyMappingsExtension +sun.security.x509.PrivateKeyUsageExtension +sun.security.x509.RDN +sun.security.x509.SerialNumber +sun.security.x509.SubjectAlternativeNameExtension +sun.security.x509.SubjectInfoAccessExtension +sun.security.x509.SubjectKeyIdentifierExtension +sun.security.x509.URIName +sun.security.x509.X500Name +sun.security.x509.X500Name$1 +sun.security.x509.X509AttributeName +sun.security.x509.X509CertImpl +sun.security.x509.X509CertInfo +sun.security.x509.X509Key +sun.util.calendar.AbstractCalendar +sun.util.calendar.BaseCalendar +sun.util.calendar.BaseCalendar$Date +sun.util.calendar.CalendarDate +sun.util.calendar.CalendarSystem +sun.util.calendar.CalendarUtils +sun.util.calendar.Era +sun.util.calendar.Gregorian +sun.util.calendar.Gregorian$Date +sun.util.calendar.ImmutableGregorianDate +sun.util.calendar.JulianCalendar +sun.util.calendar.LocalGregorianCalendar +sun.util.locale.BaseLocale +sun.util.locale.BaseLocale$Cache +sun.util.locale.BaseLocale$Key +sun.util.locale.Extension +sun.util.locale.InternalLocaleBuilder +sun.util.locale.InternalLocaleBuilder$CaseInsensitiveChar +sun.util.locale.LanguageTag +sun.util.locale.LocaleExtensions +sun.util.locale.LocaleObjectCache +sun.util.locale.LocaleObjectCache$CacheEntry +sun.util.locale.LocaleSyntaxException +sun.util.locale.LocaleUtils +sun.util.locale.ParseStatus +sun.util.locale.StringTokenIterator +sun.util.locale.UnicodeLocaleExtension +sun.util.logging.LoggingProxy +sun.util.logging.LoggingSupport +sun.util.logging.LoggingSupport$1 +sun.util.logging.LoggingSupport$2 +sun.util.logging.PlatformLogger +sun.util.logging.PlatformLogger$1 +sun.util.logging.PlatformLogger$JavaLoggerProxy +sun.util.logging.PlatformLogger$Level +sun.util.logging.PlatformLogger$LoggerProxy diff --git a/system/etc/custom.conf b/system/etc/custom.conf new file mode 100644 index 0000000000000000000000000000000000000000..6112d01aea699cb9606b801b6fa87dfac5547862 --- /dev/null +++ b/system/etc/custom.conf @@ -0,0 +1,34 @@ +# [usage] +# format-> m.n=v +# m -> module definition, support wildcards +# p -> property name, used as key, case sensitive +# v -> property value +# +# [example] +# mms.UserAgent = Android 4.0/Release 01.05.2012 +# bluetooth.HostName = BtDevice +# *.UAProfileURL = http://www.google.com/UAProf.xml +# +# [notice] +# CR/LF used as only delimiter of each configuaration items, both LINUX/MAC/DOS format supported +# character set: ASCII, encoding type: UTF8 + +#browser.UserAgent = Athens15_TD/V2 Linux/3.0.13 Android/4.0 Release/02.15.2012 Browser/AppleWebKit534.30 Mobile Safari/534.30 System/Android 4.0.1; +browser.UAProfileURL = http://218.249.47.94/Xianghe/MTK_Phone_KK_UAprofile.xml +mms.UserAgent = Android-Mms/0.1 +mms.UAProfileURL = http://www.google.com/oha/rdf/ua-profile-kila.xml +http_streaming.UserAgent = stagefright/1.2 (Linux;Android @ro.build.version.release ) +rtsp_streaming.UserAgent = stagefright/1.2 (Linux;Android @ro.build.version.release ) +#http_streaming.UAProfileURL = http://218.249.47.94/Xianghe/MTK_Athens15_UAProfile.xml +#rtsp_streaming.UAProfileURL = http://218.249.47.94/Xianghe/MTK_Athens15_UAProfile.xml +dm.Manufacturer = MTK1 +dm.Model = MTK +bluetooth.HostName = @ro.build.user.bt.name@ +fmtransmitter.RDSValue = Mediatek +wlan.SSID = @ro.build.user.wifi.name@ +Setting.Model= @ro.product.model@ +Setting.SWVerno= @ro.mediatek.version.release@ + + + + diff --git a/system/etc/default_volume_tables.xml b/system/etc/default_volume_tables.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a22b1da3fcb880becacb25bb60cb1a197c0521a --- /dev/null +++ b/system/etc/default_volume_tables.xml @@ -0,0 +1,70 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<!-- Default Volume Tables included by Audio Policy Configuration file --> +<!-- Full Default Volume table for all device category --> +<volumes> + <reference name="FULL_SCALE_VOLUME_CURVE"> + <!-- Full Scale reference Volume Curve --> + <point>0,0</point> + <point>100,0</point> + </reference> + <reference name="SILENT_VOLUME_CURVE"> + <point>0,-9600</point> + <point>100,-9600</point> + </reference> + <reference name="DEFAULT_SYSTEM_VOLUME_CURVE"> + <!-- Default System reference Volume Curve --> + <point>1,-2400</point> + <point>33,-1800</point> + <point>66,-1200</point> + <point>100,-600</point> + </reference> + <reference name="DEFAULT_MEDIA_VOLUME_CURVE"> + <!-- Default Media reference Volume Curve --> + <point>1,-5800</point> + <point>20,-4000</point> + <point>60,-1700</point> + <point>100,0</point> + </reference> + <reference name="DEFAULT_DEVICE_CATEGORY_HEADSET_VOLUME_CURVE"> + <!--Default Volume Curve --> + <point>1,-4950</point> + <point>33,-3350</point> + <point>66,-1700</point> + <point>100,0</point> + </reference> + <reference name="DEFAULT_DEVICE_CATEGORY_SPEAKER_VOLUME_CURVE"> + <!-- Default is Speaker Media Volume Curve --> + <point>1,-5800</point> + <point>20,-4000</point> + <point>60,-1700</point> + <point>100,0</point> + </reference> + <reference name="DEFAULT_DEVICE_CATEGORY_EARPIECE_VOLUME_CURVE"> + <!--Default Volume Curve --> + <point>1,-4950</point> + <point>33,-3350</point> + <point>66,-1700</point> + <point>100,0</point> + </reference> + <reference name="DEFAULT_DEVICE_CATEGORY_EXT_MEDIA_VOLUME_CURVE"> + <!-- Default is Ext Media System Volume Curve --> + <point>1,-5800</point> + <point>20,-4000</point> + <point>60,-2100</point> + <point>100,-1000</point> + </reference> +</volumes> diff --git a/system/etc/dirty-image-objects b/system/etc/dirty-image-objects new file mode 100644 index 0000000000000000000000000000000000000000..9b4d199dc723dc3ef353757e63fb5580944bdda1 --- /dev/null +++ b/system/etc/dirty-image-objects @@ -0,0 +1,176 @@ +# +# Copyright (C) 2017 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# +# +# Dirty-image-objects file for boot image. +# +# Objects in this file are known dirty at runtime. Current this includes: +# - classes with known dirty static fields. +# +# The image writer will bin these objects together in the image. +# +# This file can be generated using imgdiag with a command such as: +# adb shell imgdiag --image-diff-pid=<app pid> --zygote-diff-pid=<zygote pid> \ +# --boot-image=/system/framework/boot.art --dump-dirty-objects +# Then, grep for lines containing "Private dirty object" from the output. +# This particular file was generated by dumping systemserver and systemui. +# +java.lang.System +java.net.Inet4Address +java.lang.Thread +java.lang.Throwable +java.util.Collections +javax.net.ssl.SSLContext +java.nio.charset.Charset +java.security.Provider +javax.net.ssl.HttpsURLConnection +javax.net.ssl.SSLSocketFactory +java.util.TimeZone +java.util.Locale +java.util.function.ToIntFunction +sun.misc.FormattedFloatingDecimal +java.util.stream.IntStream +android.icu.util.TimeZone +libcore.io.DropBox +org.apache.harmony.luni.internal.util.TimezoneGetter +dalvik.system.SocketTagger +dalvik.system.CloseGuard +java.lang.ref.FinalizerReference +com.android.org.conscrypt.ct.CTLogStoreImpl +com.android.org.conscrypt.SSLParametersImpl +com.android.org.conscrypt.OpenSSLContextImpl +com.android.org.conscrypt.SSLParametersImpl$AliasChooser +com.android.org.conscrypt.SSLParametersImpl$PSKCallbacks +com.android.org.conscrypt.NativeCrypto$SSLHandshakeCallbacks +com.android.okhttp.OkHttpClient +com.android.okhttp.okio.SegmentPool +com.android.okhttp.okio.AsyncTimeout +com.android.okhttp.HttpUrl +android.os.StrictMode +com.android.internal.os.BinderInternal +android.os.storage.StorageManager +android.os.Trace +android.app.ActivityManager +android.media.MediaRouter +android.os.Environment +android.view.ThreadedRenderer +android.media.AudioManager +android.app.AlarmManager +android.telephony.TelephonyManager +android.bluetooth.BluetoothAdapter +com.android.internal.os.SomeArgs +android.os.LocaleList +android.view.WindowManagerGlobal +android.media.AudioSystem +android.ddm.DdmHandleAppName +android.provider.Settings +android.view.ViewRootImpl +android.net.ConnectivityManager +android.app.ActivityThread +android.os.BaseBundle +android.util.ArraySet +android.view.View +android.os.ServiceManager +android.view.ViewTreeObserver +android.hardware.input.InputManager +android.os.UEventObserver +android.app.NotificationManager +android.hardware.display.DisplayManagerGlobal +android.os.Binder +android.app.AppOpsManager +android.content.ContentResolver +android.app.backup.BackupManager +android.util.ArrayMap +android.os.Looper +android.graphics.Bitmap +android.view.textservice.TextServicesManager +com.android.internal.inputmethod.InputMethodUtils +android.app.QueuedWork +android.graphics.TemporaryBuffer +android.widget.ImageView +android.database.sqlite.SQLiteGlobal +android.view.autofill.Helper +android.text.method.SingleLineTransformationMethod +com.android.internal.os.RuntimeInit +android.view.inputmethod.InputMethodManager +android.hardware.SystemSensorManager +android.database.CursorWindow +android.text.TextUtils +android.media.PlayerBase +android.app.ResourcesManager +android.os.Message +android.view.accessibility.AccessibilityManager +android.app.Notification +android.provider.ContactsContract$ContactNameColumns +android.provider.CalendarContract$EventsColumns +android.provider.CalendarContract$CalendarColumns +android.provider.CalendarContract$SyncColumns +android.provider.ContactsContract$ContactsColumns +android.content.pm.PackageManager$OnPermissionsChangedListener +android.net.IpConfiguration$ProxySettings +android.provider.ContactsContract$ContactOptionsColumns +android.net.wifi.SupplicantState +android.provider.ContactsContract$ContactStatusColumns +android.view.accessibility.AccessibilityManager$TouchExplorationStateChangeListener +android.provider.CalendarContract$CalendarSyncColumns +android.bluetooth.BluetoothProfile$ServiceListener +android.provider.ContactsContract$ContactCounts +android.net.IpConfiguration$IpAssignment +android.text.TextWatcher +android.graphics.Bitmap$CompressFormat +android.location.LocationListener +sun.security.jca.Providers +java.lang.CharSequence +android.icu.util.ULocale +dalvik.system.BaseDexClassLoader +android.icu.text.BreakIterator +libcore.io.EventLogger +libcore.net.NetworkSecurityPolicy +android.icu.text.UnicodeSet +com.android.org.conscrypt.TrustedCertificateStore$PreloadHolder +android.app.SearchManager +android.os.Build +android.app.ContextImpl +android.app.WallpaperManager +android.security.net.config.ApplicationConfig +android.animation.LayoutTransition +android.widget.TextView +com.android.internal.logging.MetricsLogger +android.renderscript.RenderScriptCacheDir +android.os.Process +android.os.Handler +android.content.Context +android.graphics.drawable.AdaptiveIconDrawable +android.provider.FontsContract +android.text.style.SuggestionSpan +android.graphics.drawable.VectorDrawable$VGroup +android.view.ViewStub +android.text.style.MetricAffectingSpan +android.content.SharedPreferences$OnSharedPreferenceChangeListener +android.app.PendingIntent +android.text.SpanWatcher +android.widget.FrameLayout +android.net.NetworkRequest$Type +android.net.NetworkInfo$State +android.graphics.drawable.GradientDrawable +android.text.style.AlignmentSpan +android.widget.LinearLayout +android.text.style.CharacterStyle +android.view.View$OnApplyWindowInsetsListener +android.view.MenuItem +android.text.style.ReplacementSpan +android.graphics.drawable.Icon +android.widget.Button diff --git a/system/etc/event-log-tags b/system/etc/event-log-tags new file mode 100644 index 0000000000000000000000000000000000000000..e58faf9b5cfd499b901f71f35c9d8afd30ea8203 --- /dev/null +++ b/system/etc/event-log-tags @@ -0,0 +1,348 @@ +42 answer (to life the universe etc|3) +314 pi +1003 auditd (avc|3) +1004 chatty (dropped|3) +1005 tag_def (tag|1),(name|3),(format|3) +1006 liblog (dropped|1) +2718 e +2719 configuration_changed (config mask|1|5) +2720 sync (id|3),(event|1|5),(source|1|5),(account|1|5) +2721 cpu (total|1|6),(user|1|6),(system|1|6),(iowait|1|6),(irq|1|6),(softirq|1|6) +2722 battery_level (level|1|6),(voltage|1|1),(temperature|1|1) +2723 battery_status (status|1|5),(health|1|5),(present|1|5),(plugged|1|5),(technology|3) +2724 power_sleep_requested (wakeLocksCleared|1|1) +2725 power_screen_broadcast_send (wakelockCount|1|1) +2726 power_screen_broadcast_done (on|1|5),(broadcastDuration|2|3),(wakelockCount|1|1) +2727 power_screen_broadcast_stop (which|1|5),(wakelockCount|1|1) +2728 power_screen_state (offOrOn|1|5),(becauseOfUser|1|5),(totalTouchDownTime|2|3),(touchCycles|1|1),(latency|1|3) +2729 power_partial_wake_state (releasedorAcquired|1|5),(tag|3) +2730 battery_discharge (duration|2|3),(minLevel|1|6),(maxLevel|1|6) +2731 power_soft_sleep_requested (savedwaketimems|2) +2732 storaged_disk_stats (type|3),(start_time|2|3),(end_time|2|3),(read_ios|2|1),(read_merges|2|1),(read_sectors|2|1),(read_ticks|2|3),(write_ios|2|1),(write_merges|2|1),(write_sectors|2|1),(write_ticks|2|3),(o_in_flight|2|1),(io_ticks|2|3),(io_in_queue|2|1) +2733 storaged_emmc_info (mmc_ver|3),(eol|1),(lifetime_a|1),(lifetime_b|1) +2740 location_controller +2741 force_gc (reason|3) +2742 tickle (authority|3) +2747 contacts_aggregation (aggregation time|2|3), (count|1|1) +2748 cache_file_deleted (path|3) +2749 storage_state (uuid|3),(old_state|1),(new_state|1),(usable|2),(total|2) +2750 notification_enqueue (uid|1|5),(pid|1|5),(pkg|3),(id|1|5),(tag|3),(userid|1|5),(notification|3),(status|1) +2751 notification_cancel (uid|1|5),(pid|1|5),(pkg|3),(id|1|5),(tag|3),(userid|1|5),(required_flags|1),(forbidden_flags|1),(reason|1|5),(listener|3) +2752 notification_cancel_all (uid|1|5),(pid|1|5),(pkg|3),(userid|1|5),(required_flags|1),(forbidden_flags|1),(reason|1|5),(listener|3) +2755 fstrim_start (time|2|3) +2756 fstrim_finish (time|2|3) +2802 watchdog (Service|3) +2803 watchdog_proc_pss (Process|3),(Pid|1|5),(Pss|1|2) +2804 watchdog_soft_reset (Process|3),(Pid|1|5),(MaxPss|1|2),(Pss|1|2),(Skip|3) +2805 watchdog_hard_reset (Process|3),(Pid|1|5),(MaxPss|1|2),(Pss|1|2) +2806 watchdog_pss_stats (EmptyPss|1|2),(EmptyCount|1|1),(BackgroundPss|1|2),(BackgroundCount|1|1),(ServicePss|1|2),(ServiceCount|1|1),(VisiblePss|1|2),(VisibleCount|1|1),(ForegroundPss|1|2),(ForegroundCount|1|1),(NoPssCount|1|1) +2807 watchdog_proc_stats (DeathsInOne|1|1),(DeathsInTwo|1|1),(DeathsInThree|1|1),(DeathsInFour|1|1),(DeathsInFive|1|1) +2808 watchdog_scheduled_reboot (Now|2|1),(Interval|1|3),(StartTime|1|3),(Window|1|3),(Skip|3) +2809 watchdog_meminfo (MemFree|1|2),(Buffers|1|2),(Cached|1|2),(Active|1|2),(Inactive|1|2),(AnonPages|1|2),(Mapped|1|2),(Slab|1|2),(SReclaimable|1|2),(SUnreclaim|1|2),(PageTables|1|2) +2810 watchdog_vmstat (runtime|2|3),(pgfree|1|1),(pgactivate|1|1),(pgdeactivate|1|1),(pgfault|1|1),(pgmajfault|1|1) +2811 watchdog_requested_reboot (NoWait|1|1),(ScheduleInterval|1|3),(RecheckInterval|1|3),(StartTime|1|3),(Window|1|3),(MinScreenOff|1|3),(MinNextAlarm|1|3) +2820 backup_data_changed (Package|3) +2821 backup_start (Transport|3) +2822 backup_transport_failure (Package|3) +2823 backup_agent_failure (Package|3),(Message|3) +2824 backup_package (Package|3),(Size|1|2) +2825 backup_success (Packages|1|1),(Time|1|3) +2826 backup_reset (Transport|3) +2827 backup_initialize +2828 backup_requested (Total|1|1),(Key-Value|1|1),(Full|1|1) +2829 backup_quota_exceeded (Package|3) +2830 restore_start (Transport|3),(Source|2|5) +2831 restore_transport_failure +2832 restore_agent_failure (Package|3),(Message|3) +2833 restore_package (Package|3),(Size|1|2) +2834 restore_success (Packages|1|1),(Time|1|3) +2840 full_backup_package (Package|3) +2841 full_backup_agent_failure (Package|3),(Message|3) +2842 full_backup_transport_failure +2843 full_backup_success (Package|3) +2844 full_restore_package (Package|3) +2845 full_backup_quota_exceeded (Package|3) +2846 full_backup_cancelled (Package|3),(Message|3) +2850 backup_transport_lifecycle (Transport|3),(Bound|1|1) +2900 rescue_note (uid|1),(count|1),(window|2) +2901 rescue_level (level|1),(trigger_uid|1) +2902 rescue_success (level|1) +2903 rescue_failure (level|1),(msg|3) +3000 boot_progress_start (time|2|3) +3010 boot_progress_system_run (time|2|3) +3020 boot_progress_preload_start (time|2|3) +3030 boot_progress_preload_end (time|2|3) +3040 boot_progress_ams_ready (time|2|3) +3050 boot_progress_enable_screen (time|2|3) +3060 boot_progress_pms_start (time|2|3) +3070 boot_progress_pms_system_scan_start (time|2|3) +3080 boot_progress_pms_data_scan_start (time|2|3) +3090 boot_progress_pms_scan_end (time|2|3) +3100 boot_progress_pms_ready (time|2|3) +3110 unknown_sources_enabled (value|1) +3120 pm_critical_info (msg|3) +3121 pm_package_stats (manual_time|2|3),(quota_time|2|3),(manual_data|2|2),(quota_data|2|2),(manual_cache|2|2),(quota_cache|2|2) +4000 calendar_upgrade_receiver (time|2|3) +4100 contacts_upgrade_receiver (time|2|3) +20003 dvm_lock_sample (process|3),(main|1|5),(thread|3),(time|1|3),(file|3),(line|1|5),(ownerfile|3),(ownerline|1|5),(sample_percent|1|6) +27500 notification_panel_revealed (items|1) +27501 notification_panel_hidden +27510 notification_visibility_changed (newlyVisibleKeys|3),(noLongerVisibleKeys|3) +27511 notification_expansion (key|3),(user_action|1),(expanded|1),(lifespan|1),(freshness|1),(exposure|1) +27520 notification_clicked (key|3),(lifespan|1),(freshness|1),(exposure|1) +27521 notification_action_clicked (key|3),(action_index|1),(lifespan|1),(freshness|1),(exposure|1) +27530 notification_canceled (key|3),(reason|1),(lifespan|1),(freshness|1),(exposure|1),(listener|3) +27531 notification_visibility (key|3),(visibile|1),(lifespan|1),(freshness|1),(exposure|1),(rank|1) +27532 notification_alert (key|3),(buzz|1),(beep|1),(blink|1) +27533 notification_autogrouped (key|3) +30001 am_finish_activity (User|1|5),(Token|1|5),(Task ID|1|5),(Component Name|3),(Reason|3) +30002 am_task_to_front (User|1|5),(Task|1|5) +30003 am_new_intent (User|1|5),(Token|1|5),(Task ID|1|5),(Component Name|3),(Action|3),(MIME Type|3),(URI|3),(Flags|1|5) +30004 am_create_task (User|1|5),(Task ID|1|5) +30005 am_create_activity (User|1|5),(Token|1|5),(Task ID|1|5),(Component Name|3),(Action|3),(MIME Type|3),(URI|3),(Flags|1|5) +30006 am_restart_activity (User|1|5),(Token|1|5),(Task ID|1|5),(Component Name|3) +30007 am_resume_activity (User|1|5),(Token|1|5),(Task ID|1|5),(Component Name|3) +30008 am_anr (User|1|5),(pid|1|5),(Package Name|3),(Flags|1|5),(reason|3) +30009 am_activity_launch_time (User|1|5),(Token|1|5),(Component Name|3),(time|2|3) +30010 am_proc_bound (User|1|5),(PID|1|5),(Process Name|3) +30011 am_proc_died (User|1|5),(PID|1|5),(Process Name|3),(OomAdj|1|5),(ProcState|1|5) +30012 am_failed_to_pause (User|1|5),(Token|1|5),(Wanting to pause|3),(Currently pausing|3) +30013 am_pause_activity (User|1|5),(Token|1|5),(Component Name|3) +30014 am_proc_start (User|1|5),(PID|1|5),(UID|1|5),(Process Name|3),(Type|3),(Component|3) +30015 am_proc_bad (User|1|5),(UID|1|5),(Process Name|3) +30016 am_proc_good (User|1|5),(UID|1|5),(Process Name|3) +30017 am_low_memory (Num Processes|1|1) +30018 am_destroy_activity (User|1|5),(Token|1|5),(Task ID|1|5),(Component Name|3),(Reason|3) +30019 am_relaunch_resume_activity (User|1|5),(Token|1|5),(Task ID|1|5),(Component Name|3) +30020 am_relaunch_activity (User|1|5),(Token|1|5),(Task ID|1|5),(Component Name|3) +30021 am_on_paused_called (User|1|5),(Component Name|3),(Reason|3) +30022 am_on_resume_called (User|1|5),(Component Name|3),(Reason|3) +30023 am_kill (User|1|5),(PID|1|5),(Process Name|3),(OomAdj|1|5),(Reason|3) +30024 am_broadcast_discard_filter (User|1|5),(Broadcast|1|5),(Action|3),(Receiver Number|1|1),(BroadcastFilter|1|5) +30025 am_broadcast_discard_app (User|1|5),(Broadcast|1|5),(Action|3),(Receiver Number|1|1),(App|3) +30030 am_create_service (User|1|5),(Service Record|1|5),(Name|3),(UID|1|5),(PID|1|5) +30031 am_destroy_service (User|1|5),(Service Record|1|5),(PID|1|5) +30032 am_process_crashed_too_much (User|1|5),(Name|3),(PID|1|5) +30033 am_drop_process (PID|1|5) +30034 am_service_crashed_too_much (User|1|5),(Crash Count|1|1),(Component Name|3),(PID|1|5) +30035 am_schedule_service_restart (User|1|5),(Component Name|3),(Time|2|3) +30036 am_provider_lost_process (User|1|5),(Package Name|3),(UID|1|5),(Name|3) +30037 am_process_start_timeout (User|1|5),(PID|1|5),(UID|1|5),(Process Name|3) +30039 am_crash (User|1|5),(PID|1|5),(Process Name|3),(Flags|1|5),(Exception|3),(Message|3),(File|3),(Line|1|5) +30040 am_wtf (User|1|5),(PID|1|5),(Process Name|3),(Flags|1|5),(Tag|3),(Message|3) +30041 am_switch_user (id|1|5) +30042 am_activity_fully_drawn_time (User|1|5),(Token|1|5),(Component Name|3),(time|2|3) +30043 am_set_resumed_activity (User|1|5),(Component Name|3),(Reason|3) +30044 am_focused_stack (User|1|5),(Focused Stack Id|1|5),(Last Focused Stack Id|1|5),(Reason|3) +30045 am_pre_boot (User|1|5),(Package|3) +30046 am_meminfo (Cached|2|2),(Free|2|2),(Zram|2|2),(Kernel|2|2),(Native|2|2) +30047 am_pss (Pid|1|5),(UID|1|5),(Process Name|3),(Pss|2|2),(Uss|2|2),(SwapPss|2|2) +30048 am_stop_activity (User|1|5),(Token|1|5),(Component Name|3) +30049 am_on_stop_called (User|1|5),(Component Name|3),(Reason|3) +30050 am_mem_factor (Current|1|5),(Previous|1|5) +30051 am_user_state_changed (id|1|5),(state|1|5) +30052 am_uid_running (UID|1|5) +30053 am_uid_stopped (UID|1|5) +30054 am_uid_active (UID|1|5) +30055 am_uid_idle (UID|1|5) +30056 am_stop_idle_service (UID|1|5),(Component Name|3) +31000 wm_no_surface_memory (Window|3),(PID|1|5),(Operation|3) +31001 wm_task_created (TaskId|1|5),(StackId|1|5) +31002 wm_task_moved (TaskId|1|5),(ToTop|1),(Index|1) +31003 wm_task_removed (TaskId|1|5),(Reason|3) +31004 wm_stack_created (StackId|1|5) +31005 wm_home_stack_moved (ToTop|1) +31006 wm_stack_removed (StackId|1|5) +31007 wm_boot_animation_done (time|2|3) +32000 imf_force_reconnect_ime (IME|4),(Time Since Connect|2|3),(Showing|1|1) +33000 wp_wallpaper_crashed (component|3) +34000 device_idle (state|1|5), (reason|3) +34001 device_idle_step +34002 device_idle_wake_from_idle (is_idle|1|5), (reason|3) +34003 device_idle_on_start +34004 device_idle_on_phase (what|3) +34005 device_idle_on_complete +34006 device_idle_off_start (reason|3) +34007 device_idle_off_phase (what|3) +34008 device_idle_off_complete +34009 device_idle_light (state|1|5), (reason|3) +34010 device_idle_light_step +35000 auto_brightness_adj (old_adj|5),(old_lux|5),(old_brightness|5),(old_gamma|5),(new_adj|5),(new_lux|5),(new_brightness|5),(new_gamma|5) +36000 sysui_statusbar_touch (type|1),(x|1),(y|1),(disable1|1),(disable2|1) +36001 sysui_heads_up_status (key|3),(visible|1) +36002 sysui_fullscreen_notification (key|3) +36003 sysui_heads_up_escalation (key|3) +36004 sysui_status_bar_state (state|1),(keyguardShowing|1),(keyguardOccluded|1),(bouncerShowing|1),(secure|1),(currentlyInsecure|1) +36010 sysui_panelbar_touch (type|1),(x|1),(y|1),(enabled|1) +36020 sysui_notificationpanel_touch (type|1),(x|1),(y|1) +36021 sysui_lockscreen_gesture (type|1),(lengthDp|1),(velocityDp|1) +36030 sysui_quickpanel_touch (type|1),(x|1),(y|1) +36040 sysui_panelholder_touch (type|1),(x|1),(y|1) +36050 sysui_searchpanel_touch (type|1),(x|1),(y|1) +36060 sysui_recents_connection (type|1),(user|1) +36070 sysui_latency (action|1|5),(latency|1|3) +40000 volume_changed (stream|1), (prev_level|1), (level|1), (max_level|1), (caller|3) +40001 stream_devices_changed (stream|1), (prev_devices|1), (devices|1) +40100 camera_gesture_triggered (gesture_on_time|2|3), (sensor1_on_time|2|3), (sensor2_on_time|2|3), (event_extra|1|1) +50000 menu_item_selected (Menu type where 0 is options and 1 is context|1|5),(Menu item title|3) +50001 menu_opened (Menu type where 0 is options and 1 is context|1|5) +50020 connectivity_state_changed (type|1),(subtype|1),(state|1) +50021 wifi_state_changed (wifi_state|3) +50022 wifi_event_handled (wifi_event|1|5) +50023 wifi_supplicant_state_changed (supplicant_state|1|5) +50080 ntp_success (server|3),(rtt|2),(offset|2) +50081 ntp_failure (server|3),(msg|3) +50100 pdp_bad_dns_address (dns_address|3) +50101 pdp_radio_reset_countdown_triggered (out_packet_count|1|1) +50102 pdp_radio_reset (out_packet_count|1|1) +50103 pdp_context_reset (out_packet_count|1|1) +50104 pdp_reregister_network (out_packet_count|1|1) +50105 pdp_setup_fail (cause|1|5), (cid|1|5), (network_type|1|5) +50106 call_drop (cause|1|5), (cid|1|5), (network_type|1|5) +50107 data_network_registration_fail (op_numeric|1|5), (cid|1|5) +50108 data_network_status_on_radio_off (dc_state|3), (enable|1|5) +50109 pdp_network_drop (cid|1|5), (network_type|1|5) +50110 cdma_data_setup_failed (cause|1|5), (cid|1|5), (network_type|1|5) +50111 cdma_data_drop (cid|1|5), (network_type|1|5) +50112 gsm_rat_switched (cid|1|5), (network_from|1|5), (network_to|1|5) +50113 gsm_data_state_change (oldState|3), (newState|3) +50114 gsm_service_state_change (oldState|1|5), (oldGprsState|1|5), (newState|1|5), (newGprsState|1|5) +50115 cdma_data_state_change (oldState|3), (newState|3) +50116 cdma_service_state_change (oldState|1|5), (oldDataState|1|5), (newState|1|5), (newDataState|1|5) +50117 bad_ip_address (ip_address|3) +50118 data_stall_recovery_get_data_call_list (out_packet_count|1|1) +50119 data_stall_recovery_cleanup (out_packet_count|1|1) +50120 data_stall_recovery_reregister (out_packet_count|1|1) +50121 data_stall_recovery_radio_restart (out_packet_count|1|1) +50122 data_stall_recovery_radio_restart_with_prop (out_packet_count|1|1) +50123 gsm_rat_switched_new (cid|1|5), (network_from|1|5), (network_to|1|5) +50125 exp_det_sms_denied_by_user (app_signature|3) +50128 exp_det_sms_sent_by_user (app_signature|3) +51100 netstats_mobile_sample (dev_rx_bytes|2|2),(dev_tx_bytes|2|2),(dev_rx_pkts|2|1),(dev_tx_pkts|2|1),(xt_rx_bytes|2|2),(xt_tx_bytes|2|2),(xt_rx_pkts|2|1),(xt_tx_pkts|2|1),(uid_rx_bytes|2|2),(uid_tx_bytes|2|2),(uid_rx_pkts|2|1),(uid_tx_pkts|2|1),(trusted_time|2|3) +51101 netstats_wifi_sample (dev_rx_bytes|2|2),(dev_tx_bytes|2|2),(dev_rx_pkts|2|1),(dev_tx_pkts|2|1),(xt_rx_bytes|2|2),(xt_tx_bytes|2|2),(xt_rx_pkts|2|1),(xt_tx_pkts|2|1),(uid_rx_bytes|2|2),(uid_tx_bytes|2|2),(uid_rx_pkts|2|1),(uid_tx_pkts|2|1),(trusted_time|2|3) +51200 lockdown_vpn_connecting (egress_net|1) +51201 lockdown_vpn_connected (egress_net|1) +51202 lockdown_vpn_error (egress_net|1) +51300 config_install_failed (dir|3) +51400 ifw_intent_matched (Intent Type|1|5),(Component Name|3),(Caller Uid|1|5),(Caller Pkg Count|1|1),(Caller Pkgs|3),(Action|3),(MIME Type|3),(URI|3),(Flags|1|5) +51500 idle_maintenance_window_start (time|2|3), (lastUserActivity|2|3), (batteryLevel|1|6), (batteryCharging|1|5) +51501 idle_maintenance_window_finish (time|2|3), (lastUserActivity|2|3), (batteryLevel|1|6), (batteryCharging|1|5) +51600 timezone_trigger_check (token|3) +51610 timezone_request_install (token|3) +51611 timezone_install_started (token|3) +51612 timezone_install_complete (token|3), (result|1) +51620 timezone_request_uninstall (token|3) +51621 timezone_uninstall_started (token|3) +51622 timezone_uninstall_complete (token|3), (result|1) +51630 timezone_request_nothing (token|3) +51631 timezone_nothing_complete (token|3) +51690 timezone_check_trigger_received (token_bytes|3) +51691 timezone_check_read_from_data_app (token_bytes|3) +51692 timezone_check_request_uninstall (token_bytes|3) +51693 timezone_check_request_install (token_bytes|3) +51694 timezone_check_request_nothing (token_bytes|3), (success|1) +52000 db_sample (db|3),(sql|3),(time|1|3),(blocking_package|3),(sample_percent|1|6) +52001 http_stats (useragent|3),(response|2|3),(processing|2|3),(tx|1|2),(rx|1|2) +52002 content_query_sample (uri|3),(projection|3),(selection|3),(sortorder|3),(time|1|3),(blocking_package|3),(sample_percent|1|6) +52003 content_update_sample (uri|3),(operation|3),(selection|3),(time|1|3),(blocking_package|3),(sample_percent|1|6) +52004 binder_sample (descriptor|3),(method_num|1|5),(time|1|3),(blocking_package|3),(sample_percent|1|6) +52100 unsupported_settings_query (uri|3),(selection|3),(whereArgs|3) +52101 persist_setting_error (message|3) +60000 viewroot_draw (Draw time|1|3) +60001 viewroot_layout (Layout time|1|3) +60002 view_build_drawing_cache (View created drawing cache|1|5) +60003 view_use_drawing_cache (View drawn using bitmap cache|1|5) +60100 sf_frame_dur (window|3),(dur0|1),(dur1|1),(dur2|1),(dur3|1),(dur4|1),(dur5|1),(dur6|1) +60110 sf_stop_bootanim (time|2|3) +65537 exp_det_netlink_failure (uid|1) +70000 screen_toggled (screen_state|1|5) +70101 browser_zoom_level_change (start level|1|5),(end level|1|5),(time|2|3) +70102 browser_double_tap_duration (duration|1|3),(time|2|3) +70103 browser_bookmark_added (url|3), (where|3) +70104 browser_page_loaded (url|3), (time|2|3) +70105 browser_timeonpage (url|3), (time|2|3) +70150 browser_snap_center +70151 exp_det_attempt_to_call_object_getclass (app_signature|3) +70200 aggregation (aggregation time|2|3) +70201 aggregation_test (field1|1|2),(field2|1|2),(field3|1|2),(field4|1|2),(field5|1|2) +70301 phone_ui_enter +70302 phone_ui_exit +70303 phone_ui_button_click (text|3) +70304 phone_ui_ringer_query_elapsed +70305 phone_ui_multiple_query +71001 qsb_start (name|3),(version|1),(start_method|3),(latency|1|3),(search_source|3),(enabled_sources|3),(on_create_latency|1|3) +71002 qsb_click (id|2),(suggestions|3),(queried_sources|3),(num_chars|1),(click_type|1) +71003 qsb_search (search_source|3),(method|1),(num_chars|1) +71004 qsb_voice_search (search_source|3) +71005 qsb_exit (suggestions|3),(num_chars|1) +71006 qsb_latency (corpus|3),(latency|1|3),(num_chars|1) +75000 sqlite_mem_alarm_current (current|1|2) +75001 sqlite_mem_alarm_max (max|1|2) +75002 sqlite_mem_alarm_alloc_attempt (attempts|1|4) +75003 sqlite_mem_released (Memory released|1|2) +75004 sqlite_db_corrupt (Database file corrupt|3) +76001 tts_speak_success (engine|3),(caller_uid|1),(caller_pid|1),(length|1),(locale|3),(rate|1),(pitch|1),(engine_latency|2|3),(engine_total|2|3),(audio_latency|2|3) +76002 tts_speak_failure (engine|3),(caller_uid|1),(caller_pid|1),(length|1),(locale|3),(rate|1),(pitch|1) +76003 tts_v2_speak_success (engine|3),(caller_uid|1),(caller_pid|1),(length|1),(request_config|3),(engine_latency|2|3),(engine_total|2|3),(audio_latency|2|3) +76004 tts_v2_speak_failure (engine|3),(caller_uid|1),(caller_pid|1),(length|1),(request_config|3), (statusCode|1) +78001 exp_det_dispatchCommand_overflow +80100 bionic_event_memcpy_buffer_overflow (uid|1) +80105 bionic_event_strcat_buffer_overflow (uid|1) +80110 bionic_event_memmov_buffer_overflow (uid|1) +80115 bionic_event_strncat_buffer_overflow (uid|1) +80120 bionic_event_strncpy_buffer_overflow (uid|1) +80125 bionic_event_memset_buffer_overflow (uid|1) +80130 bionic_event_strcpy_buffer_overflow (uid|1) +80200 bionic_event_strcat_integer_overflow (uid|1) +80205 bionic_event_strncat_integer_overflow (uid|1) +80300 bionic_event_resolver_old_response (uid|1) +80305 bionic_event_resolver_wrong_server (uid|1) +80310 bionic_event_resolver_wrong_query (uid|1) +90100 exp_det_cert_pin_failure (certs|4) +90200 lock_screen_type (type|3) +90201 exp_det_device_admin_activated_by_user (app_signature|3) +90202 exp_det_device_admin_declined_by_user (app_signature|3) +90203 exp_det_device_admin_uninstalled_by_user (app_signature|3) +201001 system_update (status|1|5),(download_result|1|5),(bytes|2|2),(url|3) +201002 system_update_user (action|3) +202001 vending_reconstruct (changes|1) +202901 transaction_event (data|3) +203001 sync_details (authority|3),(send|1|2),(recv|1|2),(details|3) +203002 google_http_request (elapsed|2|3),(status|1),(appname|3),(reused|1) +204001 gtalkservice (eventType|1) +204002 gtalk_connection (status|1) +204003 gtalk_conn_close (status|1),(duration|1) +204004 gtalk_heartbeat_reset (interval_and_nt|1),(ip|3) +204005 c2dm (packet_type|1),(persistent_id|3),(stream_id|1),(last_stream_id|1) +205001 setup_server_timeout +205002 setup_required_captcha (action|3) +205003 setup_io_error (status|3) +205004 setup_server_error +205005 setup_retries_exhausted +205006 setup_no_data_network +205007 setup_completed +205008 gls_account_tried (status|1) +205009 gls_account_saved (status|1) +205010 gls_authenticate (status|1),(service|3) +205011 google_mail_switch (direction|1) +206001 snet (payload|3) +206003 exp_det_snet (payload|3) +208000 metrics_heartbeat +210001 security_adb_shell_interactive +210002 security_adb_shell_command (command|3) +210003 security_adb_sync_recv (path|3) +210004 security_adb_sync_send (path|3) +210005 security_app_process_start (process|3),(start_time|2|3),(uid|1),(pid|1),(seinfo|3),(sha256|3) +210006 security_keyguard_dismissed +210007 security_keyguard_dismiss_auth_attempt (success|1),(method_strength|1) +210008 security_keyguard_secured +275534 notification_unautogrouped (key|3) +524287 sysui_view_visibility (category|1|5),(visible|1|6) +524288 sysui_action (category|1|5),(pkg|3) +524290 sysui_count (name|3),(increment|1) +524291 sysui_histogram (name|3),(bucket|1) +524292 sysui_multi_action (content|4) +1010000 bt_hci_timeout (opcode|1) +1010001 bt_config_source (opcode|1) +1010002 bt_hci_unknown_type (hci_type|1) +1397638484 snet_event_log (subtag|3) (uid|1) (message|3) diff --git a/system/etc/factory.ini b/system/etc/factory.ini new file mode 100644 index 0000000000000000000000000000000000000000..d4fe4484c4003caa0d272777213e41333ae1c249 --- /dev/null +++ b/system/etc/factory.ini @@ -0,0 +1,179 @@ +// test item and test flow configuration +MenuItem=°´¼ü(M); +MenuItem=¹ì¼£Çò(M); +MenuItem=¹âѧÊÖÖ¸µ¼º½¼ü(M); +MenuItem=´¥ÃþÆÁ(M); +MenuItem=´¥ÃþÆÁ×Ô¶¯²âÊÔ; +MenuItem=LCM²âÊÔ; +MenuItem=±³¹âµÈ¼¶(M); +MenuItem=eMMC(A); +MenuItem=ÏÔʾÆÁ(M); +MenuItem=NANDÉÁ´æ(A); +MenuItem=´æ´¢¿¨(A); +MenuItem=SIM¿¨Ì½²â(A); +MenuItem=ÐźŲâÊÔ(M); +MenuItem=Õñ¶¯Æ÷(M); +MenuItem=LEDµÆ(M); +MenuItem=ʵʱʱÖÓ(A); +MenuItem=»Ø·(A); +//MenuItem=Ë«Âó¿Ë·ç»Ø·(M); +MenuItem=»Ø·(ÊÖ»úÂó¿Ë·ç-ÑïÉùÆ÷)(A); +MenuItem=ÊÖ»úÂó¿ËÑïÉùÆ÷»Ø·(A); +MenuItem=ÁåÉù(A); +MenuItem=½ÓÊÕÆ÷(A); +MenuItem=Wave»Ø·Å(M); +MenuItem=À®°È×èֵУÕý(A); +MenuItem=ÑïÉùÆ÷OC²âÊÔ(M); +MenuItem=¶ú»ú(A); +MenuItem=¼ÓËٶȴ«¸ÐÆ÷(M); +MenuItem=¼ÓËٶȴ«¸ÐÆ÷У׼(M); +MenuItem=´ÅÁ¦¼Æ´«¸ÐÆ÷(M); +MenuItem=¹â´«¸ÐÆ÷¾àÀë´«¸ÐÆ÷(M); +MenuItem=ÍÓÂÝÒÇ´«¸ÐÆ÷(M); +MenuItem=ÍÓÂÝÒÇ´«¸ÐÆ÷У׼(M); +MenuItem=Æøѹ´«¸ÐÆ÷(M); +MenuItem=ʪ¶È´«¸ÐÆ÷(M); +MenuItem=Ö÷ÕÕÏà»ú(A); +MenuItem=¸±ÕÕÏà»ú(A); +MenuItem=Main Lens(M); +MenuItem=Sub Lens(M); +MenuItem=ÉÁ¹âµÆ(M); +MenuItem=GPS¶¨Î»(A); +MenuItem=½ü³¡Í¨ÐÅNFC(M); +MenuItem=FMÊÕÒô»ú(A); +MenuItem=FM·¢ÉäÆ÷(M); +MenuItem=À¶ÑÀ(A); +MenuItem=Wi-Fi(A); +MenuItem=ÊÖ»úµçÊÓ(A); +MenuItem=Òƶ¯µçÊÓ(A); +MenuItem=µç³ØºÍ³äµç(A); +MenuItem=ÏÐÖõçÁ÷(M); +MenuItem=HDMI(A); +MenuItem=BTS(A); +MenuItem=EXT BUCK(M); +MenuItem=Universal ANT Test(A); +MenuItem=RF Test(A); +MenuItem=AP-AuxADC ²âÊÔ(M); +MenuItem=C2K RF Test(A); +MenuItem=OTG(A); +MenuItem=USBTYPEC(A); +MenuItem=IrTx LED ²âÊÔ; +MenuItem=EFUSE(A); +MenuItem=Fingerprint(M); + +//FM Radio +FMRadio.CH1=885; +FMRadio.CH2=1058; +FMRadio.CH3=980; +FMRadio.CH4=1080; +FMRadio.RSSITH=-95; + +//FM Transmitter +FMTX.CH1=878; +FMTX.CH2=886; +FMTX.CH3=891; +FMTX.CH4=910; +FMTX.CH5=920; +FMTX.CH6=930; +FMTX.CH7=940; +FMTX.CH8=990; +FMTX.CH9=1050; +FMTX.CH10=1070; + +//WIFI +WIFI.SSID=mtkguest; + +//Vibrator +Vibrator_Last_Time=0; +//AUDIO +Audio.Ringtone=5; +Audio.Receiver=0; +Freq.Ringtone=1000; +Audio.Record.Dump=0; +Audio.Mic.Sets=1; + +Loopback.Speaker.chToCheck=ALL; +Lower.Magnitude.Speaker.L=1000000,1000000,500000,500000; +Upper.Magnitude.Speaker.L=1000000000,1000000000,1000000000,1000000000; +Lower.Magnitude.Speaker.R=1000000,1000000,500000,500000; +Upper.Magnitude.Speaker.R=1000000000,1000000000,1000000000,1000000000; + +Loopback.Receiver.chToCheck=R; +Lower.Magnitude.Receiver.L=100; +Upper.Magnitude.Receiver.L=1000000000; +Lower.Magnitude.Receiver.R=1000; +Upper.Magnitude.Receiver.R=1000000000; + +Lower.Magnitude.Headset=1000; +Upper.Magnitude.Headset=1000000000; +//RF Test +RF.band=39 +RF.dl.earfcn=38450 +RF.rssi0.dbm=-60 +RF.rssi1.dbm=-60 + +GSM.RF.test=0; +GSM.RF.arfcn=37; +GSM.RF.gain=7; +GSM.RF.band=8; +GSM.RF.pattern=1; +GSM.RF.rssi0.dbm=-90; + +WCDMA.RF.test=0; +WCDMA.RF.uarfcn=10700; +WCDMA.RF.rssi0.dbm=-101; +WCDMA.RF.rssi1.dbm=-94; + +LTE.RF.test=1; +LTE.RF.band=40; +LTE.RF.dl.earfcn=39150; +LTE.RF.rssi0.dbm=-60; +LTE.RF.rssi1.dbm=-60; + +TDSCDMA.RF.test=0; +TDSCDMA.RF.uarfcn=9500; +TDSCDMA.RF.rssi0.dbm=-90; + +C2K.RF.test=0; +C2K.RF.subsystem=0; +C2K.RF.band=0; +C2K.RF.channel=384; +C2K.RF.rssi0.dbm=-90; +C2K.RF.rssi1.dbm=-90; + + +//AudioWavePlayFile +/res/sound/testpattern1.wav + +//AudioRingtonePlayFile +/res/sound/ringtone.wav + +//AudioReceiverFreq2K +/res/sound/sinewave2k.wav + +//AudioReceiverFreq25K +/res/sound/sinewave25k.wav + +//AudioReceiverFreq3K +/res/sound/sinewave3k.wav + +//AudioReceiverFreq35K +/res/sound/sinewave35k.wav + +//AudioReceiverFreq4K +/res/sound/sinewave4k.wav + +//AudioSpeakerFreq05K +/res/sound/sinewave05k.wav + +//AudioSpeakerFreq075K +/res/sound/sinewave075k.wav + +//AudioSpeakerFreq1K +/res/sound/sinewave1k.wav + +//AudioSpeakerFreq15K +/res/sound/sinewave15k.wav + +//AudioSpeakerFreq2K +/res/sound/sinewave2k.wav diff --git a/system/etc/fonts.xml b/system/etc/fonts.xml new file mode 100644 index 0000000000000000000000000000000000000000..ae93608726a3ef8918ff9875bbca9d7244758dfc --- /dev/null +++ b/system/etc/fonts.xml @@ -0,0 +1,509 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + WARNING: Parsing of this file by third-party apps is not supported. The + file, and the font files it refers to, will be renamed and/or moved out + from their respective location in the next Android release, and/or the + format or syntax of the file may change significantly. If you parse this + file for information about system fonts, do it at your own risk. Your + application will almost certainly break with the next major Android + release. + + In this file, all fonts without names are added to the default list. + Fonts are chosen based on a match: full BCP-47 language tag including + script, then just language, and finally order (the first font containing + the glyph). + + Order of appearance is also the tiebreaker for weight matching. This is + the reason why the 900 weights of Roboto precede the 700 weights - we + prefer the former when an 800 weight is requested. Since bold spans + effectively add 300 to the weight, this ensures that 900 is the bold + paired with the 500 weight, ensuring adequate contrast. +--> +<familyset version="22"> + <!-- first font is default --> + <family name="sans-serif"> + <font weight="100" style="normal">Roboto-Thin.ttf</font> + <font weight="100" style="italic">Roboto-ThinItalic.ttf</font> + <font weight="300" style="normal">Roboto-Light.ttf</font> + <font weight="300" style="italic">Roboto-LightItalic.ttf</font> + <font weight="400" style="normal">Roboto-Regular.ttf</font> + <font weight="400" style="italic">Roboto-Italic.ttf</font> + <font weight="500" style="normal">Roboto-Medium.ttf</font> + <font weight="500" style="italic">Roboto-MediumItalic.ttf</font> + <font weight="900" style="normal">Roboto-Black.ttf</font> + <font weight="900" style="italic">Roboto-BlackItalic.ttf</font> + <font weight="700" style="normal">Roboto-Bold.ttf</font> + <font weight="700" style="italic">Roboto-BoldItalic.ttf</font> + </family> + + <!-- Note that aliases must come after the fonts they reference. --> + <alias name="sans-serif-thin" to="sans-serif" weight="100" /> + <alias name="sans-serif-light" to="sans-serif" weight="300" /> + <alias name="sans-serif-medium" to="sans-serif" weight="500" /> + <alias name="sans-serif-black" to="sans-serif" weight="900" /> + <alias name="arial" to="sans-serif" /> + <alias name="helvetica" to="sans-serif" /> + <alias name="tahoma" to="sans-serif" /> + <alias name="verdana" to="sans-serif" /> + + <family name="sans-serif-condensed"> + <font weight="300" style="normal">RobotoCondensed-Light.ttf</font> + <font weight="300" style="italic">RobotoCondensed-LightItalic.ttf</font> + <font weight="400" style="normal">RobotoCondensed-Regular.ttf</font> + <font weight="400" style="italic">RobotoCondensed-Italic.ttf</font> + <font weight="500" style="normal">RobotoCondensed-Medium.ttf</font> + <font weight="500" style="italic">RobotoCondensed-MediumItalic.ttf</font> + <font weight="700" style="normal">RobotoCondensed-Bold.ttf</font> + <font weight="700" style="italic">RobotoCondensed-BoldItalic.ttf</font> + </family> + <alias name="sans-serif-condensed-light" to="sans-serif-condensed" weight="300" /> + <alias name="sans-serif-condensed-medium" to="sans-serif-condensed" weight="500" /> + + <family name="serif"> + <font weight="400" style="normal">NotoSerif-Regular.ttf</font> + <font weight="700" style="normal">NotoSerif-Bold.ttf</font> + <font weight="400" style="italic">NotoSerif-Italic.ttf</font> + <font weight="700" style="italic">NotoSerif-BoldItalic.ttf</font> + </family> + <alias name="times" to="serif" /> + <alias name="times new roman" to="serif" /> + <alias name="palatino" to="serif" /> + <alias name="georgia" to="serif" /> + <alias name="baskerville" to="serif" /> + <alias name="goudy" to="serif" /> + <alias name="fantasy" to="serif" /> + <alias name="ITC Stone Serif" to="serif" /> + + <family name="monospace"> + <font weight="400" style="normal">DroidSansMono.ttf</font> + </family> + <alias name="sans-serif-monospace" to="monospace" /> + <alias name="monaco" to="monospace" /> + + <family name="serif-monospace"> + <font weight="400" style="normal">CutiveMono.ttf</font> + </family> + <alias name="courier" to="serif-monospace" /> + <alias name="courier new" to="serif-monospace" /> + + <family name="casual"> + <font weight="400" style="normal">ComingSoon.ttf</font> + </family> + + <family name="cursive"> + <font weight="400" style="normal">DancingScript-Regular.ttf</font> + <font weight="700" style="normal">DancingScript-Bold.ttf</font> + </family> + + <family name="sans-serif-smallcaps"> + <font weight="400" style="normal">CarroisGothicSC-Regular.ttf</font> + </family> + + <!-- fallback fonts --> + <family lang="und-Arab" variant="elegant"> + <font weight="400" style="normal">NotoNaskhArabic-Regular.ttf</font> + <font weight="700" style="normal">NotoNaskhArabic-Bold.ttf</font> + </family> + <family lang="und-Arab" variant="compact"> + <font weight="400" style="normal">NotoNaskhArabicUI-Regular.ttf</font> + <font weight="700" style="normal">NotoNaskhArabicUI-Bold.ttf</font> + </family> + <family lang="und-Ethi"> + <font weight="400" style="normal">NotoSansEthiopic-Regular.ttf</font> + <font weight="700" style="normal">NotoSansEthiopic-Bold.ttf</font> + </family> + <family lang="und-Hebr"> + <font weight="400" style="normal">NotoSansHebrew-Regular.ttf</font> + <font weight="700" style="normal">NotoSansHebrew-Bold.ttf</font> + </family> + <family lang="und-Thai" variant="elegant"> + <font weight="400" style="normal">NotoSansThai-Regular.ttf</font> + <font weight="700" style="normal">NotoSansThai-Bold.ttf</font> + </family> + <family lang="und-Thai" variant="compact"> + <font weight="400" style="normal">NotoSansThaiUI-Regular.ttf</font> + <font weight="700" style="normal">NotoSansThaiUI-Bold.ttf</font> + </family> + <family lang="und-Armn"> + <font weight="400" style="normal">NotoSansArmenian-Regular.ttf</font> + <font weight="700" style="normal">NotoSansArmenian-Bold.ttf</font> + </family> + <!-- TODO: add Geok --> + <family lang="und-Geor"> + <font weight="400" style="normal">NotoSansGeorgian-Regular.ttf</font> + <font weight="700" style="normal">NotoSansGeorgian-Bold.ttf</font> + </family> + <family lang="und-Deva" variant="elegant"> + <font weight="400" style="normal">NotoSansDevanagari-Regular.ttf</font> + <font weight="700" style="normal">NotoSansDevanagari-Bold.ttf</font> + </family> + <family lang="und-Deva" variant="compact"> + <font weight="400" style="normal">NotoSansDevanagariUI-Regular.ttf</font> + <font weight="700" style="normal">NotoSansDevanagariUI-Bold.ttf</font> + </family> + + <!-- All scripts of India should come after Devanagari, due to shared + danda characters. + --> + <family lang="und-Gujr" variant="elegant"> + <font weight="400" style="normal">NotoSansGujarati-Regular.ttf</font> + <font weight="700" style="normal">NotoSansGujarati-Bold.ttf</font> + </family> + <family lang="und-Gujr" variant="compact"> + <font weight="400" style="normal">NotoSansGujaratiUI-Regular.ttf</font> + <font weight="700" style="normal">NotoSansGujaratiUI-Bold.ttf</font> + </family> + <family lang="und-Guru" variant="elegant"> + <font weight="400" style="normal">NotoSansGurmukhi-Regular.ttf</font> + <font weight="700" style="normal">NotoSansGurmukhi-Bold.ttf</font> + </family> + <family lang="und-Guru" variant="compact"> + <font weight="400" style="normal">NotoSansGurmukhiUI-Regular.ttf</font> + <font weight="700" style="normal">NotoSansGurmukhiUI-Bold.ttf</font> + </family> + <family lang="und-Taml" variant="elegant"> + <font weight="400" style="normal">NotoSansTamil-Regular.ttf</font> + <font weight="700" style="normal">NotoSansTamil-Bold.ttf</font> + </family> + <family lang="und-Taml" variant="compact"> + <font weight="400" style="normal">NotoSansTamilUI-Regular.ttf</font> + <font weight="700" style="normal">NotoSansTamilUI-Bold.ttf</font> + </family> + <family lang="und-Mlym" variant="elegant"> + <font weight="400" style="normal">NotoSansMalayalam-Regular.ttf</font> + <font weight="700" style="normal">NotoSansMalayalam-Bold.ttf</font> + </family> + <family lang="und-Mlym" variant="compact"> + <font weight="400" style="normal">NotoSansMalayalamUI-Regular.ttf</font> + <font weight="700" style="normal">NotoSansMalayalamUI-Bold.ttf</font> + </family> + <family lang="und-Beng" variant="elegant"> + <font weight="400" style="normal">NotoSansBengali-Regular.ttf</font> + <font weight="700" style="normal">NotoSansBengali-Bold.ttf</font> + </family> + <family lang="und-Beng" variant="compact"> + <font weight="400" style="normal">NotoSansBengaliUI-Regular.ttf</font> + <font weight="700" style="normal">NotoSansBengaliUI-Bold.ttf</font> + </family> + <family lang="und-Telu" variant="elegant"> + <font weight="400" style="normal">NotoSansTelugu-Regular.ttf</font> + <font weight="700" style="normal">NotoSansTelugu-Bold.ttf</font> + </family> + <family lang="und-Telu" variant="compact"> + <font weight="400" style="normal">NotoSansTeluguUI-Regular.ttf</font> + <font weight="700" style="normal">NotoSansTeluguUI-Bold.ttf</font> + </family> + <family lang="und-Knda" variant="elegant"> + <font weight="400" style="normal">NotoSansKannada-Regular.ttf</font> + <font weight="700" style="normal">NotoSansKannada-Bold.ttf</font> + </family> + <family lang="und-Knda" variant="compact"> + <font weight="400" style="normal">NotoSansKannadaUI-Regular.ttf</font> + <font weight="700" style="normal">NotoSansKannadaUI-Bold.ttf</font> + </family> + <family lang="und-Orya" variant="elegant"> + <font weight="400" style="normal">NotoSansOriya-Regular.ttf</font> + <font weight="700" style="normal">NotoSansOriya-Bold.ttf</font> + </family> + <family lang="und-Orya" variant="compact"> + <font weight="400" style="normal">NotoSansOriyaUI-Regular.ttf</font> + <font weight="700" style="normal">NotoSansOriyaUI-Bold.ttf</font> + </family> + + <family lang="und-Sinh"> + <font weight="400" style="normal">NotoSansSinhala-Regular.ttf</font> + <font weight="700" style="normal">NotoSansSinhala-Bold.ttf</font> + </family> + <family lang="und-Khmr" variant="elegant"> + <font weight="100" style="normal">NotoSansKhmer-VF.ttf + <axis tag="wdth" stylevalue="100.0" /> + <axis tag="wght" stylevalue="26.0" /> + </font> + <font weight="200" style="normal">NotoSansKhmer-VF.ttf + <axis tag="wdth" stylevalue="100.0" /> + <axis tag="wght" stylevalue="39.0" /> + </font> + <font weight="300" style="normal">NotoSansKhmer-VF.ttf + <axis tag="wdth" stylevalue="100.0" /> + <axis tag="wght" stylevalue="58.0" /> + </font> + <font weight="400" style="normal">NotoSansKhmer-VF.ttf + <axis tag="wdth" stylevalue="100.0" /> + <axis tag="wght" stylevalue="90.0" /> + </font> + <font weight="500" style="normal">NotoSansKhmer-VF.ttf + <axis tag="wdth" stylevalue="100.0" /> + <axis tag="wght" stylevalue="108.0" /> + </font> + <font weight="600" style="normal">NotoSansKhmer-VF.ttf + <axis tag="wdth" stylevalue="100.0" /> + <axis tag="wght" stylevalue="128.0" /> + </font> + <font weight="700" style="normal">NotoSansKhmer-VF.ttf + <axis tag="wdth" stylevalue="100.0" /> + <axis tag="wght" stylevalue="151.0" /> + </font> + <font weight="800" style="normal">NotoSansKhmer-VF.ttf + <axis tag="wdth" stylevalue="100.0" /> + <axis tag="wght" stylevalue="169.0" /> + </font> + <font weight="900" style="normal">NotoSansKhmer-VF.ttf + <axis tag="wdth" stylevalue="100.0" /> + <axis tag="wght" stylevalue="190.0" /> + </font> + </family> + <family lang="und-Khmr" variant="compact"> + <font weight="400" style="normal">NotoSansKhmerUI-Regular.ttf</font> + <font weight="700" style="normal">NotoSansKhmerUI-Bold.ttf</font> + </family> + <family lang="und-Laoo" variant="elegant"> + <font weight="400" style="normal">NotoSansLao-Regular.ttf</font> + <font weight="700" style="normal">NotoSansLao-Bold.ttf</font> + </family> + <family lang="und-Laoo" variant="compact"> + <font weight="400" style="normal">NotoSansLaoUI-Regular.ttf</font> + <font weight="700" style="normal">NotoSansLaoUI-Bold.ttf</font> + </family> + <family lang="und-Mymr" variant="elegant"> + <font weight="400" style="normal">NotoSansMyanmar-Regular.ttf</font> + <font weight="700" style="normal">NotoSansMyanmar-Bold.ttf</font> + </family> + <family lang="und-Mymr" variant="compact"> + <font weight="400" style="normal">NotoSansMyanmarUI-Regular.ttf</font> + <font weight="700" style="normal">NotoSansMyanmarUI-Bold.ttf</font> + </family> + <family lang="und-Thaa"> + <font weight="400" style="normal">NotoSansThaana-Regular.ttf</font> + <font weight="700" style="normal">NotoSansThaana-Bold.ttf</font> + </family> + <family lang="und-Cham"> + <font weight="400" style="normal">NotoSansCham-Regular.ttf</font> + <font weight="700" style="normal">NotoSansCham-Bold.ttf</font> + </family> + <family lang="und-Adlm"> + <font weight="400" style="normal">NotoSansAdlam-Regular.ttf</font> + </family> + <family lang="und-Avst"> + <font weight="400" style="normal">NotoSansAvestan-Regular.ttf</font> + </family> + <family lang="und-Bali"> + <font weight="400" style="normal">NotoSansBalinese-Regular.ttf</font> + </family> + <family lang="und-Bamu"> + <font weight="400" style="normal">NotoSansBamum-Regular.ttf</font> + </family> + <family lang="und-Batk"> + <font weight="400" style="normal">NotoSansBatak-Regular.ttf</font> + </family> + <family lang="und-Brah"> + <font weight="400" style="normal">NotoSansBrahmi-Regular.ttf</font> + </family> + <family lang="und-Bugi"> + <font weight="400" style="normal">NotoSansBuginese-Regular.ttf</font> + </family> + <family lang="und-Buhd"> + <font weight="400" style="normal">NotoSansBuhid-Regular.ttf</font> + </family> + <family lang="und-Cans"> + <font weight="400" style="normal">NotoSansCanadianAboriginal-Regular.ttf</font> + </family> + <family lang="und-Cari"> + <font weight="400" style="normal">NotoSansCarian-Regular.ttf</font> + </family> + <family lang="und-Cher"> + <font weight="400" style="normal">NotoSansCherokee-Regular.ttf</font> + </family> + <family lang="und-Copt"> + <font weight="400" style="normal">NotoSansCoptic-Regular.ttf</font> + </family> + <family lang="und-Xsux"> + <font weight="400" style="normal">NotoSansCuneiform-Regular.ttf</font> + </family> + <family lang="und-Cprt"> + <font weight="400" style="normal">NotoSansCypriot-Regular.ttf</font> + </family> + <family lang="und-Dsrt"> + <font weight="400" style="normal">NotoSansDeseret-Regular.ttf</font> + </family> + <family lang="und-Egyp"> + <font weight="400" style="normal">NotoSansEgyptianHieroglyphs-Regular.ttf</font> + </family> + <family lang="und-Glag"> + <font weight="400" style="normal">NotoSansGlagolitic-Regular.ttf</font> + </family> + <family lang="und-Goth"> + <font weight="400" style="normal">NotoSansGothic-Regular.ttf</font> + </family> + <family lang="und-Hano"> + <font weight="400" style="normal">NotoSansHanunoo-Regular.ttf</font> + </family> + <family lang="und-Armi"> + <font weight="400" style="normal">NotoSansImperialAramaic-Regular.ttf</font> + </family> + <family lang="und-Phli"> + <font weight="400" style="normal">NotoSansInscriptionalPahlavi-Regular.ttf</font> + </family> + <family lang="und-Prti"> + <font weight="400" style="normal">NotoSansInscriptionalParthian-Regular.ttf</font> + </family> + <family lang="und-Java"> + <font weight="400" style="normal">NotoSansJavanese-Regular.ttf</font> + </family> + <family lang="und-Kthi"> + <font weight="400" style="normal">NotoSansKaithi-Regular.ttf</font> + </family> + <family lang="und-Kali"> + <font weight="400" style="normal">NotoSansKayahLi-Regular.ttf</font> + </family> + <family lang="und-Khar"> + <font weight="400" style="normal">NotoSansKharoshthi-Regular.ttf</font> + </family> + <family lang="und-Lepc"> + <font weight="400" style="normal">NotoSansLepcha-Regular.ttf</font> + </family> + <family lang="und-Limb"> + <font weight="400" style="normal">NotoSansLimbu-Regular.ttf</font> + </family> + <family lang="und-Linb"> + <font weight="400" style="normal">NotoSansLinearB-Regular.ttf</font> + </family> + <family lang="und-Lisu"> + <font weight="400" style="normal">NotoSansLisu-Regular.ttf</font> + </family> + <family lang="und-Lyci"> + <font weight="400" style="normal">NotoSansLycian-Regular.ttf</font> + </family> + <family lang="und-Lydi"> + <font weight="400" style="normal">NotoSansLydian-Regular.ttf</font> + </family> + <family lang="und-Mand"> + <font weight="400" style="normal">NotoSansMandaic-Regular.ttf</font> + </family> + <family lang="und-Mtei"> + <font weight="400" style="normal">NotoSansMeeteiMayek-Regular.ttf</font> + </family> + <family lang="und-Talu"> + <font weight="400" style="normal">NotoSansNewTaiLue-Regular.ttf</font> + </family> + <family lang="und-Nkoo"> + <font weight="400" style="normal">NotoSansNKo-Regular.ttf</font> + </family> + <family lang="und-Ogam"> + <font weight="400" style="normal">NotoSansOgham-Regular.ttf</font> + </family> + <family lang="und-Olck"> + <font weight="400" style="normal">NotoSansOlChiki-Regular.ttf</font> + </family> + <family lang="und-Ital"> + <font weight="400" style="normal">NotoSansOldItalic-Regular.ttf</font> + </family> + <family lang="und-Xpeo"> + <font weight="400" style="normal">NotoSansOldPersian-Regular.ttf</font> + </family> + <family lang="und-Sarb"> + <font weight="400" style="normal">NotoSansOldSouthArabian-Regular.ttf</font> + </family> + <family lang="und-Orkh"> + <font weight="400" style="normal">NotoSansOldTurkic-Regular.ttf</font> + </family> + <family lang="und-Osma"> + <font weight="400" style="normal">NotoSansOsmanya-Regular.ttf</font> + </family> + <family lang="und-Phnx"> + <font weight="400" style="normal">NotoSansPhoenician-Regular.ttf</font> + </family> + <family lang="und-Rjng"> + <font weight="400" style="normal">NotoSansRejang-Regular.ttf</font> + </family> + <family lang="und-Runr"> + <font weight="400" style="normal">NotoSansRunic-Regular.ttf</font> + </family> + <family lang="und-Samr"> + <font weight="400" style="normal">NotoSansSamaritan-Regular.ttf</font> + </family> + <family lang="und-Saur"> + <font weight="400" style="normal">NotoSansSaurashtra-Regular.ttf</font> + </family> + <family lang="und-Shaw"> + <font weight="400" style="normal">NotoSansShavian-Regular.ttf</font> + </family> + <family lang="und-Sund"> + <font weight="400" style="normal">NotoSansSundanese-Regular.ttf</font> + </family> + <family lang="und-Sylo"> + <font weight="400" style="normal">NotoSansSylotiNagri-Regular.ttf</font> + </family> + <!-- Esrangela should precede Eastern and Western Syriac, since it's our default form. --> + <family lang="und-Syre"> + <font weight="400" style="normal">NotoSansSyriacEstrangela-Regular.ttf</font> + </family> + <family lang="und-Syrn"> + <font weight="400" style="normal">NotoSansSyriacEastern-Regular.ttf</font> + </family> + <family lang="und-Syrj"> + <font weight="400" style="normal">NotoSansSyriacWestern-Regular.ttf</font> + </family> + <family lang="und-Tglg"> + <font weight="400" style="normal">NotoSansTagalog-Regular.ttf</font> + </family> + <family lang="und-Tagb"> + <font weight="400" style="normal">NotoSansTagbanwa-Regular.ttf</font> + </family> + <family lang="und-Lana"> + <font weight="400" style="normal">NotoSansTaiTham-Regular.ttf</font> + </family> + <family lang="und-Tavt"> + <font weight="400" style="normal">NotoSansTaiViet-Regular.ttf</font> + </family> + <family lang="und-Tibt"> + <font weight="400" style="normal">NotoSansTibetan-Regular.ttf</font> + <font weight="700" style="normal">NotoSansTibetan-Bold.ttf</font> + </family> + <family lang="und-Tfng"> + <font weight="400" style="normal">NotoSansTifinagh-Regular.ttf</font> + </family> + <family lang="und-Ugar"> + <font weight="400" style="normal">NotoSansUgaritic-Regular.ttf</font> + </family> + <family lang="und-Vaii"> + <font weight="400" style="normal">NotoSansVai-Regular.ttf</font> + </family> + <family> + <font weight="400" style="normal">NotoSansSymbols-Regular-Subsetted.ttf</font> + </family> + <family lang="zh-Hans"> + <font weight="400" style="normal" index="2">NotoSansCJK-Regular.ttc</font> + </family> + <!-- TODO: Add Bopo --> + <family lang="zh-Hant"> + <font weight="400" style="normal" index="3">NotoSansCJK-Regular.ttc</font> + </family> + <family lang="ja"> + <font weight="400" style="normal" index="0">NotoSansCJK-Regular.ttc</font> + </family> + <family lang="ko"> + <font weight="400" style="normal" index="1">NotoSansCJK-Regular.ttc</font> + </family> + <family lang="und-Zsye"> + <font weight="400" style="normal">NotoColorEmoji.ttf</font> + </family> + <family lang="und-Zsym"> + <font weight="400" style="normal">NotoSansSymbols-Regular-Subsetted2.ttf</font> + </family> + <!-- + Tai Le, Yi, Mongolian, and Phags-pa are intentionally kept last, to make sure they don't + override the East Asian punctuation for Chinese. + --> + <family lang="und-Tale"> + <font weight="400" style="normal">NotoSansTaiLe-Regular.ttf</font> + </family> + <family lang="und-Yiii"> + <font weight="400" style="normal">NotoSansYi-Regular.ttf</font> + </family> + <family lang="und-Mong"> + <font weight="400" style="normal">NotoSansMongolian-Regular.ttf</font> + </family> + <family lang="und-Phag"> + <font weight="400" style="normal">NotoSansPhagsPa-Regular.ttf</font> + </family> +</familyset> diff --git a/system/etc/fs_config_dirs b/system/etc/fs_config_dirs new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/system/etc/fs_config_files b/system/etc/fs_config_files new file mode 100644 index 0000000000000000000000000000000000000000..e18df08aec86983899e49f0002ef63c1ff9a2379 Binary files /dev/null and b/system/etc/fs_config_files differ diff --git a/system/etc/group b/system/etc/group new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/system/etc/hosts b/system/etc/hosts new file mode 100644 index 0000000000000000000000000000000000000000..649151cef760606204b5ad24d57bc3ea7a0e21e4 --- /dev/null +++ b/system/etc/hosts @@ -0,0 +1,2 @@ +127.0.0.1 localhost +::1 ip6-localhost diff --git a/system/etc/init/aal.rc b/system/etc/init/aal.rc new file mode 100644 index 0000000000000000000000000000000000000000..36a9da72616880b45fd7b63b115195b04f6ca48a --- /dev/null +++ b/system/etc/init/aal.rc @@ -0,0 +1,5 @@ +service aal /system/bin/aal + class main + user system + group system graphics + diff --git a/system/etc/init/aee_aed.rc b/system/etc/init/aee_aed.rc new file mode 100644 index 0000000000000000000000000000000000000000..286478dda249be20ccf5b5a8fef18b4fb294bb95 --- /dev/null +++ b/system/etc/init/aee_aed.rc @@ -0,0 +1,11 @@ +service aee_aed /system/bin/aee_aed + group root readproc + writepid /dev/cpuset/system-background/tasks + onrestart restart aee_aedv + onrestart restart aee_aedv64 + +service aee-reinit /system/bin/aee_aed --reinit + oneshot + disabled + user root + group root diff --git a/system/etc/init/android.hidl.allocator@1.0-service.rc b/system/etc/init/android.hidl.allocator@1.0-service.rc new file mode 100644 index 0000000000000000000000000000000000000000..4f05523e307c7073260dc59425a278dea0a5d6a4 --- /dev/null +++ b/system/etc/init/android.hidl.allocator@1.0-service.rc @@ -0,0 +1,4 @@ +service hidl_memory /system/bin/hw/android.hidl.allocator@1.0-service + class hal + user system + group system diff --git a/system/etc/init/atcid.rc b/system/etc/init/atcid.rc new file mode 100644 index 0000000000000000000000000000000000000000..565c3a96135c85895d1128d4677731cc577f0c3f --- /dev/null +++ b/system/etc/init/atcid.rc @@ -0,0 +1,21 @@ +service atcid-daemon-u /system/bin/atcid + class main + socket adb_atci_socket stream 660 radio system + user system + group radio system media + disabled + oneshot + +service atcid-daemon-e /system/bin/atcid + class core + socket adb_atci_socket stream 660 radio system + user root + group radio system + disabled + oneshot + +on property:ro.build.type=eng +start atcid-daemon-e + +on property:persist.service.atci.autostart=1 +start atcid-daemon-u diff --git a/system/etc/init/atrace.rc b/system/etc/init/atrace.rc new file mode 100644 index 0000000000000000000000000000000000000000..3ea1d5677103f120d9bc14d813c941df34396d41 --- /dev/null +++ b/system/etc/init/atrace.rc @@ -0,0 +1,151 @@ +## Permissions to allow system-wide tracing to the kernel trace buffer. +## +on post-fs + +# Allow writing to the kernel trace log. + chmod 0222 /sys/kernel/debug/tracing/trace_marker + chmod 0222 /sys/kernel/tracing/trace_marker + +# Allow the shell group to enable (some) kernel tracing. + chown root shell /sys/kernel/debug/tracing/trace_clock + chown root shell /sys/kernel/tracing/trace_clock + chown root shell /sys/kernel/debug/tracing/buffer_size_kb + chown root shell /sys/kernel/tracing/buffer_size_kb + chown root shell /sys/kernel/debug/tracing/options/overwrite + chown root shell /sys/kernel/tracing/options/overwrite + chown root shell /sys/kernel/debug/tracing/options/print-tgid + chown root shell /sys/kernel/tracing/options/print-tgid + chown root shell /sys/kernel/debug/tracing/saved_cmdlines_size + chown root shell /sys/kernel/tracing/saved_cmdlines_size + chown root shell /sys/kernel/debug/tracing/events/sched/sched_switch/enable + chown root shell /sys/kernel/tracing/events/sched/sched_switch/enable + chown root shell /sys/kernel/debug/tracing/events/sched/sched_wakeup/enable + chown root shell /sys/kernel/tracing/events/sched/sched_wakeup/enable + chown root shell /sys/kernel/debug/tracing/events/sched/sched_blocked_reason/enable + chown root shell /sys/kernel/tracing/events/sched/sched_blocked_reason/enable + chown root shell /sys/kernel/debug/tracing/events/sched/sched_cpu_hotplug/enable + chown root shell /sys/kernel/tracing/events/sched/sched_cpu_hotplug/enable + chown root shell /sys/kernel/debug/tracing/events/cgroup/enable + chown root shell /sys/kernel/tracing/events/cgroup/enable + chown root shell /sys/kernel/debug/tracing/events/power/cpu_frequency/enable + chown root shell /sys/kernel/tracing/events/power/cpu_frequency/enable + chown root shell /sys/kernel/debug/tracing/events/power/cpu_idle/enable + chown root shell /sys/kernel/tracing/events/power/cpu_idle/enable + chown root shell /sys/kernel/debug/tracing/events/power/clock_set_rate/enable + chown root shell /sys/kernel/tracing/events/power/clock_set_rate/enable + chown root shell /sys/kernel/debug/tracing/events/power/cpu_frequency_limits/enable + chown root shell /sys/kernel/tracing/events/power/cpu_frequency_limits/enable + chown root shell /sys/kernel/debug/tracing/events/cpufreq_interactive/enable + chown root shell /sys/kernel/tracing/events/cpufreq_interactive/enable + chown root shell /sys/kernel/debug/tracing/events/vmscan/mm_vmscan_direct_reclaim_begin/enable + chown root shell /sys/kernel/tracing/events/vmscan/mm_vmscan_direct_reclaim_begin/enable + chown root shell /sys/kernel/debug/tracing/events/vmscan/mm_vmscan_direct_reclaim_end/enable + chown root shell /sys/kernel/tracing/events/vmscan/mm_vmscan_direct_reclaim_end/enable + chown root shell /sys/kernel/debug/tracing/events/vmscan/mm_vmscan_kswapd_wake/enable + chown root shell /sys/kernel/tracing/events/vmscan/mm_vmscan_kswapd_wake/enable + chown root shell /sys/kernel/debug/tracing/events/vmscan/mm_vmscan_kswapd_sleep/enable + chown root shell /sys/kernel/tracing/events/vmscan/mm_vmscan_kswapd_sleep/enable + chown root shell /sys/kernel/debug/tracing/events/binder/binder_transaction/enable + chown root shell /sys/kernel/tracing/events/binder/binder_transaction/enable + chown root shell /sys/kernel/debug/tracing/events/binder/binder_transaction_received/enable + chown root shell /sys/kernel/tracing/events/binder/binder_transaction_received/enable + chown root shell /sys/kernel/debug/tracing/events/binder/binder_lock/enable + chown root shell /sys/kernel/tracing/events/binder/binder_lock/enable + chown root shell /sys/kernel/debug/tracing/events/binder/binder_locked/enable + chown root shell /sys/kernel/tracing/events/binder/binder_locked/enable + chown root shell /sys/kernel/debug/tracing/events/binder/binder_unlock/enable + chown root shell /sys/kernel/tracing/events/binder/binder_unlock/enable + chown root shell /sys/kernel/debug/tracing/events/lowmemorykiller/enable + chown root shell /sys/kernel/tracing/events/lowmemorykiller/enable + + chown root shell /sys/kernel/debug/tracing/tracing_on + chown root shell /sys/kernel/tracing/tracing_on + + chmod 0664 /sys/kernel/debug/tracing/trace_clock + chmod 0664 /sys/kernel/tracing/trace_clock + chmod 0664 /sys/kernel/debug/tracing/buffer_size_kb + chmod 0664 /sys/kernel/tracing/buffer_size_kb + chmod 0664 /sys/kernel/debug/tracing/options/overwrite + chmod 0664 /sys/kernel/tracing/options/overwrite + chmod 0664 /sys/kernel/debug/tracing/options/print-tgid + chmod 0664 /sys/kernel/tracing/options/print-tgid + chmod 0664 /sys/kernel/debug/tracing/saved_cmdlines_size + chmod 0664 /sys/kernel/tracing/saved_cmdlines_size + chmod 0664 /sys/kernel/debug/tracing/events/sched/sched_switch/enable + chmod 0664 /sys/kernel/tracing/events/sched/sched_switch/enable + chmod 0664 /sys/kernel/debug/tracing/events/sched/sched_wakeup/enable + chmod 0664 /sys/kernel/tracing/events/sched/sched_wakeup/enable + chmod 0664 /sys/kernel/debug/tracing/events/sched/sched_blocked_reason/enable + chmod 0664 /sys/kernel/tracing/events/sched/sched_blocked_reason/enable + chmod 0664 /sys/kernel/debug/tracing/events/sched/sched_cpu_hotplug/enable + chmod 0664 /sys/kernel/tracing/events/sched/sched_cpu_hotplug/enable + chmod 0664 /sys/kernel/debug/tracing/events/cgroup/enable + chmod 0664 /sys/kernel/tracing/events/cgroup/enable + chmod 0664 /sys/kernel/debug/tracing/events/power/cpu_frequency/enable + chmod 0664 /sys/kernel/tracing/events/power/cpu_frequency/enable + chmod 0664 /sys/kernel/debug/tracing/events/power/cpu_idle/enable + chmod 0664 /sys/kernel/tracing/events/power/cpu_idle/enable + chmod 0664 /sys/kernel/debug/tracing/events/power/clock_set_rate/enable + chmod 0664 /sys/kernel/tracing/events/power/clock_set_rate/enable + chmod 0664 /sys/kernel/debug/tracing/events/power/cpu_frequency_limits/enable + chmod 0664 /sys/kernel/tracing/events/power/cpu_frequency_limits/enable + chmod 0664 /sys/kernel/debug/tracing/events/cpufreq_interactive/enable + chmod 0664 /sys/kernel/tracing/events/cpufreq_interactive/enable + chmod 0664 /sys/kernel/debug/tracing/events/vmscan/mm_vmscan_direct_reclaim_begin/enable + chmod 0664 /sys/kernel/tracing/events/vmscan/mm_vmscan_direct_reclaim_begin/enable + chmod 0664 /sys/kernel/debug/tracing/events/vmscan/mm_vmscan_direct_reclaim_end/enable + chmod 0664 /sys/kernel/tracing/events/vmscan/mm_vmscan_direct_reclaim_end/enable + chmod 0664 /sys/kernel/debug/tracing/events/vmscan/mm_vmscan_kswapd_wake/enable + chmod 0664 /sys/kernel/tracing/events/vmscan/mm_vmscan_kswapd_wake/enable + chmod 0664 /sys/kernel/debug/tracing/events/vmscan/mm_vmscan_kswapd_sleep/enable + chmod 0664 /sys/kernel/tracing/events/vmscan/mm_vmscan_kswapd_sleep/enable + chmod 0664 /sys/kernel/debug/tracing/tracing_on + chmod 0664 /sys/kernel/tracing/tracing_on + chmod 0664 /sys/kernel/debug/tracing/events/binder/binder_transaction/enable + chmod 0664 /sys/kernel/tracing/events/binder/binder_transaction/enable + chmod 0664 /sys/kernel/debug/tracing/events/binder/binder_transaction_received/enable + chmod 0664 /sys/kernel/tracing/events/binder/binder_transaction_received/enable + chmod 0664 /sys/kernel/debug/tracing/events/binder/binder_lock/enable + chmod 0664 /sys/kernel/tracing/events/binder/binder_lock/enable + chmod 0664 /sys/kernel/debug/tracing/events/binder/binder_locked/enable + chmod 0664 /sys/kernel/tracing/events/binder/binder_locked/enable + chmod 0664 /sys/kernel/debug/tracing/events/binder/binder_unlock/enable + chmod 0664 /sys/kernel/tracing/events/binder/binder_unlock/enable + chmod 0664 /sys/kernel/debug/tracing/events/i2c/enable + chmod 0664 /sys/kernel/tracing/events/i2c/enable + chmod 0664 /sys/kernel/debug/tracing/events/i2c/i2c_read/enable + chmod 0664 /sys/kernel/tracing/events/i2c/i2c_read/enable + chmod 0664 /sys/kernel/debug/tracing/events/i2c/i2c_write/enable + chmod 0664 /sys/kernel/tracing/events/i2c/i2c_write/enable + chmod 0664 /sys/kernel/debug/tracing/events/i2c/i2c_result/enable + chmod 0664 /sys/kernel/tracing/events/i2c/i2c_result/enable + chmod 0664 /sys/kernel/debug/tracing/events/i2c/i2c_reply/enable + chmod 0664 /sys/kernel/tracing/events/i2c/i2c_reply/enable + chmod 0664 /sys/kernel/debug/tracing/events/i2c/smbus_read/enable + chmod 0664 /sys/kernel/tracing/events/i2c/smbus_read/enable + chmod 0664 /sys/kernel/debug/tracing/events/i2c/smbus_write/enable + chmod 0664 /sys/kernel/tracing/events/i2c/smbus_write/enable + chmod 0664 /sys/kernel/debug/tracing/events/i2c/smbus_result/enable + chmod 0664 /sys/kernel/tracing/events/i2c/smbus_result/enable + chmod 0664 /sys/kernel/debug/tracing/events/i2c/smbus_reply/enable + chmod 0664 /sys/kernel/tracing/events/i2c/smbus_reply/enable + chmod 0664 /sys/kernel/debug/tracing/events/lowmemorykiller/enable + chmod 0664 /sys/kernel/tracing/events/lowmemorykiller/enable + + # Tracing disabled by default + write /sys/kernel/debug/tracing/tracing_on 0 + write /sys/kernel/tracing/tracing_on 0 + +# Allow only the shell group to read and truncate the kernel trace. + chown root shell /sys/kernel/debug/tracing/trace + chown root shell /sys/kernel/tracing/trace + chmod 0660 /sys/kernel/debug/tracing/trace + chmod 0660 /sys/kernel/tracing/trace + +on property:persist.debug.atrace.boottrace=1 + start boottrace + +# Run atrace with the categories written in a file +service boottrace /system/bin/atrace --async_start -f /data/misc/boottrace/categories + disabled + oneshot diff --git a/system/etc/init/audiocmdservice_atci.rc b/system/etc/init/audiocmdservice_atci.rc new file mode 100644 index 0000000000000000000000000000000000000000..0a005065b171457115cf036894bf23aa68e655dd --- /dev/null +++ b/system/etc/init/audiocmdservice_atci.rc @@ -0,0 +1,7 @@ +service audio-daemon /system/bin/audiocmdservice_atci + class main + socket atci-audio stream 660 root system + user root + disabled + oneshot + diff --git a/system/etc/init/audioserver.rc b/system/etc/init/audioserver.rc new file mode 100644 index 0000000000000000000000000000000000000000..03d89b0b7c09401aca71c4449d90428f8b38caa8 --- /dev/null +++ b/system/etc/init/audioserver.rc @@ -0,0 +1,13 @@ +service audioserver /system/bin/audioserver + class main + user audioserver + # media gid needed for /dev/fm (radio) and for /data/misc/media (tee) + group audio camera drmrpc inet media mediadrm net_bt net_bt_admin net_bw_acct system sdcard_rw + ioprio rt 4 + writepid /dev/cpuset/foreground/tasks /dev/stune/foreground/tasks + onrestart restart audio-hal-2-0 + +on property:vts.native_server.on=1 + stop audioserver +on property:vts.native_server.on=0 + start audioserver diff --git a/system/etc/init/batterywarning.rc b/system/etc/init/batterywarning.rc new file mode 100644 index 0000000000000000000000000000000000000000..17618b3d80ee072aa9d8c9c132e6b3b33c8df897 --- /dev/null +++ b/system/etc/init/batterywarning.rc @@ -0,0 +1,6 @@ +#monitor battery status +service batterywarning /system/bin/batterywarning + class main + user system + group system + diff --git a/system/etc/init/bootanim.rc b/system/etc/init/bootanim.rc new file mode 100644 index 0000000000000000000000000000000000000000..9d120c4df743629e636523c186df0c3e95ecad04 --- /dev/null +++ b/system/etc/init/bootanim.rc @@ -0,0 +1,24 @@ +service bootanim /system/bin/bootanimation + class core animation + user graphics + group graphics audio + disabled + oneshot + writepid /dev/stune/top-app/tasks + +# MTK add +service banim_shutmp3 /system/bin/bootanimation shut mp3 + class core animation + user graphics + group graphics audio + disabled + oneshot + writepid /dev/stune/top-app/tasks + +service banim_shutnomp3 /system/bin/bootanimation shut nomp3 + class core animation + user graphics + group graphics audio + disabled + oneshot + writepid /dev/stune/top-app/tasks diff --git a/system/etc/init/bootlogoupdater.rc b/system/etc/init/bootlogoupdater.rc new file mode 100644 index 0000000000000000000000000000000000000000..16f9fab9b27fcbcbd485a4235252a77d774d76d5 --- /dev/null +++ b/system/etc/init/bootlogoupdater.rc @@ -0,0 +1,5 @@ + +# Update the second boot logo +service bootlogoupdater /system/bin/boot_logo_updater + class core + oneshot diff --git a/system/etc/init/bootstat.rc b/system/etc/init/bootstat.rc new file mode 100644 index 0000000000000000000000000000000000000000..2c48faed4e0ddc99d0c1fcd84f13882b5ff1c3c9 --- /dev/null +++ b/system/etc/init/bootstat.rc @@ -0,0 +1,77 @@ +# This file is the LOCAL_INIT_RC file for the bootstat command. + +on post-fs-data + mkdir /data/misc/bootstat 0700 system log + # To deal with ota transition resulting from a change in DAC from + # root.root to system.log, may be deleted after ota has settled. + chown system log /data/misc/bootstat/absolute_boot_time + chown system log /data/misc/bootstat/boot_complete + chown system log /data/misc/bootstat/boot_complete_no_encryption + chown system log /data/misc/bootstat/boot_reason + chown system log /data/misc/bootstat/boottime.bootloader.1BLE + chown system log /data/misc/bootstat/boottime.bootloader.1BLL + chown system log /data/misc/bootstat/boottime.bootloader.2BLE + chown system log /data/misc/bootstat/boottime.bootloader.2BLL + chown system log /data/misc/bootstat/boottime.bootloader.AVB + chown system log /data/misc/bootstat/boottime.bootloader.KD + chown system log /data/misc/bootstat/boottime.bootloader.KL + chown system log /data/misc/bootstat/boottime.bootloader.ODT + chown system log /data/misc/bootstat/boottime.bootloader.SW + chown system log /data/misc/bootstat/boottime.bootloader.total + chown system log /data/misc/bootstat/build_date + chown system log /data/misc/bootstat/factory_reset + chown system log /data/misc/bootstat/factory_reset_boot_complete + chown system log /data/misc/bootstat/factory_reset_boot_complete_no_encryption + chown system log /data/misc/bootstat/factory_reset_current_time + chown system log /data/misc/bootstat/factory_reset_record_value + chown system log /data/misc/bootstat/last_boot_time_utc + chown system log /data/misc/bootstat/ota_boot_complete + chown system log /data/misc/bootstat/ota_boot_complete_no_encryption + chown system log /data/misc/bootstat/post_decrypt_time_elapsed + chown system log /data/misc/bootstat/ro.boottime.init + chown system log /data/misc/bootstat/ro.boottime.init.cold_boot_wait + chown system log /data/misc/bootstat/ro.boottime.init.selinux + chown system log /data/misc/bootstat/time_since_factory_reset + chown system log /data/misc/bootstat/time_since_last_boot + # end ota transitional support + +# Record the time at which the user has successfully entered the pin to decrypt +# the device, /data is decrypted, and the system is entering the main boot phase. +# +# post-fs-data: /data is writable +# property:init.svc.bootanim=running: The boot animation is running +# property:ro.crypto.type=block: FDE device +on post-fs-data && property:init.svc.bootanim=running && property:ro.crypto.type=block + exec - system log -- /system/bin/bootstat -r post_decrypt_time_elapsed + +# sys.logbootcomplete is a signal to enable the bootstat logging mechanism. +# This signaling is necessary to prevent logging boot metrics after a runtime +# restart (e.g., adb shell stop && adb shell start). /proc/uptime is not reset +# during a runtime restart, which leads to false boot time metrics being reported. +# +# The 'on boot' event occurs once per hard boot (device power on), which +# switches the flag on. If the device performs a runtime restart, the flag is +# switched off and cannot be switched on until the device hard boots again. + +# Enable bootstat logging on boot. +on boot + setprop sys.logbootcomplete 1 + +# Disable further bootstat logging on a runtime restart. A runtime restart is +# signaled by the zygote stopping. +on property:init.svc.zygote=stopping + setprop sys.logbootcomplete 0 + +# Record boot complete metrics. +on property:sys.boot_completed=1 && property:sys.logbootcomplete=1 + # Record boot_complete and related stats (decryption, etc). + exec - system log -- /system/bin/bootstat --record_boot_complete + + # Record the boot reason. + exec - system log -- /system/bin/bootstat --record_boot_reason + + # Record time since factory reset. + exec - system log -- /system/bin/bootstat --record_time_since_factory_reset + + # Log all boot events. + exec - system log -- /system/bin/bootstat -l diff --git a/system/etc/init/cameraserver.rc b/system/etc/init/cameraserver.rc new file mode 100644 index 0000000000000000000000000000000000000000..fea5a1d5c6e45ed057fd201e6d8a9816fb594a40 --- /dev/null +++ b/system/etc/init/cameraserver.rc @@ -0,0 +1,6 @@ +service cameraserver /system/bin/cameraserver + class main + user cameraserver + group audio camera input drmrpc + ioprio rt 4 + writepid /dev/cpuset/camera-daemon/tasks /dev/stune/top-app/tasks diff --git a/system/etc/init/drmserver.rc b/system/etc/init/drmserver.rc new file mode 100644 index 0000000000000000000000000000000000000000..5d9442c4bf3188771c4d0cd0b8f16c82dd7dbd16 --- /dev/null +++ b/system/etc/init/drmserver.rc @@ -0,0 +1,6 @@ +service drm /system/bin/drmserver + class main + user drm + # Add drmserver access sdcard and internal storage permission + group drm system inet drmrpc readproc sdcard_rw media_rw + writepid /dev/cpuset/foreground/tasks diff --git a/system/etc/init/dumpstate.rc b/system/etc/init/dumpstate.rc new file mode 100644 index 0000000000000000000000000000000000000000..2e72574738d30d2bb023da98a198db8ec64aee74 --- /dev/null +++ b/system/etc/init/dumpstate.rc @@ -0,0 +1,19 @@ +on boot + # Allow bugreports access to eMMC 5.0 stats + chown root mount /sys/kernel/debug/mmc0/mmc0:0001/ext_csd + chmod 0440 /sys/kernel/debug/mmc0/mmc0:0001/ext_csd + +service dumpstate /system/bin/dumpstate -s + class main + socket dumpstate stream 0660 shell log + disabled + oneshot + +# dumpstatez generates a zipped bugreport but also uses a socket to print the file location once +# it is finished. +service dumpstatez /system/bin/dumpstate -S -d -z \ + -o /data/user_de/0/com.android.shell/files/bugreports/bugreport + socket dumpstate stream 0660 shell log + class main + disabled + oneshot diff --git a/system/etc/init/emdlogger1.rc b/system/etc/init/emdlogger1.rc new file mode 100644 index 0000000000000000000000000000000000000000..c99179a8838553922dfc703c7fa5bc8071eec846 --- /dev/null +++ b/system/etc/init/emdlogger1.rc @@ -0,0 +1,6 @@ +service emdlogger1 /system/bin/emdlogger1 + class main + user shell + group system shell radio sdcard_rw inet sdcard_r media_rw + disabled + oneshot \ No newline at end of file diff --git a/system/etc/init/emdlogger2.rc b/system/etc/init/emdlogger2.rc new file mode 100644 index 0000000000000000000000000000000000000000..e88cf264ec44fc918619859fb7428b38212cb4fa --- /dev/null +++ b/system/etc/init/emdlogger2.rc @@ -0,0 +1,6 @@ +service emdlogger2 /system/bin/emdlogger2 + class main + user shell + group system shell radio sdcard_rw inet sdcard_r media_rw + disabled + oneshot \ No newline at end of file diff --git a/system/etc/init/emdlogger5.rc b/system/etc/init/emdlogger5.rc new file mode 100644 index 0000000000000000000000000000000000000000..cc193f8d5ac609b4f72427a0290bcb6e032cfc18 --- /dev/null +++ b/system/etc/init/emdlogger5.rc @@ -0,0 +1,6 @@ +service emdlogger5 /system/bin/emdlogger5 + class main + user shell + group system shell radio sdcard_rw inet sdcard_r media_rw + disabled + oneshot \ No newline at end of file diff --git a/system/etc/init/gatekeeperd.rc b/system/etc/init/gatekeeperd.rc new file mode 100644 index 0000000000000000000000000000000000000000..8b126d588a256ee3e5280218ddd644430010f3e1 --- /dev/null +++ b/system/etc/init/gatekeeperd.rc @@ -0,0 +1,4 @@ +service gatekeeperd /system/bin/gatekeeperd /data/misc/gatekeeper + class late_start + user system + writepid /dev/cpuset/system-background/tasks diff --git a/system/etc/init/ged_srv.rc b/system/etc/init/ged_srv.rc new file mode 100644 index 0000000000000000000000000000000000000000..989a4c5c0a8ff20ad852cc48ade902069ae2322a --- /dev/null +++ b/system/etc/init/ged_srv.rc @@ -0,0 +1,24 @@ +# start ged_srv +on property:sys.boot_completed=1 + start ged_srv + +service ged_srv /system/bin/ged_srv + class core + user system + group system readproc inet net_admin + disabled + +# Permission for ged proc node +on boot + chown system system /sys/kernel/debug/ged/hal/fps_upper_bound + chmod 0660 /sys/kernel/debug/ged/hal/fps_upper_bound + chown system system /sys/kernel/debug/ged/hal/vsync_offset_level + chmod 0660 /sys/kernel/debug/ged/hal/vsync_offset_level + chown system system /sys/kernel/debug/ged/hal/event_notify + chmod 0660 /sys/kernel/debug/ged/hal/event_notify + chown media media /sys/kernel/debug/ged/hal/media_event + chown system system /sys/kernel/debug/ged/hal/custom_upbound_gpu_freq + chmod 0660 /sys/kernel/debug/ged/hal/custom_upbound_gpu_freq + chown system system /sys/kernel/debug/ged/hal/custom_boost_gpu_freq + chmod 0660 /sys/kernel/debug/ged/hal/custom_boost_gpu_freq + diff --git a/system/etc/init/hwservicemanager.rc b/system/etc/init/hwservicemanager.rc new file mode 100644 index 0000000000000000000000000000000000000000..96fd5b0dd694e5942bb16f5c111a089a16229499 --- /dev/null +++ b/system/etc/init/hwservicemanager.rc @@ -0,0 +1,11 @@ +service hwservicemanager /system/bin/hwservicemanager + user system + disabled + group system readproc + critical + onrestart setprop hwservicemanager.ready false + onrestart class_restart hal + onrestart class_restart early_hal + writepid /dev/cpuset/system-background/tasks + class animation + shutdown critical diff --git a/system/etc/init/init.thermald.rc b/system/etc/init/init.thermald.rc new file mode 100644 index 0000000000000000000000000000000000000000..e49ac5277648b27dd15a31f03800a612345e6fd7 --- /dev/null +++ b/system/etc/init/init.thermald.rc @@ -0,0 +1,4 @@ +service thermald /system/bin/thermald + class main + user system + group system diff --git a/system/etc/init/init.vtservice.rc b/system/etc/init/init.vtservice.rc new file mode 100644 index 0000000000000000000000000000000000000000..a8214ce8bace3ae59afc70d23704b3a8bf4e4693 --- /dev/null +++ b/system/etc/init/init.vtservice.rc @@ -0,0 +1,14 @@ +# VTService .rc configure + +service vtservice /system/bin/vtservice + class main + user system + group system camera graphics inet net_admin net_raw media sdcard_rw radio sdcard_r media_rw + ioprio rt 4 + +service vtservice_hidl /vendor/bin/hw/vtservice_hidl + class hal + socket volte_vt stream 660 root system + user system + group system camera graphics inet net_admin net_raw media sdcard_rw radio sdcard_r media_rw + ioprio rt 4 diff --git a/system/etc/init/installd.rc b/system/etc/init/installd.rc new file mode 100644 index 0000000000000000000000000000000000000000..240aa495b7efc897d08deff4941ce442cfeac3a1 --- /dev/null +++ b/system/etc/init/installd.rc @@ -0,0 +1,103 @@ + +service installd /system/bin/installd + class main + +on early-boot + mkdir /config/sdcardfs/extensions/1055 + mkdir /config/sdcardfs/extensions/1056 + mkdir /config/sdcardfs/extensions/1057 + mkdir /config/sdcardfs/extensions/1056/3gpp + mkdir /config/sdcardfs/extensions/1056/3gp + mkdir /config/sdcardfs/extensions/1056/3gpp2 + mkdir /config/sdcardfs/extensions/1056/3g2 + mkdir /config/sdcardfs/extensions/1056/avi + mkdir /config/sdcardfs/extensions/1056/dl + mkdir /config/sdcardfs/extensions/1056/dif + mkdir /config/sdcardfs/extensions/1056/dv + mkdir /config/sdcardfs/extensions/1056/fli + mkdir /config/sdcardfs/extensions/1056/m4v + mkdir /config/sdcardfs/extensions/1056/ts + mkdir /config/sdcardfs/extensions/1056/mpeg + mkdir /config/sdcardfs/extensions/1056/mpg + mkdir /config/sdcardfs/extensions/1056/mpe + mkdir /config/sdcardfs/extensions/1056/mp4 + mkdir /config/sdcardfs/extensions/1056/vob + mkdir /config/sdcardfs/extensions/1056/qt + mkdir /config/sdcardfs/extensions/1056/mov + mkdir /config/sdcardfs/extensions/1056/mxu + mkdir /config/sdcardfs/extensions/1056/webm + mkdir /config/sdcardfs/extensions/1056/lsf + mkdir /config/sdcardfs/extensions/1056/lsx + mkdir /config/sdcardfs/extensions/1056/mkv + mkdir /config/sdcardfs/extensions/1056/mng + mkdir /config/sdcardfs/extensions/1056/asf + mkdir /config/sdcardfs/extensions/1056/asx + mkdir /config/sdcardfs/extensions/1056/wm + mkdir /config/sdcardfs/extensions/1056/wmv + mkdir /config/sdcardfs/extensions/1056/wmx + mkdir /config/sdcardfs/extensions/1056/wvx + mkdir /config/sdcardfs/extensions/1056/movie + mkdir /config/sdcardfs/extensions/1056/wrf + mkdir /config/sdcardfs/extensions/1057/bmp + mkdir /config/sdcardfs/extensions/1057/gif + mkdir /config/sdcardfs/extensions/1057/jpg + mkdir /config/sdcardfs/extensions/1057/jpeg + mkdir /config/sdcardfs/extensions/1057/jpe + mkdir /config/sdcardfs/extensions/1057/pcx + mkdir /config/sdcardfs/extensions/1057/png + mkdir /config/sdcardfs/extensions/1057/svg + mkdir /config/sdcardfs/extensions/1057/svgz + mkdir /config/sdcardfs/extensions/1057/tiff + mkdir /config/sdcardfs/extensions/1057/tif + mkdir /config/sdcardfs/extensions/1057/wbmp + mkdir /config/sdcardfs/extensions/1057/webp + mkdir /config/sdcardfs/extensions/1057/dng + mkdir /config/sdcardfs/extensions/1057/cr2 + mkdir /config/sdcardfs/extensions/1057/ras + mkdir /config/sdcardfs/extensions/1057/art + mkdir /config/sdcardfs/extensions/1057/jng + mkdir /config/sdcardfs/extensions/1057/nef + mkdir /config/sdcardfs/extensions/1057/nrw + mkdir /config/sdcardfs/extensions/1057/orf + mkdir /config/sdcardfs/extensions/1057/rw2 + mkdir /config/sdcardfs/extensions/1057/pef + mkdir /config/sdcardfs/extensions/1057/psd + mkdir /config/sdcardfs/extensions/1057/pnm + mkdir /config/sdcardfs/extensions/1057/pbm + mkdir /config/sdcardfs/extensions/1057/pgm + mkdir /config/sdcardfs/extensions/1057/ppm + mkdir /config/sdcardfs/extensions/1057/srw + mkdir /config/sdcardfs/extensions/1057/arw + mkdir /config/sdcardfs/extensions/1057/rgb + mkdir /config/sdcardfs/extensions/1057/xbm + mkdir /config/sdcardfs/extensions/1057/xpm + mkdir /config/sdcardfs/extensions/1057/xwd + mkdir /config/sdcardfs/extensions/1055/aac + mkdir /config/sdcardfs/extensions/1055/aac + mkdir /config/sdcardfs/extensions/1055/amr + mkdir /config/sdcardfs/extensions/1055/awb + mkdir /config/sdcardfs/extensions/1055/snd + mkdir /config/sdcardfs/extensions/1055/flac + mkdir /config/sdcardfs/extensions/1055/flac + mkdir /config/sdcardfs/extensions/1055/mp3 + mkdir /config/sdcardfs/extensions/1055/mpga + mkdir /config/sdcardfs/extensions/1055/mpega + mkdir /config/sdcardfs/extensions/1055/mp2 + mkdir /config/sdcardfs/extensions/1055/m4a + mkdir /config/sdcardfs/extensions/1055/aif + mkdir /config/sdcardfs/extensions/1055/aiff + mkdir /config/sdcardfs/extensions/1055/aifc + mkdir /config/sdcardfs/extensions/1055/gsm + mkdir /config/sdcardfs/extensions/1055/mka + mkdir /config/sdcardfs/extensions/1055/m3u + mkdir /config/sdcardfs/extensions/1055/wma + mkdir /config/sdcardfs/extensions/1055/wax + mkdir /config/sdcardfs/extensions/1055/ra + mkdir /config/sdcardfs/extensions/1055/rm + mkdir /config/sdcardfs/extensions/1055/ram + mkdir /config/sdcardfs/extensions/1055/ra + mkdir /config/sdcardfs/extensions/1055/pls + mkdir /config/sdcardfs/extensions/1055/sd2 + mkdir /config/sdcardfs/extensions/1055/wav + mkdir /config/sdcardfs/extensions/1055/ogg + mkdir /config/sdcardfs/extensions/1055/oga diff --git a/system/etc/init/keystore.rc b/system/etc/init/keystore.rc new file mode 100644 index 0000000000000000000000000000000000000000..5dac93772aca948988a86650b093fe08bc299481 --- /dev/null +++ b/system/etc/init/keystore.rc @@ -0,0 +1,5 @@ +service keystore /system/bin/keystore /data/misc/keystore + class main + user keystore + group keystore drmrpc readproc + writepid /dev/cpuset/foreground/tasks diff --git a/system/etc/init/kpoc_charger.rc b/system/etc/init/kpoc_charger.rc new file mode 100644 index 0000000000000000000000000000000000000000..e71adad3712fe8a37a38f40666b33938b5607e35 --- /dev/null +++ b/system/etc/init/kpoc_charger.rc @@ -0,0 +1,5 @@ +on charger + start kpoc_charger + +service kpoc_charger /system/bin/kpoc_charger + class charger diff --git a/system/etc/init/lmkd.rc b/system/etc/init/lmkd.rc new file mode 100644 index 0000000000000000000000000000000000000000..3bb84abf60624bdf735c09b468e00b21f5e436ac --- /dev/null +++ b/system/etc/init/lmkd.rc @@ -0,0 +1,6 @@ +service lmkd /system/bin/lmkd + class core + group root readproc + critical + socket lmkd seqpacket 0660 system system + writepid /dev/cpuset/system-background/tasks diff --git a/system/etc/init/logd.rc b/system/etc/init/logd.rc new file mode 100644 index 0000000000000000000000000000000000000000..a1b13146eb55672a0930bd75a1aba36d750a1b0c --- /dev/null +++ b/system/etc/init/logd.rc @@ -0,0 +1,23 @@ +service logd /system/bin/logd + socket logd stream 0666 logd logd + socket logdr seqpacket 0666 logd logd + socket logdw dgram+passcred 0222 logd logd + file /proc/kmsg r + file /dev/kmsg w + user logd + group logd system package_info readproc + + + +service logd-reinit /system/bin/logd --reinit + oneshot + disabled + user logd + group logd + +on fs + write /dev/event-log-tags "# content owned by logd +" + chown logd logd /dev/event-log-tags + chmod 0644 /dev/event-log-tags + restorecon /dev/event-log-tags diff --git a/system/etc/init/md_monitor.rc b/system/etc/init/md_monitor.rc new file mode 100644 index 0000000000000000000000000000000000000000..3f85c7390df619d2d1eca3bc2587fbe8351f7a9f --- /dev/null +++ b/system/etc/init/md_monitor.rc @@ -0,0 +1,13 @@ +# MTK platform .rc configure +service md_monitor /system/bin/md_monitor + class main + user system + group system radio sdcard_rw inet sdcard_r media_rw + disabled + oneshot + +on property:persist.mdmmonitor=0 + stop md_monitor + +on property:persist.mdmmonitor=1 + start md_monitor diff --git a/system/etc/init/mdlogger.rc b/system/etc/init/mdlogger.rc new file mode 100644 index 0000000000000000000000000000000000000000..cc5fc8fd78bac84551b8f7f8f3d39f1e0b9a397b --- /dev/null +++ b/system/etc/init/mdlogger.rc @@ -0,0 +1,6 @@ +service mdlogger /system/bin/mdlogger + class main + user shell + group shell system radio sdcard_rw inet sdcard_r media_rw + disabled + oneshot \ No newline at end of file diff --git a/system/etc/init/mdnsd.rc b/system/etc/init/mdnsd.rc new file mode 100644 index 0000000000000000000000000000000000000000..0696ac5b47bedd82ae9c66dfaf52c3054fb74903 --- /dev/null +++ b/system/etc/init/mdnsd.rc @@ -0,0 +1,7 @@ +service mdnsd /system/bin/mdnsd + class main + user mdnsr + group inet + socket mdnsd stream 0660 mdnsr inet + disabled + oneshot diff --git a/system/etc/init/mediadrmserver.rc b/system/etc/init/mediadrmserver.rc new file mode 100644 index 0000000000000000000000000000000000000000..359c2cf76d52bce5ccc5e71faea0ca1d1bbceb53 --- /dev/null +++ b/system/etc/init/mediadrmserver.rc @@ -0,0 +1,6 @@ +service mediadrm /system/bin/mediadrmserver + class main + user media + group mediadrm drmrpc + ioprio rt 4 + writepid /dev/cpuset/foreground/tasks diff --git a/system/etc/init/mediaextractor.rc b/system/etc/init/mediaextractor.rc new file mode 100644 index 0000000000000000000000000000000000000000..5fc294111c0d9eab681c30ad5748221fc8594035 --- /dev/null +++ b/system/etc/init/mediaextractor.rc @@ -0,0 +1,6 @@ +service mediaextractor /system/bin/mediaextractor + class main + user mediaex + group drmrpc mediadrm + ioprio rt 4 + writepid /dev/cpuset/foreground/tasks diff --git a/system/etc/init/mediaserver.rc b/system/etc/init/mediaserver.rc new file mode 100644 index 0000000000000000000000000000000000000000..c7c7ce0634c3cf3c518c513c5b37a49a2f77a375 --- /dev/null +++ b/system/etc/init/mediaserver.rc @@ -0,0 +1,6 @@ +service media /system/bin/mediaserver + class main + user media + group audio camera inet net_bt net_bt_admin net_bw_acct drmrpc mediadrm readproc + ioprio rt 4 + writepid /dev/cpuset/foreground/tasks /dev/stune/foreground/tasks diff --git a/system/etc/init/met_log_d.rc b/system/etc/init/met_log_d.rc new file mode 100644 index 0000000000000000000000000000000000000000..e7455d4917ff50bd7efdda5d5a2f01a905f84b34 --- /dev/null +++ b/system/etc/init/met_log_d.rc @@ -0,0 +1,3 @@ +service met_log_d /system/bin/met_log_d + class main + diff --git a/system/etc/init/mobile_log_d.rc b/system/etc/init/mobile_log_d.rc new file mode 100644 index 0000000000000000000000000000000000000000..aa0347be52e069b3e4baf936b75c3cd4f8f0fd04 --- /dev/null +++ b/system/etc/init/mobile_log_d.rc @@ -0,0 +1,35 @@ +on post-fs-data + mkdir /data/log_temp 0755 system system + mkdir /data/misc/mblog 0755 system system + +service mobile_log_d /system/bin/mobile_log_d + class main + +service mmedialogstart /system/bin/mobile_log_d --ftrace mmedia + oneshot + disabled + +service bsplogstart /system/bin/mobile_log_d --ftrace bsp + oneshot + disabled + +service trace_buf_off /system/bin/mobile_log_d --ftrace off + oneshot + disabled + +# ftrace log buffer control +on property:ftrace.buffer.log=mmedia + start mmedialogstart + +on property:ftrace.buffer.log=bsp + start bsplogstart + +on property:ftrace.buffer.log=off + start trace_buf_off + +# MTK PR_DEBUG SWITCH +on property:debug.MB.prdebug=1 + write /sys/kernel/debug/dynamic_debug/control "file *mediatek* +p" + write /sys/kernel/debug/dynamic_debug/control "file *gpu* -p" +on property:debug.MB.prdebug=0 + write /sys/kernel/debug/dynamic_debug/control "file *mediatek* -p" diff --git a/system/etc/init/mtpd.rc b/system/etc/init/mtpd.rc new file mode 100644 index 0000000000000000000000000000000000000000..af701d59c9bb0ea8155355ece3f0426f94407221 --- /dev/null +++ b/system/etc/init/mtpd.rc @@ -0,0 +1,8 @@ +service mtpd /system/bin/mtpd + class main + socket mtpd stream 600 system system + user vpn + group vpn inet + capabilities NET_ADMIN NET_RAW + disabled + oneshot diff --git a/system/etc/init/netd.rc b/system/etc/init/netd.rc new file mode 100644 index 0000000000000000000000000000000000000000..4fc6fd8c7796edbf1bfc4542c498e18369c67986 --- /dev/null +++ b/system/etc/init/netd.rc @@ -0,0 +1,6 @@ +service netd /system/bin/netd + class main + socket netd stream 0660 root system + socket dnsproxyd stream 0660 root inet + socket mdns stream 0660 root system + socket fwmarkd stream 0660 root inet diff --git a/system/etc/init/netdiag.rc b/system/etc/init/netdiag.rc new file mode 100644 index 0000000000000000000000000000000000000000..6734f465dcac4079d4f931e787e19bedd76a88fc --- /dev/null +++ b/system/etc/init/netdiag.rc @@ -0,0 +1,33 @@ +# emdlogger SELinux issue for selinux_android_restorecon phase out +# mkdir /data/mdlog 0775 shell system +# mkdir /data/mdlog/bootupLog 0755 shell system + +on boot + +##Netlog tool + #change permissions about terminal + chown root radio /proc/net/vlan/config + chmod 0640 /proc/net/vlan/config + chown root radio /proc/net/ip6_tables_matches + chown root radio /proc/net/ip6_tables_names + chown root radio /proc/net/ip6_tables_targets + chown root radio /proc/net/arp_tables_targets + chown root radio /proc/net/arp_tables_matches + chown root radio /proc/net/arp_tables_names + chown root radio /proc/net/ip_tables_targets + chown root radio /proc/net/ip_tables_matches + chown root radio /proc/net/ip_tables_names + chown root radio /proc/net/ip_conntrack_expect + chown root radio /proc/net/ip_conntrack + chown root radio /proc/net/nf_conntrack + chown root radio /proc/net/nf_conntrack_expect + chown root radio /proc/net/netfilter/nfnetlink_log + chown root radio /proc/net/netfilter/nfnetlink_queue + + +# define device for EMCSMDLOGGER +# chown system radio /dev/ttyGS3 +# chmod 0660 /dev/ttyGS3 + +service netdiag /system/bin/netdiag + class main \ No newline at end of file diff --git a/system/etc/init/program_binary_service.rc b/system/etc/init/program_binary_service.rc new file mode 100644 index 0000000000000000000000000000000000000000..d7da1d4c04902011d6d1a0609a36cef07ef04368 --- /dev/null +++ b/system/etc/init/program_binary_service.rc @@ -0,0 +1,7 @@ +# Program binary service +service program_binary /system/bin/program_binary_service + class late_start + user system + group graphics + oneshot + diff --git a/system/etc/init/racoon.rc b/system/etc/init/racoon.rc new file mode 100644 index 0000000000000000000000000000000000000000..fdb8823f814ac9f693007b08a8e26f04536f6aa1 --- /dev/null +++ b/system/etc/init/racoon.rc @@ -0,0 +1,9 @@ +service racoon /system/bin/racoon + class main + socket racoon stream 600 system system + # IKE uses UDP port 500. + user vpn + group vpn inet + capabilities NET_ADMIN NET_BIND_SERVICE NET_RAW + disabled + oneshot diff --git a/system/etc/init/servicemanager.rc b/system/etc/init/servicemanager.rc new file mode 100644 index 0000000000000000000000000000000000000000..d336a436d712ef3bfd561cbce8d3622717299294 --- /dev/null +++ b/system/etc/init/servicemanager.rc @@ -0,0 +1,15 @@ +service servicemanager /system/bin/servicemanager + class core animation + user system + group system readproc + critical + onrestart restart healthd + onrestart restart zygote + onrestart restart audioserver + onrestart restart media + onrestart restart surfaceflinger + onrestart restart inputflinger + onrestart restart drm + onrestart restart cameraserver + writepid /dev/cpuset/system-background/tasks + shutdown critical diff --git a/system/etc/init/sn.rc b/system/etc/init/sn.rc new file mode 100644 index 0000000000000000000000000000000000000000..27a2a775b3621003fd7dd764c0b04b43b769994b --- /dev/null +++ b/system/etc/init/sn.rc @@ -0,0 +1,14 @@ +on post-fs-data + chmod 0664 /sys/class/android_usb/android0/iSerial + chown root system /sys/class/android_usb/android0/iSerial + chmod 0664 /sys/devices/platform/mt_usb/cmode + chown root system /sys/devices/platform/mt_usb/cmode + chmod 0664 /sys/class/udc/musb-hdrc/device/cmode + chown root system /sys/class/udc/musb-hdrc/device/cmode + +service sn /system/bin/sn + class late_start + user system + group system sdcard_rw + oneshot + diff --git a/system/etc/init/storaged.rc b/system/etc/init/storaged.rc new file mode 100644 index 0000000000000000000000000000000000000000..a24c7fba8e941544d7bbef17b82174265d1fc270 --- /dev/null +++ b/system/etc/init/storaged.rc @@ -0,0 +1,7 @@ +service storaged /system/bin/storaged + class main + priority 10 + file /d/mmc0/mmc0:0001/ext_csd r + writepid /dev/cpuset/system-background/tasks + user root + group package_info \ No newline at end of file diff --git a/system/etc/init/storagemanagerd.rc b/system/etc/init/storagemanagerd.rc new file mode 100644 index 0000000000000000000000000000000000000000..7e554105543e754aa713fe31d8ed9d1126046178 --- /dev/null +++ b/system/etc/init/storagemanagerd.rc @@ -0,0 +1,18 @@ +#mount all storages in meta mode +on nonencrypted && property:ro.bootmode=meta + start mount_all_storages + +on property:vold.decrypt=trigger_restart_framework && property:ro.bootmode=meta + start mount_all_storages + +#mount all storages in factory mode +on nonencrypted && property:ro.bootmode=factory + start mount_all_storages + +on property:vold.decrypt=trigger_restart_framework && property:ro.bootmode=factory + start mount_all_storages + +service mount_all_storages /system/bin/storagemanagerd --wait volume mount_all + class main + disabled + oneshot diff --git a/system/etc/init/surfaceflinger.rc b/system/etc/init/surfaceflinger.rc new file mode 100644 index 0000000000000000000000000000000000000000..aea602bba489ac481b202d798daed8f7da99af49 --- /dev/null +++ b/system/etc/init/surfaceflinger.rc @@ -0,0 +1,9 @@ +service surfaceflinger /system/bin/surfaceflinger + class core animation + user system + group graphics drmrpc readproc + onrestart restart zygote + writepid /dev/stune/foreground/tasks + socket pdx/system/vr/display/client stream 0666 system graphics u:object_r:pdx_display_client_endpoint_socket:s0 + socket pdx/system/vr/display/manager stream 0666 system graphics u:object_r:pdx_display_manager_endpoint_socket:s0 + socket pdx/system/vr/display/vsync stream 0666 system graphics u:object_r:pdx_display_vsync_endpoint_socket:s0 diff --git a/system/etc/init/terserver.rc b/system/etc/init/terserver.rc new file mode 100644 index 0000000000000000000000000000000000000000..767e0d2ffa4483f672171c363f7eaf54cc706c13 --- /dev/null +++ b/system/etc/init/terserver.rc @@ -0,0 +1,8 @@ +# +# Telephony Early Read service +# +service terservice /system/bin/terservice + class core + user radio + group radio cache inet misc + oneshot diff --git a/system/etc/init/thermalindicator.rc b/system/etc/init/thermalindicator.rc new file mode 100644 index 0000000000000000000000000000000000000000..20544981fb055b6f873e37b24f86ff57d4674bb7 --- /dev/null +++ b/system/etc/init/thermalindicator.rc @@ -0,0 +1,11 @@ +# Thermal Indicator Service + +service ThermalIndicator /system/bin/thermalindicator + class core + disabled + +on property:debug.mtk.thermalindicator=0 + stop ThermalIndicator + +on property:debug.mtk.thermalindicator=1 + start ThermalIndicator \ No newline at end of file diff --git a/system/etc/init/thermalservice.rc b/system/etc/init/thermalservice.rc new file mode 100644 index 0000000000000000000000000000000000000000..b9836cec8065bf45ea67cdb4863536ff7f4accbd --- /dev/null +++ b/system/etc/init/thermalservice.rc @@ -0,0 +1,2 @@ +service thermalservice /system/bin/thermalserviced + class core diff --git a/system/etc/init/tombstoned.rc b/system/etc/init/tombstoned.rc new file mode 100644 index 0000000000000000000000000000000000000000..53ef01c5f873e49383ce1a4b722b666eb191293b --- /dev/null +++ b/system/etc/init/tombstoned.rc @@ -0,0 +1,11 @@ +service tombstoned /system/bin/tombstoned + user tombstoned + group system + + # Don't start tombstoned until after the real /data is mounted. + class late_start + + socket tombstoned_crash seqpacket 0666 system system + socket tombstoned_intercept seqpacket 0666 system system + socket tombstoned_java_trace seqpacket 0666 system system + writepid /dev/cpuset/system-background/tasks diff --git a/system/etc/init/uncrypt.rc b/system/etc/init/uncrypt.rc new file mode 100644 index 0000000000000000000000000000000000000000..52f564eb6cf8885e83049b0a2216b3c637705cbe --- /dev/null +++ b/system/etc/init/uncrypt.rc @@ -0,0 +1,17 @@ +service uncrypt /system/bin/uncrypt + class main + socket uncrypt stream 600 system system + disabled + oneshot + +service setup-bcb /system/bin/uncrypt --setup-bcb + class main + socket uncrypt stream 600 system system + disabled + oneshot + +service clear-bcb /system/bin/uncrypt --clear-bcb + class main + socket uncrypt stream 600 system system + disabled + oneshot diff --git a/system/etc/init/vdc.rc b/system/etc/init/vdc.rc new file mode 100644 index 0000000000000000000000000000000000000000..4d51ced245448e6cdf416a3a4cfb09252f6f6d4c --- /dev/null +++ b/system/etc/init/vdc.rc @@ -0,0 +1,12 @@ +# One shot invocation to deal with encrypted volume. +on defaultcrypto + exec - root -- /system/bin/vdc --wait cryptfs mountdefaultencrypted + # vold will set vold.decrypt to trigger_restart_framework (default + # encryption) or trigger_restart_min_framework (other encryption) + +# One shot invocation to encrypt unencrypted volumes +on encrypt + start surfaceflinger + exec - root -- /system/bin/vdc --wait cryptfs enablecrypto inplace default noui + # vold will set vold.decrypt to trigger_restart_framework (default + # encryption) diff --git a/system/etc/init/vold.rc b/system/etc/init/vold.rc new file mode 100644 index 0000000000000000000000000000000000000000..87e2fd8a9287f91242b09d99c742250ba799bca5 --- /dev/null +++ b/system/etc/init/vold.rc @@ -0,0 +1,10 @@ +service vold /system/bin/vold \ + --blkid_context=u:r:blkid:s0 --blkid_untrusted_context=u:r:blkid_untrusted:s0 \ + --fsck_context=u:r:fsck:s0 --fsck_untrusted_context=u:r:fsck_untrusted:s0 + class core + socket vold stream 0660 root mount + socket cryptd stream 0660 root mount + ioprio be 2 + writepid /dev/cpuset/foreground/tasks + shutdown critical + diff --git a/system/etc/init/webview_zygote32.rc b/system/etc/init/webview_zygote32.rc new file mode 100644 index 0000000000000000000000000000000000000000..b7decc8eba3b198de050f636a39b490d712e8f5f --- /dev/null +++ b/system/etc/init/webview_zygote32.rc @@ -0,0 +1,22 @@ +# +# Copyright (C) 2016 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +service webview_zygote32 /system/bin/webview_zygote32 + user webview_zygote + socket webview_zygote stream 660 webview_zygote system + +on property:init.svc.zygote=stopped + stop webview_zygote32 diff --git a/system/etc/init/wifi-events.rc b/system/etc/init/wifi-events.rc new file mode 100644 index 0000000000000000000000000000000000000000..b4b09344136f26ae371182d13d1ee41a9fde1728 --- /dev/null +++ b/system/etc/init/wifi-events.rc @@ -0,0 +1,64 @@ +# +# Copyright (C) 2016 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +on fs + setprop sys.wifitracing.started 0 + +on property:sys.boot_completed=1 && property:sys.wifitracing.started=0 + # Create trace buffer, and set basic configuration. + mkdir /sys/kernel/debug/tracing/instances/wifi 711 + restorecon_recursive /sys/kernel/debug/tracing/instances/wifi + write /sys/kernel/debug/tracing/instances/wifi/tracing_on 0 + write /sys/kernel/debug/tracing/instances/wifi/buffer_size_kb 1 + write /sys/kernel/debug/tracing/instances/wifi/trace_options disable_on_free + + # Enable cfg80211 events for connection and key management events. + # - Events are not actually logged until WifiService writes "1" to + # /sys/kernel/debug/tracing/instances/wifi/tracing_on. + # - WifiService is responsible for turning tracing off and on. + write /sys/kernel/debug/tracing/instances/wifi/events/cfg80211/cfg80211_gtk_rekey_notify/enable 1 + write /sys/kernel/debug/tracing/instances/wifi/events/cfg80211/rdev_add_key/enable 1 + write /sys/kernel/debug/tracing/instances/wifi/events/cfg80211/rdev_assoc/enable 1 + write /sys/kernel/debug/tracing/instances/wifi/events/cfg80211/rdev_auth/enable 1 + write /sys/kernel/debug/tracing/instances/wifi/events/cfg80211/rdev_connect/enable 1 + write /sys/kernel/debug/tracing/instances/wifi/events/cfg80211/rdev_set_default_key/enable 1 + write /sys/kernel/debug/tracing/instances/wifi/events/cfg80211/rdev_set_default_mgmt_key/enable 1 + write /sys/kernel/debug/tracing/instances/wifi/events/cfg80211/rdev_set_rekey_data/enable 1 + + # Enable datapath events for Wifi. + # - Events are not actually logged until WifiService writes "1" to + # /sys/kernel/debug/tracing/instances/wifi/tracing_on. + # - WifiService will ensure that tracing is turned back off, + # when a connection attempt ends (whether in success or failure) + write /sys/kernel/debug/tracing/instances/wifi/events/net/filter name==${wifi.interface:-wlan0} + write /sys/kernel/debug/tracing/instances/wifi/events/net/net_dev_queue/enable 1 + write /sys/kernel/debug/tracing/instances/wifi/events/net/net_dev_xmit/enable 1 + write /sys/kernel/debug/tracing/instances/wifi/events/net/netif_rx/enable 1 + write /sys/kernel/debug/tracing/instances/wifi/events/net/netif_receive_skb/enable 1 + + # Set DAC to allow system_server to enable/disable, and read wifi trace + # events. + chown system /sys/kernel/debug/tracing/instances/wifi/tracing_on + chown system /sys/kernel/debug/tracing/instances/wifi/free_buffer + chown system /sys/kernel/debug/tracing/instances/wifi/trace + chmod 200 /sys/kernel/debug/tracing/instances/wifi/tracing_on + chmod 400 /sys/kernel/debug/tracing/instances/wifi/free_buffer + chmod 600 /sys/kernel/debug/tracing/instances/wifi/trace + setprop sys.wifitracing.started 1 + +on property:sys.boot_completed=1 && property:wifi.interface=* && sys.wifitracing.started=1 + # Override default value. + write /sys/kernel/debug/tracing/instances/wifi/events/net/filter name==${wifi.interface} diff --git a/system/etc/init/wificond.rc b/system/etc/init/wificond.rc new file mode 100644 index 0000000000000000000000000000000000000000..3cc72e6c736e734a853022477cbf575fe0a0cf13 --- /dev/null +++ b/system/etc/init/wificond.rc @@ -0,0 +1,4 @@ +service wificond /system/bin/wificond + class main + user wifi + group wifi net_raw net_admin diff --git a/system/etc/ld.config.txt b/system/etc/ld.config.txt new file mode 100644 index 0000000000000000000000000000000000000000..8aa3369302c777632ed87b782a69db782a967ce5 --- /dev/null +++ b/system/etc/ld.config.txt @@ -0,0 +1,128 @@ +# Copyright (C) 2017 The Android Open Source Project +# +# Bionic loader config file. +# + +# Don't change the order here. +dir.system = /system/bin/ +dir.system = /system/xbin/ +dir.vendor = /vendor/bin/ +dir.vendor = /data/nativetest/vendor +dir.vendor = /data/nativetest64/vendor +dir.vendor = /data/benchmarktest/vendor +dir.vendor = /data/benchmarktest64/vendor +dir.system = /data/nativetest +dir.system = /data/nativetest64 +dir.system = /data/benchmarktest +dir.system = /data/benchmarktest64 + +[system] +additional.namespaces = sphal,vndk,rs + +############################################################################### +# "default" namespace +# +# Framework-side code runs in this namespace. Anything from /vendor partition +# can't be loaded in this namespace. +############################################################################### +namespace.default.isolated = false +namespace.default.search.paths = /system/${LIB}:/vendor/${LIB} +namespace.default.permitted.paths = /system/${LIB}:/vendor/${LIB} + +namespace.default.asan.search.paths = /data/asan/system/${LIB}:/system/${LIB}:/data/asan/vendor/${LIB}:/vendor/${LIB} +namespace.default.asan.permitted.paths = /data/asan/system/${LIB}:/system/${LIB}:/data/asan/vendor/${LIB}:/vendor/${LIB} + +# TODO(b/37013858): remove all dependencies to /vendor/lib from system processes +# When this is done, comment out following three lines and remove the three +# lines above +#namespace.default.isolated = true +#namespace.default.search.paths = /system/${LIB} +#namespace.default.permitted.paths = /system/${LIB} +# +#namespace.default.asan.search.paths = /data/asan/system/${LIB}:/system/${LIB} +#namespace.default.asan.permitted.paths = /data/asan/system/${LIB}:/system/${LIB} + +############################################################################### +# "sphal" namespace +# +# SP-HAL(Sameprocess-HAL)s are the only vendor libraries that are allowed to be +# loaded inside system processes. libEGL_<chipset>.so, libGLESv2_<chipset>.so, +# android.hardware.graphics.mapper@2.0-impl.so, etc are SP-HALs. +# +# This namespace is exclusivly for SP-HALs. When the framework tries to dynami- +# cally load SP-HALs, android_dlopen_ext() is used to explicitly specifying +# that they should be searched and loaded from this namespace. +# +# Note that there is no link from the default namespace to this namespace. +############################################################################### +namespace.sphal.isolated = true +namespace.sphal.visible = true +namespace.sphal.search.paths = /vendor/${LIB}/egl:/vendor/${LIB}/hw:/vendor/${LIB} +namespace.sphal.permitted.paths = /vendor/${LIB}:/system/${LIB}/vndk-sp/hw + +namespace.sphal.asan.search.paths = /data/asan/vendor/${LIB}/egl:/vendor/${LIB}/egl:/data/asan/vendor/${LIB}/hw:/vendor/${LIB}/hw:/data/asan/vendor/${LIB}:/vendor/${LIB} +namespace.sphal.asan.permitted.paths = /data/asan/vendor/${LIB}:/vendor/${LIB} + +# Once in this namespace, access to libraries in /system/lib is restricted. Only +# libs listed here can be used. +namespace.sphal.links = default,vndk,rs + +# WARNING: only NDK libs can be listed here. +namespace.sphal.link.default.shared_libs = libc.so:libm.so:libdl.so:libstdc++.so:liblog.so:libnativewindow.so:libEGL.so:libsync.so:libGLESv1_CM.so:libGLESv2.so:libvndksupport.so:libz.so + +# WARNING: only VNDK-SP libs can be listed here. DO NOT EDIT this line. +namespace.sphal.link.vndk.shared_libs = android.hardware.renderscript@1.0.so:android.hardware.graphics.allocator@2.0.so:android.hardware.graphics.mapper@2.0.so:android.hardware.graphics.common@1.0.so:android.hidl.memory@1.0.so:libhwbinder.so:libbase.so:libcutils.so:libhardware.so:libhidlbase.so:libhidlmemory.so:libhidltransport.so:libion.so:libutils.so:libc++.so + +# Renderscript gets separate namespace +namespace.sphal.link.rs.shared_libs = libRS_internal.so + +############################################################################### +# "rs" namespace +# +# This namespace is exclusively for Renderscript internal libraries. +# This namespace has slightly looser restriction than the vndk namespace because +# of the genuine characteristics of Renderscript; /data is in the permitted path +# to load the compiled *.so file and libmediandk.so can be used here. +############################################################################### +namespace.rs.isolated = true +namespace.rs.visible = true +namespace.rs.search.paths = /vendor/${LIB}/vndk-sp:/system/${LIB}/vndk-sp:/vendor/${LIB} +namespace.rs.permitted.paths = /vendor/${LIB}:/data + +namespace.rs.asan.search.paths = /data/asan/vendor/${LIB}/vndk-sp:/vendor/${LIB}/vndk-sp:/data/asan/system/${LIB}/vndk-sp:/system/${LIB}/vndk-sp:/data/asan/vendor/${LIB}:/vendor/${LIB} +namespace.rs.asan.permitted.paths = /data/asan/vendor/${LIB}:/vendor/${LIB}:/data + +namespace.rs.links = default,vndk +namespace.rs.link.default.shared_libs = libc.so:libm.so:libdl.so:libstdc++.so:liblog.so:libnativewindow.so:libEGL.so:libsync.so:libGLESv1_CM.so:libGLESv2.so:libmediandk.so:libvndksupport.so:libz.so:libft2.so +namespace.rs.link.vndk.shared_libs = android.hardware.renderscript@1.0.so:android.hardware.graphics.allocator@2.0.so:android.hardware.graphics.mapper@2.0.so:android.hardware.graphics.common@1.0.so:android.hidl.memory@1.0.so:libhwbinder.so:libbase.so:libcutils.so:libhardware.so:libhidlbase.so:libhidlmemory.so:libhidltransport.so:libion.so:libutils.so:libc++.so + +############################################################################### +# "vndk" namespace +# +# This namespace is exclusively for vndk-sp libs. +############################################################################### +namespace.vndk.isolated = true +namespace.vndk.visible = true +namespace.vndk.search.paths = /vendor/${LIB}/vndk-sp:/system/${LIB}/vndk-sp +namespace.vndk.permitted.paths = /vendor/${LIB}/hw:/vendor/${LIB}/egl + +namespace.vndk.asan.search.paths = /data/asan/vendor/${LIB}/vndk-sp:/vendor/${LIB}/vndk-sp:/data/asan/system/${LIB}/vndk-sp:/system/${LIB}/vndk-sp +namespace.vndk.asan.permitted.paths = /data/asan/vendor/${LIB}/hw:/vendor/${LIB}/hw:/data/asan/vendor/${LIB}/egl:/vendor/${LIB}/egl + +# When these NDK libs are required inside this namespace, then it is redirected +# to the default namespace. This is possible since their ABI is stable across +# Android releases. +namespace.vndk.links = default +namespace.vndk.link.default.shared_libs = android.hidl.memory@1.0-impl.so:libc.so:libm.so:libdl.so:libstdc++.so:liblog.so:libnativewindow.so:libEGL.so:libsync.so:libvndksupport.so:libz.so + +############################################################################### +# Namespace config for vendor processes. In O, no restriction is enforced for +# them. However, in O-MR1, access to /system/${LIB} will not be allowed to +# the default namespace. 'system' namespace will be added to give limited +# (LL-NDK only) access. +############################################################################### +[vendor] +namespace.default.isolated = false +namespace.default.search.paths = /vendor/${LIB}/hw:/vendor/${LIB}/egl:/vendor/${LIB}:/system/${LIB}/vndk:/vendor/${LIB}/vndk-sp:/system/${LIB}/vndk-sp:/system/${LIB} + +namespace.default.asan.search.paths = /data/asan/vendor/${LIB}/hw:/vendor/${LIB}/hw:/data/asan/vendor/${LIB}/egl:/vendor/${LIB}/egl:/data/asan/vendor/${LIB}:/vendor/${LIB}:/data/asan/system/${LIB}/vndk:/system/${LIB}/vndk:/data/asan/vendor/${LIB}/vndk-sp:/vendor/${LIB}/vndk-sp:/data/asan/system/${LIB}/vndk-sp:/system/${LIB}/vndk-sp:/data/asan/system/${LIB}:/system/${LIB} diff --git a/system/etc/mddb b/system/etc/mddb new file mode 120000 index 0000000000000000000000000000000000000000..982b3cf7fdd397f5e5ba08bbc8ecc72f12e1b02b --- /dev/null +++ b/system/etc/mddb @@ -0,0 +1 @@ +/vendor/etc/mddb \ No newline at end of file diff --git a/system/etc/media_profiles_V1_0.dtd b/system/etc/media_profiles_V1_0.dtd new file mode 100644 index 0000000000000000000000000000000000000000..40900e07c5bcddd6ef3ba68cf6f47924268a8fde --- /dev/null +++ b/system/etc/media_profiles_V1_0.dtd @@ -0,0 +1,56 @@ +<!ELEMENT MediaSettings (CamcorderProfiles+, + EncoderOutputFileFormat+, + VideoEncoderCap+, + AudioEncoderCap+, + VideoDecoderCap, + AudioDecoderCap)> +<!ELEMENT CamcorderProfiles (EncoderProfile|ImageEncoding|ImageDecoding|Camera)+> +<!ATTLIST CamcorderProfiles cameraId (0|1) #REQUIRED> +<!ELEMENT EncoderProfile (Video, Audio)> +<!ATTLIST EncoderProfile quality CDATA #REQUIRED> +<!ATTLIST EncoderProfile fileFormat (mp4|3gp) #REQUIRED> +<!ATTLIST EncoderProfile duration (30|60) #REQUIRED> +<!ELEMENT Video EMPTY> +<!ATTLIST Video codec (h264|h263|m4v) #REQUIRED> +<!ATTLIST Video bitRate CDATA #REQUIRED> +<!ATTLIST Video width CDATA #REQUIRED> +<!ATTLIST Video height CDATA #REQUIRED> +<!ATTLIST Video frameRate CDATA #REQUIRED> +<!ELEMENT Audio EMPTY> +<!ATTLIST Audio codec (amrnb|amrwb|aac) #REQUIRED> +<!ATTLIST Audio bitRate CDATA #REQUIRED> +<!ATTLIST Audio sampleRate CDATA #REQUIRED> +<!ATTLIST Audio channels (1|2) #REQUIRED> +<!ELEMENT ImageEncoding EMPTY> +<!ATTLIST ImageEncoding quality (95|90|80|70|60|50|40) #REQUIRED> +<!ELEMENT ImageDecoding EMPTY> +<!ATTLIST ImageDecoding memCap CDATA #REQUIRED> +<!ELEMENT Camera EMPTY> +<!ELEMENT EncoderOutputFileFormat EMPTY> +<!ATTLIST EncoderOutputFileFormat name (mp4|3gp) #REQUIRED> +<!ELEMENT VideoEncoderCap EMPTY> +<!ATTLIST VideoEncoderCap name (hevc|h264|h263|m4v|wmv) #REQUIRED> +<!ATTLIST VideoEncoderCap enabled (true|false) #REQUIRED> +<!ATTLIST VideoEncoderCap minBitRate CDATA #REQUIRED> +<!ATTLIST VideoEncoderCap maxBitRate CDATA #REQUIRED> +<!ATTLIST VideoEncoderCap minFrameWidth CDATA #REQUIRED> +<!ATTLIST VideoEncoderCap maxFrameWidth CDATA #REQUIRED> +<!ATTLIST VideoEncoderCap minFrameHeight CDATA #REQUIRED> +<!ATTLIST VideoEncoderCap maxFrameHeight CDATA #REQUIRED> +<!ATTLIST VideoEncoderCap minFrameRate CDATA #REQUIRED> +<!ATTLIST VideoEncoderCap maxFrameRate CDATA #REQUIRED> +<!ELEMENT AudioEncoderCap EMPTY> +<!ATTLIST AudioEncoderCap name (amrnb|amrwb|aac|wma|heaac|aaceld) #REQUIRED> +<!ATTLIST AudioEncoderCap enabled (true|false) #REQUIRED> +<!ATTLIST AudioEncoderCap minBitRate CDATA #REQUIRED> +<!ATTLIST AudioEncoderCap maxBitRate CDATA #REQUIRED> +<!ATTLIST AudioEncoderCap minSampleRate CDATA #REQUIRED> +<!ATTLIST AudioEncoderCap maxSampleRate CDATA #REQUIRED> +<!ATTLIST AudioEncoderCap minChannels (1|2) #REQUIRED> +<!ATTLIST AudioEncoderCap maxChannels (1|2) #REQUIRED> +<!ELEMENT VideoDecoderCap EMPTY> +<!ATTLIST VideoDecoderCap name (wmv) #REQUIRED> +<!ATTLIST VideoDecoderCap enabled (true|false) #REQUIRED> +<!ELEMENT AudioDecoderCap EMPTY> +<!ATTLIST AudioDecoderCap name (wma) #REQUIRED> +<!ATTLIST AudioDecoderCap enabled (true|false) #REQUIRED> diff --git a/system/etc/mke2fs.conf b/system/etc/mke2fs.conf new file mode 100644 index 0000000000000000000000000000000000000000..b6d8d4136f39d104718bae089204452fa94457e6 --- /dev/null +++ b/system/etc/mke2fs.conf @@ -0,0 +1,53 @@ +[defaults] + base_features = sparse_super,large_file,filetype,resize_inode,dir_index,ext_attr + default_mntopts = acl,user_xattr + enable_periodic_fsck = 0 + blocksize = 4096 + inode_size = 256 + inode_ratio = 16384 + reserved_ratio = 1.0 + +[fs_types] + ext3 = { + features = has_journal + } + ext4 = { + features = has_journal,extent,huge_file,dir_nlink,extra_isize,uninit_bg + inode_size = 256 + } + ext4dev = { + features = has_journal,extent,huge_file,inline_data,dir_nlink,extra_isize + inode_size = 256 + options = test_fs=1 + } + small = { + blocksize = 1024 + inode_size = 128 + inode_ratio = 4096 + } + floppy = { + blocksize = 1024 + inode_size = 128 + inode_ratio = 8192 + } + big = { + inode_ratio = 32768 + } + huge = { + inode_ratio = 65536 + } + news = { + inode_ratio = 4096 + } + largefile = { + inode_ratio = 1048576 + blocksize = -1 + } + largefile4 = { + inode_ratio = 4194304 + blocksize = -1 + } + hurd = { + blocksize = 4096 + inode_size = 128 + } diff --git a/system/etc/mkshrc b/system/etc/mkshrc new file mode 100644 index 0000000000000000000000000000000000000000..c254a010eac34b73b9568e3d9a7d685ffdf288a9 --- /dev/null +++ b/system/etc/mkshrc @@ -0,0 +1,21 @@ +# Copyright (c) 2010, 2012, 2013, 2014 +# Thorsten Glaser <tg@mirbsd.org> +# This file is provided under the same terms as mksh. +#- +# Minimal /system/etc/mkshrc for Android +# +# Support: https://launchpad.net/mksh + +: ${HOSTNAME:=$(getprop ro.product.device)} +: ${HOSTNAME:=android} +: ${TMPDIR:=/data/local/tmp} +export HOSTNAME TMPDIR + +if (( USER_ID )); then PS1='$'; else PS1='#'; fi +PS4='[$EPOCHREALTIME] '; PS1='${| + local e=$? + + (( e )) && REPLY+="$e|" + + return $e +}$HOSTNAME:${PWD:-?} '"$PS1 " diff --git a/system/etc/mtklog-config.prop b/system/etc/mtklog-config.prop new file mode 100644 index 0000000000000000000000000000000000000000..7f31d3b034306b3cdbfe95c06c40c64fd03680a0 --- /dev/null +++ b/system/etc/mtklog-config.prop @@ -0,0 +1,9 @@ +mtklog_path = internal_sd +com.mediatek.log.mobile.enabled = false +com.mediatek.log.mobile.maxsize = 500 +com.mediatek.log.mobile.totalmaxsize = 1000 +com.mediatek.log.modem.enabled = false +com.mediatek.log.modem.maxsize = 2000 +com.mediatek.log.net.enabled = false +com.mediatek.log.net.maxsize = 600 +com.mediatek.log.gps.enabled = false diff --git a/system/etc/passwd b/system/etc/passwd new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/system/etc/permissions/android.hardware.fingerprint.xml b/system/etc/permissions/android.hardware.fingerprint.xml new file mode 100644 index 0000000000000000000000000000000000000000..3181e7eedd4ad629e774bd6da7059c8b607bc90b --- /dev/null +++ b/system/etc/permissions/android.hardware.fingerprint.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- This is the standard set of features for a biometric fingerprint sensor. --> +<permissions> + <feature name="android.hardware.fingerprint" /> +</permissions> diff --git a/system/etc/permissions/android.software.webview.xml b/system/etc/permissions/android.software.webview.xml new file mode 100644 index 0000000000000000000000000000000000000000..d84320947ead9abb033bf17d818c849223e26cd4 --- /dev/null +++ b/system/etc/permissions/android.software.webview.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<permissions> + <feature name="android.software.webview" /> +</permissions> diff --git a/system/etc/permissions/com.android.location.provider.xml b/system/etc/permissions/com.android.location.provider.xml new file mode 100644 index 0000000000000000000000000000000000000000..000e68ffc8650c81dacaaf7f9c3c5eb0bfded256 --- /dev/null +++ b/system/etc/permissions/com.android.location.provider.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2008 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<permissions> + <library name="com.android.location.provider" + file="/system/framework/com.android.location.provider.jar" /> +</permissions> diff --git a/system/etc/permissions/com.android.media.remotedisplay.xml b/system/etc/permissions/com.android.media.remotedisplay.xml new file mode 100644 index 0000000000000000000000000000000000000000..77a91d23e1d8b4560c3ea0842be08657b801e7f4 --- /dev/null +++ b/system/etc/permissions/com.android.media.remotedisplay.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2013 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<permissions> + <library name="com.android.media.remotedisplay" + file="/system/framework/com.android.media.remotedisplay.jar" /> +</permissions> diff --git a/system/etc/permissions/com.android.mediadrm.signer.xml b/system/etc/permissions/com.android.mediadrm.signer.xml new file mode 100644 index 0000000000000000000000000000000000000000..fd3a1158095daaa86892f131d57f8043e0309078 --- /dev/null +++ b/system/etc/permissions/com.android.mediadrm.signer.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2013 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<permissions> + <library name="com.android.mediadrm.signer" + file="/system/framework/com.android.mediadrm.signer.jar" /> +</permissions> diff --git a/system/etc/permissions/com.google.android.maps.xml b/system/etc/permissions/com.google.android.maps.xml new file mode 100644 index 0000000000000000000000000000000000000000..5be5c2ce13e4e14ced45e88698d8c8243e099277 --- /dev/null +++ b/system/etc/permissions/com.google.android.maps.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2008 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<permissions> + <library name="com.google.android.maps" + file="/system/framework/com.google.android.maps.jar" /> +</permissions> diff --git a/system/etc/permissions/com.google.android.media.effects.xml b/system/etc/permissions/com.google.android.media.effects.xml new file mode 100644 index 0000000000000000000000000000000000000000..ea82b9d330bbc3984cc41c5335e076cfb63de39f --- /dev/null +++ b/system/etc/permissions/com.google.android.media.effects.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2011 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<permissions> + <library name="com.google.android.media.effects" + file="/system/framework/com.google.android.media.effects.jar" /> + +</permissions> diff --git a/system/etc/permissions/mediatek-packages-teleservice.xml b/system/etc/permissions/mediatek-packages-teleservice.xml new file mode 100644 index 0000000000000000000000000000000000000000..60735ab527a5f1e0fc199527e66f64a11419f38d --- /dev/null +++ b/system/etc/permissions/mediatek-packages-teleservice.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> + +<permissions> + <library name="mediatek-packages-teleservice" + file="/system/framework/mediatek-packages-teleservice.jar" /> +</permissions> diff --git a/system/etc/permissions/platform.xml b/system/etc/permissions/platform.xml new file mode 100644 index 0000000000000000000000000000000000000000..e5300de3615d4c619c0fe0b3f5aaf0edfc6332bc --- /dev/null +++ b/system/etc/permissions/platform.xml @@ -0,0 +1,196 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2008 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- This file is used to define the mappings between lower-level system + user and group IDs and the higher-level permission names managed + by the platform. + + Be VERY careful when editing this file! Mistakes made here can open + big security holes. +--> +<permissions> + + <!-- ================================================================== --> + <!-- ================================================================== --> + <!-- ================================================================== --> + + <!-- The following tags are associating low-level group IDs with + permission names. By specifying such a mapping, you are saying + that any application process granted the given permission will + also be running with the given group ID attached to its process, + so it can perform any filesystem (read, write, execute) operations + allowed for that group. --> + + <permission name="android.permission.BLUETOOTH_ADMIN" > + <group gid="net_bt_admin" /> + </permission> + + <permission name="android.permission.BLUETOOTH" > + <group gid="net_bt" /> + </permission> + + <permission name="android.permission.BLUETOOTH_STACK" > + <group gid="bluetooth" /> + <group gid="wakelock" /> + <group gid="uhid" /> + </permission> + + <permission name="android.permission.NET_TUNNELING" > + <group gid="vpn" /> + </permission> + + <permission name="android.permission.INTERNET" > + <group gid="inet" /> + </permission> + + <permission name="android.permission.READ_LOGS" > + <group gid="log" /> + </permission> + + <permission name="android.permission.WRITE_MEDIA_STORAGE" > + <group gid="media_rw" /> + <group gid="sdcard_rw" /> + </permission> + + <permission name="android.permission.ACCESS_MTP" > + <group gid="mtp" /> + </permission> + + <permission name="android.permission.NET_ADMIN" > + <group gid="net_admin" /> + </permission> + + <!-- The group that /cache belongs to, linked to the permission + set on the applications that can access /cache --> + <permission name="android.permission.ACCESS_CACHE_FILESYSTEM" > + <group gid="cache" /> + </permission> + + <!-- RW permissions to any system resources owned by group 'diag'. + This is for carrier and manufacture diagnostics tools that must be + installable from the framework. Be careful. --> + <permission name="android.permission.DIAGNOSTIC" > + <group gid="input" /> + <group gid="diag" /> + </permission> + + <!-- Group that can read detailed network usage statistics --> + <permission name="android.permission.READ_NETWORK_USAGE_HISTORY"> + <group gid="net_bw_stats" /> + </permission> + + <!-- Group that can modify how network statistics are accounted --> + <permission name="android.permission.UPDATE_DEVICE_STATS"> + <group gid="net_bw_acct" /> + </permission> + + <permission name="android.permission.LOOP_RADIO" > + <group gid="loop_radio" /> + </permission> + + <!-- Hotword training apps sometimes need a GID to talk with low-level + hardware; give them audio for now until full HAL support is added. --> + <permission name="android.permission.MANAGE_VOICE_KEYPHRASES"> + <group gid="audio" /> + </permission> + + <permission name="android.permission.ACCESS_BROADCAST_RADIO" > + <!-- /dev/fm is gid media, not audio --> + <group gid="media" /> + </permission> + + <!-- These are permissions that were mapped to gids but we need + to keep them here until an upgrade from L to the current + version is to be supported. These permissions are built-in + and in L were not stored in packages.xml as a result if they + are not defined here while parsing packages.xml we would + ignore these permissions being granted to apps and not + propagate the granted state. From N we are storing the + built-in permissions in packages.xml as the saved storage + is negligible (one tag with the permission) compared to + the fragility as one can remove a built-in permission which + no longer needs to be mapped to gids and break grant propagation. --> + <permission name="android.permission.READ_EXTERNAL_STORAGE" /> + <permission name="android.permission.WRITE_EXTERNAL_STORAGE" /> + + <!-- ================================================================== --> + <!-- ================================================================== --> + <!-- ================================================================== --> + + <!-- The following tags are assigning high-level permissions to specific + user IDs. These are used to allow specific core system users to + perform the given operations with the higher-level framework. For + example, we give a wide variety of permissions to the shell user + since that is the user the adb shell runs under and developers and + others should have a fairly open environment in which to + interact with the system. --> + + <assign-permission name="android.permission.MODIFY_AUDIO_SETTINGS" uid="media" /> + <assign-permission name="android.permission.ACCESS_SURFACE_FLINGER" uid="media" /> + <assign-permission name="android.permission.WAKE_LOCK" uid="media" /> + <assign-permission name="android.permission.UPDATE_DEVICE_STATS" uid="media" /> + <assign-permission name="android.permission.UPDATE_APP_OPS_STATS" uid="media" /> + <assign-permission name="android.permission.GET_PROCESS_STATE_AND_OOM_SCORE" uid="media" /> + <assign-permission name="android.permission.CAPTURE_AUDIO_OUTPUT" uid="media" /> + <!-- AudioServer is separated from mediaServer on Android N0, so AudioServer will + check mediaServer permission when mediaServer call audioServer through binder, + so add CAPTURE_AUDIO_OUTPUT permission for mediaServer. --> + + <assign-permission name="android.permission.MODIFY_AUDIO_SETTINGS" uid="audioserver" /> + <assign-permission name="android.permission.ACCESS_SURFACE_FLINGER" uid="audioserver" /> + <assign-permission name="android.permission.WAKE_LOCK" uid="audioserver" /> + <assign-permission name="android.permission.UPDATE_DEVICE_STATS" uid="audioserver" /> + <assign-permission name="android.permission.UPDATE_APP_OPS_STATS" uid="audioserver" /> + + <assign-permission name="android.permission.MODIFY_AUDIO_SETTINGS" uid="cameraserver" /> + <assign-permission name="android.permission.ACCESS_SURFACE_FLINGER" uid="cameraserver" /> + <assign-permission name="android.permission.WAKE_LOCK" uid="cameraserver" /> + <assign-permission name="android.permission.UPDATE_DEVICE_STATS" uid="cameraserver" /> + <assign-permission name="android.permission.UPDATE_APP_OPS_STATS" uid="cameraserver" /> + <assign-permission name="android.permission.GET_PROCESS_STATE_AND_OOM_SCORE" uid="cameraserver" /> + + <assign-permission name="android.permission.ACCESS_SURFACE_FLINGER" uid="graphics" /> + + <!-- This is a list of all the libraries available for application + code to link against. --> + + <library name="android.test.mock" + file="/system/framework/android.test.mock.jar" /> + <library name="android.test.runner" + file="/system/framework/android.test.runner.jar" /> + <library name="javax.obex" + file="/system/framework/javax.obex.jar" /> + <library name="org.apache.http.legacy" + file="/system/framework/org.apache.http.legacy.jar" /> + + <!-- These are the standard packages that are white-listed to always have internet + access while in power save mode, even if they aren't in the foreground. --> + <allow-in-power-save package="com.android.providers.downloads" /> + + <!-- These are the standard packages that are white-listed to always have internet + access while in data mode, even if they aren't in the foreground. --> + <allow-in-data-usage-save package="com.android.providers.downloads" /> + + <!-- This is a core platform component that needs to freely run in the background --> + <allow-in-power-save package="com.android.cellbroadcastreceiver" /> + <allow-in-power-save package="com.android.shell" /> + + <!-- These are the packages that are white-listed to be able to run as system user --> + <system-user-whitelisted-app package="com.android.settings" /> + + <!-- These are the packages that shouldn't run as system user --> + <system-user-blacklisted-app package="com.android.wallpaper.livepicker" /> +</permissions> diff --git a/system/etc/permissions/pms_sysapp_removable_system_list.txt b/system/etc/permissions/pms_sysapp_removable_system_list.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae7c42ae945664646cfa0390b3ea550b4397d0dc --- /dev/null +++ b/system/etc/permissions/pms_sysapp_removable_system_list.txt @@ -0,0 +1,7 @@ +com.android.quicksearchbox +com.android.calendar +com.android.dreams.basic +com.android.musicfx +com.android.calculator2 +com.android.email +com.android.exchange diff --git a/system/etc/permissions/privapp-permissions-google.xml b/system/etc/permissions/privapp-permissions-google.xml new file mode 100644 index 0000000000000000000000000000000000000000..7ac244d6ad0406cb5f62cbfae4b7043a47d83dd9 --- /dev/null +++ b/system/etc/permissions/privapp-permissions-google.xml @@ -0,0 +1,338 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> + +<!-- +This XML file declares which signature|privileged permissions should be granted to privileged +applications on GMS or Google-branded devices. +It allows additional grants on top of privapp-permissions-platform.xml +--> +<permissions> + <privapp-permissions package="com.android.carrierconfig"> + <permission name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"/> + <permission name="android.permission.MODIFY_PHONE_STATE"/> + <permission name="android.permission.READ_PRIVILEGED_PHONE_STATE"/> + </privapp-permissions> + + <privapp-permissions package="com.android.connectivity.metrics"> + <permission name="android.permission.DUMP"/> + <permission name="android.permission.MODIFY_PHONE_STATE"/>. + <permission name="android.permission.PACKAGE_USAGE_STATS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.hotspot2"> + <permission name="android.permission.CONNECTIVITY_INTERNAL"/> + <permission name="android.permission.READ_WIFI_CREDENTIAL"/> + </privapp-permissions> + + <privapp-permissions package="com.android.hotwordenrollment.okgoogle"> + <permission name="android.permission.MANAGE_VOICE_KEYPHRASES"/> + </privapp-permissions> + + <privapp-permissions package="com.android.hotwordenrollment.xgoogle"> + <permission name="android.permission.MANAGE_VOICE_KEYPHRASES"/> + </privapp-permissions> + + <privapp-permissions package="com.android.hotwordenrollment.tgoogle"> + <permission name="android.permission.MANAGE_VOICE_KEYPHRASES"/> + </privapp-permissions> + + <privapp-permissions package="com.android.hotwordenrollment"> + <permission name="android.permission.MANAGE_VOICE_KEYPHRASES"/> + </privapp-permissions> + + <privapp-permissions package="com.android.systemui"> + <permission name="com.android.permission.WRITE_EMBEDDED_SUBSCRIPTIONS"/> + <permission name="android.permission.SET_WALLPAPER_COMPONENT"/> + <permission name="android.permission.LOCATION_HARDWARE"/> + </privapp-permissions> + + <privapp-permissions package="com.android.vending"> + <permission name="android.permission.ALLOCATE_AGGRESSIVE"/> + <permission name="android.permission.BACKUP"/> + <permission name="android.permission.BATTERY_STATS"/> + <permission name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"/> + <permission name="android.permission.CHANGE_DEVICE_IDLE_TEMP_WHITELIST"/> + <permission name="android.permission.CLEAR_APP_CACHE"/> + <permission name="android.permission.CONNECTIVITY_INTERNAL"/> + <permission name="android.permission.DELETE_PACKAGES"/> + <permission name="android.permission.DUMP"/> + <permission name="android.permission.FORCE_STOP_PACKAGES"/> + <permission name="android.permission.GET_ACCOUNTS_PRIVILEGED"/> + <permission name="android.permission.GET_APP_OPS_STATS"/> + <permission name="android.permission.INSTALL_PACKAGES"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + <permission name="android.permission.MANAGE_USERS"/> + <permission name="android.permission.PACKAGE_USAGE_STATS"/> + <permission name="android.permission.PACKAGE_VERIFICATION_AGENT"/> + <permission name="android.permission.REAL_GET_TASKS"/> + <permission name="android.permission.SEND_SMS_NO_CONFIRMATION"/> + <permission name="android.permission.SET_PREFERRED_APPLICATIONS"/> + <permission name="android.permission.STATUS_BAR"/> + <permission name="android.permission.UPDATE_DEVICE_STATS"/> + <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + </privapp-permissions> + + <privapp-permissions package="com.google.android.apps.gcs"> + <permission name="android.permission.CONTROL_VPN"/> + <permission name="android.permission.GET_APP_OPS_STATS"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + <permission name="android.permission.OVERRIDE_WIFI_CONFIG"/> + <permission name="android.permission.PACKET_KEEPALIVE_OFFLOAD"/> + <permission name="android.permission.SCORE_NETWORKS"/> + <permission name="android.permission.UPDATE_APP_OPS_STATS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.launcher3"> + <permission name="android.permission.BIND_APPWIDGET"/> + <permission name="android.permission.PACKAGE_USAGE_STATS"/> + </privapp-permissions> + + <privapp-permissions package="com.google.android.apps.nbu.files"> + <permission name="android.permission.DELETE_PACKAGES"/> + <permission name="android.permission.PACKAGE_USAGE_STATS"/> + <permission name="android.permission.DELETE_CACHE_FILES"/> + </privapp-permissions> + + <privapp-permissions package="com.google.android.apps.work.oobconfig"> + <permission name="android.permission.CONNECTIVITY_INTERNAL"/> + <permission name="android.permission.DISPATCH_PROVISIONING_MESSAGE"/> + <permission name="android.permission.MANAGE_USERS"/> + <permission name="android.permission.MANAGE_CARRIER_OEM_UNLOCK_STATE" /> + <permission name="android.permission.MASTER_CLEAR"/> + <permission name="android.permission.MODIFY_PHONE_STATE"/> + <permission name="android.permission.READ_PRIVILEGED_PHONE_STATE"/> + <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + </privapp-permissions> + + <privapp-permissions package="com.google.android.backuptransport"> + <permission name="android.permission.BACKUP"/> + <permission name="android.permission.UPDATE_DEVICE_STATS"/> + </privapp-permissions> + + <privapp-permissions package="com.google.android.configupdater"> + <permission name="android.permission.UPDATE_CONFIG"/> + </privapp-permissions> + + <privapp-permissions package="com.google.android.contacts"> + <permission name="android.permission.GET_ACCOUNTS_PRIVILEGED"/> + <permission name="com.android.voicemail.permission.READ_VOICEMAIL"/> + </privapp-permissions> + + <privapp-permissions package="com.google.android.dialer"> + <permission name="android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK"/> + <permission name="android.permission.CAPTURE_AUDIO_OUTPUT"/> + <permission name="android.permission.CONTROL_INCALL_EXPERIENCE"/> + <permission name="android.permission.GET_ACCOUNTS_PRIVILEGED"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + <permission name="android.permission.MODIFY_PHONE_STATE"/> + <permission name="android.permission.REGISTER_CONNECTION_MANAGER"/> + <permission name="android.permission.STATUS_BAR"/> + <permission name="android.permission.STOP_APP_SWITCHES"/> + <permission name="com.android.voicemail.permission.READ_VOICEMAIL"/> + <permission name="com.android.voicemail.permission.WRITE_VOICEMAIL"/> + </privapp-permissions> + + <privapp-permissions package="com.google.android.feedback"> + <permission name="android.permission.READ_LOGS"/> + </privapp-permissions> + + <privapp-permissions package="com.google.android.gms"> + <permission name="android.permission.ACCESS_NETWORK_CONDITIONS"/> + <permission name="android.permission.ACTIVITY_EMBEDDING"/> + <permission name="android.permission.BACKUP"/> + <permission name="android.permission.BLUETOOTH_PRIVILEGED"/> + <permission name="android.permission.CALL_PRIVILEGED"/> + <permission name="android.permission.CAPTURE_AUDIO_HOTWORD"/> + <permission name="android.permission.CAPTURE_AUDIO_OUTPUT"/> + <permission name="android.permission.CAPTURE_SECURE_VIDEO_OUTPUT"/> + <permission name="android.permission.CAPTURE_VIDEO_OUTPUT"/> + <permission name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"/> + <permission name="android.permission.CHANGE_DEVICE_IDLE_TEMP_WHITELIST"/> + <permission name="android.permission.CONNECTIVITY_USE_RESTRICTED_NETWORKS"/> + <permission name="android.permission.CONTROL_INCALL_EXPERIENCE"/> + <permission name="android.permission.DISPATCH_PROVISIONING_MESSAGE"/> + <permission name="android.permission.DUMP"/> + <permission name="android.permission.GET_APP_OPS_STATS"/> + <permission name="android.permission.INTENT_FILTER_VERIFICATION_AGENT"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + <permission name="android.permission.INVOKE_CARRIER_SETUP"/> + <permission name="android.permission.LOCAL_MAC_ADDRESS"/> + <permission name="android.permission.LOCATION_HARDWARE"/> + <permission name="android.permission.MANAGE_ACTIVITY_STACKS"/> + <permission name="android.permission.MANAGE_DEVICE_ADMINS"/> + <permission name="android.permission.MANAGE_SOUND_TRIGGER"/> + <permission name="android.permission.MANAGE_SUBSCRIPTION_PLANS"/> + <permission name="android.permission.MANAGE_USB"/> + <permission name="android.permission.MANAGE_VOICE_KEYPHRASES"/> + <permission name="android.permission.MODIFY_AUDIO_ROUTING"/> + <permission name="android.permission.MODIFY_NETWORK_ACCOUNTING"/> + <permission name="android.permission.MODIFY_PHONE_STATE"/> + <permission name="android.permission.NOTIFY_PENDING_SYSTEM_UPDATE"/> + <permission name="android.permission.OBSERVE_GRANT_REVOKE_PERMISSIONS"/> + <permission name="android.permission.OVERRIDE_WIFI_CONFIG"/> + <permission name="android.permission.PACKAGE_USAGE_STATS"/> + <permission name="android.permission.PROVIDE_RESOLVER_RANKER_SERVICE" /> + <permission name="android.permission.PROVIDE_TRUST_AGENT"/> + <permission name="android.permission.READ_DREAM_STATE"/> + <permission name="android.permission.READ_LOGS"/> + <permission name="android.permission.READ_OEM_UNLOCK_STATE"/> + <permission name="android.permission.READ_PRIVILEGED_PHONE_STATE"/> + <permission name="android.permission.READ_WIFI_CREDENTIAL"/> + <permission name="android.permission.REAL_GET_TASKS"/> + <permission name="android.permission.RECEIVE_DATA_ACTIVITY_CHANGE"/> + <permission name="android.permission.RECOVERY"/> + <permission name="android.permission.REGISTER_CALL_PROVIDER"/> + <permission name="android.permission.SCORE_NETWORKS"/> + <permission name="android.permission.SEND_SMS_NO_CONFIRMATION"/> + <permission name="android.permission.SET_TIME"/> + <permission name="android.permission.SET_TIME_ZONE"/> + <permission name="android.permission.START_TASKS_FROM_RECENTS"/> + <permission name="android.permission.SUBSTITUTE_NOTIFICATION_APP_NAME"/> + <permission name="android.permission.TETHER_PRIVILEGED"/> + <permission name="android.permission.UPDATE_APP_OPS_STATS"/> + <permission name="android.permission.USER_ACTIVITY"/> + <permission name="com.android.voicemail.permission.READ_VOICEMAIL"/> + </privapp-permissions> + + <privapp-permissions package="com.google.android.googlequicksearchbox"> + <permission name="android.permission.BIND_APPWIDGET"/> + <permission name="android.permission.CALL_PRIVILEGED"/> + <permission name="android.permission.CAPTURE_AUDIO_HOTWORD"/> + <permission name="android.permission.GLOBAL_SEARCH"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + <permission name="android.permission.MANAGE_VOICE_KEYPHRASES"/> + <permission name="android.permission.MEDIA_CONTENT_CONTROL"/> + <permission name="android.permission.REAL_GET_TASKS"/> + <permission name="android.permission.SET_MEDIA_KEY_LISTENER"/> + <permission name="android.permission.SET_VOLUME_KEY_LONG_PRESS_LISTENER"/> + <permission name="android.permission.STATUS_BAR"/> + <permission name="android.permission.STOP_APP_SWITCHES"/> + </privapp-permissions> + + <privapp-permissions package="com.google.android.apps.searchlite"> + <permission name="android.permission.BIND_APPWIDGET"/> + <permission name="android.permission.CAPTURE_AUDIO_HOTWORD"/> + <permission name="android.permission.GLOBAL_SEARCH"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + <permission name="android.permission.MANAGE_VOICE_KEYPHRASES"/> + <permission name="android.permission.MEDIA_CONTENT_CONTROL"/> + <permission name="android.permission.REAL_GET_TASKS"/> + <permission name="android.permission.STATUS_BAR"/> + <permission name="android.permission.STOP_APP_SWITCHES"/> + </privapp-permissions> + + <privapp-permissions package="com.google.android.apps.speechservices"> + <permission name="android.permission.BIND_APPWIDGET" /> + <permission name="android.permission.CAPTURE_AUDIO_HOTWORD" /> + <permission name="android.permission.GLOBAL_SEARCH" /> + <permission name="android.permission.INTERACT_ACROSS_USERS" /> + <permission name="android.permission.MANAGE_VOICE_KEYPHRASES" /> + <permission name="android.permission.MEDIA_CONTENT_CONTROL" /> + <permission name="android.permission.REAL_GET_TASKS" /> + <permission name="android.permission.STATUS_BAR" /> + <permission name="android.permission.STOP_APP_SWITCHES" /> + </privapp-permissions> + + <privapp-permissions package="com.google.android.gsf"> + <permission name="android.permission.ACCESS_CACHE_FILESYSTEM"/> + <permission name="android.permission.BACKUP"/> + <permission name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"/> + <permission name="android.permission.DUMP"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + <permission name="android.permission.INVOKE_CARRIER_SETUP"/> + <permission name="android.permission.MANAGE_USERS"/> + <permission name="android.permission.MASTER_CLEAR"/> + <permission name="android.permission.READ_DREAM_STATE"/> + <permission name="android.permission.READ_LOGS"/> + <permission name="android.permission.READ_NETWORK_USAGE_HISTORY"/> + <permission name="android.permission.REBOOT"/> + <permission name="android.permission.RECEIVE_DATA_ACTIVITY_CHANGE"/> + <permission name="android.permission.RECOVERY"/> + <permission name="android.permission.SET_TIME"/> + <permission name="android.permission.STATUS_BAR"/> + <permission name="android.permission.UPDATE_DEVICE_STATS"/> + <permission name="android.permission.WRITE_GSERVICES"/> + <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + </privapp-permissions> + + <privapp-permissions package="com.google.android.ims"> + <permission name="android.permission.BIND_IMS_SERVICE"/> + <permission name="android.permission.CONNECTIVITY_USE_RESTRICTED_NETWORKS"/> + <permission name="android.permission.MODIFY_PHONE_STATE"/> + <permission name="android.permission.PACKET_KEEPALIVE_OFFLOAD"/> + <permission name="android.permission.READ_PRIVILEGED_PHONE_STATE"/> + </privapp-permissions> + + <privapp-permissions package="com.google.android.onetimeinitializer"> + <permission name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"/> + </privapp-permissions> + + <privapp-permissions package="com.google.android.packageinstaller"> + <permission name="android.permission.CLEAR_APP_CACHE"/> + <permission name="android.permission.DELETE_PACKAGES"/> + <permission name="android.permission.INSTALL_PACKAGES"/> + <permission name="android.permission.MANAGE_USERS"/> + <permission name="android.permission.OBSERVE_GRANT_REVOKE_PERMISSIONS"/> + <permission name="android.permission.UPDATE_APP_OPS_STATS"/> + </privapp-permissions> + + <privapp-permissions package="com.google.android.partnersetup"> + <permission name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"/> + <permission name="android.permission.CHANGE_CONFIGURATION"/> + <permission name="android.permission.READ_PRIVILEGED_PHONE_STATE"/> + </privapp-permissions> + + <privapp-permissions package="com.google.android.setupwizard"> + <permission name="android.permission.BACKUP"/> + <permission name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"/> + <permission name="android.permission.CHANGE_CONFIGURATION"/> + <permission name="android.permission.CONNECTIVITY_INTERNAL"/> + <permission name="android.permission.DISPATCH_PROVISIONING_MESSAGE"/> + <permission name="android.permission.INVOKE_CARRIER_SETUP"/> + <permission name="android.permission.LOCAL_MAC_ADDRESS"/> + <permission name="android.permission.MANAGE_DEVICE_ADMINS"/> + <permission name="android.permission.MANAGE_FINGERPRINT"/> + <permission name="android.permission.MANAGE_USB"/> + <permission name="android.permission.MANAGE_USERS"/> + <permission name="android.permission.MASTER_CLEAR"/> + <permission name="android.permission.MODIFY_PHONE_STATE"/> + <permission name="android.permission.NOTIFICATION_DURING_SETUP"/> + <permission name="android.permission.OVERRIDE_WIFI_CONFIG"/> + <permission name="android.permission.PERFORM_CDMA_PROVISIONING"/> + <permission name="android.permission.READ_PRIVILEGED_PHONE_STATE"/> + <permission name="android.permission.REBOOT"/> + <permission name="android.permission.SET_TIME"/> + <permission name="android.permission.SET_TIME_ZONE"/> + <permission name="android.permission.SHUTDOWN"/> + <permission name="android.permission.STATUS_BAR"/> + <permission name="android.permission.WRITE_APN_SETTINGS"/> + <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + </privapp-permissions> + + <privapp-permissions package="com.google.android.tag"> + <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + </privapp-permissions> + + <privapp-permissions package="com.google.android.apps.wallpaper"> + <permission name="android.permission.READ_WALLPAPER_INTERNAL"/> + </privapp-permissions> + + <privapp-permissions package="com.google.android.apps.assistant"> + <permission name="android.permission.CALL_PRIVILEGED"/> + <permission name="android.permission.MEDIA_CONTENT_CONTROL"/> + </privapp-permissions> +</permissions> diff --git a/system/etc/permissions/privapp-permissions-mediatek.xml b/system/etc/permissions/privapp-permissions-mediatek.xml new file mode 100644 index 0000000000000000000000000000000000000000..2d412d695194d38ce6325d0628dd6a8dba45bb62 --- /dev/null +++ b/system/etc/permissions/privapp-permissions-mediatek.xml @@ -0,0 +1,187 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +This XML file declares which signature|privileged permissions should be granted to privileged +applications that come with the platform +--> +<permissions> + <privapp-permissions package="com.android.fmradio"> + <permission name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/> + <permission name="android.permission.ACCESS_BROADCAST_RADIO"/> + <permission name="android.permission.MODIFY_AUDIO_ROUTING"/> + <permission name="android.permission.MODIFY_PHONE_STATE"/> + </privapp-permissions> + + <privapp-permissions package="com.mediatek.connectivity"> + <permission name="android.permission.CONNECTIVITY_INTERNAL"/> + <permission name="android.permission.READ_NETWORK_USAGE_HISTORY"/> + <permission name="android.permission.WRITE_APN_SETTINGS"/> + <permission name="android.permission.WRITE_MEDIA_STORAGE"/> + <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + </privapp-permissions> + + <privapp-permissions package="com.baidu.map.location"> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + <permission name="android.permission.INSTALL_LOCATION_PROVIDER"/> + <permission name="android.permission.WRITE_APN_SETTINGS"/> + <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + <permission name="android.permission.READ_LOGS"/> + <permission name="android.permission.UPDATE_DEVICE_STATS"/> + <permission name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.contacts"> + <permission name="android.permission.MODIFY_PHONE_STATE"/> + <permission name="android.permission.CALL_PRIVILEGED"/> + <permission name="android.permission.WRITE_MEDIA_STORAGE"/> + </privapp-permissions> + + <privapp-permissions package="com.mediatek.ims"> + <permission name="android.permission.READ_PRECISE_PHONE_STATE"/> + </privapp-permissions> + + <privapp-permissions package="com.mediatek.simprocessor"> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + </privapp-permissions> + + <privapp-permissions package="android.ext.services"> + <permission name="android.permission.PROVIDE_RESOLVER_RANKER_SERVICE"/> + </privapp-permissions> + + <privapp-permissions package="com.android.providers.calendar"> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.settings"> + <permission name="android.permission.READ_PRIVILEGED_PHONE_STATE"/> + </privapp-permissions> + + <privapp-permissions package="com.android.dialer"> + <permission name="android.permission.STATUS_BAR"/> + <permission name="android.permission.CALL_PRIVILEGED"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + <permission name="android.permission.MANAGE_USERS"/> + <permission name="android.permission.CREATE_USERS"/> + <permission name="android.permission.READ_PRIVILEGED_PHONE_STATE"/> + </privapp-permissions> + + <privapp-permissions package="com.android.providers.telephony"> + <permission name="android.permission.UPDATE_APP_OPS_STATS"/> + </privapp-permissions> + + <privapp-permissions package="com.mediatek.callrecorder"> + <permission name="android.permission.WRITE_MEDIA_STORAGE"/> + </privapp-permissions> + + <privapp-permissions package="com.android.launcher3"> + <permission name="android.permission.BIND_APPWIDGET"/> + </privapp-permissions> + + <privapp-permissions package="com.android.apps.tag"> + <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.stk"> + <permission name="android.permission.READ_PRIVILEGED_PHONE_STATE"/> + <permission name="android.permission.RECEIVE_STK_COMMANDS"/> + </privapp-permissions> + + <privapp-permissions package="com.mediatek.carrierexpress"> + <permission name="android.permission.READ_PRECISE_PHONE_STATE"/> + </privapp-permissions> + + <privapp-permissions package="com.android.mms"> + <permission name="android.permission.RECEIVE_EMERGENCY_BROADCAST"/> + <permission name="android.permission.MODIFY_PHONE_STATE"/> + <permission name="android.permission.WRITE_MEDIA_STORAGE"/> + <permission name="android.permission.UPDATE_DEVICE_STATS"/> + <permission name="android.permission.MANAGE_USERS"/> + <permission name="android.permission.READ_PRIVILEGED_PHONE_STATE"/> + <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + <permission name="android.permission.WRITE_APN_SETTINGS"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.systemui"> + <permission name="android.permission.MANAGE_VOICE_KEYPHRASES"/> + <permission name="android.permission.READ_PRECISE_PHONE_STATE"/> + <permission name="android.permission.READ_PRIVILEGED_PHONE_STATE"/> + <permission name="android.permission.WRITE_APN_SETTINGS"/> + <permission name="com.android.permission.WRITE_EMBEDDED_SUBSCRIPTIONS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.providers.downloads"> + <permission name="android.permission.ACCESS_CACHE_FILESYSTEM"/> + <permission name="android.permission.CLEAR_APP_CACHE"/> + <permission name="android.permission.CONNECTIVITY_INTERNAL"/> + <permission name="android.permission.UPDATE_APP_OPS_STATS"/> + <permission name="android.permission.UPDATE_DEVICE_STATS"/> + <permission name="android.permission.MODIFY_NETWORK_ACCOUNTING"/> + <permission name="android.permission.WRITE_MEDIA_STORAGE"/> + </privapp-permissions> + + <privapp-permissions package="com.mediatek.voicecommand"> + <permission name="android.permission.MANAGE_VOICE_KEYPHRASES"/> + <permission name="android.permission.MANAGE_USERS"/> + <permission name="android.permission.WRITE_MEDIA_STORAGE"/> + <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + </privapp-permissions> + + <privapp-permissions package="com.mediatek.voicecommand.vis"> + <permission name="android.permission.MANAGE_VOICE_KEYPHRASES"/> + <permission name="android.permission.WRITE_MEDIA_STORAGE"/> + </privapp-permissions> + + <privapp-permissions package="com.android.phone"> + <permission name="com.mediatek.intent.action.ACTION_NETWORK_CHANGED"/> + <permission name="com.mediatek.INTENT.IMS_STATE_CHANGED"/> + </privapp-permissions> + + <privapp-permissions package="com.lovelyfont.defcontainer"> + <permission name="android.permission.WRITE_MEDIA_STORAGE"/> + <permission name="android.permission.ACCESS_CACHE_FILESYSTEM"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + </privapp-permissions> + + <privapp-permissions package="com.mediatek.wfo.impl"> + <permission name="android.permission.PACKET_KEEPALIVE_OFFLOAD"/> + </privapp-permissions> + + <privapp-permissions package="com.valmul.defcontainer"> + <permission name="android.permission.WRITE_MEDIA_STORAGE"/> + <permission name="android.permission.ACCESS_CACHE_FILESYSTEM"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + </privapp-permissions> + + <privapp-permissions package="com.mediatek.cellbroadcastreceiver"> + <permission name="android.permission.RECEIVE_EMERGENCY_BROADCAST"/> + <permission name="android.permission.READ_SEARCH_INDEXABLES"/> + </privapp-permissions> + + <privapp-permissions package="com.mediatek.fullscreenmode"> + <permission name="android.permission.FORCE_STOP_PACKAGES"/> + </privapp-permissions> + + <!-- FactoryTest --> + <privapp-permissions package="com.android.factorytest"> + <permission name="android.permission.CALL_PRIVILEGED"/> + <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + </privapp-permissions> + + <!-- AgingTest --> + <privapp-permissions package="com.android.agingtest"> + <permission name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/> + <permission name="android.permission.SHUTDOWN"/> + </privapp-permissions> + + <privapp-permissions package="com.redbend.client"> + <permission name="android.permission.DELETE_PACKAGES"/> + <permission name="android.permission.MANAGE_DEVICE_ADMINS"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + <permission name="android.permission.RECOVERY"/> + <permission name="android.permission.MANAGE_USERS"/> + <permission name="android.permission.ACCESS_CACHE_FILESYSTEM"/> + <permission name="android.permission.REBOOT"/> + <permission name="android.permission.INSTALL_PACKAGES"/> + </privapp-permissions> + +</permissions> diff --git a/system/etc/permissions/privapp-permissions-platform.xml b/system/etc/permissions/privapp-permissions-platform.xml new file mode 100644 index 0000000000000000000000000000000000000000..6a3a97392955110530c03f65228f8802ab0ae1b1 --- /dev/null +++ b/system/etc/permissions/privapp-permissions-platform.xml @@ -0,0 +1,371 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> + +<!-- +This XML file declares which signature|privileged permissions should be granted to privileged +applications that come with the platform +--> +<permissions> + <privapp-permissions package="com.android.backupconfirm"> + <permission name="android.permission.BACKUP"/> + <permission name="android.permission.CRYPT_KEEPER"/> + </privapp-permissions> + + <privapp-permissions package="com.android.cellbroadcastreceiver"> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + <permission name="android.permission.MANAGE_USERS"/> + <permission name="android.permission.MODIFY_PHONE_STATE"/> + <permission name="android.permission.READ_PRIVILEGED_PHONE_STATE"/> + <permission name="android.permission.RECEIVE_EMERGENCY_BROADCAST"/> + </privapp-permissions> + + <privapp-permissions package="com.android.contacts"> + <permission name="android.permission.GET_ACCOUNTS_PRIVILEGED"/> + <permission name="com.android.voicemail.permission.READ_VOICEMAIL"/> + </privapp-permissions> + + <privapp-permissions package="com.android.defcontainer"> + <permission name="android.permission.ACCESS_CACHE_FILESYSTEM"/> + <permission name="android.permission.ALLOCATE_AGGRESSIVE"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + <permission name="android.permission.WRITE_MEDIA_STORAGE"/> + </privapp-permissions> + + <privapp-permissions package="com.android.dialer"> + <permission name="android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK"/> + <permission name="android.permission.CONTROL_INCALL_EXPERIENCE"/> + <permission name="android.permission.GET_ACCOUNTS_PRIVILEGED"/> + <permission name="android.permission.MODIFY_PHONE_STATE"/> + <permission name="android.permission.STOP_APP_SWITCHES"/> + <permission name="com.android.voicemail.permission.READ_VOICEMAIL"/> + <permission name="com.android.voicemail.permission.WRITE_VOICEMAIL"/> + </privapp-permissions> + + <privapp-permissions package="com.android.emergency"> + <permission name="android.permission.MANAGE_USERS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.externalstorage"> + <permission name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/> + <permission name="android.permission.WRITE_MEDIA_STORAGE"/> + </privapp-permissions> + + <privapp-permissions package="com.android.launcher3"> + <permission name="android.permission.BIND_APPWIDGET"/> + <permission name="android.permission.GET_ACCOUNTS_PRIVILEGED"/> + </privapp-permissions> + + <privapp-permissions package="com.android.location.fused"> + <permission name="android.permission.INSTALL_LOCATION_PROVIDER"/> + </privapp-permissions> + + <privapp-permissions package="com.android.managedprovisioning"> + <permission name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"/> + <permission name="android.permission.CHANGE_CONFIGURATION"/> + <permission name="android.permission.CONNECTIVITY_INTERNAL"/> + <permission name="android.permission.CRYPT_KEEPER"/> + <permission name="android.permission.DELETE_PACKAGES"/> + <permission name="android.permission.INSTALL_PACKAGES"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + <permission name="android.permission.MANAGE_DEVICE_ADMINS"/> + <permission name="android.permission.MANAGE_USERS"/> + <permission name="android.permission.MASTER_CLEAR"/> + <permission name="android.permission.PERFORM_CDMA_PROVISIONING"/> + <permission name="android.permission.SET_TIME"/> + <permission name="android.permission.SET_TIME_ZONE"/> + <permission name="android.permission.SHUTDOWN"/> + <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.mms.service"> + <permission name="android.permission.BIND_CARRIER_MESSAGING_SERVICE"/> + <permission name="android.permission.BIND_CARRIER_SERVICES"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.mtp"> + <permission name="android.permission.MANAGE_USB"/> + </privapp-permissions> + + <privapp-permissions package="com.android.musicfx"> + <permission name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"/> + </privapp-permissions> + + <privapp-permissions package="com.android.networkrecommendation"> + <permission name="android.permission.SCORE_NETWORKS"/> + <permission name="android.permission.SUBSTITUTE_NOTIFICATION_APP_NAME"/> + <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.omadm.service"> + <permission name="android.permission.CHANGE_CONFIGURATION"/> + <permission name="android.permission.CONNECTIVITY_INTERNAL"/> + <permission name="android.permission.MODIFY_PHONE_STATE"/> + <permission name="android.permission.READ_PRIVILEGED_PHONE_STATE"/> + <permission name="android.permission.WRITE_APN_SETTINGS"/> + <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.packageinstaller"> + <permission name="android.permission.CLEAR_APP_CACHE"/> + <permission name="android.permission.DELETE_PACKAGES"/> + <permission name="android.permission.INSTALL_PACKAGES"/> + <permission name="android.permission.MANAGE_USERS"/> + <permission name="android.permission.OBSERVE_GRANT_REVOKE_PERMISSIONS"/> + <permission name="android.permission.UPDATE_APP_OPS_STATS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.phone"> + <permission name="android.permission.ACCESS_IMS_CALL_SERVICE"/> + <permission name="android.permission.BIND_CARRIER_MESSAGING_SERVICE"/> + <permission name="android.permission.BIND_CARRIER_SERVICES"/> + <permission name="android.permission.BIND_IMS_SERVICE"/> + <permission name="android.permission.BIND_VISUAL_VOICEMAIL_SERVICE"/> + <permission name="android.permission.CALL_PRIVILEGED"/> + <permission name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"/> + <permission name="android.permission.CHANGE_CONFIGURATION"/> + <permission name="android.permission.CHANGE_DEVICE_IDLE_TEMP_WHITELIST"/> + <permission name="android.permission.CONNECTIVITY_INTERNAL"/> + <permission name="android.permission.CONTROL_INCALL_EXPERIENCE"/> + <permission name="android.permission.DUMP"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + <permission name="android.permission.LOCAL_MAC_ADDRESS"/> + <permission name="android.permission.MANAGE_USERS"/> + <permission name="android.permission.MODIFY_PHONE_STATE"/> + <permission name="android.permission.PERFORM_CDMA_PROVISIONING"/> + <permission name="android.permission.READ_NETWORK_USAGE_HISTORY"/> + <permission name="android.permission.READ_PRIVILEGED_PHONE_STATE"/> + <permission name="android.permission.READ_SEARCH_INDEXABLES"/> + <permission name="android.permission.REBOOT"/> + <permission name="android.permission.REGISTER_CALL_PROVIDER"/> + <permission name="android.permission.REGISTER_SIM_SUBSCRIPTION"/> + <permission name="android.permission.SEND_RESPOND_VIA_MESSAGE"/> + <permission name="android.permission.SET_TIME"/> + <permission name="android.permission.SET_TIME_ZONE"/> + <permission name="android.permission.SHUTDOWN"/> + <permission name="android.permission.STATUS_BAR"/> + <permission name="android.permission.STOP_APP_SWITCHES"/> + <permission name="android.permission.UPDATE_APP_OPS_STATS"/> + <permission name="android.permission.UPDATE_DEVICE_STATS"/> + <permission name="android.permission.UPDATE_LOCK"/> + <permission name="android.permission.WRITE_APN_SETTINGS"/> + <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + <permission name="com.android.permission.WRITE_EMBEDDED_SUBSCRIPTIONS"/> + <permission name="com.android.voicemail.permission.READ_VOICEMAIL"/> + <permission name="com.android.voicemail.permission.WRITE_VOICEMAIL"/> + </privapp-permissions> + + <privapp-permissions package="com.android.providers.calendar"> + <permission name="android.permission.GET_ACCOUNTS_PRIVILEGED"/> + <permission name="android.permission.UPDATE_APP_OPS_STATS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.providers.contacts"> + <permission name="android.permission.BIND_DIRECTORY_SEARCH"/> + <permission name="android.permission.GET_ACCOUNTS_PRIVILEGED"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + <permission name="android.permission.MANAGE_USERS"/> + <permission name="android.permission.UPDATE_APP_OPS_STATS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.providers.downloads"> + <permission name="android.permission.ACCESS_CACHE_FILESYSTEM"/> + <permission name="android.permission.CLEAR_APP_CACHE"/> + <permission name="android.permission.CONNECTIVITY_INTERNAL"/> + <permission name="android.permission.UPDATE_APP_OPS_STATS"/> + <permission name="android.permission.UPDATE_DEVICE_STATS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.providers.media"> + <permission name="android.permission.ACCESS_MTP"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + <permission name="android.permission.MANAGE_USERS"/> + <permission name="android.permission.WRITE_MEDIA_STORAGE"/> + </privapp-permissions> + + <privapp-permissions package="com.android.providers.telephony"> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + <permission name="android.permission.MODIFY_PHONE_STATE"/> + </privapp-permissions> + + <privapp-permissions package="com.android.provision"> + <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.server.telecom"> + <permission name="android.permission.BIND_CONNECTION_SERVICE"/> + <permission name="android.permission.BIND_INCALL_SERVICE"/> + <permission name="android.permission.CALL_PRIVILEGED"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + <permission name="android.permission.MANAGE_USERS"/> + <permission name="android.permission.MODIFY_PHONE_STATE"/> + <permission name="android.permission.STOP_APP_SWITCHES"/> + <permission name="android.permission.SUBSTITUTE_NOTIFICATION_APP_NAME"/> + </privapp-permissions> + + <privapp-permissions package="com.android.settings"> + <permission name="android.permission.ACCESS_CHECKIN_PROPERTIES"/> + <permission name="android.permission.ACCESS_NOTIFICATIONS"/> + <permission name="android.permission.BACKUP"/> + <permission name="android.permission.BATTERY_STATS"/> + <permission name="android.permission.BLUETOOTH_PRIVILEGED"/> + <permission name="android.permission.CHANGE_CONFIGURATION"/> + <permission name="android.permission.DELETE_PACKAGES"/> + <permission name="android.permission.FORCE_STOP_PACKAGES"/> + <permission name="android.permission.MANAGE_DEVICE_ADMINS"/> + <permission name="android.permission.MANAGE_FINGERPRINT"/> + <permission name="android.permission.MANAGE_USB"/> + <permission name="android.permission.MANAGE_USERS"/> + <permission name="android.permission.MANAGE_USER_OEM_UNLOCK_STATE" /> + <permission name="android.permission.MASTER_CLEAR"/> + <permission name="android.permission.MODIFY_PHONE_STATE"/> + <permission name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/> + <permission name="android.permission.MOVE_PACKAGE"/> + <permission name="android.permission.OVERRIDE_WIFI_CONFIG"/> + <permission name="android.permission.PACKAGE_USAGE_STATS"/> + <permission name="android.permission.READ_SEARCH_INDEXABLES"/> + <permission name="android.permission.REBOOT"/> + <permission name="android.permission.SET_TIME"/> + <permission name="android.permission.STATUS_BAR"/> + <permission name="android.permission.TETHER_PRIVILEGED"/> + <permission name="android.permission.USER_ACTIVITY"/> + <permission name="android.permission.WRITE_APN_SETTINGS"/> + <permission name="android.permission.WRITE_MEDIA_STORAGE"/> + <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.sharedstoragebackup"> + <permission name="android.permission.WRITE_MEDIA_STORAGE"/> + </privapp-permissions> + + <privapp-permissions package="com.android.shell"> + <permission name="android.permission.BACKUP"/> + <permission name="android.permission.BATTERY_STATS"/> + <permission name="android.permission.BIND_APPWIDGET"/> + <permission name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"/> + <permission name="android.permission.CHANGE_CONFIGURATION"/> + <permission name="android.permission.CHANGE_DEVICE_IDLE_TEMP_WHITELIST" /> + <permission name="android.permission.CHANGE_OVERLAY_PACKAGES"/> + <permission name="android.permission.CLEAR_APP_CACHE"/> + <permission name="android.permission.CONNECTIVITY_INTERNAL"/> + <permission name="android.permission.DELETE_CACHE_FILES"/> + <permission name="android.permission.DELETE_PACKAGES"/> + <permission name="android.permission.DUMP"/> + <permission name="android.permission.ACTIVITY_EMBEDDING"/> + <permission name="android.permission.FORCE_STOP_PACKAGES"/> + <permission name="android.permission.GET_APP_OPS_STATS"/> + <permission name="android.permission.INSTALL_LOCATION_PROVIDER"/> + <permission name="android.permission.INSTALL_PACKAGES"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + <permission name="android.permission.LOCAL_MAC_ADDRESS"/> + <permission name="android.permission.MANAGE_ACTIVITY_STACKS"/> + <permission name="android.permission.MANAGE_DEVICE_ADMINS"/> + <permission name="android.permission.MANAGE_USB"/> + <permission name="android.permission.MODIFY_APPWIDGET_BIND_PERMISSIONS"/> + <permission name="android.permission.MODIFY_PHONE_STATE"/> + <permission name="android.permission.MOUNT_FORMAT_FILESYSTEMS"/> + <permission name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/> + <permission name="android.permission.MOVE_PACKAGE"/> + <permission name="android.permission.PACKAGE_USAGE_STATS" /> + <permission name="android.permission.READ_FRAME_BUFFER"/> + <permission name="android.permission.REAL_GET_TASKS"/> + <permission name="android.permission.REGISTER_CALL_PROVIDER"/> + <permission name="android.permission.REGISTER_CONNECTION_MANAGER"/> + <permission name="android.permission.REGISTER_SIM_SUBSCRIPTION"/> + <permission name="android.permission.RETRIEVE_WINDOW_CONTENT"/> + <permission name="android.permission.SET_ALWAYS_FINISH"/> + <permission name="android.permission.SET_ANIMATION_SCALE"/> + <permission name="android.permission.SET_DEBUG_APP"/> + <permission name="android.permission.SET_PROCESS_LIMIT"/> + <permission name="android.permission.SIGNAL_PERSISTENT_PROCESSES"/> + <permission name="android.permission.STOP_APP_SWITCHES"/> + <permission name="android.permission.SUBSTITUTE_NOTIFICATION_APP_NAME"/> + <permission name="android.permission.UPDATE_APP_OPS_STATS"/> + <permission name="android.permission.WRITE_MEDIA_STORAGE"/> + <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.statementservice"> + <permission name="android.permission.INTENT_FILTER_VERIFICATION_AGENT"/> + </privapp-permissions> + + <privapp-permissions package="com.android.storagemanager"> + <permission name="android.permission.DELETE_PACKAGES"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + <permission name="android.permission.MANAGE_USERS"/> + <permission name="android.permission.PACKAGE_USAGE_STATS"/> + <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.systemui"> + <permission name="android.permission.BATTERY_STATS"/> + <permission name="android.permission.BIND_APPWIDGET"/> + <permission name="android.permission.BLUETOOTH_PRIVILEGED"/> + <permission name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"/> + <permission name="android.permission.CHANGE_DEVICE_IDLE_TEMP_WHITELIST"/> + <permission name="android.permission.CHANGE_OVERLAY_PACKAGES"/> + <permission name="android.permission.CONNECTIVITY_INTERNAL"/> + <permission name="android.permission.CONTROL_VPN"/> + <permission name="android.permission.DUMP"/> + <permission name="android.permission.GET_APP_OPS_STATS"/> + <permission name="android.permission.INTERACT_ACROSS_USERS"/> + <permission name="android.permission.MANAGE_ACTIVITY_STACKS"/> + <permission name="android.permission.MANAGE_USB"/> + <permission name="android.permission.MANAGE_USERS"/> + <permission name="android.permission.MASTER_CLEAR"/> + <permission name="android.permission.MEDIA_CONTENT_CONTROL"/> + <permission name="android.permission.MODIFY_PHONE_STATE"/> + <permission name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/> + <permission name="android.permission.OVERRIDE_WIFI_CONFIG"/> + <permission name="android.permission.READ_DREAM_STATE"/> + <permission name="android.permission.READ_FRAME_BUFFER"/> + <permission name="android.permission.READ_NETWORK_USAGE_HISTORY"/> + <permission name="android.permission.READ_PRIVILEGED_PHONE_STATE"/> + <permission name="android.permission.REAL_GET_TASKS"/> + <permission name="android.permission.RECEIVE_MEDIA_RESOURCE_USAGE"/> + <permission name="android.permission.START_TASKS_FROM_RECENTS"/> + <permission name="android.permission.STATUS_BAR"/> + <permission name="android.permission.STOP_APP_SWITCHES"/> + <permission name="android.permission.SUBSTITUTE_NOTIFICATION_APP_NAME"/> + <permission name="android.permission.TETHER_PRIVILEGED"/> + <permission name="android.permission.UPDATE_APP_OPS_STATS"/> + <permission name="android.permission.WRITE_DREAM_STATE"/> + <permission name="android.permission.WRITE_MEDIA_STORAGE"/> + <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.tv"> + <permission name="android.permission.CHANGE_HDMI_CEC_ACTIVE_SOURCE"/> + <permission name="android.permission.DVB_DEVICE"/> + <permission name="android.permission.GLOBAL_SEARCH"/> + <permission name="android.permission.HDMI_CEC"/> + <permission name="android.permission.MODIFY_PARENTAL_CONTROLS"/> + <permission name="android.permission.READ_CONTENT_RATING_SYSTEMS"/> + <permission name="com.android.providers.tv.permission.ACCESS_ALL_EPG_DATA"/> + <permission name="com.android.providers.tv.permission.ACCESS_WATCHED_PROGRAMS"/> + </privapp-permissions> + + <privapp-permissions package="com.android.vpndialogs"> + <permission name="android.permission.CONNECTIVITY_INTERNAL"/> + <permission name="android.permission.CONTROL_VPN"/> + </privapp-permissions> + + <privapp-permissions package="com.google.android.ext.services"> + <permission name="android.permission.PROVIDE_RESOLVER_RANKER_SERVICE" /> + </privapp-permissions> + +</permissions> diff --git a/system/etc/ppp/ip-up-vpn b/system/etc/ppp/ip-up-vpn new file mode 100755 index 0000000000000000000000000000000000000000..65c8b4ecf470c51443af627b0f1b949e1217fbbc Binary files /dev/null and b/system/etc/ppp/ip-up-vpn differ diff --git a/system/etc/preferred-apps/google.xml b/system/etc/preferred-apps/google.xml new file mode 100644 index 0000000000000000000000000000000000000000..53c75653a9d125f9622f9757a034e874842b72a1 --- /dev/null +++ b/system/etc/preferred-apps/google.xml @@ -0,0 +1,101 @@ +<?xml version='1.0' encoding='utf-8' standalone='yes'?> +<!-- Copyright (C) 2012 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- + These are the default set of preferred applications for various standard + web URIs of Google properties to built-in Google Android applications. + + To generate new entries, set whatever app you want to be the default as + normal through the UI, and then use "adb shell dumpsys package preferred-xml" + to get the XML structure for the current preferred apps. You will probably + want to clean up the output some, such as adding the BROWSABLE category. See + the other entries here for guides. + --> +<preferred-activities> + <item name="com.google.android.apps.plus/.editor.PlusEditorActivity"> + <filter> + <action name="android.intent.action.EDIT" /> + <cat name="android.intent.category.DEFAULT" /> + <type name="image/bmp" /> + <type name="image/jpeg" /> + <type name="image/gif" /> + <type name="image/png" /> + <type name="image/webp" /> + <type name="image/x-ms-bmp" /> + <type name="image/vnd.wap.wbmp" /> + </filter> + </item> + <item name="com.google.android.apps.plus/.editor.PlusCropActivity"> + <filter> + <action name="com.android.camera.action.CROP" /> + <cat name="android.intent.category.DEFAULT" /> + <type name="image/bmp" /> + <type name="image/jpeg" /> + <type name="image/gif" /> + <type name="image/png" /> + <type name="image/webp" /> + <type name="image/x-ms-bmp" /> + <type name="image/vnd.wap.wbmp" /> + </filter> + </item> + <item name="com.google.android.apps.photos/.home.HomeActivity"> + <filter> + <action name="android.intent.action.MAIN" /> + <cat name="android.intent.category.APP_GALLERY" /> + <cat name="android.intent.category.DEFAULT" /> + </filter> + </item> + <item name="com.google.android.apps.docs.editors.sheets/com.google.android.apps.docs.editors.trix.quicksheet.QuickSheetDocumentOpenerActivityAlias"> + <filter> + <action name="android.intent.action.EDIT" /> + <cat name="android.intent.category.DEFAULT" /> + <type name="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" /> + <type name="application/vnd.ms-excel.sheet.macroenabled.12" /> + <type name="application/vnd.ms-excel" /> + <type name="application/vnd.ms-excel.addin.macroenabled.12" /> + <type name="application/vnd.ms-excel.template.macroenabled.12" /> + <type name="application/vnd.openxmlformats-officedocument.spreadsheetml.template" /> + <type name="application/x-msexcel" /> + </filter> + </item> + <item name="com.google.android.apps.docs.editors.docs/com.google.android.apps.docs.editors.kix.quickword.QuickWordDocumentOpenerActivityAlias"> + <filter> + <action name="android.intent.action.EDIT" /> + <cat name="android.intent.category.DEFAULT" /> + <type name="application/vnd.ms-word" /> + <type name="application/vnd.openxmlformats-officedocument.wordprocessingml.document" /> + <type name="application/vnd.ms-word.document.macroenabled.12" /> + <type name="application/msword" /> + <type name="application/vnd.ms-word.template.macroenabled.12" /> + <type name="application/vnd.openxmlformats-officedocument.wordprocessingml.template" /> + <type name="application/x-msword" /> + </filter> + </item> + <item name="com.google.android.apps.docs.editors.slides/com.google.android.apps.docs.editors.kix.quickword.QuickWordDocumentOpenerActivityAlias"> + <filter> + <action name="android.intent.action.EDIT" /> + <cat name="android.intent.category.DEFAULT" /> + <type name="application/vnd.openxmlformats-officedocument.presentationml.presentation" /> + <type name="application/vnd.ms-powerpoint" /> + <type name="application/vnd.openxmlformats-officedocument.presentationml.template" /> + <type name="application/vnd.ms-powerpoint.presentation.macroenabled.12" /> + <type name="application/vnd.openxmlformats-officedocument.presentationml.slideshow" /> + <type name="application/vnd.ms-powerpoint.slideshow.macroenabled.12" /> + <type name="application/x-mspowerpoint" /> + + </filter> + </item> +</preferred-activities> diff --git a/system/etc/preloaded-classes b/system/etc/preloaded-classes new file mode 100644 index 0000000000000000000000000000000000000000..479cda4ffd13d390f151c13e70cf373fc15b951f --- /dev/null +++ b/system/etc/preloaded-classes @@ -0,0 +1,4739 @@ +# +# Copyright (C) 2017 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Preloaded-classes filter file for phones. +# +# Classes in this file will be allocated into the boot image, and forcibly initialized in +# the zygote during initialization. This is a trade-off, using virtual address space to share +# common heap between apps. +# +# This file has been derived for mainline phone (and tablet) usage. +# +android.R$styleable +android.accessibilityservice.AccessibilityServiceInfo$1 +android.accounts.Account +android.accounts.Account$1 +android.accounts.AccountManager +android.accounts.AccountManager$1 +android.accounts.AccountManager$11 +android.accounts.AccountManager$AmsTask +android.accounts.AccountManager$AmsTask$1 +android.accounts.AccountManager$AmsTask$Response +android.accounts.AccountManager$BaseFutureTask +android.accounts.AccountManager$BaseFutureTask$1 +android.accounts.AccountManager$BaseFutureTask$Response +android.accounts.AccountManager$Future2Task +android.accounts.AccountManagerFuture +android.accounts.AccountsException +android.accounts.AuthenticatorException +android.accounts.IAccountManager +android.accounts.IAccountManager$Stub +android.accounts.IAccountManager$Stub$Proxy +android.accounts.IAccountManagerResponse +android.accounts.IAccountManagerResponse$Stub +android.accounts.OnAccountsUpdateListener +android.accounts.OperationCanceledException +android.animation.AnimationHandler +android.animation.AnimationHandler$1 +android.animation.AnimationHandler$AnimationFrameCallback +android.animation.AnimationHandler$AnimationFrameCallbackProvider +android.animation.AnimationHandler$MyFrameCallbackProvider +android.animation.Animator +android.animation.Animator$AnimatorConstantState +android.animation.Animator$AnimatorListener +android.animation.Animator$AnimatorPauseListener +android.animation.AnimatorInflater +android.animation.AnimatorInflater$PathDataEvaluator +android.animation.AnimatorListenerAdapter +android.animation.AnimatorSet +android.animation.AnimatorSet$1 +android.animation.AnimatorSet$2 +android.animation.AnimatorSet$3 +android.animation.AnimatorSet$AnimationEvent +android.animation.AnimatorSet$Builder +android.animation.AnimatorSet$Node +android.animation.AnimatorSet$SeekState +android.animation.FloatEvaluator +android.animation.FloatKeyframeSet +android.animation.IntEvaluator +android.animation.IntKeyframeSet +android.animation.Keyframe +android.animation.Keyframe$FloatKeyframe +android.animation.Keyframe$IntKeyframe +android.animation.Keyframe$ObjectKeyframe +android.animation.KeyframeSet +android.animation.Keyframes +android.animation.Keyframes$FloatKeyframes +android.animation.Keyframes$IntKeyframes +android.animation.LayoutTransition$TransitionListener +android.animation.ObjectAnimator +android.animation.PathKeyframes$1 +android.animation.PathKeyframes$2 +android.animation.PathKeyframes$FloatKeyframesBase +android.animation.PathKeyframes$IntKeyframesBase +android.animation.PathKeyframes$SimpleKeyframes +android.animation.PropertyValuesHolder +android.animation.PropertyValuesHolder$FloatPropertyValuesHolder +android.animation.PropertyValuesHolder$IntPropertyValuesHolder +android.animation.PropertyValuesHolder$PropertyValues +android.animation.RectEvaluator +android.animation.StateListAnimator +android.animation.StateListAnimator$1 +android.animation.StateListAnimator$StateListAnimatorConstantState +android.animation.StateListAnimator$Tuple +android.animation.TimeAnimator +android.animation.TimeAnimator$TimeListener +android.animation.TimeInterpolator +android.animation.TypeEvaluator +android.animation.ValueAnimator +android.animation.ValueAnimator$AnimatorUpdateListener +android.app.-$Lambda$9I5WEMsoBc7l4QrNqZ4wx59yuHU +android.app.-$Lambda$9I5WEMsoBc7l4QrNqZ4wx59yuHU$1 +android.app.-$Lambda$aS31cHIhRx41653CMnd4gZqshIQ +android.app.-$Lambda$c44uHH2WE4sJvw5tZZB6gRzEaHI +android.app.-$Lambda$vZ1qb742P9hE4drBY-TrOZB_qKo +android.app.ActionBar +android.app.ActionBar$LayoutParams +android.app.Activity +android.app.Activity$HostCallbacks +android.app.ActivityManager +android.app.ActivityManager$1 +android.app.ActivityManager$AppTask +android.app.ActivityManager$MemoryInfo$1 +android.app.ActivityManager$RecentTaskInfo$1 +android.app.ActivityManager$RunningAppProcessInfo +android.app.ActivityManager$RunningAppProcessInfo$1 +android.app.ActivityManager$RunningTaskInfo$1 +android.app.ActivityManager$StackId +android.app.ActivityManager$TaskDescription +android.app.ActivityManager$TaskDescription$1 +android.app.ActivityOptions +android.app.ActivityThread +android.app.ActivityThread$1 +android.app.ActivityThread$2 +android.app.ActivityThread$ActivityClientRecord +android.app.ActivityThread$ActivityConfigChangeData +android.app.ActivityThread$AppBindData +android.app.ActivityThread$ApplicationThread +android.app.ActivityThread$BindServiceData +android.app.ActivityThread$ContextCleanupInfo +android.app.ActivityThread$CreateServiceData +android.app.ActivityThread$DropBoxReporter +android.app.ActivityThread$EventLoggingReporter +android.app.ActivityThread$GcIdler +android.app.ActivityThread$H +android.app.ActivityThread$Idler +android.app.ActivityThread$NewIntentData +android.app.ActivityThread$Profiler +android.app.ActivityThread$ProviderClientRecord +android.app.ActivityThread$ProviderKey +android.app.ActivityThread$ProviderRefCount +android.app.ActivityThread$ReceiverData +android.app.ActivityThread$RequestAssistContextExtras +android.app.ActivityThread$ServiceArgsData +android.app.ActivityThread$StopInfo +android.app.ActivityTransitionState +android.app.AlarmManager +android.app.AlarmManager$ListenerWrapper +android.app.AlertDialog +android.app.AlertDialog$Builder +android.app.AppGlobals +android.app.AppOpsManager +android.app.AppOpsManager$OnOpChangedListener +android.app.Application +android.app.Application$ActivityLifecycleCallbacks +android.app.ApplicationErrorReport$CrashInfo +android.app.ApplicationLoaders +android.app.ApplicationPackageManager +android.app.ApplicationPackageManager$ResourceName +android.app.BackStackRecord +android.app.BackStackRecord$Op +android.app.ContentProviderHolder +android.app.ContentProviderHolder$1 +android.app.ContextImpl +android.app.ContextImpl$1 +android.app.ContextImpl$ApplicationContentResolver +android.app.DexLoadReporter +android.app.Dialog +android.app.Dialog$ListenersHandler +android.app.DialogFragment +android.app.DownloadManager +android.app.Fragment +android.app.Fragment$1 +android.app.Fragment$AnimationInfo +android.app.FragmentContainer +android.app.FragmentController +android.app.FragmentHostCallback +android.app.FragmentManager +android.app.FragmentManager$BackStackEntry +android.app.FragmentManagerImpl +android.app.FragmentManagerImpl$1 +android.app.FragmentManagerImpl$OpGenerator +android.app.FragmentManagerState$1 +android.app.FragmentState$1 +android.app.FragmentTransaction +android.app.FragmentTransition$FragmentContainerTransition +android.app.IActivityManager +android.app.IActivityManager$Stub +android.app.IActivityManager$Stub$Proxy +android.app.IAlarmListener +android.app.IAlarmListener$Stub +android.app.IAlarmManager +android.app.IAlarmManager$Stub +android.app.IAlarmManager$Stub$Proxy +android.app.IAppTask +android.app.IAppTask$Stub +android.app.IAppTask$Stub$Proxy +android.app.IApplicationThread +android.app.IApplicationThread$Stub +android.app.IInstrumentationWatcher +android.app.IInstrumentationWatcher$Stub +android.app.INotificationManager +android.app.INotificationManager$Stub +android.app.INotificationManager$Stub$Proxy +android.app.IServiceConnection +android.app.IServiceConnection$Stub +android.app.IUiAutomationConnection +android.app.IUiAutomationConnection$Stub +android.app.IUiModeManager +android.app.IUiModeManager$Stub +android.app.IUiModeManager$Stub$Proxy +android.app.IUserSwitchObserver +android.app.IUserSwitchObserver$Stub +android.app.IWallpaperManager +android.app.IWallpaperManager$Stub +android.app.IWallpaperManager$Stub$Proxy +android.app.IWallpaperManagerCallback +android.app.IWallpaperManagerCallback$Stub +android.app.Instrumentation +android.app.IntentReceiverLeaked +android.app.IntentService +android.app.IntentService$ServiceHandler +android.app.JobSchedulerImpl +android.app.KeyguardManager +android.app.LoadedApk +android.app.LoadedApk$ReceiverDispatcher +android.app.LoadedApk$ReceiverDispatcher$Args +android.app.LoadedApk$ReceiverDispatcher$InnerReceiver +android.app.LoadedApk$ServiceDispatcher +android.app.LoadedApk$ServiceDispatcher$ConnectionInfo +android.app.LoadedApk$ServiceDispatcher$DeathMonitor +android.app.LoadedApk$ServiceDispatcher$InnerConnection +android.app.LoadedApk$ServiceDispatcher$RunConnection +android.app.LoadedApk$WarningContextClassLoader +android.app.LoaderManager +android.app.LoaderManager$LoaderCallbacks +android.app.LoaderManagerImpl +android.app.LoaderManagerImpl$LoaderInfo +android.app.NativeActivity +android.app.Notification +android.app.Notification$1 +android.app.Notification$Action$1 +android.app.Notification$BuilderRemoteViews +android.app.Notification$StandardTemplateParams +android.app.NotificationChannel +android.app.NotificationChannel$1 +android.app.NotificationChannelGroup$1 +android.app.NotificationManager +android.app.OnActivityPausedListener +android.app.PendingIntent +android.app.PendingIntent$1 +android.app.PendingIntent$CanceledException +android.app.PendingIntent$OnMarshaledListener +android.app.QueuedWork +android.app.QueuedWork$QueuedWorkHandler +android.app.ReceiverRestrictedContext +android.app.RemoteInput$1 +android.app.ResourcesManager +android.app.ResourcesManager$1 +android.app.ResourcesManager$ActivityResources +android.app.ResultInfo +android.app.ResultInfo$1 +android.app.SearchManager +android.app.Service +android.app.ServiceConnectionLeaked +android.app.ServiceStartArgs +android.app.ServiceStartArgs$1 +android.app.SharedElementCallback +android.app.SharedElementCallback$1 +android.app.SharedPreferencesImpl +android.app.SharedPreferencesImpl$1 +android.app.SharedPreferencesImpl$2 +android.app.SharedPreferencesImpl$EditorImpl +android.app.SharedPreferencesImpl$EditorImpl$1 +android.app.SharedPreferencesImpl$EditorImpl$2 +android.app.SharedPreferencesImpl$EditorImpl$3 +android.app.SharedPreferencesImpl$MemoryCommitResult +android.app.StatusBarManager +android.app.SystemServiceRegistry +android.app.SystemServiceRegistry$1 +android.app.SystemServiceRegistry$10 +android.app.SystemServiceRegistry$11 +android.app.SystemServiceRegistry$12 +android.app.SystemServiceRegistry$13 +android.app.SystemServiceRegistry$14 +android.app.SystemServiceRegistry$15 +android.app.SystemServiceRegistry$16 +android.app.SystemServiceRegistry$17 +android.app.SystemServiceRegistry$18 +android.app.SystemServiceRegistry$19 +android.app.SystemServiceRegistry$2 +android.app.SystemServiceRegistry$20 +android.app.SystemServiceRegistry$21 +android.app.SystemServiceRegistry$22 +android.app.SystemServiceRegistry$23 +android.app.SystemServiceRegistry$24 +android.app.SystemServiceRegistry$25 +android.app.SystemServiceRegistry$26 +android.app.SystemServiceRegistry$27 +android.app.SystemServiceRegistry$28 +android.app.SystemServiceRegistry$29 +android.app.SystemServiceRegistry$3 +android.app.SystemServiceRegistry$30 +android.app.SystemServiceRegistry$31 +android.app.SystemServiceRegistry$32 +android.app.SystemServiceRegistry$33 +android.app.SystemServiceRegistry$34 +android.app.SystemServiceRegistry$35 +android.app.SystemServiceRegistry$36 +android.app.SystemServiceRegistry$37 +android.app.SystemServiceRegistry$38 +android.app.SystemServiceRegistry$39 +android.app.SystemServiceRegistry$4 +android.app.SystemServiceRegistry$40 +android.app.SystemServiceRegistry$41 +android.app.SystemServiceRegistry$42 +android.app.SystemServiceRegistry$43 +android.app.SystemServiceRegistry$44 +android.app.SystemServiceRegistry$45 +android.app.SystemServiceRegistry$46 +android.app.SystemServiceRegistry$47 +android.app.SystemServiceRegistry$48 +android.app.SystemServiceRegistry$49 +android.app.SystemServiceRegistry$5 +android.app.SystemServiceRegistry$50 +android.app.SystemServiceRegistry$51 +android.app.SystemServiceRegistry$52 +android.app.SystemServiceRegistry$53 +android.app.SystemServiceRegistry$54 +android.app.SystemServiceRegistry$55 +android.app.SystemServiceRegistry$56 +android.app.SystemServiceRegistry$57 +android.app.SystemServiceRegistry$58 +android.app.SystemServiceRegistry$59 +android.app.SystemServiceRegistry$6 +android.app.SystemServiceRegistry$60 +android.app.SystemServiceRegistry$61 +android.app.SystemServiceRegistry$62 +android.app.SystemServiceRegistry$63 +android.app.SystemServiceRegistry$64 +android.app.SystemServiceRegistry$65 +android.app.SystemServiceRegistry$66 +android.app.SystemServiceRegistry$67 +android.app.SystemServiceRegistry$68 +android.app.SystemServiceRegistry$69 +android.app.SystemServiceRegistry$7 +android.app.SystemServiceRegistry$70 +android.app.SystemServiceRegistry$71 +android.app.SystemServiceRegistry$72 +android.app.SystemServiceRegistry$73 +android.app.SystemServiceRegistry$74 +android.app.SystemServiceRegistry$75 +android.app.SystemServiceRegistry$76 +android.app.SystemServiceRegistry$77 +android.app.SystemServiceRegistry$78 +android.app.SystemServiceRegistry$79 +android.app.SystemServiceRegistry$8 +android.app.SystemServiceRegistry$80 +android.app.SystemServiceRegistry$81 +android.app.SystemServiceRegistry$82 +android.app.SystemServiceRegistry$83 +android.app.SystemServiceRegistry$84 +android.app.SystemServiceRegistry$85 +android.app.SystemServiceRegistry$9 +android.app.SystemServiceRegistry$CachedServiceFetcher +android.app.SystemServiceRegistry$ServiceFetcher +android.app.SystemServiceRegistry$StaticApplicationContextServiceFetcher +android.app.SystemServiceRegistry$StaticServiceFetcher +android.app.UiModeManager +android.app.UserSwitchObserver +android.app.VrManager +android.app.WallpaperColors$1 +android.app.WallpaperInfo$1 +android.app.WallpaperManager +android.app.WallpaperManager$Globals +android.app.admin.DevicePolicyManager +android.app.admin.IDevicePolicyManager +android.app.admin.IDevicePolicyManager$Stub +android.app.admin.IDevicePolicyManager$Stub$Proxy +android.app.admin.SecurityLog +android.app.admin.SecurityLog$SecurityEvent +android.app.admin.SecurityLog$SecurityEvent$1 +android.app.assist.AssistStructure$1 +android.app.assist.AssistStructure$ParcelTransferWriter +android.app.assist.AssistStructure$SendChannel +android.app.assist.AssistStructure$ViewNode +android.app.assist.AssistStructure$ViewNodeBuilder +android.app.assist.AssistStructure$ViewNodeText +android.app.assist.AssistStructure$ViewStackEntry +android.app.assist.AssistStructure$WindowNode +android.app.backup.BackupAgent +android.app.backup.BackupAgentHelper +android.app.backup.BackupDataInput +android.app.backup.BackupDataInput$EntityHeader +android.app.backup.BackupDataOutput +android.app.backup.BackupHelperDispatcher +android.app.backup.BackupHelperDispatcher$Header +android.app.backup.BackupManager +android.app.backup.FileBackupHelperBase +android.app.backup.FullBackup +android.app.backup.FullBackupDataOutput +android.app.backup.IBackupManager +android.app.backup.IBackupManager$Stub +android.app.backup.IBackupManager$Stub$Proxy +android.app.job.IJobCallback +android.app.job.IJobCallback$Stub +android.app.job.IJobCallback$Stub$Proxy +android.app.job.IJobScheduler +android.app.job.IJobScheduler$Stub +android.app.job.IJobScheduler$Stub$Proxy +android.app.job.IJobService +android.app.job.IJobService$Stub +android.app.job.JobInfo +android.app.job.JobInfo$1 +android.app.job.JobInfo$Builder +android.app.job.JobInfo$TriggerContentUri$1 +android.app.job.JobParameters +android.app.job.JobParameters$1 +android.app.job.JobScheduler +android.app.job.JobService +android.app.job.JobService$1 +android.app.job.JobServiceEngine +android.app.job.JobServiceEngine$JobHandler +android.app.job.JobServiceEngine$JobInterface +android.app.timezone.RulesManager +android.app.trust.ITrustManager +android.app.trust.ITrustManager$Stub +android.app.trust.ITrustManager$Stub$Proxy +android.app.trust.TrustManager +android.app.usage.IStorageStatsManager +android.app.usage.IStorageStatsManager$Stub +android.app.usage.NetworkStatsManager +android.app.usage.StorageStatsManager +android.app.usage.UsageStatsManager +android.appwidget.AppWidgetManager +android.appwidget.AppWidgetProvider +android.bluetooth.BluetoothA2dp +android.bluetooth.BluetoothA2dp$1 +android.bluetooth.BluetoothA2dp$2 +android.bluetooth.BluetoothAdapter$1 +android.bluetooth.BluetoothDevice$1 +android.bluetooth.BluetoothDevice$2 +android.bluetooth.BluetoothHeadset +android.bluetooth.BluetoothHeadset$1 +android.bluetooth.BluetoothHeadset$2 +android.bluetooth.BluetoothHeadset$3 +android.bluetooth.BluetoothManager +android.bluetooth.BluetoothProfile +android.bluetooth.BluetoothProfile$ServiceListener +android.bluetooth.IBluetooth +android.bluetooth.IBluetooth$Stub +android.bluetooth.IBluetooth$Stub$Proxy +android.bluetooth.IBluetoothA2dp +android.bluetooth.IBluetoothA2dp$Stub +android.bluetooth.IBluetoothA2dp$Stub$Proxy +android.bluetooth.IBluetoothGatt +android.bluetooth.IBluetoothGatt$Stub +android.bluetooth.IBluetoothHeadset +android.bluetooth.IBluetoothHeadset$Stub +android.bluetooth.IBluetoothHeadset$Stub$Proxy +android.bluetooth.IBluetoothManager +android.bluetooth.IBluetoothManager$Stub +android.bluetooth.IBluetoothManager$Stub$Proxy +android.bluetooth.IBluetoothManagerCallback +android.bluetooth.IBluetoothManagerCallback$Stub +android.bluetooth.IBluetoothProfileServiceConnection +android.bluetooth.IBluetoothProfileServiceConnection$Stub +android.bluetooth.IBluetoothStateChangeCallback +android.bluetooth.IBluetoothStateChangeCallback$Stub +android.companion.CompanionDeviceManager +android.content.AbstractThreadedSyncAdapter$ISyncAdapterImpl +android.content.ActivityNotFoundException +android.content.AsyncQueryHandler$WorkerArgs +android.content.AsyncQueryHandler$WorkerHandler +android.content.AsyncTaskLoader +android.content.AsyncTaskLoader$LoadTask +android.content.BroadcastReceiver +android.content.BroadcastReceiver$PendingResult +android.content.BroadcastReceiver$PendingResult$1 +android.content.ClipboardManager +android.content.ClipboardManager$1 +android.content.ClipboardManager$2 +android.content.ComponentCallbacks +android.content.ComponentCallbacks2 +android.content.ComponentName +android.content.ComponentName$1 +android.content.ContentProvider +android.content.ContentProvider$PipeDataWriter +android.content.ContentProvider$Transport +android.content.ContentProviderClient +android.content.ContentProviderNative +android.content.ContentProviderProxy +android.content.ContentResolver +android.content.ContentResolver$1 +android.content.ContentResolver$CursorWrapperInner +android.content.ContentResolver$ParcelFileDescriptorInner +android.content.ContentUris +android.content.ContentValues +android.content.ContentValues$1 +android.content.Context +android.content.ContextWrapper +android.content.CursorLoader +android.content.DialogInterface +android.content.DialogInterface$OnCancelListener +android.content.DialogInterface$OnClickListener +android.content.DialogInterface$OnDismissListener +android.content.IClipboard +android.content.IClipboard$Stub +android.content.IClipboard$Stub$Proxy +android.content.IContentProvider +android.content.IContentService +android.content.IContentService$Stub +android.content.IContentService$Stub$Proxy +android.content.IIntentReceiver +android.content.IIntentReceiver$Stub +android.content.IIntentSender +android.content.IIntentSender$Stub +android.content.IIntentSender$Stub$Proxy +android.content.IOnPrimaryClipChangedListener +android.content.IOnPrimaryClipChangedListener$Stub +android.content.IRestrictionsManager +android.content.IRestrictionsManager$Stub +android.content.ISyncAdapter +android.content.ISyncAdapter$Stub +android.content.ISyncContext +android.content.ISyncContext$Stub +android.content.ISyncStatusObserver +android.content.ISyncStatusObserver$Stub +android.content.Intent +android.content.Intent$1 +android.content.IntentFilter +android.content.IntentFilter$1 +android.content.IntentFilter$MalformedMimeTypeException +android.content.IntentSender +android.content.IntentSender$SendIntentException +android.content.Loader +android.content.Loader$ForceLoadContentObserver +android.content.Loader$OnLoadCanceledListener +android.content.Loader$OnLoadCompleteListener +android.content.OperationApplicationException +android.content.RestrictionsManager +android.content.ServiceConnection +android.content.SharedPreferences +android.content.SharedPreferences$Editor +android.content.SharedPreferences$OnSharedPreferenceChangeListener +android.content.SyncRequest$1 +android.content.SyncResult$1 +android.content.SyncStats$1 +android.content.SyncStatusObserver +android.content.UndoManager +android.content.UndoOwner +android.content.UriMatcher +android.content.pm.ActivityInfo +android.content.pm.ActivityInfo$1 +android.content.pm.ActivityInfo$WindowLayout +android.content.pm.ApplicationInfo +android.content.pm.ApplicationInfo$1 +android.content.pm.BaseParceledListSlice +android.content.pm.ComponentInfo +android.content.pm.ConfigurationInfo +android.content.pm.ConfigurationInfo$1 +android.content.pm.FeatureGroupInfo +android.content.pm.FeatureGroupInfo$1 +android.content.pm.FeatureInfo +android.content.pm.FeatureInfo$1 +android.content.pm.IPackageInstaller +android.content.pm.IPackageInstaller$Stub +android.content.pm.IPackageInstaller$Stub$Proxy +android.content.pm.IPackageManager +android.content.pm.IPackageManager$Stub +android.content.pm.IPackageManager$Stub$Proxy +android.content.pm.IShortcutService +android.content.pm.IShortcutService$Stub +android.content.pm.IShortcutService$Stub$Proxy +android.content.pm.InstrumentationInfo +android.content.pm.InstrumentationInfo$1 +android.content.pm.LauncherApps +android.content.pm.PackageInfo +android.content.pm.PackageInfo$1 +android.content.pm.PackageItemInfo +android.content.pm.PackageManager +android.content.pm.PackageManager$NameNotFoundException +android.content.pm.PackageParser$PackageParserException +android.content.pm.ParceledListSlice +android.content.pm.ParceledListSlice$1 +android.content.pm.PathPermission +android.content.pm.PathPermission$1 +android.content.pm.PermissionInfo +android.content.pm.PermissionInfo$1 +android.content.pm.ProviderInfo +android.content.pm.ProviderInfo$1 +android.content.pm.ResolveInfo +android.content.pm.ResolveInfo$1 +android.content.pm.ServiceInfo +android.content.pm.ServiceInfo$1 +android.content.pm.ShortcutInfo$1 +android.content.pm.ShortcutManager +android.content.pm.Signature +android.content.pm.Signature$1 +android.content.pm.UserInfo$1 +android.content.res.AssetFileDescriptor +android.content.res.AssetFileDescriptor$1 +android.content.res.AssetManager +android.content.res.AssetManager$AssetInputStream +android.content.res.ColorStateList +android.content.res.ColorStateList$1 +android.content.res.ColorStateList$ColorStateListFactory +android.content.res.CompatResources +android.content.res.CompatibilityInfo +android.content.res.CompatibilityInfo$1 +android.content.res.CompatibilityInfo$2 +android.content.res.ComplexColor +android.content.res.Configuration +android.content.res.Configuration$1 +android.content.res.ConfigurationBoundResourceCache +android.content.res.ConstantState +android.content.res.DrawableCache +android.content.res.GradientColor +android.content.res.ObbInfo +android.content.res.ObbInfo$1 +android.content.res.ObbScanner +android.content.res.ResourceId +android.content.res.Resources +android.content.res.Resources$NotFoundException +android.content.res.Resources$Theme +android.content.res.Resources$ThemeKey +android.content.res.ResourcesImpl +android.content.res.ResourcesImpl$ThemeImpl +android.content.res.ResourcesKey +android.content.res.StringBlock +android.content.res.ThemedResourceCache +android.content.res.TypedArray +android.content.res.XmlBlock +android.content.res.XmlBlock$Parser +android.content.res.XmlResourceParser +android.database.AbstractCursor +android.database.AbstractCursor$SelfContentObserver +android.database.AbstractWindowedCursor +android.database.BulkCursorDescriptor +android.database.BulkCursorDescriptor$1 +android.database.BulkCursorNative +android.database.BulkCursorProxy +android.database.BulkCursorToCursorAdaptor +android.database.CharArrayBuffer +android.database.ContentObservable +android.database.ContentObserver +android.database.ContentObserver$NotificationRunnable +android.database.ContentObserver$Transport +android.database.CrossProcessCursor +android.database.CrossProcessCursorWrapper +android.database.Cursor +android.database.CursorToBulkCursorAdaptor +android.database.CursorToBulkCursorAdaptor$ContentObserverProxy +android.database.CursorWindow +android.database.CursorWindow$1 +android.database.CursorWrapper +android.database.DataSetObservable +android.database.DataSetObserver +android.database.DatabaseErrorHandler +android.database.DatabaseUtils +android.database.DefaultDatabaseErrorHandler +android.database.IBulkCursor +android.database.IContentObserver +android.database.IContentObserver$Stub +android.database.IContentObserver$Stub$Proxy +android.database.MatrixCursor +android.database.MergeCursor +android.database.MergeCursor$1 +android.database.Observable +android.database.SQLException +android.database.sqlite.-$Lambda$gPaS7kMbZ8xtrrEx06GlwJ2iDWE +android.database.sqlite.DatabaseObjectNotClosedException +android.database.sqlite.SQLiteClosable +android.database.sqlite.SQLiteConnection +android.database.sqlite.SQLiteConnection$Operation +android.database.sqlite.SQLiteConnection$OperationLog +android.database.sqlite.SQLiteConnection$PreparedStatement +android.database.sqlite.SQLiteConnection$PreparedStatementCache +android.database.sqlite.SQLiteConnectionPool +android.database.sqlite.SQLiteConnectionPool$AcquiredConnectionStatus +android.database.sqlite.SQLiteConnectionPool$ConnectionWaiter +android.database.sqlite.SQLiteConnectionPool$IdleConnectionHandler +android.database.sqlite.SQLiteCursor +android.database.sqlite.SQLiteCursorDriver +android.database.sqlite.SQLiteCustomFunction +android.database.sqlite.SQLiteDatabase +android.database.sqlite.SQLiteDatabase$CursorFactory +android.database.sqlite.SQLiteDatabase$OpenParams +android.database.sqlite.SQLiteDatabase$OpenParams$Builder +android.database.sqlite.SQLiteDatabaseConfiguration +android.database.sqlite.SQLiteDatabaseCorruptException +android.database.sqlite.SQLiteDatabaseLockedException +android.database.sqlite.SQLiteDebug +android.database.sqlite.SQLiteDebug$PagerStats +android.database.sqlite.SQLiteDirectCursorDriver +android.database.sqlite.SQLiteDoneException +android.database.sqlite.SQLiteException +android.database.sqlite.SQLiteFullException +android.database.sqlite.SQLiteGlobal +android.database.sqlite.SQLiteOpenHelper +android.database.sqlite.SQLiteProgram +android.database.sqlite.SQLiteQuery +android.database.sqlite.SQLiteQueryBuilder +android.database.sqlite.SQLiteSession +android.database.sqlite.SQLiteSession$Transaction +android.database.sqlite.SQLiteStatement +android.database.sqlite.SQLiteStatementInfo +android.database.sqlite.SQLiteTransactionListener +android.ddm.DdmHandleAppName +android.ddm.DdmHandleExit +android.ddm.DdmHandleHeap +android.ddm.DdmHandleHello +android.ddm.DdmHandleNativeHeap +android.ddm.DdmHandleProfiling +android.ddm.DdmHandleThread +android.ddm.DdmHandleViewDebug +android.ddm.DdmRegister +android.graphics.-$Lambda$ZrP-zejiEXAqfwV-MyP5lE9mYC8 +android.graphics.-$Lambda$ZrP-zejiEXAqfwV-MyP5lE9mYC8$1 +android.graphics.-$Lambda$ZrP-zejiEXAqfwV-MyP5lE9mYC8$2 +android.graphics.BaseCanvas +android.graphics.Bitmap +android.graphics.Bitmap$1 +android.graphics.Bitmap$Config +android.graphics.BitmapFactory +android.graphics.BitmapFactory$Options +android.graphics.BitmapRegionDecoder +android.graphics.BitmapShader +android.graphics.BlurMaskFilter +android.graphics.Camera +android.graphics.Canvas +android.graphics.Canvas$EdgeType +android.graphics.Canvas$NoImagePreloadHolder +android.graphics.CanvasProperty +android.graphics.Color +android.graphics.ColorFilter +android.graphics.ColorFilter$NoImagePreloadHolder +android.graphics.ColorMatrix +android.graphics.ColorMatrixColorFilter +android.graphics.ColorSpace +android.graphics.ColorSpace$Lab +android.graphics.ColorSpace$Model +android.graphics.ColorSpace$Named +android.graphics.ColorSpace$Rgb +android.graphics.ColorSpace$Rgb$TransferParameters +android.graphics.ColorSpace$Xyz +android.graphics.ComposePathEffect +android.graphics.ComposeShader +android.graphics.CornerPathEffect +android.graphics.DashPathEffect +android.graphics.DiscretePathEffect +android.graphics.DrawFilter +android.graphics.EmbossMaskFilter +android.graphics.FontFamily +android.graphics.FontListParser +android.graphics.GraphicBuffer +android.graphics.GraphicBuffer$1 +android.graphics.Insets +android.graphics.Interpolator +android.graphics.LightingColorFilter +android.graphics.LinearGradient +android.graphics.MaskFilter +android.graphics.Matrix +android.graphics.Matrix$1 +android.graphics.Matrix$NoImagePreloadHolder +android.graphics.Matrix$ScaleToFit +android.graphics.Movie +android.graphics.NinePatch +android.graphics.NinePatch$InsetStruct +android.graphics.Outline +android.graphics.Paint +android.graphics.Paint$Align +android.graphics.Paint$Cap +android.graphics.Paint$FontMetrics +android.graphics.Paint$FontMetricsInt +android.graphics.Paint$Join +android.graphics.Paint$NoImagePreloadHolder +android.graphics.Paint$Style +android.graphics.PaintFlagsDrawFilter +android.graphics.Path +android.graphics.Path$FillType +android.graphics.PathDashPathEffect +android.graphics.PathEffect +android.graphics.PathMeasure +android.graphics.Picture +android.graphics.PixelFormat +android.graphics.Point +android.graphics.Point$1 +android.graphics.PointF +android.graphics.PointF$1 +android.graphics.PorterDuff +android.graphics.PorterDuff$Mode +android.graphics.PorterDuffColorFilter +android.graphics.PorterDuffXfermode +android.graphics.RadialGradient +android.graphics.Rect +android.graphics.Rect$1 +android.graphics.RectF +android.graphics.RectF$1 +android.graphics.Region +android.graphics.Region$1 +android.graphics.Region$Op +android.graphics.RegionIterator +android.graphics.Shader +android.graphics.Shader$TileMode +android.graphics.SumPathEffect +android.graphics.SurfaceTexture +android.graphics.SurfaceTexture$1 +android.graphics.SurfaceTexture$OnFrameAvailableListener +android.graphics.SweepGradient +android.graphics.TableMaskFilter +android.graphics.TemporaryBuffer +android.graphics.Typeface +android.graphics.Xfermode +android.graphics.YuvImage +android.graphics.drawable.AdaptiveIconDrawable$ChildDrawable +android.graphics.drawable.AdaptiveIconDrawable$LayerState +android.graphics.drawable.Animatable +android.graphics.drawable.Animatable2 +android.graphics.drawable.AnimatedStateListDrawable +android.graphics.drawable.AnimatedStateListDrawable$AnimatedStateListState +android.graphics.drawable.AnimatedStateListDrawable$Transition +android.graphics.drawable.AnimatedVectorDrawable +android.graphics.drawable.AnimatedVectorDrawable$1 +android.graphics.drawable.AnimatedVectorDrawable$AnimatedVectorDrawableState +android.graphics.drawable.AnimatedVectorDrawable$AnimatedVectorDrawableState$PendingAnimator +android.graphics.drawable.AnimatedVectorDrawable$VectorDrawableAnimator +android.graphics.drawable.AnimatedVectorDrawable$VectorDrawableAnimatorRT +android.graphics.drawable.AnimationDrawable +android.graphics.drawable.AnimationDrawable$AnimationState +android.graphics.drawable.BitmapDrawable +android.graphics.drawable.BitmapDrawable$BitmapState +android.graphics.drawable.ClipDrawable +android.graphics.drawable.ClipDrawable$ClipState +android.graphics.drawable.ColorDrawable +android.graphics.drawable.ColorDrawable$ColorState +android.graphics.drawable.Drawable +android.graphics.drawable.Drawable$Callback +android.graphics.drawable.Drawable$ConstantState +android.graphics.drawable.DrawableContainer +android.graphics.drawable.DrawableContainer$BlockInvalidateCallback +android.graphics.drawable.DrawableContainer$DrawableContainerState +android.graphics.drawable.DrawableInflater +android.graphics.drawable.DrawableWrapper +android.graphics.drawable.DrawableWrapper$DrawableWrapperState +android.graphics.drawable.GradientDrawable +android.graphics.drawable.GradientDrawable$GradientState +android.graphics.drawable.GradientDrawable$Orientation +android.graphics.drawable.Icon +android.graphics.drawable.Icon$1 +android.graphics.drawable.InsetDrawable +android.graphics.drawable.InsetDrawable$InsetState +android.graphics.drawable.InsetDrawable$InsetValue +android.graphics.drawable.LayerDrawable +android.graphics.drawable.LayerDrawable$ChildDrawable +android.graphics.drawable.LayerDrawable$LayerState +android.graphics.drawable.NinePatchDrawable +android.graphics.drawable.NinePatchDrawable$NinePatchState +android.graphics.drawable.RippleBackground +android.graphics.drawable.RippleBackground$1 +android.graphics.drawable.RippleBackground$BackgroundProperty +android.graphics.drawable.RippleComponent +android.graphics.drawable.RippleComponent$RenderNodeAnimatorSet +android.graphics.drawable.RippleDrawable +android.graphics.drawable.RippleDrawable$RippleState +android.graphics.drawable.RippleForeground$1 +android.graphics.drawable.RippleForeground$2 +android.graphics.drawable.RippleForeground$3 +android.graphics.drawable.RippleForeground$4 +android.graphics.drawable.RippleForeground$LogDecelerateInterpolator +android.graphics.drawable.RotateDrawable +android.graphics.drawable.RotateDrawable$RotateState +android.graphics.drawable.ScaleDrawable +android.graphics.drawable.ScaleDrawable$ScaleState +android.graphics.drawable.ShapeDrawable +android.graphics.drawable.ShapeDrawable$ShapeState +android.graphics.drawable.StateListDrawable +android.graphics.drawable.StateListDrawable$StateListState +android.graphics.drawable.TransitionDrawable +android.graphics.drawable.TransitionDrawable$TransitionState +android.graphics.drawable.VectorDrawable +android.graphics.drawable.VectorDrawable$VClipPath +android.graphics.drawable.VectorDrawable$VFullPath +android.graphics.drawable.VectorDrawable$VFullPath$1 +android.graphics.drawable.VectorDrawable$VFullPath$10 +android.graphics.drawable.VectorDrawable$VFullPath$2 +android.graphics.drawable.VectorDrawable$VFullPath$3 +android.graphics.drawable.VectorDrawable$VFullPath$4 +android.graphics.drawable.VectorDrawable$VFullPath$5 +android.graphics.drawable.VectorDrawable$VFullPath$6 +android.graphics.drawable.VectorDrawable$VFullPath$7 +android.graphics.drawable.VectorDrawable$VFullPath$8 +android.graphics.drawable.VectorDrawable$VFullPath$9 +android.graphics.drawable.VectorDrawable$VGroup +android.graphics.drawable.VectorDrawable$VGroup$1 +android.graphics.drawable.VectorDrawable$VGroup$2 +android.graphics.drawable.VectorDrawable$VGroup$3 +android.graphics.drawable.VectorDrawable$VGroup$4 +android.graphics.drawable.VectorDrawable$VGroup$5 +android.graphics.drawable.VectorDrawable$VGroup$6 +android.graphics.drawable.VectorDrawable$VGroup$7 +android.graphics.drawable.VectorDrawable$VGroup$8 +android.graphics.drawable.VectorDrawable$VGroup$9 +android.graphics.drawable.VectorDrawable$VObject +android.graphics.drawable.VectorDrawable$VPath +android.graphics.drawable.VectorDrawable$VPath$1 +android.graphics.drawable.VectorDrawable$VectorDrawableState +android.graphics.drawable.VectorDrawable$VectorDrawableState$1 +android.graphics.drawable.shapes.OvalShape +android.graphics.drawable.shapes.RectShape +android.graphics.drawable.shapes.RoundRectShape +android.graphics.drawable.shapes.Shape +android.graphics.fonts.FontVariationAxis +android.graphics.pdf.PdfDocument +android.graphics.pdf.PdfEditor +android.graphics.pdf.PdfRenderer +android.hardware.Camera +android.hardware.Camera$CameraInfo +android.hardware.Camera$Face +android.hardware.CameraStatus$1 +android.hardware.ConsumerIrManager +android.hardware.HardwareBuffer +android.hardware.HardwareBuffer$1 +android.hardware.ICameraService +android.hardware.ICameraService$Stub +android.hardware.ICameraService$Stub$Proxy +android.hardware.ICameraServiceListener +android.hardware.ICameraServiceListener$Stub +android.hardware.SensorEvent +android.hardware.SensorEventListener +android.hardware.SensorManager +android.hardware.SerialManager +android.hardware.SerialPort +android.hardware.SystemSensorManager +android.hardware.SystemSensorManager$BaseEventQueue +android.hardware.SystemSensorManager$SensorEventQueue +android.hardware.TriggerEventListener +android.hardware.camera2.CameraAccessException +android.hardware.camera2.CameraCharacteristics +android.hardware.camera2.CameraCharacteristics$1 +android.hardware.camera2.CameraCharacteristics$2 +android.hardware.camera2.CameraCharacteristics$3 +android.hardware.camera2.CameraCharacteristics$4 +android.hardware.camera2.CameraCharacteristics$5 +android.hardware.camera2.CameraCharacteristics$Key +android.hardware.camera2.CameraManager +android.hardware.camera2.CameraMetadata +android.hardware.camera2.CaptureRequest +android.hardware.camera2.CaptureRequest$1 +android.hardware.camera2.CaptureRequest$2 +android.hardware.camera2.CaptureRequest$Key +android.hardware.camera2.CaptureResult +android.hardware.camera2.CaptureResult$1 +android.hardware.camera2.CaptureResult$2 +android.hardware.camera2.CaptureResult$3 +android.hardware.camera2.CaptureResult$Key +android.hardware.camera2.DngCreator +android.hardware.camera2.impl.CameraMetadataNative +android.hardware.camera2.impl.CameraMetadataNative$1 +android.hardware.camera2.impl.CameraMetadataNative$10 +android.hardware.camera2.impl.CameraMetadataNative$11 +android.hardware.camera2.impl.CameraMetadataNative$12 +android.hardware.camera2.impl.CameraMetadataNative$13 +android.hardware.camera2.impl.CameraMetadataNative$14 +android.hardware.camera2.impl.CameraMetadataNative$15 +android.hardware.camera2.impl.CameraMetadataNative$16 +android.hardware.camera2.impl.CameraMetadataNative$17 +android.hardware.camera2.impl.CameraMetadataNative$18 +android.hardware.camera2.impl.CameraMetadataNative$19 +android.hardware.camera2.impl.CameraMetadataNative$2 +android.hardware.camera2.impl.CameraMetadataNative$3 +android.hardware.camera2.impl.CameraMetadataNative$4 +android.hardware.camera2.impl.CameraMetadataNative$5 +android.hardware.camera2.impl.CameraMetadataNative$6 +android.hardware.camera2.impl.CameraMetadataNative$7 +android.hardware.camera2.impl.CameraMetadataNative$8 +android.hardware.camera2.impl.CameraMetadataNative$9 +android.hardware.camera2.impl.CameraMetadataNative$Key +android.hardware.camera2.impl.GetCommand +android.hardware.camera2.impl.SetCommand +android.hardware.camera2.legacy.LegacyCameraDevice +android.hardware.camera2.legacy.PerfMeasurement +android.hardware.camera2.marshal.MarshalQueryable +android.hardware.camera2.marshal.MarshalRegistry +android.hardware.camera2.marshal.impl.MarshalQueryableArray +android.hardware.camera2.marshal.impl.MarshalQueryableBlackLevelPattern +android.hardware.camera2.marshal.impl.MarshalQueryableBoolean +android.hardware.camera2.marshal.impl.MarshalQueryableColorSpaceTransform +android.hardware.camera2.marshal.impl.MarshalQueryableEnum +android.hardware.camera2.marshal.impl.MarshalQueryableHighSpeedVideoConfiguration +android.hardware.camera2.marshal.impl.MarshalQueryableMeteringRectangle +android.hardware.camera2.marshal.impl.MarshalQueryableNativeByteToInteger +android.hardware.camera2.marshal.impl.MarshalQueryablePair +android.hardware.camera2.marshal.impl.MarshalQueryableParcelable +android.hardware.camera2.marshal.impl.MarshalQueryablePrimitive +android.hardware.camera2.marshal.impl.MarshalQueryableRange +android.hardware.camera2.marshal.impl.MarshalQueryableRect +android.hardware.camera2.marshal.impl.MarshalQueryableReprocessFormatsMap +android.hardware.camera2.marshal.impl.MarshalQueryableRggbChannelVector +android.hardware.camera2.marshal.impl.MarshalQueryableSize +android.hardware.camera2.marshal.impl.MarshalQueryableSizeF +android.hardware.camera2.marshal.impl.MarshalQueryableStreamConfiguration +android.hardware.camera2.marshal.impl.MarshalQueryableStreamConfigurationDuration +android.hardware.camera2.marshal.impl.MarshalQueryableString +android.hardware.camera2.params.BlackLevelPattern +android.hardware.camera2.params.ColorSpaceTransform +android.hardware.camera2.params.Face +android.hardware.camera2.params.HighSpeedVideoConfiguration +android.hardware.camera2.params.LensShadingMap +android.hardware.camera2.params.MeteringRectangle +android.hardware.camera2.params.ReprocessFormatsMap +android.hardware.camera2.params.RggbChannelVector +android.hardware.camera2.params.StreamConfiguration +android.hardware.camera2.params.StreamConfigurationDuration +android.hardware.camera2.params.StreamConfigurationMap +android.hardware.camera2.params.TonemapCurve +android.hardware.camera2.utils.TypeReference +android.hardware.camera2.utils.TypeReference$SpecializedTypeReference +android.hardware.display.DisplayManager +android.hardware.display.DisplayManager$DisplayListener +android.hardware.display.DisplayManagerGlobal +android.hardware.display.DisplayManagerGlobal$DisplayListenerDelegate +android.hardware.display.DisplayManagerGlobal$DisplayManagerCallback +android.hardware.display.IDisplayManager +android.hardware.display.IDisplayManager$Stub +android.hardware.display.IDisplayManager$Stub$Proxy +android.hardware.display.IDisplayManagerCallback +android.hardware.display.IDisplayManagerCallback$Stub +android.hardware.display.WifiDisplay$1 +android.hardware.display.WifiDisplaySessionInfo$1 +android.hardware.display.WifiDisplayStatus$1 +android.hardware.fingerprint.FingerprintManager +android.hardware.fingerprint.FingerprintManager$1 +android.hardware.fingerprint.FingerprintManager$MyHandler +android.hardware.fingerprint.IFingerprintService +android.hardware.fingerprint.IFingerprintService$Stub +android.hardware.fingerprint.IFingerprintServiceReceiver +android.hardware.fingerprint.IFingerprintServiceReceiver$Stub +android.hardware.hdmi.HdmiControlManager +android.hardware.input.IInputDevicesChangedListener +android.hardware.input.IInputDevicesChangedListener$Stub +android.hardware.input.IInputManager +android.hardware.input.IInputManager$Stub +android.hardware.input.IInputManager$Stub$Proxy +android.hardware.input.InputDeviceIdentifier +android.hardware.input.InputDeviceIdentifier$1 +android.hardware.input.InputManager +android.hardware.input.InputManager$InputDeviceListener +android.hardware.input.InputManager$InputDeviceListenerDelegate +android.hardware.input.InputManager$InputDevicesChangedListener +android.hardware.location.ActivityRecognitionHardware +android.hardware.location.ContextHubManager +android.hardware.location.IActivityRecognitionHardware +android.hardware.location.IActivityRecognitionHardware$Stub +android.hardware.radio.RadioManager +android.hardware.soundtrigger.SoundTrigger +android.hardware.soundtrigger.SoundTrigger$ConfidenceLevel +android.hardware.soundtrigger.SoundTrigger$ConfidenceLevel$1 +android.hardware.soundtrigger.SoundTrigger$GenericRecognitionEvent +android.hardware.soundtrigger.SoundTrigger$GenericRecognitionEvent$1 +android.hardware.soundtrigger.SoundTrigger$GenericSoundModel +android.hardware.soundtrigger.SoundTrigger$Keyphrase +android.hardware.soundtrigger.SoundTrigger$Keyphrase$1 +android.hardware.soundtrigger.SoundTrigger$KeyphraseRecognitionEvent +android.hardware.soundtrigger.SoundTrigger$KeyphraseRecognitionEvent$1 +android.hardware.soundtrigger.SoundTrigger$KeyphraseRecognitionExtra +android.hardware.soundtrigger.SoundTrigger$KeyphraseRecognitionExtra$1 +android.hardware.soundtrigger.SoundTrigger$KeyphraseSoundModel +android.hardware.soundtrigger.SoundTrigger$KeyphraseSoundModel$1 +android.hardware.soundtrigger.SoundTrigger$ModuleProperties +android.hardware.soundtrigger.SoundTrigger$ModuleProperties$1 +android.hardware.soundtrigger.SoundTrigger$RecognitionConfig +android.hardware.soundtrigger.SoundTrigger$RecognitionConfig$1 +android.hardware.soundtrigger.SoundTrigger$RecognitionEvent +android.hardware.soundtrigger.SoundTrigger$RecognitionEvent$1 +android.hardware.soundtrigger.SoundTrigger$SoundModel +android.hardware.soundtrigger.SoundTrigger$SoundModelEvent +android.hardware.soundtrigger.SoundTrigger$SoundModelEvent$1 +android.hardware.soundtrigger.SoundTriggerModule +android.hardware.usb.UsbDevice +android.hardware.usb.UsbDeviceConnection +android.hardware.usb.UsbManager +android.hardware.usb.UsbRequest +android.hidl.base.V1_0.IBase +android.icu.impl.BMPSet +android.icu.impl.CacheBase +android.icu.impl.CacheValue +android.icu.impl.CacheValue$NullValue +android.icu.impl.CacheValue$SoftValue +android.icu.impl.CacheValue$Strength +android.icu.impl.CalendarUtil +android.icu.impl.CaseMapImpl +android.icu.impl.CaseMapImpl$StringContextIterator +android.icu.impl.CharTrie +android.icu.impl.ClassLoaderUtil +android.icu.impl.CurrencyData +android.icu.impl.CurrencyData$CurrencyDisplayInfo +android.icu.impl.CurrencyData$CurrencyDisplayInfoProvider +android.icu.impl.CurrencyData$CurrencySpacingInfo +android.icu.impl.CurrencyData$CurrencySpacingInfo$SpacingPattern +android.icu.impl.CurrencyData$CurrencySpacingInfo$SpacingType +android.icu.impl.ICUBinary +android.icu.impl.ICUBinary$Authenticate +android.icu.impl.ICUBinary$DatPackageReader +android.icu.impl.ICUBinary$DatPackageReader$IsAcceptable +android.icu.impl.ICUBinary$DataFile +android.icu.impl.ICUBinary$PackageDataFile +android.icu.impl.ICUCache +android.icu.impl.ICUConfig +android.icu.impl.ICUCurrencyDisplayInfoProvider +android.icu.impl.ICUCurrencyDisplayInfoProvider$ICUCurrencyDisplayInfo +android.icu.impl.ICUCurrencyDisplayInfoProvider$ICUCurrencyDisplayInfo$SpacingInfoSink +android.icu.impl.ICUCurrencyMetaInfo +android.icu.impl.ICUCurrencyMetaInfo$Collector +android.icu.impl.ICUCurrencyMetaInfo$CurrencyCollector +android.icu.impl.ICUCurrencyMetaInfo$UniqueList +android.icu.impl.ICUData +android.icu.impl.ICUDebug +android.icu.impl.ICULocaleService +android.icu.impl.ICULocaleService$ICUResourceBundleFactory +android.icu.impl.ICULocaleService$LocaleKey +android.icu.impl.ICULocaleService$LocaleKeyFactory +android.icu.impl.ICUNotifier +android.icu.impl.ICURWLock +android.icu.impl.ICUResourceBundle +android.icu.impl.ICUResourceBundle$1 +android.icu.impl.ICUResourceBundle$2 +android.icu.impl.ICUResourceBundle$3 +android.icu.impl.ICUResourceBundle$3$1 +android.icu.impl.ICUResourceBundle$4 +android.icu.impl.ICUResourceBundle$AvailEntry +android.icu.impl.ICUResourceBundle$Loader +android.icu.impl.ICUResourceBundle$OpenType +android.icu.impl.ICUResourceBundle$WholeBundle +android.icu.impl.ICUResourceBundleImpl +android.icu.impl.ICUResourceBundleImpl$ResourceArray +android.icu.impl.ICUResourceBundleImpl$ResourceBinary +android.icu.impl.ICUResourceBundleImpl$ResourceContainer +android.icu.impl.ICUResourceBundleImpl$ResourceInt +android.icu.impl.ICUResourceBundleImpl$ResourceIntVector +android.icu.impl.ICUResourceBundleImpl$ResourceString +android.icu.impl.ICUResourceBundleImpl$ResourceTable +android.icu.impl.ICUResourceBundleReader +android.icu.impl.ICUResourceBundleReader$Array +android.icu.impl.ICUResourceBundleReader$Array16 +android.icu.impl.ICUResourceBundleReader$Array32 +android.icu.impl.ICUResourceBundleReader$Container +android.icu.impl.ICUResourceBundleReader$IsAcceptable +android.icu.impl.ICUResourceBundleReader$ReaderCache +android.icu.impl.ICUResourceBundleReader$ReaderCacheKey +android.icu.impl.ICUResourceBundleReader$ReaderValue +android.icu.impl.ICUResourceBundleReader$ResourceCache +android.icu.impl.ICUResourceBundleReader$ResourceCache$Level +android.icu.impl.ICUResourceBundleReader$Table +android.icu.impl.ICUResourceBundleReader$Table16 +android.icu.impl.ICUResourceBundleReader$Table1632 +android.icu.impl.ICUService +android.icu.impl.ICUService$CacheEntry +android.icu.impl.ICUService$Factory +android.icu.impl.ICUService$Key +android.icu.impl.IDNA2003 +android.icu.impl.LocaleIDParser +android.icu.impl.LocaleIDs +android.icu.impl.Norm2AllModes +android.icu.impl.Norm2AllModes$1 +android.icu.impl.Norm2AllModes$ComposeNormalizer2 +android.icu.impl.Norm2AllModes$DecomposeNormalizer2 +android.icu.impl.Norm2AllModes$FCDNormalizer2 +android.icu.impl.Norm2AllModes$NFKCSingleton +android.icu.impl.Norm2AllModes$NoopNormalizer2 +android.icu.impl.Norm2AllModes$Norm2AllModesSingleton +android.icu.impl.Norm2AllModes$Normalizer2WithImpl +android.icu.impl.Normalizer2Impl +android.icu.impl.Normalizer2Impl$1 +android.icu.impl.Normalizer2Impl$IsAcceptable +android.icu.impl.Pair +android.icu.impl.PatternProps +android.icu.impl.ReplaceableUCharacterIterator +android.icu.impl.RuleCharacterIterator +android.icu.impl.SimpleCache +android.icu.impl.SoftCache +android.icu.impl.TextTrieMap +android.icu.impl.TextTrieMap$Node +android.icu.impl.TimeZoneNamesFactoryImpl +android.icu.impl.TimeZoneNamesImpl$MZ2TZsCache +android.icu.impl.TimeZoneNamesImpl$MZMapEntry +android.icu.impl.TimeZoneNamesImpl$TZ2MZsCache +android.icu.impl.Trie +android.icu.impl.Trie$DataManipulate +android.icu.impl.Trie$DefaultGetFoldingOffset +android.icu.impl.Trie2 +android.icu.impl.Trie2$1 +android.icu.impl.Trie2$Range +android.icu.impl.Trie2$Trie2Iterator +android.icu.impl.Trie2$UTrie2Header +android.icu.impl.Trie2$ValueMapper +android.icu.impl.Trie2$ValueWidth +android.icu.impl.Trie2_16 +android.icu.impl.Trie2_32 +android.icu.impl.UBiDiProps$IsAcceptable +android.icu.impl.UCaseProps +android.icu.impl.UCaseProps$ContextIterator +android.icu.impl.UCaseProps$IsAcceptable +android.icu.impl.UCharacterProperty +android.icu.impl.UCharacterProperty$1 +android.icu.impl.UCharacterProperty$10 +android.icu.impl.UCharacterProperty$11 +android.icu.impl.UCharacterProperty$12 +android.icu.impl.UCharacterProperty$13 +android.icu.impl.UCharacterProperty$14 +android.icu.impl.UCharacterProperty$15 +android.icu.impl.UCharacterProperty$16 +android.icu.impl.UCharacterProperty$17 +android.icu.impl.UCharacterProperty$18 +android.icu.impl.UCharacterProperty$19 +android.icu.impl.UCharacterProperty$2 +android.icu.impl.UCharacterProperty$20 +android.icu.impl.UCharacterProperty$21 +android.icu.impl.UCharacterProperty$22 +android.icu.impl.UCharacterProperty$23 +android.icu.impl.UCharacterProperty$3 +android.icu.impl.UCharacterProperty$4 +android.icu.impl.UCharacterProperty$5 +android.icu.impl.UCharacterProperty$6 +android.icu.impl.UCharacterProperty$7 +android.icu.impl.UCharacterProperty$8 +android.icu.impl.UCharacterProperty$9 +android.icu.impl.UCharacterProperty$BiDiIntProperty +android.icu.impl.UCharacterProperty$BinaryProperty +android.icu.impl.UCharacterProperty$CaseBinaryProperty +android.icu.impl.UCharacterProperty$CombiningClassIntProperty +android.icu.impl.UCharacterProperty$IntProperty +android.icu.impl.UCharacterProperty$IsAcceptable +android.icu.impl.UCharacterProperty$NormInertBinaryProperty +android.icu.impl.UCharacterProperty$NormQuickCheckIntProperty +android.icu.impl.UPropertyAliases$IsAcceptable +android.icu.impl.URLHandler$URLVisitor +android.icu.impl.UResource$Array +android.icu.impl.UResource$Key +android.icu.impl.UResource$Sink +android.icu.impl.UResource$Table +android.icu.impl.UResource$Value +android.icu.impl.USerializedSet +android.icu.impl.Utility +android.icu.impl.ZoneMeta$SystemTimeZoneCache +android.icu.impl.coll.CollationDataReader$IsAcceptable +android.icu.impl.coll.CollationRoot +android.icu.impl.coll.SharedObject +android.icu.impl.coll.SharedObject$Reference +android.icu.impl.locale.AsciiUtil +android.icu.impl.locale.BaseLocale +android.icu.impl.locale.BaseLocale$Cache +android.icu.impl.locale.BaseLocale$Key +android.icu.impl.locale.LocaleObjectCache +android.icu.impl.locale.LocaleObjectCache$CacheEntry +android.icu.impl.locale.LocaleSyntaxException +android.icu.impl.number.Parse +android.icu.lang.UCharacter +android.icu.lang.UCharacterEnums$ECharacterCategory +android.icu.lang.UCharacterEnums$ECharacterDirection +android.icu.math.MathContext +android.icu.text.BreakIterator$BreakIteratorCache +android.icu.text.BreakIterator$BreakIteratorServiceShim +android.icu.text.BreakIteratorFactory$BFService +android.icu.text.BreakIteratorFactory$BFService$1RBBreakIteratorFactory +android.icu.text.CaseMap +android.icu.text.CaseMap$Upper +android.icu.text.Collator$ServiceShim +android.icu.text.CollatorServiceShim$CService +android.icu.text.CollatorServiceShim$CService$1CollatorFactory +android.icu.text.CurrencyDisplayNames +android.icu.text.CurrencyMetaInfo +android.icu.text.CurrencyMetaInfo$CurrencyDigits +android.icu.text.CurrencyMetaInfo$CurrencyFilter +android.icu.text.DateFormatSymbols$1 +android.icu.text.DateTimePatternGenerator$AppendItemNamesSink +android.icu.text.DateTimePatternGenerator$AvailableFormatsSink +android.icu.text.DateTimePatternGenerator$DateTimeMatcher +android.icu.text.DateTimePatternGenerator$DayPeriodAllowedHoursSink +android.icu.text.DateTimePatternGenerator$DistanceInfo +android.icu.text.DateTimePatternGenerator$PatternInfo +android.icu.text.DateTimePatternGenerator$PatternWithMatcher +android.icu.text.DateTimePatternGenerator$PatternWithSkeletonFlag +android.icu.text.DateTimePatternGenerator$VariableField +android.icu.text.DecimalFormat +android.icu.text.DecimalFormat$Unit +android.icu.text.DecimalFormatSymbols +android.icu.text.DecimalFormatSymbols$1 +android.icu.text.DecimalFormatSymbols$CacheData +android.icu.text.DecimalFormatSymbols$DecFmtDataSink +android.icu.text.DigitList +android.icu.text.DisplayContext +android.icu.text.DisplayContext$Type +android.icu.text.Edits +android.icu.text.IDNA +android.icu.text.LanguageBreakEngine +android.icu.text.Normalizer +android.icu.text.Normalizer$FCDMode +android.icu.text.Normalizer$Mode +android.icu.text.Normalizer$ModeImpl +android.icu.text.Normalizer$NFCMode +android.icu.text.Normalizer$NFDMode +android.icu.text.Normalizer$NFKCMode +android.icu.text.Normalizer$NFKDMode +android.icu.text.Normalizer$NFKDModeImpl +android.icu.text.Normalizer$NONEMode +android.icu.text.Normalizer$QuickCheckResult +android.icu.text.Normalizer2 +android.icu.text.NumberFormat +android.icu.text.NumberFormat$Field +android.icu.text.NumberFormat$NumberFormatShim +android.icu.text.NumberFormatServiceShim$NFService +android.icu.text.NumberFormatServiceShim$NFService$1RBNumberFormatFactory +android.icu.text.NumberingSystem +android.icu.text.NumberingSystem$1 +android.icu.text.NumberingSystem$2 +android.icu.text.NumberingSystem$LocaleLookupData +android.icu.text.PluralRanges +android.icu.text.PluralRanges$Matrix +android.icu.text.PluralRules$1 +android.icu.text.PluralRules$AndConstraint +android.icu.text.PluralRules$BinaryConstraint +android.icu.text.PluralRules$Constraint +android.icu.text.PluralRules$Factory +android.icu.text.PluralRules$FixedDecimal +android.icu.text.PluralRules$FixedDecimalRange +android.icu.text.PluralRules$FixedDecimalSamples +android.icu.text.PluralRules$RangeConstraint +android.icu.text.PluralRules$Rule +android.icu.text.PluralRules$RuleList +android.icu.text.RBBIDataWrapper$IsAcceptable +android.icu.text.RBBIDataWrapper$RBBIDataHeader +android.icu.text.RBBIDataWrapper$TrieFoldingFunc +android.icu.text.Replaceable +android.icu.text.ReplaceableString +android.icu.text.SimpleDateFormat$PatternItem +android.icu.text.TimeZoneNames$Cache +android.icu.text.TimeZoneNames$Factory +android.icu.text.TimeZoneNames$NameType +android.icu.text.UCharacterIterator +android.icu.text.UFieldPosition +android.icu.text.UFormat +android.icu.text.UForwardCharacterIterator +android.icu.text.UTF16 +android.icu.text.UnhandledBreakEngine +android.icu.text.UnicodeFilter +android.icu.text.UnicodeMatcher +android.icu.text.UnicodeSet +android.icu.text.UnicodeSet$GeneralCategoryMaskFilter +android.icu.text.UnicodeSet$IntPropertyFilter +android.icu.util.BasicTimeZone +android.icu.util.Calendar$FormatConfiguration +android.icu.util.Calendar$PatternData +android.icu.util.Calendar$WeekData +android.icu.util.Calendar$WeekDataCache +android.icu.util.Currency +android.icu.util.Currency$1 +android.icu.util.Currency$CurrencyUsage +android.icu.util.Currency$EquivalenceRelation +android.icu.util.Freezable +android.icu.util.MeasureUnit +android.icu.util.MeasureUnit$1 +android.icu.util.MeasureUnit$2 +android.icu.util.MeasureUnit$3 +android.icu.util.MeasureUnit$Factory +android.icu.util.Output +android.icu.util.TimeUnit +android.icu.util.TimeZone +android.icu.util.TimeZone$ConstantZone +android.icu.util.ULocale +android.icu.util.ULocale$1 +android.icu.util.ULocale$2 +android.icu.util.ULocale$Category +android.icu.util.ULocale$JDKLocaleHelper +android.icu.util.ULocale$Type +android.icu.util.UResourceBundle +android.icu.util.UResourceBundle$RootType +android.icu.util.UResourceBundleIterator +android.icu.util.UResourceTypeMismatchException +android.icu.util.VersionInfo +android.location.BatchedLocationCallbackTransport +android.location.BatchedLocationCallbackTransport$CallbackTransport +android.location.Country$1 +android.location.CountryDetector +android.location.GeocoderParams$1 +android.location.GnssMeasurementCallbackTransport +android.location.GnssMeasurementCallbackTransport$ListenerTransport +android.location.GnssNavigationMessageCallbackTransport +android.location.GnssNavigationMessageCallbackTransport$ListenerTransport +android.location.IBatchedLocationCallback +android.location.IBatchedLocationCallback$Stub +android.location.ICountryDetector +android.location.ICountryDetector$Stub +android.location.IGnssMeasurementsListener +android.location.IGnssMeasurementsListener$Stub +android.location.IGnssNavigationMessageListener +android.location.IGnssNavigationMessageListener$Stub +android.location.IGnssStatusListener +android.location.IGnssStatusListener$Stub +android.location.ILocationListener +android.location.ILocationListener$Stub +android.location.ILocationManager +android.location.ILocationManager$Stub +android.location.ILocationManager$Stub$Proxy +android.location.LocalListenerHelper +android.location.Location +android.location.Location$1 +android.location.Location$2 +android.location.Location$BearingDistanceCache +android.location.LocationManager +android.location.LocationManager$ListenerTransport +android.location.LocationRequest$1 +android.media.AudioAttributes +android.media.AudioAttributes$1 +android.media.AudioAttributes$Builder +android.media.AudioDevicePort +android.media.AudioDevicePortConfig +android.media.AudioFocusRequest$Builder +android.media.AudioFormat +android.media.AudioFormat$1 +android.media.AudioFormat$Builder +android.media.AudioGain +android.media.AudioGainConfig +android.media.AudioHandle +android.media.AudioManager +android.media.AudioManager$1 +android.media.AudioManager$2 +android.media.AudioManager$3 +android.media.AudioManager$FocusRequestInfo +android.media.AudioManager$OnAudioFocusChangeListener +android.media.AudioManager$ServiceEventHandlerDelegate +android.media.AudioManager$ServiceEventHandlerDelegate$1 +android.media.AudioMixPort +android.media.AudioMixPortConfig +android.media.AudioPatch +android.media.AudioPort +android.media.AudioPortConfig +android.media.AudioPortEventHandler +android.media.AudioRecord +android.media.AudioRoutesInfo$1 +android.media.AudioRouting +android.media.AudioSystem +android.media.AudioTimestamp +android.media.AudioTrack +android.media.BufferingParams$1 +android.media.IAudioFocusDispatcher +android.media.IAudioFocusDispatcher$Stub +android.media.IAudioRoutesObserver +android.media.IAudioRoutesObserver$Stub +android.media.IAudioService +android.media.IAudioService$Stub +android.media.IAudioService$Stub$Proxy +android.media.IMediaHTTPConnection +android.media.IMediaHTTPConnection$Stub +android.media.IMediaRouterClient +android.media.IMediaRouterClient$Stub +android.media.IMediaRouterService +android.media.IMediaRouterService$Stub +android.media.IMediaRouterService$Stub$Proxy +android.media.IPlaybackConfigDispatcher +android.media.IPlaybackConfigDispatcher$Stub +android.media.IPlayer +android.media.IPlayer$Stub +android.media.IRecordingConfigDispatcher +android.media.IRecordingConfigDispatcher$Stub +android.media.IRemoteVolumeObserver +android.media.IRemoteVolumeObserver$Stub +android.media.IRingtonePlayer +android.media.IRingtonePlayer$Stub +android.media.IRingtonePlayer$Stub$Proxy +android.media.Image +android.media.ImageReader +android.media.JetPlayer +android.media.MediaCodec$BufferInfo +android.media.MediaCodec$BufferMap +android.media.MediaCodec$CryptoInfo +android.media.MediaCodec$CryptoInfo$Pattern +android.media.MediaCodec$EventHandler +android.media.MediaCodecInfo$AudioCapabilities +android.media.MediaCodecInfo$CodecProfileLevel +android.media.MediaCodecInfo$Feature +android.media.MediaCodecInfo$VideoCapabilities +android.media.MediaCodecList +android.media.MediaFormat +android.media.MediaMetadata$1 +android.media.MediaMetadata$Builder +android.media.MediaPlayer +android.media.MediaPlayer$1 +android.media.MediaPlayer$2 +android.media.MediaPlayer$EventHandler +android.media.MediaPlayer$OnCompletionListener +android.media.MediaPlayer$OnSeekCompleteListener +android.media.MediaPlayer$OnSubtitleDataListener +android.media.MediaPlayer$TimeProvider +android.media.MediaPlayer$TimeProvider$EventHandler +android.media.MediaRouter +android.media.MediaRouter$Callback +android.media.MediaRouter$CallbackInfo +android.media.MediaRouter$RouteCategory +android.media.MediaRouter$RouteInfo +android.media.MediaRouter$RouteInfo$1 +android.media.MediaRouter$Static +android.media.MediaRouter$Static$1 +android.media.MediaRouter$Static$1$1 +android.media.MediaRouter$Static$Client +android.media.MediaRouter$VolumeCallback +android.media.MediaRouter$VolumeChangeReceiver +android.media.MediaRouter$WifiDisplayStatusChangedReceiver +android.media.MediaTimeProvider +android.media.PlaybackParams +android.media.PlaybackParams$1 +android.media.PlayerBase +android.media.PlayerBase$IAppOpsCallbackWrapper +android.media.PlayerBase$IPlayerWrapper +android.media.PlayerBase$PlayerIdCard$1 +android.media.RemoteDisplay +android.media.Ringtone$MyOnCompletionListener +android.media.SoundPool +android.media.SubtitleController$Listener +android.media.ToneGenerator +android.media.Utils +android.media.Utils$1 +android.media.Utils$2 +android.media.VolumeAutomation +android.media.VolumeShaper$Configuration +android.media.VolumeShaper$Configuration$1 +android.media.VolumeShaper$Configuration$Builder +android.media.VolumeShaper$Operation +android.media.VolumeShaper$Operation$1 +android.media.VolumeShaper$Operation$Builder +android.media.VolumeShaper$State +android.media.VolumeShaper$State$1 +android.media.audiopolicy.AudioMix +android.media.audiopolicy.AudioMixingRule +android.media.audiopolicy.AudioMixingRule$AudioMixMatchCriterion +android.media.midi.MidiManager +android.media.projection.MediaProjectionManager +android.media.session.IActiveSessionsListener +android.media.session.IActiveSessionsListener$Stub +android.media.session.ISession +android.media.session.ISession$Stub +android.media.session.ISessionCallback +android.media.session.ISessionCallback$Stub +android.media.session.ISessionController +android.media.session.ISessionController$Stub +android.media.session.ISessionController$Stub$Proxy +android.media.session.ISessionControllerCallback +android.media.session.ISessionControllerCallback$Stub +android.media.session.ISessionManager +android.media.session.ISessionManager$Stub +android.media.session.ISessionManager$Stub$Proxy +android.media.session.MediaController +android.media.session.MediaController$CallbackStub +android.media.session.MediaController$TransportControls +android.media.session.MediaSession +android.media.session.MediaSession$Callback +android.media.session.MediaSession$CallbackMessageHandler +android.media.session.MediaSession$CallbackStub +android.media.session.MediaSession$Token$1 +android.media.session.MediaSessionManager +android.media.session.PlaybackState$1 +android.media.session.PlaybackState$Builder +android.media.session.PlaybackState$CustomAction$1 +android.media.soundtrigger.SoundTriggerManager +android.media.tv.TvInputManager +android.metrics.LogMaker +android.mtp.MtpDeviceInfo +android.mtp.MtpEvent +android.mtp.MtpObjectInfo +android.mtp.MtpPropertyList +android.mtp.MtpStorage +android.mtp.MtpStorageInfo +android.net.ConnectivityManager +android.net.ConnectivityManager$CallbackHandler +android.net.ConnectivityManager$NetworkCallback +android.net.ConnectivityThread +android.net.Credentials +android.net.EthernetManager +android.net.IConnectivityManager +android.net.IConnectivityManager$Stub +android.net.IConnectivityManager$Stub$Proxy +android.net.INetworkPolicyManager +android.net.INetworkPolicyManager$Stub +android.net.INetworkPolicyManager$Stub$Proxy +android.net.INetworkScoreService +android.net.INetworkScoreService$Stub +android.net.INetworkStatsService +android.net.INetworkStatsService$Stub +android.net.INetworkStatsService$Stub$Proxy +android.net.IpPrefix +android.net.IpPrefix$1 +android.net.IpSecManager +android.net.LinkAddress +android.net.LinkAddress$1 +android.net.LinkProperties +android.net.LinkProperties$1 +android.net.LocalServerSocket +android.net.LocalSocket +android.net.LocalSocketAddress +android.net.LocalSocketImpl +android.net.LocalSocketImpl$SocketInputStream +android.net.LocalSocketImpl$SocketOutputStream +android.net.Network +android.net.Network$1 +android.net.NetworkCapabilities +android.net.NetworkCapabilities$1 +android.net.NetworkFactory +android.net.NetworkInfo +android.net.NetworkInfo$1 +android.net.NetworkInfo$DetailedState +android.net.NetworkInfo$State +android.net.NetworkPolicyManager +android.net.NetworkRequest +android.net.NetworkRequest$1 +android.net.NetworkRequest$Builder +android.net.NetworkRequest$Type +android.net.NetworkScoreManager +android.net.NetworkSpecifier +android.net.NetworkStats +android.net.NetworkStats$1 +android.net.NetworkUtils +android.net.Proxy +android.net.ProxyInfo$1 +android.net.RouteInfo +android.net.RouteInfo$1 +android.net.SSLCertificateSocketFactory$1 +android.net.SSLSessionCache +android.net.TrafficStats +android.net.Uri +android.net.Uri$1 +android.net.Uri$AbstractHierarchicalUri +android.net.Uri$AbstractPart +android.net.Uri$Builder +android.net.Uri$HierarchicalUri +android.net.Uri$OpaqueUri +android.net.Uri$Part +android.net.Uri$Part$EmptyPart +android.net.Uri$PathPart +android.net.Uri$PathSegments +android.net.Uri$PathSegmentsBuilder +android.net.Uri$StringUri +android.net.http.AndroidHttpClient$1 +android.net.http.X509TrustManagerExtensions +android.net.lowpan.LowpanManager +android.net.nsd.NsdManager +android.net.wifi.IWifiManager +android.net.wifi.IWifiManager$Stub +android.net.wifi.IWifiManager$Stub$Proxy +android.net.wifi.RttManager +android.net.wifi.ScanResult$1 +android.net.wifi.ScanResult$InformationElement +android.net.wifi.SupplicantState +android.net.wifi.SupplicantState$1 +android.net.wifi.WifiInfo +android.net.wifi.WifiInfo$1 +android.net.wifi.WifiManager +android.net.wifi.WifiManager$WifiLock +android.net.wifi.WifiScanner +android.net.wifi.WifiSsid +android.net.wifi.WifiSsid$1 +android.net.wifi.aware.WifiAwareManager +android.net.wifi.p2p.WifiP2pManager +android.nfc.IAppCallback +android.nfc.IAppCallback$Stub +android.nfc.INfcAdapter +android.nfc.INfcAdapter$Stub +android.nfc.INfcAdapter$Stub$Proxy +android.nfc.INfcCardEmulation +android.nfc.INfcCardEmulation$Stub +android.nfc.INfcCardEmulation$Stub$Proxy +android.nfc.INfcFCardEmulation +android.nfc.INfcFCardEmulation$Stub +android.nfc.INfcFCardEmulation$Stub$Proxy +android.nfc.INfcTag +android.nfc.INfcTag$Stub +android.nfc.INfcTag$Stub$Proxy +android.nfc.NfcActivityManager$NfcActivityState +android.nfc.NfcActivityManager$NfcApplicationState +android.nfc.NfcAdapter$1 +android.nfc.NfcAdapter$CreateNdefMessageCallback +android.nfc.NfcManager +android.opengl.EGL14 +android.opengl.EGLConfig +android.opengl.EGLContext +android.opengl.EGLDisplay +android.opengl.EGLExt +android.opengl.EGLObjectHandle +android.opengl.EGLSurface +android.opengl.ETC1 +android.opengl.GLES10 +android.opengl.GLES10Ext +android.opengl.GLES11 +android.opengl.GLES11Ext +android.opengl.GLES20 +android.opengl.GLES30 +android.opengl.GLES31 +android.opengl.GLES31Ext +android.opengl.GLES32 +android.opengl.GLUtils +android.opengl.Matrix +android.opengl.Visibility +android.os.-$Lambda$BcGBlsGjMZMF6Ej78rWJ608MYSM +android.os.AsyncResult +android.os.AsyncTask +android.os.AsyncTask$1 +android.os.AsyncTask$2 +android.os.AsyncTask$3 +android.os.AsyncTask$AsyncTaskResult +android.os.AsyncTask$InternalHandler +android.os.AsyncTask$SerialExecutor +android.os.AsyncTask$SerialExecutor$1 +android.os.AsyncTask$Status +android.os.AsyncTask$WorkerRunnable +android.os.BadParcelableException +android.os.BaseBundle +android.os.BaseBundle$NoImagePreloadHolder +android.os.BatteryManager +android.os.BatteryStats$BitDescription +android.os.BatteryStats$ControllerActivityCounter +android.os.BatteryStats$Counter +android.os.BatteryStats$HistoryEventTracker +android.os.BatteryStats$HistoryItem +android.os.BatteryStats$HistoryStepDetails +android.os.BatteryStats$HistoryTag +android.os.BatteryStats$IntToString +android.os.BatteryStats$LevelStepTracker +android.os.BatteryStats$LongCounter +android.os.BatteryStats$LongCounterArray +android.os.BatteryStats$Timer +android.os.BatteryStats$Uid$Pkg +android.os.BatteryStats$Uid$Pkg$Serv +android.os.BatteryStats$Uid$Proc +android.os.BatteryStats$Uid$Sensor +android.os.BatteryStats$Uid$Wakelock +android.os.Binder +android.os.BinderProxy +android.os.Build +android.os.Build$VERSION +android.os.Bundle +android.os.Bundle$1 +android.os.CancellationSignal +android.os.CancellationSignal$OnCancelListener +android.os.CancellationSignal$Transport +android.os.ConditionVariable +android.os.DeadObjectException +android.os.DeadSystemException +android.os.Debug +android.os.Debug$MemoryInfo +android.os.Debug$MemoryInfo$1 +android.os.DropBoxManager +android.os.Environment +android.os.Environment$UserEnvironment +android.os.FactoryTest +android.os.FileObserver$ObserverThread +android.os.FileUtils +android.os.GraphicsEnvironment +android.os.Handler +android.os.Handler$Callback +android.os.Handler$MessengerImpl +android.os.HandlerThread +android.os.HardwarePropertiesManager +android.os.HwBinder +android.os.HwBlob +android.os.HwParcel +android.os.HwRemoteBinder +android.os.IBatteryPropertiesRegistrar +android.os.IBatteryPropertiesRegistrar$Stub +android.os.IBatteryPropertiesRegistrar$Stub$Proxy +android.os.IBinder +android.os.IBinder$DeathRecipient +android.os.ICancellationSignal +android.os.ICancellationSignal$Stub +android.os.ICancellationSignal$Stub$Proxy +android.os.IDeviceIdleController +android.os.IDeviceIdleController$Stub +android.os.IHardwarePropertiesManager +android.os.IHardwarePropertiesManager$Stub +android.os.IHwBinder +android.os.IHwBinder$DeathRecipient +android.os.IHwInterface +android.os.IInterface +android.os.IMessenger +android.os.IMessenger$Stub +android.os.IMessenger$Stub$Proxy +android.os.INetworkManagementService +android.os.INetworkManagementService$Stub +android.os.INetworkManagementService$Stub$Proxy +android.os.IPowerManager +android.os.IPowerManager$Stub +android.os.IPowerManager$Stub$Proxy +android.os.IServiceManager +android.os.IUserManager +android.os.IUserManager$Stub +android.os.IUserManager$Stub$Proxy +android.os.IVibratorService +android.os.IVibratorService$Stub +android.os.IVibratorService$Stub$Proxy +android.os.IncidentManager +android.os.LocaleList +android.os.LocaleList$1 +android.os.Looper +android.os.MemoryFile +android.os.Message +android.os.Message$1 +android.os.MessageQueue +android.os.MessageQueue$IdleHandler +android.os.Messenger +android.os.Messenger$1 +android.os.OperationCanceledException +android.os.Parcel +android.os.Parcel$1 +android.os.Parcel$2 +android.os.Parcel$ReadWriteHelper +android.os.ParcelFileDescriptor +android.os.ParcelFileDescriptor$1 +android.os.ParcelFileDescriptor$AutoCloseInputStream +android.os.ParcelUuid$1 +android.os.Parcelable +android.os.Parcelable$ClassLoaderCreator +android.os.Parcelable$Creator +android.os.ParcelableException +android.os.ParcelableParcel$1 +android.os.PatternMatcher +android.os.PatternMatcher$1 +android.os.PersistableBundle +android.os.PersistableBundle$1 +android.os.PooledStringWriter +android.os.PowerManager +android.os.PowerManager$WakeLock +android.os.PowerManager$WakeLock$1 +android.os.Process +android.os.RecoverySystem +android.os.Registrant +android.os.RemoteCallbackList +android.os.RemoteCallbackList$Callback +android.os.RemoteException +android.os.ResultReceiver +android.os.ResultReceiver$1 +android.os.SELinux +android.os.Seccomp +android.os.ServiceManager +android.os.ServiceManager$ServiceNotFoundException +android.os.ServiceManagerNative +android.os.ServiceManagerProxy +android.os.ServiceSpecificException +android.os.SharedMemory +android.os.ShellCallback +android.os.StatFs +android.os.StrictMode +android.os.StrictMode$1 +android.os.StrictMode$2 +android.os.StrictMode$3 +android.os.StrictMode$4 +android.os.StrictMode$5 +android.os.StrictMode$6 +android.os.StrictMode$7 +android.os.StrictMode$8 +android.os.StrictMode$9 +android.os.StrictMode$AndroidBlockGuardPolicy +android.os.StrictMode$AndroidBlockGuardPolicy$1 +android.os.StrictMode$AndroidCloseGuardReporter +android.os.StrictMode$InstanceCountViolation +android.os.StrictMode$InstanceTracker +android.os.StrictMode$LogStackTrace +android.os.StrictMode$Span +android.os.StrictMode$StrictModeDiskReadViolation +android.os.StrictMode$StrictModeDiskWriteViolation +android.os.StrictMode$StrictModeViolation +android.os.StrictMode$ThreadPolicy +android.os.StrictMode$ThreadPolicy$Builder +android.os.StrictMode$ThreadSpanState +android.os.StrictMode$ViolationInfo +android.os.StrictMode$ViolationInfo$1 +android.os.StrictMode$VmPolicy +android.os.StrictMode$VmPolicy$Builder +android.os.SystemClock +android.os.SystemProperties +android.os.SystemVibrator +android.os.Trace +android.os.UEventObserver +android.os.UserHandle +android.os.UserHandle$1 +android.os.UserManager +android.os.Vibrator +android.os.VintfObject +android.os.VintfRuntimeInfo +android.os.WorkSource$1 +android.os.ZygoteProcess +android.os.ZygoteStartFailedEx +android.os.health.SystemHealthManager +android.os.storage.IObbActionListener +android.os.storage.IObbActionListener$Stub +android.os.storage.IStorageManager +android.os.storage.IStorageManager$Stub +android.os.storage.IStorageManager$Stub$Proxy +android.os.storage.StorageManager +android.os.storage.StorageManager$ObbActionListener +android.os.storage.StorageVolume +android.os.storage.StorageVolume$1 +android.os.storage.VolumeInfo$1 +android.os.storage.VolumeInfo$2 +android.preference.PreferenceManager +android.preference.PreferenceManager$OnPreferenceTreeClickListener +android.print.PrintManager +android.provider.-$Lambda$a7Jyr6j_Mb70hHJ2ssL1AAhKh4c +android.provider.-$Lambda$asz6VwQ86PPY-v8JLMb7rx-pSqg +android.provider.BaseColumns +android.provider.ContactsContract$CommonDataKinds$BaseTypes +android.provider.ContactsContract$CommonDataKinds$CommonColumns +android.provider.ContactsContract$ContactCounts +android.provider.ContactsContract$ContactNameColumns +android.provider.ContactsContract$ContactOptionsColumns +android.provider.ContactsContract$ContactStatusColumns +android.provider.ContactsContract$ContactsColumns +android.provider.ContactsContract$DataColumns +android.provider.ContactsContract$DataColumnsWithJoins +android.provider.ContactsContract$DataUsageStatColumns +android.provider.ContactsContract$RawContactsColumns +android.provider.ContactsContract$StatusColumns +android.provider.FontsContract +android.provider.FontsContract$1 +android.provider.MediaStore$MediaColumns +android.provider.Settings +android.provider.Settings$ContentProviderHolder +android.provider.Settings$GenerationTracker +android.provider.Settings$Global +android.provider.Settings$NameValueCache +android.provider.Settings$NameValueTable +android.provider.Settings$Secure +android.provider.Settings$SettingNotFoundException +android.provider.Settings$System +android.provider.Settings$System$1 +android.provider.Settings$System$2 +android.provider.Settings$System$3 +android.provider.Settings$System$4 +android.provider.Settings$System$5 +android.provider.Settings$System$6 +android.provider.Settings$System$7 +android.provider.Settings$System$8 +android.provider.Settings$System$9 +android.provider.Settings$System$DiscreteValueValidator +android.provider.Settings$System$InclusiveFloatRangeValidator +android.provider.Settings$System$InclusiveIntegerRangeValidator +android.provider.Settings$System$Validator +android.renderscript.RenderScriptCacheDir +android.security.IKeystoreService +android.security.IKeystoreService$Stub +android.security.IKeystoreService$Stub$Proxy +android.security.KeyStore +android.security.keystore.AndroidKeyStoreBCWorkaroundProvider +android.security.keystore.AndroidKeyStoreProvider +android.security.net.config.ApplicationConfig +android.security.net.config.CertificateSource +android.security.net.config.CertificatesEntryRef +android.security.net.config.ConfigNetworkSecurityPolicy +android.security.net.config.ConfigSource +android.security.net.config.DirectoryCertificateSource +android.security.net.config.DirectoryCertificateSource$1 +android.security.net.config.DirectoryCertificateSource$3 +android.security.net.config.DirectoryCertificateSource$CertSelector +android.security.net.config.KeyStoreCertificateSource +android.security.net.config.KeyStoreConfigSource +android.security.net.config.ManifestConfigSource +android.security.net.config.ManifestConfigSource$DefaultConfigSource +android.security.net.config.NetworkSecurityConfig +android.security.net.config.NetworkSecurityConfig$1 +android.security.net.config.NetworkSecurityConfig$Builder +android.security.net.config.NetworkSecurityConfigProvider +android.security.net.config.NetworkSecurityTrustManager +android.security.net.config.PinSet +android.security.net.config.RootTrustManager +android.security.net.config.RootTrustManagerFactorySpi +android.security.net.config.SystemCertificateSource +android.security.net.config.SystemCertificateSource$NoPreloadHolder +android.security.net.config.TrustedCertificateStoreAdapter +android.security.net.config.UserCertificateSource +android.security.net.config.XmlConfigSource +android.security.net.config.XmlConfigSource$ParserException +android.service.notification.Condition$1 +android.service.notification.INotificationListener +android.service.notification.INotificationListener$Stub +android.service.notification.IStatusBarNotificationHolder +android.service.notification.IStatusBarNotificationHolder$Stub +android.service.notification.NotificationListenerService +android.service.notification.NotificationListenerService$MyHandler +android.service.notification.NotificationListenerService$NotificationListenerWrapper +android.service.notification.NotificationListenerService$RankingMap$1 +android.service.notification.NotificationRankingUpdate$1 +android.service.notification.StatusBarNotification$1 +android.service.notification.ZenModeConfig$ZenRule$1 +android.service.oemlock.OemLockManager +android.service.persistentdata.PersistentDataBlockManager +android.service.vr.IVrManager +android.service.vr.IVrManager$Stub +android.service.vr.IVrStateCallbacks +android.service.vr.IVrStateCallbacks$Stub +android.system.ErrnoException +android.system.GaiException +android.system.NetlinkSocketAddress +android.system.Os +android.system.OsConstants +android.system.PacketSocketAddress +android.system.StructAddrinfo +android.system.StructFlock +android.system.StructGroupReq +android.system.StructGroupSourceReq +android.system.StructIfaddrs +android.system.StructLinger +android.system.StructPasswd +android.system.StructPollfd +android.system.StructStat +android.system.StructStatVfs +android.system.StructTimespec +android.system.StructTimeval +android.system.StructUcred +android.system.StructUtsname +android.system.UnixSocketAddress +android.telecom.DisconnectCause$1 +android.telecom.Log$1 +android.telecom.PhoneAccount$1 +android.telecom.PhoneAccountHandle$1 +android.telecom.TelecomManager +android.telephony.CarrierConfigManager +android.telephony.CellIdentityLte$1 +android.telephony.CellInfo$1 +android.telephony.CellInfoLte$1 +android.telephony.CellSignalStrengthLte$1 +android.telephony.PhoneStateListener +android.telephony.PhoneStateListener$1 +android.telephony.PhoneStateListener$IPhoneStateListenerStub +android.telephony.Rlog +android.telephony.ServiceState$1 +android.telephony.SignalStrength$1 +android.telephony.SubscriptionInfo$1 +android.telephony.SubscriptionManager +android.telephony.SubscriptionManager$OnSubscriptionsChangedListener +android.telephony.SubscriptionManager$OnSubscriptionsChangedListener$1 +android.telephony.SubscriptionManager$OnSubscriptionsChangedListener$2 +android.telephony.TelephonyManager +android.telephony.euicc.EuiccManager +android.text.AndroidBidi +android.text.AndroidCharacter +android.text.Annotation +android.text.BoringLayout +android.text.BoringLayout$Metrics +android.text.ClipboardManager +android.text.DynamicLayout +android.text.DynamicLayout$ChangeWatcher +android.text.Editable +android.text.Editable$Factory +android.text.FontConfig +android.text.FontConfig$Alias +android.text.FontConfig$Family +android.text.FontConfig$Font +android.text.GetChars +android.text.GraphicsOperations +android.text.Html +android.text.Html$HtmlParser +android.text.HtmlToSpannedConverter$Href +android.text.Hyphenator +android.text.Hyphenator$HyphenationData +android.text.InputFilter +android.text.InputType +android.text.Layout +android.text.Layout$Alignment +android.text.Layout$Directions +android.text.Layout$Ellipsizer +android.text.Layout$SpannedEllipsizer +android.text.MeasuredText +android.text.NoCopySpan +android.text.NoCopySpan$Concrete +android.text.PackedIntVector +android.text.PackedObjectVector +android.text.ParcelableSpan +android.text.Selection +android.text.Selection$END +android.text.Selection$START +android.text.SpanSet +android.text.SpanWatcher +android.text.Spannable +android.text.Spannable$Factory +android.text.SpannableString +android.text.SpannableStringBuilder +android.text.SpannableStringInternal +android.text.Spanned +android.text.SpannedString +android.text.StaticLayout +android.text.StaticLayout$Builder +android.text.StaticLayout$LineBreaks +android.text.TextDirectionHeuristic +android.text.TextDirectionHeuristics +android.text.TextDirectionHeuristics$AnyStrong +android.text.TextDirectionHeuristics$FirstStrong +android.text.TextDirectionHeuristics$TextDirectionAlgorithm +android.text.TextDirectionHeuristics$TextDirectionHeuristicImpl +android.text.TextDirectionHeuristics$TextDirectionHeuristicInternal +android.text.TextDirectionHeuristics$TextDirectionHeuristicLocale +android.text.TextLine +android.text.TextLine$DecorationInfo +android.text.TextPaint +android.text.TextUtils +android.text.TextUtils$1 +android.text.TextUtils$EllipsizeCallback +android.text.TextUtils$SimpleStringSplitter +android.text.TextUtils$StringSplitter +android.text.TextUtils$TruncateAt +android.text.TextWatcher +android.text.format.Formatter +android.text.format.Time$TimeCalculator +android.text.method.AllCapsTransformationMethod +android.text.method.ArrowKeyMovementMethod +android.text.method.BaseKeyListener +android.text.method.BaseMovementMethod +android.text.method.KeyListener +android.text.method.MetaKeyKeyListener +android.text.method.MovementMethod +android.text.method.PasswordTransformationMethod +android.text.method.ReplacementTransformationMethod +android.text.method.ReplacementTransformationMethod$ReplacementCharSequence +android.text.method.ReplacementTransformationMethod$SpannedReplacementCharSequence +android.text.method.SingleLineTransformationMethod +android.text.method.TextKeyListener +android.text.method.TextKeyListener$Capitalize +android.text.method.TransformationMethod +android.text.method.TransformationMethod2 +android.text.style.AlignmentSpan +android.text.style.CharacterStyle +android.text.style.EasyEditSpan +android.text.style.ForegroundColorSpan +android.text.style.LeadingMarginSpan +android.text.style.LineBackgroundSpan +android.text.style.LineHeightSpan +android.text.style.MetricAffectingSpan +android.text.style.ParagraphStyle +android.text.style.ReplacementSpan +android.text.style.SpellCheckSpan +android.text.style.StyleSpan +android.text.style.SuggestionSpan +android.text.style.TabStopSpan +android.text.style.TextAppearanceSpan +android.text.style.URLSpan +android.text.style.UnderlineSpan +android.text.style.UpdateAppearance +android.text.style.UpdateLayout +android.text.style.WrapTogetherSpan +android.transition.AutoTransition +android.transition.ChangeBounds +android.transition.ChangeBounds$1 +android.transition.ChangeBounds$2 +android.transition.ChangeBounds$3 +android.transition.ChangeBounds$4 +android.transition.ChangeBounds$5 +android.transition.ChangeBounds$6 +android.transition.ChangeClipBounds +android.transition.ChangeImageTransform +android.transition.ChangeImageTransform$1 +android.transition.ChangeImageTransform$2 +android.transition.ChangeTransform +android.transition.ChangeTransform$1 +android.transition.ChangeTransform$2 +android.transition.Fade +android.transition.PathMotion +android.transition.Scene +android.transition.Transition +android.transition.Transition$1 +android.transition.TransitionInflater +android.transition.TransitionManager +android.transition.TransitionSet +android.transition.TransitionValuesMaps +android.transition.Visibility +android.util.AndroidException +android.util.AndroidRuntimeException +android.util.ArrayMap +android.util.ArrayMap$1 +android.util.ArraySet +android.util.ArraySet$1 +android.util.AtomicFile +android.util.AttributeSet +android.util.Base64 +android.util.Base64$Coder +android.util.Base64$Decoder +android.util.Base64$Encoder +android.util.ContainerHelpers +android.util.DebugUtils +android.util.DisplayMetrics +android.util.EventLog +android.util.EventLog$Event +android.util.FloatProperty +android.util.IntArray +android.util.IntProperty +android.util.Log +android.util.Log$1 +android.util.Log$ImmediateLogWriter +android.util.Log$PreloadHolder +android.util.Log$TerribleFailureHandler +android.util.LogPrinter +android.util.LongArray +android.util.LongSparseArray +android.util.LongSparseLongArray +android.util.LruCache +android.util.MapCollections +android.util.MapCollections$ArrayIterator +android.util.MapCollections$EntrySet +android.util.MapCollections$KeySet +android.util.MapCollections$MapIterator +android.util.MapCollections$ValuesCollection +android.util.MathUtils +android.util.MemoryIntArray +android.util.MemoryIntArray$1 +android.util.MergedConfiguration +android.util.MergedConfiguration$1 +android.util.MutableInt +android.util.MutableLong +android.util.Pair +android.util.PathParser +android.util.PathParser$PathData +android.util.Pools$Pool +android.util.Pools$SimplePool +android.util.Pools$SynchronizedPool +android.util.Printer +android.util.Property +android.util.Range +android.util.Rational +android.util.Singleton +android.util.Size +android.util.SizeF +android.util.Slog +android.util.SparseArray +android.util.SparseBooleanArray +android.util.SparseIntArray +android.util.SparseLongArray +android.util.StateSet +android.util.SuperNotCalledException +android.util.TimingLogger +android.util.TimingsTraceLog +android.util.TypedValue +android.util.Xml +android.util.jar.StrictJarFile +android.view.-$Lambda$6k_RnLLpNi5zg27ubDxN4lDdBbk +android.view.-$Lambda$6k_RnLLpNi5zg27ubDxN4lDdBbk$1 +android.view.-$Lambda$XmA8Y30pNAdQP9ujRlGx1qfDHH8 +android.view.AbsSavedState +android.view.AbsSavedState$1 +android.view.AbsSavedState$2 +android.view.AccessibilityInteractionController +android.view.AccessibilityInteractionController$AccessibilityNodePrefetcher +android.view.AccessibilityInteractionController$PrivateHandler +android.view.ActionMode +android.view.ActionMode$Callback +android.view.ActionProvider +android.view.ActionProvider$SubUiVisibilityListener +android.view.Choreographer +android.view.Choreographer$1 +android.view.Choreographer$2 +android.view.Choreographer$3 +android.view.Choreographer$CallbackQueue +android.view.Choreographer$CallbackRecord +android.view.Choreographer$FrameCallback +android.view.Choreographer$FrameDisplayEventReceiver +android.view.Choreographer$FrameHandler +android.view.ContextMenu +android.view.ContextMenu$ContextMenuInfo +android.view.ContextThemeWrapper +android.view.Display +android.view.Display$HdrCapabilities +android.view.Display$HdrCapabilities$1 +android.view.Display$Mode +android.view.Display$Mode$1 +android.view.DisplayAdjustments +android.view.DisplayEventReceiver +android.view.DisplayInfo +android.view.DisplayInfo$1 +android.view.DisplayListCanvas +android.view.FallbackEventHandler +android.view.FocusFinder +android.view.FocusFinder$1 +android.view.FocusFinder$FocusSorter +android.view.FocusFinder$UserSpecifiedFocusComparator +android.view.FocusFinder$UserSpecifiedFocusComparator$NextFocusGetter +android.view.FrameInfo +android.view.FrameMetrics +android.view.FrameMetricsObserver +android.view.FrameStats +android.view.GestureDetector +android.view.GestureDetector$GestureHandler +android.view.GestureDetector$OnContextClickListener +android.view.GestureDetector$OnDoubleTapListener +android.view.GestureDetector$OnGestureListener +android.view.GestureDetector$SimpleOnGestureListener +android.view.Gravity +android.view.HandlerActionQueue +android.view.HandlerActionQueue$HandlerAction +android.view.HardwareLayer +android.view.IGraphicsStats +android.view.IGraphicsStats$Stub +android.view.IGraphicsStats$Stub$Proxy +android.view.IGraphicsStatsCallback +android.view.IGraphicsStatsCallback$Stub +android.view.IRotationWatcher +android.view.IRotationWatcher$Stub +android.view.IWindow +android.view.IWindow$Stub +android.view.IWindowManager +android.view.IWindowManager$Stub +android.view.IWindowManager$Stub$Proxy +android.view.IWindowSession +android.view.IWindowSession$Stub +android.view.IWindowSession$Stub$Proxy +android.view.IWindowSessionCallback +android.view.IWindowSessionCallback$Stub +android.view.InflateException +android.view.InputChannel +android.view.InputChannel$1 +android.view.InputDevice +android.view.InputDevice$1 +android.view.InputDevice$MotionRange +android.view.InputEvent +android.view.InputEvent$1 +android.view.InputEventConsistencyVerifier +android.view.InputEventReceiver +android.view.InputEventSender +android.view.InputQueue +android.view.InputQueue$Callback +android.view.InputQueue$FinishedInputEventCallback +android.view.KeyCharacterMap +android.view.KeyCharacterMap$1 +android.view.KeyCharacterMap$FallbackAction +android.view.KeyEvent +android.view.KeyEvent$1 +android.view.KeyEvent$Callback +android.view.KeyEvent$DispatcherState +android.view.LayoutInflater +android.view.LayoutInflater$Factory +android.view.LayoutInflater$Factory2 +android.view.LayoutInflater$FactoryMerger +android.view.LayoutInflater$Filter +android.view.Menu +android.view.MenuInflater +android.view.MenuInflater$MenuState +android.view.MenuItem +android.view.MenuItem$OnActionExpandListener +android.view.MenuItem$OnMenuItemClickListener +android.view.MotionEvent +android.view.MotionEvent$1 +android.view.MotionEvent$PointerCoords +android.view.MotionEvent$PointerProperties +android.view.OrientationEventListener +android.view.OrientationEventListener$SensorEventListenerImpl +android.view.PointerIcon +android.view.PointerIcon$1 +android.view.RecordingCanvas +android.view.RenderNode +android.view.RenderNode$NoImagePreloadHolder +android.view.RenderNodeAnimator +android.view.RenderNodeAnimator$1 +android.view.RenderNodeAnimatorSetHelper +android.view.ScaleGestureDetector +android.view.ScaleGestureDetector$1 +android.view.ScaleGestureDetector$OnScaleGestureListener +android.view.ScaleGestureDetector$SimpleOnScaleGestureListener +android.view.SearchEvent +android.view.SubMenu +android.view.Surface +android.view.Surface$1 +android.view.Surface$CompatibleCanvas +android.view.Surface$OutOfResourcesException +android.view.SurfaceControl +android.view.SurfaceControl$PhysicalDisplayInfo +android.view.SurfaceHolder +android.view.SurfaceHolder$Callback +android.view.SurfaceHolder$Callback2 +android.view.SurfaceSession +android.view.SurfaceView +android.view.SurfaceView$1 +android.view.SurfaceView$2 +android.view.SurfaceView$3 +android.view.SurfaceView$SurfaceControlWithBackground +android.view.TextureView +android.view.TextureView$1 +android.view.TextureView$SurfaceTextureListener +android.view.ThreadedRenderer +android.view.ThreadedRenderer$DrawCallbacks +android.view.ThreadedRenderer$ProcessInitializer +android.view.ThreadedRenderer$ProcessInitializer$1 +android.view.TouchDelegate +android.view.VelocityTracker +android.view.VelocityTracker$Estimator +android.view.View +android.view.View$1 +android.view.View$10 +android.view.View$11 +android.view.View$12 +android.view.View$2 +android.view.View$3 +android.view.View$4 +android.view.View$5 +android.view.View$6 +android.view.View$7 +android.view.View$8 +android.view.View$9 +android.view.View$AccessibilityDelegate +android.view.View$AttachInfo +android.view.View$AttachInfo$Callbacks +android.view.View$BaseSavedState +android.view.View$BaseSavedState$1 +android.view.View$CheckForTap +android.view.View$ForegroundInfo +android.view.View$ListenerInfo +android.view.View$MatchLabelForPredicate +android.view.View$MeasureSpec +android.view.View$OnApplyWindowInsetsListener +android.view.View$OnAttachStateChangeListener +android.view.View$OnClickListener +android.view.View$OnCreateContextMenuListener +android.view.View$OnDragListener +android.view.View$OnFocusChangeListener +android.view.View$OnHoverListener +android.view.View$OnKeyListener +android.view.View$OnLayoutChangeListener +android.view.View$OnLongClickListener +android.view.View$OnSystemUiVisibilityChangeListener +android.view.View$OnTouchListener +android.view.View$PerformClick +android.view.View$ScrollabilityCache +android.view.View$SendViewScrolledAccessibilityEvent +android.view.View$TooltipInfo +android.view.View$TransformationInfo +android.view.View$UnsetPressedState +android.view.View$VisibilityChangeForAutofillHandler +android.view.ViewConfiguration +android.view.ViewDebug$HierarchyHandler +android.view.ViewGroup +android.view.ViewGroup$1 +android.view.ViewGroup$2 +android.view.ViewGroup$LayoutParams +android.view.ViewGroup$MarginLayoutParams +android.view.ViewGroup$OnHierarchyChangeListener +android.view.ViewGroup$TouchTarget +android.view.ViewGroupOverlay +android.view.ViewManager +android.view.ViewOutlineProvider +android.view.ViewOutlineProvider$1 +android.view.ViewOutlineProvider$2 +android.view.ViewOutlineProvider$3 +android.view.ViewOverlay +android.view.ViewOverlay$OverlayViewGroup +android.view.ViewParent +android.view.ViewPropertyAnimator +android.view.ViewPropertyAnimator$1 +android.view.ViewPropertyAnimator$AnimatorEventListener +android.view.ViewPropertyAnimator$NameValuesHolder +android.view.ViewPropertyAnimator$PropertyBundle +android.view.ViewRootImpl +android.view.ViewRootImpl$1 +android.view.ViewRootImpl$4 +android.view.ViewRootImpl$AccessibilityInteractionConnection +android.view.ViewRootImpl$AccessibilityInteractionConnectionManager +android.view.ViewRootImpl$ActivityConfigCallback +android.view.ViewRootImpl$AsyncInputStage +android.view.ViewRootImpl$ConfigChangedCallback +android.view.ViewRootImpl$ConsumeBatchedInputImmediatelyRunnable +android.view.ViewRootImpl$ConsumeBatchedInputRunnable +android.view.ViewRootImpl$EarlyPostImeInputStage +android.view.ViewRootImpl$HighContrastTextManager +android.view.ViewRootImpl$ImeInputStage +android.view.ViewRootImpl$InputStage +android.view.ViewRootImpl$InvalidateOnAnimationRunnable +android.view.ViewRootImpl$NativePostImeInputStage +android.view.ViewRootImpl$NativePreImeInputStage +android.view.ViewRootImpl$QueuedInputEvent +android.view.ViewRootImpl$SendWindowContentChangedAccessibilityEvent +android.view.ViewRootImpl$SyntheticInputStage +android.view.ViewRootImpl$SyntheticJoystickHandler +android.view.ViewRootImpl$SyntheticKeyboardHandler +android.view.ViewRootImpl$SyntheticTouchNavigationHandler +android.view.ViewRootImpl$SyntheticTouchNavigationHandler$1 +android.view.ViewRootImpl$SyntheticTrackballHandler +android.view.ViewRootImpl$SystemUiVisibilityInfo +android.view.ViewRootImpl$TrackballAxis +android.view.ViewRootImpl$TraversalRunnable +android.view.ViewRootImpl$ViewPostImeInputStage +android.view.ViewRootImpl$ViewPreImeInputStage +android.view.ViewRootImpl$ViewRootHandler +android.view.ViewRootImpl$W +android.view.ViewRootImpl$WindowInputEventReceiver +android.view.ViewRootImpl$WindowStoppedCallback +android.view.ViewStructure +android.view.ViewStub +android.view.ViewTreeObserver +android.view.ViewTreeObserver$CopyOnWriteArray +android.view.ViewTreeObserver$CopyOnWriteArray$Access +android.view.ViewTreeObserver$InternalInsetsInfo +android.view.ViewTreeObserver$OnGlobalFocusChangeListener +android.view.ViewTreeObserver$OnGlobalLayoutListener +android.view.ViewTreeObserver$OnPreDrawListener +android.view.ViewTreeObserver$OnScrollChangedListener +android.view.ViewTreeObserver$OnTouchModeChangeListener +android.view.Window +android.view.Window$Callback +android.view.Window$OnWindowDismissedCallback +android.view.Window$OnWindowSwipeDismissedCallback +android.view.Window$WindowControllerCallback +android.view.WindowAnimationFrameStats +android.view.WindowAnimationFrameStats$1 +android.view.WindowCallbacks +android.view.WindowContentFrameStats +android.view.WindowContentFrameStats$1 +android.view.WindowInsets +android.view.WindowLeaked +android.view.WindowManager +android.view.WindowManager$BadTokenException +android.view.WindowManager$LayoutParams +android.view.WindowManager$LayoutParams$1 +android.view.WindowManagerGlobal +android.view.WindowManagerGlobal$1 +android.view.WindowManagerGlobal$2 +android.view.WindowManagerImpl +android.view.accessibility.-$Lambda$T3m_l9_RA18vCOcakSWp1lZCy5g$1 +android.view.accessibility.AccessibilityEvent +android.view.accessibility.AccessibilityEvent$1 +android.view.accessibility.AccessibilityEventSource +android.view.accessibility.AccessibilityManager +android.view.accessibility.AccessibilityManager$1 +android.view.accessibility.AccessibilityManager$AccessibilityStateChangeListener +android.view.accessibility.AccessibilityManager$HighTextContrastChangeListener +android.view.accessibility.AccessibilityManager$MyCallback +android.view.accessibility.AccessibilityManager$TouchExplorationStateChangeListener +android.view.accessibility.AccessibilityNodeInfo +android.view.accessibility.AccessibilityNodeInfo$1 +android.view.accessibility.AccessibilityNodeProvider +android.view.accessibility.AccessibilityRecord +android.view.accessibility.CaptioningManager +android.view.accessibility.CaptioningManager$1 +android.view.accessibility.CaptioningManager$CaptioningChangeListener +android.view.accessibility.CaptioningManager$MyContentObserver +android.view.accessibility.IAccessibilityInteractionConnection +android.view.accessibility.IAccessibilityInteractionConnection$Stub +android.view.accessibility.IAccessibilityInteractionConnectionCallback +android.view.accessibility.IAccessibilityInteractionConnectionCallback$Stub +android.view.accessibility.IAccessibilityInteractionConnectionCallback$Stub$Proxy +android.view.accessibility.IAccessibilityManager +android.view.accessibility.IAccessibilityManager$Stub +android.view.accessibility.IAccessibilityManager$Stub$Proxy +android.view.accessibility.IAccessibilityManagerClient +android.view.accessibility.IAccessibilityManagerClient$Stub +android.view.animation.AccelerateDecelerateInterpolator +android.view.animation.AccelerateInterpolator +android.view.animation.AlphaAnimation +android.view.animation.Animation +android.view.animation.Animation$1 +android.view.animation.Animation$2 +android.view.animation.Animation$3 +android.view.animation.Animation$AnimationListener +android.view.animation.Animation$Description +android.view.animation.AnimationSet +android.view.animation.AnimationUtils +android.view.animation.AnimationUtils$1 +android.view.animation.AnimationUtils$AnimationState +android.view.animation.BaseInterpolator +android.view.animation.DecelerateInterpolator +android.view.animation.Interpolator +android.view.animation.LayoutAnimationController +android.view.animation.LinearInterpolator +android.view.animation.OvershootInterpolator +android.view.animation.PathInterpolator +android.view.animation.Transformation +android.view.animation.TranslateAnimation +android.view.autofill.AutofillId$1 +android.view.autofill.AutofillManager +android.view.autofill.AutofillManager$AutofillClient +android.view.autofill.AutofillManager$AutofillManagerClient +android.view.autofill.AutofillValue$1 +android.view.autofill.IAutoFillManager +android.view.autofill.IAutoFillManager$Stub +android.view.autofill.IAutoFillManager$Stub$Proxy +android.view.autofill.IAutoFillManagerClient +android.view.autofill.IAutoFillManagerClient$Stub +android.view.autofill.IAutofillWindowPresenter +android.view.inputmethod.BaseInputConnection +android.view.inputmethod.ComposingText +android.view.inputmethod.CursorAnchorInfo$Builder +android.view.inputmethod.EditorInfo +android.view.inputmethod.EditorInfo$1 +android.view.inputmethod.ExtractedText$1 +android.view.inputmethod.InputConnection +android.view.inputmethod.InputMethodInfo$1 +android.view.inputmethod.InputMethodManager +android.view.inputmethod.InputMethodManager$1 +android.view.inputmethod.InputMethodManager$ControlledInputConnectionWrapper +android.view.inputmethod.InputMethodManager$FinishedInputEventCallback +android.view.inputmethod.InputMethodManager$H +android.view.inputmethod.InputMethodManager$ImeInputEventSender +android.view.inputmethod.InputMethodManager$PendingEvent +android.view.inputmethod.InputMethodSubtype$1 +android.view.inputmethod.InputMethodSubtypeArray +android.view.textclassifier.TextClassificationManager +android.view.textservice.TextServicesManager +android.webkit.IWebViewUpdateService +android.webkit.IWebViewUpdateService$Stub +android.webkit.IWebViewUpdateService$Stub$Proxy +android.webkit.WebSyncManager +android.webkit.WebViewFactory +android.webkit.WebViewFactory$MissingWebViewPackageException +android.webkit.WebViewLibraryLoader +android.webkit.WebViewProviderResponse$1 +android.widget.-$Lambda$ISuHLqeK-K4pmesAfzlFglc3xF4 +android.widget.-$Lambda$ISuHLqeK-K4pmesAfzlFglc3xF4$1 +android.widget.AbsListView +android.widget.AbsListView$AdapterDataSetObserver +android.widget.AbsListView$LayoutParams +android.widget.AbsListView$OnScrollListener +android.widget.AbsListView$RecycleBin +android.widget.AbsListView$SavedState$1 +android.widget.AbsSeekBar +android.widget.AbsoluteLayout +android.widget.ActionMenuPresenter +android.widget.ActionMenuPresenter$1 +android.widget.ActionMenuPresenter$2 +android.widget.ActionMenuPresenter$OverflowMenuButton +android.widget.ActionMenuPresenter$OverflowMenuButton$1 +android.widget.ActionMenuPresenter$PopupPresenterCallback +android.widget.ActionMenuView +android.widget.ActionMenuView$ActionMenuChildView +android.widget.ActionMenuView$LayoutParams +android.widget.ActionMenuView$MenuBuilderCallback +android.widget.ActionMenuView$OnMenuItemClickListener +android.widget.Adapter +android.widget.AdapterView +android.widget.AdapterView$AdapterDataSetObserver +android.widget.AdapterView$OnItemClickListener +android.widget.AdapterView$OnItemSelectedListener +android.widget.ArrayAdapter +android.widget.AutoCompleteTextView +android.widget.AutoCompleteTextView$DropDownItemClickListener +android.widget.AutoCompleteTextView$MyWatcher +android.widget.AutoCompleteTextView$PassThroughClickListener +android.widget.BaseAdapter +android.widget.Button +android.widget.CheckBox +android.widget.Checkable +android.widget.CompoundButton$OnCheckedChangeListener +android.widget.EdgeEffect +android.widget.EditText +android.widget.Editor +android.widget.Editor$1 +android.widget.Editor$2 +android.widget.Editor$Blink +android.widget.Editor$CursorAnchorInfoNotifier +android.widget.Editor$CursorController +android.widget.Editor$InputContentType +android.widget.Editor$InputMethodState +android.widget.Editor$InsertionPointCursorController +android.widget.Editor$PositionListener +android.widget.Editor$ProcessTextIntentActionsHandler +android.widget.Editor$SelectionModifierCursorController +android.widget.Editor$SpanController +android.widget.Editor$SuggestionHelper +android.widget.Editor$SuggestionHelper$SuggestionSpanComparator +android.widget.Editor$TextRenderNode +android.widget.Editor$TextViewPositionListener +android.widget.Editor$UndoInputFilter +android.widget.FastScroller$1 +android.widget.FastScroller$2 +android.widget.FastScroller$3 +android.widget.FastScroller$4 +android.widget.FastScroller$5 +android.widget.FastScroller$6 +android.widget.Filter$FilterListener +android.widget.Filterable +android.widget.ForwardingListener +android.widget.FrameLayout +android.widget.FrameLayout$LayoutParams +android.widget.GridLayout$1 +android.widget.GridLayout$2 +android.widget.GridLayout$3 +android.widget.GridLayout$4 +android.widget.GridLayout$5 +android.widget.GridLayout$6 +android.widget.GridLayout$6$1 +android.widget.GridLayout$7 +android.widget.GridLayout$8 +android.widget.GridLayout$Alignment +android.widget.GridLayout$Arc +android.widget.GridLayout$Assoc +android.widget.GridLayout$Bounds +android.widget.GridLayout$Interval +android.widget.GridLayout$MutableInt +android.widget.GridLayout$PackedMap +android.widget.HorizontalScrollView +android.widget.HorizontalScrollView$SavedState$1 +android.widget.ImageButton +android.widget.ImageView +android.widget.ImageView$ScaleType +android.widget.LinearLayout +android.widget.LinearLayout$LayoutParams +android.widget.ListAdapter +android.widget.ListPopupWindow +android.widget.ListPopupWindow$ListSelectorHider +android.widget.ListPopupWindow$PopupScrollListener +android.widget.ListPopupWindow$PopupTouchInterceptor +android.widget.ListPopupWindow$ResizePopupRunnable +android.widget.ListView +android.widget.ListView$ArrowScrollFocusResult +android.widget.ListView$FixedViewInfo +android.widget.OverScroller +android.widget.OverScroller$SplineOverScroller +android.widget.PopupWindow$1 +android.widget.PopupWindow$2 +android.widget.PopupWindow$OnDismissListener +android.widget.ProgressBar +android.widget.ProgressBar$1 +android.widget.ProgressBar$AccessibilityEventSender +android.widget.ProgressBar$SavedState$1 +android.widget.RelativeLayout +android.widget.RelativeLayout$DependencyGraph +android.widget.RelativeLayout$DependencyGraph$Node +android.widget.RelativeLayout$LayoutParams +android.widget.RelativeLayout$TopToBottomLeftToRightComparator +android.widget.RemoteViews$1 +android.widget.RemoteViews$2 +android.widget.RemoteViews$3 +android.widget.RemoteViews$Action +android.widget.RemoteViews$BitmapCache +android.widget.RemoteViews$LayoutParamAction +android.widget.RemoteViews$MemoryUsageCounter +android.widget.RemoteViews$MutablePair +android.widget.RemoteViews$OnClickHandler +android.widget.RemoteViews$ReflectionAction +android.widget.RemoteViews$RemoteView +android.widget.RemoteViews$RuntimeAction +android.widget.RemoteViews$SetDrawableParameters +android.widget.RemoteViewsAdapter$RemoteAdapterConnectionCallback +android.widget.RtlSpacingHelper +android.widget.ScrollBarDrawable +android.widget.ScrollView +android.widget.Scroller +android.widget.Scroller$ViscousFluidInterpolator +android.widget.SectionIndexer +android.widget.SeekBar +android.widget.SeekBar$OnSeekBarChangeListener +android.widget.Space +android.widget.SpinnerAdapter +android.widget.Switch$1 +android.widget.TextView +android.widget.TextView$BufferType +android.widget.TextView$ChangeWatcher +android.widget.TextView$CharWrapper +android.widget.TextView$Drawables +android.widget.TextView$OnEditorActionListener +android.widget.TextView$SavedState$1 +android.widget.ThemedSpinnerAdapter +android.widget.Toolbar +android.widget.Toolbar$1 +android.widget.Toolbar$2 +android.widget.Toolbar$ExpandedActionViewMenuPresenter +android.widget.Toolbar$LayoutParams +android.widget.Toolbar$OnMenuItemClickListener +android.widget.Toolbar$SavedState$1 +android.widget.ViewAnimator +android.widget.WrapperListAdapter +com.android.i18n.phonenumbers.AlternateFormatsCountryCodeSet +com.android.i18n.phonenumbers.CountryCodeToRegionCodeMap +com.android.i18n.phonenumbers.MetadataLoader +com.android.i18n.phonenumbers.MetadataManager$1 +com.android.i18n.phonenumbers.MetadataSource +com.android.i18n.phonenumbers.MultiFileMetadataSourceImpl +com.android.i18n.phonenumbers.RegexCache +com.android.i18n.phonenumbers.RegexCache$LRUCache +com.android.i18n.phonenumbers.RegexCache$LRUCache$1 +com.android.i18n.phonenumbers.ShortNumbersRegionCodeSet +com.android.ims.ImsException +com.android.internal.R$styleable +com.android.internal.app.AlertController$AlertParams +com.android.internal.app.IAppOpsCallback +com.android.internal.app.IAppOpsCallback$Stub +com.android.internal.app.IAppOpsService +com.android.internal.app.IAppOpsService$Stub +com.android.internal.app.IAppOpsService$Stub$Proxy +com.android.internal.app.IBatteryStats +com.android.internal.app.IBatteryStats$Stub +com.android.internal.app.IBatteryStats$Stub$Proxy +com.android.internal.app.IVoiceInteractionManagerService +com.android.internal.app.IVoiceInteractionManagerService$Stub +com.android.internal.app.IVoiceInteractor +com.android.internal.app.IVoiceInteractor$Stub +com.android.internal.app.NightDisplayController +com.android.internal.appwidget.IAppWidgetService +com.android.internal.appwidget.IAppWidgetService$Stub +com.android.internal.appwidget.IAppWidgetService$Stub$Proxy +com.android.internal.content.NativeLibraryHelper +com.android.internal.content.ReferrerIntent +com.android.internal.content.ReferrerIntent$1 +com.android.internal.graphics.drawable.AnimationScaleListDrawable +com.android.internal.graphics.drawable.AnimationScaleListDrawable$AnimationScaleListState +com.android.internal.logging.AndroidConfig +com.android.internal.logging.AndroidHandler +com.android.internal.logging.AndroidHandler$1 +com.android.internal.logging.EventLogTags +com.android.internal.logging.MetricsLogger +com.android.internal.net.NetworkStatsFactory +com.android.internal.os.AndroidPrintStream +com.android.internal.os.BatteryStatsImpl$1 +com.android.internal.os.BatteryStatsImpl$Clocks +com.android.internal.os.BatteryStatsImpl$ControllerActivityCounterImpl +com.android.internal.os.BatteryStatsImpl$Counter +com.android.internal.os.BatteryStatsImpl$DualTimer +com.android.internal.os.BatteryStatsImpl$DurationTimer +com.android.internal.os.BatteryStatsImpl$LongSamplingCounter +com.android.internal.os.BatteryStatsImpl$LongSamplingCounterArray +com.android.internal.os.BatteryStatsImpl$OverflowArrayMap +com.android.internal.os.BatteryStatsImpl$SamplingTimer +com.android.internal.os.BatteryStatsImpl$StopwatchTimer +com.android.internal.os.BatteryStatsImpl$SystemClocks +com.android.internal.os.BatteryStatsImpl$TimeBase +com.android.internal.os.BatteryStatsImpl$TimeBaseObs +com.android.internal.os.BatteryStatsImpl$Timer +com.android.internal.os.BatteryStatsImpl$Uid +com.android.internal.os.BatteryStatsImpl$Uid$1 +com.android.internal.os.BatteryStatsImpl$Uid$2 +com.android.internal.os.BatteryStatsImpl$Uid$3 +com.android.internal.os.BatteryStatsImpl$Uid$Pkg +com.android.internal.os.BatteryStatsImpl$Uid$Pkg$Serv +com.android.internal.os.BatteryStatsImpl$Uid$Proc +com.android.internal.os.BatteryStatsImpl$Uid$Sensor +com.android.internal.os.BatteryStatsImpl$Uid$Wakelock +com.android.internal.os.BinderInternal +com.android.internal.os.BinderInternal$GcWatcher +com.android.internal.os.ClassLoaderFactory +com.android.internal.os.FuseAppLoop +com.android.internal.os.FuseAppLoop$1 +com.android.internal.os.FuseUnavailableMountException +com.android.internal.os.HandlerCaller +com.android.internal.os.HandlerCaller$Callback +com.android.internal.os.HandlerCaller$MyHandler +com.android.internal.os.IResultReceiver +com.android.internal.os.IResultReceiver$Stub +com.android.internal.os.IResultReceiver$Stub$Proxy +com.android.internal.os.KernelMemoryBandwidthStats +com.android.internal.os.KernelUidCpuFreqTimeReader +com.android.internal.os.KernelUidCpuTimeReader +com.android.internal.os.KernelWakelockStats +com.android.internal.os.LoggingPrintStream +com.android.internal.os.LoggingPrintStream$1 +com.android.internal.os.PowerProfile$CpuClusterKey +com.android.internal.os.RoSystemProperties +com.android.internal.os.RuntimeInit +com.android.internal.os.RuntimeInit$1 +com.android.internal.os.RuntimeInit$Arguments +com.android.internal.os.RuntimeInit$KillApplicationHandler +com.android.internal.os.RuntimeInit$LoggingHandler +com.android.internal.os.RuntimeInit$MethodAndArgsCaller +com.android.internal.os.SomeArgs +com.android.internal.os.Zygote +com.android.internal.os.ZygoteConnection +com.android.internal.os.ZygoteConnection$Arguments +com.android.internal.os.ZygoteInit +com.android.internal.os.ZygoteServer +com.android.internal.policy.DecorContext +com.android.internal.policy.DecorView +com.android.internal.policy.DecorView$1 +com.android.internal.policy.DecorView$ColorViewAttributes +com.android.internal.policy.DecorView$ColorViewState +com.android.internal.policy.PhoneFallbackEventHandler +com.android.internal.policy.PhoneLayoutInflater +com.android.internal.policy.PhoneWindow +com.android.internal.policy.PhoneWindow$1 +com.android.internal.policy.PhoneWindow$PanelFeatureState +com.android.internal.policy.PhoneWindow$PanelFeatureState$SavedState$1 +com.android.internal.policy.PhoneWindow$PhoneWindowMenuCallback +com.android.internal.policy.PhoneWindow$RotationWatcher +com.android.internal.policy.PhoneWindow$RotationWatcher$1 +com.android.internal.telecom.ITelecomService +com.android.internal.telecom.ITelecomService$Stub +com.android.internal.telecom.ITelecomService$Stub$Proxy +com.android.internal.telephony.ICarrierConfigLoader +com.android.internal.telephony.ICarrierConfigLoader$Stub +com.android.internal.telephony.ICarrierConfigLoader$Stub$Proxy +com.android.internal.telephony.IOnSubscriptionsChangedListener +com.android.internal.telephony.IOnSubscriptionsChangedListener$Stub +com.android.internal.telephony.IPhoneStateListener +com.android.internal.telephony.IPhoneStateListener$Stub +com.android.internal.telephony.IPhoneSubInfo +com.android.internal.telephony.IPhoneSubInfo$Stub +com.android.internal.telephony.IPhoneSubInfo$Stub$Proxy +com.android.internal.telephony.ISms +com.android.internal.telephony.ISms$Stub +com.android.internal.telephony.ISub +com.android.internal.telephony.ISub$Stub +com.android.internal.telephony.ISub$Stub$Proxy +com.android.internal.telephony.ITelephony +com.android.internal.telephony.ITelephony$Stub +com.android.internal.telephony.ITelephony$Stub$Proxy +com.android.internal.telephony.ITelephonyRegistry +com.android.internal.telephony.ITelephonyRegistry$Stub +com.android.internal.telephony.ITelephonyRegistry$Stub$Proxy +com.android.internal.telephony.PhoneConstants$State +com.android.internal.util.ArrayUtils +com.android.internal.util.BitUtils +com.android.internal.util.ExponentiallyBucketedHistogram +com.android.internal.util.FastMath +com.android.internal.util.FastPrintWriter +com.android.internal.util.FastPrintWriter$DummyWriter +com.android.internal.util.FastXmlSerializer +com.android.internal.util.GrowingArrayUtils +com.android.internal.util.IntPair +com.android.internal.util.LineBreakBufferedWriter +com.android.internal.util.Preconditions +com.android.internal.util.State +com.android.internal.util.StateMachine +com.android.internal.util.StateMachine$LogRec +com.android.internal.util.StateMachine$LogRecords +com.android.internal.util.StateMachine$SmHandler$HaltingState +com.android.internal.util.StateMachine$SmHandler$QuittingState +com.android.internal.util.StateMachine$SmHandler$StateInfo +com.android.internal.util.VirtualRefBasePtr +com.android.internal.util.XmlUtils +com.android.internal.util.XmlUtils$WriteMapCallback +com.android.internal.view.ActionBarPolicy +com.android.internal.view.IInputConnectionWrapper +com.android.internal.view.IInputConnectionWrapper$MyHandler +com.android.internal.view.IInputContext +com.android.internal.view.IInputContext$Stub +com.android.internal.view.IInputContextCallback +com.android.internal.view.IInputContextCallback$Stub +com.android.internal.view.IInputMethodClient +com.android.internal.view.IInputMethodClient$Stub +com.android.internal.view.IInputMethodManager +com.android.internal.view.IInputMethodManager$Stub +com.android.internal.view.IInputMethodManager$Stub$Proxy +com.android.internal.view.IInputMethodSession +com.android.internal.view.IInputMethodSession$Stub +com.android.internal.view.IInputMethodSession$Stub$Proxy +com.android.internal.view.InputBindResult +com.android.internal.view.InputBindResult$1 +com.android.internal.view.RootViewSurfaceTaker +com.android.internal.view.SurfaceCallbackHelper +com.android.internal.view.SurfaceCallbackHelper$1 +com.android.internal.view.animation.FallbackLUTInterpolator +com.android.internal.view.animation.HasNativeInterpolator +com.android.internal.view.animation.NativeInterpolatorFactory +com.android.internal.view.animation.NativeInterpolatorFactoryHelper +com.android.internal.view.menu.ActionMenuItem +com.android.internal.view.menu.BaseMenuPresenter +com.android.internal.view.menu.MenuBuilder$Callback +com.android.internal.view.menu.MenuBuilder$ItemInvoker +com.android.internal.view.menu.MenuPresenter +com.android.internal.view.menu.MenuPresenter$Callback +com.android.internal.view.menu.MenuView +com.android.internal.view.menu.ShowableListMenu +com.android.internal.widget.AbsActionBarView$VisibilityAnimListener +com.android.internal.widget.ActionBarContainer +com.android.internal.widget.ActionBarContainer$ActionBarBackgroundDrawable +com.android.internal.widget.ActionBarContextView +com.android.internal.widget.ActionBarOverlayLayout$1 +com.android.internal.widget.ActionBarOverlayLayout$2 +com.android.internal.widget.ActionBarOverlayLayout$3 +com.android.internal.widget.ActionBarOverlayLayout$4 +com.android.internal.widget.ActionBarOverlayLayout$5 +com.android.internal.widget.ActionBarOverlayLayout$ActionBarVisibilityCallback +com.android.internal.widget.ActionBarOverlayLayout$LayoutParams +com.android.internal.widget.BackgroundFallback +com.android.internal.widget.DecorContentParent +com.android.internal.widget.DecorToolbar +com.android.internal.widget.EditableInputConnection +com.android.internal.widget.LockPatternUtils +com.android.internal.widget.ScrollBarUtils +com.android.internal.widget.ToolbarWidgetWrapper +com.android.internal.widget.ToolbarWidgetWrapper$1 +com.android.okhttp.Address +com.android.okhttp.Authenticator +com.android.okhttp.CacheControl$Builder +com.android.okhttp.CertificatePinner$Builder +com.android.okhttp.CipherSuite +com.android.okhttp.ConfigAwareConnectionPool +com.android.okhttp.ConfigAwareConnectionPool$1 +com.android.okhttp.Connection +com.android.okhttp.ConnectionPool$1 +com.android.okhttp.ConnectionSpec +com.android.okhttp.ConnectionSpec$Builder +com.android.okhttp.Dispatcher +com.android.okhttp.Dns$1 +com.android.okhttp.Handshake +com.android.okhttp.Headers +com.android.okhttp.Headers$Builder +com.android.okhttp.HttpHandler +com.android.okhttp.HttpHandler$CleartextURLFilter +com.android.okhttp.HttpUrl$Builder +com.android.okhttp.HttpsHandler +com.android.okhttp.OkHttpClient$1 +com.android.okhttp.OkUrlFactory +com.android.okhttp.Protocol +com.android.okhttp.Request +com.android.okhttp.Request$Builder +com.android.okhttp.RequestBody +com.android.okhttp.RequestBody$2 +com.android.okhttp.Response +com.android.okhttp.Response$Builder +com.android.okhttp.ResponseBody +com.android.okhttp.Route +com.android.okhttp.TlsVersion +com.android.okhttp.internal.ConnectionSpecSelector +com.android.okhttp.internal.OptionalMethod +com.android.okhttp.internal.RouteDatabase +com.android.okhttp.internal.URLFilter +com.android.okhttp.internal.Util$1 +com.android.okhttp.internal.http.CacheStrategy +com.android.okhttp.internal.http.CacheStrategy$Factory +com.android.okhttp.internal.http.Http1xStream +com.android.okhttp.internal.http.Http1xStream$AbstractSource +com.android.okhttp.internal.http.Http1xStream$ChunkedSource +com.android.okhttp.internal.http.Http1xStream$FixedLengthSource +com.android.okhttp.internal.http.HttpEngine$1 +com.android.okhttp.internal.http.HttpMethod +com.android.okhttp.internal.http.HttpStream +com.android.okhttp.internal.http.OkHeaders$1 +com.android.okhttp.internal.http.RealResponseBody +com.android.okhttp.internal.http.RequestException +com.android.okhttp.internal.http.RequestLine +com.android.okhttp.internal.http.RetryableSink +com.android.okhttp.internal.http.RouteSelector +com.android.okhttp.internal.http.StatusLine +com.android.okhttp.internal.http.StreamAllocation +com.android.okhttp.internal.huc.DelegatingHttpsURLConnection +com.android.okhttp.internal.huc.HttpsURLConnectionImpl +com.android.okhttp.internal.tls.OkHostnameVerifier +com.android.okhttp.okio.AsyncTimeout$1 +com.android.okhttp.okio.AsyncTimeout$2 +com.android.okhttp.okio.AsyncTimeout$Watchdog +com.android.okhttp.okio.BufferedSink +com.android.okhttp.okio.BufferedSource +com.android.okhttp.okio.ForwardingTimeout +com.android.okhttp.okio.GzipSource +com.android.okhttp.okio.InflaterSource +com.android.okhttp.okio.Okio$1 +com.android.okhttp.okio.Okio$2 +com.android.okhttp.okio.Okio$3 +com.android.okhttp.okio.RealBufferedSink +com.android.okhttp.okio.RealBufferedSink$1 +com.android.okhttp.okio.RealBufferedSource +com.android.okhttp.okio.RealBufferedSource$1 +com.android.okhttp.okio.Segment +com.android.okhttp.okio.Sink +com.android.okhttp.okio.Source +com.android.okhttp.okio.Timeout$1 +com.android.org.bouncycastle.asn1.ASN1Encodable +com.android.org.bouncycastle.asn1.ASN1Object +com.android.org.bouncycastle.asn1.ASN1ObjectIdentifier +com.android.org.bouncycastle.asn1.ASN1ObjectIdentifier$OidHandle +com.android.org.bouncycastle.asn1.ASN1Primitive +com.android.org.bouncycastle.asn1.OIDTokenizer +com.android.org.bouncycastle.asn1.bc.BCObjectIdentifiers +com.android.org.bouncycastle.asn1.iana.IANAObjectIdentifiers +com.android.org.bouncycastle.asn1.misc.MiscObjectIdentifiers +com.android.org.bouncycastle.asn1.nist.NISTObjectIdentifiers +com.android.org.bouncycastle.asn1.oiw.OIWObjectIdentifiers +com.android.org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers +com.android.org.bouncycastle.asn1.x509.X509ObjectIdentifiers +com.android.org.bouncycastle.asn1.x9.X9ObjectIdentifiers +com.android.org.bouncycastle.crypto.CipherParameters +com.android.org.bouncycastle.jcajce.provider.asymmetric.DH +com.android.org.bouncycastle.jcajce.provider.asymmetric.DH$Mappings +com.android.org.bouncycastle.jcajce.provider.asymmetric.DSA$Mappings +com.android.org.bouncycastle.jcajce.provider.asymmetric.EC +com.android.org.bouncycastle.jcajce.provider.asymmetric.EC$Mappings +com.android.org.bouncycastle.jcajce.provider.asymmetric.RSA +com.android.org.bouncycastle.jcajce.provider.asymmetric.RSA$Mappings +com.android.org.bouncycastle.jcajce.provider.asymmetric.X509$Mappings +com.android.org.bouncycastle.jcajce.provider.asymmetric.dh.KeyFactorySpi +com.android.org.bouncycastle.jcajce.provider.asymmetric.dsa.DSAUtil +com.android.org.bouncycastle.jcajce.provider.asymmetric.dsa.KeyFactorySpi +com.android.org.bouncycastle.jcajce.provider.asymmetric.ec.KeyFactorySpi +com.android.org.bouncycastle.jcajce.provider.asymmetric.ec.KeyFactorySpi$EC +com.android.org.bouncycastle.jcajce.provider.asymmetric.rsa.KeyFactorySpi +com.android.org.bouncycastle.jcajce.provider.asymmetric.util.BaseKeyFactorySpi +com.android.org.bouncycastle.jcajce.provider.config.ConfigurableProvider +com.android.org.bouncycastle.jcajce.provider.config.ProviderConfiguration +com.android.org.bouncycastle.jcajce.provider.config.ProviderConfigurationPermission +com.android.org.bouncycastle.jcajce.provider.digest.DigestAlgorithmProvider +com.android.org.bouncycastle.jcajce.provider.digest.MD5 +com.android.org.bouncycastle.jcajce.provider.digest.MD5$Mappings +com.android.org.bouncycastle.jcajce.provider.digest.SHA1 +com.android.org.bouncycastle.jcajce.provider.digest.SHA1$Mappings +com.android.org.bouncycastle.jcajce.provider.digest.SHA224 +com.android.org.bouncycastle.jcajce.provider.digest.SHA224$Mappings +com.android.org.bouncycastle.jcajce.provider.digest.SHA256 +com.android.org.bouncycastle.jcajce.provider.digest.SHA256$Mappings +com.android.org.bouncycastle.jcajce.provider.digest.SHA384 +com.android.org.bouncycastle.jcajce.provider.digest.SHA384$Mappings +com.android.org.bouncycastle.jcajce.provider.digest.SHA512 +com.android.org.bouncycastle.jcajce.provider.digest.SHA512$Mappings +com.android.org.bouncycastle.jcajce.provider.keystore.BC$Mappings +com.android.org.bouncycastle.jcajce.provider.keystore.PKCS12$Mappings +com.android.org.bouncycastle.jcajce.provider.keystore.bc.BcKeyStoreSpi +com.android.org.bouncycastle.jcajce.provider.keystore.bc.BcKeyStoreSpi$Std +com.android.org.bouncycastle.jcajce.provider.symmetric.AES +com.android.org.bouncycastle.jcajce.provider.symmetric.AES$Mappings +com.android.org.bouncycastle.jcajce.provider.symmetric.ARC4 +com.android.org.bouncycastle.jcajce.provider.symmetric.ARC4$Mappings +com.android.org.bouncycastle.jcajce.provider.symmetric.Blowfish +com.android.org.bouncycastle.jcajce.provider.symmetric.Blowfish$Mappings +com.android.org.bouncycastle.jcajce.provider.symmetric.DES +com.android.org.bouncycastle.jcajce.provider.symmetric.DES$Mappings +com.android.org.bouncycastle.jcajce.provider.symmetric.DESede +com.android.org.bouncycastle.jcajce.provider.symmetric.DESede$Mappings +com.android.org.bouncycastle.jcajce.provider.symmetric.PBEPBKDF2 +com.android.org.bouncycastle.jcajce.provider.symmetric.PBEPBKDF2$Mappings +com.android.org.bouncycastle.jcajce.provider.symmetric.PBEPKCS12 +com.android.org.bouncycastle.jcajce.provider.symmetric.PBEPKCS12$Mappings +com.android.org.bouncycastle.jcajce.provider.symmetric.PBES2AlgorithmParameters +com.android.org.bouncycastle.jcajce.provider.symmetric.PBES2AlgorithmParameters$Mappings +com.android.org.bouncycastle.jcajce.provider.symmetric.RC2 +com.android.org.bouncycastle.jcajce.provider.symmetric.RC2$Mappings +com.android.org.bouncycastle.jcajce.provider.symmetric.SymmetricAlgorithmProvider +com.android.org.bouncycastle.jcajce.provider.symmetric.Twofish +com.android.org.bouncycastle.jcajce.provider.symmetric.Twofish$Mappings +com.android.org.bouncycastle.jcajce.provider.util.AlgorithmProvider +com.android.org.bouncycastle.jcajce.provider.util.AsymmetricAlgorithmProvider +com.android.org.bouncycastle.jcajce.provider.util.AsymmetricKeyInfoConverter +com.android.org.bouncycastle.jcajce.util.BCJcaJceHelper +com.android.org.bouncycastle.jcajce.util.JcaJceHelper +com.android.org.bouncycastle.jcajce.util.ProviderJcaJceHelper +com.android.org.bouncycastle.jce.interfaces.BCKeyStore +com.android.org.bouncycastle.jce.provider.BouncyCastleProvider +com.android.org.bouncycastle.jce.provider.BouncyCastleProvider$1 +com.android.org.bouncycastle.jce.provider.BouncyCastleProviderConfiguration +com.android.org.bouncycastle.util.Arrays +com.android.org.bouncycastle.util.Encodable +com.android.org.bouncycastle.util.Strings +com.android.org.bouncycastle.util.Strings$1 +com.android.org.conscrypt.AbstractConscryptSocket +com.android.org.conscrypt.AbstractConscryptSocket$1 +com.android.org.conscrypt.AbstractSessionContext +com.android.org.conscrypt.AbstractSessionContext$1 +com.android.org.conscrypt.ActiveSession +com.android.org.conscrypt.ArrayUtils +com.android.org.conscrypt.ByteArray +com.android.org.conscrypt.CertBlacklist +com.android.org.conscrypt.CertificatePriorityComparator +com.android.org.conscrypt.ChainStrengthAnalyzer +com.android.org.conscrypt.ClientSessionContext +com.android.org.conscrypt.ClientSessionContext$HostAndPort +com.android.org.conscrypt.Conscrypt +com.android.org.conscrypt.ConscryptFileDescriptorSocket +com.android.org.conscrypt.ConscryptFileDescriptorSocket$SSLInputStream +com.android.org.conscrypt.ConscryptFileDescriptorSocket$SSLOutputStream +com.android.org.conscrypt.CryptoUpcalls +com.android.org.conscrypt.EvpMdRef$SHA1 +com.android.org.conscrypt.FileClientSessionCache$Impl +com.android.org.conscrypt.Hex +com.android.org.conscrypt.InternalUtil +com.android.org.conscrypt.JSSEProvider +com.android.org.conscrypt.KeyManagerFactoryImpl +com.android.org.conscrypt.KeyManagerImpl +com.android.org.conscrypt.NativeCrypto +com.android.org.conscrypt.NativeCrypto$SSLHandshakeCallbacks +com.android.org.conscrypt.NativeCryptoJni +com.android.org.conscrypt.NativeRef +com.android.org.conscrypt.NativeRef$EC_GROUP +com.android.org.conscrypt.NativeRef$EC_POINT +com.android.org.conscrypt.NativeRef$EVP_CIPHER_CTX +com.android.org.conscrypt.NativeRef$EVP_MD_CTX +com.android.org.conscrypt.NativeRef$EVP_PKEY +com.android.org.conscrypt.NativeRef$SSL_SESSION +com.android.org.conscrypt.OpenSSLBIOInputStream +com.android.org.conscrypt.OpenSSLCipher +com.android.org.conscrypt.OpenSSLCipher$EVP_CIPHER +com.android.org.conscrypt.OpenSSLCipher$EVP_CIPHER$AES +com.android.org.conscrypt.OpenSSLCipher$EVP_CIPHER$AES$CBC +com.android.org.conscrypt.OpenSSLCipher$EVP_CIPHER$AES$CBC$PKCS5Padding +com.android.org.conscrypt.OpenSSLCipher$EVP_CIPHER$AES_BASE +com.android.org.conscrypt.OpenSSLContextImpl$TLSv12 +com.android.org.conscrypt.OpenSSLECGroupContext +com.android.org.conscrypt.OpenSSLECKeyFactory +com.android.org.conscrypt.OpenSSLECPointContext +com.android.org.conscrypt.OpenSSLECPublicKey +com.android.org.conscrypt.OpenSSLKey +com.android.org.conscrypt.OpenSSLKeyHolder +com.android.org.conscrypt.OpenSSLMessageDigestJDK +com.android.org.conscrypt.OpenSSLMessageDigestJDK$MD5 +com.android.org.conscrypt.OpenSSLMessageDigestJDK$SHA1 +com.android.org.conscrypt.OpenSSLMessageDigestJDK$SHA256 +com.android.org.conscrypt.OpenSSLProvider +com.android.org.conscrypt.OpenSSLRSAKeyFactory +com.android.org.conscrypt.OpenSSLRSAPublicKey +com.android.org.conscrypt.OpenSSLRandom +com.android.org.conscrypt.OpenSSLSignature +com.android.org.conscrypt.OpenSSLSignature$RSAPKCS1Padding +com.android.org.conscrypt.OpenSSLSocketImpl +com.android.org.conscrypt.OpenSSLX509CertPath +com.android.org.conscrypt.OpenSSLX509CertPath$Encoding +com.android.org.conscrypt.OpenSSLX509Certificate +com.android.org.conscrypt.OpenSSLX509CertificateFactory +com.android.org.conscrypt.OpenSSLX509CertificateFactory$1 +com.android.org.conscrypt.OpenSSLX509CertificateFactory$2 +com.android.org.conscrypt.OpenSSLX509CertificateFactory$Parser +com.android.org.conscrypt.OpenSSLX509CertificateFactory$ParsingException +com.android.org.conscrypt.PeerInfoProvider$1 +com.android.org.conscrypt.Platform +com.android.org.conscrypt.Platform$NoPreloadHolder +com.android.org.conscrypt.Preconditions +com.android.org.conscrypt.SSLClientSessionCache +com.android.org.conscrypt.SSLParametersImpl$AliasChooser +com.android.org.conscrypt.SSLParametersImpl$PSKCallbacks +com.android.org.conscrypt.ServerSessionContext +com.android.org.conscrypt.SslSessionWrapper +com.android.org.conscrypt.SslSessionWrapper$Impl +com.android.org.conscrypt.SslSessionWrapper$Impl$1 +com.android.org.conscrypt.SslWrapper +com.android.org.conscrypt.TrustManagerFactoryImpl +com.android.org.conscrypt.TrustManagerImpl +com.android.org.conscrypt.TrustManagerImpl$ExtendedKeyUsagePKIXCertPathChecker +com.android.org.conscrypt.TrustManagerImpl$TrustAnchorComparator +com.android.org.conscrypt.TrustedCertificateIndex +com.android.org.conscrypt.TrustedCertificateKeyStoreSpi +com.android.org.conscrypt.TrustedCertificateStore +com.android.org.conscrypt.TrustedCertificateStore$1 +com.android.org.conscrypt.TrustedCertificateStore$CertSelector +com.android.org.conscrypt.TrustedCertificateStore$PreloadHolder +com.android.org.conscrypt.ct.CTLogInfo +com.android.org.conscrypt.ct.CTLogStore +com.android.org.conscrypt.ct.CTLogStoreImpl +com.android.org.conscrypt.ct.CTLogStoreImpl$InvalidLogFileException +com.android.org.conscrypt.ct.CTPolicy +com.android.org.conscrypt.ct.CTPolicyImpl +com.android.org.conscrypt.ct.CTVerifier +com.android.org.conscrypt.ct.SerializationException +com.android.server.NetworkManagementSocketTagger +com.android.server.NetworkManagementSocketTagger$1 +com.android.server.NetworkManagementSocketTagger$SocketTags +com.google.android.collect.Lists +com.google.android.collect.Maps +com.google.android.collect.Sets +com.google.android.gles_jni.EGLConfigImpl +com.google.android.gles_jni.EGLContextImpl +com.google.android.gles_jni.EGLDisplayImpl +com.google.android.gles_jni.EGLImpl +com.google.android.gles_jni.EGLSurfaceImpl +com.google.android.gles_jni.GLImpl +dalvik.annotation.optimization.CriticalNative +dalvik.annotation.optimization.FastNative +dalvik.system.-$Lambda$xxvwQBVHC44UYbpcpA8j0sUqLOo +dalvik.system.BaseDexClassLoader +dalvik.system.BaseDexClassLoader$Reporter +dalvik.system.BlockGuard +dalvik.system.BlockGuard$1 +dalvik.system.BlockGuard$2 +dalvik.system.BlockGuard$BlockGuardPolicyException +dalvik.system.BlockGuard$Policy +dalvik.system.ClassExt +dalvik.system.CloseGuard +dalvik.system.CloseGuard$DefaultReporter +dalvik.system.CloseGuard$DefaultTracker +dalvik.system.CloseGuard$Reporter +dalvik.system.CloseGuard$Tracker +dalvik.system.DalvikLogHandler +dalvik.system.DalvikLogging +dalvik.system.DelegateLastClassLoader +dalvik.system.DexClassLoader +dalvik.system.DexFile +dalvik.system.DexFile$DFEnum +dalvik.system.DexPathList +dalvik.system.DexPathList$Element +dalvik.system.DexPathList$NativeLibraryElement +dalvik.system.EmulatedStackFrame +dalvik.system.EmulatedStackFrame$Range +dalvik.system.PathClassLoader +dalvik.system.SocketTagger +dalvik.system.SocketTagger$1 +dalvik.system.VMDebug +dalvik.system.VMRuntime +dalvik.system.VMStack +dalvik.system.ZygoteHooks +java.io.Bits +java.io.BufferedInputStream +java.io.BufferedOutputStream +java.io.BufferedReader +java.io.ByteArrayInputStream +java.io.ByteArrayOutputStream +java.io.CharArrayWriter +java.io.Closeable +java.io.Console +java.io.DataInput +java.io.DataInputStream +java.io.DataOutput +java.io.DataOutputStream +java.io.DefaultFileSystem +java.io.EOFException +java.io.ExpiringCache +java.io.ExpiringCache$1 +java.io.Externalizable +java.io.File +java.io.File$PathStatus +java.io.File$TempDirectory +java.io.FileDescriptor +java.io.FileDescriptor$1 +java.io.FileFilter +java.io.FileInputStream +java.io.FileInputStream$UseManualSkipException +java.io.FileNotFoundException +java.io.FileOutputStream +java.io.FileReader +java.io.FileSystem +java.io.FileWriter +java.io.FilenameFilter +java.io.FilterInputStream +java.io.FilterOutputStream +java.io.FilterReader +java.io.Flushable +java.io.IOException +java.io.InputStream +java.io.InputStreamReader +java.io.InterruptedIOException +java.io.InvalidClassException +java.io.InvalidObjectException +java.io.ObjectInput +java.io.ObjectInputStream +java.io.ObjectInputStream$BlockDataInputStream +java.io.ObjectInputStream$HandleTable +java.io.ObjectInputStream$HandleTable$HandleList +java.io.ObjectInputStream$PeekInputStream +java.io.ObjectInputStream$ValidationList +java.io.ObjectOutput +java.io.ObjectOutputStream +java.io.ObjectOutputStream$BlockDataOutputStream +java.io.ObjectOutputStream$HandleTable +java.io.ObjectOutputStream$PutField +java.io.ObjectOutputStream$ReplaceTable +java.io.ObjectStreamClass +java.io.ObjectStreamClass$1 +java.io.ObjectStreamClass$2 +java.io.ObjectStreamClass$3 +java.io.ObjectStreamClass$4 +java.io.ObjectStreamClass$5 +java.io.ObjectStreamClass$ClassDataSlot +java.io.ObjectStreamClass$ExceptionInfo +java.io.ObjectStreamClass$FieldReflectorKey +java.io.ObjectStreamClass$MemberSignature +java.io.ObjectStreamClass$WeakClassKey +java.io.ObjectStreamConstants +java.io.ObjectStreamException +java.io.ObjectStreamField +java.io.OutputStream +java.io.OutputStreamWriter +java.io.PrintStream +java.io.PrintWriter +java.io.PushbackInputStream +java.io.PushbackReader +java.io.RandomAccessFile +java.io.Reader +java.io.SequenceInputStream +java.io.SerialCallbackContext +java.io.Serializable +java.io.SerializablePermission +java.io.StreamCorruptedException +java.io.StringReader +java.io.StringWriter +java.io.UnixFileSystem +java.io.UnsupportedEncodingException +java.io.Writer +java.lang.-$Lambda$S9HjrJh0nDg7IyU6wZdPArnZWRQ +java.lang.AbstractMethodError +java.lang.AbstractStringBuilder +java.lang.AndroidHardcodedSystemProperties +java.lang.Appendable +java.lang.ArithmeticException +java.lang.ArrayIndexOutOfBoundsException +java.lang.ArrayStoreException +java.lang.AssertionError +java.lang.AutoCloseable +java.lang.Boolean +java.lang.BootClassLoader +java.lang.Byte +java.lang.Byte$ByteCache +java.lang.CaseMapper +java.lang.CaseMapper$1 +java.lang.CharSequence +java.lang.CharSequence$1CharIterator +java.lang.CharSequence$1CodePointIterator +java.lang.Character +java.lang.Character$CharacterCache +java.lang.Character$Subset +java.lang.Character$UnicodeBlock +java.lang.Class +java.lang.Class$Caches +java.lang.ClassCastException +java.lang.ClassLoader +java.lang.ClassLoader$SystemClassLoader +java.lang.ClassNotFoundException +java.lang.CloneNotSupportedException +java.lang.Cloneable +java.lang.Comparable +java.lang.Daemons +java.lang.Daemons$Daemon +java.lang.Daemons$FinalizerDaemon +java.lang.Daemons$FinalizerWatchdogDaemon +java.lang.Daemons$HeapTaskDaemon +java.lang.Daemons$ReferenceQueueDaemon +java.lang.DexCache +java.lang.Double +java.lang.Enum +java.lang.Enum$1 +java.lang.EnumConstantNotPresentException +java.lang.Error +java.lang.Exception +java.lang.Float +java.lang.IllegalAccessError +java.lang.IllegalAccessException +java.lang.IllegalArgumentException +java.lang.IllegalStateException +java.lang.IllegalThreadStateException +java.lang.IncompatibleClassChangeError +java.lang.IndexOutOfBoundsException +java.lang.InheritableThreadLocal +java.lang.InstantiationException +java.lang.Integer +java.lang.Integer$IntegerCache +java.lang.InternalError +java.lang.InterruptedException +java.lang.Iterable +java.lang.LinkageError +java.lang.Long +java.lang.Long$LongCache +java.lang.Math +java.lang.Math$RandomNumberGeneratorHolder +java.lang.NoClassDefFoundError +java.lang.NoSuchFieldError +java.lang.NoSuchFieldException +java.lang.NoSuchMethodError +java.lang.NoSuchMethodException +java.lang.NullPointerException +java.lang.Number +java.lang.NumberFormatException +java.lang.Object +java.lang.OutOfMemoryError +java.lang.Package +java.lang.Process +java.lang.ProcessBuilder +java.lang.ProcessEnvironment +java.lang.Readable +java.lang.ReflectiveOperationException +java.lang.Runnable +java.lang.Runtime +java.lang.RuntimeException +java.lang.RuntimePermission +java.lang.SecurityException +java.lang.Short +java.lang.Short$ShortCache +java.lang.StackOverflowError +java.lang.StackTraceElement +java.lang.StrictMath +java.lang.String +java.lang.String$CaseInsensitiveComparator +java.lang.StringBuffer +java.lang.StringBuilder +java.lang.StringFactory +java.lang.StringIndexOutOfBoundsException +java.lang.System +java.lang.System$PropertiesWithNonOverrideableDefaults +java.lang.Thread +java.lang.Thread$1 +java.lang.Thread$Caches +java.lang.Thread$State +java.lang.Thread$UncaughtExceptionHandler +java.lang.Thread$WeakClassKey +java.lang.ThreadDeath +java.lang.ThreadGroup +java.lang.ThreadLocal +java.lang.ThreadLocal$SuppliedThreadLocal +java.lang.ThreadLocal$ThreadLocalMap +java.lang.ThreadLocal$ThreadLocalMap$Entry +java.lang.Throwable +java.lang.Throwable$PrintStreamOrWriter +java.lang.Throwable$SentinelHolder +java.lang.Throwable$WrappedPrintStream +java.lang.Throwable$WrappedPrintWriter +java.lang.TypeNotPresentException +java.lang.UNIXProcess +java.lang.UnsatisfiedLinkError +java.lang.UnsupportedOperationException +java.lang.VMClassLoader +java.lang.VirtualMachineError +java.lang.Void +java.lang.annotation.Annotation +java.lang.annotation.AnnotationTypeMismatchException +java.lang.annotation.IncompleteAnnotationException +java.lang.annotation.Inherited +java.lang.annotation.Retention +java.lang.invoke.CallSite +java.lang.invoke.ConstantCallSite +java.lang.invoke.MethodHandle +java.lang.invoke.MethodHandleImpl +java.lang.invoke.MethodHandleImpl$HandleInfo +java.lang.invoke.MethodHandleInfo +java.lang.invoke.MethodHandleStatics +java.lang.invoke.MethodHandles +java.lang.invoke.MethodHandles$Lookup +java.lang.invoke.MethodType +java.lang.invoke.MethodType$ConcurrentWeakInternSet +java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry +java.lang.invoke.MethodTypeForm +java.lang.invoke.Transformers$AlwaysThrow +java.lang.invoke.Transformers$BindTo +java.lang.invoke.Transformers$CatchException +java.lang.invoke.Transformers$CollectArguments +java.lang.invoke.Transformers$Collector +java.lang.invoke.Transformers$Constant +java.lang.invoke.Transformers$Construct +java.lang.invoke.Transformers$DropArguments +java.lang.invoke.Transformers$ExplicitCastArguments +java.lang.invoke.Transformers$FilterArguments +java.lang.invoke.Transformers$FilterReturnValue +java.lang.invoke.Transformers$FoldArguments +java.lang.invoke.Transformers$GuardWithTest +java.lang.invoke.Transformers$InsertArguments +java.lang.invoke.Transformers$Invoker +java.lang.invoke.Transformers$PermuteArguments +java.lang.invoke.Transformers$ReferenceArrayElementGetter +java.lang.invoke.Transformers$ReferenceArrayElementSetter +java.lang.invoke.Transformers$ReferenceIdentity +java.lang.invoke.Transformers$Spreader +java.lang.invoke.Transformers$Transformer +java.lang.invoke.Transformers$VarargsCollector +java.lang.invoke.WrongMethodTypeException +java.lang.ref.FinalizerReference +java.lang.ref.FinalizerReference$Sentinel +java.lang.ref.PhantomReference +java.lang.ref.Reference +java.lang.ref.ReferenceQueue +java.lang.ref.SoftReference +java.lang.ref.WeakReference +java.lang.reflect.AccessibleObject +java.lang.reflect.AnnotatedElement +java.lang.reflect.Array +java.lang.reflect.Constructor +java.lang.reflect.Executable +java.lang.reflect.Executable$GenericInfo +java.lang.reflect.Field +java.lang.reflect.GenericArrayType +java.lang.reflect.GenericDeclaration +java.lang.reflect.InvocationHandler +java.lang.reflect.InvocationTargetException +java.lang.reflect.MalformedParametersException +java.lang.reflect.Member +java.lang.reflect.Method +java.lang.reflect.Method$1 +java.lang.reflect.Modifier +java.lang.reflect.Parameter +java.lang.reflect.ParameterizedType +java.lang.reflect.Proxy +java.lang.reflect.Proxy$1 +java.lang.reflect.Proxy$Key1 +java.lang.reflect.Proxy$Key2 +java.lang.reflect.Proxy$KeyFactory +java.lang.reflect.Proxy$KeyX +java.lang.reflect.Proxy$ProxyClassFactory +java.lang.reflect.Type +java.lang.reflect.TypeVariable +java.lang.reflect.UndeclaredThrowableException +java.lang.reflect.WeakCache +java.lang.reflect.WeakCache$CacheKey +java.lang.reflect.WeakCache$CacheValue +java.lang.reflect.WeakCache$Factory +java.lang.reflect.WeakCache$LookupValue +java.lang.reflect.WeakCache$Value +java.lang.reflect.WildcardType +java.math.BigInt +java.math.BigInteger +java.math.NativeBN +java.math.RoundingMode +java.net.AbstractPlainSocketImpl +java.net.AddressCache +java.net.AddressCache$AddressCacheEntry +java.net.AddressCache$AddressCacheKey +java.net.ConnectException +java.net.DatagramPacket +java.net.DatagramSocket$1 +java.net.DatagramSocketImpl +java.net.DefaultInterface +java.net.HttpURLConnection +java.net.IDN +java.net.Inet4Address +java.net.Inet6Address +java.net.Inet6Address$Inet6AddressHolder +java.net.Inet6AddressImpl +java.net.InetAddress +java.net.InetAddress$1 +java.net.InetAddress$InetAddressHolder +java.net.InetAddressImpl +java.net.InetSocketAddress +java.net.InetSocketAddress$InetSocketAddressHolder +java.net.InterfaceAddress +java.net.JarURLConnection +java.net.MalformedURLException +java.net.MulticastSocket +java.net.NetworkInterface +java.net.Parts +java.net.PlainDatagramSocketImpl +java.net.PlainSocketImpl +java.net.ProxySelector +java.net.Socket +java.net.Socket$2 +java.net.Socket$3 +java.net.SocketAddress +java.net.SocketException +java.net.SocketImpl +java.net.SocketInputStream +java.net.SocketOptions +java.net.SocketOutputStream +java.net.SocketTimeoutException +java.net.SocksConsts +java.net.URI +java.net.URI$Parser +java.net.URISyntaxException +java.net.URL +java.net.URLConnection +java.net.URLStreamHandler +java.net.URLStreamHandlerFactory +java.net.UnknownHostException +java.nio.Bits +java.nio.Buffer +java.nio.BufferOverflowException +java.nio.BufferUnderflowException +java.nio.ByteBuffer +java.nio.ByteBufferAsCharBuffer +java.nio.ByteBufferAsDoubleBuffer +java.nio.ByteBufferAsFloatBuffer +java.nio.ByteBufferAsIntBuffer +java.nio.ByteBufferAsLongBuffer +java.nio.ByteBufferAsShortBuffer +java.nio.ByteOrder +java.nio.CharBuffer +java.nio.DirectByteBuffer +java.nio.DirectByteBuffer$MemoryRef +java.nio.DoubleBuffer +java.nio.FloatBuffer +java.nio.HeapByteBuffer +java.nio.HeapCharBuffer +java.nio.IntBuffer +java.nio.InvalidMarkException +java.nio.LongBuffer +java.nio.MappedByteBuffer +java.nio.NIOAccess +java.nio.NioUtils +java.nio.ReadOnlyBufferException +java.nio.ShortBuffer +java.nio.StringCharBuffer +java.nio.channels.AsynchronousCloseException +java.nio.channels.ByteChannel +java.nio.channels.Channel +java.nio.channels.Channels +java.nio.channels.ClosedByInterruptException +java.nio.channels.ClosedChannelException +java.nio.channels.DatagramChannel +java.nio.channels.FileChannel +java.nio.channels.FileChannel$MapMode +java.nio.channels.FileLock +java.nio.channels.GatheringByteChannel +java.nio.channels.InterruptibleChannel +java.nio.channels.MulticastChannel +java.nio.channels.NetworkChannel +java.nio.channels.OverlappingFileLockException +java.nio.channels.ReadableByteChannel +java.nio.channels.ScatteringByteChannel +java.nio.channels.SeekableByteChannel +java.nio.channels.SelectableChannel +java.nio.channels.ServerSocketChannel +java.nio.channels.SocketChannel +java.nio.channels.WritableByteChannel +java.nio.channels.spi.AbstractInterruptibleChannel +java.nio.channels.spi.AbstractInterruptibleChannel$1 +java.nio.channels.spi.AbstractSelectableChannel +java.nio.charset.CharacterCodingException +java.nio.charset.Charset +java.nio.charset.CharsetDecoder +java.nio.charset.CharsetDecoderICU +java.nio.charset.CharsetEncoder +java.nio.charset.CharsetEncoderICU +java.nio.charset.CharsetICU +java.nio.charset.CoderResult +java.nio.charset.CoderResult$1 +java.nio.charset.CoderResult$2 +java.nio.charset.CoderResult$Cache +java.nio.charset.CodingErrorAction +java.nio.charset.IllegalCharsetNameException +java.nio.charset.StandardCharsets +java.nio.charset.UnsupportedCharsetException +java.nio.file.FileSystem +java.nio.file.FileSystems +java.nio.file.FileSystems$DefaultFileSystemHolder$1 +java.nio.file.Path +java.nio.file.Watchable +java.nio.file.attribute.BasicFileAttributes +java.nio.file.attribute.FileAttribute +java.nio.file.attribute.PosixFileAttributes +java.security.AccessControlContext +java.security.AccessControlException +java.security.AccessController +java.security.AlgorithmConstraints +java.security.AlgorithmParameters +java.security.AlgorithmParametersSpi +java.security.BasicPermission +java.security.CryptoPrimitive +java.security.GeneralSecurityException +java.security.Guard +java.security.InvalidAlgorithmParameterException +java.security.InvalidKeyException +java.security.Key +java.security.KeyException +java.security.KeyFactory +java.security.KeyFactorySpi +java.security.KeyManagementException +java.security.KeyPair +java.security.KeyStore +java.security.KeyStore$1 +java.security.KeyStoreException +java.security.KeyStoreSpi +java.security.MessageDigest +java.security.MessageDigest$Delegate +java.security.MessageDigestSpi +java.security.NoSuchAlgorithmException +java.security.NoSuchProviderException +java.security.Permission +java.security.PermissionCollection +java.security.Permissions +java.security.Principal +java.security.PrivateKey +java.security.PrivilegedAction +java.security.PrivilegedActionException +java.security.PrivilegedExceptionAction +java.security.ProtectionDomain +java.security.Provider +java.security.Provider$EngineDescription +java.security.Provider$Service +java.security.Provider$ServiceKey +java.security.Provider$UString +java.security.PublicKey +java.security.SecureRandom +java.security.SecureRandomSpi +java.security.Security +java.security.SignatureException +java.security.SignatureSpi +java.security.UnrecoverableEntryException +java.security.UnrecoverableKeyException +java.security.cert.CRL +java.security.cert.CRLException +java.security.cert.CertPath +java.security.cert.CertPathChecker +java.security.cert.CertPathHelperImpl +java.security.cert.CertPathParameters +java.security.cert.CertPathValidator +java.security.cert.CertPathValidatorException +java.security.cert.CertPathValidatorResult +java.security.cert.CertPathValidatorSpi +java.security.cert.CertSelector +java.security.cert.Certificate +java.security.cert.CertificateEncodingException +java.security.cert.CertificateException +java.security.cert.CertificateExpiredException +java.security.cert.CertificateFactory +java.security.cert.CertificateFactorySpi +java.security.cert.CertificateNotYetValidException +java.security.cert.CertificateParsingException +java.security.cert.Extension +java.security.cert.PKIXCertPathChecker +java.security.cert.PKIXCertPathValidatorResult +java.security.cert.PKIXParameters +java.security.cert.PKIXRevocationChecker +java.security.cert.PolicyNode +java.security.cert.PolicyQualifierInfo +java.security.cert.TrustAnchor +java.security.cert.X509CertSelector +java.security.cert.X509Certificate +java.security.cert.X509Extension +java.security.interfaces.DSAKey +java.security.interfaces.DSAPublicKey +java.security.interfaces.ECKey +java.security.interfaces.ECPublicKey +java.security.interfaces.RSAKey +java.security.interfaces.RSAPrivateKey +java.security.interfaces.RSAPublicKey +java.security.spec.AlgorithmParameterSpec +java.security.spec.ECField +java.security.spec.ECFieldFp +java.security.spec.ECParameterSpec +java.security.spec.ECPoint +java.security.spec.ECPublicKeySpec +java.security.spec.EllipticCurve +java.security.spec.EncodedKeySpec +java.security.spec.InvalidKeySpecException +java.security.spec.InvalidParameterSpecException +java.security.spec.KeySpec +java.security.spec.PKCS8EncodedKeySpec +java.security.spec.RSAPublicKeySpec +java.security.spec.X509EncodedKeySpec +java.text.AttributedCharacterIterator$Attribute +java.text.CalendarBuilder +java.text.CharacterIterator +java.text.Collator +java.text.DateFormat +java.text.DateFormat$Field +java.text.DateFormatSymbols +java.text.DecimalFormat +java.text.DecimalFormatSymbols +java.text.DontCareFieldPosition +java.text.DontCareFieldPosition$1 +java.text.FieldPosition +java.text.FieldPosition$Delegate +java.text.Format +java.text.Format$Field +java.text.Format$FieldDelegate +java.text.Normalizer +java.text.Normalizer$Form +java.text.NumberFormat +java.text.ParseException +java.text.ParsePosition +java.text.RuleBasedCollator +java.text.SimpleDateFormat +java.text.StringCharacterIterator +java.time.DateTimeException +java.util.-$Lambda$4EqhxufgNKat19m0CB0-toH_lzo +java.util.-$Lambda$Hazqao1eYCE_pmZR5Jlrc2GvLhk +java.util.-$Lambda$aUGKT4ItCOku5-JSG-x8Aqj2pJw +java.util.AbstractCollection +java.util.AbstractList +java.util.AbstractList$Itr +java.util.AbstractList$ListItr +java.util.AbstractMap +java.util.AbstractMap$1 +java.util.AbstractMap$2 +java.util.AbstractMap$SimpleImmutableEntry +java.util.AbstractQueue +java.util.AbstractSequentialList +java.util.AbstractSet +java.util.ArrayDeque +java.util.ArrayDeque$DeqIterator +java.util.ArrayList +java.util.ArrayList$ArrayListSpliterator +java.util.ArrayList$Itr +java.util.ArrayList$ListItr +java.util.ArrayList$SubList +java.util.ArrayList$SubList$1 +java.util.ArrayPrefixHelpers$CumulateTask +java.util.ArrayPrefixHelpers$DoubleCumulateTask +java.util.ArrayPrefixHelpers$IntCumulateTask +java.util.ArrayPrefixHelpers$LongCumulateTask +java.util.Arrays +java.util.Arrays$ArrayList +java.util.Arrays$NaturalOrder +java.util.ArraysParallelSortHelpers$FJByte$Sorter +java.util.ArraysParallelSortHelpers$FJChar$Sorter +java.util.ArraysParallelSortHelpers$FJDouble$Sorter +java.util.ArraysParallelSortHelpers$FJFloat$Sorter +java.util.ArraysParallelSortHelpers$FJInt$Sorter +java.util.ArraysParallelSortHelpers$FJLong$Sorter +java.util.ArraysParallelSortHelpers$FJObject$Sorter +java.util.ArraysParallelSortHelpers$FJShort$Sorter +java.util.BitSet +java.util.Calendar +java.util.Collection +java.util.Collections +java.util.Collections$1 +java.util.Collections$2 +java.util.Collections$3 +java.util.Collections$AsLIFOQueue +java.util.Collections$CheckedCollection +java.util.Collections$CheckedList +java.util.Collections$CheckedMap +java.util.Collections$CheckedNavigableMap +java.util.Collections$CheckedNavigableSet +java.util.Collections$CheckedQueue +java.util.Collections$CheckedRandomAccessList +java.util.Collections$CheckedSet +java.util.Collections$CheckedSortedMap +java.util.Collections$CheckedSortedSet +java.util.Collections$CopiesList +java.util.Collections$EmptyEnumeration +java.util.Collections$EmptyIterator +java.util.Collections$EmptyList +java.util.Collections$EmptyListIterator +java.util.Collections$EmptyMap +java.util.Collections$EmptySet +java.util.Collections$ReverseComparator +java.util.Collections$ReverseComparator2 +java.util.Collections$SetFromMap +java.util.Collections$SingletonList +java.util.Collections$SingletonMap +java.util.Collections$SingletonSet +java.util.Collections$SynchronizedCollection +java.util.Collections$SynchronizedList +java.util.Collections$SynchronizedMap +java.util.Collections$SynchronizedNavigableMap +java.util.Collections$SynchronizedNavigableSet +java.util.Collections$SynchronizedRandomAccessList +java.util.Collections$SynchronizedSet +java.util.Collections$SynchronizedSortedMap +java.util.Collections$SynchronizedSortedSet +java.util.Collections$UnmodifiableCollection +java.util.Collections$UnmodifiableCollection$1 +java.util.Collections$UnmodifiableList +java.util.Collections$UnmodifiableList$1 +java.util.Collections$UnmodifiableMap +java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet +java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$1 +java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$UnmodifiableEntry +java.util.Collections$UnmodifiableNavigableMap +java.util.Collections$UnmodifiableNavigableMap$EmptyNavigableMap +java.util.Collections$UnmodifiableNavigableSet +java.util.Collections$UnmodifiableNavigableSet$EmptyNavigableSet +java.util.Collections$UnmodifiableRandomAccessList +java.util.Collections$UnmodifiableSet +java.util.Collections$UnmodifiableSortedMap +java.util.Collections$UnmodifiableSortedSet +java.util.ComparableTimSort +java.util.Comparator +java.util.Comparators$NaturalOrderComparator +java.util.Comparators$NullComparator +java.util.ConcurrentModificationException +java.util.Currency +java.util.Date +java.util.Deque +java.util.Dictionary +java.util.DualPivotQuicksort +java.util.EnumMap +java.util.EnumMap$1 +java.util.EnumMap$EnumMapIterator +java.util.EnumMap$KeyIterator +java.util.EnumMap$KeySet +java.util.EnumSet +java.util.Enumeration +java.util.EventListener +java.util.Formattable +java.util.Formatter +java.util.Formatter$Conversion +java.util.Formatter$FixedString +java.util.Formatter$Flags +java.util.Formatter$FormatSpecifier +java.util.Formatter$FormatSpecifierParser +java.util.Formatter$FormatString +java.util.GregorianCalendar +java.util.HashMap +java.util.HashMap$EntryIterator +java.util.HashMap$EntrySet +java.util.HashMap$HashIterator +java.util.HashMap$KeyIterator +java.util.HashMap$KeySet +java.util.HashMap$Node +java.util.HashMap$TreeNode +java.util.HashMap$ValueIterator +java.util.HashMap$Values +java.util.HashSet +java.util.Hashtable +java.util.Hashtable$Enumerator +java.util.Hashtable$HashtableEntry +java.util.IdentityHashMap +java.util.IdentityHashMap$KeySet +java.util.IllegalFormatException +java.util.IllformedLocaleException +java.util.Iterator +java.util.LinkedHashMap +java.util.LinkedHashMap$LinkedEntryIterator +java.util.LinkedHashMap$LinkedEntrySet +java.util.LinkedHashMap$LinkedHashIterator +java.util.LinkedHashMap$LinkedHashMapEntry +java.util.LinkedHashMap$LinkedKeyIterator +java.util.LinkedHashMap$LinkedKeySet +java.util.LinkedHashMap$LinkedValueIterator +java.util.LinkedHashMap$LinkedValues +java.util.LinkedHashSet +java.util.LinkedList +java.util.LinkedList$ListItr +java.util.LinkedList$Node +java.util.List +java.util.ListIterator +java.util.Locale +java.util.Locale$Builder +java.util.Locale$Cache +java.util.Locale$Category +java.util.Locale$FilteringMode +java.util.Locale$LanguageRange +java.util.Locale$LocaleKey +java.util.Locale$NoImagePreloadHolder +java.util.Map +java.util.Map$Entry +java.util.MissingResourceException +java.util.NavigableMap +java.util.NavigableSet +java.util.NoSuchElementException +java.util.Objects +java.util.Observable +java.util.Observer +java.util.PrimitiveIterator +java.util.PrimitiveIterator$OfInt +java.util.PriorityQueue +java.util.PriorityQueue$Itr +java.util.Properties +java.util.Properties$LineReader +java.util.Queue +java.util.Random +java.util.RandomAccess +java.util.RandomAccessSubList +java.util.RegularEnumSet +java.util.RegularEnumSet$EnumSetIterator +java.util.ResourceBundle +java.util.ResourceBundle$1 +java.util.Set +java.util.SimpleTimeZone +java.util.SortedMap +java.util.SortedSet +java.util.Spliterator +java.util.Spliterator$OfDouble +java.util.Spliterator$OfInt +java.util.Spliterator$OfLong +java.util.Spliterator$OfPrimitive +java.util.Spliterators +java.util.Spliterators$EmptySpliterator +java.util.Spliterators$EmptySpliterator$OfDouble +java.util.Spliterators$EmptySpliterator$OfInt +java.util.Spliterators$EmptySpliterator$OfLong +java.util.Spliterators$EmptySpliterator$OfRef +java.util.Spliterators$IteratorSpliterator +java.util.Stack +java.util.StringJoiner +java.util.StringTokenizer +java.util.SubList +java.util.TimSort +java.util.TimeZone +java.util.Timer$1 +java.util.TimerTask +java.util.TimerThread +java.util.TreeMap +java.util.TreeMap$AscendingSubMap +java.util.TreeMap$AscendingSubMap$AscendingEntrySetView +java.util.TreeMap$EntryIterator +java.util.TreeMap$EntrySet +java.util.TreeMap$KeyIterator +java.util.TreeMap$KeySet +java.util.TreeMap$NavigableSubMap +java.util.TreeMap$NavigableSubMap$EntrySetView +java.util.TreeMap$NavigableSubMap$SubMapEntryIterator +java.util.TreeMap$NavigableSubMap$SubMapIterator +java.util.TreeMap$PrivateEntryIterator +java.util.TreeMap$TreeMapEntry +java.util.TreeMap$ValueIterator +java.util.TreeMap$Values +java.util.TreeSet +java.util.UUID +java.util.UUID$Holder +java.util.Vector +java.util.Vector$1 +java.util.Vector$Itr +java.util.WeakHashMap +java.util.WeakHashMap$Entry +java.util.WeakHashMap$EntrySet +java.util.WeakHashMap$HashIterator +java.util.WeakHashMap$KeyIterator +java.util.WeakHashMap$KeySet +java.util.WeakHashMap$ValueIterator +java.util.WeakHashMap$Values +java.util.concurrent.-$Lambda$xR9BLpu6SifNikvFgr4lEiECBsk +java.util.concurrent.AbstractExecutorService +java.util.concurrent.ArrayBlockingQueue +java.util.concurrent.BlockingDeque +java.util.concurrent.BlockingQueue +java.util.concurrent.Callable +java.util.concurrent.CancellationException +java.util.concurrent.ConcurrentHashMap +java.util.concurrent.ConcurrentHashMap$BaseIterator +java.util.concurrent.ConcurrentHashMap$BulkTask +java.util.concurrent.ConcurrentHashMap$CollectionView +java.util.concurrent.ConcurrentHashMap$CounterCell +java.util.concurrent.ConcurrentHashMap$EntryIterator +java.util.concurrent.ConcurrentHashMap$EntrySetView +java.util.concurrent.ConcurrentHashMap$ForEachEntryTask +java.util.concurrent.ConcurrentHashMap$ForEachKeyTask +java.util.concurrent.ConcurrentHashMap$ForEachMappingTask +java.util.concurrent.ConcurrentHashMap$ForEachTransformedEntryTask +java.util.concurrent.ConcurrentHashMap$ForEachTransformedKeyTask +java.util.concurrent.ConcurrentHashMap$ForEachTransformedMappingTask +java.util.concurrent.ConcurrentHashMap$ForEachTransformedValueTask +java.util.concurrent.ConcurrentHashMap$ForEachValueTask +java.util.concurrent.ConcurrentHashMap$ForwardingNode +java.util.concurrent.ConcurrentHashMap$KeyIterator +java.util.concurrent.ConcurrentHashMap$KeySetView +java.util.concurrent.ConcurrentHashMap$MapEntry +java.util.concurrent.ConcurrentHashMap$MapReduceEntriesTask +java.util.concurrent.ConcurrentHashMap$MapReduceEntriesToDoubleTask +java.util.concurrent.ConcurrentHashMap$MapReduceEntriesToIntTask +java.util.concurrent.ConcurrentHashMap$MapReduceEntriesToLongTask +java.util.concurrent.ConcurrentHashMap$MapReduceKeysTask +java.util.concurrent.ConcurrentHashMap$MapReduceKeysToDoubleTask +java.util.concurrent.ConcurrentHashMap$MapReduceKeysToIntTask +java.util.concurrent.ConcurrentHashMap$MapReduceKeysToLongTask +java.util.concurrent.ConcurrentHashMap$MapReduceMappingsTask +java.util.concurrent.ConcurrentHashMap$MapReduceMappingsToDoubleTask +java.util.concurrent.ConcurrentHashMap$MapReduceMappingsToIntTask +java.util.concurrent.ConcurrentHashMap$MapReduceMappingsToLongTask +java.util.concurrent.ConcurrentHashMap$MapReduceValuesTask +java.util.concurrent.ConcurrentHashMap$MapReduceValuesToDoubleTask +java.util.concurrent.ConcurrentHashMap$MapReduceValuesToIntTask +java.util.concurrent.ConcurrentHashMap$MapReduceValuesToLongTask +java.util.concurrent.ConcurrentHashMap$Node +java.util.concurrent.ConcurrentHashMap$ReduceEntriesTask +java.util.concurrent.ConcurrentHashMap$ReduceKeysTask +java.util.concurrent.ConcurrentHashMap$ReduceValuesTask +java.util.concurrent.ConcurrentHashMap$ReservationNode +java.util.concurrent.ConcurrentHashMap$SearchEntriesTask +java.util.concurrent.ConcurrentHashMap$SearchKeysTask +java.util.concurrent.ConcurrentHashMap$SearchMappingsTask +java.util.concurrent.ConcurrentHashMap$SearchValuesTask +java.util.concurrent.ConcurrentHashMap$Segment +java.util.concurrent.ConcurrentHashMap$Traverser +java.util.concurrent.ConcurrentHashMap$TreeBin +java.util.concurrent.ConcurrentHashMap$TreeNode +java.util.concurrent.ConcurrentHashMap$ValueIterator +java.util.concurrent.ConcurrentHashMap$ValuesView +java.util.concurrent.ConcurrentLinkedQueue +java.util.concurrent.ConcurrentLinkedQueue$Node +java.util.concurrent.ConcurrentMap +java.util.concurrent.CopyOnWriteArrayList +java.util.concurrent.CopyOnWriteArrayList$COWIterator +java.util.concurrent.CopyOnWriteArraySet +java.util.concurrent.CountDownLatch +java.util.concurrent.CountDownLatch$Sync +java.util.concurrent.CountedCompleter +java.util.concurrent.Delayed +java.util.concurrent.ExecutionException +java.util.concurrent.Executor +java.util.concurrent.ExecutorService +java.util.concurrent.Executors +java.util.concurrent.Executors$DefaultThreadFactory +java.util.concurrent.Executors$DelegatedExecutorService +java.util.concurrent.Executors$DelegatedScheduledExecutorService +java.util.concurrent.Executors$FinalizableDelegatedExecutorService +java.util.concurrent.Executors$RunnableAdapter +java.util.concurrent.ForkJoinPool +java.util.concurrent.ForkJoinTask +java.util.concurrent.ForkJoinTask$ExceptionNode +java.util.concurrent.Future +java.util.concurrent.FutureTask +java.util.concurrent.FutureTask$WaitNode +java.util.concurrent.LinkedBlockingDeque +java.util.concurrent.LinkedBlockingDeque$Node +java.util.concurrent.LinkedBlockingQueue +java.util.concurrent.LinkedBlockingQueue$Node +java.util.concurrent.RejectedExecutionException +java.util.concurrent.RejectedExecutionHandler +java.util.concurrent.RunnableFuture +java.util.concurrent.RunnableScheduledFuture +java.util.concurrent.ScheduledExecutorService +java.util.concurrent.ScheduledFuture +java.util.concurrent.ScheduledThreadPoolExecutor +java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue +java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask +java.util.concurrent.Semaphore +java.util.concurrent.Semaphore$NonfairSync +java.util.concurrent.Semaphore$Sync +java.util.concurrent.SynchronousQueue +java.util.concurrent.SynchronousQueue$TransferStack +java.util.concurrent.SynchronousQueue$TransferStack$SNode +java.util.concurrent.SynchronousQueue$Transferer +java.util.concurrent.ThreadFactory +java.util.concurrent.ThreadLocalRandom +java.util.concurrent.ThreadLocalRandom$1 +java.util.concurrent.ThreadPoolExecutor +java.util.concurrent.ThreadPoolExecutor$AbortPolicy +java.util.concurrent.ThreadPoolExecutor$Worker +java.util.concurrent.TimeUnit +java.util.concurrent.TimeUnit$1 +java.util.concurrent.TimeUnit$2 +java.util.concurrent.TimeUnit$3 +java.util.concurrent.TimeUnit$4 +java.util.concurrent.TimeUnit$5 +java.util.concurrent.TimeUnit$6 +java.util.concurrent.TimeUnit$7 +java.util.concurrent.TimeoutException +java.util.concurrent.atomic.AtomicBoolean +java.util.concurrent.atomic.AtomicInteger +java.util.concurrent.atomic.AtomicIntegerFieldUpdater +java.util.concurrent.atomic.AtomicIntegerFieldUpdater$AtomicIntegerFieldUpdaterImpl$1 +java.util.concurrent.atomic.AtomicLong +java.util.concurrent.atomic.AtomicReference +java.util.concurrent.atomic.AtomicReferenceFieldUpdater +java.util.concurrent.atomic.AtomicReferenceFieldUpdater$AtomicReferenceFieldUpdaterImpl +java.util.concurrent.locks.AbstractOwnableSynchronizer +java.util.concurrent.locks.AbstractQueuedSynchronizer +java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject +java.util.concurrent.locks.AbstractQueuedSynchronizer$Node +java.util.concurrent.locks.Condition +java.util.concurrent.locks.Lock +java.util.concurrent.locks.LockSupport +java.util.concurrent.locks.ReadWriteLock +java.util.concurrent.locks.ReentrantLock +java.util.concurrent.locks.ReentrantLock$NonfairSync +java.util.concurrent.locks.ReentrantLock$Sync +java.util.concurrent.locks.ReentrantReadWriteLock +java.util.concurrent.locks.ReentrantReadWriteLock$NonfairSync +java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock +java.util.concurrent.locks.ReentrantReadWriteLock$Sync +java.util.concurrent.locks.ReentrantReadWriteLock$Sync$HoldCounter +java.util.concurrent.locks.ReentrantReadWriteLock$Sync$ThreadLocalHoldCounter +java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock +java.util.function.-$Lambda$1MZdIZ-DL_fjy9l0o8IMJk57T2g +java.util.function.-$Lambda$VGDeaUHZQIZywZW2ttlyhwk3Cmk +java.util.function.-$Lambda$VGDeaUHZQIZywZW2ttlyhwk3Cmk$1 +java.util.function.BiConsumer +java.util.function.BiFunction +java.util.function.BinaryOperator +java.util.function.Consumer +java.util.function.DoubleBinaryOperator +java.util.function.DoubleUnaryOperator +java.util.function.Function +java.util.function.IntBinaryOperator +java.util.function.IntConsumer +java.util.function.IntFunction +java.util.function.IntToDoubleFunction +java.util.function.IntToLongFunction +java.util.function.IntUnaryOperator +java.util.function.LongBinaryOperator +java.util.function.LongUnaryOperator +java.util.function.Predicate +java.util.function.Supplier +java.util.function.ToDoubleBiFunction +java.util.function.ToDoubleFunction +java.util.function.ToIntBiFunction +java.util.function.ToIntFunction +java.util.function.ToLongBiFunction +java.util.function.ToLongFunction +java.util.function.UnaryOperator +java.util.jar.JarEntry +java.util.jar.JarFile +java.util.jar.JarFile$JarEntryIterator +java.util.jar.JarFile$JarFileEntry +java.util.logging.ErrorManager +java.util.logging.Formatter +java.util.logging.Handler +java.util.logging.Level +java.util.logging.Level$KnownLevel +java.util.logging.LogManager +java.util.logging.LogManager$1 +java.util.logging.LogManager$2 +java.util.logging.LogManager$3 +java.util.logging.LogManager$5 +java.util.logging.LogManager$Cleaner +java.util.logging.LogManager$LogNode +java.util.logging.LogManager$LoggerContext +java.util.logging.LogManager$LoggerContext$1 +java.util.logging.LogManager$LoggerWeakRef +java.util.logging.LogManager$RootLogger +java.util.logging.LogManager$SystemLoggerContext +java.util.logging.Logger +java.util.logging.Logger$LoggerBundle +java.util.logging.LoggingPermission +java.util.logging.LoggingProxyImpl +java.util.prefs.AbstractPreferences +java.util.prefs.FileSystemPreferences +java.util.prefs.Preferences +java.util.regex.MatchResult +java.util.regex.Matcher +java.util.regex.Pattern +java.util.regex.PatternSyntaxException +java.util.stream.BaseStream +java.util.stream.DoubleStream +java.util.stream.IntStream +java.util.stream.LongStream +java.util.stream.PipelineHelper +java.util.stream.ReferencePipeline +java.util.stream.ReferencePipeline$2 +java.util.stream.ReferencePipeline$2$1 +java.util.stream.ReferencePipeline$Head +java.util.stream.Sink +java.util.stream.Sink$ChainedReference +java.util.stream.Stream +java.util.stream.StreamOpFlag$MaskBuilder +java.util.stream.StreamSupport +java.util.stream.TerminalOp +java.util.zip.Adler32 +java.util.zip.CRC32 +java.util.zip.CheckedInputStream +java.util.zip.Checksum +java.util.zip.DataFormatException +java.util.zip.Deflater +java.util.zip.DeflaterOutputStream +java.util.zip.GZIPInputStream +java.util.zip.GZIPInputStream$1 +java.util.zip.GZIPOutputStream +java.util.zip.Inflater +java.util.zip.InflaterInputStream +java.util.zip.ZStreamRef +java.util.zip.ZipCoder +java.util.zip.ZipConstants +java.util.zip.ZipEntry +java.util.zip.ZipFile +java.util.zip.ZipFile$ZipEntryIterator +java.util.zip.ZipFile$ZipFileInflaterInputStream +java.util.zip.ZipFile$ZipFileInputStream +java.util.zip.ZipUtils +javax.crypto.BadPaddingException +javax.crypto.Cipher +javax.crypto.Cipher$CipherSpiAndProvider +javax.crypto.Cipher$InitParams +javax.crypto.Cipher$SpiAndProviderUpdater +javax.crypto.Cipher$Transform +javax.crypto.CipherSpi +javax.crypto.IllegalBlockSizeException +javax.crypto.MacSpi +javax.crypto.NoSuchPaddingException +javax.crypto.NullCipher +javax.crypto.SecretKey +javax.crypto.ShortBufferException +javax.crypto.spec.GCMParameterSpec +javax.crypto.spec.IvParameterSpec +javax.crypto.spec.SecretKeySpec +javax.microedition.khronos.egl.EGL +javax.microedition.khronos.egl.EGL10 +javax.microedition.khronos.egl.EGLConfig +javax.microedition.khronos.egl.EGLDisplay +javax.microedition.khronos.egl.EGLSurface +javax.microedition.khronos.opengles.GL +javax.microedition.khronos.opengles.GL10 +javax.microedition.khronos.opengles.GL10Ext +javax.microedition.khronos.opengles.GL11 +javax.microedition.khronos.opengles.GL11Ext +javax.microedition.khronos.opengles.GL11ExtensionPack +javax.net.DefaultSocketFactory +javax.net.SocketFactory +javax.net.ssl.ExtendedSSLSession +javax.net.ssl.HandshakeCompletedListener +javax.net.ssl.HostnameVerifier +javax.net.ssl.HttpsURLConnection +javax.net.ssl.KeyManager +javax.net.ssl.KeyManagerFactory +javax.net.ssl.KeyManagerFactory$1 +javax.net.ssl.KeyManagerFactorySpi +javax.net.ssl.SNIHostName +javax.net.ssl.SSLContext +javax.net.ssl.SSLContextSpi +javax.net.ssl.SSLEngine +javax.net.ssl.SSLException +javax.net.ssl.SSLParameters +javax.net.ssl.SSLPeerUnverifiedException +javax.net.ssl.SSLProtocolException +javax.net.ssl.SSLSession +javax.net.ssl.SSLSessionContext +javax.net.ssl.SSLSocket +javax.net.ssl.SSLSocketFactory +javax.net.ssl.SSLSocketFactory$1 +javax.net.ssl.TrustManager +javax.net.ssl.TrustManagerFactory +javax.net.ssl.TrustManagerFactory$1 +javax.net.ssl.TrustManagerFactorySpi +javax.net.ssl.X509ExtendedKeyManager +javax.net.ssl.X509ExtendedTrustManager +javax.net.ssl.X509KeyManager +javax.net.ssl.X509TrustManager +javax.security.auth.Destroyable +javax.security.auth.callback.UnsupportedCallbackException +javax.security.auth.x500.X500Principal +javax.security.cert.CertificateException +javax.xml.parsers.ParserConfigurationException +javax.xml.parsers.SAXParser +javax.xml.parsers.SAXParserFactory +libcore.icu.DateUtilsBridge +libcore.icu.ICU +libcore.icu.LocaleData +libcore.icu.NativeConverter +libcore.icu.TimeZoneNames +libcore.internal.StringPool +libcore.io.AsynchronousCloseMonitor +libcore.io.BlockGuardOs +libcore.io.BufferIterator +libcore.io.ClassPathURLStreamHandler +libcore.io.ClassPathURLStreamHandler$ClassPathURLConnection +libcore.io.ClassPathURLStreamHandler$ClassPathURLConnection$1 +libcore.io.DropBox +libcore.io.DropBox$DefaultReporter +libcore.io.DropBox$Reporter +libcore.io.EventLogger +libcore.io.EventLogger$DefaultReporter +libcore.io.EventLogger$Reporter +libcore.io.ForwardingOs +libcore.io.IoBridge +libcore.io.IoTracker +libcore.io.IoTracker$Mode +libcore.io.IoUtils +libcore.io.Libcore +libcore.io.Linux +libcore.io.Memory +libcore.io.MemoryMappedFile +libcore.io.NioBufferIterator +libcore.io.Os +libcore.net.NetworkSecurityPolicy +libcore.net.NetworkSecurityPolicy$DefaultNetworkSecurityPolicy +libcore.net.UriCodec +libcore.net.event.NetworkEventDispatcher +libcore.net.event.NetworkEventListener +libcore.reflect.AnnotatedElements +libcore.reflect.AnnotationFactory +libcore.reflect.AnnotationMember +libcore.reflect.AnnotationMember$DefaultValues +libcore.reflect.GenericArrayTypeImpl +libcore.reflect.GenericSignatureParser +libcore.reflect.ListOfTypes +libcore.reflect.ListOfVariables +libcore.reflect.ParameterizedTypeImpl +libcore.reflect.Types +libcore.util.BasicLruCache +libcore.util.CharsetUtils +libcore.util.CollectionUtils +libcore.util.EmptyArray +libcore.util.NativeAllocationRegistry +libcore.util.NativeAllocationRegistry$CleanerRunner +libcore.util.NativeAllocationRegistry$CleanerThunk +libcore.util.Objects +libcore.util.TimeZoneDataFiles +libcore.util.ZoneInfo +libcore.util.ZoneInfo$CheckedArithmeticException +libcore.util.ZoneInfo$WallTime +libcore.util.ZoneInfoDB +libcore.util.ZoneInfoDB$TzData +libcore.util.ZoneInfoDB$TzData$1 +org.apache.commons.logging.Log +org.apache.commons.logging.impl.WeakHashtable +org.apache.harmony.dalvik.NativeTestTarget +org.apache.harmony.dalvik.ddmc.Chunk +org.apache.harmony.dalvik.ddmc.ChunkHandler +org.apache.harmony.dalvik.ddmc.DdmServer +org.apache.harmony.dalvik.ddmc.DdmVmInternal +org.apache.harmony.luni.internal.util.TimezoneGetter +org.apache.harmony.xml.ExpatAttributes +org.apache.harmony.xml.ExpatParser +org.apache.harmony.xml.ExpatParser$CurrentAttributes +org.apache.harmony.xml.ExpatParser$ExpatLocator +org.apache.harmony.xml.ExpatReader +org.apache.harmony.xml.parsers.SAXParserFactoryImpl +org.apache.harmony.xml.parsers.SAXParserImpl +org.apache.http.ConnectionReuseStrategy +org.apache.http.HeaderElement +org.apache.http.HttpEntity +org.apache.http.HttpException +org.apache.http.HttpHost +org.apache.http.HttpMessage +org.apache.http.HttpRequest +org.apache.http.HttpRequestInterceptor +org.apache.http.HttpResponse +org.apache.http.HttpResponseFactory +org.apache.http.NameValuePair +org.apache.http.ProtocolException +org.apache.http.ProtocolVersion +org.apache.http.ReasonPhraseCatalog +org.apache.http.StatusLine +org.apache.http.client.HttpClient +org.apache.http.client.ResponseHandler +org.apache.http.client.methods.AbortableHttpRequest +org.apache.http.client.methods.HttpRequestBase +org.apache.http.client.methods.HttpUriRequest +org.apache.http.client.params.HttpClientParams +org.apache.http.conn.ClientConnectionManager +org.apache.http.conn.ClientConnectionOperator +org.apache.http.conn.ConnectTimeoutException +org.apache.http.conn.params.ConnManagerPNames +org.apache.http.conn.params.ConnManagerParams$1 +org.apache.http.conn.params.ConnPerRoute +org.apache.http.conn.scheme.LayeredSocketFactory +org.apache.http.conn.scheme.Scheme +org.apache.http.conn.scheme.SchemeRegistry +org.apache.http.conn.scheme.SocketFactory +org.apache.http.conn.ssl.AllowAllHostnameVerifier +org.apache.http.conn.ssl.BrowserCompatHostnameVerifier +org.apache.http.conn.ssl.StrictHostnameVerifier +org.apache.http.conn.ssl.X509HostnameVerifier +org.apache.http.entity.AbstractHttpEntity +org.apache.http.entity.BasicHttpEntity +org.apache.http.impl.DefaultConnectionReuseStrategy +org.apache.http.impl.DefaultHttpResponseFactory +org.apache.http.impl.client.AbstractHttpClient +org.apache.http.impl.client.DefaultHttpClient +org.apache.http.impl.conn.IdleConnectionHandler +org.apache.http.impl.conn.tsccm.AbstractConnPool +org.apache.http.impl.conn.tsccm.ConnPoolByRoute +org.apache.http.impl.conn.tsccm.RefQueueHandler +org.apache.http.impl.conn.tsccm.RefQueueWorker +org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager +org.apache.http.impl.cookie.DateParseException +org.apache.http.impl.cookie.DateUtils$DateFormatHolder$1 +org.apache.http.message.AbstractHttpMessage +org.apache.http.message.BasicHeader +org.apache.http.message.BasicHeaderElement +org.apache.http.message.BasicHttpResponse +org.apache.http.message.BasicNameValuePair +org.apache.http.message.BasicStatusLine +org.apache.http.message.HeaderGroup +org.apache.http.message.HeaderValueParser +org.apache.http.message.ParserCursor +org.apache.http.params.AbstractHttpParams +org.apache.http.params.BasicHttpParams +org.apache.http.params.CoreConnectionPNames +org.apache.http.params.CoreProtocolPNames +org.apache.http.params.HttpConnectionParams +org.apache.http.params.HttpParams +org.apache.http.params.HttpProtocolParams +org.apache.http.protocol.BasicHttpProcessor +org.apache.http.protocol.HTTP +org.apache.http.protocol.HttpContext +org.apache.http.protocol.HttpRequestInterceptorList +org.apache.http.protocol.HttpResponseInterceptorList +org.apache.http.util.CharArrayBuffer +org.ccil.cowan.tagsoup.AttributesImpl +org.ccil.cowan.tagsoup.AutoDetector +org.ccil.cowan.tagsoup.Element +org.ccil.cowan.tagsoup.ElementType +org.ccil.cowan.tagsoup.HTMLScanner +org.ccil.cowan.tagsoup.HTMLSchema +org.ccil.cowan.tagsoup.Parser$1 +org.ccil.cowan.tagsoup.ScanHandler +org.ccil.cowan.tagsoup.Scanner +org.ccil.cowan.tagsoup.Schema +org.json.JSON +org.json.JSONArray +org.json.JSONException +org.json.JSONObject +org.json.JSONObject$1 +org.json.JSONStringer +org.json.JSONTokener +org.kxml2.io.KXmlParser +org.kxml2.io.KXmlParser$ValueContext +org.xml.sax.Attributes +org.xml.sax.DTDHandler +org.xml.sax.EntityResolver +org.xml.sax.ErrorHandler +org.xml.sax.InputSource +org.xml.sax.Locator +org.xml.sax.SAXException +org.xml.sax.XMLReader +org.xml.sax.ext.LexicalHandler +org.xml.sax.helpers.DefaultHandler +org.xmlpull.v1.XmlPullParser +org.xmlpull.v1.XmlPullParserException +org.xmlpull.v1.XmlSerializer +sun.invoke.util.BytecodeDescriptor +sun.invoke.util.VerifyAccess +sun.invoke.util.Wrapper +sun.invoke.util.Wrapper$Format +sun.misc.Cleaner +sun.misc.CompoundEnumeration +sun.misc.FDBigInteger +sun.misc.FloatingDecimal +sun.misc.FloatingDecimal$1 +sun.misc.FloatingDecimal$ASCIIToBinaryBuffer +sun.misc.FloatingDecimal$ASCIIToBinaryConverter +sun.misc.FloatingDecimal$BinaryToASCIIBuffer +sun.misc.FloatingDecimal$BinaryToASCIIConverter +sun.misc.FloatingDecimal$ExceptionalBinaryToASCIIBuffer +sun.misc.FloatingDecimal$PreparedASCIIToBinaryBuffer +sun.misc.FormattedFloatingDecimal$1 +sun.misc.IOUtils +sun.misc.JavaIOFileDescriptorAccess +sun.misc.SharedSecrets +sun.misc.Unsafe +sun.misc.VM +sun.misc.Version +sun.net.ConnectionResetException +sun.net.NetHooks +sun.net.NetProperties$1 +sun.net.spi.DefaultProxySelector +sun.net.spi.DefaultProxySelector$1 +sun.net.spi.nameservice.NameService +sun.net.util.IPAddressUtil +sun.net.www.ParseUtil +sun.net.www.protocol.file.Handler +sun.net.www.protocol.jar.Handler +sun.nio.ch.DatagramChannelImpl +sun.nio.ch.DatagramDispatcher +sun.nio.ch.DirectBuffer +sun.nio.ch.FileChannelImpl +sun.nio.ch.FileChannelImpl$Unmapper +sun.nio.ch.FileDispatcher +sun.nio.ch.FileDispatcherImpl +sun.nio.ch.FileKey +sun.nio.ch.FileLockTable +sun.nio.ch.IOStatus +sun.nio.ch.IOUtil +sun.nio.ch.Interruptible +sun.nio.ch.NativeDispatcher +sun.nio.ch.NativeThread +sun.nio.ch.NativeThreadSet +sun.nio.ch.Net +sun.nio.ch.SelChImpl +sun.nio.ch.ServerSocketChannelImpl +sun.nio.ch.SharedFileLockTable$FileLockReference +sun.nio.ch.SocketChannelImpl +sun.nio.ch.Util$1 +sun.nio.cs.ArrayEncoder +sun.nio.cs.StreamDecoder +sun.nio.cs.StreamEncoder +sun.nio.fs.AbstractFileSystemProvider +sun.nio.fs.AbstractPath +sun.nio.fs.DefaultFileSystemProvider +sun.nio.fs.LinuxFileSystem +sun.nio.fs.LinuxFileSystemProvider +sun.nio.fs.NativeBuffer$Deallocator +sun.nio.fs.UnixChannelFactory$Flags +sun.nio.fs.UnixFileSystem +sun.nio.fs.UnixFileSystemProvider +sun.security.action.GetBooleanAction +sun.security.action.GetPropertyAction +sun.security.jca.GetInstance +sun.security.jca.GetInstance$Instance +sun.security.jca.ProviderConfig +sun.security.jca.ProviderConfig$2 +sun.security.jca.ProviderList +sun.security.jca.ProviderList$1 +sun.security.jca.ProviderList$2 +sun.security.jca.ProviderList$3 +sun.security.jca.ProviderList$ServiceList +sun.security.jca.ProviderList$ServiceList$1 +sun.security.jca.Providers +sun.security.jca.ServiceId +sun.security.provider.CertPathProvider +sun.security.provider.X509Factory +sun.security.provider.certpath.AdaptableX509CertSelector +sun.security.provider.certpath.AlgorithmChecker +sun.security.provider.certpath.BasicChecker +sun.security.provider.certpath.CertPathHelper +sun.security.provider.certpath.ConstraintsChecker +sun.security.provider.certpath.KeyChecker +sun.security.provider.certpath.PKIX +sun.security.provider.certpath.PKIX$ValidatorParams +sun.security.provider.certpath.PKIXCertPathValidator +sun.security.provider.certpath.PKIXMasterCertPathValidator +sun.security.provider.certpath.PolicyChecker +sun.security.provider.certpath.PolicyNodeImpl +sun.security.util.AbstractAlgorithmConstraints +sun.security.util.AbstractAlgorithmConstraints$1 +sun.security.util.AlgorithmDecomposer +sun.security.util.BitArray +sun.security.util.ByteArrayLexOrder +sun.security.util.ByteArrayTagOrder +sun.security.util.Cache +sun.security.util.Cache$EqualByteArray +sun.security.util.CertConstraintParameters +sun.security.util.Debug +sun.security.util.DerEncoder +sun.security.util.DerIndefLenConverter +sun.security.util.DerInputBuffer +sun.security.util.DerInputStream +sun.security.util.DerOutputStream +sun.security.util.DerValue +sun.security.util.DisabledAlgorithmConstraints +sun.security.util.DisabledAlgorithmConstraints$Constraint +sun.security.util.DisabledAlgorithmConstraints$Constraint$Operator +sun.security.util.DisabledAlgorithmConstraints$Constraints +sun.security.util.DisabledAlgorithmConstraints$KeySizeConstraint +sun.security.util.KeyUtil +sun.security.util.Length +sun.security.util.MemoryCache +sun.security.util.MemoryCache$CacheEntry +sun.security.util.MemoryCache$SoftCacheEntry +sun.security.util.ObjectIdentifier +sun.security.x509.AVA +sun.security.x509.AVAKeyword +sun.security.x509.AccessDescription +sun.security.x509.AlgorithmId +sun.security.x509.AuthorityInfoAccessExtension +sun.security.x509.AuthorityKeyIdentifierExtension +sun.security.x509.BasicConstraintsExtension +sun.security.x509.CRLDistributionPointsExtension +sun.security.x509.CRLNumberExtension +sun.security.x509.CertAttrSet +sun.security.x509.CertificateAlgorithmId +sun.security.x509.CertificateExtensions +sun.security.x509.CertificateIssuerExtension +sun.security.x509.CertificatePoliciesExtension +sun.security.x509.CertificatePolicyId +sun.security.x509.CertificateSerialNumber +sun.security.x509.CertificateValidity +sun.security.x509.CertificateVersion +sun.security.x509.CertificateX509Key +sun.security.x509.DNSName +sun.security.x509.DeltaCRLIndicatorExtension +sun.security.x509.DistributionPoint +sun.security.x509.ExtendedKeyUsageExtension +sun.security.x509.Extension +sun.security.x509.FreshestCRLExtension +sun.security.x509.GeneralName +sun.security.x509.GeneralNameInterface +sun.security.x509.GeneralNames +sun.security.x509.IssuerAlternativeNameExtension +sun.security.x509.IssuingDistributionPointExtension +sun.security.x509.KeyIdentifier +sun.security.x509.KeyUsageExtension +sun.security.x509.NameConstraintsExtension +sun.security.x509.OCSPNoCheckExtension +sun.security.x509.OIDMap +sun.security.x509.OIDMap$OIDInfo +sun.security.x509.PolicyConstraintsExtension +sun.security.x509.PolicyInformation +sun.security.x509.PolicyMappingsExtension +sun.security.x509.PrivateKeyUsageExtension +sun.security.x509.RDN +sun.security.x509.SerialNumber +sun.security.x509.SubjectAlternativeNameExtension +sun.security.x509.SubjectInfoAccessExtension +sun.security.x509.SubjectKeyIdentifierExtension +sun.security.x509.URIName +sun.security.x509.X500Name +sun.security.x509.X500Name$1 +sun.security.x509.X509AttributeName +sun.security.x509.X509CertImpl +sun.security.x509.X509CertInfo +sun.security.x509.X509Key +sun.util.calendar.AbstractCalendar +sun.util.calendar.BaseCalendar +sun.util.calendar.BaseCalendar$Date +sun.util.calendar.CalendarDate +sun.util.calendar.CalendarSystem +sun.util.calendar.CalendarUtils +sun.util.calendar.Gregorian +sun.util.calendar.Gregorian$Date +sun.util.calendar.JulianCalendar +sun.util.calendar.LocalGregorianCalendar +sun.util.locale.BaseLocale +sun.util.locale.BaseLocale$Cache +sun.util.locale.BaseLocale$Key +sun.util.locale.InternalLocaleBuilder +sun.util.locale.InternalLocaleBuilder$CaseInsensitiveChar +sun.util.locale.LanguageTag +sun.util.locale.LocaleObjectCache +sun.util.locale.LocaleObjectCache$CacheEntry +sun.util.locale.LocaleSyntaxException +sun.util.locale.LocaleUtils +sun.util.locale.ParseStatus +sun.util.locale.StringTokenIterator +sun.util.logging.LoggingProxy +sun.util.logging.LoggingSupport +sun.util.logging.LoggingSupport$1 +sun.util.logging.PlatformLogger +sun.util.logging.PlatformLogger$1 +sun.util.logging.PlatformLogger$Level diff --git a/system/etc/prop.default b/system/etc/prop.default new file mode 100644 index 0000000000000000000000000000000000000000..b7e71f388288b8d6141a05f8450cf6920ae192c8 --- /dev/null +++ b/system/etc/prop.default @@ -0,0 +1,15 @@ +# +# ADDITIONAL_DEFAULT_PROPERTIES +# +ro.secure=1 +security.perf_harden=1 +ro.adb.secure=1 +ro.allow.mock.location=0 +ro.debuggable=0 +# +# BOOTIMAGE_BUILD_PROPERTIES +# +ro.bootimage.build.date=Wed Aug 29 21:03:44 CST 2018 +ro.bootimage.build.date.utc=1535547824 +ro.bootimage.build.fingerprint=YUHO/YUHO_Y1_PRO/YUHO_Y1_PRO:8.1.0/O11019/1530698598:user/release-keys +persist.sys.usb.config=none diff --git a/system/etc/public.libraries.txt b/system/etc/public.libraries.txt new file mode 100644 index 0000000000000000000000000000000000000000..54820853f7721ea3b5f1d8ca4553c5c8e9430360 --- /dev/null +++ b/system/etc/public.libraries.txt @@ -0,0 +1,25 @@ +libandroid.so +libaaudio.so +libc.so +libcamera2ndk.so +libdl.so +libEGL.so +libGLESv1_CM.so +libGLESv2.so +libGLESv3.so +libicui18n.so +libicuuc.so +libjnigraphics.so +liblog.so +libmediandk.so +libm.so +libnativewindow.so +libneuralnetworks.so +libOpenMAXAL.so +libOpenSLES.so +libRS.so +libstdc++.so +libsync.so +libvulkan.so +libwebviewchromium_plat_support.so +libz.so diff --git a/system/etc/r_submix_audio_policy_configuration.xml b/system/etc/r_submix_audio_policy_configuration.xml new file mode 100644 index 0000000000000000000000000000000000000000..dc2a5ecc8283396ba80952364b12b0e3d0c20a35 --- /dev/null +++ b/system/etc/r_submix_audio_policy_configuration.xml @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<!-- Remote Submix Audio Policy Configuration file --> +<module name="r_submix" halVersion="2.0"> + <attachedDevices> + <item>Remote Submix In</item> + </attachedDevices> + <mixPorts> + <mixPort name="r_submix output" role="source"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="48000" channelMasks="AUDIO_CHANNEL_OUT_STEREO"/> + </mixPort> + <mixPort name="r_submix input" role="sink"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="48000" channelMasks="AUDIO_CHANNEL_IN_STEREO"/> + </mixPort> + </mixPorts> + <devicePorts> + <devicePort tagName="Remote Submix Out" type="AUDIO_DEVICE_OUT_REMOTE_SUBMIX" role="sink"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="48000" channelMasks="AUDIO_CHANNEL_OUT_STEREO"/> + </devicePort> + <devicePort tagName="Remote Submix In" type="AUDIO_DEVICE_IN_REMOTE_SUBMIX" role="source"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="48000" channelMasks="AUDIO_CHANNEL_IN_STEREO"/> + </devicePort> + </devicePorts> + <routes> + <route type="mix" sink="Remote Submix Out" + sources="r_submix output"/> + <route type="mix" sink="r_submix input" + sources="Remote Submix In"/> + </routes> +</module> diff --git a/system/etc/recovery-resource.dat b/system/etc/recovery-resource.dat new file mode 100644 index 0000000000000000000000000000000000000000..261044822152abbb73f087935d90dc06dff88b52 Binary files /dev/null and b/system/etc/recovery-resource.dat differ diff --git a/system/etc/seccomp_policy/mediacodec.policy b/system/etc/seccomp_policy/mediacodec.policy new file mode 100644 index 0000000000000000000000000000000000000000..a3ba7ec2494cdc95aaf384b47fe9704e4b6233b3 --- /dev/null +++ b/system/etc/seccomp_policy/mediacodec.policy @@ -0,0 +1,73 @@ +# Organized by frequency of systemcall - in descending order for +# best performance. +futex: 1 +ioctl: 1 +write: 1 +prctl: 1 +clock_gettime: 1 +getpriority: 1 +read: 1 +close: 1 +writev: 1 +dup: 1 +ppoll: 1 +mmap2: 1 +getrandom: 1 + +# mremap: Ensure |flags| are (MREMAP_MAYMOVE | MREMAP_FIXED) TODO: Once minijail +# parser support for '<' is in this needs to be modified to also prevent +# |old_address| and |new_address| from touching the exception vector page, which +# on ARM is statically loaded at 0xffff 0000. See +# http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ddi0211h/Babfeega.html +# for more details. +mremap: arg3 == 3 +munmap: 1 +mprotect: 1 +madvise: 1 +openat: 1 +sigaltstack: 1 +clone: 1 +setpriority: 1 +getuid32: 1 +fstat64: 1 +fstatfs64: 1 +pread64: 1 +faccessat: 1 +readlinkat: 1 +exit: 1 +rt_sigprocmask: 1 +set_tid_address: 1 +restart_syscall: 1 +exit_group: 1 +rt_sigreturn: 1 +pipe2: 1 +gettimeofday: 1 +sched_yield: 1 +nanosleep: 1 +lseek: 1 +_llseek: 1 +sched_get_priority_max: 1 +sched_get_priority_min: 1 +statfs64: 1 +sched_setscheduler: 1 +fstatat64: 1 +ugetrlimit: 1 +pselect6: 1 +getdents64: 1 +sched_getparam: 1 +sched_getscheduler: 1 + +# for attaching to debuggerd on process crash +sigaction: 1 +tgkill: 1 +socket: 1 +connect: 1 +fcntl64: 1 +rt_tgsigqueueinfo: 1 +geteuid32: 1 +getgid32: 1 +getegid32: 1 +getgroups32: 1 +recvmsg: 1 +getpid: 1 +gettid: 1 diff --git a/system/etc/seccomp_policy/mediaextractor.policy b/system/etc/seccomp_policy/mediaextractor.policy new file mode 100644 index 0000000000000000000000000000000000000000..1bb95b5692587a35a35cac88d705f09b7c3cab64 --- /dev/null +++ b/system/etc/seccomp_policy/mediaextractor.policy @@ -0,0 +1,69 @@ +# Organized by frequency of systemcall - in descending order for +# best performance. +ioctl: 1 +futex: 1 +prctl: 1 +write: 1 +getpriority: 1 +mmap2: 1 +close: 1 +munmap: 1 +dup: 1 +mprotect: 1 +getuid32: 1 +setpriority: 1 +sigaltstack: 1 +openat: 1 +clone: 1 +read: 1 +clock_gettime: 1 +lseek: 1 +writev: 1 +fstatat64: 1 +fstatfs64: 1 +fstat64: 1 +restart_syscall: 1 +exit: 1 +exit_group: 1 +rt_sigreturn: 1 +faccessat: 1 +madvise: 1 +brk: 1 +sched_setscheduler: 1 +gettid: 1 +rt_sigprocmask: 1 +sched_yield: 1 +ugetrlimit: 1 +geteuid32: 1 +getgid32: 1 +getegid32: 1 +getgroups32: 1 +nanosleep: 1 + +# for FileSource +readlinkat: 1 +_llseek: 1 + +# for attaching to debuggerd on process crash +sigaction: 1 +tgkill: 1 +socket: 1 +connect: 1 +recvmsg: 1 +fcntl64: 1 +rt_tgsigqueueinfo: 1 +geteuid32: 1 +getgid32: 1 +getegid32: 1 +getgroups32: 1 +getdents64: 1 +pipe2: 1 +ppoll: 1 +getpid: 1 +gettid: 1 + +# mtk add >>> +gettimeofday: 1 +unlinkat: 1 +setsockopt: 1 +# <<< mtk add diff --git a/system/etc/security/cacerts/00673b5b.0 b/system/etc/security/cacerts/00673b5b.0 new file mode 100644 index 0000000000000000000000000000000000000000..ccea509428c5bbbec4c007e438c3bf5ae2746b81 --- /dev/null +++ b/system/etc/security/cacerts/00673b5b.0 @@ -0,0 +1,83 @@ +-----BEGIN CERTIFICATE----- +MIIEIDCCAwigAwIBAgIQNE7VVyDV7exJ9C/ON9srbTANBgkqhkiG9w0BAQUFADCB +qTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMf +Q2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIw +MDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxHzAdBgNV +BAMTFnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwHhcNMDYxMTE3MDAwMDAwWhcNMzYw +NzE2MjM1OTU5WjCBqTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5j +LjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYG +A1UECxMvKGMpIDIwMDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl +IG9ubHkxHzAdBgNVBAMTFnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwggEiMA0GCSqG +SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCsoPD7gFnUnMekz52hWXMJEEUMDSxuaPFs +W0hoSVk3/AszGcJ3f8wQLZU0HObrTQmnHNK4yZc2AreJ1CRfBsDMRJSUjQJib+ta +3RGNKJpchJAQeg29dGYvajig4tVUROsdB58Hum/u6f1OCyn1PoSgAfGcq/gcfomk +6KHYcWUNo1F77rzSImANuVud37r8UVsLr5iy6S7pBOhih94ryNdOwUxkHt3Ph1i6 +Sk/KaAcdHJ1KxtUvkcx8cXIcxcBn6zL9yZJclNqFwJu/U30rCfSMnZEfl2pSy94J +NqR32HuHUETVPm4pafs5SSYeCaWAe0At6+gnhcn+Yf1+5nyXHdWdAgMBAAGjQjBA +MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBR7W0XP +r87Lev0xkhpqtvNG61dIUDANBgkqhkiG9w0BAQUFAAOCAQEAeRHAS7ORtvzw6WfU +DW5FvlXok9LOAz/t2iWwHVfLHjp2oEzsUHboZHIMpKnxuIvW1oeEuzLlQRHAd9mz +YJ3rG9XRbkREqaYB7FViHXe4XI5ISXycO1cRrK1zN44veFyQaEfZYGDm/Ac9IiAX +xPcW6cTYcvnIc3zfFi8VqT79aie2oetaupgf1eNNZAqdE8hhuvU5HIe6uL17In/2 +/qxAeeWsEG89jxt5dovEN7MhGITlNgDrYyCZuen+MwS7QcjBAvlEYyCegc5C09Y/ +LHbTY5xZ3Y+m4Q6gLkH3LpVHz7z9M/P2C2F+fpErgUfCJzDupxBdN49cOSvkBPB7 +jVaMaA== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 34:4e:d5:57:20:d5:ed:ec:49:f4:2f:ce:37:db:2b:6d + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=US, O=thawte, Inc., OU=Certification Services Division, OU=(c) 2006 thawte, Inc. - For authorized use only, CN=thawte Primary Root CA + Validity + Not Before: Nov 17 00:00:00 2006 GMT + Not After : Jul 16 23:59:59 2036 GMT + Subject: C=US, O=thawte, Inc., OU=Certification Services Division, OU=(c) 2006 thawte, Inc. - For authorized use only, CN=thawte Primary Root CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:ac:a0:f0:fb:80:59:d4:9c:c7:a4:cf:9d:a1:59: + 73:09:10:45:0c:0d:2c:6e:68:f1:6c:5b:48:68:49: + 59:37:fc:0b:33:19:c2:77:7f:cc:10:2d:95:34:1c: + e6:eb:4d:09:a7:1c:d2:b8:c9:97:36:02:b7:89:d4: + 24:5f:06:c0:cc:44:94:94:8d:02:62:6f:eb:5a:dd: + 11:8d:28:9a:5c:84:90:10:7a:0d:bd:74:66:2f:6a: + 38:a0:e2:d5:54:44:eb:1d:07:9f:07:ba:6f:ee:e9: + fd:4e:0b:29:f5:3e:84:a0:01:f1:9c:ab:f8:1c:7e: + 89:a4:e8:a1:d8:71:65:0d:a3:51:7b:ee:bc:d2:22: + 60:0d:b9:5b:9d:df:ba:fc:51:5b:0b:af:98:b2:e9: + 2e:e9:04:e8:62:87:de:2b:c8:d7:4e:c1:4c:64:1e: + dd:cf:87:58:ba:4a:4f:ca:68:07:1d:1c:9d:4a:c6: + d5:2f:91:cc:7c:71:72:1c:c5:c0:67:eb:32:fd:c9: + 92:5c:94:da:85:c0:9b:bf:53:7d:2b:09:f4:8c:9d: + 91:1f:97:6a:52:cb:de:09:36:a4:77:d8:7b:87:50: + 44:d5:3e:6e:29:69:fb:39:49:26:1e:09:a5:80:7b: + 40:2d:eb:e8:27:85:c9:fe:61:fd:7e:e6:7c:97:1d: + d5:9d + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + 7B:5B:45:CF:AF:CE:CB:7A:FD:31:92:1A:6A:B6:F3:46:EB:57:48:50 + Signature Algorithm: sha1WithRSAEncryption + 79:11:c0:4b:b3:91:b6:fc:f0:e9:67:d4:0d:6e:45:be:55:e8: + 93:d2:ce:03:3f:ed:da:25:b0:1d:57:cb:1e:3a:76:a0:4c:ec: + 50:76:e8:64:72:0c:a4:a9:f1:b8:8b:d6:d6:87:84:bb:32:e5: + 41:11:c0:77:d9:b3:60:9d:eb:1b:d5:d1:6e:44:44:a9:a6:01: + ec:55:62:1d:77:b8:5c:8e:48:49:7c:9c:3b:57:11:ac:ad:73: + 37:8e:2f:78:5c:90:68:47:d9:60:60:e6:fc:07:3d:22:20:17: + c4:f7:16:e9:c4:d8:72:f9:c8:73:7c:df:16:2f:15:a9:3e:fd: + 6a:27:b6:a1:eb:5a:ba:98:1f:d5:e3:4d:64:0a:9d:13:c8:61: + ba:f5:39:1c:87:ba:b8:bd:7b:22:7f:f6:fe:ac:40:79:e5:ac: + 10:6f:3d:8f:1b:79:76:8b:c4:37:b3:21:18:84:e5:36:00:eb: + 63:20:99:b9:e9:fe:33:04:bb:41:c8:c1:02:f9:44:63:20:9e: + 81:ce:42:d3:d6:3f:2c:76:d3:63:9c:59:dd:8f:a6:e1:0e:a0: + 2e:41:f7:2e:95:47:cf:bc:fd:33:f3:f6:0b:61:7e:7e:91:2b: + 81:47:c2:27:30:ee:a7:10:5d:37:8f:5c:39:2b:e4:04:f0:7b: + 8d:56:8c:68 +SHA1 Fingerprint=91:C6:D6:EE:3E:8A:C8:63:84:E5:48:C2:99:29:5C:75:6C:81:7B:81 diff --git a/system/etc/security/cacerts/02756ea4.0 b/system/etc/security/cacerts/02756ea4.0 new file mode 100644 index 0000000000000000000000000000000000000000..e4787e581bfba5e8b70b6942f97ad270891c1cb9 --- /dev/null +++ b/system/etc/security/cacerts/02756ea4.0 @@ -0,0 +1,123 @@ +-----BEGIN CERTIFICATE----- +MIIFazCCA1OgAwIBAgISESBVg+QtPlRWhS2DN7cs3EYRMA0GCSqGSIb3DQEBDQUA +MD4xCzAJBgNVBAYTAkZSMREwDwYDVQQKDAhDZXJ0cGx1czEcMBoGA1UEAwwTQ2Vy +dHBsdXMgUm9vdCBDQSBHMTAeFw0xNDA1MjYwMDAwMDBaFw0zODAxMTUwMDAwMDBa +MD4xCzAJBgNVBAYTAkZSMREwDwYDVQQKDAhDZXJ0cGx1czEcMBoGA1UEAwwTQ2Vy +dHBsdXMgUm9vdCBDQSBHMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIB +ANpQh7bauKk+nWT6VjOaVj0W5QOVsjQcmm1iBdTYj+eJZJ+622SLZOZ5KmHNr49a +iZFluVj8tANfkT8tEBXgfs+8/H9DZ6itXjYj2JizTfNDnjl8KvzsiNWI7nC9hRYt +6kuJPKNxQv4c/dMcLRC4hlTqQ7jbxofaqK6AJc96Jh2qkbBIb6613p7Y1/oA/caP +0FG7Yn2ksYyy/yARujVjBYZHYEMzkPZHogNPlk2dT8Hq6pyi/jQu3rfKG3akt62f +6ajUeD94/vI4CTYd0hYCyOwqaK/1jpTvLRN6HkJKHRUxrgwEV/xhc/MxVoYxgKDE +EW4wduOU8F8ExKyHcomYxZ3MVwia9Az8fXoFOvpHgDm2z4QTd28n6v+WZxcIbekN +1iNQMLAVdBM+5S//Ds3EC0pd8NgAM0lm66EYfFkuPSi5YXHLtaW6uOrc4nBvCGrc +h2c0798wct3zyT8j/zXhviEpIDCB5BmlIOklynMxdCm+4kLV87ImZsdo/Rmz5yCT +mehd4F6H50boJZwKKSTUzViGUkAksnsPmBIgJPaQbEfIDbsYIC7Z/fyL8inqh3SV +4EJQeIQEQWGw9CEjjy3LKCHyamz0GqbFFLQ3ZU+V/YDI+HLlJWvEYLF7bY5KinPO +WftwenMGE9nTdDckQQoRb5fc5+R+ob0V8rqHDz1oihYHAgMBAAGjYzBhMA4GA1Ud +DwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBSowcCbkahDFXxd +Bie0KlHYlwuBsTAfBgNVHSMEGDAWgBSowcCbkahDFXxdBie0KlHYlwuBsTANBgkq +hkiG9w0BAQ0FAAOCAgEAnFZvAX7RvUz1isbwJh/k4DgYzDLDKTudQSk0YcbX8ACh +66Ryj5QXvBMsdbRX7gp8CXrc1cqh0DQT+Hern+X+2B50ioUHj3/MeXrKls3N/U/7 +/SMNkPX0XtPGYX2eEeAC7gkE2Qfdpoq3DIMku4NQkv5gdRE+2J2winq14J2by5BS +S7CTKtQ+FjPlnsZlFT5kOwQ/2wyPX1wdaR+v8+khjPPvl/aatxm2hHSco1S1cE5j +2FddUyGbQJJD+tZ3VTNPZNX70Cxqjm0lpu+F6ALEUz65noe8zDUa3qHpimOHZR4R +Kttjd5cUvpoUmRGywO6wT/gUITJDT5+rosuoD6o7BlXGEilXCNQ314cnrUlZp5Gr +RHpejXDbl85IULFzk/bwg2D5zfHhMf1bfHEhYxQUqq/F3pN+aLHsIqKqkHWetUNy +6mSjhEv9DKgma3GX7lZjZuhCVPnHHd/Qj1vfyDBviP4NxDMcU6ij/UgQ8uQKTuEV +V/xuZDDCVRHc6qnNSlSsKWNEz0pAoNZoWRsz+e86i9sgktxChL8Bq4fA1SCC28a5 +g4VCXA9DO2pJNdWY9BW/+mGBDAkgGNLQFwzLSABQ6XaCjGTXOqAHVcweMcDvOrRl +++O/QmueD6i9a5jc2NvLi6Td11n0bt3+qsOR0C5CB8AMTVPNJLFMWx5R9N/pkvo= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 11:20:55:83:e4:2d:3e:54:56:85:2d:83:37:b7:2c:dc:46:11 + Signature Algorithm: sha512WithRSAEncryption + Issuer: C=FR, O=Certplus, CN=Certplus Root CA G1 + Validity + Not Before: May 26 00:00:00 2014 GMT + Not After : Jan 15 00:00:00 2038 GMT + Subject: C=FR, O=Certplus, CN=Certplus Root CA G1 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:da:50:87:b6:da:b8:a9:3e:9d:64:fa:56:33:9a: + 56:3d:16:e5:03:95:b2:34:1c:9a:6d:62:05:d4:d8: + 8f:e7:89:64:9f:ba:db:64:8b:64:e6:79:2a:61:cd: + af:8f:5a:89:91:65:b9:58:fc:b4:03:5f:91:3f:2d: + 10:15:e0:7e:cf:bc:fc:7f:43:67:a8:ad:5e:36:23: + d8:98:b3:4d:f3:43:9e:39:7c:2a:fc:ec:88:d5:88: + ee:70:bd:85:16:2d:ea:4b:89:3c:a3:71:42:fe:1c: + fd:d3:1c:2d:10:b8:86:54:ea:43:b8:db:c6:87:da: + a8:ae:80:25:cf:7a:26:1d:aa:91:b0:48:6f:ae:b5: + de:9e:d8:d7:fa:00:fd:c6:8f:d0:51:bb:62:7d:a4: + b1:8c:b2:ff:20:11:ba:35:63:05:86:47:60:43:33: + 90:f6:47:a2:03:4f:96:4d:9d:4f:c1:ea:ea:9c:a2: + fe:34:2e:de:b7:ca:1b:76:a4:b7:ad:9f:e9:a8:d4: + 78:3f:78:fe:f2:38:09:36:1d:d2:16:02:c8:ec:2a: + 68:af:f5:8e:94:ef:2d:13:7a:1e:42:4a:1d:15:31: + ae:0c:04:57:fc:61:73:f3:31:56:86:31:80:a0:c4: + 11:6e:30:76:e3:94:f0:5f:04:c4:ac:87:72:89:98: + c5:9d:cc:57:08:9a:f4:0c:fc:7d:7a:05:3a:fa:47: + 80:39:b6:cf:84:13:77:6f:27:ea:ff:96:67:17:08: + 6d:e9:0d:d6:23:50:30:b0:15:74:13:3e:e5:2f:ff: + 0e:cd:c4:0b:4a:5d:f0:d8:00:33:49:66:eb:a1:18: + 7c:59:2e:3d:28:b9:61:71:cb:b5:a5:ba:b8:ea:dc: + e2:70:6f:08:6a:dc:87:67:34:ef:df:30:72:dd:f3: + c9:3f:23:ff:35:e1:be:21:29:20:30:81:e4:19:a5: + 20:e9:25:ca:73:31:74:29:be:e2:42:d5:f3:b2:26: + 66:c7:68:fd:19:b3:e7:20:93:99:e8:5d:e0:5e:87: + e7:46:e8:25:9c:0a:29:24:d4:cd:58:86:52:40:24: + b2:7b:0f:98:12:20:24:f6:90:6c:47:c8:0d:bb:18: + 20:2e:d9:fd:fc:8b:f2:29:ea:87:74:95:e0:42:50: + 78:84:04:41:61:b0:f4:21:23:8f:2d:cb:28:21:f2: + 6a:6c:f4:1a:a6:c5:14:b4:37:65:4f:95:fd:80:c8: + f8:72:e5:25:6b:c4:60:b1:7b:6d:8e:4a:8a:73:ce: + 59:fb:70:7a:73:06:13:d9:d3:74:37:24:41:0a:11: + 6f:97:dc:e7:e4:7e:a1:bd:15:f2:ba:87:0f:3d:68: + 8a:16:07 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + A8:C1:C0:9B:91:A8:43:15:7C:5D:06:27:B4:2A:51:D8:97:0B:81:B1 + X509v3 Authority Key Identifier: + keyid:A8:C1:C0:9B:91:A8:43:15:7C:5D:06:27:B4:2A:51:D8:97:0B:81:B1 + + Signature Algorithm: sha512WithRSAEncryption + 9c:56:6f:01:7e:d1:bd:4c:f5:8a:c6:f0:26:1f:e4:e0:38:18: + cc:32:c3:29:3b:9d:41:29:34:61:c6:d7:f0:00:a1:eb:a4:72: + 8f:94:17:bc:13:2c:75:b4:57:ee:0a:7c:09:7a:dc:d5:ca:a1: + d0:34:13:f8:77:ab:9f:e5:fe:d8:1e:74:8a:85:07:8f:7f:cc: + 79:7a:ca:96:cd:cd:fd:4f:fb:fd:23:0d:90:f5:f4:5e:d3:c6: + 61:7d:9e:11:e0:02:ee:09:04:d9:07:dd:a6:8a:b7:0c:83:24: + bb:83:50:92:fe:60:75:11:3e:d8:9d:b0:8a:7a:b5:e0:9d:9b: + cb:90:52:4b:b0:93:2a:d4:3e:16:33:e5:9e:c6:65:15:3e:64: + 3b:04:3f:db:0c:8f:5f:5c:1d:69:1f:af:f3:e9:21:8c:f3:ef: + 97:f6:9a:b7:19:b6:84:74:9c:a3:54:b5:70:4e:63:d8:57:5d: + 53:21:9b:40:92:43:fa:d6:77:55:33:4f:64:d5:fb:d0:2c:6a: + 8e:6d:25:a6:ef:85:e8:02:c4:53:3e:b9:9e:87:bc:cc:35:1a: + de:a1:e9:8a:63:87:65:1e:11:2a:db:63:77:97:14:be:9a:14: + 99:11:b2:c0:ee:b0:4f:f8:14:21:32:43:4f:9f:ab:a2:cb:a8: + 0f:aa:3b:06:55:c6:12:29:57:08:d4:37:d7:87:27:ad:49:59: + a7:91:ab:44:7a:5e:8d:70:db:97:ce:48:50:b1:73:93:f6:f0: + 83:60:f9:cd:f1:e1:31:fd:5b:7c:71:21:63:14:14:aa:af:c5: + de:93:7e:68:b1:ec:22:a2:aa:90:75:9e:b5:43:72:ea:64:a3: + 84:4b:fd:0c:a8:26:6b:71:97:ee:56:63:66:e8:42:54:f9:c7: + 1d:df:d0:8f:5b:df:c8:30:6f:88:fe:0d:c4:33:1c:53:a8:a3: + fd:48:10:f2:e4:0a:4e:e1:15:57:fc:6e:64:30:c2:55:11:dc: + ea:a9:cd:4a:54:ac:29:63:44:cf:4a:40:a0:d6:68:59:1b:33: + f9:ef:3a:8b:db:20:92:dc:42:84:bf:01:ab:87:c0:d5:20:82: + db:c6:b9:83:85:42:5c:0f:43:3b:6a:49:35:d5:98:f4:15:bf: + fa:61:81:0c:09:20:18:d2:d0:17:0c:cb:48:00:50:e9:76:82: + 8c:64:d7:3a:a0:07:55:cc:1e:31:c0:ef:3a:b4:65:fb:e3:bf: + 42:6b:9e:0f:a8:bd:6b:98:dc:d8:db:cb:8b:a4:dd:d7:59:f4: + 6e:dd:fe:aa:c3:91:d0:2e:42:07:c0:0c:4d:53:cd:24:b1:4c: + 5b:1e:51:f4:df:e9:92:fa +SHA1 Fingerprint=22:FD:D0:B7:FD:A2:4E:0D:AC:49:2C:A0:AC:A6:7B:6A:1F:E3:F7:66 diff --git a/system/etc/security/cacerts/04f60c28.0 b/system/etc/security/cacerts/04f60c28.0 new file mode 100644 index 0000000000000000000000000000000000000000..dec2f4ed8a62dcf13602cf3f49f8d9725313c9c3 --- /dev/null +++ b/system/etc/security/cacerts/04f60c28.0 @@ -0,0 +1,54 @@ +-----BEGIN CERTIFICATE----- +MIICjzCCAhWgAwIBAgIQXIuZxVqUxdJxVt7NiYDMJjAKBggqhkjOPQQDAzCBiDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNl +eSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMT +JVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMjAx +MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNVBAgT +Ck5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVUaGUg +VVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlm +aWNhdGlvbiBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQarFRaqflo +I+d61SRvU8Za2EurxtW20eZzca7dnNYMYf3boIkDuAUU7FfO7l0/4iGzzvfUinng +o4N+LZfQYcTxmdwlkWOrfzCjtHDix6EznPO/LlxTsV+zfTJ/ijTjeXmjQjBAMB0G +A1UdDgQWBBQ64QmG1M8ZwpZ2dEl23OA1xmNjmjAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjA2Z6EWCNzklwBBHU6+4WMB +zzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbW +RNZu9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 5c:8b:99:c5:5a:94:c5:d2:71:56:de:cd:89:80:cc:26 + Signature Algorithm: ecdsa-with-SHA384 + Issuer: C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust ECC Certification Authority + Validity + Not Before: Feb 1 00:00:00 2010 GMT + Not After : Jan 18 23:59:59 2038 GMT + Subject: C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust ECC Certification Authority + Subject Public Key Info: + Public Key Algorithm: id-ecPublicKey + Public-Key: (384 bit) + pub: + 04:1a:ac:54:5a:a9:f9:68:23:e7:7a:d5:24:6f:53: + c6:5a:d8:4b:ab:c6:d5:b6:d1:e6:73:71:ae:dd:9c: + d6:0c:61:fd:db:a0:89:03:b8:05:14:ec:57:ce:ee: + 5d:3f:e2:21:b3:ce:f7:d4:8a:79:e0:a3:83:7e:2d: + 97:d0:61:c4:f1:99:dc:25:91:63:ab:7f:30:a3:b4: + 70:e2:c7:a1:33:9c:f3:bf:2e:5c:53:b1:5f:b3:7d: + 32:7f:8a:34:e3:79:79 + ASN1 OID: secp384r1 + X509v3 extensions: + X509v3 Subject Key Identifier: + 3A:E1:09:86:D4:CF:19:C2:96:76:74:49:76:DC:E0:35:C6:63:63:9A + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: ecdsa-with-SHA384 + 30:65:02:30:36:67:a1:16:08:dc:e4:97:00:41:1d:4e:be:e1: + 63:01:cf:3b:aa:42:11:64:a0:9d:94:39:02:11:79:5c:7b:1d: + fa:64:b9:ee:16:42:b3:bf:8a:c2:09:c4:ec:e4:b1:4d:02:31: + 00:e9:2a:61:47:8c:52:4a:4b:4e:18:70:f6:d6:44:d6:6e:f5: + 83:ba:6d:58:bd:24:d9:56:48:ea:ef:c4:a2:46:81:88:6a:3a: + 46:d1:a9:9b:4d:c9:61:da:d1:5d:57:6a:18 +SHA1 Fingerprint=D1:CB:CA:5D:B2:D5:2A:7F:69:3B:67:4D:E5:F0:5A:1D:0C:95:7D:F0 diff --git a/system/etc/security/cacerts/0d5a4e1c.0 b/system/etc/security/cacerts/0d5a4e1c.0 new file mode 100644 index 0000000000000000000000000000000000000000..2a40cf60ad77c354fbfeca2cc7758affbea3430f --- /dev/null +++ b/system/etc/security/cacerts/0d5a4e1c.0 @@ -0,0 +1,82 @@ +-----BEGIN CERTIFICATE----- +MIIEJzCCAw+gAwIBAgIHAI4X/iQggTANBgkqhkiG9w0BAQsFADCBsTELMAkGA1UE +BhMCVFIxDzANBgNVBAcMBkFua2FyYTFNMEsGA1UECgxEVMOcUktUUlVTVCBCaWxn +aSDEsGxldGnFn2ltIHZlIEJpbGnFn2ltIEfDvHZlbmxpxJ9pIEhpem1ldGxlcmkg +QS7Fni4xQjBABgNVBAMMOVTDnFJLVFJVU1QgRWxla3Ryb25payBTZXJ0aWZpa2Eg +SGl6bWV0IFNhxJ9sYXnEsWPEsXPEsSBINTAeFw0xMzA0MzAwODA3MDFaFw0yMzA0 +MjgwODA3MDFaMIGxMQswCQYDVQQGEwJUUjEPMA0GA1UEBwwGQW5rYXJhMU0wSwYD +VQQKDERUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUgQmlsacWfaW0gR8O8 +dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWeLjFCMEAGA1UEAww5VMOcUktUUlVTVCBF +bGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxIEg1MIIB +IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApCUZ4WWe60ghUEoI5RHwWrom +/4NZzkQqL/7hzmAD/I0Dpe3/a6i6zDQGn1k19uwsu537jVJp45wnEFPzpALFp/kR +Gml1bsMdi9GYjZOHp3GXDSHHmflS0yxjXVW86B8BSLlg/kJK9siArs1mep5Fimh3 +4khon6La8eHBEJ/rPCmBp+EyCNSgBbGM+42WAA4+Jd9ThiI7/PS98wl+d+yG6w8z +5UNP9FR1bSmZLmZaQ9/LXMrI5Tjxfjs1nQ/0xVqhzPMggCTTV+wVunUlm+hkS7M0 +hO8EuPbJbKoCPrZV4jI3X/xml1/N1p7HIL9Nxqw/dV8c7TKcfGkAaZHjIxhT6QID +AQABo0IwQDAdBgNVHQ4EFgQUVpkHHtOsDGlktAxQR95DLL4gwPswDgYDVR0PAQH/ +BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAJ5FdnsX +SDLyOIspve6WSk6BGLFRRyDN0GSxDsnZAdkJzsiZ3GglE9Rc8qPoBP5yCccLqh0l +VX6Wmle3usURehnmp349hQ71+S4pL+f5bFgWV1Al9j4uPqrtd3GqqpmWRgqujuwq +URawXs3qZwQcWDD1YIq9pr1N5Za0/EKJAWv2cMhQOQwt1WbZyNKzMrcbGW3LM/nf +peYVhDfwwvJllpKQd/Ct9JDpEXjXk4nAPQu6KfTomZ1yju2dL+6SfaHx/126M2CF +Yv4HAqGEVka+lgqaE9chTLd8B59OTj+RdPsnnRHM3eaxynFNExc5JsUpISuTKWqW ++qtB4Uu2NQvAmxU= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 156233699172481 (0x8e17fe242081) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=TR, L=Ankara, O=T\xC3\x9CRKTRUST Bilgi \xC4\xB0leti\xC5\x9Fim ve Bili\xC5\x9Fim G\xC3\xBCvenli\xC4\x9Fi Hizmetleri A.\xC5\x9E., CN=T\xC3\x9CRKTRUST Elektronik Sertifika Hizmet Sa\xC4\x9Flay\xC4\xB1c\xC4\xB1s\xC4\xB1 H5 + Validity + Not Before: Apr 30 08:07:01 2013 GMT + Not After : Apr 28 08:07:01 2023 GMT + Subject: C=TR, L=Ankara, O=T\xC3\x9CRKTRUST Bilgi \xC4\xB0leti\xC5\x9Fim ve Bili\xC5\x9Fim G\xC3\xBCvenli\xC4\x9Fi Hizmetleri A.\xC5\x9E., CN=T\xC3\x9CRKTRUST Elektronik Sertifika Hizmet Sa\xC4\x9Flay\xC4\xB1c\xC4\xB1s\xC4\xB1 H5 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:a4:25:19:e1:65:9e:eb:48:21:50:4a:08:e5:11: + f0:5a:ba:26:ff:83:59:ce:44:2a:2f:fe:e1:ce:60: + 03:fc:8d:03:a5:ed:ff:6b:a8:ba:cc:34:06:9f:59: + 35:f6:ec:2c:bb:9d:fb:8d:52:69:e3:9c:27:10:53: + f3:a4:02:c5:a7:f9:11:1a:69:75:6e:c3:1d:8b:d1: + 98:8d:93:87:a7:71:97:0d:21:c7:99:f9:52:d3:2c: + 63:5d:55:bc:e8:1f:01:48:b9:60:fe:42:4a:f6:c8: + 80:ae:cd:66:7a:9e:45:8a:68:77:e2:48:68:9f:a2: + da:f1:e1:c1:10:9f:eb:3c:29:81:a7:e1:32:08:d4: + a0:05:b1:8c:fb:8d:96:00:0e:3e:25:df:53:86:22: + 3b:fc:f4:bd:f3:09:7e:77:ec:86:eb:0f:33:e5:43: + 4f:f4:54:75:6d:29:99:2e:66:5a:43:df:cb:5c:ca: + c8:e5:38:f1:7e:3b:35:9d:0f:f4:c5:5a:a1:cc:f3: + 20:80:24:d3:57:ec:15:ba:75:25:9b:e8:64:4b:b3: + 34:84:ef:04:b8:f6:c9:6c:aa:02:3e:b6:55:e2:32: + 37:5f:fc:66:97:5f:cd:d6:9e:c7:20:bf:4d:c6:ac: + 3f:75:5f:1c:ed:32:9c:7c:69:00:69:91:e3:23:18: + 53:e9 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 56:99:07:1E:D3:AC:0C:69:64:B4:0C:50:47:DE:43:2C:BE:20:C0:FB + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha256WithRSAEncryption + 9e:45:76:7b:17:48:32:f2:38:8b:29:bd:ee:96:4a:4e:81:18: + b1:51:47:20:cd:d0:64:b1:0e:c9:d9:01:d9:09:ce:c8:99:dc: + 68:25:13:d4:5c:f2:a3:e8:04:fe:72:09:c7:0b:aa:1d:25:55: + 7e:96:9a:57:b7:ba:c5:11:7a:19:e6:a7:7e:3d:85:0e:f5:f9: + 2e:29:2f:e7:f9:6c:58:16:57:50:25:f6:3e:2e:3e:aa:ed:77: + 71:aa:aa:99:96:46:0a:ae:8e:ec:2a:51:16:b0:5e:cd:ea:67: + 04:1c:58:30:f5:60:8a:bd:a6:bd:4d:e5:96:b4:fc:42:89:01: + 6b:f6:70:c8:50:39:0c:2d:d5:66:d9:c8:d2:b3:32:b7:1b:19: + 6d:cb:33:f9:df:a5:e6:15:84:37:f0:c2:f2:65:96:92:90:77: + f0:ad:f4:90:e9:11:78:d7:93:89:c0:3d:0b:ba:29:f4:e8:99: + 9d:72:8e:ed:9d:2f:ee:92:7d:a1:f1:ff:5d:ba:33:60:85:62: + fe:07:02:a1:84:56:46:be:96:0a:9a:13:d7:21:4c:b7:7c:07: + 9f:4e:4e:3f:91:74:fb:27:9d:11:cc:dd:e6:b1:ca:71:4d:13: + 17:39:26:c5:29:21:2b:93:29:6a:96:fa:ab:41:e1:4b:b6:35: + 0b:c0:9b:15 +SHA1 Fingerprint=C4:18:F6:4D:46:D1:DF:00:3D:27:30:13:72:43:A9:12:11:C6:75:FB diff --git a/system/etc/security/cacerts/0d69c7e1.0 b/system/etc/security/cacerts/0d69c7e1.0 new file mode 100644 index 0000000000000000000000000000000000000000..84c387e89a838f8d00ee098e654ef88f9873e07e --- /dev/null +++ b/system/etc/security/cacerts/0d69c7e1.0 @@ -0,0 +1,47 @@ +-----BEGIN CERTIFICATE----- +MIIB4TCCAYegAwIBAgIRKjikHJYKBN5CsiilC+g0mAIwCgYIKoZIzj0EAwIwUDEk +MCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpH +bG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoX +DTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBD +QSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEuMZ5049sJQ6fLjkZHAOkrprlOQcJ +FspjsbmG+IpXwVfOQvpzofdlQv8ewQCybnMO/8ch5RikqtlxP6jUuc6MHaNCMEAw +DgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFFSwe61F +uOJAf/sKbvu+M8k8o4TVMAoGCCqGSM49BAMCA0gAMEUCIQDckqGgE6bPA7DmxCGX +kPoUVy0D7O48027KqGx2vKLeuwIgJ6iFJzWbVsaj8kfSt24bAgAXqmemFZHe+pTs +ewv4n4Q= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 2a:38:a4:1c:96:0a:04:de:42:b2:28:a5:0b:e8:34:98:02 + Signature Algorithm: ecdsa-with-SHA256 + Issuer: OU=GlobalSign ECC Root CA - R4, O=GlobalSign, CN=GlobalSign + Validity + Not Before: Nov 13 00:00:00 2012 GMT + Not After : Jan 19 03:14:07 2038 GMT + Subject: OU=GlobalSign ECC Root CA - R4, O=GlobalSign, CN=GlobalSign + Subject Public Key Info: + Public Key Algorithm: id-ecPublicKey + Public-Key: (256 bit) + pub: + 04:b8:c6:79:d3:8f:6c:25:0e:9f:2e:39:19:1c:03: + a4:ae:9a:e5:39:07:09:16:ca:63:b1:b9:86:f8:8a: + 57:c1:57:ce:42:fa:73:a1:f7:65:42:ff:1e:c1:00: + b2:6e:73:0e:ff:c7:21:e5:18:a4:aa:d9:71:3f:a8: + d4:b9:ce:8c:1d + ASN1 OID: prime256v1 + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 54:B0:7B:AD:45:B8:E2:40:7F:FB:0A:6E:FB:BE:33:C9:3C:A3:84:D5 + Signature Algorithm: ecdsa-with-SHA256 + 30:45:02:21:00:dc:92:a1:a0:13:a6:cf:03:b0:e6:c4:21:97: + 90:fa:14:57:2d:03:ec:ee:3c:d3:6e:ca:a8:6c:76:bc:a2:de: + bb:02:20:27:a8:85:27:35:9b:56:c6:a3:f2:47:d2:b7:6e:1b: + 02:00:17:aa:67:a6:15:91:de:fa:94:ec:7b:0b:f8:9f:84 +SHA1 Fingerprint=69:69:56:2E:40:80:F4:24:A1:E7:19:9F:14:BA:F3:EE:58:AB:6A:BB diff --git a/system/etc/security/cacerts/10531352.0 b/system/etc/security/cacerts/10531352.0 new file mode 100644 index 0000000000000000000000000000000000000000..be3e88cd333b4f2d3eeb622ee4a3ed22219a2afb --- /dev/null +++ b/system/etc/security/cacerts/10531352.0 @@ -0,0 +1,81 @@ +-----BEGIN CERTIFICATE----- +MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT +HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVs +ZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5 +MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNVBAYTAlVTMRAwDgYD +VQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFy +ZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2Vy +dmljZXMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20p +OsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm2 +8xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4PahHQUw2eeBGg6345AWh1K +Ts9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLPLJGmpufe +hRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk +6mFBrMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAw +DwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+q +AdcwKziIorhtSpzyEZGDMA0GCSqGSIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMI +bw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPPE95Dz+I0swSdHynVv/heyNXB +ve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTyxQGjhdByPq1z +qwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd +iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn +0q23KXB56jzaYyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCN +sSi6 +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 0 (0x0) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=US, ST=Arizona, L=Scottsdale, O=Starfield Technologies, Inc., CN=Starfield Services Root Certificate Authority - G2 + Validity + Not Before: Sep 1 00:00:00 2009 GMT + Not After : Dec 31 23:59:59 2037 GMT + Subject: C=US, ST=Arizona, L=Scottsdale, O=Starfield Technologies, Inc., CN=Starfield Services Root Certificate Authority - G2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:d5:0c:3a:c4:2a:f9:4e:e2:f5:be:19:97:5f:8e: + 88:53:b1:1f:3f:cb:cf:9f:20:13:6d:29:3a:c8:0f: + 7d:3c:f7:6b:76:38:63:d9:36:60:a8:9b:5e:5c:00: + 80:b2:2f:59:7f:f6:87:f9:25:43:86:e7:69:1b:52: + 9a:90:e1:71:e3:d8:2d:0d:4e:6f:f6:c8:49:d9:b6: + f3:1a:56:ae:2b:b6:74:14:eb:cf:fb:26:e3:1a:ba: + 1d:96:2e:6a:3b:58:94:89:47:56:ff:25:a0:93:70: + 53:83:da:84:74:14:c3:67:9e:04:68:3a:df:8e:40: + 5a:1d:4a:4e:cf:43:91:3b:e7:56:d6:00:70:cb:52: + ee:7b:7d:ae:3a:e7:bc:31:f9:45:f6:c2:60:cf:13: + 59:02:2b:80:cc:34:47:df:b9:de:90:65:6d:02:cf: + 2c:91:a6:a6:e7:de:85:18:49:7c:66:4e:a3:3a:6d: + a9:b5:ee:34:2e:ba:0d:03:b8:33:df:47:eb:b1:6b: + 8d:25:d9:9b:ce:81:d1:45:46:32:96:70:87:de:02: + 0e:49:43:85:b6:6c:73:bb:64:ea:61:41:ac:c9:d4: + 54:df:87:2f:c7:22:b2:26:cc:9f:59:54:68:9f:fc: + be:2a:2f:c4:55:1c:75:40:60:17:85:02:55:39:8b: + 7f:05 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + 9C:5F:00:DF:AA:01:D7:30:2B:38:88:A2:B8:6D:4A:9C:F2:11:91:83 + Signature Algorithm: sha256WithRSAEncryption + 4b:36:a6:84:77:69:dd:3b:19:9f:67:23:08:6f:0e:61:c9:fd: + 84:dc:5f:d8:36:81:cd:d8:1b:41:2d:9f:60:dd:c7:1a:68:d9: + d1:6e:86:e1:88:23:cf:13:de:43:cf:e2:34:b3:04:9d:1f:29: + d5:bf:f8:5e:c8:d5:c1:bd:ee:92:6f:32:74:f2:91:82:2f:bd: + 82:42:7a:ad:2a:b7:20:7d:4d:bc:7a:55:12:c2:15:ea:bd:f7: + 6a:95:2e:6c:74:9f:cf:1c:b4:f2:c5:01:a3:85:d0:72:3e:ad: + 73:ab:0b:9b:75:0c:6d:45:b7:8e:94:ac:96:37:b5:a0:d0:8f: + 15:47:0e:e3:e8:83:dd:8f:fd:ef:41:01:77:cc:27:a9:62:85: + 33:f2:37:08:ef:71:cf:77:06:de:c8:19:1d:88:40:cf:7d:46: + 1d:ff:1e:c7:e1:ce:ff:23:db:c6:fa:8d:55:4e:a9:02:e7:47: + 11:46:3e:f4:fd:bd:7b:29:26:bb:a9:61:62:37:28:b6:2d:2a: + f6:10:86:64:c9:70:a7:d2:ad:b7:29:70:79:ea:3c:da:63:25: + 9f:fd:68:b7:30:ec:70:fb:75:8a:b7:6d:60:67:b2:1e:c8:b9: + e9:d8:a8:6f:02:8b:67:0d:4d:26:57:71:da:20:fc:c1:4a:50: + 8d:b1:28:ba +SHA1 Fingerprint=92:5A:8F:8D:2C:6D:04:E0:66:5F:59:6A:FF:22:D8:63:E8:25:6F:3F diff --git a/system/etc/security/cacerts/111e6273.0 b/system/etc/security/cacerts/111e6273.0 new file mode 100644 index 0000000000000000000000000000000000000000..97aa17a0788dea210ab8d2908d33d08ed248f138 --- /dev/null +++ b/system/etc/security/cacerts/111e6273.0 @@ -0,0 +1,88 @@ +-----BEGIN CERTIFICATE----- +MIIDujCCAqKgAwIBAgILBAAAAAABD4Ym5g0wDQYJKoZIhvcNAQEFBQAwTDEgMB4G +A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjIxEzARBgNVBAoTCkdsb2JhbFNp +Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDYxMjE1MDgwMDAwWhcNMjExMjE1 +MDgwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMjETMBEG +A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAKbPJA6+Lm8omUVCxKs+IVSbC9N/hHD6ErPL +v4dfxn+G07IwXNb9rfF73OX4YJYJkhD10FPe+3t+c4isUoh7SqbKSaZeqKeMWhG8 +eoLrvozps6yWJQeXSpkqBy+0Hne/ig+1AnwblrjFuTosvNYSuetZfeLQBoZfXklq +tTleiDTsvHgMCJiEbKjNS7SgfQx5TfC4LcshytVsW33hoCmEofnTlEnLJGKRILzd +C9XZzPnqJworc5HGnRusyMvo4KD0L5CLTfuwNhv2GXqF4G3yYROIXJ/gkwpRl4pa +zq+r1feqCapgvdzZX99yqWATXgAByUr6P6TqBwMhAo6CygPCm48CAwEAAaOBnDCB +mTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUm+IH +V2ccHsBqBt5ZtJot39wZhi4wNgYDVR0fBC8wLTAroCmgJ4YlaHR0cDovL2NybC5n +bG9iYWxzaWduLm5ldC9yb290LXIyLmNybDAfBgNVHSMEGDAWgBSb4gdXZxwewGoG +3lm0mi3f3BmGLjANBgkqhkiG9w0BAQUFAAOCAQEAmYFThxxol4aR7OBKuEQLq4Gs +J0/WwbgcQ3izDJr86iw8bmEbTUsp9Z8FHSbBuOmDAGJFtqkIk7mpM0sYmsL4h4hO +291xNBrBVNpGP+DTKqttVCL1OmLNIG+6KYnX3ZHu01yiPqFbQfXf5WRDLenVOavS +ot+3i9DAgBkcRcAtjOj4LaR0VknFBbVPFd5uRHg5h6h+u/N5GJG79G+dwfCMNYxd +AfvDbbnvRG15RjF+Cv6pgsH/76tuIMRQyV+dTZsXjAzlAcmgQWpzU/qlULRuJQ/7 +TBj0/VLZjmmx6BEP3ojY+x1J96relc8geMJgEtslQIxq/H5COEBkEveegeGTLg== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 04:00:00:00:00:01:0f:86:26:e6:0d + Signature Algorithm: sha1WithRSAEncryption + Issuer: OU=GlobalSign Root CA - R2, O=GlobalSign, CN=GlobalSign + Validity + Not Before: Dec 15 08:00:00 2006 GMT + Not After : Dec 15 08:00:00 2021 GMT + Subject: OU=GlobalSign Root CA - R2, O=GlobalSign, CN=GlobalSign + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:a6:cf:24:0e:be:2e:6f:28:99:45:42:c4:ab:3e: + 21:54:9b:0b:d3:7f:84:70:fa:12:b3:cb:bf:87:5f: + c6:7f:86:d3:b2:30:5c:d6:fd:ad:f1:7b:dc:e5:f8: + 60:96:09:92:10:f5:d0:53:de:fb:7b:7e:73:88:ac: + 52:88:7b:4a:a6:ca:49:a6:5e:a8:a7:8c:5a:11:bc: + 7a:82:eb:be:8c:e9:b3:ac:96:25:07:97:4a:99:2a: + 07:2f:b4:1e:77:bf:8a:0f:b5:02:7c:1b:96:b8:c5: + b9:3a:2c:bc:d6:12:b9:eb:59:7d:e2:d0:06:86:5f: + 5e:49:6a:b5:39:5e:88:34:ec:bc:78:0c:08:98:84: + 6c:a8:cd:4b:b4:a0:7d:0c:79:4d:f0:b8:2d:cb:21: + ca:d5:6c:5b:7d:e1:a0:29:84:a1:f9:d3:94:49:cb: + 24:62:91:20:bc:dd:0b:d5:d9:cc:f9:ea:27:0a:2b: + 73:91:c6:9d:1b:ac:c8:cb:e8:e0:a0:f4:2f:90:8b: + 4d:fb:b0:36:1b:f6:19:7a:85:e0:6d:f2:61:13:88: + 5c:9f:e0:93:0a:51:97:8a:5a:ce:af:ab:d5:f7:aa: + 09:aa:60:bd:dc:d9:5f:df:72:a9:60:13:5e:00:01: + c9:4a:fa:3f:a4:ea:07:03:21:02:8e:82:ca:03:c2: + 9b:8f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 9B:E2:07:57:67:1C:1E:C0:6A:06:DE:59:B4:9A:2D:DF:DC:19:86:2E + X509v3 CRL Distribution Points: + + Full Name: + URI:http://crl.globalsign.net/root-r2.crl + + X509v3 Authority Key Identifier: + keyid:9B:E2:07:57:67:1C:1E:C0:6A:06:DE:59:B4:9A:2D:DF:DC:19:86:2E + + Signature Algorithm: sha1WithRSAEncryption + 99:81:53:87:1c:68:97:86:91:ec:e0:4a:b8:44:0b:ab:81:ac: + 27:4f:d6:c1:b8:1c:43:78:b3:0c:9a:fc:ea:2c:3c:6e:61:1b: + 4d:4b:29:f5:9f:05:1d:26:c1:b8:e9:83:00:62:45:b6:a9:08: + 93:b9:a9:33:4b:18:9a:c2:f8:87:88:4e:db:dd:71:34:1a:c1: + 54:da:46:3f:e0:d3:2a:ab:6d:54:22:f5:3a:62:cd:20:6f:ba: + 29:89:d7:dd:91:ee:d3:5c:a2:3e:a1:5b:41:f5:df:e5:64:43: + 2d:e9:d5:39:ab:d2:a2:df:b7:8b:d0:c0:80:19:1c:45:c0:2d: + 8c:e8:f8:2d:a4:74:56:49:c5:05:b5:4f:15:de:6e:44:78:39: + 87:a8:7e:bb:f3:79:18:91:bb:f4:6f:9d:c1:f0:8c:35:8c:5d: + 01:fb:c3:6d:b9:ef:44:6d:79:46:31:7e:0a:fe:a9:82:c1:ff: + ef:ab:6e:20:c4:50:c9:5f:9d:4d:9b:17:8c:0c:e5:01:c9:a0: + 41:6a:73:53:fa:a5:50:b4:6e:25:0f:fb:4c:18:f4:fd:52:d9: + 8e:69:b1:e8:11:0f:de:88:d8:fb:1d:49:f7:aa:de:95:cf:20: + 78:c2:60:12:db:25:40:8c:6a:fc:7e:42:38:40:64:12:f7:9e: + 81:e1:93:2e +SHA1 Fingerprint=75:E0:AB:B6:13:85:12:27:1C:04:F8:5F:DD:DE:38:E4:B7:24:2E:FE diff --git a/system/etc/security/cacerts/12d55845.0 b/system/etc/security/cacerts/12d55845.0 new file mode 100644 index 0000000000000000000000000000000000000000..29cbb95e842dc6d8b3e7d7fd9ddd93d0687f19e5 --- /dev/null +++ b/system/etc/security/cacerts/12d55845.0 @@ -0,0 +1,78 @@ +-----BEGIN CERTIFICATE----- +MIIDSjCCAjKgAwIBAgIQRK+wgNajJ7qJMDmGLvhAazANBgkqhkiG9w0BAQUFADA/ +MSQwIgYDVQQKExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMT +DkRTVCBSb290IENBIFgzMB4XDTAwMDkzMDIxMTIxOVoXDTIxMDkzMDE0MDExNVow +PzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3QgQ28uMRcwFQYDVQQD +Ew5EU1QgUm9vdCBDQSBYMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB +AN+v6ZdQCINXtMxiZfaQguzH0yxrMMpb7NnDfcdAwRgUi+DoM3ZJKuM/IUmTrE4O +rz5Iy2Xu/NMhD2XSKtkyj4zl93ewEnu1lcCJo6m67XMuegwGMoOifooUMM0RoOEq +OLl5CjH9UL2AZd+3UWODyOKIYepLYYHsUmu5ouJLGiifSKOeDNoJjj4XLh7dIN9b +xiqKqy69cK3FCxolkHRyxXtqqzTWMIn/5WgTe1QLyNau7Fqckh49ZLOMxt+/yUFw +7BZy1SbsOFU5Q9D8/RhcQPGX69Wam40dutolucbY38EVAjqr2m7xPi71XAicPNaD +aeQQmxkqtilX4+U9m5/wAl0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNV +HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMSnsaR7LHH62+FLkHX/xBVghYkQMA0GCSqG +SIb3DQEBBQUAA4IBAQCjGiybFwBcqR7uKGY3Or+Dxz9LwwmglSBd49lZRNI+DT69 +ikugdB/OEIKcdBodfpga3csTS7MgROSR6cz8faXbauX+5v3gTt23ADq1cEmv8uXr +AvHRAosZy5Q6XkjEGB5YGV8eAlrwDPGxrancWYaLbumR9YbK+rlmM6pZW87ipxZz +R8srzJmwN0jP41ZL9c8PDHIyh8bwRLtTcm1D9SZImlJnt1ir/md2cXjbDaJWFBM5 +JDGFoqgCWjBH4d1QB7wCCZAA62RjYJsWvIjJEubSfZGL+T0yjWW06XyxV3bqxbYo +Ob8VZRzI9neWagqNdwvYkQsEjgfbKbYK7p2CNTUQ +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 44:af:b0:80:d6:a3:27:ba:89:30:39:86:2e:f8:40:6b + Signature Algorithm: sha1WithRSAEncryption + Issuer: O=Digital Signature Trust Co., CN=DST Root CA X3 + Validity + Not Before: Sep 30 21:12:19 2000 GMT + Not After : Sep 30 14:01:15 2021 GMT + Subject: O=Digital Signature Trust Co., CN=DST Root CA X3 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:df:af:e9:97:50:08:83:57:b4:cc:62:65:f6:90: + 82:ec:c7:d3:2c:6b:30:ca:5b:ec:d9:c3:7d:c7:40: + c1:18:14:8b:e0:e8:33:76:49:2a:e3:3f:21:49:93: + ac:4e:0e:af:3e:48:cb:65:ee:fc:d3:21:0f:65:d2: + 2a:d9:32:8f:8c:e5:f7:77:b0:12:7b:b5:95:c0:89: + a3:a9:ba:ed:73:2e:7a:0c:06:32:83:a2:7e:8a:14: + 30:cd:11:a0:e1:2a:38:b9:79:0a:31:fd:50:bd:80: + 65:df:b7:51:63:83:c8:e2:88:61:ea:4b:61:81:ec: + 52:6b:b9:a2:e2:4b:1a:28:9f:48:a3:9e:0c:da:09: + 8e:3e:17:2e:1e:dd:20:df:5b:c6:2a:8a:ab:2e:bd: + 70:ad:c5:0b:1a:25:90:74:72:c5:7b:6a:ab:34:d6: + 30:89:ff:e5:68:13:7b:54:0b:c8:d6:ae:ec:5a:9c: + 92:1e:3d:64:b3:8c:c6:df:bf:c9:41:70:ec:16:72: + d5:26:ec:38:55:39:43:d0:fc:fd:18:5c:40:f1:97: + eb:d5:9a:9b:8d:1d:ba:da:25:b9:c6:d8:df:c1:15: + 02:3a:ab:da:6e:f1:3e:2e:f5:5c:08:9c:3c:d6:83: + 69:e4:10:9b:19:2a:b6:29:57:e3:e5:3d:9b:9f:f0: + 02:5d + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + C4:A7:B1:A4:7B:2C:71:FA:DB:E1:4B:90:75:FF:C4:15:60:85:89:10 + Signature Algorithm: sha1WithRSAEncryption + a3:1a:2c:9b:17:00:5c:a9:1e:ee:28:66:37:3a:bf:83:c7:3f: + 4b:c3:09:a0:95:20:5d:e3:d9:59:44:d2:3e:0d:3e:bd:8a:4b: + a0:74:1f:ce:10:82:9c:74:1a:1d:7e:98:1a:dd:cb:13:4b:b3: + 20:44:e4:91:e9:cc:fc:7d:a5:db:6a:e5:fe:e6:fd:e0:4e:dd: + b7:00:3a:b5:70:49:af:f2:e5:eb:02:f1:d1:02:8b:19:cb:94: + 3a:5e:48:c4:18:1e:58:19:5f:1e:02:5a:f0:0c:f1:b1:ad:a9: + dc:59:86:8b:6e:e9:91:f5:86:ca:fa:b9:66:33:aa:59:5b:ce: + e2:a7:16:73:47:cb:2b:cc:99:b0:37:48:cf:e3:56:4b:f5:cf: + 0f:0c:72:32:87:c6:f0:44:bb:53:72:6d:43:f5:26:48:9a:52: + 67:b7:58:ab:fe:67:76:71:78:db:0d:a2:56:14:13:39:24:31: + 85:a2:a8:02:5a:30:47:e1:dd:50:07:bc:02:09:90:00:eb:64: + 63:60:9b:16:bc:88:c9:12:e6:d2:7d:91:8b:f9:3d:32:8d:65: + b4:e9:7c:b1:57:76:ea:c5:b6:28:39:bf:15:65:1c:c8:f6:77: + 96:6a:0a:8d:77:0b:d8:91:0b:04:8e:07:db:29:b6:0a:ee:9d: + 82:35:35:10 +SHA1 Fingerprint=DA:C9:02:4F:54:D8:F6:DF:94:93:5F:B1:73:26:38:CA:6A:D7:7C:13 diff --git a/system/etc/security/cacerts/17b51fe6.0 b/system/etc/security/cacerts/17b51fe6.0 new file mode 100644 index 0000000000000000000000000000000000000000..f47a60f06a0a254926d9f0e64abc794db3ec3074 --- /dev/null +++ b/system/etc/security/cacerts/17b51fe6.0 @@ -0,0 +1,87 @@ +-----BEGIN CERTIFICATE----- +MIIDkjCCAnqgAwIBAgIRAIW9S/PY2uNp9pTXX8OlRCMwDQYJKoZIhvcNAQEFBQAw +PTELMAkGA1UEBhMCRlIxETAPBgNVBAoTCENlcnRwbHVzMRswGQYDVQQDExJDbGFz +cyAyIFByaW1hcnkgQ0EwHhcNOTkwNzA3MTcwNTAwWhcNMTkwNzA2MjM1OTU5WjA9 +MQswCQYDVQQGEwJGUjERMA8GA1UEChMIQ2VydHBsdXMxGzAZBgNVBAMTEkNsYXNz +IDIgUHJpbWFyeSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANxQ +ltAS+DXSCHh6tlJw/W/uz7kRy1134ezpfgSN1sxvc0NXYKwzCkTsA18cgCSR5aiR +VhKC9+Ar9NuuYS6JEI1rbLqzAr3VNsVINyPi8Fo3UjMXEuLRYE2+L0ER4/YXJQyL +kcAbmXuZVg2v7tK8R1fjeUl7NIknJITesezpWE7+Tt9avkGtrAjFGA7v0lPubNCd +EgETjdyAYveVqUSISnFOYFWe2yMZeVYHDD9jC1yw4r5+FfyUM1hBOHTE4Y+L3yas +H7WLO7dDWWuwJKZtkIvEcupdM5i3y95ee++U8Rs+yskhwcWYAqqi9lt3m/V+llU0 +HGdpwPFC40es/CgcZlUCAwEAAaOBjDCBiTAPBgNVHRMECDAGAQH/AgEKMAsGA1Ud +DwQEAwIBBjAdBgNVHQ4EFgQU43Mt38sOKAze3bOkynm4jrvoMIkwEQYJYIZIAYb4 +QgEBBAQDAgEGMDcGA1UdHwQwMC4wLKAqoCiGJmh0dHA6Ly93d3cuY2VydHBsdXMu +Y29tL0NSTC9jbGFzczIuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQCnVM+IRBnL39R/ +AN9WM2K191EBkOvDP9GIROkkXe/nFL0gt5o8AP5tn9uQ3Nf0YtaLcF3n5QRIqWh8 +yfFC82x/xXp8HVGIutIKPidd3i1RTtMTZGnkLuPT55sJmabglZvOGtd/vjzOUrMR +FcEPF80Du5wlFbqidon8BvEY0JNLDnyCt6X09l/+7UCmnYR0ObncHoUW2ikbhiMA +ybuJfm6AiB4vFLQDJKgybwOaRywwvlbGp0ICcBvqQNi6BQNwB6SW//1IMwrh3KWB +kJtN3X3n57LNXMhqlfil9o3EXXgIvnsG1knPGTZQIy4I5p4FTUcY1Rbpsda2ENW7 +l7+ijrRU +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 85:bd:4b:f3:d8:da:e3:69:f6:94:d7:5f:c3:a5:44:23 + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=FR, O=Certplus, CN=Class 2 Primary CA + Validity + Not Before: Jul 7 17:05:00 1999 GMT + Not After : Jul 6 23:59:59 2019 GMT + Subject: C=FR, O=Certplus, CN=Class 2 Primary CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:dc:50:96:d0:12:f8:35:d2:08:78:7a:b6:52:70: + fd:6f:ee:cf:b9:11:cb:5d:77:e1:ec:e9:7e:04:8d: + d6:cc:6f:73:43:57:60:ac:33:0a:44:ec:03:5f:1c: + 80:24:91:e5:a8:91:56:12:82:f7:e0:2b:f4:db:ae: + 61:2e:89:10:8d:6b:6c:ba:b3:02:bd:d5:36:c5:48: + 37:23:e2:f0:5a:37:52:33:17:12:e2:d1:60:4d:be: + 2f:41:11:e3:f6:17:25:0c:8b:91:c0:1b:99:7b:99: + 56:0d:af:ee:d2:bc:47:57:e3:79:49:7b:34:89:27: + 24:84:de:b1:ec:e9:58:4e:fe:4e:df:5a:be:41:ad: + ac:08:c5:18:0e:ef:d2:53:ee:6c:d0:9d:12:01:13: + 8d:dc:80:62:f7:95:a9:44:88:4a:71:4e:60:55:9e: + db:23:19:79:56:07:0c:3f:63:0b:5c:b0:e2:be:7e: + 15:fc:94:33:58:41:38:74:c4:e1:8f:8b:df:26:ac: + 1f:b5:8b:3b:b7:43:59:6b:b0:24:a6:6d:90:8b:c4: + 72:ea:5d:33:98:b7:cb:de:5e:7b:ef:94:f1:1b:3e: + ca:c9:21:c1:c5:98:02:aa:a2:f6:5b:77:9b:f5:7e: + 96:55:34:1c:67:69:c0:f1:42:e3:47:ac:fc:28:1c: + 66:55 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: + CA:TRUE, pathlen:10 + X509v3 Key Usage: + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + E3:73:2D:DF:CB:0E:28:0C:DE:DD:B3:A4:CA:79:B8:8E:BB:E8:30:89 + Netscape Cert Type: + SSL CA, S/MIME CA + X509v3 CRL Distribution Points: + + Full Name: + URI:http://www.certplus.com/CRL/class2.crl + + Signature Algorithm: sha1WithRSAEncryption + a7:54:cf:88:44:19:cb:df:d4:7f:00:df:56:33:62:b5:f7:51: + 01:90:eb:c3:3f:d1:88:44:e9:24:5d:ef:e7:14:bd:20:b7:9a: + 3c:00:fe:6d:9f:db:90:dc:d7:f4:62:d6:8b:70:5d:e7:e5:04: + 48:a9:68:7c:c9:f1:42:f3:6c:7f:c5:7a:7c:1d:51:88:ba:d2: + 0a:3e:27:5d:de:2d:51:4e:d3:13:64:69:e4:2e:e3:d3:e7:9b: + 09:99:a6:e0:95:9b:ce:1a:d7:7f:be:3c:ce:52:b3:11:15:c1: + 0f:17:cd:03:bb:9c:25:15:ba:a2:76:89:fc:06:f1:18:d0:93: + 4b:0e:7c:82:b7:a5:f4:f6:5f:fe:ed:40:a6:9d:84:74:39:b9: + dc:1e:85:16:da:29:1b:86:23:00:c9:bb:89:7e:6e:80:88:1e: + 2f:14:b4:03:24:a8:32:6f:03:9a:47:2c:30:be:56:c6:a7:42: + 02:70:1b:ea:40:d8:ba:05:03:70:07:a4:96:ff:fd:48:33:0a: + e1:dc:a5:81:90:9b:4d:dd:7d:e7:e7:b2:cd:5c:c8:6a:95:f8: + a5:f6:8d:c4:5d:78:08:be:7b:06:d6:49:cf:19:36:50:23:2e: + 08:e6:9e:05:4d:47:18:d5:16:e9:b1:d6:b6:10:d5:bb:97:bf: + a2:8e:b4:54 +SHA1 Fingerprint=74:20:74:41:72:9C:DD:92:EC:79:31:D8:23:10:8D:C2:81:92:E2:BB diff --git a/system/etc/security/cacerts/1dac3003.0 b/system/etc/security/cacerts/1dac3003.0 new file mode 100644 index 0000000000000000000000000000000000000000..28609cd4c14f9268b8cdff994b02d3a4d75bc647 --- /dev/null +++ b/system/etc/security/cacerts/1dac3003.0 @@ -0,0 +1,88 @@ +-----BEGIN CERTIFICATE----- +MIIECTCCAvGgAwIBAgIQDV6ZCtadt3js2AdWO4YV2TANBgkqhkiG9w0BAQUFADBb +MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3Qx +ETAPBgNVBAsTCERTVCBBQ0VTMRcwFQYDVQQDEw5EU1QgQUNFUyBDQSBYNjAeFw0w +MzExMjAyMTE5NThaFw0xNzExMjAyMTE5NThaMFsxCzAJBgNVBAYTAlVTMSAwHgYD +VQQKExdEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdDERMA8GA1UECxMIRFNUIEFDRVMx +FzAVBgNVBAMTDkRTVCBBQ0VTIENBIFg2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAuT31LMmU3HWKlV1j6IR3dma5WZFcRt2SPp/5DgO0PWGSvSMmtWPu +ktKe1jzIDZBfZIGxqAgNTNj50wUoUrQBJcWVHAx+PhCEdc/BGZFjz+iokYi5Q1K7 +gLFViYsx+tC3dr5BPTCapCIlF3PoHuLTrCq9Wzgh1SpL11V94zpVvddtawJXa+ZH +fAjIgrrep4c9oW24MFbCswKBXy314powGCi4ZtPLAZZv6opFVdbgnf9nKxcCpk4a +ahELfrd755jWjHZvwTvbUJN+5dCOHze4vbrGn2zpfDPyMjwmR/onJALJfh1biEIT +ajV8fTXpLmaRcpPVMibEdPVTo7NdmvYJywIDAQABo4HIMIHFMA8GA1UdEwEB/wQF +MAMBAf8wDgYDVR0PAQH/BAQDAgHGMB8GA1UdEQQYMBaBFHBraS1vcHNAdHJ1c3Rk +c3QuY29tMGIGA1UdIARbMFkwVwYKYIZIAWUDAgEBATBJMEcGCCsGAQUFBwIBFjto +dHRwOi8vd3d3LnRydXN0ZHN0LmNvbS9jZXJ0aWZpY2F0ZXMvcG9saWN5L0FDRVMt +aW5kZXguaHRtbDAdBgNVHQ4EFgQUCXIGThhDD+XWzMNqizF7eI+og7gwDQYJKoZI +hvcNAQEFBQADggEBAKPYjtay284F5zLNAdMEA+V25FYrnJmQ6AgwbN99Pe7lv7Uk +QIRJ4dEorsTCOlMwiPH1d25Ryvr/ma8kXxug/fKshMrfqfBfBC6tFr8hlxCBPeP/ +h40y3JTlR4peahPJlJU90u7INJXQgNStMgiAVDzgvVJT11J8smk/f3rPanTK+gQq +nExaBqXpIK1FZg9p8d2/6eMyi/rgwYZNcjwu2JN4Cir42NInPRmJX1p7ijvMDNpR +rscL9yuwNwXsvFcj4jjSm2jzVhKIT0J8uDHEtdvkyCE06UgRNe76x5JXxZ805Mf2 +9w4LTJxoeHtxMcfrHuBnQfO3oKfN5XozNmr6mis= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 0d:5e:99:0a:d6:9d:b7:78:ec:d8:07:56:3b:86:15:d9 + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=US, O=Digital Signature Trust, OU=DST ACES, CN=DST ACES CA X6 + Validity + Not Before: Nov 20 21:19:58 2003 GMT + Not After : Nov 20 21:19:58 2017 GMT + Subject: C=US, O=Digital Signature Trust, OU=DST ACES, CN=DST ACES CA X6 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:b9:3d:f5:2c:c9:94:dc:75:8a:95:5d:63:e8:84: + 77:76:66:b9:59:91:5c:46:dd:92:3e:9f:f9:0e:03: + b4:3d:61:92:bd:23:26:b5:63:ee:92:d2:9e:d6:3c: + c8:0d:90:5f:64:81:b1:a8:08:0d:4c:d8:f9:d3:05: + 28:52:b4:01:25:c5:95:1c:0c:7e:3e:10:84:75:cf: + c1:19:91:63:cf:e8:a8:91:88:b9:43:52:bb:80:b1: + 55:89:8b:31:fa:d0:b7:76:be:41:3d:30:9a:a4:22: + 25:17:73:e8:1e:e2:d3:ac:2a:bd:5b:38:21:d5:2a: + 4b:d7:55:7d:e3:3a:55:bd:d7:6d:6b:02:57:6b:e6: + 47:7c:08:c8:82:ba:de:a7:87:3d:a1:6d:b8:30:56: + c2:b3:02:81:5f:2d:f5:e2:9a:30:18:28:b8:66:d3: + cb:01:96:6f:ea:8a:45:55:d6:e0:9d:ff:67:2b:17: + 02:a6:4e:1a:6a:11:0b:7e:b7:7b:e7:98:d6:8c:76: + 6f:c1:3b:db:50:93:7e:e5:d0:8e:1f:37:b8:bd:ba: + c6:9f:6c:e9:7c:33:f2:32:3c:26:47:fa:27:24:02: + c9:7e:1d:5b:88:42:13:6a:35:7c:7d:35:e9:2e:66: + 91:72:93:d5:32:26:c4:74:f5:53:a3:b3:5d:9a:f6: + 09:cb + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Digital Signature, Non Repudiation, Certificate Sign, CRL Sign + X509v3 Subject Alternative Name: + email:pki-ops@trustdst.com + X509v3 Certificate Policies: + Policy: 2.16.840.1.101.3.2.1.1.1 + CPS: http://www.trustdst.com/certificates/policy/ACES-index.html + + X509v3 Subject Key Identifier: + 09:72:06:4E:18:43:0F:E5:D6:CC:C3:6A:8B:31:7B:78:8F:A8:83:B8 + Signature Algorithm: sha1WithRSAEncryption + a3:d8:8e:d6:b2:db:ce:05:e7:32:cd:01:d3:04:03:e5:76:e4: + 56:2b:9c:99:90:e8:08:30:6c:df:7d:3d:ee:e5:bf:b5:24:40: + 84:49:e1:d1:28:ae:c4:c2:3a:53:30:88:f1:f5:77:6e:51:ca: + fa:ff:99:af:24:5f:1b:a0:fd:f2:ac:84:ca:df:a9:f0:5f:04: + 2e:ad:16:bf:21:97:10:81:3d:e3:ff:87:8d:32:dc:94:e5:47: + 8a:5e:6a:13:c9:94:95:3d:d2:ee:c8:34:95:d0:80:d4:ad:32: + 08:80:54:3c:e0:bd:52:53:d7:52:7c:b2:69:3f:7f:7a:cf:6a: + 74:ca:fa:04:2a:9c:4c:5a:06:a5:e9:20:ad:45:66:0f:69:f1: + dd:bf:e9:e3:32:8b:fa:e0:c1:86:4d:72:3c:2e:d8:93:78:0a: + 2a:f8:d8:d2:27:3d:19:89:5f:5a:7b:8a:3b:cc:0c:da:51:ae: + c7:0b:f7:2b:b0:37:05:ec:bc:57:23:e2:38:d2:9b:68:f3:56: + 12:88:4f:42:7c:b8:31:c4:b5:db:e4:c8:21:34:e9:48:11:35: + ee:fa:c7:92:57:c5:9f:34:e4:c7:f6:f7:0e:0b:4c:9c:68:78: + 7b:71:31:c7:eb:1e:e0:67:41:f3:b7:a0:a7:cd:e5:7a:33:36: + 6a:fa:9a:2b +SHA1 Fingerprint=40:54:DA:6F:1C:3F:40:74:AC:ED:0F:EC:CD:DB:79:D1:53:FB:90:1D diff --git a/system/etc/security/cacerts/1dcd6f4c.0 b/system/etc/security/cacerts/1dcd6f4c.0 new file mode 100644 index 0000000000000000000000000000000000000000..d21efc607967d2b198509dcc5ef432900b989b05 --- /dev/null +++ b/system/etc/security/cacerts/1dcd6f4c.0 @@ -0,0 +1,121 @@ +-----BEGIN CERTIFICATE----- +MIIFcjCCA1qgAwIBAgIQH51ZWtcvwgZEpYAIaeNe9jANBgkqhkiG9w0BAQUFADA/ +MQswCQYDVQQGEwJUVzEwMC4GA1UECgwnR292ZXJubWVudCBSb290IENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5MB4XDTAyMTIwNTEzMjMzM1oXDTMyMTIwNTEzMjMzM1ow +PzELMAkGA1UEBhMCVFcxMDAuBgNVBAoMJ0dvdmVybm1lbnQgUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIB +AJoluOzMonWoe/fOW1mKydGGEghU7Jzy50b2iPN86aXfTEc2pBsBHH8eV4qNw8XR +IePaJD9IK/ufLqGU5ywck9G/GwGHU5nOp/UKIXZ3/6m3xnOUT0b3EEk3+qhZSV1q +gQdW8or5BtD3cCJNtLdBuTK4sfCxw5w/cP1T3YGq2GN49thTbqGsaoQkclSGxtKy +yhwOeYHWtXBiCAEuTk8O1RGvqa/lmr/czIdtJuTJV6L7lvnM4T9TjGxMfptTCAts +F/tnyMKtsc2AtJfcdgEWFelq16TheEfOhtX7MfP6Mb40qij7cEwdScevLJ1tZqa2 +jWR+tSBqnTuBto9AAGdLiYa4zGX+FVPpBMHWXx1E1wovJ5pGfaENda1UhhXcSTvx +ls4Pm6Dso3pdvtUqdULle96ltqqvKKyskKw4t9VoNSZ63Pc78/1Fm9G7Q3hub/FC +VGqY8A2tl+lSXunVanLeavcbYBT0peS2cWeqH+riTcFCQP5nRhc4L0c/cZyu5SHK +YS1tB6iEfC3uUSXxY5Ce/eFXiGvviiNtsea9P63RPZYLhY3Naye7twWb7LuRqQoH +EgKXTiCQ8P8NHuJBO9NAOueNXdpm5AKwB1KYXA6OM5zCppX7VRluTI6uSw+9wThN +Xo+EHWbNxWCWtFJaBYmOlXqYwZE8lSOyDvR5tMl8wUohAgMBAAGjajBoMB0GA1Ud +DgQWBBTMzO/MKWCkO7GStjz6MmKPrCUVOzAMBgNVHRMEBTADAQH/MDkGBGcqBwAE +MTAvMC0CAQAwCQYFKw4DAhoFADAHBgVnKgMAAAQUA5vwIhP/lSg209yewDL7MTqK +UWUwDQYJKoZIhvcNAQEFBQADggIBAECASvomyc5eMN1PhnR2WPWus4MzeKR6dBcZ +TulStbngCnRiqmjKeKBMmo4sIy7VahIkv9Ro04rQ2JyftB8M3jh+Vzj8jeJPXgyf +qzvS/3WXy6TjZwj/5cAWtUgBfen5Cv8b5Wppv3ghqMKnI6mGq3ZW6A4M9hPdKmaK +ZEk9GhiHkASfQlK3T8v+R0F2Ne//AHY2RTKbxkaFXeIksB7jSJaYV0eUVXoPQbFE +JPPB/hprv4j9wabak2BegUqZIJxIZhm1AHlUD7gsL0u8qV1bYH+Mh6XgUmMqvtg7 +hUAV/h62ZT/FS9p+tXo1KaMuephgIqP0fSdOLeq0dDzpD6QzDxARvBMB1uUO07+1 +EqLhRSPAzAhuYbeJq4PjJB7mXQfnHyA+z2fI56wwbSdLaG5LKlwCCDTb+HbkZ6Mm +nD+iMsJKxYEYMRBWqoTvLQr/uB930r+lWKBi5NdLkXWNiYCYfm3LU05er/ayl4WX +udpVBrkk7tfGOB5jGxI7leFYrPLfhNVfmS8NVVvmONsuP3LpSIXLuykTjx44Vbnz +ssQwmSNOXfJIoRIM3BKQCZBUkQM8R+XVyWXgt0t97EfTsws+rZ7QdAAO671RrcDe +LMDDav7v3Aun+kbfYNucpllQdSNpc5Oy+fwC00fmcc4QAu4njIT/rEUNE1yDMuAl +pYYsfPQS +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 1f:9d:59:5a:d7:2f:c2:06:44:a5:80:08:69:e3:5e:f6 + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=TW, O=Government Root Certification Authority + Validity + Not Before: Dec 5 13:23:33 2002 GMT + Not After : Dec 5 13:23:33 2032 GMT + Subject: C=TW, O=Government Root Certification Authority + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:9a:25:b8:ec:cc:a2:75:a8:7b:f7:ce:5b:59:8a: + c9:d1:86:12:08:54:ec:9c:f2:e7:46:f6:88:f3:7c: + e9:a5:df:4c:47:36:a4:1b:01:1c:7f:1e:57:8a:8d: + c3:c5:d1:21:e3:da:24:3f:48:2b:fb:9f:2e:a1:94: + e7:2c:1c:93:d1:bf:1b:01:87:53:99:ce:a7:f5:0a: + 21:76:77:ff:a9:b7:c6:73:94:4f:46:f7:10:49:37: + fa:a8:59:49:5d:6a:81:07:56:f2:8a:f9:06:d0:f7: + 70:22:4d:b4:b7:41:b9:32:b8:b1:f0:b1:c3:9c:3f: + 70:fd:53:dd:81:aa:d8:63:78:f6:d8:53:6e:a1:ac: + 6a:84:24:72:54:86:c6:d2:b2:ca:1c:0e:79:81:d6: + b5:70:62:08:01:2e:4e:4f:0e:d5:11:af:a9:af:e5: + 9a:bf:dc:cc:87:6d:26:e4:c9:57:a2:fb:96:f9:cc: + e1:3f:53:8c:6c:4c:7e:9b:53:08:0b:6c:17:fb:67: + c8:c2:ad:b1:cd:80:b4:97:dc:76:01:16:15:e9:6a: + d7:a4:e1:78:47:ce:86:d5:fb:31:f3:fa:31:be:34: + aa:28:fb:70:4c:1d:49:c7:af:2c:9d:6d:66:a6:b6: + 8d:64:7e:b5:20:6a:9d:3b:81:b6:8f:40:00:67:4b: + 89:86:b8:cc:65:fe:15:53:e9:04:c1:d6:5f:1d:44: + d7:0a:2f:27:9a:46:7d:a1:0d:75:ad:54:86:15:dc: + 49:3b:f1:96:ce:0f:9b:a0:ec:a3:7a:5d:be:d5:2a: + 75:42:e5:7b:de:a5:b6:aa:af:28:ac:ac:90:ac:38: + b7:d5:68:35:26:7a:dc:f7:3b:f3:fd:45:9b:d1:bb: + 43:78:6e:6f:f1:42:54:6a:98:f0:0d:ad:97:e9:52: + 5e:e9:d5:6a:72:de:6a:f7:1b:60:14:f4:a5:e4:b6: + 71:67:aa:1f:ea:e2:4d:c1:42:40:fe:67:46:17:38: + 2f:47:3f:71:9c:ae:e5:21:ca:61:2d:6d:07:a8:84: + 7c:2d:ee:51:25:f1:63:90:9e:fd:e1:57:88:6b:ef: + 8a:23:6d:b1:e6:bd:3f:ad:d1:3d:96:0b:85:8d:cd: + 6b:27:bb:b7:05:9b:ec:bb:91:a9:0a:07:12:02:97: + 4e:20:90:f0:ff:0d:1e:e2:41:3b:d3:40:3a:e7:8d: + 5d:da:66:e4:02:b0:07:52:98:5c:0e:8e:33:9c:c2: + a6:95:fb:55:19:6e:4c:8e:ae:4b:0f:bd:c1:38:4d: + 5e:8f:84:1d:66:cd:c5:60:96:b4:52:5a:05:89:8e: + 95:7a:98:c1:91:3c:95:23:b2:0e:f4:79:b4:c9:7c: + c1:4a:21 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + CC:CC:EF:CC:29:60:A4:3B:B1:92:B6:3C:FA:32:62:8F:AC:25:15:3B + X509v3 Basic Constraints: + CA:TRUE + setCext-hashedRoot: + 0/0-...0...+......0...g*........"...(6....2.1:.Qe + Signature Algorithm: sha1WithRSAEncryption + 40:80:4a:fa:26:c9:ce:5e:30:dd:4f:86:74:76:58:f5:ae:b3: + 83:33:78:a4:7a:74:17:19:4e:e9:52:b5:b9:e0:0a:74:62:aa: + 68:ca:78:a0:4c:9a:8e:2c:23:2e:d5:6a:12:24:bf:d4:68:d3: + 8a:d0:d8:9c:9f:b4:1f:0c:de:38:7e:57:38:fc:8d:e2:4f:5e: + 0c:9f:ab:3b:d2:ff:75:97:cb:a4:e3:67:08:ff:e5:c0:16:b5: + 48:01:7d:e9:f9:0a:ff:1b:e5:6a:69:bf:78:21:a8:c2:a7:23: + a9:86:ab:76:56:e8:0e:0c:f6:13:dd:2a:66:8a:64:49:3d:1a: + 18:87:90:04:9f:42:52:b7:4f:cb:fe:47:41:76:35:ef:ff:00: + 76:36:45:32:9b:c6:46:85:5d:e2:24:b0:1e:e3:48:96:98:57: + 47:94:55:7a:0f:41:b1:44:24:f3:c1:fe:1a:6b:bf:88:fd:c1: + a6:da:93:60:5e:81:4a:99:20:9c:48:66:19:b5:00:79:54:0f: + b8:2c:2f:4b:bc:a9:5d:5b:60:7f:8c:87:a5:e0:52:63:2a:be: + d8:3b:85:40:15:fe:1e:b6:65:3f:c5:4b:da:7e:b5:7a:35:29: + a3:2e:7a:98:60:22:a3:f4:7d:27:4e:2d:ea:b4:74:3c:e9:0f: + a4:33:0f:10:11:bc:13:01:d6:e5:0e:d3:bf:b5:12:a2:e1:45: + 23:c0:cc:08:6e:61:b7:89:ab:83:e3:24:1e:e6:5d:07:e7:1f: + 20:3e:cf:67:c8:e7:ac:30:6d:27:4b:68:6e:4b:2a:5c:02:08: + 34:db:f8:76:e4:67:a3:26:9c:3f:a2:32:c2:4a:c5:81:18:31: + 10:56:aa:84:ef:2d:0a:ff:b8:1f:77:d2:bf:a5:58:a0:62:e4: + d7:4b:91:75:8d:89:80:98:7e:6d:cb:53:4e:5e:af:f6:b2:97: + 85:97:b9:da:55:06:b9:24:ee:d7:c6:38:1e:63:1b:12:3b:95: + e1:58:ac:f2:df:84:d5:5f:99:2f:0d:55:5b:e6:38:db:2e:3f: + 72:e9:48:85:cb:bb:29:13:8f:1e:38:55:b9:f3:b2:c4:30:99: + 23:4e:5d:f2:48:a1:12:0c:dc:12:90:09:90:54:91:03:3c:47: + e5:d5:c9:65:e0:b7:4b:7d:ec:47:d3:b3:0b:3e:ad:9e:d0:74: + 00:0e:eb:bd:51:ad:c0:de:2c:c0:c3:6a:fe:ef:dc:0b:a7:fa: + 46:df:60:db:9c:a6:59:50:75:23:69:73:93:b2:f9:fc:02:d3: + 47:e6:71:ce:10:02:ee:27:8c:84:ff:ac:45:0d:13:5c:83:32: + e0:25:a5:86:2c:7c:f4:12 +SHA1 Fingerprint=F4:8B:11:BF:DE:AB:BE:94:54:20:71:E6:41:DE:6B:BE:88:2B:40:B9 diff --git a/system/etc/security/cacerts/1df5a75f.0 b/system/etc/security/cacerts/1df5a75f.0 new file mode 100644 index 0000000000000000000000000000000000000000..d325e8384c5222f08b9b34beb0e69068ca470069 --- /dev/null +++ b/system/etc/security/cacerts/1df5a75f.0 @@ -0,0 +1,90 @@ +-----BEGIN CERTIFICATE----- +MIIEMzCCAxugAwIBAgIDCYPzMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAkRF +MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBD +bGFzcyAzIENBIDIgMjAwOTAeFw0wOTExMDUwODM1NThaFw0yOTExMDUwODM1NTha +ME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMM +HkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTCCASIwDQYJKoZIhvcNAQEB +BQADggEPADCCAQoCggEBANOySs96R+91myP6Oi/WUEWJNTrGa9v+2wBoqOADER03 +UAifTUpolDWzU9GUY6cgVq/eUXjsKj3zSEhQPgrfRlWLJ23DEE0NkVJD2IfgXU42 +tSHKXzlABF9bfsyjxiupQB7ZNoTWSPOSHjRGICTBpFGOShrvUD9pXRl/RcPHAY9R +ySPocq60vFYJfxLLHLGvKZAKyVXMD9O0Gu1HNVpK7ZxzBCHQqr0ME7UAyiZsxGsM +lFqVlNpQmvH/pStmMaTJOKDfHR+4CS7zp+hnUquVH+BGPtikw8paxTGA6Eian5Rp +/hnd2HN8gcqW3o7tszIFZYQ05ub9VxC1X3a/L7AQDcUCAwEAAaOCARowggEWMA8G +A1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFP3aFMSfMN4hvR5COfyrYyNJ4PGEMA4G +A1UdDwEB/wQEAwIBBjCB0wYDVR0fBIHLMIHIMIGAoH6gfIZ6bGRhcDovL2RpcmVj +dG9yeS5kLXRydXN0Lm5ldC9DTj1ELVRSVVNUJTIwUm9vdCUyMENsYXNzJTIwMyUy +MENBJTIwMiUyMDIwMDksTz1ELVRydXN0JTIwR21iSCxDPURFP2NlcnRpZmljYXRl +cmV2b2NhdGlvbmxpc3QwQ6BBoD+GPWh0dHA6Ly93d3cuZC10cnVzdC5uZXQvY3Js +L2QtdHJ1c3Rfcm9vdF9jbGFzc18zX2NhXzJfMjAwOS5jcmwwDQYJKoZIhvcNAQEL +BQADggEBAH+X2zDI36ScfSF6gHDOFBJpiBSVYEQBrLLpME+bUMJm2H6NMLVwMeni +acfzcNsgFYbQDfC+rAF1hM5+n02/t2A7nPPKHeJeaNijnZflQGDSNiH+0LS4F9p0 +o3/U37CYAqxva2ssJSRyoWXuJVrl5jLn8t+rSfrzkGkj2wTZ51xY/GXUl77M/C4K +zCUqNQT4YJEVdT1B/yMfGchs64JTBKbkTCJNjYy6zltz7GRUUG3RnFX7acM2w4y8 +PIWmawomDeCTmGCufsYkl4phX5GOZpIJhzbNi5stPvZR1FDUWSi9g/LMKHtThm3Y +Johw1+qRzT65ysCQblrGXnRl11z+o+I= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 623603 (0x983f3) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=DE, O=D-Trust GmbH, CN=D-TRUST Root Class 3 CA 2 2009 + Validity + Not Before: Nov 5 08:35:58 2009 GMT + Not After : Nov 5 08:35:58 2029 GMT + Subject: C=DE, O=D-Trust GmbH, CN=D-TRUST Root Class 3 CA 2 2009 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:d3:b2:4a:cf:7a:47:ef:75:9b:23:fa:3a:2f:d6: + 50:45:89:35:3a:c6:6b:db:fe:db:00:68:a8:e0:03: + 11:1d:37:50:08:9f:4d:4a:68:94:35:b3:53:d1:94: + 63:a7:20:56:af:de:51:78:ec:2a:3d:f3:48:48:50: + 3e:0a:df:46:55:8b:27:6d:c3:10:4d:0d:91:52:43: + d8:87:e0:5d:4e:36:b5:21:ca:5f:39:40:04:5f:5b: + 7e:cc:a3:c6:2b:a9:40:1e:d9:36:84:d6:48:f3:92: + 1e:34:46:20:24:c1:a4:51:8e:4a:1a:ef:50:3f:69: + 5d:19:7f:45:c3:c7:01:8f:51:c9:23:e8:72:ae:b4: + bc:56:09:7f:12:cb:1c:b1:af:29:90:0a:c9:55:cc: + 0f:d3:b4:1a:ed:47:35:5a:4a:ed:9c:73:04:21:d0: + aa:bd:0c:13:b5:00:ca:26:6c:c4:6b:0c:94:5a:95: + 94:da:50:9a:f1:ff:a5:2b:66:31:a4:c9:38:a0:df: + 1d:1f:b8:09:2e:f3:a7:e8:67:52:ab:95:1f:e0:46: + 3e:d8:a4:c3:ca:5a:c5:31:80:e8:48:9a:9f:94:69: + fe:19:dd:d8:73:7c:81:ca:96:de:8e:ed:b3:32:05: + 65:84:34:e6:e6:fd:57:10:b5:5f:76:bf:2f:b0:10: + 0d:c5 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + FD:DA:14:C4:9F:30:DE:21:BD:1E:42:39:FC:AB:63:23:49:E0:F1:84 + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 CRL Distribution Points: + + Full Name: + URI:ldap://directory.d-trust.net/CN=D-TRUST%20Root%20Class%203%20CA%202%202009,O=D-Trust%20GmbH,C=DE?certificaterevocationlist + + Full Name: + URI:http://www.d-trust.net/crl/d-trust_root_class_3_ca_2_2009.crl + + Signature Algorithm: sha256WithRSAEncryption + 7f:97:db:30:c8:df:a4:9c:7d:21:7a:80:70:ce:14:12:69:88: + 14:95:60:44:01:ac:b2:e9:30:4f:9b:50:c2:66:d8:7e:8d:30: + b5:70:31:e9:e2:69:c7:f3:70:db:20:15:86:d0:0d:f0:be:ac: + 01:75:84:ce:7e:9f:4d:bf:b7:60:3b:9c:f3:ca:1d:e2:5e:68: + d8:a3:9d:97:e5:40:60:d2:36:21:fe:d0:b4:b8:17:da:74:a3: + 7f:d4:df:b0:98:02:ac:6f:6b:6b:2c:25:24:72:a1:65:ee:25: + 5a:e5:e6:32:e7:f2:df:ab:49:fa:f3:90:69:23:db:04:d9:e7: + 5c:58:fc:65:d4:97:be:cc:fc:2e:0a:cc:25:2a:35:04:f8:60: + 91:15:75:3d:41:ff:23:1f:19:c8:6c:eb:82:53:04:a6:e4:4c: + 22:4d:8d:8c:ba:ce:5b:73:ec:64:54:50:6d:d1:9c:55:fb:69: + c3:36:c3:8c:bc:3c:85:a6:6b:0a:26:0d:e0:93:98:60:ae:7e: + c6:24:97:8a:61:5f:91:8e:66:92:09:87:36:cd:8b:9b:2d:3e: + f6:51:d4:50:d4:59:28:bd:83:f2:cc:28:7b:53:86:6d:d8:26: + 88:70:d7:ea:91:cd:3e:b9:ca:c0:90:6e:5a:c6:5e:74:65:d7: + 5c:fe:a3:e2 +SHA1 Fingerprint=58:E8:AB:B0:36:15:33:FB:80:F7:9B:1B:6D:29:D3:FF:8D:5F:00:F0 diff --git a/system/etc/security/cacerts/1e1eab7c.0 b/system/etc/security/cacerts/1e1eab7c.0 new file mode 100644 index 0000000000000000000000000000000000000000..6a4788c977f36430f54cb98b3448aa2f63c4db0e --- /dev/null +++ b/system/etc/security/cacerts/1e1eab7c.0 @@ -0,0 +1,80 @@ +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx +KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd +BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl +YyBHbG9iYWxSb290IENsYXNzIDMwHhcNMDgxMDAxMTAyOTU2WhcNMzMxMDAxMjM1 +OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy +aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 +ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9dZPwYiJvJK7genasfb3ZJNW4t/zN +8ELg63iIVl6bmlQdTQyK9tPPcPRStdiTBONGhnFBSivwKixVA9ZIw+A5OO3yXDw/ +RLyTPWGrTs0NvvAgJ1gORH8EGoel15YUNpDQSXuhdfsaa3Ox+M6pCSzyU9XDFES4 +hqX2iys52qMzVNn6chr3IhUciJFrf2blw2qAsCTz34ZFiP0Zf3WHHx+xGwpzJFu5 +ZeAsVMhg02YXP+HMVDNzkQI6pn97djmiH5a2OK61yJN0HZ65tOVgnS9W0eDrXltM +EnAMbEQgqxHY9Bn20pxSN+f6tsIxO0rUFJmtxxr1XV/6B7h8DR/Wgx6zAgMBAAGj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS1 +A/d2O2GCahKqGFPrAyGUv/7OyjANBgkqhkiG9w0BAQsFAAOCAQEAVj3vlNW92nOy +WL6ukK2YJ5f+AbGwUgC4TeQbIXQbfsDuXmkqJa9c1h3a0nnJ85cp4IaH3gRZD/FZ +1GSFS5mvJQQeyUapl96Cshtwn5z2r3Ex3XsFpSzTucpH9sry9uetuUg/vBa3wW30 +6gmv7PO15wWeph6KU1HWk4HMdJP2udqmJQV0eVp+QD6CSyYRMG7hP0HHRwA11fXT +91Q+gT3aSWqas+8QPebrb9HIIkfLzM8BMZLZGOMivgkeGj5asuRrDFR6fUNOuIml +e9eiPZaGzPImNC1qkp2aGtAw4l1OBLBfiyB+d8E9lYLRRpo7PHi4b6HQDWSieB4p +TpPDpFQUWw== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 1 (0x1) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=DE, O=T-Systems Enterprise Services GmbH, OU=T-Systems Trust Center, CN=T-TeleSec GlobalRoot Class 3 + Validity + Not Before: Oct 1 10:29:56 2008 GMT + Not After : Oct 1 23:59:59 2033 GMT + Subject: C=DE, O=T-Systems Enterprise Services GmbH, OU=T-Systems Trust Center, CN=T-TeleSec GlobalRoot Class 3 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:bd:75:93:f0:62:22:6f:24:ae:e0:7a:76:ac:7d: + bd:d9:24:d5:b8:b7:fc:cd:f0:42:e0:eb:78:88:56: + 5e:9b:9a:54:1d:4d:0c:8a:f6:d3:cf:70:f4:52:b5: + d8:93:04:e3:46:86:71:41:4a:2b:f0:2a:2c:55:03: + d6:48:c3:e0:39:38:ed:f2:5c:3c:3f:44:bc:93:3d: + 61:ab:4e:cd:0d:be:f0:20:27:58:0e:44:7f:04:1a: + 87:a5:d7:96:14:36:90:d0:49:7b:a1:75:fb:1a:6b: + 73:b1:f8:ce:a9:09:2c:f2:53:d5:c3:14:44:b8:86: + a5:f6:8b:2b:39:da:a3:33:54:d9:fa:72:1a:f7:22: + 15:1c:88:91:6b:7f:66:e5:c3:6a:80:b0:24:f3:df: + 86:45:88:fd:19:7f:75:87:1f:1f:b1:1b:0a:73:24: + 5b:b9:65:e0:2c:54:c8:60:d3:66:17:3f:e1:cc:54: + 33:73:91:02:3a:a6:7f:7b:76:39:a2:1f:96:b6:38: + ae:b5:c8:93:74:1d:9e:b9:b4:e5:60:9d:2f:56:d1: + e0:eb:5e:5b:4c:12:70:0c:6c:44:20:ab:11:d8:f4: + 19:f6:d2:9c:52:37:e7:fa:b6:c2:31:3b:4a:d4:14: + 99:ad:c7:1a:f5:5d:5f:fa:07:b8:7c:0d:1f:d6:83: + 1e:b3 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + B5:03:F7:76:3B:61:82:6A:12:AA:18:53:EB:03:21:94:BF:FE:CE:CA + Signature Algorithm: sha256WithRSAEncryption + 56:3d:ef:94:d5:bd:da:73:b2:58:be:ae:90:ad:98:27:97:fe: + 01:b1:b0:52:00:b8:4d:e4:1b:21:74:1b:7e:c0:ee:5e:69:2a: + 25:af:5c:d6:1d:da:d2:79:c9:f3:97:29:e0:86:87:de:04:59: + 0f:f1:59:d4:64:85:4b:99:af:25:04:1e:c9:46:a9:97:de:82: + b2:1b:70:9f:9c:f6:af:71:31:dd:7b:05:a5:2c:d3:b9:ca:47: + f6:ca:f2:f6:e7:ad:b9:48:3f:bc:16:b7:c1:6d:f4:ea:09:af: + ec:f3:b5:e7:05:9e:a6:1e:8a:53:51:d6:93:81:cc:74:93:f6: + b9:da:a6:25:05:74:79:5a:7e:40:3e:82:4b:26:11:30:6e:e1: + 3f:41:c7:47:00:35:d5:f5:d3:f7:54:3e:81:3d:da:49:6a:9a: + b3:ef:10:3d:e6:eb:6f:d1:c8:22:47:cb:cc:cf:01:31:92:d9: + 18:e3:22:be:09:1e:1a:3e:5a:b2:e4:6b:0c:54:7a:7d:43:4e: + b8:89:a5:7b:d7:a2:3d:96:86:cc:f2:26:34:2d:6a:92:9d:9a: + 1a:d0:30:e2:5d:4e:04:b0:5f:8b:20:7e:77:c1:3d:95:82:d1: + 46:9a:3b:3c:78:b8:6f:a1:d0:0d:64:a2:78:1e:29:4e:93:c3: + a4:54:14:5b +SHA1 Fingerprint=55:A6:72:3E:CB:F2:EC:CD:C3:23:74:70:19:9D:2A:BE:11:E3:81:D1 diff --git a/system/etc/security/cacerts/1e8e7201.0 b/system/etc/security/cacerts/1e8e7201.0 new file mode 100644 index 0000000000000000000000000000000000000000..224b3d55e95d06d7b8246ca4026f75cc8c2e73e5 --- /dev/null +++ b/system/etc/security/cacerts/1e8e7201.0 @@ -0,0 +1,79 @@ +-----BEGIN CERTIFICATE----- +MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4G +A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNp +Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4 +MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEG +A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWtiHL8 +RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsT +gHeMCOFJ0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmm +KPZpO/bLyCiR5Z2KYVc3rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zd +QQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjlOCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZ +XriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2xmmFghcCAwEAAaNCMEAw +DgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI/wS3+o +LkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZU +RUm7lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMp +jjM5RcOO5LlXbKr8EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK +6fBdRoyV3XpYKBovHd7NADdBj+1EbddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQX +mcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18YIvDQVETI53O9zJrlAGomecs +Mx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7rkpeDMdmztcpH +WD9f +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 04:00:00:00:00:01:21:58:53:08:a2 + Signature Algorithm: sha256WithRSAEncryption + Issuer: OU=GlobalSign Root CA - R3, O=GlobalSign, CN=GlobalSign + Validity + Not Before: Mar 18 10:00:00 2009 GMT + Not After : Mar 18 10:00:00 2029 GMT + Subject: OU=GlobalSign Root CA - R3, O=GlobalSign, CN=GlobalSign + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:cc:25:76:90:79:06:78:22:16:f5:c0:83:b6:84: + ca:28:9e:fd:05:76:11:c5:ad:88:72:fc:46:02:43: + c7:b2:8a:9d:04:5f:24:cb:2e:4b:e1:60:82:46:e1: + 52:ab:0c:81:47:70:6c:dd:64:d1:eb:f5:2c:a3:0f: + 82:3d:0c:2b:ae:97:d7:b6:14:86:10:79:bb:3b:13: + 80:77:8c:08:e1:49:d2:6a:62:2f:1f:5e:fa:96:68: + df:89:27:95:38:9f:06:d7:3e:c9:cb:26:59:0d:73: + de:b0:c8:e9:26:0e:83:15:c6:ef:5b:8b:d2:04:60: + ca:49:a6:28:f6:69:3b:f6:cb:c8:28:91:e5:9d:8a: + 61:57:37:ac:74:14:dc:74:e0:3a:ee:72:2f:2e:9c: + fb:d0:bb:bf:f5:3d:00:e1:06:33:e8:82:2b:ae:53: + a6:3a:16:73:8c:dd:41:0e:20:3a:c0:b4:a7:a1:e9: + b2:4f:90:2e:32:60:e9:57:cb:b9:04:92:68:68:e5: + 38:26:60:75:b2:9f:77:ff:91:14:ef:ae:20:49:fc: + ad:40:15:48:d1:02:31:61:19:5e:b8:97:ef:ad:77: + b7:64:9a:7a:bf:5f:c1:13:ef:9b:62:fb:0d:6c:e0: + 54:69:16:a9:03:da:6e:e9:83:93:71:76:c6:69:85: + 82:17 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 8F:F0:4B:7F:A8:2E:45:24:AE:4D:50:FA:63:9A:8B:DE:E2:DD:1B:BC + Signature Algorithm: sha256WithRSAEncryption + 4b:40:db:c0:50:aa:fe:c8:0c:ef:f7:96:54:45:49:bb:96:00: + 09:41:ac:b3:13:86:86:28:07:33:ca:6b:e6:74:b9:ba:00:2d: + ae:a4:0a:d3:f5:f1:f1:0f:8a:bf:73:67:4a:83:c7:44:7b:78: + e0:af:6e:6c:6f:03:29:8e:33:39:45:c3:8e:e4:b9:57:6c:aa: + fc:12:96:ec:53:c6:2d:e4:24:6c:b9:94:63:fb:dc:53:68:67: + 56:3e:83:b8:cf:35:21:c3:c9:68:fe:ce:da:c2:53:aa:cc:90: + 8a:e9:f0:5d:46:8c:95:dd:7a:58:28:1a:2f:1d:de:cd:00:37: + 41:8f:ed:44:6d:d7:53:28:97:7e:f3:67:04:1e:15:d7:8a:96: + b4:d3:de:4c:27:a4:4c:1b:73:73:76:f4:17:99:c2:1f:7a:0e: + e3:2d:08:ad:0a:1c:2c:ff:3c:ab:55:0e:0f:91:7e:36:eb:c3: + 57:49:be:e1:2e:2d:7c:60:8b:c3:41:51:13:23:9d:ce:f7:32: + 6b:94:01:a8:99:e7:2c:33:1f:3a:3b:25:d2:86:40:ce:3b:2c: + 86:78:c9:61:2f:14:ba:ee:db:55:6f:df:84:ee:05:09:4d:bd: + 28:d8:72:ce:d3:62:50:65:1e:eb:92:97:83:31:d9:b3:b5:ca: + 47:58:3f:5f +SHA1 Fingerprint=D6:9B:56:11:48:F0:1C:77:C5:45:78:C1:09:26:DF:5B:85:69:76:AD diff --git a/system/etc/security/cacerts/1eb37bdf.0 b/system/etc/security/cacerts/1eb37bdf.0 new file mode 100644 index 0000000000000000000000000000000000000000..51c658f0bbd636a73cae491b99dd4728519a17ad --- /dev/null +++ b/system/etc/security/cacerts/1eb37bdf.0 @@ -0,0 +1,139 @@ +-----BEGIN CERTIFICATE----- +MIIHTzCCBTegAwIBAgIJAKPaQn6ksa7aMA0GCSqGSIb3DQEBBQUAMIGuMQswCQYD +VQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0 +IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3 +MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xKTAnBgNVBAMTIENoYW1iZXJz +IG9mIENvbW1lcmNlIFJvb3QgLSAyMDA4MB4XDTA4MDgwMTEyMjk1MFoXDTM4MDcz +MTEyMjk1MFowga4xCzAJBgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNlZSBj +dXJyZW50IGFkZHJlc3MgYXQgd3d3LmNhbWVyZmlybWEuY29tL2FkZHJlc3MpMRIw +EAYDVQQFEwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENhbWVyZmlybWEgUy5BLjEp +MCcGA1UEAxMgQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDgwggIiMA0G +CSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCvAMtwNyuAWko6bHiUfaN/Gh/2NdW9 +28sNRHI+JrKQUrpjOyhYb6WzbZSm891kDFX29ufyIiKAXuFixrYp4YFs8r/lfTJq +VKAyGVn+H4vXPWCGhSRv4xGzdz4gljUha7MI2XAuZPeEklPWDrCQiorjh40G072Q +DuKZoRuGDtqaCrsLYVAGUvGef3bsyw/QHg3PmTA9HMRFEFis1tPo1+XqxQEHd9ZR +5gN/ikilTWh1uem8nk4ZcfUyS5xtYBkL+8ydddy/Js2Pk3g5eXNeJQ7KXOt3EgfL +ZEFHcpOrUMPrCXZkNNI5t3YRCQ12RcSprj1qr7V9ZS+UWBDsXHyvfuK2GNnQm05a +Sd+pZgvMPMZ4fKecHePOjlO+Bd5gD2vlGts/4+EhySnB8esHnFIbAURRPHsl18Tl +UlRdJQfKFiC4reRB7noI/plvg6aRArBsNlVq5331lubKgdaX8ZSD6e2wsWsSaR6s ++12pxZjptFtYer49okQ6Y1nUCyXeG0+95QGezdIp1Z8XGQpvvwyQ0wlf2eOKNcx5 +Wk0ZN5K3xMGtr/R5JJqyAQuxr1yW84Ay+1w9mPGgP0revq+ULtlVmhduYJ1jbLhj +ya6BXBg14JC7vjxPNyK5fuvPnnchpj04gftI2jE9K+OJ9dC1vX7gUMQSibMjmhAx +hduub+84Mxh2EQIDAQABo4IBbDCCAWgwEgYDVR0TAQH/BAgwBgEB/wIBDDAdBgNV +HQ4EFgQU+SSsD7K1+HnA+mCIG8TZTQKeFxkwgeMGA1UdIwSB2zCB2IAU+SSsD7K1 ++HnA+mCIG8TZTQKeFxmhgbSkgbEwga4xCzAJBgNVBAYTAkVVMUMwQQYDVQQHEzpN +YWRyaWQgKHNlZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNhbWVyZmlybWEuY29t +L2FkZHJlc3MpMRIwEAYDVQQFEwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENhbWVy +ZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdCAt +IDIwMDiCCQCj2kJ+pLGu2jAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRV +HSAAMCowKAYIKwYBBQUHAgEWHGh0dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20w +DQYJKoZIhvcNAQEFBQADggIBAJASryI1wqM58C7e6bXpeHxIvj99RZJe6dqxGfwW +PJ+0W2aeaufDuV2I6A+tzyMP3iU6XsxPpcG1Lawk0lgH3qLPaYRgM+gQDROpI9CF +5Y57pp49chNyM/WqfcZjHwj0/gF/JM8rLFQJ3uIrbZLGOU8W6jx+ekbURWpGqOt1 +glanq6B8aBMz9p0w8G8nOSQjKpD9kCk18pPfNKXG9/jvjA9iSnyu0/VU+I22mlaH +FoI6M6taIgj3grrqLuBHmrS1RaMFO9ncLkVAO+rcf+g769HsJtg1pDDFOqxXnrN2 +pSB7+R5KBWIBpih1YJeSDW4+TTdDDZIVnBgizVGZoCkaPF+KMjNbMMeJL0eYD6MD +xvbxrN8y8NmBGuScvfaAFPDRLLmF9dijscilIeUcE5fuDr3fKanvNFNb0+RqE4QG +tjICxFKuItLcsiFCGtpA8CnJ7AoMXOLQusxI0zcKzBIKinmwPQN/aUv0NCB9szTq +jktk9T79syNnFQ0EuPAtwQlRPLJsFfClI9eDdOTlLsn+mCdCxqvGnrDQWzilm1De +fhiYtUU79nm06PcaewaD+9CL2rvHvRirCG88gGtAPxkZumWK5r7VXNM21+9AUiRg +OGcEMeyP84LG3rlV8zsxkVrctQgVrXYlCg17LofiDKYGvCYQbTed7N14jHyAxfDZ +d0jQ +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 11806822484801597146 (0xa3da427ea4b1aeda) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=EU, L=Madrid (see current address at www.camerfirma.com/address)/serialNumber=A82743287, O=AC Camerfirma S.A., CN=Chambers of Commerce Root - 2008 + Validity + Not Before: Aug 1 12:29:50 2008 GMT + Not After : Jul 31 12:29:50 2038 GMT + Subject: C=EU, L=Madrid (see current address at www.camerfirma.com/address)/serialNumber=A82743287, O=AC Camerfirma S.A., CN=Chambers of Commerce Root - 2008 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:af:00:cb:70:37:2b:80:5a:4a:3a:6c:78:94:7d: + a3:7f:1a:1f:f6:35:d5:bd:db:cb:0d:44:72:3e:26: + b2:90:52:ba:63:3b:28:58:6f:a5:b3:6d:94:a6:f3: + dd:64:0c:55:f6:f6:e7:f2:22:22:80:5e:e1:62:c6: + b6:29:e1:81:6c:f2:bf:e5:7d:32:6a:54:a0:32:19: + 59:fe:1f:8b:d7:3d:60:86:85:24:6f:e3:11:b3:77: + 3e:20:96:35:21:6b:b3:08:d9:70:2e:64:f7:84:92: + 53:d6:0e:b0:90:8a:8a:e3:87:8d:06:d3:bd:90:0e: + e2:99:a1:1b:86:0e:da:9a:0a:bb:0b:61:50:06:52: + f1:9e:7f:76:ec:cb:0f:d0:1e:0d:cf:99:30:3d:1c: + c4:45:10:58:ac:d6:d3:e8:d7:e5:ea:c5:01:07:77: + d6:51:e6:03:7f:8a:48:a5:4d:68:75:b9:e9:bc:9e: + 4e:19:71:f5:32:4b:9c:6d:60:19:0b:fb:cc:9d:75: + dc:bf:26:cd:8f:93:78:39:79:73:5e:25:0e:ca:5c: + eb:77:12:07:cb:64:41:47:72:93:ab:50:c3:eb:09: + 76:64:34:d2:39:b7:76:11:09:0d:76:45:c4:a9:ae: + 3d:6a:af:b5:7d:65:2f:94:58:10:ec:5c:7c:af:7e: + e2:b6:18:d9:d0:9b:4e:5a:49:df:a9:66:0b:cc:3c: + c6:78:7c:a7:9c:1d:e3:ce:8e:53:be:05:de:60:0f: + 6b:e5:1a:db:3f:e3:e1:21:c9:29:c1:f1:eb:07:9c: + 52:1b:01:44:51:3c:7b:25:d7:c4:e5:52:54:5d:25: + 07:ca:16:20:b8:ad:e4:41:ee:7a:08:fe:99:6f:83: + a6:91:02:b0:6c:36:55:6a:e7:7d:f5:96:e6:ca:81: + d6:97:f1:94:83:e9:ed:b0:b1:6b:12:69:1e:ac:fb: + 5d:a9:c5:98:e9:b4:5b:58:7a:be:3d:a2:44:3a:63: + 59:d4:0b:25:de:1b:4f:bd:e5:01:9e:cd:d2:29:d5: + 9f:17:19:0a:6f:bf:0c:90:d3:09:5f:d9:e3:8a:35: + cc:79:5a:4d:19:37:92:b7:c4:c1:ad:af:f4:79:24: + 9a:b2:01:0b:b1:af:5c:96:f3:80:32:fb:5c:3d:98: + f1:a0:3f:4a:de:be:af:94:2e:d9:55:9a:17:6e:60: + 9d:63:6c:b8:63:c9:ae:81:5c:18:35:e0:90:bb:be: + 3c:4f:37:22:b9:7e:eb:cf:9e:77:21:a6:3d:38:81: + fb:48:da:31:3d:2b:e3:89:f5:d0:b5:bd:7e:e0:50: + c4:12:89:b3:23:9a:10:31:85:db:ae:6f:ef:38:33: + 18:76:11 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE, pathlen:12 + X509v3 Subject Key Identifier: + F9:24:AC:0F:B2:B5:F8:79:C0:FA:60:88:1B:C4:D9:4D:02:9E:17:19 + X509v3 Authority Key Identifier: + keyid:F9:24:AC:0F:B2:B5:F8:79:C0:FA:60:88:1B:C4:D9:4D:02:9E:17:19 + DirName:/C=EU/L=Madrid (see current address at www.camerfirma.com/address)/serialNumber=A82743287/O=AC Camerfirma S.A./CN=Chambers of Commerce Root - 2008 + serial:A3:DA:42:7E:A4:B1:AE:DA + + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Certificate Policies: + Policy: X509v3 Any Policy + CPS: http://policy.camerfirma.com + + Signature Algorithm: sha1WithRSAEncryption + 90:12:af:22:35:c2:a3:39:f0:2e:de:e9:b5:e9:78:7c:48:be: + 3f:7d:45:92:5e:e9:da:b1:19:fc:16:3c:9f:b4:5b:66:9e:6a: + e7:c3:b9:5d:88:e8:0f:ad:cf:23:0f:de:25:3a:5e:cc:4f:a5: + c1:b5:2d:ac:24:d2:58:07:de:a2:cf:69:84:60:33:e8:10:0d: + 13:a9:23:d0:85:e5:8e:7b:a6:9e:3d:72:13:72:33:f5:aa:7d: + c6:63:1f:08:f4:fe:01:7f:24:cf:2b:2c:54:09:de:e2:2b:6d: + 92:c6:39:4f:16:ea:3c:7e:7a:46:d4:45:6a:46:a8:eb:75:82: + 56:a7:ab:a0:7c:68:13:33:f6:9d:30:f0:6f:27:39:24:23:2a: + 90:fd:90:29:35:f2:93:df:34:a5:c6:f7:f8:ef:8c:0f:62:4a: + 7c:ae:d3:f5:54:f8:8d:b6:9a:56:87:16:82:3a:33:ab:5a:22: + 08:f7:82:ba:ea:2e:e0:47:9a:b4:b5:45:a3:05:3b:d9:dc:2e: + 45:40:3b:ea:dc:7f:e8:3b:eb:d1:ec:26:d8:35:a4:30:c5:3a: + ac:57:9e:b3:76:a5:20:7b:f9:1e:4a:05:62:01:a6:28:75:60: + 97:92:0d:6e:3e:4d:37:43:0d:92:15:9c:18:22:cd:51:99:a0: + 29:1a:3c:5f:8a:32:33:5b:30:c7:89:2f:47:98:0f:a3:03:c6: + f6:f1:ac:df:32:f0:d9:81:1a:e4:9c:bd:f6:80:14:f0:d1:2c: + b9:85:f5:d8:a3:b1:c8:a5:21:e5:1c:13:97:ee:0e:bd:df:29: + a9:ef:34:53:5b:d3:e4:6a:13:84:06:b6:32:02:c4:52:ae:22: + d2:dc:b2:21:42:1a:da:40:f0:29:c9:ec:0a:0c:5c:e2:d0:ba: + cc:48:d3:37:0a:cc:12:0a:8a:79:b0:3d:03:7f:69:4b:f4:34: + 20:7d:b3:34:ea:8e:4b:64:f5:3e:fd:b3:23:67:15:0d:04:b8: + f0:2d:c1:09:51:3c:b2:6c:15:f0:a5:23:d7:83:74:e4:e5:2e: + c9:fe:98:27:42:c6:ab:c6:9e:b0:d0:5b:38:a5:9b:50:de:7e: + 18:98:b5:45:3b:f6:79:b4:e8:f7:1a:7b:06:83:fb:d0:8b:da: + bb:c7:bd:18:ab:08:6f:3c:80:6b:40:3f:19:19:ba:65:8a:e6: + be:d5:5c:d3:36:d7:ef:40:52:24:60:38:67:04:31:ec:8f:f3: + 82:c6:de:b9:55:f3:3b:31:91:5a:dc:b5:08:15:ad:76:25:0a: + 0d:7b:2e:87:e2:0c:a6:06:bc:26:10:6d:37:9d:ec:dd:78:8c: + 7c:80:c5:f0:d9:77:48:d0 +SHA1 Fingerprint=78:6A:74:AC:76:AB:14:7F:9C:6A:30:50:BA:9E:A8:7E:FE:9A:CE:3C diff --git a/system/etc/security/cacerts/1f58a078.0 b/system/etc/security/cacerts/1f58a078.0 new file mode 100644 index 0000000000000000000000000000000000000000..ac07485aa017b502f95e47831aebe79bf4aad40a --- /dev/null +++ b/system/etc/security/cacerts/1f58a078.0 @@ -0,0 +1,120 @@ +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIURFc0JFuBiZs18s64KztbpybwdSgwDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMiBHMzAeFw0xMjAxMTIxODU5MzJaFw00 +MjAxMTIxODU5MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDIgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQChriWyARjcV4g/Ruv5r+LrI3HimtFhZiFf +qq8nUeVuGxbULX1QsFN3vXg6YOJkApt8hpvWGo6t/x8Vf9WVHhLL5hSEBMHfNrMW +n4rjyduYNM7YMxcoRvynyfDStNVNCXJJ+fKH46nafaF9a7I6JaltUkSs+L5u+9ym +c5GQYaYDFCDy54ejiK2toIz/pgslUiXnFgHVy7g1gQyjO/Dh4fxaXc6AcW34Sas+ +O7q414AB+6XrW7PFXmAqMaCvN+ggOp+oMiwMzAkd056OXbxMmO7FGmh77FOm6RQ1 +o9/NgJ8MSPsc9PG/Srj61YxxSscfrf5BmrODXfKEVu+lV0POKa2Mq1W/xPtbAd0j +IaFYAI7D0GoT7RPjEiuA3GfmlbLNHiJuKvhB1PLKFAeNilUSxmn1uIZoL1NesNKq +IcGY5jDjZ1XHm26sGahVpkUG0CM62+tlXSoREfA7T8pt9DTEceT/AFr2XK4jYIVz +8eQQsSWu1ZK7E8EM4DnatDlXtas1qnIhO4M15zHfeiFuuDIIfR0ykRVKYnLP43eh +vNURG3YBZwjgQQvD6xVu+KQZ2aKrr+InUlYrAoosFCT5v0ICvybIxo/gbjh9Uy3l +7ZizlWNof/k19N+IxWA1ksB8aRxhlRbQ694Lrz4EEEVlWFA4r0jyWbYW8jwNkALG +cC4BrTwV1wIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQU7edvdlq/YOxJW8ald7tyFnGbxD0wDQYJKoZIhvcNAQELBQAD +ggIBAJHfgD9DCX5xwvfrs4iP4VGyvD11+ShdyLyZm3tdquXK4Qr36LLTn91nMX66 +AarHakE7kNQIXLJgapDwyM4DYvmL7ftuKtwGTTwpD4kWilhMSA/ohGHqPHKmd+RC +roijQ1h5fq7KpVMNqT1wvSAZYaRsOPxDMuHBR//47PERIjKWnML2W2mWeyAMQ0Ga +W/ZZGYjeVYg3UQt4XAoeo0L9x52ID8DyeAIkVJOviYeIyUqAHerQbj5hLja7NQ4n +lv1mNDthcnPxFlxHBlRJAHpYErAK74X9sbgzdWqTHBLmYF5vHX/JHyPLhGGfHoJE ++V+tYlUkmlKY7VHnoX6XOuYvHxHaU4AshZ6rNRDbIl9qxV6XU/IyAgkwo1jwDQHV +csaxfGl7w/U2Rcxhbl5MlMVerugOXou/983g7aEOGzPuVBj+D77vfoRrQ+NwmNtd +dbINWQeFFSM51vHfqSYP1kjHs6Yi9TM3WpVHn3u6GBVv/9YUZINJ0gpnIdsPNWNg +KCLjsZWDzYWm3S8P52dSbrsvhXz1SnPnxT7AvSESBT/8twNJAlvIJebiVDj1eYeM +HVOyToV7BjjHLPj4sHKNJeV3UvQDHEimUF+IIDBu8oJDqz2XhOdT+yHBTw8imoa4 +WSr2Rz0ZiC3oheGe7IUIarFsNMkd7EgrO3jtZsSOeWmD3n+M +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 44:57:34:24:5b:81:89:9b:35:f2:ce:b8:2b:3b:5b:a7:26:f0:75:28 + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=BM, O=QuoVadis Limited, CN=QuoVadis Root CA 2 G3 + Validity + Not Before: Jan 12 18:59:32 2012 GMT + Not After : Jan 12 18:59:32 2042 GMT + Subject: C=BM, O=QuoVadis Limited, CN=QuoVadis Root CA 2 G3 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:a1:ae:25:b2:01:18:dc:57:88:3f:46:eb:f9:af: + e2:eb:23:71:e2:9a:d1:61:66:21:5f:aa:af:27:51: + e5:6e:1b:16:d4:2d:7d:50:b0:53:77:bd:78:3a:60: + e2:64:02:9b:7c:86:9b:d6:1a:8e:ad:ff:1f:15:7f: + d5:95:1e:12:cb:e6:14:84:04:c1:df:36:b3:16:9f: + 8a:e3:c9:db:98:34:ce:d8:33:17:28:46:fc:a7:c9: + f0:d2:b4:d5:4d:09:72:49:f9:f2:87:e3:a9:da:7d: + a1:7d:6b:b2:3a:25:a9:6d:52:44:ac:f8:be:6e:fb: + dc:a6:73:91:90:61:a6:03:14:20:f2:e7:87:a3:88: + ad:ad:a0:8c:ff:a6:0b:25:52:25:e7:16:01:d5:cb: + b8:35:81:0c:a3:3b:f0:e1:e1:fc:5a:5d:ce:80:71: + 6d:f8:49:ab:3e:3b:ba:b8:d7:80:01:fb:a5:eb:5b: + b3:c5:5e:60:2a:31:a0:af:37:e8:20:3a:9f:a8:32: + 2c:0c:cc:09:1d:d3:9e:8e:5d:bc:4c:98:ee:c5:1a: + 68:7b:ec:53:a6:e9:14:35:a3:df:cd:80:9f:0c:48: + fb:1c:f4:f1:bf:4a:b8:fa:d5:8c:71:4a:c7:1f:ad: + fe:41:9a:b3:83:5d:f2:84:56:ef:a5:57:43:ce:29: + ad:8c:ab:55:bf:c4:fb:5b:01:dd:23:21:a1:58:00: + 8e:c3:d0:6a:13:ed:13:e3:12:2b:80:dc:67:e6:95: + b2:cd:1e:22:6e:2a:f8:41:d4:f2:ca:14:07:8d:8a: + 55:12:c6:69:f5:b8:86:68:2f:53:5e:b0:d2:aa:21: + c1:98:e6:30:e3:67:55:c7:9b:6e:ac:19:a8:55:a6: + 45:06:d0:23:3a:db:eb:65:5d:2a:11:11:f0:3b:4f: + ca:6d:f4:34:c4:71:e4:ff:00:5a:f6:5c:ae:23:60: + 85:73:f1:e4:10:b1:25:ae:d5:92:bb:13:c1:0c:e0: + 39:da:b4:39:57:b5:ab:35:aa:72:21:3b:83:35:e7: + 31:df:7a:21:6e:b8:32:08:7d:1d:32:91:15:4a:62: + 72:cf:e3:77:a1:bc:d5:11:1b:76:01:67:08:e0:41: + 0b:c3:eb:15:6e:f8:a4:19:d9:a2:ab:af:e2:27:52: + 56:2b:02:8a:2c:14:24:f9:bf:42:02:bf:26:c8:c6: + 8f:e0:6e:38:7d:53:2d:e5:ed:98:b3:95:63:68:7f: + f9:35:f4:df:88:c5:60:35:92:c0:7c:69:1c:61:95: + 16:d0:eb:de:0b:af:3e:04:10:45:65:58:50:38:af: + 48:f2:59:b6:16:f2:3c:0d:90:02:c6:70:2e:01:ad: + 3c:15:d7 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + ED:E7:6F:76:5A:BF:60:EC:49:5B:C6:A5:77:BB:72:16:71:9B:C4:3D + Signature Algorithm: sha256WithRSAEncryption + 91:df:80:3f:43:09:7e:71:c2:f7:eb:b3:88:8f:e1:51:b2:bc: + 3d:75:f9:28:5d:c8:bc:99:9b:7b:5d:aa:e5:ca:e1:0a:f7:e8: + b2:d3:9f:dd:67:31:7e:ba:01:aa:c7:6a:41:3b:90:d4:08:5c: + b2:60:6a:90:f0:c8:ce:03:62:f9:8b:ed:fb:6e:2a:dc:06:4d: + 3c:29:0f:89:16:8a:58:4c:48:0f:e8:84:61:ea:3c:72:a6:77: + e4:42:ae:88:a3:43:58:79:7e:ae:ca:a5:53:0d:a9:3d:70:bd: + 20:19:61:a4:6c:38:fc:43:32:e1:c1:47:ff:f8:ec:f1:11:22: + 32:96:9c:c2:f6:5b:69:96:7b:20:0c:43:41:9a:5b:f6:59:19: + 88:de:55:88:37:51:0b:78:5c:0a:1e:a3:42:fd:c7:9d:88:0f: + c0:f2:78:02:24:54:93:af:89:87:88:c9:4a:80:1d:ea:d0:6e: + 3e:61:2e:36:bb:35:0e:27:96:fd:66:34:3b:61:72:73:f1:16: + 5c:47:06:54:49:00:7a:58:12:b0:0a:ef:85:fd:b1:b8:33:75: + 6a:93:1c:12:e6:60:5e:6f:1d:7f:c9:1f:23:cb:84:61:9f:1e: + 82:44:f9:5f:ad:62:55:24:9a:52:98:ed:51:e7:a1:7e:97:3a: + e6:2f:1f:11:da:53:80:2c:85:9e:ab:35:10:db:22:5f:6a:c5: + 5e:97:53:f2:32:02:09:30:a3:58:f0:0d:01:d5:72:c6:b1:7c: + 69:7b:c3:f5:36:45:cc:61:6e:5e:4c:94:c5:5e:ae:e8:0e:5e: + 8b:bf:f7:cd:e0:ed:a1:0e:1b:33:ee:54:18:fe:0f:be:ef:7e: + 84:6b:43:e3:70:98:db:5d:75:b2:0d:59:07:85:15:23:39:d6: + f1:df:a9:26:0f:d6:48:c7:b3:a6:22:f5:33:37:5a:95:47:9f: + 7b:ba:18:15:6f:ff:d6:14:64:83:49:d2:0a:67:21:db:0f:35: + 63:60:28:22:e3:b1:95:83:cd:85:a6:dd:2f:0f:e7:67:52:6e: + bb:2f:85:7c:f5:4a:73:e7:c5:3e:c0:bd:21:12:05:3f:fc:b7: + 03:49:02:5b:c8:25:e6:e2:54:38:f5:79:87:8c:1d:53:b2:4e: + 85:7b:06:38:c7:2c:f8:f8:b0:72:8d:25:e5:77:52:f4:03:1c: + 48:a6:50:5f:88:20:30:6e:f2:82:43:ab:3d:97:84:e7:53:fb: + 21:c1:4f:0f:22:9a:86:b8:59:2a:f6:47:3d:19:88:2d:e8:85: + e1:9e:ec:85:08:6a:b1:6c:34:c9:1d:ec:48:2b:3b:78:ed:66: + c4:8e:79:69:83:de:7f:8c +SHA1 Fingerprint=09:3C:61:F3:8B:8B:DC:7D:55:DF:75:38:02:05:00:E1:25:F5:C8:36 diff --git a/system/etc/security/cacerts/21855f49.0 b/system/etc/security/cacerts/21855f49.0 new file mode 100644 index 0000000000000000000000000000000000000000..afaaf34f4c651a6c94ad4ae9d7d452fef86d87ce --- /dev/null +++ b/system/etc/security/cacerts/21855f49.0 @@ -0,0 +1,119 @@ +-----BEGIN CERTIFICATE----- +MIIFaTCCA1GgAwIBAgIJAMMDmu5QkG4oMA0GCSqGSIb3DQEBBQUAMFIxCzAJBgNV +BAYTAlNLMRMwEQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMu +MRkwFwYDVQQDExBDQSBEaXNpZyBSb290IFIxMB4XDTEyMDcxOTA5MDY1NloXDTQy +MDcxOTA5MDY1NlowUjELMAkGA1UEBhMCU0sxEzARBgNVBAcTCkJyYXRpc2xhdmEx +EzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERpc2lnIFJvb3QgUjEw +ggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCqw3j33Jijp1pedxiy3QRk +D2P9m5YJgNXoqqXinCaUOuiZc4yd39ffg/N4T0Dhf9Kn0uXKE5Pn7cZ3Xza1lK/o +OI7bm+V8u8yN63Vz4STN5qctGS7Y1oprFOsIYgrY3LMATcMjfF9DCCMyEtztDK3A +fQ+lekLZWnDZv6fXARz2m6uOt0qGeKAeVjGu74IKgEH3G8muqzIm1Cxr7X1r5OJe +IgpFy4QxTaz+29FHuvlglzmxZcfe+5nkCiKxLU3lSCZpq+Kq8/v8kiky6bM+TR8n +oc2OuRf7JT7JbvN32g0S9l3HuzYQ1VTW8+DiR0jm3hTaYVKvJrT1cU/J19IG32PK +/yHoWQbgCNWEFVP3Q+V8xaCJmGtzxmjOZd69fwX3se72V6FglcXM6pM6vpmumwKj +rckWtc7dXpl4fho5frLABaTAgqWjR56M6ly2vGfb5ipN0gTco65F97yLnByn1tUD +3AjLLhbKXEAz6GfDLuemROoRRRw1ZS0eRWEkG4IupZ0zXWX4Qfkuy5Q/H6MMMSRE +7cderVC6xkGbrPAXZcD4XW9boAo0PO7X6oifmPmvTiT6l7Jkdtqr9O3jw2Dv1fkC +yC2fg69naQanMVXVz0tv/wQFx1isXxYb5dKj6zHbHzMVTdDypVP1y+E9Tmgt2BLd +qvLmTZtJ5cUoobqwWsagtQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud +DwEB/wQEAwIBBjAdBgNVHQ4EFgQUiQq0OJMa5qvum5EY+fU8PjXQ04IwDQYJKoZI +hvcNAQEFBQADggIBADKL9p1Kyb4U5YysOMo6CdQbzoaz3evUuii+Eq5FLAR0rBNR +xVgYZk2C2tXck8An4b58n1KeElb21Zyp9HWc+jcSjxyT7Ff+Bw+r1RL3D65hXlaA +SfX8MPWbTx9BLxyE04nH4toCdu0Jz2zBuByDHBb6lM19oMgY0sidbvW9adRtPTXo +HqJPYNcHKfyyo6SdbhWSVhlMCrDpfNIZTUJG7L399ldb3Zh+pE3McgODWF3vkzpB +emOqfDqo9ayk0d2iLbYq/J8BjuIQscTK5GfbVSUZP/3oNn6z4eGBrxEWi1CXYBmC +AMBrTXO40RMHPuq2MU/wQppt4hF05ZSsjYSVPCGvxdpHyN85YmLLW1AL14FABZyb +7bq2ix4Eb5YgOe2kfSnbSM6C3NQCjR0EMVrHS/BsYVLXtFHCgWzN4funodKSds+x +DzdYpPJScWc/DIh4gInByLUfkmO+p3qKViwaqKactV2zY9ATIKHrkWzQjX2v3wvk +F7mGnjixlAxYjOBVqjtjbZqJYLhkKpLGN/R+Q0O3c+gB53+XD9fyexn9GtePyfqF +a3qdnom2piiZk4hA9z7NUaPK6u95RyG1/jLix8NRb76AdPCkwzryT+lf3xkK8jsT +Q6wxpLPn6/wY1gGp8yqPNg7rtLG8t0zJa7+h89n07eLw4+1knj0vllJPgFOL +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 14052245610670616104 (0xc3039aee50906e28) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=SK, L=Bratislava, O=Disig a.s., CN=CA Disig Root R1 + Validity + Not Before: Jul 19 09:06:56 2012 GMT + Not After : Jul 19 09:06:56 2042 GMT + Subject: C=SK, L=Bratislava, O=Disig a.s., CN=CA Disig Root R1 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:aa:c3:78:f7:dc:98:a3:a7:5a:5e:77:18:b2:dd: + 04:64:0f:63:fd:9b:96:09:80:d5:e8:aa:a5:e2:9c: + 26:94:3a:e8:99:73:8c:9d:df:d7:df:83:f3:78:4f: + 40:e1:7f:d2:a7:d2:e5:ca:13:93:e7:ed:c6:77:5f: + 36:b5:94:af:e8:38:8e:db:9b:e5:7c:bb:cc:8d:eb: + 75:73:e1:24:cd:e6:a7:2d:19:2e:d8:d6:8a:6b:14: + eb:08:62:0a:d8:dc:b3:00:4d:c3:23:7c:5f:43:08: + 23:32:12:dc:ed:0c:ad:c0:7d:0f:a5:7a:42:d9:5a: + 70:d9:bf:a7:d7:01:1c:f6:9b:ab:8e:b7:4a:86:78: + a0:1e:56:31:ae:ef:82:0a:80:41:f7:1b:c9:ae:ab: + 32:26:d4:2c:6b:ed:7d:6b:e4:e2:5e:22:0a:45:cb: + 84:31:4d:ac:fe:db:d1:47:ba:f9:60:97:39:b1:65: + c7:de:fb:99:e4:0a:22:b1:2d:4d:e5:48:26:69:ab: + e2:aa:f3:fb:fc:92:29:32:e9:b3:3e:4d:1f:27:a1: + cd:8e:b9:17:fb:25:3e:c9:6e:f3:77:da:0d:12:f6: + 5d:c7:bb:36:10:d5:54:d6:f3:e0:e2:47:48:e6:de: + 14:da:61:52:af:26:b4:f5:71:4f:c9:d7:d2:06:df: + 63:ca:ff:21:e8:59:06:e0:08:d5:84:15:53:f7:43: + e5:7c:c5:a0:89:98:6b:73:c6:68:ce:65:de:bd:7f: + 05:f7:b1:ee:f6:57:a1:60:95:c5:cc:ea:93:3a:be: + 99:ae:9b:02:a3:ad:c9:16:b5:ce:dd:5e:99:78:7e: + 1a:39:7e:b2:c0:05:a4:c0:82:a5:a3:47:9e:8c:ea: + 5c:b6:bc:67:db:e6:2a:4d:d2:04:dc:a3:ae:45:f7: + bc:8b:9c:1c:a7:d6:d5:03:dc:08:cb:2e:16:ca:5c: + 40:33:e8:67:c3:2e:e7:a6:44:ea:11:45:1c:35:65: + 2d:1e:45:61:24:1b:82:2e:a5:9d:33:5d:65:f8:41: + f9:2e:cb:94:3f:1f:a3:0c:31:24:44:ed:c7:5e:ad: + 50:ba:c6:41:9b:ac:f0:17:65:c0:f8:5d:6f:5b:a0: + 0a:34:3c:ee:d7:ea:88:9f:98:f9:af:4e:24:fa:97: + b2:64:76:da:ab:f4:ed:e3:c3:60:ef:d5:f9:02:c8: + 2d:9f:83:af:67:69:06:a7:31:55:d5:cf:4b:6f:ff: + 04:05:c7:58:ac:5f:16:1b:e5:d2:a3:eb:31:db:1f: + 33:15:4d:d0:f2:a5:53:f5:cb:e1:3d:4e:68:2d:d8: + 12:dd:aa:f2:e6:4d:9b:49:e5:c5:28:a1:ba:b0:5a: + c6:a0:b5 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + 89:0A:B4:38:93:1A:E6:AB:EE:9B:91:18:F9:F5:3C:3E:35:D0:D3:82 + Signature Algorithm: sha1WithRSAEncryption + 32:8b:f6:9d:4a:c9:be:14:e5:8c:ac:38:ca:3a:09:d4:1b:ce: + 86:b3:dd:eb:d4:ba:28:be:12:ae:45:2c:04:74:ac:13:51:c5: + 58:18:66:4d:82:da:d5:dc:93:c0:27:e1:be:7c:9f:52:9e:12: + 56:f6:d5:9c:a9:f4:75:9c:fa:37:12:8f:1c:93:ec:57:fe:07: + 0f:ab:d5:12:f7:0f:ae:61:5e:56:80:49:f5:fc:30:f5:9b:4f: + 1f:41:2f:1c:84:d3:89:c7:e2:da:02:76:ed:09:cf:6c:c1:b8: + 1c:83:1c:16:fa:94:cd:7d:a0:c8:18:d2:c8:9d:6e:f5:bd:69: + d4:6d:3d:35:e8:1e:a2:4f:60:d7:07:29:fc:b2:a3:a4:9d:6e: + 15:92:56:19:4c:0a:b0:e9:7c:d2:19:4d:42:46:ec:bd:fd:f6: + 57:5b:dd:98:7e:a4:4d:cc:72:03:83:58:5d:ef:93:3a:41:7a: + 63:aa:7c:3a:a8:f5:ac:a4:d1:dd:a2:2d:b6:2a:fc:9f:01:8e: + e2:10:b1:c4:ca:e4:67:db:55:25:19:3f:fd:e8:36:7e:b3:e1: + e1:81:af:11:16:8b:50:97:60:19:82:00:c0:6b:4d:73:b8:d1: + 13:07:3e:ea:b6:31:4f:f0:42:9a:6d:e2:11:74:e5:94:ac:8d: + 84:95:3c:21:af:c5:da:47:c8:df:39:62:62:cb:5b:50:0b:d7: + 81:40:05:9c:9b:ed:ba:b6:8b:1e:04:6f:96:20:39:ed:a4:7d: + 29:db:48:ce:82:dc:d4:02:8d:1d:04:31:5a:c7:4b:f0:6c:61: + 52:d7:b4:51:c2:81:6c:cd:e1:fb:a7:a1:d2:92:76:cf:b1:0f: + 37:58:a4:f2:52:71:67:3f:0c:88:78:80:89:c1:c8:b5:1f:92: + 63:be:a7:7a:8a:56:2c:1a:a8:a6:9c:b5:5d:b3:63:d0:13:20: + a1:eb:91:6c:d0:8d:7d:af:df:0b:e4:17:b9:86:9e:38:b1:94: + 0c:58:8c:e0:55:aa:3b:63:6d:9a:89:60:b8:64:2a:92:c6:37: + f4:7e:43:43:b7:73:e8:01:e7:7f:97:0f:d7:f2:7b:19:fd:1a: + d7:8f:c9:fa:85:6b:7a:9d:9e:89:b6:a6:28:99:93:88:40:f7: + 3e:cd:51:a3:ca:ea:ef:79:47:21:b5:fe:32:e2:c7:c3:51:6f: + be:80:74:f0:a4:c3:3a:f2:4f:e9:5f:df:19:0a:f2:3b:13:43: + ac:31:a4:b3:e7:eb:fc:18:d6:01:a9:f3:2a:8f:36:0e:eb:b4: + b1:bc:b7:4c:c9:6b:bf:a1:f3:d9:f4:ed:e2:f0:e3:ed:64:9e: + 3d:2f:96:52:4f:80:53:8b +SHA1 Fingerprint=8E:1C:74:F8:A6:20:B9:E5:8A:F4:61:FA:EC:2B:47:56:51:1A:52:C6 diff --git a/system/etc/security/cacerts/219d9499.0 b/system/etc/security/cacerts/219d9499.0 new file mode 100644 index 0000000000000000000000000000000000000000..90790d336463e5a594e07abd9a680dfbe27d60ba --- /dev/null +++ b/system/etc/security/cacerts/219d9499.0 @@ -0,0 +1,84 @@ +-----BEGIN CERTIFICATE----- +MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEh +MB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBE +YWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3 +MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkGA1UEBhMCVVMxITAfBgNVBAoTGFRo +ZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28gRGFkZHkgQ2xhc3Mg +MiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQADggEN +ADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCA +PVYYYwhv2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6w +wdhFJ2+qN1j3hybX2C32qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXi +EqITLdiOr18SPaAIBQi2XKVlOARFmR6jYGB0xUGlcmIbYsUfb18aQr4CUWWoriMY +avx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmYvLEHZ6IVDd2gWMZEewo+ +YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0OBBYEFNLE +sNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h +/t2oatTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5 +IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQAD +ggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wimPQoZ+YeAEW5p5JYXMP80kWNy +OO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKtI3lpjbi2Tc7P +TMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ +HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mER +dEr/VxqHD3VILs9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5Cuf +ReYNnyicsbkqWletNw+vHX/bvZ8= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 0 (0x0) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=US, O=The Go Daddy Group, Inc., OU=Go Daddy Class 2 Certification Authority + Validity + Not Before: Jun 29 17:06:20 2004 GMT + Not After : Jun 29 17:06:20 2034 GMT + Subject: C=US, O=The Go Daddy Group, Inc., OU=Go Daddy Class 2 Certification Authority + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:de:9d:d7:ea:57:18:49:a1:5b:eb:d7:5f:48:86: + ea:be:dd:ff:e4:ef:67:1c:f4:65:68:b3:57:71:a0: + 5e:77:bb:ed:9b:49:e9:70:80:3d:56:18:63:08:6f: + da:f2:cc:d0:3f:7f:02:54:22:54:10:d8:b2:81:d4: + c0:75:3d:4b:7f:c7:77:c3:3e:78:ab:1a:03:b5:20: + 6b:2f:6a:2b:b1:c5:88:7e:c4:bb:1e:b0:c1:d8:45: + 27:6f:aa:37:58:f7:87:26:d7:d8:2d:f6:a9:17:b7: + 1f:72:36:4e:a6:17:3f:65:98:92:db:2a:6e:5d:a2: + fe:88:e0:0b:de:7f:e5:8d:15:e1:eb:cb:3a:d5:e2: + 12:a2:13:2d:d8:8e:af:5f:12:3d:a0:08:05:08:b6: + 5c:a5:65:38:04:45:99:1e:a3:60:60:74:c5:41:a5: + 72:62:1b:62:c5:1f:6f:5f:1a:42:be:02:51:65:a8: + ae:23:18:6a:fc:78:03:a9:4d:7f:80:c3:fa:ab:5a: + fc:a1:40:a4:ca:19:16:fe:b2:c8:ef:5e:73:0d:ee: + 77:bd:9a:f6:79:98:bc:b1:07:67:a2:15:0d:dd:a0: + 58:c6:44:7b:0a:3e:62:28:5f:ba:41:07:53:58:cf: + 11:7e:38:74:c5:f8:ff:b5:69:90:8f:84:74:ea:97: + 1b:af + Exponent: 3 (0x3) + X509v3 extensions: + X509v3 Subject Key Identifier: + D2:C4:B0:D2:91:D4:4C:11:71:B3:61:CB:3D:A1:FE:DD:A8:6A:D4:E3 + X509v3 Authority Key Identifier: + keyid:D2:C4:B0:D2:91:D4:4C:11:71:B3:61:CB:3D:A1:FE:DD:A8:6A:D4:E3 + DirName:/C=US/O=The Go Daddy Group, Inc./OU=Go Daddy Class 2 Certification Authority + serial:00 + + X509v3 Basic Constraints: + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 32:4b:f3:b2:ca:3e:91:fc:12:c6:a1:07:8c:8e:77:a0:33:06: + 14:5c:90:1e:18:f7:08:a6:3d:0a:19:f9:87:80:11:6e:69:e4: + 96:17:30:ff:34:91:63:72:38:ee:cc:1c:01:a3:1d:94:28:a4: + 31:f6:7a:c4:54:d7:f6:e5:31:58:03:a2:cc:ce:62:db:94:45: + 73:b5:bf:45:c9:24:b5:d5:82:02:ad:23:79:69:8d:b8:b6:4d: + ce:cf:4c:ca:33:23:e8:1c:88:aa:9d:8b:41:6e:16:c9:20:e5: + 89:9e:cd:3b:da:70:f7:7e:99:26:20:14:54:25:ab:6e:73:85: + e6:9b:21:9d:0a:6c:82:0e:a8:f8:c2:0c:fa:10:1e:6c:96:ef: + 87:0d:c4:0f:61:8b:ad:ee:83:2b:95:f8:8e:92:84:72:39:eb: + 20:ea:83:ed:83:cd:97:6e:08:bc:eb:4e:26:b6:73:2b:e4:d3: + f6:4c:fe:26:71:e2:61:11:74:4a:ff:57:1a:87:0f:75:48:2e: + cf:51:69:17:a0:02:12:61:95:d5:d1:40:b2:10:4c:ee:c4:ac: + 10:43:a6:a5:9e:0a:d5:95:62:9a:0d:cf:88:82:c5:32:0c:e4: + 2b:9f:45:e6:0d:9f:28:9c:b1:b9:2a:5a:57:ad:37:0f:af:1d: + 7f:db:bd:9f +SHA1 Fingerprint=27:96:BA:E6:3F:18:01:E2:77:26:1B:A0:D7:77:70:02:8F:20:EE:E4 diff --git a/system/etc/security/cacerts/23f4c490.0 b/system/etc/security/cacerts/23f4c490.0 new file mode 100644 index 0000000000000000000000000000000000000000..22c6ee21217dd5ae7f104b6a246164161a7adcb2 --- /dev/null +++ b/system/etc/security/cacerts/23f4c490.0 @@ -0,0 +1,84 @@ +-----BEGIN CERTIFICATE----- +MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzEl +MCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMp +U3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQw +NjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBoMQswCQYDVQQGEwJVUzElMCMGA1UE +ChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZp +ZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqGSIb3 +DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf +8MOh2tTYbitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN ++lq2cwQlZut3f+dZxkqZJRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0 +X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVmepsZGD3/cVE8MC5fvj13c7JdBmzDI1aa +K4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSNF4Azbl5KXZnJHoe0nRrA +1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HFMIHCMB0G +A1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fR +zt0fhvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0 +YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBD +bGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8w +DQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGsafPzWdqbAYcaT1epoXkJKtv3 +L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLMPUxA2IGvd56D +eruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl +xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynp +VSJYACPq4xJDKVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEY +WQPJIrSPnNVeKtelttQKbfi3QBFGmh95DmK/D5fs4C8fF5Q= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 0 (0x0) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=US, O=Starfield Technologies, Inc., OU=Starfield Class 2 Certification Authority + Validity + Not Before: Jun 29 17:39:16 2004 GMT + Not After : Jun 29 17:39:16 2034 GMT + Subject: C=US, O=Starfield Technologies, Inc., OU=Starfield Class 2 Certification Authority + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:b7:32:c8:fe:e9:71:a6:04:85:ad:0c:11:64:df: + ce:4d:ef:c8:03:18:87:3f:a1:ab:fb:3c:a6:9f:f0: + c3:a1:da:d4:d8:6e:2b:53:90:fb:24:a4:3e:84:f0: + 9e:e8:5f:ec:e5:27:44:f5:28:a6:3f:7b:de:e0:2a: + f0:c8:af:53:2f:9e:ca:05:01:93:1e:8f:66:1c:39: + a7:4d:fa:5a:b6:73:04:25:66:eb:77:7f:e7:59:c6: + 4a:99:25:14:54:eb:26:c7:f3:7f:19:d5:30:70:8f: + af:b0:46:2a:ff:ad:eb:29:ed:d7:9f:aa:04:87:a3: + d4:f9:89:a5:34:5f:db:43:91:82:36:d9:66:3c:b1: + b8:b9:82:fd:9c:3a:3e:10:c8:3b:ef:06:65:66:7a: + 9b:19:18:3d:ff:71:51:3c:30:2e:5f:be:3d:77:73: + b2:5d:06:6c:c3:23:56:9a:2b:85:26:92:1c:a7:02: + b3:e4:3f:0d:af:08:79:82:b8:36:3d:ea:9c:d3:35: + b3:bc:69:ca:f5:cc:9d:e8:fd:64:8d:17:80:33:6e: + 5e:4a:5d:99:c9:1e:87:b4:9d:1a:c0:d5:6e:13:35: + 23:5e:df:9b:5f:3d:ef:d6:f7:76:c2:ea:3e:bb:78: + 0d:1c:42:67:6b:04:d8:f8:d6:da:6f:8b:f2:44:a0: + 01:ab + Exponent: 3 (0x3) + X509v3 extensions: + X509v3 Subject Key Identifier: + BF:5F:B7:D1:CE:DD:1F:86:F4:5B:55:AC:DC:D7:10:C2:0E:A9:88:E7 + X509v3 Authority Key Identifier: + keyid:BF:5F:B7:D1:CE:DD:1F:86:F4:5B:55:AC:DC:D7:10:C2:0E:A9:88:E7 + DirName:/C=US/O=Starfield Technologies, Inc./OU=Starfield Class 2 Certification Authority + serial:00 + + X509v3 Basic Constraints: + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 05:9d:3f:88:9d:d1:c9:1a:55:a1:ac:69:f3:f3:59:da:9b:01: + 87:1a:4f:57:a9:a1:79:09:2a:db:f7:2f:b2:1e:cc:c7:5e:6a: + d8:83:87:a1:97:ef:49:35:3e:77:06:41:58:62:bf:8e:58:b8: + 0a:67:3f:ec:b3:dd:21:66:1f:c9:54:fa:72:cc:3d:4c:40:d8: + 81:af:77:9e:83:7a:bb:a2:c7:f5:34:17:8e:d9:11:40:f4:fc: + 2c:2a:4d:15:7f:a7:62:5d:2e:25:d3:00:0b:20:1a:1d:68:f9: + 17:b8:f4:bd:8b:ed:28:59:dd:4d:16:8b:17:83:c8:b2:65:c7: + 2d:7a:a5:aa:bc:53:86:6d:dd:57:a4:ca:f8:20:41:0b:68:f0: + f4:fb:74:be:56:5d:7a:79:f5:f9:1d:85:e3:2d:95:be:f5:71: + 90:43:cc:8d:1f:9a:00:0a:87:29:e9:55:22:58:00:23:ea:e3: + 12:43:29:5b:47:08:dd:8c:41:6a:65:06:a8:e5:21:aa:41:b4: + 95:21:95:b9:7d:d1:34:ab:13:d6:ad:bc:dc:e2:3d:39:cd:bd: + 3e:75:70:a1:18:59:03:c9:22:b4:8f:9c:d5:5e:2a:d7:a5:b6: + d4:0a:6d:f8:b7:40:11:46:9a:1f:79:0e:62:bf:0f:97:ec:e0: + 2f:1f:17:94 +SHA1 Fingerprint=AD:7E:1C:28:B0:64:EF:8F:60:03:40:20:14:C3:D0:E3:37:0E:B5:8A diff --git a/system/etc/security/cacerts/27af790d.0 b/system/etc/security/cacerts/27af790d.0 new file mode 100644 index 0000000000000000000000000000000000000000..7de9d2fb82ddbc90eb8ab4a7f264a2b0a554cfcb --- /dev/null +++ b/system/etc/security/cacerts/27af790d.0 @@ -0,0 +1,55 @@ +-----BEGIN CERTIFICATE----- +MIICrjCCAjWgAwIBAgIQPLL0SAoA4v7rJDteYD7DazAKBggqhkjOPQQDAzCBmDEL +MAkGA1UEBhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChj +KSAyMDA3IEdlb1RydXN0IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2 +MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0 +eSAtIEcyMB4XDTA3MTEwNTAwMDAwMFoXDTM4MDExODIzNTk1OVowgZgxCzAJBgNV +BAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAoYykgMjAw +NyBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNV +BAMTLUdlb1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBH +MjB2MBAGByqGSM49AgEGBSuBBAAiA2IABBWx6P0DFUPlrOuHNxFi79KDNlJ9RVcL +So17VDs6bl8VAsBQps8lL33KSLjHUGMcKiEIfJo22Av+0SbFWDEwKCXzXV2juLal +tJLtbCyf691DiaI8S0iRHVDsJt/WYC69IaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAO +BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBVfNVdRVfslsq0DafwBo/q+EVXVMAoG +CCqGSM49BAMDA2cAMGQCMGSWWaboCd6LuvpaiIjwH5HTRqjySkwCY/tsXzjbLkGT +qQ7mndwxHLKgpxgceeHHNgIwOlavmnRs9vuD4DPTCF+hnMJbn0bWtsuRBmOiBucz +rD6ogRLQy7rQkgu2npaqBA+K +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 3c:b2:f4:48:0a:00:e2:fe:eb:24:3b:5e:60:3e:c3:6b + Signature Algorithm: ecdsa-with-SHA384 + Issuer: C=US, O=GeoTrust Inc., OU=(c) 2007 GeoTrust Inc. - For authorized use only, CN=GeoTrust Primary Certification Authority - G2 + Validity + Not Before: Nov 5 00:00:00 2007 GMT + Not After : Jan 18 23:59:59 2038 GMT + Subject: C=US, O=GeoTrust Inc., OU=(c) 2007 GeoTrust Inc. - For authorized use only, CN=GeoTrust Primary Certification Authority - G2 + Subject Public Key Info: + Public Key Algorithm: id-ecPublicKey + Public-Key: (384 bit) + pub: + 04:15:b1:e8:fd:03:15:43:e5:ac:eb:87:37:11:62: + ef:d2:83:36:52:7d:45:57:0b:4a:8d:7b:54:3b:3a: + 6e:5f:15:02:c0:50:a6:cf:25:2f:7d:ca:48:b8:c7: + 50:63:1c:2a:21:08:7c:9a:36:d8:0b:fe:d1:26:c5: + 58:31:30:28:25:f3:5d:5d:a3:b8:b6:a5:b4:92:ed: + 6c:2c:9f:eb:dd:43:89:a2:3c:4b:48:91:1d:50:ec: + 26:df:d6:60:2e:bd:21 + ASN1 OID: secp384r1 + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + 15:5F:35:57:51:55:FB:25:B2:AD:03:69:FC:01:A3:FA:BE:11:55:D5 + Signature Algorithm: ecdsa-with-SHA384 + 30:64:02:30:64:96:59:a6:e8:09:de:8b:ba:fa:5a:88:88:f0: + 1f:91:d3:46:a8:f2:4a:4c:02:63:fb:6c:5f:38:db:2e:41:93: + a9:0e:e6:9d:dc:31:1c:b2:a0:a7:18:1c:79:e1:c7:36:02:30: + 3a:56:af:9a:74:6c:f6:fb:83:e0:33:d3:08:5f:a1:9c:c2:5b: + 9f:46:d6:b6:cb:91:06:63:a2:06:e7:33:ac:3e:a8:81:12:d0: + cb:ba:d0:92:0b:b6:9e:96:aa:04:0f:8a +SHA1 Fingerprint=8D:17:84:D5:37:F3:03:7D:EC:70:FE:57:8B:51:9A:99:E6:10:D7:B0 diff --git a/system/etc/security/cacerts/2add47b6.0 b/system/etc/security/cacerts/2add47b6.0 new file mode 100644 index 0000000000000000000000000000000000000000..aa885397c79774fcfa6aa4c4fe2b51afe8ecf368 --- /dev/null +++ b/system/etc/security/cacerts/2add47b6.0 @@ -0,0 +1,52 @@ +-----BEGIN CERTIFICATE----- +MIICHjCCAaSgAwIBAgIRYFlJ4CYuu1X5CneKcflK2GwwCgYIKoZIzj0EAwMwUDEk +MCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpH +bG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoX +DTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBD +QSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu +MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAER0UOlvt9Xb/pOdEh+J8LttV7HpI6SFkc +8GIxLcB6KP4ap1yztsyX50XUWPrRd21DosCHZTQKH3rd6zwzocWdTaRvQZU4f8ke +hOvRnkmSh5SHDDqFSmafnVmTTZdhBoZKo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUPeYpSJvqB8ohREom3m7e0oPQn1kwCgYI +KoZIzj0EAwMDaAAwZQIxAOVpEslu28YxuglB4Zf4+/2a4n0Sye18ZNPLBSWLVtmg +515dTguDnFt2KaAJJiFqYgIwcdK1j1zqO+F4CYWodZI7yFz9SO8NdCKoCOJuxUnO +xwy8p2Fp8fc74SrL+SvzZpA3 +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 60:59:49:e0:26:2e:bb:55:f9:0a:77:8a:71:f9:4a:d8:6c + Signature Algorithm: ecdsa-with-SHA384 + Issuer: OU=GlobalSign ECC Root CA - R5, O=GlobalSign, CN=GlobalSign + Validity + Not Before: Nov 13 00:00:00 2012 GMT + Not After : Jan 19 03:14:07 2038 GMT + Subject: OU=GlobalSign ECC Root CA - R5, O=GlobalSign, CN=GlobalSign + Subject Public Key Info: + Public Key Algorithm: id-ecPublicKey + Public-Key: (384 bit) + pub: + 04:47:45:0e:96:fb:7d:5d:bf:e9:39:d1:21:f8:9f: + 0b:b6:d5:7b:1e:92:3a:48:59:1c:f0:62:31:2d:c0: + 7a:28:fe:1a:a7:5c:b3:b6:cc:97:e7:45:d4:58:fa: + d1:77:6d:43:a2:c0:87:65:34:0a:1f:7a:dd:eb:3c: + 33:a1:c5:9d:4d:a4:6f:41:95:38:7f:c9:1e:84:eb: + d1:9e:49:92:87:94:87:0c:3a:85:4a:66:9f:9d:59: + 93:4d:97:61:06:86:4a + ASN1 OID: secp384r1 + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 3D:E6:29:48:9B:EA:07:CA:21:44:4A:26:DE:6E:DE:D2:83:D0:9F:59 + Signature Algorithm: ecdsa-with-SHA384 + 30:65:02:31:00:e5:69:12:c9:6e:db:c6:31:ba:09:41:e1:97: + f8:fb:fd:9a:e2:7d:12:c9:ed:7c:64:d3:cb:05:25:8b:56:d9: + a0:e7:5e:5d:4e:0b:83:9c:5b:76:29:a0:09:26:21:6a:62:02: + 30:71:d2:b5:8f:5c:ea:3b:e1:78:09:85:a8:75:92:3b:c8:5c: + fd:48:ef:0d:74:22:a8:08:e2:6e:c5:49:ce:c7:0c:bc:a7:61: + 69:f1:f7:3b:e1:2a:cb:f9:2b:f3:66:90:37 +SHA1 Fingerprint=1F:24:C6:30:CD:A4:18:EF:20:69:FF:AD:4F:DD:5F:46:3A:1B:69:AA diff --git a/system/etc/security/cacerts/2d9dafe4.0 b/system/etc/security/cacerts/2d9dafe4.0 new file mode 100644 index 0000000000000000000000000000000000000000..b99db9593060c69d53f7756e72665600914721a0 --- /dev/null +++ b/system/etc/security/cacerts/2d9dafe4.0 @@ -0,0 +1,119 @@ +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd +MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg +Q2xhc3MgMyBSb290IENBMB4XDTEwMTAyNjA4Mjg1OFoXDTQwMTAyNjA4Mjg1OFow +TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw +HgYDVQQDDBdCdXlwYXNzIENsYXNzIDMgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB +BQADggIPADCCAgoCggIBAKXaCpUWUOOV8l6ddjEGMnqb8RB2uACatVI2zSRHsJ8Y +ZLya9vrVediQYkwiL944PdbgqOkcLNt4EemOaFEVcsfzM4fkoF0LXOBXByow9c3E +N3coTRiR5r/VUv1xLXA+58bEiuPwKAv0dpihi4dVsjoT/Lc+JzeOIuOoTyrvYLs9 +tznDDgFHmV0ST9tD+leh7fmdvhFHJlsTmKtdFoqwNxxXnUX/iJY2v7vKB3tvh2PX +0DJq1l1sDPGzbjniazEuOQAnFN44wOwZZoYS6J1yFhNkUsepNxz9gjDthBgd9K5c +/3ATAOux9TN6S9ZV+AWNS2mw9bMoNlwUxFFzTWsL8TQH2xc519woe2v1n/MuwU8X +KhDzzMro6/1rqy6any2CbgTUUgGTLT2G/H783+9CHaZr77kgxve9oKeV/afmiSTY +zIw0bOIjL9kSGiG5VZFvC5F5GQytQIgLcOJ60g7YaEi7ghM5EFjp2CoHxhLbWNvS +O1UQRwUVZ2J+GGOmRj8JDlQyXr8NYnon74Do29lLBlo3WiXQCBJ31G8JUJc9yB3D +34xFMFbG02SrZvPAXpacw8Tvw3xrizp5f7NJzz3iiZ+gMEuFuZyUJHmPfWupRWgP +K9Dx2hzLabjKSWJtyNBjYt1gD1iqj6G8BaVmos8bdrKEZLFMOVLAMLrwjEsCsLa3 +AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFEe4zf/lb+74suwv +Tg75JbCOPGvDMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAACAj +QTUEkMJAYmDv4jVM1z+s4jSQuKFvdvoWFqRINyzpkMLyPPgKn9iB5btb2iUspKdV +cSQy9sgL8rxq+JOssgfCX5/bzMiKqr5qb+FJEMwx14C7u8jYog5kV+qi9cKpMRXS +IGrs/CIBKM+GuIAeqcwRpTzyFrNHnfzSgCHEy9BHcEGhyoMZCCxt8l13nIoUE9Q2 +HJLw5QY33KbmkJs4j1xrG0aGQ0JfPgEHU1RdZX33inOhmlRaHylDFCfChQ+1iHsa +O5S3HWCntZznKWlXWpuTekMwGwPXYshApqr8ZORK15FTAaggiG6cX0S5y2CBNOxv +033aSF/rtJC8LakcC6wc1aJoIIAE1vyxjy+7SjENSoYc6+I2KSb12tjE8nVhz36u +dmNKekBlk4f4HoCMhuWG1o8O/FMsYOgWYRqiPkN7zTlgVGr18okmAWiDSKIz6MkE +kbIRNBE+6tBDGR8Dk5AM/1E9V/RBbuHLoL7ryWPNbczk+DaqaJ3tvV2XcEQNtg41 +3OEMXbugUZTLfhbrES+jkkXITHHZvMmZUldGL1DPvTVp9D0VzgalLA8+9oG6lLvD +u79leNKGef9JOxqDDPDeeOzI8k1MGt6CKfjBWtrt7uYnXuhF0J0cUahoq0Tj0Itq +4/g7u9xN12TyUb7mqqta6THuBrxzvxNiCp/HuZc= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 2 (0x2) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=NO, O=Buypass AS-983163327, CN=Buypass Class 3 Root CA + Validity + Not Before: Oct 26 08:28:58 2010 GMT + Not After : Oct 26 08:28:58 2040 GMT + Subject: C=NO, O=Buypass AS-983163327, CN=Buypass Class 3 Root CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:a5:da:0a:95:16:50:e3:95:f2:5e:9d:76:31:06: + 32:7a:9b:f1:10:76:b8:00:9a:b5:52:36:cd:24:47: + b0:9f:18:64:bc:9a:f6:fa:d5:79:d8:90:62:4c:22: + 2f:de:38:3d:d6:e0:a8:e9:1c:2c:db:78:11:e9:8e: + 68:51:15:72:c7:f3:33:87:e4:a0:5d:0b:5c:e0:57: + 07:2a:30:f5:cd:c4:37:77:28:4d:18:91:e6:bf:d5: + 52:fd:71:2d:70:3e:e7:c6:c4:8a:e3:f0:28:0b:f4: + 76:98:a1:8b:87:55:b2:3a:13:fc:b7:3e:27:37:8e: + 22:e3:a8:4f:2a:ef:60:bb:3d:b7:39:c3:0e:01:47: + 99:5d:12:4f:db:43:fa:57:a1:ed:f9:9d:be:11:47: + 26:5b:13:98:ab:5d:16:8a:b0:37:1c:57:9d:45:ff: + 88:96:36:bf:bb:ca:07:7b:6f:87:63:d7:d0:32:6a: + d6:5d:6c:0c:f1:b3:6e:39:e2:6b:31:2e:39:00:27: + 14:de:38:c0:ec:19:66:86:12:e8:9d:72:16:13:64: + 52:c7:a9:37:1c:fd:82:30:ed:84:18:1d:f4:ae:5c: + ff:70:13:00:eb:b1:f5:33:7a:4b:d6:55:f8:05:8d: + 4b:69:b0:f5:b3:28:36:5c:14:c4:51:73:4d:6b:0b: + f1:34:07:db:17:39:d7:dc:28:7b:6b:f5:9f:f3:2e: + c1:4f:17:2a:10:f3:cc:ca:e8:eb:fd:6b:ab:2e:9a: + 9f:2d:82:6e:04:d4:52:01:93:2d:3d:86:fc:7e:fc: + df:ef:42:1d:a6:6b:ef:b9:20:c6:f7:bd:a0:a7:95: + fd:a7:e6:89:24:d8:cc:8c:34:6c:e2:23:2f:d9:12: + 1a:21:b9:55:91:6f:0b:91:79:19:0c:ad:40:88:0b: + 70:e2:7a:d2:0e:d8:68:48:bb:82:13:39:10:58:e9: + d8:2a:07:c6:12:db:58:db:d2:3b:55:10:47:05:15: + 67:62:7e:18:63:a6:46:3f:09:0e:54:32:5e:bf:0d: + 62:7a:27:ef:80:e8:db:d9:4b:06:5a:37:5a:25:d0: + 08:12:77:d4:6f:09:50:97:3d:c8:1d:c3:df:8c:45: + 30:56:c6:d3:64:ab:66:f3:c0:5e:96:9c:c3:c4:ef: + c3:7c:6b:8b:3a:79:7f:b3:49:cf:3d:e2:89:9f:a0: + 30:4b:85:b9:9c:94:24:79:8f:7d:6b:a9:45:68:0f: + 2b:d0:f1:da:1c:cb:69:b8:ca:49:62:6d:c8:d0:63: + 62:dd:60:0f:58:aa:8f:a1:bc:05:a5:66:a2:cf:1b: + 76:b2:84:64:b1:4c:39:52:c0:30:ba:f0:8c:4b:02: + b0:b6:b7 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 47:B8:CD:FF:E5:6F:EE:F8:B2:EC:2F:4E:0E:F9:25:B0:8E:3C:6B:C3 + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + Signature Algorithm: sha256WithRSAEncryption + 00:20:23:41:35:04:90:c2:40:62:60:ef:e2:35:4c:d7:3f:ac: + e2:34:90:b8:a1:6f:76:fa:16:16:a4:48:37:2c:e9:90:c2:f2: + 3c:f8:0a:9f:d8:81:e5:bb:5b:da:25:2c:a4:a7:55:71:24:32: + f6:c8:0b:f2:bc:6a:f8:93:ac:b2:07:c2:5f:9f:db:cc:c8:8a: + aa:be:6a:6f:e1:49:10:cc:31:d7:80:bb:bb:c8:d8:a2:0e:64: + 57:ea:a2:f5:c2:a9:31:15:d2:20:6a:ec:fc:22:01:28:cf:86: + b8:80:1e:a9:cc:11:a5:3c:f2:16:b3:47:9d:fc:d2:80:21:c4: + cb:d0:47:70:41:a1:ca:83:19:08:2c:6d:f2:5d:77:9c:8a:14: + 13:d4:36:1c:92:f0:e5:06:37:dc:a6:e6:90:9b:38:8f:5c:6b: + 1b:46:86:43:42:5f:3e:01:07:53:54:5d:65:7d:f7:8a:73:a1: + 9a:54:5a:1f:29:43:14:27:c2:85:0f:b5:88:7b:1a:3b:94:b7: + 1d:60:a7:b5:9c:e7:29:69:57:5a:9b:93:7a:43:30:1b:03:d7: + 62:c8:40:a6:aa:fc:64:e4:4a:d7:91:53:01:a8:20:88:6e:9c: + 5f:44:b9:cb:60:81:34:ec:6f:d3:7d:da:48:5f:eb:b4:90:bc: + 2d:a9:1c:0b:ac:1c:d5:a2:68:20:80:04:d6:fc:b1:8f:2f:bb: + 4a:31:0d:4a:86:1c:eb:e2:36:29:26:f5:da:d8:c4:f2:75:61: + cf:7e:ae:76:63:4a:7a:40:65:93:87:f8:1e:80:8c:86:e5:86: + d6:8f:0e:fc:53:2c:60:e8:16:61:1a:a2:3e:43:7b:cd:39:60: + 54:6a:f5:f2:89:26:01:68:83:48:a2:33:e8:c9:04:91:b2:11: + 34:11:3e:ea:d0:43:19:1f:03:93:90:0c:ff:51:3d:57:f4:41: + 6e:e1:cb:a0:be:eb:c9:63:cd:6d:cc:e4:f8:36:aa:68:9d:ed: + bd:5d:97:70:44:0d:b6:0e:35:dc:e1:0c:5d:bb:a0:51:94:cb: + 7e:16:eb:11:2f:a3:92:45:c8:4c:71:d9:bc:c9:99:52:57:46: + 2f:50:cf:bd:35:69:f4:3d:15:ce:06:a5:2c:0f:3e:f6:81:ba: + 94:bb:c3:bb:bf:65:78:d2:86:79:ff:49:3b:1a:83:0c:f0:de: + 78:ec:c8:f2:4d:4c:1a:de:82:29:f8:c1:5a:da:ed:ee:e6:27: + 5e:e8:45:d0:9d:1c:51:a8:68:ab:44:e3:d0:8b:6a:e3:f8:3b: + bb:dc:4d:d7:64:f2:51:be:e6:aa:ab:5a:e9:31:ee:06:bc:73: + bf:13:62:0a:9f:c7:b9:97 +SHA1 Fingerprint=DA:FA:F7:FA:66:84:EC:06:8F:14:50:BD:C7:C2:81:A5:BC:A9:64:57 diff --git a/system/etc/security/cacerts/2fa87019.0 b/system/etc/security/cacerts/2fa87019.0 new file mode 100644 index 0000000000000000000000000000000000000000..530392735562e7ef0be936605d33a80c301e66ec --- /dev/null +++ b/system/etc/security/cacerts/2fa87019.0 @@ -0,0 +1,86 @@ +-----BEGIN CERTIFICATE----- +MIID5jCCAs6gAwIBAgIQV8szb8JcFuZHFhfjkDFo4DANBgkqhkiG9w0BAQUFADBi +MQswCQYDVQQGEwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMu +MTAwLgYDVQQDEydOZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3Jp +dHkwHhcNMDYxMjAxMDAwMDAwWhcNMjkxMjMxMjM1OTU5WjBiMQswCQYDVQQGEwJV +UzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMTAwLgYDVQQDEydO +ZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0GCSqG +SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDkvH6SMG3G2I4rC7xGzuAnlt7e+foS0zwz +c7MEL7xxjOWftiJgPl9dzgn/ggwbmlFQGiaJ3dVhXRncEg8tCqJDXRfQNJIg6nPP +OCwGJgl6cvf6UDL4wpPTaaIjzkGxzOTVHzbRijr4jGPiFFlp7Q3Tf2vouAPlT2rl +mGNpSAW+Lv8ztumXWWn4Zxmuk2GWRBXTcrA/vGp97Eh/jcOrqnErU2lBUzS1sLnF +BgrEsEX1QV1uiUV7PTsmjHTC5dLRfbIR1PtYMiKagMnc/Qzpf14Dl847ABSHJ3A4 +qY5usyd2mFHgBeMhqxrVhSI8KbWaFsWAqPS7azCPL0YCorEMIuDTAgMBAAGjgZcw +gZQwHQYDVR0OBBYEFCEwyfsA106Y2oeqKtCnLrFAMadMMA4GA1UdDwEB/wQEAwIB +BjAPBgNVHRMBAf8EBTADAQH/MFIGA1UdHwRLMEkwR6BFoEOGQWh0dHA6Ly9jcmwu +bmV0c29sc3NsLmNvbS9OZXR3b3JrU29sdXRpb25zQ2VydGlmaWNhdGVBdXRob3Jp +dHkuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQC7rkvnt1frf6ott3NHhWrB5KUd5Oc8 +6fRZZXe1eltajSU24HqXLjjAV2CDmAaDn7l2em5Q4LqILPxFzBiwmZVRDuwduIj/ +h1AcgsLj4DKAv6ALR8jDMe+ZZzKATxcheQxpXN5eNK4CtSbqUN9/GGUsyfJj4akH +/nxxH2szJGoeBfcFaMBqEssuXmHLrijTfsK0ZpEmXzwuJF/LWA/rKOyvEZbz3Htv +wKeI8lN3s2Berq4o2jUsbzRF0ybh3uxbTydrFny9RAQYgrOJeRcQcT16ohZO9QHN +pGxlaKFJdlxDydi8NmdspZS11My5vWo1ViHe2MPr+8ukYEywVaCge1ey +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 57:cb:33:6f:c2:5c:16:e6:47:16:17:e3:90:31:68:e0 + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=US, O=Network Solutions L.L.C., CN=Network Solutions Certificate Authority + Validity + Not Before: Dec 1 00:00:00 2006 GMT + Not After : Dec 31 23:59:59 2029 GMT + Subject: C=US, O=Network Solutions L.L.C., CN=Network Solutions Certificate Authority + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:e4:bc:7e:92:30:6d:c6:d8:8e:2b:0b:bc:46:ce: + e0:27:96:de:de:f9:fa:12:d3:3c:33:73:b3:04:2f: + bc:71:8c:e5:9f:b6:22:60:3e:5f:5d:ce:09:ff:82: + 0c:1b:9a:51:50:1a:26:89:dd:d5:61:5d:19:dc:12: + 0f:2d:0a:a2:43:5d:17:d0:34:92:20:ea:73:cf:38: + 2c:06:26:09:7a:72:f7:fa:50:32:f8:c2:93:d3:69: + a2:23:ce:41:b1:cc:e4:d5:1f:36:d1:8a:3a:f8:8c: + 63:e2:14:59:69:ed:0d:d3:7f:6b:e8:b8:03:e5:4f: + 6a:e5:98:63:69:48:05:be:2e:ff:33:b6:e9:97:59: + 69:f8:67:19:ae:93:61:96:44:15:d3:72:b0:3f:bc: + 6a:7d:ec:48:7f:8d:c3:ab:aa:71:2b:53:69:41:53: + 34:b5:b0:b9:c5:06:0a:c4:b0:45:f5:41:5d:6e:89: + 45:7b:3d:3b:26:8c:74:c2:e5:d2:d1:7d:b2:11:d4: + fb:58:32:22:9a:80:c9:dc:fd:0c:e9:7f:5e:03:97: + ce:3b:00:14:87:27:70:38:a9:8e:6e:b3:27:76:98: + 51:e0:05:e3:21:ab:1a:d5:85:22:3c:29:b5:9a:16: + c5:80:a8:f4:bb:6b:30:8f:2f:46:02:a2:b1:0c:22: + e0:d3 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 21:30:C9:FB:00:D7:4E:98:DA:87:AA:2A:D0:A7:2E:B1:40:31:A7:4C + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 CRL Distribution Points: + + Full Name: + URI:http://crl.netsolssl.com/NetworkSolutionsCertificateAuthority.crl + + Signature Algorithm: sha1WithRSAEncryption + bb:ae:4b:e7:b7:57:eb:7f:aa:2d:b7:73:47:85:6a:c1:e4:a5: + 1d:e4:e7:3c:e9:f4:59:65:77:b5:7a:5b:5a:8d:25:36:e0:7a: + 97:2e:38:c0:57:60:83:98:06:83:9f:b9:76:7a:6e:50:e0:ba: + 88:2c:fc:45:cc:18:b0:99:95:51:0e:ec:1d:b8:88:ff:87:50: + 1c:82:c2:e3:e0:32:80:bf:a0:0b:47:c8:c3:31:ef:99:67:32: + 80:4f:17:21:79:0c:69:5c:de:5e:34:ae:02:b5:26:ea:50:df: + 7f:18:65:2c:c9:f2:63:e1:a9:07:fe:7c:71:1f:6b:33:24:6a: + 1e:05:f7:05:68:c0:6a:12:cb:2e:5e:61:cb:ae:28:d3:7e:c2: + b4:66:91:26:5f:3c:2e:24:5f:cb:58:0f:eb:28:ec:af:11:96: + f3:dc:7b:6f:c0:a7:88:f2:53:77:b3:60:5e:ae:ae:28:da:35: + 2c:6f:34:45:d3:26:e1:de:ec:5b:4f:27:6b:16:7c:bd:44:04: + 18:82:b3:89:79:17:10:71:3d:7a:a2:16:4e:f5:01:cd:a4:6c: + 65:68:a1:49:76:5c:43:c9:d8:bc:36:67:6c:a5:94:b5:d4:cc: + b9:bd:6a:35:56:21:de:d8:c3:eb:fb:cb:a4:60:4c:b0:55:a0: + a0:7b:57:b2 +SHA1 Fingerprint=74:F8:A3:C3:EF:E7:B3:90:06:4B:83:90:3C:21:64:60:20:E5:DF:CE diff --git a/system/etc/security/cacerts/31188b5e.0 b/system/etc/security/cacerts/31188b5e.0 new file mode 100644 index 0000000000000000000000000000000000000000..6d4419c8d70336ced68e7f3f90bcfbdb3f83aa7a --- /dev/null +++ b/system/etc/security/cacerts/31188b5e.0 @@ -0,0 +1,83 @@ +-----BEGIN CERTIFICATE----- +MIIEYzCCA0ugAwIBAgIBATANBgkqhkiG9w0BAQsFADCB0jELMAkGA1UEBhMCVFIx +GDAWBgNVBAcTD0dlYnplIC0gS29jYWVsaTFCMEAGA1UEChM5VHVya2l5ZSBCaWxp +bXNlbCB2ZSBUZWtub2xvamlrIEFyYXN0aXJtYSBLdXJ1bXUgLSBUVUJJVEFLMS0w +KwYDVQQLEyRLYW11IFNlcnRpZmlrYXN5b24gTWVya2V6aSAtIEthbXUgU00xNjA0 +BgNVBAMTLVRVQklUQUsgS2FtdSBTTSBTU0wgS29rIFNlcnRpZmlrYXNpIC0gU3Vy +dW0gMTAeFw0xMzExMjUwODI1NTVaFw00MzEwMjUwODI1NTVaMIHSMQswCQYDVQQG +EwJUUjEYMBYGA1UEBxMPR2ViemUgLSBLb2NhZWxpMUIwQAYDVQQKEzlUdXJraXll +IEJpbGltc2VsIHZlIFRla25vbG9qaWsgQXJhc3Rpcm1hIEt1cnVtdSAtIFRVQklU +QUsxLTArBgNVBAsTJEthbXUgU2VydGlmaWthc3lvbiBNZXJrZXppIC0gS2FtdSBT +TTE2MDQGA1UEAxMtVFVCSVRBSyBLYW11IFNNIFNTTCBLb2sgU2VydGlmaWthc2kg +LSBTdXJ1bSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr3UwM6q7 +a9OZLBI3hNmNe5eA027n/5tQlT6QlVZC1xl8JoSNkvoBHToP4mQ4t4y86Ij5iySr +LqP1N+RAjhgleYN1Hzv/bKjFxlb4tO2KRKOrbEz8HdDc72i9z+SqzvBV96I01INr +N3wcwv61A+xXzry0tcXtAA9TNypN9E8Mg/uGz8v+jE69h/mniyFXnHrfA2eJLJ2X +YacQuFWQfw4tJzh03+f92k4S400VIgLI4OD8D62K18lUUMw7D8oWgITQUVbDjlZ/ +iSIzL+aFCr2lqBs23tPcLG07xxO9WSMs5uWk99gL7eqQQESolbuT1dCANLZGeA4f +AJNG4e7p+exPFwIDAQABo0IwQDAdBgNVHQ4EFgQUZT/HiobGPN08VFw1+DrtUgxH +V8gwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEL +BQADggEBACo/4fEyjq7hmFxLXs9rHmoJ0iKpEsdeV31zVmSAhHqT5Am5EM2fKifh +AHe+SMg1qIGf5LgsyX8OsNJLN13qudULXjS99HMpw+0mFZx+CFOKWI3QSyjfwbPf +IPP54+M638yclNhOT8NrF7f3cuitZjO1JVOr4PhMqZ398g26rrnZqsZr+ZO7rqu4 +lzwDGrpDxpa5RXI4s6ehlj2Re37AIVNMh+3yC1SVUZPVIqUNivGTDj5UDrDYyU7c +8jEyVupk+eq1nRZmQnLzf9OxMUP8pI4X8W0jq5Rm+K37DwhuJi1/FwcJsoz7UMCf +lo3Ptv0AnVoUmr8CRPXBwp8iXqIPoeM= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 1 (0x1) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=TR, L=Gebze - Kocaeli, O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK, OU=Kamu Sertifikasyon Merkezi - Kamu SM, CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 + Validity + Not Before: Nov 25 08:25:55 2013 GMT + Not After : Oct 25 08:25:55 2043 GMT + Subject: C=TR, L=Gebze - Kocaeli, O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK, OU=Kamu Sertifikasyon Merkezi - Kamu SM, CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:af:75:30:33:aa:bb:6b:d3:99:2c:12:37:84:d9: + 8d:7b:97:80:d3:6e:e7:ff:9b:50:95:3e:90:95:56: + 42:d7:19:7c:26:84:8d:92:fa:01:1d:3a:0f:e2:64: + 38:b7:8c:bc:e8:88:f9:8b:24:ab:2e:a3:f5:37:e4: + 40:8e:18:25:79:83:75:1f:3b:ff:6c:a8:c5:c6:56: + f8:b4:ed:8a:44:a3:ab:6c:4c:fc:1d:d0:dc:ef:68: + bd:cf:e4:aa:ce:f0:55:f7:a2:34:d4:83:6b:37:7c: + 1c:c2:fe:b5:03:ec:57:ce:bc:b4:b5:c5:ed:00:0f: + 53:37:2a:4d:f4:4f:0c:83:fb:86:cf:cb:fe:8c:4e: + bd:87:f9:a7:8b:21:57:9c:7a:df:03:67:89:2c:9d: + 97:61:a7:10:b8:55:90:7f:0e:2d:27:38:74:df:e7: + fd:da:4e:12:e3:4d:15:22:02:c8:e0:e0:fc:0f:ad: + 8a:d7:c9:54:50:cc:3b:0f:ca:16:80:84:d0:51:56: + c3:8e:56:7f:89:22:33:2f:e6:85:0a:bd:a5:a8:1b: + 36:de:d3:dc:2c:6d:3b:c7:13:bd:59:23:2c:e6:e5: + a4:f7:d8:0b:ed:ea:90:40:44:a8:95:bb:93:d5:d0: + 80:34:b6:46:78:0e:1f:00:93:46:e1:ee:e9:f9:ec: + 4f:17 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 65:3F:C7:8A:86:C6:3C:DD:3C:54:5C:35:F8:3A:ED:52:0C:47:57:C8 + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha256WithRSAEncryption + 2a:3f:e1:f1:32:8e:ae:e1:98:5c:4b:5e:cf:6b:1e:6a:09:d2: + 22:a9:12:c7:5e:57:7d:73:56:64:80:84:7a:93:e4:09:b9:10: + cd:9f:2a:27:e1:00:77:be:48:c8:35:a8:81:9f:e4:b8:2c:c9: + 7f:0e:b0:d2:4b:37:5d:ea:b9:d5:0b:5e:34:bd:f4:73:29:c3: + ed:26:15:9c:7e:08:53:8a:58:8d:d0:4b:28:df:c1:b3:df:20: + f3:f9:e3:e3:3a:df:cc:9c:94:d8:4e:4f:c3:6b:17:b7:f7:72: + e8:ad:66:33:b5:25:53:ab:e0:f8:4c:a9:9d:fd:f2:0d:ba:ae: + b9:d9:aa:c6:6b:f9:93:bb:ae:ab:b8:97:3c:03:1a:ba:43:c6: + 96:b9:45:72:38:b3:a7:a1:96:3d:91:7b:7e:c0:21:53:4c:87: + ed:f2:0b:54:95:51:93:d5:22:a5:0d:8a:f1:93:0e:3e:54:0e: + b0:d8:c9:4e:dc:f2:31:32:56:ea:64:f9:ea:b5:9d:16:66:42: + 72:f3:7f:d3:b1:31:43:fc:a4:8e:17:f1:6d:23:ab:94:66:f8: + ad:fb:0f:08:6e:26:2d:7f:17:07:09:b2:8c:fb:50:c0:9f:96: + 8d:cf:b6:fd:00:9d:5a:14:9a:bf:02:44:f5:c1:c2:9f:22:5e: + a2:0f:a1:e3 +SHA1 Fingerprint=31:43:64:9B:EC:CE:27:EC:ED:3A:3F:0B:8F:0D:E4:E8:91:DD:EE:CA diff --git a/system/etc/security/cacerts/343eb6cb.0 b/system/etc/security/cacerts/343eb6cb.0 new file mode 100644 index 0000000000000000000000000000000000000000..ef2f4062602ca85d798b891c614555083fae93b0 --- /dev/null +++ b/system/etc/security/cacerts/343eb6cb.0 @@ -0,0 +1,88 @@ +-----BEGIN CERTIFICATE----- +MIIDoTCCAomgAwIBAgILBAAAAAABD4WqLUgwDQYJKoZIhvcNAQEFBQAwOzEYMBYG +A1UEChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2Jh +bCBSb290MB4XDTA2MTIxNTA4MDAwMFoXDTIxMTIxNTA4MDAwMFowOzEYMBYGA1UE +ChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2JhbCBS +b290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA+Mi8vRRQZhP/8NN5 +7CPytxrHjoXxEnOmGaoQ25yiZXRadz5RfVb23CO21O1fWLE3TdVJDm71aofW0ozS +J8bi/zafmGWgE07GKmSb1ZASzxQG9Dvj1Ci+6A74q05IlG2OlTEQXO2iLb3VOm2y +HLtgwEZLAfVJrn5GitB0jaEMAs7u/OePuGtm839EAL9mJRQr3RAwHQeWP032a7iP +t3sMpTjr3kfb1V05/Iin89cqdPHoWqI7n1C6poxFNcJQZZXcY4Lv3b93TZxiyWNz +FtApD0mpSPCzqrdsxacwOUBdrsTiXSZT8M4cIwhhqJQZugRiQOwfOHB3EgZxpzAY +XSUnpQIDAQABo4GlMIGiMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/ +MB0GA1UdDgQWBBS2CHsNesysIEyGVjJez6tuhS1wVzA/BgNVHR8EODA2MDSgMqAw +hi5odHRwOi8vd3d3Mi5wdWJsaWMtdHJ1c3QuY29tL2NybC9jdC9jdHJvb3QuY3Js +MB8GA1UdIwQYMBaAFLYIew16zKwgTIZWMl7Pq26FLXBXMA0GCSqGSIb3DQEBBQUA +A4IBAQBW7wojoFROlZfJ+InaRcHUowAl9B8Tq7ejhVhpwjCt2BWKLePJzYFa+HMj +Wqd8BfP9IjsO0QbE2zZMcwSO5bAi5MXzLqXZI+O4Tkogp24CJJ8iYGd7ix1yCcUx +XOl5n4BHPa2hCwcUPUf/A2kaDAtE52Mlp3+yybh2hO0j9n0Hq0V+09+zv+mKts2o +omcrUtW3ZfA5TGOgkXmTUg9U3YO7n9GPp1Nzw8v/MOx8BLjYRB+TX3EJIrduPuoc +A06dGiBh+4E37F78CkWr1+cXVdCg6mCbpvbjjFspwgZgFJ0tl0ypkxWdYcQBX0jW +WL1WMRJOEcgh4LMRkWXbtKaIOM5V +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 04:00:00:00:00:01:0f:85:aa:2d:48 + Signature Algorithm: sha1WithRSAEncryption + Issuer: O=Cybertrust, Inc, CN=Cybertrust Global Root + Validity + Not Before: Dec 15 08:00:00 2006 GMT + Not After : Dec 15 08:00:00 2021 GMT + Subject: O=Cybertrust, Inc, CN=Cybertrust Global Root + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:f8:c8:bc:bd:14:50:66:13:ff:f0:d3:79:ec:23: + f2:b7:1a:c7:8e:85:f1:12:73:a6:19:aa:10:db:9c: + a2:65:74:5a:77:3e:51:7d:56:f6:dc:23:b6:d4:ed: + 5f:58:b1:37:4d:d5:49:0e:6e:f5:6a:87:d6:d2:8c: + d2:27:c6:e2:ff:36:9f:98:65:a0:13:4e:c6:2a:64: + 9b:d5:90:12:cf:14:06:f4:3b:e3:d4:28:be:e8:0e: + f8:ab:4e:48:94:6d:8e:95:31:10:5c:ed:a2:2d:bd: + d5:3a:6d:b2:1c:bb:60:c0:46:4b:01:f5:49:ae:7e: + 46:8a:d0:74:8d:a1:0c:02:ce:ee:fc:e7:8f:b8:6b: + 66:f3:7f:44:00:bf:66:25:14:2b:dd:10:30:1d:07: + 96:3f:4d:f6:6b:b8:8f:b7:7b:0c:a5:38:eb:de:47: + db:d5:5d:39:fc:88:a7:f3:d7:2a:74:f1:e8:5a:a2: + 3b:9f:50:ba:a6:8c:45:35:c2:50:65:95:dc:63:82: + ef:dd:bf:77:4d:9c:62:c9:63:73:16:d0:29:0f:49: + a9:48:f0:b3:aa:b7:6c:c5:a7:30:39:40:5d:ae:c4: + e2:5d:26:53:f0:ce:1c:23:08:61:a8:94:19:ba:04: + 62:40:ec:1f:38:70:77:12:06:71:a7:30:18:5d:25: + 27:a5 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + B6:08:7B:0D:7A:CC:AC:20:4C:86:56:32:5E:CF:AB:6E:85:2D:70:57 + X509v3 CRL Distribution Points: + + Full Name: + URI:http://www2.public-trust.com/crl/ct/ctroot.crl + + X509v3 Authority Key Identifier: + keyid:B6:08:7B:0D:7A:CC:AC:20:4C:86:56:32:5E:CF:AB:6E:85:2D:70:57 + + Signature Algorithm: sha1WithRSAEncryption + 56:ef:0a:23:a0:54:4e:95:97:c9:f8:89:da:45:c1:d4:a3:00: + 25:f4:1f:13:ab:b7:a3:85:58:69:c2:30:ad:d8:15:8a:2d:e3: + c9:cd:81:5a:f8:73:23:5a:a7:7c:05:f3:fd:22:3b:0e:d1:06: + c4:db:36:4c:73:04:8e:e5:b0:22:e4:c5:f3:2e:a5:d9:23:e3: + b8:4e:4a:20:a7:6e:02:24:9f:22:60:67:7b:8b:1d:72:09:c5: + 31:5c:e9:79:9f:80:47:3d:ad:a1:0b:07:14:3d:47:ff:03:69: + 1a:0c:0b:44:e7:63:25:a7:7f:b2:c9:b8:76:84:ed:23:f6:7d: + 07:ab:45:7e:d3:df:b3:bf:e9:8a:b6:cd:a8:a2:67:2b:52:d5: + b7:65:f0:39:4c:63:a0:91:79:93:52:0f:54:dd:83:bb:9f:d1: + 8f:a7:53:73:c3:cb:ff:30:ec:7c:04:b8:d8:44:1f:93:5f:71: + 09:22:b7:6e:3e:ea:1c:03:4e:9d:1a:20:61:fb:81:37:ec:5e: + fc:0a:45:ab:d7:e7:17:55:d0:a0:ea:60:9b:a6:f6:e3:8c:5b: + 29:c2:06:60:14:9d:2d:97:4c:a9:93:15:9d:61:c4:01:5f:48: + d6:58:bd:56:31:12:4e:11:c8:21:e0:b3:11:91:65:db:b4:a6: + 88:38:ce:55 +SHA1 Fingerprint=5F:43:E5:B1:BF:F8:78:8C:AC:1C:C7:CA:4A:9A:C6:22:2B:CC:34:C6 diff --git a/system/etc/security/cacerts/35105088.0 b/system/etc/security/cacerts/35105088.0 new file mode 100644 index 0000000000000000000000000000000000000000..3728c3b7346893d7264496d05ffdfe0af039517a --- /dev/null +++ b/system/etc/security/cacerts/35105088.0 @@ -0,0 +1,123 @@ +-----BEGIN CERTIFICATE----- +MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCB +iDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0pl +cnNleSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNV +BAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAw +MjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNV +BAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU +aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2Vy +dGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK +AoICAQCAEmUXNg7D2wiz0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B +3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2jY0K2dvKpOyuR+OJv0OwWIJAJPuLodMkY +tJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFnRghRy4YUVD+8M/5+bJz/ +Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O+T23LLb2 +VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT +79uq/nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6 +c0Plfg6lZrEpfDKEY1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmT +Yo61Zs8liM2EuLE/pDkP2QKe6xJMlXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97l +c6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8yexDJtC/QV9AqURE9JnnV4ee +UB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+eLf8ZxXhyVeE +Hg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd +BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8G +A1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPF +Up/L+M+ZBn8b2kMVn54CVVeWFPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KO +VWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ7l8wXEskEVX/JJpuXior7gtNn3/3 +ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQEg9zKC7F4iRO/Fjs +8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM8WcR +iQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYze +Sf7dNXGiFSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZ +XHlKYC6SQK5MNyosycdiyA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/ +qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9cJ2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRB +VXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGwsAvgnEzDHNb842m1R0aB +L6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gxQ+6IHdfG +jjxDah2nGN59PRbxYvnKkKj9 +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 01:fd:6d:30:fc:a3:ca:51:a8:1b:bc:64:0e:35:03:2d + Signature Algorithm: sha384WithRSAEncryption + Issuer: C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority + Validity + Not Before: Feb 1 00:00:00 2010 GMT + Not After : Jan 18 23:59:59 2038 GMT + Subject: C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:80:12:65:17:36:0e:c3:db:08:b3:d0:ac:57:0d: + 76:ed:cd:27:d3:4c:ad:50:83:61:e2:aa:20:4d:09: + 2d:64:09:dc:ce:89:9f:cc:3d:a9:ec:f6:cf:c1:dc: + f1:d3:b1:d6:7b:37:28:11:2b:47:da:39:c6:bc:3a: + 19:b4:5f:a6:bd:7d:9d:a3:63:42:b6:76:f2:a9:3b: + 2b:91:f8:e2:6f:d0:ec:16:20:90:09:3e:e2:e8:74: + c9:18:b4:91:d4:62:64:db:7f:a3:06:f1:88:18:6a: + 90:22:3c:bc:fe:13:f0:87:14:7b:f6:e4:1f:8e:d4: + e4:51:c6:11:67:46:08:51:cb:86:14:54:3f:bc:33: + fe:7e:6c:9c:ff:16:9d:18:bd:51:8e:35:a6:a7:66: + c8:72:67:db:21:66:b1:d4:9b:78:03:c0:50:3a:e8: + cc:f0:dc:bc:9e:4c:fe:af:05:96:35:1f:57:5a:b7: + ff:ce:f9:3d:b7:2c:b6:f6:54:dd:c8:e7:12:3a:4d: + ae:4c:8a:b7:5c:9a:b4:b7:20:3d:ca:7f:22:34:ae: + 7e:3b:68:66:01:44:e7:01:4e:46:53:9b:33:60:f7: + 94:be:53:37:90:73:43:f3:32:c3:53:ef:db:aa:fe: + 74:4e:69:c7:6b:8c:60:93:de:c4:c7:0c:df:e1:32: + ae:cc:93:3b:51:78:95:67:8b:ee:3d:56:fe:0c:d0: + 69:0f:1b:0f:f3:25:26:6b:33:6d:f7:6e:47:fa:73: + 43:e5:7e:0e:a5:66:b1:29:7c:32:84:63:55:89:c4: + 0d:c1:93:54:30:19:13:ac:d3:7d:37:a7:eb:5d:3a: + 6c:35:5c:db:41:d7:12:da:a9:49:0b:df:d8:80:8a: + 09:93:62:8e:b5:66:cf:25:88:cd:84:b8:b1:3f:a4: + 39:0f:d9:02:9e:eb:12:4c:95:7c:f3:6b:05:a9:5e: + 16:83:cc:b8:67:e2:e8:13:9d:cc:5b:82:d3:4c:b3: + ed:5b:ff:de:e5:73:ac:23:3b:2d:00:bf:35:55:74: + 09:49:d8:49:58:1a:7f:92:36:e6:51:92:0e:f3:26: + 7d:1c:4d:17:bc:c9:ec:43:26:d0:bf:41:5f:40:a9: + 44:44:f4:99:e7:57:87:9e:50:1f:57:54:a8:3e:fd: + 74:63:2f:b1:50:65:09:e6:58:42:2e:43:1a:4c:b4: + f0:25:47:59:fa:04:1e:93:d4:26:46:4a:50:81:b2: + de:be:78:b7:fc:67:15:e1:c9:57:84:1e:0f:63:d6: + e9:62:ba:d6:5f:55:2e:ea:5c:c6:28:08:04:25:39: + b8:0e:2b:a9:f2:4c:97:1c:07:3f:0d:52:f5:ed:ef: + 2f:82:0f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 53:79:BF:5A:AA:2B:4A:CF:54:80:E1:D8:9B:C0:9D:F2:B2:03:66:CB + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha384WithRSAEncryption + 5c:d4:7c:0d:cf:f7:01:7d:41:99:65:0c:73:c5:52:9f:cb:f8: + cf:99:06:7f:1b:da:43:15:9f:9e:02:55:57:96:14:f1:52:3c: + 27:87:94:28:ed:1f:3a:01:37:a2:76:fc:53:50:c0:84:9b:c6: + 6b:4e:ba:8c:21:4f:a2:8e:55:62:91:f3:69:15:d8:bc:88:e3: + c4:aa:0b:fd:ef:a8:e9:4b:55:2a:06:20:6d:55:78:29:19:ee: + 5f:30:5c:4b:24:11:55:ff:24:9a:6e:5e:2a:2b:ee:0b:4d:9f: + 7f:f7:01:38:94:14:95:43:07:09:fb:60:a9:ee:1c:ab:12:8c: + a0:9a:5e:a7:98:6a:59:6d:8b:3f:08:fb:c8:d1:45:af:18:15: + 64:90:12:0f:73:28:2e:c5:e2:24:4e:fc:58:ec:f0:f4:45:fe: + 22:b3:eb:2f:8e:d2:d9:45:61:05:c1:97:6f:a8:76:72:8f:8b: + 8c:36:af:bf:0d:05:ce:71:8d:e6:a6:6f:1f:6c:a6:71:62:c5: + d8:d0:83:72:0c:f1:67:11:89:0c:9c:13:4c:72:34:df:bc:d5: + 71:df:aa:71:dd:e1:b9:6c:8c:3c:12:5d:65:da:bd:57:12:b6: + 43:6b:ff:e5:de:4d:66:11:51:cf:99:ae:ec:17:b6:e8:71:91: + 8c:de:49:fe:dd:35:71:a2:15:27:94:1c:cf:61:e3:26:bb:6f: + a3:67:25:21:5d:e6:dd:1d:0b:2e:68:1b:3b:82:af:ec:83:67: + 85:d4:98:51:74:b1:b9:99:80:89:ff:7f:78:19:5c:79:4a:60: + 2e:92:40:ae:4c:37:2a:2c:c9:c7:62:c8:0e:5d:f7:36:5b:ca: + e0:25:25:01:b4:dd:1a:07:9c:77:00:3f:d0:dc:d5:ec:3d:d4: + fa:bb:3f:cc:85:d6:6f:7f:a9:2d:df:b9:02:f7:f5:97:9a:b5: + 35:da:c3:67:b0:87:4a:a9:28:9e:23:8e:ff:5c:27:6b:e1:b0: + 4f:f3:07:ee:00:2e:d4:59:87:cb:52:41:95:ea:f4:47:d7:ee: + 64:41:55:7c:8d:59:02:95:dd:62:9d:c2:b9:ee:5a:28:74:84: + a5:9b:b7:90:c7:0c:07:df:f5:89:36:74:32:d6:28:c1:b0:b0: + 0b:e0:9c:4c:c3:1c:d6:fc:e3:69:b5:47:46:81:2f:a2:82:ab: + d3:63:44:70:c4:8d:ff:2d:33:ba:ad:8f:7b:b5:70:88:ae:3e: + 19:cf:40:28:d8:fc:c8:90:bb:5d:99:22:f5:52:e6:58:c5:1f: + 88:31:43:ee:88:1d:d7:c6:8e:3c:43:6a:1d:a7:18:de:7d:3d: + 16:f1:62:f9:ca:90:a8:fd +SHA1 Fingerprint=2B:8F:1B:57:33:0D:BB:A2:D0:7A:6C:51:F7:0E:E9:0D:DA:B9:AD:8E diff --git a/system/etc/security/cacerts/3929ec9f.0 b/system/etc/security/cacerts/3929ec9f.0 new file mode 100644 index 0000000000000000000000000000000000000000..bc31d157ae4b8555d93ac7e35a4a680c2b26fd20 --- /dev/null +++ b/system/etc/security/cacerts/3929ec9f.0 @@ -0,0 +1,124 @@ +-----BEGIN CERTIFICATE----- +MIIFbzCCA1egAwIBAgISESChaRu/vbm9UpaPI+hIvyYRMA0GCSqGSIb3DQEBDQUA +MEAxCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlPcGVuVHJ1c3QxHTAbBgNVBAMMFE9w +ZW5UcnVzdCBSb290IENBIEcyMB4XDTE0MDUyNjAwMDAwMFoXDTM4MDExNTAwMDAw +MFowQDELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCU9wZW5UcnVzdDEdMBsGA1UEAwwU +T3BlblRydXN0IFJvb3QgQ0EgRzIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK +AoICAQDMtlelM5QQgTJT32F+D3Y5z1zCU3UdSXqWON2ic2rxb95eolq5cSG+Ntmh +/LzubKh8NBpxGuga2F8ORAbtp+Dz0mEL4DKiltE48MLaARf85KxP6O6JHnSrT78e +CbY2albz4e6WiWYkBuTNQjpK3eCasMSCRbP+yatcfD7J6xcvDH1urqWPyKwlCm/6 +1UWY0jUJ9gNDlP7ZvyCVeYCYitmJNbtRG6Q3ffyZO6v/v6wNj0OxmXsWEH4db0fE +FY8ElggGQgT4hNYdvJGmQr5J1WqIP7wtUdGejeBSzFfdNTVY27SPJIjki9/ca1TS +gSuyzpJLHB9G+h3Ykst2Z7UJmQnlrBcUVXDGPKBWCgOz3GIZ38i1MH/1PCZ1Eb3X +G7OHngevZXHloM8apwkQHZOJZlvoPGIytbU6bumFAYueQ4xncyhZW+vj3CzMpSZy +YhK05pyDRPZRpOLAeiRXyg6lPzq1O4vldu5w5pLeFlwoW5cZJ5L+epJUzpM5ChaH +vGOz9bGTXOBut9Dq+WIyiET7vycotjCVXRIouZW+j1MY5aIYFuJWpLIsEPUdN6b4 +t/bQWVyJ98LVtZR00dX+G7bw5tYee9I8y6jj9RjzIR9u701oBnstXW5DiabA+aC/ +gh7PU3+06yzbXfZqfUAkBXKJOAGTy3HCOV0GEfZvePg3DTmEJwIDAQABo2MwYTAO +BgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUajn6QiL3 +5okATV59M4PLuG53hq8wHwYDVR0jBBgwFoAUajn6QiL35okATV59M4PLuG53hq8w +DQYJKoZIhvcNAQENBQADggIBAJjLq0A85TMCl38th6aP1F5Kr7ge57tx+4BkJamz +Gj5oXScmp7oq4fBXgwpkTx4idBvpkF/wrM//T2h6OKQQbA2xx6R3gBi2oihEdqc0 +nXGEL8pZ0keImUEiyTCYYW49qKgFbdEfwFFEVn8nNQLdXpgKQuswv42hm1GqO+qT +RmTFAHneIWv2V6CG1wZy7HBGS4tz3aAhdT7cHcCP009zHIXZ/n9iyJVvttN7jLpT +wm+bREx50B1ws9efAvSyB7DH5fitIw6mVskpEndI2S9G/Tvw/HRwkqWOOAgfZDC2 +t0v7NqwQjqBSM2OdAzVWxWm9xiNaJ5T2pBL4LTM8oValX9YZ6e18CL13zSdkzJTa +TkZQh+D5wVOAHrut+0dSixv9ovneDiK3PTNZbNTe9ZUGMg1RGUFcPk8G97krgCf2 +o6p6fAbhQ8MTOWIaNr3gKC6UAuQpLmBVrkA9sHSSXvAgZJY/X0VdiLWK2gKgW0VU +3jg9CcCoSmVGFvyqv1ROTVu+OEO3KMqLM6oaJbolXCkvW0pujOotnCr2BXbgd5eA +iN1nE28daCSLT7d0geX0YJ96Vdc+N9oWaz53rK4YcJUIeSkDiv7BO7M/Gg+kO14f +WKGVyasvc0rQLW6aWQ9VGHgtPFGml4vmu7JwqkwR3v98KzfUetF3NI/n+UL3PIEM +S1IK +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 11:20:a1:69:1b:bf:bd:b9:bd:52:96:8f:23:e8:48:bf:26:11 + Signature Algorithm: sha512WithRSAEncryption + Issuer: C=FR, O=OpenTrust, CN=OpenTrust Root CA G2 + Validity + Not Before: May 26 00:00:00 2014 GMT + Not After : Jan 15 00:00:00 2038 GMT + Subject: C=FR, O=OpenTrust, CN=OpenTrust Root CA G2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:cc:b6:57:a5:33:94:10:81:32:53:df:61:7e:0f: + 76:39:cf:5c:c2:53:75:1d:49:7a:96:38:dd:a2:73: + 6a:f1:6f:de:5e:a2:5a:b9:71:21:be:36:d9:a1:fc: + bc:ee:6c:a8:7c:34:1a:71:1a:e8:1a:d8:5f:0e:44: + 06:ed:a7:e0:f3:d2:61:0b:e0:32:a2:96:d1:38:f0: + c2:da:01:17:fc:e4:ac:4f:e8:ee:89:1e:74:ab:4f: + bf:1e:09:b6:36:6a:56:f3:e1:ee:96:89:66:24:06: + e4:cd:42:3a:4a:dd:e0:9a:b0:c4:82:45:b3:fe:c9: + ab:5c:7c:3e:c9:eb:17:2f:0c:7d:6e:ae:a5:8f:c8: + ac:25:0a:6f:fa:d5:45:98:d2:35:09:f6:03:43:94: + fe:d9:bf:20:95:79:80:98:8a:d9:89:35:bb:51:1b: + a4:37:7d:fc:99:3b:ab:ff:bf:ac:0d:8f:43:b1:99: + 7b:16:10:7e:1d:6f:47:c4:15:8f:04:96:08:06:42: + 04:f8:84:d6:1d:bc:91:a6:42:be:49:d5:6a:88:3f: + bc:2d:51:d1:9e:8d:e0:52:cc:57:dd:35:35:58:db: + b4:8f:24:88:e4:8b:df:dc:6b:54:d2:81:2b:b2:ce: + 92:4b:1c:1f:46:fa:1d:d8:92:cb:76:67:b5:09:99: + 09:e5:ac:17:14:55:70:c6:3c:a0:56:0a:03:b3:dc: + 62:19:df:c8:b5:30:7f:f5:3c:26:75:11:bd:d7:1b: + b3:87:9e:07:af:65:71:e5:a0:cf:1a:a7:09:10:1d: + 93:89:66:5b:e8:3c:62:32:b5:b5:3a:6e:e9:85:01: + 8b:9e:43:8c:67:73:28:59:5b:eb:e3:dc:2c:cc:a5: + 26:72:62:12:b4:e6:9c:83:44:f6:51:a4:e2:c0:7a: + 24:57:ca:0e:a5:3f:3a:b5:3b:8b:e5:76:ee:70:e6: + 92:de:16:5c:28:5b:97:19:27:92:fe:7a:92:54:ce: + 93:39:0a:16:87:bc:63:b3:f5:b1:93:5c:e0:6e:b7: + d0:ea:f9:62:32:88:44:fb:bf:27:28:b6:30:95:5d: + 12:28:b9:95:be:8f:53:18:e5:a2:18:16:e2:56:a4: + b2:2c:10:f5:1d:37:a6:f8:b7:f6:d0:59:5c:89:f7: + c2:d5:b5:94:74:d1:d5:fe:1b:b6:f0:e6:d6:1e:7b: + d2:3c:cb:a8:e3:f5:18:f3:21:1f:6e:ef:4d:68:06: + 7b:2d:5d:6e:43:89:a6:c0:f9:a0:bf:82:1e:cf:53: + 7f:b4:eb:2c:db:5d:f6:6a:7d:40:24:05:72:89:38: + 01:93:cb:71:c2:39:5d:06:11:f6:6f:78:f8:37:0d: + 39:84:27 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 6A:39:FA:42:22:F7:E6:89:00:4D:5E:7D:33:83:CB:B8:6E:77:86:AF + X509v3 Authority Key Identifier: + keyid:6A:39:FA:42:22:F7:E6:89:00:4D:5E:7D:33:83:CB:B8:6E:77:86:AF + + Signature Algorithm: sha512WithRSAEncryption + 98:cb:ab:40:3c:e5:33:02:97:7f:2d:87:a6:8f:d4:5e:4a:af: + b8:1e:e7:bb:71:fb:80:64:25:a9:b3:1a:3e:68:5d:27:26:a7: + ba:2a:e1:f0:57:83:0a:64:4f:1e:22:74:1b:e9:90:5f:f0:ac: + cf:ff:4f:68:7a:38:a4:10:6c:0d:b1:c7:a4:77:80:18:b6:a2: + 28:44:76:a7:34:9d:71:84:2f:ca:59:d2:47:88:99:41:22:c9: + 30:98:61:6e:3d:a8:a8:05:6d:d1:1f:c0:51:44:56:7f:27:35: + 02:dd:5e:98:0a:42:eb:30:bf:8d:a1:9b:51:aa:3b:ea:93:46: + 64:c5:00:79:de:21:6b:f6:57:a0:86:d7:06:72:ec:70:46:4b: + 8b:73:dd:a0:21:75:3e:dc:1d:c0:8f:d3:4f:73:1c:85:d9:fe: + 7f:62:c8:95:6f:b6:d3:7b:8c:ba:53:c2:6f:9b:44:4c:79:d0: + 1d:70:b3:d7:9f:02:f4:b2:07:b0:c7:e5:f8:ad:23:0e:a6:56: + c9:29:12:77:48:d9:2f:46:fd:3b:f0:fc:74:70:92:a5:8e:38: + 08:1f:64:30:b6:b7:4b:fb:36:ac:10:8e:a0:52:33:63:9d:03: + 35:56:c5:69:bd:c6:23:5a:27:94:f6:a4:12:f8:2d:33:3c:a1: + 56:a5:5f:d6:19:e9:ed:7c:08:bd:77:cd:27:64:cc:94:da:4e: + 46:50:87:e0:f9:c1:53:80:1e:bb:ad:fb:47:52:8b:1b:fd:a2: + f9:de:0e:22:b7:3d:33:59:6c:d4:de:f5:95:06:32:0d:51:19: + 41:5c:3e:4f:06:f7:b9:2b:80:27:f6:a3:aa:7a:7c:06:e1:43: + c3:13:39:62:1a:36:bd:e0:28:2e:94:02:e4:29:2e:60:55:ae: + 40:3d:b0:74:92:5e:f0:20:64:96:3f:5f:45:5d:88:b5:8a:da: + 02:a0:5b:45:54:de:38:3d:09:c0:a8:4a:65:46:16:fc:aa:bf: + 54:4e:4d:5b:be:38:43:b7:28:ca:8b:33:aa:1a:25:ba:25:5c: + 29:2f:5b:4a:6e:8c:ea:2d:9c:2a:f6:05:76:e0:77:97:80:88: + dd:67:13:6f:1d:68:24:8b:4f:b7:74:81:e5:f4:60:9f:7a:55: + d7:3e:37:da:16:6b:3e:77:ac:ae:18:70:95:08:79:29:03:8a: + fe:c1:3b:b3:3f:1a:0f:a4:3b:5e:1f:58:a1:95:c9:ab:2f:73: + 4a:d0:2d:6e:9a:59:0f:55:18:78:2d:3c:51:a6:97:8b:e6:bb: + b2:70:aa:4c:11:de:ff:7c:2b:37:d4:7a:d1:77:34:8f:e7:f9: + 42:f7:3c:81:0c:4b:52:0a +SHA1 Fingerprint=79:5F:88:60:C5:AB:7C:3D:92:E6:CB:F4:8D:E1:45:CD:11:EF:60:0B diff --git a/system/etc/security/cacerts/399e7759.0 b/system/etc/security/cacerts/399e7759.0 new file mode 100644 index 0000000000000000000000000000000000000000..e73ab67919c91bba3a8334f3a527e3553e59ef23 --- /dev/null +++ b/system/etc/security/cacerts/399e7759.0 @@ -0,0 +1,83 @@ +-----BEGIN CERTIFICATE----- +MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBh +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBD +QTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAwMDAwMDBaMGExCzAJBgNVBAYTAlVT +MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j +b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsB +CSDMAZOnTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97 +nh6Vfe63SKMI2tavegw5BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt +43C/dxC//AH2hdmoRBBYMql1GNXRor5H4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7P +T19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y7vrTC0LUq7dBMtoM1O/4 +gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQABo2MwYTAO +BgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbR +TLtm8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUw +DQYJKoZIhvcNAQEFBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/Esr +hMAtudXH/vTBH1jLuG2cenTnmCmrEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg +06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIttep3Sp+dWOIrWcBAI+0tKIJF +PnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886UAb3LujEV0ls +YSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk +CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 08:3b:e0:56:90:42:46:b1:a1:75:6a:c9:59:91:c7:4a + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert Global Root CA + Validity + Not Before: Nov 10 00:00:00 2006 GMT + Not After : Nov 10 00:00:00 2031 GMT + Subject: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert Global Root CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:e2:3b:e1:11:72:de:a8:a4:d3:a3:57:aa:50:a2: + 8f:0b:77:90:c9:a2:a5:ee:12:ce:96:5b:01:09:20: + cc:01:93:a7:4e:30:b7:53:f7:43:c4:69:00:57:9d: + e2:8d:22:dd:87:06:40:00:81:09:ce:ce:1b:83:bf: + df:cd:3b:71:46:e2:d6:66:c7:05:b3:76:27:16:8f: + 7b:9e:1e:95:7d:ee:b7:48:a3:08:da:d6:af:7a:0c: + 39:06:65:7f:4a:5d:1f:bc:17:f8:ab:be:ee:28:d7: + 74:7f:7a:78:99:59:85:68:6e:5c:23:32:4b:bf:4e: + c0:e8:5a:6d:e3:70:bf:77:10:bf:fc:01:f6:85:d9: + a8:44:10:58:32:a9:75:18:d5:d1:a2:be:47:e2:27: + 6a:f4:9a:33:f8:49:08:60:8b:d4:5f:b4:3a:84:bf: + a1:aa:4a:4c:7d:3e:cf:4f:5f:6c:76:5e:a0:4b:37: + 91:9e:dc:22:e6:6d:ce:14:1a:8e:6a:cb:fe:cd:b3: + 14:64:17:c7:5b:29:9e:32:bf:f2:ee:fa:d3:0b:42: + d4:ab:b7:41:32:da:0c:d4:ef:f8:81:d5:bb:8d:58: + 3f:b5:1b:e8:49:28:a2:70:da:31:04:dd:f7:b2:16: + f2:4c:0a:4e:07:a8:ed:4a:3d:5e:b5:7f:a3:90:c3: + af:27 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Digital Signature, Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 03:DE:50:35:56:D1:4C:BB:66:F0:A3:E2:1B:1B:C3:97:B2:3D:D1:55 + X509v3 Authority Key Identifier: + keyid:03:DE:50:35:56:D1:4C:BB:66:F0:A3:E2:1B:1B:C3:97:B2:3D:D1:55 + + Signature Algorithm: sha1WithRSAEncryption + cb:9c:37:aa:48:13:12:0a:fa:dd:44:9c:4f:52:b0:f4:df:ae: + 04:f5:79:79:08:a3:24:18:fc:4b:2b:84:c0:2d:b9:d5:c7:fe: + f4:c1:1f:58:cb:b8:6d:9c:7a:74:e7:98:29:ab:11:b5:e3:70: + a0:a1:cd:4c:88:99:93:8c:91:70:e2:ab:0f:1c:be:93:a9:ff: + 63:d5:e4:07:60:d3:a3:bf:9d:5b:09:f1:d5:8e:e3:53:f4:8e: + 63:fa:3f:a7:db:b4:66:df:62:66:d6:d1:6e:41:8d:f2:2d:b5: + ea:77:4a:9f:9d:58:e2:2b:59:c0:40:23:ed:2d:28:82:45:3e: + 79:54:92:26:98:e0:80:48:a8:37:ef:f0:d6:79:60:16:de:ac: + e8:0e:cd:6e:ac:44:17:38:2f:49:da:e1:45:3e:2a:b9:36:53: + cf:3a:50:06:f7:2e:e8:c4:57:49:6c:61:21:18:d5:04:ad:78: + 3c:2c:3a:80:6b:a7:eb:af:15:14:e9:d8:89:c1:b9:38:6c:e2: + 91:6c:8a:ff:64:b9:77:25:57:30:c0:1b:24:a3:e1:dc:e9:df: + 47:7c:b5:b4:24:08:05:30:ec:2d:bd:0b:bf:45:bf:50:b9:a9: + f3:eb:98:01:12:ad:c8:88:c6:98:34:5f:8d:0a:3c:c6:e9:d5: + 95:95:6d:de +SHA1 Fingerprint=A8:98:5D:3A:65:E5:E5:C4:B2:D7:D6:6D:40:C6:DD:2F:B1:9C:54:36 diff --git a/system/etc/security/cacerts/3a3b02ce.0 b/system/etc/security/cacerts/3a3b02ce.0 new file mode 100644 index 0000000000000000000000000000000000000000..4a01f1c555cfde8ef514c26be8efbb85a658c7e1 --- /dev/null +++ b/system/etc/security/cacerts/3a3b02ce.0 @@ -0,0 +1,84 @@ +-----BEGIN CERTIFICATE----- +MIID8TCCAtmgAwIBAgIQQT1yx/RrH4FDffHSKFTfmjANBgkqhkiG9w0BAQUFADCB +ijELMAkGA1UEBhMCQ0gxEDAOBgNVBAoTB1dJU2VLZXkxGzAZBgNVBAsTEkNvcHly +aWdodCAoYykgMjAwNTEiMCAGA1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNl +ZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwgUm9vdCBHQSBDQTAeFw0w +NTEyMTExNjAzNDRaFw0zNzEyMTExNjA5NTFaMIGKMQswCQYDVQQGEwJDSDEQMA4G +A1UEChMHV0lTZUtleTEbMBkGA1UECxMSQ29weXJpZ2h0IChjKSAyMDA1MSIwIAYD +VQQLExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBX +SVNlS2V5IEdsb2JhbCBSb290IEdBIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAy0+zAJs9Nt350UlqaxBJH+zYK7LG+DKBKUOVTJoZIyEVRd7jyBxR +VVuuk+g3/ytr6dTqvirdqFEr12bDYVxgAsj1znJ7O7jyTmUIms2kahnBAbtzptf2 +w93NvKSLtZlhuAGio9RN1AU9ka34tAhxZK9w8RxrfvbDd50kc3vkDIzh2TbhmYsF +mQvtRTEJysIA2/dyoJaqlYfQjse2YXMNdmaM3Bu0Y6Kff5MTMPGhJ9vZ/yxViJGg +4E8HsChWjBgbl0SOid3gF27nKu+POQoxhILYQBRJLnpB5Kf+42TMwVlxSywhp1t9 +4B3RLoGbw9ho972WG6xwsRYUC9tguSYBBQIDAQABo1EwTzALBgNVHQ8EBAMCAYYw +DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUswN+rja8sHnR3JQmthG+IbJphpQw +EAYJKwYBBAGCNxUBBAMCAQAwDQYJKoZIhvcNAQEFBQADggEBAEuh/wuHbrP5wUOx +SPMowB0uyQlB+pQAHKSkq0lPjz0e701vvbyk9vImMMkQyh2I+3QZH4VFvbBsUfk2 +ftv1TDI6QU9bR8/oCy22xBmddMVHxjtqD6wU2zz0c5ypBd8A3HR4+vg1YFkCExh8 +vPtNsCBtQ7tgMHpnM1zFmdH4LTlSc/uMqpclXHLZCB6rTjzjgTGfA6b7wP4piFXa +hNVQA7bihKOmNqoROgHhGEvWRGizPflTdISzRpFGlgC3gCy24eMQ4tui5yiPAZZi +Fj4A4xylNoEYokxSdsARo27mHbrjWr42U8U+dY+GaSlYU7Wcu2+fXMUY7N0v4ZjJ +/L7fCg0= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 41:3d:72:c7:f4:6b:1f:81:43:7d:f1:d2:28:54:df:9a + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=CH, O=WISeKey, OU=Copyright (c) 2005, OU=OISTE Foundation Endorsed, CN=OISTE WISeKey Global Root GA CA + Validity + Not Before: Dec 11 16:03:44 2005 GMT + Not After : Dec 11 16:09:51 2037 GMT + Subject: C=CH, O=WISeKey, OU=Copyright (c) 2005, OU=OISTE Foundation Endorsed, CN=OISTE WISeKey Global Root GA CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:cb:4f:b3:00:9b:3d:36:dd:f9:d1:49:6a:6b:10: + 49:1f:ec:d8:2b:b2:c6:f8:32:81:29:43:95:4c:9a: + 19:23:21:15:45:de:e3:c8:1c:51:55:5b:ae:93:e8: + 37:ff:2b:6b:e9:d4:ea:be:2a:dd:a8:51:2b:d7:66: + c3:61:5c:60:02:c8:f5:ce:72:7b:3b:b8:f2:4e:65: + 08:9a:cd:a4:6a:19:c1:01:bb:73:a6:d7:f6:c3:dd: + cd:bc:a4:8b:b5:99:61:b8:01:a2:a3:d4:4d:d4:05: + 3d:91:ad:f8:b4:08:71:64:af:70:f1:1c:6b:7e:f6: + c3:77:9d:24:73:7b:e4:0c:8c:e1:d9:36:e1:99:8b: + 05:99:0b:ed:45:31:09:ca:c2:00:db:f7:72:a0:96: + aa:95:87:d0:8e:c7:b6:61:73:0d:76:66:8c:dc:1b: + b4:63:a2:9f:7f:93:13:30:f1:a1:27:db:d9:ff:2c: + 55:88:91:a0:e0:4f:07:b0:28:56:8c:18:1b:97:44: + 8e:89:dd:e0:17:6e:e7:2a:ef:8f:39:0a:31:84:82: + d8:40:14:49:2e:7a:41:e4:a7:fe:e3:64:cc:c1:59: + 71:4b:2c:21:a7:5b:7d:e0:1d:d1:2e:81:9b:c3:d8: + 68:f7:bd:96:1b:ac:70:b1:16:14:0b:db:60:b9:26: + 01:05 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + B3:03:7E:AE:36:BC:B0:79:D1:DC:94:26:B6:11:BE:21:B2:69:86:94 + 1.3.6.1.4.1.311.21.1: + ... + Signature Algorithm: sha1WithRSAEncryption + 4b:a1:ff:0b:87:6e:b3:f9:c1:43:b1:48:f3:28:c0:1d:2e:c9: + 09:41:fa:94:00:1c:a4:a4:ab:49:4f:8f:3d:1e:ef:4d:6f:bd: + bc:a4:f6:f2:26:30:c9:10:ca:1d:88:fb:74:19:1f:85:45:bd: + b0:6c:51:f9:36:7e:db:f5:4c:32:3a:41:4f:5b:47:cf:e8:0b: + 2d:b6:c4:19:9d:74:c5:47:c6:3b:6a:0f:ac:14:db:3c:f4:73: + 9c:a9:05:df:00:dc:74:78:fa:f8:35:60:59:02:13:18:7c:bc: + fb:4d:b0:20:6d:43:bb:60:30:7a:67:33:5c:c5:99:d1:f8:2d: + 39:52:73:fb:8c:aa:97:25:5c:72:d9:08:1e:ab:4e:3c:e3:81: + 31:9f:03:a6:fb:c0:fe:29:88:55:da:84:d5:50:03:b6:e2:84: + a3:a6:36:aa:11:3a:01:e1:18:4b:d6:44:68:b3:3d:f9:53:74: + 84:b3:46:91:46:96:00:b7:80:2c:b6:e1:e3:10:e2:db:a2:e7: + 28:8f:01:96:62:16:3e:00:e3:1c:a5:36:81:18:a2:4c:52:76: + c0:11:a3:6e:e6:1d:ba:e3:5a:be:36:53:c5:3e:75:8f:86:69: + 29:58:53:b5:9c:bb:6f:9f:5c:c5:18:ec:dd:2f:e1:98:c9:fc: + be:df:0a:0d +SHA1 Fingerprint=59:22:A1:E1:5A:EA:16:35:21:F8:98:39:6A:46:46:B0:44:1B:0F:A9 diff --git a/system/etc/security/cacerts/3ad48a91.0 b/system/etc/security/cacerts/3ad48a91.0 new file mode 100644 index 0000000000000000000000000000000000000000..d4bda9fb09396d469c7f445687cbcb6ac7c27aab --- /dev/null +++ b/system/etc/security/cacerts/3ad48a91.0 @@ -0,0 +1,78 @@ +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJ +RTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYD +VQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoX +DTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMCSUUxEjAQBgNVBAoTCUJhbHRpbW9y +ZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFsdGltb3JlIEN5YmVy +VHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKMEuyKr +mD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjr +IZ3AQSsBUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeK +mpYcqWe4PwzV9/lSEy/CG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSu +XmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9XbIGevOF6uvUA65ehD5f/xXtabz5OTZy +dc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjprl3RjM71oGDHweI12v/ye +jl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoIVDaGezq1 +BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3 +DQEBBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT92 +9hkTI7gQCvlYpNRhcL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3Wgx +jkzSswF07r51XgdIGn9w/xZchMB5hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0 +Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsaY71k5h+3zvDyny67G7fyUIhz +ksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9HRCwBXbsdtTLS +R9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 33554617 (0x20000b9) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=IE, O=Baltimore, OU=CyberTrust, CN=Baltimore CyberTrust Root + Validity + Not Before: May 12 18:46:00 2000 GMT + Not After : May 12 23:59:00 2025 GMT + Subject: C=IE, O=Baltimore, OU=CyberTrust, CN=Baltimore CyberTrust Root + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:a3:04:bb:22:ab:98:3d:57:e8:26:72:9a:b5:79: + d4:29:e2:e1:e8:95:80:b1:b0:e3:5b:8e:2b:29:9a: + 64:df:a1:5d:ed:b0:09:05:6d:db:28:2e:ce:62:a2: + 62:fe:b4:88:da:12:eb:38:eb:21:9d:c0:41:2b:01: + 52:7b:88:77:d3:1c:8f:c7:ba:b9:88:b5:6a:09:e7: + 73:e8:11:40:a7:d1:cc:ca:62:8d:2d:e5:8f:0b:a6: + 50:d2:a8:50:c3:28:ea:f5:ab:25:87:8a:9a:96:1c: + a9:67:b8:3f:0c:d5:f7:f9:52:13:2f:c2:1b:d5:70: + 70:f0:8f:c0:12:ca:06:cb:9a:e1:d9:ca:33:7a:77: + d6:f8:ec:b9:f1:68:44:42:48:13:d2:c0:c2:a4:ae: + 5e:60:fe:b6:a6:05:fc:b4:dd:07:59:02:d4:59:18: + 98:63:f5:a5:63:e0:90:0c:7d:5d:b2:06:7a:f3:85: + ea:eb:d4:03:ae:5e:84:3e:5f:ff:15:ed:69:bc:f9: + 39:36:72:75:cf:77:52:4d:f3:c9:90:2c:b9:3d:e5: + c9:23:53:3f:1f:24:98:21:5c:07:99:29:bd:c6:3a: + ec:e7:6e:86:3a:6b:97:74:63:33:bd:68:18:31:f0: + 78:8d:76:bf:fc:9e:8e:5d:2a:86:a7:4d:90:dc:27: + 1a:39 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + E5:9D:59:30:82:47:58:CC:AC:FA:08:54:36:86:7B:3A:B5:04:4D:F0 + X509v3 Basic Constraints: critical + CA:TRUE, pathlen:3 + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + Signature Algorithm: sha1WithRSAEncryption + 85:0c:5d:8e:e4:6f:51:68:42:05:a0:dd:bb:4f:27:25:84:03: + bd:f7:64:fd:2d:d7:30:e3:a4:10:17:eb:da:29:29:b6:79:3f: + 76:f6:19:13:23:b8:10:0a:f9:58:a4:d4:61:70:bd:04:61:6a: + 12:8a:17:d5:0a:bd:c5:bc:30:7c:d6:e9:0c:25:8d:86:40:4f: + ec:cc:a3:7e:38:c6:37:11:4f:ed:dd:68:31:8e:4c:d2:b3:01: + 74:ee:be:75:5e:07:48:1a:7f:70:ff:16:5c:84:c0:79:85:b8: + 05:fd:7f:be:65:11:a3:0f:c0:02:b4:f8:52:37:39:04:d5:a9: + 31:7a:18:bf:a0:2a:f4:12:99:f7:a3:45:82:e3:3c:5e:f5:9d: + 9e:b5:c8:9e:7c:2e:c8:a4:9e:4e:08:14:4b:6d:fd:70:6d:6b: + 1a:63:bd:64:e6:1f:b7:ce:f0:f2:9f:2e:bb:1b:b7:f2:50:88: + 73:92:c2:e2:e3:16:8d:9a:32:02:ab:8e:18:dd:e9:10:11:ee: + 7e:35:ab:90:af:3e:30:94:7a:d0:33:3d:a7:65:0f:f5:fc:8e: + 9e:62:cf:47:44:2c:01:5d:bb:1d:b5:32:d2:47:d2:38:2e:d0: + fe:81:dc:32:6a:1e:b5:ee:3c:d5:fc:e7:81:1d:19:c3:24:42: + ea:63:39:a9 +SHA1 Fingerprint=D4:DE:20:D0:5E:66:FC:53:FE:1A:50:88:2C:78:DB:28:52:CA:E4:74 diff --git a/system/etc/security/cacerts/3c58f906.0 b/system/etc/security/cacerts/3c58f906.0 new file mode 100644 index 0000000000000000000000000000000000000000..4d776bacc7ca3198e0301f5935a628e084118e87 --- /dev/null +++ b/system/etc/security/cacerts/3c58f906.0 @@ -0,0 +1,87 @@ +-----BEGIN CERTIFICATE----- +MIIENjCCAx6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBvMQswCQYDVQQGEwJTRTEU +MBIGA1UEChMLQWRkVHJ1c3QgQUIxJjAkBgNVBAsTHUFkZFRydXN0IEV4dGVybmFs +IFRUUCBOZXR3b3JrMSIwIAYDVQQDExlBZGRUcnVzdCBFeHRlcm5hbCBDQSBSb290 +MB4XDTAwMDUzMDEwNDgzOFoXDTIwMDUzMDEwNDgzOFowbzELMAkGA1UEBhMCU0Ux +FDASBgNVBAoTC0FkZFRydXN0IEFCMSYwJAYDVQQLEx1BZGRUcnVzdCBFeHRlcm5h +bCBUVFAgTmV0d29yazEiMCAGA1UEAxMZQWRkVHJ1c3QgRXh0ZXJuYWwgQ0EgUm9v +dDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALf3GjPm8gAELTngTlvt +H7xsD821+iO2zt6bETOXpClMfZOfvUq8k+0DGuOPz+VtUFrWlymUWoCwSXrbLpX9 +uMq/NzgtHj6RQa1wVsfwTz/oMp50ysiQVOnGXw94nZpAPA6sYapeFI+eh6FqUNzX +mk6vBbOmcZSccbNQYArHE504B4YCqOmoaSYYkKtMsE8jqzpPhNjfzp/haW+710LX +a0Tkx63ubUFfclpxCDezeWWkWaCUN/cALw3CknLa0Dhy2xSoRcRdKn23tNbE7qzN +E0S3ySvdQwAl+mG5aWpYIxG3pzOPVnVZ9c0p10a3CitlttNCbxWyuHv77+ldU9U0 +WicCAwEAAaOB3DCB2TAdBgNVHQ4EFgQUrb2YejS0Jvf6xCZU7wO94CTLVBowCwYD +VR0PBAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wgZkGA1UdIwSBkTCBjoAUrb2YejS0 +Jvf6xCZU7wO94CTLVBqhc6RxMG8xCzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRU +cnVzdCBBQjEmMCQGA1UECxMdQWRkVHJ1c3QgRXh0ZXJuYWwgVFRQIE5ldHdvcmsx +IjAgBgNVBAMTGUFkZFRydXN0IEV4dGVybmFsIENBIFJvb3SCAQEwDQYJKoZIhvcN +AQEFBQADggEBALCb4IUlwtYj4g+WBpKdQZic2YR5gdkeWxQHIzZlj7DYd7usQWxH +YINRsPkyPef89iYTx4AWpb9a/IfPeHmJIZriTAcKhjW88t5RxNKWt9x+Tu5w/Rw5 +6wwCURQtjr0W4MHfRnXnJK3s9EK0hZNwEGe6nQY1ShjTK3rMUUKhemPR5ruhxSvC +Nr4TDea9Y355e6cJDUCrat2PisP29owaQgVR1EX1n6diIWgVIEM8med8vSTYqZEX +c4g/VhsxOBi0cQ+azcgOno4uG+GMmIPLHzHxREzGBHNJdmAPx/i9F4BrLunMTA5a +mnkPIAou1Z5jJh5VkpTYghdae9C8x49OhgQ= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 1 (0x1) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=SE, O=AddTrust AB, OU=AddTrust External TTP Network, CN=AddTrust External CA Root + Validity + Not Before: May 30 10:48:38 2000 GMT + Not After : May 30 10:48:38 2020 GMT + Subject: C=SE, O=AddTrust AB, OU=AddTrust External TTP Network, CN=AddTrust External CA Root + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:b7:f7:1a:33:e6:f2:00:04:2d:39:e0:4e:5b:ed: + 1f:bc:6c:0f:cd:b5:fa:23:b6:ce:de:9b:11:33:97: + a4:29:4c:7d:93:9f:bd:4a:bc:93:ed:03:1a:e3:8f: + cf:e5:6d:50:5a:d6:97:29:94:5a:80:b0:49:7a:db: + 2e:95:fd:b8:ca:bf:37:38:2d:1e:3e:91:41:ad:70: + 56:c7:f0:4f:3f:e8:32:9e:74:ca:c8:90:54:e9:c6: + 5f:0f:78:9d:9a:40:3c:0e:ac:61:aa:5e:14:8f:9e: + 87:a1:6a:50:dc:d7:9a:4e:af:05:b3:a6:71:94:9c: + 71:b3:50:60:0a:c7:13:9d:38:07:86:02:a8:e9:a8: + 69:26:18:90:ab:4c:b0:4f:23:ab:3a:4f:84:d8:df: + ce:9f:e1:69:6f:bb:d7:42:d7:6b:44:e4:c7:ad:ee: + 6d:41:5f:72:5a:71:08:37:b3:79:65:a4:59:a0:94: + 37:f7:00:2f:0d:c2:92:72:da:d0:38:72:db:14:a8: + 45:c4:5d:2a:7d:b7:b4:d6:c4:ee:ac:cd:13:44:b7: + c9:2b:dd:43:00:25:fa:61:b9:69:6a:58:23:11:b7: + a7:33:8f:56:75:59:f5:cd:29:d7:46:b7:0a:2b:65: + b6:d3:42:6f:15:b2:b8:7b:fb:ef:e9:5d:53:d5:34: + 5a:27 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + AD:BD:98:7A:34:B4:26:F7:FA:C4:26:54:EF:03:BD:E0:24:CB:54:1A + X509v3 Key Usage: + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Authority Key Identifier: + keyid:AD:BD:98:7A:34:B4:26:F7:FA:C4:26:54:EF:03:BD:E0:24:CB:54:1A + DirName:/C=SE/O=AddTrust AB/OU=AddTrust External TTP Network/CN=AddTrust External CA Root + serial:01 + + Signature Algorithm: sha1WithRSAEncryption + b0:9b:e0:85:25:c2:d6:23:e2:0f:96:06:92:9d:41:98:9c:d9: + 84:79:81:d9:1e:5b:14:07:23:36:65:8f:b0:d8:77:bb:ac:41: + 6c:47:60:83:51:b0:f9:32:3d:e7:fc:f6:26:13:c7:80:16:a5: + bf:5a:fc:87:cf:78:79:89:21:9a:e2:4c:07:0a:86:35:bc:f2: + de:51:c4:d2:96:b7:dc:7e:4e:ee:70:fd:1c:39:eb:0c:02:51: + 14:2d:8e:bd:16:e0:c1:df:46:75:e7:24:ad:ec:f4:42:b4:85: + 93:70:10:67:ba:9d:06:35:4a:18:d3:2b:7a:cc:51:42:a1:7a: + 63:d1:e6:bb:a1:c5:2b:c2:36:be:13:0d:e6:bd:63:7e:79:7b: + a7:09:0d:40:ab:6a:dd:8f:8a:c3:f6:f6:8c:1a:42:05:51:d4: + 45:f5:9f:a7:62:21:68:15:20:43:3c:99:e7:7c:bd:24:d8:a9: + 91:17:73:88:3f:56:1b:31:38:18:b4:71:0f:9a:cd:c8:0e:9e: + 8e:2e:1b:e1:8c:98:83:cb:1f:31:f1:44:4c:c6:04:73:49:76: + 60:0f:c7:f8:bd:17:80:6b:2e:e9:cc:4c:0e:5a:9a:79:0f:20: + 0a:2e:d5:9e:63:26:1e:55:92:94:d8:82:17:5a:7b:d0:bc:c7: + 8f:4e:86:04 +SHA1 Fingerprint=02:FA:F3:E2:91:43:54:68:60:78:57:69:4D:F5:E4:5B:68:85:18:68 diff --git a/system/etc/security/cacerts/3c6676aa.0 b/system/etc/security/cacerts/3c6676aa.0 new file mode 100644 index 0000000000000000000000000000000000000000..2905a249ed07e171c6a2c755abede8ada3290198 --- /dev/null +++ b/system/etc/security/cacerts/3c6676aa.0 @@ -0,0 +1,120 @@ +-----BEGIN CERTIFICATE----- +MIIFcDCCA1igAwIBAgIEAJiWjTANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJO +TDEeMBwGA1UECgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSkwJwYDVQQDDCBTdGFh +dCBkZXIgTmVkZXJsYW5kZW4gRVYgUm9vdCBDQTAeFw0xMDEyMDgxMTE5MjlaFw0y +MjEyMDgxMTEwMjhaMFgxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIg +TmVkZXJsYW5kZW4xKTAnBgNVBAMMIFN0YWF0IGRlciBOZWRlcmxhbmRlbiBFViBS +b290IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA48d+ifkkSzrS +M4M1LGns3Amk41GoJSt5uAg94JG6hIXGhaTK5skuU6TJJB79VWZxXSzFYGgEt9nC +UiY4iKTWO0Cmws0/zZiTs1QUWJZV1VD+hq2kY39ch/aO5ieSZxeSAgMs3NZmdO3d +Z//BYY1jTw+bbRcwJu+r0h8QoPnFfxZpgQNH7R5ojXKhTbImxrpsX23Wr9GxE46p +rfNeaXUmGD5BKyF/7otdBwadQ8QpCiv8Kj6GyzyDOvnJDdrFmeK8eEEzduG/L13l +pJhQDBXd4Pqcfzho0LKmeqfRMb1+ilgnQ7O6M5HTp5gVXJrm0w912fxBmJc+qiXb +j5IusHsMX/FjqTf5m3VpTCgmJdrV8hJwRVXj33NeN/UhbJCONVrJ0yPr08C+eKxC +KFhmpUZtcALXEPlLVPxdhkqHz3/KRawRWrUgUY0viEeXOcDPusBCAUCZSCELa6fS +/ZbV0b5GnUngC6agIk440ME8MLxwjyx1zNDFjFE7PZQIZCZhfbnDZY8UnCHQqv0X +cgOPvZuM5l5Tnrmd74K74bzickFbIZTTRTeU0d8JOV3nI6qaHcptqAqGhYqCvkIH +1vI4gnPah1vlPNOePqc7nvQDs/nxfRN0Av+7oeX6AHkcpmZBiFxgV6YuCcS6/ZrP +px9Aw7vMWgpVSzs4dlG4Y4uElBbmVvMCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB +/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFP6rAJCYniT8qcwaivsnuL8wbqg7 +MA0GCSqGSIb3DQEBCwUAA4ICAQDPdyxuVr5Os7aEAJSrR8kN0nbHhp8dB9O2tLsI +eK9p0gtJ3jPFrK3CiAJ9Brc1AsFgyb/E6JTe1NOpEyVa/m6irn0F3H3zbPB+po3u +2dfOWBfoqSmuc0iH55vKbimhZF8ZE/euBhD/UcabTVUlT5OZEAFTdfETzsemQUHS +v4ilf0X8rLiltTMMgsT7B/Zq5SWEXwbKwYY5EdtYzXc7LMJMD16a4/CrPmEbUCTC +wPTxGfARKbalGAKb12NMcIxHowNDXLldRqANb/9Zjr7dn3LDWyvfjFvO5QxGbJKy +CqNMVEIYFRIYvdr8unRu/8G2oGTYqV9Vrp9canaW2HNnh/tNf1zuacpzEPuKqf2e +vTY4SUmH9A4U8OmHuD+nT3pajnnUk+S7aFKErGzp85hwVXIy+TSrK0m1zSBi5Dp6 +Z2Orltxtrpfs/J92VoguZs9btsmksNcFuuEnL5O7Jiqik7Ab846+HUCjuTaPPoIa +Gl6I6lD4WeKDRikL40Rc4ZW2aZCaFG+XroHPaO+Zmr615+F/+PoTRxZMzG0IQOeL +eG9QgkRQP2YGiqtDhFZKDyAthg710tvSeopLzaXoTvFeJiUBWSOgftL2fiFX1ye8 +FVdMpEbB4IMeDExNH08GGeL5qPQ6gqGyeUN51q1veieQA6TqJIc/2b3Z6fJfUEkc +7uzXLg== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 10000013 (0x98968d) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=NL, O=Staat der Nederlanden, CN=Staat der Nederlanden EV Root CA + Validity + Not Before: Dec 8 11:19:29 2010 GMT + Not After : Dec 8 11:10:28 2022 GMT + Subject: C=NL, O=Staat der Nederlanden, CN=Staat der Nederlanden EV Root CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:e3:c7:7e:89:f9:24:4b:3a:d2:33:83:35:2c:69: + ec:dc:09:a4:e3:51:a8:25:2b:79:b8:08:3d:e0:91: + ba:84:85:c6:85:a4:ca:e6:c9:2e:53:a4:c9:24:1e: + fd:55:66:71:5d:2c:c5:60:68:04:b7:d9:c2:52:26: + 38:88:a4:d6:3b:40:a6:c2:cd:3f:cd:98:93:b3:54: + 14:58:96:55:d5:50:fe:86:ad:a4:63:7f:5c:87:f6: + 8e:e6:27:92:67:17:92:02:03:2c:dc:d6:66:74:ed: + dd:67:ff:c1:61:8d:63:4f:0f:9b:6d:17:30:26:ef: + ab:d2:1f:10:a0:f9:c5:7f:16:69:81:03:47:ed:1e: + 68:8d:72:a1:4d:b2:26:c6:ba:6c:5f:6d:d6:af:d1: + b1:13:8e:a9:ad:f3:5e:69:75:26:18:3e:41:2b:21: + 7f:ee:8b:5d:07:06:9d:43:c4:29:0a:2b:fc:2a:3e: + 86:cb:3c:83:3a:f9:c9:0d:da:c5:99:e2:bc:78:41: + 33:76:e1:bf:2f:5d:e5:a4:98:50:0c:15:dd:e0:fa: + 9c:7f:38:68:d0:b2:a6:7a:a7:d1:31:bd:7e:8a:58: + 27:43:b3:ba:33:91:d3:a7:98:15:5c:9a:e6:d3:0f: + 75:d9:fc:41:98:97:3e:aa:25:db:8f:92:2e:b0:7b: + 0c:5f:f1:63:a9:37:f9:9b:75:69:4c:28:26:25:da: + d5:f2:12:70:45:55:e3:df:73:5e:37:f5:21:6c:90: + 8e:35:5a:c9:d3:23:eb:d3:c0:be:78:ac:42:28:58: + 66:a5:46:6d:70:02:d7:10:f9:4b:54:fc:5d:86:4a: + 87:cf:7f:ca:45:ac:11:5a:b5:20:51:8d:2f:88:47: + 97:39:c0:cf:ba:c0:42:01:40:99:48:21:0b:6b:a7: + d2:fd:96:d5:d1:be:46:9d:49:e0:0b:a6:a0:22:4e: + 38:d0:c1:3c:30:bc:70:8f:2c:75:cc:d0:c5:8c:51: + 3b:3d:94:08:64:26:61:7d:b9:c3:65:8f:14:9c:21: + d0:aa:fd:17:72:03:8f:bd:9b:8c:e6:5e:53:9e:b9: + 9d:ef:82:bb:e1:bc:e2:72:41:5b:21:94:d3:45:37: + 94:d1:df:09:39:5d:e7:23:aa:9a:1d:ca:6d:a8:0a: + 86:85:8a:82:be:42:07:d6:f2:38:82:73:da:87:5b: + e5:3c:d3:9e:3e:a7:3b:9e:f4:03:b3:f9:f1:7d:13: + 74:02:ff:bb:a1:e5:fa:00:79:1c:a6:66:41:88:5c: + 60:57:a6:2e:09:c4:ba:fd:9a:cf:a7:1f:40:c3:bb: + cc:5a:0a:55:4b:3b:38:76:51:b8:63:8b:84:94:16: + e6:56:f3 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + FE:AB:00:90:98:9E:24:FC:A9:CC:1A:8A:FB:27:B8:BF:30:6E:A8:3B + Signature Algorithm: sha256WithRSAEncryption + cf:77:2c:6e:56:be:4e:b3:b6:84:00:94:ab:47:c9:0d:d2:76: + c7:86:9f:1d:07:d3:b6:b4:bb:08:78:af:69:d2:0b:49:de:33: + c5:ac:ad:c2:88:02:7d:06:b7:35:02:c1:60:c9:bf:c4:e8:94: + de:d4:d3:a9:13:25:5a:fe:6e:a2:ae:7d:05:dc:7d:f3:6c:f0: + 7e:a6:8d:ee:d9:d7:ce:58:17:e8:a9:29:ae:73:48:87:e7:9b: + ca:6e:29:a1:64:5f:19:13:f7:ae:06:10:ff:51:c6:9b:4d:55: + 25:4f:93:99:10:01:53:75:f1:13:ce:c7:a6:41:41:d2:bf:88: + a5:7f:45:fc:ac:b8:a5:b5:33:0c:82:c4:fb:07:f6:6a:e5:25: + 84:5f:06:ca:c1:86:39:11:db:58:cd:77:3b:2c:c2:4c:0f:5e: + 9a:e3:f0:ab:3e:61:1b:50:24:c2:c0:f4:f1:19:f0:11:29:b6: + a5:18:02:9b:d7:63:4c:70:8c:47:a3:03:43:5c:b9:5d:46:a0: + 0d:6f:ff:59:8e:be:dd:9f:72:c3:5b:2b:df:8c:5b:ce:e5:0c: + 46:6c:92:b2:0a:a3:4c:54:42:18:15:12:18:bd:da:fc:ba:74: + 6e:ff:c1:b6:a0:64:d8:a9:5f:55:ae:9f:5c:6a:76:96:d8:73: + 67:87:fb:4d:7f:5c:ee:69:ca:73:10:fb:8a:a9:fd:9e:bd:36: + 38:49:49:87:f4:0e:14:f0:e9:87:b8:3f:a7:4f:7a:5a:8e:79: + d4:93:e4:bb:68:52:84:ac:6c:e9:f3:98:70:55:72:32:f9:34: + ab:2b:49:b5:cd:20:62:e4:3a:7a:67:63:ab:96:dc:6d:ae:97: + ec:fc:9f:76:56:88:2e:66:cf:5b:b6:c9:a4:b0:d7:05:ba:e1: + 27:2f:93:bb:26:2a:a2:93:b0:1b:f3:8e:be:1d:40:a3:b9:36: + 8f:3e:82:1a:1a:5e:88:ea:50:f8:59:e2:83:46:29:0b:e3:44: + 5c:e1:95:b6:69:90:9a:14:6f:97:ae:81:cf:68:ef:99:9a:be: + b5:e7:e1:7f:f8:fa:13:47:16:4c:cc:6d:08:40:e7:8b:78:6f: + 50:82:44:50:3f:66:06:8a:ab:43:84:56:4a:0f:20:2d:86:0e: + f5:d2:db:d2:7a:8a:4b:cd:a5:e8:4e:f1:5e:26:25:01:59:23: + a0:7e:d2:f6:7e:21:57:d7:27:bc:15:57:4c:a4:46:c1:e0:83: + 1e:0c:4c:4d:1f:4f:06:19:e2:f9:a8:f4:3a:82:a1:b2:79:43: + 79:d6:ad:6f:7a:27:90:03:a4:ea:24:87:3f:d9:bd:d9:e9:f2: + 5f:50:49:1c:ee:ec:d7:2e +SHA1 Fingerprint=76:E2:7E:C1:4F:DB:82:C1:C0:A6:75:B5:05:BE:3D:29:B4:ED:DB:BB diff --git a/system/etc/security/cacerts/3c860d51.0 b/system/etc/security/cacerts/3c860d51.0 new file mode 100644 index 0000000000000000000000000000000000000000..c71616e16333715592361be382fb593b8ee8aa9b --- /dev/null +++ b/system/etc/security/cacerts/3c860d51.0 @@ -0,0 +1,128 @@ +-----BEGIN CERTIFICATE----- +MIIFujCCA6KgAwIBAgIJALtAHEP1Xk+wMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV +BAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxHzAdBgNVBAMTFlN3aXNzU2ln +biBHb2xkIENBIC0gRzIwHhcNMDYxMDI1MDgzMDM1WhcNMzYxMDI1MDgzMDM1WjBF +MQswCQYDVQQGEwJDSDEVMBMGA1UEChMMU3dpc3NTaWduIEFHMR8wHQYDVQQDExZT +d2lzc1NpZ24gR29sZCBDQSAtIEcyMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC +CgKCAgEAr+TufoskDhJuqVAtFkQ7kpJcyrhdhJJCEyq8ZVeCQD5XJM1QiyUqt2/8 +76LQwB8CJEoTlo8jE+YoWACjR8cGp4QjK7u9lit/VcyLwVcfDmJlD909Vopz2q5+ +bbqBHH5CjCA12UNNhPqE21Is8w4ndwtrvxEvcnifLtg+5hg3Wipy+dpikJKVyh+c +6bM8K8vzARO/Ws/BtQpgvd21mWRTuKCWs2/iJneRjOBiEAKfNA+k1ZIzUd6+jbqE +emA8atufK+ze3gE/bk3lUIbLtK/tREDFylqM2tIrfKjuvqblCqoOpd8FUrdVxyJd +MmqXl2MT28nbeTZ7hTpKxVKJ+STnnXepgv9VHKVxaSvRAiTysybUa9oEVeXBCsdt +MDeQKuSeFDNeFhdVxVu1yzSJkvGdJo+hB9TGsnhQ2wwMC3wLjEHXuendjIj3o02y +MszYF9rNt85mndT9Xv+9lz4pded+p2JYryU0pUHHPbwNUMoDAw8IWh+Vc3hiv69y +FGkOpeUDDniOJihC8AcLYiAQZzlG+qkDzAQ4embvIIO1jEpWjpEA/I5cgt6IoMPi +aG59je883WX0XaxR7ySArqpWl2/5rX3aYT+YdzylkbYcjCbaZaIJbcHiVOO5ykxM +gI93e2CaHt+28kgeDrpOVG2Y4OGiGqJ3UM/EY5LsRxmd6+ZrzsECAwEAAaOBrDCB +qTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUWyV7 +lqRlUX64OfPAeGZe6Drn8O4wHwYDVR0jBBgwFoAUWyV7lqRlUX64OfPAeGZe6Drn +8O4wRgYDVR0gBD8wPTA7BglghXQBWQECAQEwLjAsBggrBgEFBQcCARYgaHR0cDov +L3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBACe6 +45R88a7A3hfm5djV9VSwg/S7zV4Fe0+fdWavPOhWfvxyeDgD2StiGwC5+OlgzczO +UYrHUDFu4Up+GC9pWbY9ZIEr44OE5iKHjn3g7gKZYbge9LgriBIWhMIxkziWMaa5 +O1M/wySTVltpkuzFwbs4AOPsF6m43Md8AYOfMke6UiI0HTJ6CVanfCU2qT1L2sCC +bwq7EsiHSycR+R4tx5M/nttfJmtS2S6K8RTGRI0Vqbe/vd6mGu6uLftIdxf+u+yv +GPUqUfA5hJeVbG4bwyvEdGB5JbAKJ9/fXtI5z0V9QkvfsywexcZdylU6oJxpmo/a +77KwPJ+HbBIrZXAVUjEaJM9vMSNQH4xPjyPDdEFjHFWoFN0+4FFQz/EbMFYOkrCC +hdiDyyJkvC24JdVUorgG6q2SpCSgwYa1ShNqR88uC1aVVMvOmttqtKay20EIhid3 +92qgQmwLOM7XdVAyksLfKzAiSNDVQTglXaTpXZ/GlHXQRf0wl0OPkKsKx4ZzYEpp +Ld6leNcG2mqeSz53OiATIgHQv2ieY2BrNU0LbbqhPcCT4H8js1WtciVORvnSFu+w +ZMEBnunKoGqYDs/YYPIvSbjkQuE4NRb0yG5P94FW6LqjviOvrv1vA+ACOzB2+htt +Qc8Bsem4yWb02ybzOqR08kkkW8mw0FfB+j564ZfJ +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 13492815561806991280 (0xbb401c43f55e4fb0) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=CH, O=SwissSign AG, CN=SwissSign Gold CA - G2 + Validity + Not Before: Oct 25 08:30:35 2006 GMT + Not After : Oct 25 08:30:35 2036 GMT + Subject: C=CH, O=SwissSign AG, CN=SwissSign Gold CA - G2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:af:e4:ee:7e:8b:24:0e:12:6e:a9:50:2d:16:44: + 3b:92:92:5c:ca:b8:5d:84:92:42:13:2a:bc:65:57: + 82:40:3e:57:24:cd:50:8b:25:2a:b7:6f:fc:ef:a2: + d0:c0:1f:02:24:4a:13:96:8f:23:13:e6:28:58:00: + a3:47:c7:06:a7:84:23:2b:bb:bd:96:2b:7f:55:cc: + 8b:c1:57:1f:0e:62:65:0f:dd:3d:56:8a:73:da:ae: + 7e:6d:ba:81:1c:7e:42:8c:20:35:d9:43:4d:84:fa: + 84:db:52:2c:f3:0e:27:77:0b:6b:bf:11:2f:72:78: + 9f:2e:d8:3e:e6:18:37:5a:2a:72:f9:da:62:90:92: + 95:ca:1f:9c:e9:b3:3c:2b:cb:f3:01:13:bf:5a:cf: + c1:b5:0a:60:bd:dd:b5:99:64:53:b8:a0:96:b3:6f: + e2:26:77:91:8c:e0:62:10:02:9f:34:0f:a4:d5:92: + 33:51:de:be:8d:ba:84:7a:60:3c:6a:db:9f:2b:ec: + de:de:01:3f:6e:4d:e5:50:86:cb:b4:af:ed:44:40: + c5:ca:5a:8c:da:d2:2b:7c:a8:ee:be:a6:e5:0a:aa: + 0e:a5:df:05:52:b7:55:c7:22:5d:32:6a:97:97:63: + 13:db:c9:db:79:36:7b:85:3a:4a:c5:52:89:f9:24: + e7:9d:77:a9:82:ff:55:1c:a5:71:69:2b:d1:02:24: + f2:b3:26:d4:6b:da:04:55:e5:c1:0a:c7:6d:30:37: + 90:2a:e4:9e:14:33:5e:16:17:55:c5:5b:b5:cb:34: + 89:92:f1:9d:26:8f:a1:07:d4:c6:b2:78:50:db:0c: + 0c:0b:7c:0b:8c:41:d7:b9:e9:dd:8c:88:f7:a3:4d: + b2:32:cc:d8:17:da:cd:b7:ce:66:9d:d4:fd:5e:ff: + bd:97:3e:29:75:e7:7e:a7:62:58:af:25:34:a5:41: + c7:3d:bc:0d:50:ca:03:03:0f:08:5a:1f:95:73:78: + 62:bf:af:72:14:69:0e:a5:e5:03:0e:78:8e:26:28: + 42:f0:07:0b:62:20:10:67:39:46:fa:a9:03:cc:04: + 38:7a:66:ef:20:83:b5:8c:4a:56:8e:91:00:fc:8e: + 5c:82:de:88:a0:c3:e2:68:6e:7d:8d:ef:3c:dd:65: + f4:5d:ac:51:ef:24:80:ae:aa:56:97:6f:f9:ad:7d: + da:61:3f:98:77:3c:a5:91:b6:1c:8c:26:da:65:a2: + 09:6d:c1:e2:54:e3:b9:ca:4c:4c:80:8f:77:7b:60: + 9a:1e:df:b6:f2:48:1e:0e:ba:4e:54:6d:98:e0:e1: + a2:1a:a2:77:50:cf:c4:63:92:ec:47:19:9d:eb:e6: + 6b:ce:c1 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 5B:25:7B:96:A4:65:51:7E:B8:39:F3:C0:78:66:5E:E8:3A:E7:F0:EE + X509v3 Authority Key Identifier: + keyid:5B:25:7B:96:A4:65:51:7E:B8:39:F3:C0:78:66:5E:E8:3A:E7:F0:EE + + X509v3 Certificate Policies: + Policy: 2.16.756.1.89.1.2.1.1 + CPS: http://repository.swisssign.com/ + + Signature Algorithm: sha1WithRSAEncryption + 27:ba:e3:94:7c:f1:ae:c0:de:17:e6:e5:d8:d5:f5:54:b0:83: + f4:bb:cd:5e:05:7b:4f:9f:75:66:af:3c:e8:56:7e:fc:72:78: + 38:03:d9:2b:62:1b:00:b9:f8:e9:60:cd:cc:ce:51:8a:c7:50: + 31:6e:e1:4a:7e:18:2f:69:59:b6:3d:64:81:2b:e3:83:84:e6: + 22:87:8e:7d:e0:ee:02:99:61:b8:1e:f4:b8:2b:88:12:16:84: + c2:31:93:38:96:31:a6:b9:3b:53:3f:c3:24:93:56:5b:69:92: + ec:c5:c1:bb:38:00:e3:ec:17:a9:b8:dc:c7:7c:01:83:9f:32: + 47:ba:52:22:34:1d:32:7a:09:56:a7:7c:25:36:a9:3d:4b:da: + c0:82:6f:0a:bb:12:c8:87:4b:27:11:f9:1e:2d:c7:93:3f:9e: + db:5f:26:6b:52:d9:2e:8a:f1:14:c6:44:8d:15:a9:b7:bf:bd: + de:a6:1a:ee:ae:2d:fb:48:77:17:fe:bb:ec:af:18:f5:2a:51: + f0:39:84:97:95:6c:6e:1b:c3:2b:c4:74:60:79:25:b0:0a:27: + df:df:5e:d2:39:cf:45:7d:42:4b:df:b3:2c:1e:c5:c6:5d:ca: + 55:3a:a0:9c:69:9a:8f:da:ef:b2:b0:3c:9f:87:6c:12:2b:65: + 70:15:52:31:1a:24:cf:6f:31:23:50:1f:8c:4f:8f:23:c3:74: + 41:63:1c:55:a8:14:dd:3e:e0:51:50:cf:f1:1b:30:56:0e:92: + b0:82:85:d8:83:cb:22:64:bc:2d:b8:25:d5:54:a2:b8:06:ea: + ad:92:a4:24:a0:c1:86:b5:4a:13:6a:47:cf:2e:0b:56:95:54: + cb:ce:9a:db:6a:b4:a6:b2:db:41:08:86:27:77:f7:6a:a0:42: + 6c:0b:38:ce:d7:75:50:32:92:c2:df:2b:30:22:48:d0:d5:41: + 38:25:5d:a4:e9:5d:9f:c6:94:75:d0:45:fd:30:97:43:8f:90: + ab:0a:c7:86:73:60:4a:69:2d:de:a5:78:d7:06:da:6a:9e:4b: + 3e:77:3a:20:13:22:01:d0:bf:68:9e:63:60:6b:35:4d:0b:6d: + ba:a1:3d:c0:93:e0:7f:23:b3:55:ad:72:25:4e:46:f9:d2:16: + ef:b0:64:c1:01:9e:e9:ca:a0:6a:98:0e:cf:d8:60:f2:2f:49: + b8:e4:42:e1:38:35:16:f4:c8:6e:4f:f7:81:56:e8:ba:a3:be: + 23:af:ae:fd:6f:03:e0:02:3b:30:76:fa:1b:6d:41:cf:01:b1: + e9:b8:c9:66:f4:db:26:f3:3a:a4:74:f2:49:24:5b:c9:b0:d0: + 57:c1:fa:3e:7a:e1:97:c9 +SHA1 Fingerprint=D8:C5:38:8A:B7:30:1B:1B:6E:D4:7A:E6:45:25:3A:6F:9F:1A:27:61 diff --git a/system/etc/security/cacerts/3c9a4d3b.0 b/system/etc/security/cacerts/3c9a4d3b.0 new file mode 100644 index 0000000000000000000000000000000000000000..c6e312ceb629cecdde26ba38b8e2676f6e4c9c85 --- /dev/null +++ b/system/etc/security/cacerts/3c9a4d3b.0 @@ -0,0 +1,152 @@ +-----BEGIN CERTIFICATE----- +MIIH0zCCBbugAwIBAgIIXsO3pkN/pOAwDQYJKoZIhvcNAQEFBQAwQjESMBAGA1UE +AwwJQUNDVlJBSVoxMRAwDgYDVQQLDAdQS0lBQ0NWMQ0wCwYDVQQKDARBQ0NWMQsw +CQYDVQQGEwJFUzAeFw0xMTA1MDUwOTM3MzdaFw0zMDEyMzEwOTM3MzdaMEIxEjAQ +BgNVBAMMCUFDQ1ZSQUlaMTEQMA4GA1UECwwHUEtJQUNDVjENMAsGA1UECgwEQUND +VjELMAkGA1UEBhMCRVMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCb +qau/YUqXry+XZpp0X9DZlv3P4uRm7x8fRzPCRKPfmt4ftVTdFXxpNRFvu8gMjmoY +HtiP2Ra8EEg2XPBjs5BaXCQ316PWywlxufEBcoSwfdtNgM3802/J+Nq2DoLSRYWo +G2ioPej0RGy9ocLLA76MPhMAhN9KSMDjIgro6TenGEyxCQ0jVn8ETdkXhBilyNpA +lHPrzg5XPAOBOp0KoVdDaaxXbXmQeOW1tDvYvEyNKKGno6e6Ak4l0Squ7a4DIrhr +IA8wKFSVf+DuzgpmndFALW4ir50awQUZ0m/A8p/4e7MCQvtQqR0tkw8jq8bBD5L/ +0KIV9VMJcRz/RROE5iZe+OCIHAr8Fraocwa48GOEAqDGWuzndN9wrqODJerWx5eH +k6fGioozl2A3ED6XPm4pFdahD9GILBKfb6qkxkLrQaLjlUPTAYVtjrs78yM2x/47 +4KElB0iryYl0/wiPgL/AlmXz7uxLaL2diMMxs0Dx6M/2OLuc5NF/1OVYm3z61PMO +m3WR5LpSLhl+0fXNWhn8ugb2+1KoS5kE3fj5tItQo05iifCHJPqDQsGH+tUtKSpa +cXpkatcnYGMN285J9Y0fkIkyF/hzQ7jSWpOGYdbhdQrqeWZ2iE9x6wQl1gpaepPl +uUsXQA+xtrn13k/c4LOsOxFwYIRKQ26ZIMApcQrAZQIDAQABo4ICyzCCAscwfQYI +KwYBBQUHAQEEcTBvMEwGCCsGAQUFBzAChkBodHRwOi8vd3d3LmFjY3YuZXMvZmls +ZWFkbWluL0FyY2hpdm9zL2NlcnRpZmljYWRvcy9yYWl6YWNjdjEuY3J0MB8GCCsG +AQUFBzABhhNodHRwOi8vb2NzcC5hY2N2LmVzMB0GA1UdDgQWBBTSh7Tj3zcnk1X2 +VuqB5TbMjB4/vTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNKHtOPfNyeT +VfZW6oHlNsyMHj+9MIIBcwYDVR0gBIIBajCCAWYwggFiBgRVHSAAMIIBWDCCASIG +CCsGAQUFBwICMIIBFB6CARAAQQB1AHQAbwByAGkAZABhAGQAIABkAGUAIABDAGUA +cgB0AGkAZgBpAGMAYQBjAGkA8wBuACAAUgBhAO0AegAgAGQAZQAgAGwAYQAgAEEA +QwBDAFYAIAAoAEEAZwBlAG4AYwBpAGEAIABkAGUAIABUAGUAYwBuAG8AbABvAGcA +7QBhACAAeQAgAEMAZQByAHQAaQBmAGkAYwBhAGMAaQDzAG4AIABFAGwAZQBjAHQA +cgDzAG4AaQBjAGEALAAgAEMASQBGACAAUQA0ADYAMAAxADEANQA2AEUAKQAuACAA +QwBQAFMAIABlAG4AIABoAHQAdABwADoALwAvAHcAdwB3AC4AYQBjAGMAdgAuAGUA +czAwBggrBgEFBQcCARYkaHR0cDovL3d3dy5hY2N2LmVzL2xlZ2lzbGFjaW9uX2Mu +aHRtMFUGA1UdHwROMEwwSqBIoEaGRGh0dHA6Ly93d3cuYWNjdi5lcy9maWxlYWRt +aW4vQXJjaGl2b3MvY2VydGlmaWNhZG9zL3JhaXphY2N2MV9kZXIuY3JsMA4GA1Ud +DwEB/wQEAwIBBjAXBgNVHREEEDAOgQxhY2N2QGFjY3YuZXMwDQYJKoZIhvcNAQEF +BQADggIBAJcxAp/n/UNnSEQU5CmH7UwoZtCPNdpNYbdKl02125DgBS4OxnnQ8pdp +D70ER9m+27Up2pvZrqmZ1dM8MJP1jaGo/AaNRPTKFpV8M9xii6g3+CfYCS0b78gU +JyCpZET/LtZ1qmxNYEAZSUNUY9rizLpm5U9EelvZaoErQNV/+QEnWCzI7UiRfD+m +AM/EKXMRNt6GGT6d7hmKG9Ww7Y49nCrADdg9ZuM8Db3VlFzi4qc1GwQA9j9ajepD +vV+JHanBsMyZ4k0ACtrJJ1vnE5Bc5PUzolVt3OAJTS+xJlsndQAJxGJ3KQhfnlms +tn6tn1QwIgPBHnFk/vk4CpYY3QIUrCPLBhwepH2NDd4nQeit2hW3sCPdK6jT2iWH +7ehVRE2I9DZ+hJp4rPcOVkkO1jMl1oRQQmwgEh0q1b688nCBpHBgvgW1m54ERL5h +I6zppSSMEYCUWqKiuUnSwdzRp+0xESyeGabu4VXhwOrPDYTkF7eifKXeVSUG7szA +h1xA2syVP1XgNce4hL60Xc16gwFy7ofmXx2utYXGJt/mwZrpHgJHnyqobalbz+xF +d3+YJ5oyXSrjhO7FmGYvliAd3djDJ9ew+f7Zfc3Qn48LFFhRny+Lwzgt3uiP1o2H +pPVWQxaZLPSkVrQ0uGE3ycJYgBugl6H8WY3pEfbRD0tVNEYqi4Y7 +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 6828503384748696800 (0x5ec3b7a6437fa4e0) + Signature Algorithm: sha1WithRSAEncryption + Issuer: CN=ACCVRAIZ1, OU=PKIACCV, O=ACCV, C=ES + Validity + Not Before: May 5 09:37:37 2011 GMT + Not After : Dec 31 09:37:37 2030 GMT + Subject: CN=ACCVRAIZ1, OU=PKIACCV, O=ACCV, C=ES + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:9b:a9:ab:bf:61:4a:97:af:2f:97:66:9a:74:5f: + d0:d9:96:fd:cf:e2:e4:66:ef:1f:1f:47:33:c2:44: + a3:df:9a:de:1f:b5:54:dd:15:7c:69:35:11:6f:bb: + c8:0c:8e:6a:18:1e:d8:8f:d9:16:bc:10:48:36:5c: + f0:63:b3:90:5a:5c:24:37:d7:a3:d6:cb:09:71:b9: + f1:01:72:84:b0:7d:db:4d:80:cd:fc:d3:6f:c9:f8: + da:b6:0e:82:d2:45:85:a8:1b:68:a8:3d:e8:f4:44: + 6c:bd:a1:c2:cb:03:be:8c:3e:13:00:84:df:4a:48: + c0:e3:22:0a:e8:e9:37:a7:18:4c:b1:09:0d:23:56: + 7f:04:4d:d9:17:84:18:a5:c8:da:40:94:73:eb:ce: + 0e:57:3c:03:81:3a:9d:0a:a1:57:43:69:ac:57:6d: + 79:90:78:e5:b5:b4:3b:d8:bc:4c:8d:28:a1:a7:a3: + a7:ba:02:4e:25:d1:2a:ae:ed:ae:03:22:b8:6b:20: + 0f:30:28:54:95:7f:e0:ee:ce:0a:66:9d:d1:40:2d: + 6e:22:af:9d:1a:c1:05:19:d2:6f:c0:f2:9f:f8:7b: + b3:02:42:fb:50:a9:1d:2d:93:0f:23:ab:c6:c1:0f: + 92:ff:d0:a2:15:f5:53:09:71:1c:ff:45:13:84:e6: + 26:5e:f8:e0:88:1c:0a:fc:16:b6:a8:73:06:b8:f0: + 63:84:02:a0:c6:5a:ec:e7:74:df:70:ae:a3:83:25: + ea:d6:c7:97:87:93:a7:c6:8a:8a:33:97:60:37:10: + 3e:97:3e:6e:29:15:d6:a1:0f:d1:88:2c:12:9f:6f: + aa:a4:c6:42:eb:41:a2:e3:95:43:d3:01:85:6d:8e: + bb:3b:f3:23:36:c7:fe:3b:e0:a1:25:07:48:ab:c9: + 89:74:ff:08:8f:80:bf:c0:96:65:f3:ee:ec:4b:68: + bd:9d:88:c3:31:b3:40:f1:e8:cf:f6:38:bb:9c:e4: + d1:7f:d4:e5:58:9b:7c:fa:d4:f3:0e:9b:75:91:e4: + ba:52:2e:19:7e:d1:f5:cd:5a:19:fc:ba:06:f6:fb: + 52:a8:4b:99:04:dd:f8:f9:b4:8b:50:a3:4e:62:89: + f0:87:24:fa:83:42:c1:87:fa:d5:2d:29:2a:5a:71: + 7a:64:6a:d7:27:60:63:0d:db:ce:49:f5:8d:1f:90: + 89:32:17:f8:73:43:b8:d2:5a:93:86:61:d6:e1:75: + 0a:ea:79:66:76:88:4f:71:eb:04:25:d6:0a:5a:7a: + 93:e5:b9:4b:17:40:0f:b1:b6:b9:f5:de:4f:dc:e0: + b3:ac:3b:11:70:60:84:4a:43:6e:99:20:c0:29:71: + 0a:c0:65 + Exponent: 65537 (0x10001) + X509v3 extensions: + Authority Information Access: + CA Issuers - URI:http://www.accv.es/fileadmin/Archivos/certificados/raizaccv1.crt + OCSP - URI:http://ocsp.accv.es + + X509v3 Subject Key Identifier: + D2:87:B4:E3:DF:37:27:93:55:F6:56:EA:81:E5:36:CC:8C:1E:3F:BD + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Authority Key Identifier: + keyid:D2:87:B4:E3:DF:37:27:93:55:F6:56:EA:81:E5:36:CC:8C:1E:3F:BD + + X509v3 Certificate Policies: + Policy: X509v3 Any Policy + User Notice: + Explicit Text: + CPS: http://www.accv.es/legislacion_c.htm + + X509v3 CRL Distribution Points: + + Full Name: + URI:http://www.accv.es/fileadmin/Archivos/certificados/raizaccv1_der.crl + + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Alternative Name: + email:accv@accv.es + Signature Algorithm: sha1WithRSAEncryption + 97:31:02:9f:e7:fd:43:67:48:44:14:e4:29:87:ed:4c:28:66: + d0:8f:35:da:4d:61:b7:4a:97:4d:b5:db:90:e0:05:2e:0e:c6: + 79:d0:f2:97:69:0f:bd:04:47:d9:be:db:b5:29:da:9b:d9:ae: + a9:99:d5:d3:3c:30:93:f5:8d:a1:a8:fc:06:8d:44:f4:ca:16: + 95:7c:33:dc:62:8b:a8:37:f8:27:d8:09:2d:1b:ef:c8:14:27: + 20:a9:64:44:ff:2e:d6:75:aa:6c:4d:60:40:19:49:43:54:63: + da:e2:cc:ba:66:e5:4f:44:7a:5b:d9:6a:81:2b:40:d5:7f:f9: + 01:27:58:2c:c8:ed:48:91:7c:3f:a6:00:cf:c4:29:73:11:36: + de:86:19:3e:9d:ee:19:8a:1b:d5:b0:ed:8e:3d:9c:2a:c0:0d: + d8:3d:66:e3:3c:0d:bd:d5:94:5c:e2:e2:a7:35:1b:04:00:f6: + 3f:5a:8d:ea:43:bd:5f:89:1d:a9:c1:b0:cc:99:e2:4d:00:0a: + da:c9:27:5b:e7:13:90:5c:e4:f5:33:a2:55:6d:dc:e0:09:4d: + 2f:b1:26:5b:27:75:00:09:c4:62:77:29:08:5f:9e:59:ac:b6: + 7e:ad:9f:54:30:22:03:c1:1e:71:64:fe:f9:38:0a:96:18:dd: + 02:14:ac:23:cb:06:1c:1e:a4:7d:8d:0d:de:27:41:e8:ad:da: + 15:b7:b0:23:dd:2b:a8:d3:da:25:87:ed:e8:55:44:4d:88:f4: + 36:7e:84:9a:78:ac:f7:0e:56:49:0e:d6:33:25:d6:84:50:42: + 6c:20:12:1d:2a:d5:be:bc:f2:70:81:a4:70:60:be:05:b5:9b: + 9e:04:44:be:61:23:ac:e9:a5:24:8c:11:80:94:5a:a2:a2:b9: + 49:d2:c1:dc:d1:a7:ed:31:11:2c:9e:19:a6:ee:e1:55:e1:c0: + ea:cf:0d:84:e4:17:b7:a2:7c:a5:de:55:25:06:ee:cc:c0:87: + 5c:40:da:cc:95:3f:55:e0:35:c7:b8:84:be:b4:5d:cd:7a:83: + 01:72:ee:87:e6:5f:1d:ae:b5:85:c6:26:df:e6:c1:9a:e9:1e: + 02:47:9f:2a:a8:6d:a9:5b:cf:ec:45:77:7f:98:27:9a:32:5d: + 2a:e3:84:ee:c5:98:66:2f:96:20:1d:dd:d8:c3:27:d7:b0:f9: + fe:d9:7d:cd:d0:9f:8f:0b:14:58:51:9f:2f:8b:c3:38:2d:de: + e8:8f:d6:8d:87:a4:f5:56:43:16:99:2c:f4:a4:56:b4:34:b8: + 61:37:c9:c2:58:80:1b:a0:97:a1:fc:59:8d:e9:11:f6:d1:0f: + 4b:55:34:46:2a:8b:86:3b +SHA1 Fingerprint=93:05:7A:88:15:C6:4F:CE:88:2F:FA:91:16:52:28:78:BC:53:64:17 diff --git a/system/etc/security/cacerts/3d441de8.0 b/system/etc/security/cacerts/3d441de8.0 new file mode 100644 index 0000000000000000000000000000000000000000..d8c9824f6bcb666049ffe4db05f021494c2313b8 --- /dev/null +++ b/system/etc/security/cacerts/3d441de8.0 @@ -0,0 +1,125 @@ +-----BEGIN CERTIFICATE----- +MIIFyjCCA7KgAwIBAgIEAJiWjDANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJO +TDEeMBwGA1UECgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFh +dCBkZXIgTmVkZXJsYW5kZW4gUm9vdCBDQSAtIEcyMB4XDTA4MDMyNjExMTgxN1oX +DTIwMDMyNTExMDMxMFowWjELMAkGA1UEBhMCTkwxHjAcBgNVBAoMFVN0YWF0IGRl +ciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5lZGVybGFuZGVuIFJv +b3QgQ0EgLSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMVZ5291 +qj5LnLW4rJ4L5PnZyqtdj7U5EILXr1HgO+EASGrP2uEGQxGZqhQlEq0i6ABtQ8Sp +uOUfiUtnvWFI7/3S4GCI5bkYYCjDdyutsDeqN95kWSpGV+RLufg3fNU254DBtvPU +Z5uW6M7XxgpT0GtJlvOjCwV3SPcl5XCsMBQgJeN/dVrlSPhOewMHBPqCYYdu8DvE +pMfQ9XQ+pV0aCPKbJdL2rAQmPlU6Yiile7Iwr/g3wtG61jj99O9JMDeZJiFIhQGp +5Rbn3JBV3w/oOM2ZNyFPXfUib2rFEhZgF1XyZWampzCROME4HYYEhLoaJXhena/M +UGDWE4dS7WMfbWV9whUYdMrhfmQpjHLYFhN9C0lK8SgbIHRrxT3dsKpICT0ugpTN +GmXZK4iambwYfp/ufWZ8Pr2UuIHOzZgweMFvZ9C+X+Bo7d7iscksWXiSqt8rYGPy +5V6548r6f1CGPqI0GAwJaCgRHOThuVw+R7oyPxjMW4T182t0xHJ04eOLoEq9jWYv +6q012iDTiIJh8BIitrzQ1aTsr1SIJSQ8p22xcik/Plemf1WvbibG/ufMQFxRRIEK +eN5KzlW/HdXZt1bv8Hb/C3m1r737qWmRRpdogBQ2HbN/uymYNqUg+oJgYjOk7Na6 +B6duxc8UpufWkjTYgfX8HV2qXB72o007uPc5AgMBAAGjgZcwgZQwDwYDVR0TAQH/ +BAUwAwEB/zBSBgNVHSAESzBJMEcGBFUdIAAwPzA9BggrBgEFBQcCARYxaHR0cDov +L3d3dy5wa2lvdmVyaGVpZC5ubC9wb2xpY2llcy9yb290LXBvbGljeS1HMjAOBgNV +HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJFoMocVHYnitfGsNig0jQt8YojrMA0GCSqG +SIb3DQEBCwUAA4ICAQCoQUpnKpKBglBu4dfYszk78wIVCVBR7y29JHuIhjv5tLyS +CZa59sCrI2AGeYwRTlHSeYAz+51IvuxBQ4EffkdAHOV6CMqqi3WtFMTC6GY8ggen +5ieCWxjmD27ZUD6KQhgpxrRW/FYQoAUXvQwjf/ST7ZwaUb7dRUG/kSS0H4zpX897 +IZmflZ85OkYcbPnNe5yQzSipx6lVu6xiNGI1E0sUOlWDuYaNkqbG9AclVMwWVxJK +gnjIFNkXgiYtXSAfea7+1HAWFpWD2DU5/1JddRwWxRNVz0fMdWVSSt7wsKfkCpYL ++63C4iWEst3kvX5ZbJvw8NjnyvLplzh+ib7M+zkXYT9y2zqR2GUBGR2tUKRXCnxL +vJxxcypFURmFzI79R6d0lR2o0a9OF7FpJsKqeFdbxU2n5Z4FF5TKsl+gSRiNNOkm +bEgeqmiSBeGCc1qb3AdbCG19ndeNIdn8FCCqwkXfP+cAslHkwvgFuXkajDTznlvk +N1trSt8sV4pAWja63XVECDdCcAz+3F4hoKOKwJCcaNpQ5kUQR3i2TtJlycM33+FC +Y7BXN0Ute4qcvwXqZVUz9zkQxSgqIXobisQk+T8VyJoVIPVVYpbtbZNQvOSqeK3Z +ywplh6ZmwcSBo3c6WB4L7oOLnR7SUqTMHW+wmG2UMbX4cQrcufx9MmDm66+KAQ== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 10000012 (0x98968c) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=NL, O=Staat der Nederlanden, CN=Staat der Nederlanden Root CA - G2 + Validity + Not Before: Mar 26 11:18:17 2008 GMT + Not After : Mar 25 11:03:10 2020 GMT + Subject: C=NL, O=Staat der Nederlanden, CN=Staat der Nederlanden Root CA - G2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:c5:59:e7:6f:75:aa:3e:4b:9c:b5:b8:ac:9e:0b: + e4:f9:d9:ca:ab:5d:8f:b5:39:10:82:d7:af:51:e0: + 3b:e1:00:48:6a:cf:da:e1:06:43:11:99:aa:14:25: + 12:ad:22:e8:00:6d:43:c4:a9:b8:e5:1f:89:4b:67: + bd:61:48:ef:fd:d2:e0:60:88:e5:b9:18:60:28:c3: + 77:2b:ad:b0:37:aa:37:de:64:59:2a:46:57:e4:4b: + b9:f8:37:7c:d5:36:e7:80:c1:b6:f3:d4:67:9b:96: + e8:ce:d7:c6:0a:53:d0:6b:49:96:f3:a3:0b:05:77: + 48:f7:25:e5:70:ac:30:14:20:25:e3:7f:75:5a:e5: + 48:f8:4e:7b:03:07:04:fa:82:61:87:6e:f0:3b:c4: + a4:c7:d0:f5:74:3e:a5:5d:1a:08:f2:9b:25:d2:f6: + ac:04:26:3e:55:3a:62:28:a5:7b:b2:30:af:f8:37: + c2:d1:ba:d6:38:fd:f4:ef:49:30:37:99:26:21:48: + 85:01:a9:e5:16:e7:dc:90:55:df:0f:e8:38:cd:99: + 37:21:4f:5d:f5:22:6f:6a:c5:12:16:60:17:55:f2: + 65:66:a6:a7:30:91:38:c1:38:1d:86:04:84:ba:1a: + 25:78:5e:9d:af:cc:50:60:d6:13:87:52:ed:63:1f: + 6d:65:7d:c2:15:18:74:ca:e1:7e:64:29:8c:72:d8: + 16:13:7d:0b:49:4a:f1:28:1b:20:74:6b:c5:3d:dd: + b0:aa:48:09:3d:2e:82:94:cd:1a:65:d9:2b:88:9a: + 99:bc:18:7e:9f:ee:7d:66:7c:3e:bd:94:b8:81:ce: + cd:98:30:78:c1:6f:67:d0:be:5f:e0:68:ed:de:e2: + b1:c9:2c:59:78:92:aa:df:2b:60:63:f2:e5:5e:b9: + e3:ca:fa:7f:50:86:3e:a2:34:18:0c:09:68:28:11: + 1c:e4:e1:b9:5c:3e:47:ba:32:3f:18:cc:5b:84:f5: + f3:6b:74:c4:72:74:e1:e3:8b:a0:4a:bd:8d:66:2f: + ea:ad:35:da:20:d3:88:82:61:f0:12:22:b6:bc:d0: + d5:a4:ec:af:54:88:25:24:3c:a7:6d:b1:72:29:3f: + 3e:57:a6:7f:55:af:6e:26:c6:fe:e7:cc:40:5c:51: + 44:81:0a:78:de:4a:ce:55:bf:1d:d5:d9:b7:56:ef: + f0:76:ff:0b:79:b5:af:bd:fb:a9:69:91:46:97:68: + 80:14:36:1d:b3:7f:bb:29:98:36:a5:20:fa:82:60: + 62:33:a4:ec:d6:ba:07:a7:6e:c5:cf:14:a6:e7:d6: + 92:34:d8:81:f5:fc:1d:5d:aa:5c:1e:f6:a3:4d:3b: + b8:f7:39 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Certificate Policies: + Policy: X509v3 Any Policy + CPS: http://www.pkioverheid.nl/policies/root-policy-G2 + + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + 91:68:32:87:15:1D:89:E2:B5:F1:AC:36:28:34:8D:0B:7C:62:88:EB + Signature Algorithm: sha256WithRSAEncryption + a8:41:4a:67:2a:92:81:82:50:6e:e1:d7:d8:b3:39:3b:f3:02: + 15:09:50:51:ef:2d:bd:24:7b:88:86:3b:f9:b4:bc:92:09:96: + b9:f6:c0:ab:23:60:06:79:8c:11:4e:51:d2:79:80:33:fb:9d: + 48:be:ec:41:43:81:1f:7e:47:40:1c:e5:7a:08:ca:aa:8b:75: + ad:14:c4:c2:e8:66:3c:82:07:a7:e6:27:82:5b:18:e6:0f:6e: + d9:50:3e:8a:42:18:29:c6:b4:56:fc:56:10:a0:05:17:bd:0c: + 23:7f:f4:93:ed:9c:1a:51:be:dd:45:41:bf:91:24:b4:1f:8c: + e9:5f:cf:7b:21:99:9f:95:9f:39:3a:46:1c:6c:f9:cd:7b:9c: + 90:cd:28:a9:c7:a9:55:bb:ac:62:34:62:35:13:4b:14:3a:55: + 83:b9:86:8d:92:a6:c6:f4:07:25:54:cc:16:57:12:4a:82:78: + c8:14:d9:17:82:26:2d:5d:20:1f:79:ae:fe:d4:70:16:16:95: + 83:d8:35:39:ff:52:5d:75:1c:16:c5:13:55:cf:47:cc:75:65: + 52:4a:de:f0:b0:a7:e4:0a:96:0b:fb:ad:c2:e2:25:84:b2:dd: + e4:bd:7e:59:6c:9b:f0:f0:d8:e7:ca:f2:e9:97:38:7e:89:be: + cc:fb:39:17:61:3f:72:db:3a:91:d8:65:01:19:1d:ad:50:a4: + 57:0a:7c:4b:bc:9c:71:73:2a:45:51:19:85:cc:8e:fd:47:a7: + 74:95:1d:a8:d1:af:4e:17:b1:69:26:c2:aa:78:57:5b:c5:4d: + a7:e5:9e:05:17:94:ca:b2:5f:a0:49:18:8d:34:e9:26:6c:48: + 1e:aa:68:92:05:e1:82:73:5a:9b:dc:07:5b:08:6d:7d:9d:d7: + 8d:21:d9:fc:14:20:aa:c2:45:df:3f:e7:00:b2:51:e4:c2:f8: + 05:b9:79:1a:8c:34:f3:9e:5b:e4:37:5b:6b:4a:df:2c:57:8a: + 40:5a:36:ba:dd:75:44:08:37:42:70:0c:fe:dc:5e:21:a0:a3: + 8a:c0:90:9c:68:da:50:e6:45:10:47:78:b6:4e:d2:65:c9:c3: + 37:df:e1:42:63:b0:57:37:45:2d:7b:8a:9c:bf:05:ea:65:55: + 33:f7:39:10:c5:28:2a:21:7a:1b:8a:c4:24:f9:3f:15:c8:9a: + 15:20:f5:55:62:96:ed:6d:93:50:bc:e4:aa:78:ad:d9:cb:0a: + 65:87:a6:66:c1:c4:81:a3:77:3a:58:1e:0b:ee:83:8b:9d:1e: + d2:52:a4:cc:1d:6f:b0:98:6d:94:31:b5:f8:71:0a:dc:b9:fc: + 7d:32:60:e6:eb:af:8a:01 +SHA1 Fingerprint=59:AF:82:79:91:86:C7:B4:75:07:CB:CF:03:57:46:EB:04:DD:B7:16 diff --git a/system/etc/security/cacerts/3e7271e8.0 b/system/etc/security/cacerts/3e7271e8.0 new file mode 100644 index 0000000000000000000000000000000000000000..91dd4f9954c8a162a0a426f686d8a19d4e0b25e0 --- /dev/null +++ b/system/etc/security/cacerts/3e7271e8.0 @@ -0,0 +1,82 @@ +-----BEGIN CERTIFICATE----- +MIIEKjCCAxKgAwIBAgIEOGPe+DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChML +RW50cnVzdC5uZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBp +bmNvcnAuIGJ5IHJlZi4gKGxpbWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5 +IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNVBAMTKkVudHJ1c3QubmV0IENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQxNzUwNTFaFw0yOTA3 +MjQxNDE1MTJaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3d3d3 +LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxp +YWIuKTElMCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEG +A1UEAxMqRW50cnVzdC5uZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgp +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArU1LqRKGsuqjIAcVFmQq +K0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOLGp18EzoOH1u3Hs/lJBQe +sYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSrhRSGlVuX +MlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVT +XTzWnLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/ +HoZdenoVve8AjhUiVBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH +4QIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQUVeSB0RGAvtiJuQijMfmhJAkWuXAwDQYJKoZIhvcNAQEFBQADggEBADub +j1abMOdTmXx6eadNl9cZlZD7Bh/KM3xGY4+WZiT6QBshJ8rmcnPyT/4xmf3IDExo +U8aAghOY+rat2l098c5u9hURlIIM7j+VrxGrD9cv3h8Dj1csHsm7mhpElesYT6Yf +zX1XEC+bBAlahLVu2B064dae0Wx5XnkcFMXj0EyTO2U87d89vqbllRrDtRnDvV5b +u/8j72gZyxKTJ1wDLW8w0B62GqzeWvfRqqgnpv55gcR5mTNXuhKwqeBCbJPKVt7+ +bYQLCIt+jerXmCHG8+c8eS9enNFMFY3h7CI3zJpDC5fcgJCNs2ebb0gIFVbPv/Er +fF6adulZkMV8gzURZVE= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 946069240 (0x3863def8) + Signature Algorithm: sha1WithRSAEncryption + Issuer: O=Entrust.net, OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.), OU=(c) 1999 Entrust.net Limited, CN=Entrust.net Certification Authority (2048) + Validity + Not Before: Dec 24 17:50:51 1999 GMT + Not After : Jul 24 14:15:12 2029 GMT + Subject: O=Entrust.net, OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.), OU=(c) 1999 Entrust.net Limited, CN=Entrust.net Certification Authority (2048) + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:ad:4d:4b:a9:12:86:b2:ea:a3:20:07:15:16:64: + 2a:2b:4b:d1:bf:0b:4a:4d:8e:ed:80:76:a5:67:b7: + 78:40:c0:73:42:c8:68:c0:db:53:2b:dd:5e:b8:76: + 98:35:93:8b:1a:9d:7c:13:3a:0e:1f:5b:b7:1e:cf: + e5:24:14:1e:b1:81:a9:8d:7d:b8:cc:6b:4b:03:f1: + 02:0c:dc:ab:a5:40:24:00:7f:74:94:a1:9d:08:29: + b3:88:0b:f5:87:77:9d:55:cd:e4:c3:7e:d7:6a:64: + ab:85:14:86:95:5b:97:32:50:6f:3d:c8:ba:66:0c: + e3:fc:bd:b8:49:c1:76:89:49:19:fd:c0:a8:bd:89: + a3:67:2f:c6:9f:bc:71:19:60:b8:2d:e9:2c:c9:90: + 76:66:7b:94:e2:af:78:d6:65:53:5d:3c:d6:9c:b2: + cf:29:03:f9:2f:a4:50:b2:d4:48:ce:05:32:55:8a: + fd:b2:64:4c:0e:e4:98:07:75:db:7f:df:b9:08:55: + 60:85:30:29:f9:7b:48:a4:69:86:e3:35:3f:1e:86: + 5d:7a:7a:15:bd:ef:00:8e:15:22:54:17:00:90:26: + 93:bc:0e:49:68:91:bf:f8:47:d3:9d:95:42:c1:0e: + 4d:df:6f:26:cf:c3:18:21:62:66:43:70:d6:d5:c0: + 07:e1 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 55:E4:81:D1:11:80:BE:D8:89:B9:08:A3:31:F9:A1:24:09:16:B9:70 + Signature Algorithm: sha1WithRSAEncryption + 3b:9b:8f:56:9b:30:e7:53:99:7c:7a:79:a7:4d:97:d7:19:95: + 90:fb:06:1f:ca:33:7c:46:63:8f:96:66:24:fa:40:1b:21:27: + ca:e6:72:73:f2:4f:fe:31:99:fd:c8:0c:4c:68:53:c6:80:82: + 13:98:fa:b6:ad:da:5d:3d:f1:ce:6e:f6:15:11:94:82:0c:ee: + 3f:95:af:11:ab:0f:d7:2f:de:1f:03:8f:57:2c:1e:c9:bb:9a: + 1a:44:95:eb:18:4f:a6:1f:cd:7d:57:10:2f:9b:04:09:5a:84: + b5:6e:d8:1d:3a:e1:d6:9e:d1:6c:79:5e:79:1c:14:c5:e3:d0: + 4c:93:3b:65:3c:ed:df:3d:be:a6:e5:95:1a:c3:b5:19:c3:bd: + 5e:5b:bb:ff:23:ef:68:19:cb:12:93:27:5c:03:2d:6f:30:d0: + 1e:b6:1a:ac:de:5a:f7:d1:aa:a8:27:a6:fe:79:81:c4:79:99: + 33:57:ba:12:b0:a9:e0:42:6c:93:ca:56:de:fe:6d:84:0b:08: + 8b:7e:8d:ea:d7:98:21:c6:f3:e7:3c:79:2f:5e:9c:d1:4c:15: + 8d:e1:ec:22:37:cc:9a:43:0b:97:dc:80:90:8d:b3:67:9b:6f: + 48:08:15:56:cf:bf:f1:2b:7c:5e:9a:76:e9:59:90:c5:7c:83: + 35:11:65:51 +SHA1 Fingerprint=50:30:06:09:1D:97:D4:F5:AE:39:F7:CB:E7:92:7D:7D:65:2D:34:31 diff --git a/system/etc/security/cacerts/40dc992e.0 b/system/etc/security/cacerts/40dc992e.0 new file mode 100644 index 0000000000000000000000000000000000000000..847cec60807d25da6521d6104219710a2f92aece --- /dev/null +++ b/system/etc/security/cacerts/40dc992e.0 @@ -0,0 +1,93 @@ +-----BEGIN CERTIFICATE----- +MIIEMTCCAxmgAwIBAgIBADANBgkqhkiG9w0BAQUFADCBlTELMAkGA1UEBhMCR1Ix +RDBCBgNVBAoTO0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1 +dGlvbnMgQ2VydC4gQXV0aG9yaXR5MUAwPgYDVQQDEzdIZWxsZW5pYyBBY2FkZW1p +YyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIFJvb3RDQSAyMDExMB4XDTExMTIw +NjEzNDk1MloXDTMxMTIwMTEzNDk1MlowgZUxCzAJBgNVBAYTAkdSMUQwQgYDVQQK +EztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENl +cnQuIEF1dGhvcml0eTFAMD4GA1UEAxM3SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl +c2VhcmNoIEluc3RpdHV0aW9ucyBSb290Q0EgMjAxMTCCASIwDQYJKoZIhvcNAQEB +BQADggEPADCCAQoCggEBAKlTAOMupvaO+mDYLZU++CwqVE7NuYRhlFhPjz2L5EPz +dYmNUeTDN9KKiE15HrcS3UN4SoqS5tdI1Q+kOilENbgH9mgdVc04UfCMJDGFr4PJ +fel3r+0ae50X+bOdOFAPplp5kYCvN66m0zH7tSYJnTxa71HFK9+WXesyHgLacEns +bgzImjeN9/E2YEsmLIKe0HjzDQ9jpFEw4fkrJxIH2Oq9GGKYsFk3fb7u8yBRQlqD +75O6aRXxYp2fmTmCobd0LovUxQt7L/DICto9eQqakxylKHJzkUOap9FNhYS5qXSP +FEDH3N6sQWRstBmbAmNtJGSPRLIl6s5ddAxjMlyNh+UCAwEAAaOBiTCBhjAPBgNV +HRMBAf8EBTADAQH/MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUppFC/RNhSiOeCKQp +5dgTBCPuQSUwRwYDVR0eBEAwPqA8MAWCAy5ncjAFggMuZXUwBoIELmVkdTAGggQu +b3JnMAWBAy5ncjAFgQMuZXUwBoEELmVkdTAGgQQub3JnMA0GCSqGSIb3DQEBBQUA +A4IBAQAf73lB4XtuP7KMhjdCSk4cNx6NZrokgclPEg8hwAOXhiVtXdMiKahsog2p +6z0GW5k6x8zDmjR/qw7IThzh+uTczQ2+vyT+bOdrwg3IBp5OjWEopmr95fZi6hg8 +TqBTnbI6nOulnJEWtk2C4AwFSKls9cz4y51JtPACpf1wA+2KIaWuE4ZJwzNzvoc7 +dIsXRSZMFpGD/md9zU1jZ/rzAxKWeAaNsWftjj++n08C9bMJL/NMh98qy5V8Acys +Nnq/onN694/BtZqhFLKPM58N7yLcZnuEvUUXBj08yrl3NI/K6s8/MT7jiOOASSXI +l7WdmplNsDz4SgCbZN2fOUvRJ9e4 +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 0 (0x0) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=GR, O=Hellenic Academic and Research Institutions Cert. Authority, CN=Hellenic Academic and Research Institutions RootCA 2011 + Validity + Not Before: Dec 6 13:49:52 2011 GMT + Not After : Dec 1 13:49:52 2031 GMT + Subject: C=GR, O=Hellenic Academic and Research Institutions Cert. Authority, CN=Hellenic Academic and Research Institutions RootCA 2011 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:a9:53:00:e3:2e:a6:f6:8e:fa:60:d8:2d:95:3e: + f8:2c:2a:54:4e:cd:b9:84:61:94:58:4f:8f:3d:8b: + e4:43:f3:75:89:8d:51:e4:c3:37:d2:8a:88:4d:79: + 1e:b7:12:dd:43:78:4a:8a:92:e6:d7:48:d5:0f:a4: + 3a:29:44:35:b8:07:f6:68:1d:55:cd:38:51:f0:8c: + 24:31:85:af:83:c9:7d:e9:77:af:ed:1a:7b:9d:17: + f9:b3:9d:38:50:0f:a6:5a:79:91:80:af:37:ae:a6: + d3:31:fb:b5:26:09:9d:3c:5a:ef:51:c5:2b:df:96: + 5d:eb:32:1e:02:da:70:49:ec:6e:0c:c8:9a:37:8d: + f7:f1:36:60:4b:26:2c:82:9e:d0:78:f3:0d:0f:63: + a4:51:30:e1:f9:2b:27:12:07:d8:ea:bd:18:62:98: + b0:59:37:7d:be:ee:f3:20:51:42:5a:83:ef:93:ba: + 69:15:f1:62:9d:9f:99:39:82:a1:b7:74:2e:8b:d4: + c5:0b:7b:2f:f0:c8:0a:da:3d:79:0a:9a:93:1c:a5: + 28:72:73:91:43:9a:a7:d1:4d:85:84:b9:a9:74:8f: + 14:40:c7:dc:de:ac:41:64:6c:b4:19:9b:02:63:6d: + 24:64:8f:44:b2:25:ea:ce:5d:74:0c:63:32:5c:8d: + 87:e5 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + A6:91:42:FD:13:61:4A:23:9E:08:A4:29:E5:D8:13:04:23:EE:41:25 + X509v3 Name Constraints: + Permitted: + DNS:.gr + DNS:.eu + DNS:.edu + DNS:.org + email:.gr + email:.eu + email:.edu + email:.org + + Signature Algorithm: sha1WithRSAEncryption + 1f:ef:79:41:e1:7b:6e:3f:b2:8c:86:37:42:4a:4e:1c:37:1e: + 8d:66:ba:24:81:c9:4f:12:0f:21:c0:03:97:86:25:6d:5d:d3: + 22:29:a8:6c:a2:0d:a9:eb:3d:06:5b:99:3a:c7:cc:c3:9a:34: + 7f:ab:0e:c8:4e:1c:e1:fa:e4:dc:cd:0d:be:bf:24:fe:6c:e7: + 6b:c2:0d:c8:06:9e:4e:8d:61:28:a6:6a:fd:e5:f6:62:ea:18: + 3c:4e:a0:53:9d:b2:3a:9c:eb:a5:9c:91:16:b6:4d:82:e0:0c: + 05:48:a9:6c:f5:cc:f8:cb:9d:49:b4:f0:02:a5:fd:70:03:ed: + 8a:21:a5:ae:13:86:49:c3:33:73:be:87:3b:74:8b:17:45:26: + 4c:16:91:83:fe:67:7d:cd:4d:63:67:fa:f3:03:12:96:78:06: + 8d:b1:67:ed:8e:3f:be:9f:4f:02:f5:b3:09:2f:f3:4c:87:df: + 2a:cb:95:7c:01:cc:ac:36:7a:bf:a2:73:7a:f7:8f:c1:b5:9a: + a1:14:b2:8f:33:9f:0d:ef:22:dc:66:7b:84:bd:45:17:06:3d: + 3c:ca:b9:77:34:8f:ca:ea:cf:3f:31:3e:e3:88:e3:80:49:25: + c8:97:b5:9d:9a:99:4d:b0:3c:f8:4a:00:9b:64:dd:9f:39:4b: + d1:27:d7:b8 +SHA1 Fingerprint=FE:45:65:9B:79:03:5B:98:A1:61:B5:51:2E:AC:DA:58:09:48:22:4D diff --git a/system/etc/security/cacerts/418595b9.0 b/system/etc/security/cacerts/418595b9.0 new file mode 100644 index 0000000000000000000000000000000000000000..7f9eca2f80845811c0b6005f0951245435f99fe2 --- /dev/null +++ b/system/etc/security/cacerts/418595b9.0 @@ -0,0 +1,87 @@ +-----BEGIN CERTIFICATE----- +MIIFFzCCA/+gAwIBAgIBETANBgkqhkiG9w0BAQUFADCCASsxCzAJBgNVBAYTAlRS +MRgwFgYDVQQHDA9HZWJ6ZSAtIEtvY2FlbGkxRzBFBgNVBAoMPlTDvHJraXllIEJp +bGltc2VsIHZlIFRla25vbG9qaWsgQXJhxZ90xLFybWEgS3VydW11IC0gVMOcQsSw +VEFLMUgwRgYDVQQLDD9VbHVzYWwgRWxla3Ryb25payB2ZSBLcmlwdG9sb2ppIEFy +YcWfdMSxcm1hIEVuc3RpdMO8c8O8IC0gVUVLQUUxIzAhBgNVBAsMGkthbXUgU2Vy +dGlmaWthc3lvbiBNZXJrZXppMUowSAYDVQQDDEFUw5xCxLBUQUsgVUVLQUUgS8O2 +ayBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsSAtIFPDvHLDvG0gMzAe +Fw0wNzA4MjQxMTM3MDdaFw0xNzA4MjExMTM3MDdaMIIBKzELMAkGA1UEBhMCVFIx +GDAWBgNVBAcMD0dlYnplIC0gS29jYWVsaTFHMEUGA1UECgw+VMO8cmtpeWUgQmls +aW1zZWwgdmUgVGVrbm9sb2ppayBBcmHFn3TEsXJtYSBLdXJ1bXUgLSBUw5xCxLBU +QUsxSDBGBgNVBAsMP1VsdXNhbCBFbGVrdHJvbmlrIHZlIEtyaXB0b2xvamkgQXJh +xZ90xLFybWEgRW5zdGl0w7xzw7wgLSBVRUtBRTEjMCEGA1UECwwaS2FtdSBTZXJ0 +aWZpa2FzeW9uIE1lcmtlemkxSjBIBgNVBAMMQVTDnELEsFRBSyBVRUtBRSBLw7Zr +IFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxIC0gU8O8csO8bSAzMIIB +IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAim1L/xCIOsP2fpTo6iBkcK4h +gb46ezzb8R1Sf1n68yJMlaCQvEhOEav7t7WNeoMojCZG2E6VQIdhn8WebYGHV2yK +O7Rm6sxA/OOqbLLLAdsyv9Lrhc+hDVXDWzhXcLh1xnnRFDDtG1hba+818qEhTsXO +fJlfbLm4IpNQp81McGq+agV/E5wrHur+R84EpW+sky58K5+eeROR6Oqeyjh1jmKw +lZMq5d/pXpduIF9fhHpEORlAHLpVK/swsoHvhOPc7Jg4OQOFCKlUAwUp8MmPi+oL +hmUZEdPpCSPeaJMDyTYcIW7OjGbxmTDY17PDHfiBLqi9ggtm/oLL4eAagsNAgQID +AQABo0IwQDAdBgNVHQ4EFgQUvYiHyY/2pAoLquvF/pEjnatKijIwDgYDVR0PAQH/ +BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAB18+kmP +NOm3JpIWmgV050vQbTlswyb2zrgxvMTfvCr4N5EY3ATIZJkrGG2AA1nJrvhY0D7t +wyOfaTyGOBye79oneNGEN3GKPEs5z35FBtYt2IpNeBLWrcLTy9LQQfMmNkqblWwM +7uXRQydmwYj3erMgbOqwaSvHIOgMA8RBBZniP+Rr+KCGgceExh/VS4ESshYhLBOh +gLJeDEoTniDYYkCrkOpkSi+sDQESeUWoL4cZaMjihccwsnX5OD+ywJO0a+IDRM5n +oN+J1q2MdqMTw5RhK2vZbMEHCiIHhWyFJEapvj+LeISCfiQMnf2BN+MlqO02TpUs +yZyQ2uypQjyttgI= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 17 (0x11) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=TR, L=Gebze - Kocaeli, O=T\xC3\xBCrkiye Bilimsel ve Teknolojik Ara\xC5\x9Ft\xC4\xB1rma Kurumu - T\xC3\x9CB\xC4\xB0TAK, OU=Ulusal Elektronik ve Kriptoloji Ara\xC5\x9Ft\xC4\xB1rma Enstit\xC3\xBCs\xC3\xBC - UEKAE, OU=Kamu Sertifikasyon Merkezi, CN=T\xC3\x9CB\xC4\xB0TAK UEKAE K\xC3\xB6k Sertifika Hizmet Sa\xC4\x9Flay\xC4\xB1c\xC4\xB1s\xC4\xB1 - S\xC3\xBCr\xC3\xBCm 3 + Validity + Not Before: Aug 24 11:37:07 2007 GMT + Not After : Aug 21 11:37:07 2017 GMT + Subject: C=TR, L=Gebze - Kocaeli, O=T\xC3\xBCrkiye Bilimsel ve Teknolojik Ara\xC5\x9Ft\xC4\xB1rma Kurumu - T\xC3\x9CB\xC4\xB0TAK, OU=Ulusal Elektronik ve Kriptoloji Ara\xC5\x9Ft\xC4\xB1rma Enstit\xC3\xBCs\xC3\xBC - UEKAE, OU=Kamu Sertifikasyon Merkezi, CN=T\xC3\x9CB\xC4\xB0TAK UEKAE K\xC3\xB6k Sertifika Hizmet Sa\xC4\x9Flay\xC4\xB1c\xC4\xB1s\xC4\xB1 - S\xC3\xBCr\xC3\xBCm 3 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:8a:6d:4b:ff:10:88:3a:c3:f6:7e:94:e8:ea:20: + 64:70:ae:21:81:be:3a:7b:3c:db:f1:1d:52:7f:59: + fa:f3:22:4c:95:a0:90:bc:48:4e:11:ab:fb:b7:b5: + 8d:7a:83:28:8c:26:46:d8:4e:95:40:87:61:9f:c5: + 9e:6d:81:87:57:6c:8a:3b:b4:66:ea:cc:40:fc:e3: + aa:6c:b2:cb:01:db:32:bf:d2:eb:85:cf:a1:0d:55: + c3:5b:38:57:70:b8:75:c6:79:d1:14:30:ed:1b:58: + 5b:6b:ef:35:f2:a1:21:4e:c5:ce:7c:99:5f:6c:b9: + b8:22:93:50:a7:cd:4c:70:6a:be:6a:05:7f:13:9c: + 2b:1e:ea:fe:47:ce:04:a5:6f:ac:93:2e:7c:2b:9f: + 9e:79:13:91:e8:ea:9e:ca:38:75:8e:62:b0:95:93: + 2a:e5:df:e9:5e:97:6e:20:5f:5f:84:7a:44:39:19: + 40:1c:ba:55:2b:fb:30:b2:81:ef:84:e3:dc:ec:98: + 38:39:03:85:08:a9:54:03:05:29:f0:c9:8f:8b:ea: + 0b:86:65:19:11:d3:e9:09:23:de:68:93:03:c9:36: + 1c:21:6e:ce:8c:66:f1:99:30:d8:d7:b3:c3:1d:f8: + 81:2e:a8:bd:82:0b:66:fe:82:cb:e1:e0:1a:82:c3: + 40:81 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + BD:88:87:C9:8F:F6:A4:0A:0B:AA:EB:C5:FE:91:23:9D:AB:4A:8A:32 + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 1d:7c:fa:49:8f:34:e9:b7:26:92:16:9a:05:74:e7:4b:d0:6d: + 39:6c:c3:26:f6:ce:b8:31:bc:c4:df:bc:2a:f8:37:91:18:dc: + 04:c8:64:99:2b:18:6d:80:03:59:c9:ae:f8:58:d0:3e:ed:c3: + 23:9f:69:3c:86:38:1c:9e:ef:da:27:78:d1:84:37:71:8a:3c: + 4b:39:cf:7e:45:06:d6:2d:d8:8a:4d:78:12:d6:ad:c2:d3:cb: + d2:d0:41:f3:26:36:4a:9b:95:6c:0c:ee:e5:d1:43:27:66:c1: + 88:f7:7a:b3:20:6c:ea:b0:69:2b:c7:20:e8:0c:03:c4:41:05: + 99:e2:3f:e4:6b:f8:a0:86:81:c7:84:c6:1f:d5:4b:81:12:b2: + 16:21:2c:13:a1:80:b2:5e:0c:4a:13:9e:20:d8:62:40:ab:90: + ea:64:4a:2f:ac:0d:01:12:79:45:a8:2f:87:19:68:c8:e2:85: + c7:30:b2:75:f9:38:3f:b2:c0:93:b4:6b:e2:03:44:ce:67:a0: + df:89:d6:ad:8c:76:a3:13:c3:94:61:2b:6b:d9:6c:c1:07:0a: + 22:07:85:6c:85:24:46:a9:be:3f:8b:78:84:82:7e:24:0c:9d: + fd:81:37:e3:25:a8:ed:36:4e:95:2c:c9:9c:90:da:ec:a9:42: + 3c:ad:b6:02 +SHA1 Fingerprint=1B:4B:39:61:26:27:6B:64:91:A2:68:6D:D7:02:43:21:2D:1F:1D:96 diff --git a/system/etc/security/cacerts/455f1b52.0 b/system/etc/security/cacerts/455f1b52.0 new file mode 100644 index 0000000000000000000000000000000000000000..f1d0471c26b619fbee1e8565c6a3044a6d7fa6b7 --- /dev/null +++ b/system/etc/security/cacerts/455f1b52.0 @@ -0,0 +1,82 @@ +-----BEGIN CERTIFICATE----- +MIIEPjCCAyagAwIBAgIESlOMKDANBgkqhkiG9w0BAQsFADCBvjELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50 +cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3Qs +IEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVz +dCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIwHhcNMDkwNzA3MTcy +NTU0WhcNMzAxMjA3MTc1NTU0WjCBvjELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUVu +dHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwt +dGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0 +aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK +AoIBAQC6hLZy254Ma+KZ6TABp3bqMriVQRrJ2mFOWHLP/vaCeb9zYQYKpSfYs1/T +RU4cctZOMvJyig/3gxnQaoCAAEUesMfnmr8SVycco2gvCoe9amsOXmXzHHfV1IWN +cCG0szLni6LVhjkCsbjSR87kyUnEO6fe+1R9V77w6G7CebI6C1XiUJgWMhNcL3hW +wcKUs/Ja5CeanyTXxuzQmyWC48zCxEXFjJd6BmsqEZ+pCm5IO2/b1BEZQvePB7/1 +U1+cPvQXLOZprE4yTGJ36rfo5bs0vBmLrpxR57d+tVOxMyLlbc9wPBr64ptntoP0 +jaWvYkxN4FisZDQSA/i2jZRjJKRxAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAP +BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqciZ60B7vfec7aVHUbI2fkBJmqzAN +BgkqhkiG9w0BAQsFAAOCAQEAeZ8dlsa2eT8ijYfThwMEYGprmi5ZiXMRrEPR9RP/ +jTkrwPK9T3CMqS/qF8QLVJ7UG5aYMzyorWKiAHarWWluBh1+xLlEjZivEtRh2woZ +Rkfz6/djwUAFQKXSt/S1mja/qYh2iARVBCuch38aNzx+LaUa2NSJXsq9rD1s2G2v +1fN2D807iDginWyTmsQ9v4IbZT+mD12q/OWyFcq1rca8PdCE6OoGcrBNOTJ4vz4R +nAuknZoh8/CbCzB428Hch0P+vGOaysXCHMnHjf87ElgI5rY97HosTvuDls4MPGmH +VHOkc8KT/1EQrBVUAdj8BbGJoX90g5pJ19xOe4pIb4tF9g== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 1246989352 (0x4a538c28) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=US, O=Entrust, Inc., OU=See www.entrust.net/legal-terms, OU=(c) 2009 Entrust, Inc. - for authorized use only, CN=Entrust Root Certification Authority - G2 + Validity + Not Before: Jul 7 17:25:54 2009 GMT + Not After : Dec 7 17:55:54 2030 GMT + Subject: C=US, O=Entrust, Inc., OU=See www.entrust.net/legal-terms, OU=(c) 2009 Entrust, Inc. - for authorized use only, CN=Entrust Root Certification Authority - G2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:ba:84:b6:72:db:9e:0c:6b:e2:99:e9:30:01:a7: + 76:ea:32:b8:95:41:1a:c9:da:61:4e:58:72:cf:fe: + f6:82:79:bf:73:61:06:0a:a5:27:d8:b3:5f:d3:45: + 4e:1c:72:d6:4e:32:f2:72:8a:0f:f7:83:19:d0:6a: + 80:80:00:45:1e:b0:c7:e7:9a:bf:12:57:27:1c:a3: + 68:2f:0a:87:bd:6a:6b:0e:5e:65:f3:1c:77:d5:d4: + 85:8d:70:21:b4:b3:32:e7:8b:a2:d5:86:39:02:b1: + b8:d2:47:ce:e4:c9:49:c4:3b:a7:de:fb:54:7d:57: + be:f0:e8:6e:c2:79:b2:3a:0b:55:e2:50:98:16:32: + 13:5c:2f:78:56:c1:c2:94:b3:f2:5a:e4:27:9a:9f: + 24:d7:c6:ec:d0:9b:25:82:e3:cc:c2:c4:45:c5:8c: + 97:7a:06:6b:2a:11:9f:a9:0a:6e:48:3b:6f:db:d4: + 11:19:42:f7:8f:07:bf:f5:53:5f:9c:3e:f4:17:2c: + e6:69:ac:4e:32:4c:62:77:ea:b7:e8:e5:bb:34:bc: + 19:8b:ae:9c:51:e7:b7:7e:b5:53:b1:33:22:e5:6d: + cf:70:3c:1a:fa:e2:9b:67:b6:83:f4:8d:a5:af:62: + 4c:4d:e0:58:ac:64:34:12:03:f8:b6:8d:94:63:24: + a4:71 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 6A:72:26:7A:D0:1E:EF:7D:E7:3B:69:51:D4:6C:8D:9F:90:12:66:AB + Signature Algorithm: sha256WithRSAEncryption + 79:9f:1d:96:c6:b6:79:3f:22:8d:87:d3:87:03:04:60:6a:6b: + 9a:2e:59:89:73:11:ac:43:d1:f5:13:ff:8d:39:2b:c0:f2:bd: + 4f:70:8c:a9:2f:ea:17:c4:0b:54:9e:d4:1b:96:98:33:3c:a8: + ad:62:a2:00:76:ab:59:69:6e:06:1d:7e:c4:b9:44:8d:98:af: + 12:d4:61:db:0a:19:46:47:f3:eb:f7:63:c1:40:05:40:a5:d2: + b7:f4:b5:9a:36:bf:a9:88:76:88:04:55:04:2b:9c:87:7f:1a: + 37:3c:7e:2d:a5:1a:d8:d4:89:5e:ca:bd:ac:3d:6c:d8:6d:af: + d5:f3:76:0f:cd:3b:88:38:22:9d:6c:93:9a:c4:3d:bf:82:1b: + 65:3f:a6:0f:5d:aa:fc:e5:b2:15:ca:b5:ad:c6:bc:3d:d0:84: + e8:ea:06:72:b0:4d:39:32:78:bf:3e:11:9c:0b:a4:9d:9a:21: + f3:f0:9b:0b:30:78:db:c1:dc:87:43:fe:bc:63:9a:ca:c5:c2: + 1c:c9:c7:8d:ff:3b:12:58:08:e6:b6:3d:ec:7a:2c:4e:fb:83: + 96:ce:0c:3c:69:87:54:73:a4:73:c2:93:ff:51:10:ac:15:54: + 01:d8:fc:05:b1:89:a1:7f:74:83:9a:49:d7:dc:4e:7b:8a:48: + 6f:8b:45:f6 +SHA1 Fingerprint=8C:F4:27:FD:79:0C:3A:D1:66:06:8D:E8:1E:57:EF:BB:93:22:72:D4 diff --git a/system/etc/security/cacerts/48a195d8.0 b/system/etc/security/cacerts/48a195d8.0 new file mode 100644 index 0000000000000000000000000000000000000000..46530f10db718c5ea57c726c397eb92c85bc84b2 --- /dev/null +++ b/system/etc/security/cacerts/48a195d8.0 @@ -0,0 +1,125 @@ +-----BEGIN CERTIFICATE----- +MIIF8TCCA9mgAwIBAgIQALC3WhZIX7/hy/WL1xnmfTANBgkqhkiG9w0BAQsFADA4 +MQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6 +ZW5wZS5jb20wHhcNMDcxMjEzMTMwODI4WhcNMzcxMjEzMDgyNzI1WjA4MQswCQYD +VQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6ZW5wZS5j +b20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDJ03rKDx6sp4boFmVq +scIbRTJxldn+EFvMr+eleQGPicPK8lVx93e+d5TzcqQsRNiekpsUOqHnJJAKClaO +xdgmlOHZSOEtPtoKct2jmRXagaKH9HtuJneJWK3W6wyyQXpzbm3benhB6QiIEn6H +LmYRY2xU+zydcsC8Lv/Ct90NduM61/e0aL6i9eOBbsFGb12N4E3GVFWJGjMxCrFX +uaOKmMPsOzTFlUFpfnXCPCDFYbpRR6AgkJOhkEvzTnyFRVSa0QUmQbC1TR0zvsQD +yCV8wXDbO/QJLVQnSKwv4cSsPsjLkkxTOTcj7NMB+eAJRE1NZMDhDVqHIrytG6P+ +JrUV86f8hBnp7KGItERphIPzidF0BqnMC9bC3ieFUCbKF7jJeodWLBoBHmy+E60Q +rLUk9TiRodZL2vG70t5HtfG8gfZZa88ZU+mNFctKy6lvROUbQc/hhqfK0GqfvEyN +BjNaooXlkDWgYlwWTvDjovoDGrQscbNYLN57C9saD+veIR8GdwYDsMnvmfzAuU8L +hij+0rnq49qlw0dpEuDb8PYZi+17cNcC1u2HGCgsBCRMd+RIihrGO5rUD8r6ddIB +QFqNeb+Lz0vPqhbBleStTIo+F5HUsWLlguWABKQDfo2/2n+iD5dPDNMN+9fR5XJ+ +HMh3/1uaD7euBUbl8agW7EekFwIDAQABo4H2MIHzMIGwBgNVHREEgagwgaWBD2lu +Zm9AaXplbnBlLmNvbaSBkTCBjjFHMEUGA1UECgw+SVpFTlBFIFMuQS4gLSBDSUYg +QTAxMzM3MjYwLVJNZXJjLlZpdG9yaWEtR2FzdGVpeiBUMTA1NSBGNjIgUzgxQzBB +BgNVBAkMOkF2ZGEgZGVsIE1lZGl0ZXJyYW5lbyBFdG9yYmlkZWEgMTQgLSAwMTAx +MCBWaXRvcmlhLUdhc3RlaXowDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AQYwHQYDVR0OBBYEFB0cZQ6o8iV7tJHP5LGx5r1VdGwFMA0GCSqGSIb3DQEBCwUA +A4ICAQB4pgwWSp9MiDrAyw6lFn2fuUhfGI8NYjb2zRlrrKvV9pF9rnHzP7MOeIWb +laQnIUdCSnxIOvVFfLMMjlF4rJUT3sb9fbgakEyrkgPH7UIBzg/YsfqikuFgba56 +awmqxinuaElnMIAkejEWOVt+8Rwu3WwJrfIxwYJOubv5vr8qhT/AQKM6WfxZSzwo +JNu0FXWuDYi6LnPAvViH5ULy617uHjAimcs30cQhbIHsvm0m5hzkQiCeR7Csg1lw +LDXWrzY0tM07+DKo7+N4ifuNRSzanLh+QBxh5z6ikixL8s36mLYp//Pye6kfLqCT +VyvehQP5aTfLnnhqBbTFMXiJ7HqnheG5ezzevh55hM6fcA5ZwjUukCox2eRFekGk +LhObNA5me0mrZJfQRsN5nXJQY6aYWwa9SG3YOYNw6DXwBdGqvOPbyALqfP2C2sJb +UjWumDqtujWTI6cfSN01RpiyEGjkpTHCClguGYEQyVB1/OpaFs4R1+7vUIgtYf8/ +QnMFlEPVjjxOAToZpR9GTnfQXeWBIiGH/pR9hNiTrdZoQ0iy2+tzJOeRf1SktoA+ +naM8THLCV8Sg1Mw4J87VBp6iSNnpn86CcDaTmjvfliHjWbcM2pE38P1ZWrOZyGls +QyYBNWNgVYkDOnXYukrZVP/u3oDYLdE41V4tC5h9Pmzb/CaIxw== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + b0:b7:5a:16:48:5f:bf:e1:cb:f5:8b:d7:19:e6:7d + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=ES, O=IZENPE S.A., CN=Izenpe.com + Validity + Not Before: Dec 13 13:08:28 2007 GMT + Not After : Dec 13 08:27:25 2037 GMT + Subject: C=ES, O=IZENPE S.A., CN=Izenpe.com + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:c9:d3:7a:ca:0f:1e:ac:a7:86:e8:16:65:6a:b1: + c2:1b:45:32:71:95:d9:fe:10:5b:cc:af:e7:a5:79: + 01:8f:89:c3:ca:f2:55:71:f7:77:be:77:94:f3:72: + a4:2c:44:d8:9e:92:9b:14:3a:a1:e7:24:90:0a:0a: + 56:8e:c5:d8:26:94:e1:d9:48:e1:2d:3e:da:0a:72: + dd:a3:99:15:da:81:a2:87:f4:7b:6e:26:77:89:58: + ad:d6:eb:0c:b2:41:7a:73:6e:6d:db:7a:78:41:e9: + 08:88:12:7e:87:2e:66:11:63:6c:54:fb:3c:9d:72: + c0:bc:2e:ff:c2:b7:dd:0d:76:e3:3a:d7:f7:b4:68: + be:a2:f5:e3:81:6e:c1:46:6f:5d:8d:e0:4d:c6:54: + 55:89:1a:33:31:0a:b1:57:b9:a3:8a:98:c3:ec:3b: + 34:c5:95:41:69:7e:75:c2:3c:20:c5:61:ba:51:47: + a0:20:90:93:a1:90:4b:f3:4e:7c:85:45:54:9a:d1: + 05:26:41:b0:b5:4d:1d:33:be:c4:03:c8:25:7c:c1: + 70:db:3b:f4:09:2d:54:27:48:ac:2f:e1:c4:ac:3e: + c8:cb:92:4c:53:39:37:23:ec:d3:01:f9:e0:09:44: + 4d:4d:64:c0:e1:0d:5a:87:22:bc:ad:1b:a3:fe:26: + b5:15:f3:a7:fc:84:19:e9:ec:a1:88:b4:44:69:84: + 83:f3:89:d1:74:06:a9:cc:0b:d6:c2:de:27:85:50: + 26:ca:17:b8:c9:7a:87:56:2c:1a:01:1e:6c:be:13: + ad:10:ac:b5:24:f5:38:91:a1:d6:4b:da:f1:bb:d2: + de:47:b5:f1:bc:81:f6:59:6b:cf:19:53:e9:8d:15: + cb:4a:cb:a9:6f:44:e5:1b:41:cf:e1:86:a7:ca:d0: + 6a:9f:bc:4c:8d:06:33:5a:a2:85:e5:90:35:a0:62: + 5c:16:4e:f0:e3:a2:fa:03:1a:b4:2c:71:b3:58:2c: + de:7b:0b:db:1a:0f:eb:de:21:1f:06:77:06:03:b0: + c9:ef:99:fc:c0:b9:4f:0b:86:28:fe:d2:b9:ea:e3: + da:a5:c3:47:69:12:e0:db:f0:f6:19:8b:ed:7b:70: + d7:02:d6:ed:87:18:28:2c:04:24:4c:77:e4:48:8a: + 1a:c6:3b:9a:d4:0f:ca:fa:75:d2:01:40:5a:8d:79: + bf:8b:cf:4b:cf:aa:16:c1:95:e4:ad:4c:8a:3e:17: + 91:d4:b1:62:e5:82:e5:80:04:a4:03:7e:8d:bf:da: + 7f:a2:0f:97:4f:0c:d3:0d:fb:d7:d1:e5:72:7e:1c: + c8:77:ff:5b:9a:0f:b7:ae:05:46:e5:f1:a8:16:ec: + 47:a4:17 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Alternative Name: + email:info@izenpe.com, DirName:/O=IZENPE S.A. - CIF A01337260-RMerc.Vitoria-Gasteiz T1055 F62 S8/street=Avda del Mediterraneo Etorbidea 14 - 01010 Vitoria-Gasteiz + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + 1D:1C:65:0E:A8:F2:25:7B:B4:91:CF:E4:B1:B1:E6:BD:55:74:6C:05 + Signature Algorithm: sha256WithRSAEncryption + 78:a6:0c:16:4a:9f:4c:88:3a:c0:cb:0e:a5:16:7d:9f:b9:48: + 5f:18:8f:0d:62:36:f6:cd:19:6b:ac:ab:d5:f6:91:7d:ae:71: + f3:3f:b3:0e:78:85:9b:95:a4:27:21:47:42:4a:7c:48:3a:f5: + 45:7c:b3:0c:8e:51:78:ac:95:13:de:c6:fd:7d:b8:1a:90:4c: + ab:92:03:c7:ed:42:01:ce:0f:d8:b1:fa:a2:92:e1:60:6d:ae: + 7a:6b:09:aa:c6:29:ee:68:49:67:30:80:24:7a:31:16:39:5b: + 7e:f1:1c:2e:dd:6c:09:ad:f2:31:c1:82:4e:b9:bb:f9:be:bf: + 2a:85:3f:c0:40:a3:3a:59:fc:59:4b:3c:28:24:db:b4:15:75: + ae:0d:88:ba:2e:73:c0:bd:58:87:e5:42:f2:eb:5e:ee:1e:30: + 22:99:cb:37:d1:c4:21:6c:81:ec:be:6d:26:e6:1c:e4:42:20: + 9e:47:b0:ac:83:59:70:2c:35:d6:af:36:34:b4:cd:3b:f8:32: + a8:ef:e3:78:89:fb:8d:45:2c:da:9c:b8:7e:40:1c:61:e7:3e: + a2:92:2c:4b:f2:cd:fa:98:b6:29:ff:f3:f2:7b:a9:1f:2e:a0: + 93:57:2b:de:85:03:f9:69:37:cb:9e:78:6a:05:b4:c5:31:78: + 89:ec:7a:a7:85:e1:b9:7b:3c:de:be:1e:79:84:ce:9f:70:0e: + 59:c2:35:2e:90:2a:31:d9:e4:45:7a:41:a4:2e:13:9b:34:0e: + 66:7b:49:ab:64:97:d0:46:c3:79:9d:72:50:63:a6:98:5b:06: + bd:48:6d:d8:39:83:70:e8:35:f0:05:d1:aa:bc:e3:db:c8:02: + ea:7c:fd:82:da:c2:5b:52:35:ae:98:3a:ad:ba:35:93:23:a7: + 1f:48:dd:35:46:98:b2:10:68:e4:a5:31:c2:0a:58:2e:19:81: + 10:c9:50:75:fc:ea:5a:16:ce:11:d7:ee:ef:50:88:2d:61:ff: + 3f:42:73:05:94:43:d5:8e:3c:4e:01:3a:19:a5:1f:46:4e:77: + d0:5d:e5:81:22:21:87:fe:94:7d:84:d8:93:ad:d6:68:43:48: + b2:db:eb:73:24:e7:91:7f:54:a4:b6:80:3e:9d:a3:3c:4c:72: + c2:57:c4:a0:d4:cc:38:27:ce:d5:06:9e:a2:48:d9:e9:9f:ce: + 82:70:36:93:9a:3b:df:96:21:e3:59:b7:0c:da:91:37:f0:fd: + 59:5a:b3:99:c8:69:6c:43:26:01:35:63:60:55:89:03:3a:75: + d8:ba:4a:d9:54:ff:ee:de:80:d8:2d:d1:38:d5:5e:2d:0b:98: + 7d:3e:6c:db:fc:26:88:c7 +SHA1 Fingerprint=2F:78:3D:25:52:18:A7:4A:65:39:71:B5:2C:A2:9C:45:15:6F:E9:19 diff --git a/system/etc/security/cacerts/4be590e0.0 b/system/etc/security/cacerts/4be590e0.0 new file mode 100644 index 0000000000000000000000000000000000000000..788aff7d9a4530657045e954b81bc5706517a4fd --- /dev/null +++ b/system/etc/security/cacerts/4be590e0.0 @@ -0,0 +1,120 @@ +-----BEGIN CERTIFICATE----- +MIIFZjCCA06gAwIBAgIQCgFCgAAAAUUjz0Z8AAAAAjANBgkqhkiG9w0BAQsFADBN +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVu +VHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwHhcNMTQwMTE2MTc1MzMyWhcN +MzQwMTE2MTc1MzMyWjBNMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0 +MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2IpT8pEiv6EdrCvsnduTyP4o7 +ekosMSqMjbCpwzFrqHd2hCa2rIFCDQjrVVi7evi8ZX3yoG2LqEfpYnYeEe4IFNGy +RBb06tD6Hi9e28tzQa68ALBKK0CyrOE7S8ItneShm+waOh7wCLPQ5CQ1B5+ctMlS +bdsHyo+1W/CD80/HLaXIrcuVIKQxKFdYWuSNG5qrng0M8gozOSI5Cpcu81N3uURF +/YTLNiCBWS2ab21ISGHKTN9T0a9SvESfqy9rg3LvdYDaBjMbXcjaY8ZNzaxmMc3R +3j6HEDbhuaR672BQssvKplbgN6+rNBM5Jeg5ZuSYeqoSmJxZZoY+rfGwyj4GD3vw +EUs3oERte8uojHH01bWRNszwFcYr3lEXsZdMUD2xlVl8BX0tIdUAvwFnol57plzy +9yLxkA2T26pEUWbMfXYD62qoKjgZl3YNa4ph+bz27nb9cCvdKTz4Ch5bQhyLVi9V +GxyhLrXHFub4qjySjmm2AcG1hp2JDws4lFTo6tyePSW8Uybt1as5qsVATFSrsrTZ +2fjXctscvG29ZV/viDUqZi/u9rNl8DONfJhBaUYPQxxp+pu10GFqzcpL2UyQRqsV +WaFHVCkugyhfHMKiq3IXAAaOReyL4jM9f9oZRORicsPfIsbyVtTdX5Vy7W1f90gD +W/3FKqD2cyOEEBsB5wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQU43HgntinQtnbcZFrlJPrw6PRFKMwDQYJKoZIhvcN +AQELBQADggIBAEf63QqwEZE4rU1d9+UOl1QZgkiHVIyqZJnYWv6IAcVYpZmxI1Qj +t2odIFflAWJBF9MJ23XLblSQdf4an4EKwt3X9wnQW3IV5B4Jaj0z8yGa5hV+rVHV +DRDtfULAj+7AmgjVQdZcDiFpboBhDhXAuM/FSRJSzL46zNQuOAXeNf0fb7iAaJg9 +TaDKQGXSc3z1i9kKlT/YPyNtGtEqJBnZhbMX73huqVjRI9PHE+1yJX9dsXNw0H8G +lwmEKYBhHfpe/3OsoOOJuBxxFcbeMX8S3OFtm6/n6J91eEyrRjuazr8FGF1NFTwW +mhlQBJqymm9li1JfPFgEKCXAZmExfrngdbkaqIHWchezxQMxNRF4eKLg6TCMf4Df +WN88uieW4oA0beOY02QnrEh+KHdcxiVhJfiFDGX6xDIvpZgF5PgLZxYWxoK4Mhn5 ++bl53B/N66+rDt0b20XkeucC4pVd/GnwU2lhlXV5C15V5jgclKlZM57IcXR5f1GJ +tshquDDIajjDbp7hNxbqBWJMWxJH7ae0s1hWx0nzfxJoCTFx8G34Tkf71oXuxVhA +GaQdp/lLQzfcaFpPz+vCZHTetBXZ9FRUGi8c15dxVJCO2SCdUyt/q4/i6jC8UDfv +8Ue1fXwsBOxonbRJRBD0ckscZOf85muQ3Wl9af0AVqW3rLatt8o+Ae+c +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 0a:01:42:80:00:00:01:45:23:cf:46:7c:00:00:00:02 + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=US, O=IdenTrust, CN=IdenTrust Public Sector Root CA 1 + Validity + Not Before: Jan 16 17:53:32 2014 GMT + Not After : Jan 16 17:53:32 2034 GMT + Subject: C=US, O=IdenTrust, CN=IdenTrust Public Sector Root CA 1 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:b6:22:94:fc:a4:48:af:e8:47:6b:0a:fb:27:76: + e4:f2:3f:8a:3b:7a:4a:2c:31:2a:8c:8d:b0:a9:c3: + 31:6b:a8:77:76:84:26:b6:ac:81:42:0d:08:eb:55: + 58:bb:7a:f8:bc:65:7d:f2:a0:6d:8b:a8:47:e9:62: + 76:1e:11:ee:08:14:d1:b2:44:16:f4:ea:d0:fa:1e: + 2f:5e:db:cb:73:41:ae:bc:00:b0:4a:2b:40:b2:ac: + e1:3b:4b:c2:2d:9d:e4:a1:9b:ec:1a:3a:1e:f0:08: + b3:d0:e4:24:35:07:9f:9c:b4:c9:52:6d:db:07:ca: + 8f:b5:5b:f0:83:f3:4f:c7:2d:a5:c8:ad:cb:95:20: + a4:31:28:57:58:5a:e4:8d:1b:9a:ab:9e:0d:0c:f2: + 0a:33:39:22:39:0a:97:2e:f3:53:77:b9:44:45:fd: + 84:cb:36:20:81:59:2d:9a:6f:6d:48:48:61:ca:4c: + df:53:d1:af:52:bc:44:9f:ab:2f:6b:83:72:ef:75: + 80:da:06:33:1b:5d:c8:da:63:c6:4d:cd:ac:66:31: + cd:d1:de:3e:87:10:36:e1:b9:a4:7a:ef:60:50:b2: + cb:ca:a6:56:e0:37:af:ab:34:13:39:25:e8:39:66: + e4:98:7a:aa:12:98:9c:59:66:86:3e:ad:f1:b0:ca: + 3e:06:0f:7b:f0:11:4b:37:a0:44:6d:7b:cb:a8:8c: + 71:f4:d5:b5:91:36:cc:f0:15:c6:2b:de:51:17:b1: + 97:4c:50:3d:b1:95:59:7c:05:7d:2d:21:d5:00:bf: + 01:67:a2:5e:7b:a6:5c:f2:f7:22:f1:90:0d:93:db: + aa:44:51:66:cc:7d:76:03:eb:6a:a8:2a:38:19:97: + 76:0d:6b:8a:61:f9:bc:f6:ee:76:fd:70:2b:dd:29: + 3c:f8:0a:1e:5b:42:1c:8b:56:2f:55:1b:1c:a1:2e: + b5:c7:16:e6:f8:aa:3c:92:8e:69:b6:01:c1:b5:86: + 9d:89:0f:0b:38:94:54:e8:ea:dc:9e:3d:25:bc:53: + 26:ed:d5:ab:39:aa:c5:40:4c:54:ab:b2:b4:d9:d9: + f8:d7:72:db:1c:bc:6d:bd:65:5f:ef:88:35:2a:66: + 2f:ee:f6:b3:65:f0:33:8d:7c:98:41:69:46:0f:43: + 1c:69:fa:9b:b5:d0:61:6a:cd:ca:4b:d9:4c:90:46: + ab:15:59:a1:47:54:29:2e:83:28:5f:1c:c2:a2:ab: + 72:17:00:06:8e:45:ec:8b:e2:33:3d:7f:da:19:44: + e4:62:72:c3:df:22:c6:f2:56:d4:dd:5f:95:72:ed: + 6d:5f:f7:48:03:5b:fd:c5:2a:a0:f6:73:23:84:10: + 1b:01:e7 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + E3:71:E0:9E:D8:A7:42:D9:DB:71:91:6B:94:93:EB:C3:A3:D1:14:A3 + Signature Algorithm: sha256WithRSAEncryption + 47:fa:dd:0a:b0:11:91:38:ad:4d:5d:f7:e5:0e:97:54:19:82: + 48:87:54:8c:aa:64:99:d8:5a:fe:88:01:c5:58:a5:99:b1:23: + 54:23:b7:6a:1d:20:57:e5:01:62:41:17:d3:09:db:75:cb:6e: + 54:90:75:fe:1a:9f:81:0a:c2:dd:d7:f7:09:d0:5b:72:15:e4: + 1e:09:6a:3d:33:f3:21:9a:e6:15:7e:ad:51:d5:0d:10:ed:7d: + 42:c0:8f:ee:c0:9a:08:d5:41:d6:5c:0e:21:69:6e:80:61:0e: + 15:c0:b8:cf:c5:49:12:52:cc:be:3a:cc:d4:2e:38:05:de:35: + fd:1f:6f:b8:80:68:98:3d:4d:a0:ca:40:65:d2:73:7c:f5:8b: + d9:0a:95:3f:d8:3f:23:6d:1a:d1:2a:24:19:d9:85:b3:17:ef: + 78:6e:a9:58:d1:23:d3:c7:13:ed:72:25:7f:5d:b1:73:70:d0: + 7f:06:97:09:84:29:80:61:1d:fa:5e:ff:73:ac:a0:e3:89:b8: + 1c:71:15:c6:de:31:7f:12:dc:e1:6d:9b:af:e7:e8:9f:75:78: + 4c:ab:46:3b:9a:ce:bf:05:18:5d:4d:15:3c:16:9a:19:50:04: + 9a:b2:9a:6f:65:8b:52:5f:3c:58:04:28:25:c0:66:61:31:7e: + b9:e0:75:b9:1a:a8:81:d6:72:17:b3:c5:03:31:35:11:78:78: + a2:e0:e9:30:8c:7f:80:df:58:df:3c:ba:27:96:e2:80:34:6d: + e3:98:d3:64:27:ac:48:7e:28:77:5c:c6:25:61:25:f8:85:0c: + 65:fa:c4:32:2f:a5:98:05:e4:f8:0b:67:16:16:c6:82:b8:32: + 19:f9:f9:b9:79:dc:1f:cd:eb:af:ab:0e:dd:1b:db:45:e4:7a: + e7:02:e2:95:5d:fc:69:f0:53:69:61:95:75:79:0b:5e:55:e6: + 38:1c:94:a9:59:33:9e:c8:71:74:79:7f:51:89:b6:c8:6a:b8: + 30:c8:6a:38:c3:6e:9e:e1:37:16:ea:05:62:4c:5b:12:47:ed: + a7:b4:b3:58:56:c7:49:f3:7f:12:68:09:31:71:f0:6d:f8:4e: + 47:fb:d6:85:ee:c5:58:40:19:a4:1d:a7:f9:4b:43:37:dc:68: + 5a:4f:cf:eb:c2:64:74:de:b4:15:d9:f4:54:54:1a:2f:1c:d7: + 97:71:54:90:8e:d9:20:9d:53:2b:7f:ab:8f:e2:ea:30:bc:50: + 37:ef:f1:47:b5:7d:7c:2c:04:ec:68:9d:b4:49:44:10:f4:72: + 4b:1c:64:e7:fc:e6:6b:90:dd:69:7d:69:fd:00:56:a5:b7:ac: + b6:ad:b7:ca:3e:01:ef:9c +SHA1 Fingerprint=BA:29:41:60:77:98:3F:F4:F3:EF:F2:31:05:3B:2E:EA:6D:4D:45:FD diff --git a/system/etc/security/cacerts/4e18c148.0 b/system/etc/security/cacerts/4e18c148.0 new file mode 100644 index 0000000000000000000000000000000000000000..23828ec87d1fb9854ea97bd506f1f13dc7c2864c --- /dev/null +++ b/system/etc/security/cacerts/4e18c148.0 @@ -0,0 +1,79 @@ +-----BEGIN CERTIFICATE----- +MIIDnzCCAoegAwIBAgIBJjANBgkqhkiG9w0BAQUFADBxMQswCQYDVQQGEwJERTEc +MBoGA1UEChMTRGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0GA1UECxMWVC1UZWxlU2Vj +IFRydXN0IENlbnRlcjEjMCEGA1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBSb290IENB +IDIwHhcNOTkwNzA5MTIxMTAwWhcNMTkwNzA5MjM1OTAwWjBxMQswCQYDVQQGEwJE +RTEcMBoGA1UEChMTRGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0GA1UECxMWVC1UZWxl +U2VjIFRydXN0IENlbnRlcjEjMCEGA1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBSb290 +IENBIDIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCrC6M14IspFLEU +ha88EOQ5bzVdSq7d6mGNlUn0b2SjGmBmpKlAIoTZ1KXleJMOaAGtuU1cOs7TuKhC +QN/Po7qCWWqSG6wcmtoIKyUn+WkjR/Hg6yx6m/UTAtB+NHzCnjwAWav12gz1Mjwr +rFDa1sPeg5TKqAyZMg4ISFZbavva4VhYAUlfckE8FQYBjl2tqriTtM2e66foai1S +NNs671x1Udrb8zH57nGYMsRUFUQM+ZtV7a3fGAigo4aKSe5TBY8ZTNXeWHmb0moc +QqvF1afPaA+W5OFhmHZhyJF81j4A4pFQh+GdCuatl9Idxjp9y7zaAzTVjlsB9WoH +txa2bkp/AgMBAAGjQjBAMB0GA1UdDgQWBBQxw3kbuvVT1xfgiXotF2wKsyudMzAP +BgNVHRMECDAGAQH/AgEFMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOC +AQEAlGRZrTlk5ynrE/5aw4sTV8gEJPB0d8Bg42f76Ymmg7+Wgnxu1MM9756Abrsp +tJh6sTtU6zkXR34ajgv8HzFZMQSyzhfzLMdiNlXiItiJVbSYSKpk+tYcNthEeFpa +IzpXl/V6ME+un2pMSyuOoAPjPuCp1NJ70rOo4nI8rZ7/gFnkm0W09juwzTkZmDLl +6iFhkOQxIY40sfcvNUqFENrnijchvllj4PKFiDFT1FQUhXB59C4Gdyd1Lx+4ivn+ +xbrYNuSD7Odlt79jWvNGr4GUN9RBjNYj1h7P9WgbRGOiWrqnNVmh5XAFmw4jV5mU +Cm26OWMohpLzGITY+9HPBVZkVw== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 38 (0x26) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, O=Deutsche Telekom AG, OU=T-TeleSec Trust Center, CN=Deutsche Telekom Root CA 2 + Validity + Not Before: Jul 9 12:11:00 1999 GMT + Not After : Jul 9 23:59:00 2019 GMT + Subject: C=DE, O=Deutsche Telekom AG, OU=T-TeleSec Trust Center, CN=Deutsche Telekom Root CA 2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:ab:0b:a3:35:e0:8b:29:14:b1:14:85:af:3c:10: + e4:39:6f:35:5d:4a:ae:dd:ea:61:8d:95:49:f4:6f: + 64:a3:1a:60:66:a4:a9:40:22:84:d9:d4:a5:e5:78: + 93:0e:68:01:ad:b9:4d:5c:3a:ce:d3:b8:a8:42:40: + df:cf:a3:ba:82:59:6a:92:1b:ac:1c:9a:da:08:2b: + 25:27:f9:69:23:47:f1:e0:eb:2c:7a:9b:f5:13:02: + d0:7e:34:7c:c2:9e:3c:00:59:ab:f5:da:0c:f5:32: + 3c:2b:ac:50:da:d6:c3:de:83:94:ca:a8:0c:99:32: + 0e:08:48:56:5b:6a:fb:da:e1:58:58:01:49:5f:72: + 41:3c:15:06:01:8e:5d:ad:aa:b8:93:b4:cd:9e:eb: + a7:e8:6a:2d:52:34:db:3a:ef:5c:75:51:da:db:f3: + 31:f9:ee:71:98:32:c4:54:15:44:0c:f9:9b:55:ed: + ad:df:18:08:a0:a3:86:8a:49:ee:53:05:8f:19:4c: + d5:de:58:79:9b:d2:6a:1c:42:ab:c5:d5:a7:cf:68: + 0f:96:e4:e1:61:98:76:61:c8:91:7c:d6:3e:00:e2: + 91:50:87:e1:9d:0a:e6:ad:97:d2:1d:c6:3a:7d:cb: + bc:da:03:34:d5:8e:5b:01:f5:6a:07:b7:16:b6:6e: + 4a:7f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 31:C3:79:1B:BA:F5:53:D7:17:E0:89:7A:2D:17:6C:0A:B3:2B:9D:33 + X509v3 Basic Constraints: + CA:TRUE, pathlen:5 + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + Signature Algorithm: sha1WithRSAEncryption + 94:64:59:ad:39:64:e7:29:eb:13:fe:5a:c3:8b:13:57:c8:04: + 24:f0:74:77:c0:60:e3:67:fb:e9:89:a6:83:bf:96:82:7c:6e: + d4:c3:3d:ef:9e:80:6e:bb:29:b4:98:7a:b1:3b:54:eb:39:17: + 47:7e:1a:8e:0b:fc:1f:31:59:31:04:b2:ce:17:f3:2c:c7:62: + 36:55:e2:22:d8:89:55:b4:98:48:aa:64:fa:d6:1c:36:d8:44: + 78:5a:5a:23:3a:57:97:f5:7a:30:4f:ae:9f:6a:4c:4b:2b:8e: + a0:03:e3:3e:e0:a9:d4:d2:7b:d2:b3:a8:e2:72:3c:ad:9e:ff: + 80:59:e4:9b:45:b4:f6:3b:b0:cd:39:19:98:32:e5:ea:21:61: + 90:e4:31:21:8e:34:b1:f7:2f:35:4a:85:10:da:e7:8a:37:21: + be:59:63:e0:f2:85:88:31:53:d4:54:14:85:70:79:f4:2e:06: + 77:27:75:2f:1f:b8:8a:f9:fe:c5:ba:d8:36:e4:83:ec:e7:65: + b7:bf:63:5a:f3:46:af:81:94:37:d4:41:8c:d6:23:d6:1e:cf: + f5:68:1b:44:63:a2:5a:ba:a7:35:59:a1:e5:70:05:9b:0e:23: + 57:99:94:0a:6d:ba:39:63:28:86:92:f3:18:84:d8:fb:d1:cf: + 05:56:64:57 +SHA1 Fingerprint=85:A4:08:C0:9C:19:3E:5D:51:58:7D:CD:D6:13:30:FD:8C:DE:37:BF diff --git a/system/etc/security/cacerts/5046c355.0 b/system/etc/security/cacerts/5046c355.0 new file mode 100644 index 0000000000000000000000000000000000000000..229de34cad46fcdb555ca9a31e922f3e01de5816 --- /dev/null +++ b/system/etc/security/cacerts/5046c355.0 @@ -0,0 +1,128 @@ +-----BEGIN CERTIFICATE----- +MIIFvTCCA6WgAwIBAgIITxvUL1S7L0swDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UE +BhMCQ0gxFTATBgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWdu +IFNpbHZlciBDQSAtIEcyMB4XDTA2MTAyNTA4MzI0NloXDTM2MTAyNTA4MzI0Nlow +RzELMAkGA1UEBhMCQ0gxFTATBgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMY +U3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMIICIjANBgkqhkiG9w0BAQEFAAOCAg8A +MIICCgKCAgEAxPGHf9N4Mfc4yfjDmUO8x/e8N+dOcbpLj6VzHVxumK4DV644N0Mv +Fz0fyM5oEMF4rhkDKxD6LHmD9ui5aLlV8gREpzn5/ASLHvGiTSf5YXu6t+WiE7br +YT7QbNHm+/pe7R20nqA1W6GSy/BJkv6FCgU+5tkL4k+73JU3/JHpMjUi0R86TieF +nbAVlDLaYQ1HTWBCrpJH6INaUFjpiou5XaHc3ZlKHzZnu0jkg7Y360g6rw9njxcH +6ATK72oxh9TAtvmUcXtnZLi2kUpCe2UuMGoM9ZDulebyzYLs2aFK7PayS+VFheZt +eJMELpyCbTapxDFkH4aDCyr0NQp4yVXPQbBH6TCfmb5hqAaEuSh6XzjZG6k4sIN/ +c8HDO0gqgg8hm7jMqDXDhBuDsz6+pJVpATqJAHgE2cn0mRmrVn5bi4Y5FZGkECwJ +MoBgs5PAKrYYC51+jUnyEEp/+dVGLxmSo5mnJqy7jDzmDrxHB9xzUfFwZC8I+bRH +HTBsROopN4WSaGa8gzj+ezku01DwH/teYLappvonQfGbGHLy9YR0SslnxFSuSGTf +jNFusB3hB48IHpmccelM2KX3RxIfdNFRnobzwqIjQAtz20um53MGjMGg6cFZrEb6 +5i/4z3GcRm25xBWNOHkDRUjvxF3XCO6HOSKGsg0PWEP3calILv3q1h8CAwEAAaOB +rDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU +F6DNweRBtjpbO8tFnb0cwpj6hlgwHwYDVR0jBBgwFoAUF6DNweRBtjpbO8tFnb0c +wpj6hlgwRgYDVR0gBD8wPTA7BglghXQBWQEDAQEwLjAsBggrBgEFBQcCARYgaHR0 +cDovL3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIB +AHPGgeAn0i0P4JUw4ppBf1AsX19iYamGamkYDHRJ1l2E6kFSGG9YrVBWIGrGvShp +WJHckRE1qTodvBqlYJ7YH39FkWnZfrt4csEGDyrOj4VwYaygzQu4OSlWhDJOhrs9 +xCrZ1x9y7v5RoSJBsXECYxqCsGKrXlcSH9/L3XWgwF15kIwb4FDm3jH+mHtwX6WQ +2K34ArZv02DdQEsixT2tOnqfGhpHkXkzuoLcMmkDlm4fS/Bx/uNncqCxv1yL5PqZ +IseEuRuNI5c/7SXgz2W79WEE790eslpBIlqhn10s6FvJbakMDHiqYMZWjwFaDGi8 +aRl5xB9+lwW/xekkUV7U1UtT7dkjWjYDZaPBA61BMPNGG4WQr2W11bHkFlt4dR2X +em1ZqSqPe97Dh4kQmUlzeMg9vVE1dCrV8X5pGyq7O70luJpaPXJhkGaH7gzWTdQR +dAtq/gsD/KNVV4n+SsuuWxcFyPKNIzFTONItaj+CuY0IavdeQXRuwxF+B6wpYJE/ +OMpXEA29MC/HpeZBoNquBYeaoKRlbEwJDIm6uNO5wJOKMPqN5ZprFQFOZ6raYlY+ +hAhm0sQ2fac+EPyI4NSA5QC9qvNOBqN6avlicuMJT+ubDgEj8Z+7fNzcbBGXJbLy +tGMU0gYqZ4yD9c7qB9iaah7s5Aq7KkzrCWA5zspi2C5u +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 5700383053117599563 (0x4f1bd42f54bb2f4b) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=CH, O=SwissSign AG, CN=SwissSign Silver CA - G2 + Validity + Not Before: Oct 25 08:32:46 2006 GMT + Not After : Oct 25 08:32:46 2036 GMT + Subject: C=CH, O=SwissSign AG, CN=SwissSign Silver CA - G2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:c4:f1:87:7f:d3:78:31:f7:38:c9:f8:c3:99:43: + bc:c7:f7:bc:37:e7:4e:71:ba:4b:8f:a5:73:1d:5c: + 6e:98:ae:03:57:ae:38:37:43:2f:17:3d:1f:c8:ce: + 68:10:c1:78:ae:19:03:2b:10:fa:2c:79:83:f6:e8: + b9:68:b9:55:f2:04:44:a7:39:f9:fc:04:8b:1e:f1: + a2:4d:27:f9:61:7b:ba:b7:e5:a2:13:b6:eb:61:3e: + d0:6c:d1:e6:fb:fa:5e:ed:1d:b4:9e:a0:35:5b:a1: + 92:cb:f0:49:92:fe:85:0a:05:3e:e6:d9:0b:e2:4f: + bb:dc:95:37:fc:91:e9:32:35:22:d1:1f:3a:4e:27: + 85:9d:b0:15:94:32:da:61:0d:47:4d:60:42:ae:92: + 47:e8:83:5a:50:58:e9:8a:8b:b9:5d:a1:dc:dd:99: + 4a:1f:36:67:bb:48:e4:83:b6:37:eb:48:3a:af:0f: + 67:8f:17:07:e8:04:ca:ef:6a:31:87:d4:c0:b6:f9: + 94:71:7b:67:64:b8:b6:91:4a:42:7b:65:2e:30:6a: + 0c:f5:90:ee:95:e6:f2:cd:82:ec:d9:a1:4a:ec:f6: + b2:4b:e5:45:85:e6:6d:78:93:04:2e:9c:82:6d:36: + a9:c4:31:64:1f:86:83:0b:2a:f4:35:0a:78:c9:55: + cf:41:b0:47:e9:30:9f:99:be:61:a8:06:84:b9:28: + 7a:5f:38:d9:1b:a9:38:b0:83:7f:73:c1:c3:3b:48: + 2a:82:0f:21:9b:b8:cc:a8:35:c3:84:1b:83:b3:3e: + be:a4:95:69:01:3a:89:00:78:04:d9:c9:f4:99:19: + ab:56:7e:5b:8b:86:39:15:91:a4:10:2c:09:32:80: + 60:b3:93:c0:2a:b6:18:0b:9d:7e:8d:49:f2:10:4a: + 7f:f9:d5:46:2f:19:92:a3:99:a7:26:ac:bb:8c:3c: + e6:0e:bc:47:07:dc:73:51:f1:70:64:2f:08:f9:b4: + 47:1d:30:6c:44:ea:29:37:85:92:68:66:bc:83:38: + fe:7b:39:2e:d3:50:f0:1f:fb:5e:60:b6:a9:a6:fa: + 27:41:f1:9b:18:72:f2:f5:84:74:4a:c9:67:c4:54: + ae:48:64:df:8c:d1:6e:b0:1d:e1:07:8f:08:1e:99: + 9c:71:e9:4c:d8:a5:f7:47:12:1f:74:d1:51:9e:86: + f3:c2:a2:23:40:0b:73:db:4b:a6:e7:73:06:8c:c1: + a0:e9:c1:59:ac:46:fa:e6:2f:f8:cf:71:9c:46:6d: + b9:c4:15:8d:38:79:03:45:48:ef:c4:5d:d7:08:ee: + 87:39:22:86:b2:0d:0f:58:43:f7:71:a9:48:2e:fd: + ea:d6:1f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 17:A0:CD:C1:E4:41:B6:3A:5B:3B:CB:45:9D:BD:1C:C2:98:FA:86:58 + X509v3 Authority Key Identifier: + keyid:17:A0:CD:C1:E4:41:B6:3A:5B:3B:CB:45:9D:BD:1C:C2:98:FA:86:58 + + X509v3 Certificate Policies: + Policy: 2.16.756.1.89.1.3.1.1 + CPS: http://repository.swisssign.com/ + + Signature Algorithm: sha1WithRSAEncryption + 73:c6:81:e0:27:d2:2d:0f:e0:95:30:e2:9a:41:7f:50:2c:5f: + 5f:62:61:a9:86:6a:69:18:0c:74:49:d6:5d:84:ea:41:52:18: + 6f:58:ad:50:56:20:6a:c6:bd:28:69:58:91:dc:91:11:35:a9: + 3a:1d:bc:1a:a5:60:9e:d8:1f:7f:45:91:69:d9:7e:bb:78:72: + c1:06:0f:2a:ce:8f:85:70:61:ac:a0:cd:0b:b8:39:29:56:84: + 32:4e:86:bb:3d:c4:2a:d9:d7:1f:72:ee:fe:51:a1:22:41:b1: + 71:02:63:1a:82:b0:62:ab:5e:57:12:1f:df:cb:dd:75:a0:c0: + 5d:79:90:8c:1b:e0:50:e6:de:31:fe:98:7b:70:5f:a5:90:d8: + ad:f8:02:b6:6f:d3:60:dd:40:4b:22:c5:3d:ad:3a:7a:9f:1a: + 1a:47:91:79:33:ba:82:dc:32:69:03:96:6e:1f:4b:f0:71:fe: + e3:67:72:a0:b1:bf:5c:8b:e4:fa:99:22:c7:84:b9:1b:8d:23: + 97:3f:ed:25:e0:cf:65:bb:f5:61:04:ef:dd:1e:b2:5a:41:22: + 5a:a1:9f:5d:2c:e8:5b:c9:6d:a9:0c:0c:78:aa:60:c6:56:8f: + 01:5a:0c:68:bc:69:19:79:c4:1f:7e:97:05:bf:c5:e9:24:51: + 5e:d4:d5:4b:53:ed:d9:23:5a:36:03:65:a3:c1:03:ad:41:30: + f3:46:1b:85:90:af:65:b5:d5:b1:e4:16:5b:78:75:1d:97:7a: + 6d:59:a9:2a:8f:7b:de:c3:87:89:10:99:49:73:78:c8:3d:bd: + 51:35:74:2a:d5:f1:7e:69:1b:2a:bb:3b:bd:25:b8:9a:5a:3d: + 72:61:90:66:87:ee:0c:d6:4d:d4:11:74:0b:6a:fe:0b:03:fc: + a3:55:57:89:fe:4a:cb:ae:5b:17:05:c8:f2:8d:23:31:53:38: + d2:2d:6a:3f:82:b9:8d:08:6a:f7:5e:41:74:6e:c3:11:7e:07: + ac:29:60:91:3f:38:ca:57:10:0d:bd:30:2f:c7:a5:e6:41:a0: + da:ae:05:87:9a:a0:a4:65:6c:4c:09:0c:89:ba:b8:d3:b9:c0: + 93:8a:30:fa:8d:e5:9a:6b:15:01:4e:67:aa:da:62:56:3e:84: + 08:66:d2:c4:36:7d:a7:3e:10:fc:88:e0:d4:80:e5:00:bd:aa: + f3:4e:06:a3:7a:6a:f9:62:72:e3:09:4f:eb:9b:0e:01:23:f1: + 9f:bb:7c:dc:dc:6c:11:97:25:b2:f2:b4:63:14:d2:06:2a:67: + 8c:83:f5:ce:ea:07:d8:9a:6a:1e:ec:e4:0a:bb:2a:4c:eb:09: + 60:39:ce:ca:62:d8:2e:6e +SHA1 Fingerprint=9B:AA:E5:9F:56:EE:21:CB:43:5A:BE:25:93:DF:A7:F0:40:D1:1D:CB diff --git a/system/etc/security/cacerts/524d9b43.0 b/system/etc/security/cacerts/524d9b43.0 new file mode 100644 index 0000000000000000000000000000000000000000..0fa8453f54d99424e2a3b9f72400e18ed553aa6e --- /dev/null +++ b/system/etc/security/cacerts/524d9b43.0 @@ -0,0 +1,88 @@ +-----BEGIN CERTIFICATE----- +MIIEuTCCA6GgAwIBAgIQQBrEZCGzEyEDDrvkEhrFHTANBgkqhkiG9w0BAQsFADCB +vTELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQL +ExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwOCBWZXJp +U2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MTgwNgYDVQQDEy9W +ZXJpU2lnbiBVbml2ZXJzYWwgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAe +Fw0wODA0MDIwMDAwMDBaFw0zNzEyMDEyMzU5NTlaMIG9MQswCQYDVQQGEwJVUzEX +MBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0 +IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAyMDA4IFZlcmlTaWduLCBJbmMuIC0gRm9y +IGF1dGhvcml6ZWQgdXNlIG9ubHkxODA2BgNVBAMTL1ZlcmlTaWduIFVuaXZlcnNh +bCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEF +AAOCAQ8AMIIBCgKCAQEAx2E3XrEBNNti1xWb/1hajCMj1mCOkdeQmIN65lgZOIzF +9uVkhbSicfvtvbnazU0AtMgtc6XHaXGVHzk8skQHnOgO+k1KxCHfKWGPMiJhgsWH +H26MfF8WIFFE0XBPV+rjHOPMee5Y2A7Cs0WTwCznmhcrewA3ekEzeOEz4vMQGn+H +LL729fdC4uW/h2KJXwBL38Xd5HVEMkE6HnFuacsLdUYI0crSK5XQz/u5QGtkjFdN +/BMReYTtXlT2NJ8IAfMQJQYXStrxHXpma5hgZqTZ79IugvHw7wnqRMkVauIDbjPT +rJ9VAMf2CGqUuV/c4DPxhGD5WycRtPwW8rtWaoAljQIDAQABo4GyMIGvMA8GA1Ud +EwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMG0GCCsGAQUFBwEMBGEwX6FdoFsw +WTBXMFUWCWltYWdlL2dpZjAhMB8wBwYFKw4DAhoEFI/l0xqGrI2Oa8PPgGrUSBgs +exkuMCUWI2h0dHA6Ly9sb2dvLnZlcmlzaWduLmNvbS92c2xvZ28uZ2lmMB0GA1Ud +DgQWBBS2d/ppSEefUxLVwuoHMnYH0ZcHGTANBgkqhkiG9w0BAQsFAAOCAQEASvj4 +sAPmLGd75JR3Y8xuTPl9Dg3cyLk1uXBPY/ok+myDjEedO2Pzmvl2MpWRsXe8rJq+ +seQxIcaBlVZaDrHC1LGmWazxY8u4TB1ZkErvkBYoH1quEPuBUDgMbMzxPcP1Y+Oz +4yHJJDnp/RVmRvQbEdBNc6N9Rvk97ahfYtTxP/jgdFcrGJ2BtMQo2pSXpXDrrB2+ +BxHw1dvd5Yzw1TKwg+ZX4o+/vqGqvz0dtdQ46tewXDpPaj+PwGZsY6rp2aQW9IHR +lRQOfc2VNNnSj3BzgXucfr2YYdhFh5iQxeuGMMY1v/D/w1WIg0vvBZIGcfK4mJO3 +7M2CYfE45k+XmCpajQ== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 40:1a:c4:64:21:b3:13:21:03:0e:bb:e4:12:1a:c5:1d + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=US, O=VeriSign, Inc., OU=VeriSign Trust Network, OU=(c) 2008 VeriSign, Inc. - For authorized use only, CN=VeriSign Universal Root Certification Authority + Validity + Not Before: Apr 2 00:00:00 2008 GMT + Not After : Dec 1 23:59:59 2037 GMT + Subject: C=US, O=VeriSign, Inc., OU=VeriSign Trust Network, OU=(c) 2008 VeriSign, Inc. - For authorized use only, CN=VeriSign Universal Root Certification Authority + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:c7:61:37:5e:b1:01:34:db:62:d7:15:9b:ff:58: + 5a:8c:23:23:d6:60:8e:91:d7:90:98:83:7a:e6:58: + 19:38:8c:c5:f6:e5:64:85:b4:a2:71:fb:ed:bd:b9: + da:cd:4d:00:b4:c8:2d:73:a5:c7:69:71:95:1f:39: + 3c:b2:44:07:9c:e8:0e:fa:4d:4a:c4:21:df:29:61: + 8f:32:22:61:82:c5:87:1f:6e:8c:7c:5f:16:20:51: + 44:d1:70:4f:57:ea:e3:1c:e3:cc:79:ee:58:d8:0e: + c2:b3:45:93:c0:2c:e7:9a:17:2b:7b:00:37:7a:41: + 33:78:e1:33:e2:f3:10:1a:7f:87:2c:be:f6:f5:f7: + 42:e2:e5:bf:87:62:89:5f:00:4b:df:c5:dd:e4:75: + 44:32:41:3a:1e:71:6e:69:cb:0b:75:46:08:d1:ca: + d2:2b:95:d0:cf:fb:b9:40:6b:64:8c:57:4d:fc:13: + 11:79:84:ed:5e:54:f6:34:9f:08:01:f3:10:25:06: + 17:4a:da:f1:1d:7a:66:6b:98:60:66:a4:d9:ef:d2: + 2e:82:f1:f0:ef:09:ea:44:c9:15:6a:e2:03:6e:33: + d3:ac:9f:55:00:c7:f6:08:6a:94:b9:5f:dc:e0:33: + f1:84:60:f9:5b:27:11:b4:fc:16:f2:bb:56:6a:80: + 25:8d + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + 1.3.6.1.5.5.7.1.12: + 0_.].[0Y0W0U..image/gif0!0.0...+..............k...j.H.,{..0%.#http://logo.verisign.com/vslogo.gif + X509v3 Subject Key Identifier: + B6:77:FA:69:48:47:9F:53:12:D5:C2:EA:07:32:76:07:D1:97:07:19 + Signature Algorithm: sha256WithRSAEncryption + 4a:f8:f8:b0:03:e6:2c:67:7b:e4:94:77:63:cc:6e:4c:f9:7d: + 0e:0d:dc:c8:b9:35:b9:70:4f:63:fa:24:fa:6c:83:8c:47:9d: + 3b:63:f3:9a:f9:76:32:95:91:b1:77:bc:ac:9a:be:b1:e4:31: + 21:c6:81:95:56:5a:0e:b1:c2:d4:b1:a6:59:ac:f1:63:cb:b8: + 4c:1d:59:90:4a:ef:90:16:28:1f:5a:ae:10:fb:81:50:38:0c: + 6c:cc:f1:3d:c3:f5:63:e3:b3:e3:21:c9:24:39:e9:fd:15:66: + 46:f4:1b:11:d0:4d:73:a3:7d:46:f9:3d:ed:a8:5f:62:d4:f1: + 3f:f8:e0:74:57:2b:18:9d:81:b4:c4:28:da:94:97:a5:70:eb: + ac:1d:be:07:11:f0:d5:db:dd:e5:8c:f0:d5:32:b0:83:e6:57: + e2:8f:bf:be:a1:aa:bf:3d:1d:b5:d4:38:ea:d7:b0:5c:3a:4f: + 6a:3f:8f:c0:66:6c:63:aa:e9:d9:a4:16:f4:81:d1:95:14:0e: + 7d:cd:95:34:d9:d2:8f:70:73:81:7b:9c:7e:bd:98:61:d8:45: + 87:98:90:c5:eb:86:30:c6:35:bf:f0:ff:c3:55:88:83:4b:ef: + 05:92:06:71:f2:b8:98:93:b7:ec:cd:82:61:f1:38:e6:4f:97: + 98:2a:5a:8d +SHA1 Fingerprint=36:79:CA:35:66:87:72:30:4D:30:A5:FB:87:3B:0F:A7:7B:B7:0D:54 diff --git a/system/etc/security/cacerts/52b525c7.0 b/system/etc/security/cacerts/52b525c7.0 new file mode 100644 index 0000000000000000000000000000000000000000..98adef0ef163dd516550d23e5ae760e64f451944 --- /dev/null +++ b/system/etc/security/cacerts/52b525c7.0 @@ -0,0 +1,120 @@ +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIUeFhfLq0sGUvjNwc1NBMotZbUZZMwDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMSBHMzAeFw0xMjAxMTIxNzI3NDRaFw00 +MjAxMTIxNzI3NDRaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDEgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCgvlAQjunybEC0BJyFuTHK3C3kEakEPBtV +wedYMB0ktMPvhd6MLOHBPd+C5k+tR4ds7FtJwUrVu4/sh6x/gpqG7D0DmVIB0jWe +rNrwU8lmPNSsAgHaJNM7qAJGr6Qc4/hzWHa39g6QDbXwz8z6+cZM5cOGMAqNF341 +68Xfuw6cwI2H44g4hWf6Pser4BOcBRiYz5P1sZK0/CPTz9XEJ0ngnjybCKOLXSoh +4Pw5qlPafX7PGglTvF0FBM+hSo+LdoINofjSxxR3W5A2B4GbPgb6Ul5jxaYA/qXp +UhtStZI5cgMJYr2wYBZupt0lwgNm3fME0UDiTouG9G/lg6AnhF4EwfWQvTA9xO+o +abw4m6SkltFi2mnAAZauy8RRNOoMqv8hjlmPSlzkYZqn0ukqeI1RPToV7qJZjqlc +3sX5kCLliEVx3ZGZbHqfPT2YfF72vhZooF6uCyP8Wg+qInYtyaEQHeTTRCOQiJ/G +KubX9ZqzWB4vMIkIG1SitZgj7Ah3HJVdYdHLiZxfokqRmu8hqkkWCKi9YSgxyXSt +hfbZxbGL0eUQMk1fiyA6PEkfM4VZDdvLCXVDaXP7a3F98N/ETH3Goy7IlXnLc6KO +Tk0k+17kBL5yG6YnLUlamXrXXAkgt3+UuU/xDRxeiEIbEbfnkduebPRq34wGmAOt +zCjvpUfzUwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUo5fW816iEOGrRZ88F2Q87gFwnMwwDQYJKoZIhvcNAQELBQAD +ggIBABj6W3X8PnrHX3fHyt/PX8MSxEBd1DKquGrX1RUVRpgjpeaQWxiZTOOtQqOC +MTaIzen7xASWSIsBx40Bz1szBpZGZnQdT+3Btrm0DWHMY37XLneMlhwqI2hrhVd2 +cDMT/uFPpiN3GPoajOi9ZcnPP/TJF9zrx7zABC4tRi9pZsMbj/7sPtPKlL92CiUN +qXsCHKnQO18LwIE6PWThv6ctTr1NxNgpxiIY0MWscgKCP6o6ojoilzHdCGPDdRS5 +YCgtW2jgFqlmgiNR9etT2DGbe+m3nUvriBbP+V04ikkwj+3x6xn0dxoxGE1nVGwv +b2X52z3sIexe9PSLymBlVNFxZPT5pqOBMzYzcfCkeF9OrYMh3jRJjehZrJ3ydlo2 +8hP0r+AJx2EqbPfgna67hkooby7utHnNkDPDs3b69fBsnQGQ+p6Q9pxyz0fawx/k +NSBT8lTR32GDpgLiJTjehTItXnOQUl1CxM49S+H5GYQd1aJQzEH7QRTDvdbJWqNj +ZgKAvQU6O0ec7AAmTPWIUb+oI38YB7AL7YsmoWTTYUrrXJ/es69nA7Mf3W1daWhp +q1467HxpvMc7hU6eFbm0FU/DlXpY18ls6Wy58yljXrQs8C097Vpl4KlbQMJImYFt +nh8GKjwStIsPm6Ik8KaN1nrgS7ZklmOVhMJKzRwuJIczYOXD +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 78:58:5f:2e:ad:2c:19:4b:e3:37:07:35:34:13:28:b5:96:d4:65:93 + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=BM, O=QuoVadis Limited, CN=QuoVadis Root CA 1 G3 + Validity + Not Before: Jan 12 17:27:44 2012 GMT + Not After : Jan 12 17:27:44 2042 GMT + Subject: C=BM, O=QuoVadis Limited, CN=QuoVadis Root CA 1 G3 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:a0:be:50:10:8e:e9:f2:6c:40:b4:04:9c:85:b9: + 31:ca:dc:2d:e4:11:a9:04:3c:1b:55:c1:e7:58:30: + 1d:24:b4:c3:ef:85:de:8c:2c:e1:c1:3d:df:82:e6: + 4f:ad:47:87:6c:ec:5b:49:c1:4a:d5:bb:8f:ec:87: + ac:7f:82:9a:86:ec:3d:03:99:52:01:d2:35:9e:ac: + da:f0:53:c9:66:3c:d4:ac:02:01:da:24:d3:3b:a8: + 02:46:af:a4:1c:e3:f8:73:58:76:b7:f6:0e:90:0d: + b5:f0:cf:cc:fa:f9:c6:4c:e5:c3:86:30:0a:8d:17: + 7e:35:eb:c5:df:bb:0e:9c:c0:8d:87:e3:88:38:85: + 67:fa:3e:c7:ab:e0:13:9c:05:18:98:cf:93:f5:b1: + 92:b4:fc:23:d3:cf:d5:c4:27:49:e0:9e:3c:9b:08: + a3:8b:5d:2a:21:e0:fc:39:aa:53:da:7d:7e:cf:1a: + 09:53:bc:5d:05:04:cf:a1:4a:8f:8b:76:82:0d:a1: + f8:d2:c7:14:77:5b:90:36:07:81:9b:3e:06:fa:52: + 5e:63:c5:a6:00:fe:a5:e9:52:1b:52:b5:92:39:72: + 03:09:62:bd:b0:60:16:6e:a6:dd:25:c2:03:66:dd: + f3:04:d1:40:e2:4e:8b:86:f4:6f:e5:83:a0:27:84: + 5e:04:c1:f5:90:bd:30:3d:c4:ef:a8:69:bc:38:9b: + a4:a4:96:d1:62:da:69:c0:01:96:ae:cb:c4:51:34: + ea:0c:aa:ff:21:8e:59:8f:4a:5c:e4:61:9a:a7:d2: + e9:2a:78:8d:51:3d:3a:15:ee:a2:59:8e:a9:5c:de: + c5:f9:90:22:e5:88:45:71:dd:91:99:6c:7a:9f:3d: + 3d:98:7c:5e:f6:be:16:68:a0:5e:ae:0b:23:fc:5a: + 0f:aa:22:76:2d:c9:a1:10:1d:e4:d3:44:23:90:88: + 9f:c6:2a:e6:d7:f5:9a:b3:58:1e:2f:30:89:08:1b: + 54:a2:b5:98:23:ec:08:77:1c:95:5d:61:d1:cb:89: + 9c:5f:a2:4a:91:9a:ef:21:aa:49:16:08:a8:bd:61: + 28:31:c9:74:ad:85:f6:d9:c5:b1:8b:d1:e5:10:32: + 4d:5f:8b:20:3a:3c:49:1f:33:85:59:0d:db:cb:09: + 75:43:69:73:fb:6b:71:7d:f0:df:c4:4c:7d:c6:a3: + 2e:c8:95:79:cb:73:a2:8e:4e:4d:24:fb:5e:e4:04: + be:72:1b:a6:27:2d:49:5a:99:7a:d7:5c:09:20:b7: + 7f:94:b9:4f:f1:0d:1c:5e:88:42:1b:11:b7:e7:91: + db:9e:6c:f4:6a:df:8c:06:98:03:ad:cc:28:ef:a5: + 47:f3:53 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + A3:97:D6:F3:5E:A2:10:E1:AB:45:9F:3C:17:64:3C:EE:01:70:9C:CC + Signature Algorithm: sha256WithRSAEncryption + 18:fa:5b:75:fc:3e:7a:c7:5f:77:c7:ca:df:cf:5f:c3:12:c4: + 40:5d:d4:32:aa:b8:6a:d7:d5:15:15:46:98:23:a5:e6:90:5b: + 18:99:4c:e3:ad:42:a3:82:31:36:88:cd:e9:fb:c4:04:96:48: + 8b:01:c7:8d:01:cf:5b:33:06:96:46:66:74:1d:4f:ed:c1:b6: + b9:b4:0d:61:cc:63:7e:d7:2e:77:8c:96:1c:2a:23:68:6b:85: + 57:76:70:33:13:fe:e1:4f:a6:23:77:18:fa:1a:8c:e8:bd:65: + c9:cf:3f:f4:c9:17:dc:eb:c7:bc:c0:04:2e:2d:46:2f:69:66: + c3:1b:8f:fe:ec:3e:d3:ca:94:bf:76:0a:25:0d:a9:7b:02:1c: + a9:d0:3b:5f:0b:c0:81:3a:3d:64:e1:bf:a7:2d:4e:bd:4d:c4: + d8:29:c6:22:18:d0:c5:ac:72:02:82:3f:aa:3a:a2:3a:22:97: + 31:dd:08:63:c3:75:14:b9:60:28:2d:5b:68:e0:16:a9:66:82: + 23:51:f5:eb:53:d8:31:9b:7b:e9:b7:9d:4b:eb:88:16:cf:f9: + 5d:38:8a:49:30:8f:ed:f1:eb:19:f4:77:1a:31:18:4d:67:54: + 6c:2f:6f:65:f9:db:3d:ec:21:ec:5e:f4:f4:8b:ca:60:65:54: + d1:71:64:f4:f9:a6:a3:81:33:36:33:71:f0:a4:78:5f:4e:ad: + 83:21:de:34:49:8d:e8:59:ac:9d:f2:76:5a:36:f2:13:f4:af: + e0:09:c7:61:2a:6c:f7:e0:9d:ae:bb:86:4a:28:6f:2e:ee:b4: + 79:cd:90:33:c3:b3:76:fa:f5:f0:6c:9d:01:90:fa:9e:90:f6: + 9c:72:cf:47:da:c3:1f:e4:35:20:53:f2:54:d1:df:61:83:a6: + 02:e2:25:38:de:85:32:2d:5e:73:90:52:5d:42:c4:ce:3d:4b: + e1:f9:19:84:1d:d5:a2:50:cc:41:fb:41:14:c3:bd:d6:c9:5a: + a3:63:66:02:80:bd:05:3a:3b:47:9c:ec:00:26:4c:f5:88:51: + bf:a8:23:7f:18:07:b0:0b:ed:8b:26:a1:64:d3:61:4a:eb:5c: + 9f:de:b3:af:67:03:b3:1f:dd:6d:5d:69:68:69:ab:5e:3a:ec: + 7c:69:bc:c7:3b:85:4e:9e:15:b9:b4:15:4f:c3:95:7a:58:d7: + c9:6c:e9:6c:b9:f3:29:63:5e:b4:2c:f0:2d:3d:ed:5a:65:e0: + a9:5b:40:c2:48:99:81:6d:9e:1f:06:2a:3c:12:b4:8b:0f:9b: + a2:24:f0:a6:8d:d6:7a:e0:4b:b6:64:96:63:95:84:c2:4a:cd: + 1c:2e:24:87:33:60:e5:c3 +SHA1 Fingerprint=1B:8E:EA:57:96:29:1A:C9:39:EA:B8:0A:81:1A:73:73:C0:93:79:67 diff --git a/system/etc/security/cacerts/559f7c71.0 b/system/etc/security/cacerts/559f7c71.0 new file mode 100644 index 0000000000000000000000000000000000000000..c37db955e18405d5d66679e839b984dac0e8e513 --- /dev/null +++ b/system/etc/security/cacerts/559f7c71.0 @@ -0,0 +1,55 @@ +-----BEGIN CERTIFICATE----- +MIICITCCAaagAwIBAgISESDm+Ez8JLC+BUCs2oMbNGA/MAoGCCqGSM49BAMDMEAx +CzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlPcGVuVHJ1c3QxHTAbBgNVBAMMFE9wZW5U +cnVzdCBSb290IENBIEczMB4XDTE0MDUyNjAwMDAwMFoXDTM4MDExNTAwMDAwMFow +QDELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCU9wZW5UcnVzdDEdMBsGA1UEAwwUT3Bl +blRydXN0IFJvb3QgQ0EgRzMwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAARK7liuTcpm +3gY6oxH84Bjwbhy6LTAMidnW7ptzg6kjFYwvWYpa3RTqnVkrQ7cG7DK2uu5Bta1d +oYXM6h0UZqNnfkbilPPntlahFVmhTzeXuSIevRHr9LIfXsMUmuXZl5mjYzBhMA4G +A1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRHd8MUi2I5 +DMlv4VBN0BBY3JWIbTAfBgNVHSMEGDAWgBRHd8MUi2I5DMlv4VBN0BBY3JWIbTAK +BggqhkjOPQQDAwNpADBmAjEAj6jcnboMBBf6Fek9LykBl7+BFjNAk2z8+e2AcG+q +j9uEwov1NcoG3GRvaBbhj5G5AjEA2Euly8LQCGzpGPta3U1fJAuwACEl74+nBCZx +4nxp5V2a+EEfOzmTk51V6s2N8fvB +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 11:20:e6:f8:4c:fc:24:b0:be:05:40:ac:da:83:1b:34:60:3f + Signature Algorithm: ecdsa-with-SHA384 + Issuer: C=FR, O=OpenTrust, CN=OpenTrust Root CA G3 + Validity + Not Before: May 26 00:00:00 2014 GMT + Not After : Jan 15 00:00:00 2038 GMT + Subject: C=FR, O=OpenTrust, CN=OpenTrust Root CA G3 + Subject Public Key Info: + Public Key Algorithm: id-ecPublicKey + Public-Key: (384 bit) + pub: + 04:4a:ee:58:ae:4d:ca:66:de:06:3a:a3:11:fc:e0: + 18:f0:6e:1c:ba:2d:30:0c:89:d9:d6:ee:9b:73:83: + a9:23:15:8c:2f:59:8a:5a:dd:14:ea:9d:59:2b:43: + b7:06:ec:32:b6:ba:ee:41:b5:ad:5d:a1:85:cc:ea: + 1d:14:66:a3:67:7e:46:e2:94:f3:e7:b6:56:a1:15: + 59:a1:4f:37:97:b9:22:1e:bd:11:eb:f4:b2:1f:5e: + c3:14:9a:e5:d9:97:99 + ASN1 OID: secp384r1 + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 47:77:C3:14:8B:62:39:0C:C9:6F:E1:50:4D:D0:10:58:DC:95:88:6D + X509v3 Authority Key Identifier: + keyid:47:77:C3:14:8B:62:39:0C:C9:6F:E1:50:4D:D0:10:58:DC:95:88:6D + + Signature Algorithm: ecdsa-with-SHA384 + 30:66:02:31:00:8f:a8:dc:9d:ba:0c:04:17:fa:15:e9:3d:2f: + 29:01:97:bf:81:16:33:40:93:6c:fc:f9:ed:80:70:6f:aa:8f: + db:84:c2:8b:f5:35:ca:06:dc:64:6f:68:16:e1:8f:91:b9:02: + 31:00:d8:4b:a5:cb:c2:d0:08:6c:e9:18:fb:5a:dd:4d:5f:24: + 0b:b0:00:21:25:ef:8f:a7:04:26:71:e2:7c:69:e5:5d:9a:f8: + 41:1f:3b:39:93:93:9d:55:ea:cd:8d:f1:fb:c1 +SHA1 Fingerprint=6E:26:64:F3:56:BF:34:55:BF:D1:93:3F:7C:01:DE:D8:13:DA:8A:A6 diff --git a/system/etc/security/cacerts/5a250ea7.0 b/system/etc/security/cacerts/5a250ea7.0 new file mode 100644 index 0000000000000000000000000000000000000000..4561d51b7695f2f466eb0a8969894fad7e0b9096 --- /dev/null +++ b/system/etc/security/cacerts/5a250ea7.0 @@ -0,0 +1,120 @@ +-----BEGIN CERTIFICATE----- +MIIFdDCCA1ygAwIBAgIEAJiiOTANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJO +TDEeMBwGA1UECgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFh +dCBkZXIgTmVkZXJsYW5kZW4gUm9vdCBDQSAtIEczMB4XDTEzMTExNDExMjg0MloX +DTI4MTExMzIzMDAwMFowWjELMAkGA1UEBhMCTkwxHjAcBgNVBAoMFVN0YWF0IGRl +ciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5lZGVybGFuZGVuIFJv +b3QgQ0EgLSBHMzCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL4yolQP +cPssXFnrbMSkUeiFKrPMSjTysF/zDsccPVMeiAho2G89rcKezIJnByeHaHE6n3WW +IkYFsO2tx1ueKt6c/DrGlaf1F2cY5y9JCAxcz+bMNO14+1Cx3Gsy8KL+tjzk7FqX +xz8ecAgwoNzFs21v0IJyEavSgWhZghe3eJJg+szeP4TrjTgzkApyI/o1zCZxMdFy +KJLZWyNtZrVtB0LrpjPOktvA9mxjeM3KTj215VKb8b475lRgsGYeCasH/lSJEULR +9yS6YHgamPfJEf0WwTUaVHXvQ9Plrk7O53vDxk5hUUurmkVLoR9BvUhTFXFkC4az +5S6+zqQbwSmEorXLCCN2QyIkHxcE1G6cxvx/K2Ya7Irl1s9N9WMJtxU51nus6+N8 +6U78dULI7ViVDAZCopz35HCz33JvWjdAidiFpNfxC95DGdRKWCyMijmev4SH8RY7 +Ngzp07TKbBlBUgmhHbBqv4LvcFEhMtwFdozL92TkA1CvjJFnq8Xy7ljY3r735zHP +bMk7ccHViLVlvMDoFxcHErVc0qsgk7TmgoNwNsXNo42ti+yjwUOH5kPiNL6VizXt +BznaqB16nzaeErAMZRKQFWDZJkBE41ZgpRDUajz9QdwOWke275dhdU/Z/seyHdTt +XUmzqWrLZoQT1Vyg3N9udwbRcXXIV2+vD3dbAgMBAAGjQjBAMA8GA1UdEwEB/wQF +MAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRUrfrHkleuyjWcLhL75Lpd +INyUVzANBgkqhkiG9w0BAQsFAAOCAgEAMJmdBTLIXg47mAE6iqTnB/d6+Oea31BD +U5cqPco8R5gu4RV78ZLzYdqQJRZlwJ9UXQ4DO1t3ApyEtg2YXzTdO2PCwyiBwpwp +LiniyMMB8jPqKqrMCQj3ZWfGzd/TtiunvczRDnBfuCPRy5FOCvTIeuXZYzbB1N/8 +Ipf3YF3qKS9Ysr1YvY2WTxB1v0h7PVGHoTx0IsL8B3+A3MSs/mrBcDCw6Y5p4ixp +gZQJut3+TcCDjJRYwEYgr5wfAvg1VUkvRtTA8KCWAg8zxXHzniN9lLf9OtMJgwYh +/WA9rjLA0u6NpvDntIJ8CsxwyXmA+P5M9zWEGYox+wrZ13+b8KKaa8MFSu1BYBQw +0aoRQm7TIwIEC8Zl3d1Sd9qBa7Ko+gE4uZbqKmxnl4mUnrzhVNXkanjvSr0rmj1A +fsbAddJu+2gw7OyLnflJNZoaLNmzlTnVHpL3prllL+U9bTpITAjc5CgSKL59NVzq +4BZ+Extq1z7XnvwtdbLBFNUjA9tbbws+eC8N3jONFrdI54OagQ97wUNNVQQXOEpR +1VmiiXTTn74eS9fGbbeIJG9gkaSChVtWQbzQRKtqE77RLFi3EjNYsjdj3BP1lB0/ +QFH1T/U67cjF68IeHRaVesd+QnGTbksVtzDfqu1XhUisHWrdOWnk4Xl4vs4Fv6EM +94B7IWcnMFk= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 10003001 (0x98a239) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=NL, O=Staat der Nederlanden, CN=Staat der Nederlanden Root CA - G3 + Validity + Not Before: Nov 14 11:28:42 2013 GMT + Not After : Nov 13 23:00:00 2028 GMT + Subject: C=NL, O=Staat der Nederlanden, CN=Staat der Nederlanden Root CA - G3 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:be:32:a2:54:0f:70:fb:2c:5c:59:eb:6c:c4:a4: + 51:e8:85:2a:b3:cc:4a:34:f2:b0:5f:f3:0e:c7:1c: + 3d:53:1e:88:08:68:d8:6f:3d:ad:c2:9e:cc:82:67: + 07:27:87:68:71:3a:9f:75:96:22:46:05:b0:ed:ad: + c7:5b:9e:2a:de:9c:fc:3a:c6:95:a7:f5:17:67:18: + e7:2f:49:08:0c:5c:cf:e6:cc:34:ed:78:fb:50:b1: + dc:6b:32:f0:a2:fe:b6:3c:e4:ec:5a:97:c7:3f:1e: + 70:08:30:a0:dc:c5:b3:6d:6f:d0:82:72:11:ab:d2: + 81:68:59:82:17:b7:78:92:60:fa:cc:de:3f:84:eb: + 8d:38:33:90:0a:72:23:fa:35:cc:26:71:31:d1:72: + 28:92:d9:5b:23:6d:66:b5:6d:07:42:eb:a6:33:ce: + 92:db:c0:f6:6c:63:78:cd:ca:4e:3d:b5:e5:52:9b: + f1:be:3b:e6:54:60:b0:66:1e:09:ab:07:fe:54:89: + 11:42:d1:f7:24:ba:60:78:1a:98:f7:c9:11:fd:16: + c1:35:1a:54:75:ef:43:d3:e5:ae:4e:ce:e7:7b:c3: + c6:4e:61:51:4b:ab:9a:45:4b:a1:1f:41:bd:48:53: + 15:71:64:0b:86:b3:e5:2e:be:ce:a4:1b:c1:29:84: + a2:b5:cb:08:23:76:43:22:24:1f:17:04:d4:6e:9c: + c6:fc:7f:2b:66:1a:ec:8a:e5:d6:cf:4d:f5:63:09: + b7:15:39:d6:7b:ac:eb:e3:7c:e9:4e:fc:75:42:c8: + ed:58:95:0c:06:42:a2:9c:f7:e4:70:b3:df:72:6f: + 5a:37:40:89:d8:85:a4:d7:f1:0b:de:43:19:d4:4a: + 58:2c:8c:8a:39:9e:bf:84:87:f1:16:3b:36:0c:e9: + d3:b4:ca:6c:19:41:52:09:a1:1d:b0:6a:bf:82:ef: + 70:51:21:32:dc:05:76:8c:cb:f7:64:e4:03:50:af: + 8c:91:67:ab:c5:f2:ee:58:d8:de:be:f7:e7:31:cf: + 6c:c9:3b:71:c1:d5:88:b5:65:bc:c0:e8:17:17:07: + 12:b5:5c:d2:ab:20:93:b4:e6:82:83:70:36:c5:cd: + a3:8d:ad:8b:ec:a3:c1:43:87:e6:43:e2:34:be:95: + 8b:35:ed:07:39:da:a8:1d:7a:9f:36:9e:12:b0:0c: + 65:12:90:15:60:d9:26:40:44:e3:56:60:a5:10:d4: + 6a:3c:fd:41:dc:0e:5a:47:b6:ef:97:61:75:4f:d9: + fe:c7:b2:1d:d4:ed:5d:49:b3:a9:6a:cb:66:84:13: + d5:5c:a0:dc:df:6e:77:06:d1:71:75:c8:57:6f:af: + 0f:77:5b + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + 54:AD:FA:C7:92:57:AE:CA:35:9C:2E:12:FB:E4:BA:5D:20:DC:94:57 + Signature Algorithm: sha256WithRSAEncryption + 30:99:9d:05:32:c8:5e:0e:3b:98:01:3a:8a:a4:e7:07:f7:7a: + f8:e7:9a:df:50:43:53:97:2a:3d:ca:3c:47:98:2e:e1:15:7b: + f1:92:f3:61:da:90:25:16:65:c0:9f:54:5d:0e:03:3b:5b:77: + 02:9c:84:b6:0d:98:5f:34:dd:3b:63:c2:c3:28:81:c2:9c:29: + 2e:29:e2:c8:c3:01:f2:33:ea:2a:aa:cc:09:08:f7:65:67:c6: + cd:df:d3:b6:2b:a7:bd:cc:d1:0e:70:5f:b8:23:d1:cb:91:4e: + 0a:f4:c8:7a:e5:d9:63:36:c1:d4:df:fc:22:97:f7:60:5d:ea: + 29:2f:58:b2:bd:58:bd:8d:96:4f:10:75:bf:48:7b:3d:51:87: + a1:3c:74:22:c2:fc:07:7f:80:dc:c4:ac:fe:6a:c1:70:30:b0: + e9:8e:69:e2:2c:69:81:94:09:ba:dd:fe:4d:c0:83:8c:94:58: + c0:46:20:af:9c:1f:02:f8:35:55:49:2f:46:d4:c0:f0:a0:96: + 02:0f:33:c5:71:f3:9e:23:7d:94:b7:fd:3a:d3:09:83:06:21: + fd:60:3d:ae:32:c0:d2:ee:8d:a6:f0:e7:b4:82:7c:0a:cc:70: + c9:79:80:f8:fe:4c:f7:35:84:19:8a:31:fb:0a:d9:d7:7f:9b: + f0:a2:9a:6b:c3:05:4a:ed:41:60:14:30:d1:aa:11:42:6e:d3: + 23:02:04:0b:c6:65:dd:dd:52:77:da:81:6b:b2:a8:fa:01:38: + b9:96:ea:2a:6c:67:97:89:94:9e:bc:e1:54:d5:e4:6a:78:ef: + 4a:bd:2b:9a:3d:40:7e:c6:c0:75:d2:6e:fb:68:30:ec:ec:8b: + 9d:f9:49:35:9a:1a:2c:d9:b3:95:39:d5:1e:92:f7:a6:b9:65: + 2f:e5:3d:6d:3a:48:4c:08:dc:e4:28:12:28:be:7d:35:5c:ea: + e0:16:7e:13:1b:6a:d7:3e:d7:9e:fc:2d:75:b2:c1:14:d5:23: + 03:db:5b:6f:0b:3e:78:2f:0d:de:33:8d:16:b7:48:e7:83:9a: + 81:0f:7b:c1:43:4d:55:04:17:38:4a:51:d5:59:a2:89:74:d3: + 9f:be:1e:4b:d7:c6:6d:b7:88:24:6f:60:91:a4:82:85:5b:56: + 41:bc:d0:44:ab:6a:13:be:d1:2c:58:b7:12:33:58:b2:37:63: + dc:13:f5:94:1d:3f:40:51:f5:4f:f5:3a:ed:c8:c5:eb:c2:1e: + 1d:16:95:7a:c7:7e:42:71:93:6e:4b:15:b7:30:df:aa:ed:57: + 85:48:ac:1d:6a:dd:39:69:e4:e1:79:78:be:ce:05:bf:a1:0c: + f7:80:7b:21:67:27:30:59 +SHA1 Fingerprint=D8:EB:6B:41:51:92:59:E0:F3:E7:85:00:C0:3D:B6:88:97:C9:EE:FC diff --git a/system/etc/security/cacerts/5a3f0ff8.0 b/system/etc/security/cacerts/5a3f0ff8.0 new file mode 100644 index 0000000000000000000000000000000000000000..0c27347c4aeae0a634610c266df4ee0ab6deaaa5 --- /dev/null +++ b/system/etc/security/cacerts/5a3f0ff8.0 @@ -0,0 +1,88 @@ +-----BEGIN CERTIFICATE----- +MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCB +gTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G +A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNV +BAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjEyMDEwMDAw +MDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3Jl +YXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01P +RE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0 +aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3 +UcEbVASY06m/weaKXTuH+7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI +2GqGd0S7WWaXUF601CxwRM/aN5VCaTwwxHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8 +Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV4EajcNxo2f8ESIl33rXp ++2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA1KGzqSX+ +DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5O +nKVIrLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW +/zAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6g +PKA6hjhodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9u +QXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOCAQEAPpiem/Yb6dc5t3iuHXIY +SdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CPOGEIqB6BCsAv +IC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/ +RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4 +zJVSk/BwJVmcIGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5dd +BA6+C4OmF4O5MBKgxTMVBbkN+8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IB +ZQ== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 4e:81:2d:8a:82:65:e0:0b:02:ee:3e:35:02:46:e5:3d + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=GB, ST=Greater Manchester, L=Salford, O=COMODO CA Limited, CN=COMODO Certification Authority + Validity + Not Before: Dec 1 00:00:00 2006 GMT + Not After : Dec 31 23:59:59 2029 GMT + Subject: C=GB, ST=Greater Manchester, L=Salford, O=COMODO CA Limited, CN=COMODO Certification Authority + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:d0:40:8b:8b:72:e3:91:1b:f7:51:c1:1b:54:04: + 98:d3:a9:bf:c1:e6:8a:5d:3b:87:fb:bb:88:ce:0d: + e3:2f:3f:06:96:f0:a2:29:50:99:ae:db:3b:a1:57: + b0:74:51:71:cd:ed:42:91:4d:41:fe:a9:c8:d8:6a: + 86:77:44:bb:59:66:97:50:5e:b4:d4:2c:70:44:cf: + da:37:95:42:69:3c:30:c4:71:b3:52:f0:21:4d:a1: + d8:ba:39:7c:1c:9e:a3:24:9d:f2:83:16:98:aa:16: + 7c:43:9b:15:5b:b7:ae:34:91:fe:d4:62:26:18:46: + 9a:3f:eb:c1:f9:f1:90:57:eb:ac:7a:0d:8b:db:72: + 30:6a:66:d5:e0:46:a3:70:dc:68:d9:ff:04:48:89: + 77:de:b5:e9:fb:67:6d:41:e9:bc:39:bd:32:d9:62: + 02:f1:b1:a8:3d:6e:37:9c:e2:2f:e2:d3:a2:26:8b: + c6:b8:55:43:88:e1:23:3e:a5:d2:24:39:6a:47:ab: + 00:d4:a1:b3:a9:25:fe:0d:3f:a7:1d:ba:d3:51:c1: + 0b:a4:da:ac:38:ef:55:50:24:05:65:46:93:34:4f: + 2d:8d:ad:c6:d4:21:19:d2:8e:ca:05:61:71:07:73: + 47:e5:8a:19:12:bd:04:4d:ce:4e:9c:a5:48:ac:bb: + 26:f7 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 0B:58:E5:8B:C6:4C:15:37:A4:40:A9:30:A9:21:BE:47:36:5A:56:FF + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 CRL Distribution Points: + + Full Name: + URI:http://crl.comodoca.com/COMODOCertificationAuthority.crl + + Signature Algorithm: sha1WithRSAEncryption + 3e:98:9e:9b:f6:1b:e9:d7:39:b7:78:ae:1d:72:18:49:d3:87: + e4:43:82:eb:3f:c9:aa:f5:a8:b5:ef:55:7c:21:52:65:f9:d5: + 0d:e1:6c:f4:3e:8c:93:73:91:2e:02:c4:4e:07:71:6f:c0:8f: + 38:61:08:a8:1e:81:0a:c0:2f:20:2f:41:8b:91:dc:48:45:bc: + f1:c6:de:ba:76:6b:33:c8:00:2d:31:46:4c:ed:e7:9d:cf:88: + 94:ff:33:c0:56:e8:24:86:26:b8:d8:38:38:df:2a:6b:dd:12: + cc:c7:3f:47:17:4c:a2:c2:06:96:09:d6:db:fe:3f:3c:46:41: + df:58:e2:56:0f:3c:3b:c1:1c:93:35:d9:38:52:ac:ee:c8:ec: + 2e:30:4e:94:35:b4:24:1f:4b:78:69:da:f2:02:38:cc:95:52: + 93:f0:70:25:59:9c:20:67:c4:ee:f9:8b:57:61:f4:92:76:7d: + 3f:84:8d:55:b7:e8:e5:ac:d5:f1:f5:19:56:a6:5a:fb:90:1c: + af:93:eb:e5:1c:d4:67:97:5d:04:0e:be:0b:83:a6:17:83:b9: + 30:12:a0:c5:33:15:05:b9:0d:fb:c7:05:76:e3:d8:4a:8d:fc: + 34:17:a3:c6:21:28:be:30:45:31:1e:c7:78:be:58:61:38:ac: + 3b:e2:01:65 +SHA1 Fingerprint=66:31:BF:9E:F7:4F:9E:B6:C9:D5:A6:0C:BA:6A:BE:D1:F7:BD:EF:7B diff --git a/system/etc/security/cacerts/5cf9d536.0 b/system/etc/security/cacerts/5cf9d536.0 new file mode 100644 index 0000000000000000000000000000000000000000..2232561562388f5740c9f89ab8f5e4833760a938 --- /dev/null +++ b/system/etc/security/cacerts/5cf9d536.0 @@ -0,0 +1,105 @@ +-----BEGIN CERTIFICATE----- +MIIF0DCCBLigAwIBAgIEOrZQizANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJC +TTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDElMCMGA1UECxMcUm9vdCBDZXJ0 +aWZpY2F0aW9uIEF1dGhvcml0eTEuMCwGA1UEAxMlUXVvVmFkaXMgUm9vdCBDZXJ0 +aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wMTAzMTkxODMzMzNaFw0yMTAzMTcxODMz +MzNaMH8xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSUw +IwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYDVQQDEyVR +dW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv2G1lVO6V/z68mcLOhrfEYBklbTRvM16z/Yp +li4kVEAkOPcahdxYTMukJ0KX0J+DisPkBgNbAKVRHnAEdOLB1Dqr1607BxgFjv2D +rOpm2RgbaIr1VxqYuvXtdj182d6UajtLF8HVj71lODqV0D1VNk7feVcxKh7YWWVJ +WCCYfqtffp/p1k3sg3Spx2zY7ilKhSoGFPlU5tPaZQeLYzcS19Dsw3sgQUSj7cug +F+FxZc4dZjH3dgEZyH0DWLaVSR2mEiboxgx24ONmy+pdpibu5cxfvWenAScOospU +xbF6lR1xHkopigPcakXBpBlebzbNw6Kwt/5cOOJSvPhEQ+aQuwIDAQABo4ICUjCC +Ak4wPQYIKwYBBQUHAQEEMTAvMC0GCCsGAQUFBzABhiFodHRwczovL29jc3AucXVv +dmFkaXNvZmZzaG9yZS5jb20wDwYDVR0TAQH/BAUwAwEB/zCCARoGA1UdIASCAREw +ggENMIIBCQYJKwYBBAG+WAABMIH7MIHUBggrBgEFBQcCAjCBxxqBxFJlbGlhbmNl +IG9uIHRoZSBRdW9WYWRpcyBSb290IENlcnRpZmljYXRlIGJ5IGFueSBwYXJ0eSBh +c3N1bWVzIGFjY2VwdGFuY2Ugb2YgdGhlIHRoZW4gYXBwbGljYWJsZSBzdGFuZGFy +ZCB0ZXJtcyBhbmQgY29uZGl0aW9ucyBvZiB1c2UsIGNlcnRpZmljYXRpb24gcHJh +Y3RpY2VzLCBhbmQgdGhlIFF1b1ZhZGlzIENlcnRpZmljYXRlIFBvbGljeS4wIgYI +KwYBBQUHAgEWFmh0dHA6Ly93d3cucXVvdmFkaXMuYm0wHQYDVR0OBBYEFItLbe3T +KbkGGew5Oanwl4Rqy+/fMIGuBgNVHSMEgaYwgaOAFItLbe3TKbkGGew5Oanwl4Rq +y+/foYGEpIGBMH8xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1p +dGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYD +VQQDEyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggQ6tlCL +MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAitQUtf70mpKnGdSk +fnIYj9lofFIk3WdvOXrEql494liwTXCYhGHoG+NpGA7O+0dQoE7/8CQfvbLO9Sf8 +7C9TqnN7Az10buYWnuulLsS/VidQK2K6vkscPFVcQR0kvoIgR13VRH56FmjffU1R +cHhXHTMe/QKZnAzNCgVPx7uOpHX6Sm2xgI4JVrmcGmD+XcHXetwReNDWXcG31a0y +mQM6isxUJTkxgXsTIlG6Rmyhu576BGxJJnSP0nPrzDCi5upZIof4l/UO/erMkqQW +xFIY6iHOsfHmhIHluqmGKPJDWl0Snawe2ajlCmqnf6CHKc/yiU3U7MXi5nrQNiOK +SnQ2+Q== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 985026699 (0x3ab6508b) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=BM, O=QuoVadis Limited, OU=Root Certification Authority, CN=QuoVadis Root Certification Authority + Validity + Not Before: Mar 19 18:33:33 2001 GMT + Not After : Mar 17 18:33:33 2021 GMT + Subject: C=BM, O=QuoVadis Limited, OU=Root Certification Authority, CN=QuoVadis Root Certification Authority + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:bf:61:b5:95:53:ba:57:fc:fa:f2:67:0b:3a:1a: + df:11:80:64:95:b4:d1:bc:cd:7a:cf:f6:29:96:2e: + 24:54:40:24:38:f7:1a:85:dc:58:4c:cb:a4:27:42: + 97:d0:9f:83:8a:c3:e4:06:03:5b:00:a5:51:1e:70: + 04:74:e2:c1:d4:3a:ab:d7:ad:3b:07:18:05:8e:fd: + 83:ac:ea:66:d9:18:1b:68:8a:f5:57:1a:98:ba:f5: + ed:76:3d:7c:d9:de:94:6a:3b:4b:17:c1:d5:8f:bd: + 65:38:3a:95:d0:3d:55:36:4e:df:79:57:31:2a:1e: + d8:59:65:49:58:20:98:7e:ab:5f:7e:9f:e9:d6:4d: + ec:83:74:a9:c7:6c:d8:ee:29:4a:85:2a:06:14:f9: + 54:e6:d3:da:65:07:8b:63:37:12:d7:d0:ec:c3:7b: + 20:41:44:a3:ed:cb:a0:17:e1:71:65:ce:1d:66:31: + f7:76:01:19:c8:7d:03:58:b6:95:49:1d:a6:12:26: + e8:c6:0c:76:e0:e3:66:cb:ea:5d:a6:26:ee:e5:cc: + 5f:bd:67:a7:01:27:0e:a2:ca:54:c5:b1:7a:95:1d: + 71:1e:4a:29:8a:03:dc:6a:45:c1:a4:19:5e:6f:36: + cd:c3:a2:b0:b7:fe:5c:38:e2:52:bc:f8:44:43:e6: + 90:bb + Exponent: 65537 (0x10001) + X509v3 extensions: + Authority Information Access: + OCSP - URI:https://ocsp.quovadisoffshore.com + + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Certificate Policies: + Policy: 1.3.6.1.4.1.8024.0.1 + User Notice: + Explicit Text: Reliance on the QuoVadis Root Certificate by any party assumes acceptance of the then applicable standard terms and conditions of use, certification practices, and the QuoVadis Certificate Policy. + CPS: http://www.quovadis.bm + + X509v3 Subject Key Identifier: + 8B:4B:6D:ED:D3:29:B9:06:19:EC:39:39:A9:F0:97:84:6A:CB:EF:DF + X509v3 Authority Key Identifier: + keyid:8B:4B:6D:ED:D3:29:B9:06:19:EC:39:39:A9:F0:97:84:6A:CB:EF:DF + DirName:/C=BM/O=QuoVadis Limited/OU=Root Certification Authority/CN=QuoVadis Root Certification Authority + serial:3A:B6:50:8B + + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + Signature Algorithm: sha1WithRSAEncryption + 8a:d4:14:b5:fe:f4:9a:92:a7:19:d4:a4:7e:72:18:8f:d9:68: + 7c:52:24:dd:67:6f:39:7a:c4:aa:5e:3d:e2:58:b0:4d:70:98: + 84:61:e8:1b:e3:69:18:0e:ce:fb:47:50:a0:4e:ff:f0:24:1f: + bd:b2:ce:f5:27:fc:ec:2f:53:aa:73:7b:03:3d:74:6e:e6:16: + 9e:eb:a5:2e:c4:bf:56:27:50:2b:62:ba:be:4b:1c:3c:55:5c: + 41:1d:24:be:82:20:47:5d:d5:44:7e:7a:16:68:df:7d:4d:51: + 70:78:57:1d:33:1e:fd:02:99:9c:0c:cd:0a:05:4f:c7:bb:8e: + a4:75:fa:4a:6d:b1:80:8e:09:56:b9:9c:1a:60:fe:5d:c1:d7: + 7a:dc:11:78:d0:d6:5d:c1:b7:d5:ad:32:99:03:3a:8a:cc:54: + 25:39:31:81:7b:13:22:51:ba:46:6c:a1:bb:9e:fa:04:6c:49: + 26:74:8f:d2:73:eb:cc:30:a2:e6:ea:59:22:87:f8:97:f5:0e: + fd:ea:cc:92:a4:16:c4:52:18:ea:21:ce:b1:f1:e6:84:81:e5: + ba:a9:86:28:f2:43:5a:5d:12:9d:ac:1e:d9:a8:e5:0a:6a:a7: + 7f:a0:87:29:cf:f2:89:4d:d4:ec:c5:e2:e6:7a:d0:36:23:8a: + 4a:74:36:f9 +SHA1 Fingerprint=DE:3F:40:BD:50:93:D3:9B:6C:60:F6:DA:BC:07:62:01:00:89:76:C9 diff --git a/system/etc/security/cacerts/5e4e69e7.0 b/system/etc/security/cacerts/5e4e69e7.0 new file mode 100644 index 0000000000000000000000000000000000000000..43b6bdaa481289b8d14ed4345d7ffa2afa3d919a --- /dev/null +++ b/system/etc/security/cacerts/5e4e69e7.0 @@ -0,0 +1,61 @@ +-----BEGIN CERTIFICATE----- +MIIDhDCCAwqgAwIBAgIQL4D+I4wOIg9IZxIokYesszAKBggqhkjOPQQDAzCByjEL +MAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZW +ZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2ln +biwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJp +U2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9y +aXR5IC0gRzQwHhcNMDcxMTA1MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCByjELMAkG +A1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJp +U2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2lnbiwg +SW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2ln +biBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5 +IC0gRzQwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAASnVnp8Utpkmw4tXNherJI9/gHm +GUo9FANL+mAnINmDiWn6VMaaGF5VKmTeBvaNSjutEDxlPZCIBIngMGGzrl0Bp3ve +fLK+ymVhAIau2o970ImtTR1ZmkGxvEeA3J5iw/mjgbIwga8wDwYDVR0TAQH/BAUw +AwEB/zAOBgNVHQ8BAf8EBAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJ +aW1hZ2UvZ2lmMCEwHzAHBgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYj +aHR0cDovL2xvZ28udmVyaXNpZ24uY29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFLMW +kf3upm7ktS5Jj4d4gYDs5bG1MAoGCCqGSM49BAMDA2gAMGUCMGYhDBgmYFo4e1ZC +4Kf8NoRRkSAsdk1DPcQdhCPQrNZ8NQbOzWm9kA3bbEhCHQ6qQgIxAJw9SDkjOVga +FRJZap7v1VmyHVIsmXHNxynfGyphe3HR3vPA5Q06Sqotp9iGKt0uEA== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 2f:80:fe:23:8c:0e:22:0f:48:67:12:28:91:87:ac:b3 + Signature Algorithm: ecdsa-with-SHA384 + Issuer: C=US, O=VeriSign, Inc., OU=VeriSign Trust Network, OU=(c) 2007 VeriSign, Inc. - For authorized use only, CN=VeriSign Class 3 Public Primary Certification Authority - G4 + Validity + Not Before: Nov 5 00:00:00 2007 GMT + Not After : Jan 18 23:59:59 2038 GMT + Subject: C=US, O=VeriSign, Inc., OU=VeriSign Trust Network, OU=(c) 2007 VeriSign, Inc. - For authorized use only, CN=VeriSign Class 3 Public Primary Certification Authority - G4 + Subject Public Key Info: + Public Key Algorithm: id-ecPublicKey + Public-Key: (384 bit) + pub: + 04:a7:56:7a:7c:52:da:64:9b:0e:2d:5c:d8:5e:ac: + 92:3d:fe:01:e6:19:4a:3d:14:03:4b:fa:60:27:20: + d9:83:89:69:fa:54:c6:9a:18:5e:55:2a:64:de:06: + f6:8d:4a:3b:ad:10:3c:65:3d:90:88:04:89:e0:30: + 61:b3:ae:5d:01:a7:7b:de:7c:b2:be:ca:65:61:00: + 86:ae:da:8f:7b:d0:89:ad:4d:1d:59:9a:41:b1:bc: + 47:80:dc:9e:62:c3:f9 + ASN1 OID: secp384r1 + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + 1.3.6.1.5.5.7.1.12: + 0_.].[0Y0W0U..image/gif0!0.0...+..............k...j.H.,{..0%.#http://logo.verisign.com/vslogo.gif + X509v3 Subject Key Identifier: + B3:16:91:FD:EE:A6:6E:E4:B5:2E:49:8F:87:78:81:80:EC:E5:B1:B5 + Signature Algorithm: ecdsa-with-SHA384 + 30:65:02:30:66:21:0c:18:26:60:5a:38:7b:56:42:e0:a7:fc: + 36:84:51:91:20:2c:76:4d:43:3d:c4:1d:84:23:d0:ac:d6:7c: + 35:06:ce:cd:69:bd:90:0d:db:6c:48:42:1d:0e:aa:42:02:31: + 00:9c:3d:48:39:23:39:58:1a:15:12:59:6a:9e:ef:d5:59:b2: + 1d:52:2c:99:71:cd:c7:29:df:1b:2a:61:7b:71:d1:de:f3:c0: + e5:0d:3a:4a:aa:2d:a7:d8:86:2a:dd:2e:10 +SHA1 Fingerprint=22:D5:D8:DF:8F:02:31:D1:8D:F7:9D:B7:CF:8A:2D:64:C9:3F:6C:3A diff --git a/system/etc/security/cacerts/5f47b495.0 b/system/etc/security/cacerts/5f47b495.0 new file mode 100644 index 0000000000000000000000000000000000000000..87cd7150ca7ee3bb7008daaa9a5367d8a5022d9c --- /dev/null +++ b/system/etc/security/cacerts/5f47b495.0 @@ -0,0 +1,124 @@ +-----BEGIN CERTIFICATE----- +MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UE +BhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8w +MzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290 +IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDkyMjExMjIwMlowazELMAkGA1UEBhMC +SVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1 +ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENB +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNv +UTufClrJwkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX +4ay8IMKx4INRimlNAJZaby/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9 +KK3giq0itFZljoZUj5NDKd45RnijMCO6zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/ +gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1fYVEiVRvjRuPjPdA1Yprb +rxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2oxgkg4YQ +51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2F +be8lEfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxe +KF+w6D9Fz8+vm2/7hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4F +v6MGn8i1zeQf1xcGDXqVdFUNaBr8EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbn +fpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5jF66CyCU3nuDuP/jVo23Eek7 +jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLYiDrIn3hm7Ynz +ezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt +ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQAL +e3KHwGCmSUyIWOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70 +jsNjLiNmsGe+b7bAEzlgqqI0JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDz +WochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKxK3JCaKygvU5a2hi/a5iB0P2avl4V +SM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+Xlff1ANATIGk0k9j +pwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC4yyX +X04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+Ok +fcvHlXHo2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7R +K4X9p2jIugErsWx0Hbhzlefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btU +ZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXemOR/qnuOf0GZvBeyqdn6/axag67XH/JJU +LysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9vwGYT7JZVEc+NHt4bVaT +LnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 6271844772424770508 (0x570a119742c4e3cc) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=IT, L=Milan, O=Actalis S.p.A./03358520967, CN=Actalis Authentication Root CA + Validity + Not Before: Sep 22 11:22:02 2011 GMT + Not After : Sep 22 11:22:02 2030 GMT + Subject: C=IT, L=Milan, O=Actalis S.p.A./03358520967, CN=Actalis Authentication Root CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:a7:c6:c4:a5:29:a4:2c:ef:e5:18:c5:b0:50:a3: + 6f:51:3b:9f:0a:5a:c9:c2:48:38:0a:c2:1c:a0:18: + 7f:91:b5:87:b9:40:3f:dd:1d:68:1f:08:83:d5:2d: + 1e:88:a0:f8:8f:56:8f:6d:99:02:92:90:16:d5:5f: + 08:6c:89:d7:e1:ac:bc:20:c2:b1:e0:83:51:8a:69: + 4d:00:96:5a:6f:2f:c0:44:7e:a3:0e:e4:91:cd:58: + ee:dc:fb:c7:1e:45:47:dd:27:b9:08:01:9f:a6:21: + 1d:f5:41:2d:2f:4c:fd:28:ad:e0:8a:ad:22:b4:56: + 65:8e:86:54:8f:93:43:29:de:39:46:78:a3:30:23: + ba:cd:f0:7d:13:57:c0:5d:d2:83:6b:48:4c:c4:ab: + 9f:80:5a:5b:3a:bd:c9:a7:22:3f:80:27:33:5b:0e: + b7:8a:0c:5d:07:37:08:cb:6c:d2:7a:47:22:44:35: + c5:cc:cc:2e:8e:dd:2a:ed:b7:7d:66:0d:5f:61:51: + 22:55:1b:e3:46:e3:e3:3d:d0:35:62:9a:db:af:14: + c8:5b:a1:cc:89:1b:e1:30:26:fc:a0:9b:1f:81:a7: + 47:1f:04:eb:a3:39:92:06:9f:99:d3:bf:d3:ea:4f: + 50:9c:19:fe:96:87:1e:3c:65:f6:a3:18:24:83:86: + 10:e7:54:3e:a8:3a:76:24:4f:81:21:c5:e3:0f:02: + f8:93:94:47:20:bb:fe:d4:0e:d3:68:b9:dd:c4:7a: + 84:82:e3:53:54:79:dd:db:9c:d2:f2:07:9b:2e:b6: + bc:3e:ed:85:6d:ef:25:11:f2:97:1a:42:61:f7:4a: + 97:e8:8b:b1:10:07:fa:65:81:b2:a2:39:cf:f7:3c: + ff:18:fb:c6:f1:5a:8b:59:e2:02:ac:7b:92:d0:4e: + 14:4f:59:45:f6:0c:5e:28:5f:b0:e8:3f:45:cf:cf: + af:9b:6f:fb:84:d3:77:5a:95:6f:ac:94:84:9e:ee: + bc:c0:4a:8f:4a:93:f8:44:21:e2:31:45:61:50:4e: + 10:d8:e3:35:7c:4c:19:b4:de:05:bf:a3:06:9f:c8: + b5:cd:e4:1f:d7:17:06:0d:7a:95:74:55:0d:68:1a: + fc:10:1b:62:64:9d:6d:e0:95:a0:c3:94:07:57:0d: + 14:e6:bd:05:fb:b8:9f:e6:df:8b:e2:c6:e7:7e:96: + f6:53:c5:80:34:50:28:58:f0:12:50:71:17:30:ba: + e6:78:63:bc:f4:b2:ad:9b:2b:b2:fe:e1:39:8c:5e: + ba:0b:20:94:de:7b:83:b8:ff:e3:56:8d:b7:11:e9: + 3b:8c:f2:b1:c1:5d:9d:a4:0b:4c:2b:d9:b2:18:f5: + b5:9f:4b + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 52:D8:88:3A:C8:9F:78:66:ED:89:F3:7B:38:70:94:C9:02:02:36:D0 + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Authority Key Identifier: + keyid:52:D8:88:3A:C8:9F:78:66:ED:89:F3:7B:38:70:94:C9:02:02:36:D0 + + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + Signature Algorithm: sha256WithRSAEncryption + 0b:7b:72:87:c0:60:a6:49:4c:88:58:e6:1d:88:f7:14:64:48: + a6:d8:58:0a:0e:4f:13:35:df:35:1d:d4:ed:06:31:c8:81:3e: + 6a:d5:dd:3b:1a:32:ee:90:3d:11:d2:2e:f4:8e:c3:63:2e:23: + 66:b0:67:be:6f:b6:c0:13:39:60:aa:a2:34:25:93:75:52:de: + a7:9d:ad:0e:87:89:52:71:6a:16:3c:19:1d:83:f8:9a:29:65: + be:f4:3f:9a:d9:f0:f3:5a:87:21:71:80:4d:cb:e0:38:9b:3f: + bb:fa:e0:30:4d:cf:86:d3:65:10:19:18:d1:97:02:b1:2b:72: + 42:68:ac:a0:bd:4e:5a:da:18:bf:6b:98:81:d0:fd:9a:be:5e: + 15:48:cd:11:15:b9:c0:29:5c:b4:e8:88:f7:3e:36:ae:b7:62: + fd:1e:62:de:70:78:10:1c:48:5b:da:bc:a4:38:ba:67:ed:55: + 3e:5e:57:df:d4:03:40:4c:81:a4:d2:4f:63:a7:09:42:09:14: + fc:00:a9:c2:80:73:4f:2e:c0:40:d9:11:7b:48:ea:7a:02:c0: + d3:eb:28:01:26:58:74:c1:c0:73:22:6d:93:95:fd:39:7d:bb: + 2a:e3:f6:82:e3:2c:97:5f:4e:1f:91:94:fa:fe:2c:a3:d8:76: + 1a:b8:4d:b2:38:4f:9b:fa:1d:48:60:79:26:e2:f3:fd:a9:d0: + 9a:e8:70:8f:49:7a:d6:e5:bd:0a:0e:db:2d:f3:8d:bf:eb:e3: + a4:7d:cb:c7:95:71:e8:da:a3:7c:c5:c2:f8:74:92:04:1b:86: + ac:a4:22:53:40:b6:ac:fe:4c:76:cf:fb:94:32:c0:35:9f:76: + 3f:6e:e5:90:6e:a0:a6:26:a2:b8:2c:be:d1:2b:85:fd:a7:68: + c8:ba:01:2b:b1:6c:74:1d:b8:73:95:e7:ee:b7:c7:25:f0:00: + 4c:00:b2:7e:b6:0b:8b:1c:f3:c0:50:9e:25:b9:e0:08:de:36: + 66:ff:37:a5:d1:bb:54:64:2c:c9:27:b5:4b:92:7e:65:ff:d3: + 2d:e1:b9:4e:bc:7f:a4:41:21:90:41:77:a6:39:1f:ea:9e:e3: + 9f:d0:66:6f:05:ec:aa:76:7e:bf:6b:16:a0:eb:b5:c7:fc:92: + 54:2f:2b:11:27:25:37:78:4c:51:6a:b0:f3:cc:58:5d:14:f1: + 6a:48:15:ff:c2:07:b6:b1:8d:0f:8e:5c:50:46:b3:3d:bf:01: + 98:4f:b2:59:54:47:3e:34:7b:78:6d:56:93:2e:73:ea:66:28: + 78:cd:1d:14:bf:a0:8f:2f:2e:b8:2e:8e:f2:14:8a:cc:e9:b5: + 7c:fb:6c:9d:0c:a5:e1:96 +SHA1 Fingerprint=F3:73:B3:87:06:5A:28:84:8A:F2:F3:4A:CE:19:2B:DD:C7:8E:9C:AC diff --git a/system/etc/security/cacerts/60afe812.0 b/system/etc/security/cacerts/60afe812.0 new file mode 100644 index 0000000000000000000000000000000000000000..f673145cabb4f0d1450ab9af1516698fcd9ad202 --- /dev/null +++ b/system/etc/security/cacerts/60afe812.0 @@ -0,0 +1,81 @@ +-----BEGIN CERTIFICATE----- +MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQG +EwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3 +MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNl +cnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBBcmFueSAoQ2xhc3MgR29sZCkgRsWR +dGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgxMjA2MTUwODIxWjCB +pzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxOZXRM +b2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlm +aWNhdGlvbiBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNz +IEdvbGQpIEbFkXRhbsO6c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAxCRec75LbRTDofTjl5Bu0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrT +lF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw/HpYzY6b7cNGbIRwXdrz +AZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAkH3B5r9s5 +VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRG +ILdwfzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2 +BJtr+UBdADTHLpl1neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAG +AQH/AgEEMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2M +U9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwWqZw8UQCgwBEIBaeZ5m8BiFRh +bvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTtaYtOUZcTh5m2C ++C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC +bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2F +uLjbvrW5KfnaNwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2 +XjG4Kvte9nHfRCaexOYNkbQudZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 80544274841616 (0x49412ce40010) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=HU, L=Budapest, O=NetLock Kft., OU=Tan\xC3\xBAs\xC3\xADtv\xC3\xA1nykiad\xC3\xB3k (Certification Services), CN=NetLock Arany (Class Gold) F\xC5\x91tan\xC3\xBAs\xC3\xADtv\xC3\xA1ny + Validity + Not Before: Dec 11 15:08:21 2008 GMT + Not After : Dec 6 15:08:21 2028 GMT + Subject: C=HU, L=Budapest, O=NetLock Kft., OU=Tan\xC3\xBAs\xC3\xADtv\xC3\xA1nykiad\xC3\xB3k (Certification Services), CN=NetLock Arany (Class Gold) F\xC5\x91tan\xC3\xBAs\xC3\xADtv\xC3\xA1ny + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:c4:24:5e:73:be:4b:6d:14:c3:a1:f4:e3:97:90: + 6e:d2:30:45:1e:3c:ee:67:d9:64:e0:1a:8a:7f:ca: + 30:ca:83:e3:20:c1:e3:f4:3a:d3:94:5f:1a:7c:5b: + 6d:bf:30:4f:84:27:f6:9f:1f:49:bc:c6:99:0a:90: + f2:0f:f5:7f:43:84:37:63:51:8b:7a:a5:70:fc:7a: + 58:cd:8e:9b:ed:c3:46:6c:84:70:5d:da:f3:01:90: + 23:fc:4e:30:a9:7e:e1:27:63:e7:ed:64:3c:a0:b8: + c9:33:63:fe:16:90:ff:b0:b8:fd:d7:a8:c0:c0:94: + 43:0b:b6:d5:59:a6:9e:56:d0:24:1f:70:79:af:db: + 39:54:0d:65:75:d9:15:41:94:01:af:5e:ec:f6:8d: + f1:ff:ad:64:fe:20:9a:d7:5c:eb:fe:a6:1f:08:64: + a3:8b:76:55:ad:1e:3b:28:60:2e:87:25:e8:aa:af: + 1f:c6:64:46:20:b7:70:7f:3c:de:48:db:96:53:b7: + 39:77:e4:1a:e2:c7:16:84:76:97:5b:2f:bb:19:15: + 85:f8:69:85:f5:99:a7:a9:f2:34:a7:a9:b6:a6:03: + fc:6f:86:3d:54:7c:76:04:9b:6b:f9:40:5d:00:34: + c7:2e:99:75:9d:e5:88:03:aa:4d:f8:03:d2:42:76: + c0:1b + Exponent: 43147 (0xa88b) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE, pathlen:4 + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + CC:FA:67:93:F0:B6:B8:D0:A5:C0:1E:F3:53:FD:8C:53:DF:83:D7:96 + Signature Algorithm: sha256WithRSAEncryption + ab:7f:ee:1c:16:a9:9c:3c:51:00:a0:c0:11:08:05:a7:99:e6: + 6f:01:88:54:61:6e:f1:b9:18:ad:4a:ad:fe:81:40:23:94:2f: + fb:75:7c:2f:28:4b:62:24:81:82:0b:f5:61:f1:1c:6e:b8:61: + 38:eb:81:fa:62:a1:3b:5a:62:d3:94:65:c4:e1:e6:6d:82:f8: + 2f:25:70:b2:21:26:c1:72:51:1f:8c:2c:c3:84:90:c3:5a:8f: + ba:cf:f4:a7:65:a5:eb:98:d1:fb:05:b2:46:75:15:23:6a:6f: + 85:63:30:80:f0:d5:9e:1f:29:1c:c2:6c:b0:50:59:5d:90:5b: + 3b:a8:0d:30:cf:bf:7d:7f:ce:f1:9d:83:bd:c9:46:6e:20:a6: + f9:61:51:ba:21:2f:7b:be:a5:15:63:a1:d4:95:87:f1:9e:b9: + f3:89:f3:3d:85:b8:b8:db:be:b5:b9:29:f9:da:37:05:00:49: + 94:03:84:44:e7:bf:43:31:cf:75:8b:25:d1:f4:a6:64:f5:92: + f6:ab:05:eb:3d:e9:a5:0b:36:62:da:cc:06:5f:36:8b:b6:5e: + 31:b8:2a:fb:5e:f6:71:df:44:26:9e:c4:e6:0d:91:b4:2e:75: + 95:80:51:6a:4b:30:a6:b0:62:a1:93:f1:9b:d8:ce:c4:63:75: + 3f:59:47:b1 +SHA1 Fingerprint=06:08:3F:59:3F:15:A1:04:A0:69:A4:6B:A9:03:D0:06:B7:97:09:91 diff --git a/system/etc/security/cacerts/6187b673.0 b/system/etc/security/cacerts/6187b673.0 new file mode 100644 index 0000000000000000000000000000000000000000..7aa79829285b9b2dd1d46e096c071c35f5c85e97 --- /dev/null +++ b/system/etc/security/cacerts/6187b673.0 @@ -0,0 +1,120 @@ +-----BEGIN CERTIFICATE----- +MIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAw +TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh +cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4 +WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJu +ZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBY +MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54rVygc +h77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+ +0TM8ukj13Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6U +A5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sW +T8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyH +B5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UC +B5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUv +KBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWn +OlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTn +jh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbw +qHyGO0aoSCqI3Haadr8faqU9GY/rOPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CI +rU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY9umbbjANBgkq +hkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZL +ubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ +3BebYhtF8GaV0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KK +NFtY2PwByVS5uCbMiogziUwthDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5 +ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJwTdwJx4nLCgdNbOhdjsnvzqvHu7Ur +TkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nxe5AW0wdeRlN8NwdC +jNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZAJzVc +oyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq +4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPA +mRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57d +emyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCc= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 82:10:cf:b0:d2:40:e3:59:44:63:e0:bb:63:82:8b:00 + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=US, O=Internet Security Research Group, CN=ISRG Root X1 + Validity + Not Before: Jun 4 11:04:38 2015 GMT + Not After : Jun 4 11:04:38 2035 GMT + Subject: C=US, O=Internet Security Research Group, CN=ISRG Root X1 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:ad:e8:24:73:f4:14:37:f3:9b:9e:2b:57:28:1c: + 87:be:dc:b7:df:38:90:8c:6e:3c:e6:57:a0:78:f7: + 75:c2:a2:fe:f5:6a:6e:f6:00:4f:28:db:de:68:86: + 6c:44:93:b6:b1:63:fd:14:12:6b:bf:1f:d2:ea:31: + 9b:21:7e:d1:33:3c:ba:48:f5:dd:79:df:b3:b8:ff: + 12:f1:21:9a:4b:c1:8a:86:71:69:4a:66:66:6c:8f: + 7e:3c:70:bf:ad:29:22:06:f3:e4:c0:e6:80:ae:e2: + 4b:8f:b7:99:7e:94:03:9f:d3:47:97:7c:99:48:23: + 53:e8:38:ae:4f:0a:6f:83:2e:d1:49:57:8c:80:74: + b6:da:2f:d0:38:8d:7b:03:70:21:1b:75:f2:30:3c: + fa:8f:ae:dd:da:63:ab:eb:16:4f:c2:8e:11:4b:7e: + cf:0b:e8:ff:b5:77:2e:f4:b2:7b:4a:e0:4c:12:25: + 0c:70:8d:03:29:a0:e1:53:24:ec:13:d9:ee:19:bf: + 10:b3:4a:8c:3f:89:a3:61:51:de:ac:87:07:94:f4: + 63:71:ec:2e:e2:6f:5b:98:81:e1:89:5c:34:79:6c: + 76:ef:3b:90:62:79:e6:db:a4:9a:2f:26:c5:d0:10: + e1:0e:de:d9:10:8e:16:fb:b7:f7:a8:f7:c7:e5:02: + 07:98:8f:36:08:95:e7:e2:37:96:0d:36:75:9e:fb: + 0e:72:b1:1d:9b:bc:03:f9:49:05:d8:81:dd:05:b4: + 2a:d6:41:e9:ac:01:76:95:0a:0f:d8:df:d5:bd:12: + 1f:35:2f:28:17:6c:d2:98:c1:a8:09:64:77:6e:47: + 37:ba:ce:ac:59:5e:68:9d:7f:72:d6:89:c5:06:41: + 29:3e:59:3e:dd:26:f5:24:c9:11:a7:5a:a3:4c:40: + 1f:46:a1:99:b5:a7:3a:51:6e:86:3b:9e:7d:72:a7: + 12:05:78:59:ed:3e:51:78:15:0b:03:8f:8d:d0:2f: + 05:b2:3e:7b:4a:1c:4b:73:05:12:fc:c6:ea:e0:50: + 13:7c:43:93:74:b3:ca:74:e7:8e:1f:01:08:d0:30: + d4:5b:71:36:b4:07:ba:c1:30:30:5c:48:b7:82:3b: + 98:a6:7d:60:8a:a2:a3:29:82:cc:ba:bd:83:04:1b: + a2:83:03:41:a1:d6:05:f1:1b:c2:b6:f0:a8:7c:86: + 3b:46:a8:48:2a:88:dc:76:9a:76:bf:1f:6a:a5:3d: + 19:8f:eb:38:f3:64:de:c8:2b:0d:0a:28:ff:f7:db: + e2:15:42:d4:22:d0:27:5d:e1:79:fe:18:e7:70:88: + ad:4e:e6:d9:8b:3a:c6:dd:27:51:6e:ff:bc:64:f5: + 33:43:4f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 79:B4:59:E6:7B:B6:E5:E4:01:73:80:08:88:C8:1A:58:F6:E9:9B:6E + Signature Algorithm: sha256WithRSAEncryption + 55:1f:58:a9:bc:b2:a8:50:d0:0c:b1:d8:1a:69:20:27:29:08: + ac:61:75:5c:8a:6e:f8:82:e5:69:2f:d5:f6:56:4b:b9:b8:73: + 10:59:d3:21:97:7e:e7:4c:71:fb:b2:d2:60:ad:39:a8:0b:ea: + 17:21:56:85:f1:50:0e:59:eb:ce:e0:59:e9:ba:c9:15:ef:86: + 9d:8f:84:80:f6:e4:e9:91:90:dc:17:9b:62:1b:45:f0:66:95: + d2:7c:6f:c2:ea:3b:ef:1f:cf:cb:d6:ae:27:f1:a9:b0:c8:ae: + fd:7d:7e:9a:fa:22:04:eb:ff:d9:7f:ea:91:2b:22:b1:17:0e: + 8f:f2:8a:34:5b:58:d8:fc:01:c9:54:b9:b8:26:cc:8a:88:33: + 89:4c:2d:84:3c:82:df:ee:96:57:05:ba:2c:bb:f7:c4:b7:c7: + 4e:3b:82:be:31:c8:22:73:73:92:d1:c2:80:a4:39:39:10:33: + 23:82:4c:3c:9f:86:b2:55:98:1d:be:29:86:8c:22:9b:9e:e2: + 6b:3b:57:3a:82:70:4d:dc:09:c7:89:cb:0a:07:4d:6c:e8:5d: + 8e:c9:ef:ce:ab:c7:bb:b5:2b:4e:45:d6:4a:d0:26:cc:e5:72: + ca:08:6a:a5:95:e3:15:a1:f7:a4:ed:c9:2c:5f:a5:fb:ff:ac: + 28:02:2e:be:d7:7b:bb:e3:71:7b:90:16:d3:07:5e:46:53:7c: + 37:07:42:8c:d3:c4:96:9c:d5:99:b5:2a:e0:95:1a:80:48:ae: + 4c:39:07:ce:cc:47:a4:52:95:2b:ba:b8:fb:ad:d2:33:53:7d: + e5:1d:4d:6d:d5:a1:b1:c7:42:6f:e6:40:27:35:5c:a3:28:b7: + 07:8d:e7:8d:33:90:e7:23:9f:fb:50:9c:79:6c:46:d5:b4:15: + b3:96:6e:7e:9b:0c:96:3a:b8:52:2d:3f:d6:5b:e1:fb:08:c2: + 84:fe:24:a8:a3:89:da:ac:6a:e1:18:2a:b1:a8:43:61:5b:d3: + 1f:dc:3b:8d:76:f2:2d:e8:8d:75:df:17:33:6c:3d:53:fb:7b: + cb:41:5f:ff:dc:a2:d0:61:38:e1:96:b8:ac:5d:8b:37:d7:75: + d5:33:c0:99:11:ae:9d:41:c1:72:75:84:be:02:41:42:5f:67: + 24:48:94:d1:9b:27:be:07:3f:b9:b8:4f:81:74:51:e1:7a:b7: + ed:9d:23:e2:be:e0:d5:28:04:13:3c:31:03:9e:dd:7a:6c:8f: + c6:07:18:c6:7f:de:47:8e:3f:28:9e:04:06:cf:a5:54:34:77: + bd:ec:89:9b:e9:17:43:df:5b:db:5f:fe:8e:1e:57:a2:cd:40: + 9d:7e:62:22:da:de:18:27 +SHA1 Fingerprint=CA:BD:2A:79:A1:07:6A:31:F2:1D:25:36:35:CB:03:9D:43:29:A5:E8 diff --git a/system/etc/security/cacerts/63a2c897.0 b/system/etc/security/cacerts/63a2c897.0 new file mode 100644 index 0000000000000000000000000000000000000000..46f7b140d92e49bea8afff456150e1f458f5ef0d --- /dev/null +++ b/system/etc/security/cacerts/63a2c897.0 @@ -0,0 +1,119 @@ +-----BEGIN CERTIFICATE----- +MIIFODCCAyCgAwIBAgIRAJW+FqD3LkbxezmCcvqLzZYwDQYJKoZIhvcNAQEFBQAw +NzEUMBIGA1UECgwLVGVsaWFTb25lcmExHzAdBgNVBAMMFlRlbGlhU29uZXJhIFJv +b3QgQ0EgdjEwHhcNMDcxMDE4MTIwMDUwWhcNMzIxMDE4MTIwMDUwWjA3MRQwEgYD +VQQKDAtUZWxpYVNvbmVyYTEfMB0GA1UEAwwWVGVsaWFTb25lcmEgUm9vdCBDQSB2 +MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMK+6yfwIaPzaSZVfp3F +VRaRXP3vIb9TgHot0pGMYzHw7CTww6XScnwQbfQ3t+XmfHnqjLWCi65ItqwA3GV1 +7CpNX8GH9SBlK4GoRz6JI5UwFpB/6FcHSOcZrr9FZ7E3GwYq/t75rH2D+1665I+X +Z75Ljo1kB1c4VWk0Nj0TSO9P4tNmHqTPGrdeNjPUtAa9GAH9d4RQAEX1jF3oI7x+ +/jXh7VB7qTCNGdMJjmhnXb88lxhTuylixcpecsHHltTbLaC0H2kD7OriUPEMPPCs +81Mt8Bz17Ww5OXOAFshSsCPN4D7c3TxHoLs1iuKYaIu+5b9y7tL6pe0S7fyYGKkm +dtwoSxAgHNN/Fnct7W+A90m7UwW7XWjH1Mh1Fj+JWov3F0fUTPHSiXk+TT2YqGHe +Oh7S+F4D4MHJHIzTjU3TlTazN19jY5szFPAtJmtTfImMMsJu7D0hADnJoWjiUIMu +sDor8zagrC/kb2HCUQk5PotTubtn2txTuXZZNp1D5SDgPTJghSJRt8czu90VL6R4 +pgd7gUY2BIbdeTXHlSw7sKMXNeVzH7RcWe/a6hBle3rQf5+ztCo3O3CLm1u5K7fs +slESl1MpWtTwEhDcTwK7EpIvYtQ/aUN8Ddb8WHUBiJ1YFkveupD/RwGJBmr2X7KQ +arMCpgKIv7NHfirZ1fpoeDVNAgMBAAGjPzA9MA8GA1UdEwEB/wQFMAMBAf8wCwYD +VR0PBAQDAgEGMB0GA1UdDgQWBBTwj1k4ALP1j5qWDNXr+nuqF+gTEjANBgkqhkiG +9w0BAQUFAAOCAgEAvuRcYk4k9AwI//DTDGjkk0kiP0Qnb7tt3oNmzqjMDfz1mgbl +dxSR651Be5kqhOX//CHBXfDkH1e3damhXwIm/9fH907eT/j3HEbAek9ALCI18Bmx +0GtnLLCo4MBANzX2hFxc469CeP6nyQ1Q6g2EdvZR74NTxnr/DlZJLo961gzmJ1Tj +TQpgcmLNkQfWpb/ImWvtxBnmq0wROMVvMeJuScg/doAmAyYp4Db29iBT4xdwNBed +Y2gea+zDTYa4EzAvXUYNR0PVG6pZDrlcjQZIrXSHX8f8MVRBE+LHIQ6e4B4N4cB7 +Q4WQxYpYxmUKeFfyxiMPAdkgS94P+5KFdSpcc41teyWRyu5FrgZLAMzTsVlQ2jqI +OylDRl6XK1TOU2+NSueW+r9xDkKLfP0ooNBIytrEgUy7onOTJsjrDNYmiLbAJM+7 +vVvrdX3pCI6GMyx5dwlppYn8s3CQh3aP0yK7Qs69cwsgJirQmz1wHiRszYd2qReW +t88NkvuOGKmYSdGe/mBEciG5Ge3C9THxOUiIkCR1VBatzvT4aRRkOfujuLpwQMcn +HL/EVlP6Y2XQ8xwOFvVrhlhNGNTkDY6lnVuR3HYkUD/GKvvZt5y11ubQ2egZixVx +SK236thZiNSQvxaz2emsWWFUyBy6ysHK4bkgTI86k4mloMy/0/Z1pHWWbVY= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 95:be:16:a0:f7:2e:46:f1:7b:39:82:72:fa:8b:cd:96 + Signature Algorithm: sha1WithRSAEncryption + Issuer: O=TeliaSonera, CN=TeliaSonera Root CA v1 + Validity + Not Before: Oct 18 12:00:50 2007 GMT + Not After : Oct 18 12:00:50 2032 GMT + Subject: O=TeliaSonera, CN=TeliaSonera Root CA v1 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:c2:be:eb:27:f0:21:a3:f3:69:26:55:7e:9d:c5: + 55:16:91:5c:fd:ef:21:bf:53:80:7a:2d:d2:91:8c: + 63:31:f0:ec:24:f0:c3:a5:d2:72:7c:10:6d:f4:37: + b7:e5:e6:7c:79:ea:8c:b5:82:8b:ae:48:b6:ac:00: + dc:65:75:ec:2a:4d:5f:c1:87:f5:20:65:2b:81:a8: + 47:3e:89:23:95:30:16:90:7f:e8:57:07:48:e7:19: + ae:bf:45:67:b1:37:1b:06:2a:fe:de:f9:ac:7d:83: + fb:5e:ba:e4:8f:97:67:be:4b:8e:8d:64:07:57:38: + 55:69:34:36:3d:13:48:ef:4f:e2:d3:66:1e:a4:cf: + 1a:b7:5e:36:33:d4:b4:06:bd:18:01:fd:77:84:50: + 00:45:f5:8c:5d:e8:23:bc:7e:fe:35:e1:ed:50:7b: + a9:30:8d:19:d3:09:8e:68:67:5d:bf:3c:97:18:53: + bb:29:62:c5:ca:5e:72:c1:c7:96:d4:db:2d:a0:b4: + 1f:69:03:ec:ea:e2:50:f1:0c:3c:f0:ac:f3:53:2d: + f0:1c:f5:ed:6c:39:39:73:80:16:c8:52:b0:23:cd: + e0:3e:dc:dd:3c:47:a0:bb:35:8a:e2:98:68:8b:be: + e5:bf:72:ee:d2:fa:a5:ed:12:ed:fc:98:18:a9:26: + 76:dc:28:4b:10:20:1c:d3:7f:16:77:2d:ed:6f:80: + f7:49:bb:53:05:bb:5d:68:c7:d4:c8:75:16:3f:89: + 5a:8b:f7:17:47:d4:4c:f1:d2:89:79:3e:4d:3d:98: + a8:61:de:3a:1e:d2:f8:5e:03:e0:c1:c9:1c:8c:d3: + 8d:4d:d3:95:36:b3:37:5f:63:63:9b:33:14:f0:2d: + 26:6b:53:7c:89:8c:32:c2:6e:ec:3d:21:00:39:c9: + a1:68:e2:50:83:2e:b0:3a:2b:f3:36:a0:ac:2f:e4: + 6f:61:c2:51:09:39:3e:8b:53:b9:bb:67:da:dc:53: + b9:76:59:36:9d:43:e5:20:e0:3d:32:60:85:22:51: + b7:c7:33:bb:dd:15:2f:a4:78:a6:07:7b:81:46:36: + 04:86:dd:79:35:c7:95:2c:3b:b0:a3:17:35:e5:73: + 1f:b4:5c:59:ef:da:ea:10:65:7b:7a:d0:7f:9f:b3: + b4:2a:37:3b:70:8b:9b:5b:b9:2b:b7:ec:b2:51:12: + 97:53:29:5a:d4:f0:12:10:dc:4f:02:bb:12:92:2f: + 62:d4:3f:69:43:7c:0d:d6:fc:58:75:01:88:9d:58: + 16:4b:de:ba:90:ff:47:01:89:06:6a:f6:5f:b2:90: + 6a:b3:02:a6:02:88:bf:b3:47:7e:2a:d9:d5:fa:68: + 78:35:4d + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + F0:8F:59:38:00:B3:F5:8F:9A:96:0C:D5:EB:FA:7B:AA:17:E8:13:12 + Signature Algorithm: sha1WithRSAEncryption + be:e4:5c:62:4e:24:f4:0c:08:ff:f0:d3:0c:68:e4:93:49:22: + 3f:44:27:6f:bb:6d:de:83:66:ce:a8:cc:0d:fc:f5:9a:06:e5: + 77:14:91:eb:9d:41:7b:99:2a:84:e5:ff:fc:21:c1:5d:f0:e4: + 1f:57:b7:75:a9:a1:5f:02:26:ff:d7:c7:f7:4e:de:4f:f8:f7: + 1c:46:c0:7a:4f:40:2c:22:35:f0:19:b1:d0:6b:67:2c:b0:a8: + e0:c0:40:37:35:f6:84:5c:5c:e3:af:42:78:fe:a7:c9:0d:50: + ea:0d:84:76:f6:51:ef:83:53:c6:7a:ff:0e:56:49:2e:8f:7a: + d6:0c:e6:27:54:e3:4d:0a:60:72:62:cd:91:07:d6:a5:bf:c8: + 99:6b:ed:c4:19:e6:ab:4c:11:38:c5:6f:31:e2:6e:49:c8:3f: + 76:80:26:03:26:29:e0:36:f6:f6:20:53:e3:17:70:34:17:9d: + 63:68:1e:6b:ec:c3:4d:86:b8:13:30:2f:5d:46:0d:47:43:d5: + 1b:aa:59:0e:b9:5c:8d:06:48:ad:74:87:5f:c7:fc:31:54:41: + 13:e2:c7:21:0e:9e:e0:1e:0d:e1:c0:7b:43:85:90:c5:8a:58: + c6:65:0a:78:57:f2:c6:23:0f:01:d9:20:4b:de:0f:fb:92:85: + 75:2a:5c:73:8d:6d:7b:25:91:ca:ee:45:ae:06:4b:00:cc:d3: + b1:59:50:da:3a:88:3b:29:43:46:5e:97:2b:54:ce:53:6f:8d: + 4a:e7:96:fa:bf:71:0e:42:8b:7c:fd:28:a0:d0:48:ca:da:c4: + 81:4c:bb:a2:73:93:26:c8:eb:0c:d6:26:88:b6:c0:24:cf:bb: + bd:5b:eb:75:7d:e9:08:8e:86:33:2c:79:77:09:69:a5:89:fc: + b3:70:90:87:76:8f:d3:22:bb:42:ce:bd:73:0b:20:26:2a:d0: + 9b:3d:70:1e:24:6c:cd:87:76:a9:17:96:b7:cf:0d:92:fb:8e: + 18:a9:98:49:d1:9e:fe:60:44:72:21:b9:19:ed:c2:f5:31:f1: + 39:48:88:90:24:75:54:16:ad:ce:f4:f8:69:14:64:39:fb:a3: + b8:ba:70:40:c7:27:1c:bf:c4:56:53:fa:63:65:d0:f3:1c:0e: + 16:f5:6b:86:58:4d:18:d4:e4:0d:8e:a5:9d:5b:91:dc:76:24: + 50:3f:c6:2a:fb:d9:b7:9c:b5:d6:e6:d0:d9:e8:19:8b:15:71: + 48:ad:b7:ea:d8:59:88:d4:90:bf:16:b3:d9:e9:ac:59:61:54: + c8:1c:ba:ca:c1:ca:e1:b9:20:4c:8f:3a:93:89:a5:a0:cc:bf: + d3:f6:75:a4:75:96:6d:56 +SHA1 Fingerprint=43:13:BB:96:F1:D5:86:9B:C1:4E:6A:92:F6:CF:F6:34:69:87:82:37 diff --git a/system/etc/security/cacerts/67495436.0 b/system/etc/security/cacerts/67495436.0 new file mode 100644 index 0000000000000000000000000000000000000000..23a6ebe6b55f1e84b3ebf7c73dfb161082b13ff3 --- /dev/null +++ b/system/etc/security/cacerts/67495436.0 @@ -0,0 +1,83 @@ +-----BEGIN CERTIFICATE----- +MIIEKjCCAxKgAwIBAgIQYAGXt0an6rS0mtZLL/eQ+zANBgkqhkiG9w0BAQsFADCB +rjELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMf +Q2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIw +MDggdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxJDAiBgNV +BAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EgLSBHMzAeFw0wODA0MDIwMDAwMDBa +Fw0zNzEyMDEyMzU5NTlaMIGuMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMdGhhd3Rl +LCBJbmMuMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERpdmlzaW9u +MTgwNgYDVQQLEy8oYykgMjAwOCB0aGF3dGUsIEluYy4gLSBGb3IgYXV0aG9yaXpl +ZCB1c2Ugb25seTEkMCIGA1UEAxMbdGhhd3RlIFByaW1hcnkgUm9vdCBDQSAtIEcz +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsr8nLPvb2FvdeHsbnndm +gcs+vHyu86YnmjSjaDFxODNi5PNxZnmxqWWjpYvVj2AtP0LMqmsywCPLLEHd5N/8 +YZzic7IilRFDGF/Eth9XbAoFWCLINkw6fKXRz4aviKdEAhN0cXMKQlkC+BsUa0Lf +b1+6a4KinVvnSr0eAXLbS3ToO39/fR8EtCab4LRarEc9VbjXsCZSKAExQGbY2SS9 +9irY7CFJXJv2eul/VTV+lmuNk5Mny5K76qxAwJ/C+IDPXfRa3M50hqY+bAtTyr2S +zhkGcuYMXDhpxwTWvGzOW/b3aJzcJRVIiKHpqfiYnODz1TEoYRFsZ5aNOZnLwkUk +OQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNV +HQ4EFgQUrWyqlGCc7eT/+j4KdCtjA/e2Wb8wDQYJKoZIhvcNAQELBQADggEBABpA +2JVlrAmSicY59BDlqQ5mU1143vokkbvnRFHfxhY0Cu9qRFHqKweKA3rD6z8KLFIW +oCtDuSWQP3CpMyVtRRooOyfPqsMpQhvfO0zAMzRbQYi/aytlryjvsvXDqmbOe1bu +t8jLZ8HJnBoYuMTDSQPxYA5QzUbF83d597YV4Djbxy8ooAw/dyZ02SUS2jHaGh7c +KUGRIjxpp7sC8rZcJwOJ9Abqm+RyguOhCcHpABnTPtRwa7pxpqpYrvS76Wy274fM +m7v/OeZWYdMKp8RcTGB7BXcmer/YB1IsYvdwY9k5vG8cwnncdimvzsUsZAReiDZu +MdRAGmI0Nj81Aa6sY6A= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 60:01:97:b7:46:a7:ea:b4:b4:9a:d6:4b:2f:f7:90:fb + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=US, O=thawte, Inc., OU=Certification Services Division, OU=(c) 2008 thawte, Inc. - For authorized use only, CN=thawte Primary Root CA - G3 + Validity + Not Before: Apr 2 00:00:00 2008 GMT + Not After : Dec 1 23:59:59 2037 GMT + Subject: C=US, O=thawte, Inc., OU=Certification Services Division, OU=(c) 2008 thawte, Inc. - For authorized use only, CN=thawte Primary Root CA - G3 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:b2:bf:27:2c:fb:db:d8:5b:dd:78:7b:1b:9e:77: + 66:81:cb:3e:bc:7c:ae:f3:a6:27:9a:34:a3:68:31: + 71:38:33:62:e4:f3:71:66:79:b1:a9:65:a3:a5:8b: + d5:8f:60:2d:3f:42:cc:aa:6b:32:c0:23:cb:2c:41: + dd:e4:df:fc:61:9c:e2:73:b2:22:95:11:43:18:5f: + c4:b6:1f:57:6c:0a:05:58:22:c8:36:4c:3a:7c:a5: + d1:cf:86:af:88:a7:44:02:13:74:71:73:0a:42:59: + 02:f8:1b:14:6b:42:df:6f:5f:ba:6b:82:a2:9d:5b: + e7:4a:bd:1e:01:72:db:4b:74:e8:3b:7f:7f:7d:1f: + 04:b4:26:9b:e0:b4:5a:ac:47:3d:55:b8:d7:b0:26: + 52:28:01:31:40:66:d8:d9:24:bd:f6:2a:d8:ec:21: + 49:5c:9b:f6:7a:e9:7f:55:35:7e:96:6b:8d:93:93: + 27:cb:92:bb:ea:ac:40:c0:9f:c2:f8:80:cf:5d:f4: + 5a:dc:ce:74:86:a6:3e:6c:0b:53:ca:bd:92:ce:19: + 06:72:e6:0c:5c:38:69:c7:04:d6:bc:6c:ce:5b:f6: + f7:68:9c:dc:25:15:48:88:a1:e9:a9:f8:98:9c:e0: + f3:d5:31:28:61:11:6c:67:96:8d:39:99:cb:c2:45: + 24:39 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + AD:6C:AA:94:60:9C:ED:E4:FF:FA:3E:0A:74:2B:63:03:F7:B6:59:BF + Signature Algorithm: sha256WithRSAEncryption + 1a:40:d8:95:65:ac:09:92:89:c6:39:f4:10:e5:a9:0e:66:53: + 5d:78:de:fa:24:91:bb:e7:44:51:df:c6:16:34:0a:ef:6a:44: + 51:ea:2b:07:8a:03:7a:c3:eb:3f:0a:2c:52:16:a0:2b:43:b9: + 25:90:3f:70:a9:33:25:6d:45:1a:28:3b:27:cf:aa:c3:29:42: + 1b:df:3b:4c:c0:33:34:5b:41:88:bf:6b:2b:65:af:28:ef:b2: + f5:c3:aa:66:ce:7b:56:ee:b7:c8:cb:67:c1:c9:9c:1a:18:b8: + c4:c3:49:03:f1:60:0e:50:cd:46:c5:f3:77:79:f7:b6:15:e0: + 38:db:c7:2f:28:a0:0c:3f:77:26:74:d9:25:12:da:31:da:1a: + 1e:dc:29:41:91:22:3c:69:a7:bb:02:f2:b6:5c:27:03:89:f4: + 06:ea:9b:e4:72:82:e3:a1:09:c1:e9:00:19:d3:3e:d4:70:6b: + ba:71:a6:aa:58:ae:f4:bb:e9:6c:b6:ef:87:cc:9b:bb:ff:39: + e6:56:61:d3:0a:a7:c4:5c:4c:60:7b:05:77:26:7a:bf:d8:07: + 52:2c:62:f7:70:63:d9:39:bc:6f:1c:c2:79:dc:76:29:af:ce: + c5:2c:64:04:5e:88:36:6e:31:d4:40:1a:62:34:36:3f:35:01: + ae:ac:63:a0 +SHA1 Fingerprint=F1:8B:53:8D:1B:E9:03:B6:A6:F0:56:43:5B:17:15:89:CA:F3:6B:F2 diff --git a/system/etc/security/cacerts/69105f4f.0 b/system/etc/security/cacerts/69105f4f.0 new file mode 100644 index 0000000000000000000000000000000000000000..a9364ac2f46cd829d1514f86f9a3e4a4010f6afa --- /dev/null +++ b/system/etc/security/cacerts/69105f4f.0 @@ -0,0 +1,83 @@ +-----BEGIN CERTIFICATE----- +MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBl +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv +b3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzExMTEwMDAwMDAwWjBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl +cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7c +JpSIqvTO9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYP +mDI2dsze3Tyoou9q+yHyUmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+ +wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4 +VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpyoeb6pNnVFzF1roV9Iq4/ +AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whfGHdPAgMB +AAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW +BBRF66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYun +pyGd823IDzANBgkqhkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRC +dWKuh+vy1dneVrOfzM4UKLkNl2BcEkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTf +fwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38FnSbNd67IJKusm7Xi+fT8r87cm +NW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i8b5QZ7dsvfPx +H2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe ++o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 0c:e7:e0:e5:17:d8:46:fe:8f:e5:60:fc:1b:f0:30:39 + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert Assured ID Root CA + Validity + Not Before: Nov 10 00:00:00 2006 GMT + Not After : Nov 10 00:00:00 2031 GMT + Subject: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert Assured ID Root CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:ad:0e:15:ce:e4:43:80:5c:b1:87:f3:b7:60:f9: + 71:12:a5:ae:dc:26:94:88:aa:f4:ce:f5:20:39:28: + 58:60:0c:f8:80:da:a9:15:95:32:61:3c:b5:b1:28: + 84:8a:8a:dc:9f:0a:0c:83:17:7a:8f:90:ac:8a:e7: + 79:53:5c:31:84:2a:f6:0f:98:32:36:76:cc:de:dd: + 3c:a8:a2:ef:6a:fb:21:f2:52:61:df:9f:20:d7:1f: + e2:b1:d9:fe:18:64:d2:12:5b:5f:f9:58:18:35:bc: + 47:cd:a1:36:f9:6b:7f:d4:b0:38:3e:c1:1b:c3:8c: + 33:d9:d8:2f:18:fe:28:0f:b3:a7:83:d6:c3:6e:44: + c0:61:35:96:16:fe:59:9c:8b:76:6d:d7:f1:a2:4b: + 0d:2b:ff:0b:72:da:9e:60:d0:8e:90:35:c6:78:55: + 87:20:a1:cf:e5:6d:0a:c8:49:7c:31:98:33:6c:22: + e9:87:d0:32:5a:a2:ba:13:82:11:ed:39:17:9d:99: + 3a:72:a1:e6:fa:a4:d9:d5:17:31:75:ae:85:7d:22: + ae:3f:01:46:86:f6:28:79:c8:b1:da:e4:57:17:c4: + 7e:1c:0e:b0:b4:92:a6:56:b3:bd:b2:97:ed:aa:a7: + f0:b7:c5:a8:3f:95:16:d0:ff:a1:96:eb:08:5f:18: + 77:4f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Digital Signature, Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 45:EB:A2:AF:F4:92:CB:82:31:2D:51:8B:A7:A7:21:9D:F3:6D:C8:0F + X509v3 Authority Key Identifier: + keyid:45:EB:A2:AF:F4:92:CB:82:31:2D:51:8B:A7:A7:21:9D:F3:6D:C8:0F + + Signature Algorithm: sha1WithRSAEncryption + a2:0e:bc:df:e2:ed:f0:e3:72:73:7a:64:94:bf:f7:72:66:d8: + 32:e4:42:75:62:ae:87:eb:f2:d5:d9:de:56:b3:9f:cc:ce:14: + 28:b9:0d:97:60:5c:12:4c:58:e4:d3:3d:83:49:45:58:97:35: + 69:1a:a8:47:ea:56:c6:79:ab:12:d8:67:81:84:df:7f:09:3c: + 94:e6:b8:26:2c:20:bd:3d:b3:28:89:f7:5f:ff:22:e2:97:84: + 1f:e9:65:ef:87:e0:df:c1:67:49:b3:5d:eb:b2:09:2a:eb:26: + ed:78:be:7d:3f:2b:f3:b7:26:35:6d:5f:89:01:b6:49:5b:9f: + 01:05:9b:ab:3d:25:c1:cc:b6:7f:c2:f1:6f:86:c6:fa:64:68: + eb:81:2d:94:eb:42:b7:fa:8c:1e:dd:62:f1:be:50:67:b7:6c: + bd:f3:f1:1f:6b:0c:36:07:16:7f:37:7c:a9:5b:6d:7a:f1:12: + 46:60:83:d7:27:04:be:4b:ce:97:be:c3:67:2a:68:11:df:80: + e7:0c:33:66:bf:13:0d:14:6e:f3:7f:1f:63:10:1e:fa:8d:1b: + 25:6d:6c:8f:a5:b7:61:01:b1:d2:a3:26:a1:10:71:9d:ad:e2: + c3:f9:c3:99:51:b7:2b:07:08:ce:2e:e6:50:b2:a7:fa:0a:45: + 2f:a2:f0:f2 +SHA1 Fingerprint=05:63:B8:63:0D:62:D7:5A:BB:C8:AB:1E:4B:DF:B5:A8:99:B2:4D:43 diff --git a/system/etc/security/cacerts/6e8bf996.0 b/system/etc/security/cacerts/6e8bf996.0 new file mode 100644 index 0000000000000000000000000000000000000000..d39b2a260b85b0e73dde56d018b93f66656794b3 --- /dev/null +++ b/system/etc/security/cacerts/6e8bf996.0 @@ -0,0 +1,72 @@ +-----BEGIN CERTIFICATE----- +MIIDDDCCAfSgAwIBAgIDAQAgMA0GCSqGSIb3DQEBBQUAMD4xCzAJBgNVBAYTAlBM +MRswGQYDVQQKExJVbml6ZXRvIFNwLiB6IG8uby4xEjAQBgNVBAMTCUNlcnR1bSBD +QTAeFw0wMjA2MTExMDQ2MzlaFw0yNzA2MTExMDQ2MzlaMD4xCzAJBgNVBAYTAlBM +MRswGQYDVQQKExJVbml6ZXRvIFNwLiB6IG8uby4xEjAQBgNVBAMTCUNlcnR1bSBD +QTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM6xwS7TT3zNJc4YPk/E +jG+AanPIW1H4m9LcuwBcsaD8dQPugfCI7iNS6eYVM42sLQnFdvkrOYCJ5JdLkKWo +ePhzQ3ukYbDYWMzhbGZ+nPMJXlVjhNWo7/OxLjBos8Q82KxujZlakE403Daaj4GI +ULdtlkIJ89eVgw1BS7Bqa/j8D35in2fE7SZfECYPCE/wpFcozo+47UX2bu4lXapu +Ob7kky/ZR6By6/qmW6/KUz/iDsaWVhFu9+lmqSbYf5VT7QqFiLpPKaVCjF62/IUg +AKpoC6EahQGcxEZjgoi2IrHu/qpGWX7PNSzVttpd90gzFFS269lvzs2I1qsb2pY7 +HVkCAwEAAaMTMBEwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEA +uI3O7+cUus/usESSbLQ5PqKEbq24IXfS1HeCh+YgQYHu4vgRt2PRFze+GXYkHAQa +TOs9qmdvLdTN/mUxcMUbpgIKumB7bVjCmkn+YzILa+M6wKyrO7Do0wlRjBCDxjTg +xSvgGrZgFCdsMneMvLJymM/NzD+5yCRCFNZX/OYmQ6kd5YCQzgNUKD73P9P4Te1q +CjqTE5s7FCMTY5w/0YcneeVMUeMBrYVdGjux1XMQpNPyvG5k9VpWkKjHDkx0Dy5x +O/fIR/RpbxXyEV6DHpx8Uq79AtoSqFlnGNu8cN2bsWntgM6JQEhqDjXKKWYVIZQs +6GAqm4VKQPNriiTsBhYscw== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 65568 (0x10020) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=PL, O=Unizeto Sp. z o.o., CN=Certum CA + Validity + Not Before: Jun 11 10:46:39 2002 GMT + Not After : Jun 11 10:46:39 2027 GMT + Subject: C=PL, O=Unizeto Sp. z o.o., CN=Certum CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:ce:b1:c1:2e:d3:4f:7c:cd:25:ce:18:3e:4f:c4: + 8c:6f:80:6a:73:c8:5b:51:f8:9b:d2:dc:bb:00:5c: + b1:a0:fc:75:03:ee:81:f0:88:ee:23:52:e9:e6:15: + 33:8d:ac:2d:09:c5:76:f9:2b:39:80:89:e4:97:4b: + 90:a5:a8:78:f8:73:43:7b:a4:61:b0:d8:58:cc:e1: + 6c:66:7e:9c:f3:09:5e:55:63:84:d5:a8:ef:f3:b1: + 2e:30:68:b3:c4:3c:d8:ac:6e:8d:99:5a:90:4e:34: + dc:36:9a:8f:81:88:50:b7:6d:96:42:09:f3:d7:95: + 83:0d:41:4b:b0:6a:6b:f8:fc:0f:7e:62:9f:67:c4: + ed:26:5f:10:26:0f:08:4f:f0:a4:57:28:ce:8f:b8: + ed:45:f6:6e:ee:25:5d:aa:6e:39:be:e4:93:2f:d9: + 47:a0:72:eb:fa:a6:5b:af:ca:53:3f:e2:0e:c6:96: + 56:11:6e:f7:e9:66:a9:26:d8:7f:95:53:ed:0a:85: + 88:ba:4f:29:a5:42:8c:5e:b6:fc:85:20:00:aa:68: + 0b:a1:1a:85:01:9c:c4:46:63:82:88:b6:22:b1:ee: + fe:aa:46:59:7e:cf:35:2c:d5:b6:da:5d:f7:48:33: + 14:54:b6:eb:d9:6f:ce:cd:88:d6:ab:1b:da:96:3b: + 1d:59 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + b8:8d:ce:ef:e7:14:ba:cf:ee:b0:44:92:6c:b4:39:3e:a2:84: + 6e:ad:b8:21:77:d2:d4:77:82:87:e6:20:41:81:ee:e2:f8:11: + b7:63:d1:17:37:be:19:76:24:1c:04:1a:4c:eb:3d:aa:67:6f: + 2d:d4:cd:fe:65:31:70:c5:1b:a6:02:0a:ba:60:7b:6d:58:c2: + 9a:49:fe:63:32:0b:6b:e3:3a:c0:ac:ab:3b:b0:e8:d3:09:51: + 8c:10:83:c6:34:e0:c5:2b:e0:1a:b6:60:14:27:6c:32:77:8c: + bc:b2:72:98:cf:cd:cc:3f:b9:c8:24:42:14:d6:57:fc:e6:26: + 43:a9:1d:e5:80:90:ce:03:54:28:3e:f7:3f:d3:f8:4d:ed:6a: + 0a:3a:93:13:9b:3b:14:23:13:63:9c:3f:d1:87:27:79:e5:4c: + 51:e3:01:ad:85:5d:1a:3b:b1:d5:73:10:a4:d3:f2:bc:6e:64: + f5:5a:56:90:a8:c7:0e:4c:74:0f:2e:71:3b:f7:c8:47:f4:69: + 6f:15:f2:11:5e:83:1e:9c:7c:52:ae:fd:02:da:12:a8:59:67: + 18:db:bc:70:dd:9b:b1:69:ed:80:ce:89:40:48:6a:0e:35:ca: + 29:66:15:21:94:2c:e8:60:2a:9b:85:4a:40:f3:6b:8a:24:ec: + 06:16:2c:73 +SHA1 Fingerprint=62:52:DC:40:F7:11:43:A2:2F:DE:9E:F7:34:8E:06:42:51:B1:81:18 diff --git a/system/etc/security/cacerts/6fcc125d.0 b/system/etc/security/cacerts/6fcc125d.0 new file mode 100644 index 0000000000000000000000000000000000000000..60564f32a62ef6011d22b4052c16ae59e2198964 --- /dev/null +++ b/system/etc/security/cacerts/6fcc125d.0 @@ -0,0 +1,80 @@ +-----BEGIN CERTIFICATE----- +MIIDojCCAoqgAwIBAgIQE4Y1TR0/BvLB+WUF1ZAcYjANBgkqhkiG9w0BAQUFADBr +MQswCQYDVQQGEwJVUzENMAsGA1UEChMEVklTQTEvMC0GA1UECxMmVmlzYSBJbnRl +cm5hdGlvbmFsIFNlcnZpY2UgQXNzb2NpYXRpb24xHDAaBgNVBAMTE1Zpc2EgZUNv +bW1lcmNlIFJvb3QwHhcNMDIwNjI2MDIxODM2WhcNMjIwNjI0MDAxNjEyWjBrMQsw +CQYDVQQGEwJVUzENMAsGA1UEChMEVklTQTEvMC0GA1UECxMmVmlzYSBJbnRlcm5h +dGlvbmFsIFNlcnZpY2UgQXNzb2NpYXRpb24xHDAaBgNVBAMTE1Zpc2EgZUNvbW1l +cmNlIFJvb3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvV95WHm6h +2mCxlCfLF9sHP4CFT8icttD0b0/Pmdjh28JIXDqsOTPHH2qLJj0rNfVIsZHBAk4E +lpF7sDPwsRROEW+1QK8bRaVK7362rPKgH1g/EkZgPI2h4H3PVz4zHvtH8aoVlwdV +ZqW1LS7YgFmypw23RuwhY/81q6UCzyr0TP579ZRdhE2o8mCP2w4lPJ9zcc+U30rq +299yOIzzlr3xF7zSujtFWsan9sYXiwGd/BmoKoMWuDpI/k4+oKsGGelT84ATB+0t +vz8KPFUgOSwsAGl0lUq8ILKpeeUYiZGo3BxN77t+Nwtd/jmliFKMAGzsGHxBvfaL +dXe6YJ2E5/4tAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD +AgEGMB0GA1UdDgQWBBQVOIMPPyw/cDMezUb+B4wg4NfDtzANBgkqhkiG9w0BAQUF +AAOCAQEAX/FBfXxcCLkr4NWSR/pnXKUTwwMhmytMiUbPWU3J/qVAtmPN3XEolWcR +zCSs00Rsca4BIGsDoo8Ytyk6feUWYFN4PMCvFYP3j1IzJL1kk5fui/fbGKhtcbP3 +LBfQdCVp9/5rPJS+TUtBjE7ic9DjkCJzQ83z7+pzzkWKsKZJ/0x9nXGIxHYdkFsd +7v3M9+79YKWxehZx0RbQfBI8bGmX265fOZpwLwU8GUYEmSA20GBuYQa7FkKMcPcw +++DbZqMAAb3mLNqRX6BGi01qnD093QVG/na/oAo85ADmJ7f/hC3euiInlhBx6yLt +398znM/jra6O1I7mT1GvFpLgXPYHDw== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 13:86:35:4d:1d:3f:06:f2:c1:f9:65:05:d5:90:1c:62 + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=US, O=VISA, OU=Visa International Service Association, CN=Visa eCommerce Root + Validity + Not Before: Jun 26 02:18:36 2002 GMT + Not After : Jun 24 00:16:12 2022 GMT + Subject: C=US, O=VISA, OU=Visa International Service Association, CN=Visa eCommerce Root + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:af:57:de:56:1e:6e:a1:da:60:b1:94:27:cb:17: + db:07:3f:80:85:4f:c8:9c:b6:d0:f4:6f:4f:cf:99: + d8:e1:db:c2:48:5c:3a:ac:39:33:c7:1f:6a:8b:26: + 3d:2b:35:f5:48:b1:91:c1:02:4e:04:96:91:7b:b0: + 33:f0:b1:14:4e:11:6f:b5:40:af:1b:45:a5:4a:ef: + 7e:b6:ac:f2:a0:1f:58:3f:12:46:60:3c:8d:a1:e0: + 7d:cf:57:3e:33:1e:fb:47:f1:aa:15:97:07:55:66: + a5:b5:2d:2e:d8:80:59:b2:a7:0d:b7:46:ec:21:63: + ff:35:ab:a5:02:cf:2a:f4:4c:fe:7b:f5:94:5d:84: + 4d:a8:f2:60:8f:db:0e:25:3c:9f:73:71:cf:94:df: + 4a:ea:db:df:72:38:8c:f3:96:bd:f1:17:bc:d2:ba: + 3b:45:5a:c6:a7:f6:c6:17:8b:01:9d:fc:19:a8:2a: + 83:16:b8:3a:48:fe:4e:3e:a0:ab:06:19:e9:53:f3: + 80:13:07:ed:2d:bf:3f:0a:3c:55:20:39:2c:2c:00: + 69:74:95:4a:bc:20:b2:a9:79:e5:18:89:91:a8:dc: + 1c:4d:ef:bb:7e:37:0b:5d:fe:39:a5:88:52:8c:00: + 6c:ec:18:7c:41:bd:f6:8b:75:77:ba:60:9d:84:e7: + fe:2d + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + 15:38:83:0F:3F:2C:3F:70:33:1E:CD:46:FE:07:8C:20:E0:D7:C3:B7 + Signature Algorithm: sha1WithRSAEncryption + 5f:f1:41:7d:7c:5c:08:b9:2b:e0:d5:92:47:fa:67:5c:a5:13: + c3:03:21:9b:2b:4c:89:46:cf:59:4d:c9:fe:a5:40:b6:63:cd: + dd:71:28:95:67:11:cc:24:ac:d3:44:6c:71:ae:01:20:6b:03: + a2:8f:18:b7:29:3a:7d:e5:16:60:53:78:3c:c0:af:15:83:f7: + 8f:52:33:24:bd:64:93:97:ee:8b:f7:db:18:a8:6d:71:b3:f7: + 2c:17:d0:74:25:69:f7:fe:6b:3c:94:be:4d:4b:41:8c:4e:e2: + 73:d0:e3:90:22:73:43:cd:f3:ef:ea:73:ce:45:8a:b0:a6:49: + ff:4c:7d:9d:71:88:c4:76:1d:90:5b:1d:ee:fd:cc:f7:ee:fd: + 60:a5:b1:7a:16:71:d1:16:d0:7c:12:3c:6c:69:97:db:ae:5f: + 39:9a:70:2f:05:3c:19:46:04:99:20:36:d0:60:6e:61:06:bb: + 16:42:8c:70:f7:30:fb:e0:db:66:a3:00:01:bd:e6:2c:da:91: + 5f:a0:46:8b:4d:6a:9c:3d:3d:dd:05:46:fe:76:bf:a0:0a:3c: + e4:00:e6:27:b7:ff:84:2d:de:ba:22:27:96:10:71:eb:22:ed: + df:df:33:9c:cf:e3:ad:ae:8e:d4:8e:e6:4f:51:af:16:92:e0: + 5c:f6:07:0f +SHA1 Fingerprint=70:17:9B:86:8C:00:A4:FA:60:91:52:22:3F:9F:3E:32:BD:E0:05:62 diff --git a/system/etc/security/cacerts/75680d2e.0 b/system/etc/security/cacerts/75680d2e.0 new file mode 100644 index 0000000000000000000000000000000000000000..59329ba860c12681ac2c81f5f83a00f3ca523f8d --- /dev/null +++ b/system/etc/security/cacerts/75680d2e.0 @@ -0,0 +1,90 @@ +-----BEGIN CERTIFICATE----- +MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEb +MBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRow +GAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmlj +YXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAwMFoXDTI4MTIzMTIzNTk1OVowezEL +MAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE +BwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNVBAMM +GEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEP +ADCCAQoCggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQua +BtDFcCLNSS1UY8y2bmhGC1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe +3M/vg4aijJRPn2jymJBGhCfHdr/jzDUsi14HZGWCwEiwqJH5YZ92IFCokcdmtet4 +YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszWY19zjNoFmag4qMsXeDZR +rOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjHYpy+g8cm +ez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQU +oBEKIz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF +MAMBAf8wewYDVR0fBHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20v +QUFBQ2VydGlmaWNhdGVTZXJ2aWNlcy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29t +b2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2VzLmNybDANBgkqhkiG9w0BAQUF +AAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm7l3sAg9g1o1Q +GE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz +Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2 +G9w84FoVxp7Z8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsi +l2D4kF501KKaU73yqWjgom7C12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3 +smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 1 (0x1) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=GB, ST=Greater Manchester, L=Salford, O=Comodo CA Limited, CN=AAA Certificate Services + Validity + Not Before: Jan 1 00:00:00 2004 GMT + Not After : Dec 31 23:59:59 2028 GMT + Subject: C=GB, ST=Greater Manchester, L=Salford, O=Comodo CA Limited, CN=AAA Certificate Services + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:be:40:9d:f4:6e:e1:ea:76:87:1c:4d:45:44:8e: + be:46:c8:83:06:9d:c1:2a:fe:18:1f:8e:e4:02:fa: + f3:ab:5d:50:8a:16:31:0b:9a:06:d0:c5:70:22:cd: + 49:2d:54:63:cc:b6:6e:68:46:0b:53:ea:cb:4c:24: + c0:bc:72:4e:ea:f1:15:ae:f4:54:9a:12:0a:c3:7a: + b2:33:60:e2:da:89:55:f3:22:58:f3:de:dc:cf:ef: + 83:86:a2:8c:94:4f:9f:68:f2:98:90:46:84:27:c7: + 76:bf:e3:cc:35:2c:8b:5e:07:64:65:82:c0:48:b0: + a8:91:f9:61:9f:76:20:50:a8:91:c7:66:b5:eb:78: + 62:03:56:f0:8a:1a:13:ea:31:a3:1e:a0:99:fd:38: + f6:f6:27:32:58:6f:07:f5:6b:b8:fb:14:2b:af:b7: + aa:cc:d6:63:5f:73:8c:da:05:99:a8:38:a8:cb:17: + 78:36:51:ac:e9:9e:f4:78:3a:8d:cf:0f:d9:42:e2: + 98:0c:ab:2f:9f:0e:01:de:ef:9f:99:49:f1:2d:df: + ac:74:4d:1b:98:b5:47:c5:e5:29:d1:f9:90:18:c7: + 62:9c:be:83:c7:26:7b:3e:8a:25:c7:c0:dd:9d:e6: + 35:68:10:20:9d:8f:d8:de:d2:c3:84:9c:0d:5e:e8: + 2f:c9 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + A0:11:0A:23:3E:96:F1:07:EC:E2:AF:29:EF:82:A5:7F:D0:30:A4:B4 + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 CRL Distribution Points: + + Full Name: + URI:http://crl.comodoca.com/AAACertificateServices.crl + + Full Name: + URI:http://crl.comodo.net/AAACertificateServices.crl + + Signature Algorithm: sha1WithRSAEncryption + 08:56:fc:02:f0:9b:e8:ff:a4:fa:d6:7b:c6:44:80:ce:4f:c4: + c5:f6:00:58:cc:a6:b6:bc:14:49:68:04:76:e8:e6:ee:5d:ec: + 02:0f:60:d6:8d:50:18:4f:26:4e:01:e3:e6:b0:a5:ee:bf:bc: + 74:54:41:bf:fd:fc:12:b8:c7:4f:5a:f4:89:60:05:7f:60:b7: + 05:4a:f3:f6:f1:c2:bf:c4:b9:74:86:b6:2d:7d:6b:cc:d2:f3: + 46:dd:2f:c6:e0:6a:c3:c3:34:03:2c:7d:96:dd:5a:c2:0e:a7: + 0a:99:c1:05:8b:ab:0c:2f:f3:5c:3a:cf:6c:37:55:09:87:de: + 53:40:6c:58:ef:fc:b6:ab:65:6e:04:f6:1b:dc:3c:e0:5a:15: + c6:9e:d9:f1:59:48:30:21:65:03:6c:ec:e9:21:73:ec:9b:03: + a1:e0:37:ad:a0:15:18:8f:fa:ba:02:ce:a7:2c:a9:10:13:2c: + d4:e5:08:26:ab:22:97:60:f8:90:5e:74:d4:a2:9a:53:bd:f2: + a9:68:e0:a2:6e:c2:d7:6c:b1:a3:0f:9e:bf:eb:68:e7:56:f2: + ae:f2:e3:2b:38:3a:09:81:b5:6b:85:d7:be:2d:ed:3f:1a:b7: + b2:63:e2:f5:62:2c:82:d4:6a:00:41:50:f1:39:83:9f:95:e9: + 36:96:98:6e +SHA1 Fingerprint=D1:EB:23:A4:6D:17:D6:8F:D9:25:64:C2:F1:F1:60:17:64:D8:E3:49 diff --git a/system/etc/security/cacerts/76579174.0 b/system/etc/security/cacerts/76579174.0 new file mode 100644 index 0000000000000000000000000000000000000000..9672db2c2f510745d59a8489fc05102f134bf56c --- /dev/null +++ b/system/etc/security/cacerts/76579174.0 @@ -0,0 +1,92 @@ +-----BEGIN CERTIFICATE----- +MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCB +gjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEk +MCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRY +UmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQxMTAxMTcx +NDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3 +dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2Vy +dmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS6 +38eMpSe2OAtp87ZOqCwuIR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCP +KZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMxfoArtYzAQDsRhtDLooY2YKTVMIJt2W7Q +DxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FEzG+gSqmUsE3a56k0enI4 +qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqsAxcZZPRa +JSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNVi +PvryxS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0P +BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASs +jVy16bYbMDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0 +eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQEwDQYJKoZIhvcNAQEFBQAD +ggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc/Kh4ZzXxHfAR +vbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt +qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLa +IR9NmXmd4c8nnxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSy +i6mx5O+aGtA9aZnuqCij4Tyz8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQ +O+7ETPTsJ3xCwnR8gooJybQDJbw= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 50:94:6c:ec:18:ea:d5:9c:4d:d5:97:ef:75:8f:a0:ad + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=US, OU=www.xrampsecurity.com, O=XRamp Security Services Inc, CN=XRamp Global Certification Authority + Validity + Not Before: Nov 1 17:14:04 2004 GMT + Not After : Jan 1 05:37:19 2035 GMT + Subject: C=US, OU=www.xrampsecurity.com, O=XRamp Security Services Inc, CN=XRamp Global Certification Authority + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:98:24:1e:bd:15:b4:ba:df:c7:8c:a5:27:b6:38: + 0b:69:f3:b6:4e:a8:2c:2e:21:1d:5c:44:df:21:5d: + 7e:23:74:fe:5e:7e:b4:4a:b7:a6:ad:1f:ae:e0:06: + 16:e2:9b:5b:d9:67:74:6b:5d:80:8f:29:9d:86:1b: + d9:9c:0d:98:6d:76:10:28:58:e4:65:b0:7f:4a:98: + 79:9f:e0:c3:31:7e:80:2b:b5:8c:c0:40:3b:11:86: + d0:cb:a2:86:36:60:a4:d5:30:82:6d:d9:6e:d0:0f: + 12:04:33:97:5f:4f:61:5a:f0:e4:f9:91:ab:e7:1d: + 3b:bc:e8:cf:f4:6b:2d:34:7c:e2:48:61:1c:8e:f3: + 61:44:cc:6f:a0:4a:a9:94:b0:4d:da:e7:a9:34:7a: + 72:38:a8:41:cc:3c:94:11:7d:eb:c8:a6:8c:b7:86: + cb:ca:33:3b:d9:3d:37:8b:fb:7a:3e:86:2c:e7:73: + d7:0a:57:ac:64:9b:19:eb:f4:0f:04:08:8a:ac:03: + 17:19:64:f4:5a:25:22:8d:34:2c:b2:f6:68:1d:12: + 6d:d3:8a:1e:14:da:c4:8f:a6:e2:23:85:d5:7a:0d: + bd:6a:e0:e9:ec:ec:17:bb:42:1b:67:aa:25:ed:45: + 83:21:fc:c1:c9:7c:d5:62:3e:fa:f2:c5:2d:d3:fd: + d4:65 + Exponent: 65537 (0x10001) + X509v3 extensions: + 1.3.6.1.4.1.311.20.2: + ...C.A + X509v3 Key Usage: + Digital Signature, Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + C6:4F:A2:3D:06:63:84:09:9C:CE:62:E4:04:AC:8D:5C:B5:E9:B6:1B + X509v3 CRL Distribution Points: + + Full Name: + URI:http://crl.xrampsecurity.com/XGCA.crl + + 1.3.6.1.4.1.311.21.1: + ... + Signature Algorithm: sha1WithRSAEncryption + 91:15:39:03:01:1b:67:fb:4a:1c:f9:0a:60:5b:a1:da:4d:97: + 62:f9:24:53:27:d7:82:64:4e:90:2e:c3:49:1b:2b:9a:dc:fc: + a8:78:67:35:f1:1d:f0:11:bd:b7:48:e3:10:f6:0d:df:3f:d2: + c9:b6:aa:55:a4:48:ba:02:db:de:59:2e:15:5b:3b:9d:16:7d: + 47:d7:37:ea:5f:4d:76:12:36:bb:1f:d7:a1:81:04:46:20:a3: + 2c:6d:a9:9e:01:7e:3f:29:ce:00:93:df:fd:c9:92:73:89:89: + 64:9e:e7:2b:e4:1c:91:2c:d2:b9:ce:7d:ce:6f:31:99:d3:e6: + be:d2:1e:90:f0:09:14:79:5c:23:ab:4d:d2:da:21:1f:4d:99: + 79:9d:e1:cf:27:9f:10:9b:1c:88:0d:b0:8a:64:41:31:b8:0e: + 6c:90:24:a4:9b:5c:71:8f:ba:bb:7e:1c:1b:db:6a:80:0f:21: + bc:e9:db:a6:b7:40:f4:b2:8b:a9:b1:e4:ef:9a:1a:d0:3d:69: + 99:ee:a8:28:a3:e1:3c:b3:f0:b2:11:9c:cf:7c:40:e6:dd:e7: + 43:7d:a2:d8:3a:b5:a9:8d:f2:34:99:c4:d4:10:e1:06:fd:09: + 84:10:3b:ee:c4:4c:f4:ec:27:7c:42:c2:74:7c:82:8a:09:c9: + b4:03:25:bc +SHA1 Fingerprint=B8:01:86:D1:EB:9C:86:A5:41:04:CF:30:54:F3:4C:52:B7:E5:58:C6 diff --git a/system/etc/security/cacerts/7672ac4b.0 b/system/etc/security/cacerts/7672ac4b.0 new file mode 100644 index 0000000000000000000000000000000000000000..46d1bf6d7200966fe831657ecef74bb06d312d8d --- /dev/null +++ b/system/etc/security/cacerts/7672ac4b.0 @@ -0,0 +1,123 @@ +-----BEGIN CERTIFICATE----- +MIIFnDCCA4SgAwIBAgIBATANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJGUjET +MBEGA1UEChMKQ2VydGlub21pczEXMBUGA1UECxMOMDAwMiA0MzM5OTg5MDMxJjAk +BgNVBAMMHUNlcnRpbm9taXMgLSBBdXRvcml0w6kgUmFjaW5lMB4XDTA4MDkxNzA4 +Mjg1OVoXDTI4MDkxNzA4Mjg1OVowYzELMAkGA1UEBhMCRlIxEzARBgNVBAoTCkNl +cnRpbm9taXMxFzAVBgNVBAsTDjAwMDIgNDMzOTk4OTAzMSYwJAYDVQQDDB1DZXJ0 +aW5vbWlzIC0gQXV0b3JpdMOpIFJhY2luZTCCAiIwDQYJKoZIhvcNAQEBBQADggIP +ADCCAgoCggIBAJ2Fn4bT46/HsmtuM+Cet0I0VZ35gb5j2CN2DpdUzZlMGvE5x4jY +F1AMnmHawE5V3udauHpOd4cN5bjr+p5eex7Ezyh0x5P1FMYiKAT5kcOrJ3NqDi5N +8y4oH3DfVS9O7cdxbwlyLu3VMpfQ8Vh30WC8Tl7bmoT2R2FFK/ZQpn9qcSdIhDWe +rP5pqZ56XjUl+rSnSTV3lqc2W+HN3yNw2F1MpQiD8aYkOBOo7C+ooWfHpi2GR+6K +/OybDnT0K0kCe5B1jPyZOQE51kqJ5Z52qz6WKDgmi92NjMD2AR5vpTESOH2VwnHu +7XSu5DaiQ3XV8QCb4uTXzEIDS3h65X27uK4uIJPT5GHfceF2Z5c/tt9qc1pkIuVC +28+BA5PY9OMQ4HL2AHCs8MF6DwV/zzRpRbWT5BnbUhYjBYkOjUjkJW+zeL9i9Qf6 +lSTClrLooyPCXQP8w9PlfMl1I9f09bze5N/NgL+RiH2nE7Q5uiy6vdFrzPOlKO1E +nn1So2+WLhl+HPNbxxaOu2B9d2ZHVIIAEWBsMsGoOBvrbpgT1u449fCfDu/+MYHB +0iSVL1N6aaLwD4ZFjliCK0wi1F6g530mJ0jfJUaNSih8hp75mxpZuWW/Bd22Ql09 +5gBIgl4g9xGC3srYn+Y3RyYe63j3YcNBZFgCQfna4NH4+ej9Uji29YnfAgMBAAGj +WzBZMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBQN +jLZh2kS40RR9w759XkjwzspqsDAXBgNVHSAEEDAOMAwGCiqBegFWAgIAAQEwDQYJ +KoZIhvcNAQEFBQADggIBACQ+YAZ+He86PtvqrxyaLAEL9MW12Ukx9F1BjYkMTv9s +ov3/4gbIOZ/xWqndIlgVqIrTseYyCYIDbNc/CMf4uboAbbnW/FIyXaR/pDGUu7ZM +OH8oMDX/nyNTt7buFHAAQCvaR6s0fl6nVjBhK4tDrP22iCj1a7Y+YEq6QpA0Z43q +619FVDsXrIvkxmUP7tCMXWY5zjKn2BCXwH40nJ+U8/aGH88bc62UeYdocMMzpXDn +2NU4lG9jeeu/Cg4I58UvD0KgKxRA/yHgBcUn4YQRE7rWhh1BCxMjidPJC+iKunqj +o3M3NYB9Ergzd0A4wPpeMNLytqOx1qKVl4GbUu1pTP+A5FPbVFsDbVRfsbjvJL1v +nxHDx2TCDyhihWZeGnuyt++uNckZM6i4J9szVb9o4XVIRFb7zdNIu0eJOqxp9YDG +5ERQL1TEqkPFMTFYvZbF6nVsmnWxTfj3l/+WFvKXTej28xH5On2KOG4Ey+HTRRWq +pdEdnV1j6CTmNhTih60bWfVEm/vXd3wfAXBioSAaosUaKPQhA+4u2cGA6rnZgtZb +dsLLO7XSAPCjDuGtbkD326C00EauFddEwk01+dIL8hf2rGbVJLJP0RyZwG71fet0 +BLj5TXcJ17TPBzAJ8bgAVtkXFhYKK4bfjwEZGuW7gmP/vgt2Fl43N+bYdJeimUV5 +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 1 (0x1) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=FR, O=Certinomis, OU=0002 433998903, CN=Certinomis - Autorit\xC3\xA9 Racine + Validity + Not Before: Sep 17 08:28:59 2008 GMT + Not After : Sep 17 08:28:59 2028 GMT + Subject: C=FR, O=Certinomis, OU=0002 433998903, CN=Certinomis - Autorit\xC3\xA9 Racine + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:9d:85:9f:86:d3:e3:af:c7:b2:6b:6e:33:e0:9e: + b7:42:34:55:9d:f9:81:be:63:d8:23:76:0e:97:54: + cd:99:4c:1a:f1:39:c7:88:d8:17:50:0c:9e:61:da: + c0:4e:55:de:e7:5a:b8:7a:4e:77:87:0d:e5:b8:eb: + fa:9e:5e:7b:1e:c4:cf:28:74:c7:93:f5:14:c6:22: + 28:04:f9:91:c3:ab:27:73:6a:0e:2e:4d:f3:2e:28: + 1f:70:df:55:2f:4e:ed:c7:71:6f:09:72:2e:ed:d5: + 32:97:d0:f1:58:77:d1:60:bc:4e:5e:db:9a:84:f6: + 47:61:45:2b:f6:50:a6:7f:6a:71:27:48:84:35:9e: + ac:fe:69:a9:9e:7a:5e:35:25:fa:b4:a7:49:35:77: + 96:a7:36:5b:e1:cd:df:23:70:d8:5d:4c:a5:08:83: + f1:a6:24:38:13:a8:ec:2f:a8:a1:67:c7:a6:2d:86: + 47:ee:8a:fc:ec:9b:0e:74:f4:2b:49:02:7b:90:75: + 8c:fc:99:39:01:39:d6:4a:89:e5:9e:76:ab:3e:96: + 28:38:26:8b:dd:8d:8c:c0:f6:01:1e:6f:a5:31:12: + 38:7d:95:c2:71:ee:ed:74:ae:e4:36:a2:43:75:d5: + f1:00:9b:e2:e4:d7:cc:42:03:4b:78:7a:e5:7d:bb: + b8:ae:2e:20:93:d3:e4:61:df:71:e1:76:67:97:3f: + b6:df:6a:73:5a:64:22:e5:42:db:cf:81:03:93:d8: + f4:e3:10:e0:72:f6:00:70:ac:f0:c1:7a:0f:05:7f: + cf:34:69:45:b5:93:e4:19:db:52:16:23:05:89:0e: + 8d:48:e4:25:6f:b3:78:bf:62:f5:07:fa:95:24:c2: + 96:b2:e8:a3:23:c2:5d:03:fc:c3:d3:e5:7c:c9:75: + 23:d7:f4:f5:bc:de:e4:df:cd:80:bf:91:88:7d:a7: + 13:b4:39:ba:2c:ba:bd:d1:6b:cc:f3:a5:28:ed:44: + 9e:7d:52:a3:6f:96:2e:19:7e:1c:f3:5b:c7:16:8e: + bb:60:7d:77:66:47:54:82:00:11:60:6c:32:c1:a8: + 38:1b:eb:6e:98:13:d6:ee:38:f5:f0:9f:0e:ef:fe: + 31:81:c1:d2:24:95:2f:53:7a:69:a2:f0:0f:86:45: + 8e:58:82:2b:4c:22:d4:5e:a0:e7:7d:26:27:48:df: + 25:46:8d:4a:28:7c:86:9e:f9:9b:1a:59:b9:65:bf: + 05:dd:b6:42:5d:3d:e6:00:48:82:5e:20:f7:11:82: + de:ca:d8:9f:e6:37:47:26:1e:eb:78:f7:61:c3:41: + 64:58:02:41:f9:da:e0:d1:f8:f9:e8:fd:52:38:b6: + f5:89:df + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + 0D:8C:B6:61:DA:44:B8:D1:14:7D:C3:BE:7D:5E:48:F0:CE:CA:6A:B0 + X509v3 Certificate Policies: + Policy: 1.2.250.1.86.2.2.0.1.1 + + Signature Algorithm: sha1WithRSAEncryption + 24:3e:60:06:7e:1d:ef:3a:3e:db:ea:af:1c:9a:2c:01:0b:f4: + c5:b5:d9:49:31:f4:5d:41:8d:89:0c:4e:ff:6c:a2:fd:ff:e2: + 06:c8:39:9f:f1:5a:a9:dd:22:58:15:a8:8a:d3:b1:e6:32:09: + 82:03:6c:d7:3f:08:c7:f8:b9:ba:00:6d:b9:d6:fc:52:32:5d: + a4:7f:a4:31:94:bb:b6:4c:38:7f:28:30:35:ff:9f:23:53:b7: + b6:ee:14:70:00:40:2b:da:47:ab:34:7e:5e:a7:56:30:61:2b: + 8b:43:ac:fd:b6:88:28:f5:6b:b6:3e:60:4a:ba:42:90:34:67: + 8d:ea:eb:5f:45:54:3b:17:ac:8b:e4:c6:65:0f:ee:d0:8c:5d: + 66:39:ce:32:a7:d8:10:97:c0:7e:34:9c:9f:94:f3:f6:86:1f: + cf:1b:73:ad:94:79:87:68:70:c3:33:a5:70:e7:d8:d5:38:94: + 6f:63:79:eb:bf:0a:0e:08:e7:c5:2f:0f:42:a0:2b:14:40:ff: + 21:e0:05:c5:27:e1:84:11:13:ba:d6:86:1d:41:0b:13:23:89: + d3:c9:0b:e8:8a:ba:7a:a3:a3:73:37:35:80:7d:12:b8:33:77: + 40:38:c0:fa:5e:30:d2:f2:b6:a3:b1:d6:a2:95:97:81:9b:52: + ed:69:4c:ff:80:e4:53:db:54:5b:03:6d:54:5f:b1:b8:ef:24: + bd:6f:9f:11:c3:c7:64:c2:0f:28:62:85:66:5e:1a:7b:b2:b7: + ef:ae:35:c9:19:33:a8:b8:27:db:33:55:bf:68:e1:75:48:44: + 56:fb:cd:d3:48:bb:47:89:3a:ac:69:f5:80:c6:e4:44:50:2f: + 54:c4:aa:43:c5:31:31:58:bd:96:c5:ea:75:6c:9a:75:b1:4d: + f8:f7:97:ff:96:16:f2:97:4d:e8:f6:f3:11:f9:3a:7d:8a:38: + 6e:04:cb:e1:d3:45:15:aa:a5:d1:1d:9d:5d:63:e8:24:e6:36: + 14:e2:87:ad:1b:59:f5:44:9b:fb:d7:77:7c:1f:01:70:62:a1: + 20:1a:a2:c5:1a:28:f4:21:03:ee:2e:d9:c1:80:ea:b9:d9:82: + d6:5b:76:c2:cb:3b:b5:d2:00:f0:a3:0e:e1:ad:6e:40:f7:db: + a0:b4:d0:46:ae:15:d7:44:c2:4d:35:f9:d2:0b:f2:17:f6:ac: + 66:d5:24:b2:4f:d1:1c:99:c0:6e:f5:7d:eb:74:04:b8:f9:4d: + 77:09:d7:b4:cf:07:30:09:f1:b8:00:56:d9:17:16:16:0a:2b: + 86:df:8f:01:19:1a:e5:bb:82:63:ff:be:0b:76:16:5e:37:37: + e6:d8:74:97:a2:99:45:79 +SHA1 Fingerprint=2E:14:DA:EC:28:F0:FA:1E:8E:38:9A:4E:AB:EB:26:C0:0A:D3:83:C3 diff --git a/system/etc/security/cacerts/7999be0d.0 b/system/etc/security/cacerts/7999be0d.0 new file mode 100644 index 0000000000000000000000000000000000000000..077c03b0a64314c338f883be47dc76d515e14784 --- /dev/null +++ b/system/etc/security/cacerts/7999be0d.0 @@ -0,0 +1,78 @@ +-----BEGIN CERTIFICATE----- +MIIDVDCCAjygAwIBAgIDAjRWMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVT +MRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i +YWwgQ0EwHhcNMDIwNTIxMDQwMDAwWhcNMjIwNTIxMDQwMDAwWjBCMQswCQYDVQQG +EwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEbMBkGA1UEAxMSR2VvVHJ1c3Qg +R2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2swYYzD9 +9BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9mOSm9BXiLnTjoBbdq +fnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIuT8rxh0PBFpVXLVDv +iS2Aelet8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6cJmTM386DGXHKTubU +1XupGc1V3sjs0l44U+VcT4wt/lAjNvxm5suOpDkZALeVAjmRCw7+OC7RHQWa9k0+ +bw8HHa8sHo9gOeL6NlMTOdReJivbPagUvTLrGAMoUgRx5aszPeE4uwc2hGKceeoW +MPRfwCvocWvk+QIDAQABo1MwUTAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTA +ephojYn7qwVkDBF9qn1luMrMTjAfBgNVHSMEGDAWgBTAephojYn7qwVkDBF9qn1l +uMrMTjANBgkqhkiG9w0BAQUFAAOCAQEANeMpauUvXVSOKVCUn5kaFOSPeCpilKIn +Z57QzxpeR+nBsqTP3UEaBU6bS+5Kb1VSsyShNwrrZHYqLizz/Tt1kL/6cdjHPTfS +tQWVYrmm3ok9Nns4d0iXrKYgjy6myQzCsplFAMfOEVEiIuCl6rYVSAlk6l5PdPcF +PseKUgzbFbS9bZvlxrFUaKnjaZC2mqUPuLk/IH2uSrW4nOQdtqvmlKXBx4Ot2/Un +hw4EbNX/3aBd7YdStysVAq45pmp06drE57xNNB6pXE0zX5IJL4hmXXeXxx12E6nV +5fEWCRE11azbJHFwLJhWC9kXtNHjUStedejV0NxPNO3CBWaAocvmMw== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 144470 (0x23456) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=US, O=GeoTrust Inc., CN=GeoTrust Global CA + Validity + Not Before: May 21 04:00:00 2002 GMT + Not After : May 21 04:00:00 2022 GMT + Subject: C=US, O=GeoTrust Inc., CN=GeoTrust Global CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:da:cc:18:63:30:fd:f4:17:23:1a:56:7e:5b:df: + 3c:6c:38:e4:71:b7:78:91:d4:bc:a1:d8:4c:f8:a8: + 43:b6:03:e9:4d:21:07:08:88:da:58:2f:66:39:29: + bd:05:78:8b:9d:38:e8:05:b7:6a:7e:71:a4:e6:c4: + 60:a6:b0:ef:80:e4:89:28:0f:9e:25:d6:ed:83:f3: + ad:a6:91:c7:98:c9:42:18:35:14:9d:ad:98:46:92: + 2e:4f:ca:f1:87:43:c1:16:95:57:2d:50:ef:89:2d: + 80:7a:57:ad:f2:ee:5f:6b:d2:00:8d:b9:14:f8:14: + 15:35:d9:c0:46:a3:7b:72:c8:91:bf:c9:55:2b:cd: + d0:97:3e:9c:26:64:cc:df:ce:83:19:71:ca:4e:e6: + d4:d5:7b:a9:19:cd:55:de:c8:ec:d2:5e:38:53:e5: + 5c:4f:8c:2d:fe:50:23:36:fc:66:e6:cb:8e:a4:39: + 19:00:b7:95:02:39:91:0b:0e:fe:38:2e:d1:1d:05: + 9a:f6:4d:3e:6f:0f:07:1d:af:2c:1e:8f:60:39:e2: + fa:36:53:13:39:d4:5e:26:2b:db:3d:a8:14:bd:32: + eb:18:03:28:52:04:71:e5:ab:33:3d:e1:38:bb:07: + 36:84:62:9c:79:ea:16:30:f4:5f:c0:2b:e8:71:6b: + e4:f9 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + C0:7A:98:68:8D:89:FB:AB:05:64:0C:11:7D:AA:7D:65:B8:CA:CC:4E + X509v3 Authority Key Identifier: + keyid:C0:7A:98:68:8D:89:FB:AB:05:64:0C:11:7D:AA:7D:65:B8:CA:CC:4E + + Signature Algorithm: sha1WithRSAEncryption + 35:e3:29:6a:e5:2f:5d:54:8e:29:50:94:9f:99:1a:14:e4:8f: + 78:2a:62:94:a2:27:67:9e:d0:cf:1a:5e:47:e9:c1:b2:a4:cf: + dd:41:1a:05:4e:9b:4b:ee:4a:6f:55:52:b3:24:a1:37:0a:eb: + 64:76:2a:2e:2c:f3:fd:3b:75:90:bf:fa:71:d8:c7:3d:37:d2: + b5:05:95:62:b9:a6:de:89:3d:36:7b:38:77:48:97:ac:a6:20: + 8f:2e:a6:c9:0c:c2:b2:99:45:00:c7:ce:11:51:22:22:e0:a5: + ea:b6:15:48:09:64:ea:5e:4f:74:f7:05:3e:c7:8a:52:0c:db: + 15:b4:bd:6d:9b:e5:c6:b1:54:68:a9:e3:69:90:b6:9a:a5:0f: + b8:b9:3f:20:7d:ae:4a:b5:b8:9c:e4:1d:b6:ab:e6:94:a5:c1: + c7:83:ad:db:f5:27:87:0e:04:6c:d5:ff:dd:a0:5d:ed:87:52: + b7:2b:15:02:ae:39:a6:6a:74:e9:da:c4:e7:bc:4d:34:1e:a9: + 5c:4d:33:5f:92:09:2f:88:66:5d:77:97:c7:1d:76:13:a9:d5: + e5:f1:16:09:11:35:d5:ac:db:24:71:70:2c:98:56:0b:d9:17: + b4:d1:e3:51:2b:5e:75:e8:d5:d0:dc:4f:34:ed:c2:05:66:80: + a1:cb:e6:33 +SHA1 Fingerprint=DE:28:F4:A4:FF:E5:B9:2F:A3:C5:03:D1:A3:49:A7:F9:96:2A:82:12 diff --git a/system/etc/security/cacerts/7a7c655d.0 b/system/etc/security/cacerts/7a7c655d.0 new file mode 100644 index 0000000000000000000000000000000000000000..380ee978d7ef91467d4ac73814e67fc22bccf2e9 --- /dev/null +++ b/system/etc/security/cacerts/7a7c655d.0 @@ -0,0 +1,46 @@ +-----BEGIN CERTIFICATE----- +MIIBtjCCAVugAwIBAgITBmyf1XSXNmY/Owua2eiedgPySjAKBggqhkjOPQQDAjA5 +MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g +Um9vdCBDQSAzMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG +A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg +Q0EgMzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCmXp8ZBf8ANm+gBG1bG8lKl +ui2yEujSLtf6ycXYqm0fc4E7O5hrOXwzpcVOho6AF2hiRVd9RFgdszflZwjrZt6j +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSr +ttvXBp43rDCGB5Fwx5zEGbF4wDAKBggqhkjOPQQDAgNJADBGAiEA4IWSoxe3jfkr +BqWTrBqYaGFy+uGh0PsceGCmQ5nFuMQCIQCcAu/xlJyzlvnrxir4tiz+OpAUFteM +YyRIHN8wfdVoOw== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 06:6c:9f:d5:74:97:36:66:3f:3b:0b:9a:d9:e8:9e:76:03:f2:4a + Signature Algorithm: ecdsa-with-SHA256 + Issuer: C=US, O=Amazon, CN=Amazon Root CA 3 + Validity + Not Before: May 26 00:00:00 2015 GMT + Not After : May 26 00:00:00 2040 GMT + Subject: C=US, O=Amazon, CN=Amazon Root CA 3 + Subject Public Key Info: + Public Key Algorithm: id-ecPublicKey + Public-Key: (256 bit) + pub: + 04:29:97:a7:c6:41:7f:c0:0d:9b:e8:01:1b:56:c6: + f2:52:a5:ba:2d:b2:12:e8:d2:2e:d7:fa:c9:c5:d8: + aa:6d:1f:73:81:3b:3b:98:6b:39:7c:33:a5:c5:4e: + 86:8e:80:17:68:62:45:57:7d:44:58:1d:b3:37:e5: + 67:08:eb:66:de + ASN1 OID: prime256v1 + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Digital Signature, Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + AB:B6:DB:D7:06:9E:37:AC:30:86:07:91:70:C7:9C:C4:19:B1:78:C0 + Signature Algorithm: ecdsa-with-SHA256 + 30:46:02:21:00:e0:85:92:a3:17:b7:8d:f9:2b:06:a5:93:ac: + 1a:98:68:61:72:fa:e1:a1:d0:fb:1c:78:60:a6:43:99:c5:b8: + c4:02:21:00:9c:02:ef:f1:94:9c:b3:96:f9:eb:c6:2a:f8:b6: + 2c:fe:3a:90:14:16:d7:8c:63:24:48:1c:df:30:7d:d5:68:3b +SHA1 Fingerprint=0D:44:DD:8C:3C:8C:1A:1A:58:75:64:81:E9:0F:2E:2A:FF:B3:D2:6E diff --git a/system/etc/security/cacerts/7a819ef2.0 b/system/etc/security/cacerts/7a819ef2.0 new file mode 100644 index 0000000000000000000000000000000000000000..091009f026cbfef5e18a15577adb5af9c804a953 --- /dev/null +++ b/system/etc/security/cacerts/7a819ef2.0 @@ -0,0 +1,126 @@ +-----BEGIN CERTIFICATE----- +MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x +GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv +b3QgQ0EgMjAeFw0wNjExMjQxODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNV +BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W +YWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCa +GMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6XJxg +Fyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55J +WpzmM+Yklvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bB +rrcCaoF6qUWD4gXmuVbBlDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp ++ARz8un+XJiM9XOva7R+zdRcAitMOeGylZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1 +ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt66/3FsvbzSUr5R/7mp/i +Ucw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1JdxnwQ5hYIiz +PtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og +/zOhD7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UH +oycR7hYQe7xFSkyyBNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuI +yV77zGHcizN300QyNQliBJIWENieJ0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1Ud +EwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1UdDgQWBBQahGK8SEwzJQTU7tD2 +A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGUa6FJpEcwRTEL +MAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT +ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2f +BluornFdLwUvZ+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzn +g/iN/Ae42l9NLmeyhP3ZRPx3UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2Bl +fF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodmVjB3pjd4M1IQWK4/YY7yarHvGH5K +WWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK+JDSV6IZUaUtl0Ha +B0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrWIozc +hLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPR +TUIZ3Ph1WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWD +mbA4CD/pXvk1B+TJYm5Xf6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0Z +ohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y +4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8VCLAAVBpQ570su9t+Oza +8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 1289 (0x509) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=BM, O=QuoVadis Limited, CN=QuoVadis Root CA 2 + Validity + Not Before: Nov 24 18:27:00 2006 GMT + Not After : Nov 24 18:23:33 2031 GMT + Subject: C=BM, O=QuoVadis Limited, CN=QuoVadis Root CA 2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:9a:18:ca:4b:94:0d:00:2d:af:03:29:8a:f0:0f: + 81:c8:ae:4c:19:85:1d:08:9f:ab:29:44:85:f3:2f: + 81:ad:32:1e:90:46:bf:a3:86:26:1a:1e:fe:7e:1c: + 18:3a:5c:9c:60:17:2a:3a:74:83:33:30:7d:61:54: + 11:cb:ed:ab:e0:e6:d2:a2:7e:f5:6b:6f:18:b7:0a: + 0b:2d:fd:e9:3e:ef:0a:c6:b3:10:e9:dc:c2:46:17: + f8:5d:fd:a4:da:ff:9e:49:5a:9c:e6:33:e6:24:96: + f7:3f:ba:5b:2b:1c:7a:35:c2:d6:67:fe:ab:66:50: + 8b:6d:28:60:2b:ef:d7:60:c3:c7:93:bc:8d:36:91: + f3:7f:f8:db:11:13:c4:9c:77:76:c1:ae:b7:02:6a: + 81:7a:a9:45:83:e2:05:e6:b9:56:c1:94:37:8f:48: + 71:63:22:ec:17:65:07:95:8a:4b:df:8f:c6:5a:0a: + e5:b0:e3:5f:5e:6b:11:ab:0c:f9:85:eb:44:e9:f8: + 04:73:f2:e9:fe:5c:98:8c:f5:73:af:6b:b4:7e:cd: + d4:5c:02:2b:4c:39:e1:b2:95:95:2d:42:87:d7:d5: + b3:90:43:b7:6c:13:f1:de:dd:f6:c4:f8:89:3f:d1: + 75:f5:92:c3:91:d5:8a:88:d0:90:ec:dc:6d:de:89: + c2:65:71:96:8b:0d:03:fd:9c:bf:5b:16:ac:92:db: + ea:fe:79:7c:ad:eb:af:f7:16:cb:db:cd:25:2b:e5: + 1f:fb:9a:9f:e2:51:cc:3a:53:0c:48:e6:0e:bd:c9: + b4:76:06:52:e6:11:13:85:72:63:03:04:e0:04:36: + 2b:20:19:02:e8:74:a7:1f:b6:c9:56:66:f0:75:25: + dc:67:c1:0e:61:60:88:b3:3e:d1:a8:fc:a3:da:1d: + b0:d1:b1:23:54:df:44:76:6d:ed:41:d8:c1:b2:22: + b6:53:1c:df:35:1d:dc:a1:77:2a:31:e4:2d:f5:e5: + e5:db:c8:e0:ff:e5:80:d7:0b:63:a0:ff:33:a1:0f: + ba:2c:15:15:ea:97:b3:d2:a2:b5:be:f2:8c:96:1e: + 1a:8f:1d:6c:a4:61:37:b9:86:73:33:d7:97:96:9e: + 23:7d:82:a4:4c:81:e2:a1:d1:ba:67:5f:95:07:a3: + 27:11:ee:16:10:7b:bc:45:4a:4c:b2:04:d2:ab:ef: + d5:fd:0c:51:ce:50:6a:08:31:f9:91:da:0c:8f:64: + 5c:03:c3:3a:8b:20:3f:6e:8d:67:3d:3a:d6:fe:7d: + 5b:88:c9:5e:fb:cc:61:dc:8b:33:77:d3:44:32:35: + 09:62:04:92:16:10:d8:9e:27:47:fb:3b:21:e3:f8: + eb:1d:5b + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + 1A:84:62:BC:48:4C:33:25:04:D4:EE:D0:F6:03:C4:19:46:D1:94:6B + X509v3 Authority Key Identifier: + keyid:1A:84:62:BC:48:4C:33:25:04:D4:EE:D0:F6:03:C4:19:46:D1:94:6B + DirName:/C=BM/O=QuoVadis Limited/CN=QuoVadis Root CA 2 + serial:05:09 + + Signature Algorithm: sha1WithRSAEncryption + 3e:0a:16:4d:9f:06:5b:a8:ae:71:5d:2f:05:2f:67:e6:13:45: + 83:c4:36:f6:f3:c0:26:0c:0d:b5:47:64:5d:f8:b4:72:c9:46: + a5:03:18:27:55:89:78:7d:76:ea:96:34:80:17:20:dc:e7:83: + f8:8d:fc:07:b8:da:5f:4d:2e:67:b2:84:fd:d9:44:fc:77:50: + 81:e6:7c:b4:c9:0d:0b:72:53:f8:76:07:07:41:47:96:0c:fb: + e0:82:26:93:55:8c:fe:22:1f:60:65:7c:5f:e7:26:b3:f7:32: + 90:98:50:d4:37:71:55:f6:92:21:78:f7:95:79:fa:f8:2d:26: + 87:66:56:30:77:a6:37:78:33:52:10:58:ae:3f:61:8e:f2:6a: + b1:ef:18:7e:4a:59:63:ca:8d:a2:56:d5:a7:2f:bc:56:1f:cf: + 39:c1:e2:fb:0a:a8:15:2c:7d:4d:7a:63:c6:6c:97:44:3c:d2: + 6f:c3:4a:17:0a:f8:90:d2:57:a2:19:51:a5:2d:97:41:da:07: + 4f:a9:50:da:90:8d:94:46:e1:3e:f0:94:fd:10:00:38:f5:3b: + e8:40:e1:b4:6e:56:1a:20:cc:6f:58:8d:ed:2e:45:8f:d6:e9: + 93:3f:e7:b1:2c:df:3a:d6:22:8c:dc:84:bb:22:6f:d0:f8:e4: + c6:39:e9:04:88:3c:c3:ba:eb:55:7a:6d:80:99:24:f5:6c:01: + fb:f8:97:b0:94:5b:eb:fd:d2:6f:f1:77:68:0d:35:64:23:ac: + b8:55:a1:03:d1:4d:42:19:dc:f8:75:59:56:a3:f9:a8:49:79: + f8:af:0e:b9:11:a0:7c:b7:6a:ed:34:d0:b6:26:62:38:1a:87: + 0c:f8:e8:fd:2e:d3:90:7f:07:91:2a:1d:d6:7e:5c:85:83:99: + b0:38:08:3f:e9:5e:f9:35:07:e4:c9:62:6e:57:7f:a7:50:95: + f7:ba:c8:9b:e6:8e:a2:01:c5:d6:66:bf:79:61:f3:3c:1c:e1: + b9:82:5c:5d:a0:c3:e9:d8:48:bd:19:a2:11:14:19:6e:b2:86: + 1b:68:3e:48:37:1a:88:b7:5d:96:5e:9c:c7:ef:27:62:08:e2: + 91:19:5c:d2:f1:21:dd:ba:17:42:82:97:71:81:53:31:a9:9f: + f6:7d:62:bf:72:e1:a3:93:1d:cc:8a:26:5a:09:38:d0:ce:d7: + 0d:80:16:b4:78:a5:3a:87:4c:8d:8a:a5:d5:46:97:f2:2c:10: + b9:bc:54:22:c0:01:50:69:43:9e:f4:b2:ef:6d:f8:ec:da:f1: + e3:b1:ef:df:91:8f:54:2a:0b:25:c1:26:19:c4:52:10:05:65: + d5:82:10:ea:c2:31:cd:2e +SHA1 Fingerprint=CA:3A:FB:CF:12:40:36:4B:44:B2:16:20:88:80:48:39:19:93:7C:F7 diff --git a/system/etc/security/cacerts/7d453d8f.0 b/system/etc/security/cacerts/7d453d8f.0 new file mode 100644 index 0000000000000000000000000000000000000000..832001846b3a27187037cf82d34033d6110f6a0d --- /dev/null +++ b/system/etc/security/cacerts/7d453d8f.0 @@ -0,0 +1,75 @@ +-----BEGIN CERTIFICATE----- +MIIEGjCCAwICEQCbfgZJoz5iudXukEhxKe9XMA0GCSqGSIb3DQEBBQUAMIHKMQsw +CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZl +cmlTaWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWdu +LCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlT +aWduIENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3Jp +dHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQswCQYD +VQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlT +aWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJ +bmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWdu +IENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg +LSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMu6nFL8eB8aHm8b +N3O9+MlrlBIwT/A2R/XQkQr1F8ilYcEWQE37imGQ5XYgwREGfassbqb1EUGO+i2t +KmFZpGcmTNDovFJbcCAEWNF6yaRpvIMXZK0Fi7zQWM6NjPXr8EJJC52XJ2cybuGu +kxUccLwgTS8Y3pKI6GyFVxEa6X7jJhFUokWWVYPKMIno3Nij7SqAP395ZVc+FSBm +CC+Vk7+qRy+oRpfwEuL+wgorUeZ25rdGt+INpsyow0xZVYnm6FNcHOqd8GIWC6fJ +Xwzw3sJ2zq/3avL6QaaiMxTJ5Xpj055iN9WFZZ4O5lMkdBteHRJTW8cs54NJOxWu +imi5V5cCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAERSWwauSCPc/L8my/uRan2Te +2yFPhpk0djZX3dAVL8WtfxUfN2JzPtTnX84XA9s1+ivbrmAJXx5fj267Cz3qWhMe +DGBvtcC1IyIuBwvLqXTLR7sdwdela8wv0kL9Sd2nic9TutoAWii/gt/4uhMdUIaC +/Y4wjylGsB49Ndo4YhYYSq3mtlFs3q9i6wHQHiT+eo8SGhJouPtmmRQURVyu565p +F4ErWjfJXir0xuKhXFSbplQAz/DxwceYMBo7Nhbbo27q/a2ywtrvAkcTisDxszGt +TxzhT5yvDwyd93gN2PQ1VoDat20Xj50egWTh/sVFuq1ruQp6Tk9LhO5L8X3dEQ== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 1 (0x0) + Serial Number: + 9b:7e:06:49:a3:3e:62:b9:d5:ee:90:48:71:29:ef:57 + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=US, O=VeriSign, Inc., OU=VeriSign Trust Network, OU=(c) 1999 VeriSign, Inc. - For authorized use only, CN=VeriSign Class 3 Public Primary Certification Authority - G3 + Validity + Not Before: Oct 1 00:00:00 1999 GMT + Not After : Jul 16 23:59:59 2036 GMT + Subject: C=US, O=VeriSign, Inc., OU=VeriSign Trust Network, OU=(c) 1999 VeriSign, Inc. - For authorized use only, CN=VeriSign Class 3 Public Primary Certification Authority - G3 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:cb:ba:9c:52:fc:78:1f:1a:1e:6f:1b:37:73:bd: + f8:c9:6b:94:12:30:4f:f0:36:47:f5:d0:91:0a:f5: + 17:c8:a5:61:c1:16:40:4d:fb:8a:61:90:e5:76:20: + c1:11:06:7d:ab:2c:6e:a6:f5:11:41:8e:fa:2d:ad: + 2a:61:59:a4:67:26:4c:d0:e8:bc:52:5b:70:20:04: + 58:d1:7a:c9:a4:69:bc:83:17:64:ad:05:8b:bc:d0: + 58:ce:8d:8c:f5:eb:f0:42:49:0b:9d:97:27:67:32: + 6e:e1:ae:93:15:1c:70:bc:20:4d:2f:18:de:92:88: + e8:6c:85:57:11:1a:e9:7e:e3:26:11:54:a2:45:96: + 55:83:ca:30:89:e8:dc:d8:a3:ed:2a:80:3f:7f:79: + 65:57:3e:15:20:66:08:2f:95:93:bf:aa:47:2f:a8: + 46:97:f0:12:e2:fe:c2:0a:2b:51:e6:76:e6:b7:46: + b7:e2:0d:a6:cc:a8:c3:4c:59:55:89:e6:e8:53:5c: + 1c:ea:9d:f0:62:16:0b:a7:c9:5f:0c:f0:de:c2:76: + ce:af:f7:6a:f2:fa:41:a6:a2:33:14:c9:e5:7a:63: + d3:9e:62:37:d5:85:65:9e:0e:e6:53:24:74:1b:5e: + 1d:12:53:5b:c7:2c:e7:83:49:3b:15:ae:8a:68:b9: + 57:97 + Exponent: 65537 (0x10001) + Signature Algorithm: sha1WithRSAEncryption + 11:14:96:c1:ab:92:08:f7:3f:2f:c9:b2:fe:e4:5a:9f:64:de: + db:21:4f:86:99:34:76:36:57:dd:d0:15:2f:c5:ad:7f:15:1f: + 37:62:73:3e:d4:e7:5f:ce:17:03:db:35:fa:2b:db:ae:60:09: + 5f:1e:5f:8f:6e:bb:0b:3d:ea:5a:13:1e:0c:60:6f:b5:c0:b5: + 23:22:2e:07:0b:cb:a9:74:cb:47:bb:1d:c1:d7:a5:6b:cc:2f: + d2:42:fd:49:dd:a7:89:cf:53:ba:da:00:5a:28:bf:82:df:f8: + ba:13:1d:50:86:82:fd:8e:30:8f:29:46:b0:1e:3d:35:da:38: + 62:16:18:4a:ad:e6:b6:51:6c:de:af:62:eb:01:d0:1e:24:fe: + 7a:8f:12:1a:12:68:b8:fb:66:99:14:14:45:5c:ae:e7:ae:69: + 17:81:2b:5a:37:c9:5e:2a:f4:c6:e2:a1:5c:54:9b:a6:54:00: + cf:f0:f1:c1:c7:98:30:1a:3b:36:16:db:a3:6e:ea:fd:ad:b2: + c2:da:ef:02:47:13:8a:c0:f1:b3:31:ad:4f:1c:e1:4f:9c:af: + 0f:0c:9d:f7:78:0d:d8:f4:35:56:80:da:b7:6d:17:8f:9d:1e: + 81:64:e1:fe:c5:45:ba:ad:6b:b9:0a:7a:4e:4f:4b:84:ee:4b: + f1:7d:dd:11 +SHA1 Fingerprint=13:2D:0D:45:53:4B:69:97:CD:B2:D5:C3:39:E2:55:76:60:9B:5C:C6 diff --git a/system/etc/security/cacerts/81b9768f.0 b/system/etc/security/cacerts/81b9768f.0 new file mode 100644 index 0000000000000000000000000000000000000000..3593254c03940f89ee06bee4dc2894f71888750c --- /dev/null +++ b/system/etc/security/cacerts/81b9768f.0 @@ -0,0 +1,84 @@ +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBs +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j +ZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAwMFoXDTMxMTExMDAwMDAwMFowbDEL +MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3 +LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2Ug +RVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm ++9S75S0tMqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTW +PNt0OKRKzE0lgvdKpVMSOO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEM +xChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFB +Ik5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQNAQTXKFx01p8VdteZOE3 +hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUeh10aUAsg +EsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaA +FLE+w2kD+L9HAdSYJhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3Nec +nzyIZgYIVyHbIUf4KmeqvxgydkAQV8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6z +eM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFpmyPInngiK3BD41VHMWEZ71jF +hS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkKmNEVX58Svnw2 +Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe +vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep ++OkuE6N36B9K +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 02:ac:5c:26:6a:0b:40:9b:8f:0b:79:f2:ae:46:25:77 + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert High Assurance EV Root CA + Validity + Not Before: Nov 10 00:00:00 2006 GMT + Not After : Nov 10 00:00:00 2031 GMT + Subject: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert High Assurance EV Root CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:c6:cc:e5:73:e6:fb:d4:bb:e5:2d:2d:32:a6:df: + e5:81:3f:c9:cd:25:49:b6:71:2a:c3:d5:94:34:67: + a2:0a:1c:b0:5f:69:a6:40:b1:c4:b7:b2:8f:d0:98: + a4:a9:41:59:3a:d3:dc:94:d6:3c:db:74:38:a4:4a: + cc:4d:25:82:f7:4a:a5:53:12:38:ee:f3:49:6d:71: + 91:7e:63:b6:ab:a6:5f:c3:a4:84:f8:4f:62:51:be: + f8:c5:ec:db:38:92:e3:06:e5:08:91:0c:c4:28:41: + 55:fb:cb:5a:89:15:7e:71:e8:35:bf:4d:72:09:3d: + be:3a:38:50:5b:77:31:1b:8d:b3:c7:24:45:9a:a7: + ac:6d:00:14:5a:04:b7:ba:13:eb:51:0a:98:41:41: + 22:4e:65:61:87:81:41:50:a6:79:5c:89:de:19:4a: + 57:d5:2e:e6:5d:1c:53:2c:7e:98:cd:1a:06:16:a4: + 68:73:d0:34:04:13:5c:a1:71:d3:5a:7c:55:db:5e: + 64:e1:37:87:30:56:04:e5:11:b4:29:80:12:f1:79: + 39:88:a2:02:11:7c:27:66:b7:88:b7:78:f2:ca:0a: + a8:38:ab:0a:64:c2:bf:66:5d:95:84:c1:a1:25:1e: + 87:5d:1a:50:0b:20:12:cc:41:bb:6e:0b:51:38:b8: + 4b:cb + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Digital Signature, Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + B1:3E:C3:69:03:F8:BF:47:01:D4:98:26:1A:08:02:EF:63:64:2B:C3 + X509v3 Authority Key Identifier: + keyid:B1:3E:C3:69:03:F8:BF:47:01:D4:98:26:1A:08:02:EF:63:64:2B:C3 + + Signature Algorithm: sha1WithRSAEncryption + 1c:1a:06:97:dc:d7:9c:9f:3c:88:66:06:08:57:21:db:21:47: + f8:2a:67:aa:bf:18:32:76:40:10:57:c1:8a:f3:7a:d9:11:65: + 8e:35:fa:9e:fc:45:b5:9e:d9:4c:31:4b:b8:91:e8:43:2c:8e: + b3:78:ce:db:e3:53:79:71:d6:e5:21:94:01:da:55:87:9a:24: + 64:f6:8a:66:cc:de:9c:37:cd:a8:34:b1:69:9b:23:c8:9e:78: + 22:2b:70:43:e3:55:47:31:61:19:ef:58:c5:85:2f:4e:30:f6: + a0:31:16:23:c8:e7:e2:65:16:33:cb:bf:1a:1b:a0:3d:f8:ca: + 5e:8b:31:8b:60:08:89:2d:0c:06:5c:52:b7:c4:f9:0a:98:d1: + 15:5f:9f:12:be:7c:36:63:38:bd:44:a4:7f:e4:26:2b:0a:c4: + 97:69:0d:e9:8c:e2:c0:10:57:b8:c8:76:12:91:55:f2:48:69: + d8:bc:2a:02:5b:0f:44:d4:20:31:db:f4:ba:70:26:5d:90:60: + 9e:bc:4b:17:09:2f:b4:cb:1e:43:68:c9:07:27:c1:d2:5c:f7: + ea:21:b9:68:12:9c:3c:9c:bf:9e:fc:80:5c:9b:63:cd:ec:47: + aa:25:27:67:a0:37:f3:00:82:7d:54:d7:a9:f8:e9:2e:13:a3: + 77:e8:1f:4a +SHA1 Fingerprint=5F:B7:EE:06:33:E2:59:DB:AD:0C:4C:9A:E6:D3:8F:1A:61:C7:DC:25 diff --git a/system/etc/security/cacerts/82223c44.0 b/system/etc/security/cacerts/82223c44.0 new file mode 100644 index 0000000000000000000000000000000000000000..ab5bf83a2082040d641637ff666f2acef721b7c4 --- /dev/null +++ b/system/etc/security/cacerts/82223c44.0 @@ -0,0 +1,119 @@ +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd +MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg +Q2xhc3MgMiBSb290IENBMB4XDTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1ow +TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw +HgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB +BQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1g1Lr +6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPV +L4O2fuPn9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC91 +1K2GScuVr1QGbNgGE41b/+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHx +MlAQTn/0hpPshNOOvEu/XAFOBz3cFIqUCqTqc/sLUegTBxj6DvEr0VQVfTzh97QZ +QmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeffawrbD02TTqigzXsu8lkB +arcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgIzRFo1clr +Us3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLi +FRhnBkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRS +P/TizPJhk9H9Z2vXUq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN +9SG9dKpN6nIDSdvHXx1iY8f93ZHsM+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxP +AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMmAd+BikoL1Rpzz +uvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAU18h +9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s +A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3t +OluwlN5E40EIosHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo ++fsicdl9sz1Gv7SEr5AcD48Saq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7 +KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYdDnkM/crqJIByw5c/8nerQyIKx+u2 +DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWDLfJ6v9r9jv6ly0Us +H8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0oyLQ +I+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK7 +5t98biGCwWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h +3PFaTWwyI0PurKju7koSCTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPz +Y11aWOIv4x3kqdbQCtCev9eBCfHJxyYNrJgWVqA= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 2 (0x2) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=NO, O=Buypass AS-983163327, CN=Buypass Class 2 Root CA + Validity + Not Before: Oct 26 08:38:03 2010 GMT + Not After : Oct 26 08:38:03 2040 GMT + Subject: C=NO, O=Buypass AS-983163327, CN=Buypass Class 2 Root CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:d7:c7:5e:f7:c1:07:d4:77:fb:43:21:f4:f4:f5: + 69:e4:ee:32:01:db:a3:86:1f:e4:59:0d:ba:e7:75: + 83:52:eb:ea:1c:61:15:48:bb:1d:07:ca:8c:ae:b0: + dc:96:9d:ea:c3:60:92:86:82:28:73:9c:56:06:ff: + 4b:64:f0:0c:2a:37:49:b5:e5:cf:0c:7c:ee:f1:4a: + bb:73:30:65:f3:d5:2f:83:b6:7e:e3:e7:f5:9e:ab: + 60:f9:d3:f1:9d:92:74:8a:e4:1c:96:ac:5b:80:e9: + b5:f4:31:87:a3:51:fc:c7:7e:a1:6f:8e:53:77:d4: + 97:c1:55:33:92:3e:18:2f:75:d4:ad:86:49:cb:95: + af:54:06:6c:d8:06:13:8d:5b:ff:e1:26:19:59:c0: + 24:ba:81:71:79:90:44:50:68:24:94:5f:b8:b3:11: + f1:29:41:61:a3:41:cb:23:36:d5:c1:f1:32:50:10: + 4e:7f:f4:86:93:ec:84:d3:8e:bc:4b:bf:5c:01:4e: + 07:3d:dc:14:8a:94:0a:a4:ea:73:fb:0b:51:e8:13: + 07:18:fa:0e:f1:2b:d1:54:15:7d:3c:e1:f7:b4:19: + 42:67:62:5e:77:e0:a2:55:ec:b6:d9:69:17:d5:3a: + af:44:ed:4a:c5:9e:e4:7a:27:7c:e5:75:d7:aa:cb: + 25:e7:df:6b:0a:db:0f:4d:93:4e:a8:a0:cd:7b:2e: + f2:59:01:6a:b7:0d:b8:07:81:7e:8b:38:1b:38:e6: + 0a:57:99:3d:ee:21:e8:a3:f5:0c:16:dd:8b:ec:34: + 8e:9c:2a:1c:00:15:17:8d:68:83:d2:70:9f:18:08: + cd:11:68:d5:c9:6b:52:cd:c4:46:8f:dc:b5:f3:d8: + 57:73:1e:e9:94:39:04:bf:d3:de:38:de:b4:53:ec: + 69:1c:a2:7e:c4:8f:e4:1b:70:ad:f2:a2:f9:fb:f7: + 16:64:66:69:9f:49:51:a2:e2:15:18:67:06:4a:7f: + d5:6c:b5:4d:b3:33:e0:61:eb:5d:be:e9:98:0f:32: + d7:1d:4b:3c:2e:5a:01:52:91:09:f2:df:ea:8d:d8: + 06:40:63:aa:11:e4:fe:c3:37:9e:14:52:3f:f4:e2: + cc:f2:61:93:d1:fd:67:6b:d7:52:ae:bf:68:ab:40: + 43:a0:57:35:53:78:f0:53:f8:61:42:07:64:c6:d7: + 6f:9b:4c:38:0d:63:ac:62:af:36:8b:a2:73:0a:0d: + f5:21:bd:74:aa:4d:ea:72:03:49:db:c7:5f:1d:62: + 63:c7:fd:dd:91:ec:33:ee:f5:6d:b4:6e:30:68:de: + c8:d6:26:b0:75:5e:7b:b4:07:20:98:a1:76:32:b8: + 4d:6c:4f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + C9:80:77:E0:62:92:82:F5:46:9C:F3:BA:F7:4C:C3:DE:B8:A3:AD:39 + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + Signature Algorithm: sha256WithRSAEncryption + 53:5f:21:f5:ba:b0:3a:52:39:2c:92:b0:6c:00:c9:ef:ce:20: + ef:06:f2:96:9e:e9:a4:74:7f:7a:16:fc:b7:f5:b6:fb:15:1b: + 3f:ab:a6:c0:72:5d:10:b1:71:ee:bc:4f:e3:ad:ac:03:6d:2e: + 71:2e:af:c4:e3:ad:a3:bd:0c:11:a7:b4:ff:4a:b2:7b:10:10: + 1f:a7:57:41:b2:c0:ae:f4:2c:59:d6:47:10:88:f3:21:51:29: + 30:ca:60:86:af:46:ab:1d:ed:3a:5b:b0:94:de:44:e3:41:08: + a2:c1:ec:1d:d6:fd:4f:b6:d6:47:d0:14:0b:ca:e6:ca:b5:7b: + 77:7e:41:1f:5e:83:c7:b6:8c:39:96:b0:3f:96:81:41:6f:60: + 90:e2:e8:f9:fb:22:71:d9:7d:b3:3d:46:bf:b4:84:af:90:1c: + 0f:8f:12:6a:af:ef:ee:1e:7a:ae:02:4a:8a:17:2b:76:fe:ac: + 54:89:24:2c:4f:3f:b6:b2:a7:4e:8c:a8:91:97:fb:29:c6:7b: + 5c:2d:b9:cb:66:b6:b7:a8:5b:12:51:85:b5:09:7e:62:78:70: + fe:a9:6a:60:b6:1d:0e:79:0c:fd:ca:ea:24:80:72:c3:97:3f: + f2:77:ab:43:22:0a:c7:eb:b6:0c:84:82:2c:80:6b:41:8a:08: + c0:eb:a5:6b:df:99:12:cb:8a:d5:5e:80:0c:91:e0:26:08:36: + 48:c5:fa:38:11:35:ff:25:83:2d:f2:7a:bf:da:fd:8e:fe:a5: + cb:45:2c:1f:c4:88:53:ae:77:0e:d9:9a:76:c5:8e:2c:1d:a3: + ba:d5:ec:32:ae:c0:aa:ac:f7:d1:7a:4d:eb:d4:07:e2:48:f7: + 22:8e:b0:a4:9f:6a:ce:8e:b2:b2:60:f4:a3:22:d0:23:eb:94: + 5a:7a:69:dd:0f:bf:40:57:ac:6b:59:50:d9:a3:99:e1:6e:fe: + 8d:01:79:27:23:15:de:92:9d:7b:09:4d:5a:e7:4b:48:30:5a: + 18:e6:0a:6d:e6:8f:e0:d2:bb:e6:df:7c:6e:21:82:c1:68:39: + 4d:b4:98:58:66:62:cc:4a:90:5e:c3:fa:27:04:b1:79:15:74: + 99:cc:be:ad:20:de:26:60:1c:eb:56:51:a6:a3:ea:e4:a3:3f: + a7:ff:61:dc:f1:5a:4d:6c:32:23:43:ee:ac:a8:ee:ee:4a:12: + 09:3c:5d:71:c2:be:79:fa:c2:87:68:1d:0b:fd:5c:69:cc:06: + d0:9a:7d:54:99:2a:c9:39:1a:19:af:4b:2a:43:f3:63:5d:5a: + 58:e2:2f:e3:1d:e4:a9:d6:d0:0a:d0:9e:bf:d7:81:09:f1:c9: + c7:26:0d:ac:98:16:56:a0 +SHA1 Fingerprint=49:0A:75:74:DE:87:0A:47:FE:58:EE:F6:C7:6B:EB:C6:0B:12:40:99 diff --git a/system/etc/security/cacerts/85cde254.0 b/system/etc/security/cacerts/85cde254.0 new file mode 100644 index 0000000000000000000000000000000000000000..08be8a683d3137d1a4e8f55315615302d1a350c7 --- /dev/null +++ b/system/etc/security/cacerts/85cde254.0 @@ -0,0 +1,80 @@ +-----BEGIN CERTIFICATE----- +MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT +HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVs +ZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAw +MFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6 +b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQgVGVj +aG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZp +Y2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAL3twQP89o/8ArFvW59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMg +nLRJdzIpVv257IzdIvpy3Cdhl+72WoTsbhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1 +HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNkN3mSwOxGXn/hbVNMYq/N +Hwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7NfZTD4p7dN +dloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0 +HZbUJtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAO +BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0G +CSqGSIb3DQEBCwUAA4IBAQARWfolTwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjU +sHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx4mcujJUDJi5DnUox9g61DLu3 +4jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUwF5okxBDgBPfg +8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K +pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1 +mMpYjn0q7pBZc2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0 +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 0 (0x0) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=US, ST=Arizona, L=Scottsdale, O=Starfield Technologies, Inc., CN=Starfield Root Certificate Authority - G2 + Validity + Not Before: Sep 1 00:00:00 2009 GMT + Not After : Dec 31 23:59:59 2037 GMT + Subject: C=US, ST=Arizona, L=Scottsdale, O=Starfield Technologies, Inc., CN=Starfield Root Certificate Authority - G2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:bd:ed:c1:03:fc:f6:8f:fc:02:b1:6f:5b:9f:48: + d9:9d:79:e2:a2:b7:03:61:56:18:c3:47:b6:d7:ca: + 3d:35:2e:89:43:f7:a1:69:9b:de:8a:1a:fd:13:20: + 9c:b4:49:77:32:29:56:fd:b9:ec:8c:dd:22:fa:72: + dc:27:61:97:ee:f6:5a:84:ec:6e:19:b9:89:2c:dc: + 84:5b:d5:74:fb:6b:5f:c5:89:a5:10:52:89:46:55: + f4:b8:75:1c:e6:7f:e4:54:ae:4b:f8:55:72:57:02: + 19:f8:17:71:59:eb:1e:28:07:74:c5:9d:48:be:6c: + b4:f4:a4:b0:f3:64:37:79:92:c0:ec:46:5e:7f:e1: + 6d:53:4c:62:af:cd:1f:0b:63:bb:3a:9d:fb:fc:79: + 00:98:61:74:cf:26:82:40:63:f3:b2:72:6a:19:0d: + 99:ca:d4:0e:75:cc:37:fb:8b:89:c1:59:f1:62:7f: + 5f:b3:5f:65:30:f8:a7:b7:4d:76:5a:1e:76:5e:34: + c0:e8:96:56:99:8a:b3:f0:7f:a4:cd:bd:dc:32:31: + 7c:91:cf:e0:5f:11:f8:6b:aa:49:5c:d1:99:94:d1: + a2:e3:63:5b:09:76:b5:56:62:e1:4b:74:1d:96:d4: + 26:d4:08:04:59:d0:98:0e:0e:e6:de:fc:c3:ec:1f: + 90:f1 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + 7C:0C:32:1F:A7:D9:30:7F:C4:7D:68:A3:62:A8:A1:CE:AB:07:5B:27 + Signature Algorithm: sha256WithRSAEncryption + 11:59:fa:25:4f:03:6f:94:99:3b:9a:1f:82:85:39:d4:76:05: + 94:5e:e1:28:93:6d:62:5d:09:c2:a0:a8:d4:b0:75:38:f1:34: + 6a:9d:e4:9f:8a:86:26:51:e6:2c:d1:c6:2d:6e:95:20:4a:92: + 01:ec:b8:8a:67:7b:31:e2:67:2e:8c:95:03:26:2e:43:9d:4a: + 31:f6:0e:b5:0c:bb:b7:e2:37:7f:22:ba:00:a3:0e:7b:52:fb: + 6b:bb:3b:c4:d3:79:51:4e:cd:90:f4:67:07:19:c8:3c:46:7a: + 0d:01:7d:c5:58:e7:6d:e6:85:30:17:9a:24:c4:10:e0:04:f7: + e0:f2:7f:d4:aa:0a:ff:42:1d:37:ed:94:e5:64:59:12:20:77: + 38:d3:32:3e:38:81:75:96:73:fa:68:8f:b1:cb:ce:1f:c5:ec: + fa:9c:7e:cf:7e:b1:f1:07:2d:b6:fc:bf:ca:a4:bf:d0:97:05: + 4a:bc:ea:18:28:02:90:bd:54:78:09:21:71:d3:d1:7d:1d:d9: + 16:b0:a9:61:3d:d0:0a:00:22:fc:c7:7b:cb:09:64:45:0b:3b: + 40:81:f7:7d:7c:32:f5:98:ca:58:8e:7d:2a:ee:90:59:73:64: + f9:36:74:5e:25:a1:f5:66:05:2e:7f:39:15:a9:2a:fb:50:8b: + 8e:85:69:f4 +SHA1 Fingerprint=B5:1C:06:7C:EE:2B:0C:3D:F8:55:AB:2D:92:F4:FE:39:D4:E7:0F:0E diff --git a/system/etc/security/cacerts/86212b19.0 b/system/etc/security/cacerts/86212b19.0 new file mode 100644 index 0000000000000000000000000000000000000000..ac1ad6bd810e893e9f52256e15b70db6fd504a94 --- /dev/null +++ b/system/etc/security/cacerts/86212b19.0 @@ -0,0 +1,77 @@ +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz +dCBOZXR3b3JraW5nMB4XDTEwMDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDEL +MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp +cm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SEHi3y +YJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbua +kCNrmreIdIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRL +QESxG9fhwoXA3hA/Pe24/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp +6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gbh+0t+nvujArjqWaJGctB+d1ENmHP4ndG +yH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNVHQ4EFgQUBx/S55zawm6i +QLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ +KoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfO +tDIuUFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzu +QY0x2+c06lkh1QF612S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZ +Lgo/bNjR9eUJtGxUAArgFU2HdW23WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4u +olu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9/ZFvgrG+CJPbFEfxojfHRZ48 +x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 8957382827206547757 (0x7c4f04391cd4992d) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=US, O=AffirmTrust, CN=AffirmTrust Networking + Validity + Not Before: Jan 29 14:08:24 2010 GMT + Not After : Dec 31 14:08:24 2030 GMT + Subject: C=US, O=AffirmTrust, CN=AffirmTrust Networking + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:b4:84:cc:33:17:2e:6b:94:6c:6b:61:52:a0:eb: + a3:cf:79:94:4c:e5:94:80:99:cb:55:64:44:65:8f: + 67:64:e2:06:e3:5c:37:49:f6:2f:9b:84:84:1e:2d: + f2:60:9d:30:4e:cc:84:85:e2:2c:cf:1e:9e:fe:36: + ab:33:77:35:44:d8:35:96:1a:3d:36:e8:7a:0e:d8: + d5:47:a1:6a:69:8b:d9:fc:bb:3a:ae:79:5a:d5:f4: + d6:71:bb:9a:90:23:6b:9a:b7:88:74:87:0c:1e:5f: + b9:9e:2d:fa:ab:53:2b:dc:bb:76:3e:93:4c:08:08: + 8c:1e:a2:23:1c:d4:6a:ad:22:ba:99:01:2e:6d:65: + cb:be:24:66:55:24:4b:40:44:b1:1b:d7:e1:c2:85: + c0:de:10:3f:3d:ed:b8:fc:f1:f1:23:53:dc:bf:65: + 97:6f:d9:f9:40:71:8d:7d:bd:95:d4:ce:be:a0:5e: + 27:23:de:fd:a6:d0:26:0e:00:29:eb:3c:46:f0:3d: + 60:bf:3f:50:d2:dc:26:41:51:9e:14:37:42:04:a3: + 70:57:a8:1b:87:ed:2d:fa:7b:ee:8c:0a:e3:a9:66: + 89:19:cb:41:f9:dd:44:36:61:cf:e2:77:46:c8:7d: + f6:f4:92:81:36:fd:db:34:f1:72:7e:f3:0c:16:bd: + b4:15 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 07:1F:D2:E7:9C:DA:C2:6E:A2:40:B4:B0:7A:50:10:50:74:C4:C8:BD + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + Signature Algorithm: sha1WithRSAEncryption + 89:57:b2:16:7a:a8:c2:fd:d6:d9:9b:9b:34:c2:9c:b4:32:14: + 4d:a7:a4:df:ec:be:a7:be:f8:43:db:91:37:ce:b4:32:2e:50: + 55:1a:35:4e:76:43:71:20:ef:93:77:4e:15:70:2e:87:c3:c1: + 1d:6d:dc:cb:b5:27:d4:2c:56:d1:52:53:3a:44:d2:73:c8:c4: + 1b:05:65:5a:62:92:9c:ee:41:8d:31:db:e7:34:ea:59:21:d5: + 01:7a:d7:64:b8:64:39:cd:c9:ed:af:ed:4b:03:48:a7:a0:99: + 01:80:dc:65:a3:36:ae:65:59:48:4f:82:4b:c8:65:f1:57:1d: + e5:59:2e:0a:3f:6c:d8:d1:f5:e5:09:b4:6c:54:00:0a:e0:15: + 4d:87:75:6d:b7:58:96:5a:dd:6d:d2:00:a0:f4:9b:48:be:c3: + 37:a4:ba:36:e0:7c:87:85:97:1a:15:a2:de:2e:a2:5b:bd:af: + 18:f9:90:50:cd:70:59:f8:27:67:47:cb:c7:a0:07:3a:7d:d1: + 2c:5d:6c:19:3a:66:b5:7d:fd:91:6f:82:b1:be:08:93:db:14: + 47:f1:a2:37:c7:45:9e:3c:c7:77:af:64:a8:93:df:f6:69:83: + 82:60:f2:49:42:34:ed:5a:00:54:85:1c:16:36:92:0c:5c:fa: + a6:ad:bf:db +SHA1 Fingerprint=29:36:21:02:8B:20:ED:02:F5:66:C5:32:D1:D6:ED:90:9F:45:00:2F diff --git a/system/etc/security/cacerts/87753b0d.0 b/system/etc/security/cacerts/87753b0d.0 new file mode 100644 index 0000000000000000000000000000000000000000..18405ece61c01fefca902bbd317fa5d37cbfadb2 --- /dev/null +++ b/system/etc/security/cacerts/87753b0d.0 @@ -0,0 +1,122 @@ +-----BEGIN CERTIFICATE----- +MIIFbDCCA1SgAwIBAgIBATANBgkqhkiG9w0BAQUFADBHMQswCQYDVQQGEwJVUzEW +MBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEgMB4GA1UEAxMXR2VvVHJ1c3QgVW5pdmVy +c2FsIENBIDIwHhcNMDQwMzA0MDUwMDAwWhcNMjkwMzA0MDUwMDAwWjBHMQswCQYD +VQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEgMB4GA1UEAxMXR2VvVHJ1 +c3QgVW5pdmVyc2FsIENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC +AQCzVFLByT7y2dyxUxpZKeexw0Uo5dfR7cXFS6GqdHtXr0om/Nj1XqduGdt0DE81 +WzILAePb63p3NeqqWuDW6KFXlPCQo3RWlEQwAx5cTiuFJnSCegx2oG9NzkEtoBUG +FF+3Qs17j1hhNNwqCPkuwwGmIkQcTAeC5lvO0Ep8BNMZcyfwqph/Lq9O64ceJHdq +XbboW0W63MOhBW9Wjo8QJqVJwy7XQYci4E+GymC16qFjwAGXEHm9ADwSbSsVsaxL +se4YuU6W3Nx2/zu+z18DwPw76L5GG//aQMJS9/7jOvdqdzXQ2o3rXhhqMcceujwb +KNZrVMaqW9eiLBsZzKIC9ptZvTdrhrVtgrrY6slWvKk2WP0+GfPtDCapkzj4T8Fd +IgbQl+rhrcZV4IErKIM6+vR7IVEAvlI4zs1meaj0gVbi0IMJR1FbUGrP20gaXT73 +y/Zl92zxlfgCOzJWgjl6W70viRu/obTo/3+NjN8D8WBOWBFM66M/ECuDmgFz2ZRt +hAAnZqzwcEAJQpKtT5MNYQlRJNiS1QuUYbKHsu3/mjX/hVTK7URDrBs8FmtISgoc +QIgfksILAAX/8sgCSqSqqcyZlpwvWOB94b67B9xfBHJcMTTD7F8t4D1kkCLm0ey4 +Lt1ZrtmhN79UNdxzMk+MBB4zsslG8dhcyFVQyWi9qLo2CQIDAQABo2MwYTAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBR281Xh+qQ2+/CfXGJx7Tz0RzgQKzAfBgNV +HSMEGDAWgBR281Xh+qQ2+/CfXGJx7Tz0RzgQKzAOBgNVHQ8BAf8EBAMCAYYwDQYJ +KoZIhvcNAQEFBQADggIBAGbBxiPz2eAubl/oz66wsCVNK/g7WJtAJDday6sWSf+z +dXkzoS9tcBc0kf5nfo/sm+VegqlVHy/c1FEHEv6sFj4sNcZj/NwQ6w2jqtB8zNHQ +L1EuxBRa3ugZ4T7GzKQp5y6EqgYweHZUcyiYWTjgAA1i00J9IZ+uPTqM1fp3DRgr +Fg5fNuH8KrUwJM/gYwx7WBr+mbpCErGR9Hxo4sjoryzqyX6uuyo9DRXcNJW2GHSo +ag/HtPQTxORb7QrSpJdMKu0vbBKJPfEncKpqA1Ihn0CoZ1Dy81of398j9tx4TuaY +T1U6U+Pv8vSfx3zYWK8pIpe44L2RLrB27FcRz+8pRPPphXpgY+RdM4kX2TGq2tbz +GDVyz4crL2MjhF2EjD9XoIj8mZEoJmmZ1I+XRL6O1UixpCgp8RW04eWe3fiPpm8m +1wk8OhwRDqZsN/etRIcsKMfYdIKz0G9KV7s1KSegi+ghp4dkNl3M2Basx7InQJJV +OCiNUW7dFGdTbHFcJoRNdVq2fmBWqU2t+5sel/MN2dKXVHfaPRK34B7vCAas+YWH +6aLcr34YEoP9VhdBLtUpgn2Z9DH2canPLAEnpQW5qrJITirvn5NSUZU8UnOOVkwX +QMAJKOSLakhT2+zNVVXxxvjpoixMptEmX36vWkzaH6byHCx+rgIW0lbQL1dTR+iS +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 1 (0x1) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=US, O=GeoTrust Inc., CN=GeoTrust Universal CA 2 + Validity + Not Before: Mar 4 05:00:00 2004 GMT + Not After : Mar 4 05:00:00 2029 GMT + Subject: C=US, O=GeoTrust Inc., CN=GeoTrust Universal CA 2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:b3:54:52:c1:c9:3e:f2:d9:dc:b1:53:1a:59:29: + e7:b1:c3:45:28:e5:d7:d1:ed:c5:c5:4b:a1:aa:74: + 7b:57:af:4a:26:fc:d8:f5:5e:a7:6e:19:db:74:0c: + 4f:35:5b:32:0b:01:e3:db:eb:7a:77:35:ea:aa:5a: + e0:d6:e8:a1:57:94:f0:90:a3:74:56:94:44:30:03: + 1e:5c:4e:2b:85:26:74:82:7a:0c:76:a0:6f:4d:ce: + 41:2d:a0:15:06:14:5f:b7:42:cd:7b:8f:58:61:34: + dc:2a:08:f9:2e:c3:01:a6:22:44:1c:4c:07:82:e6: + 5b:ce:d0:4a:7c:04:d3:19:73:27:f0:aa:98:7f:2e: + af:4e:eb:87:1e:24:77:6a:5d:b6:e8:5b:45:ba:dc: + c3:a1:05:6f:56:8e:8f:10:26:a5:49:c3:2e:d7:41: + 87:22:e0:4f:86:ca:60:b5:ea:a1:63:c0:01:97:10: + 79:bd:00:3c:12:6d:2b:15:b1:ac:4b:b1:ee:18:b9: + 4e:96:dc:dc:76:ff:3b:be:cf:5f:03:c0:fc:3b:e8: + be:46:1b:ff:da:40:c2:52:f7:fe:e3:3a:f7:6a:77: + 35:d0:da:8d:eb:5e:18:6a:31:c7:1e:ba:3c:1b:28: + d6:6b:54:c6:aa:5b:d7:a2:2c:1b:19:cc:a2:02:f6: + 9b:59:bd:37:6b:86:b5:6d:82:ba:d8:ea:c9:56:bc: + a9:36:58:fd:3e:19:f3:ed:0c:26:a9:93:38:f8:4f: + c1:5d:22:06:d0:97:ea:e1:ad:c6:55:e0:81:2b:28: + 83:3a:fa:f4:7b:21:51:00:be:52:38:ce:cd:66:79: + a8:f4:81:56:e2:d0:83:09:47:51:5b:50:6a:cf:db: + 48:1a:5d:3e:f7:cb:f6:65:f7:6c:f1:95:f8:02:3b: + 32:56:82:39:7a:5b:bd:2f:89:1b:bf:a1:b4:e8:ff: + 7f:8d:8c:df:03:f1:60:4e:58:11:4c:eb:a3:3f:10: + 2b:83:9a:01:73:d9:94:6d:84:00:27:66:ac:f0:70: + 40:09:42:92:ad:4f:93:0d:61:09:51:24:d8:92:d5: + 0b:94:61:b2:87:b2:ed:ff:9a:35:ff:85:54:ca:ed: + 44:43:ac:1b:3c:16:6b:48:4a:0a:1c:40:88:1f:92: + c2:0b:00:05:ff:f2:c8:02:4a:a4:aa:a9:cc:99:96: + 9c:2f:58:e0:7d:e1:be:bb:07:dc:5f:04:72:5c:31: + 34:c3:ec:5f:2d:e0:3d:64:90:22:e6:d1:ec:b8:2e: + dd:59:ae:d9:a1:37:bf:54:35:dc:73:32:4f:8c:04: + 1e:33:b2:c9:46:f1:d8:5c:c8:55:50:c9:68:bd:a8: + ba:36:09 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 76:F3:55:E1:FA:A4:36:FB:F0:9F:5C:62:71:ED:3C:F4:47:38:10:2B + X509v3 Authority Key Identifier: + keyid:76:F3:55:E1:FA:A4:36:FB:F0:9F:5C:62:71:ED:3C:F4:47:38:10:2B + + X509v3 Key Usage: critical + Digital Signature, Certificate Sign, CRL Sign + Signature Algorithm: sha1WithRSAEncryption + 66:c1:c6:23:f3:d9:e0:2e:6e:5f:e8:cf:ae:b0:b0:25:4d:2b: + f8:3b:58:9b:40:24:37:5a:cb:ab:16:49:ff:b3:75:79:33:a1: + 2f:6d:70:17:34:91:fe:67:7e:8f:ec:9b:e5:5e:82:a9:55:1f: + 2f:dc:d4:51:07:12:fe:ac:16:3e:2c:35:c6:63:fc:dc:10:eb: + 0d:a3:aa:d0:7c:cc:d1:d0:2f:51:2e:c4:14:5a:de:e8:19:e1: + 3e:c6:cc:a4:29:e7:2e:84:aa:06:30:78:76:54:73:28:98:59: + 38:e0:00:0d:62:d3:42:7d:21:9f:ae:3d:3a:8c:d5:fa:77:0d: + 18:2b:16:0e:5f:36:e1:fc:2a:b5:30:24:cf:e0:63:0c:7b:58: + 1a:fe:99:ba:42:12:b1:91:f4:7c:68:e2:c8:e8:af:2c:ea:c9: + 7e:ae:bb:2a:3d:0d:15:dc:34:95:b6:18:74:a8:6a:0f:c7:b4: + f4:13:c4:e4:5b:ed:0a:d2:a4:97:4c:2a:ed:2f:6c:12:89:3d: + f1:27:70:aa:6a:03:52:21:9f:40:a8:67:50:f2:f3:5a:1f:df: + df:23:f6:dc:78:4e:e6:98:4f:55:3a:53:e3:ef:f2:f4:9f:c7: + 7c:d8:58:af:29:22:97:b8:e0:bd:91:2e:b0:76:ec:57:11:cf: + ef:29:44:f3:e9:85:7a:60:63:e4:5d:33:89:17:d9:31:aa:da: + d6:f3:18:35:72:cf:87:2b:2f:63:23:84:5d:84:8c:3f:57:a0: + 88:fc:99:91:28:26:69:99:d4:8f:97:44:be:8e:d5:48:b1:a4: + 28:29:f1:15:b4:e1:e5:9e:dd:f8:8f:a6:6f:26:d7:09:3c:3a: + 1c:11:0e:a6:6c:37:f7:ad:44:87:2c:28:c7:d8:74:82:b3:d0: + 6f:4a:57:bb:35:29:27:a0:8b:e8:21:a7:87:64:36:5d:cc:d8: + 16:ac:c7:b2:27:40:92:55:38:28:8d:51:6e:dd:14:67:53:6c: + 71:5c:26:84:4d:75:5a:b6:7e:60:56:a9:4d:ad:fb:9b:1e:97: + f3:0d:d9:d2:97:54:77:da:3d:12:b7:e0:1e:ef:08:06:ac:f9: + 85:87:e9:a2:dc:af:7e:18:12:83:fd:56:17:41:2e:d5:29:82: + 7d:99:f4:31:f6:71:a9:cf:2c:01:27:a5:05:b9:aa:b2:48:4e: + 2a:ef:9f:93:52:51:95:3c:52:73:8e:56:4c:17:40:c0:09:28: + e4:8b:6a:48:53:db:ec:cd:55:55:f1:c6:f8:e9:a2:2c:4c:a6: + d1:26:5f:7e:af:5a:4c:da:1f:a6:f2:1c:2c:7e:ae:02:16:d2: + 56:d0:2f:57:53:47:e8:92 +SHA1 Fingerprint=37:9A:19:7B:41:85:45:35:0C:A6:03:69:F3:3C:2E:AF:47:4F:20:79 diff --git a/system/etc/security/cacerts/882de061.0 b/system/etc/security/cacerts/882de061.0 new file mode 100644 index 0000000000000000000000000000000000000000..e15b2af53c757bf72f59935a1130edcb7e044055 --- /dev/null +++ b/system/etc/security/cacerts/882de061.0 @@ -0,0 +1,77 @@ +-----BEGIN CERTIFICATE----- +MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYT +AlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBD +QTAeFw0wNjA3MDQxNzIwMDRaFw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJP +MREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTCC +ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7IJUqOtdu0KBuqV5Do +0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHHrfAQ +UySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5d +RdY4zTW2ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQ +OA7+j0xbm0bqQfWwCHTD0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwv +JoIQ4uNllAoEwF73XVv4EOLQunpL+943AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08C +AwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAcYwHQYDVR0O +BBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IBAQA+0hyJ +LjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecY +MnQ8SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ +44gx+FkagQnIl6Z0x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6I +Jd1hJyMctTEHBDa0GpC9oHRxUIltvBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNw +i/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7NzTogVZ96edhBiIL5VaZVDADlN +9u6wWk5JRFRYX0KD +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 35210227249154 (0x200605167002) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=RO, O=certSIGN, OU=certSIGN ROOT CA + Validity + Not Before: Jul 4 17:20:04 2006 GMT + Not After : Jul 4 17:20:04 2031 GMT + Subject: C=RO, O=certSIGN, OU=certSIGN ROOT CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:b7:33:b9:7e:c8:25:4a:8e:b5:db:b4:28:1b:aa: + 57:90:e8:d1:22:d3:64:ba:d3:93:e8:d4:ac:86:61: + 40:6a:60:57:68:54:84:4d:bc:6a:54:02:05:ff:df: + 9b:9a:2a:ae:5d:07:8f:4a:c3:28:7f:ef:fb:2b:fa: + 79:f1:c7:ad:f0:10:53:24:90:8b:66:c9:a8:88:ab: + af:5a:a3:00:e9:be:ba:46:ee:5b:73:7b:2c:17:82: + 81:5e:62:2c:a1:02:65:b3:bd:c5:2b:00:7e:c4:fc: + 03:33:57:0d:ed:e2:fa:ce:5d:45:d6:38:cd:35:b6: + b2:c1:d0:9c:81:4a:aa:e4:b2:01:5c:1d:8f:5f:99: + c4:b1:ad:db:88:21:eb:90:08:82:80:f3:30:a3:43: + e6:90:82:ae:55:28:49:ed:5b:d7:a9:10:38:0e:fe: + 8f:4c:5b:9b:46:ea:41:f5:b0:08:74:c3:d0:88:33: + b6:7c:d7:74:df:dc:84:d1:43:0e:75:39:a1:25:40: + 28:ea:78:cb:0e:2c:2e:39:9d:8c:8b:6e:16:1c:2f: + 26:82:10:e2:e3:65:94:0a:04:c0:5e:f7:5d:5b:f8: + 10:e2:d0:ba:7a:4b:fb:de:37:00:00:1a:5b:28:e3: + d2:9c:73:3e:32:87:98:a1:c9:51:2f:d7:de:ac:33: + b3:4f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Digital Signature, Non Repudiation, Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + E0:8C:9B:DB:25:49:B3:F1:7C:86:D6:B2:42:87:0B:D0:6B:A0:D9:E4 + Signature Algorithm: sha1WithRSAEncryption + 3e:d2:1c:89:2e:35:fc:f8:75:dd:e6:7f:65:88:f4:72:4c:c9: + 2c:d7:32:4e:f3:dd:19:79:47:bd:8e:3b:5b:93:0f:50:49:24: + 13:6b:14:06:72:ef:09:d3:a1:a1:e3:40:84:c9:e7:18:32:74: + 3c:48:6e:0f:9f:4b:d4:f7:1e:d3:93:86:64:54:97:63:72:50: + d5:55:cf:fa:20:93:02:a2:9b:c3:23:93:4e:16:55:76:a0:70: + 79:6d:cd:21:1f:cf:2f:2d:bc:19:e3:88:31:f8:59:1a:81:09: + c8:97:a6:74:c7:60:c4:5b:cc:57:8e:b2:75:fd:1b:02:09:db: + 59:6f:72:93:69:f7:31:41:d6:88:38:bf:87:b2:bd:16:79:f9: + aa:e4:be:88:25:dd:61:27:23:1c:b5:31:07:04:36:b4:1a:90: + bd:a0:74:71:50:89:6d:bc:14:e3:0f:86:ae:f1:ab:3e:c7:a0: + 09:cc:a3:48:d1:e0:db:64:e7:92:b5:cf:af:72:43:70:8b:f9: + c3:84:3c:13:aa:7e:92:9b:57:53:93:fa:70:c2:91:0e:31:f9: + 9b:67:5d:e9:96:38:5e:5f:b3:73:4e:88:15:67:de:9e:76:10: + 62:20:be:55:69:95:43:00:39:4d:f6:ee:b0:5a:4e:49:44:54: + 58:5f:42:83 +SHA1 Fingerprint=FA:B7:EE:36:97:26:62:FB:2D:B0:2A:F6:BF:03:FD:E8:7C:4B:2F:9B diff --git a/system/etc/security/cacerts/89c02a45.0 b/system/etc/security/cacerts/89c02a45.0 new file mode 100644 index 0000000000000000000000000000000000000000..f3190b7dd876db47ef0c7ff3840e65b07783bd27 --- /dev/null +++ b/system/etc/security/cacerts/89c02a45.0 @@ -0,0 +1,54 @@ +-----BEGIN CERTIFICATE----- +MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTEL +MAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE +BxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMT +IkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwMzA2MDAw +MDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdy +ZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09N +T0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlv +biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSR +FtSrYpn1PlILBs5BAH+X4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0J +cfRK9ChQtP6IHG4/bC8vCVlbpVsLM5niwz2J+Wos77LTBumjQjBAMB0GA1UdDgQW +BBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VGFAkK+qDm +fQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdv +GDeAU/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 1f:47:af:aa:62:00:70:50:54:4c:01:9e:9b:63:99:2a + Signature Algorithm: ecdsa-with-SHA384 + Issuer: C=GB, ST=Greater Manchester, L=Salford, O=COMODO CA Limited, CN=COMODO ECC Certification Authority + Validity + Not Before: Mar 6 00:00:00 2008 GMT + Not After : Jan 18 23:59:59 2038 GMT + Subject: C=GB, ST=Greater Manchester, L=Salford, O=COMODO CA Limited, CN=COMODO ECC Certification Authority + Subject Public Key Info: + Public Key Algorithm: id-ecPublicKey + Public-Key: (384 bit) + pub: + 04:03:47:7b:2f:75:c9:82:15:85:fb:75:e4:91:16: + d4:ab:62:99:f5:3e:52:0b:06:ce:41:00:7f:97:e1: + 0a:24:3c:1d:01:04:ee:3d:d2:8d:09:97:0c:e0:75: + e4:fa:fb:77:8a:2a:f5:03:60:4b:36:8b:16:23:16: + ad:09:71:f4:4a:f4:28:50:b4:fe:88:1c:6e:3f:6c: + 2f:2f:09:59:5b:a5:5b:0b:33:99:e2:c3:3d:89:f9: + 6a:2c:ef:b2:d3:06:e9 + ASN1 OID: secp384r1 + X509v3 extensions: + X509v3 Subject Key Identifier: + 75:71:A7:19:48:19:BC:9D:9D:EA:41:47:DF:94:C4:48:77:99:D3:79 + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: ecdsa-with-SHA384 + 30:65:02:31:00:ef:03:5b:7a:ac:b7:78:0a:72:b7:88:df:ff: + b5:46:14:09:0a:fa:a0:e6:7d:08:c6:1a:87:bd:18:a8:73:bd: + 26:ca:60:0c:9d:ce:99:9f:cf:5c:0f:30:e1:be:14:31:ea:02: + 30:14:f4:93:3c:49:a7:33:7a:90:46:47:b3:63:7d:13:9b:4e: + b7:6f:18:37:80:53:fe:dd:20:e0:35:9a:36:d1:c7:01:b9:e6: + dc:dd:f3:ff:1d:2c:3a:16:57:d9:92:39:d6 +SHA1 Fingerprint=9F:74:4E:9F:2B:4D:BA:EC:0F:31:2C:50:B6:56:3B:8E:2D:93:C3:11 diff --git a/system/etc/security/cacerts/8d6437c3.0 b/system/etc/security/cacerts/8d6437c3.0 new file mode 100644 index 0000000000000000000000000000000000000000..2097b642d6d3df381521aad5338ef300fcd8ef22 --- /dev/null +++ b/system/etc/security/cacerts/8d6437c3.0 @@ -0,0 +1,80 @@ +-----BEGIN CERTIFICATE----- +MIIDljCCAn6gAwIBAgIQC5McOtY5Z+pnI7/Dr5r0SzANBgkqhkiG9w0BAQsFADBl +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv +b3QgRzIwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl +cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ5ygvUj82ckmIkzTz+GoeMVSA +n61UQbVH35ao1K+ALbkKz3X9iaV9JPrjIgwrvJUXCzO/GU1BBpAAvQxNEP4Htecc +biJVMWWXvdMX0h5i89vqbFCMP4QMls+3ywPgym2hFEwbid3tALBSfK+RbLE4E9Hp +EgjAALAcKxHad3A2m67OeYfcgnDmCXRwVWmvo2ifv922ebPynXApVfSr/5Vh88lA +bx3RvpO704gqu52/clpWcTs/1PPRCv4o76Pu2ZmvA9OPYLfykqGxvYmJHzDNw6Yu +YjOuFgJ3RFrngQo8p0Quebg/BLxcoIfhG69Rjs3sLPr4/m3wOnyqi+RnlTGNAgMB +AAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQW +BBTOw0q5mVXyuNtgv6l+vVa1lzan1jANBgkqhkiG9w0BAQsFAAOCAQEAyqVVjOPI +QW5pJ6d1Ee88hjZv0p3GeDgdaZaikmkuOGybfQTUiaWxMTeKySHMq2zNixya1r9I +0jJmwYrA8y8678Dj1JGG0VDjA9tzd29KOVPt3ibHtX2vK0LRdWLjSisCx1BL4Gni +lmwORGYQRI+tBev4eaymG+g3NJ1TyWGqolKvSnAWhsI6yLETcDbYz+70CjTVW0z9 +B5yiutkBclzzTcHdDrEcDcRjvq30FPuJ7KJBDkzMyFdA0G4Dqs0MjomZmWzwPDCv +ON9vvKO+KSAnq3T/EyJ43pdSVR6DtVQgA+6uwE9W3jfMw3+qBCe703e4YtsXfJwo +IhNzbM8m9Yop5w== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 0b:93:1c:3a:d6:39:67:ea:67:23:bf:c3:af:9a:f4:4b + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert Assured ID Root G2 + Validity + Not Before: Aug 1 12:00:00 2013 GMT + Not After : Jan 15 12:00:00 2038 GMT + Subject: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert Assured ID Root G2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:d9:e7:28:2f:52:3f:36:72:49:88:93:34:f3:f8: + 6a:1e:31:54:80:9f:ad:54:41:b5:47:df:96:a8:d4: + af:80:2d:b9:0a:cf:75:fd:89:a5:7d:24:fa:e3:22: + 0c:2b:bc:95:17:0b:33:bf:19:4d:41:06:90:00:bd: + 0c:4d:10:fe:07:b5:e7:1c:6e:22:55:31:65:97:bd: + d3:17:d2:1e:62:f3:db:ea:6c:50:8c:3f:84:0c:96: + cf:b7:cb:03:e0:ca:6d:a1:14:4c:1b:89:dd:ed:00: + b0:52:7c:af:91:6c:b1:38:13:d1:e9:12:08:c0:00: + b0:1c:2b:11:da:77:70:36:9b:ae:ce:79:87:dc:82: + 70:e6:09:74:70:55:69:af:a3:68:9f:bf:dd:b6:79: + b3:f2:9d:70:29:55:f4:ab:ff:95:61:f3:c9:40:6f: + 1d:d1:be:93:bb:d3:88:2a:bb:9d:bf:72:5a:56:71: + 3b:3f:d4:f3:d1:0a:fe:28:ef:a3:ee:d9:99:af:03: + d3:8f:60:b7:f2:92:a1:b1:bd:89:89:1f:30:cd:c3: + a6:2e:62:33:ae:16:02:77:44:5a:e7:81:0a:3c:a7: + 44:2e:79:b8:3f:04:bc:5c:a0:87:e1:1b:af:51:8e: + cd:ec:2c:fa:f8:fe:6d:f0:3a:7c:aa:8b:e4:67:95: + 31:8d + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Digital Signature, Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + CE:C3:4A:B9:99:55:F2:B8:DB:60:BF:A9:7E:BD:56:B5:97:36:A7:D6 + Signature Algorithm: sha256WithRSAEncryption + ca:a5:55:8c:e3:c8:41:6e:69:27:a7:75:11:ef:3c:86:36:6f: + d2:9d:c6:78:38:1d:69:96:a2:92:69:2e:38:6c:9b:7d:04:d4: + 89:a5:b1:31:37:8a:c9:21:cc:ab:6c:cd:8b:1c:9a:d6:bf:48: + d2:32:66:c1:8a:c0:f3:2f:3a:ef:c0:e3:d4:91:86:d1:50:e3: + 03:db:73:77:6f:4a:39:53:ed:de:26:c7:b5:7d:af:2b:42:d1: + 75:62:e3:4a:2b:02:c7:50:4b:e0:69:e2:96:6c:0e:44:66:10: + 44:8f:ad:05:eb:f8:79:ac:a6:1b:e8:37:34:9d:53:c9:61:aa: + a2:52:af:4a:70:16:86:c2:3a:c8:b1:13:70:36:d8:cf:ee:f4: + 0a:34:d5:5b:4c:fd:07:9c:a2:ba:d9:01:72:5c:f3:4d:c1:dd: + 0e:b1:1c:0d:c4:63:be:ad:f4:14:fb:89:ec:a2:41:0e:4c:cc: + c8:57:40:d0:6e:03:aa:cd:0c:8e:89:99:99:6c:f0:3c:30:af: + 38:df:6f:bc:a3:be:29:20:27:ab:74:ff:13:22:78:de:97:52: + 55:1e:83:b5:54:20:03:ee:ae:c0:4f:56:de:37:cc:c3:7f:aa: + 04:27:bb:d3:77:b8:62:db:17:7c:9c:28:22:13:73:6c:cf:26: + f5:8a:29:e7 +SHA1 Fingerprint=A1:4B:48:D9:43:EE:0A:0E:40:90:4F:3C:E0:A4:C0:91:93:51:5D:3F diff --git a/system/etc/security/cacerts/91739615.0 b/system/etc/security/cacerts/91739615.0 new file mode 100644 index 0000000000000000000000000000000000000000..3549e543ac91a2c0eeb74329314e24f551b820e1 --- /dev/null +++ b/system/etc/security/cacerts/91739615.0 @@ -0,0 +1,84 @@ +-----BEGIN CERTIFICATE----- +MIIEAzCCAuugAwIBAgIQVID5oHPtPwBMyonY43HmSjANBgkqhkiG9w0BAQUFADB1 +MQswCQYDVQQGEwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1 +czEoMCYGA1UEAwwfRUUgQ2VydGlmaWNhdGlvbiBDZW50cmUgUm9vdCBDQTEYMBYG +CSqGSIb3DQEJARYJcGtpQHNrLmVlMCIYDzIwMTAxMDMwMTAxMDMwWhgPMjAzMDEy +MTcyMzU5NTlaMHUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKDBlBUyBTZXJ0aWZpdHNl +ZXJpbWlza2Vza3VzMSgwJgYDVQQDDB9FRSBDZXJ0aWZpY2F0aW9uIENlbnRyZSBS +b290IENBMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwggEiMA0GCSqGSIb3DQEB +AQUAA4IBDwAwggEKAoIBAQDIIMDs4MVLqwd4lfNE7vsLDP90jmG7sWLqI9iroWUy +euuOF0+W2Ap7kaJjbMeMTC55v6kF/GlclY1i+blw7cNRfdCT5mzrMEvhvH2/UpvO +bntl8jixwKIy72KyaOBhU8E2lf/slLo2rpwcpzIP5Xy0xm90/XsY6KxX7QYgSzIw +WFv9zajmofxwvI6Sc9uXp3whrj3B9UiHbCe9nyV0gVWw93X2PaRka9ZP585ArQ/d +MtO8ihJTmMmJ+xAdTX7Nfh9WDSFwhfYggx/2uh8Ej+p3iDXE/+pOoYtNP2MbRMNE +1CV2yreN1x5KZmTNXMWcg+HCCIia7E6j8T4cLNlsHaFLAgMBAAGjgYowgYcwDwYD +VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBLyWj7qVhy/ +zQas8fElyalL1BSZMEUGA1UdJQQ+MDwGCCsGAQUFBwMCBggrBgEFBQcDAQYIKwYB +BQUHAwMGCCsGAQUFBwMEBggrBgEFBQcDCAYIKwYBBQUHAwkwDQYJKoZIhvcNAQEF +BQADggEBAHv25MANqhlHt01Xo/6tu7Fq1Q+e2+RjxY6hUFaTlrg4wCQiZrxTFGGV +v9DHKpY5P30osxBAIWrEr7BSdxjhlthWXePdNl4dp1BUoMUq5KqMlIpPnTX/dqQG +E5Gion0ARD9V04I8GtVbvFZMIi5GQ4okQC3zErg7cBqklrkar4dBGmoYDQZPxz5u +uSlNDUmJEYcyW+ZLBMjkXOZ0c5RdFpgTlf7727FE5TpwrDdr5rMzcijJs1eg9gIW +iAYLtqZLICjU3j2LrTcFU3T+bsy8QxdxXvnFzBqpYe73dgzzcvRyrc9yAjYHR8/v +GVCJYMzpJJUPwssd8m92kMfMdcGWxZ0= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 54:80:f9:a0:73:ed:3f:00:4c:ca:89:d8:e3:71:e6:4a + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=EE, O=AS Sertifitseerimiskeskus, CN=EE Certification Centre Root CA/emailAddress=pki@sk.ee + Validity + Not Before: Oct 30 10:10:30 2010 GMT + Not After : Dec 17 23:59:59 2030 GMT + Subject: C=EE, O=AS Sertifitseerimiskeskus, CN=EE Certification Centre Root CA/emailAddress=pki@sk.ee + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:c8:20:c0:ec:e0:c5:4b:ab:07:78:95:f3:44:ee: + fb:0b:0c:ff:74:8e:61:bb:b1:62:ea:23:d8:ab:a1: + 65:32:7a:eb:8e:17:4f:96:d8:0a:7b:91:a2:63:6c: + c7:8c:4c:2e:79:bf:a9:05:fc:69:5c:95:8d:62:f9: + b9:70:ed:c3:51:7d:d0:93:e6:6c:eb:30:4b:e1:bc: + 7d:bf:52:9b:ce:6e:7b:65:f2:38:b1:c0:a2:32:ef: + 62:b2:68:e0:61:53:c1:36:95:ff:ec:94:ba:36:ae: + 9c:1c:a7:32:0f:e5:7c:b4:c6:6f:74:fd:7b:18:e8: + ac:57:ed:06:20:4b:32:30:58:5b:fd:cd:a8:e6:a1: + fc:70:bc:8e:92:73:db:97:a7:7c:21:ae:3d:c1:f5: + 48:87:6c:27:bd:9f:25:74:81:55:b0:f7:75:f6:3d: + a4:64:6b:d6:4f:e7:ce:40:ad:0f:dd:32:d3:bc:8a: + 12:53:98:c9:89:fb:10:1d:4d:7e:cd:7e:1f:56:0d: + 21:70:85:f6:20:83:1f:f6:ba:1f:04:8f:ea:77:88: + 35:c4:ff:ea:4e:a1:8b:4d:3f:63:1b:44:c3:44:d4: + 25:76:ca:b7:8d:d7:1e:4a:66:64:cd:5c:c5:9c:83: + e1:c2:08:88:9a:ec:4e:a3:f1:3e:1c:2c:d9:6c:1d: + a1:4b + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + 12:F2:5A:3E:EA:56:1C:BF:CD:06:AC:F1:F1:25:C9:A9:4B:D4:14:99 + X509v3 Extended Key Usage: + TLS Web Client Authentication, TLS Web Server Authentication, Code Signing, E-mail Protection, Time Stamping, OCSP Signing + Signature Algorithm: sha1WithRSAEncryption + 7b:f6:e4:c0:0d:aa:19:47:b7:4d:57:a3:fe:ad:bb:b1:6a:d5: + 0f:9e:db:e4:63:c5:8e:a1:50:56:93:96:b8:38:c0:24:22:66: + bc:53:14:61:95:bf:d0:c7:2a:96:39:3f:7d:28:b3:10:40:21: + 6a:c4:af:b0:52:77:18:e1:96:d8:56:5d:e3:dd:36:5e:1d:a7: + 50:54:a0:c5:2a:e4:aa:8c:94:8a:4f:9d:35:ff:76:a4:06:13: + 91:a2:a2:7d:00:44:3f:55:d3:82:3c:1a:d5:5b:bc:56:4c:22: + 2e:46:43:8a:24:40:2d:f3:12:b8:3b:70:1a:a4:96:b9:1a:af: + 87:41:1a:6a:18:0d:06:4f:c7:3e:6e:b9:29:4d:0d:49:89:11: + 87:32:5b:e6:4b:04:c8:e4:5c:e6:74:73:94:5d:16:98:13:95: + fe:fb:db:b1:44:e5:3a:70:ac:37:6b:e6:b3:33:72:28:c9:b3: + 57:a0:f6:02:16:88:06:0b:b6:a6:4b:20:28:d4:de:3d:8b:ad: + 37:05:53:74:fe:6e:cc:bc:43:17:71:5e:f9:c5:cc:1a:a9:61: + ee:f7:76:0c:f3:72:f4:72:ad:cf:72:02:36:07:47:cf:ef:19: + 50:89:60:cc:e9:24:95:0f:c2:cb:1d:f2:6f:76:90:c7:cc:75: + c1:96:c5:9d +SHA1 Fingerprint=C9:A8:B9:E7:55:80:5E:58:E3:53:77:A7:25:EB:AF:C3:7B:27:CC:D7 diff --git a/system/etc/security/cacerts/9282e51c.0 b/system/etc/security/cacerts/9282e51c.0 new file mode 100644 index 0000000000000000000000000000000000000000..f2a9f945700af1a18248c04a104d6b187577860e --- /dev/null +++ b/system/etc/security/cacerts/9282e51c.0 @@ -0,0 +1,123 @@ +-----BEGIN CERTIFICATE----- +MIIFjTCCA3WgAwIBAgIEGErM1jANBgkqhkiG9w0BAQsFADBWMQswCQYDVQQGEwJD +TjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9y +aXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJPT1QwHhcNMTIwODA4MDMwNzAxWhcNMjkx +MjMxMDMwNzAxWjBWMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5j +aWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJP +T1QwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDXXWvNED8fBVnVBU03 +sQ7smCuOFR36k0sXgiFxEFLXUWRwFsJVaU2OFW2fvwwbwuCjZ9YMrM8irq93VCpL +TIpTUnrD7i7es3ElweldPe6hL6P3KjzJIx1qqx2hp/Hz7KDVRM8Vz3IvHWOX6Jn5 +/ZOkVIBMUtRSqy5J35DNuF++P96hyk0g1CXohClTt7GIH//62pCfCqktQT+x8Rgp +7hZZLDRJGqgG16iI0gNyejLi6mhNbiyWZXvKWfry4t3uMCz7zEasxGPrb382KzRz +EpR/38wmnvFyXVBlWY9ps4deMm/DGIq1lY+wejfeWkU7xzbh72fROdOXW3NiGUgt +hxwG+3SYIElz8AXSG7Ggo7cbcNOIabla1jj0Ytwli3i/+Oh+uFzJlU9fpy25IGvP +a931DfSCt/SyZi4QKPaXWnuWFo8BGS1sbn85WAZkgwGDg8NNkt0yxoekN+kWzqot +aK8KgWU6cMGbrU1tVMoqLUuFG7OA5nBFDWteNfB/O7ic5ARwiRIlk9oKmSJgamNg +TnYGmE69g60dWIolhdLHZR4tjsbftsbhf4oEIRUpdPA+nJCdDC7xij5aqgwJHsfV +PKPtl8MeNPo4+QgO48BdK4PRVmrJtqhUUy54Mmc9gn900PvhtgVguXDbjgv5E1hv +cWAQUhC5wUEJ73IfZzF4/5YFjQIDAQABo2MwYTAfBgNVHSMEGDAWgBTj/i39KNAL +tbq2osS/BqoFjJP7LzAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAd +BgNVHQ4EFgQU4/4t/SjQC7W6tqLEvwaqBYyT+y8wDQYJKoZIhvcNAQELBQADggIB +ACXGumvrh8vegjmWPfBEp2uEcwPenStPuiB/vHiyz5ewG5zz13ku9Ui20vsXiObT +ej/tUxPQ4i9qecsAIyjmHjdXNYmEwnZPNDatZ8POQQaIxffu2Bq41gt/UP+TqhdL +jOztUmCypAbqTuv0axn96/Ua4CUqmtzHQTb3yHQFhDmVOdYLO6Qn+gjYXB74BGBS +ESgoA//vU2YApUo0FmZ8/Qmkrp5nGm9BC2sGE5uPhnEFtC+NiWYzKXZUmhH4J/qy +P5Hgzg0b8zAarb8iXRvTvyUFTeGSGn+ZnzxEk8rUQElsgIfXBDrDMlI1Dlb4pd19 +xIsNER9Tyx6yF7Zod1rg1MvIB671Oi6ON7fQAUtDKXeMOZePglr4UeWJoBjnaH9d +Ci77o0cOPaYjesYBx4/IXr9tgFa+iiS6M+qf4TIRnvHST4D2G0CvOJ4RUHlzEhLN +5mydLIhyPDCBBpEi6lmt2hkuIsKNuYyH4Ga8cyNfIWRjgEj1oDwYPZTISEEdQLpe +/v5WOaHIz16eGWRGENoXkbcFgKyLmZJ956LYBws2J+dIeWCKw9cTXPhyQN9Ky8+Z +AAoACxGV2lZFA4gKn2fQ1XmxqI1AbQ3CekD6819kR5LLU7m7Wc5P/dAVUwHY3+vZ +5nbv0CO7O6l5s9UCKc2Jo5YPSjXnTkLAdc0Hz+Ys63su +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 407555286 (0x184accd6) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=CN, O=China Financial Certification Authority, CN=CFCA EV ROOT + Validity + Not Before: Aug 8 03:07:01 2012 GMT + Not After : Dec 31 03:07:01 2029 GMT + Subject: C=CN, O=China Financial Certification Authority, CN=CFCA EV ROOT + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:d7:5d:6b:cd:10:3f:1f:05:59:d5:05:4d:37:b1: + 0e:ec:98:2b:8e:15:1d:fa:93:4b:17:82:21:71:10: + 52:d7:51:64:70:16:c2:55:69:4d:8e:15:6d:9f:bf: + 0c:1b:c2:e0:a3:67:d6:0c:ac:cf:22:ae:af:77:54: + 2a:4b:4c:8a:53:52:7a:c3:ee:2e:de:b3:71:25:c1: + e9:5d:3d:ee:a1:2f:a3:f7:2a:3c:c9:23:1d:6a:ab: + 1d:a1:a7:f1:f3:ec:a0:d5:44:cf:15:cf:72:2f:1d: + 63:97:e8:99:f9:fd:93:a4:54:80:4c:52:d4:52:ab: + 2e:49:df:90:cd:b8:5f:be:3f:de:a1:ca:4d:20:d4: + 25:e8:84:29:53:b7:b1:88:1f:ff:fa:da:90:9f:0a: + a9:2d:41:3f:b1:f1:18:29:ee:16:59:2c:34:49:1a: + a8:06:d7:a8:88:d2:03:72:7a:32:e2:ea:68:4d:6e: + 2c:96:65:7b:ca:59:fa:f2:e2:dd:ee:30:2c:fb:cc: + 46:ac:c4:63:eb:6f:7f:36:2b:34:73:12:94:7f:df: + cc:26:9e:f1:72:5d:50:65:59:8f:69:b3:87:5e:32: + 6f:c3:18:8a:b5:95:8f:b0:7a:37:de:5a:45:3b:c7: + 36:e1:ef:67:d1:39:d3:97:5b:73:62:19:48:2d:87: + 1c:06:fb:74:98:20:49:73:f0:05:d2:1b:b1:a0:a3: + b7:1b:70:d3:88:69:b9:5a:d6:38:f4:62:dc:25:8b: + 78:bf:f8:e8:7e:b8:5c:c9:95:4f:5f:a7:2d:b9:20: + 6b:cf:6b:dd:f5:0d:f4:82:b7:f4:b2:66:2e:10:28: + f6:97:5a:7b:96:16:8f:01:19:2d:6c:6e:7f:39:58: + 06:64:83:01:83:83:c3:4d:92:dd:32:c6:87:a4:37: + e9:16:ce:aa:2d:68:af:0a:81:65:3a:70:c1:9b:ad: + 4d:6d:54:ca:2a:2d:4b:85:1b:b3:80:e6:70:45:0d: + 6b:5e:35:f0:7f:3b:b8:9c:e4:04:70:89:12:25:93: + da:0a:99:22:60:6a:63:60:4e:76:06:98:4e:bd:83: + ad:1d:58:8a:25:85:d2:c7:65:1e:2d:8e:c6:df:b6: + c6:e1:7f:8a:04:21:15:29:74:f0:3e:9c:90:9d:0c: + 2e:f1:8a:3e:5a:aa:0c:09:1e:c7:d5:3c:a3:ed:97: + c3:1e:34:fa:38:f9:08:0e:e3:c0:5d:2b:83:d1:56: + 6a:c9:b6:a8:54:53:2e:78:32:67:3d:82:7f:74:d0: + fb:e1:b6:05:60:b9:70:db:8e:0b:f9:13:58:6f:71: + 60:10:52:10:b9:c1:41:09:ef:72:1f:67:31:78:ff: + 96:05:8d + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Authority Key Identifier: + keyid:E3:FE:2D:FD:28:D0:0B:B5:BA:B6:A2:C4:BF:06:AA:05:8C:93:FB:2F + + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + E3:FE:2D:FD:28:D0:0B:B5:BA:B6:A2:C4:BF:06:AA:05:8C:93:FB:2F + Signature Algorithm: sha256WithRSAEncryption + 25:c6:ba:6b:eb:87:cb:de:82:39:96:3d:f0:44:a7:6b:84:73: + 03:de:9d:2b:4f:ba:20:7f:bc:78:b2:cf:97:b0:1b:9c:f3:d7: + 79:2e:f5:48:b6:d2:fb:17:88:e6:d3:7a:3f:ed:53:13:d0:e2: + 2f:6a:79:cb:00:23:28:e6:1e:37:57:35:89:84:c2:76:4f:34: + 36:ad:67:c3:ce:41:06:88:c5:f7:ee:d8:1a:b8:d6:0b:7f:50: + ff:93:aa:17:4b:8c:ec:ed:52:60:b2:a4:06:ea:4e:eb:f4:6b: + 19:fd:eb:f5:1a:e0:25:2a:9a:dc:c7:41:36:f7:c8:74:05:84: + 39:95:39:d6:0b:3b:a4:27:fa:08:d8:5c:1e:f8:04:60:52:11: + 28:28:03:ff:ef:53:66:00:a5:4a:34:16:66:7c:fd:09:a4:ae: + 9e:67:1a:6f:41:0b:6b:06:13:9b:8f:86:71:05:b4:2f:8d:89: + 66:33:29:76:54:9a:11:f8:27:fa:b2:3f:91:e0:ce:0d:1b:f3: + 30:1a:ad:bf:22:5d:1b:d3:bf:25:05:4d:e1:92:1a:7f:99:9f: + 3c:44:93:ca:d4:40:49:6c:80:87:d7:04:3a:c3:32:52:35:0e: + 56:f8:a5:dd:7d:c4:8b:0d:11:1f:53:cb:1e:b2:17:b6:68:77: + 5a:e0:d4:cb:c8:07:ae:f5:3a:2e:8e:37:b7:d0:01:4b:43:29: + 77:8c:39:97:8f:82:5a:f8:51:e5:89:a0:18:e7:68:7f:5d:0a: + 2e:fb:a3:47:0e:3d:a6:23:7a:c6:01:c7:8f:c8:5e:bf:6d:80: + 56:be:8a:24:ba:33:ea:9f:e1:32:11:9e:f1:d2:4f:80:f6:1b: + 40:af:38:9e:11:50:79:73:12:12:cd:e6:6c:9d:2c:88:72:3c: + 30:81:06:91:22:ea:59:ad:da:19:2e:22:c2:8d:b9:8c:87:e0: + 66:bc:73:23:5f:21:64:63:80:48:f5:a0:3c:18:3d:94:c8:48: + 41:1d:40:ba:5e:fe:fe:56:39:a1:c8:cf:5e:9e:19:64:46:10: + da:17:91:b7:05:80:ac:8b:99:92:7d:e7:a2:d8:07:0b:36:27: + e7:48:79:60:8a:c3:d7:13:5c:f8:72:40:df:4a:cb:cf:99:00: + 0a:00:0b:11:95:da:56:45:03:88:0a:9f:67:d0:d5:79:b1:a8: + 8d:40:6d:0d:c2:7a:40:fa:f3:5f:64:47:92:cb:53:b9:bb:59: + ce:4f:fd:d0:15:53:01:d8:df:eb:d9:e6:76:ef:d0:23:bb:3b: + a9:79:b3:d5:02:29:cd:89:a3:96:0f:4a:35:e7:4e:42:c0:75: + cd:07:cf:e6:2c:eb:7b:2e +SHA1 Fingerprint=E2:B8:29:4B:55:84:AB:6B:58:C2:90:46:6C:AC:3F:B8:39:8F:84:83 diff --git a/system/etc/security/cacerts/9339512a.0 b/system/etc/security/cacerts/9339512a.0 new file mode 100644 index 0000000000000000000000000000000000000000..c6dc40cf0fa0ebfd09e5ae0c63ff3e2869394cb9 --- /dev/null +++ b/system/etc/security/cacerts/9339512a.0 @@ -0,0 +1,137 @@ +-----BEGIN CERTIFICATE----- +MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x +GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv +b3QgQ0EgMzAeFw0wNjExMjQxOTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNV +BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W +YWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDM +V0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNggDhoB +4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUr +H556VOijKTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd +8lyyBTNvijbO0BNO/79KDDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9Cabwv +vWhDFlaJKjdhkf2mrk7AyxRllDdLkgbvBNDInIjbC3uBr7E9KsRlOni27tyAsdLT +mZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwpp5ijJUMv7/FfJuGITfhe +btfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8nT8KKdjc +T5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDt +WAEXMJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZ +c6tsgLjoC2SToJyMGf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A +4iLItLRkT9a6fUg+qGkM17uGcclzuD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYD +VR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHTBgkrBgEEAb5YAAMwgcUwgZMG +CCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmljYXRlIGNvbnN0 +aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0 +aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVu +dC4wLQYIKwYBBQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2Nw +czALBgNVHQ8EBAMCAQYwHQYDVR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4G +A1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4ywLQoUmkRzBFMQswCQYDVQQGEwJC +TTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UEAxMSUXVvVmFkaXMg +Um9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZVqyM0 +7ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSem +d1o417+shvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd ++LJ2w/w4E6oM3kJpK27zPOuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B +4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadN +t54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp8kokUvd0/bpO5qgdAm6x +DYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBCbjPsMZ57 +k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6s +zHXug/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0j +Wy10QJLZYxkNc91pvGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeT +mJlglFwjz1onl14LBQaTNx47aTbrqZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK +4SVhM7JZG+Ju1zdXtg2pEto= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 1478 (0x5c6) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=BM, O=QuoVadis Limited, CN=QuoVadis Root CA 3 + Validity + Not Before: Nov 24 19:11:23 2006 GMT + Not After : Nov 24 19:06:44 2031 GMT + Subject: C=BM, O=QuoVadis Limited, CN=QuoVadis Root CA 3 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:cc:57:42:16:54:9c:e6:98:d3:d3:4d:ee:fe:ed: + c7:9f:43:39:4a:65:b3:e8:16:88:34:db:0d:59:91: + 74:cf:92:b8:04:40:ad:02:4b:31:ab:bc:8d:91:68: + d8:20:0e:1a:01:e2:1a:7b:4e:17:5d:e2:8a:b7:3f: + 99:1a:cd:eb:61:ab:c2:65:a6:1f:b7:b7:bd:b7:8f: + fc:fd:70:8f:0b:a0:67:be:01:a2:59:cf:71:e6:0f: + 29:76:ff:b1:56:79:45:2b:1f:9e:7a:54:e8:a3:29: + 35:68:a4:01:4f:0f:a4:2e:37:ef:1b:bf:e3:8f:10: + a8:72:ab:58:57:e7:54:86:c8:c9:f3:5b:da:2c:da: + 5d:8e:6e:3c:a3:3e:da:fb:82:e5:dd:f2:5c:b2:05: + 33:6f:8a:36:ce:d0:13:4e:ff:bf:4a:0c:34:4c:a6: + c3:21:bd:50:04:55:eb:b1:bb:9d:fb:45:1e:64:15: + de:55:01:8c:02:76:b5:cb:a1:3f:42:69:bc:2f:bd: + 68:43:16:56:89:2a:37:61:91:fd:a6:ae:4e:c0:cb: + 14:65:94:37:4b:92:06:ef:04:d0:c8:9c:88:db:0b: + 7b:81:af:b1:3d:2a:c4:65:3a:78:b6:ee:dc:80:b1: + d2:d3:99:9c:3a:ee:6b:5a:6b:b3:8d:b7:d5:ce:9c: + c2:be:a5:4b:2f:16:b1:9e:68:3b:06:6f:ae:7d:9f: + f8:de:ec:cc:29:a7:98:a3:25:43:2f:ef:f1:5f:26: + e1:88:4d:f8:5e:6e:d7:d9:14:6e:19:33:69:a7:3b: + 84:89:93:c4:53:55:13:a1:51:78:40:f8:b8:c9:a2: + ee:7b:ba:52:42:83:9e:14:ed:05:52:5a:59:56:a7: + 97:fc:9d:3f:0a:29:d8:dc:4f:91:0e:13:bc:de:95: + a4:df:8b:99:be:ac:9b:33:88:ef:b5:81:af:1b:c6: + 22:53:c8:f6:c7:ee:97:14:b0:c5:7c:78:52:c8:f0: + ce:6e:77:60:84:a6:e9:2a:76:20:ed:58:01:17:30: + 93:e9:1a:8b:e0:73:63:d9:6a:92:94:49:4e:b4:ad: + 4a:85:c4:a3:22:30:fc:09:ed:68:22:73:a6:88:0c: + 55:21:58:c5:e1:3a:9f:2a:dd:ca:e1:90:e0:d9:73: + ab:6c:80:b8:e8:0b:64:93:a0:9c:8c:19:ff:b3:d2: + 0c:ec:91:26:87:8a:b3:a2:e1:70:8f:2c:0a:e5:cd: + 6d:68:51:eb:da:3f:05:7f:8b:32:e6:13:5c:6b:fe: + 5f:40:e2:22:c8:b4:b4:64:4f:d6:ba:7d:48:3e:a8: + 69:0c:d7:bb:86:71:c9:73:b8:3f:3b:9d:25:4b:da: + ff:40:eb + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Certificate Policies: + Policy: 1.3.6.1.4.1.8024.0.3 + User Notice: + Explicit Text: Any use of this Certificate constitutes acceptance of the QuoVadis Root CA 3 Certificate Policy / Certification Practice Statement. + CPS: http://www.quovadisglobal.com/cps + + X509v3 Key Usage: + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + F2:C0:13:E0:82:43:3E:FB:EE:2F:67:32:96:35:5C:DB:B8:CB:02:D0 + X509v3 Authority Key Identifier: + keyid:F2:C0:13:E0:82:43:3E:FB:EE:2F:67:32:96:35:5C:DB:B8:CB:02:D0 + DirName:/C=BM/O=QuoVadis Limited/CN=QuoVadis Root CA 3 + serial:05:C6 + + Signature Algorithm: sha1WithRSAEncryption + 4f:ad:a0:2c:4c:fa:c0:f2:6f:f7:66:55:ab:23:34:ee:e7:29: + da:c3:5b:b6:b0:83:d9:d0:d0:e2:21:fb:f3:60:a7:3b:5d:60: + 53:27:a2:9b:f6:08:22:2a:e7:bf:a0:72:e5:9c:24:6a:31:b1: + 90:7a:27:db:84:11:89:27:a6:77:5a:38:d7:bf:ac:86:fc:ee: + 5d:83:bc:06:c6:d1:77:6b:0f:6d:24:2f:4b:7a:6c:a7:07:96: + ca:e3:84:9f:ad:88:8b:1d:ab:16:8d:5b:66:17:d9:16:f4:8b: + 80:d2:dd:f8:b2:76:c3:fc:38:13:aa:0c:de:42:69:2b:6e:f3: + 3c:eb:80:27:db:f5:a6:44:0d:9f:5a:55:59:0b:d5:0d:52:48: + c5:ae:9f:f2:2f:80:c5:ea:32:50:35:12:97:2e:c1:e1:ff:f1: + 23:88:51:38:9f:f2:66:56:76:e7:0f:51:97:a5:52:0c:4d:49: + 51:95:36:3d:bf:a2:4b:0c:10:1d:86:99:4c:aa:f3:72:11:93: + e4:ea:f6:9b:da:a8:5d:a7:4d:b7:9e:02:ae:73:00:c8:da:23: + 03:e8:f9:ea:19:74:62:00:94:cb:22:20:be:94:a7:59:b5:82: + 6a:be:99:79:7a:a9:f2:4a:24:52:f7:74:fd:ba:4e:e6:a8:1d: + 02:6e:b1:0d:80:44:c1:ae:d3:23:37:5f:bb:85:7c:2b:92:2e: + e8:7e:a5:8b:dd:99:e1:bf:27:6f:2d:5d:aa:7b:87:fe:0a:dd: + 4b:fc:8e:f5:26:e4:6e:70:42:6e:33:ec:31:9e:7b:93:c1:e4: + c9:69:1a:3d:c0:6b:4e:22:6d:ee:ab:58:4d:c6:d0:41:c1:2b: + ea:4f:12:87:5e:eb:45:d8:6c:f5:98:02:d3:a0:d8:55:8a:06: + 99:19:a2:a0:77:d1:30:9e:ac:cc:75:ee:83:f5:b0:62:39:cf: + 6c:57:e2:4c:d2:91:0b:0e:75:28:1b:9a:bf:fd:1a:43:f1:ca: + 77:fb:3b:8f:61:b8:69:28:16:42:04:5e:70:2a:1c:21:d8:8f: + e1:bd:23:5b:2d:74:40:92:d9:63:19:0d:73:dd:69:bc:62:47: + bc:e0:74:2b:b2:eb:7d:be:41:1b:b5:c0:46:c5:a1:22:cb:5f: + 4e:c1:28:92:de:18:ba:d5:2a:28:bb:11:8b:17:93:98:99:60: + 94:5c:23:cf:5a:27:97:5e:0b:05:06:93:37:1e:3b:69:36:eb: + a9:9e:61:1d:8f:32:da:8e:0c:d6:74:3e:7b:09:24:da:01:77: + 47:c4:3b:cd:34:8c:99:f5:ca:e1:25:61:33:b2:59:1b:e2:6e: + d7:37:57:b6:0d:a9:12:da +SHA1 Fingerprint=1F:49:14:F7:D8:74:95:1D:DD:AE:02:C0:BE:FD:3A:2D:82:75:51:85 diff --git a/system/etc/security/cacerts/9479c8c3.0 b/system/etc/security/cacerts/9479c8c3.0 new file mode 100644 index 0000000000000000000000000000000000000000..691e322327337dbe0bbaab81f53e3763ff1f4459 --- /dev/null +++ b/system/etc/security/cacerts/9479c8c3.0 @@ -0,0 +1,54 @@ +-----BEGIN CERTIFICATE----- +MIICwzCCAkqgAwIBAgIBADAKBggqhkjOPQQDAjCBqjELMAkGA1UEBhMCR1IxDzAN +BgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl +c2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxRDBCBgNVBAMTO0hl +bGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgRUNDIFJv +b3RDQSAyMDE1MB4XDTE1MDcwNzEwMzcxMloXDTQwMDYzMDEwMzcxMlowgaoxCzAJ +BgNVBAYTAkdSMQ8wDQYDVQQHEwZBdGhlbnMxRDBCBgNVBAoTO0hlbGxlbmljIEFj +YWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9yaXR5 +MUQwQgYDVQQDEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0 +dXRpb25zIEVDQyBSb290Q0EgMjAxNTB2MBAGByqGSM49AgEGBSuBBAAiA2IABJKg +QehLgoRc4vgxEZmGZE4JJS+dQS8KrjVPdJWyUWRrjWvmP3CV8AVER6ZyOFB2lQJa +jq4onvktTpnvLEhvTCUp6NFxW98dwXU3tNf6e3pCnGoKVlp8aQuqgAkkbH7BRqNC +MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFLQi +C4KZJAEOnLvkDv2/+5cgk5kqMAoGCCqGSM49BAMCA2cAMGQCMGfOFmI4oqxiRaep +lSTAGiecMjvAwNW6qef4BENThe5SId6d9SWDPp5YSy/XZxMOIQIwBeF1Ad5o7Sof +TUwJCA3sS61kFyjndc5FZXIhF8siQQ6ME5g4mlRtm8rifOoCWCKR +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 0 (0x0) + Signature Algorithm: ecdsa-with-SHA256 + Issuer: C=GR, L=Athens, O=Hellenic Academic and Research Institutions Cert. Authority, CN=Hellenic Academic and Research Institutions ECC RootCA 2015 + Validity + Not Before: Jul 7 10:37:12 2015 GMT + Not After : Jun 30 10:37:12 2040 GMT + Subject: C=GR, L=Athens, O=Hellenic Academic and Research Institutions Cert. Authority, CN=Hellenic Academic and Research Institutions ECC RootCA 2015 + Subject Public Key Info: + Public Key Algorithm: id-ecPublicKey + Public-Key: (384 bit) + pub: + 04:92:a0:41:e8:4b:82:84:5c:e2:f8:31:11:99:86: + 64:4e:09:25:2f:9d:41:2f:0a:ae:35:4f:74:95:b2: + 51:64:6b:8d:6b:e6:3f:70:95:f0:05:44:47:a6:72: + 38:50:76:95:02:5a:8e:ae:28:9e:f9:2d:4e:99:ef: + 2c:48:6f:4c:25:29:e8:d1:71:5b:df:1d:c1:75:37: + b4:d7:fa:7b:7a:42:9c:6a:0a:56:5a:7c:69:0b:aa: + 80:09:24:6c:7e:c1:46 + ASN1 OID: secp384r1 + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + B4:22:0B:82:99:24:01:0E:9C:BB:E4:0E:FD:BF:FB:97:20:93:99:2A + Signature Algorithm: ecdsa-with-SHA256 + 30:64:02:30:67:ce:16:62:38:a2:ac:62:45:a7:a9:95:24:c0: + 1a:27:9c:32:3b:c0:c0:d5:ba:a9:e7:f8:04:43:53:85:ee:52: + 21:de:9d:f5:25:83:3e:9e:58:4b:2f:d7:67:13:0e:21:02:30: + 05:e1:75:01:de:68:ed:2a:1f:4d:4c:09:08:0d:ec:4b:ad:64: + 17:28:e7:75:ce:45:65:72:21:17:cb:22:41:0e:8c:13:98:38: + 9a:54:6d:9b:ca:e2:7c:ea:02:58:22:91 +SHA1 Fingerprint=9F:F1:71:8D:92:D5:9A:F3:7D:74:97:B4:BC:6F:84:68:0B:BA:B6:66 diff --git a/system/etc/security/cacerts/9576d26b.0 b/system/etc/security/cacerts/9576d26b.0 new file mode 100644 index 0000000000000000000000000000000000000000..e77a90c7d37708954e20c7ab3d9249e981c90de9 --- /dev/null +++ b/system/etc/security/cacerts/9576d26b.0 @@ -0,0 +1,119 @@ +-----BEGIN CERTIFICATE----- +MIIFaTCCA1GgAwIBAgIJAJK4iNuwisFjMA0GCSqGSIb3DQEBCwUAMFIxCzAJBgNV +BAYTAlNLMRMwEQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMu +MRkwFwYDVQQDExBDQSBEaXNpZyBSb290IFIyMB4XDTEyMDcxOTA5MTUzMFoXDTQy +MDcxOTA5MTUzMFowUjELMAkGA1UEBhMCU0sxEzARBgNVBAcTCkJyYXRpc2xhdmEx +EzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERpc2lnIFJvb3QgUjIw +ggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCio8QACdaFXS1tFPbCw3Oe +NcJxVX6B+6tGUODBfEl45qt5WDza/3wcn9iXAng+a0EE6UG9vgMsRfYvZNSrXaNH +PWSb6WiaxswbP7q+sos0Ai6YVRn8jG+qX9pMzk0DIaPY0jSTVpbLTAwAFjxfGs3I +x2ymrdMxp7zo5eFm1tL7A7RBZckQrg4FY8aAamkw/dLukO8NJ9+flXP04SXabBbe +QTg06ov80egEFGEtQX6sx3dOy1FU+16SGBsEWmjGycT6txOgmLcRK7fWV8x8nhfR +yyX+hk4kLlYMeE2eARKmK6cBZW58Yh2EhN/qwGu1pSqVg8NTEQxzHQuyRpDRQjrO +QG6Vrf/GlK1ul4SOfW+eioANSW1z4nuSHsPzwfPrLgVv2RvPN3YEyLRa5Beny912 +H9AZdugsBbPWnDTYltxhh5EF5EQIM8HauQhl1K6yNg3ruji6DOWbnuuNZt2Zz9aJ +QfYEkoopKW1rOhzndX0CcQ7zwOe9yxndnWCywmZgtrEE7snmhrmaZkCo5xHtgUUD +i/ZnWejBBhG93c+AAk9lQHhcR1DIm+YfgXvkRKhbhZri3lrVx/k6RGZL5DJUfORs +nLMOPReisjQS1n6yqEm70XooQL6iFh/f5DcfEXP7kAplQ6INfPgGAVUzfbANuPT1 +rqVCV3w2EYx7XsQDnYx5nQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud +DwEB/wQEAwIBBjAdBgNVHQ4EFgQUtZn4r7CU9eMg1gqtzk5WpC5uQu0wDQYJKoZI +hvcNAQELBQADggIBACYGXnDnZTPIgm7ZnBc6G3pmsgH2eDtpXi/q/075KMOYKmFM +tCQSin1tERT3nLXK5ryeJ45MGcipvXrA1zYObYVybqjGom32+nNjf7xueQgcnYqf +GopTpti72TVVsRHFqQOzVju5hJMiXn7B9hJSi+osZ7z+Nkz1uM/Rs0mSO9MpDpkb +lvdhuDvEK7Z4bLQjb/D907JedR+Zlais9trhxTF7+9FGs9K8Z7RiVLoJ92Owk6Ka ++elSLotgEqv89WBW7xBci8QaQtyDW2QOy7W81k/BfDxujRNt+3vrMNDcTa/F1bal +TFtxyegxvug4BkihGuLq0t4SOVga/4AOgnXmt8kHbA7v/zjxmHHEt38OFdAlab0i +nSvtBfZGR6ztwPDUO+Ls7pZbkBNOHlY667DvlruWIxG68kOGdGSVyCh13x01utI3 +gzhTODY7z2zp+WsO0PsE6E9312UBeIYMej4hYvF/Y3EMyZ9E26gnonW+boE+18Dr +G5gPcFw0sorMwIUY6256s/daoQe/qUKS82Ail+QUoQebTnbAjn39pCXHR+3/H3Os +zMOl6W8KjptlwlCFtaOgUxLMVYdh84GuEEZhvUQhuMI9dM9+JDX6HAcOmz0iyu8x +L4ysEr3vQCj8KWefshNPZiTEUxnpHikV7+ZtsH8tZ/3zbBt1RqPlShfppNcL +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 10572350602393338211 (0x92b888dbb08ac163) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=SK, L=Bratislava, O=Disig a.s., CN=CA Disig Root R2 + Validity + Not Before: Jul 19 09:15:30 2012 GMT + Not After : Jul 19 09:15:30 2042 GMT + Subject: C=SK, L=Bratislava, O=Disig a.s., CN=CA Disig Root R2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:a2:a3:c4:00:09:d6:85:5d:2d:6d:14:f6:c2:c3: + 73:9e:35:c2:71:55:7e:81:fb:ab:46:50:e0:c1:7c: + 49:78:e6:ab:79:58:3c:da:ff:7c:1c:9f:d8:97:02: + 78:3e:6b:41:04:e9:41:bd:be:03:2c:45:f6:2f:64: + d4:ab:5d:a3:47:3d:64:9b:e9:68:9a:c6:cc:1b:3f: + ba:be:b2:8b:34:02:2e:98:55:19:fc:8c:6f:aa:5f: + da:4c:ce:4d:03:21:a3:d8:d2:34:93:56:96:cb:4c: + 0c:00:16:3c:5f:1a:cd:c8:c7:6c:a6:ad:d3:31:a7: + bc:e8:e5:e1:66:d6:d2:fb:03:b4:41:65:c9:10:ae: + 0e:05:63:c6:80:6a:69:30:fd:d2:ee:90:ef:0d:27: + df:9f:95:73:f4:e1:25:da:6c:16:de:41:38:34:ea: + 8b:fc:d1:e8:04:14:61:2d:41:7e:ac:c7:77:4e:cb: + 51:54:fb:5e:92:18:1b:04:5a:68:c6:c9:c4:fa:b7: + 13:a0:98:b7:11:2b:b7:d6:57:cc:7c:9e:17:d1:cb: + 25:fe:86:4e:24:2e:56:0c:78:4d:9e:01:12:a6:2b: + a7:01:65:6e:7c:62:1d:84:84:df:ea:c0:6b:b5:a5: + 2a:95:83:c3:53:11:0c:73:1d:0b:b2:46:90:d1:42: + 3a:ce:40:6e:95:ad:ff:c6:94:ad:6e:97:84:8e:7d: + 6f:9e:8a:80:0d:49:6d:73:e2:7b:92:1e:c3:f3:c1: + f3:eb:2e:05:6f:d9:1b:cf:37:76:04:c8:b4:5a:e4: + 17:a7:cb:dd:76:1f:d0:19:76:e8:2c:05:b3:d6:9c: + 34:d8:96:dc:61:87:91:05:e4:44:08:33:c1:da:b9: + 08:65:d4:ae:b2:36:0d:eb:ba:38:ba:0c:e5:9b:9e: + eb:8d:66:dd:99:cf:d6:89:41:f6:04:92:8a:29:29: + 6d:6b:3a:1c:e7:75:7d:02:71:0e:f3:c0:e7:bd:cb: + 19:dd:9d:60:b2:c2:66:60:b6:b1:04:ee:c9:e6:86: + b9:9a:66:40:a8:e7:11:ed:81:45:03:8b:f6:67:59: + e8:c1:06:11:bd:dd:cf:80:02:4f:65:40:78:5c:47: + 50:c8:9b:e6:1f:81:7b:e4:44:a8:5b:85:9a:e2:de: + 5a:d5:c7:f9:3a:44:66:4b:e4:32:54:7c:e4:6c:9c: + b3:0e:3d:17:a2:b2:34:12:d6:7e:b2:a8:49:bb:d1: + 7a:28:40:be:a2:16:1f:df:e4:37:1f:11:73:fb:90: + 0a:65:43:a2:0d:7c:f8:06:01:55:33:7d:b0:0d:b8: + f4:f5:ae:a5:42:57:7c:36:11:8c:7b:5e:c4:03:9d: + 8c:79:9d + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + B5:99:F8:AF:B0:94:F5:E3:20:D6:0A:AD:CE:4E:56:A4:2E:6E:42:ED + Signature Algorithm: sha256WithRSAEncryption + 26:06:5e:70:e7:65:33:c8:82:6e:d9:9c:17:3a:1b:7a:66:b2: + 01:f6:78:3b:69:5e:2f:ea:ff:4e:f9:28:c3:98:2a:61:4c:b4: + 24:12:8a:7d:6d:11:14:f7:9c:b5:ca:e6:bc:9e:27:8e:4c:19: + c8:a9:bd:7a:c0:d7:36:0e:6d:85:72:6e:a8:c6:a2:6d:f6:fa: + 73:63:7f:bc:6e:79:08:1c:9d:8a:9f:1a:8a:53:a6:d8:bb:d9: + 35:55:b1:11:c5:a9:03:b3:56:3b:b9:84:93:22:5e:7e:c1:f6: + 12:52:8b:ea:2c:67:bc:fe:36:4c:f5:b8:cf:d1:b3:49:92:3b: + d3:29:0e:99:1b:96:f7:61:b8:3b:c4:2b:b6:78:6c:b4:23:6f: + f0:fd:d3:b2:5e:75:1f:99:95:a8:ac:f6:da:e1:c5:31:7b:fb: + d1:46:b3:d2:bc:67:b4:62:54:ba:09:f7:63:b0:93:a2:9a:f9: + e9:52:2e:8b:60:12:ab:fc:f5:60:56:ef:10:5c:8b:c4:1a:42: + dc:83:5b:64:0e:cb:b5:bc:d6:4f:c1:7c:3c:6e:8d:13:6d:fb: + 7b:eb:30:d0:dc:4d:af:c5:d5:b6:a5:4c:5b:71:c9:e8:31:be: + e8:38:06:48:a1:1a:e2:ea:d2:de:12:39:58:1a:ff:80:0e:82: + 75:e6:b7:c9:07:6c:0e:ef:ff:38:f1:98:71:c4:b7:7f:0e:15: + d0:25:69:bd:22:9d:2b:ed:05:f6:46:47:ac:ed:c0:f0:d4:3b: + e2:ec:ee:96:5b:90:13:4e:1e:56:3a:eb:b0:ef:96:bb:96:23: + 11:ba:f2:43:86:74:64:95:c8:28:75:df:1d:35:ba:d2:37:83: + 38:53:38:36:3b:cf:6c:e9:f9:6b:0e:d0:fb:04:e8:4f:77:d7: + 65:01:78:86:0c:7a:3e:21:62:f1:7f:63:71:0c:c9:9f:44:db: + a8:27:a2:75:be:6e:81:3e:d7:c0:eb:1b:98:0f:70:5c:34:b2: + 8a:cc:c0:85:18:eb:6e:7a:b3:f7:5a:a1:07:bf:a9:42:92:f3: + 60:22:97:e4:14:a1:07:9b:4e:76:c0:8e:7d:fd:a4:25:c7:47: + ed:ff:1f:73:ac:cc:c3:a5:e9:6f:0a:8e:9b:65:c2:50:85:b5: + a3:a0:53:12:cc:55:87:61:f3:81:ae:10:46:61:bd:44:21:b8: + c2:3d:74:cf:7e:24:35:fa:1c:07:0e:9b:3d:22:ca:ef:31:2f: + 8c:ac:12:bd:ef:40:28:fc:29:67:9f:b2:13:4f:66:24:c4:53: + 19:e9:1e:29:15:ef:e6:6d:b0:7f:2d:67:fd:f3:6c:1b:75:46: + a3:e5:4a:17:e9:a4:d7:0b +SHA1 Fingerprint=B5:61:EB:EA:A4:DE:E4:25:4B:69:1A:98:A5:57:47:C2:34:C7:D9:71 diff --git a/system/etc/security/cacerts/95aff9e3.0 b/system/etc/security/cacerts/95aff9e3.0 new file mode 100644 index 0000000000000000000000000000000000000000..a063620d0cbb1877c39e6d5873b8f857b778bac9 --- /dev/null +++ b/system/etc/security/cacerts/95aff9e3.0 @@ -0,0 +1,79 @@ +-----BEGIN CERTIFICATE----- +MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBM +MSIwIAYDVQQKExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5D +ZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBU +cnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIyMTIwNzM3WhcNMjkxMjMxMTIwNzM3 +WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMg +Uy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSIw +IAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0B +AQEFAAOCAQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rH +UV+rpDKmYYe2bg+G0jACl/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LM +TXPb865Px1bVWqeWifrzq2jUI4ZZJ88JJ7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVU +BBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4fOQtf/WsX+sWn7Et0brM +kUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0cvW0QM8x +AcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNV +HQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15y +sHhE49wcrwn9I0j6vSrEuVUEtRCjjSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfL +I9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1mS1FhIrlQgnXdAIv94nYmem8 +J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5ajZt3hrvJBW8qY +VoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI +03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 279744 (0x444c0) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=PL, O=Unizeto Technologies S.A., OU=Certum Certification Authority, CN=Certum Trusted Network CA + Validity + Not Before: Oct 22 12:07:37 2008 GMT + Not After : Dec 31 12:07:37 2029 GMT + Subject: C=PL, O=Unizeto Technologies S.A., OU=Certum Certification Authority, CN=Certum Trusted Network CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:e3:fb:7d:a3:72:ba:c2:f0:c9:14:87:f5:6b:01: + 4e:e1:6e:40:07:ba:6d:27:5d:7f:f7:5b:2d:b3:5a: + c7:51:5f:ab:a4:32:a6:61:87:b6:6e:0f:86:d2:30: + 02:97:f8:d7:69:57:a1:18:39:5d:6a:64:79:c6:01: + 59:ac:3c:31:4a:38:7c:d2:04:d2:4b:28:e8:20:5f: + 3b:07:a2:cc:4d:73:db:f3:ae:4f:c7:56:d5:5a:a7: + 96:89:fa:f3:ab:68:d4:23:86:59:27:cf:09:27:bc: + ac:6e:72:83:1c:30:72:df:e0:a2:e9:d2:e1:74:75: + 19:bd:2a:9e:7b:15:54:04:1b:d7:43:39:ad:55:28: + c5:e2:1a:bb:f4:c0:e4:ae:38:49:33:cc:76:85:9f: + 39:45:d2:a4:9e:f2:12:8c:51:f8:7c:e4:2d:7f:f5: + ac:5f:eb:16:9f:b1:2d:d1:ba:cc:91:42:77:4c:25: + c9:90:38:6f:db:f0:cc:fb:8e:1e:97:59:3e:d5:60: + 4e:e6:05:28:ed:49:79:13:4b:ba:48:db:2f:f9:72: + d3:39:ca:fe:1f:d8:34:72:f5:b4:40:cf:31:01:c3: + ec:de:11:2d:17:5d:1f:b8:50:d1:5e:19:a7:69:de: + 07:33:28:ca:50:95:f9:a7:54:cb:54:86:50:45:a9: + f9:49 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 08:76:CD:CB:07:FF:24:F6:C5:CD:ED:BB:90:BC:E2:84:37:46:75:F7 + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + Signature Algorithm: sha1WithRSAEncryption + a6:a8:ad:22:ce:01:3d:a6:a3:ff:62:d0:48:9d:8b:5e:72:b0: + 78:44:e3:dc:1c:af:09:fd:23:48:fa:bd:2a:c4:b9:55:04:b5: + 10:a3:8d:27:de:0b:82:63:d0:ee:de:0c:37:79:41:5b:22:b2: + b0:9a:41:5c:a6:70:e0:d4:d0:77:cb:23:d3:00:e0:6c:56:2f: + e1:69:0d:0d:d9:aa:bf:21:81:50:d9:06:a5:a8:ff:95:37:d0: + aa:fe:e2:b3:f5:99:2d:45:84:8a:e5:42:09:d7:74:02:2f:f7: + 89:d8:99:e9:bc:27:d4:47:8d:ba:0d:46:1c:77:cf:14:a4:1c: + b9:a4:31:c4:9c:28:74:03:34:ff:33:19:26:a5:e9:0d:74:b7: + 3e:97:c6:76:e8:27:96:a3:66:dd:e1:ae:f2:41:5b:ca:98:56: + 83:73:70:e4:86:1a:d2:31:41:ba:2f:be:2d:13:5a:76:6f:4e: + e8:4e:81:0e:3f:5b:03:22:a0:12:be:66:58:11:4a:cb:03:c4: + b4:2a:2a:2d:96:17:e0:39:54:bc:48:d3:76:27:9d:9a:2d:06: + a6:c9:ec:39:d2:ab:db:9f:9a:0b:27:02:35:29:b1:40:95:e7: + f9:e8:9c:55:88:19:46:d6:b7:34:f5:7e:ce:39:9a:d9:38:f1: + 51:f7:4f:2c +SHA1 Fingerprint=07:E0:32:E0:20:B7:2C:3F:19:2F:06:28:A2:59:3A:19:A7:0F:06:9E diff --git a/system/etc/security/cacerts/9685a493.0 b/system/etc/security/cacerts/9685a493.0 new file mode 100644 index 0000000000000000000000000000000000000000..2f3a792577d5356a6d7ef2b4ac576226183dd13d --- /dev/null +++ b/system/etc/security/cacerts/9685a493.0 @@ -0,0 +1,75 @@ +-----BEGIN CERTIFICATE----- +MIIDMDCCAhigAwIBAgICA+gwDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCSEsx +FjAUBgNVBAoTDUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3Qg +Um9vdCBDQSAxMB4XDTAzMDUxNTA1MTMxNFoXDTIzMDUxNTA0NTIyOVowRzELMAkG +A1UEBhMCSEsxFjAUBgNVBAoTDUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdr +b25nIFBvc3QgUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEArP84tulmAknjorThkPlAj3n54r15/gK97iSSHSL22oVyaf7XPwnU3ZG1ApzQ +jVrhVcNQhrkpJsLj2aDxaQMoIIBFIi1WpztUlVYiWR8o3x8gPW2iNr4joLFutbEn +PzlTCeqrauh0ssJlXI6/fMN4hM2eFvz1Lk8gKgifd/PFHsSaUmYeSF7jEAaPIpjh +ZY4bXSNmO7ilMlHIhqqhqZ5/dpTCpmy3QfDVyAY45tQM4vM7TG1QjMSDJ8EThFk9 +nnV0ttgCXjqQesBCNnLsak3c78QA3xMYV18meMjWCnl3v/evt3a5pQuEF10Q6m/h +q5URX208o1xNg1vysxmKgIsLhwIDAQABoyYwJDASBgNVHRMBAf8ECDAGAQH/AgED +MA4GA1UdDwEB/wQEAwIBxjANBgkqhkiG9w0BAQUFAAOCAQEADkbVPK7ih9legYsC +mEEIjEy82tvuJxuC52pF7BaLT4Wg87JwvVqWuspube5Gi27nKi6Wsxkz67SfqLI3 +7piol7Yutmcn1KZJ/RyTZXaeQi/cImyaT/JaFTmxcdcrUehtHJjA2Sr0oYJ71clB +oiMBdDhViw+5LmeiIAQ32pwL0xch4I+XeTRvhEgCIDMb5jREn5Fw9IBehEPCKdJs +EhTkYY2sEJCehFC78JZvRZ+K88psT/oROhUVRsPNH4NbLUES7VBnQRM9IauUiqpO +fMGx+6fWtScvl6tu4B3i0RwsH0Ti/L6RoZz71ilTc4afU9hDDl3WY4JxHYB0yvbi +AmvZWg== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 1000 (0x3e8) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=HK, O=Hongkong Post, CN=Hongkong Post Root CA 1 + Validity + Not Before: May 15 05:13:14 2003 GMT + Not After : May 15 04:52:29 2023 GMT + Subject: C=HK, O=Hongkong Post, CN=Hongkong Post Root CA 1 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:ac:ff:38:b6:e9:66:02:49:e3:a2:b4:e1:90:f9: + 40:8f:79:f9:e2:bd:79:fe:02:bd:ee:24:92:1d:22: + f6:da:85:72:69:fe:d7:3f:09:d4:dd:91:b5:02:9c: + d0:8d:5a:e1:55:c3:50:86:b9:29:26:c2:e3:d9:a0: + f1:69:03:28:20:80:45:22:2d:56:a7:3b:54:95:56: + 22:59:1f:28:df:1f:20:3d:6d:a2:36:be:23:a0:b1: + 6e:b5:b1:27:3f:39:53:09:ea:ab:6a:e8:74:b2:c2: + 65:5c:8e:bf:7c:c3:78:84:cd:9e:16:fc:f5:2e:4f: + 20:2a:08:9f:77:f3:c5:1e:c4:9a:52:66:1e:48:5e: + e3:10:06:8f:22:98:e1:65:8e:1b:5d:23:66:3b:b8: + a5:32:51:c8:86:aa:a1:a9:9e:7f:76:94:c2:a6:6c: + b7:41:f0:d5:c8:06:38:e6:d4:0c:e2:f3:3b:4c:6d: + 50:8c:c4:83:27:c1:13:84:59:3d:9e:75:74:b6:d8: + 02:5e:3a:90:7a:c0:42:36:72:ec:6a:4d:dc:ef:c4: + 00:df:13:18:57:5f:26:78:c8:d6:0a:79:77:bf:f7: + af:b7:76:b9:a5:0b:84:17:5d:10:ea:6f:e1:ab:95: + 11:5f:6d:3c:a3:5c:4d:83:5b:f2:b3:19:8a:80:8b: + 0b:87 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE, pathlen:3 + X509v3 Key Usage: critical + Digital Signature, Non Repudiation, Certificate Sign, CRL Sign + Signature Algorithm: sha1WithRSAEncryption + 0e:46:d5:3c:ae:e2:87:d9:5e:81:8b:02:98:41:08:8c:4c:bc: + da:db:ee:27:1b:82:e7:6a:45:ec:16:8b:4f:85:a0:f3:b2:70: + bd:5a:96:ba:ca:6e:6d:ee:46:8b:6e:e7:2a:2e:96:b3:19:33: + eb:b4:9f:a8:b2:37:ee:98:a8:97:b6:2e:b6:67:27:d4:a6:49: + fd:1c:93:65:76:9e:42:2f:dc:22:6c:9a:4f:f2:5a:15:39:b1: + 71:d7:2b:51:e8:6d:1c:98:c0:d9:2a:f4:a1:82:7b:d5:c9:41: + a2:23:01:74:38:55:8b:0f:b9:2e:67:a2:20:04:37:da:9c:0b: + d3:17:21:e0:8f:97:79:34:6f:84:48:02:20:33:1b:e6:34:44: + 9f:91:70:f4:80:5e:84:43:c2:29:d2:6c:12:14:e4:61:8d:ac: + 10:90:9e:84:50:bb:f0:96:6f:45:9f:8a:f3:ca:6c:4f:fa:11: + 3a:15:15:46:c3:cd:1f:83:5b:2d:41:12:ed:50:67:41:13:3d: + 21:ab:94:8a:aa:4e:7c:c1:b1:fb:a7:d6:b5:27:2f:97:ab:6e: + e0:1d:e2:d1:1c:2c:1f:44:e2:fc:be:91:a1:9c:fb:d6:29:53: + 73:86:9f:53:d8:43:0e:5d:d6:63:82:71:1d:80:74:ca:f6:e2: + 02:6b:d9:5a +SHA1 Fingerprint=D6:DA:A8:20:8D:09:D2:15:4D:24:B5:2F:CB:34:6E:B2:58:B2:8A:58 diff --git a/system/etc/security/cacerts/9772ca32.0 b/system/etc/security/cacerts/9772ca32.0 new file mode 100644 index 0000000000000000000000000000000000000000..70fbfbbeddb3b19baa8b7ccad09f4649421d1488 --- /dev/null +++ b/system/etc/security/cacerts/9772ca32.0 @@ -0,0 +1,79 @@ +-----BEGIN CERTIFICATE----- +MIIDfDCCAmSgAwIBAgIQGKy1av1pthU6Y2yv2vrEoTANBgkqhkiG9w0BAQUFADBY +MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjExMC8GA1UEAxMo +R2VvVHJ1c3QgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjEx +MjcwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMFgxCzAJBgNVBAYTAlVTMRYwFAYDVQQK +Ew1HZW9UcnVzdCBJbmMuMTEwLwYDVQQDEyhHZW9UcnVzdCBQcmltYXJ5IENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEAvrgVe//UfH1nrYNke8hCUy3f9oQIIGHWAVlqnEQRr+92/ZV+zmEwu3qDXwK9 +AWbK7hWNb6EwnL2hhZ6UOvNWiAAxz9juapYC2e0DjPt1befquFUWBRaa9OBesYjA +ZIVcFU2Ix7e64HXprQU9nceJSOC7KMgD4TCTZF5SwFlwIjVXiIrxlQqD17wxcwE0 +7e9GceBrAqg1cmuXm2bgyxx5X9gaBGgeRwLmnWDiNpcB3841kt++Z8dtd1k7j53W +kBWUvEI0EME5+bEnPn7WinXFsq+W06Lem+SYvn3h6YGttm/81w7a4DSwDRp35+MI +mO9Y+pyEtzavwt+s0vQQBnBxNQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4G +A1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQULNVQQZcVi/CPNmFbSvtr2ZnJM5IwDQYJ +KoZIhvcNAQEFBQADggEBAFpwfyzdtzRP9YZRqSa+S7iq8XEN3GHHoOo0Hnp3DwQ1 +6CePbJC/kRYkRj5KTs4rFtULUh38H2eiAkUxT87z+gOneZ1TatnaYzr4gNfTmeGl +4b7UVXGYNTq+k+qurUKykG/g/CFNNWMziUnWm07Kx+dOCQD32sfvmWKZd7aVIl6K +oKv0uHiYyjgZmclynnjNS6yvGaBzEi38wkG6gZHaFloxt/m0cYASSJlyc1pZU8Fj +UjPtp8nSOQJw+uCxQmYpqptR7TBUIhRf2asdweSU8Pj1K/fqynhG1riR/aYNKxoU +AT6A8EKglQdebc3MS6RFjasS6LPeWuWgfOgPIh1a6Vk= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 18:ac:b5:6a:fd:69:b6:15:3a:63:6c:af:da:fa:c4:a1 + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=US, O=GeoTrust Inc., CN=GeoTrust Primary Certification Authority + Validity + Not Before: Nov 27 00:00:00 2006 GMT + Not After : Jul 16 23:59:59 2036 GMT + Subject: C=US, O=GeoTrust Inc., CN=GeoTrust Primary Certification Authority + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:be:b8:15:7b:ff:d4:7c:7d:67:ad:83:64:7b:c8: + 42:53:2d:df:f6:84:08:20:61:d6:01:59:6a:9c:44: + 11:af:ef:76:fd:95:7e:ce:61:30:bb:7a:83:5f:02: + bd:01:66:ca:ee:15:8d:6f:a1:30:9c:bd:a1:85:9e: + 94:3a:f3:56:88:00:31:cf:d8:ee:6a:96:02:d9:ed: + 03:8c:fb:75:6d:e7:ea:b8:55:16:05:16:9a:f4:e0: + 5e:b1:88:c0:64:85:5c:15:4d:88:c7:b7:ba:e0:75: + e9:ad:05:3d:9d:c7:89:48:e0:bb:28:c8:03:e1:30: + 93:64:5e:52:c0:59:70:22:35:57:88:8a:f1:95:0a: + 83:d7:bc:31:73:01:34:ed:ef:46:71:e0:6b:02:a8: + 35:72:6b:97:9b:66:e0:cb:1c:79:5f:d8:1a:04:68: + 1e:47:02:e6:9d:60:e2:36:97:01:df:ce:35:92:df: + be:67:c7:6d:77:59:3b:8f:9d:d6:90:15:94:bc:42: + 34:10:c1:39:f9:b1:27:3e:7e:d6:8a:75:c5:b2:af: + 96:d3:a2:de:9b:e4:98:be:7d:e1:e9:81:ad:b6:6f: + fc:d7:0e:da:e0:34:b0:0d:1a:77:e7:e3:08:98:ef: + 58:fa:9c:84:b7:36:af:c2:df:ac:d2:f4:10:06:70: + 71:35 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + 2C:D5:50:41:97:15:8B:F0:8F:36:61:5B:4A:FB:6B:D9:99:C9:33:92 + Signature Algorithm: sha1WithRSAEncryption + 5a:70:7f:2c:dd:b7:34:4f:f5:86:51:a9:26:be:4b:b8:aa:f1: + 71:0d:dc:61:c7:a0:ea:34:1e:7a:77:0f:04:35:e8:27:8f:6c: + 90:bf:91:16:24:46:3e:4a:4e:ce:2b:16:d5:0b:52:1d:fc:1f: + 67:a2:02:45:31:4f:ce:f3:fa:03:a7:79:9d:53:6a:d9:da:63: + 3a:f8:80:d7:d3:99:e1:a5:e1:be:d4:55:71:98:35:3a:be:93: + ea:ae:ad:42:b2:90:6f:e0:fc:21:4d:35:63:33:89:49:d6:9b: + 4e:ca:c7:e7:4e:09:00:f7:da:c7:ef:99:62:99:77:b6:95:22: + 5e:8a:a0:ab:f4:b8:78:98:ca:38:19:99:c9:72:9e:78:cd:4b: + ac:af:19:a0:73:12:2d:fc:c2:41:ba:81:91:da:16:5a:31:b7: + f9:b4:71:80:12:48:99:72:73:5a:59:53:c1:63:52:33:ed:a7: + c9:d2:39:02:70:fa:e0:b1:42:66:29:aa:9b:51:ed:30:54:22: + 14:5f:d9:ab:1d:c1:e4:94:f0:f8:f5:2b:f7:ea:ca:78:46:d6: + b8:91:fd:a6:0d:2b:1a:14:01:3e:80:f0:42:a0:95:07:5e:6d: + cd:cc:4b:a4:45:8d:ab:12:e8:b3:de:5a:e5:a0:7c:e8:0f:22: + 1d:5a:e9:59 +SHA1 Fingerprint=32:3C:11:8E:1B:F7:B8:B6:52:54:E2:E2:10:0D:D6:02:90:37:F0:96 diff --git a/system/etc/security/cacerts/9c3323d4.0 b/system/etc/security/cacerts/9c3323d4.0 new file mode 100644 index 0000000000000000000000000000000000000000..91e856529e0149dcf2a92ad45c496807410f205d --- /dev/null +++ b/system/etc/security/cacerts/9c3323d4.0 @@ -0,0 +1,124 @@ +-----BEGIN CERTIFICATE----- +MIIFbzCCA1egAwIBAgISESCzkFU5fX82bWTCp59rY45nMA0GCSqGSIb3DQEBCwUA +MEAxCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlPcGVuVHJ1c3QxHTAbBgNVBAMMFE9w +ZW5UcnVzdCBSb290IENBIEcxMB4XDTE0MDUyNjA4NDU1MFoXDTM4MDExNTAwMDAw +MFowQDELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCU9wZW5UcnVzdDEdMBsGA1UEAwwU +T3BlblRydXN0IFJvb3QgQ0EgRzEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK +AoICAQD4eUbalsUwXopxAy1wpLuwxQjczeY1wICkES3d5oeuXT2R0odsN7faYp6b +wiTXj/HbpqbfRm9RpnHLPhsxZ2L3EVs0J9V5ToybWL0iEA1cJwzdMOWo010hOHQX +/uMftk87ay3bfWAfjH1MBcLrARYVmBSO0ZB3Ij/swjm4eTrwSSTilZHcYTSSjFR0 +77F9jAHiOH3BX2pfJLKOYheteSCtqx234LSWSE9mQxAGFiQD4eCcjsZGT44ameGP +uY4zbGneWK2gDqdkVBFpRGZPTBKnjix9xNRbxQA0MMHZmf4yzgeEtE7NCv82TWLx +p2NX5Ntqp66/K7nJ5rInieV+mhxNaMbBGN4zK1FGSxyO9z0M+Yo0FMT7MzUj8czx +Kselu7Cizv5Ta01BG2Yospb6p64KTrk5M0ScdMGTHPjgniQlQ/GbI4Kq3ywgsNw2 +TgOzfALU5nsaqocTvz6hdLubDuHAk5/XpGbKuxs74zD0M1mKB3IDVedzagMxbm+W +G+Oin6+Sx+31QrclTDsTBM8clq8cIqPQqwWyTBIjUtz9GVsnnB47ev1CI9sjgBPw +vFEVVJSmdz7QdFG9URQIOTfLHzSpMJ1ShC5VkLG631UAC9hWLbFJSXKAqWLXwPYY +EQRVzXR7z2FwefR7LFxckvzluFqrTJOVoSfupb7PcSNCupt2LQIDAQABo2MwYTAO +BgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUl0YhVyE1 +2jZVx/PxN3DlCPaTKbYwHwYDVR0jBBgwFoAUl0YhVyE12jZVx/PxN3DlCPaTKbYw +DQYJKoZIhvcNAQELBQADggIBAB3dAmB84DWn5ph76kTOZ0BP8pNuZtQ5iSas000E +PLuHIT839HEl2ku6q5aCgZG27dmxpGWX4m9kWaSW7mDKHyP7Rbr/jyTwyqkxf3kf +gLMtMrpkZ2CvuVnN35pJ06iCsfmYlIrM4LvgBBuZYLFGZdwIorJGnkSI6pN+VxbS +FXJfLkur1J1juONI5f6ELlgKn0Md/rcYkoZDSw6cMoYsYPXpSOqV7XAp8dUv/TW0 +V8/bhUiZucJvbI/NeJWsZCj9VrDDb8O+WVLhX4SPgPL0DTatdrOjteFkdjpY3H1P +XlZs5VVZV6Xf8YpmMIzUUmI4d7S+KNfKNsSbBfD4Fdvb8e80nR14SohWZ25g/4/I +i+GOvUKpMwpZQhISKvqxnUOOBZuZ2mKtVzazHbYNeS2WuOvyDEsMpZTGMKcmGS3t +TAZQMPH9WD25SxdfGbRqhFS0OE85og2WaMMolP3tLR9Ka0OWLpABEPs4poEL0L91 +09S5zvE/bw4cHjdx5RiHdRk/ULlepEU0rbDK5uUTdg8xFKmOLZTW1YVNcxVPS/Ky +Pu1svf0OnWZzsD2097+o4BGkxK51CUpjAEggpsadCwmKtODmzj7HPiY46SvepghJ +AwSQiumPv+i2tCqjI40cHLI5kqiPAlxAOXXUc0ECd97N4EOH1uS6SsNsEn/+KuYj +1oxx +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 11:20:b3:90:55:39:7d:7f:36:6d:64:c2:a7:9f:6b:63:8e:67 + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=FR, O=OpenTrust, CN=OpenTrust Root CA G1 + Validity + Not Before: May 26 08:45:50 2014 GMT + Not After : Jan 15 00:00:00 2038 GMT + Subject: C=FR, O=OpenTrust, CN=OpenTrust Root CA G1 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:f8:79:46:da:96:c5:30:5e:8a:71:03:2d:70:a4: + bb:b0:c5:08:dc:cd:e6:35:c0:80:a4:11:2d:dd:e6: + 87:ae:5d:3d:91:d2:87:6c:37:b7:da:62:9e:9b:c2: + 24:d7:8f:f1:db:a6:a6:df:46:6f:51:a6:71:cb:3e: + 1b:31:67:62:f7:11:5b:34:27:d5:79:4e:8c:9b:58: + bd:22:10:0d:5c:27:0c:dd:30:e5:a8:d3:5d:21:38: + 74:17:fe:e3:1f:b6:4f:3b:6b:2d:db:7d:60:1f:8c: + 7d:4c:05:c2:eb:01:16:15:98:14:8e:d1:90:77:22: + 3f:ec:c2:39:b8:79:3a:f0:49:24:e2:95:91:dc:61: + 34:92:8c:54:74:ef:b1:7d:8c:01:e2:38:7d:c1:5f: + 6a:5f:24:b2:8e:62:17:ad:79:20:ad:ab:1d:b7:e0: + b4:96:48:4f:66:43:10:06:16:24:03:e1:e0:9c:8e: + c6:46:4f:8e:1a:99:e1:8f:b9:8e:33:6c:69:de:58: + ad:a0:0e:a7:64:54:11:69:44:66:4f:4c:12:a7:8e: + 2c:7d:c4:d4:5b:c5:00:34:30:c1:d9:99:fe:32:ce: + 07:84:b4:4e:cd:0a:ff:36:4d:62:f1:a7:63:57:e4: + db:6a:a7:ae:bf:2b:b9:c9:e6:b2:27:89:e5:7e:9a: + 1c:4d:68:c6:c1:18:de:33:2b:51:46:4b:1c:8e:f7: + 3d:0c:f9:8a:34:14:c4:fb:33:35:23:f1:cc:f1:2a: + c7:a5:bb:b0:a2:ce:fe:53:6b:4d:41:1b:66:28:b2: + 96:fa:a7:ae:0a:4e:b9:39:33:44:9c:74:c1:93:1c: + f8:e0:9e:24:25:43:f1:9b:23:82:aa:df:2c:20:b0: + dc:36:4e:03:b3:7c:02:d4:e6:7b:1a:aa:87:13:bf: + 3e:a1:74:bb:9b:0e:e1:c0:93:9f:d7:a4:66:ca:bb: + 1b:3b:e3:30:f4:33:59:8a:07:72:03:55:e7:73:6a: + 03:31:6e:6f:96:1b:e3:a2:9f:af:92:c7:ed:f5:42: + b7:25:4c:3b:13:04:cf:1c:96:af:1c:22:a3:d0:ab: + 05:b2:4c:12:23:52:dc:fd:19:5b:27:9c:1e:3b:7a: + fd:42:23:db:23:80:13:f0:bc:51:15:54:94:a6:77: + 3e:d0:74:51:bd:51:14:08:39:37:cb:1f:34:a9:30: + 9d:52:84:2e:55:90:b1:ba:df:55:00:0b:d8:56:2d: + b1:49:49:72:80:a9:62:d7:c0:f6:18:11:04:55:cd: + 74:7b:cf:61:70:79:f4:7b:2c:5c:5c:92:fc:e5:b8: + 5a:ab:4c:93:95:a1:27:ee:a5:be:cf:71:23:42:ba: + 9b:76:2d + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 97:46:21:57:21:35:DA:36:55:C7:F3:F1:37:70:E5:08:F6:93:29:B6 + X509v3 Authority Key Identifier: + keyid:97:46:21:57:21:35:DA:36:55:C7:F3:F1:37:70:E5:08:F6:93:29:B6 + + Signature Algorithm: sha256WithRSAEncryption + 1d:dd:02:60:7c:e0:35:a7:e6:98:7b:ea:44:ce:67:40:4f:f2: + 93:6e:66:d4:39:89:26:ac:d3:4d:04:3c:bb:87:21:3f:37:f4: + 71:25:da:4b:ba:ab:96:82:81:91:b6:ed:d9:b1:a4:65:97:e2: + 6f:64:59:a4:96:ee:60:ca:1f:23:fb:45:ba:ff:8f:24:f0:ca: + a9:31:7f:79:1f:80:b3:2d:32:ba:64:67:60:af:b9:59:cd:df: + 9a:49:d3:a8:82:b1:f9:98:94:8a:cc:e0:bb:e0:04:1b:99:60: + b1:46:65:dc:08:a2:b2:46:9e:44:88:ea:93:7e:57:16:d2:15: + 72:5f:2e:4b:ab:d4:9d:63:b8:e3:48:e5:fe:84:2e:58:0a:9f: + 43:1d:fe:b7:18:92:86:43:4b:0e:9c:32:86:2c:60:f5:e9:48: + ea:95:ed:70:29:f1:d5:2f:fd:35:b4:57:cf:db:85:48:99:b9: + c2:6f:6c:8f:cd:78:95:ac:64:28:fd:56:b0:c3:6f:c3:be:59: + 52:e1:5f:84:8f:80:f2:f4:0d:36:ad:76:b3:a3:b5:e1:64:76: + 3a:58:dc:7d:4f:5e:56:6c:e5:55:59:57:a5:df:f1:8a:66:30: + 8c:d4:52:62:38:77:b4:be:28:d7:ca:36:c4:9b:05:f0:f8:15: + db:db:f1:ef:34:9d:1d:78:4a:88:56:67:6e:60:ff:8f:c8:8b: + e1:8e:bd:42:a9:33:0a:59:42:12:12:2a:fa:b1:9d:43:8e:05: + 9b:99:da:62:ad:57:36:b3:1d:b6:0d:79:2d:96:b8:eb:f2:0c: + 4b:0c:a5:94:c6:30:a7:26:19:2d:ed:4c:06:50:30:f1:fd:58: + 3d:b9:4b:17:5f:19:b4:6a:84:54:b4:38:4f:39:a2:0d:96:68: + c3:28:94:fd:ed:2d:1f:4a:6b:43:96:2e:90:01:10:fb:38:a6: + 81:0b:d0:bf:75:d3:d4:b9:ce:f1:3f:6f:0e:1c:1e:37:71:e5: + 18:87:75:19:3f:50:b9:5e:a4:45:34:ad:b0:ca:e6:e5:13:76: + 0f:31:14:a9:8e:2d:94:d6:d5:85:4d:73:15:4f:4b:f2:b2:3e: + ed:6c:bd:fd:0e:9d:66:73:b0:3d:b4:f7:bf:a8:e0:11:a4:c4: + ae:75:09:4a:63:00:48:20:a6:c6:9d:0b:09:8a:b4:e0:e6:ce: + 3e:c7:3e:26:38:e9:2b:de:a6:08:49:03:04:90:8a:e9:8f:bf: + e8:b6:b4:2a:a3:23:8d:1c:1c:b2:39:92:a8:8f:02:5c:40:39: + 75:d4:73:41:02:77:de:cd:e0:43:87:d6:e4:ba:4a:c3:6c:12: + 7f:fe:2a:e6:23:d6:8c:71 +SHA1 Fingerprint=79:91:E8:34:F7:E2:EE:DD:08:95:01:52:E9:55:2D:14:E9:58:D5:7E diff --git a/system/etc/security/cacerts/9d6523ce.0 b/system/etc/security/cacerts/9d6523ce.0 new file mode 100644 index 0000000000000000000000000000000000000000..6053f55a0bceba6feab27329c53ffb21d4b733c2 --- /dev/null +++ b/system/etc/security/cacerts/9d6523ce.0 @@ -0,0 +1,123 @@ +-----BEGIN CERTIFICATE----- +MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBe +MQswCQYDVQQGEwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0 +ZC4xKjAoBgNVBAsMIWVQS0kgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAe +Fw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMxMjdaMF4xCzAJBgNVBAYTAlRXMSMw +IQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEqMCgGA1UECwwhZVBL +SSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEF +AAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAH +SyZbCUNsIZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAh +ijHyl3SJCRImHJ7K2RKilTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3X +DZoTM1PRYfl61dd4s5oz9wCGzh1NlDivqOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1 +TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX12ruOzjjK9SXDrkb5wdJ +fzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0OWQqraffA +sgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uU +WH1+ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLS +nT0IFaUQAS2zMnaolQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pH +dmX2Os+PYhcZewoozRrSgx4hxyy/vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJip +NiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXiZo1jDiVN1Rmy5nk3pyKdVDEC +AwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/QkqiMAwGA1UdEwQF +MAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH +ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGB +uvl2ICO1J2B01GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6Yl +PwZpVnPDimZI+ymBV3QGypzqKOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkP +JXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdVxrsStZf0X4OFunHB2WyBEXYKCrC/ +gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEPNXubrjlpC2JgQCA2 +j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+rGNm6 +5ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUB +o2M3IUxExJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS +/jQ6fbjpKdx2qcgw+BRxgMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2z +Gp1iro2C6pSe3VkQw63d4k3jMdXH7OjysP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTE +W9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmODBCEIZ43ygknQW/2xzQ+D +hNQ+IIX3Sj0rnP0qCglN6oH4EZw= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 15:c8:bd:65:47:5c:af:b8:97:00:5e:e4:06:d2:bc:9d + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=TW, O=Chunghwa Telecom Co., Ltd., OU=ePKI Root Certification Authority + Validity + Not Before: Dec 20 02:31:27 2004 GMT + Not After : Dec 20 02:31:27 2034 GMT + Subject: C=TW, O=Chunghwa Telecom Co., Ltd., OU=ePKI Root Certification Authority + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:e1:25:0f:ee:8d:db:88:33:75:67:cd:ad:1f:7d: + 3a:4e:6d:9d:d3:2f:14:f3:63:74:cb:01:21:6a:37: + ea:84:50:07:4b:26:5b:09:43:6c:21:9e:6a:c8:d5: + 03:f5:60:69:8f:cc:f0:22:e4:1f:e7:f7:6a:22:31: + b7:2c:15:f2:e0:fe:00:6a:43:ff:87:65:c6:b5:1a: + c1:a7:4c:6d:22:70:21:8a:31:f2:97:74:89:09:12: + 26:1c:9e:ca:d9:12:a2:95:3c:da:e9:67:bf:08:a0: + 64:e3:d6:42:b7:45:ef:97:f4:f6:f5:d7:b5:4a:15: + 02:58:7d:98:58:4b:60:bc:cd:d7:0d:9a:13:33:53: + d1:61:f9:7a:d5:d7:78:b3:9a:33:f7:00:86:ce:1d: + 4d:94:38:af:a8:ec:78:51:70:8a:5c:10:83:51:21: + f7:11:3d:34:86:5e:e5:48:cd:97:81:82:35:4c:19: + ec:65:f6:6b:c5:05:a1:ee:47:13:d6:b3:21:27:94: + 10:0a:d9:24:3b:ba:be:44:13:46:30:3f:97:3c:d8: + d7:d7:6a:ee:3b:38:e3:2b:d4:97:0e:b9:1b:e7:07: + 49:7f:37:2a:f9:77:78:cf:54:ed:5b:46:9d:a3:80: + 0e:91:43:c1:d6:5b:5f:14:ba:9f:a6:8d:24:47:40: + 59:bf:72:38:b2:36:6c:37:ff:99:d1:5d:0e:59:0a: + ab:69:f7:c0:b2:04:45:7a:54:00:ae:be:53:f6:b5: + e7:e1:f8:3c:a3:31:d2:a9:fe:21:52:64:c5:a6:67: + f0:75:07:06:94:14:81:55:c6:27:e4:01:8f:17:c1: + 6a:71:d7:be:4b:fb:94:58:7d:7e:11:33:b1:42:f7: + 62:6c:18:d6:cf:09:68:3e:7f:6c:f6:1e:8f:62:ad: + a5:63:db:09:a7:1f:22:42:41:1e:6f:99:8a:3e:d7: + f9:3f:40:7a:79:b0:a5:01:92:d2:9d:3d:08:15:a5: + 10:01:2d:b3:32:76:a8:95:0d:b3:7a:9a:fb:07:10: + 78:11:6f:e1:8f:c7:ba:0f:25:1a:74:2a:e5:1c:98: + 41:99:df:21:87:e8:95:06:6a:0a:b3:6a:47:76:65: + f6:3a:cf:8f:62:17:19:7b:0a:28:cd:1a:d2:83:1e: + 21:c7:2c:bf:be:ff:61:68:b7:67:1b:bb:78:4d:8d: + ce:67:e5:e4:c1:8e:b7:23:66:e2:9d:90:75:34:98: + a9:36:2b:8a:9a:94:b9:9d:ec:cc:8a:b1:f8:25:89: + 5c:5a:b6:2f:8c:1f:6d:79:24:a7:52:68:c3:84:35: + e2:66:8d:63:0e:25:4d:d5:19:b2:e6:79:37:a7:22: + 9d:54:31 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 1E:0C:F7:B6:67:F2:E1:92:26:09:45:C0:55:39:2E:77:3F:42:4A:A2 + X509v3 Basic Constraints: + CA:TRUE + setCext-hashedRoot: + 0/0-...0...+......0...g*.....E... +V|.[x....S..... + Signature Algorithm: sha1WithRSAEncryption + 09:b3:83:53:59:01:3e:95:49:b9:f1:81:ba:f9:76:20:23:b5: + 27:60:74:d4:6a:99:34:5e:6c:00:53:d9:9f:f2:a6:b1:24:07: + 44:6a:2a:c6:a5:8e:78:12:e8:47:d9:58:1b:13:2a:5e:79:9b: + 9f:0a:2a:67:a6:25:3f:06:69:56:73:c3:8a:66:48:fb:29:81: + 57:74:06:ca:9c:ea:28:e8:38:67:26:2b:f1:d5:b5:3f:65:93: + f8:36:5d:8e:8d:8d:40:20:87:19:ea:ef:27:c0:3d:b4:39:0f: + 25:7b:68:50:74:55:9c:0c:59:7d:5a:3d:41:94:25:52:08:e0: + 47:2c:15:31:19:d5:bf:07:55:c6:bb:12:b5:97:f4:5f:83:85: + ba:71:c1:d9:6c:81:11:76:0a:0a:b0:bf:82:97:f7:ea:3d:fa: + fa:ec:2d:a9:28:94:3b:56:dd:d2:51:2e:ae:c0:bd:08:15:8c: + 77:52:34:96:d6:9b:ac:d3:1d:8e:61:0f:35:7b:9b:ae:39:69: + 0b:62:60:40:20:36:8f:af:fb:36:ee:2d:08:4a:1d:b8:bf:9b: + 5c:f8:ea:a5:1b:a0:73:a6:d8:f8:6e:e0:33:04:5f:68:aa:27: + 87:ed:d9:c1:90:9c:ed:bd:e3:6a:35:af:63:df:ab:18:d9:ba: + e6:e9:4a:ea:50:8a:0f:61:93:1e:e2:2d:19:e2:30:94:35:92: + 5d:0e:b6:07:af:19:80:8f:47:90:51:4b:2e:4d:dd:85:e2:d2: + 0a:52:0a:17:9a:fc:1a:b0:50:02:e5:01:a3:63:37:21:4c:44: + c4:9b:51:99:11:0e:73:9c:06:8f:54:2e:a7:28:5e:44:39:87: + 56:2d:37:bd:85:44:94:e1:0c:4b:2c:9c:c3:92:85:34:61:cb: + 0f:b8:9b:4a:43:52:fe:34:3a:7d:b8:e9:29:dc:76:a9:c8:30: + f8:14:71:80:c6:1e:36:48:74:22:41:5c:87:82:e8:18:71:8b: + 41:89:44:e7:7e:58:5b:a8:b8:8d:13:e9:a7:6c:c3:47:ed:b3: + 1a:9d:62:ae:8d:82:ea:94:9e:dd:59:10:c3:ad:dd:e2:4d:e3: + 31:d5:c7:ec:e8:f2:b0:fe:92:1e:16:0a:1a:fc:d9:f3:f8:27: + b6:c9:be:1d:b4:6c:64:90:7f:f4:e4:c4:5b:d7:37:ae:42:0e: + dd:a4:1a:6f:7c:88:54:c5:16:6e:e1:7a:68:2e:f8:3a:bf:0d: + a4:3c:89:3b:78:a7:4e:63:83:04:21:08:67:8d:f2:82:49:d0: + 5b:fd:b1:cd:0f:83:84:d4:3e:20:85:f7:4a:3d:2b:9c:fd:2a: + 0a:09:4d:ea:81:f8:11:9c +SHA1 Fingerprint=67:65:0D:F1:7E:8E:7E:5B:82:40:A4:F4:56:4B:CF:E2:3D:69:C6:F0 diff --git a/system/etc/security/cacerts/9dbefe7b.0 b/system/etc/security/cacerts/9dbefe7b.0 new file mode 100644 index 0000000000000000000000000000000000000000..5d72f3070c5fedc72bb3ecee6693826cef5bf688 --- /dev/null +++ b/system/etc/security/cacerts/9dbefe7b.0 @@ -0,0 +1,78 @@ +-----BEGIN CERTIFICATE----- +MIIDfTCCAmWgAwIBAgIBADANBgkqhkiG9w0BAQUFADBgMQswCQYDVQQGEwJKUDEl +MCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMh +U2VjdXJpdHkgQ29tbXVuaWNhdGlvbiBFViBSb290Q0ExMB4XDTA3MDYwNjAyMTIz +MloXDTM3MDYwNjAyMTIzMlowYDELMAkGA1UEBhMCSlAxJTAjBgNVBAoTHFNFQ09N +IFRydXN0IFN5c3RlbXMgQ08uLExURC4xKjAoBgNVBAsTIVNlY3VyaXR5IENvbW11 +bmljYXRpb24gRVYgUm9vdENBMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBALx/7FebJOD+nLpCeamIivqA4PUHKUPqjgo0No0c+qe1OXj/l3X3L+SqawSE +RMqm4miO/VVQYg+kcQ7OBzgtQoVQrTyWb4vVog7P3kmJPdZkLjjlHmy1V4qe70gO +zXppFodEtZDkBp2uoQSXWHnvIEqCa4wiv+wfD+mEce3xDuS4GBPMVjZd0ZoeUWs5 +bmB2iDQL87PRsJ3KYeJkHcFGB7hj3R4zZbOOCVVSPbW9/wfrrWFVGCypaZhKqkDF +MxRldAD5kd6vA0jFQFTcD4SQaCDFkpbcLuUCRarAX1T4bepJz11sS6/vmsJWXMY1 +VkJqMF/Cq/biPT+zyRGPMUzXn0kCAwEAAaNCMEAwHQYDVR0OBBYEFDVK9U2vP9eC +OKyrcWUXdYydVZPmMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0G +CSqGSIb3DQEBBQUAA4IBAQCoh+ns+EBnXcPBZsdAS5f8hxOQWsTvoMpfi7ent/HW +tWS3irO4G8za+6xmiEHO6Pzk2x6Ipu0nUBsCMCRGef4Eh3CXQHPRwMFXGZpppSeZ +q51ihPZRwSzJIxXYKLerJRO1RuGGAv8mjMSIkh1W/hln8lXkgKNrnKt34VFxDSDb +EJrbvXZ5B3eZKK2aXtqxT0QsNY6llsf9g/BYxnnWmHyojf6GPgcWkuF75x3sM3Z+ +Qi5KhfmRiWiEA4Glm5q+4zfFVKtWOxgtQaQM+ELbmaDgcm+7XeEWT1MKZPlO9L9O +VL14bIjqv5wTJMJwaaJ/D8g8rQjJsJhAoyrniIPtd490 +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 0 (0x0) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=JP, O=SECOM Trust Systems CO.,LTD., OU=Security Communication EV RootCA1 + Validity + Not Before: Jun 6 02:12:32 2007 GMT + Not After : Jun 6 02:12:32 2037 GMT + Subject: C=JP, O=SECOM Trust Systems CO.,LTD., OU=Security Communication EV RootCA1 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:bc:7f:ec:57:9b:24:e0:fe:9c:ba:42:79:a9:88: + 8a:fa:80:e0:f5:07:29:43:ea:8e:0a:34:36:8d:1c: + fa:a7:b5:39:78:ff:97:75:f7:2f:e4:aa:6b:04:84: + 44:ca:a6:e2:68:8e:fd:55:50:62:0f:a4:71:0e:ce: + 07:38:2d:42:85:50:ad:3c:96:6f:8b:d5:a2:0e:cf: + de:49:89:3d:d6:64:2e:38:e5:1e:6c:b5:57:8a:9e: + ef:48:0e:cd:7a:69:16:87:44:b5:90:e4:06:9d:ae: + a1:04:97:58:79:ef:20:4a:82:6b:8c:22:bf:ec:1f: + 0f:e9:84:71:ed:f1:0e:e4:b8:18:13:cc:56:36:5d: + d1:9a:1e:51:6b:39:6e:60:76:88:34:0b:f3:b3:d1: + b0:9d:ca:61:e2:64:1d:c1:46:07:b8:63:dd:1e:33: + 65:b3:8e:09:55:52:3d:b5:bd:ff:07:eb:ad:61:55: + 18:2c:a9:69:98:4a:aa:40:c5:33:14:65:74:00:f9: + 91:de:af:03:48:c5:40:54:dc:0f:84:90:68:20:c5: + 92:96:dc:2e:e5:02:45:aa:c0:5f:54:f8:6d:ea:49: + cf:5d:6c:4b:af:ef:9a:c2:56:5c:c6:35:56:42:6a: + 30:5f:c2:ab:f6:e2:3d:3f:b3:c9:11:8f:31:4c:d7: + 9f:49 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 35:4A:F5:4D:AF:3F:D7:82:38:AC:AB:71:65:17:75:8C:9D:55:93:E6 + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + a8:87:e9:ec:f8:40:67:5d:c3:c1:66:c7:40:4b:97:fc:87:13: + 90:5a:c4:ef:a0:ca:5f:8b:b7:a7:b7:f1:d6:b5:64:b7:8a:b3: + b8:1b:cc:da:fb:ac:66:88:41:ce:e8:fc:e4:db:1e:88:a6:ed: + 27:50:1b:02:30:24:46:79:fe:04:87:70:97:40:73:d1:c0:c1: + 57:19:9a:69:a5:27:99:ab:9d:62:84:f6:51:c1:2c:c9:23:15: + d8:28:b7:ab:25:13:b5:46:e1:86:02:ff:26:8c:c4:88:92:1d: + 56:fe:19:67:f2:55:e4:80:a3:6b:9c:ab:77:e1:51:71:0d:20: + db:10:9a:db:bd:76:79:07:77:99:28:ad:9a:5e:da:b1:4f:44: + 2c:35:8e:a5:96:c7:fd:83:f0:58:c6:79:d6:98:7c:a8:8d:fe: + 86:3e:07:16:92:e1:7b:e7:1d:ec:33:76:7e:42:2e:4a:85:f9: + 91:89:68:84:03:81:a5:9b:9a:be:e3:37:c5:54:ab:56:3b:18: + 2d:41:a4:0c:f8:42:db:99:a0:e0:72:6f:bb:5d:e1:16:4f:53: + 0a:64:f9:4e:f4:bf:4e:54:bd:78:6c:88:ea:bf:9c:13:24:c2: + 70:69:a2:7f:0f:c8:3c:ad:08:c9:b0:98:40:a3:2a:e7:88:83: + ed:77:8f:74 +SHA1 Fingerprint=FE:B8:C4:32:DC:F9:76:9A:CE:AE:3D:D8:90:8F:FD:28:86:65:64:7D diff --git a/system/etc/security/cacerts/9f533518.0 b/system/etc/security/cacerts/9f533518.0 new file mode 100644 index 0000000000000000000000000000000000000000..aeda5bffd944f6a2ae9a8874afd12cb623887a5d --- /dev/null +++ b/system/etc/security/cacerts/9f533518.0 @@ -0,0 +1,138 @@ +-----BEGIN CERTIFICATE----- +MIIHSTCCBTGgAwIBAgIJAMnN0+nVfSPOMA0GCSqGSIb3DQEBBQUAMIGsMQswCQYD +VQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0 +IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3 +MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAlBgNVBAMTHkdsb2JhbCBD +aGFtYmVyc2lnbiBSb290IC0gMjAwODAeFw0wODA4MDExMjMxNDBaFw0zODA3MzEx +MjMxNDBaMIGsMQswCQYDVQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3Vy +cmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAG +A1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAl +BgNVBAMTHkdsb2JhbCBDaGFtYmVyc2lnbiBSb290IC0gMjAwODCCAiIwDQYJKoZI +hvcNAQEBBQADggIPADCCAgoCggIBAMDfVtPkOpt2RbQT2//BthmLN0EYlVJH6xed +KYiONWwGMi5HYvNJBL99RDaxccy9Wglz1dmFRP+RVyXfXjaOcNFccUMd2drvXNL7 +G706tcuto8xEpw2uIRU/uXpbknXYpBI4iRmKt4DS4jJvVpyR1ogQC7N0ZJJ0YPP2 +zxhPYLIj0Mc7zmFLmY/CDNBAspjcDahOo7kKrmCgrUVSY7pmvWjg+b4aqIG7HkF4 +ddPB/gBVsIdU6CeQNR1MM62X/JcumIS/LMmjv9GYERTtY/jKmIhYF5ntRQOXfjyG +HoiMvvKRhI9lNNgATH23MRdaKXoKGCQwoze1eqkBfSbW+Q6OWfH9GzO1KTsXO0G2 +Id3UwD2ln58fQ1DJu7xsepeY7s2MH/ucUa6LcL0nn3HAa6x9kGbo1106DbDVwo3V +yJ2dwW3Q0L9R5OP4wzg2rtandeavhENdk5IMagfeOx2YItaswTXbo6Al/3K1dh3e +beksZixShNBFks4c5eUzHdwHU1SjqoI7mjcv3N2gZOnm3b2u/GSFHTynyQbehP9r +6GsaPMWis0L7iwk+XwhSx2LE1AVxv8Rk5Pihg+g+EpuoHtQ2TS9x9o0o9oOpE9Jh +wZG7SMA0j0GMS0zbaRL/UJScIINZc+18ofLx/d33SdNDWKBWY8o9PeU1VlnpDsog +zCtLkykPAgMBAAGjggFqMIIBZjASBgNVHRMBAf8ECDAGAQH/AgEMMB0GA1UdDgQW +BBS5CcqcHtvTbDprru1U8VuTBjUuXjCB4QYDVR0jBIHZMIHWgBS5CcqcHtvTbDpr +ru1U8VuTBjUuXqGBsqSBrzCBrDELMAkGA1UEBhMCRVUxQzBBBgNVBAcTOk1hZHJp +ZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuY2FtZXJmaXJtYS5jb20vYWRk +cmVzcykxEjAQBgNVBAUTCUE4Mjc0MzI4NzEbMBkGA1UEChMSQUMgQ2FtZXJmaXJt +YSBTLkEuMScwJQYDVQQDEx5HbG9iYWwgQ2hhbWJlcnNpZ24gUm9vdCAtIDIwMDiC +CQDJzdPp1X0jzjAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCow +KAYIKwYBBQUHAgEWHGh0dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZI +hvcNAQEFBQADggIBAICIf3DekijZBZRG/5BXqfEv3xoNa/p8DhxJJHkn2EaqbylZ +UohwEurdPfWbU1Rv4WCiqAm57OtZfMY18dwY6fFn5a+6ReAJ3spED8IXDneRRXoz +X1+WLGiLwUePmJs9wOzL9dWCkoQ10b42OFZyMVtHLaoXpGNR6woBrX/sdZ7LoR/x +fxKxueRkf2fWIyr0uDldmOghp+G9PUIadJpwr2hsUF1Jz//7Dl3mLEfXgTpZALVz +a2Mg9jFFCDkO9HB+QHBaP9BrQql0PSgvAm11cpUJjUhjxsYjV5KTXjXBjfkK9yyd +Yhz2rXzdpjEetrHHfoUm+qRqtdpjMNHvkzeyZi99Bffnt0uYlDXA2TopwZ2yUDMd +SqlapskD7+3056huirRXhOukP9DuqqqHW2Pok+JrqNS4cnhrG+055F3Lm6qH1U9O +AP7Zap88MQ8oAgF9mOinsKJknnn4SPIVqczmyETrP3iZ8ntxPjzxmKfFGBI/5rso +M0LpRQp8bfKGeS/Fghl9CYl8slR2iK7ewfPM4W7bMdaTrpmg7yVqc5iJWzouE4ge +v8CSlDQb4ye3ix5vQv/n6TebUB0tovkC7stYWDpxvGjjqsGvHCgfotwjZT+B6q6Z +09gwzxMNTxXJhLynSC34MCN32EZLeW32jO06f2ARePTpm67VVMB0gNELQp/B +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 14541511773111788494 (0xc9cdd3e9d57d23ce) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=EU, L=Madrid (see current address at www.camerfirma.com/address)/serialNumber=A82743287, O=AC Camerfirma S.A., CN=Global Chambersign Root - 2008 + Validity + Not Before: Aug 1 12:31:40 2008 GMT + Not After : Jul 31 12:31:40 2038 GMT + Subject: C=EU, L=Madrid (see current address at www.camerfirma.com/address)/serialNumber=A82743287, O=AC Camerfirma S.A., CN=Global Chambersign Root - 2008 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:c0:df:56:d3:e4:3a:9b:76:45:b4:13:db:ff:c1: + b6:19:8b:37:41:18:95:52:47:eb:17:9d:29:88:8e: + 35:6c:06:32:2e:47:62:f3:49:04:bf:7d:44:36:b1: + 71:cc:bd:5a:09:73:d5:d9:85:44:ff:91:57:25:df: + 5e:36:8e:70:d1:5c:71:43:1d:d9:da:ef:5c:d2:fb: + 1b:bd:3a:b5:cb:ad:a3:cc:44:a7:0d:ae:21:15:3f: + b9:7a:5b:92:75:d8:a4:12:38:89:19:8a:b7:80:d2: + e2:32:6f:56:9c:91:d6:88:10:0b:b3:74:64:92:74: + 60:f3:f6:cf:18:4f:60:b2:23:d0:c7:3b:ce:61:4b: + 99:8f:c2:0c:d0:40:b2:98:dc:0d:a8:4e:a3:b9:0a: + ae:60:a0:ad:45:52:63:ba:66:bd:68:e0:f9:be:1a: + a8:81:bb:1e:41:78:75:d3:c1:fe:00:55:b0:87:54: + e8:27:90:35:1d:4c:33:ad:97:fc:97:2e:98:84:bf: + 2c:c9:a3:bf:d1:98:11:14:ed:63:f8:ca:98:88:58: + 17:99:ed:45:03:97:7e:3c:86:1e:88:8c:be:f2:91: + 84:8f:65:34:d8:00:4c:7d:b7:31:17:5a:29:7a:0a: + 18:24:30:a3:37:b5:7a:a9:01:7d:26:d6:f9:0e:8e: + 59:f1:fd:1b:33:b5:29:3b:17:3b:41:b6:21:dd:d4: + c0:3d:a5:9f:9f:1f:43:50:c9:bb:bc:6c:7a:97:98: + ee:cd:8c:1f:fb:9c:51:ae:8b:70:bd:27:9f:71:c0: + 6b:ac:7d:90:66:e8:d7:5d:3a:0d:b0:d5:c2:8d:d5: + c8:9d:9d:c1:6d:d0:d0:bf:51:e4:e3:f8:c3:38:36: + ae:d6:a7:75:e6:af:84:43:5d:93:92:0c:6a:07:de: + 3b:1d:98:22:d6:ac:c1:35:db:a3:a0:25:ff:72:b5: + 76:1d:de:6d:e9:2c:66:2c:52:84:d0:45:92:ce:1c: + e5:e5:33:1d:dc:07:53:54:a3:aa:82:3b:9a:37:2f: + dc:dd:a0:64:e9:e6:dd:bd:ae:fc:64:85:1d:3c:a7: + c9:06:de:84:ff:6b:e8:6b:1a:3c:c5:a2:b3:42:fb: + 8b:09:3e:5f:08:52:c7:62:c4:d4:05:71:bf:c4:64: + e4:f8:a1:83:e8:3e:12:9b:a8:1e:d4:36:4d:2f:71: + f6:8d:28:f6:83:a9:13:d2:61:c1:91:bb:48:c0:34: + 8f:41:8c:4b:4c:db:69:12:ff:50:94:9c:20:83:59: + 73:ed:7c:a1:f2:f1:fd:dd:f7:49:d3:43:58:a0:56: + 63:ca:3d:3d:e5:35:56:59:e9:0e:ca:20:cc:2b:4b: + 93:29:0f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE, pathlen:12 + X509v3 Subject Key Identifier: + B9:09:CA:9C:1E:DB:D3:6C:3A:6B:AE:ED:54:F1:5B:93:06:35:2E:5E + X509v3 Authority Key Identifier: + keyid:B9:09:CA:9C:1E:DB:D3:6C:3A:6B:AE:ED:54:F1:5B:93:06:35:2E:5E + DirName:/C=EU/L=Madrid (see current address at www.camerfirma.com/address)/serialNumber=A82743287/O=AC Camerfirma S.A./CN=Global Chambersign Root - 2008 + serial:C9:CD:D3:E9:D5:7D:23:CE + + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Certificate Policies: + Policy: X509v3 Any Policy + CPS: http://policy.camerfirma.com + + Signature Algorithm: sha1WithRSAEncryption + 80:88:7f:70:de:92:28:d9:05:94:46:ff:90:57:a9:f1:2f:df: + 1a:0d:6b:fa:7c:0e:1c:49:24:79:27:d8:46:aa:6f:29:59:52: + 88:70:12:ea:dd:3d:f5:9b:53:54:6f:e1:60:a2:a8:09:b9:ec: + eb:59:7c:c6:35:f1:dc:18:e9:f1:67:e5:af:ba:45:e0:09:de: + ca:44:0f:c2:17:0e:77:91:45:7a:33:5f:5f:96:2c:68:8b:c1: + 47:8f:98:9b:3d:c0:ec:cb:f5:d5:82:92:84:35:d1:be:36:38: + 56:72:31:5b:47:2d:aa:17:a4:63:51:eb:0a:01:ad:7f:ec:75: + 9e:cb:a1:1f:f1:7f:12:b1:b9:e4:64:7f:67:d6:23:2a:f4:b8: + 39:5d:98:e8:21:a7:e1:bd:3d:42:1a:74:9a:70:af:68:6c:50: + 5d:49:cf:ff:fb:0e:5d:e6:2c:47:d7:81:3a:59:00:b5:73:6b: + 63:20:f6:31:45:08:39:0e:f4:70:7e:40:70:5a:3f:d0:6b:42: + a9:74:3d:28:2f:02:6d:75:72:95:09:8d:48:63:c6:c6:23:57: + 92:93:5e:35:c1:8d:f9:0a:f7:2c:9d:62:1c:f6:ad:7c:dd:a6: + 31:1e:b6:b1:c7:7e:85:26:fa:a4:6a:b5:da:63:30:d1:ef:93: + 37:b2:66:2f:7d:05:f7:e7:b7:4b:98:94:35:c0:d9:3a:29:c1: + 9d:b2:50:33:1d:4a:a9:5a:a6:c9:03:ef:ed:f4:e7:a8:6e:8a: + b4:57:84:eb:a4:3f:d0:ee:aa:aa:87:5b:63:e8:93:e2:6b:a8: + d4:b8:72:78:6b:1b:ed:39:e4:5d:cb:9b:aa:87:d5:4f:4e:00: + fe:d9:6a:9f:3c:31:0f:28:02:01:7d:98:e8:a7:b0:a2:64:9e: + 79:f8:48:f2:15:a9:cc:e6:c8:44:eb:3f:78:99:f2:7b:71:3e: + 3c:f1:98:a7:c5:18:12:3f:e6:bb:28:33:42:e9:45:0a:7c:6d: + f2:86:79:2f:c5:82:19:7d:09:89:7c:b2:54:76:88:ae:de:c1: + f3:cc:e1:6e:db:31:d6:93:ae:99:a0:ef:25:6a:73:98:89:5b: + 3a:2e:13:88:1e:bf:c0:92:94:34:1b:e3:27:b7:8b:1e:6f:42: + ff:e7:e9:37:9b:50:1d:2d:a2:f9:02:ee:cb:58:58:3a:71:bc: + 68:e3:aa:c1:af:1c:28:1f:a2:dc:23:65:3f:81:ea:ae:99:d3: + d8:30:cf:13:0d:4f:15:c9:84:bc:a7:48:2d:f8:30:23:77:d8: + 46:4b:79:6d:f6:8c:ed:3a:7f:60:11:78:f4:e9:9b:ae:d5:54: + c0:74:80:d1:0b:42:9f:c1 +SHA1 Fingerprint=4A:BD:EE:EC:95:0D:35:9C:89:AE:C7:52:A1:2C:5B:29:F6:D6:AA:0C diff --git a/system/etc/security/cacerts/a0bc6fbb.0 b/system/etc/security/cacerts/a0bc6fbb.0 new file mode 100644 index 0000000000000000000000000000000000000000..f93d996a6f0d6742c524f8a738e0bbc69262d6d5 --- /dev/null +++ b/system/etc/security/cacerts/a0bc6fbb.0 @@ -0,0 +1,100 @@ +-----BEGIN CERTIFICATE----- +MIIExTCCA62gAwIBAgIBADANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJFVTEn +MCUGA1UEChMeQUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQL +ExpodHRwOi8vd3d3LmNoYW1iZXJzaWduLm9yZzEgMB4GA1UEAxMXR2xvYmFsIENo +YW1iZXJzaWduIFJvb3QwHhcNMDMwOTMwMTYxNDE4WhcNMzcwOTMwMTYxNDE4WjB9 +MQswCQYDVQQGEwJFVTEnMCUGA1UEChMeQUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgy +NzQzMjg3MSMwIQYDVQQLExpodHRwOi8vd3d3LmNoYW1iZXJzaWduLm9yZzEgMB4G +A1UEAxMXR2xvYmFsIENoYW1iZXJzaWduIFJvb3QwggEgMA0GCSqGSIb3DQEBAQUA +A4IBDQAwggEIAoIBAQCicKLQn0KuWxfH2H3PFIP8T8mhtxOviteePgQKkotgVvq0 +Mi+ITaFgCPS3CU6gSS9J1tPfnZdan5QEcOw/Wdm3zGaLmFIoCQLfxS+EjXqXd7/s +QJ0lcqu1PzKY+7e3/HKE5TWH+VX6ox8Oby4o3Wmg2UIQxvi1RMLQQ3/bvOSiPGpV +eAp3qdjqGTK3L/5cPxvusZjsyq16aUXjlg9V9ubtdepl6DJWk0aJqCWKZQbua795 +B9Dxt6/tLE2Su8CoX6dnfQTyFQhwrJLWfQTSM/tMtgsL+xrJxI0DqX5c8lCrEqWh +z0hQpe/SyBoT+rB/sYIcd2oPX9wLlY/vQ37mRQklAgEDo4IBUDCCAUwwEgYDVR0T +AQH/BAgwBgEB/wIBDDA/BgNVHR8EODA2MDSgMqAwhi5odHRwOi8vY3JsLmNoYW1i +ZXJzaWduLm9yZy9jaGFtYmVyc2lnbnJvb3QuY3JsMB0GA1UdDgQWBBRDnDafsJ4w +TcbOX60Qq+UDpfqpFDAOBgNVHQ8BAf8EBAMCAQYwEQYJYIZIAYb4QgEBBAQDAgAH +MCoGA1UdEQQjMCGBH2NoYW1iZXJzaWducm9vdEBjaGFtYmVyc2lnbi5vcmcwKgYD +VR0SBCMwIYEfY2hhbWJlcnNpZ25yb290QGNoYW1iZXJzaWduLm9yZzBbBgNVHSAE +VDBSMFAGCysGAQQBgYcuCgEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly9jcHMuY2hh +bWJlcnNpZ24ub3JnL2Nwcy9jaGFtYmVyc2lnbnJvb3QuaHRtbDANBgkqhkiG9w0B +AQUFAAOCAQEAPDtwkfkEVCeR4e3t/mh/YV3lQWVPMvEYBZRqHN4fcNs+ezICNLUM +bKGKfKX0j//U2K0X1S0E0T9YgOKBWYi+wONGkyT+kL0mojAt6JcmVzWJdJYY9hXi +ryQZVgICsroPFOrGimbBhkVVi76SvpykBMdJPJ7oKXqJ1/6v/2j1pReQvayZzKWG +VwlnRtvWFsJG8eSpUPWP0ZIV018+xgBJOm5YstHRJw0lyDL4IBHNfTIzSJRUTN3c +ecQwn+uOuFW114hcxWokPbLTBQNRxgfvzBRydD1ucs4YKIxKoHflCStFREest2d/ +AYoFWpO+ocH/+OcOZ6RHSXZddZAa9SaP8A== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 0 (0x0) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=EU, O=AC Camerfirma SA CIF A82743287, OU=http://www.chambersign.org, CN=Global Chambersign Root + Validity + Not Before: Sep 30 16:14:18 2003 GMT + Not After : Sep 30 16:14:18 2037 GMT + Subject: C=EU, O=AC Camerfirma SA CIF A82743287, OU=http://www.chambersign.org, CN=Global Chambersign Root + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:a2:70:a2:d0:9f:42:ae:5b:17:c7:d8:7d:cf:14: + 83:fc:4f:c9:a1:b7:13:af:8a:d7:9e:3e:04:0a:92: + 8b:60:56:fa:b4:32:2f:88:4d:a1:60:08:f4:b7:09: + 4e:a0:49:2f:49:d6:d3:df:9d:97:5a:9f:94:04:70: + ec:3f:59:d9:b7:cc:66:8b:98:52:28:09:02:df:c5: + 2f:84:8d:7a:97:77:bf:ec:40:9d:25:72:ab:b5:3f: + 32:98:fb:b7:b7:fc:72:84:e5:35:87:f9:55:fa:a3: + 1f:0e:6f:2e:28:dd:69:a0:d9:42:10:c6:f8:b5:44: + c2:d0:43:7f:db:bc:e4:a2:3c:6a:55:78:0a:77:a9: + d8:ea:19:32:b7:2f:fe:5c:3f:1b:ee:b1:98:ec:ca: + ad:7a:69:45:e3:96:0f:55:f6:e6:ed:75:ea:65:e8: + 32:56:93:46:89:a8:25:8a:65:06:ee:6b:bf:79:07: + d0:f1:b7:af:ed:2c:4d:92:bb:c0:a8:5f:a7:67:7d: + 04:f2:15:08:70:ac:92:d6:7d:04:d2:33:fb:4c:b6: + 0b:0b:fb:1a:c9:c4:8d:03:a9:7e:5c:f2:50:ab:12: + a5:a1:cf:48:50:a5:ef:d2:c8:1a:13:fa:b0:7f:b1: + 82:1c:77:6a:0f:5f:dc:0b:95:8f:ef:43:7e:e6:45: + 09:25 + Exponent: 3 (0x3) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE, pathlen:12 + X509v3 CRL Distribution Points: + + Full Name: + URI:http://crl.chambersign.org/chambersignroot.crl + + X509v3 Subject Key Identifier: + 43:9C:36:9F:B0:9E:30:4D:C6:CE:5F:AD:10:AB:E5:03:A5:FA:A9:14 + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + Netscape Cert Type: + SSL CA, S/MIME CA, Object Signing CA + X509v3 Subject Alternative Name: + email:chambersignroot@chambersign.org + X509v3 Issuer Alternative Name: + email:chambersignroot@chambersign.org + X509v3 Certificate Policies: + Policy: 1.3.6.1.4.1.17326.10.1.1 + CPS: http://cps.chambersign.org/cps/chambersignroot.html + + Signature Algorithm: sha1WithRSAEncryption + 3c:3b:70:91:f9:04:54:27:91:e1:ed:ed:fe:68:7f:61:5d:e5: + 41:65:4f:32:f1:18:05:94:6a:1c:de:1f:70:db:3e:7b:32:02: + 34:b5:0c:6c:a1:8a:7c:a5:f4:8f:ff:d4:d8:ad:17:d5:2d:04: + d1:3f:58:80:e2:81:59:88:be:c0:e3:46:93:24:fe:90:bd:26: + a2:30:2d:e8:97:26:57:35:89:74:96:18:f6:15:e2:af:24:19: + 56:02:02:b2:ba:0f:14:ea:c6:8a:66:c1:86:45:55:8b:be:92: + be:9c:a4:04:c7:49:3c:9e:e8:29:7a:89:d7:fe:af:ff:68:f5: + a5:17:90:bd:ac:99:cc:a5:86:57:09:67:46:db:d6:16:c2:46: + f1:e4:a9:50:f5:8f:d1:92:15:d3:5f:3e:c6:00:49:3a:6e:58: + b2:d1:d1:27:0d:25:c8:32:f8:20:11:cd:7d:32:33:48:94:54: + 4c:dd:dc:79:c4:30:9f:eb:8e:b8:55:b5:d7:88:5c:c5:6a:24: + 3d:b2:d3:05:03:51:c6:07:ef:cc:14:72:74:3d:6e:72:ce:18: + 28:8c:4a:a0:77:e5:09:2b:45:44:47:ac:b7:67:7f:01:8a:05: + 5a:93:be:a1:c1:ff:f8:e7:0e:67:a4:47:49:76:5d:75:90:1a: + f5:26:8f:f0 +SHA1 Fingerprint=33:9B:6B:14:50:24:9B:55:7A:01:87:72:84:D9:E0:2F:C3:D2:D8:E9 diff --git a/system/etc/security/cacerts/a2c66da8.0 b/system/etc/security/cacerts/a2c66da8.0 new file mode 100644 index 0000000000000000000000000000000000000000..f92240822bca59bad8f34d165d7f7b64d1507fbd --- /dev/null +++ b/system/etc/security/cacerts/a2c66da8.0 @@ -0,0 +1,121 @@ +-----BEGIN CERTIFICATE----- +MIIFkDCCA3igAwIBAgIQBZsbV56OITLiOQe9p3d1XDANBgkqhkiG9w0BAQwFADBi +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3Qg +RzQwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBiMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu +Y29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQC/5pBzaN675F1KPDAiMGkz7MKnJS7JIT3y +ithZwuEppz1Yq3aaza57G4QNxDAf8xukOBbrVsaXbR2rsnnyyhHS5F/WBTxSD1If +xp4VpX6+n6lXFllVcq9ok3DCsrp1mWpzMpTREEQQLt+C8weE5nQ7bXHiLQwb7iDV +ySAdYyktzuxeTsiT+CFhmzTrBcZe7FsavOvJz82sNEBfsXpm7nfISKhmV1efVFiO +DCu3T6cw2Vbuyntd463JT17lNecxy9qTXtyOj4DatpGYQJB5w3jHtrHEtWoYOAMQ +jdjUN6QuBX2I9YI+EJFwq1WCQTLX2wRzKm6RAXwhTNS8rhsDdV14Ztk6MUSaM0C/ +CNdaSaTC5qmgZ92kJ7yhTzm1EVgX9yRcRo9k98FpiHaYdj1ZXUJ2h4mXaXpI8OCi +EhtmmnTK3kse5w5jrubU75KSOp493ADkRSWJtppEGSt+wJS00mFt6zPZxd9LBADM +fRyVw4/3IbKyEbe7f/LVjHAsQWCqsWMYRJUadmJ+9oCw++hkpjPRiQfhvbfmQ6QY +uKZ3AeEPlAwhHbJUKSWJbOUOUlFHdL4mrLZBdd56rF+NP8m800ERElvlEFDrMcXK +chYiCd98THU/Y+whX8QgUWtvsauGi0/C1kVfnSD8oR7FwI+isX4KJpn15GkvmB0t +9dmpsh3lGwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +hjAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5nP+e6mK4cD08wDQYJKoZIhvcNAQEMBQAD +ggIBALth2X2pbL4XxJEbw6GiAI3jZGgPVs93rnD5/ZpKmbnJeFwMDF/k5hQpVgs2 +SV1EY+CtnJYYZhsjDT156W1r1lT40jzBQ0CuHVD1UvyQO7uYmWlrx8GnqGikJ9yd ++SeuMIW59mdNOj6PWTkiU0TryF0Dyu1Qen1iIQqAyHNm0aAFYF/opbSnr6j3bTWc +fFqK1qI4mfN4i/RN0iAL3gTujJtHgXINwBQy7zBZLq7gcfJW5GqXb5JQbZaNaHqa +sjYUegbyJLkJEVDXCLG4iXqEI2FCKeWjzaIgQdfRnGTZ6iahixTXTBmyUEFxPT9N +cCOGDErcgdLMMpSEDQgJlxxPwO5rIHQw0uA5NBCFIRUBCOhVMt5xSdkoF1BN5r5N +0XWs0Mr7QbhDparTwwVETyw2m+L64kW4I1NsBm9nVX9GtUw/bihaeSbSpKhil9Ie +4u1Ki7wb/UdKDd9nZn6yW0HQO+T0O/QEY+nvwlQAUaCKKsnOeMzV6ocEGLPOr0mI +r/OSmbaz5mEP0oUA51Aa5BuVnRmhuZyxm7EAHu/QD09CbMkKvO5D+jpxpchNJqU1 +/YldvIViHTLSoCtU7ZpXwdv6EM8Zt4tKG48BtieVU+i2iW1bvGjUI+iLUaJW+fCm +gKDWHrO8Dw9TdSmq6hN35N6MgSGtBxBHEa2HPQfRdbzP82Z+ +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 05:9b:1b:57:9e:8e:21:32:e2:39:07:bd:a7:77:75:5c + Signature Algorithm: sha384WithRSAEncryption + Issuer: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert Trusted Root G4 + Validity + Not Before: Aug 1 12:00:00 2013 GMT + Not After : Jan 15 12:00:00 2038 GMT + Subject: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert Trusted Root G4 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:bf:e6:90:73:68:de:bb:e4:5d:4a:3c:30:22:30: + 69:33:ec:c2:a7:25:2e:c9:21:3d:f2:8a:d8:59:c2: + e1:29:a7:3d:58:ab:76:9a:cd:ae:7b:1b:84:0d:c4: + 30:1f:f3:1b:a4:38:16:eb:56:c6:97:6d:1d:ab:b2: + 79:f2:ca:11:d2:e4:5f:d6:05:3c:52:0f:52:1f:c6: + 9e:15:a5:7e:be:9f:a9:57:16:59:55:72:af:68:93: + 70:c2:b2:ba:75:99:6a:73:32:94:d1:10:44:10:2e: + df:82:f3:07:84:e6:74:3b:6d:71:e2:2d:0c:1b:ee: + 20:d5:c9:20:1d:63:29:2d:ce:ec:5e:4e:c8:93:f8: + 21:61:9b:34:eb:05:c6:5e:ec:5b:1a:bc:eb:c9:cf: + cd:ac:34:40:5f:b1:7a:66:ee:77:c8:48:a8:66:57: + 57:9f:54:58:8e:0c:2b:b7:4f:a7:30:d9:56:ee:ca: + 7b:5d:e3:ad:c9:4f:5e:e5:35:e7:31:cb:da:93:5e: + dc:8e:8f:80:da:b6:91:98:40:90:79:c3:78:c7:b6: + b1:c4:b5:6a:18:38:03:10:8d:d8:d4:37:a4:2e:05: + 7d:88:f5:82:3e:10:91:70:ab:55:82:41:32:d7:db: + 04:73:2a:6e:91:01:7c:21:4c:d4:bc:ae:1b:03:75: + 5d:78:66:d9:3a:31:44:9a:33:40:bf:08:d7:5a:49: + a4:c2:e6:a9:a0:67:dd:a4:27:bc:a1:4f:39:b5:11: + 58:17:f7:24:5c:46:8f:64:f7:c1:69:88:76:98:76: + 3d:59:5d:42:76:87:89:97:69:7a:48:f0:e0:a2:12: + 1b:66:9a:74:ca:de:4b:1e:e7:0e:63:ae:e6:d4:ef: + 92:92:3a:9e:3d:dc:00:e4:45:25:89:b6:9a:44:19: + 2b:7e:c0:94:b4:d2:61:6d:eb:33:d9:c5:df:4b:04: + 00:cc:7d:1c:95:c3:8f:f7:21:b2:b2:11:b7:bb:7f: + f2:d5:8c:70:2c:41:60:aa:b1:63:18:44:95:1a:76: + 62:7e:f6:80:b0:fb:e8:64:a6:33:d1:89:07:e1:bd: + b7:e6:43:a4:18:b8:a6:77:01:e1:0f:94:0c:21:1d: + b2:54:29:25:89:6c:e5:0e:52:51:47:74:be:26:ac: + b6:41:75:de:7a:ac:5f:8d:3f:c9:bc:d3:41:11:12: + 5b:e5:10:50:eb:31:c5:ca:72:16:22:09:df:7c:4c: + 75:3f:63:ec:21:5f:c4:20:51:6b:6f:b1:ab:86:8b: + 4f:c2:d6:45:5f:9d:20:fc:a1:1e:c5:c0:8f:a2:b1: + 7e:0a:26:99:f5:e4:69:2f:98:1d:2d:f5:d9:a9:b2: + 1d:e5:1b + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Digital Signature, Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + EC:D7:E3:82:D2:71:5D:64:4C:DF:2E:67:3F:E7:BA:98:AE:1C:0F:4F + Signature Algorithm: sha384WithRSAEncryption + bb:61:d9:7d:a9:6c:be:17:c4:91:1b:c3:a1:a2:00:8d:e3:64: + 68:0f:56:cf:77:ae:70:f9:fd:9a:4a:99:b9:c9:78:5c:0c:0c: + 5f:e4:e6:14:29:56:0b:36:49:5d:44:63:e0:ad:9c:96:18:66: + 1b:23:0d:3d:79:e9:6d:6b:d6:54:f8:d2:3c:c1:43:40:ae:1d: + 50:f5:52:fc:90:3b:bb:98:99:69:6b:c7:c1:a7:a8:68:a4:27: + dc:9d:f9:27:ae:30:85:b9:f6:67:4d:3a:3e:8f:59:39:22:53: + 44:eb:c8:5d:03:ca:ed:50:7a:7d:62:21:0a:80:c8:73:66:d1: + a0:05:60:5f:e8:a5:b4:a7:af:a8:f7:6d:35:9c:7c:5a:8a:d6: + a2:38:99:f3:78:8b:f4:4d:d2:20:0b:de:04:ee:8c:9b:47:81: + 72:0d:c0:14:32:ef:30:59:2e:ae:e0:71:f2:56:e4:6a:97:6f: + 92:50:6d:96:8d:68:7a:9a:b2:36:14:7a:06:f2:24:b9:09:11: + 50:d7:08:b1:b8:89:7a:84:23:61:42:29:e5:a3:cd:a2:20:41: + d7:d1:9c:64:d9:ea:26:a1:8b:14:d7:4c:19:b2:50:41:71:3d: + 3f:4d:70:23:86:0c:4a:dc:81:d2:cc:32:94:84:0d:08:09:97: + 1c:4f:c0:ee:6b:20:74:30:d2:e0:39:34:10:85:21:15:01:08: + e8:55:32:de:71:49:d9:28:17:50:4d:e6:be:4d:d1:75:ac:d0: + ca:fb:41:b8:43:a5:aa:d3:c3:05:44:4f:2c:36:9b:e2:fa:e2: + 45:b8:23:53:6c:06:6f:67:55:7f:46:b5:4c:3f:6e:28:5a:79: + 26:d2:a4:a8:62:97:d2:1e:e2:ed:4a:8b:bc:1b:fd:47:4a:0d: + df:67:66:7e:b2:5b:41:d0:3b:e4:f4:3b:f4:04:63:e9:ef:c2: + 54:00:51:a0:8a:2a:c9:ce:78:cc:d5:ea:87:04:18:b3:ce:af: + 49:88:af:f3:92:99:b6:b3:e6:61:0f:d2:85:00:e7:50:1a:e4: + 1b:95:9d:19:a1:b9:9c:b1:9b:b1:00:1e:ef:d0:0f:4f:42:6c: + c9:0a:bc:ee:43:fa:3a:71:a5:c8:4d:26:a5:35:fd:89:5d:bc: + 85:62:1d:32:d2:a0:2b:54:ed:9a:57:c1:db:fa:10:cf:19:b7: + 8b:4a:1b:8f:01:b6:27:95:53:e8:b6:89:6d:5b:bc:68:d4:23: + e8:8b:51:a2:56:f9:f0:a6:80:a0:d6:1e:b3:bc:0f:0f:53:75: + 29:aa:ea:13:77:e4:de:8c:81:21:ad:07:10:47:11:ad:87:3d: + 07:d1:75:bc:cf:f3:66:7e +SHA1 Fingerprint=DD:FB:16:CD:49:31:C9:73:A2:03:7D:3F:C8:3A:4D:7D:77:5D:05:E4 diff --git a/system/etc/security/cacerts/a3896b44.0 b/system/etc/security/cacerts/a3896b44.0 new file mode 100644 index 0000000000000000000000000000000000000000..f570c1dd3a5d11c07f5ab34e75d9f0d16db9445a --- /dev/null +++ b/system/etc/security/cacerts/a3896b44.0 @@ -0,0 +1,77 @@ +-----BEGIN CERTIFICATE----- +MIIDWjCCAkKgAwIBAgIBADANBgkqhkiG9w0BAQUFADBQMQswCQYDVQQGEwJKUDEY +MBYGA1UEChMPU0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21t +dW5pY2F0aW9uIFJvb3RDQTEwHhcNMDMwOTMwMDQyMDQ5WhcNMjMwOTMwMDQyMDQ5 +WjBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMPU0VDT00gVHJ1c3QubmV0MScwJQYD +VQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQCzs/5/022x7xZ8V6UMbXaKL0u/ZPtM7orw8yl8 +9f/uKuDp6bpbZCKamm8sOiZpUQWZJtzVHGpxxpp9Hp3dfGzGjGdnSj74cbAZJ6kJ +DKaVv0uMDPpVmDvY6CKhS3E4eayXkmmziX7qIWgGmBSWh9JhNrxtJ1aeV+7AwFb9 +Ms+k2Y7CI9eNqPPYJayX5HA49LY6tJ07lyZDo6G8SVlyTCMwhwFY9k6+HGhWZq/N +QV3Is00qVUarH9oe4kA92819uZKAnDfdDJZkndwi92SL32HeFZRSFaB9UslLqCHJ +xrHty8OVYNEP8Ktw+N/LTX7s1vqr2b1/VPKl6Xn62dZ2JChzAgMBAAGjPzA9MB0G +A1UdDgQWBBSgc0mZaNyFW2XjmygvV5+9M7wHSDALBgNVHQ8EBAMCAQYwDwYDVR0T +AQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAaECpqLvkT115swW1F7NgE+vG +kl3g0dNq/vu+m22/xwVtWSDEHPC32oRYAmP6SBbvT6UL90qY8j+eG61Ha2POCEfr +Uj94nK9NrvjVT8+amCoQQTlSxN3Zmw7vkwGusi7KaEIkQmywszo+zenaSMQVy+n5 +Bw+SUEmK3TGXX8npN6o7WWWXlDLJs58+OmJYxUmtYg5xpTKqL8aJdkNAExNnPaJU +JRDL8Try2frbSVa7pv6nQTXD4IhhyYjH3zYQIphZ6rBK+1YWc26sTfcioU+tHXot +RSflMMFe8toTyyVCUZVHA4xsIcx0Qu1T/zOLjw9XARYvz6buyXAiFL39vmwLAw== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 0 (0x0) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=JP, O=SECOM Trust.net, OU=Security Communication RootCA1 + Validity + Not Before: Sep 30 04:20:49 2003 GMT + Not After : Sep 30 04:20:49 2023 GMT + Subject: C=JP, O=SECOM Trust.net, OU=Security Communication RootCA1 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:b3:b3:fe:7f:d3:6d:b1:ef:16:7c:57:a5:0c:6d: + 76:8a:2f:4b:bf:64:fb:4c:ee:8a:f0:f3:29:7c:f5: + ff:ee:2a:e0:e9:e9:ba:5b:64:22:9a:9a:6f:2c:3a: + 26:69:51:05:99:26:dc:d5:1c:6a:71:c6:9a:7d:1e: + 9d:dd:7c:6c:c6:8c:67:67:4a:3e:f8:71:b0:19:27: + a9:09:0c:a6:95:bf:4b:8c:0c:fa:55:98:3b:d8:e8: + 22:a1:4b:71:38:79:ac:97:92:69:b3:89:7e:ea:21: + 68:06:98:14:96:87:d2:61:36:bc:6d:27:56:9e:57: + ee:c0:c0:56:fd:32:cf:a4:d9:8e:c2:23:d7:8d:a8: + f3:d8:25:ac:97:e4:70:38:f4:b6:3a:b4:9d:3b:97: + 26:43:a3:a1:bc:49:59:72:4c:23:30:87:01:58:f6: + 4e:be:1c:68:56:66:af:cd:41:5d:c8:b3:4d:2a:55: + 46:ab:1f:da:1e:e2:40:3d:db:cd:7d:b9:92:80:9c: + 37:dd:0c:96:64:9d:dc:22:f7:64:8b:df:61:de:15: + 94:52:15:a0:7d:52:c9:4b:a8:21:c9:c6:b1:ed:cb: + c3:95:60:d1:0f:f0:ab:70:f8:df:cb:4d:7e:ec:d6: + fa:ab:d9:bd:7f:54:f2:a5:e9:79:fa:d9:d6:76:24: + 28:73 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + A0:73:49:99:68:DC:85:5B:65:E3:9B:28:2F:57:9F:BD:33:BC:07:48 + X509v3 Key Usage: + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 68:40:a9:a8:bb:e4:4f:5d:79:b3:05:b5:17:b3:60:13:eb:c6: + 92:5d:e0:d1:d3:6a:fe:fb:be:9b:6d:bf:c7:05:6d:59:20:c4: + 1c:f0:b7:da:84:58:02:63:fa:48:16:ef:4f:a5:0b:f7:4a:98: + f2:3f:9e:1b:ad:47:6b:63:ce:08:47:eb:52:3f:78:9c:af:4d: + ae:f8:d5:4f:cf:9a:98:2a:10:41:39:52:c4:dd:d9:9b:0e:ef: + 93:01:ae:b2:2e:ca:68:42:24:42:6c:b0:b3:3a:3e:cd:e9:da: + 48:c4:15:cb:e9:f9:07:0f:92:50:49:8a:dd:31:97:5f:c9:e9: + 37:aa:3b:59:65:97:94:32:c9:b3:9f:3e:3a:62:58:c5:49:ad: + 62:0e:71:a5:32:aa:2f:c6:89:76:43:40:13:13:67:3d:a2:54: + 25:10:cb:f1:3a:f2:d9:fa:db:49:56:bb:a6:fe:a7:41:35:c3: + e0:88:61:c9:88:c7:df:36:10:22:98:59:ea:b0:4a:fb:56:16: + 73:6e:ac:4d:f7:22:a1:4f:ad:1d:7a:2d:45:27:e5:30:c1:5e: + f2:da:13:cb:25:42:51:95:47:03:8c:6c:21:cc:74:42:ed:53: + ff:33:8b:8f:0f:57:01:16:2f:cf:a6:ee:c9:70:22:14:bd:fd: + be:6c:0b:03 +SHA1 Fingerprint=36:B1:2B:49:F9:81:9E:D7:4C:9E:BC:38:0F:C6:56:8F:5D:AC:B2:F7 diff --git a/system/etc/security/cacerts/a7605362.0 b/system/etc/security/cacerts/a7605362.0 new file mode 100644 index 0000000000000000000000000000000000000000..112d40fe00b390af59f547c1b95aba9045df424a --- /dev/null +++ b/system/etc/security/cacerts/a7605362.0 @@ -0,0 +1,76 @@ +-----BEGIN CERTIFICATE----- +MIIDIDCCAgigAwIBAgIBHTANBgkqhkiG9w0BAQUFADA5MQswCQYDVQQGEwJGSTEP +MA0GA1UEChMGU29uZXJhMRkwFwYDVQQDExBTb25lcmEgQ2xhc3MyIENBMB4XDTAx +MDQwNjA3Mjk0MFoXDTIxMDQwNjA3Mjk0MFowOTELMAkGA1UEBhMCRkkxDzANBgNV +BAoTBlNvbmVyYTEZMBcGA1UEAxMQU29uZXJhIENsYXNzMiBDQTCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAJAXSjWdyvANlsdE+hY3/Ei9vX+ALTU74W+o +Z6m/AxxNjG8yR9VBaKQTBME1DJqEQ/xcHf+Js+gXGM2RX/uJ4+q/Tl18GybTdXnt +5oTjV+WtKcT0OijnpXuENmmz/V52vaMtmdOQTiMofRhj8VQ7Jp12W5dCsv+u8E7s +3TmVToMGf+dJQMjFAbJUWmYdPfz56TwKnoG4cPABi+QjVHzIrviQHgCWctRUz2Ej +vOr7nQKV0ba5cTppCD8PtOFCx4j1P5iop7oc4HFx71hXgVB6XGt0Rg6DA5jDjqhu +8nYybieDwnPz3BjotJPqdURrBGAgcVeHnfO+oJAjPYok4doh28MCAwEAAaMzMDEw +DwYDVR0TAQH/BAUwAwEB/zARBgNVHQ4ECgQISqCqWITTXjwwCwYDVR0PBAQDAgEG +MA0GCSqGSIb3DQEBBQUAA4IBAQBazof5FnIVV0sd2ZvnoiYw7JNn39Yt0jSv9zil +zqsWuasvfDXLrNAPtEwr/IDva4yRXzZ299uzGxnq9LIR/WFxRL8oszodv7ND6J+/ +3DEIcbCdjdY0RzKQxmUk96BKfARzjzlvF4xytb1LyHr4e4PDKE6cCepnP7JnBBvD +FNr450kkkdAdavphOe9r5yF1BgfYErQhIHBCcYHaPJo2vqZbDWpsmh+Re/n570K6 +Tk6ezAyNlNzZRZxe7EJQY670XcSxEtzKO6gunRRaBXW37Ndj4ro1tgQIkejanZz2 +ZrUYrAqmVCY0M9IbwdR/GjqOC6oybtv8TyWf2TLHllpwrN9M +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 29 (0x1d) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=FI, O=Sonera, CN=Sonera Class2 CA + Validity + Not Before: Apr 6 07:29:40 2001 GMT + Not After : Apr 6 07:29:40 2021 GMT + Subject: C=FI, O=Sonera, CN=Sonera Class2 CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:90:17:4a:35:9d:ca:f0:0d:96:c7:44:fa:16:37: + fc:48:bd:bd:7f:80:2d:35:3b:e1:6f:a8:67:a9:bf: + 03:1c:4d:8c:6f:32:47:d5:41:68:a4:13:04:c1:35: + 0c:9a:84:43:fc:5c:1d:ff:89:b3:e8:17:18:cd:91: + 5f:fb:89:e3:ea:bf:4e:5d:7c:1b:26:d3:75:79:ed: + e6:84:e3:57:e5:ad:29:c4:f4:3a:28:e7:a5:7b:84: + 36:69:b3:fd:5e:76:bd:a3:2d:99:d3:90:4e:23:28: + 7d:18:63:f1:54:3b:26:9d:76:5b:97:42:b2:ff:ae: + f0:4e:ec:dd:39:95:4e:83:06:7f:e7:49:40:c8:c5: + 01:b2:54:5a:66:1d:3d:fc:f9:e9:3c:0a:9e:81:b8: + 70:f0:01:8b:e4:23:54:7c:c8:ae:f8:90:1e:00:96: + 72:d4:54:cf:61:23:bc:ea:fb:9d:02:95:d1:b6:b9: + 71:3a:69:08:3f:0f:b4:e1:42:c7:88:f5:3f:98:a8: + a7:ba:1c:e0:71:71:ef:58:57:81:50:7a:5c:6b:74: + 46:0e:83:03:98:c3:8e:a8:6e:f2:76:32:6e:27:83: + c2:73:f3:dc:18:e8:b4:93:ea:75:44:6b:04:60:20: + 71:57:87:9d:f3:be:a0:90:23:3d:8a:24:e1:da:21: + db:c3 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 4A:A0:AA:58:84:D3:5E:3C + X509v3 Key Usage: + Certificate Sign, CRL Sign + Signature Algorithm: sha1WithRSAEncryption + 5a:ce:87:f9:16:72:15:57:4b:1d:d9:9b:e7:a2:26:30:ec:93: + 67:df:d6:2d:d2:34:af:f7:38:a5:ce:ab:16:b9:ab:2f:7c:35: + cb:ac:d0:0f:b4:4c:2b:fc:80:ef:6b:8c:91:5f:36:76:f7:db: + b3:1b:19:ea:f4:b2:11:fd:61:71:44:bf:28:b3:3a:1d:bf:b3: + 43:e8:9f:bf:dc:31:08:71:b0:9d:8d:d6:34:47:32:90:c6:65: + 24:f7:a0:4a:7c:04:73:8f:39:6f:17:8c:72:b5:bd:4b:c8:7a: + f8:7b:83:c3:28:4e:9c:09:ea:67:3f:b2:67:04:1b:c3:14:da: + f8:e7:49:24:91:d0:1d:6a:fa:61:39:ef:6b:e7:21:75:06:07: + d8:12:b4:21:20:70:42:71:81:da:3c:9a:36:be:a6:5b:0d:6a: + 6c:9a:1f:91:7b:f9:f9:ef:42:ba:4e:4e:9e:cc:0c:8d:94:dc: + d9:45:9c:5e:ec:42:50:63:ae:f4:5d:c4:b1:12:dc:ca:3b:a8: + 2e:9d:14:5a:05:75:b7:ec:d7:63:e2:ba:35:b6:04:08:91:e8: + da:9d:9c:f6:66:b5:18:ac:0a:a6:54:26:34:33:d2:1b:c1:d4: + 7f:1a:3a:8e:0b:aa:32:6e:db:fc:4f:25:9f:d9:32:c7:96:5a: + 70:ac:df:4c +SHA1 Fingerprint=37:F7:6D:E6:07:7C:90:C5:B1:3E:93:1A:B7:41:10:B4:F2:E4:9A:27 diff --git a/system/etc/security/cacerts/a7d2cf64.0 b/system/etc/security/cacerts/a7d2cf64.0 new file mode 100644 index 0000000000000000000000000000000000000000..4720f4bffb278e146964435e6a97842d157bcda8 --- /dev/null +++ b/system/etc/security/cacerts/a7d2cf64.0 @@ -0,0 +1,54 @@ +-----BEGIN CERTIFICATE----- +MIICiDCCAg2gAwIBAgIQNfwmXNmET8k9Jj1Xm67XVjAKBggqhkjOPQQDAzCBhDEL +MAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjE4MDYGA1UECxMvKGMp +IDIwMDcgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxJDAi +BgNVBAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EgLSBHMjAeFw0wNzExMDUwMDAw +MDBaFw0zODAxMTgyMzU5NTlaMIGEMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMdGhh +d3RlLCBJbmMuMTgwNgYDVQQLEy8oYykgMjAwNyB0aGF3dGUsIEluYy4gLSBGb3Ig +YXV0aG9yaXplZCB1c2Ugb25seTEkMCIGA1UEAxMbdGhhd3RlIFByaW1hcnkgUm9v +dCBDQSAtIEcyMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEotWcgnuVnfFSeIf+iha/ +BebfowJPDQfGAFG6DAJSLSKkQjnE/o/qycG+1E3/n3qe4rF8mq2nhglzh9HnmuN6 +papu+7qzcMBniKI11KOasf2twu8x+qi58/sIxpHR+ymVo0IwQDAPBgNVHRMBAf8E +BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUmtgAMADna3+FGO6Lts6K +DPgR4bswCgYIKoZIzj0EAwMDaQAwZgIxAN344FdHW6fmCsO99YCKlzUNG4k8VIZ3 +KMqh9HneteY4sPBlcIx/AlTCv//YoT7ZzwIxAMSNlPzcU9LcnXgWHxUzI1NS41ox +XZ3Krr0TKUQNJ1uo52icEvdYPy5yAlejj6EULg== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 35:fc:26:5c:d9:84:4f:c9:3d:26:3d:57:9b:ae:d7:56 + Signature Algorithm: ecdsa-with-SHA384 + Issuer: C=US, O=thawte, Inc., OU=(c) 2007 thawte, Inc. - For authorized use only, CN=thawte Primary Root CA - G2 + Validity + Not Before: Nov 5 00:00:00 2007 GMT + Not After : Jan 18 23:59:59 2038 GMT + Subject: C=US, O=thawte, Inc., OU=(c) 2007 thawte, Inc. - For authorized use only, CN=thawte Primary Root CA - G2 + Subject Public Key Info: + Public Key Algorithm: id-ecPublicKey + Public-Key: (384 bit) + pub: + 04:a2:d5:9c:82:7b:95:9d:f1:52:78:87:fe:8a:16: + bf:05:e6:df:a3:02:4f:0d:07:c6:00:51:ba:0c:02: + 52:2d:22:a4:42:39:c4:fe:8f:ea:c9:c1:be:d4:4d: + ff:9f:7a:9e:e2:b1:7c:9a:ad:a7:86:09:73:87:d1: + e7:9a:e3:7a:a5:aa:6e:fb:ba:b3:70:c0:67:88:a2: + 35:d4:a3:9a:b1:fd:ad:c2:ef:31:fa:a8:b9:f3:fb: + 08:c6:91:d1:fb:29:95 + ASN1 OID: secp384r1 + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + 9A:D8:00:30:00:E7:6B:7F:85:18:EE:8B:B6:CE:8A:0C:F8:11:E1:BB + Signature Algorithm: ecdsa-with-SHA384 + 30:66:02:31:00:dd:f8:e0:57:47:5b:a7:e6:0a:c3:bd:f5:80: + 8a:97:35:0d:1b:89:3c:54:86:77:28:ca:a1:f4:79:de:b5:e6: + 38:b0:f0:65:70:8c:7f:02:54:c2:bf:ff:d8:a1:3e:d9:cf:02: + 31:00:c4:8d:94:fc:dc:53:d2:dc:9d:78:16:1f:15:33:23:53: + 52:e3:5a:31:5d:9d:ca:ae:bd:13:29:44:0d:27:5b:a8:e7:68: + 9c:12:f7:58:3f:2e:72:02:57:a3:8f:a1:14:2e +SHA1 Fingerprint=AA:DB:BC:22:23:8F:C4:01:A1:27:BB:38:DD:F4:1D:DB:08:9E:F0:12 diff --git a/system/etc/security/cacerts/a81e292b.0 b/system/etc/security/cacerts/a81e292b.0 new file mode 100644 index 0000000000000000000000000000000000000000..cf52a805c734b587397dbcb71dfe8edc6d7e3c7e --- /dev/null +++ b/system/etc/security/cacerts/a81e292b.0 @@ -0,0 +1,79 @@ +-----BEGIN CERTIFICATE----- +MIIDcjCCAlqgAwIBAgIUPopdB+xV0jLVt+O2XwHrLdzk1uQwDQYJKoZIhvcNAQEL +BQAwUTELMAkGA1UEBhMCUEwxKDAmBgNVBAoMH0tyYWpvd2EgSXpiYSBSb3psaWN6 +ZW5pb3dhIFMuQS4xGDAWBgNVBAMMD1NaQUZJUiBST09UIENBMjAeFw0xNTEwMTkw +NzQzMzBaFw0zNTEwMTkwNzQzMzBaMFExCzAJBgNVBAYTAlBMMSgwJgYDVQQKDB9L +cmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRgwFgYDVQQDDA9TWkFGSVIg +Uk9PVCBDQTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC3vD5QqEvN +QLXOYeeWyrSh2gwisPq1e3YAd4wLz32ohswmUeQgPYUM1ljj5/QqGJ3a0a4m7utT +3PSQ1hNKDJA8w/Ta0o4NkjrcsbH/ON7Dui1fgLkCvUqdGw+0w8LBZwPd3BucPbOw +3gAeqDRHu5rr/gsUvTaE2g0gv/pby6kWIK05YO4vdbbnl5z5Pv1+TW9NL++IDWr6 +3fE9biCloBK0TXC5ztdyO4mTp4CEHCdJckm1/zuVnsHMyAHs6A6KCpbns6aH5db5 +BSsNl0BwPLqsdVqc1U2dAgrSS5tmS0YHF2Wtn2yIANwiieDhZNRnvDF5YTy7ykHN +XGoAyDw4jlivAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD +AgEGMB0GA1UdDgQWBBQuFqlKGLXLzPVvUPMjX/hd56zwyDANBgkqhkiG9w0BAQsF +AAOCAQEAtXP4A9xZWx126aMqe5Aosk3AM0+qmrHUuOQn/6mWmc5G4G18TKI4pAZw +8PRBEew/R40/cof5O/2kbytTAOD/OblqBw7rHRz2onKQy4I9EYKL0rufKq8h5mOG +nXkZ7/e7DDWQw4rtTw/1zBLZpD67oPwglV9PJi8RI4NOdQcPv5vRtB3pEAT+ymCP +oky4rc/hkA/NrgrHXXu3UNLUYfrVFdvXn4dRVOul4+vJhaAlIDf7js4MNIThPIGy +d05DpYhfhmehPea0XGG2Ptv+tyjFogeutcrKjSoS75ftwjCkySp6+/NNIxuZMzSg +LvWpCz/UXeHPhJ/iGcJfitYgHuNztw== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 3e:8a:5d:07:ec:55:d2:32:d5:b7:e3:b6:5f:01:eb:2d:dc:e4:d6:e4 + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=PL, O=Krajowa Izba Rozliczeniowa S.A., CN=SZAFIR ROOT CA2 + Validity + Not Before: Oct 19 07:43:30 2015 GMT + Not After : Oct 19 07:43:30 2035 GMT + Subject: C=PL, O=Krajowa Izba Rozliczeniowa S.A., CN=SZAFIR ROOT CA2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:b7:bc:3e:50:a8:4b:cd:40:b5:ce:61:e7:96:ca: + b4:a1:da:0c:22:b0:fa:b5:7b:76:00:77:8c:0b:cf: + 7d:a8:86:cc:26:51:e4:20:3d:85:0c:d6:58:e3:e7: + f4:2a:18:9d:da:d1:ae:26:ee:eb:53:dc:f4:90:d6: + 13:4a:0c:90:3c:c3:f4:da:d2:8e:0d:92:3a:dc:b1: + b1:ff:38:de:c3:ba:2d:5f:80:b9:02:bd:4a:9d:1b: + 0f:b4:c3:c2:c1:67:03:dd:dc:1b:9c:3d:b3:b0:de: + 00:1e:a8:34:47:bb:9a:eb:fe:0b:14:bd:36:84:da: + 0d:20:bf:fa:5b:cb:a9:16:20:ad:39:60:ee:2f:75: + b6:e7:97:9c:f9:3e:fd:7e:4d:6f:4d:2f:ef:88:0d: + 6a:fa:dd:f1:3d:6e:20:a5:a0:12:b4:4d:70:b9:ce: + d7:72:3b:89:93:a7:80:84:1c:27:49:72:49:b5:ff: + 3b:95:9e:c1:cc:c8:01:ec:e8:0e:8a:0a:96:e7:b3: + a6:87:e5:d6:f9:05:2b:0d:97:40:70:3c:ba:ac:75: + 5a:9c:d5:4d:9d:02:0a:d2:4b:9b:66:4b:46:07:17: + 65:ad:9f:6c:88:00:dc:22:89:e0:e1:64:d4:67:bc: + 31:79:61:3c:bb:ca:41:cd:5c:6a:00:c8:3c:38:8e: + 58:af + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + 2E:16:A9:4A:18:B5:CB:CC:F5:6F:50:F3:23:5F:F8:5D:E7:AC:F0:C8 + Signature Algorithm: sha256WithRSAEncryption + b5:73:f8:03:dc:59:5b:1d:76:e9:a3:2a:7b:90:28:b2:4d:c0: + 33:4f:aa:9a:b1:d4:b8:e4:27:ff:a9:96:99:ce:46:e0:6d:7c: + 4c:a2:38:a4:06:70:f0:f4:41:11:ec:3f:47:8d:3f:72:87:f9: + 3b:fd:a4:6f:2b:53:00:e0:ff:39:b9:6a:07:0e:eb:1d:1c:f6: + a2:72:90:cb:82:3d:11:82:8b:d2:bb:9f:2a:af:21:e6:63:86: + 9d:79:19:ef:f7:bb:0c:35:90:c3:8a:ed:4f:0f:f5:cc:12:d9: + a4:3e:bb:a0:fc:20:95:5f:4f:26:2f:11:23:83:4e:75:07:0f: + bf:9b:d1:b4:1d:e9:10:04:fe:ca:60:8f:a2:4c:b8:ad:cf:e1: + 90:0f:cd:ae:0a:c7:5d:7b:b7:50:d2:d4:61:fa:d5:15:db:d7: + 9f:87:51:54:eb:a5:e3:eb:c9:85:a0:25:20:37:fb:8e:ce:0c: + 34:84:e1:3c:81:b2:77:4e:43:a5:88:5f:86:67:a1:3d:e6:b4: + 5c:61:b6:3e:db:fe:b7:28:c5:a2:07:ae:b5:ca:ca:8d:2a:12: + ef:97:ed:c2:30:a4:c9:2a:7a:fb:f3:4d:23:1b:99:33:34:a0: + 2e:f5:a9:0b:3f:d4:5d:e1:cf:84:9f:e2:19:c2:5f:8a:d6:20: + 1e:e3:73:b7 +SHA1 Fingerprint=E2:52:FA:95:3F:ED:DB:24:60:BD:6E:28:F3:9C:CC:CF:5E:B3:3F:DE diff --git a/system/etc/security/cacerts/ab5346f4.0 b/system/etc/security/cacerts/ab5346f4.0 new file mode 100644 index 0000000000000000000000000000000000000000..cd7e3787148e4e6c3f3058ccf65e7b9b92b99f6c --- /dev/null +++ b/system/etc/security/cacerts/ab5346f4.0 @@ -0,0 +1,78 @@ +-----BEGIN CERTIFICATE----- +MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDEr +MCkGA1UEChMiSmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoG +A1UEAxMTU2VjdXJlU2lnbiBSb290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0 +MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSswKQYDVQQKEyJKYXBhbiBDZXJ0aWZp +Y2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1cmVTaWduIFJvb3RD +QTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvLTJsz +i1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8 +h9uuywGOwvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOV +MdrAG/LuYpmGYz+/3ZMqg6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9 +UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rPO7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni +8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitAbpSACW22s293bzUIUPsC +h8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZXt94wDgYD +VR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEB +AKChOBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xm +KbabfSVSSUOrTC4rbnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQ +X5Ucv+2rIrVls4W6ng+4reV6G4pQOh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWr +QbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01y8hSyn+B/tlr0/cR7SXf+Of5 +pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061lgeLKBObjBmN +QSdJQO7e5iNEOdyhIta6A/I= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 1 (0x1) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=JP, O=Japan Certification Services, Inc., CN=SecureSign RootCA11 + Validity + Not Before: Apr 8 04:56:47 2009 GMT + Not After : Apr 8 04:56:47 2029 GMT + Subject: C=JP, O=Japan Certification Services, Inc., CN=SecureSign RootCA11 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:fd:77:aa:a5:1c:90:05:3b:cb:4c:9b:33:8b:5a: + 14:45:a4:e7:90:16:d1:df:57:d2:21:10:a4:17:fd: + df:ac:d6:1f:a7:e4:db:7c:f7:ec:df:b8:03:da:94: + 58:fd:5d:72:7c:8c:3f:5f:01:67:74:15:96:e3:02: + 3c:87:db:ae:cb:01:8e:c2:f3:66:c6:85:45:f4:02: + c6:3a:b5:62:b2:af:fa:9c:bf:a4:e6:d4:80:30:98: + f3:0d:b6:93:8f:a9:d4:d8:36:f2:b0:fc:8a:ca:2c: + a1:15:33:95:31:da:c0:1b:f2:ee:62:99:86:63:3f: + bf:dd:93:2a:83:a8:76:b9:13:1f:b7:ce:4e:42:85: + 8f:22:e7:2e:1a:f2:95:09:b2:05:b5:44:4e:77:a1: + 20:bd:a9:f2:4e:0a:7d:50:ad:f5:05:0d:45:4f:46: + 71:fd:28:3e:53:fb:04:d8:2d:d7:65:1d:4a:1b:fa: + cf:3b:b0:31:9a:35:6e:c8:8b:06:d3:00:91:f2:94: + 08:65:4c:b1:34:06:00:7a:89:e2:f0:c7:03:59:cf: + d5:d6:e8:a7:32:b3:e6:98:40:86:c5:cd:27:12:8b: + cc:7b:ce:b7:11:3c:62:60:07:23:3e:2b:40:6e:94: + 80:09:6d:b6:b3:6f:77:6f:35:08:50:fb:02:87:c5: + 3e:89 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 5B:F8:4D:4F:B2:A5:86:D4:3A:D2:F1:63:9A:A0:BE:09:F6:57:B7:DE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + a0:a1:38:16:66:2e:a7:56:1f:21:9c:06:fa:1d:ed:b9:22:c5: + 38:26:d8:4e:4f:ec:a3:7f:79:de:46:21:a1:87:77:8f:07:08: + 9a:b2:a4:c5:af:0f:32:98:0b:7c:66:29:b6:9b:7d:25:52:49: + 43:ab:4c:2e:2b:6e:7a:70:af:16:0e:e3:02:6c:fb:42:e6:18: + 9d:45:d8:55:c8:e8:3b:dd:e7:e1:f4:2e:0b:1c:34:5c:6c:58: + 4a:fb:8c:88:50:5f:95:1c:bf:ed:ab:22:b5:65:b3:85:ba:9e: + 0f:b8:ad:e5:7a:1b:8a:50:3a:1d:bd:0d:bc:7b:54:50:0b:b9: + 42:af:55:a0:18:81:ad:65:99:ef:be:e4:9c:bf:c4:85:ab:41: + b2:54:6f:dc:25:cd:ed:78:e2:8e:0c:8d:09:49:dd:63:7b:5a: + 69:96:02:21:a8:bd:52:59:e9:7d:35:cb:c8:52:ca:7f:81:fe: + d9:6b:d3:f7:11:ed:25:df:f8:e7:f9:a4:fa:72:97:84:53:0d: + a5:d0:32:18:51:76:59:14:6c:0f:eb:ec:5f:80:8c:75:43:83: + c3:85:98:ff:4c:9e:2d:0d:e4:77:83:93:4e:b5:96:07:8b:28: + 13:9b:8c:19:8d:41:27:49:40:ee:de:e6:23:44:39:dc:a1:22: + d6:ba:03:f2 +SHA1 Fingerprint=3B:C4:9F:48:F8:F3:73:A0:9C:1E:BD:F8:5B:B1:C3:65:C7:D8:11:B3 diff --git a/system/etc/security/cacerts/aeb67534.0 b/system/etc/security/cacerts/aeb67534.0 new file mode 100644 index 0000000000000000000000000000000000000000..fdabb5f0ed849fc4e6e6879271d4476b763c9c04 --- /dev/null +++ b/system/etc/security/cacerts/aeb67534.0 @@ -0,0 +1,97 @@ +-----BEGIN CERTIFICATE----- +MIIFVjCCBD6gAwIBAgIQ7is969Qh3hSoYqwE893EATANBgkqhkiG9w0BAQUFADCB +8zELMAkGA1UEBhMCRVMxOzA5BgNVBAoTMkFnZW5jaWEgQ2F0YWxhbmEgZGUgQ2Vy +dGlmaWNhY2lvIChOSUYgUS0wODAxMTc2LUkpMSgwJgYDVQQLEx9TZXJ2ZWlzIFB1 +YmxpY3MgZGUgQ2VydGlmaWNhY2lvMTUwMwYDVQQLEyxWZWdldSBodHRwczovL3d3 +dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAoYykwMzE1MDMGA1UECxMsSmVyYXJxdWlh +IEVudGl0YXRzIGRlIENlcnRpZmljYWNpbyBDYXRhbGFuZXMxDzANBgNVBAMTBkVD +LUFDQzAeFw0wMzAxMDcyMzAwMDBaFw0zMTAxMDcyMjU5NTlaMIHzMQswCQYDVQQG +EwJFUzE7MDkGA1UEChMyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8g +KE5JRiBRLTA4MDExNzYtSSkxKDAmBgNVBAsTH1NlcnZlaXMgUHVibGljcyBkZSBD +ZXJ0aWZpY2FjaW8xNTAzBgNVBAsTLFZlZ2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQu +bmV0L3ZlcmFycmVsIChjKTAzMTUwMwYDVQQLEyxKZXJhcnF1aWEgRW50aXRhdHMg +ZGUgQ2VydGlmaWNhY2lvIENhdGFsYW5lczEPMA0GA1UEAxMGRUMtQUNDMIIBIjAN +BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsyLHT+KXQpWIR4NA9h0X84NzJB5R +85iKw5K4/0CQBXCHYMkAqbWUZRkiFRfCQ2xmRJoNBD45b6VLeqpjt4pEndljkYRm +4CgPukLjbo73FCeTae6RDqNfDrHrZqJyTxIThmV6PttPB/SnCWDaOkKZx7J/sxaV +HMf5NLWUhdWZXqBIoH7nF2W4onW4HvPlQn2v7fOKSGRdghST2MDk/7NQcvJ29rNd +QlB50JQ+awwAvthrDk4q7D7SzIKiGGUzE3eeml0aE9jD2z3Il3rucO2n5nzbcc8t +lGLfbdb1OL4/pYUKGbio2Al1QnDE6u/LDsg0qBIimAy4E5S2S+zw0JDnJwIDAQAB +o4HjMIHgMB0GA1UdEQQWMBSBEmVjX2FjY0BjYXRjZXJ0Lm5ldDAPBgNVHRMBAf8E +BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUoMOLRKo3pUW/l4Ba0fF4 +opvpXY0wfwYDVR0gBHgwdjB0BgsrBgEEAfV4AQMBCjBlMCwGCCsGAQUFBwIBFiBo +dHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbDA1BggrBgEFBQcCAjApGidW +ZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAwDQYJKoZIhvcN +AQEFBQADggEBAKBIW4IB9k1IuDlVNZyAelOZ1Vr/sXE7zDkJlF7W2u++AVtd0x7Y +/X1PzaBB4DSTv8vihpw3kpBWHNzrKQXlxJ7HNd+KDM3FIUPpqojlNcAZQmNaAl6k +SBg6hW/cnbw/nZzBh7h6YQjpdwt/cKt63dmXLGQehb+8dJahw3oS7AwaboMMPOhy +Rp/7SNVel+axofjk70YllJyJ22k4vuxcDlbHZVHlUIiIv0LVKz3l+bqeLrPK9HOS +Agu+TGbrIP65y7WZf+a2E/rKS03Z7lNGBjvGTq2TWoF+bCpLagVFjPIhpDGQh2xl +nJ2lYJU6Un/10asIbvPuW/mIPX64b24D5EI= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + (Negative)11:d4:c2:14:2b:de:21:eb:57:9d:53:fb:0c:22:3b:ff + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=ES, O=Agencia Catalana de Certificacio (NIF Q-0801176-I), OU=Serveis Publics de Certificacio, OU=Vegeu https://www.catcert.net/verarrel (c)03, OU=Jerarquia Entitats de Certificacio Catalanes, CN=EC-ACC + Validity + Not Before: Jan 7 23:00:00 2003 GMT + Not After : Jan 7 22:59:59 2031 GMT + Subject: C=ES, O=Agencia Catalana de Certificacio (NIF Q-0801176-I), OU=Serveis Publics de Certificacio, OU=Vegeu https://www.catcert.net/verarrel (c)03, OU=Jerarquia Entitats de Certificacio Catalanes, CN=EC-ACC + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:b3:22:c7:4f:e2:97:42:95:88:47:83:40:f6:1d: + 17:f3:83:73:24:1e:51:f3:98:8a:c3:92:b8:ff:40: + 90:05:70:87:60:c9:00:a9:b5:94:65:19:22:15:17: + c2:43:6c:66:44:9a:0d:04:3e:39:6f:a5:4b:7a:aa: + 63:b7:8a:44:9d:d9:63:91:84:66:e0:28:0f:ba:42: + e3:6e:8e:f7:14:27:93:69:ee:91:0e:a3:5f:0e:b1: + eb:66:a2:72:4f:12:13:86:65:7a:3e:db:4f:07:f4: + a7:09:60:da:3a:42:99:c7:b2:7f:b3:16:95:1c:c7: + f9:34:b5:94:85:d5:99:5e:a0:48:a0:7e:e7:17:65: + b8:a2:75:b8:1e:f3:e5:42:7d:af:ed:f3:8a:48:64: + 5d:82:14:93:d8:c0:e4:ff:b3:50:72:f2:76:f6:b3: + 5d:42:50:79:d0:94:3e:6b:0c:00:be:d8:6b:0e:4e: + 2a:ec:3e:d2:cc:82:a2:18:65:33:13:77:9e:9a:5d: + 1a:13:d8:c3:db:3d:c8:97:7a:ee:70:ed:a7:e6:7c: + db:71:cf:2d:94:62:df:6d:d6:f5:38:be:3f:a5:85: + 0a:19:b8:a8:d8:09:75:42:70:c4:ea:ef:cb:0e:c8: + 34:a8:12:22:98:0c:b8:13:94:b6:4b:ec:f0:d0:90: + e7:27 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Alternative Name: + email:ec_acc@catcert.net + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + A0:C3:8B:44:AA:37:A5:45:BF:97:80:5A:D1:F1:78:A2:9B:E9:5D:8D + X509v3 Certificate Policies: + Policy: 1.3.6.1.4.1.15096.1.3.1.10 + CPS: https://www.catcert.net/verarrel + User Notice: + Explicit Text: Vegeu https://www.catcert.net/verarrel + + Signature Algorithm: sha1WithRSAEncryption + a0:48:5b:82:01:f6:4d:48:b8:39:55:35:9c:80:7a:53:99:d5: + 5a:ff:b1:71:3b:cc:39:09:94:5e:d6:da:ef:be:01:5b:5d:d3: + 1e:d8:fd:7d:4f:cd:a0:41:e0:34:93:bf:cb:e2:86:9c:37:92: + 90:56:1c:dc:eb:29:05:e5:c4:9e:c7:35:df:8a:0c:cd:c5:21: + 43:e9:aa:88:e5:35:c0:19:42:63:5a:02:5e:a4:48:18:3a:85: + 6f:dc:9d:bc:3f:9d:9c:c1:87:b8:7a:61:08:e9:77:0b:7f:70: + ab:7a:dd:d9:97:2c:64:1e:85:bf:bc:74:96:a1:c3:7a:12:ec: + 0c:1a:6e:83:0c:3c:e8:72:46:9f:fb:48:d5:5e:97:e6:b1:a1: + f8:e4:ef:46:25:94:9c:89:db:69:38:be:ec:5c:0e:56:c7:65: + 51:e5:50:88:88:bf:42:d5:2b:3d:e5:f9:ba:9e:2e:b3:ca:f4: + 73:92:02:0b:be:4c:66:eb:20:fe:b9:cb:b5:99:7f:e6:b6:13: + fa:ca:4b:4d:d9:ee:53:46:06:3b:c6:4e:ad:93:5a:81:7e:6c: + 2a:4b:6a:05:45:8c:f2:21:a4:31:90:87:6c:65:9c:9d:a5:60: + 95:3a:52:7f:f5:d1:ab:08:6e:f3:ee:5b:f9:88:3d:7e:b8:6f: + 6e:03:e4:42 +SHA1 Fingerprint=28:90:3A:63:5B:52:80:FA:E6:77:4C:0B:6D:A7:D6:BA:A6:4A:F2:E8 diff --git a/system/etc/security/cacerts/b0ed035a.0 b/system/etc/security/cacerts/b0ed035a.0 new file mode 100644 index 0000000000000000000000000000000000000000..b06f96379b77af6801edfa8147bd04dd13d3988c --- /dev/null +++ b/system/etc/security/cacerts/b0ed035a.0 @@ -0,0 +1,117 @@ +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgICDL4wDQYJKoZIhvcNAQELBQAwUTELMAkGA1UEBhMCVFcx +EjAQBgNVBAoTCVRBSVdBTi1DQTEQMA4GA1UECxMHUm9vdCBDQTEcMBoGA1UEAxMT +VFdDQSBHbG9iYWwgUm9vdCBDQTAeFw0xMjA2MjcwNjI4MzNaFw0zMDEyMzExNTU5 +NTlaMFExCzAJBgNVBAYTAlRXMRIwEAYDVQQKEwlUQUlXQU4tQ0ExEDAOBgNVBAsT +B1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3QgQ0EwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCwBdvI64zEbooh745NnHEKH1Jw7W2CnJfF +10xORUnLQEK1EjRsGcJ0pDFfhQKX7EMzClPSnIyOt7h52yvVavKOZsTuKwEHktSz +0ALfUPZVr2YOy+BHYC8rMjk1Ujoog/h7FsYYuGLWRyWRzvAZEk2tY/XTP3VfKfCh +MBwqoJimFb3u/Rk28OKRQ4/6ytYQJ0lM793B8YVwm8rqqFpD/G2Gb3PpN0Wp8DbH +zIh1HrtsBv+baz4X7GGqcXzGHaL3SekVtTzWoWH1EfcFbx39Eb7QMAfCKbAJTibc +46KokWofwpFFiFzlmLhxpRUZyXx1EcxwdE8tmx2RRP1WKKD+u4ZqyPpcC1jcxkt2 +yKsi2XMPpfRaAok/T54igu6idFMqPVMnaR1sjjIsZAAmY2E2TqNGtz99sy2sbZCi +laLOz9qC5wc0GZbpuCGqKX6mOL6OKUohZnkfs8O1CWfe1tQHRvMq2uYiN2DLgbYP +oA/pyJV/v1WRBXrPPRXAb94JlAGD1zQbzECl8LibZ9WYkTunhHiVJqRaCPgrdLQA +BDzfuBSO6N+pjWxnkjMdwLfS7JLIvgm/LCkFbwJrnu+8vyq8W8BQj0FwcYeyTbcE +qYSjMq+u7msXi7Kx/mzhkIyIqJdIzshNy/MGz19qCkKxHh53L46g5pIOBvwFItIm +4TFRfTLcDwIDAQABoyMwITAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zANBgkqhkiG9w0BAQsFAAOCAgEAXzSBdu+WHdXltdkCY4QWwa6gcFGn90xHNcgL +1yg9iXHZqjNB6hQbbCEAwGxCGX6faVsgQt+i0trEfJdLjbDorMjupWkEmQqSpqsn +LhpNgb+E1HAerUf+/UqdM+DyucRFCCEK2mlpc3INvjT+lIutwx4116KD7+U4x6WF +H6vPNOw/KP4M8VeGTslV9xzU2KV9Bnpv1d8Q34FOIWWxtuEXeZVFBs5fzNxGiWNo +RI2T9GRwoD2dKAXDOXC4Ynsg/eTb6QihuJ49CcdP+yz4k3ZB3lLg4VfSnQO8d57+ +nile98FRYB/e2guyLXW3Q0iT5/Z5xoRdgFlglPx4mI88k1HtQJAH32RjJMtOcQWh +15QaiDLxInQirqWm2BJpTGCjAu4r7NRjkgtevi92a6O2JryPA9gK8kxkRr05YuWW +6zRjESjMlfGt7+/cgFhI6Uu46mWs6fyAtbXIRfmswZ/ZuepiiI7E8UuDEq3mi4TW +nsLrgxifarsbJGAzcMzs9zLzXNl5fe+epP7JI8Mk7hWSsT2RTyaGvWZzJBPqpK5j +wa19hAM8EHiGG3njxPPyBJUgriOCxLM6AGK/5jYk4Ve6xx6QddVfP5VhK8E7zeWz +aGHQRiapIVJpLesux+t3zqY6tQMzT3bR51xUAV3LePTJDL/PEo4XLSNolOer/qmy +KwbQBM0= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 3262 (0xcbe) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=TW, O=TAIWAN-CA, OU=Root CA, CN=TWCA Global Root CA + Validity + Not Before: Jun 27 06:28:33 2012 GMT + Not After : Dec 31 15:59:59 2030 GMT + Subject: C=TW, O=TAIWAN-CA, OU=Root CA, CN=TWCA Global Root CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:b0:05:db:c8:eb:8c:c4:6e:8a:21:ef:8e:4d:9c: + 71:0a:1f:52:70:ed:6d:82:9c:97:c5:d7:4c:4e:45: + 49:cb:40:42:b5:12:34:6c:19:c2:74:a4:31:5f:85: + 02:97:ec:43:33:0a:53:d2:9c:8c:8e:b7:b8:79:db: + 2b:d5:6a:f2:8e:66:c4:ee:2b:01:07:92:d4:b3:d0: + 02:df:50:f6:55:af:66:0e:cb:e0:47:60:2f:2b:32: + 39:35:52:3a:28:83:f8:7b:16:c6:18:b8:62:d6:47: + 25:91:ce:f0:19:12:4d:ad:63:f5:d3:3f:75:5f:29: + f0:a1:30:1c:2a:a0:98:a6:15:bd:ee:fd:19:36:f0: + e2:91:43:8f:fa:ca:d6:10:27:49:4c:ef:dd:c1:f1: + 85:70:9b:ca:ea:a8:5a:43:fc:6d:86:6f:73:e9:37: + 45:a9:f0:36:c7:cc:88:75:1e:bb:6c:06:ff:9b:6b: + 3e:17:ec:61:aa:71:7c:c6:1d:a2:f7:49:e9:15:b5: + 3c:d6:a1:61:f5:11:f7:05:6f:1d:fd:11:be:d0:30: + 07:c2:29:b0:09:4e:26:dc:e3:a2:a8:91:6a:1f:c2: + 91:45:88:5c:e5:98:b8:71:a5:15:19:c9:7c:75:11: + cc:70:74:4f:2d:9b:1d:91:44:fd:56:28:a0:fe:bb: + 86:6a:c8:fa:5c:0b:58:dc:c6:4b:76:c8:ab:22:d9: + 73:0f:a5:f4:5a:02:89:3f:4f:9e:22:82:ee:a2:74: + 53:2a:3d:53:27:69:1d:6c:8e:32:2c:64:00:26:63: + 61:36:4e:a3:46:b7:3f:7d:b3:2d:ac:6d:90:a2:95: + a2:ce:cf:da:82:e7:07:34:19:96:e9:b8:21:aa:29: + 7e:a6:38:be:8e:29:4a:21:66:79:1f:b3:c3:b5:09: + 67:de:d6:d4:07:46:f3:2a:da:e6:22:37:60:cb:81: + b6:0f:a0:0f:e9:c8:95:7f:bf:55:91:05:7a:cf:3d: + 15:c0:6f:de:09:94:01:83:d7:34:1b:cc:40:a5:f0: + b8:9b:67:d5:98:91:3b:a7:84:78:95:26:a4:5a:08: + f8:2b:74:b4:00:04:3c:df:b8:14:8e:e8:df:a9:8d: + 6c:67:92:33:1d:c0:b7:d2:ec:92:c8:be:09:bf:2c: + 29:05:6f:02:6b:9e:ef:bc:bf:2a:bc:5b:c0:50:8f: + 41:70:71:87:b2:4d:b7:04:a9:84:a3:32:af:ae:ee: + 6b:17:8b:b2:b1:fe:6c:e1:90:8c:88:a8:97:48:ce: + c8:4d:cb:f3:06:cf:5f:6a:0a:42:b1:1e:1e:77:2f: + 8e:a0:e6:92:0e:06:fc:05:22:d2:26:e1:31:51:7d: + 32:dc:0f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha256WithRSAEncryption + 5f:34:81:76:ef:96:1d:d5:e5:b5:d9:02:63:84:16:c1:ae:a0: + 70:51:a7:f7:4c:47:35:c8:0b:d7:28:3d:89:71:d9:aa:33:41: + ea:14:1b:6c:21:00:c0:6c:42:19:7e:9f:69:5b:20:42:df:a2: + d2:da:c4:7c:97:4b:8d:b0:e8:ac:c8:ee:a5:69:04:99:0a:92: + a6:ab:27:2e:1a:4d:81:bf:84:d4:70:1e:ad:47:fe:fd:4a:9d: + 33:e0:f2:b9:c4:45:08:21:0a:da:69:69:73:72:0d:be:34:fe: + 94:8b:ad:c3:1e:35:d7:a2:83:ef:e5:38:c7:a5:85:1f:ab:cf: + 34:ec:3f:28:fe:0c:f1:57:86:4e:c9:55:f7:1c:d4:d8:a5:7d: + 06:7a:6f:d5:df:10:df:81:4e:21:65:b1:b6:e1:17:79:95:45: + 06:ce:5f:cc:dc:46:89:63:68:44:8d:93:f4:64:70:a0:3d:9d: + 28:05:c3:39:70:b8:62:7b:20:fd:e4:db:e9:08:a1:b8:9e:3d: + 09:c7:4f:fb:2c:f8:93:76:41:de:52:e0:e1:57:d2:9d:03:bc: + 77:9e:fe:9e:29:5e:f7:c1:51:60:1f:de:da:0b:b2:2d:75:b7: + 43:48:93:e7:f6:79:c6:84:5d:80:59:60:94:fc:78:98:8f:3c: + 93:51:ed:40:90:07:df:64:63:24:cb:4e:71:05:a1:d7:94:1a: + 88:32:f1:22:74:22:ae:a5:a6:d8:12:69:4c:60:a3:02:ee:2b: + ec:d4:63:92:0b:5e:be:2f:76:6b:a3:b6:26:bc:8f:03:d8:0a: + f2:4c:64:46:bd:39:62:e5:96:eb:34:63:11:28:cc:95:f1:ad: + ef:ef:dc:80:58:48:e9:4b:b8:ea:65:ac:e9:fc:80:b5:b5:c8: + 45:f9:ac:c1:9f:d9:b9:ea:62:88:8e:c4:f1:4b:83:12:ad:e6: + 8b:84:d6:9e:c2:eb:83:18:9f:6a:bb:1b:24:60:33:70:cc:ec: + f7:32:f3:5c:d9:79:7d:ef:9e:a4:fe:c9:23:c3:24:ee:15:92: + b1:3d:91:4f:26:86:bd:66:73:24:13:ea:a4:ae:63:c1:ad:7d: + 84:03:3c:10:78:86:1b:79:e3:c4:f3:f2:04:95:20:ae:23:82: + c4:b3:3a:00:62:bf:e6:36:24:e1:57:ba:c7:1e:90:75:d5:5f: + 3f:95:61:2b:c1:3b:cd:e5:b3:68:61:d0:46:26:a9:21:52:69: + 2d:eb:2e:c7:eb:77:ce:a6:3a:b5:03:33:4f:76:d1:e7:5c:54: + 01:5d:cb:78:f4:c9:0c:bf:cf:12:8e:17:2d:23:68:94:e7:ab: + fe:a9:b2:2b:06:d0:04:cd +SHA1 Fingerprint=9C:BB:48:53:F6:A4:F6:D3:52:A4:E8:32:52:55:60:13:F5:AD:AF:65 diff --git a/system/etc/security/cacerts/b0f3e76e.0 b/system/etc/security/cacerts/b0f3e76e.0 new file mode 100644 index 0000000000000000000000000000000000000000..929f29fb167a6bd451271c1d6f4dfed207744660 --- /dev/null +++ b/system/etc/security/cacerts/b0f3e76e.0 @@ -0,0 +1,79 @@ +-----BEGIN CERTIFICATE----- +MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkG +A1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jv +b3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAw +MDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9i +YWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJHbG9iYWxT +aWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDaDuaZ +jc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavp +xy0Sy6scTHAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp +1Wrjsok6Vjk4bwY8iGlbKk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdG +snUOhugZitVtbNV4FpWi6cgKOOvyJBNPc1STE4U6G7weNLWLBYy5d4ux2x8gkasJ +U26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrXgzT/LCrBbBlDSgeF59N8 +9iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8E +BTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0B +AQUFAAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOz +yj1hTdNGCbM+w6DjY1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE +38NflNUVyRRBnMRddWQVDf9VMOyGj/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymP +AbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhHhm4qxFYxldBniYUr+WymXUad +DKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveCX4XSQRjbgbME +HMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 04:00:00:00:00:01:15:4b:5a:c3:94 + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=BE, O=GlobalSign nv-sa, OU=Root CA, CN=GlobalSign Root CA + Validity + Not Before: Sep 1 12:00:00 1998 GMT + Not After : Jan 28 12:00:00 2028 GMT + Subject: C=BE, O=GlobalSign nv-sa, OU=Root CA, CN=GlobalSign Root CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:da:0e:e6:99:8d:ce:a3:e3:4f:8a:7e:fb:f1:8b: + 83:25:6b:ea:48:1f:f1:2a:b0:b9:95:11:04:bd:f0: + 63:d1:e2:67:66:cf:1c:dd:cf:1b:48:2b:ee:8d:89: + 8e:9a:af:29:80:65:ab:e9:c7:2d:12:cb:ab:1c:4c: + 70:07:a1:3d:0a:30:cd:15:8d:4f:f8:dd:d4:8c:50: + 15:1c:ef:50:ee:c4:2e:f7:fc:e9:52:f2:91:7d:e0: + 6d:d5:35:30:8e:5e:43:73:f2:41:e9:d5:6a:e3:b2: + 89:3a:56:39:38:6f:06:3c:88:69:5b:2a:4d:c5:a7: + 54:b8:6c:89:cc:9b:f9:3c:ca:e5:fd:89:f5:12:3c: + 92:78:96:d6:dc:74:6e:93:44:61:d1:8d:c7:46:b2: + 75:0e:86:e8:19:8a:d5:6d:6c:d5:78:16:95:a2:e9: + c8:0a:38:eb:f2:24:13:4f:73:54:93:13:85:3a:1b: + bc:1e:34:b5:8b:05:8c:b9:77:8b:b1:db:1f:20:91: + ab:09:53:6e:90:ce:7b:37:74:b9:70:47:91:22:51: + 63:16:79:ae:b1:ae:41:26:08:c8:19:2b:d1:46:aa: + 48:d6:64:2a:d7:83:34:ff:2c:2a:c1:6c:19:43:4a: + 07:85:e7:d3:7c:f6:21:68:ef:ea:f2:52:9f:7f:93: + 90:cf + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 60:7B:66:1A:45:0D:97:CA:89:50:2F:7D:04:CD:34:A8:FF:FC:FD:4B + Signature Algorithm: sha1WithRSAEncryption + d6:73:e7:7c:4f:76:d0:8d:bf:ec:ba:a2:be:34:c5:28:32:b5: + 7c:fc:6c:9c:2c:2b:bd:09:9e:53:bf:6b:5e:aa:11:48:b6:e5: + 08:a3:b3:ca:3d:61:4d:d3:46:09:b3:3e:c3:a0:e3:63:55:1b: + f2:ba:ef:ad:39:e1:43:b9:38:a3:e6:2f:8a:26:3b:ef:a0:50: + 56:f9:c6:0a:fd:38:cd:c4:0b:70:51:94:97:98:04:df:c3:5f: + 94:d5:15:c9:14:41:9c:c4:5d:75:64:15:0d:ff:55:30:ec:86: + 8f:ff:0d:ef:2c:b9:63:46:f6:aa:fc:df:bc:69:fd:2e:12:48: + 64:9a:e0:95:f0:a6:ef:29:8f:01:b1:15:b5:0c:1d:a5:fe:69: + 2c:69:24:78:1e:b3:a7:1c:71:62:ee:ca:c8:97:ac:17:5d:8a: + c2:f8:47:86:6e:2a:c4:56:31:95:d0:67:89:85:2b:f9:6c:a6: + 5d:46:9d:0c:aa:82:e4:99:51:dd:70:b7:db:56:3d:61:e4:6a: + e1:5c:d6:f6:fe:3d:de:41:cc:07:ae:63:52:bf:53:53:f4:2b: + e9:c7:fd:b6:f7:82:5f:85:d2:41:18:db:81:b3:04:1c:c5:1f: + a4:80:6f:15:20:c9:de:0c:88:0a:1d:d6:66:55:e2:fc:48:c9: + 29:26:69:e0 +SHA1 Fingerprint=B1:BC:96:8B:D4:F4:9D:62:2A:A8:9A:81:F2:15:01:52:A4:1D:82:9C diff --git a/system/etc/security/cacerts/b3fb433b.0 b/system/etc/security/cacerts/b3fb433b.0 new file mode 100644 index 0000000000000000000000000000000000000000..de880c1bb864ebb3040fa92e3d255e8f026ea69a --- /dev/null +++ b/system/etc/security/cacerts/b3fb433b.0 @@ -0,0 +1,56 @@ +-----BEGIN CERTIFICATE----- +MIIC+TCCAoCgAwIBAgINAKaLeSkAAAAAUNCR+TAKBggqhkjOPQQDAzCBvzELMAkG +A1UEBhMCVVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3 +d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDEyIEVu +dHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEzMDEGA1UEAxMq +RW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRUMxMB4XDTEy +MTIxODE1MjUzNloXDTM3MTIxODE1NTUzNlowgb8xCzAJBgNVBAYTAlVTMRYwFAYD +VQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0 +L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxMiBFbnRydXN0LCBJbmMuIC0g +Zm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMzAxBgNVBAMTKkVudHJ1c3QgUm9vdCBD +ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEVDMTB2MBAGByqGSM49AgEGBSuBBAAi +A2IABIQTydC6bUF74mzQ61VfZgIaJPRbiWlH47jCffHyAsWfoPZb1YsGGYZPUxBt +ByQnoaD41UcZYUx9ypMn6nQM72+WCf5j7HBdNq1nd67JnXxVRDqiY1Ef9eNi1KlH +Bz7MIKNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0O +BBYEFLdj5xrdjekIplWDpOBqUEFlEUJJMAoGCCqGSM49BAMDA2cAMGQCMGF52OVC +R98crlOZF7ZvHH3hvxGU0QOIdeSNiaSKd0bebWHvAvX7td/M/k7//qnmpwIwW5nX +hTcGtXsI/esni0qU+eH6p44mCOh8kmhtc9hvJqwhAriZtyZBWyVgrtBIGu4G +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + a6:8b:79:29:00:00:00:00:50:d0:91:f9 + Signature Algorithm: ecdsa-with-SHA384 + Issuer: C=US, O=Entrust, Inc., OU=See www.entrust.net/legal-terms, OU=(c) 2012 Entrust, Inc. - for authorized use only, CN=Entrust Root Certification Authority - EC1 + Validity + Not Before: Dec 18 15:25:36 2012 GMT + Not After : Dec 18 15:55:36 2037 GMT + Subject: C=US, O=Entrust, Inc., OU=See www.entrust.net/legal-terms, OU=(c) 2012 Entrust, Inc. - for authorized use only, CN=Entrust Root Certification Authority - EC1 + Subject Public Key Info: + Public Key Algorithm: id-ecPublicKey + Public-Key: (384 bit) + pub: + 04:84:13:c9:d0:ba:6d:41:7b:e2:6c:d0:eb:55:5f: + 66:02:1a:24:f4:5b:89:69:47:e3:b8:c2:7d:f1:f2: + 02:c5:9f:a0:f6:5b:d5:8b:06:19:86:4f:53:10:6d: + 07:24:27:a1:a0:f8:d5:47:19:61:4c:7d:ca:93:27: + ea:74:0c:ef:6f:96:09:fe:63:ec:70:5d:36:ad:67: + 77:ae:c9:9d:7c:55:44:3a:a2:63:51:1f:f5:e3:62: + d4:a9:47:07:3e:cc:20 + ASN1 OID: secp384r1 + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + B7:63:E7:1A:DD:8D:E9:08:A6:55:83:A4:E0:6A:50:41:65:11:42:49 + Signature Algorithm: ecdsa-with-SHA384 + 30:64:02:30:61:79:d8:e5:42:47:df:1c:ae:53:99:17:b6:6f: + 1c:7d:e1:bf:11:94:d1:03:88:75:e4:8d:89:a4:8a:77:46:de: + 6d:61:ef:02:f5:fb:b5:df:cc:fe:4e:ff:fe:a9:e6:a7:02:30: + 5b:99:d7:85:37:06:b5:7b:08:fd:eb:27:8b:4a:94:f9:e1:fa: + a7:8e:26:08:e8:7c:92:68:6d:73:d8:6f:26:ac:21:02:b8:99: + b7:26:41:5b:25:60:ae:d0:48:1a:ee:06 +SHA1 Fingerprint=20:D8:06:40:DF:9B:25:F5:12:25:3A:11:EA:F7:59:8A:EB:14:B5:47 diff --git a/system/etc/security/cacerts/b7db1890.0 b/system/etc/security/cacerts/b7db1890.0 new file mode 100644 index 0000000000000000000000000000000000000000..626e5a302735758a17e556b6ada9439663da36a1 --- /dev/null +++ b/system/etc/security/cacerts/b7db1890.0 @@ -0,0 +1,78 @@ +-----BEGIN CERTIFICATE----- +MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzES +MBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFU +V0NBIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMz +WhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJVEFJV0FO +LUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlm +aWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +AQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFE +AcK0HMMxQhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HH +K3XLfJ+utdGdIzdjp9xCoi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeX +RfwZVzsrb+RH9JlF/h3x+JejiB03HFyP4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/z +rX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1ry+UPizgN7gr8/g+YnzAx +3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkq +hkiG9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeC +MErJk/9q56YAf4lCmtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdls +XebQ79NqZp4VKIV66IIArB6nCWlWQtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62D +lhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVYT0bf+215WfKEIlKuD8z7fDvn +aspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocnyYh0igzyXxfkZ +YiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 1 (0x1) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=TW, O=TAIWAN-CA, OU=Root CA, CN=TWCA Root Certification Authority + Validity + Not Before: Aug 28 07:24:33 2008 GMT + Not After : Dec 31 15:59:59 2030 GMT + Subject: C=TW, O=TAIWAN-CA, OU=Root CA, CN=TWCA Root Certification Authority + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:b0:7e:72:b8:a4:03:94:e6:a7:de:09:38:91:4a: + 11:40:87:a7:7c:59:64:14:7b:b5:11:10:dd:fe:bf: + d5:c0:bb:56:e2:85:25:f4:35:72:0f:f8:53:d0:41: + e1:44:01:c2:b4:1c:c3:31:42:16:47:85:33:22:76: + b2:0a:6f:0f:e5:25:50:4f:85:86:be:bf:98:2e:10: + 67:1e:be:11:05:86:05:90:c4:59:d0:7c:78:10:b0: + 80:5c:b7:e1:c7:2b:75:cb:7c:9f:ae:b5:d1:9d:23: + 37:63:a7:dc:42:a2:2d:92:04:1b:50:c1:7b:b8:3e: + 1b:c9:56:04:8b:2f:52:9b:ad:a9:56:e9:c1:ff:ad: + a9:58:87:30:b6:81:f7:97:45:fc:19:57:3b:2b:6f: + e4:47:f4:99:45:fe:1d:f1:f8:97:a3:88:1d:37:1c: + 5c:8f:e0:76:25:9a:50:f8:a0:54:ff:44:90:76:23: + d2:32:c6:c3:ab:06:bf:fc:fb:bf:f3:ad:7d:92:62: + 02:5b:29:d3:35:a3:93:9a:43:64:60:5d:b2:fa:32: + ff:3b:04:af:4d:40:6a:f9:c7:e3:ef:23:fd:6b:cb: + e5:0f:8b:38:0d:ee:0a:fc:fe:0f:98:9f:30:31:dd: + 6c:52:65:f9:8b:81:be:22:e1:1c:58:03:ba:91:1b: + 89:07 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 6A:38:5B:26:8D:DE:8B:5A:F2:4F:7A:54:83:19:18:E3:08:35:A6:BA + Signature Algorithm: sha1WithRSAEncryption + 3c:d5:77:3d:da:df:89:ba:87:0c:08:54:6a:20:50:92:be:b0: + 41:3d:b9:26:64:83:0a:2f:e8:40:c0:97:28:27:82:30:4a:c9: + 93:ff:6a:e7:a6:00:7f:89:42:9a:d6:11:e5:53:ce:2f:cc:f2: + da:05:c4:fe:e2:50:c4:3a:86:7d:cc:da:7e:10:09:3b:92:35: + 2a:53:b2:fe:eb:2b:05:d9:6c:5d:e6:d0:ef:d3:6a:66:9e:15: + 28:85:7a:e8:82:00:ac:1e:a7:09:69:56:42:d3:68:51:18:be: + 54:9a:bf:44:41:ba:49:be:20:ba:69:5c:ee:b8:77:cd:ce:6c: + 1f:ad:83:96:18:7d:0e:b5:14:39:84:f1:28:e9:2d:a3:9e:7b: + 1e:7a:72:5a:83:b3:79:6f:ef:b4:fc:d0:0a:a5:58:4f:46:df: + fb:6d:79:59:f2:84:22:52:ae:0f:cc:fb:7c:3b:e7:6a:ca:47: + 61:c3:7a:f8:d3:92:04:1f:b8:20:84:e1:36:54:16:c7:40:de: + 3b:8a:73:dc:df:c6:09:4c:df:ec:da:ff:d4:53:42:a1:c9:f2: + 62:1d:22:83:3c:97:c5:f9:19:62:27:ac:65:22:d7:d3:3c:c6: + e5:8e:b2:53:cc:49:ce:bc:30:fe:7b:0e:33:90:fb:ed:d2:14: + 91:1f:07:af +SHA1 Fingerprint=CF:9E:87:6D:D3:EB:FC:42:26:97:A3:B5:A3:7A:A0:76:A9:06:23:48 diff --git a/system/etc/security/cacerts/b872f2b4.0 b/system/etc/security/cacerts/b872f2b4.0 new file mode 100644 index 0000000000000000000000000000000000000000..e99bbe982bf50f6189fdcabb4ddcc3c3f336e65f --- /dev/null +++ b/system/etc/security/cacerts/b872f2b4.0 @@ -0,0 +1,84 @@ +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIIXDPLYixfszIwDQYJKoZIhvcNAQELBQAwPDEeMBwGA1UE +AwwVQXRvcyBUcnVzdGVkUm9vdCAyMDExMQ0wCwYDVQQKDARBdG9zMQswCQYDVQQG +EwJERTAeFw0xMTA3MDcxNDU4MzBaFw0zMDEyMzEyMzU5NTlaMDwxHjAcBgNVBAMM +FUF0b3MgVHJ1c3RlZFJvb3QgMjAxMTENMAsGA1UECgwEQXRvczELMAkGA1UEBhMC +REUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCVhTuXbyo7LjvPpvMp +Nb7PGKw+qtn4TaA+Gke5vJrf8v7MPkfoepbCJI419KkM/IL9bcFyYie96mvr54rM +VD6QUM+A1JX76LWC1BTFtqlVJVfbsVD2sGBkWXppzwO3bw2+yj5vdHLqqjAqc2K+ +SZFhyBH+DgMq92og3AIVDV4VavzjgsG1xZ1kCWyjWZgHJ8cblithdHFsQ/H3NYkQ +4J7sVaE3IqKHBAUsR320HLliKWYoyrfhk/WklAOZuXCFteZI6o1Q/NnezG8HDt0L +cp2AMBYHlT8oDv3FdU9T1nSatCQujgKRz3bFmx5VdJx4IbHwLfELn8LVlhgf8FQi +eowHAgMBAAGjfTB7MB0GA1UdDgQWBBSnpQaxLKYJYO7Rl+lwrrw7GWzbITAPBgNV +HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKelBrEspglg7tGX6XCuvDsZbNshMBgG +A1UdIAQRMA8wDQYLKwYBBAGwLQMEAQEwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3 +DQEBCwUAA4IBAQAmdzTblEiGKkGdLD4GkGDEjKwLVLgfuXvTBznk+j57sj1O7Z8j +vZfza1zv7v1Apt+hk6EKhqzvINB5Ab149xnYJDE0BAGmuhWawyfc2E8PzBhj/5kP +DpFrdRbhIfzYJsdHt6bPWHJxfrrhTZVHO8mvbaG0weyJ9rQPOLXiZNwlz6bb65pc +maHFCN795trV1lpFDMS3wrUU77QR/w4VtfX128a961qn8FYiqTxlVMYVqL2Gns2D +lmh6cYGJ4Qvh6hEbaAjMaZ7snkGeRDImeuKHCnE96+RapNLbxc3G3mB/ufNPRJLv +KrcYPqcZ2Qt9sTdBQrC6YB3y/gkRsPCHe6ed +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 6643877497813316402 (0x5c33cb622c5fb332) + Signature Algorithm: sha256WithRSAEncryption + Issuer: CN=Atos TrustedRoot 2011, O=Atos, C=DE + Validity + Not Before: Jul 7 14:58:30 2011 GMT + Not After : Dec 31 23:59:59 2030 GMT + Subject: CN=Atos TrustedRoot 2011, O=Atos, C=DE + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:95:85:3b:97:6f:2a:3b:2e:3b:cf:a6:f3:29:35: + be:cf:18:ac:3e:aa:d9:f8:4d:a0:3e:1a:47:b9:bc: + 9a:df:f2:fe:cc:3e:47:e8:7a:96:c2:24:8e:35:f4: + a9:0c:fc:82:fd:6d:c1:72:62:27:bd:ea:6b:eb:e7: + 8a:cc:54:3e:90:50:cf:80:d4:95:fb:e8:b5:82:d4: + 14:c5:b6:a9:55:25:57:db:b1:50:f6:b0:60:64:59: + 7a:69:cf:03:b7:6f:0d:be:ca:3e:6f:74:72:ea:aa: + 30:2a:73:62:be:49:91:61:c8:11:fe:0e:03:2a:f7: + 6a:20:dc:02:15:0d:5e:15:6a:fc:e3:82:c1:b5:c5: + 9d:64:09:6c:a3:59:98:07:27:c7:1b:96:2b:61:74: + 71:6c:43:f1:f7:35:89:10:e0:9e:ec:55:a1:37:22: + a2:87:04:05:2c:47:7d:b4:1c:b9:62:29:66:28:ca: + b7:e1:93:f5:a4:94:03:99:b9:70:85:b5:e6:48:ea: + 8d:50:fc:d9:de:cc:6f:07:0e:dd:0b:72:9d:80:30: + 16:07:95:3f:28:0e:fd:c5:75:4f:53:d6:74:9a:b4: + 24:2e:8e:02:91:cf:76:c5:9b:1e:55:74:9c:78:21: + b1:f0:2d:f1:0b:9f:c2:d5:96:18:1f:f0:54:22:7a: + 8c:07 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + A7:A5:06:B1:2C:A6:09:60:EE:D1:97:E9:70:AE:BC:3B:19:6C:DB:21 + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Authority Key Identifier: + keyid:A7:A5:06:B1:2C:A6:09:60:EE:D1:97:E9:70:AE:BC:3B:19:6C:DB:21 + + X509v3 Certificate Policies: + Policy: 1.3.6.1.4.1.6189.3.4.1.1 + + X509v3 Key Usage: critical + Digital Signature, Certificate Sign, CRL Sign + Signature Algorithm: sha256WithRSAEncryption + 26:77:34:db:94:48:86:2a:41:9d:2c:3e:06:90:60:c4:8c:ac: + 0b:54:b8:1f:b9:7b:d3:07:39:e4:fa:3e:7b:b2:3d:4e:ed:9f: + 23:bd:97:f3:6b:5c:ef:ee:fd:40:a6:df:a1:93:a1:0a:86:ac: + ef:20:d0:79:01:bd:78:f7:19:d8:24:31:34:04:01:a6:ba:15: + 9a:c3:27:dc:d8:4f:0f:cc:18:63:ff:99:0f:0e:91:6b:75:16: + e1:21:fc:d8:26:c7:47:b7:a6:cf:58:72:71:7e:ba:e1:4d:95: + 47:3b:c9:af:6d:a1:b4:c1:ec:89:f6:b4:0f:38:b5:e2:64:dc: + 25:cf:a6:db:eb:9a:5c:99:a1:c5:08:de:fd:e6:da:d5:d6:5a: + 45:0c:c4:b7:c2:b5:14:ef:b4:11:ff:0e:15:b5:f5:f5:db:c6: + bd:eb:5a:a7:f0:56:22:a9:3c:65:54:c6:15:a8:bd:86:9e:cd: + 83:96:68:7a:71:81:89:e1:0b:e1:ea:11:1b:68:08:cc:69:9e: + ec:9e:41:9e:44:32:26:7a:e2:87:0a:71:3d:eb:e4:5a:a4:d2: + db:c5:cd:c6:de:60:7f:b9:f3:4f:44:92:ef:2a:b7:18:3e:a7: + 19:d9:0b:7d:b1:37:41:42:b0:ba:60:1d:f2:fe:09:11:b0:f0: + 87:7b:a7:9d +SHA1 Fingerprint=2B:B1:F5:3E:55:0C:1D:C5:F1:D4:E6:B7:6A:46:4B:55:06:02:AC:21 diff --git a/system/etc/security/cacerts/b936d1c6.0 b/system/etc/security/cacerts/b936d1c6.0 new file mode 100644 index 0000000000000000000000000000000000000000..5a8d8e694da3c1cddeb54593d1c29f117daa666f --- /dev/null +++ b/system/etc/security/cacerts/b936d1c6.0 @@ -0,0 +1,125 @@ +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIPXZONMGc2yAYdGsdUhGkHMA0GCSqGSIb3DQEBCwUAMDsx +CzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJ +WiBGTk1ULVJDTTAeFw0wODEwMjkxNTU5NTZaFw0zMDAxMDEwMDAwMDBaMDsxCzAJ +BgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJWiBG +Tk1ULVJDTTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALpxgHpMhm5/ +yBNtwMZ9HACXjywMI7sQmkCpGreHiPibVmr75nuOi5KOpyVdWRHbNi63URcfqQgf +BBckWKo3Shjf5TnUV/3XwSyRAZHiItQDwFj8d0fsjz50Q7qsNI1NOHZnjrDIbzAz +WHFctPVrbtQBULgTfmxKo0nRIBnuvMApGGWn3v7v3QqQIecaZ5JCEJhfTzC8PhxF +tBDXaEAUwED653cXeuYLj2VbPNmaUtu1vZ5Gzz3rkQUCwJaydkxNEJY7kvqcfw+Z +374jNUUeAlz+taibmSXaXvMiwzn15Cou08YfxGyqxRxqAQVKL9LFwag0Jl1mpdIC +IfkYtwb1TplvqKtMUejPUBjFd8g5CSxJkjKZqLsXF3mwWsXmo8RZZUc1g16p6DUL +mbvkzSDGm0oGObVo/CK67lWMK07q87Hj/LaZmtVC+nFNCM+HHmpxffnTtOmlcYF7 +wk5HlqX2doWjKI/pgG6BU6VtX7hI+cL5NqYuSf+4lsKMB7ObiFj86xsc3i1w4peS +MKGJ47xVqCfWS+2QrYv6YyVZLag13cqXM7zlzced0ezvXg5KkAYmY6252TUtB7p2 +ZSysV4999AeU14ECll2jB0nVetBX+RvnU0Z1qrB5QstocQjpYL05ac70r8NWQMet +UqIJ5G+GR4of6ygnXYMgrwTJbFaai0b1AgMBAAGjgYMwgYAwDwYDVR0TAQH/BAUw +AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFPd9xf3E6Jobd2Sn9R2gzL+H +YJptMD4GA1UdIAQ3MDUwMwYEVR0gADArMCkGCCsGAQUFBwIBFh1odHRwOi8vd3d3 +LmNlcnQuZm5tdC5lcy9kcGNzLzANBgkqhkiG9w0BAQsFAAOCAgEAB5BK3/MjTvDD +nFFlm5wioooMhfNzKWtN/gHiqQxjAb8EZ6WdmF/9ARP67Jpi6Yb+tmLSbkyU+8B1 +RXxlDPiyN8+sD8+Nb/kZ94/sHvJwnvDKuO+3/3Y3dlv2bojzr2IyIpMNOmqOFGYM +LVN0V2Ue1bLdI4E7pWYjJ2cJj+F3qkPNZVEI7VFY/uY5+ctHhKQV8Xa7pO6kO8Rf +77IzlhEYt8llvhjho6Tc+hj507wTmzl6NLrTQfv6MooqtyuGC2mDOL7Nii4LcK2N +JpLuHvUBKwrZ1pebbuCoGRw6IYsMHkCtA+fdZn71uSANA+iW+YJF1DngoABd15jm +fZ5nc8OaKveri6E6FO80vFIOiZiaBECEHX5FaZNXzuvO+FB8TxxuBEOb+dY7Ixjp +6o7RTUaN8Tvkasq6+yO3m/qZASlaWFot4/nUbQ4mrcFuNLwy+AwF+mWj2zs3gyLp +1txyM/1d8iC9djwj2ij3+RvrWWTV3F9yfiD8zYm1kGdNYno/Tq0dwzn+evQoFt9B +9kiABdcPUXmsEKvU7ANm5mqwujGSQkBqvjrTcuFqN1W8rB2Vt2lh8kORdOag0wok +RqEIr9baRRmW1FMdW4R58MD3R++Lj8UGrp1MYp3/RgT408m2ECVAdf4WqslKYIYv +uu8wd+RU4riEmViAqhOLUTpPSPaLtrM= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 5d:93:8d:30:67:36:c8:06:1d:1a:c7:54:84:69:07 + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=ES, O=FNMT-RCM, OU=AC RAIZ FNMT-RCM + Validity + Not Before: Oct 29 15:59:56 2008 GMT + Not After : Jan 1 00:00:00 2030 GMT + Subject: C=ES, O=FNMT-RCM, OU=AC RAIZ FNMT-RCM + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:ba:71:80:7a:4c:86:6e:7f:c8:13:6d:c0:c6:7d: + 1c:00:97:8f:2c:0c:23:bb:10:9a:40:a9:1a:b7:87: + 88:f8:9b:56:6a:fb:e6:7b:8e:8b:92:8e:a7:25:5d: + 59:11:db:36:2e:b7:51:17:1f:a9:08:1f:04:17:24: + 58:aa:37:4a:18:df:e5:39:d4:57:fd:d7:c1:2c:91: + 01:91:e2:22:d4:03:c0:58:fc:77:47:ec:8f:3e:74: + 43:ba:ac:34:8d:4d:38:76:67:8e:b0:c8:6f:30:33: + 58:71:5c:b4:f5:6b:6e:d4:01:50:b8:13:7e:6c:4a: + a3:49:d1:20:19:ee:bc:c0:29:18:65:a7:de:fe:ef: + dd:0a:90:21:e7:1a:67:92:42:10:98:5f:4f:30:bc: + 3e:1c:45:b4:10:d7:68:40:14:c0:40:fa:e7:77:17: + 7a:e6:0b:8f:65:5b:3c:d9:9a:52:db:b5:bd:9e:46: + cf:3d:eb:91:05:02:c0:96:b2:76:4c:4d:10:96:3b: + 92:fa:9c:7f:0f:99:df:be:23:35:45:1e:02:5c:fe: + b5:a8:9b:99:25:da:5e:f3:22:c3:39:f5:e4:2a:2e: + d3:c6:1f:c4:6c:aa:c5:1c:6a:01:05:4a:2f:d2:c5: + c1:a8:34:26:5d:66:a5:d2:02:21:f9:18:b7:06:f5: + 4e:99:6f:a8:ab:4c:51:e8:cf:50:18:c5:77:c8:39: + 09:2c:49:92:32:99:a8:bb:17:17:79:b0:5a:c5:e6: + a3:c4:59:65:47:35:83:5e:a9:e8:35:0b:99:bb:e4: + cd:20:c6:9b:4a:06:39:b5:68:fc:22:ba:ee:55:8c: + 2b:4e:ea:f3:b1:e3:fc:b6:99:9a:d5:42:fa:71:4d: + 08:cf:87:1e:6a:71:7d:f9:d3:b4:e9:a5:71:81:7b: + c2:4e:47:96:a5:f6:76:85:a3:28:8f:e9:80:6e:81: + 53:a5:6d:5f:b8:48:f9:c2:f9:36:a6:2e:49:ff:b8: + 96:c2:8c:07:b3:9b:88:58:fc:eb:1b:1c:de:2d:70: + e2:97:92:30:a1:89:e3:bc:55:a8:27:d6:4b:ed:90: + ad:8b:fa:63:25:59:2d:a8:35:dd:ca:97:33:bc:e5: + cd:c7:9d:d1:ec:ef:5e:0e:4a:90:06:26:63:ad:b9: + d9:35:2d:07:ba:76:65:2c:ac:57:8f:7d:f4:07:94: + d7:81:02:96:5d:a3:07:49:d5:7a:d0:57:f9:1b:e7: + 53:46:75:aa:b0:79:42:cb:68:71:08:e9:60:bd:39: + 69:ce:f4:af:c3:56:40:c7:ad:52:a2:09:e4:6f:86: + 47:8a:1f:eb:28:27:5d:83:20:af:04:c9:6c:56:9a: + 8b:46:f5 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + F7:7D:C5:FD:C4:E8:9A:1B:77:64:A7:F5:1D:A0:CC:BF:87:60:9A:6D + X509v3 Certificate Policies: + Policy: X509v3 Any Policy + CPS: http://www.cert.fnmt.es/dpcs/ + + Signature Algorithm: sha256WithRSAEncryption + 07:90:4a:df:f3:23:4e:f0:c3:9c:51:65:9b:9c:22:a2:8a:0c: + 85:f3:73:29:6b:4d:fe:01:e2:a9:0c:63:01:bf:04:67:a5:9d: + 98:5f:fd:01:13:fa:ec:9a:62:e9:86:fe:b6:62:d2:6e:4c:94: + fb:c0:75:45:7c:65:0c:f8:b2:37:cf:ac:0f:cf:8d:6f:f9:19: + f7:8f:ec:1e:f2:70:9e:f0:ca:b8:ef:b7:ff:76:37:76:5b:f6: + 6e:88:f3:af:62:32:22:93:0d:3a:6a:8e:14:66:0c:2d:53:74: + 57:65:1e:d5:b2:dd:23:81:3b:a5:66:23:27:67:09:8f:e1:77: + aa:43:cd:65:51:08:ed:51:58:fe:e6:39:f9:cb:47:84:a4:15: + f1:76:bb:a4:ee:a4:3b:c4:5f:ef:b2:33:96:11:18:b7:c9:65: + be:18:e1:a3:a4:dc:fa:18:f9:d3:bc:13:9b:39:7a:34:ba:d3: + 41:fb:fa:32:8a:2a:b7:2b:86:0b:69:83:38:be:cd:8a:2e:0b: + 70:ad:8d:26:92:ee:1e:f5:01:2b:0a:d9:d6:97:9b:6e:e0:a8: + 19:1c:3a:21:8b:0c:1e:40:ad:03:e7:dd:66:7e:f5:b9:20:0d: + 03:e8:96:f9:82:45:d4:39:e0:a0:00:5d:d7:98:e6:7d:9e:67: + 73:c3:9a:2a:f7:ab:8b:a1:3a:14:ef:34:bc:52:0e:89:98:9a: + 04:40:84:1d:7e:45:69:93:57:ce:eb:ce:f8:50:7c:4f:1c:6e: + 04:43:9b:f9:d6:3b:23:18:e9:ea:8e:d1:4d:46:8d:f1:3b:e4: + 6a:ca:ba:fb:23:b7:9b:fa:99:01:29:5a:58:5a:2d:e3:f9:d4: + 6d:0e:26:ad:c1:6e:34:bc:32:f8:0c:05:fa:65:a3:db:3b:37: + 83:22:e9:d6:dc:72:33:fd:5d:f2:20:bd:76:3c:23:da:28:f7: + f9:1b:eb:59:64:d5:dc:5f:72:7e:20:fc:cd:89:b5:90:67:4d: + 62:7a:3f:4e:ad:1d:c3:39:fe:7a:f4:28:16:df:41:f6:48:80: + 05:d7:0f:51:79:ac:10:ab:d4:ec:03:66:e6:6a:b0:ba:31:92: + 42:40:6a:be:3a:d3:72:e1:6a:37:55:bc:ac:1d:95:b7:69:61: + f2:43:91:74:e6:a0:d3:0a:24:46:a1:08:af:d6:da:45:19:96: + d4:53:1d:5b:84:79:f0:c0:f7:47:ef:8b:8f:c5:06:ae:9d:4c: + 62:9d:ff:46:04:f8:d3:c9:b6:10:25:40:75:fe:16:aa:c9:4a: + 60:86:2f:ba:ef:30:77:e4:54:e2:b8:84:99:58:80:aa:13:8b: + 51:3a:4f:48:f6:8b:b6:b3 +SHA1 Fingerprint=EC:50:35:07:B2:15:C4:95:62:19:E2:A8:9A:5B:42:99:2C:4C:2C:20 diff --git a/system/etc/security/cacerts/bc3f2570.0 b/system/etc/security/cacerts/bc3f2570.0 new file mode 100644 index 0000000000000000000000000000000000000000..b8fd42607287f86510a4f02e4c46ffb3ff02471a --- /dev/null +++ b/system/etc/security/cacerts/bc3f2570.0 @@ -0,0 +1,80 @@ +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoT +EUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRp +ZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIz +NTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQH +EwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8GA1UE +AxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIw +DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKD +E6bFIEMBO4Tx5oVJnyfq9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH +/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD+qK+ihVqf94Lw7YZFAXK6sOoBJQ7Rnwy +DfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutdfMh8+7ArU6SSYmlRJQVh +GkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMlNAJWJwGR +tDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEA +AaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE +FDqahQcQZyi27/a9BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmX +WWcDYfF+OwYxdS2hII5PZYe096acvNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu +9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r5N9ss4UXnT3ZJE95kTXWXwTr +gIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYVN8Gb5DKj7Tjo +2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO +LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI +4uJEvlz36hz1 +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 0 (0x0) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=US, ST=Arizona, L=Scottsdale, O=GoDaddy.com, Inc., CN=Go Daddy Root Certificate Authority - G2 + Validity + Not Before: Sep 1 00:00:00 2009 GMT + Not After : Dec 31 23:59:59 2037 GMT + Subject: C=US, ST=Arizona, L=Scottsdale, O=GoDaddy.com, Inc., CN=Go Daddy Root Certificate Authority - G2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:bf:71:62:08:f1:fa:59:34:f7:1b:c9:18:a3:f7: + 80:49:58:e9:22:83:13:a6:c5:20:43:01:3b:84:f1: + e6:85:49:9f:27:ea:f6:84:1b:4e:a0:b4:db:70:98: + c7:32:01:b1:05:3e:07:4e:ee:f4:fa:4f:2f:59:30: + 22:e7:ab:19:56:6b:e2:80:07:fc:f3:16:75:80:39: + 51:7b:e5:f9:35:b6:74:4e:a9:8d:82:13:e4:b6:3f: + a9:03:83:fa:a2:be:8a:15:6a:7f:de:0b:c3:b6:19: + 14:05:ca:ea:c3:a8:04:94:3b:46:7c:32:0d:f3:00: + 66:22:c8:8d:69:6d:36:8c:11:18:b7:d3:b2:1c:60: + b4:38:fa:02:8c:ce:d3:dd:46:07:de:0a:3e:eb:5d: + 7c:c8:7c:fb:b0:2b:53:a4:92:62:69:51:25:05:61: + 1a:44:81:8c:2c:a9:43:96:23:df:ac:3a:81:9a:0e: + 29:c5:1c:a9:e9:5d:1e:b6:9e:9e:30:0a:39:ce:f1: + 88:80:fb:4b:5d:cc:32:ec:85:62:43:25:34:02:56: + 27:01:91:b4:3b:70:2a:3f:6e:b1:e8:9c:88:01:7d: + 9f:d4:f9:db:53:6d:60:9d:bf:2c:e7:58:ab:b8:5f: + 46:fc:ce:c4:1b:03:3c:09:eb:49:31:5c:69:46:b3: + e0:47 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + 3A:9A:85:07:10:67:28:B6:EF:F6:BD:05:41:6E:20:C1:94:DA:0F:DE + Signature Algorithm: sha256WithRSAEncryption + 99:db:5d:79:d5:f9:97:59:67:03:61:f1:7e:3b:06:31:75:2d: + a1:20:8e:4f:65:87:b4:f7:a6:9c:bc:d8:e9:2f:d0:db:5a:ee: + cf:74:8c:73:b4:38:42:da:05:7b:f8:02:75:b8:fd:a5:b1:d7: + ae:f6:d7:de:13:cb:53:10:7e:8a:46:d1:97:fa:b7:2e:2b:11: + ab:90:b0:27:80:f9:e8:9f:5a:e9:37:9f:ab:e4:df:6c:b3:85: + 17:9d:3d:d9:24:4f:79:91:35:d6:5f:04:eb:80:83:ab:9a:02: + 2d:b5:10:f4:d8:90:c7:04:73:40:ed:72:25:a0:a9:9f:ec:9e: + ab:68:12:99:57:c6:8f:12:3a:09:a4:bd:44:fd:06:15:37:c1: + 9b:e4:32:a3:ed:38:e8:d8:64:f3:2c:7e:14:fc:02:ea:9f:cd: + ff:07:68:17:db:22:90:38:2d:7a:8d:d1:54:f1:69:e3:5f:33: + ca:7a:3d:7b:0a:e3:ca:7f:5f:39:e5:e2:75:ba:c5:76:18:33: + ce:2c:f0:2f:4c:ad:f7:b1:e7:ce:4f:a8:c4:9b:4a:54:06:c5: + 7f:7d:d5:08:0f:e2:1c:fe:7e:17:b8:ac:5e:f6:d4:16:b2:43: + 09:0c:4d:f6:a7:6b:b4:99:84:65:ca:7a:88:e2:e2:44:be:5c: + f7:ea:1c:f5 +SHA1 Fingerprint=47:BE:AB:C9:22:EA:E8:0E:78:78:34:62:A7:9F:45:C2:54:FD:E6:8B diff --git a/system/etc/security/cacerts/bdacca6f.0 b/system/etc/security/cacerts/bdacca6f.0 new file mode 100644 index 0000000000000000000000000000000000000000..f08bdcf6e682cd043d872d0b94562057e69f1d04 --- /dev/null +++ b/system/etc/security/cacerts/bdacca6f.0 @@ -0,0 +1,89 @@ +-----BEGIN CERTIFICATE----- +MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBK +MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x +GTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkx +MjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3Qg +Q29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwggEiMA0GCSqG +SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jxYDiJ +iQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa +/FHtaMbQbqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJ +jnIFHovdRIWCQtBJwB1g8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnI +HmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYVHDGA76oYa8J719rO+TMg1fW9ajMtgQT7 +sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi0XPnj3pDAgMBAAGjgZ0w +gZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCsw +KaAnoCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsG +AQQBgjcVAQQDAgEAMA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0L +URYD7xh8yOOvaliTFGCRsoTciE6+OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXO +H0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cnCDpOGR86p1hcF895P4vkp9Mm +I50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/53CYNv6ZHdAbY +iNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc +f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 07:56:22:a4:e8:d4:8a:89:4d:f4:13:c8:f0:f8:ea:a5 + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=US, O=SecureTrust Corporation, CN=Secure Global CA + Validity + Not Before: Nov 7 19:42:28 2006 GMT + Not After : Dec 31 19:52:06 2029 GMT + Subject: C=US, O=SecureTrust Corporation, CN=Secure Global CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:af:35:2e:d8:ac:6c:55:69:06:71:e5:13:68:24: + b3:4f:d8:cc:21:47:f8:f1:60:38:89:89:03:e9:bd: + ea:5e:46:53:09:dc:5c:f5:5a:e8:f7:45:2a:02:eb: + 31:61:d7:29:33:4c:ce:c7:7c:0a:37:7e:0f:ba:32: + 98:e1:1d:97:af:8f:c7:dc:c9:38:96:f3:db:1a:fc: + 51:ed:68:c6:d0:6e:a4:7c:24:d1:ae:42:c8:96:50: + 63:2e:e0:fe:75:fe:98:a7:5f:49:2e:95:e3:39:33: + 64:8e:1e:a4:5f:90:d2:67:3c:b2:d9:fe:41:b9:55: + a7:09:8e:72:05:1e:8b:dd:44:85:82:42:d0:49:c0: + 1d:60:f0:d1:17:2c:95:eb:f6:a5:c1:92:a3:c5:c2: + a7:08:60:0d:60:04:10:96:79:9e:16:34:e6:a9:b6: + fa:25:45:39:c8:1e:65:f9:93:f5:aa:f1:52:dc:99: + 98:3d:a5:86:1a:0c:35:33:fa:4b:a5:04:06:15:1c: + 31:80:ef:aa:18:6b:c2:7b:d7:da:ce:f9:33:20:d5: + f5:bd:6a:33:2d:81:04:fb:b0:5c:d4:9c:a3:e2:5c: + 1d:e3:a9:42:75:5e:7b:d4:77:ef:39:54:ba:c9:0a: + 18:1b:12:99:49:2f:88:4b:fd:50:62:d1:73:e7:8f: + 7a:43 + Exponent: 65537 (0x10001) + X509v3 extensions: + 1.3.6.1.4.1.311.20.2: + ...C.A + X509v3 Key Usage: + Digital Signature, Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + AF:44:04:C2:41:7E:48:83:DB:4E:39:02:EC:EC:84:7A:E6:CE:C9:A4 + X509v3 CRL Distribution Points: + + Full Name: + URI:http://crl.securetrust.com/SGCA.crl + + 1.3.6.1.4.1.311.21.1: + ... + Signature Algorithm: sha1WithRSAEncryption + 63:1a:08:40:7d:a4:5e:53:0d:77:d8:7a:ae:1f:0d:0b:51:16: + 03:ef:18:7c:c8:e3:af:6a:58:93:14:60:91:b2:84:dc:88:4e: + be:39:8a:3a:f3:e6:82:89:5d:01:37:b3:ab:24:a4:15:0e:92: + 35:5a:4a:44:5e:4e:57:fa:75:ce:1f:48:ce:66:f4:3c:40:26: + 92:98:6c:1b:ee:24:46:0c:17:b3:52:a5:db:a5:91:91:cf:37: + d3:6f:e7:27:08:3a:4e:19:1f:3a:a7:58:5c:17:cf:79:3f:8b: + e4:a7:d3:26:23:9d:26:0f:58:69:fc:47:7e:b2:d0:8d:8b:93: + bf:29:4f:43:69:74:76:67:4b:cf:07:8c:e6:02:f7:b5:e1:b4: + 43:b5:4b:2d:14:9f:f9:dc:26:0d:bf:a6:47:74:06:d8:88:d1: + 3a:29:30:84:ce:d2:39:80:62:1b:a8:c7:57:49:bc:6a:55:51: + 67:15:4a:be:35:07:e4:d5:75:98:37:79:30:14:db:29:9d:6c: + c5:69:cc:47:55:a2:30:f7:cc:5c:7f:c2:c3:98:1c:6b:4e:16: + 80:eb:7a:78:65:45:a2:00:1a:af:0c:0d:55:64:34:48:b8:92: + b9:f1:b4:50:29:f2:4f:23:1f:da:6c:ac:1f:44:e1:dd:23:78: + 51:5b:c7:16 +SHA1 Fingerprint=3A:44:73:5A:E5:81:90:1F:24:86:61:46:1E:3B:9C:C4:5F:F5:3A:1B diff --git a/system/etc/security/cacerts/bf64f35b.0 b/system/etc/security/cacerts/bf64f35b.0 new file mode 100644 index 0000000000000000000000000000000000000000..f75710b32edf79447afeeb0178ab7d1f4a1611fc --- /dev/null +++ b/system/etc/security/cacerts/bf64f35b.0 @@ -0,0 +1,91 @@ +-----BEGIN CERTIFICATE----- +MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0 +Lm5ldC9DUFMgaXMgaW5jb3Jwb3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMW +KGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsGA1UEAxMkRW50cnVzdCBSb290IENl +cnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0MloXDTI2MTEyNzIw +NTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMTkw +NwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSBy +ZWZlcmVuY2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNV +BAMTJEVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJ +KoZIhvcNAQEBBQADggEPADCCAQoCggEBALaVtkNC+sZtKm9I35RMOVcF7sN5EUFo +Nu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYszA9u3g3s+IIRe7bJWKKf4 +4LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOwwCj0Yzfv9 +KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGI +rb68j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi +94DkZfs0Nw4pgHBNrziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOB +sDCBrTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAi +gA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1MzQyWjAfBgNVHSMEGDAWgBRo +kORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DHhmak8fdLQ/uE +vW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA +A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9t +O1KzKtvn1ISMY/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6Zua +AGAT/3B+XxFNSRuzFVJ7yVTav52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP +9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTSW3iDVuycNsMm4hH2Z0kdkquM++v/ +eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0tHuu2guQOHXvgR1m +0vdXcDazv/wor3ElhVsT/h5/WrQ8 +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 1164660820 (0x456b5054) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=US, O=Entrust, Inc., OU=www.entrust.net/CPS is incorporated by reference, OU=(c) 2006 Entrust, Inc., CN=Entrust Root Certification Authority + Validity + Not Before: Nov 27 20:23:42 2006 GMT + Not After : Nov 27 20:53:42 2026 GMT + Subject: C=US, O=Entrust, Inc., OU=www.entrust.net/CPS is incorporated by reference, OU=(c) 2006 Entrust, Inc., CN=Entrust Root Certification Authority + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:b6:95:b6:43:42:fa:c6:6d:2a:6f:48:df:94:4c: + 39:57:05:ee:c3:79:11:41:68:36:ed:ec:fe:9a:01: + 8f:a1:38:28:fc:f7:10:46:66:2e:4d:1e:1a:b1:1a: + 4e:c6:d1:c0:95:88:b0:c9:ff:31:8b:33:03:db:b7: + 83:7b:3e:20:84:5e:ed:b2:56:28:a7:f8:e0:b9:40: + 71:37:c5:cb:47:0e:97:2a:68:c0:22:95:62:15:db: + 47:d9:f5:d0:2b:ff:82:4b:c9:ad:3e:de:4c:db:90: + 80:50:3f:09:8a:84:00:ec:30:0a:3d:18:cd:fb:fd: + 2a:59:9a:23:95:17:2c:45:9e:1f:6e:43:79:6d:0c: + 5c:98:fe:48:a7:c5:23:47:5c:5e:fd:6e:e7:1e:b4: + f6:68:45:d1:86:83:5b:a2:8a:8d:b1:e3:29:80:fe: + 25:71:88:ad:be:bc:8f:ac:52:96:4b:aa:51:8d:e4: + 13:31:19:e8:4e:4d:9f:db:ac:b3:6a:d5:bc:39:54: + 71:ca:7a:7a:7f:90:dd:7d:1d:80:d9:81:bb:59:26: + c2:11:fe:e6:93:e2:f7:80:e4:65:fb:34:37:0e:29: + 80:70:4d:af:38:86:2e:9e:7f:57:af:9e:17:ae:eb: + 1c:cb:28:21:5f:b6:1c:d8:e7:a2:04:22:f9:d3:da: + d8:cb + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Private Key Usage Period: + Not Before: Nov 27 20:23:42 2006 GMT, Not After: Nov 27 20:53:42 2026 GMT + X509v3 Authority Key Identifier: + keyid:68:90:E4:67:A4:A6:53:80:C7:86:66:A4:F1:F7:4B:43:FB:84:BD:6D + + X509v3 Subject Key Identifier: + 68:90:E4:67:A4:A6:53:80:C7:86:66:A4:F1:F7:4B:43:FB:84:BD:6D + 1.2.840.113533.7.65.0: + 0...V7.1:4.0.... + Signature Algorithm: sha1WithRSAEncryption + 93:d4:30:b0:d7:03:20:2a:d0:f9:63:e8:91:0c:05:20:a9:5f: + 19:ca:7b:72:4e:d4:b1:db:d0:96:fb:54:5a:19:2c:0c:08:f7: + b2:bc:85:a8:9d:7f:6d:3b:52:b3:2a:db:e7:d4:84:8c:63:f6: + 0f:cb:26:01:91:50:6c:f4:5f:14:e2:93:74:c0:13:9e:30:3a: + 50:e3:b4:60:c5:1c:f0:22:44:8d:71:47:ac:c8:1a:c9:e9:9b: + 9a:00:60:13:ff:70:7e:5f:11:4d:49:1b:b3:15:52:7b:c9:54: + da:bf:9d:95:af:6b:9a:d8:9e:e9:f1:e4:43:8d:e2:11:44:3a: + bf:af:bd:83:42:73:52:8b:aa:bb:a7:29:cf:f5:64:1c:0a:4d: + d1:bc:aa:ac:9f:2a:d0:ff:7f:7f:da:7d:ea:b1:ed:30:25:c1: + 84:da:34:d2:5b:78:83:56:ec:9c:36:c3:26:e2:11:f6:67:49: + 1d:92:ab:8c:fb:eb:ff:7a:ee:85:4a:a7:50:80:f0:a7:5c:4a: + 94:2e:5f:05:99:3c:52:41:e0:cd:b4:63:cf:01:43:ba:9c:83: + dc:8f:60:3b:f3:5a:b4:b4:7b:ae:da:0b:90:38:75:ef:81:1d: + 66:d2:f7:57:70:36:b3:bf:fc:28:af:71:25:85:5b:13:fe:1e: + 7f:5a:b4:3c +SHA1 Fingerprint=B3:1E:B1:B7:40:E3:6C:84:02:DA:DC:37:D4:4D:F5:D4:67:49:52:F9 diff --git a/system/etc/security/cacerts/c491639e.0 b/system/etc/security/cacerts/c491639e.0 new file mode 100644 index 0000000000000000000000000000000000000000..ec9e42242473fee5b503f7f91772202841c79cb9 --- /dev/null +++ b/system/etc/security/cacerts/c491639e.0 @@ -0,0 +1,53 @@ +-----BEGIN CERTIFICATE----- +MIICRjCCAc2gAwIBAgIQC6Fa+h3foLVJRK/NJKBs7DAKBggqhkjOPQQDAzBlMQsw +CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu +ZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3Qg +RzMwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu +Y29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwdjAQBgcq +hkjOPQIBBgUrgQQAIgNiAAQZ57ysRGXtzbg/WPuNsVepRC0FFfLvC/8QdJ+1YlJf +Zn4f5dwbRXkLzMZTCp2NXQLZqVneAlr2lSoOjThKiknGvMYDOAdfVdp+CW7if17Q +RSAPWXYQ1qAk8C3eNvJsKTmjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ +BAQDAgGGMB0GA1UdDgQWBBTL0L2p4ZgFUaFNN6KDec6NHSrkhDAKBggqhkjOPQQD +AwNnADBkAjAlpIFFAmsSS3V0T8gj43DydXLefInwz5FyYZ5eEJJZVrmDxxDnOOlY +JjZ91eQ0hjkCMHw2U/Aw5WJjOpnitqM7mzT6HtoQknFekROn3aRukswy1vUhZscv +6pZjamVFkpUBtA== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 0b:a1:5a:fa:1d:df:a0:b5:49:44:af:cd:24:a0:6c:ec + Signature Algorithm: ecdsa-with-SHA384 + Issuer: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert Assured ID Root G3 + Validity + Not Before: Aug 1 12:00:00 2013 GMT + Not After : Jan 15 12:00:00 2038 GMT + Subject: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert Assured ID Root G3 + Subject Public Key Info: + Public Key Algorithm: id-ecPublicKey + Public-Key: (384 bit) + pub: + 04:19:e7:bc:ac:44:65:ed:cd:b8:3f:58:fb:8d:b1: + 57:a9:44:2d:05:15:f2:ef:0b:ff:10:74:9f:b5:62: + 52:5f:66:7e:1f:e5:dc:1b:45:79:0b:cc:c6:53:0a: + 9d:8d:5d:02:d9:a9:59:de:02:5a:f6:95:2a:0e:8d: + 38:4a:8a:49:c6:bc:c6:03:38:07:5f:55:da:7e:09: + 6e:e2:7f:5e:d0:45:20:0f:59:76:10:d6:a0:24:f0: + 2d:de:36:f2:6c:29:39 + ASN1 OID: secp384r1 + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Digital Signature, Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + CB:D0:BD:A9:E1:98:05:51:A1:4D:37:A2:83:79:CE:8D:1D:2A:E4:84 + Signature Algorithm: ecdsa-with-SHA384 + 30:64:02:30:25:a4:81:45:02:6b:12:4b:75:74:4f:c8:23:e3: + 70:f2:75:72:de:7c:89:f0:cf:91:72:61:9e:5e:10:92:59:56: + b9:83:c7:10:e7:38:e9:58:26:36:7d:d5:e4:34:86:39:02:30: + 7c:36:53:f0:30:e5:62:63:3a:99:e2:b6:a3:3b:9b:34:fa:1e: + da:10:92:71:5e:91:13:a7:dd:a4:6e:92:cc:32:d6:f5:21:66: + c7:2f:ea:96:63:6a:65:45:92:95:01:b4 +SHA1 Fingerprint=F5:17:A2:4F:9A:48:C6:C9:F8:A2:00:26:9F:DC:0F:48:2C:AB:30:89 diff --git a/system/etc/security/cacerts/c51c224c.0 b/system/etc/security/cacerts/c51c224c.0 new file mode 100644 index 0000000000000000000000000000000000000000..6bf7f224e2db37e4bebdad644b94f01e82b1f144 --- /dev/null +++ b/system/etc/security/cacerts/c51c224c.0 @@ -0,0 +1,80 @@ +-----BEGIN CERTIFICATE----- +MIIDZzCCAk+gAwIBAgIQGx+ttiD5JNM2a/fH8YygWTANBgkqhkiG9w0BAQUFADBF +MQswCQYDVQQGEwJHQjEYMBYGA1UEChMPVHJ1c3RpcyBMaW1pdGVkMRwwGgYDVQQL +ExNUcnVzdGlzIEZQUyBSb290IENBMB4XDTAzMTIyMzEyMTQwNloXDTI0MDEyMTEx +MzY1NFowRTELMAkGA1UEBhMCR0IxGDAWBgNVBAoTD1RydXN0aXMgTGltaXRlZDEc +MBoGA1UECxMTVHJ1c3RpcyBGUFMgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQAD +ggEPADCCAQoCggEBAMVQe547NdDfxIzNjpvto8A2mfRC6qc+gIMPpqdZh8mQRUN+ +AOqGeSoDvT03mYlmt+WKVoaTnGhLaASMk5MCPjDSNzoiYYkchU59j9WvezX2fihH +iTHcDnlkH5nSW7r+f2C/revnPDgpai/lkQtV/+xvWNUtyd5MZnGPDNcE2gfmHhjj +vSkCqPoc4Vu5g6hBSLwacY3nYuUtsuvffM/bq1rKMfFMIvMFE/eC+XN5DL7XSxzA +0RU8k0Fk0ea+IxciAIleH2ulrG6nS4zto3Lmr2NNL4XSFDWaLk6M6jKYKIahkQlB +OrTh4/L68MkKokHdqeMDx4gVOxzUGpTXn2RZEm0CAwEAAaNTMFEwDwYDVR0TAQH/ +BAUwAwEB/zAfBgNVHSMEGDAWgBS6+nEleYtXQSUhhgtx67JkDoshZzAdBgNVHQ4E +FgQUuvpxJXmLV0ElIYYLceuyZA6LIWcwDQYJKoZIhvcNAQEFBQADggEBAH5Y//01 +GX2cGE+esCu8jowU/yyg2kdbw++BLa8F6nRIW/M+TgfHbcWzk88iNVy2P3UnXwmW +zaD+vkAMXBJV+JOCyinpXj9WV4s4NvdFGkwozZ5BuO1WTISkQMi4sKUraXAEasP4 +1BIy+Q7DsdwyhEQsb8tGD+pmQQ9P8Vilpg0ND2HepZ5dfWWhPBfnqFVO76DH7cZE +f1T1o+CP8HxVIo8ptoGj4W1OLBuAZ+ytIJ8MYmHVl/9D7S3B2l0pKoU/rGXuhg8F +jZBf3+6f9L/uHfuY5H+QK4R4EA5sSVPvFVtlRkpdr7r7OnIdzfYliB6XzCGcKQEN +ZetX2fNXlrtIzYE= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 1b:1f:ad:b6:20:f9:24:d3:36:6b:f7:c7:f1:8c:a0:59 + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=GB, O=Trustis Limited, OU=Trustis FPS Root CA + Validity + Not Before: Dec 23 12:14:06 2003 GMT + Not After : Jan 21 11:36:54 2024 GMT + Subject: C=GB, O=Trustis Limited, OU=Trustis FPS Root CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:c5:50:7b:9e:3b:35:d0:df:c4:8c:cd:8e:9b:ed: + a3:c0:36:99:f4:42:ea:a7:3e:80:83:0f:a6:a7:59: + 87:c9:90:45:43:7e:00:ea:86:79:2a:03:bd:3d:37: + 99:89:66:b7:e5:8a:56:86:93:9c:68:4b:68:04:8c: + 93:93:02:3e:30:d2:37:3a:22:61:89:1c:85:4e:7d: + 8f:d5:af:7b:35:f6:7e:28:47:89:31:dc:0e:79:64: + 1f:99:d2:5b:ba:fe:7f:60:bf:ad:eb:e7:3c:38:29: + 6a:2f:e5:91:0b:55:ff:ec:6f:58:d5:2d:c9:de:4c: + 66:71:8f:0c:d7:04:da:07:e6:1e:18:e3:bd:29:02: + a8:fa:1c:e1:5b:b9:83:a8:41:48:bc:1a:71:8d:e7: + 62:e5:2d:b2:eb:df:7c:cf:db:ab:5a:ca:31:f1:4c: + 22:f3:05:13:f7:82:f9:73:79:0c:be:d7:4b:1c:c0: + d1:15:3c:93:41:64:d1:e6:be:23:17:22:00:89:5e: + 1f:6b:a5:ac:6e:a7:4b:8c:ed:a3:72:e6:af:63:4d: + 2f:85:d2:14:35:9a:2e:4e:8c:ea:32:98:28:86:a1: + 91:09:41:3a:b4:e1:e3:f2:fa:f0:c9:0a:a2:41:dd: + a9:e3:03:c7:88:15:3b:1c:d4:1a:94:d7:9f:64:59: + 12:6d + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Authority Key Identifier: + keyid:BA:FA:71:25:79:8B:57:41:25:21:86:0B:71:EB:B2:64:0E:8B:21:67 + + X509v3 Subject Key Identifier: + BA:FA:71:25:79:8B:57:41:25:21:86:0B:71:EB:B2:64:0E:8B:21:67 + Signature Algorithm: sha1WithRSAEncryption + 7e:58:ff:fd:35:19:7d:9c:18:4f:9e:b0:2b:bc:8e:8c:14:ff: + 2c:a0:da:47:5b:c3:ef:81:2d:af:05:ea:74:48:5b:f3:3e:4e: + 07:c7:6d:c5:b3:93:cf:22:35:5c:b6:3f:75:27:5f:09:96:cd: + a0:fe:be:40:0c:5c:12:55:f8:93:82:ca:29:e9:5e:3f:56:57: + 8b:38:36:f7:45:1a:4c:28:cd:9e:41:b8:ed:56:4c:84:a4:40: + c8:b8:b0:a5:2b:69:70:04:6a:c3:f8:d4:12:32:f9:0e:c3:b1: + dc:32:84:44:2c:6f:cb:46:0f:ea:66:41:0f:4f:f1:58:a5:a6: + 0d:0d:0f:61:de:a5:9e:5d:7d:65:a1:3c:17:e7:a8:55:4e:ef: + a0:c7:ed:c6:44:7f:54:f5:a3:e0:8f:f0:7c:55:22:8f:29:b6: + 81:a3:e1:6d:4e:2c:1b:80:67:ec:ad:20:9f:0c:62:61:d5:97: + ff:43:ed:2d:c1:da:5d:29:2a:85:3f:ac:65:ee:86:0f:05:8d: + 90:5f:df:ee:9f:f4:bf:ee:1d:fb:98:e4:7f:90:2b:84:78:10: + 0e:6c:49:53:ef:15:5b:65:46:4a:5d:af:ba:fb:3a:72:1d:cd: + f6:25:88:1e:97:cc:21:9c:29:01:0d:65:eb:57:d9:f3:57:96: + bb:48:cd:81 +SHA1 Fingerprint=3B:C0:38:0B:33:C3:F6:A6:0C:86:15:22:93:D9:DF:F5:4B:81:C0:04 diff --git a/system/etc/security/cacerts/c7e2a638.0 b/system/etc/security/cacerts/c7e2a638.0 new file mode 100644 index 0000000000000000000000000000000000000000..c5a3c92898e155a708f56e844b37c6c74e01846f --- /dev/null +++ b/system/etc/security/cacerts/c7e2a638.0 @@ -0,0 +1,82 @@ +-----BEGIN CERTIFICATE----- +MIID/jCCAuagAwIBAgIQFaxulBmyeUtB9iepwxgPHzANBgkqhkiG9w0BAQsFADCB +mDELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsT +MChjKSAyMDA4IEdlb1RydXN0IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25s +eTE2MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhv +cml0eSAtIEczMB4XDTA4MDQwMjAwMDAwMFoXDTM3MTIwMTIzNTk1OVowgZgxCzAJ +BgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAoYykg +MjAwOCBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0 +BgNVBAMTLUdlb1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg +LSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANziXmJYHTNXOTIz ++uvLh4yn1ErdBojqZI4xmKU4kB6Yzy5jK/BGvESyiaHAKAxJcCGVn2TAppMSAmUm +hsalifD614SgcK9PGpc/BkTVyetyEH3kMSj7HGHmKAdEc5IiaacDiGydY8hS2pgn +5whMcD60yRLBxWeDXTPzAxHsatBT4tG6NmCUgLthY2xbF37fQJQeqw3CIShwiP/W +JmxsYAQlTlV+fe+/lEjetx3dcI0FX4ilm/LC7urRQEFtYjgdVgbFA0dRIBn8exAL +DmKudlW/X3e+PkkBUz2YJQN2JFodtNuJ6nnltrM7P7pMKEF/BqxqjsHQ9gUdfeZC +huOl1UcCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYw +HQYDVR0OBBYEFMR5yo6hTgMdHNxr2zFblD4/MH8tMA0GCSqGSIb3DQEBCwUAA4IB +AQAtxRPPVoB7eni9n64smefv2t+UXglpp+duaIy9cr5HqQ6XErhK8WTTOd8lNNTB +zU6B8A8ExCSzNJbGpqow32hhc9f5joWJ7w5elShKKiePEI4ufIbEAp7aDHdlDkQN +kv39sxY2+hENHYwOB4lqKVb3cvTdFZx3NWZXqxNT2I7BQMXXExZacse3aQHEerGD +AWh9jUGhlBjBJVz88P6DAod8DQ3PLghcSkANPuyBYeYk28rgDi0Hsj5W3I31QYUH +SJsMC8tJP33st/3LjWeJGqvtux6jAAgIFyqCXDFdRootD4abdNlF+9RAsXqqaC2G +spki4cErx5z481+oghLrGREt +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 15:ac:6e:94:19:b2:79:4b:41:f6:27:a9:c3:18:0f:1f + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=US, O=GeoTrust Inc., OU=(c) 2008 GeoTrust Inc. - For authorized use only, CN=GeoTrust Primary Certification Authority - G3 + Validity + Not Before: Apr 2 00:00:00 2008 GMT + Not After : Dec 1 23:59:59 2037 GMT + Subject: C=US, O=GeoTrust Inc., OU=(c) 2008 GeoTrust Inc. - For authorized use only, CN=GeoTrust Primary Certification Authority - G3 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:dc:e2:5e:62:58:1d:33:57:39:32:33:fa:eb:cb: + 87:8c:a7:d4:4a:dd:06:88:ea:64:8e:31:98:a5:38: + 90:1e:98:cf:2e:63:2b:f0:46:bc:44:b2:89:a1:c0: + 28:0c:49:70:21:95:9f:64:c0:a6:93:12:02:65:26: + 86:c6:a5:89:f0:fa:d7:84:a0:70:af:4f:1a:97:3f: + 06:44:d5:c9:eb:72:10:7d:e4:31:28:fb:1c:61:e6: + 28:07:44:73:92:22:69:a7:03:88:6c:9d:63:c8:52: + da:98:27:e7:08:4c:70:3e:b4:c9:12:c1:c5:67:83: + 5d:33:f3:03:11:ec:6a:d0:53:e2:d1:ba:36:60:94: + 80:bb:61:63:6c:5b:17:7e:df:40:94:1e:ab:0d:c2: + 21:28:70:88:ff:d6:26:6c:6c:60:04:25:4e:55:7e: + 7d:ef:bf:94:48:de:b7:1d:dd:70:8d:05:5f:88:a5: + 9b:f2:c2:ee:ea:d1:40:41:6d:62:38:1d:56:06:c5: + 03:47:51:20:19:fc:7b:10:0b:0e:62:ae:76:55:bf: + 5f:77:be:3e:49:01:53:3d:98:25:03:76:24:5a:1d: + b4:db:89:ea:79:e5:b6:b3:3b:3f:ba:4c:28:41:7f: + 06:ac:6a:8e:c1:d0:f6:05:1d:7d:e6:42:86:e3:a5: + d5:47 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + C4:79:CA:8E:A1:4E:03:1D:1C:DC:6B:DB:31:5B:94:3E:3F:30:7F:2D + Signature Algorithm: sha256WithRSAEncryption + 2d:c5:13:cf:56:80:7b:7a:78:bd:9f:ae:2c:99:e7:ef:da:df: + 94:5e:09:69:a7:e7:6e:68:8c:bd:72:be:47:a9:0e:97:12:b8: + 4a:f1:64:d3:39:df:25:34:d4:c1:cd:4e:81:f0:0f:04:c4:24: + b3:34:96:c6:a6:aa:30:df:68:61:73:d7:f9:8e:85:89:ef:0e: + 5e:95:28:4a:2a:27:8f:10:8e:2e:7c:86:c4:02:9e:da:0c:77: + 65:0e:44:0d:92:fd:fd:b3:16:36:fa:11:0d:1d:8c:0e:07:89: + 6a:29:56:f7:72:f4:dd:15:9c:77:35:66:57:ab:13:53:d8:8e: + c1:40:c5:d7:13:16:5a:72:c7:b7:69:01:c4:7a:b1:83:01:68: + 7d:8d:41:a1:94:18:c1:25:5c:fc:f0:fe:83:02:87:7c:0d:0d: + cf:2e:08:5c:4a:40:0d:3e:ec:81:61:e6:24:db:ca:e0:0e:2d: + 07:b2:3e:56:dc:8d:f5:41:85:07:48:9b:0c:0b:cb:49:3f:7d: + ec:b7:fd:cb:8d:67:89:1a:ab:ed:bb:1e:a3:00:08:08:17:2a: + 82:5c:31:5d:46:8a:2d:0f:86:9b:74:d9:45:fb:d4:40:b1:7a: + aa:68:2d:86:b2:99:22:e1:c1:2b:c7:9c:f8:f3:5f:a8:82:12: + eb:19:11:2d +SHA1 Fingerprint=03:9E:ED:B8:0B:E7:A0:3C:69:53:89:3B:20:D2:D9:32:3A:4C:2A:FD diff --git a/system/etc/security/cacerts/c907e29b.0 b/system/etc/security/cacerts/c907e29b.0 new file mode 100644 index 0000000000000000000000000000000000000000..934468f3f1d374065735a681f753e1f0a074044d --- /dev/null +++ b/system/etc/security/cacerts/c907e29b.0 @@ -0,0 +1,129 @@ +-----BEGIN CERTIFICATE----- +MIIFwzCCA6ugAwIBAgIUCn6m30tEntpqJIWe5rgV0xZ/u7EwDQYJKoZIhvcNAQEL +BQAwRjELMAkGA1UEBhMCTFUxFjAUBgNVBAoMDUx1eFRydXN0IFMuQS4xHzAdBgNV +BAMMFkx1eFRydXN0IEdsb2JhbCBSb290IDIwHhcNMTUwMzA1MTMyMTU3WhcNMzUw +MzA1MTMyMTU3WjBGMQswCQYDVQQGEwJMVTEWMBQGA1UECgwNTHV4VHJ1c3QgUy5B +LjEfMB0GA1UEAwwWTHV4VHJ1c3QgR2xvYmFsIFJvb3QgMjCCAiIwDQYJKoZIhvcN +AQEBBQADggIPADCCAgoCggIBANeFl78RmOnwYoNMPIf5U2o3C/IPPIfOb9wmKb3F +ibrJgz337spbxm1Jc7TJRqMbNBM/wYlFV/TZsfs2ZUv7COJIcRHIbjuend+JZTem +hfY7RBi2xjcwYkSSl2l9QjAk5A0MiWtj3sXh306pFGxT4GHO9hcvHTy95iJMHZP1 +EMShduxq3sVs35a0VkBCwGKSMKEtFZSg0iAGCW5qbeXrt77U8PEVfIvmTroTzEsn +Xpk8F12PgX8zPU/TPxvsXD/wPEx1bvKm1Z3aLQdjAsZy6ZS8TEmVT4hSyNvoaYL4 +zDRbIvCGp4m9SAptZoFtyMhk+wHh9OHe2Z7d21vUKpkmFRseTJIpgp7VkoGSQXAZ +96Tlk0u8d2cx3Rz9MXANF5kM+Qw5GSoXtTBxVdUPrljhPS80m8+f9niFwpN6cj5m +j5wWEWCPnolvZ77gR1o7DJpni89Gxq44o/KnvObWhWszJHAiS8sIm7vI+AIpHb4g +DEa/a4ebsypmQjVGbKq6rfmYe+lQVRQxv7HaLe2ArWgk+2mr2HETMOZns4dA/Yl+ +8kPREd8vZS9kzl8UubG/Mb2HeFpZZYiq/FkySIbWTLkpS5XTdvN3JW1CHDiDTf2j +X5t/Lax5Gw5CMZdjpPuKadUiDTSQMC6otOBttpSsvItO13D8xTiOZCXhTTmQzsmH +hFhxAgMBAAGjgagwgaUwDwYDVR0TAQH/BAUwAwEB/zBCBgNVHSAEOzA5MDcGByuB +KwEBAQowLDAqBggrBgEFBQcCARYeaHR0cHM6Ly9yZXBvc2l0b3J5Lmx1eHRydXN0 +Lmx1MA4GA1UdDwEB/wQEAwIBBjAfBgNVHSMEGDAWgBT/GCh2+UgFLKGu8SsbK7JT ++Et8szAdBgNVHQ4EFgQU/xgodvlIBSyhrvErGyuyU/hLfLMwDQYJKoZIhvcNAQEL +BQADggIBAGoZFO1uecEsh9QNcH7X9njJCwROxLHOk3D+sFTAMs2ZMGQXvw/l4jP9 +BzZAcg4atmpZ1gDlaCDdLnINH2pkMSCEfUmmWjfrRcmF9dTHF5kH5ptV5AzoqbTO +jFu1EVzPig4N1qx3gf4ynCSecs5U89BvolbW7MM3LGVYvlcAGvI1+ut7MV3CwRI9 +loGIlonBWVx65n9wNOeD4rHh4bhY79SV5GCc8JaXcozrhAIuZY+kt9J/Z93I055c +qqmkoCUUBpvsT34tC38ddfEz2O3OuHVtPlu5mB0xDVbYQw8wkbIEa91WvpWAVWe+ +2M2D2RjuLg+GLZKecBPs3lHJQ3gCpU3I+V/EkVhGFndadKpAvAefMLmx9xIX3eP/ +JEAdemrRTxgKqpAd60Ae36EeRJIQmvKN4dFLRp7oRUKX6kWZ8+xm1QL68qZKJKre +zrnK+T+Tb/mjuuqlPpmt/f97mfVl7vBZKGfXkJWkE4SphMHozs51k2MavDzq1WQf +LSoSOcbDWjLtR5EWDrw4wVDej8oqkDQc7kGUnF4ZLvhFSZl0kbAEb+MEWrGrKqv+ +x9CWttrhSmQGbmBNvUJO/3jaJMobtNeWOWyu8Q6qp31IiyBMz2TWuJdGsE7RKlY6 +oJO9r4Ak4Ap+58rVyuiFVdw2KuGUaJPHZnJED4AhMmwlxyOAgwrr +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 0a:7e:a6:df:4b:44:9e:da:6a:24:85:9e:e6:b8:15:d3:16:7f:bb:b1 + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=LU, O=LuxTrust S.A., CN=LuxTrust Global Root 2 + Validity + Not Before: Mar 5 13:21:57 2015 GMT + Not After : Mar 5 13:21:57 2035 GMT + Subject: C=LU, O=LuxTrust S.A., CN=LuxTrust Global Root 2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:d7:85:97:bf:11:98:e9:f0:62:83:4c:3c:87:f9: + 53:6a:37:0b:f2:0f:3c:87:ce:6f:dc:26:29:bd:c5: + 89:ba:c9:83:3d:f7:ee:ca:5b:c6:6d:49:73:b4:c9: + 46:a3:1b:34:13:3f:c1:89:45:57:f4:d9:b1:fb:36: + 65:4b:fb:08:e2:48:71:11:c8:6e:3b:9e:9d:df:89: + 65:37:a6:85:f6:3b:44:18:b6:c6:37:30:62:44:92: + 97:69:7d:42:30:24:e4:0d:0c:89:6b:63:de:c5:e1: + df:4e:a9:14:6c:53:e0:61:ce:f6:17:2f:1d:3c:bd: + e6:22:4c:1d:93:f5:10:c4:a1:76:ec:6a:de:c5:6c: + df:96:b4:56:40:42:c0:62:92:30:a1:2d:15:94:a0: + d2:20:06:09:6e:6a:6d:e5:eb:b7:be:d4:f0:f1:15: + 7c:8b:e6:4e:ba:13:cc:4b:27:5e:99:3c:17:5d:8f: + 81:7f:33:3d:4f:d3:3f:1b:ec:5c:3f:f0:3c:4c:75: + 6e:f2:a6:d5:9d:da:2d:07:63:02:c6:72:e9:94:bc: + 4c:49:95:4f:88:52:c8:db:e8:69:82:f8:cc:34:5b: + 22:f0:86:a7:89:bd:48:0a:6d:66:81:6d:c8:c8:64: + fb:01:e1:f4:e1:de:d9:9e:dd:db:5b:d4:2a:99:26: + 15:1b:1e:4c:92:29:82:9e:d5:92:81:92:41:70:19: + f7:a4:e5:93:4b:bc:77:67:31:dd:1c:fd:31:70:0d: + 17:99:0c:f9:0c:39:19:2a:17:b5:30:71:55:d5:0f: + ae:58:e1:3d:2f:34:9b:cf:9f:f6:78:85:c2:93:7a: + 72:3e:66:8f:9c:16:11:60:8f:9e:89:6f:67:be:e0: + 47:5a:3b:0c:9a:67:8b:cf:46:c6:ae:38:a3:f2:a7: + bc:e6:d6:85:6b:33:24:70:22:4b:cb:08:9b:bb:c8: + f8:02:29:1d:be:20:0c:46:bf:6b:87:9b:b3:2a:66: + 42:35:46:6c:aa:ba:ad:f9:98:7b:e9:50:55:14:31: + bf:b1:da:2d:ed:80:ad:68:24:fb:69:ab:d8:71:13: + 30:e6:67:b3:87:40:fd:89:7e:f2:43:d1:11:df:2f: + 65:2f:64:ce:5f:14:b9:b1:bf:31:bd:87:78:5a:59: + 65:88:aa:fc:59:32:48:86:d6:4c:b9:29:4b:95:d3: + 76:f3:77:25:6d:42:1c:38:83:4d:fd:a3:5f:9b:7f: + 2d:ac:79:1b:0e:42:31:97:63:a4:fb:8a:69:d5:22: + 0d:34:90:30:2e:a8:b4:e0:6d:b6:94:ac:bc:8b:4e: + d7:70:fc:c5:38:8e:64:25:e1:4d:39:90:ce:c9:87: + 84:58:71 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Certificate Policies: + Policy: 1.3.171.1.1.1.10 + CPS: https://repository.luxtrust.lu + + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Authority Key Identifier: + keyid:FF:18:28:76:F9:48:05:2C:A1:AE:F1:2B:1B:2B:B2:53:F8:4B:7C:B3 + + X509v3 Subject Key Identifier: + FF:18:28:76:F9:48:05:2C:A1:AE:F1:2B:1B:2B:B2:53:F8:4B:7C:B3 + Signature Algorithm: sha256WithRSAEncryption + 6a:19:14:ed:6e:79:c1:2c:87:d4:0d:70:7e:d7:f6:78:c9:0b: + 04:4e:c4:b1:ce:93:70:fe:b0:54:c0:32:cd:99:30:64:17:bf: + 0f:e5:e2:33:fd:07:36:40:72:0e:1a:b6:6a:59:d6:00:e5:68: + 20:dd:2e:72:0d:1f:6a:64:31:20:84:7d:49:a6:5a:37:eb:45: + c9:85:f5:d4:c7:17:99:07:e6:9b:55:e4:0c:e8:a9:b4:ce:8c: + 5b:b5:11:5c:cf:8a:0e:0d:d6:ac:77:81:fe:32:9c:24:9e:72: + ce:54:f3:d0:6f:a2:56:d6:ec:c3:37:2c:65:58:be:57:00:1a: + f2:35:fa:eb:7b:31:5d:c2:c1:12:3d:96:81:88:96:89:c1:59: + 5c:7a:e6:7f:70:34:e7:83:e2:b1:e1:e1:b8:58:ef:d4:95:e4: + 60:9c:f0:96:97:72:8c:eb:84:02:2e:65:8f:a4:b7:d2:7f:67: + dd:c8:d3:9e:5c:aa:a9:a4:a0:25:14:06:9b:ec:4f:7e:2d:0b: + 7f:1d:75:f1:33:d8:ed:ce:b8:75:6d:3e:5b:b9:98:1d:31:0d: + 56:d8:43:0f:30:91:b2:04:6b:dd:56:be:95:80:55:67:be:d8: + cd:83:d9:18:ee:2e:0f:86:2d:92:9e:70:13:ec:de:51:c9:43: + 78:02:a5:4d:c8:f9:5f:c4:91:58:46:16:77:5a:74:aa:40:bc: + 07:9f:30:b9:b1:f7:12:17:dd:e3:ff:24:40:1d:7a:6a:d1:4f: + 18:0a:aa:90:1d:eb:40:1e:df:a1:1e:44:92:10:9a:f2:8d:e1: + d1:4b:46:9e:e8:45:42:97:ea:45:99:f3:ec:66:d5:02:fa:f2: + a6:4a:24:aa:de:ce:b9:ca:f9:3f:93:6f:f9:a3:ba:ea:a5:3e: + 99:ad:fd:ff:7b:99:f5:65:ee:f0:59:28:67:d7:90:95:a4:13: + 84:a9:84:c1:e8:ce:ce:75:93:63:1a:bc:3c:ea:d5:64:1f:2d: + 2a:12:39:c6:c3:5a:32:ed:47:91:16:0e:bc:38:c1:50:de:8f: + ca:2a:90:34:1c:ee:41:94:9c:5e:19:2e:f8:45:49:99:74:91: + b0:04:6f:e3:04:5a:b1:ab:2a:ab:fe:c7:d0:96:b6:da:e1:4a: + 64:06:6e:60:4d:bd:42:4e:ff:78:da:24:ca:1b:b4:d7:96:39: + 6c:ae:f1:0e:aa:a7:7d:48:8b:20:4c:cf:64:d6:b8:97:46:b0: + 4e:d1:2a:56:3a:a0:93:bd:af:80:24:e0:0a:7e:e7:ca:d5:ca: + e8:85:55:dc:36:2a:e1:94:68:93:c7:66:72:44:0f:80:21:32: + 6c:25:c7:23:80:83:0a:eb +SHA1 Fingerprint=1E:0E:56:19:0A:D1:8B:25:98:B2:04:44:FF:66:8A:04:17:99:5F:3F diff --git a/system/etc/security/cacerts/c90bc37d.0 b/system/etc/security/cacerts/c90bc37d.0 new file mode 100644 index 0000000000000000000000000000000000000000..e4460c126231233ec8a13852c365b6449a11ec66 --- /dev/null +++ b/system/etc/security/cacerts/c90bc37d.0 @@ -0,0 +1,80 @@ +-----BEGIN CERTIFICATE----- +MIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH +MjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT +MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j +b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI +2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx +1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ +q2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz +tCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ +vIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP +BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV +5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY +1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4 +NeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG +Fdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91 +8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe +pLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl +MrY= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 03:3a:f1:e6:a7:11:a9:a0:bb:28:64:b1:1d:09:fa:e5 + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert Global Root G2 + Validity + Not Before: Aug 1 12:00:00 2013 GMT + Not After : Jan 15 12:00:00 2038 GMT + Subject: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert Global Root G2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:bb:37:cd:34:dc:7b:6b:c9:b2:68:90:ad:4a:75: + ff:46:ba:21:0a:08:8d:f5:19:54:c9:fb:88:db:f3: + ae:f2:3a:89:91:3c:7a:e6:ab:06:1a:6b:cf:ac:2d: + e8:5e:09:24:44:ba:62:9a:7e:d6:a3:a8:7e:e0:54: + 75:20:05:ac:50:b7:9c:63:1a:6c:30:dc:da:1f:19: + b1:d7:1e:de:fd:d7:e0:cb:94:83:37:ae:ec:1f:43: + 4e:dd:7b:2c:d2:bd:2e:a5:2f:e4:a9:b8:ad:3a:d4: + 99:a4:b6:25:e9:9b:6b:00:60:92:60:ff:4f:21:49: + 18:f7:67:90:ab:61:06:9c:8f:f2:ba:e9:b4:e9:92: + 32:6b:b5:f3:57:e8:5d:1b:cd:8c:1d:ab:95:04:95: + 49:f3:35:2d:96:e3:49:6d:dd:77:e3:fb:49:4b:b4: + ac:55:07:a9:8f:95:b3:b4:23:bb:4c:6d:45:f0:f6: + a9:b2:95:30:b4:fd:4c:55:8c:27:4a:57:14:7c:82: + 9d:cd:73:92:d3:16:4a:06:0c:8c:50:d1:8f:1e:09: + be:17:a1:e6:21:ca:fd:83:e5:10:bc:83:a5:0a:c4: + 67:28:f6:73:14:14:3d:46:76:c3:87:14:89:21:34: + 4d:af:0f:45:0c:a6:49:a1:ba:bb:9c:c5:b1:33:83: + 29:85 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Digital Signature, Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + 4E:22:54:20:18:95:E6:E3:6E:E6:0F:FA:FA:B9:12:ED:06:17:8F:39 + Signature Algorithm: sha256WithRSAEncryption + 60:67:28:94:6f:0e:48:63:eb:31:dd:ea:67:18:d5:89:7d:3c: + c5:8b:4a:7f:e9:be:db:2b:17:df:b0:5f:73:77:2a:32:13:39: + 81:67:42:84:23:f2:45:67:35:ec:88:bf:f8:8f:b0:61:0c:34: + a4:ae:20:4c:84:c6:db:f8:35:e1:76:d9:df:a6:42:bb:c7:44: + 08:86:7f:36:74:24:5a:da:6c:0d:14:59:35:bd:f2:49:dd:b6: + 1f:c9:b3:0d:47:2a:3d:99:2f:bb:5c:bb:b5:d4:20:e1:99:5f: + 53:46:15:db:68:9b:f0:f3:30:d5:3e:31:e2:8d:84:9e:e3:8a: + da:da:96:3e:35:13:a5:5f:f0:f9:70:50:70:47:41:11:57:19: + 4e:c0:8f:ae:06:c4:95:13:17:2f:1b:25:9f:75:f2:b1:8e:99: + a1:6f:13:b1:41:71:fe:88:2a:c8:4f:10:20:55:d7:f3:14:45: + e5:e0:44:f4:ea:87:95:32:93:0e:fe:53:46:fa:2c:9d:ff:8b: + 22:b9:4b:d9:09:45:a4:de:a4:b8:9a:58:dd:1b:7d:52:9f:8e: + 59:43:88:81:a4:9e:26:d5:6f:ad:dd:0d:c6:37:7d:ed:03:92: + 1b:e5:77:5f:76:ee:3c:8d:c4:5d:56:5b:a2:d9:66:6e:b3:35: + 37:e5:32:b6 +SHA1 Fingerprint=DF:3C:24:F9:BF:D6:66:76:1B:26:80:73:FE:06:D1:CC:8D:4F:82:A4 diff --git a/system/etc/security/cacerts/cb156124.0 b/system/etc/security/cacerts/cb156124.0 new file mode 100644 index 0000000000000000000000000000000000000000..a5311ba6f92df423657627f845b55217da5dc344 --- /dev/null +++ b/system/etc/security/cacerts/cb156124.0 @@ -0,0 +1,127 @@ +-----BEGIN CERTIFICATE----- +MIIGSzCCBDOgAwIBAgIIamg+nFGby1MwDQYJKoZIhvcNAQELBQAwgbIxCzAJBgNV +BAYTAlRSMQ8wDQYDVQQHDAZBbmthcmExQDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBC +aWxpxZ9pbSBUZWtub2xvamlsZXJpIHZlIEhpem1ldGxlcmkgQS7Fni4xJjAkBgNV +BAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBNZXJrZXppMSgwJgYDVQQDDB9FLVR1 +Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTEzMDMwNTEyMDk0OFoXDTIz +MDMwMzEyMDk0OFowgbIxCzAJBgNVBAYTAlRSMQ8wDQYDVQQHDAZBbmthcmExQDA+ +BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamlsZXJpIHZlIEhp +em1ldGxlcmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBN +ZXJrZXppMSgwJgYDVQQDDB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5 +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4vU/kwVRHoViVF56C/UY +B4Oufq9899SKa6VjQzm5S/fDxmSJPZQuVIBSOTkHS0vdhQd2h8y/L5VMzH2nPbxH +D5hw+IyFHnSOkm0bQNGZDbt1bsipa5rAhDGvykPL6ys06I+XawGb1Q5KCKpbknSF +Q9OArqGIW66z6l7LFpp3RMih9lRozt6Plyu6W0ACDGQXwLWTzeHxE2bODHnv0ZEo +q1+gElIwcxmOj+GMB6LDu0rw6h8VqO4lzKRG+Bsi77MOQ7osJLjFLFzUHPhdZL3D +k14opz8n8Y4e0ypQBaNV2cvnOVPAmJ6MVGKLJrD3fY185MaeZkJVgkfnsliNZvcH +fC425lAcP9tDJMW/hkd5s3kc91r0E+xs+D/iWR+V7kI+ua2oMoVJl0b+SzGPWsut +dEcf6ZG33ygEIqDUD13ieU/qbIWGvaimzuT6w+Gzrt48Ue7LE3wBf4QOXVGUnhMM +ti6lTPk5cDZvlsouDERVxcr6XQKj39ZkjFqzAQqptQpHF//vkUAqjqFGOjGY5RH8 +zLtJVor8udBhmm9lbObDyz51Sf6Pp+KJxWfXnUYTTjF2OySznhFlhqt/7x3U+Lzn +rFpct1pHXFXOVbQicVtbC/DP3KBhZOqp12gKY6fgDT+gr9Oq0n7vUaDmUStVkhUX +U8u3Zg5mTPj5dUyQ5xJwx0UCAwEAAaNjMGEwHQYDVR0OBBYEFC7j27JJ0JxUeVz6 +Jyr+zE7S6E5UMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAULuPbsknQnFR5 +XPonKv7MTtLoTlQwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQAF +Nzr0TbdF4kV1JI+2d1LoHNgQk2Xz8lkGpD4eKexd0dCrfOAKkEh47U6YA5n+KGCR +HTAduGN8qOY1tfrTYXbm1gdLymmasoR6d5NFFxWfJNCYExL/u6Au/U5Mh/jOXKqY +GwXgAEZKgoClM4so3O0409/lPun++1ndYYRP0lSWE2ETPo+Aab6TR7U1Q9Jauz1c +77NCR807VRMGsAnb/WP2OogKmW9+4c4bU2pEZiNRCHu8W1Ki/QY3OEBhj0qWuJA3 ++GbHeJAAFS6LrVE1Uweoa2iu+U48BybNCAVwzDk/dr2l02cmAYamU9JgO3xDf1WK +vJUawSg5TB9D0pH0clmKuVb8P7Sd2nCcdlqMQ1DujjByTd//SffGqWfZbawCEeI6 +FiWnWAjLb1NBnEg4R2gz0dfHj9R0IdTDBZB6/86WiLEVKV0jq9BgoRJP3vQXzTLl +yb/IQ639Lo7xr+L0mPoSHyDYwKcMhcWQ9DstliaxLL5Mq+ux0orJ23gTDx4JnW2P +AJ8C2sH6H3p6CcRK5ogql5+Ji/03X186zjhZhkuvcQu02PJwT58yE+Owp1fl2tpD +y4Q08ijE6m30Ku/Ba3ba+367hTzSU8JNvnHhRdH9I2cNE3X7z2VnIp2usAnRCf8d +NL/+I5c30jn6PQ0GC7TbO6Orb1wdtn7os4I07QZcJA== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 7667447206703254355 (0x6a683e9c519bcb53) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=TR, L=Ankara, O=E-Tu\xC4\x9Fra EBG Bili\xC5\x9Fim Teknolojileri ve Hizmetleri A.\xC5\x9E., OU=E-Tugra Sertifikasyon Merkezi, CN=E-Tugra Certification Authority + Validity + Not Before: Mar 5 12:09:48 2013 GMT + Not After : Mar 3 12:09:48 2023 GMT + Subject: C=TR, L=Ankara, O=E-Tu\xC4\x9Fra EBG Bili\xC5\x9Fim Teknolojileri ve Hizmetleri A.\xC5\x9E., OU=E-Tugra Sertifikasyon Merkezi, CN=E-Tugra Certification Authority + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:e2:f5:3f:93:05:51:1e:85:62:54:5e:7a:0b:f5: + 18:07:83:ae:7e:af:7c:f7:d4:8a:6b:a5:63:43:39: + b9:4b:f7:c3:c6:64:89:3d:94:2e:54:80:52:39:39: + 07:4b:4b:dd:85:07:76:87:cc:bf:2f:95:4c:cc:7d: + a7:3d:bc:47:0f:98:70:f8:8c:85:1e:74:8e:92:6d: + 1b:40:d1:99:0d:bb:75:6e:c8:a9:6b:9a:c0:84:31: + af:ca:43:cb:eb:2b:34:e8:8f:97:6b:01:9b:d5:0e: + 4a:08:aa:5b:92:74:85:43:d3:80:ae:a1:88:5b:ae: + b3:ea:5e:cb:16:9a:77:44:c8:a1:f6:54:68:ce:de: + 8f:97:2b:ba:5b:40:02:0c:64:17:c0:b5:93:cd:e1: + f1:13:66:ce:0c:79:ef:d1:91:28:ab:5f:a0:12:52: + 30:73:19:8e:8f:e1:8c:07:a2:c3:bb:4a:f0:ea:1f: + 15:a8:ee:25:cc:a4:46:f8:1b:22:ef:b3:0e:43:ba: + 2c:24:b8:c5:2c:5c:d4:1c:f8:5d:64:bd:c3:93:5e: + 28:a7:3f:27:f1:8e:1e:d3:2a:50:05:a3:55:d9:cb: + e7:39:53:c0:98:9e:8c:54:62:8b:26:b0:f7:7d:8d: + 7c:e4:c6:9e:66:42:55:82:47:e7:b2:58:8d:66:f7: + 07:7c:2e:36:e6:50:1c:3f:db:43:24:c5:bf:86:47: + 79:b3:79:1c:f7:5a:f4:13:ec:6c:f8:3f:e2:59:1f: + 95:ee:42:3e:b9:ad:a8:32:85:49:97:46:fe:4b:31: + 8f:5a:cb:ad:74:47:1f:e9:91:b7:df:28:04:22:a0: + d4:0f:5d:e2:79:4f:ea:6c:85:86:bd:a8:a6:ce:e4: + fa:c3:e1:b3:ae:de:3c:51:ee:cb:13:7c:01:7f:84: + 0e:5d:51:94:9e:13:0c:b6:2e:a5:4c:f9:39:70:36: + 6f:96:ca:2e:0c:44:55:c5:ca:fa:5d:02:a3:df:d6: + 64:8c:5a:b3:01:0a:a9:b5:0a:47:17:ff:ef:91:40: + 2a:8e:a1:46:3a:31:98:e5:11:fc:cc:bb:49:56:8a: + fc:b9:d0:61:9a:6f:65:6c:e6:c3:cb:3e:75:49:fe: + 8f:a7:e2:89:c5:67:d7:9d:46:13:4e:31:76:3b:24: + b3:9e:11:65:86:ab:7f:ef:1d:d4:f8:bc:e7:ac:5a: + 5c:b7:5a:47:5c:55:ce:55:b4:22:71:5b:5b:0b:f0: + cf:dc:a0:61:64:ea:a9:d7:68:0a:63:a7:e0:0d:3f: + a0:af:d3:aa:d2:7e:ef:51:a0:e6:51:2b:55:92:15: + 17:53:cb:b7:66:0e:66:4c:f8:f9:75:4c:90:e7:12: + 70:c7:45 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 2E:E3:DB:B2:49:D0:9C:54:79:5C:FA:27:2A:FE:CC:4E:D2:E8:4E:54 + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Authority Key Identifier: + keyid:2E:E3:DB:B2:49:D0:9C:54:79:5C:FA:27:2A:FE:CC:4E:D2:E8:4E:54 + + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + Signature Algorithm: sha256WithRSAEncryption + 05:37:3a:f4:4d:b7:45:e2:45:75:24:8f:b6:77:52:e8:1c:d8: + 10:93:65:f3:f2:59:06:a4:3e:1e:29:ec:5d:d1:d0:ab:7c:e0: + 0a:90:48:78:ed:4e:98:03:99:fe:28:60:91:1d:30:1d:b8:63: + 7c:a8:e6:35:b5:fa:d3:61:76:e6:d6:07:4b:ca:69:9a:b2:84: + 7a:77:93:45:17:15:9f:24:d0:98:13:12:ff:bb:a0:2e:fd:4e: + 4c:87:f8:ce:5c:aa:98:1b:05:e0:00:46:4a:82:80:a5:33:8b: + 28:dc:ed:38:d3:df:e5:3e:e9:fe:fb:59:dd:61:84:4f:d2:54: + 96:13:61:13:3e:8f:80:69:be:93:47:b5:35:43:d2:5a:bb:3d: + 5c:ef:b3:42:47:cd:3b:55:13:06:b0:09:db:fd:63:f6:3a:88: + 0a:99:6f:7e:e1:ce:1b:53:6a:44:66:23:51:08:7b:bc:5b:52: + a2:fd:06:37:38:40:61:8f:4a:96:b8:90:37:f8:66:c7:78:90: + 00:15:2e:8b:ad:51:35:53:07:a8:6b:68:ae:f9:4e:3c:07:26: + cd:08:05:70:cc:39:3f:76:bd:a5:d3:67:26:01:86:a6:53:d2: + 60:3b:7c:43:7f:55:8a:bc:95:1a:c1:28:39:4c:1f:43:d2:91: + f4:72:59:8a:b9:56:fc:3f:b4:9d:da:70:9c:76:5a:8c:43:50: + ee:8e:30:72:4d:df:ff:49:f7:c6:a9:67:d9:6d:ac:02:11:e2: + 3a:16:25:a7:58:08:cb:6f:53:41:9c:48:38:47:68:33:d1:d7: + c7:8f:d4:74:21:d4:c3:05:90:7a:ff:ce:96:88:b1:15:29:5d: + 23:ab:d0:60:a1:12:4f:de:f4:17:cd:32:e5:c9:bf:c8:43:ad: + fd:2e:8e:f1:af:e2:f4:98:fa:12:1f:20:d8:c0:a7:0c:85:c5: + 90:f4:3b:2d:96:26:b1:2c:be:4c:ab:eb:b1:d2:8a:c9:db:78: + 13:0f:1e:09:9d:6d:8f:00:9f:02:da:c1:fa:1f:7a:7a:09:c4: + 4a:e6:88:2a:97:9f:89:8b:fd:37:5f:5f:3a:ce:38:59:86:4b: + af:71:0b:b4:d8:f2:70:4f:9f:32:13:e3:b0:a7:57:e5:da:da: + 43:cb:84:34:f2:28:c4:ea:6d:f4:2a:ef:c1:6b:76:da:fb:7e: + bb:85:3c:d2:53:c2:4d:be:71:e1:45:d1:fd:23:67:0d:13:75: + fb:cf:65:67:22:9d:ae:b0:09:d1:09:ff:1d:34:bf:fe:23:97: + 37:d2:39:fa:3d:0d:06:0b:b4:db:3b:a3:ab:6f:5c:1d:b6:7e: + e8:b3:82:34:ed:06:5c:24 +SHA1 Fingerprint=51:C6:E7:08:49:06:6E:F3:92:D4:5C:A0:0D:6D:A3:62:8F:C3:52:39 diff --git a/system/etc/security/cacerts/cb1c3204.0 b/system/etc/security/cacerts/cb1c3204.0 new file mode 100644 index 0000000000000000000000000000000000000000..36e988c94c9811d2480970e3fed64beae2ea7573 --- /dev/null +++ b/system/etc/security/cacerts/cb1c3204.0 @@ -0,0 +1,123 @@ +-----BEGIN CERTIFICATE----- +MIIF0jCCA7qgAwIBAgIQIdbQSk8lD8kyN/yqXhKN6TANBgkqhkiG9w0BAQ0FADCB +gDELMAkGA1UEBhMCUEwxIjAgBgNVBAoTGVVuaXpldG8gVGVjaG5vbG9naWVzIFMu +QS4xJzAlBgNVBAsTHkNlcnR1bSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEkMCIG +A1UEAxMbQ2VydHVtIFRydXN0ZWQgTmV0d29yayBDQSAyMCIYDzIwMTExMDA2MDgz +OTU2WhgPMjA0NjEwMDYwODM5NTZaMIGAMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZ +VW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5MSQwIgYDVQQDExtDZXJ0dW0gVHJ1c3RlZCBOZXR3 +b3JrIENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC9+Xj45tWA +DGSdhhuWZGc/IjoedQF97/tcZ4zJzFxrqZHmuULlIEub2pt7uZld2ZuAS9eEQCsn +0+i6MLs+CRqnSZXvK0AkwpfHp+6bJe+oCgCXhVqqndwpyeI1B+twTUrWwbNWuKFB +OJvR+zF/j+Bf4bE/D44WSWDXBo0Y+aomEKsq09DRZ40bRr5HMNUuctHFY9rnY3lE +fktjJImGLjQ/KUxSiyqnwOKRKIm5wFv5HdnnJ63/mgKXwcZQkpsCLL2puTRZCr+E +Sv/f/rOf69me4Jgj7KZrdxYq28ytOxykh9xGc14ZYmhFV+SQgkK7QtbwYeDBoz1m +o130GO6IyY0XRSmZMnUCMe4pJshrAua1YkV/NxVaI2iJ1D7eTiew8EAMvE0Xy02i +sx7QBlrd9pPPV3WZ9fqGGmd4s7+W/jTcvedSVuWz5XV710GRBdxdaeOVDUO5/IOW +OZV7bIBaTxNyxtd9KXpEulKkKtVBRgkg/iKgtlswjbyJDNXXcPiHUv3a76xRLgez +Tv7QCdpw75j6VuZt27VXS9zlLCUVyJ4ueE742pyehizKV/Ma5ciSixqClnrDvFAS +adgOWkaLOusm+iPJtrCBvkIApPjW/jAux9JG9uWOdf3yzLnQh1vMBhBgu4M1t15n +3kfsmUjxpKEV/q2MYo45VU85FrmxY53/twIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBS2oVQ5AsOgP46KvPrU+Bym0ToO/TAOBgNVHQ8BAf8EBAMC +AQYwDQYJKoZIhvcNAQENBQADggIBAHGlDs7k6b8/ONWJWsQCYftMxRQXLYtPU2sQ +F/xlhMcQSZDe28cmk4gmb3DWAl45oPePq5a1pRNcgRRtDoGCERuKTsZPpd1iHkTf +CVn0W3cLN+mLIMb4Ck4uWBzrM9DPhmDJ2vuAL55MYIR4PSFk1vtBHxgP58l1cb29 +XN40hz5BsA72udY/CROWFC/emh1auVbONTqwX3BNXuMp8SMoclm2q8KMZiYcdywm +djWLKKdpoPk79SPdhRB0yZADVpHnr7pH1BKXESLjokmUbOe3lEu6LaTaM4tMpkT/ +WjzGHWTYtTHkpjx6qFcL2+1hGsvxznN3Y6SHb0xRONbkX8eftoEq5IVIeVheO/jb +AoJnwTnbw3RLPTYe+SmTiGhbqEQZIfCn6IENLOiTNrQ3ssqwGyZ6miUfmpqAnksq +P/ujmv5zMnHCnsZy4YpoJ/HkD7TETKVhk/iXEAcqMCWpuchxuO9ozC1+9eB+D4Ko +b7a6bINDd82Kkhehnlt4Fj1F4jNy3eFmypnTycUm/Q1oBEauttmbjL4ZvrHG8hnj +XALKLNhvSgfZyTXaQHXyxKcZb55CEJh15pWLYLztxRLXis7VmFxWlgPF7ncGNf/P +5O4/E2Hu29othfDNrp2yGAlFw5Khchf8R7agCyzxxN5DaAhqXzvwdmP7zAYspsbi +DrW5viSP +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 21:d6:d0:4a:4f:25:0f:c9:32:37:fc:aa:5e:12:8d:e9 + Signature Algorithm: sha512WithRSAEncryption + Issuer: C=PL, O=Unizeto Technologies S.A., OU=Certum Certification Authority, CN=Certum Trusted Network CA 2 + Validity + Not Before: Oct 6 08:39:56 2011 GMT + Not After : Oct 6 08:39:56 2046 GMT + Subject: C=PL, O=Unizeto Technologies S.A., OU=Certum Certification Authority, CN=Certum Trusted Network CA 2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:bd:f9:78:f8:e6:d5:80:0c:64:9d:86:1b:96:64: + 67:3f:22:3a:1e:75:01:7d:ef:fb:5c:67:8c:c9:cc: + 5c:6b:a9:91:e6:b9:42:e5:20:4b:9b:da:9b:7b:b9: + 99:5d:d9:9b:80:4b:d7:84:40:2b:27:d3:e8:ba:30: + bb:3e:09:1a:a7:49:95:ef:2b:40:24:c2:97:c7:a7: + ee:9b:25:ef:a8:0a:00:97:85:5a:aa:9d:dc:29:c9: + e2:35:07:eb:70:4d:4a:d6:c1:b3:56:b8:a1:41:38: + 9b:d1:fb:31:7f:8f:e0:5f:e1:b1:3f:0f:8e:16:49: + 60:d7:06:8d:18:f9:aa:26:10:ab:2a:d3:d0:d1:67: + 8d:1b:46:be:47:30:d5:2e:72:d1:c5:63:da:e7:63: + 79:44:7e:4b:63:24:89:86:2e:34:3f:29:4c:52:8b: + 2a:a7:c0:e2:91:28:89:b9:c0:5b:f9:1d:d9:e7:27: + ad:ff:9a:02:97:c1:c6:50:92:9b:02:2c:bd:a9:b9: + 34:59:0a:bf:84:4a:ff:df:fe:b3:9f:eb:d9:9e:e0: + 98:23:ec:a6:6b:77:16:2a:db:cc:ad:3b:1c:a4:87: + dc:46:73:5e:19:62:68:45:57:e4:90:82:42:bb:42: + d6:f0:61:e0:c1:a3:3d:66:a3:5d:f4:18:ee:88:c9: + 8d:17:45:29:99:32:75:02:31:ee:29:26:c8:6b:02: + e6:b5:62:45:7f:37:15:5a:23:68:89:d4:3e:de:4e: + 27:b0:f0:40:0c:bc:4d:17:cb:4d:a2:b3:1e:d0:06: + 5a:dd:f6:93:cf:57:75:99:f5:fa:86:1a:67:78:b3: + bf:96:fe:34:dc:bd:e7:52:56:e5:b3:e5:75:7b:d7: + 41:91:05:dc:5d:69:e3:95:0d:43:b9:fc:83:96:39: + 95:7b:6c:80:5a:4f:13:72:c6:d7:7d:29:7a:44:ba: + 52:a4:2a:d5:41:46:09:20:fe:22:a0:b6:5b:30:8d: + bc:89:0c:d5:d7:70:f8:87:52:fd:da:ef:ac:51:2e: + 07:b3:4e:fe:d0:09:da:70:ef:98:fa:56:e6:6d:db: + b5:57:4b:dc:e5:2c:25:15:c8:9e:2e:78:4e:f8:da: + 9c:9e:86:2c:ca:57:f3:1a:e5:c8:92:8b:1a:82:96: + 7a:c3:bc:50:12:69:d8:0e:5a:46:8b:3a:eb:26:fa: + 23:c9:b6:b0:81:be:42:00:a4:f8:d6:fe:30:2e:c7: + d2:46:f6:e5:8e:75:fd:f2:cc:b9:d0:87:5b:cc:06: + 10:60:bb:83:35:b7:5e:67:de:47:ec:99:48:f1:a4: + a1:15:fe:ad:8c:62:8e:39:55:4f:39:16:b9:b1:63: + 9d:ff:b7 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + B6:A1:54:39:02:C3:A0:3F:8E:8A:BC:FA:D4:F8:1C:A6:D1:3A:0E:FD + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + Signature Algorithm: sha512WithRSAEncryption + 71:a5:0e:ce:e4:e9:bf:3f:38:d5:89:5a:c4:02:61:fb:4c:c5: + 14:17:2d:8b:4f:53:6b:10:17:fc:65:84:c7:10:49:90:de:db: + c7:26:93:88:26:6f:70:d6:02:5e:39:a0:f7:8f:ab:96:b5:a5: + 13:5c:81:14:6d:0e:81:82:11:1b:8a:4e:c6:4f:a5:dd:62:1e: + 44:df:09:59:f4:5b:77:0b:37:e9:8b:20:c6:f8:0a:4e:2e:58: + 1c:eb:33:d0:cf:86:60:c9:da:fb:80:2f:9e:4c:60:84:78:3d: + 21:64:d6:fb:41:1f:18:0f:e7:c9:75:71:bd:bd:5c:de:34:87: + 3e:41:b0:0e:f6:b9:d6:3f:09:13:96:14:2f:de:9a:1d:5a:b9: + 56:ce:35:3a:b0:5f:70:4d:5e:e3:29:f1:23:28:72:59:b6:ab: + c2:8c:66:26:1c:77:2c:26:76:35:8b:28:a7:69:a0:f9:3b:f5: + 23:dd:85:10:74:c9:90:03:56:91:e7:af:ba:47:d4:12:97:11: + 22:e3:a2:49:94:6c:e7:b7:94:4b:ba:2d:a4:da:33:8b:4c:a6: + 44:ff:5a:3c:c6:1d:64:d8:b5:31:e4:a6:3c:7a:a8:57:0b:db: + ed:61:1a:cb:f1:ce:73:77:63:a4:87:6f:4c:51:38:d6:e4:5f: + c7:9f:b6:81:2a:e4:85:48:79:58:5e:3b:f8:db:02:82:67:c1: + 39:db:c3:74:4b:3d:36:1e:f9:29:93:88:68:5b:a8:44:19:21: + f0:a7:e8:81:0d:2c:e8:93:36:b4:37:b2:ca:b0:1b:26:7a:9a: + 25:1f:9a:9a:80:9e:4b:2a:3f:fb:a3:9a:fe:73:32:71:c2:9e: + c6:72:e1:8a:68:27:f1:e4:0f:b4:c4:4c:a5:61:93:f8:97:10: + 07:2a:30:25:a9:b9:c8:71:b8:ef:68:cc:2d:7e:f5:e0:7e:0f: + 82:a8:6f:b6:ba:6c:83:43:77:cd:8a:92:17:a1:9e:5b:78:16: + 3d:45:e2:33:72:dd:e1:66:ca:99:d3:c9:c5:26:fd:0d:68:04: + 46:ae:b6:d9:9b:8c:be:19:be:b1:c6:f2:19:e3:5c:02:ca:2c: + d8:6f:4a:07:d9:c9:35:da:40:75:f2:c4:a7:19:6f:9e:42:10: + 98:75:e6:95:8b:60:bc:ed:c5:12:d7:8a:ce:d5:98:5c:56:96: + 03:c5:ee:77:06:35:ff:cf:e4:ee:3f:13:61:ee:db:da:2d:85: + f0:cd:ae:9d:b2:18:09:45:c3:92:a1:72:17:fc:47:b6:a0:0b: + 2c:f1:c4:de:43:68:08:6a:5f:3b:f0:76:63:fb:cc:06:2c:a6: + c6:e2:0e:b5:b9:be:24:8f +SHA1 Fingerprint=D3:DD:48:3E:2B:BF:4C:05:E8:AF:10:F5:FA:76:26:CF:D3:DC:30:92 diff --git a/system/etc/security/cacerts/ccc52f49.0 b/system/etc/security/cacerts/ccc52f49.0 new file mode 100644 index 0000000000000000000000000000000000000000..b01469018934a6abb7dca2cb103a34106ebbe44b --- /dev/null +++ b/system/etc/security/cacerts/ccc52f49.0 @@ -0,0 +1,50 @@ +-----BEGIN CERTIFICATE----- +MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMC +VVMxFDASBgNVBAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQ +cmVtaXVtIEVDQzAeFw0xMDAxMjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJ +BgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1UcnVzdDEgMB4GA1UEAwwXQWZmaXJt +VHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQNMF4bFZ0D +0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQN8O9 +ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0G +A1UdDgQWBBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4G +A1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/Vs +aobgxCd05DhT1wV/GzTjxi+zygk8N53X57hG8f2h4nECMEJZh0PUUd+60wkyWs6I +flc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKMeQ== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 8401224907861490260 (0x7497258ac73f7a54) + Signature Algorithm: ecdsa-with-SHA384 + Issuer: C=US, O=AffirmTrust, CN=AffirmTrust Premium ECC + Validity + Not Before: Jan 29 14:20:24 2010 GMT + Not After : Dec 31 14:20:24 2040 GMT + Subject: C=US, O=AffirmTrust, CN=AffirmTrust Premium ECC + Subject Public Key Info: + Public Key Algorithm: id-ecPublicKey + Public-Key: (384 bit) + pub: + 04:0d:30:5e:1b:15:9d:03:d0:a1:79:35:b7:3a:3c: + 92:7a:ca:15:1c:cd:62:f3:9c:26:5c:07:3d:e5:54: + fa:a3:d6:cc:12:ea:f4:14:5f:e8:8e:19:ab:2f:2e: + 48:e6:ac:18:43:78:ac:d0:37:c3:bd:b2:cd:2c:e6: + 47:e2:1a:e6:63:b8:3d:2e:2f:78:c4:4f:db:f4:0f: + a4:68:4c:55:72:6b:95:1d:4e:18:42:95:78:cc:37: + 3c:91:e2:9b:65:2b:29 + ASN1 OID: secp384r1 + X509v3 extensions: + X509v3 Subject Key Identifier: + 9A:AF:29:7A:C0:11:35:35:26:51:30:00:C3:6A:FE:40:D5:AE:D6:3C + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + Signature Algorithm: ecdsa-with-SHA384 + 30:64:02:30:17:09:f3:87:88:50:5a:af:c8:c0:42:bf:47:5f: + f5:6c:6a:86:e0:c4:27:74:e4:38:53:d7:05:7f:1b:34:e3:c6: + 2f:b3:ca:09:3c:37:9d:d7:e7:b8:46:f1:fd:a1:e2:71:02:30: + 42:59:87:43:d4:51:df:ba:d3:09:32:5a:ce:88:7e:57:3d:9c: + 5f:42:6b:f5:07:2d:b5:f0:82:93:f9:59:6f:ae:64:fa:58:e5: + 8b:1e:e3:63:be:b5:81:cd:6f:02:8c:79 +SHA1 Fingerprint=B8:23:6B:00:2F:1D:16:86:53:01:55:6C:11:A4:37:CA:EB:FF:C3:BB diff --git a/system/etc/security/cacerts/cf701eeb.0 b/system/etc/security/cacerts/cf701eeb.0 new file mode 100644 index 0000000000000000000000000000000000000000..3f6e70a51561e68a96117dd18cc6154a2cca451f --- /dev/null +++ b/system/etc/security/cacerts/cf701eeb.0 @@ -0,0 +1,89 @@ +-----BEGIN CERTIFICATE----- +MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBI +MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x +FzAVBgNVBAMTDlNlY3VyZVRydXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIz +MTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAeBgNVBAoTF1NlY3VyZVRydXN0IENv +cnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCCASIwDQYJKoZIhvcN +AQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQXOZEz +Zum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO +0gMdA+9tDWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIao +wW8xQmxSPmjL8xk037uHGFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj +7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b01k/unK8RCSc43Oz969XL0Imnal0ugBS +8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmHursCAwEAAaOBnTCBmjAT +BgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCeg +JYYjaHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGC +NxUBBAMCAQAwDQYJKoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt3 +6Z3q059c4EVlew3KW+JwULKUBRSuSceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/ +3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHfmbx8IVQr5Fiiu1cprp6poxkm +D5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZnMUFdAvnZyPS +CPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR +3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 0c:f0:8e:5c:08:16:a5:ad:42:7f:f0:eb:27:18:59:d0 + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=US, O=SecureTrust Corporation, CN=SecureTrust CA + Validity + Not Before: Nov 7 19:31:18 2006 GMT + Not After : Dec 31 19:40:55 2029 GMT + Subject: C=US, O=SecureTrust Corporation, CN=SecureTrust CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:ab:a4:81:e5:95:cd:f5:f6:14:8e:c2:4f:ca:d4: + e2:78:95:58:9c:41:e1:0d:99:40:24:17:39:91:33: + 66:e9:be:e1:83:af:62:5c:89:d1:fc:24:5b:61:b3: + e0:11:11:41:1c:1d:6e:f0:b8:bb:f8:de:a7:81:ba: + a6:48:c6:9f:1d:bd:be:8e:a9:41:3e:b8:94:ed:29: + 1a:d4:8e:d2:03:1d:03:ef:6d:0d:67:1c:57:d7:06: + ad:ca:c8:f5:fe:0e:af:66:25:48:04:96:0b:5d:a3: + ba:16:c3:08:4f:d1:46:f8:14:5c:f2:c8:5e:01:99: + 6d:fd:88:cc:86:a8:c1:6f:31:42:6c:52:3e:68:cb: + f3:19:34:df:bb:87:18:56:80:26:c4:d0:dc:c0:6f: + df:de:a0:c2:91:16:a0:64:11:4b:44:bc:1e:f6:e7: + fa:63:de:66:ac:76:a4:71:a3:ec:36:94:68:7a:77: + a4:b1:e7:0e:2f:81:7a:e2:b5:72:86:ef:a2:6b:8b: + f0:0f:db:d3:59:3f:ba:72:bc:44:24:9c:e3:73:b3: + f7:af:57:2f:42:26:9d:a9:74:ba:00:52:f2:4b:cd: + 53:7c:47:0b:36:85:0e:66:a9:08:97:16:34:57:c1: + 66:f7:80:e3:ed:70:54:c7:93:e0:2e:28:15:59:87: + ba:bb + Exponent: 65537 (0x10001) + X509v3 extensions: + 1.3.6.1.4.1.311.20.2: + ...C.A + X509v3 Key Usage: + Digital Signature, Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 42:32:B6:16:FA:04:FD:FE:5D:4B:7A:C3:FD:F7:4C:40:1D:5A:43:AF + X509v3 CRL Distribution Points: + + Full Name: + URI:http://crl.securetrust.com/STCA.crl + + 1.3.6.1.4.1.311.21.1: + ... + Signature Algorithm: sha1WithRSAEncryption + 30:ed:4f:4a:e1:58:3a:52:72:5b:b5:a6:a3:65:18:a6:bb:51: + 3b:77:e9:9d:ea:d3:9f:5c:e0:45:65:7b:0d:ca:5b:e2:70:50: + b2:94:05:14:ae:49:c7:8d:41:07:12:73:94:7e:0c:23:21:fd: + bc:10:7f:60:10:5a:72:f5:98:0e:ac:ec:b9:7f:dd:7a:6f:5d: + d3:1c:f4:ff:88:05:69:42:a9:05:71:c8:b7:ac:26:e8:2e:b4: + 8c:6a:ff:71:dc:b8:b1:df:99:bc:7c:21:54:2b:e4:58:a2:bb: + 57:29:ae:9e:a9:a3:19:26:0f:99:2e:08:b0:ef:fd:69:cf:99: + 1a:09:8d:e3:a7:9f:2b:c9:36:34:7b:24:b3:78:4c:95:17:a4: + 06:26:1e:b6:64:52:36:5f:60:67:d9:9c:c5:05:74:0b:e7:67: + 23:d2:08:fc:88:e9:ae:8b:7f:e1:30:f4:37:7e:fd:c6:32:da: + 2d:9e:44:30:30:6c:ee:07:de:d2:34:fc:d2:ff:40:f6:4b:f4: + 66:46:06:54:a6:f2:32:0a:63:26:30:6b:9b:d1:dc:8b:47:ba: + e1:b9:d5:62:d0:a2:a0:f4:67:05:78:29:63:1a:6f:04:d6:f8: + c6:4c:a3:9a:b1:37:b4:8d:e5:28:4b:1d:9e:2c:c2:b8:68:bc: + ed:02:ee:31 +SHA1 Fingerprint=87:82:C6:C3:04:35:3B:CF:D2:96:92:D2:59:3E:7D:44:D9:34:FF:11 diff --git a/system/etc/security/cacerts/d06393bb.0 b/system/etc/security/cacerts/d06393bb.0 new file mode 100644 index 0000000000000000000000000000000000000000..002941024e3c33d9d034c1a2cd455986b177dca9 --- /dev/null +++ b/system/etc/security/cacerts/d06393bb.0 @@ -0,0 +1,80 @@ +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx +KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd +BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl +YyBHbG9iYWxSb290IENsYXNzIDIwHhcNMDgxMDAxMTA0MDE0WhcNMzMxMDAxMjM1 +OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy +aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 +ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqX9obX+hzkeXaXPSi5kfl82hVYAUd +AqSzm1nzHoqvNK38DcLZSBnuaY/JIPwhqgcZ7bBcrGXHX+0CfHt8LRvWurmAwhiC +FoT6ZrAIxlQjgeTNuUk/9k9uN0goOA/FvudocP05l03Sx5iRUKrERLMjfTlH6VJi +1hKTXrcxlkIF+3anHqP1wvzpesVsqXFP6st4vGCvx9702cu+fjOlbpSD8DT6Iavq +jnKgP6TeMFvvhk1qlVtDRKgQFRzlAVfFmPHmBiiRqiDFt1MmUUOyCxGVWOHAD3bZ +wI18gfNycJ5v/hqO2V81xrJvNHy+SE/iWjnX2J14np+GPgNeGYtEotXHAgMBAAGj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS/ +WSA2AHmgoCJrjNXyYdK4LMuCSjANBgkqhkiG9w0BAQsFAAOCAQEAMQOiYQsfdOhy +NsZt+U2e+iKo4YFWz827n+qrkRk4r6p8FU3ztqONpfSO9kSpp+ghla0+AGIWiPAC +uvxhI+YzmzB6azZie60EI4RYZeLbK4rnJVM3YlNfvNoBYimipidx5joifsFvHZVw +IEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR3p1m0IvVVGb6 +g1XqfMIpiRvpb7PO4gWEyS8+eIVibslfwXhjdFjASBgMmTnrpMwatXlajRWc2BQN +9noHV8cigwUtPJslJj0Ys6lDfMjIq2SPDqO/nBudMNva0Bkuqjzx+zOAduTNrRlP +BSeOE6Fuwg== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 1 (0x1) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=DE, O=T-Systems Enterprise Services GmbH, OU=T-Systems Trust Center, CN=T-TeleSec GlobalRoot Class 2 + Validity + Not Before: Oct 1 10:40:14 2008 GMT + Not After : Oct 1 23:59:59 2033 GMT + Subject: C=DE, O=T-Systems Enterprise Services GmbH, OU=T-Systems Trust Center, CN=T-TeleSec GlobalRoot Class 2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:aa:5f:da:1b:5f:e8:73:91:e5:da:5c:f4:a2:e6: + 47:e5:f3:68:55:60:05:1d:02:a4:b3:9b:59:f3:1e: + 8a:af:34:ad:fc:0d:c2:d9:48:19:ee:69:8f:c9:20: + fc:21:aa:07:19:ed:b0:5c:ac:65:c7:5f:ed:02:7c: + 7b:7c:2d:1b:d6:ba:b9:80:c2:18:82:16:84:fa:66: + b0:08:c6:54:23:81:e4:cd:b9:49:3f:f6:4f:6e:37: + 48:28:38:0f:c5:be:e7:68:70:fd:39:97:4d:d2:c7: + 98:91:50:aa:c4:44:b3:23:7d:39:47:e9:52:62:d6: + 12:93:5e:b7:31:96:42:05:fb:76:a7:1e:a3:f5:c2: + fc:e9:7a:c5:6c:a9:71:4f:ea:cb:78:bc:60:af:c7: + de:f4:d9:cb:be:7e:33:a5:6e:94:83:f0:34:fa:21: + ab:ea:8e:72:a0:3f:a4:de:30:5b:ef:86:4d:6a:95: + 5b:43:44:a8:10:15:1c:e5:01:57:c5:98:f1:e6:06: + 28:91:aa:20:c5:b7:53:26:51:43:b2:0b:11:95:58: + e1:c0:0f:76:d9:c0:8d:7c:81:f3:72:70:9e:6f:fe: + 1a:8e:d9:5f:35:c6:b2:6f:34:7c:be:48:4f:e2:5a: + 39:d7:d8:9d:78:9e:9f:86:3e:03:5e:19:8b:44:a2: + d5:c7 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + BF:59:20:36:00:79:A0:A0:22:6B:8C:D5:F2:61:D2:B8:2C:CB:82:4A + Signature Algorithm: sha256WithRSAEncryption + 31:03:a2:61:0b:1f:74:e8:72:36:c6:6d:f9:4d:9e:fa:22:a8: + e1:81:56:cf:cd:bb:9f:ea:ab:91:19:38:af:aa:7c:15:4d:f3: + b6:a3:8d:a5:f4:8e:f6:44:a9:a7:e8:21:95:ad:3e:00:62:16: + 88:f0:02:ba:fc:61:23:e6:33:9b:30:7a:6b:36:62:7b:ad:04: + 23:84:58:65:e2:db:2b:8a:e7:25:53:37:62:53:5f:bc:da:01: + 62:29:a2:a6:27:71:e6:3a:22:7e:c1:6f:1d:95:70:20:4a:07: + 34:df:ea:ff:15:80:e5:ba:d7:7a:d8:5b:75:7c:05:7a:29:47: + 7e:40:a8:31:13:77:cd:40:3b:b4:51:47:7a:2e:11:e3:47:11: + de:9d:66:d0:8b:d5:54:66:fa:83:55:ea:7c:c2:29:89:1b:e9: + 6f:b3:ce:e2:05:84:c9:2f:3e:78:85:62:6e:c9:5f:c1:78:63: + 74:58:c0:48:18:0c:99:39:eb:a4:cc:1a:b5:79:5a:8d:15:9c: + d8:14:0d:f6:7a:07:57:c7:22:83:05:2d:3c:9b:25:26:3d:18: + b3:a9:43:7c:c8:c8:ab:64:8f:0e:a3:bf:9c:1b:9d:30:db:da: + d0:19:2e:aa:3c:f1:fb:33:80:76:e4:cd:ad:19:4f:05:27:8e: + 13:a1:6e:c2 +SHA1 Fingerprint=59:0D:2D:7D:88:4F:40:2E:61:7E:A5:62:32:17:65:CF:17:D8:94:E9 diff --git a/system/etc/security/cacerts/d16a5865.0 b/system/etc/security/cacerts/d16a5865.0 new file mode 100644 index 0000000000000000000000000000000000000000..35228a37c0f9988520f887f9fd14c9c7b4e03da2 --- /dev/null +++ b/system/etc/security/cacerts/d16a5865.0 @@ -0,0 +1,129 @@ +-----BEGIN CERTIFICATE----- +MIIGFDCCA/ygAwIBAgIIU+w77vuySF8wDQYJKoZIhvcNAQEFBQAwUTELMAkGA1UE +BhMCRVMxQjBABgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1h +cHJvZmVzaW9uYWwgQ0lGIEE2MjYzNDA2ODAeFw0wOTA1MjAwODM4MTVaFw0zMDEy +MzEwODM4MTVaMFExCzAJBgNVBAYTAkVTMUIwQAYDVQQDDDlBdXRvcmlkYWQgZGUg +Q2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBBNjI2MzQwNjgwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDDUtd9 +thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQM +cas9UX4PB99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefG +L9ItWY16Ck6WaVICqjaY7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15i +NA9wBj4gGFrO93IbJWyTdBSTo3OxDqqHECNZXyAFGUftaI6SEspd/NYrspI8IM/h +X68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyIplD9amML9ZMWGxmPsu2b +m8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctXMbScyJCy +Z/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirja +EbsXLZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/T +KI8xWVvTyQKmtFLKbpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF +6NkBiDkal4ZkQdU7hwxu+g/GvUgUvzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVh +OSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMBIGA1UdEwEB/wQIMAYBAf8CAQEwDgYD +VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRlzeurNR4APn7VdMActHNHDhpkLzCBpgYD +VR0gBIGeMIGbMIGYBgRVHSAAMIGPMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LmZp +cm1hcHJvZmVzaW9uYWwuY29tL2NwczBcBggrBgEFBQcCAjBQHk4AUABhAHMAZQBv +ACAAZABlACAAbABhACAAQgBvAG4AYQBuAG8AdgBhACAANAA3ACAAQgBhAHIAYwBl +AGwAbwBuAGEAIAAwADgAMAAxADcwDQYJKoZIhvcNAQEFBQADggIBABd9oPm03cXF +661LJLWhAqvdpYhKsg9VSytXjDvlMd3+xDLx51tkljYyGOylMnfX40S2wBEqgLk9 +am58m9Ot/MPWo+ZkKXzR4Tgegiv/J2Wv+xYVxC5xhOW1//qkR71kMrv2JYSiJ0L1 +ILDCExARzRAVukKQKtJE4ZYm6zFIEv0q2skGz3QeqUvVhyj5eTSSPi5E6PaPT481 +PyWzOdxjKpBrIF/EUhJOlywqrJ2X3kjyo2bbwtKDlaZmp54lD+kLM5FlClrD2VQS +3a/DTg4fJl4N3LON7NWBcN7STyQF82xO9UxJZo3R/9ILJUFI/lGExkKvgATP0H5k +SeTy36LssUzAKh3ntLFlosS88Zj0qnAHY7S42jtM+kAiMFsRpvAFDsYCA0irhpuF +3dvd6qJ2gHN99ZwExEWN57kci57q13XRcrHedUTnQn3iV2t93Jm8PYMo6oCTjcVM +ZcFwgbg4/EMxsvYDNEeyrPsiBsse3RdHHF9mudMaotoRsaS8I8nkvof/uZS2+F0g +StRf571oe2XyFR7SOqkt6dhrJKyXWERHrVkY8SFlcN7ONGCoQPHzPKTDKCOM/icz +Q0CgFzzr6juwcqajuUpLXhZI9LK8yIySxZ2frHI2vDSANGupi5LAuBft7HZT9SQB +jLMi6Et8Vcad+qMUu2WFbm5PEn4KPJ2V +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 6047274297262753887 (0x53ec3beefbb2485f) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=ES, CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 + Validity + Not Before: May 20 08:38:15 2009 GMT + Not After : Dec 31 08:38:15 2030 GMT + Subject: C=ES, CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:ca:96:6b:8e:ea:f8:fb:f1:a2:35:e0:7f:4c:da: + e0:c3:52:d7:7d:b6:10:c8:02:5e:b3:43:2a:c4:4f: + 6a:b2:ca:1c:5d:28:9a:78:11:1a:69:59:57:af:b5: + 20:42:e4:8b:0f:e6:df:5b:a6:03:92:2f:f5:11:e4: + 62:d7:32:71:38:d9:04:0c:71:ab:3d:51:7e:0f:07: + df:63:05:5c:e9:bf:94:6f:c1:29:82:c0:b4:da:51: + b0:c1:3c:bb:ad:37:4a:5c:ca:f1:4b:36:0e:24:ab: + bf:c3:84:77:fd:a8:50:f4:b1:e7:c6:2f:d2:2d:59: + 8d:7a:0a:4e:96:69:52:02:aa:36:98:ec:fc:fa:14: + 83:0c:37:1f:c9:92:37:7f:d7:81:2d:e5:c4:b9:e0: + 3e:34:fe:67:f4:3e:66:d1:d3:f4:40:cf:5e:62:34: + 0f:70:06:3e:20:18:5a:ce:f7:72:1b:25:6c:93:74: + 14:93:a3:73:b1:0e:aa:87:10:23:59:5f:20:05:19: + 47:ed:68:8e:92:12:ca:5d:fc:d6:2b:b2:92:3c:20: + cf:e1:5f:af:20:be:a0:76:7f:76:e5:ec:1a:86:61: + 33:3e:e7:7b:b4:3f:a0:0f:8e:a2:b9:6a:6f:b9:87: + 26:6f:41:6c:88:a6:50:fd:6a:63:0b:f5:93:16:1b: + 19:8f:b2:ed:9b:9b:c9:90:f5:01:0c:df:19:3d:0f: + 3e:38:23:c9:2f:8f:0c:d1:02:fe:1b:55:d6:4e:d0: + 8d:3c:af:4f:a4:f3:fe:af:2a:d3:05:9d:79:08:a1: + cb:57:31:b4:9c:c8:90:b2:67:f4:18:16:93:3a:fc: + 47:d8:d1:78:96:31:1f:ba:2b:0c:5f:5d:99:ad:63: + 89:5a:24:20:76:d8:df:fd:ab:4e:a6:22:aa:9d:5e: + e6:27:8a:7d:68:29:a3:e7:8a:b8:da:11:bb:17:2d: + 99:9d:13:24:46:f7:c5:e2:d8:9f:8e:7f:c7:8f:74: + 6d:5a:b2:e8:72:f5:ac:ee:24:10:ad:2f:14:da:ff: + 2d:9a:46:71:47:be:42:df:bb:01:db:f4:7f:d3:28: + 8f:31:59:5b:d3:c9:02:a6:b4:52:ca:6e:97:fb:43: + c5:08:26:6f:8a:f4:bb:fd:9f:28:aa:0d:d5:45:f3: + 13:3a:1d:d8:c0:78:8f:41:67:3c:1e:94:64:ae:7b: + 0b:c5:e8:d9:01:88:39:1a:97:86:64:41:d5:3b:87: + 0c:6e:fa:0f:c6:bd:48:14:bf:39:4d:d4:9e:41:b6: + 8f:96:1d:63:96:93:d9:95:06:78:31:68:9e:37:06: + 3b:80:89:45:61:39:23:c7:1b:44:a3:15:e5:1c:f8: + 92:30:bb + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE, pathlen:1 + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + 65:CD:EB:AB:35:1E:00:3E:7E:D5:74:C0:1C:B4:73:47:0E:1A:64:2F + X509v3 Certificate Policies: + Policy: X509v3 Any Policy + CPS: http://www.firmaprofesional.com/cps + User Notice: + Explicit Text: + + Signature Algorithm: sha1WithRSAEncryption + 17:7d:a0:f9:b4:dd:c5:c5:eb:ad:4b:24:b5:a1:02:ab:dd:a5: + 88:4a:b2:0f:55:4b:2b:57:8c:3b:e5:31:dd:fe:c4:32:f1:e7: + 5b:64:96:36:32:18:ec:a5:32:77:d7:e3:44:b6:c0:11:2a:80: + b9:3d:6a:6e:7c:9b:d3:ad:fc:c3:d6:a3:e6:64:29:7c:d1:e1: + 38:1e:82:2b:ff:27:65:af:fb:16:15:c4:2e:71:84:e5:b5:ff: + fa:a4:47:bd:64:32:bb:f6:25:84:a2:27:42:f5:20:b0:c2:13: + 10:11:cd:10:15:ba:42:90:2a:d2:44:e1:96:26:eb:31:48:12: + fd:2a:da:c9:06:cf:74:1e:a9:4b:d5:87:28:f9:79:34:92:3e: + 2e:44:e8:f6:8f:4f:8f:35:3f:25:b3:39:dc:63:2a:90:6b:20: + 5f:c4:52:12:4e:97:2c:2a:ac:9d:97:de:48:f2:a3:66:db:c2: + d2:83:95:a6:66:a7:9e:25:0f:e9:0b:33:91:65:0a:5a:c3:d9: + 54:12:dd:af:c3:4e:0e:1f:26:5e:0d:dc:b3:8d:ec:d5:81:70: + de:d2:4f:24:05:f3:6c:4e:f5:4c:49:66:8d:d1:ff:d2:0b:25: + 41:48:fe:51:84:c6:42:af:80:04:cf:d0:7e:64:49:e4:f2:df: + a2:ec:b1:4c:c0:2a:1d:e7:b4:b1:65:a2:c4:bc:f1:98:f4:aa: + 70:07:63:b4:b8:da:3b:4c:fa:40:22:30:5b:11:a6:f0:05:0e: + c6:02:03:48:ab:86:9b:85:dd:db:dd:ea:a2:76:80:73:7d:f5: + 9c:04:c4:45:8d:e7:b9:1c:8b:9e:ea:d7:75:d1:72:b1:de:75: + 44:e7:42:7d:e2:57:6b:7d:dc:99:bc:3d:83:28:ea:80:93:8d: + c5:4c:65:c1:70:81:b8:38:fc:43:31:b2:f6:03:34:47:b2:ac: + fb:22:06:cb:1e:dd:17:47:1c:5f:66:b9:d3:1a:a2:da:11:b1: + a4:bc:23:c9:e4:be:87:ff:b9:94:b6:f8:5d:20:4a:d4:5f:e7: + bd:68:7b:65:f2:15:1e:d2:3a:a9:2d:e9:d8:6b:24:ac:97:58: + 44:47:ad:59:18:f1:21:65:70:de:ce:34:60:a8:40:f1:f3:3c: + a4:c3:28:23:8c:fe:27:33:43:40:a0:17:3c:eb:ea:3b:b0:72: + a6:a3:b9:4a:4b:5e:16:48:f4:b2:bc:c8:8c:92:c5:9d:9f:ac: + 72:36:bc:34:80:34:6b:a9:8b:92:c0:b8:17:ed:ec:76:53:f5: + 24:01:8c:b3:22:e8:4b:7c:55:c6:9d:fa:a3:14:bb:65:85:6e: + 6e:4f:12:7e:0a:3c:9d:95 +SHA1 Fingerprint=AE:C5:FB:3F:C8:E1:BF:C4:E5:4F:03:07:5A:9A:E8:00:B7:F7:B6:FA diff --git a/system/etc/security/cacerts/d18e9066.0 b/system/etc/security/cacerts/d18e9066.0 new file mode 100644 index 0000000000000000000000000000000000000000..fd686a65f3851b2dea1be874b0a609786284b375 --- /dev/null +++ b/system/etc/security/cacerts/d18e9066.0 @@ -0,0 +1,120 @@ +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIQCgFCgAAAAUUjyES1AAAAAjANBgkqhkiG9w0BAQsFADBK +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVu +VHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwHhcNMTQwMTE2MTgxMjIzWhcNMzQw +MTE2MTgxMjIzWjBKMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScw +JQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCnUBneP5k91DNG8W9RYYKyqU+PZ4ldhNlT +3Qwo2dfw/66VQ3KZ+bVdfIrBQuExUHTRgQ18zZshq0PirK1ehm7zCYofWjK9ouuU ++ehcCuz/mNKvcbO0U59Oh++SvL3sTzIwiEsXXlfEU8L2ApeN2WIrvyQfYo3fw7gp +S0l4PJNgiCL8mdo2yMKi1CxUAGc1bnO/AljwpN3lsKImesrgNqUZFvX9t++uP0D1 +bVoE/c40yiTcdCMbXTMTEl3EASX2MN0CXZ/g1Ue9tOsbobtJSdifWwLziuQkkORi +T0/Br4sOdBeo0XKIanoBScy0RnnGF7HamB4HWfp1IYVl3ZBWzvurpWCdxJ35UrCL +vYf5jysjCiN2O/cz4ckA82n5S6LgTrx+kzmEB/dEcH7+B1rlsazRGMzyNeVJSQjK +Vsk9+w8YfYs7wRPCTY/JTw436R+hDmrfYi7LNQZReSzIJTj0+kuniVyc0uMNOYZK +dHzVWYfCP04MXFL0PfdSgvHqo6z9STQaKPNBiDoT7uje/5kdX7rL6B7yuVBgwDHT +c+XvvqDtMwt0viAgxGds8AgDelWAf0ZOlqf0Hj7h9tgJ4TNkK2PXMl6f+cB7D3hv +l7yTmvmcEpB4eoCHFddydJxVdHixuuFucAS6T6C6aMN7/zHwcz09lCqxC0EOoP5N +iGVreTO01wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQU7UQZwNPwBovupHu+QucmVMiONnYwDQYJKoZIhvcNAQELBQAD +ggIBAA2ukDL2pkt8RHYZYR4nKM1eVO8lvOMIkPkp165oCOGUAFjvLi5+U1KMtlwH +6oi6mYtQlNeCgN9hCQCTrQ0U5s7B8jeUeLBfnLOic7iPBZM4zY0+sLj7wM+x8uwt +LRvM7Kqas6pgghstO8OEPVeKlh6cdbjTMM1gCIOQ045U8U1mwF10A0Cj7oV+wh93 +nAbowacYXVKV7cndJZ5t+qntozo00Fl72u1Q8zW/7esUTTHHYPTa8Yec4kjixsU3 ++wYQ+nVZZjFHKdp2mhzpgq7vmrlR94gjmmmVYjzlVYA211QC//G5Xc7UI2/YRYRK +W2XviQzdFKcgyxilJbQN+QHwotL0AMh0jqEqSI5l2xPE4iUXfeu+h1sXIFRRk0pT +AwvsXcoz7WL9RccvW9xYoIA55vrX/hMUpu09lEpCdNTDd1lzzY9GvlU47/rokTLq +l1gEIt44w8y8bckzOmoKaT+gyOpyj4xjhiO9bTyWnpXgSUyqorkqG5w2gXjtw+hG +4iZZRHUe2XWJUc0QhJ1hYMtd+ZciTY6Y5uN/9lu7rs3KSoFrXgvzUeF0K+l+J6fZ +mUlO+KWA2yUPHGNiiskzZ2s8EIPGrd6ozRaOjfAHN3Gf8qv8QfXBi+wAN10J5U6A +7/qxXDgGpRtK4dw4LTzcqx+QGtVKnO7RcGzM7vRX+Bi6hG6H +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 0a:01:42:80:00:00:01:45:23:c8:44:b5:00:00:00:02 + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=US, O=IdenTrust, CN=IdenTrust Commercial Root CA 1 + Validity + Not Before: Jan 16 18:12:23 2014 GMT + Not After : Jan 16 18:12:23 2034 GMT + Subject: C=US, O=IdenTrust, CN=IdenTrust Commercial Root CA 1 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:a7:50:19:de:3f:99:3d:d4:33:46:f1:6f:51:61: + 82:b2:a9:4f:8f:67:89:5d:84:d9:53:dd:0c:28:d9: + d7:f0:ff:ae:95:43:72:99:f9:b5:5d:7c:8a:c1:42: + e1:31:50:74:d1:81:0d:7c:cd:9b:21:ab:43:e2:ac: + ad:5e:86:6e:f3:09:8a:1f:5a:32:bd:a2:eb:94:f9: + e8:5c:0a:ec:ff:98:d2:af:71:b3:b4:53:9f:4e:87: + ef:92:bc:bd:ec:4f:32:30:88:4b:17:5e:57:c4:53: + c2:f6:02:97:8d:d9:62:2b:bf:24:1f:62:8d:df:c3: + b8:29:4b:49:78:3c:93:60:88:22:fc:99:da:36:c8: + c2:a2:d4:2c:54:00:67:35:6e:73:bf:02:58:f0:a4: + dd:e5:b0:a2:26:7a:ca:e0:36:a5:19:16:f5:fd:b7: + ef:ae:3f:40:f5:6d:5a:04:fd:ce:34:ca:24:dc:74: + 23:1b:5d:33:13:12:5d:c4:01:25:f6:30:dd:02:5d: + 9f:e0:d5:47:bd:b4:eb:1b:a1:bb:49:49:d8:9f:5b: + 02:f3:8a:e4:24:90:e4:62:4f:4f:c1:af:8b:0e:74: + 17:a8:d1:72:88:6a:7a:01:49:cc:b4:46:79:c6:17: + b1:da:98:1e:07:59:fa:75:21:85:65:dd:90:56:ce: + fb:ab:a5:60:9d:c4:9d:f9:52:b0:8b:bd:87:f9:8f: + 2b:23:0a:23:76:3b:f7:33:e1:c9:00:f3:69:f9:4b: + a2:e0:4e:bc:7e:93:39:84:07:f7:44:70:7e:fe:07: + 5a:e5:b1:ac:d1:18:cc:f2:35:e5:49:49:08:ca:56: + c9:3d:fb:0f:18:7d:8b:3b:c1:13:c2:4d:8f:c9:4f: + 0e:37:e9:1f:a1:0e:6a:df:62:2e:cb:35:06:51:79: + 2c:c8:25:38:f4:fa:4b:a7:89:5c:9c:d2:e3:0d:39: + 86:4a:74:7c:d5:59:87:c2:3f:4e:0c:5c:52:f4:3d: + f7:52:82:f1:ea:a3:ac:fd:49:34:1a:28:f3:41:88: + 3a:13:ee:e8:de:ff:99:1d:5f:ba:cb:e8:1e:f2:b9: + 50:60:c0:31:d3:73:e5:ef:be:a0:ed:33:0b:74:be: + 20:20:c4:67:6c:f0:08:03:7a:55:80:7f:46:4e:96: + a7:f4:1e:3e:e1:f6:d8:09:e1:33:64:2b:63:d7:32: + 5e:9f:f9:c0:7b:0f:78:6f:97:bc:93:9a:f9:9c:12: + 90:78:7a:80:87:15:d7:72:74:9c:55:74:78:b1:ba: + e1:6e:70:04:ba:4f:a0:ba:68:c3:7b:ff:31:f0:73: + 3d:3d:94:2a:b1:0b:41:0e:a0:fe:4d:88:65:6b:79: + 33:b4:d7 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + ED:44:19:C0:D3:F0:06:8B:EE:A4:7B:BE:42:E7:26:54:C8:8E:36:76 + Signature Algorithm: sha256WithRSAEncryption + 0d:ae:90:32:f6:a6:4b:7c:44:76:19:61:1e:27:28:cd:5e:54: + ef:25:bc:e3:08:90:f9:29:d7:ae:68:08:e1:94:00:58:ef:2e: + 2e:7e:53:52:8c:b6:5c:07:ea:88:ba:99:8b:50:94:d7:82:80: + df:61:09:00:93:ad:0d:14:e6:ce:c1:f2:37:94:78:b0:5f:9c: + b3:a2:73:b8:8f:05:93:38:cd:8d:3e:b0:b8:fb:c0:cf:b1:f2: + ec:2d:2d:1b:cc:ec:aa:9a:b3:aa:60:82:1b:2d:3b:c3:84:3d: + 57:8a:96:1e:9c:75:b8:d3:30:cd:60:08:83:90:d3:8e:54:f1: + 4d:66:c0:5d:74:03:40:a3:ee:85:7e:c2:1f:77:9c:06:e8:c1: + a7:18:5d:52:95:ed:c9:dd:25:9e:6d:fa:a9:ed:a3:3a:34:d0: + 59:7b:da:ed:50:f3:35:bf:ed:eb:14:4d:31:c7:60:f4:da:f1: + 87:9c:e2:48:e2:c6:c5:37:fb:06:10:fa:75:59:66:31:47:29: + da:76:9a:1c:e9:82:ae:ef:9a:b9:51:f7:88:23:9a:69:95:62: + 3c:e5:55:80:36:d7:54:02:ff:f1:b9:5d:ce:d4:23:6f:d8:45: + 84:4a:5b:65:ef:89:0c:dd:14:a7:20:cb:18:a5:25:b4:0d:f9: + 01:f0:a2:d2:f4:00:c8:74:8e:a1:2a:48:8e:65:db:13:c4:e2: + 25:17:7d:eb:be:87:5b:17:20:54:51:93:4a:53:03:0b:ec:5d: + ca:33:ed:62:fd:45:c7:2f:5b:dc:58:a0:80:39:e6:fa:d7:fe: + 13:14:a6:ed:3d:94:4a:42:74:d4:c3:77:59:73:cd:8f:46:be: + 55:38:ef:fa:e8:91:32:ea:97:58:04:22:de:38:c3:cc:bc:6d: + c9:33:3a:6a:0a:69:3f:a0:c8:ea:72:8f:8c:63:86:23:bd:6d: + 3c:96:9e:95:e0:49:4c:aa:a2:b9:2a:1b:9c:36:81:78:ed:c3: + e8:46:e2:26:59:44:75:1e:d9:75:89:51:cd:10:84:9d:61:60: + cb:5d:f9:97:22:4d:8e:98:e6:e3:7f:f6:5b:bb:ae:cd:ca:4a: + 81:6b:5e:0b:f3:51:e1:74:2b:e9:7e:27:a7:d9:99:49:4e:f8: + a5:80:db:25:0f:1c:63:62:8a:c9:33:67:6b:3c:10:83:c6:ad: + de:a8:cd:16:8e:8d:f0:07:37:71:9f:f2:ab:fc:41:f5:c1:8b: + ec:00:37:5d:09:e5:4e:80:ef:fa:b1:5c:38:06:a5:1b:4a:e1: + dc:38:2d:3c:dc:ab:1f:90:1a:d5:4a:9c:ee:d1:70:6c:cc:ee: + f4:57:f8:18:ba:84:6e:87 +SHA1 Fingerprint=DF:71:7E:AA:4A:D9:4E:C9:55:84:99:60:2D:48:DE:5F:BC:F0:3A:25 diff --git a/system/etc/security/cacerts/d41b5e2a.0 b/system/etc/security/cacerts/d41b5e2a.0 new file mode 100644 index 0000000000000000000000000000000000000000..640c21f0153592cacc7697f311e755659a1575e2 --- /dev/null +++ b/system/etc/security/cacerts/d41b5e2a.0 @@ -0,0 +1,51 @@ +-----BEGIN CERTIFICATE----- +MIIB8jCCAXigAwIBAgITBmyf18G7EEwpQ+Vxe3ssyBrBDjAKBggqhkjOPQQDAzA5 +MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g +Um9vdCBDQSA0MB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG +A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg +Q0EgNDB2MBAGByqGSM49AgEGBSuBBAAiA2IABNKrijdPo1MN/sGKe0uoe0ZLY7Bi +9i0b2whxIdIA6GO9mif78DluXeo9pcmBqqNbIJhFXRbb/egQbeOc4OO9X4Ri83Bk +M6DLJC9wuoihKqB1+IGuYgbEgds5bimwHvouXKNCMEAwDwYDVR0TAQH/BAUwAwEB +/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFNPsxzplbszh2naaVvuc84ZtV+WB +MAoGCCqGSM49BAMDA2gAMGUCMDqLIfG9fhGt0O9Yli/W651+kI0rz2ZVwyzjKKlw +CkcO8DdZEv8tmZQoTipPNU0zWgIxAOp1AE47xDqUEpHJWEadIRNyp4iciuRMStuW +1KyLa2tJElMzrdfkviT8tQp21KW8EA== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 06:6c:9f:d7:c1:bb:10:4c:29:43:e5:71:7b:7b:2c:c8:1a:c1:0e + Signature Algorithm: ecdsa-with-SHA384 + Issuer: C=US, O=Amazon, CN=Amazon Root CA 4 + Validity + Not Before: May 26 00:00:00 2015 GMT + Not After : May 26 00:00:00 2040 GMT + Subject: C=US, O=Amazon, CN=Amazon Root CA 4 + Subject Public Key Info: + Public Key Algorithm: id-ecPublicKey + Public-Key: (384 bit) + pub: + 04:d2:ab:8a:37:4f:a3:53:0d:fe:c1:8a:7b:4b:a8: + 7b:46:4b:63:b0:62:f6:2d:1b:db:08:71:21:d2:00: + e8:63:bd:9a:27:fb:f0:39:6e:5d:ea:3d:a5:c9:81: + aa:a3:5b:20:98:45:5d:16:db:fd:e8:10:6d:e3:9c: + e0:e3:bd:5f:84:62:f3:70:64:33:a0:cb:24:2f:70: + ba:88:a1:2a:a0:75:f8:81:ae:62:06:c4:81:db:39: + 6e:29:b0:1e:fa:2e:5c + ASN1 OID: secp384r1 + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Digital Signature, Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + D3:EC:C7:3A:65:6E:CC:E1:DA:76:9A:56:FB:9C:F3:86:6D:57:E5:81 + Signature Algorithm: ecdsa-with-SHA384 + 30:65:02:30:3a:8b:21:f1:bd:7e:11:ad:d0:ef:58:96:2f:d6: + eb:9d:7e:90:8d:2b:cf:66:55:c3:2c:e3:28:a9:70:0a:47:0e: + f0:37:59:12:ff:2d:99:94:28:4e:2a:4f:35:4d:33:5a:02:31: + 00:ea:75:00:4e:3b:c4:3a:94:12:91:c9:58:46:9d:21:13:72: + a7:88:9c:8a:e4:4c:4a:db:96:d4:ac:8b:6b:6b:49:12:53:33: + ad:d7:e4:be:24:fc:b5:0a:76:d4:a5:bc:10 +SHA1 Fingerprint=F6:10:84:07:D6:F8:BB:67:98:0C:C2:E2:44:C2:EB:AE:1C:EF:63:BE diff --git a/system/etc/security/cacerts/d4c339cb.0 b/system/etc/security/cacerts/d4c339cb.0 new file mode 100644 index 0000000000000000000000000000000000000000..3f5e924e839ef990cf9494d6dfc2eb42a2f9fb34 --- /dev/null +++ b/system/etc/security/cacerts/d4c339cb.0 @@ -0,0 +1,123 @@ +-----BEGIN CERTIFICATE----- +MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCB +hTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G +A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNV +BAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMTE5 +MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgT +EkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR +Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR +6FSS0gpWsawNJN3Fz0RndJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8X +pz3jsARh7v8Rl8f0hj4K+j5c+ZPmNHrZFGvnnLOFoIJ6dq9xkNfs/Q36nGz637CC +9BR++b7Epi9Pf5l/tfxnQ3K9DADWietrLNPtj5gcFKt+5eNu/Nio5JIk2kNrYrhV +/erBvGy2i/MOjZrkm2xpmfh4SDBF1a3hDTxFYPwyllEnvGfDyi62a+pGx8cgoLEf +Zd5ICLqkTqnyg0Y3hOvozIFIQ2dOciqbXL1MGyiKXCJ7tKuY2e7gUYPDCUZObT6Z ++pUX2nwzV0E8jVHtC7ZcryxjGt9XyD+86V3Em69FmeKjWiS0uqlWPc9vqv9JWL7w +qP/0uK3pN/u6uPQLOvnoQ0IeidiEyxPx2bvhiWC4jChWrBQdnArncevPDt09qZah +SL0896+1DSJMwBGB7FY79tOi4lu3sgQiUpWAk2nojkxl8ZEDLXB0AuqLZxUpaVIC +u9ffUGpVRr+goyhhf3DQw6KqLCGqR84onAZFdr+CGCe01a60y1Dma/RMhnEw6abf +Fobg2P9A3fvQQoh/ozM6LlweQRGBY84YcWsr7KaKtzFcOmpH4MN5WdYgGq/yapiq +crxXStJLnbsQ/LBMQeXtHT1eKJ2czL+zUdqnR+WEUwIDAQABo0IwQDAdBgNVHQ4E +FgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB +/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAArx1UaEt65Ru2yyTUEUAJNMnMvl +wFTPoCWOAvn9sKIN9SCYPBMtrFaisNZ+EZLpLrqeLppysb0ZRGxhNaKatBYSaVqM +4dc+pBroLwP0rmEdEBsqpIt6xf4FpuHA1sj+nq6PK7o9mfjYcwlYRm6mnPTXJ9OV +2jeDchzTc+CiR5kDOF3VSXkAKRzH7JsgHAckaVd4sjn8OoSgtZx8jb8uk2Intzna +FxiuvTwJaP+EmzzV1gsD41eeFPfR60/IvYcjt7ZJQ3mFXLrrkguhxuhoqEwWsRqZ +CuhTLJK7oQkYdQxlqHvLI7cawiiFwxv/0Cti76R7CZGYZ4wUAc1oBmpjIXUDgIiK +boHGhfKppC3n9KUkEEeDys30jXlYsQab5xoq2Z0B15R97QNKyvDb6KkBPvVWmcke +jkk9u+UJueBPSZI9FoJAzMxZxuY67RIuaTxslbH9qh17f4a+Hg4yRvv7E491f0yL +S0Zj/gA0QHDBw7mh3aZw4gSzQbzpgJHqZJx64SIDqZxubw5lT2yHh17zbqD5daWb +QOhTsiedSrnAdyGN/4fy3ryM7xfft0kL0fJuMAsaDk527RH89elWsn2/x20Kk4yl +0MC2Hb46TpSi125sC8KKfPog88Tk5c0NqMuRkrF8hey1FGlmDoLnzc7ILaZRfyHB +NVOFBkpdn627G190 +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 4c:aa:f9:ca:db:63:6f:e0:1f:f7:4e:d8:5b:03:86:9d + Signature Algorithm: sha384WithRSAEncryption + Issuer: C=GB, ST=Greater Manchester, L=Salford, O=COMODO CA Limited, CN=COMODO RSA Certification Authority + Validity + Not Before: Jan 19 00:00:00 2010 GMT + Not After : Jan 18 23:59:59 2038 GMT + Subject: C=GB, ST=Greater Manchester, L=Salford, O=COMODO CA Limited, CN=COMODO RSA Certification Authority + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:91:e8:54:92:d2:0a:56:b1:ac:0d:24:dd:c5:cf: + 44:67:74:99:2b:37:a3:7d:23:70:00:71:bc:53:df: + c4:fa:2a:12:8f:4b:7f:10:56:bd:9f:70:72:b7:61: + 7f:c9:4b:0f:17:a7:3d:e3:b0:04:61:ee:ff:11:97: + c7:f4:86:3e:0a:fa:3e:5c:f9:93:e6:34:7a:d9:14: + 6b:e7:9c:b3:85:a0:82:7a:76:af:71:90:d7:ec:fd: + 0d:fa:9c:6c:fa:df:b0:82:f4:14:7e:f9:be:c4:a6: + 2f:4f:7f:99:7f:b5:fc:67:43:72:bd:0c:00:d6:89: + eb:6b:2c:d3:ed:8f:98:1c:14:ab:7e:e5:e3:6e:fc: + d8:a8:e4:92:24:da:43:6b:62:b8:55:fd:ea:c1:bc: + 6c:b6:8b:f3:0e:8d:9a:e4:9b:6c:69:99:f8:78:48: + 30:45:d5:ad:e1:0d:3c:45:60:fc:32:96:51:27:bc: + 67:c3:ca:2e:b6:6b:ea:46:c7:c7:20:a0:b1:1f:65: + de:48:08:ba:a4:4e:a9:f2:83:46:37:84:eb:e8:cc: + 81:48:43:67:4e:72:2a:9b:5c:bd:4c:1b:28:8a:5c: + 22:7b:b4:ab:98:d9:ee:e0:51:83:c3:09:46:4e:6d: + 3e:99:fa:95:17:da:7c:33:57:41:3c:8d:51:ed:0b: + b6:5c:af:2c:63:1a:df:57:c8:3f:bc:e9:5d:c4:9b: + af:45:99:e2:a3:5a:24:b4:ba:a9:56:3d:cf:6f:aa: + ff:49:58:be:f0:a8:ff:f4:b8:ad:e9:37:fb:ba:b8: + f4:0b:3a:f9:e8:43:42:1e:89:d8:84:cb:13:f1:d9: + bb:e1:89:60:b8:8c:28:56:ac:14:1d:9c:0a:e7:71: + eb:cf:0e:dd:3d:a9:96:a1:48:bd:3c:f7:af:b5:0d: + 22:4c:c0:11:81:ec:56:3b:f6:d3:a2:e2:5b:b7:b2: + 04:22:52:95:80:93:69:e8:8e:4c:65:f1:91:03:2d: + 70:74:02:ea:8b:67:15:29:69:52:02:bb:d7:df:50: + 6a:55:46:bf:a0:a3:28:61:7f:70:d0:c3:a2:aa:2c: + 21:aa:47:ce:28:9c:06:45:76:bf:82:18:27:b4:d5: + ae:b4:cb:50:e6:6b:f4:4c:86:71:30:e9:a6:df:16: + 86:e0:d8:ff:40:dd:fb:d0:42:88:7f:a3:33:3a:2e: + 5c:1e:41:11:81:63:ce:18:71:6b:2b:ec:a6:8a:b7: + 31:5c:3a:6a:47:e0:c3:79:59:d6:20:1a:af:f2:6a: + 98:aa:72:bc:57:4a:d2:4b:9d:bb:10:fc:b0:4c:41: + e5:ed:1d:3d:5e:28:9d:9c:cc:bf:b3:51:da:a7:47: + e5:84:53 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + BB:AF:7E:02:3D:FA:A6:F1:3C:84:8E:AD:EE:38:98:EC:D9:32:32:D4 + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha384WithRSAEncryption + 0a:f1:d5:46:84:b7:ae:51:bb:6c:b2:4d:41:14:00:93:4c:9c: + cb:e5:c0:54:cf:a0:25:8e:02:f9:fd:b0:a2:0d:f5:20:98:3c: + 13:2d:ac:56:a2:b0:d6:7e:11:92:e9:2e:ba:9e:2e:9a:72:b1: + bd:19:44:6c:61:35:a2:9a:b4:16:12:69:5a:8c:e1:d7:3e:a4: + 1a:e8:2f:03:f4:ae:61:1d:10:1b:2a:a4:8b:7a:c5:fe:05:a6: + e1:c0:d6:c8:fe:9e:ae:8f:2b:ba:3d:99:f8:d8:73:09:58:46: + 6e:a6:9c:f4:d7:27:d3:95:da:37:83:72:1c:d3:73:e0:a2:47: + 99:03:38:5d:d5:49:79:00:29:1c:c7:ec:9b:20:1c:07:24:69: + 57:78:b2:39:fc:3a:84:a0:b5:9c:7c:8d:bf:2e:93:62:27:b7: + 39:da:17:18:ae:bd:3c:09:68:ff:84:9b:3c:d5:d6:0b:03:e3: + 57:9e:14:f7:d1:eb:4f:c8:bd:87:23:b7:b6:49:43:79:85:5c: + ba:eb:92:0b:a1:c6:e8:68:a8:4c:16:b1:1a:99:0a:e8:53:2c: + 92:bb:a1:09:18:75:0c:65:a8:7b:cb:23:b7:1a:c2:28:85:c3: + 1b:ff:d0:2b:62:ef:a4:7b:09:91:98:67:8c:14:01:cd:68:06: + 6a:63:21:75:03:80:88:8a:6e:81:c6:85:f2:a9:a4:2d:e7:f4: + a5:24:10:47:83:ca:cd:f4:8d:79:58:b1:06:9b:e7:1a:2a:d9: + 9d:01:d7:94:7d:ed:03:4a:ca:f0:db:e8:a9:01:3e:f5:56:99: + c9:1e:8e:49:3d:bb:e5:09:b9:e0:4f:49:92:3d:16:82:40:cc: + cc:59:c6:e6:3a:ed:12:2e:69:3c:6c:95:b1:fd:aa:1d:7b:7f: + 86:be:1e:0e:32:46:fb:fb:13:8f:75:7f:4c:8b:4b:46:63:fe: + 00:34:40:70:c1:c3:b9:a1:dd:a6:70:e2:04:b3:41:bc:e9:80: + 91:ea:64:9c:7a:e1:22:03:a9:9c:6e:6f:0e:65:4f:6c:87:87: + 5e:f3:6e:a0:f9:75:a5:9b:40:e8:53:b2:27:9d:4a:b9:c0:77: + 21:8d:ff:87:f2:de:bc:8c:ef:17:df:b7:49:0b:d1:f2:6e:30: + 0b:1a:0e:4e:76:ed:11:fc:f5:e9:56:b2:7d:bf:c7:6d:0a:93: + 8c:a5:d0:c0:b6:1d:be:3a:4e:94:a2:d7:6e:6c:0b:c2:8a:7c: + fa:20:f3:c4:e4:e5:cd:0d:a8:cb:91:92:b1:7c:85:ec:b5:14: + 69:66:0e:82:e7:cd:ce:c8:2d:a6:51:7f:21:c1:35:53:85:06: + 4a:5d:9f:ad:bb:1b:5f:74 +SHA1 Fingerprint=AF:E5:D2:44:A8:D1:19:42:30:FF:47:9F:E2:F8:97:BB:CD:7A:8C:B4 diff --git a/system/etc/security/cacerts/d59297b8.0 b/system/etc/security/cacerts/d59297b8.0 new file mode 100644 index 0000000000000000000000000000000000000000..31c3e8a6b4ded582844b00b6e8757cb86ffae81e --- /dev/null +++ b/system/etc/security/cacerts/d59297b8.0 @@ -0,0 +1,78 @@ +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDEl +MCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMe +U2VjdXJpdHkgQ29tbXVuaWNhdGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoX +DTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMCSlAxJTAjBgNVBAoTHFNFQ09NIFRy +dXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3VyaXR5IENvbW11bmlj +YXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANAV +OVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGr +zbl+dp+++T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVM +VAX3NuRFg3sUZdbcDE3R3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQ +hNBqyjoGADdH5H5XTz+L62e4iKrFvlNVspHEfbmwhRkGeC7bYRr6hfVKkaHnFtWO +ojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1KEOtOghY6rCcMU/Gt1SSw +awNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8QIH4D5cs +OPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3 +DQEBCwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpF +coJxDjrSzG+ntKEju/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXc +okgfGT+Ok+vx+hfuzU7jBBJV1uXk3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8 +t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6qtnRGEmyR7jTV7JqR50S+kDFy +1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29mvVXIwAHIRc/ +SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03 +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 0 (0x0) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=JP, O=SECOM Trust Systems CO.,LTD., OU=Security Communication RootCA2 + Validity + Not Before: May 29 05:00:39 2009 GMT + Not After : May 29 05:00:39 2029 GMT + Subject: C=JP, O=SECOM Trust Systems CO.,LTD., OU=Security Communication RootCA2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:d0:15:39:52:b1:52:b3:ba:c5:59:82:c4:5d:52: + ae:3a:43:65:80:4b:c7:f2:96:bc:db:36:97:d6:a6: + 64:8c:a8:5e:f0:e3:0a:1c:f7:df:97:3d:4b:ae:f6: + 5d:ec:21:b5:41:ab:cd:b9:7e:76:9f:be:f9:3e:36: + 34:a0:3b:c1:f6:31:11:45:74:93:3d:57:80:c5:f9: + 89:99:ca:e5:ab:6a:d4:b5:da:41:90:10:c1:d6:d6: + 42:89:c2:bf:f4:38:12:95:4c:54:05:f7:36:e4:45: + 83:7b:14:65:d6:dc:0c:4d:d1:de:7e:0c:ab:3b:c4: + 15:be:3a:56:a6:5a:6f:76:69:52:a9:7a:b9:c8:eb: + 6a:9a:5d:52:d0:2d:0a:6b:35:16:09:10:84:d0:6a: + ca:3a:06:00:37:47:e4:7e:57:4f:3f:8b:eb:67:b8: + 88:aa:c5:be:53:55:b2:91:c4:7d:b9:b0:85:19:06: + 78:2e:db:61:1a:fa:85:f5:4a:91:a1:e7:16:d5:8e: + a2:39:df:94:b8:70:1f:28:3f:8b:fc:40:5e:63:83: + 3c:83:2a:1a:99:6b:cf:de:59:6a:3b:fc:6f:16:d7: + 1f:fd:4a:10:eb:4e:82:16:3a:ac:27:0c:53:f1:ad: + d5:24:b0:6b:03:50:c1:2d:3c:16:dd:44:34:27:1a: + 75:fb + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 0A:85:A9:77:65:05:98:7C:40:81:F8:0F:97:2C:38:F1:0A:EC:3C:CF + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha256WithRSAEncryption + 4c:3a:a3:44:ac:b9:45:b1:c7:93:7e:c8:0b:0a:42:df:64:ea: + 1c:ee:59:6c:08:ba:89:5f:6a:ca:4a:95:9e:7a:8f:07:c5:da: + 45:72:82:71:0e:3a:d2:cc:6f:a7:b4:a1:23:bb:f6:24:9f:cb: + 17:fe:8c:a6:ce:c2:d2:db:cc:8d:fc:71:fc:03:29:c1:6c:5d: + 33:5f:64:b6:65:3b:89:6f:18:76:78:f5:dc:a2:48:1f:19:3f: + 8e:93:eb:f1:fa:17:ee:cd:4e:e3:04:12:55:d6:e5:e4:dd:fb: + 3e:05:7c:e2:1d:5e:c6:a7:bc:97:4f:68:3a:f5:e9:2e:0a:43: + b6:af:57:5c:62:68:7c:b7:fd:a3:8a:84:a0:ac:62:be:2b:09: + 87:34:f0:6a:01:bb:9b:29:56:3c:fe:00:37:cf:23:6c:f1:4e: + aa:b6:74:46:12:6c:91:ee:34:d5:ec:9a:91:e7:44:be:90:31: + 72:d5:49:02:f6:02:e5:f4:1f:eb:7c:d9:96:55:a9:ff:ec:8a: + f9:99:47:ff:35:5a:02:aa:04:cb:8a:5b:87:71:29:91:bd:a4: + b4:7a:0d:bd:9a:f5:57:23:00:07:21:17:3f:4a:39:d1:05:49: + 0b:a7:b6:37:81:a5:5d:8c:aa:33:5e:81:28:7c:a7:7d:27:eb: + 00:ae:8d:37 +SHA1 Fingerprint=5F:3B:8C:F2:F8:10:B3:7D:78:B4:CE:EC:19:19:C3:73:34:B9:C7:74 diff --git a/system/etc/security/cacerts/d66b55d9.0 b/system/etc/security/cacerts/d66b55d9.0 new file mode 100644 index 0000000000000000000000000000000000000000..d34d5c2da2477691fd4d1a4c498ce534ed11c4db --- /dev/null +++ b/system/etc/security/cacerts/d66b55d9.0 @@ -0,0 +1,82 @@ +-----BEGIN CERTIFICATE----- +MIIEPTCCAyWgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBvzE/MD0GA1UEAww2VMOc +UktUUlVTVCBFbGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sx +c8SxMQswCQYDVQQGEwJUUjEPMA0GA1UEBwwGQW5rYXJhMV4wXAYDVQQKDFVUw5xS +S1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUgQmlsacWfaW0gR8O8dmVubGnEn2kg +SGl6bWV0bGVyaSBBLsWeLiAoYykgQXJhbMSxayAyMDA3MB4XDTA3MTIyNTE4Mzcx +OVoXDTE3MTIyMjE4MzcxOVowgb8xPzA9BgNVBAMMNlTDnFJLVFJVU1QgRWxla3Ry +b25payBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsTELMAkGA1UEBhMC +VFIxDzANBgNVBAcMBkFua2FyYTFeMFwGA1UECgxVVMOcUktUUlVTVCBCaWxnaSDE +sGxldGnFn2ltIHZlIEJpbGnFn2ltIEfDvHZlbmxpxJ9pIEhpem1ldGxlcmkgQS7F +ni4gKGMpIEFyYWzEsWsgMjAwNzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAKu3PgqMyKVYFeaK7yc9SrToJdPNM8Ig3BnuiD9NYvDdE3ePYakqtdTyuTFY +KTsvP2qcb3N2Je40IIDu6rfwxArNK4aUyeNgsURSsloptJGXg9i3phQvKUmi8wUG ++7RP2qFsmmaf8EMJyupyj+sA1zU511YXRxcw9L6/P8JorzZAwan0qafoEGsIiveG +HtyaKhUG9qPw9ODHFNRRf8+0222vR5YXm3dx2KdxnSQM9pQ/hTEST7ruToK4uT6P +IzdezKKqdfcYbwnTrqdUKDT74eA7YH2gvnmJhsifLfkKS8RQouf9eRbHegsYz85M +733WB2+Y8a+xwXrXgTW4qhe04MsCAwEAAaNCMEAwHQYDVR0OBBYEFCnFkKslrxHk +Yb+j/4hhkeYO/pyBMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0G +CSqGSIb3DQEBBQUAA4IBAQAQDdr4Ouwo0RSVgrESLFF6QSU2TJ/sPx+EnWVUXKgW +AkD6bho3hO9ynYYKVZ1WKKxmLNA6VpM0ByWtCLCPyA8JWcqdmBzlVPi5RX9ql2+I +aE1KBiY3iAIOtsbWcpnOa3faYjGkVh+uX4132l32iPwa2Z61gfAyuOOI0JzzaqC5 +mxRZNTZPz/OOXl0XrRWV2N2y1RVuAE6zS89mlOTgzbUF2mNXi+WzqtvALhyQRNsa +XRik7r4EW5nVcV9VZWRi1aKbBFmGyGJ353yCRWo9F7/snXUMrqNvWtMvmDb08PUZ +qxFdyKbjKlhqQgnDvZImZjINXQhVdP+MmNAKpoRq0Tl9 +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 1 (0x1) + Signature Algorithm: sha1WithRSAEncryption + Issuer: CN=T\xC3\x9CRKTRUST Elektronik Sertifika Hizmet Sa\xC4\x9Flay\xC4\xB1c\xC4\xB1s\xC4\xB1, C=TR, L=Ankara, O=T\xC3\x9CRKTRUST Bilgi \xC4\xB0leti\xC5\x9Fim ve Bili\xC5\x9Fim G\xC3\xBCvenli\xC4\x9Fi Hizmetleri A.\xC5\x9E. (c) Aral\xC4\xB1k 2007 + Validity + Not Before: Dec 25 18:37:19 2007 GMT + Not After : Dec 22 18:37:19 2017 GMT + Subject: CN=T\xC3\x9CRKTRUST Elektronik Sertifika Hizmet Sa\xC4\x9Flay\xC4\xB1c\xC4\xB1s\xC4\xB1, C=TR, L=Ankara, O=T\xC3\x9CRKTRUST Bilgi \xC4\xB0leti\xC5\x9Fim ve Bili\xC5\x9Fim G\xC3\xBCvenli\xC4\x9Fi Hizmetleri A.\xC5\x9E. (c) Aral\xC4\xB1k 2007 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:ab:b7:3e:0a:8c:c8:a5:58:15:e6:8a:ef:27:3d: + 4a:b4:e8:25:d3:cd:33:c2:20:dc:19:ee:88:3f:4d: + 62:f0:dd:13:77:8f:61:a9:2a:b5:d4:f2:b9:31:58: + 29:3b:2f:3f:6a:9c:6f:73:76:25:ee:34:20:80:ee: + ea:b7:f0:c4:0a:cd:2b:86:94:c9:e3:60:b1:44:52: + b2:5a:29:b4:91:97:83:d8:b7:a6:14:2f:29:49:a2: + f3:05:06:fb:b4:4f:da:a1:6c:9a:66:9f:f0:43:09: + ca:ea:72:8f:eb:00:d7:35:39:d7:56:17:47:17:30: + f4:be:bf:3f:c2:68:af:36:40:c1:a9:f4:a9:a7:e8: + 10:6b:08:8a:f7:86:1e:dc:9a:2a:15:06:f6:a3:f0: + f4:e0:c7:14:d4:51:7f:cf:b4:db:6d:af:47:96:17: + 9b:77:71:d8:a7:71:9d:24:0c:f6:94:3f:85:31:12: + 4f:ba:ee:4e:82:b8:b9:3e:8f:23:37:5e:cc:a2:aa: + 75:f7:18:6f:09:d3:ae:a7:54:28:34:fb:e1:e0:3b: + 60:7d:a0:be:79:89:86:c8:9f:2d:f9:0a:4b:c4:50: + a2:e7:fd:79:16:c7:7a:0b:18:cf:ce:4c:ef:7d:d6: + 07:6f:98:f1:af:b1:c1:7a:d7:81:35:b8:aa:17:b4: + e0:cb + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 29:C5:90:AB:25:AF:11:E4:61:BF:A3:FF:88:61:91:E6:0E:FE:9C:81 + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 10:0d:da:f8:3a:ec:28:d1:14:95:82:b1:12:2c:51:7a:41:25: + 36:4c:9f:ec:3f:1f:84:9d:65:54:5c:a8:16:02:40:fa:6e:1a: + 37:84:ef:72:9d:86:0a:55:9d:56:28:ac:66:2c:d0:3a:56:93: + 34:07:25:ad:08:b0:8f:c8:0f:09:59:ca:9d:98:1c:e5:54:f8: + b9:45:7f:6a:97:6f:88:68:4d:4a:06:26:37:88:02:0e:b6:c6: + d6:72:99:ce:6b:77:da:62:31:a4:56:1f:ae:5f:8d:77:da:5d: + f6:88:fc:1a:d9:9e:b5:81:f0:32:b8:e3:88:d0:9c:f3:6a:a0: + b9:9b:14:59:35:36:4f:cf:f3:8e:5e:5d:17:ad:15:95:d8:dd: + b2:d5:15:6e:00:4e:b3:4b:cf:66:94:e4:e0:cd:b5:05:da:63: + 57:8b:e5:b3:aa:db:c0:2e:1c:90:44:db:1a:5d:18:a4:ee:be: + 04:5b:99:d5:71:5f:55:65:64:62:d5:a2:9b:04:59:86:c8:62: + 77:e7:7c:82:45:6a:3d:17:bf:ec:9d:75:0c:ae:a3:6f:5a:d3: + 2f:98:36:f4:f0:f5:19:ab:11:5d:c8:a6:e3:2a:58:6a:42:09: + c3:bd:92:26:66:32:0d:5d:08:55:74:ff:8c:98:d0:0a:a6:84: + 6a:d1:39:7d +SHA1 Fingerprint=F1:7F:6F:B6:31:DC:99:E3:A3:C8:7F:FE:1C:F1:81:10:88:D9:60:33 diff --git a/system/etc/security/cacerts/d6e6eab9.0 b/system/etc/security/cacerts/d6e6eab9.0 new file mode 100644 index 0000000000000000000000000000000000000000..aff6bdf53fdacc946eac2ff2a64ddfd023eacc2e --- /dev/null +++ b/system/etc/security/cacerts/d6e6eab9.0 @@ -0,0 +1,123 @@ +-----BEGIN CERTIFICATE----- +MIIFkjCCA3qgAwIBAgIBATANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJGUjET +MBEGA1UEChMKQ2VydGlub21pczEXMBUGA1UECxMOMDAwMiA0MzM5OTg5MDMxHTAb +BgNVBAMTFENlcnRpbm9taXMgLSBSb290IENBMB4XDTEzMTAyMTA5MTcxOFoXDTMz +MTAyMTA5MTcxOFowWjELMAkGA1UEBhMCRlIxEzARBgNVBAoTCkNlcnRpbm9taXMx +FzAVBgNVBAsTDjAwMDIgNDMzOTk4OTAzMR0wGwYDVQQDExRDZXJ0aW5vbWlzIC0g +Um9vdCBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANTMCQosP5L2 +fxSeC5yaah1AMGT9qt8OHgZbn1CF6s2Nq0Nn3rD6foCWnoR4kkjW4znuzuRZWJfl +LieY6pOod5tK8O90gC3rMB+12ceAnGInkYjwSond3IjmFPnVAy//ldu9n+ws+hQV +WZUKxkd8aRi5pwP5ynapz8dvtF4F/u7BUrJ1Mofs7SlmO/NKFoL21prbcpjp3vDF +TKWrteoB4owuZH9kb/2jJZOLyKIOSY008B/sWEUuNKqEUL3nskoTuLAPrjhdsKkb +5nPJWqHZZkCqqU2mNAKthH6yI8H7KsZn9DS2sJVqM09xRLWtwHkziOC/7aOgFLSc +CbAK42C++PhmiM1b8XcF4LVzbsF9Ri6OSyemzTUK/eVNfaoqoynHWmgE6OXWk6Ri +wsXm9E/G+Z8ajYJJGYrKWUM66A0ywfRMEwNvbqY/kXPLynNvEiCL7sCCeN5LLsJJ +wx3tFvYk9CcbXFcx3FXuqB5vbKziRcxXV4p1VxngtViZSTYxPDMBbRZKzbgqg4SG +m/lg0h9tkQPTYKbVPZrdd5A9NaSfD171UkRpucC63M9933zZxKyGIjK8e2uR73r4 +F2iw4lNVYC2vPsKD2NkJK/DAZNuHi5HMkesE/Xa0lZrmFAYb1TQdvtj/dBxThZng +WVJKYe2InmtJiUZ+IFrZ50rlau7SZRFDAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIB +BjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTvkUz1pcMw6C8I6tNxIqSSaHh0 +2TAfBgNVHSMEGDAWgBTvkUz1pcMw6C8I6tNxIqSSaHh02TANBgkqhkiG9w0BAQsF +AAOCAgEAfj1U2iJdGlg+O1QnurrMyOMaauo++RLrVl89UM7g6kgmJs95Vn6RHJk/ +0KGRHCwPT5iVWVO90CLYiF2cN/z7ZMF4jIuaYAnq1fohX9B0ZedQxb8uuQsLrbWw +F6YSjNRieOpWauwK0kDDPAUwPk2Ut59KA9N9J0u2/kTO+hkzGm2kQtHdzMjI1xZS +g081lLMSVX3l4kLr5JyTCcBMWwerx20RoFAXlCOotQqSD7J6wWAsOMwaplv/8gzj +qh8c3LigkyfeY+N/IZ865Z764BNqdeuWXGKRlI5nU7aJ+BIJy29SWwNyhlCVCNSN +h4YVH5Uk2KRvms6knZtt0rJ2BobGVgjF6wnaNsIbW0G+YSrjcOa4pvi2WsS9Iff/ +ql+hbHY5ZtbqTFXhADObE5hjyW/QASAJN1LnDE8+zbz1X5YnpyACleAu6AdBBR8V +btaw5BngDwKTACdyxYvRVB9dSsNAl35VpnzBMwQUAR1JIGkLGZOdblgi90AMRgwj +Y/M50n92Uaf0yKHxDHYiI0ZSKS3io0EHVmmY0gUJvGnHWmHNj4FgFU2A3ZDifcRQ +8ow7bkrHxuaAKzyBvBGAFhAn1/DNP3nMcyrDflOR1m749fPH0FFNjkulW+YZFzvW +gQncItzujrnEj1PhZ7szuIgVRs/taTX/dQ1G885x4cVrhkIGuUE= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 1 (0x1) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=FR, O=Certinomis, OU=0002 433998903, CN=Certinomis - Root CA + Validity + Not Before: Oct 21 09:17:18 2013 GMT + Not After : Oct 21 09:17:18 2033 GMT + Subject: C=FR, O=Certinomis, OU=0002 433998903, CN=Certinomis - Root CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:d4:cc:09:0a:2c:3f:92:f6:7f:14:9e:0b:9c:9a: + 6a:1d:40:30:64:fd:aa:df:0e:1e:06:5b:9f:50:85: + ea:cd:8d:ab:43:67:de:b0:fa:7e:80:96:9e:84:78: + 92:48:d6:e3:39:ee:ce:e4:59:58:97:e5:2e:27:98: + ea:93:a8:77:9b:4a:f0:ef:74:80:2d:eb:30:1f:b5: + d9:c7:80:9c:62:27:91:88:f0:4a:89:dd:dc:88:e6: + 14:f9:d5:03:2f:ff:95:db:bd:9f:ec:2c:fa:14:15: + 59:95:0a:c6:47:7c:69:18:b9:a7:03:f9:ca:76:a9: + cf:c7:6f:b4:5e:05:fe:ee:c1:52:b2:75:32:87:ec: + ed:29:66:3b:f3:4a:16:82:f6:d6:9a:db:72:98:e9: + de:f0:c5:4c:a5:ab:b5:ea:01:e2:8c:2e:64:7f:64: + 6f:fd:a3:25:93:8b:c8:a2:0e:49:8d:34:f0:1f:ec: + 58:45:2e:34:aa:84:50:bd:e7:b2:4a:13:b8:b0:0f: + ae:38:5d:b0:a9:1b:e6:73:c9:5a:a1:d9:66:40:aa: + a9:4d:a6:34:02:ad:84:7e:b2:23:c1:fb:2a:c6:67: + f4:34:b6:b0:95:6a:33:4f:71:44:b5:ad:c0:79:33: + 88:e0:bf:ed:a3:a0:14:b4:9c:09:b0:0a:e3:60:be: + f8:f8:66:88:cd:5b:f1:77:05:e0:b5:73:6e:c1:7d: + 46:2e:8e:4b:27:a6:cd:35:0a:fd:e5:4d:7d:aa:2a: + a3:29:c7:5a:68:04:e8:e5:d6:93:a4:62:c2:c5:e6: + f4:4f:c6:f9:9f:1a:8d:82:49:19:8a:ca:59:43:3a: + e8:0d:32:c1:f4:4c:13:03:6f:6e:a6:3f:91:73:cb: + ca:73:6f:12:20:8b:ee:c0:82:78:de:4b:2e:c2:49: + c3:1d:ed:16:f6:24:f4:27:1b:5c:57:31:dc:55:ee: + a8:1e:6f:6c:ac:e2:45:cc:57:57:8a:75:57:19:e0: + b5:58:99:49:36:31:3c:33:01:6d:16:4a:cd:b8:2a: + 83:84:86:9b:f9:60:d2:1f:6d:91:03:d3:60:a6:d5: + 3d:9a:dd:77:90:3d:35:a4:9f:0f:5e:f5:52:44:69: + b9:c0:ba:dc:cf:7d:df:7c:d9:c4:ac:86:22:32:bc: + 7b:6b:91:ef:7a:f8:17:68:b0:e2:53:55:60:2d:af: + 3e:c2:83:d8:d9:09:2b:f0:c0:64:db:87:8b:91:cc: + 91:eb:04:fd:76:b4:95:9a:e6:14:06:1b:d5:34:1d: + be:d8:ff:74:1c:53:85:99:e0:59:52:4a:61:ed:88: + 9e:6b:49:89:46:7e:20:5a:d9:e7:4a:e5:6a:ee:d2: + 65:11:43 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + EF:91:4C:F5:A5:C3:30:E8:2F:08:EA:D3:71:22:A4:92:68:78:74:D9 + X509v3 Authority Key Identifier: + keyid:EF:91:4C:F5:A5:C3:30:E8:2F:08:EA:D3:71:22:A4:92:68:78:74:D9 + + Signature Algorithm: sha256WithRSAEncryption + 7e:3d:54:da:22:5d:1a:58:3e:3b:54:27:ba:ba:cc:c8:e3:1a: + 6a:ea:3e:f9:12:eb:56:5f:3d:50:ce:e0:ea:48:26:26:cf:79: + 56:7e:91:1c:99:3f:d0:a1:91:1c:2c:0f:4f:98:95:59:53:bd: + d0:22:d8:88:5d:9c:37:fc:fb:64:c1:78:8c:8b:9a:60:09:ea: + d5:fa:21:5f:d0:74:65:e7:50:c5:bf:2e:b9:0b:0b:ad:b5:b0: + 17:a6:12:8c:d4:62:78:ea:56:6a:ec:0a:d2:40:c3:3c:05:30: + 3e:4d:94:b7:9f:4a:03:d3:7d:27:4b:b6:fe:44:ce:fa:19:33: + 1a:6d:a4:42:d1:dd:cc:c8:c8:d7:16:52:83:4f:35:94:b3:12: + 55:7d:e5:e2:42:eb:e4:9c:93:09:c0:4c:5b:07:ab:c7:6d:11: + a0:50:17:94:23:a8:b5:0a:92:0f:b2:7a:c1:60:2c:38:cc:1a: + a6:5b:ff:f2:0c:e3:aa:1f:1c:dc:b8:a0:93:27:de:63:e3:7f: + 21:9f:3a:e5:9e:fa:e0:13:6a:75:eb:96:5c:62:91:94:8e:67: + 53:b6:89:f8:12:09:cb:6f:52:5b:03:72:86:50:95:08:d4:8d: + 87:86:15:1f:95:24:d8:a4:6f:9a:ce:a4:9d:9b:6d:d2:b2:76: + 06:86:c6:56:08:c5:eb:09:da:36:c2:1b:5b:41:be:61:2a:e3: + 70:e6:b8:a6:f8:b6:5a:c4:bd:21:f7:ff:aa:5f:a1:6c:76:39: + 66:d6:ea:4c:55:e1:00:33:9b:13:98:63:c9:6f:d0:01:20:09: + 37:52:e7:0c:4f:3e:cd:bc:f5:5f:96:27:a7:20:02:95:e0:2e: + e8:07:41:05:1f:15:6e:d6:b0:e4:19:e0:0f:02:93:00:27:72: + c5:8b:d1:54:1f:5d:4a:c3:40:97:7e:55:a6:7c:c1:33:04:14: + 01:1d:49:20:69:0b:19:93:9d:6e:58:22:f7:40:0c:46:0c:23: + 63:f3:39:d2:7f:76:51:a7:f4:c8:a1:f1:0c:76:22:23:46:52: + 29:2d:e2:a3:41:07:56:69:98:d2:05:09:bc:69:c7:5a:61:cd: + 8f:81:60:15:4d:80:dd:90:e2:7d:c4:50:f2:8c:3b:6e:4a:c7: + c6:e6:80:2b:3c:81:bc:11:80:16:10:27:d7:f0:cd:3f:79:cc: + 73:2a:c3:7e:53:91:d6:6e:f8:f5:f3:c7:d0:51:4d:8e:4b:a5: + 5b:e6:19:17:3b:d6:81:09:dc:22:dc:ee:8e:b9:c4:8f:53:e1: + 67:bb:33:b8:88:15:46:cf:ed:69:35:ff:75:0d:46:f3:ce:71: + e1:c5:6b:86:42:06:b9:41 +SHA1 Fingerprint=9D:70:BB:01:A5:A4:A0:18:11:2E:F7:1C:01:B9:32:C5:34:E7:88:A8 diff --git a/system/etc/security/cacerts/d7746a63.0 b/system/etc/security/cacerts/d7746a63.0 new file mode 100644 index 0000000000000000000000000000000000000000..507ab7037573a98a76e0384032a8d0a6813e83ea --- /dev/null +++ b/system/etc/security/cacerts/d7746a63.0 @@ -0,0 +1,90 @@ +-----BEGIN CERTIFICATE----- +MIIEQzCCAyugAwIBAgIDCYP0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNVBAYTAkRF +MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBD +bGFzcyAzIENBIDIgRVYgMjAwOTAeFw0wOTExMDUwODUwNDZaFw0yOTExMDUwODUw +NDZaMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNV +BAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAwOTCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAJnxhDRwui+3MKCOvXwEz75ivJn9gpfSegpn +ljgJ9hBOlSJzmY3aFS3nBfwZcyK3jpgAvDw9rKFs+9Z5JUut8Mxk2og+KbgPCdM0 +3TP1YtHhzRnp7hhPTFiu4h7WDFsVWtg6uMQYZB7jM7K1iXdODL/ZlGsTl28So/6Z +qQTMFexgaDbtCHu39b+T7WYxg4zGcTSHThfqr4uRjRxWQa4iN1438h3Z0S0NL2lR +p75mpoo6Kr3HGrHhFPC+Oh25z1uxav60sUYgovseO3Dvk5h9jHOW8sXvhXCtKSb8 +HgQ+HKDYD8tSg2J87otTlZCpV6LqYQXY+U3EJ/pure3511H3a6UCAwEAAaOCASQw +ggEgMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNOUikxiEyoZLsyvcop9Ntea +HNxnMA4GA1UdDwEB/wQEAwIBBjCB3QYDVR0fBIHVMIHSMIGHoIGEoIGBhn9sZGFw +Oi8vZGlyZWN0b3J5LmQtdHJ1c3QubmV0L0NOPUQtVFJVU1QlMjBSb290JTIwQ2xh +c3MlMjAzJTIwQ0ElMjAyJTIwRVYlMjAyMDA5LE89RC1UcnVzdCUyMEdtYkgsQz1E +RT9jZXJ0aWZpY2F0ZXJldm9jYXRpb25saXN0MEagRKBChkBodHRwOi8vd3d3LmQt +dHJ1c3QubmV0L2NybC9kLXRydXN0X3Jvb3RfY2xhc3NfM19jYV8yX2V2XzIwMDku +Y3JsMA0GCSqGSIb3DQEBCwUAA4IBAQA07XtaPKSUiO8aEXUHL7P+PPoeUSbrh/Yp +3uDx1MYkCenBz1UbtDDZzhr+BlGmFaQt77JLvyAoJUnRpjZ3NOhk31KxEcdzes05 +nsKtjHEh8lprr988TlWvsoRlFIm5d8sqMb7Po23Pb0iUMkZv53GMoKaEGTcH8gNF +CSuGdXzfX2lXANtu2KZyIktQ1HWYVt+3GP9DQ1CuekR78HlR10M9p9OB0/DJT7na +xpeG0ILD5EJt/rDiZE4OJudANCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqX +KVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVvw9y4AyHqnxbxLFS1 +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 623604 (0x983f4) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=DE, O=D-Trust GmbH, CN=D-TRUST Root Class 3 CA 2 EV 2009 + Validity + Not Before: Nov 5 08:50:46 2009 GMT + Not After : Nov 5 08:50:46 2029 GMT + Subject: C=DE, O=D-Trust GmbH, CN=D-TRUST Root Class 3 CA 2 EV 2009 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:99:f1:84:34:70:ba:2f:b7:30:a0:8e:bd:7c:04: + cf:be:62:bc:99:fd:82:97:d2:7a:0a:67:96:38:09: + f6:10:4e:95:22:73:99:8d:da:15:2d:e7:05:fc:19: + 73:22:b7:8e:98:00:bc:3c:3d:ac:a1:6c:fb:d6:79: + 25:4b:ad:f0:cc:64:da:88:3e:29:b8:0f:09:d3:34: + dd:33:f5:62:d1:e1:cd:19:e9:ee:18:4f:4c:58:ae: + e2:1e:d6:0c:5b:15:5a:d8:3a:b8:c4:18:64:1e:e3: + 33:b2:b5:89:77:4e:0c:bf:d9:94:6b:13:97:6f:12: + a3:fe:99:a9:04:cc:15:ec:60:68:36:ed:08:7b:b7: + f5:bf:93:ed:66:31:83:8c:c6:71:34:87:4e:17:ea: + af:8b:91:8d:1c:56:41:ae:22:37:5e:37:f2:1d:d9: + d1:2d:0d:2f:69:51:a7:be:66:a6:8a:3a:2a:bd:c7: + 1a:b1:e1:14:f0:be:3a:1d:b9:cf:5b:b1:6a:fe:b4: + b1:46:20:a2:fb:1e:3b:70:ef:93:98:7d:8c:73:96: + f2:c5:ef:85:70:ad:29:26:fc:1e:04:3e:1c:a0:d8: + 0f:cb:52:83:62:7c:ee:8b:53:95:90:a9:57:a2:ea: + 61:05:d8:f9:4d:c4:27:fa:6e:ad:ed:f9:d7:51:f7: + 6b:a5 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + D3:94:8A:4C:62:13:2A:19:2E:CC:AF:72:8A:7D:36:D7:9A:1C:DC:67 + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 CRL Distribution Points: + + Full Name: + URI:ldap://directory.d-trust.net/CN=D-TRUST%20Root%20Class%203%20CA%202%20EV%202009,O=D-Trust%20GmbH,C=DE?certificaterevocationlist + + Full Name: + URI:http://www.d-trust.net/crl/d-trust_root_class_3_ca_2_ev_2009.crl + + Signature Algorithm: sha256WithRSAEncryption + 34:ed:7b:5a:3c:a4:94:88:ef:1a:11:75:07:2f:b3:fe:3c:fa: + 1e:51:26:eb:87:f6:29:de:e0:f1:d4:c6:24:09:e9:c1:cf:55: + 1b:b4:30:d9:ce:1a:fe:06:51:a6:15:a4:2d:ef:b2:4b:bf:20: + 28:25:49:d1:a6:36:77:34:e8:64:df:52:b1:11:c7:73:7a:cd: + 39:9e:c2:ad:8c:71:21:f2:5a:6b:af:df:3c:4e:55:af:b2:84: + 65:14:89:b9:77:cb:2a:31:be:cf:a3:6d:cf:6f:48:94:32:46: + 6f:e7:71:8c:a0:a6:84:19:37:07:f2:03:45:09:2b:86:75:7c: + df:5f:69:57:00:db:6e:d8:a6:72:22:4b:50:d4:75:98:56:df: + b7:18:ff:43:43:50:ae:7a:44:7b:f0:79:51:d7:43:3d:a7:d3: + 81:d3:f0:c9:4f:b9:da:c6:97:86:d0:82:c3:e4:42:6d:fe:b0: + e2:64:4e:0e:26:e7:40:34:26:b5:08:89:d7:08:63:63:38:27: + 75:1e:33:ea:6e:a8:dd:9f:99:4f:74:4d:81:89:80:4b:dd:9a: + 97:29:5c:2f:be:81:41:b9:8c:ff:ea:7d:60:06:9e:cd:d7:3d: + d3:2e:a3:15:bc:a8:e6:26:e5:6f:c3:dc:b8:03:21:ea:9f:16: + f1:2c:54:b5 +SHA1 Fingerprint=96:C9:1B:0B:95:B4:10:98:42:FA:D0:D8:22:79:FE:60:FA:B9:16:83 diff --git a/system/etc/security/cacerts/d8317ada.0 b/system/etc/security/cacerts/d8317ada.0 new file mode 100644 index 0000000000000000000000000000000000000000..c6dfe5fdf7cc8f449facf1750cda190f6daa8c10 --- /dev/null +++ b/system/etc/security/cacerts/d8317ada.0 @@ -0,0 +1,55 @@ +-----BEGIN CERTIFICATE----- +MIICHDCCAaKgAwIBAgISESDZkc6uo+jF5//pAq/Pc7xVMAoGCCqGSM49BAMDMD4x +CzAJBgNVBAYTAkZSMREwDwYDVQQKDAhDZXJ0cGx1czEcMBoGA1UEAwwTQ2VydHBs +dXMgUm9vdCBDQSBHMjAeFw0xNDA1MjYwMDAwMDBaFw0zODAxMTUwMDAwMDBaMD4x +CzAJBgNVBAYTAkZSMREwDwYDVQQKDAhDZXJ0cGx1czEcMBoGA1UEAwwTQ2VydHBs +dXMgUm9vdCBDQSBHMjB2MBAGByqGSM49AgEGBSuBBAAiA2IABM0PW1aC3/BFGtat +93nwHcmsltaeTpwftEIRyoa/bfuFo8XlGVzX7qY/aWfYeOKmycTbLXku54uNAm8x +Ik0G42ByRZ0OQneezs/lf4WbGOT8zC5y0xaTTsqZY1yhBSpsBqNjMGEwDgYDVR0P +AQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNqDYwJ5jtpMxjwj +FNiPwyCrKGBZMB8GA1UdIwQYMBaAFNqDYwJ5jtpMxjwjFNiPwyCrKGBZMAoGCCqG +SM49BAMDA2gAMGUCMHD+sAvZ94OX7PNVHdTcswYO/jOYnYs5kGuUIe22113WTNch +p+e/IQ8rzfcq3IUHnQIxAIYUFuXcsGXCwI4Un78kFmjlvPl5adytRSv3tjFzzAal +U5ORGpOucGpnutee5WEaXw== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 11:20:d9:91:ce:ae:a3:e8:c5:e7:ff:e9:02:af:cf:73:bc:55 + Signature Algorithm: ecdsa-with-SHA384 + Issuer: C=FR, O=Certplus, CN=Certplus Root CA G2 + Validity + Not Before: May 26 00:00:00 2014 GMT + Not After : Jan 15 00:00:00 2038 GMT + Subject: C=FR, O=Certplus, CN=Certplus Root CA G2 + Subject Public Key Info: + Public Key Algorithm: id-ecPublicKey + Public-Key: (384 bit) + pub: + 04:cd:0f:5b:56:82:df:f0:45:1a:d6:ad:f7:79:f0: + 1d:c9:ac:96:d6:9e:4e:9c:1f:b4:42:11:ca:86:bf: + 6d:fb:85:a3:c5:e5:19:5c:d7:ee:a6:3f:69:67:d8: + 78:e2:a6:c9:c4:db:2d:79:2e:e7:8b:8d:02:6f:31: + 22:4d:06:e3:60:72:45:9d:0e:42:77:9e:ce:cf:e5: + 7f:85:9b:18:e4:fc:cc:2e:72:d3:16:93:4e:ca:99: + 63:5c:a1:05:2a:6c:06 + ASN1 OID: secp384r1 + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + DA:83:63:02:79:8E:DA:4C:C6:3C:23:14:D8:8F:C3:20:AB:28:60:59 + X509v3 Authority Key Identifier: + keyid:DA:83:63:02:79:8E:DA:4C:C6:3C:23:14:D8:8F:C3:20:AB:28:60:59 + + Signature Algorithm: ecdsa-with-SHA384 + 30:65:02:30:70:fe:b0:0b:d9:f7:83:97:ec:f3:55:1d:d4:dc: + b3:06:0e:fe:33:98:9d:8b:39:90:6b:94:21:ed:b6:d7:5d:d6: + 4c:d7:21:a7:e7:bf:21:0f:2b:cd:f7:2a:dc:85:07:9d:02:31: + 00:86:14:16:e5:dc:b0:65:c2:c0:8e:14:9f:bf:24:16:68:e5: + bc:f9:79:69:dc:ad:45:2b:f7:b6:31:73:cc:06:a5:53:93:91: + 1a:93:ae:70:6a:67:ba:d7:9e:e5:61:1a:5f +SHA1 Fingerprint=4F:65:8E:1F:E9:06:D8:28:02:E9:54:47:41:C9:54:25:5D:69:CC:1A diff --git a/system/etc/security/cacerts/dbc54cab.0 b/system/etc/security/cacerts/dbc54cab.0 new file mode 100644 index 0000000000000000000000000000000000000000..904ac7321794eb714e3c873c6b22353a5191bc4d --- /dev/null +++ b/system/etc/security/cacerts/dbc54cab.0 @@ -0,0 +1,119 @@ +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVz +dCBQcmVtaXVtMB4XDTEwMDEyOTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkG +A1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1U +cnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxBLf +qV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtnBKAQ +JG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ ++jjeRFcV5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrS +s8PhaJyJ+HoAVt70VZVs+7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5 +HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmdGPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d7 +70O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5Rp9EixAqnOEhss/n/fauG +V+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NIS+LI+H+S +qHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S +5u046uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4Ia +C1nEWTJ3s7xgaVY5/bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TX +OwF0lkLgAOIua+rF7nKsu7/+6qqo+Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYE +FJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ +BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByvMiPIs0laUZx2 +KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg +Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B +8OWycvpEgjNC6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQ +MKSOyARiqcTtNd56l+0OOF6SL5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc +0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK+4w1IX2COPKpVJEZNZOUbWo6xbLQ +u4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmVBtWVyuEklut89pMF +u+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFgIxpH +YoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8 +GKa1qF60g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaO +RtGdFNrHF+QFlozEJLUbzxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6e +KeC2uAloGRwYQw== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 7893706540734352110 (0x6d8c1446b1a60aee) + Signature Algorithm: sha384WithRSAEncryption + Issuer: C=US, O=AffirmTrust, CN=AffirmTrust Premium + Validity + Not Before: Jan 29 14:10:36 2010 GMT + Not After : Dec 31 14:10:36 2040 GMT + Subject: C=US, O=AffirmTrust, CN=AffirmTrust Premium + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:c4:12:df:a9:5f:fe:41:dd:dd:f5:9f:8a:e3:f6: + ac:e1:3c:78:9a:bc:d8:f0:7f:7a:a0:33:2a:dc:8d: + 20:5b:ae:2d:6f:e7:93:d9:36:70:6a:68:cf:8e:51: + a3:85:5b:67:04:a0:10:24:6f:5d:28:82:c1:97:57: + d8:48:29:13:b6:e1:be:91:4d:df:85:0c:53:18:9a: + 1e:24:a2:4f:8f:f0:a2:85:0b:cb:f4:29:7f:d2:a4: + 58:ee:26:4d:c9:aa:a8:7b:9a:d9:fa:38:de:44:57: + 15:e5:f8:8c:c8:d9:48:e2:0d:16:27:1d:1e:c8:83: + 85:25:b7:ba:aa:55:41:cc:03:22:4b:2d:91:8d:8b: + e6:89:af:66:c7:e9:ff:2b:e9:3c:ac:da:d2:b3:c3: + e1:68:9c:89:f8:7a:00:56:de:f4:55:95:6c:fb:ba: + 64:dd:62:8b:df:0b:77:32:eb:62:cc:26:9a:9b:bb: + aa:62:83:4c:b4:06:7a:30:c8:29:bf:ed:06:4d:97: + b9:1c:c4:31:2b:d5:5f:bc:53:12:17:9c:99:57:29: + 66:77:61:21:31:07:2e:25:49:9d:18:f2:ee:f3:2b: + 71:8c:b5:ba:39:07:49:77:fc:ef:2e:92:90:05:8d: + 2d:2f:77:7b:ef:43:bf:35:bb:9a:d8:f9:73:a7:2c: + f2:d0:57:ee:28:4e:26:5f:8f:90:68:09:2f:b8:f8: + dc:06:e9:2e:9a:3e:51:a7:d1:22:c4:0a:a7:38:48: + 6c:b3:f9:ff:7d:ab:86:57:e3:ba:d6:85:78:77:ba: + 43:ea:48:7f:f6:d8:be:23:6d:1e:bf:d1:36:6c:58: + 5c:f1:ee:a4:19:54:1a:f5:03:d2:76:e6:e1:8c:bd: + 3c:b3:d3:48:4b:e2:c8:f8:7f:92:a8:76:46:9c:42: + 65:3e:a4:1e:c1:07:03:5a:46:2d:b8:97:f3:b7:d5: + b2:55:21:ef:ba:dc:4c:00:97:fb:14:95:27:33:bf: + e8:43:47:46:d2:08:99:16:60:3b:9a:7e:d2:e6:ed: + 38:ea:ec:01:1e:3c:48:56:49:09:c7:4c:37:00:9e: + 88:0e:c0:73:e1:6f:66:e9:72:47:30:3e:10:e5:0b: + 03:c9:9a:42:00:6c:c5:94:7e:61:c4:8a:df:7f:82: + 1a:0b:59:c4:59:32:77:b3:bc:60:69:56:39:fd:b4: + 06:7b:2c:d6:64:36:d9:bd:48:ed:84:1f:7e:a5:22: + 8f:2a:b8:42:f4:82:b7:d4:53:90:78:4e:2d:1a:fd: + 81:6f:44:d7:3b:01:74:96:42:e0:00:e2:2e:6b:ea: + c5:ee:72:ac:bb:bf:fe:ea:aa:a8:f8:dc:f6:b2:79: + 8a:b6:67 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 9D:C0:67:A6:0C:22:D9:26:F5:45:AB:A6:65:52:11:27:D8:45:AC:63 + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + Signature Algorithm: sha384WithRSAEncryption + b3:57:4d:10:62:4e:3a:e4:ac:ea:b8:1c:af:32:23:c8:b3:49: + 5a:51:9c:76:28:8d:79:aa:57:46:17:d5:f5:52:f6:b7:44:e8: + 08:44:bf:18:84:d2:0b:80:cd:c5:12:fd:00:55:05:61:87:41: + dc:b5:24:9e:3c:c4:d8:c8:fb:70:9e:2f:78:96:83:20:36:de: + 7c:0f:69:13:88:a5:75:36:98:08:a6:c6:df:ac:ce:e3:58:d6: + b7:3e:de:ba:f3:eb:34:40:d8:a2:81:f5:78:3f:2f:d5:a5:fc: + d9:a2:d4:5e:04:0e:17:ad:fe:41:f0:e5:b2:72:fa:44:82:33: + 42:e8:2d:58:f7:56:8c:62:3f:ba:42:b0:9c:0c:5c:7e:2e:65: + 26:5c:53:4f:00:b2:78:7e:a1:0d:99:2d:8d:b8:1d:8e:a2:c4: + b0:fd:60:d0:30:a4:8e:c8:04:62:a9:c4:ed:35:de:7a:97:ed: + 0e:38:5e:92:2f:93:70:a5:a9:9c:6f:a7:7d:13:1d:7e:c6:08: + 48:b1:5e:67:eb:51:08:25:e9:e6:25:6b:52:29:91:9c:d2:39: + 73:08:57:de:99:06:b4:5b:9d:10:06:e1:c2:00:a8:b8:1c:4a: + 02:0a:14:d0:c1:41:ca:fb:8c:35:21:7d:82:38:f2:a9:54:91: + 19:35:93:94:6d:6a:3a:c5:b2:d0:bb:89:86:93:e8:9b:c9:0f: + 3a:a7:7a:b8:a1:f0:78:46:fa:fc:37:2f:e5:8a:84:f3:df:fe: + 04:d9:a1:68:a0:2f:24:e2:09:95:06:d5:95:ca:e1:24:96:eb: + 7c:f6:93:05:bb:ed:73:e9:2d:d1:75:39:d7:e7:24:db:d8:4e: + 5f:43:8f:9e:d0:14:39:bf:55:70:48:99:57:31:b4:9c:ee:4a: + 98:03:96:30:1f:60:06:ee:1b:23:fe:81:60:23:1a:47:62:85: + a5:cc:19:34:80:6f:b3:ac:1a:e3:9f:f0:7b:48:ad:d5:01:d9: + 67:b6:a9:72:93:ea:2d:66:b5:b2:b8:e4:3d:3c:b2:ef:4c:8c: + ea:eb:07:bf:ab:35:9a:55:86:bc:18:a6:b5:a8:5e:b4:83:6c: + 6b:69:40:d3:9f:dc:f1:c3:69:6b:b9:e1:6d:09:f4:f1:aa:50: + 76:0a:7a:7d:7a:17:a1:55:96:42:99:31:09:dd:60:11:8d:05: + 30:7e:e6:8e:46:d1:9d:14:da:c7:17:e4:05:96:8c:c4:24:b5: + 1b:cf:14:07:b2:40:f8:a3:9e:41:86:bc:04:d0:6b:96:c8:2a: + 80:34:fd:bf:ef:06:a3:dd:58:c5:85:3d:3e:8f:fe:9e:29:e0: + b6:b8:09:68:19:1c:18:43 +SHA1 Fingerprint=D8:A6:33:2C:E0:03:6F:B1:85:F6:63:4F:7D:6A:06:65:26:32:28:27 diff --git a/system/etc/security/cacerts/dc99f41e.0 b/system/etc/security/cacerts/dc99f41e.0 new file mode 100644 index 0000000000000000000000000000000000000000..04eb0467343f60c84757b863dae338de83a2a044 --- /dev/null +++ b/system/etc/security/cacerts/dc99f41e.0 @@ -0,0 +1,123 @@ +-----BEGIN CERTIFICATE----- +MIIGCzCCA/OgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBpjELMAkGA1UEBhMCR1Ix +DzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5k +IFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNVBAMT +N0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgUm9v +dENBIDIwMTUwHhcNMTUwNzA3MTAxMTIxWhcNNDAwNjMwMTAxMTIxWjCBpjELMAkG +A1UEBhMCR1IxDzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNh +ZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkx +QDA+BgNVBAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1 +dGlvbnMgUm9vdENBIDIwMTUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC +AQDC+Kk/G4n8PDwEXT2QNrCROnk8ZlrvbTkBSRq0t89/TSNTt5AA4xMqKKYx8ZEA +4yjsriFBzh/a/X0SWwGDD7mwX5nh8hKDgE0GPt+sr+ehiGsxr/CL0BgzuNtFajT0 +AoAkKAoCFZVedioNmToUW/bLy1O8E00BiDeUJRtCvCLYjqOWXjrZMts+6PAQZe10 +4S+nfK8nNLspfZu2zwnI5dMK/IhlZXQK3HMcXM1AsRzUtoSMTFDPaI6oWa7CJ06C +ojXdFPQf/7J31Ycvqm59JCfnxssm5uX+Zwdj2EUN3TpZZTlYepKZcj2chF6IIbjV +9Cz82XBST3i4vTwri5WY9bPRaM8gFH5MXF/ni+X1NYEZN9cRCLdmvtNKzoNXADrD +gfgXy5I2XdGj2HUb4Ysn6npIQf1FGQatJ5lOwXBH3bWfgVMS5bGMSF0xQxfjjMZ6 +Y5ZLKTBOhE5iGV48zpeQpX8B653g+IuJ3SWYPZK2fu/Z8VFRfS0myGlZYeCsargq +NhEEelC9MoS+L9xy1dcdFkfkR2YgP/SWxa+OAXqlD3pk9Q0Yh9muiNX6hME6wGko +LfINaFGq46V3xqSQDqE3izEjR8EJCOtu93ib14L8hCCZSRm2Ekax+0VVFqmjZayc +Bw/qa9wfLgZy7IaIEuQt218FL+TwA9MmM+eAws1CoRc0CwIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUcRVnyMjJvXVd +ctA4GGqd83EkVAswDQYJKoZIhvcNAQELBQADggIBAHW7bVRLqhBYRjTyYtcWNl0I +XtVsyIe9tC5G8jH4fOpCtZMWVdyhDBKg2mF+D1hYc2Ryx+hFjtyp8iY/xnmMsVMI +M4GwVhO+5lFc2JsKT0ucVlMC6U/2DWDqTUJV6HwbISHTGzrMd/K4kPFox/la/vot +9L/J9UUbzjgQKjeKeaO04wlshYaT/4mWJ3iBj2fjRnRUjtkNaeJK9E10A/+yd+2V +Z5fkscWrv2oj6NSU4kQoYsRL4vDY4ilrGnB+JGGTe08DMiUNRSQrlrRGar9KC/ea +j8GsGsVn82800vpzY4zvFrCopEYq+OsS7HK07/grfoxSwIuEVPkvPuNVqNxmsdnh +X9izjFk0WaSrT2y7HxjbdavYy5LNlDhhDgcGH0tGEPEVvo2FXDtKK4F5D7Rpn0lQ +l033DlZdwJVqwjbDG2jJ9SrcR5q+ss7FJej6A7na+RZukYT1HCjI/CbM1xyQVqdf +bzoEvM14iQuODy+jqk+iGxI9FghAD/FGTNeqewjBCvVtJ94Cj8rDtSvK6evIIVM4 +pcw72Hc3MKJP2W/R8kCtQXoXxdZKNYm3QdV8hn9VTYNKpXMgwDqvkPGaJI7ZjnHK +e7iG2rKPmT4dEw0SEe7Uq/DpFXYC5ODfqiAeW2GFZECpkJcNrVPSWh2HagCXZWK0 +vm9qp/UsQu0yrbYhnr68 +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 0 (0x0) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=GR, L=Athens, O=Hellenic Academic and Research Institutions Cert. Authority, CN=Hellenic Academic and Research Institutions RootCA 2015 + Validity + Not Before: Jul 7 10:11:21 2015 GMT + Not After : Jun 30 10:11:21 2040 GMT + Subject: C=GR, L=Athens, O=Hellenic Academic and Research Institutions Cert. Authority, CN=Hellenic Academic and Research Institutions RootCA 2015 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:c2:f8:a9:3f:1b:89:fc:3c:3c:04:5d:3d:90:36: + b0:91:3a:79:3c:66:5a:ef:6d:39:01:49:1a:b4:b7: + cf:7f:4d:23:53:b7:90:00:e3:13:2a:28:a6:31:f1: + 91:00:e3:28:ec:ae:21:41:ce:1f:da:fd:7d:12:5b: + 01:83:0f:b9:b0:5f:99:e1:f2:12:83:80:4d:06:3e: + df:ac:af:e7:a1:88:6b:31:af:f0:8b:d0:18:33:b8: + db:45:6a:34:f4:02:80:24:28:0a:02:15:95:5e:76: + 2a:0d:99:3a:14:5b:f6:cb:cb:53:bc:13:4d:01:88: + 37:94:25:1b:42:bc:22:d8:8e:a3:96:5e:3a:d9:32: + db:3e:e8:f0:10:65:ed:74:e1:2f:a7:7c:af:27:34: + bb:29:7d:9b:b6:cf:09:c8:e5:d3:0a:fc:88:65:65: + 74:0a:dc:73:1c:5c:cd:40:b1:1c:d4:b6:84:8c:4c: + 50:cf:68:8e:a8:59:ae:c2:27:4e:82:a2:35:dd:14: + f4:1f:ff:b2:77:d5:87:2f:aa:6e:7d:24:27:e7:c6: + cb:26:e6:e5:fe:67:07:63:d8:45:0d:dd:3a:59:65: + 39:58:7a:92:99:72:3d:9c:84:5e:88:21:b8:d5:f4: + 2c:fc:d9:70:52:4f:78:b8:bd:3c:2b:8b:95:98:f5: + b3:d1:68:cf:20:14:7e:4c:5c:5f:e7:8b:e5:f5:35: + 81:19:37:d7:11:08:b7:66:be:d3:4a:ce:83:57:00: + 3a:c3:81:f8:17:cb:92:36:5d:d1:a3:d8:75:1b:e1: + 8b:27:ea:7a:48:41:fd:45:19:06:ad:27:99:4e:c1: + 70:47:dd:b5:9f:81:53:12:e5:b1:8c:48:5d:31:43: + 17:e3:8c:c6:7a:63:96:4b:29:30:4e:84:4e:62:19: + 5e:3c:ce:97:90:a5:7f:01:eb:9d:e0:f8:8b:89:dd: + 25:98:3d:92:b6:7e:ef:d9:f1:51:51:7d:2d:26:c8: + 69:59:61:e0:ac:6a:b8:2a:36:11:04:7a:50:bd:32: + 84:be:2f:dc:72:d5:d7:1d:16:47:e4:47:66:20:3f: + f4:96:c5:af:8e:01:7a:a5:0f:7a:64:f5:0d:18:87: + d9:ae:88:d5:fa:84:c1:3a:c0:69:28:2d:f2:0d:68: + 51:aa:e3:a5:77:c6:a4:90:0e:a1:37:8b:31:23:47: + c1:09:08:eb:6e:f7:78:9b:d7:82:fc:84:20:99:49: + 19:b6:12:46:b1:fb:45:55:16:a9:a3:65:ac:9c:07: + 0f:ea:6b:dc:1f:2e:06:72:ec:86:88:12:e4:2d:db: + 5f:05:2f:e4:f0:03:d3:26:33:e7:80:c2:cd:42:a1: + 17:34:0b + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + 71:15:67:C8:C8:C9:BD:75:5D:72:D0:38:18:6A:9D:F3:71:24:54:0B + Signature Algorithm: sha256WithRSAEncryption + 75:bb:6d:54:4b:aa:10:58:46:34:f2:62:d7:16:36:5d:08:5e: + d5:6c:c8:87:bd:b4:2e:46:f2:31:f8:7c:ea:42:b5:93:16:55: + dc:a1:0c:12:a0:da:61:7e:0f:58:58:73:64:72:c7:e8:45:8e: + dc:a9:f2:26:3f:c6:79:8c:b1:53:08:33:81:b0:56:13:be:e6: + 51:5c:d8:9b:0a:4f:4b:9c:56:53:02:e9:4f:f6:0d:60:ea:4d: + 42:55:e8:7c:1b:21:21:d3:1b:3a:cc:77:f2:b8:90:f1:68:c7: + f9:5a:fe:fa:2d:f4:bf:c9:f5:45:1b:ce:38:10:2a:37:8a:79: + a3:b4:e3:09:6c:85:86:93:ff:89:96:27:78:81:8f:67:e3:46: + 74:54:8e:d9:0d:69:e2:4a:f4:4d:74:03:ff:b2:77:ed:95:67: + 97:e4:b1:c5:ab:bf:6a:23:e8:d4:94:e2:44:28:62:c4:4b:e2: + f0:d8:e2:29:6b:1a:70:7e:24:61:93:7b:4f:03:32:25:0d:45: + 24:2b:96:b4:46:6a:bf:4a:0b:f7:9a:8f:c1:ac:1a:c5:67:f3: + 6f:34:d2:fa:73:63:8c:ef:16:b0:a8:a4:46:2a:f8:eb:12:ec: + 72:b4:ef:f8:2b:7e:8c:52:c0:8b:84:54:f9:2f:3e:e3:55:a8: + dc:66:b1:d9:e1:5f:d8:b3:8c:59:34:59:a4:ab:4f:6c:bb:1f: + 18:db:75:ab:d8:cb:92:cd:94:38:61:0e:07:06:1f:4b:46:10: + f1:15:be:8d:85:5c:3b:4a:2b:81:79:0f:b4:69:9f:49:50:97: + 4d:f7:0e:56:5d:c0:95:6a:c2:36:c3:1b:68:c9:f5:2a:dc:47: + 9a:be:b2:ce:c5:25:e8:fa:03:b9:da:f9:16:6e:91:84:f5:1c: + 28:c8:fc:26:cc:d7:1c:90:56:a7:5f:6f:3a:04:bc:cd:78:89: + 0b:8e:0f:2f:a3:aa:4f:a2:1b:12:3d:16:08:40:0f:f1:46:4c: + d7:aa:7b:08:c1:0a:f5:6d:27:de:02:8f:ca:c3:b5:2b:ca:e9: + eb:c8:21:53:38:a5:cc:3b:d8:77:37:30:a2:4f:d9:6f:d1:f2: + 40:ad:41:7a:17:c5:d6:4a:35:89:b7:41:d5:7c:86:7f:55:4d: + 83:4a:a5:73:20:c0:3a:af:90:f1:9a:24:8e:d9:8e:71:ca:7b: + b8:86:da:b2:8f:99:3e:1d:13:0d:12:11:ee:d4:ab:f0:e9:15: + 76:02:e4:e0:df:aa:20:1e:5b:61:85:64:40:a9:90:97:0d:ad: + 53:d2:5a:1d:87:6a:00:97:65:62:b4:be:6f:6a:a7:f5:2c:42: + ed:32:ad:b6:21:9e:be:bc +SHA1 Fingerprint=01:0C:06:95:A6:98:19:14:FF:BF:5F:C6:B0:B6:95:EA:29:E9:12:A6 diff --git a/system/etc/security/cacerts/dfc0fe80.0 b/system/etc/security/cacerts/dfc0fe80.0 new file mode 100644 index 0000000000000000000000000000000000000000..9fc28904c3c4e1b88682e4bc944a8c965c7dc565 --- /dev/null +++ b/system/etc/security/cacerts/dfc0fe80.0 @@ -0,0 +1,82 @@ +-----BEGIN CERTIFICATE----- +MIIDtTCCAp2gAwIBAgIQdrEgUnTwhYdGs/gjGvbCwDANBgkqhkiG9w0BAQsFADBt +MQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUg +Rm91bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9i +YWwgUm9vdCBHQiBDQTAeFw0xNDEyMDExNTAwMzJaFw0zOTEyMDExNTEwMzFaMG0x +CzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBG +b3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2Jh +bCBSb290IEdCIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2Be3 +HEokKtaXscriHvt9OO+Y9bI5mE4nuBFde9IllIiCFSZqGzG7qFshISvYD06fWvGx +WuR51jIjK+FTzJlFXHtPrby/h0oLS5daqPZI7H17Dc0hBt+eFf1Biki3IPShehtX +1F1Q/7pn2COZH8g/497/b1t3sWtuuMlk9+HKQUYOKXHQuSP8yYFfTvdv37+ErXNk +u7dCjmn21HYdfp2nuFeKUWdy19SouJVUQHMD9ur06/4oQnc/nSMbsrY9gBQHTC5P +99UKFg29ZkM3fiNDecNAhvVMKdqOmq0NpQSHiB6F4+lT1ZvIiwNjeOvgGUpuuy9r +M2RYk61pv48b74JIxwIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUNQ/INmNe4qPs+TtmFc5RUuORmj0wEAYJKwYBBAGCNxUB +BAMCAQAwDQYJKoZIhvcNAQELBQADggEBAEBM+4eymYGQfp3FsLAmzYh7KzKNbrgh +cViXfa43FK8+5/ea4n32cZiZBKpDdHij40lhPnOMTZTg+XHEthYOU3gf1qKHLwI5 +gSk8rxWYITD+KJAAjNHhy/peyP34EEY7onhCkRd0VQreUGdNZtGn//3ZwLWoo4rO +ZvUPQ82nK1d7Y0Zqqi5S2PTt4W2tKZB4SLrhI6qjiey1q5bAtEuiHZeeevJuQHHf +aPFlTc58Bd9TZaml8LGXBHAVRgOY1NK/VLSgWH1Sb9pWJmLU2NuJMW8c8CLC02Ic +Nc1MaRVUGpCY3useX8p3x8uOPUNpnJpY0CQ73xtAln41rYHHTnG6iBM= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 76:b1:20:52:74:f0:85:87:46:b3:f8:23:1a:f6:c2:c0 + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=CH, O=WISeKey, OU=OISTE Foundation Endorsed, CN=OISTE WISeKey Global Root GB CA + Validity + Not Before: Dec 1 15:00:32 2014 GMT + Not After : Dec 1 15:10:31 2039 GMT + Subject: C=CH, O=WISeKey, OU=OISTE Foundation Endorsed, CN=OISTE WISeKey Global Root GB CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:d8:17:b7:1c:4a:24:2a:d6:97:b1:ca:e2:1e:fb: + 7d:38:ef:98:f5:b2:39:98:4e:27:b8:11:5d:7b:d2: + 25:94:88:82:15:26:6a:1b:31:bb:a8:5b:21:21:2b: + d8:0f:4e:9f:5a:f1:b1:5a:e4:79:d6:32:23:2b:e1: + 53:cc:99:45:5c:7b:4f:ad:bc:bf:87:4a:0b:4b:97: + 5a:a8:f6:48:ec:7d:7b:0d:cd:21:06:df:9e:15:fd: + 41:8a:48:b7:20:f4:a1:7a:1b:57:d4:5d:50:ff:ba: + 67:d8:23:99:1f:c8:3f:e3:de:ff:6f:5b:77:b1:6b: + 6e:b8:c9:64:f7:e1:ca:41:46:0e:29:71:d0:b9:23: + fc:c9:81:5f:4e:f7:6f:df:bf:84:ad:73:64:bb:b7: + 42:8e:69:f6:d4:76:1d:7e:9d:a7:b8:57:8a:51:67: + 72:d7:d4:a8:b8:95:54:40:73:03:f6:ea:f4:eb:fe: + 28:42:77:3f:9d:23:1b:b2:b6:3d:80:14:07:4c:2e: + 4f:f7:d5:0a:16:0d:bd:66:43:37:7e:23:43:79:c3: + 40:86:f5:4c:29:da:8e:9a:ad:0d:a5:04:87:88:1e: + 85:e3:e9:53:d5:9b:c8:8b:03:63:78:eb:e0:19:4a: + 6e:bb:2f:6b:33:64:58:93:ad:69:bf:8f:1b:ef:82: + 48:c7 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 35:0F:C8:36:63:5E:E2:A3:EC:F9:3B:66:15:CE:51:52:E3:91:9A:3D + 1.3.6.1.4.1.311.21.1: + ... + Signature Algorithm: sha256WithRSAEncryption + 40:4c:fb:87:b2:99:81:90:7e:9d:c5:b0:b0:26:cd:88:7b:2b: + 32:8d:6e:b8:21:71:58:97:7d:ae:37:14:af:3e:e7:f7:9a:e2: + 7d:f6:71:98:99:04:aa:43:74:78:a3:e3:49:61:3e:73:8c:4d: + 94:e0:f9:71:c4:b6:16:0e:53:78:1f:d6:a2:87:2f:02:39:81: + 29:3c:af:15:98:21:30:fe:28:90:00:8c:d1:e1:cb:fa:5e:c8: + fd:f8:10:46:3b:a2:78:42:91:17:74:55:0a:de:50:67:4d:66: + d1:a7:ff:fd:d9:c0:b5:a8:a3:8a:ce:66:f5:0f:43:cd:a7:2b: + 57:7b:63:46:6a:aa:2e:52:d8:f4:ed:e1:6d:ad:29:90:78:48: + ba:e1:23:aa:a3:89:ec:b5:ab:96:c0:b4:4b:a2:1d:97:9e:7a: + f2:6e:40:71:df:68:f1:65:4d:ce:7c:05:df:53:65:a9:a5:f0: + b1:97:04:70:15:46:03:98:d4:d2:bf:54:b4:a0:58:7d:52:6f: + da:56:26:62:d4:d8:db:89:31:6f:1c:f0:22:c2:d3:62:1c:35: + cd:4c:69:15:54:1a:90:98:de:eb:1e:5f:ca:77:c7:cb:8e:3d: + 43:69:9c:9a:58:d0:24:3b:df:1b:40:96:7e:35:ad:81:c7:4e: + 71:ba:88:13 +SHA1 Fingerprint=0F:F9:40:76:18:D3:D7:6A:4B:98:F0:A8:35:9E:0C:FD:27:AC:CC:ED diff --git a/system/etc/security/cacerts/e442e424.0 b/system/etc/security/cacerts/e442e424.0 new file mode 100644 index 0000000000000000000000000000000000000000..c7156602f8d4f5e07b29fd39795c79f46c93eeae --- /dev/null +++ b/system/etc/security/cacerts/e442e424.0 @@ -0,0 +1,120 @@ +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIULvWbAiin23r/1aOp7r0DoM8Sah0wDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMyBHMzAeFw0xMjAxMTIyMDI2MzJaFw00 +MjAxMTIyMDI2MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDMgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCzyw4QZ47qFJenMioKVjZ/aEzHs286IxSR +/xl/pcqs7rN2nXrpixurazHb+gtTTK/FpRp5PIpM/6zfJd5O2YIyC0TeytuMrKNu +FoM7pmRLMon7FhY4futD4tN0SsJiCnMK3UmzV9KwCoWdcTzeo8vAMvMBOSBDGzXR +U7Ox7sWTaYI+FrUoRqHe6okJ7UO4BUaKhvVZR74bbwEhELn9qdIoyhA5CcoTNs+c +ra1AdHkrAj80//ogaX3T7mH1urPnMNA3I4ZyYUUpSFlob3emLoG+B01vr87ERROR +FHAGjx+f+IdpsQ7vw4kZ6+ocYfx6bIrc1gMLnia6Et3UVDmrJqMz6nWB2i3ND0/k +A9HvFZcba5DFApCTZgIhsUfei5pKgLlVj7WiL8DWM2fafsSntARE60f75li59wzw +eyuxwHApw0BiLTtIadwjPEjrewl5qW3aqDCYz4ByA4imW0aucnl8CAMhZa634Ryl +sSqiMd5mBPfAdOhx3v89WcyWJhKLhZVXGqtrdQtEPREoPHtht+KPZ0/l7DxMYIBp +VzgeAVuNVejH38DMdyM0SXV89pgR6y3e7UEuFAUCf+D+IOs15xGsIs5XPd7JMG0Q +A4XN8f+MFrXBsj6IbGB/kE+V9/YtrQE5BwT6dYB9v0lQ7e/JxHwc64B+27bQ3RP+ +ydOc17KXqQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUxhfQvKjqAkPyGwaZXSuQILnXnOQwDQYJKoZIhvcNAQELBQAD +ggIBADRh2Va1EodVTd2jNTFGu6QHcrxfYWLopfsLN7E8trP6KZ1/AvWkyaiTt3px +KGmPc+FSkNrVvjrlt3ZqVoAh313m6Tqe5T72omnHKgqwGEfcIHB9UqM+WXzBusnI +FUBhynLWcKzSt/Ac5IYp8M7vaGPQtSCKFWGafoaYtMnCdvvMujAWzKNhxnQT5Wvv +oxXqA/4Ti2Tk08HS6IT7SdEQTXlm66r99I0xHnAUrdzeZxNMgRVhvLfZkXdxGYFg +u/BYpbWcC/ePIlUnwEsBbTuZDdQdm2NnL9DuDcpmvJRPpq3t/O5jrFc/ZSXPsoaP +0Aj/uHYUbt7lJ+yreLVTubY/6CD50qi+YUbKh4yE8/nxoGibIh6BJpsQBJFxwAYf +3KDTuVan45gtf4Od34wrnDKOMpTwATwiKp9Dwi7DmDkHOHv8XgBCH/MyJnmDhPbl +8MFREsALHgQjDFSlTC9JxUrRtm5gDWv8a4uFJGS3iQ6rJUdbPM9+Sb3H6QrG2vd+ +DhcI00iX0HGS8A85PjRqHH3Y8iKuu2n0M7SmSFXRDw4m6Oy2Cy2nhTXN/VnIn9HN +PlopNLk9hM6xZdRZkZFWdSHBd575euFgndOtBBj0fOtek49TSiIp+EgrPk2GrFt/ +ywaZWWDYWGWVjUTR939+J399roD1B0y2PpxxVJkES/1Y+Zj0 +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 2e:f5:9b:02:28:a7:db:7a:ff:d5:a3:a9:ee:bd:03:a0:cf:12:6a:1d + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=BM, O=QuoVadis Limited, CN=QuoVadis Root CA 3 G3 + Validity + Not Before: Jan 12 20:26:32 2012 GMT + Not After : Jan 12 20:26:32 2042 GMT + Subject: C=BM, O=QuoVadis Limited, CN=QuoVadis Root CA 3 G3 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:b3:cb:0e:10:67:8e:ea:14:97:a7:32:2a:0a:56: + 36:7f:68:4c:c7:b3:6f:3a:23:14:91:ff:19:7f:a5: + ca:ac:ee:b3:76:9d:7a:e9:8b:1b:ab:6b:31:db:fa: + 0b:53:4c:af:c5:a5:1a:79:3c:8a:4c:ff:ac:df:25: + de:4e:d9:82:32:0b:44:de:ca:db:8c:ac:a3:6e:16: + 83:3b:a6:64:4b:32:89:fb:16:16:38:7e:eb:43:e2: + d3:74:4a:c2:62:0a:73:0a:dd:49:b3:57:d2:b0:0a: + 85:9d:71:3c:de:a3:cb:c0:32:f3:01:39:20:43:1b: + 35:d1:53:b3:b1:ee:c5:93:69:82:3e:16:b5:28:46: + a1:de:ea:89:09:ed:43:b8:05:46:8a:86:f5:59:47: + be:1b:6f:01:21:10:b9:fd:a9:d2:28:ca:10:39:09: + ca:13:36:cf:9c:ad:ad:40:74:79:2b:02:3f:34:ff: + fa:20:69:7d:d3:ee:61:f5:ba:b3:e7:30:d0:37:23: + 86:72:61:45:29:48:59:68:6f:77:a6:2e:81:be:07: + 4d:6f:af:ce:c4:45:13:91:14:70:06:8f:1f:9f:f8: + 87:69:b1:0e:ef:c3:89:19:eb:ea:1c:61:fc:7a:6c: + 8a:dc:d6:03:0b:9e:26:ba:12:dd:d4:54:39:ab:26: + a3:33:ea:75:81:da:2d:cd:0f:4f:e4:03:d1:ef:15: + 97:1b:6b:90:c5:02:90:93:66:02:21:b1:47:de:8b: + 9a:4a:80:b9:55:8f:b5:a2:2f:c0:d6:33:67:da:7e: + c4:a7:b4:04:44:eb:47:fb:e6:58:b9:f7:0c:f0:7b: + 2b:b1:c0:70:29:c3:40:62:2d:3b:48:69:dc:23:3c: + 48:eb:7b:09:79:a9:6d:da:a8:30:98:cf:80:72:03: + 88:a6:5b:46:ae:72:79:7c:08:03:21:65:ae:b7:e1: + 1c:a5:b1:2a:a2:31:de:66:04:f7:c0:74:e8:71:de: + ff:3d:59:cc:96:26:12:8b:85:95:57:1a:ab:6b:75: + 0b:44:3d:11:28:3c:7b:61:b7:e2:8f:67:4f:e5:ec: + 3c:4c:60:80:69:57:38:1e:01:5b:8d:55:e8:c7:df: + c0:cc:77:23:34:49:75:7c:f6:98:11:eb:2d:de:ed: + 41:2e:14:05:02:7f:e0:fe:20:eb:35:e7:11:ac:22: + ce:57:3d:de:c9:30:6d:10:03:85:cd:f1:ff:8c:16: + b5:c1:b2:3e:88:6c:60:7f:90:4f:95:f7:f6:2d:ad: + 01:39:07:04:fa:75:80:7d:bf:49:50:ed:ef:c9:c4: + 7c:1c:eb:80:7e:db:b6:d0:dd:13:fe:c9:d3:9c:d7: + b2:97:a9 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + C6:17:D0:BC:A8:EA:02:43:F2:1B:06:99:5D:2B:90:20:B9:D7:9C:E4 + Signature Algorithm: sha256WithRSAEncryption + 34:61:d9:56:b5:12:87:55:4d:dd:a3:35:31:46:bb:a4:07:72: + bc:5f:61:62:e8:a5:fb:0b:37:b1:3c:b6:b3:fa:29:9d:7f:02: + f5:a4:c9:a8:93:b7:7a:71:28:69:8f:73:e1:52:90:da:d5:be: + 3a:e5:b7:76:6a:56:80:21:df:5d:e6:e9:3a:9e:e5:3e:f6:a2: + 69:c7:2a:0a:b0:18:47:dc:20:70:7d:52:a3:3e:59:7c:c1:ba: + c9:c8:15:40:61:ca:72:d6:70:ac:d2:b7:f0:1c:e4:86:29:f0: + ce:ef:68:63:d0:b5:20:8a:15:61:9a:7e:86:98:b4:c9:c2:76: + fb:cc:ba:30:16:cc:a3:61:c6:74:13:e5:6b:ef:a3:15:ea:03: + fe:13:8b:64:e4:d3:c1:d2:e8:84:fb:49:d1:10:4d:79:66:eb: + aa:fd:f4:8d:31:1e:70:14:ad:dc:de:67:13:4c:81:15:61:bc: + b7:d9:91:77:71:19:81:60:bb:f0:58:a5:b5:9c:0b:f7:8f:22: + 55:27:c0:4b:01:6d:3b:99:0d:d4:1d:9b:63:67:2f:d0:ee:0d: + ca:66:bc:94:4f:a6:ad:ed:fc:ee:63:ac:57:3f:65:25:cf:b2: + 86:8f:d0:08:ff:b8:76:14:6e:de:e5:27:ec:ab:78:b5:53:b9: + b6:3f:e8:20:f9:d2:a8:be:61:46:ca:87:8c:84:f3:f9:f1:a0: + 68:9b:22:1e:81:26:9b:10:04:91:71:c0:06:1f:dc:a0:d3:b9: + 56:a7:e3:98:2d:7f:83:9d:df:8c:2b:9c:32:8e:32:94:f0:01: + 3c:22:2a:9f:43:c2:2e:c3:98:39:07:38:7b:fc:5e:00:42:1f: + f3:32:26:79:83:84:f6:e5:f0:c1:51:12:c0:0b:1e:04:23:0c: + 54:a5:4c:2f:49:c5:4a:d1:b6:6e:60:0d:6b:fc:6b:8b:85:24: + 64:b7:89:0e:ab:25:47:5b:3c:cf:7e:49:bd:c7:e9:0a:c6:da: + f7:7e:0e:17:08:d3:48:97:d0:71:92:f0:0f:39:3e:34:6a:1c: + 7d:d8:f2:22:ae:bb:69:f4:33:b4:a6:48:55:d1:0f:0e:26:e8: + ec:b6:0b:2d:a7:85:35:cd:fd:59:c8:9f:d1:cd:3e:5a:29:34: + b9:3d:84:ce:b1:65:d4:59:91:91:56:75:21:c1:77:9e:f9:7a: + e1:60:9d:d3:ad:04:18:f4:7c:eb:5e:93:8f:53:4a:22:29:f8: + 48:2b:3e:4d:86:ac:5b:7f:cb:06:99:59:60:d8:58:65:95:8d: + 44:d1:f7:7f:7e:27:7f:7d:ae:80:f5:07:4c:b6:3e:9c:71:54: + 99:04:4b:fd:58:f9:98:f4 +SHA1 Fingerprint=48:12:BD:92:3C:A8:C4:39:06:E7:30:6D:27:96:E6:A4:CF:22:2E:7D diff --git a/system/etc/security/cacerts/e48193cf.0 b/system/etc/security/cacerts/e48193cf.0 new file mode 100644 index 0000000000000000000000000000000000000000..7883ef35d940e502c59f03abdf34eb4adbd7b73e --- /dev/null +++ b/system/etc/security/cacerts/e48193cf.0 @@ -0,0 +1,77 @@ +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz +dCBDb21tZXJjaWFsMB4XDTEwMDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDEL +MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp +cm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6EqdbDuKP +Hx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yr +ba0F8PrVC8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPAL +MeIrJmqbTFeurCA+ukV6BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1 +yHp52UKqK39c/s4mT6NmgTWvRLpUHhwwMmWd5jyTXlBOeuM61G7MGvv50jeuJCqr +VwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNVHQ4EFgQUnZPGU4teyq8/ +nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ +KoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYG +XUPGhi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNj +vbz4YYCanrHOQnDiqX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivt +Z8SOyUOyXGsViQK8YvxO8rUzqrJv0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9g +N53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0khsUlHRUe072o0EclNmsxZt9YC +nlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 8608355977964138876 (0x7777062726a9b17c) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=US, O=AffirmTrust, CN=AffirmTrust Commercial + Validity + Not Before: Jan 29 14:06:06 2010 GMT + Not After : Dec 31 14:06:06 2030 GMT + Subject: C=US, O=AffirmTrust, CN=AffirmTrust Commercial + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:f6:1b:4f:67:07:2b:a1:15:f5:06:22:cb:1f:01: + b2:e3:73:45:06:44:49:2c:bb:49:25:14:d6:ce:c3: + b7:ab:2c:4f:c6:41:32:94:57:fa:12:a7:5b:0e:e2: + 8f:1f:1e:86:19:a7:aa:b5:2d:b9:5f:0d:8a:c2:af: + 85:35:79:32:2d:bb:1c:62:37:f2:b1:5b:4a:3d:ca: + cd:71:5f:e9:42:be:94:e8:c8:de:f9:22:48:64:c6: + e5:ab:c6:2b:6d:ad:05:f0:fa:d5:0b:cf:9a:e5:f0: + 50:a4:8b:3b:47:a5:23:5b:7a:7a:f8:33:3f:b8:ef: + 99:97:e3:20:c1:d6:28:89:cf:94:fb:b9:45:ed:e3: + 40:17:11:d4:74:f0:0b:31:e2:2b:26:6a:9b:4c:57: + ae:ac:20:3e:ba:45:7a:05:f3:bd:9b:69:15:ae:7d: + 4e:20:63:c4:35:76:3a:07:02:c9:37:fd:c7:47:ee: + e8:f1:76:1d:73:15:f2:97:a4:b5:c8:7a:79:d9:42: + aa:2b:7f:5c:fe:ce:26:4f:a3:66:81:35:af:44:ba: + 54:1e:1c:30:32:65:9d:e6:3c:93:5e:50:4e:7a:e3: + 3a:d4:6e:cc:1a:fb:f9:d2:37:ae:24:2a:ab:57:03: + 22:28:0d:49:75:7f:b7:28:da:75:bf:8e:e3:dc:0e: + 79:31 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 9D:93:C6:53:8B:5E:CA:AF:3F:9F:1E:0F:E5:99:95:BC:24:F6:94:8F + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + Signature Algorithm: sha256WithRSAEncryption + 58:ac:f4:04:0e:cd:c0:0d:ff:0a:fd:d4:ba:16:5f:29:bd:7b: + 68:99:58:49:d2:b4:1d:37:4d:7f:27:7d:46:06:5d:43:c6:86: + 2e:3e:73:b2:26:7d:4f:93:a9:b6:c4:2a:9a:ab:21:97:14:b1: + de:8c:d3:ab:89:15:d8:6b:24:d4:f1:16:ae:d8:a4:5c:d4:7f: + 51:8e:ed:18:01:b1:93:63:bd:bc:f8:61:80:9a:9e:b1:ce:42: + 70:e2:a9:7d:06:25:7d:27:a1:fe:6f:ec:b3:1e:24:da:e3:4b: + 55:1a:00:3b:35:b4:3b:d9:d7:5d:30:fd:81:13:89:f2:c2:06: + 2b:ed:67:c4:8e:c9:43:b2:5c:6b:15:89:02:bc:62:fc:4e:f2: + b5:33:aa:b2:6f:d3:0a:a2:50:e3:f6:3b:e8:2e:44:c2:db:66: + 38:a9:33:56:48:f1:6d:1b:33:8d:0d:8c:3f:60:37:9d:d3:ca: + 6d:7e:34:7e:0d:9f:72:76:8b:1b:9f:72:fd:52:35:41:45:02: + 96:2f:1c:b2:9a:73:49:21:b1:49:47:45:47:b4:ef:6a:34:11: + c9:4d:9a:cc:59:b7:d6:02:9e:5a:4e:65:b5:94:ae:1b:df:29: + b0:16:f1:bf:00:9e:07:3a:17:64:b5:04:b5:23:21:99:0a:95: + 3b:97:7c:ef +SHA1 Fingerprint=F9:B5:B6:32:45:5F:9C:BE:EC:57:5F:80:DC:E9:6E:2C:C7:B2:78:B7 diff --git a/system/etc/security/cacerts/e775ed2d.0 b/system/etc/security/cacerts/e775ed2d.0 new file mode 100644 index 0000000000000000000000000000000000000000..ec2620f48dc74adb938ceeb8c04be2bc88032ce9 --- /dev/null +++ b/system/etc/security/cacerts/e775ed2d.0 @@ -0,0 +1,122 @@ +-----BEGIN CERTIFICATE----- +MIIFaDCCA1CgAwIBAgIBATANBgkqhkiG9w0BAQUFADBFMQswCQYDVQQGEwJVUzEW +MBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEeMBwGA1UEAxMVR2VvVHJ1c3QgVW5pdmVy +c2FsIENBMB4XDTA0MDMwNDA1MDAwMFoXDTI5MDMwNDA1MDAwMFowRTELMAkGA1UE +BhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xHjAcBgNVBAMTFUdlb1RydXN0 +IFVuaXZlcnNhbCBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKYV +VaCjxuAfjJ0hUNfBvitbtaSeodlyWL0AG0y/YckUHUWCq8YdgNY96xCcOq9tJPi8 +cQGeBvV8Xx7BDlXKg5pZMK4ZyzBIle0iN430SppyZj6tlcDgFgDgEB8rMQ7XlFTT +QjOgNB0eRXbdT8oYN+yFFXoZCPzVx5zw8qkuEKmS5j1YPakWaDwvdSEYfyh3peFh +F7em6fgemdtzbvQKoiFs7tqqhZJmr/Z6a4LauiIINQ/PQvE1+mrufislzDoR5G2v +c7J2Ha3QsnhnGqQ5HFELZ1aD/ThdDc7d8Lsrlh/eezJS/R27tQahsiFepdaVaH/w +mZ7cRQg+59IJDTWU3YBOU5fXtQlEIGQWFwMCTFMNaN7VqnJNk22CDtucvc+081xd +VHppCZbW2xHBjXWotM85yM48vCR85mLK4b19p71XZQvk/iXttmkQ3CgaRr0BHdCX +teGYO8A3ZNY9lO4L4fUorgtWv3GLIylBjobFS1J72HGrH4oVpjuDWtdYAVHGTEHZ +f9hBZ3KiKN9gg6meyHv8U3NyWfWTehd2Ds735VzZC1U0oqpbtWpU5xPKV+yXbfRe +Bi9Fi1jUIxaS5BZuKGNZMN9QAZxjiRqf2xeUgnA3wySemkfWWspOqGmJch+RbNt+ +nhutxx9z3SxPGWX9f5NAEC7S8O08ni4oPmkmM8V7AgMBAAGjYzBhMA8GA1UdEwEB +/wQFMAMBAf8wHQYDVR0OBBYEFNq7LqqwDLiIJlF0XG0D08DYj3rWMB8GA1UdIwQY +MBaAFNq7LqqwDLiIJlF0XG0D08DYj3rWMA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG +9w0BAQUFAAOCAgEAMXjmx7XfuJRAyXHEqDXsRh3ChfMoWIawC/yOsjmPRFWrZIRc +aanQmjg8+uUfNeVE44B5lGiku8SfPeE0zTBGi1QrlaXv9z+ZhP015s8xxtxqv6fX +IwjhmF7DWgh2qaavdy+3YL1ERmrvl/9zlcGO6JP7/TG37FcREUWbMPEaiDnBTzyn +ANXH/KttgCJwpQzgXQQpAvvLoJHRfNbDflDVnVi+QTjruXU8FdmbyUqDWcDaU/0z +uzYYm4UPFd3uLax2k7nZAY1IEKj79TiG8dsKxr2EoyNB3tZ3b4XUhRxQ4K5RirqN +Pnbiucon8l+f725ZDQbYKxek0nxru18UGkiPGkzns0ccjkxFKyDuSN/n3QmOGKja +QI2SJhFTYXNd673nxE0pN2HrrDktZy4W1vUAg4WhzH92xH3kt0tm7wNFYGm2DFKW +koRepqO1pD4r2czYG0eq8kTaT/kD6PAUyz/zg97QwVTjt+gKN02LIFkDMBmhLMi9 +ER/frslKxfMnZmaGrGiR/9nmUxwPi1xpZQomyB40w11Re9epnAahNt3ViZS82eQt +DF4JbAiXfKM9fJP/P6EUp8+1Xevb2xzEdt+Iub1FBZUbrvxGakyvSOPOrg/Sfuvm +bJxPgWp6ZKy7PtXny3YuxadIwVyQD8vIP/rmMuGNG2+k5o7Y+SlIis5z/iw= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 1 (0x1) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=US, O=GeoTrust Inc., CN=GeoTrust Universal CA + Validity + Not Before: Mar 4 05:00:00 2004 GMT + Not After : Mar 4 05:00:00 2029 GMT + Subject: C=US, O=GeoTrust Inc., CN=GeoTrust Universal CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:a6:15:55:a0:a3:c6:e0:1f:8c:9d:21:50:d7:c1: + be:2b:5b:b5:a4:9e:a1:d9:72:58:bd:00:1b:4c:bf: + 61:c9:14:1d:45:82:ab:c6:1d:80:d6:3d:eb:10:9c: + 3a:af:6d:24:f8:bc:71:01:9e:06:f5:7c:5f:1e:c1: + 0e:55:ca:83:9a:59:30:ae:19:cb:30:48:95:ed:22: + 37:8d:f4:4a:9a:72:66:3e:ad:95:c0:e0:16:00:e0: + 10:1f:2b:31:0e:d7:94:54:d3:42:33:a0:34:1d:1e: + 45:76:dd:4f:ca:18:37:ec:85:15:7a:19:08:fc:d5: + c7:9c:f0:f2:a9:2e:10:a9:92:e6:3d:58:3d:a9:16: + 68:3c:2f:75:21:18:7f:28:77:a5:e1:61:17:b7:a6: + e9:f8:1e:99:db:73:6e:f4:0a:a2:21:6c:ee:da:aa: + 85:92:66:af:f6:7a:6b:82:da:ba:22:08:35:0f:cf: + 42:f1:35:fa:6a:ee:7e:2b:25:cc:3a:11:e4:6d:af: + 73:b2:76:1d:ad:d0:b2:78:67:1a:a4:39:1c:51:0b: + 67:56:83:fd:38:5d:0d:ce:dd:f0:bb:2b:96:1f:de: + 7b:32:52:fd:1d:bb:b5:06:a1:b2:21:5e:a5:d6:95: + 68:7f:f0:99:9e:dc:45:08:3e:e7:d2:09:0d:35:94: + dd:80:4e:53:97:d7:b5:09:44:20:64:16:17:03:02: + 4c:53:0d:68:de:d5:aa:72:4d:93:6d:82:0e:db:9c: + bd:cf:b4:f3:5c:5d:54:7a:69:09:96:d6:db:11:c1: + 8d:75:a8:b4:cf:39:c8:ce:3c:bc:24:7c:e6:62:ca: + e1:bd:7d:a7:bd:57:65:0b:e4:fe:25:ed:b6:69:10: + dc:28:1a:46:bd:01:1d:d0:97:b5:e1:98:3b:c0:37: + 64:d6:3d:94:ee:0b:e1:f5:28:ae:0b:56:bf:71:8b: + 23:29:41:8e:86:c5:4b:52:7b:d8:71:ab:1f:8a:15: + a6:3b:83:5a:d7:58:01:51:c6:4c:41:d9:7f:d8:41: + 67:72:a2:28:df:60:83:a9:9e:c8:7b:fc:53:73:72: + 59:f5:93:7a:17:76:0e:ce:f7:e5:5c:d9:0b:55:34: + a2:aa:5b:b5:6a:54:e7:13:ca:57:ec:97:6d:f4:5e: + 06:2f:45:8b:58:d4:23:16:92:e4:16:6e:28:63:59: + 30:df:50:01:9c:63:89:1a:9f:db:17:94:82:70:37: + c3:24:9e:9a:47:d6:5a:ca:4e:a8:69:89:72:1f:91: + 6c:db:7e:9e:1b:ad:c7:1f:73:dd:2c:4f:19:65:fd: + 7f:93:40:10:2e:d2:f0:ed:3c:9e:2e:28:3e:69:26: + 33:c5:7b + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + DA:BB:2E:AA:B0:0C:B8:88:26:51:74:5C:6D:03:D3:C0:D8:8F:7A:D6 + X509v3 Authority Key Identifier: + keyid:DA:BB:2E:AA:B0:0C:B8:88:26:51:74:5C:6D:03:D3:C0:D8:8F:7A:D6 + + X509v3 Key Usage: critical + Digital Signature, Certificate Sign, CRL Sign + Signature Algorithm: sha1WithRSAEncryption + 31:78:e6:c7:b5:df:b8:94:40:c9:71:c4:a8:35:ec:46:1d:c2: + 85:f3:28:58:86:b0:0b:fc:8e:b2:39:8f:44:55:ab:64:84:5c: + 69:a9:d0:9a:38:3c:fa:e5:1f:35:e5:44:e3:80:79:94:68:a4: + bb:c4:9f:3d:e1:34:cd:30:46:8b:54:2b:95:a5:ef:f7:3f:99: + 84:fd:35:e6:cf:31:c6:dc:6a:bf:a7:d7:23:08:e1:98:5e:c3: + 5a:08:76:a9:a6:af:77:2f:b7:60:bd:44:46:6a:ef:97:ff:73: + 95:c1:8e:e8:93:fb:fd:31:b7:ec:57:11:11:45:9b:30:f1:1a: + 88:39:c1:4f:3c:a7:00:d5:c7:fc:ab:6d:80:22:70:a5:0c:e0: + 5d:04:29:02:fb:cb:a0:91:d1:7c:d6:c3:7e:50:d5:9d:58:be: + 41:38:eb:b9:75:3c:15:d9:9b:c9:4a:83:59:c0:da:53:fd:33: + bb:36:18:9b:85:0f:15:dd:ee:2d:ac:76:93:b9:d9:01:8d:48: + 10:a8:fb:f5:38:86:f1:db:0a:c6:bd:84:a3:23:41:de:d6:77: + 6f:85:d4:85:1c:50:e0:ae:51:8a:ba:8d:3e:76:e2:b9:ca:27: + f2:5f:9f:ef:6e:59:0d:06:d8:2b:17:a4:d2:7c:6b:bb:5f:14: + 1a:48:8f:1a:4c:e7:b3:47:1c:8e:4c:45:2b:20:ee:48:df:e7: + dd:09:8e:18:a8:da:40:8d:92:26:11:53:61:73:5d:eb:bd:e7: + c4:4d:29:37:61:eb:ac:39:2d:67:2e:16:d6:f5:00:83:85:a1: + cc:7f:76:c4:7d:e4:b7:4b:66:ef:03:45:60:69:b6:0c:52:96: + 92:84:5e:a6:a3:b5:a4:3e:2b:d9:cc:d8:1b:47:aa:f2:44:da: + 4f:f9:03:e8:f0:14:cb:3f:f3:83:de:d0:c1:54:e3:b7:e8:0a: + 37:4d:8b:20:59:03:30:19:a1:2c:c8:bd:11:1f:df:ae:c9:4a: + c5:f3:27:66:66:86:ac:68:91:ff:d9:e6:53:1c:0f:8b:5c:69: + 65:0a:26:c8:1e:34:c3:5d:51:7b:d7:a9:9c:06:a1:36:dd:d5: + 89:94:bc:d9:e4:2d:0c:5e:09:6c:08:97:7c:a3:3d:7c:93:ff: + 3f:a1:14:a7:cf:b5:5d:eb:db:db:1c:c4:76:df:88:b9:bd:45: + 05:95:1b:ae:fc:46:6a:4c:af:48:e3:ce:ae:0f:d2:7e:eb:e6: + 6c:9c:4f:81:6a:7a:64:ac:bb:3e:d5:e7:cb:76:2e:c5:a7:48: + c1:5c:90:0f:cb:c8:3f:fa:e6:32:e1:8d:1b:6f:a4:e6:8e:d8: + f9:29:48:8a:ce:73:fe:2c +SHA1 Fingerprint=E6:21:F3:35:43:79:05:9A:4B:68:30:9D:8A:2F:74:22:15:87:EC:79 diff --git a/system/etc/security/cacerts/e8651083.0 b/system/etc/security/cacerts/e8651083.0 new file mode 100644 index 0000000000000000000000000000000000000000..afb6f8ca1efcb01751a2590bc992f27889064506 --- /dev/null +++ b/system/etc/security/cacerts/e8651083.0 @@ -0,0 +1,86 @@ +-----BEGIN CERTIFICATE----- +MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYD +VQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0 +ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0G +CSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTAeFw0wOTA2MTYxMTMwMThaFw0y +OTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3Qx +FjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3pp +Z25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o +dTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvP +kd6mJviZpWNwrZuuyjNAfW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tc +cbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG0IMZfcChEhyVbUr02MelTTMuhTlAdX4U +fIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKApxn1ntxVUwOXewdI/5n7 +N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm1HxdrtbC +xkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1 ++rUCAwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G +A1UdDgQWBBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPM +Pcu1SCOhGnqmKrs0aDAbBgNVHREEFDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqG +SIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0olZMEyL/azXm4Q5DwpL7v8u8h +mLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfXI/OMn74dseGk +ddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775 +tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c +2Pm2G2JwCz02yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5t +HMN1Rq41Bab2XD0h7lbwyYIiLXpUq3DDfSJlgnCW +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 14014712776195784473 (0xc27e43044e473f19) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=HU, L=Budapest, O=Microsec Ltd., CN=Microsec e-Szigno Root CA 2009/emailAddress=info@e-szigno.hu + Validity + Not Before: Jun 16 11:30:18 2009 GMT + Not After : Dec 30 11:30:18 2029 GMT + Subject: C=HU, L=Budapest, O=Microsec Ltd., CN=Microsec e-Szigno Root CA 2009/emailAddress=info@e-szigno.hu + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:e9:f8:8f:f3:63:ad:da:86:d8:a7:e0:42:fb:cf: + 91:de:a6:26:f8:99:a5:63:70:ad:9b:ae:ca:33:40: + 7d:6d:96:6e:a1:0e:44:ee:e1:13:9d:94:42:52:9a: + bd:75:85:74:2c:a8:0e:1d:93:b6:18:b7:8c:2c:a8: + cf:fb:5c:71:b9:da:ec:fe:e8:7e:8f:e4:2f:1d:b2: + a8:75:87:d8:b7:a1:e5:3b:cf:99:4a:46:d0:83:19: + 7d:c0:a1:12:1c:95:6d:4a:f4:d8:c7:a5:4d:33:2e: + 85:39:40:75:7e:14:7c:80:12:98:50:c7:41:67:b8: + a0:80:61:54:a6:6c:4e:1f:e0:9d:0e:07:e9:c9:ba: + 33:e7:fe:c0:55:28:2c:02:80:a7:19:f5:9e:dc:55: + 53:03:97:7b:07:48:ff:99:fb:37:8a:24:c4:59:cc: + 50:10:63:8e:aa:a9:1a:b0:84:1a:86:f9:5f:bb:b1: + 50:6e:a4:d1:0a:cc:d5:71:7e:1f:a7:1b:7c:f5:53: + 6e:22:5f:cb:2b:e6:d4:7c:5d:ae:d6:c2:c6:4c:e5: + 05:01:d9:ed:57:fc:c1:23:79:fc:fa:c8:24:83:95: + f3:b5:6a:51:01:d0:77:d6:e9:12:a1:f9:1a:83:fb: + 82:1b:b9:b0:97:f4:76:06:33:43:49:a0:ff:0b:b5: + fa:b5 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + CB:0F:C6:DF:42:43:CC:3D:CB:B5:48:23:A1:1A:7A:A6:2A:BB:34:68 + X509v3 Authority Key Identifier: + keyid:CB:0F:C6:DF:42:43:CC:3D:CB:B5:48:23:A1:1A:7A:A6:2A:BB:34:68 + + X509v3 Subject Alternative Name: + email:info@e-szigno.hu + Signature Algorithm: sha256WithRSAEncryption + c9:d1:0e:5e:2e:d5:cc:b3:7c:3e:cb:fc:3d:ff:0d:28:95:93: + 04:c8:bf:da:cd:79:b8:43:90:f0:a4:be:ef:f2:ef:21:98:bc: + d4:d4:5d:06:f6:ee:42:ec:30:6c:a0:aa:a9:ca:f1:af:8a:fa: + 3f:0b:73:6a:3e:ea:2e:40:7e:1f:ae:54:61:79:eb:2e:08:37: + d7:23:f3:8c:9f:be:1d:b1:e1:a4:75:db:a0:e2:54:14:b1:ba: + 1c:29:a4:18:f6:12:ba:a2:14:14:e3:31:35:c8:40:ff:b7:e0: + 05:76:57:c1:1c:59:f2:f8:bf:e4:ed:25:62:5c:84:f0:7e:7e: + 1f:b3:be:f9:b7:21:11:cc:03:01:56:70:a7:10:92:1e:1b:34: + 81:1e:ad:9c:1a:c3:04:3c:ed:02:61:d6:1e:06:f3:5f:3a:87: + f2:2b:f1:45:87:e5:3d:ac:d1:c7:57:84:bd:6b:ae:dc:d8:f9: + b6:1b:62:70:0b:3d:36:c9:42:f2:32:d7:7a:61:e6:d2:db:3d: + cf:c8:a9:c9:9b:dc:db:58:44:d7:6f:38:af:7f:78:d3:a3:ad: + 1a:75:ba:1c:c1:36:7c:8f:1e:6d:1c:c3:75:46:ae:35:05:a6: + f6:5c:3d:21:ee:56:f0:c9:82:22:2d:7a:54:ab:70:c3:7d:22: + 65:82:70:96 +SHA1 Fingerprint=89:DF:74:FE:5C:F4:0F:4A:80:F9:E3:37:7D:54:DA:91:E1:01:31:8E diff --git a/system/etc/security/cacerts/ea169617.0 b/system/etc/security/cacerts/ea169617.0 new file mode 100644 index 0000000000000000000000000000000000000000..f7d488e823dafab140da995958a1f7edf503dc35 --- /dev/null +++ b/system/etc/security/cacerts/ea169617.0 @@ -0,0 +1,128 @@ +-----BEGIN CERTIFICATE----- +MIIFtTCCA52gAwIBAgIIYY3HhjsBggUwDQYJKoZIhvcNAQEFBQAwRDEWMBQGA1UE +AwwNQUNFRElDT00gUm9vdDEMMAoGA1UECwwDUEtJMQ8wDQYDVQQKDAZFRElDT00x +CzAJBgNVBAYTAkVTMB4XDTA4MDQxODE2MjQyMloXDTI4MDQxMzE2MjQyMlowRDEW +MBQGA1UEAwwNQUNFRElDT00gUm9vdDEMMAoGA1UECwwDUEtJMQ8wDQYDVQQKDAZF +RElDT00xCzAJBgNVBAYTAkVTMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKC +AgEA/5KV4WgGdrQsyFhIyv2AVClVYyT/kGWbEHV7w2rbYgIB8hiGtXxaOLHkWLn7 +09gtn70yN78sFW2+tfQh0hOR2QetAQXW8713zl9CgQr5auODAKgrLlUTY4HKRxx7 +XBZXehuDYAQ6PmXDzQHe3qTWDLqO3tkE7hdWIpuPY/1NFgu3e3eM+SW10W2ZEi5P +Grjm6gSSrj0RuVFCPYewMYWveVqc/udOXpJPQ/yrOq2lEiZmueIM15jO1FillUAK +t0SdE3QrwqXrIhWYENiLxQSfHY9g5QYbm8+5eaA9oiM/Qj9r+hwDezCNzmzAv+Yb +X79nuIQZ1RXve8uQNjFiybwCq0Zfm/4aaJQ0PZCOrfbkHQl/Sog4P75n/TSW9R28 +MHTLOO7VbKvU/PQAtwBbhTIWdjPp2KOZnQUAqhbm84F9b32qhm2tFXTTxKJxqvQU +fecyuB+81fFOvW8XAjnXDpVCOscAPukmYxHqC9FK/xidstd7LzrZlvvoHpKuE1XI +2Sf23EgbsCTBheN3nZqk8wwRHQ3ItBTutYJXCb8gWH8vIiPYcMt5bMlL8qkqyPyH +K9caUPgn6C9D4zq92Fdx/c6mUlv53U3t5fZvie27k5x2IXXwkkwp9y+cAS7+UEae +ZAwUswdbxcJzbPEHXEUkFDWug/FqTYl6+rPYLWbwNof1K1MCAwEAAaOBqjCBpzAP +BgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKaz4SsrSbbXc6GqlPUB53NlTKxQ +MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUprPhKytJttdzoaqU9QHnc2VMrFAw +RAYDVR0gBD0wOzA5BgRVHSAAMDEwLwYIKwYBBQUHAgEWI2h0dHA6Ly9hY2VkaWNv +bS5lZGljb21ncm91cC5jb20vZG9jMA0GCSqGSIb3DQEBBQUAA4ICAQDOLAtSUWIm +fQwng4/F9tqgaHtPkl7qpHMyEVNEskTLnewPeUKzEKbHDZ3Ltvo/Onzqv4hTGzz3 +gvoFNTPhNahXwOf9jU8/kzJPeGYDdwdY6ZXIfj7QeQCM8htRM5u8lOk6e25SLTKe +I6RF+7YuE7CLGLHdztUdp0J/Vb77W7tH1PwkzQSulgUV1qzOMPPKC8W64iLgpq0i +5ALudBF/TP94HTXa5gI06xgSYXcGCRZj6hitoocf8seACQl1ThCojz2GuHURwCRi +ipZ7SkXp7FnFvmuD5uHorLUwHv4FB4D54SMNUI8FmP8sX+g7tq3PgbUhh8oIKiMn +MCArz+2UW6yyetLHKKGKC5tNSixthT8Jcjxn4tncB7rrZXtaAWPWkFtPF2Y9fwsZ +o5NjEFIqnxQWWOLcpfShFosOkYuByptZ+thrkQdlVV9SH686+5DdaaVbnG0OLLb6 +zqylfDJKZ0DcMDQj3dcEI2bw/FWAp/tmGYI1Z2JwOV5vx+qQQEQIHriy1tvuWacN +GHk0vFQYXlPKNFHtRQrmjseCNj6nOGOpMCwXEGCSn1WHElkQwg9naRHMTh5+Spqt +r0CodaxWkHS4oJyleW/c6RrIaQXpuvoDs3zk4E7Czp3otkYNbn5XOmeUwssfnHdK +Z05phkOTOPu220+DkdRgfks+KzgHVZhepA== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 7029493972724711941 (0x618dc7863b018205) + Signature Algorithm: sha1WithRSAEncryption + Issuer: CN=ACEDICOM Root, OU=PKI, O=EDICOM, C=ES + Validity + Not Before: Apr 18 16:24:22 2008 GMT + Not After : Apr 13 16:24:22 2028 GMT + Subject: CN=ACEDICOM Root, OU=PKI, O=EDICOM, C=ES + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:ff:92:95:e1:68:06:76:b4:2c:c8:58:48:ca:fd: + 80:54:29:55:63:24:ff:90:65:9b:10:75:7b:c3:6a: + db:62:02:01:f2:18:86:b5:7c:5a:38:b1:e4:58:b9: + fb:d3:d8:2d:9f:bd:32:37:bf:2c:15:6d:be:b5:f4: + 21:d2:13:91:d9:07:ad:01:05:d6:f3:bd:77:ce:5f: + 42:81:0a:f9:6a:e3:83:00:a8:2b:2e:55:13:63:81: + ca:47:1c:7b:5c:16:57:7a:1b:83:60:04:3a:3e:65: + c3:cd:01:de:de:a4:d6:0c:ba:8e:de:d9:04:ee:17: + 56:22:9b:8f:63:fd:4d:16:0b:b7:7b:77:8c:f9:25: + b5:d1:6d:99:12:2e:4f:1a:b8:e6:ea:04:92:ae:3d: + 11:b9:51:42:3d:87:b0:31:85:af:79:5a:9c:fe:e7: + 4e:5e:92:4f:43:fc:ab:3a:ad:a5:12:26:66:b9:e2: + 0c:d7:98:ce:d4:58:a5:95:40:0a:b7:44:9d:13:74: + 2b:c2:a5:eb:22:15:98:10:d8:8b:c5:04:9f:1d:8f: + 60:e5:06:1b:9b:cf:b9:79:a0:3d:a2:23:3f:42:3f: + 6b:fa:1c:03:7b:30:8d:ce:6c:c0:bf:e6:1b:5f:bf: + 67:b8:84:19:d5:15:ef:7b:cb:90:36:31:62:c9:bc: + 02:ab:46:5f:9b:fe:1a:68:94:34:3d:90:8e:ad:f6: + e4:1d:09:7f:4a:88:38:3f:be:67:fd:34:96:f5:1d: + bc:30:74:cb:38:ee:d5:6c:ab:d4:fc:f4:00:b7:00: + 5b:85:32:16:76:33:e9:d8:a3:99:9d:05:00:aa:16: + e6:f3:81:7d:6f:7d:aa:86:6d:ad:15:74:d3:c4:a2: + 71:aa:f4:14:7d:e7:32:b8:1f:bc:d5:f1:4e:bd:6f: + 17:02:39:d7:0e:95:42:3a:c7:00:3e:e9:26:63:11: + ea:0b:d1:4a:ff:18:9d:b2:d7:7b:2f:3a:d9:96:fb: + e8:1e:92:ae:13:55:c8:d9:27:f6:dc:48:1b:b0:24: + c1:85:e3:77:9d:9a:a4:f3:0c:11:1d:0d:c8:b4:14: + ee:b5:82:57:09:bf:20:58:7f:2f:22:23:d8:70:cb: + 79:6c:c9:4b:f2:a9:2a:c8:fc:87:2b:d7:1a:50:f8: + 27:e8:2f:43:e3:3a:bd:d8:57:71:fd:ce:a6:52:5b: + f9:dd:4d:ed:e5:f6:6f:89:ed:bb:93:9c:76:21:75: + f0:92:4c:29:f7:2f:9c:01:2e:fe:50:46:9e:64:0c: + 14:b3:07:5b:c5:c2:73:6c:f1:07:5c:45:24:14:35: + ae:83:f1:6a:4d:89:7a:fa:b3:d8:2d:66:f0:36:87: + f5:2b:53 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Authority Key Identifier: + keyid:A6:B3:E1:2B:2B:49:B6:D7:73:A1:AA:94:F5:01:E7:73:65:4C:AC:50 + + X509v3 Key Usage: critical + Digital Signature, Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + A6:B3:E1:2B:2B:49:B6:D7:73:A1:AA:94:F5:01:E7:73:65:4C:AC:50 + X509v3 Certificate Policies: + Policy: X509v3 Any Policy + CPS: http://acedicom.edicomgroup.com/doc + + Signature Algorithm: sha1WithRSAEncryption + ce:2c:0b:52:51:62:26:7d:0c:27:83:8f:c5:f6:da:a0:68:7b: + 4f:92:5e:ea:a4:73:32:11:53:44:b2:44:cb:9d:ec:0f:79:42: + b3:10:a6:c7:0d:9d:cb:b6:fa:3f:3a:7c:ea:bf:88:53:1b:3c: + f7:82:fa:05:35:33:e1:35:a8:57:c0:e7:fd:8d:4f:3f:93:32: + 4f:78:66:03:77:07:58:e9:95:c8:7e:3e:d0:79:00:8c:f2:1b: + 51:33:9b:bc:94:e9:3a:7b:6e:52:2d:32:9e:23:a4:45:fb:b6: + 2e:13:b0:8b:18:b1:dd:ce:d5:1d:a7:42:7f:55:be:fb:5b:bb: + 47:d4:fc:24:cd:04:ae:96:05:15:d6:ac:ce:30:f3:ca:0b:c5: + ba:e2:22:e0:a6:ad:22:e4:02:ee:74:11:7f:4c:ff:78:1d:35: + da:e6:02:34:eb:18:12:61:77:06:09:16:63:ea:18:ad:a2:87: + 1f:f2:c7:80:09:09:75:4e:10:a8:8f:3d:86:b8:75:11:c0:24: + 62:8a:96:7b:4a:45:e9:ec:59:c5:be:6b:83:e6:e1:e8:ac:b5: + 30:1e:fe:05:07:80:f9:e1:23:0d:50:8f:05:98:ff:2c:5f:e8: + 3b:b6:ad:cf:81:b5:21:87:ca:08:2a:23:27:30:20:2b:cf:ed: + 94:5b:ac:b2:7a:d2:c7:28:a1:8a:0b:9b:4d:4a:2c:6d:85:3f: + 09:72:3c:67:e2:d9:dc:07:ba:eb:65:7b:5a:01:63:d6:90:5b: + 4f:17:66:3d:7f:0b:19:a3:93:63:10:52:2a:9f:14:16:58:e2: + dc:a5:f4:a1:16:8b:0e:91:8b:81:ca:9b:59:fa:d8:6b:91:07: + 65:55:5f:52:1f:af:3a:fb:90:dd:69:a5:5b:9c:6d:0e:2c:b6: + fa:ce:ac:a5:7c:32:4a:67:40:dc:30:34:23:dd:d7:04:23:66: + f0:fc:55:80:a7:fb:66:19:82:35:67:62:70:39:5e:6f:c7:ea: + 90:40:44:08:1e:b8:b2:d6:db:ee:59:a7:0d:18:79:34:bc:54: + 18:5e:53:ca:34:51:ed:45:0a:e6:8e:c7:82:36:3e:a7:38:63: + a9:30:2c:17:10:60:92:9f:55:87:12:59:10:c2:0f:67:69:11: + cc:4e:1e:7e:4a:9a:ad:af:40:a8:75:ac:56:90:74:b8:a0:9c: + a5:79:6f:dc:e9:1a:c8:69:05:e9:ba:fa:03:b3:7c:e4:e0:4e: + c2:ce:9d:e8:b6:46:0d:6e:7e:57:3a:67:94:c2:cb:1f:9c:77: + 4a:67:4e:69:86:43:93:38:fb:b6:db:4f:83:91:d4:60:7e:4b: + 3e:2b:38:07:55:98:5e:a4 +SHA1 Fingerprint=E0:B4:32:2E:B2:F6:A5:68:B6:54:53:84:48:18:4A:50:36:87:43:84 diff --git a/system/etc/security/cacerts/ed39abd0.0 b/system/etc/security/cacerts/ed39abd0.0 new file mode 100644 index 0000000000000000000000000000000000000000..188e37528742a013cdd6809ebc1f09cc8d75fda5 --- /dev/null +++ b/system/etc/security/cacerts/ed39abd0.0 @@ -0,0 +1,53 @@ +-----BEGIN CERTIFICATE----- +MIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQsw +CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu +ZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAe +Fw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUw +EwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20x +IDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0CAQYF +K4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FG +fp4tn+6OYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPO +Z9wj/wMco+I+o0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAd +BgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNpYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIx +AK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y3maTD/HMsQmP3Wyr+mt/ +oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34VOKa5Vt8 +sycX +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 05:55:56:bc:f2:5e:a4:35:35:c3:a4:0f:d5:ab:45:72 + Signature Algorithm: ecdsa-with-SHA384 + Issuer: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert Global Root G3 + Validity + Not Before: Aug 1 12:00:00 2013 GMT + Not After : Jan 15 12:00:00 2038 GMT + Subject: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert Global Root G3 + Subject Public Key Info: + Public Key Algorithm: id-ecPublicKey + Public-Key: (384 bit) + pub: + 04:dd:a7:d9:bb:8a:b8:0b:fb:0b:7f:21:d2:f0:be: + be:73:f3:33:5d:1a:bc:34:ea:de:c6:9b:bc:d0:95: + f6:f0:cc:d0:0b:ba:61:5b:51:46:7e:9e:2d:9f:ee: + 8e:63:0c:17:ec:07:70:f5:cf:84:2e:40:83:9c:e8: + 3f:41:6d:3b:ad:d3:a4:14:59:36:78:9d:03:43:ee: + 10:13:6c:72:de:ae:88:a7:a1:6b:b5:43:ce:67:dc: + 23:ff:03:1c:a3:e2:3e + ASN1 OID: secp384r1 + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Digital Signature, Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + B3:DB:48:A4:F9:A1:C5:D8:AE:36:41:CC:11:63:69:62:29:BC:4B:C6 + Signature Algorithm: ecdsa-with-SHA384 + 30:65:02:31:00:ad:bc:f2:6c:3f:12:4a:d1:2d:39:c3:0a:09: + 97:73:f4:88:36:8c:88:27:bb:e6:88:8d:50:85:a7:63:f9:9e: + 32:de:66:93:0f:f1:cc:b1:09:8f:dd:6c:ab:fa:6b:7f:a0:02: + 30:39:66:5b:c2:64:8d:b8:9e:50:dc:a8:d5:49:a2:ed:c7:dc: + d1:49:7f:17:01:b8:c8:86:8f:4e:8c:88:2b:a8:9a:a9:8a:c5: + d1:00:bd:f8:54:e2:9a:e5:5b:7c:b3:27:17 +SHA1 Fingerprint=7E:04:DE:89:6A:3E:66:6D:00:E6:87:D3:3F:FA:D9:3B:E8:3D:34:9E diff --git a/system/etc/security/cacerts/ee7cd6fb.0 b/system/etc/security/cacerts/ee7cd6fb.0 new file mode 100644 index 0000000000000000000000000000000000000000..69b359af8b1b05d9fc0f11e8df1ebf44887c551d --- /dev/null +++ b/system/etc/security/cacerts/ee7cd6fb.0 @@ -0,0 +1,100 @@ +-----BEGIN CERTIFICATE----- +MIIEvTCCA6WgAwIBAgIBADANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJFVTEn +MCUGA1UEChMeQUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQL +ExpodHRwOi8vd3d3LmNoYW1iZXJzaWduLm9yZzEiMCAGA1UEAxMZQ2hhbWJlcnMg +b2YgQ29tbWVyY2UgUm9vdDAeFw0wMzA5MzAxNjEzNDNaFw0zNzA5MzAxNjEzNDRa +MH8xCzAJBgNVBAYTAkVVMScwJQYDVQQKEx5BQyBDYW1lcmZpcm1hIFNBIENJRiBB +ODI3NDMyODcxIzAhBgNVBAsTGmh0dHA6Ly93d3cuY2hhbWJlcnNpZ24ub3JnMSIw +IAYDVQQDExlDaGFtYmVycyBvZiBDb21tZXJjZSBSb290MIIBIDANBgkqhkiG9w0B +AQEFAAOCAQ0AMIIBCAKCAQEAtzZV5aVdGDDg2olUkfzIx1L4L1DZ77F1c2VHfRtb +unXF/KGIJPov7coISjlUxFF6tdpg6jg8gbLL8bvZkSM/SAFwdakFKq0fcfPJVD0d +BmpAPrMMhe5cG3nCYsS4No41XQEMIwRHNaqbYE6gZj3LJgqcQKH0XZi/caulAGgq +7YN6D6IUtdQis4CwPAxaUWktWBiP7Zme8a7ileb2R6jWDA+wWFjbw2Y3npuRVDM3 +0pQcakjJyfKl2qUMI/cjDpwyVV5xnIQFUZot/eZOKjRa3spAN2cMVCFVd9oKDMyX +roDclDZK9D7ONhMeU+SsTjoF7Nuucpw4i9A5O4kKPnf+dQIBA6OCAUQwggFAMBIG +A1UdEwEB/wQIMAYBAf8CAQwwPAYDVR0fBDUwMzAxoC+gLYYraHR0cDovL2NybC5j +aGFtYmVyc2lnbi5vcmcvY2hhbWJlcnNyb290LmNybDAdBgNVHQ4EFgQU45T1sU3p +26EpW1eLTXYGduHRooowDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIA +BzAnBgNVHREEIDAegRxjaGFtYmVyc3Jvb3RAY2hhbWJlcnNpZ24ub3JnMCcGA1Ud +EgQgMB6BHGNoYW1iZXJzcm9vdEBjaGFtYmVyc2lnbi5vcmcwWAYDVR0gBFEwTzBN +BgsrBgEEAYGHLgoDATA+MDwGCCsGAQUFBwIBFjBodHRwOi8vY3BzLmNoYW1iZXJz +aWduLm9yZy9jcHMvY2hhbWJlcnNyb290Lmh0bWwwDQYJKoZIhvcNAQEFBQADggEB +AAxBl8IahsAifJ/7kPMa0QOx7xP5IV8EnNrJpY0nbJaHkb5BkAFyk+cefV/2icZd +p0AJPaxJRUXcLo0waLIJuvvDL8y6C98/d3tGfToSJI6WjzwFCm/SlCgdbQzALogi +1djPHRPH8EjX1wWnz8dHnjs8NMiAT9QUu/wNUPf6s+xCX6ndbcj0dc97wXImsQEc +XCz9ek60AcUFV7nnPKoF2YjpB0ZBzu9Bga5Y34OirsrXdx/nADydb47kMgkdTXg0 +eDQ8lJsm7U9xxhl6vSAiSFr+S30Dt+dYvsYyTnQeaN2oaFuzPu5ifdmA6Ap1erfu +tGWaIZDgqtCYvDi1czyL+Nw= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 0 (0x0) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=EU, O=AC Camerfirma SA CIF A82743287, OU=http://www.chambersign.org, CN=Chambers of Commerce Root + Validity + Not Before: Sep 30 16:13:43 2003 GMT + Not After : Sep 30 16:13:44 2037 GMT + Subject: C=EU, O=AC Camerfirma SA CIF A82743287, OU=http://www.chambersign.org, CN=Chambers of Commerce Root + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:b7:36:55:e5:a5:5d:18:30:e0:da:89:54:91:fc: + c8:c7:52:f8:2f:50:d9:ef:b1:75:73:65:47:7d:1b: + 5b:ba:75:c5:fc:a1:88:24:fa:2f:ed:ca:08:4a:39: + 54:c4:51:7a:b5:da:60:ea:38:3c:81:b2:cb:f1:bb: + d9:91:23:3f:48:01:70:75:a9:05:2a:ad:1f:71:f3: + c9:54:3d:1d:06:6a:40:3e:b3:0c:85:ee:5c:1b:79: + c2:62:c4:b8:36:8e:35:5d:01:0c:23:04:47:35:aa: + 9b:60:4e:a0:66:3d:cb:26:0a:9c:40:a1:f4:5d:98: + bf:71:ab:a5:00:68:2a:ed:83:7a:0f:a2:14:b5:d4: + 22:b3:80:b0:3c:0c:5a:51:69:2d:58:18:8f:ed:99: + 9e:f1:ae:e2:95:e6:f6:47:a8:d6:0c:0f:b0:58:58: + db:c3:66:37:9e:9b:91:54:33:37:d2:94:1c:6a:48: + c9:c9:f2:a5:da:a5:0c:23:f7:23:0e:9c:32:55:5e: + 71:9c:84:05:51:9a:2d:fd:e6:4e:2a:34:5a:de:ca: + 40:37:67:0c:54:21:55:77:da:0a:0c:cc:97:ae:80: + dc:94:36:4a:f4:3e:ce:36:13:1e:53:e4:ac:4e:3a: + 05:ec:db:ae:72:9c:38:8b:d0:39:3b:89:0a:3e:77: + fe:75 + Exponent: 3 (0x3) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE, pathlen:12 + X509v3 CRL Distribution Points: + + Full Name: + URI:http://crl.chambersign.org/chambersroot.crl + + X509v3 Subject Key Identifier: + E3:94:F5:B1:4D:E9:DB:A1:29:5B:57:8B:4D:76:06:76:E1:D1:A2:8A + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + Netscape Cert Type: + SSL CA, S/MIME CA, Object Signing CA + X509v3 Subject Alternative Name: + email:chambersroot@chambersign.org + X509v3 Issuer Alternative Name: + email:chambersroot@chambersign.org + X509v3 Certificate Policies: + Policy: 1.3.6.1.4.1.17326.10.3.1 + CPS: http://cps.chambersign.org/cps/chambersroot.html + + Signature Algorithm: sha1WithRSAEncryption + 0c:41:97:c2:1a:86:c0:22:7c:9f:fb:90:f3:1a:d1:03:b1:ef: + 13:f9:21:5f:04:9c:da:c9:a5:8d:27:6c:96:87:91:be:41:90: + 01:72:93:e7:1e:7d:5f:f6:89:c6:5d:a7:40:09:3d:ac:49:45: + 45:dc:2e:8d:30:68:b2:09:ba:fb:c3:2f:cc:ba:0b:df:3f:77: + 7b:46:7d:3a:12:24:8e:96:8f:3c:05:0a:6f:d2:94:28:1d:6d: + 0c:c0:2e:88:22:d5:d8:cf:1d:13:c7:f0:48:d7:d7:05:a7:cf: + c7:47:9e:3b:3c:34:c8:80:4f:d4:14:bb:fc:0d:50:f7:fa:b3: + ec:42:5f:a9:dd:6d:c8:f4:75:cf:7b:c1:72:26:b1:01:1c:5c: + 2c:fd:7a:4e:b4:01:c5:05:57:b9:e7:3c:aa:05:d9:88:e9:07: + 46:41:ce:ef:41:81:ae:58:df:83:a2:ae:ca:d7:77:1f:e7:00: + 3c:9d:6f:8e:e4:32:09:1d:4d:78:34:78:34:3c:94:9b:26:ed: + 4f:71:c6:19:7a:bd:20:22:48:5a:fe:4b:7d:03:b7:e7:58:be: + c6:32:4e:74:1e:68:dd:a8:68:5b:b3:3e:ee:62:7d:d9:80:e8: + 0a:75:7a:b7:ee:b4:65:9a:21:90:e0:aa:d0:98:bc:38:b5:73: + 3c:8b:f8:dc +SHA1 Fingerprint=6E:3A:55:A4:19:0C:19:5C:93:84:3C:C0:DB:72:2E:31:30:61:F0:B1 diff --git a/system/etc/security/cacerts/facacbc6.0 b/system/etc/security/cacerts/facacbc6.0 new file mode 100644 index 0000000000000000000000000000000000000000..0b2120a7ba9f412da136b5d562a9689973fec798 --- /dev/null +++ b/system/etc/security/cacerts/facacbc6.0 @@ -0,0 +1,88 @@ +-----BEGIN CERTIFICATE----- +MIIE0zCCA7ugAwIBAgIQGNrRniZ96LtKIVjNzGs7SjANBgkqhkiG9w0BAQUFADCB +yjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQL +ExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJp +U2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxW +ZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0 +aG9yaXR5IC0gRzUwHhcNMDYxMTA4MDAwMDAwWhcNMzYwNzE2MjM1OTU5WjCByjEL +MAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZW +ZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2ln +biwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJp +U2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9y +aXR5IC0gRzUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvJAgIKXo1 +nmAMqudLO07cfLw8RRy7K+D+KQL5VwijZIUVJ/XxrcgxiV0i6CqqpkKzj/i5Vbex +t0uz/o9+B1fs70PbZmIVYc9gDaTY3vjgw2IIPVQT60nKWVSFJuUrjxuf6/WhkcIz +SdhDY2pSS9KP6HBRTdGJaXvHcPaz3BJ023tdS1bTlr8Vd6Gw9KIl8q8ckmcY5fQG +BO+QueQA5N06tRn/Arr0PO7gi+s3i+z016zy9vA9r911kTMZHRxAy3QkGSGT2RT+ +rCpSx4/VBEnkjWNHiDxpg8v+R70rfk/Fla4OndTRQ8Bnc+MUCH7lP59zuDMKz10/ +NIeWiu5T6CUVAgMBAAGjgbIwga8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8E +BAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJaW1hZ2UvZ2lmMCEwHzAH +BgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYjaHR0cDovL2xvZ28udmVy +aXNpZ24uY29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFH/TZafC3ey78DAJ80M5+gKv +MzEzMA0GCSqGSIb3DQEBBQUAA4IBAQCTJEowX2LP2BqYLz3q3JktvXf2pXkiOOzE +p6B4Eq1iDkVwZMXnl2YtmAl+X6/WzChl8gGqCBpH3vn5fJJaCGkgDdk+bW48DW7Y +5gaRQBi5+MHt39tBquCWIMnNZBU4gcmU7qKEKQsTb47bDN0lAtukixlE0kF6BWlK +WE9gyn6CagsCqiUXObXbf+eEZSqVir2G3l6BFoMtEMze/aiCKm0oHw0LxOXnGiYZ +4fQRbxC1lfznQgUy286dUV4otp6F01vvpX1FQHKOtw5rDgb7MzVIcbidJ4vEZV8N +hnacRHr2lVz2XTIIM6RUthg/aFzyQkqFOFSDX9HoLPKsEdao7WNq +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 18:da:d1:9e:26:7d:e8:bb:4a:21:58:cd:cc:6b:3b:4a + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=US, O=VeriSign, Inc., OU=VeriSign Trust Network, OU=(c) 2006 VeriSign, Inc. - For authorized use only, CN=VeriSign Class 3 Public Primary Certification Authority - G5 + Validity + Not Before: Nov 8 00:00:00 2006 GMT + Not After : Jul 16 23:59:59 2036 GMT + Subject: C=US, O=VeriSign, Inc., OU=VeriSign Trust Network, OU=(c) 2006 VeriSign, Inc. - For authorized use only, CN=VeriSign Class 3 Public Primary Certification Authority - G5 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:af:24:08:08:29:7a:35:9e:60:0c:aa:e7:4b:3b: + 4e:dc:7c:bc:3c:45:1c:bb:2b:e0:fe:29:02:f9:57: + 08:a3:64:85:15:27:f5:f1:ad:c8:31:89:5d:22:e8: + 2a:aa:a6:42:b3:8f:f8:b9:55:b7:b1:b7:4b:b3:fe: + 8f:7e:07:57:ec:ef:43:db:66:62:15:61:cf:60:0d: + a4:d8:de:f8:e0:c3:62:08:3d:54:13:eb:49:ca:59: + 54:85:26:e5:2b:8f:1b:9f:eb:f5:a1:91:c2:33:49: + d8:43:63:6a:52:4b:d2:8f:e8:70:51:4d:d1:89:69: + 7b:c7:70:f6:b3:dc:12:74:db:7b:5d:4b:56:d3:96: + bf:15:77:a1:b0:f4:a2:25:f2:af:1c:92:67:18:e5: + f4:06:04:ef:90:b9:e4:00:e4:dd:3a:b5:19:ff:02: + ba:f4:3c:ee:e0:8b:eb:37:8b:ec:f4:d7:ac:f2:f6: + f0:3d:af:dd:75:91:33:19:1d:1c:40:cb:74:24:19: + 21:93:d9:14:fe:ac:2a:52:c7:8f:d5:04:49:e4:8d: + 63:47:88:3c:69:83:cb:fe:47:bd:2b:7e:4f:c5:95: + ae:0e:9d:d4:d1:43:c0:67:73:e3:14:08:7e:e5:3f: + 9f:73:b8:33:0a:cf:5d:3f:34:87:96:8a:ee:53:e8: + 25:15 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + 1.3.6.1.5.5.7.1.12: + 0_.].[0Y0W0U..image/gif0!0.0...+..............k...j.H.,{..0%.#http://logo.verisign.com/vslogo.gif + X509v3 Subject Key Identifier: + 7F:D3:65:A7:C2:DD:EC:BB:F0:30:09:F3:43:39:FA:02:AF:33:31:33 + Signature Algorithm: sha1WithRSAEncryption + 93:24:4a:30:5f:62:cf:d8:1a:98:2f:3d:ea:dc:99:2d:bd:77: + f6:a5:79:22:38:ec:c4:a7:a0:78:12:ad:62:0e:45:70:64:c5: + e7:97:66:2d:98:09:7e:5f:af:d6:cc:28:65:f2:01:aa:08:1a: + 47:de:f9:f9:7c:92:5a:08:69:20:0d:d9:3e:6d:6e:3c:0d:6e: + d8:e6:06:91:40:18:b9:f8:c1:ed:df:db:41:aa:e0:96:20:c9: + cd:64:15:38:81:c9:94:ee:a2:84:29:0b:13:6f:8e:db:0c:dd: + 25:02:db:a4:8b:19:44:d2:41:7a:05:69:4a:58:4f:60:ca:7e: + 82:6a:0b:02:aa:25:17:39:b5:db:7f:e7:84:65:2a:95:8a:bd: + 86:de:5e:81:16:83:2d:10:cc:de:fd:a8:82:2a:6d:28:1f:0d: + 0b:c4:e5:e7:1a:26:19:e1:f4:11:6f:10:b5:95:fc:e7:42:05: + 32:db:ce:9d:51:5e:28:b6:9e:85:d3:5b:ef:a5:7d:45:40:72: + 8e:b7:0e:6b:0e:06:fb:33:35:48:71:b8:9d:27:8b:c4:65:5f: + 0d:86:76:9c:44:7a:f6:95:5c:f6:5d:32:08:33:a4:54:b6:18: + 3f:68:5c:f2:42:4a:85:38:54:83:5f:d1:e8:2c:f2:ac:11:d6: + a8:ed:63:6a +SHA1 Fingerprint=4E:B6:D5:78:49:9B:1C:CF:5F:58:1E:AD:56:BE:3D:9B:67:44:A5:E5 diff --git a/system/etc/security/cacerts/fb5fa911.0 b/system/etc/security/cacerts/fb5fa911.0 new file mode 100644 index 0000000000000000000000000000000000000000..8758d19b80a151efa468525498960b6e1f2e42c4 --- /dev/null +++ b/system/etc/security/cacerts/fb5fa911.0 @@ -0,0 +1,120 @@ +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgITBmyf0pY1hp8KD+WGePhbJruKNzANBgkqhkiG9w0BAQwF +ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 +b24gUm9vdCBDQSAyMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTEL +MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv +b3QgQ0EgMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK2Wny2cSkxK +gXlRmeyKy2tgURO8TW0G/LAIjd0ZEGrHJgw12MBvIITplLGbhQPDW9tK6Mj4kHbZ +W0/jTOgGNk3Mmqw9DJArktQGGWCsN0R5hYGCrVo34A3MnaZMUnbqQ523BNFQ9lXg +1dKmSYXpN+nKfq5clU1Imj+uIFptiJXZNLhSGkOQsL9sBbm2eLfq0OQ6PBJTYv9K +8nu+NQWpEjTj82R0Yiw9AElaKP4yRLuH3WUnAnE72kr3H9rN9yFVkE8P7K6C4Z9r +2UXTu/Bfh+08LDmG2j/e7HJV63mjrdvdfLC6HM783k81ds8P+HgfajZRRidhW+me +z/CiVX18JYpvL7TFz4QuK/0NURBs+18bvBt+xa47mAExkv8LV/SasrlX6avvDXbR +8O70zoan4G7ptGmh32n2M8ZpLpcTnqWHsFcQgTfJU7O7f/aS0ZzQGPSSbtqDT6Zj +mUyl+17vIWR6IF9sZIUVyzfpYgwLKhbcAS4y2j5L9Z469hdAlO+ekQiG+r5jqFoz +7Mt0Q5X5bGlSNscpb/xVA1wf+5+9R+vnSUeVC06JIglJ4PVhHvG/LopyboBZ/1c6 ++XUyo05f7O0oYtlNc/LMgRdg7c3r3NunysV+Ar3yVAhU/bQtCSwXVEqY0VThUWcI +0u1ufm8/0i2BWSlmy5A5lREedCf+3euvAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMB +Af8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSwDPBMMPQFWAJI/TPlUq9LhONm +UjANBgkqhkiG9w0BAQwFAAOCAgEAqqiAjw54o+Ci1M3m9Zh6O+oAA7CXDpO8Wqj2 +LIxyh6mx/H9z/WNxeKWHWc8w4Q0QshNabYL1auaAn6AFC2jkR2vHat+2/XcycuUY ++gn0oJMsXdKMdYV2ZZAMA3m3MSNjrXiDCYZohMr/+c8mmpJ5581LxedhpxfL86kS +k5Nrp+gvU5LEYFiwzAJRGFuFjWJZY7attN6a+yb3ACfAXVU3dJnJUH/jWS5E4ywl +7uxMMne0nxrpS10gxdr9HIcWxkPo1LsmmkVwXqkLN1PiRnsn/eBG8om3zEK2yygm +btmlyTrIQRNg91CMFa6ybRoVGld45pIq2WWQgj9sAq+uEjonljYE1x2igGOpm/Hl +urR8FLBOybEfdF849lHqm/osohHUqS0nGkWxr7JOcQ3AWEbWaQbLU8uz/mtBzUF+ +fUwPfHJ5elnNXkoOrJupmHN5fLT0zLm4BwyydFy4x2+IoZCn9Kr5v2c69BoVYh63 +n749sSmvZ6ES8lgQGVMDMBu4Gon2nL2XA46jCfMdiyHxtN/kHNGfZQIG6lzWE7OE +76KlXIx3KadowGuuQNKotOrN8I1LOJwZmhsoVLiJkO/KdYE+HvJkJMcYr07/R54H +9jVlpNMKVv/1F2Rs76giJUmTtt8AF9pYfl3uxRuw0dFfIRDH+fO6AgonB8Xx1sfT +4PsJYGw= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 06:6c:9f:d2:96:35:86:9f:0a:0f:e5:86:78:f8:5b:26:bb:8a:37 + Signature Algorithm: sha384WithRSAEncryption + Issuer: C=US, O=Amazon, CN=Amazon Root CA 2 + Validity + Not Before: May 26 00:00:00 2015 GMT + Not After : May 26 00:00:00 2040 GMT + Subject: C=US, O=Amazon, CN=Amazon Root CA 2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (4096 bit) + Modulus: + 00:ad:96:9f:2d:9c:4a:4c:4a:81:79:51:99:ec:8a: + cb:6b:60:51:13:bc:4d:6d:06:fc:b0:08:8d:dd:19: + 10:6a:c7:26:0c:35:d8:c0:6f:20:84:e9:94:b1:9b: + 85:03:c3:5b:db:4a:e8:c8:f8:90:76:d9:5b:4f:e3: + 4c:e8:06:36:4d:cc:9a:ac:3d:0c:90:2b:92:d4:06: + 19:60:ac:37:44:79:85:81:82:ad:5a:37:e0:0d:cc: + 9d:a6:4c:52:76:ea:43:9d:b7:04:d1:50:f6:55:e0: + d5:d2:a6:49:85:e9:37:e9:ca:7e:ae:5c:95:4d:48: + 9a:3f:ae:20:5a:6d:88:95:d9:34:b8:52:1a:43:90: + b0:bf:6c:05:b9:b6:78:b7:ea:d0:e4:3a:3c:12:53: + 62:ff:4a:f2:7b:be:35:05:a9:12:34:e3:f3:64:74: + 62:2c:3d:00:49:5a:28:fe:32:44:bb:87:dd:65:27: + 02:71:3b:da:4a:f7:1f:da:cd:f7:21:55:90:4f:0f: + ec:ae:82:e1:9f:6b:d9:45:d3:bb:f0:5f:87:ed:3c: + 2c:39:86:da:3f:de:ec:72:55:eb:79:a3:ad:db:dd: + 7c:b0:ba:1c:ce:fc:de:4f:35:76:cf:0f:f8:78:1f: + 6a:36:51:46:27:61:5b:e9:9e:cf:f0:a2:55:7d:7c: + 25:8a:6f:2f:b4:c5:cf:84:2e:2b:fd:0d:51:10:6c: + fb:5f:1b:bc:1b:7e:c5:ae:3b:98:01:31:92:ff:0b: + 57:f4:9a:b2:b9:57:e9:ab:ef:0d:76:d1:f0:ee:f4: + ce:86:a7:e0:6e:e9:b4:69:a1:df:69:f6:33:c6:69: + 2e:97:13:9e:a5:87:b0:57:10:81:37:c9:53:b3:bb: + 7f:f6:92:d1:9c:d0:18:f4:92:6e:da:83:4f:a6:63: + 99:4c:a5:fb:5e:ef:21:64:7a:20:5f:6c:64:85:15: + cb:37:e9:62:0c:0b:2a:16:dc:01:2e:32:da:3e:4b: + f5:9e:3a:f6:17:40:94:ef:9e:91:08:86:fa:be:63: + a8:5a:33:ec:cb:74:43:95:f9:6c:69:52:36:c7:29: + 6f:fc:55:03:5c:1f:fb:9f:bd:47:eb:e7:49:47:95: + 0b:4e:89:22:09:49:e0:f5:61:1e:f1:bf:2e:8a:72: + 6e:80:59:ff:57:3a:f9:75:32:a3:4e:5f:ec:ed:28: + 62:d9:4d:73:f2:cc:81:17:60:ed:cd:eb:dc:db:a7: + ca:c5:7e:02:bd:f2:54:08:54:fd:b4:2d:09:2c:17: + 54:4a:98:d1:54:e1:51:67:08:d2:ed:6e:7e:6f:3f: + d2:2d:81:59:29:66:cb:90:39:95:11:1e:74:27:fe: + dd:eb:af + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Digital Signature, Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + B0:0C:F0:4C:30:F4:05:58:02:48:FD:33:E5:52:AF:4B:84:E3:66:52 + Signature Algorithm: sha384WithRSAEncryption + aa:a8:80:8f:0e:78:a3:e0:a2:d4:cd:e6:f5:98:7a:3b:ea:00: + 03:b0:97:0e:93:bc:5a:a8:f6:2c:8c:72:87:a9:b1:fc:7f:73: + fd:63:71:78:a5:87:59:cf:30:e1:0d:10:b2:13:5a:6d:82:f5: + 6a:e6:80:9f:a0:05:0b:68:e4:47:6b:c7:6a:df:b6:fd:77:32: + 72:e5:18:fa:09:f4:a0:93:2c:5d:d2:8c:75:85:76:65:90:0c: + 03:79:b7:31:23:63:ad:78:83:09:86:68:84:ca:ff:f9:cf:26: + 9a:92:79:e7:cd:4b:c5:e7:61:a7:17:cb:f3:a9:12:93:93:6b: + a7:e8:2f:53:92:c4:60:58:b0:cc:02:51:18:5b:85:8d:62:59: + 63:b6:ad:b4:de:9a:fb:26:f7:00:27:c0:5d:55:37:74:99:c9: + 50:7f:e3:59:2e:44:e3:2c:25:ee:ec:4c:32:77:b4:9f:1a:e9: + 4b:5d:20:c5:da:fd:1c:87:16:c6:43:e8:d4:bb:26:9a:45:70: + 5e:a9:0b:37:53:e2:46:7b:27:fd:e0:46:f2:89:b7:cc:42:b6: + cb:28:26:6e:d9:a5:c9:3a:c8:41:13:60:f7:50:8c:15:ae:b2: + 6d:1a:15:1a:57:78:e6:92:2a:d9:65:90:82:3f:6c:02:af:ae: + 12:3a:27:96:36:04:d7:1d:a2:80:63:a9:9b:f1:e5:ba:b4:7c: + 14:b0:4e:c9:b1:1f:74:5f:38:f6:51:ea:9b:fa:2c:a2:11:d4: + a9:2d:27:1a:45:b1:af:b2:4e:71:0d:c0:58:46:d6:69:06:cb: + 53:cb:b3:fe:6b:41:cd:41:7e:7d:4c:0f:7c:72:79:7a:59:cd: + 5e:4a:0e:ac:9b:a9:98:73:79:7c:b4:f4:cc:b9:b8:07:0c:b2: + 74:5c:b8:c7:6f:88:a1:90:a7:f4:aa:f9:bf:67:3a:f4:1a:15: + 62:1e:b7:9f:be:3d:b1:29:af:67:a1:12:f2:58:10:19:53:03: + 30:1b:b8:1a:89:f6:9c:bd:97:03:8e:a3:09:f3:1d:8b:21:f1: + b4:df:e4:1c:d1:9f:65:02:06:ea:5c:d6:13:b3:84:ef:a2:a5: + 5c:8c:77:29:a7:68:c0:6b:ae:40:d2:a8:b4:ea:cd:f0:8d:4b: + 38:9c:19:9a:1b:28:54:b8:89:90:ef:ca:75:81:3e:1e:f2:64: + 24:c7:18:af:4e:ff:47:9e:07:f6:35:65:a4:d3:0a:56:ff:f5: + 17:64:6c:ef:a8:22:25:49:93:b6:df:00:17:da:58:7e:5d:ee: + c5:1b:b0:d1:d1:5f:21:10:c7:f9:f3:ba:02:0a:27:07:c5:f1: + d6:c7:d3:e0:fb:09:60:6c +SHA1 Fingerprint=5A:8C:EF:45:D7:A6:98:59:76:7A:8C:8B:44:96:B5:78:CF:47:4B:1A diff --git a/system/etc/security/cacerts/fd08c599.0 b/system/etc/security/cacerts/fd08c599.0 new file mode 100644 index 0000000000000000000000000000000000000000..3468f7f5f8d0df007c012cdf2ecc82675bd3a98f --- /dev/null +++ b/system/etc/security/cacerts/fd08c599.0 @@ -0,0 +1,78 @@ +-----BEGIN CERTIFICATE----- +MIIDQTCCAimgAwIBAgITBmyfz5m/jAo54vB4ikPmljZbyjANBgkqhkiG9w0BAQsF +ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 +b24gUm9vdCBDQSAxMB4XDTE1MDUyNjAwMDAwMFoXDTM4MDExNzAwMDAwMFowOTEL +MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv +b3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXj +ca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM +9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qw +IFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6 +VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L +93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQm +jgSubJrIqg0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMA0GCSqGSIb3DQEBCwUA +A4IBAQCY8jdaQZChGsV2USggNiMOruYou6r4lK5IpDB/G/wkjUu0yKGX9rbxenDI +U5PMCCjjmCXPI6T53iHTfIUJrU6adTrCC2qJeHZERxhlbI1Bjjt/msv0tadQ1wUs +N+gDS63pYaACbvXy8MWy7Vu33PqUXHeeE6V/Uq2V8viTO96LXFvKWlJbYK8U90vv +o/ufQJVtMVT8QtPHRh8jrdkPSHCa2XV4cdFyQzR1bldZwgJcJmApzyMZFo6IQ6XU +5MsI+yMRQ+hDKXJioaldXgjUkK642M4UwtBV8ob2xJNDd2ZhwLnoQdeXeGADbkpy +rqXRfboQnoZsG4q5WTP468SQvvG5 +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 06:6c:9f:cf:99:bf:8c:0a:39:e2:f0:78:8a:43:e6:96:36:5b:ca + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=US, O=Amazon, CN=Amazon Root CA 1 + Validity + Not Before: May 26 00:00:00 2015 GMT + Not After : Jan 17 00:00:00 2038 GMT + Subject: C=US, O=Amazon, CN=Amazon Root CA 1 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:b2:78:80:71:ca:78:d5:e3:71:af:47:80:50:74: + 7d:6e:d8:d7:88:76:f4:99:68:f7:58:21:60:f9:74: + 84:01:2f:ac:02:2d:86:d3:a0:43:7a:4e:b2:a4:d0: + 36:ba:01:be:8d:db:48:c8:07:17:36:4c:f4:ee:88: + 23:c7:3e:eb:37:f5:b5:19:f8:49:68:b0:de:d7:b9: + 76:38:1d:61:9e:a4:fe:82:36:a5:e5:4a:56:e4:45: + e1:f9:fd:b4:16:fa:74:da:9c:9b:35:39:2f:fa:b0: + 20:50:06:6c:7a:d0:80:b2:a6:f9:af:ec:47:19:8f: + 50:38:07:dc:a2:87:39:58:f8:ba:d5:a9:f9:48:67: + 30:96:ee:94:78:5e:6f:89:a3:51:c0:30:86:66:a1: + 45:66:ba:54:eb:a3:c3:91:f9:48:dc:ff:d1:e8:30: + 2d:7d:2d:74:70:35:d7:88:24:f7:9e:c4:59:6e:bb: + 73:87:17:f2:32:46:28:b8:43:fa:b7:1d:aa:ca:b4: + f2:9f:24:0e:2d:4b:f7:71:5c:5e:69:ff:ea:95:02: + cb:38:8a:ae:50:38:6f:db:fb:2d:62:1b:c5:c7:1e: + 54:e1:77:e0:67:c8:0f:9c:87:23:d6:3f:40:20:7f: + 20:80:c4:80:4c:3e:3b:24:26:8e:04:ae:6c:9a:c8: + aa:0d + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Digital Signature, Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + 84:18:CC:85:34:EC:BC:0C:94:94:2E:08:59:9C:C7:B2:10:4E:0A:08 + Signature Algorithm: sha256WithRSAEncryption + 98:f2:37:5a:41:90:a1:1a:c5:76:51:28:20:36:23:0e:ae:e6: + 28:bb:aa:f8:94:ae:48:a4:30:7f:1b:fc:24:8d:4b:b4:c8:a1: + 97:f6:b6:f1:7a:70:c8:53:93:cc:08:28:e3:98:25:cf:23:a4: + f9:de:21:d3:7c:85:09:ad:4e:9a:75:3a:c2:0b:6a:89:78:76: + 44:47:18:65:6c:8d:41:8e:3b:7f:9a:cb:f4:b5:a7:50:d7:05: + 2c:37:e8:03:4b:ad:e9:61:a0:02:6e:f5:f2:f0:c5:b2:ed:5b: + b7:dc:fa:94:5c:77:9e:13:a5:7f:52:ad:95:f2:f8:93:3b:de: + 8b:5c:5b:ca:5a:52:5b:60:af:14:f7:4b:ef:a3:fb:9f:40:95: + 6d:31:54:fc:42:d3:c7:46:1f:23:ad:d9:0f:48:70:9a:d9:75: + 78:71:d1:72:43:34:75:6e:57:59:c2:02:5c:26:60:29:cf:23: + 19:16:8e:88:43:a5:d4:e4:cb:08:fb:23:11:43:e8:43:29:72: + 62:a1:a9:5d:5e:08:d4:90:ae:b8:d8:ce:14:c2:d0:55:f2:86: + f6:c4:93:43:77:66:61:c0:b9:e8:41:d7:97:78:60:03:6e:4a: + 72:ae:a5:d1:7d:ba:10:9e:86:6c:1b:8a:b9:59:33:f8:eb:c4: + 90:be:f1:b9 +SHA1 Fingerprint=8D:A7:F9:65:EC:5E:FC:37:91:0F:1C:6E:59:FD:C1:CC:6A:6E:DE:16 diff --git a/system/etc/security/cacerts/fde84897.0 b/system/etc/security/cacerts/fde84897.0 new file mode 100644 index 0000000000000000000000000000000000000000..c87478cc4dafef11c49b40841cf09d47b0f200de --- /dev/null +++ b/system/etc/security/cacerts/fde84897.0 @@ -0,0 +1,86 @@ +-----BEGIN CERTIFICATE----- +MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNV +BAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4X +DTA3MDYyOTE1MTMwNVoXDTI3MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQ +BgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwIQ2VydGlnbmEwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7qXOEm7RFHYeGifBZ4 +QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyHGxny +gQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbw +zBfsV1/pogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q +130yGLMLLGq/jj8UEYkgDncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2 +JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKfIrjxwo1p3Po6WAbfAgMBAAGjgbwwgbkw +DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQtCRZvgHyUtVF9lo53BEw +ZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJBgNVBAYT +AkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzj +AQ/JSP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG +9w0BAQUFAAOCAQEAhQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8h +bV6lUmPOEvjvKtpv6zf+EwLHyzs+ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFnc +fca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1kluPBS1xp81HlDQwY9qcEQCYsuu +HWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY1gkIl2PlwS6w +t0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw +WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 18364802974209362175 (0xfedce3010fc948ff) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=FR, O=Dhimyotis, CN=Certigna + Validity + Not Before: Jun 29 15:13:05 2007 GMT + Not After : Jun 29 15:13:05 2027 GMT + Subject: C=FR, O=Dhimyotis, CN=Certigna + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:c8:68:f1:c9:d6:d6:b3:34:75:26:82:1e:ec:b4: + be:ea:5c:e1:26:ed:11:47:61:e1:a2:7c:16:78:40: + 21:e4:60:9e:5a:c8:63:e1:c4:b1:96:92:ff:18:6d: + 69:23:e1:2b:62:f7:dd:e2:36:2f:91:07:b9:48:cf: + 0e:ec:79:b6:2c:e7:34:4b:70:08:25:a3:3c:87:1b: + 19:f2:81:07:0f:38:90:19:d3:11:fe:86:b4:f2:d1: + 5e:1e:1e:96:cd:80:6c:ce:3b:31:93:b6:f2:a0:d0: + a9:95:12:7d:a5:9a:cc:6b:c8:84:56:8a:33:a9:e7: + 22:15:53:16:f0:cc:17:ec:57:5f:e9:a2:0a:98:09: + de:e3:5f:9c:6f:dc:48:e3:85:0b:15:5a:a6:ba:9f: + ac:48:e3:09:b2:f7:f4:32:de:5e:34:be:1c:78:5d: + 42:5b:ce:0e:22:8f:4d:90:d7:7d:32:18:b3:0b:2c: + 6a:bf:8e:3f:14:11:89:20:0e:77:14:b5:3d:94:08: + 87:f7:25:1e:d5:b2:60:00:ec:6f:2a:28:25:6e:2a: + 3e:18:63:17:25:3f:3e:44:20:16:f6:26:c8:25:ae: + 05:4a:b4:e7:63:2c:f3:8c:16:53:7e:5c:fb:11:1a: + 08:c1:46:62:9f:22:b8:f1:c2:8d:69:dc:fa:3a:58: + 06:df + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 1A:ED:FE:41:39:90:B4:24:59:BE:01:F2:52:D5:45:F6:5A:39:DC:11 + X509v3 Authority Key Identifier: + keyid:1A:ED:FE:41:39:90:B4:24:59:BE:01:F2:52:D5:45:F6:5A:39:DC:11 + DirName:/C=FR/O=Dhimyotis/CN=Certigna + serial:FE:DC:E3:01:0F:C9:48:FF + + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + Netscape Cert Type: + SSL CA, S/MIME CA, Object Signing CA + Signature Algorithm: sha1WithRSAEncryption + 85:03:1e:92:71:f6:42:af:e1:a3:61:9e:eb:f3:c0:0f:f2:a5: + d4:da:95:e6:d6:be:68:36:3d:7e:6e:1f:4c:8a:ef:d1:0f:21: + 6d:5e:a5:52:63:ce:12:f8:ef:2a:da:6f:eb:37:fe:13:02:c7: + cb:3b:3e:22:6b:da:61:2e:7f:d4:72:3d:dd:30:e1:1e:4c:40: + 19:8c:0f:d7:9c:d1:83:30:7b:98:59:dc:7d:c6:b9:0c:29:4c: + a1:33:a2:eb:67:3a:65:84:d3:96:e2:ed:76:45:70:8f:b5:2b: + de:f9:23:d6:49:6e:3c:14:b5:c6:9f:35:1e:50:d0:c1:8f:6a: + 70:44:02:62:cb:ae:1d:68:41:a7:aa:57:e8:53:aa:07:d2:06: + f6:d5:14:06:0b:91:03:75:2c:6c:72:b5:61:95:9a:0d:8b:b9: + 0d:e7:f5:df:54:cd:de:e6:d8:d6:09:08:97:63:e5:c1:2e:b0: + b7:44:26:c0:26:c0:af:55:30:9e:3b:d5:36:2a:19:04:f4:5c: + 1e:ff:cf:2c:b7:ff:d0:fd:87:40:11:d5:11:23:bb:48:c0:21: + a9:a4:28:2d:fd:15:f8:b0:4e:2b:f4:30:5b:21:fc:11:91:34: + be:41:ef:7b:9d:97:75:ff:97:95:c0:96:58:2f:ea:bb:46:d7: + bb:e4:d9:2e +SHA1 Fingerprint=B1:2E:13:63:45:86:A4:6F:1A:B2:60:68:37:58:2D:C4:AC:FD:94:97 diff --git a/system/etc/security/otacerts.zip b/system/etc/security/otacerts.zip new file mode 100644 index 0000000000000000000000000000000000000000..bf987537a31dc75f094183586b01f5e152b292b2 Binary files /dev/null and b/system/etc/security/otacerts.zip differ diff --git a/system/etc/selinux/mapping/26.0.cil b/system/etc/selinux/mapping/26.0.cil new file mode 100644 index 0000000000000000000000000000000000000000..40bec840ffb13a3382fdcf368834e6d098d333e5 --- /dev/null +++ b/system/etc/selinux/mapping/26.0.cil @@ -0,0 +1,708 @@ +;; private attributes removed from public types +(typeattributeset domain_deprecated (bluetooth_26_0)) + +;; attributes removed from current policy +(typeattribute hal_wifi_keystore) +(typeattribute hal_wifi_keystore_client) +(typeattribute hal_wifi_keystore_server) + +;; types removed from current policy +(type asan_reboot_prop) +(type log_device) +(type mediacasserver_service) +(type tracing_shell_writable) +(type tracing_shell_writable_debug) + +(typeattributeset accessibility_service_26_0 (accessibility_service)) +(typeattributeset account_service_26_0 (account_service)) +(typeattributeset activity_service_26_0 (activity_service)) +(typeattributeset adbd_26_0 (adbd)) +(typeattributeset adb_data_file_26_0 (adb_data_file)) +(typeattributeset adbd_socket_26_0 (adbd_socket)) +(typeattributeset adb_keys_file_26_0 (adb_keys_file)) +(typeattributeset alarm_device_26_0 (alarm_device)) +(typeattributeset alarm_service_26_0 (alarm_service)) +(typeattributeset anr_data_file_26_0 (anr_data_file)) +(typeattributeset apk_data_file_26_0 (apk_data_file)) +(typeattributeset apk_private_data_file_26_0 (apk_private_data_file)) +(typeattributeset apk_private_tmp_file_26_0 (apk_private_tmp_file)) +(typeattributeset apk_tmp_file_26_0 (apk_tmp_file)) +(typeattributeset app_data_file_26_0 (app_data_file)) +(typeattributeset app_fuse_file_26_0 (app_fuse_file)) +(typeattributeset app_fusefs_26_0 (app_fusefs)) +(typeattributeset appops_service_26_0 (appops_service)) +(typeattributeset appwidget_service_26_0 (appwidget_service)) +(typeattributeset asan_reboot_prop_26_0 (asan_reboot_prop)) +(typeattributeset asec_apk_file_26_0 (asec_apk_file)) +(typeattributeset asec_image_file_26_0 (asec_image_file)) +(typeattributeset asec_public_file_26_0 (asec_public_file)) +(typeattributeset ashmem_device_26_0 (ashmem_device)) +(typeattributeset assetatlas_service_26_0 (assetatlas_service)) +(typeattributeset audio_data_file_26_0 (audio_data_file)) +(typeattributeset audio_device_26_0 (audio_device)) +(typeattributeset audiohal_data_file_26_0 (audiohal_data_file)) +(typeattributeset audio_prop_26_0 (audio_prop)) +(typeattributeset audio_seq_device_26_0 (audio_seq_device)) +(typeattributeset audioserver_26_0 (audioserver)) +(typeattributeset audioserver_data_file_26_0 (audioserver_data_file)) +(typeattributeset audioserver_service_26_0 (audioserver_service)) +(typeattributeset audio_service_26_0 (audio_service)) +(typeattributeset audio_timer_device_26_0 (audio_timer_device)) +(typeattributeset autofill_service_26_0 (autofill_service)) +(typeattributeset backup_data_file_26_0 (backup_data_file)) +(typeattributeset backup_service_26_0 (backup_service)) +(typeattributeset batteryproperties_service_26_0 (batteryproperties_service)) +(typeattributeset battery_service_26_0 (battery_service)) +(typeattributeset batterystats_service_26_0 (batterystats_service)) +(typeattributeset binder_device_26_0 (binder_device)) +(typeattributeset binfmt_miscfs_26_0 (binfmt_miscfs)) +(typeattributeset blkid_26_0 (blkid)) +(typeattributeset blkid_untrusted_26_0 (blkid_untrusted)) +(typeattributeset block_device_26_0 (block_device)) +(typeattributeset bluetooth_26_0 (bluetooth)) +(typeattributeset bluetooth_data_file_26_0 (bluetooth_data_file)) +(typeattributeset bluetooth_efs_file_26_0 (bluetooth_efs_file)) +(typeattributeset bluetooth_logs_data_file_26_0 (bluetooth_logs_data_file)) +(typeattributeset bluetooth_manager_service_26_0 (bluetooth_manager_service)) +(typeattributeset bluetooth_prop_26_0 (bluetooth_prop)) +(typeattributeset bluetooth_service_26_0 (bluetooth_service)) +(typeattributeset bluetooth_socket_26_0 (bluetooth_socket)) +(typeattributeset bootanim_26_0 (bootanim)) +(typeattributeset bootanim_exec_26_0 (bootanim_exec)) +(typeattributeset boot_block_device_26_0 (boot_block_device)) +(typeattributeset bootchart_data_file_26_0 (bootchart_data_file)) +(typeattributeset bootstat_26_0 (bootstat)) +(typeattributeset bootstat_data_file_26_0 (bootstat_data_file)) +(typeattributeset bootstat_exec_26_0 (bootstat_exec)) +(typeattributeset boottime_prop_26_0 (boottime_prop)) +(typeattributeset boottrace_data_file_26_0 (boottrace_data_file)) +(typeattributeset bufferhubd_26_0 (bufferhubd)) +(typeattributeset bufferhubd_exec_26_0 (bufferhubd_exec)) +(typeattributeset cache_backup_file_26_0 (cache_backup_file)) +(typeattributeset cache_block_device_26_0 (cache_block_device)) +(typeattributeset cache_file_26_0 (cache_file)) +(typeattributeset cache_private_backup_file_26_0 (cache_private_backup_file)) +(typeattributeset cache_recovery_file_26_0 (cache_recovery_file)) +(typeattributeset camera_data_file_26_0 (camera_data_file)) +(typeattributeset camera_device_26_0 (camera_device)) +(typeattributeset cameraproxy_service_26_0 (cameraproxy_service)) +(typeattributeset cameraserver_26_0 (cameraserver)) +(typeattributeset cameraserver_exec_26_0 (cameraserver_exec)) +(typeattributeset cameraserver_service_26_0 (cameraserver_service)) +(typeattributeset cgroup_26_0 (cgroup)) +(typeattributeset charger_26_0 (charger)) +(typeattributeset clatd_26_0 (clatd)) +(typeattributeset clatd_exec_26_0 (clatd_exec)) +(typeattributeset clipboard_service_26_0 (clipboard_service)) +(typeattributeset commontime_management_service_26_0 (commontime_management_service)) +(typeattributeset companion_device_service_26_0 (companion_device_service)) +(typeattributeset configfs_26_0 (configfs)) +(typeattributeset config_prop_26_0 (config_prop)) +(typeattributeset connectivity_service_26_0 (connectivity_service)) +(typeattributeset connmetrics_service_26_0 (connmetrics_service)) +(typeattributeset console_device_26_0 (console_device)) +(typeattributeset consumer_ir_service_26_0 (consumer_ir_service)) +(typeattributeset content_service_26_0 (content_service)) +(typeattributeset contexthub_service_26_0 (contexthub_service)) +(typeattributeset coredump_file_26_0 (coredump_file)) +(typeattributeset country_detector_service_26_0 (country_detector_service)) +(typeattributeset coverage_service_26_0 (coverage_service)) +(typeattributeset cppreopt_prop_26_0 (cppreopt_prop)) +(typeattributeset cppreopts_26_0 (cppreopts)) +(typeattributeset cppreopts_exec_26_0 (cppreopts_exec)) +(typeattributeset cpuctl_device_26_0 (cpuctl_device)) +(typeattributeset cpuinfo_service_26_0 (cpuinfo_service)) +(typeattributeset crash_dump_26_0 (crash_dump)) +(typeattributeset crash_dump_exec_26_0 (crash_dump_exec)) +(typeattributeset ctl_bootanim_prop_26_0 (ctl_bootanim_prop)) +(typeattributeset ctl_bugreport_prop_26_0 (ctl_bugreport_prop)) +(typeattributeset ctl_console_prop_26_0 (ctl_console_prop)) +(typeattributeset ctl_default_prop_26_0 (ctl_default_prop)) +(typeattributeset ctl_dumpstate_prop_26_0 (ctl_dumpstate_prop)) +(typeattributeset ctl_fuse_prop_26_0 (ctl_fuse_prop)) +(typeattributeset ctl_mdnsd_prop_26_0 (ctl_mdnsd_prop)) +(typeattributeset ctl_rildaemon_prop_26_0 (ctl_rildaemon_prop)) +(typeattributeset dalvikcache_data_file_26_0 (dalvikcache_data_file)) +(typeattributeset dalvik_prop_26_0 (dalvik_prop)) +(typeattributeset dbinfo_service_26_0 (dbinfo_service)) +(typeattributeset debugfs_26_0 (debugfs)) +(typeattributeset debugfs_mmc_26_0 (debugfs_mmc)) +(typeattributeset debugfs_trace_marker_26_0 (debugfs_trace_marker)) +(typeattributeset debugfs_tracing_26_0 (debugfs_tracing)) +(typeattributeset debugfs_tracing_instances_26_0 (debugfs_tracing_instances)) +(typeattributeset debugfs_wifi_tracing_26_0 (debugfs_wifi_tracing)) +(typeattributeset debuggerd_prop_26_0 (debuggerd_prop)) +(typeattributeset debug_prop_26_0 (debug_prop)) +(typeattributeset default_android_hwservice_26_0 (default_android_hwservice)) +(typeattributeset default_android_service_26_0 (default_android_service)) +(typeattributeset default_android_vndservice_26_0 (default_android_vndservice)) +(typeattributeset default_prop_26_0 (default_prop)) +(typeattributeset device_26_0 (device)) +(typeattributeset device_identifiers_service_26_0 (device_identifiers_service)) +(typeattributeset deviceidle_service_26_0 (deviceidle_service)) +(typeattributeset device_logging_prop_26_0 (device_logging_prop)) +(typeattributeset device_policy_service_26_0 (device_policy_service)) +(typeattributeset devicestoragemonitor_service_26_0 (devicestoragemonitor_service)) +(typeattributeset devpts_26_0 (devpts)) +(typeattributeset dex2oat_26_0 (dex2oat)) +(typeattributeset dex2oat_exec_26_0 (dex2oat_exec)) +(typeattributeset dhcp_26_0 (dhcp)) +(typeattributeset dhcp_data_file_26_0 (dhcp_data_file)) +(typeattributeset dhcp_exec_26_0 (dhcp_exec)) +(typeattributeset dhcp_prop_26_0 (dhcp_prop)) +(typeattributeset diskstats_service_26_0 (diskstats_service)) +(typeattributeset display_service_26_0 (display_service)) +(typeattributeset dm_device_26_0 (dm_device)) +(typeattributeset dnsmasq_26_0 (dnsmasq)) +(typeattributeset dnsmasq_exec_26_0 (dnsmasq_exec)) +(typeattributeset dnsproxyd_socket_26_0 (dnsproxyd_socket)) +(typeattributeset DockObserver_service_26_0 (DockObserver_service)) +(typeattributeset dreams_service_26_0 (dreams_service)) +(typeattributeset drm_data_file_26_0 (drm_data_file)) +(typeattributeset drmserver_26_0 (drmserver)) +(typeattributeset drmserver_exec_26_0 (drmserver_exec)) +(typeattributeset drmserver_service_26_0 (drmserver_service)) +(typeattributeset drmserver_socket_26_0 (drmserver_socket)) +(typeattributeset dropbox_service_26_0 (dropbox_service)) +(typeattributeset dumpstate_26_0 (dumpstate)) +(typeattributeset dumpstate_exec_26_0 (dumpstate_exec)) +(typeattributeset dumpstate_options_prop_26_0 (dumpstate_options_prop)) +(typeattributeset dumpstate_prop_26_0 (dumpstate_prop)) +(typeattributeset dumpstate_service_26_0 (dumpstate_service)) +(typeattributeset dumpstate_socket_26_0 (dumpstate_socket)) +(typeattributeset efs_file_26_0 (efs_file)) +(typeattributeset ephemeral_app_26_0 (ephemeral_app)) +(typeattributeset ethernet_service_26_0 (ethernet_service)) +(typeattributeset ffs_prop_26_0 (ffs_prop)) +(typeattributeset file_contexts_file_26_0 (file_contexts_file)) +(typeattributeset fingerprintd_26_0 (fingerprintd)) +(typeattributeset fingerprintd_data_file_26_0 (fingerprintd_data_file)) +(typeattributeset fingerprintd_exec_26_0 (fingerprintd_exec)) +(typeattributeset fingerprintd_service_26_0 (fingerprintd_service)) +(typeattributeset fingerprint_prop_26_0 (fingerprint_prop)) +(typeattributeset fingerprint_service_26_0 (fingerprint_service)) +(typeattributeset firstboot_prop_26_0 (firstboot_prop)) +(typeattributeset font_service_26_0 (font_service)) +(typeattributeset frp_block_device_26_0 (frp_block_device)) +(typeattributeset fsck_26_0 (fsck)) +(typeattributeset fsck_exec_26_0 (fsck_exec)) +(typeattributeset fscklogs_26_0 (fscklogs)) +(typeattributeset fsck_untrusted_26_0 (fsck_untrusted)) +(typeattributeset full_device_26_0 (full_device)) +(typeattributeset functionfs_26_0 (functionfs)) +(typeattributeset fuse_26_0 (fuse)) +(typeattributeset fuse_device_26_0 (fuse_device)) +(typeattributeset fwk_display_hwservice_26_0 (fwk_display_hwservice)) +(typeattributeset fwk_scheduler_hwservice_26_0 (fwk_scheduler_hwservice)) +(typeattributeset fwk_sensor_hwservice_26_0 (fwk_sensor_hwservice)) +(typeattributeset fwmarkd_socket_26_0 (fwmarkd_socket)) +(typeattributeset gatekeeperd_26_0 (gatekeeperd)) +(typeattributeset gatekeeper_data_file_26_0 (gatekeeper_data_file)) +(typeattributeset gatekeeperd_exec_26_0 (gatekeeperd_exec)) +(typeattributeset gatekeeper_service_26_0 (gatekeeper_service)) +(typeattributeset gfxinfo_service_26_0 (gfxinfo_service)) +(typeattributeset gps_control_26_0 (gps_control)) +(typeattributeset gpu_device_26_0 (gpu_device)) +(typeattributeset gpu_service_26_0 (gpu_service)) +(typeattributeset graphics_device_26_0 (graphics_device)) +(typeattributeset graphicsstats_service_26_0 (graphicsstats_service)) +(typeattributeset hal_audio_hwservice_26_0 (hal_audio_hwservice)) +(typeattributeset hal_bluetooth_hwservice_26_0 (hal_bluetooth_hwservice)) +(typeattributeset hal_bootctl_hwservice_26_0 (hal_bootctl_hwservice)) +(typeattributeset hal_camera_hwservice_26_0 (hal_camera_hwservice)) +(typeattributeset hal_configstore_ISurfaceFlingerConfigs_26_0 (hal_configstore_ISurfaceFlingerConfigs)) +(typeattributeset hal_contexthub_hwservice_26_0 (hal_contexthub_hwservice)) +(typeattributeset hal_drm_hwservice_26_0 (hal_drm_hwservice)) +(typeattributeset hal_dumpstate_hwservice_26_0 (hal_dumpstate_hwservice)) +(typeattributeset hal_fingerprint_hwservice_26_0 (hal_fingerprint_hwservice)) +(typeattributeset hal_fingerprint_service_26_0 (hal_fingerprint_service)) +(typeattributeset hal_gatekeeper_hwservice_26_0 (hal_gatekeeper_hwservice)) +(typeattributeset hal_gnss_hwservice_26_0 (hal_gnss_hwservice)) +(typeattributeset hal_graphics_allocator_hwservice_26_0 (hal_graphics_allocator_hwservice)) +(typeattributeset hal_graphics_composer_hwservice_26_0 (hal_graphics_composer_hwservice)) +(typeattributeset hal_graphics_mapper_hwservice_26_0 (hal_graphics_mapper_hwservice)) +(typeattributeset hal_health_hwservice_26_0 (hal_health_hwservice)) +(typeattributeset hal_ir_hwservice_26_0 (hal_ir_hwservice)) +(typeattributeset hal_keymaster_hwservice_26_0 (hal_keymaster_hwservice)) +(typeattributeset hal_light_hwservice_26_0 (hal_light_hwservice)) +(typeattributeset hal_memtrack_hwservice_26_0 (hal_memtrack_hwservice)) +(typeattributeset hal_nfc_hwservice_26_0 (hal_nfc_hwservice)) +(typeattributeset hal_oemlock_hwservice_26_0 (hal_oemlock_hwservice)) +(typeattributeset hal_omx_hwservice_26_0 (hal_omx_hwservice)) +(typeattributeset hal_power_hwservice_26_0 (hal_power_hwservice)) +(typeattributeset hal_renderscript_hwservice_26_0 (hal_renderscript_hwservice)) +(typeattributeset hal_sensors_hwservice_26_0 (hal_sensors_hwservice)) +(typeattributeset hal_telephony_hwservice_26_0 (hal_telephony_hwservice)) +(typeattributeset hal_thermal_hwservice_26_0 (hal_thermal_hwservice)) +(typeattributeset hal_tv_cec_hwservice_26_0 (hal_tv_cec_hwservice)) +(typeattributeset hal_tv_input_hwservice_26_0 (hal_tv_input_hwservice)) +(typeattributeset hal_usb_hwservice_26_0 (hal_usb_hwservice)) +(typeattributeset hal_vibrator_hwservice_26_0 (hal_vibrator_hwservice)) +(typeattributeset hal_vr_hwservice_26_0 (hal_vr_hwservice)) +(typeattributeset hal_weaver_hwservice_26_0 (hal_weaver_hwservice)) +(typeattributeset hal_wifi_hwservice_26_0 (hal_wifi_hwservice)) +(typeattributeset hal_wifi_supplicant_hwservice_26_0 (hal_wifi_supplicant_hwservice)) +(typeattributeset hardware_properties_service_26_0 (hardware_properties_service)) +(typeattributeset hardware_service_26_0 (hardware_service)) +(typeattributeset hci_attach_dev_26_0 (hci_attach_dev)) +(typeattributeset hdmi_control_service_26_0 (hdmi_control_service)) +(typeattributeset healthd_26_0 (healthd)) +(typeattributeset healthd_exec_26_0 (healthd_exec)) +(typeattributeset heapdump_data_file_26_0 (heapdump_data_file)) +(typeattributeset hidl_allocator_hwservice_26_0 (hidl_allocator_hwservice)) +(typeattributeset hidl_base_hwservice_26_0 (hidl_base_hwservice)) +(typeattributeset hidl_manager_hwservice_26_0 (hidl_manager_hwservice)) +(typeattributeset hidl_memory_hwservice_26_0 (hidl_memory_hwservice)) +(typeattributeset hidl_token_hwservice_26_0 (hidl_token_hwservice)) +(typeattributeset hwbinder_device_26_0 (hwbinder_device)) +(typeattributeset hw_random_device_26_0 (hw_random_device)) +(typeattributeset hwservice_contexts_file_26_0 (hwservice_contexts_file)) +(typeattributeset hwservicemanager_26_0 (hwservicemanager)) +(typeattributeset hwservicemanager_exec_26_0 (hwservicemanager_exec)) +(typeattributeset hwservicemanager_prop_26_0 (hwservicemanager_prop)) +(typeattributeset i2c_device_26_0 (i2c_device)) +(typeattributeset icon_file_26_0 (icon_file)) +(typeattributeset idmap_26_0 (idmap)) +(typeattributeset idmap_exec_26_0 (idmap_exec)) +(typeattributeset iio_device_26_0 (iio_device)) +(typeattributeset imms_service_26_0 (imms_service)) +(typeattributeset incident_26_0 (incident)) +(typeattributeset incidentd_26_0 (incidentd)) +(typeattributeset incident_data_file_26_0 (incident_data_file)) +(typeattributeset incident_service_26_0 (incident_service)) +(typeattributeset init_26_0 (init)) +(typeattributeset init_exec_26_0 (init_exec)) +(typeattributeset inotify_26_0 (inotify)) +(typeattributeset input_device_26_0 (input_device)) +(typeattributeset inputflinger_26_0 (inputflinger)) +(typeattributeset inputflinger_exec_26_0 (inputflinger_exec)) +(typeattributeset inputflinger_service_26_0 (inputflinger_service)) +(typeattributeset input_method_service_26_0 (input_method_service)) +(typeattributeset input_service_26_0 (input_service)) +(typeattributeset installd_26_0 (installd)) +(typeattributeset install_data_file_26_0 (install_data_file)) +(typeattributeset installd_exec_26_0 (installd_exec)) +(typeattributeset installd_service_26_0 (installd_service)) +(typeattributeset install_recovery_26_0 (install_recovery)) +(typeattributeset install_recovery_exec_26_0 (install_recovery_exec)) +(typeattributeset ion_device_26_0 (ion_device)) +(typeattributeset IProxyService_service_26_0 (IProxyService_service)) +(typeattributeset ipsec_service_26_0 (ipsec_service)) +(typeattributeset isolated_app_26_0 (isolated_app)) +(typeattributeset jobscheduler_service_26_0 (jobscheduler_service)) +(typeattributeset kernel_26_0 (kernel)) +(typeattributeset keychain_data_file_26_0 (keychain_data_file)) +(typeattributeset keychord_device_26_0 (keychord_device)) +(typeattributeset keystore_26_0 (keystore)) +(typeattributeset keystore_data_file_26_0 (keystore_data_file)) +(typeattributeset keystore_exec_26_0 (keystore_exec)) +(typeattributeset keystore_service_26_0 (keystore_service)) +(typeattributeset kmem_device_26_0 (kmem_device)) +(typeattributeset kmsg_device_26_0 (kmsg_device)) +(typeattributeset labeledfs_26_0 (labeledfs)) +(typeattributeset launcherapps_service_26_0 (launcherapps_service)) +(typeattributeset lmkd_26_0 (lmkd)) +(typeattributeset lmkd_exec_26_0 (lmkd_exec)) +(typeattributeset lmkd_socket_26_0 (lmkd_socket)) +(typeattributeset location_service_26_0 (location_service)) +(typeattributeset lock_settings_service_26_0 (lock_settings_service)) +(typeattributeset logcat_exec_26_0 (logcat_exec)) +(typeattributeset logd_26_0 (logd)) +(typeattributeset log_device_26_0 (log_device)) +(typeattributeset logd_exec_26_0 (logd_exec)) +(typeattributeset logd_prop_26_0 (logd_prop)) +(typeattributeset logdr_socket_26_0 (logdr_socket)) +(typeattributeset logd_socket_26_0 (logd_socket)) +(typeattributeset logdw_socket_26_0 (logdw_socket)) +(typeattributeset logpersist_26_0 (logpersist)) +(typeattributeset logpersistd_logging_prop_26_0 (logpersistd_logging_prop)) +(typeattributeset log_prop_26_0 (log_prop)) +(typeattributeset log_tag_prop_26_0 (log_tag_prop)) +(typeattributeset loop_control_device_26_0 (loop_control_device)) +(typeattributeset loop_device_26_0 (loop_device)) +(typeattributeset mac_perms_file_26_0 (mac_perms_file)) +(typeattributeset mdnsd_26_0 (mdnsd)) +(typeattributeset mdnsd_socket_26_0 (mdnsd_socket)) +(typeattributeset mdns_socket_26_0 (mdns_socket)) +(typeattributeset mediacasserver_service_26_0 (mediacasserver_service)) +(typeattributeset mediacodec_26_0 (mediacodec)) +(typeattributeset mediacodec_exec_26_0 (mediacodec_exec)) +(typeattributeset mediacodec_service_26_0 (mediacodec_service)) +(typeattributeset media_data_file_26_0 (media_data_file)) +(typeattributeset mediadrmserver_26_0 (mediadrmserver)) +(typeattributeset mediadrmserver_exec_26_0 (mediadrmserver_exec)) +(typeattributeset mediadrmserver_service_26_0 (mediadrmserver_service)) +(typeattributeset mediaextractor_26_0 (mediaextractor)) +(typeattributeset mediaextractor_exec_26_0 (mediaextractor_exec)) +(typeattributeset mediaextractor_service_26_0 (mediaextractor_service)) +(typeattributeset mediametrics_26_0 (mediametrics)) +(typeattributeset mediametrics_exec_26_0 (mediametrics_exec)) +(typeattributeset mediametrics_service_26_0 (mediametrics_service)) +(typeattributeset media_projection_service_26_0 (media_projection_service)) +(typeattributeset media_router_service_26_0 (media_router_service)) +(typeattributeset media_rw_data_file_26_0 (media_rw_data_file)) +(typeattributeset mediaserver_26_0 (mediaserver)) +(typeattributeset mediaserver_exec_26_0 (mediaserver_exec)) +(typeattributeset mediaserver_service_26_0 (mediaserver_service)) +(typeattributeset media_session_service_26_0 (media_session_service)) +(typeattributeset meminfo_service_26_0 (meminfo_service)) +(typeattributeset metadata_block_device_26_0 (metadata_block_device)) +(typeattributeset method_trace_data_file_26_0 (method_trace_data_file)) +(typeattributeset midi_service_26_0 (midi_service)) +(typeattributeset misc_block_device_26_0 (misc_block_device)) +(typeattributeset misc_logd_file_26_0 (misc_logd_file)) +(typeattributeset misc_user_data_file_26_0 (misc_user_data_file)) +(typeattributeset mmc_prop_26_0 (mmc_prop)) +(typeattributeset mnt_expand_file_26_0 (mnt_expand_file)) +(typeattributeset mnt_media_rw_file_26_0 (mnt_media_rw_file)) +(typeattributeset mnt_media_rw_stub_file_26_0 (mnt_media_rw_stub_file)) +(typeattributeset mnt_user_file_26_0 (mnt_user_file)) +(typeattributeset modprobe_26_0 (modprobe)) +(typeattributeset mount_service_26_0 (mount_service)) +(typeattributeset mqueue_26_0 (mqueue)) +(typeattributeset mtd_device_26_0 (mtd_device)) +(typeattributeset mtp_26_0 (mtp)) +(typeattributeset mtp_device_26_0 (mtp_device)) +(typeattributeset mtpd_socket_26_0 (mtpd_socket)) +(typeattributeset mtp_exec_26_0 (mtp_exec)) +(typeattributeset nativetest_data_file_26_0 (nativetest_data_file)) +(typeattributeset netd_26_0 (netd)) +(typeattributeset net_data_file_26_0 (net_data_file)) +(typeattributeset netd_exec_26_0 (netd_exec)) +(typeattributeset netd_listener_service_26_0 (netd_listener_service)) +(typeattributeset net_dns_prop_26_0 (net_dns_prop)) +(typeattributeset netd_service_26_0 (netd_service)) +(typeattributeset netd_socket_26_0 (netd_socket)) +(typeattributeset netif_26_0 (netif)) +(typeattributeset netpolicy_service_26_0 (netpolicy_service)) +(typeattributeset net_radio_prop_26_0 (net_radio_prop)) +(typeattributeset netstats_service_26_0 (netstats_service)) +(typeattributeset netutils_wrapper_26_0 (netutils_wrapper)) +(typeattributeset netutils_wrapper_exec_26_0 (netutils_wrapper_exec)) +(typeattributeset network_management_service_26_0 (network_management_service)) +(typeattributeset network_score_service_26_0 (network_score_service)) +(typeattributeset network_time_update_service_26_0 (network_time_update_service)) +(typeattributeset nfc_26_0 (nfc)) +(typeattributeset nfc_data_file_26_0 (nfc_data_file)) +(typeattributeset nfc_device_26_0 (nfc_device)) +(typeattributeset nfc_prop_26_0 (nfc_prop)) +(typeattributeset nfc_service_26_0 (nfc_service)) +(typeattributeset node_26_0 (node)) +(typeattributeset notification_service_26_0 (notification_service)) +(typeattributeset null_device_26_0 (null_device)) +(typeattributeset oemfs_26_0 (oemfs)) +(typeattributeset oem_lock_service_26_0 (oem_lock_service)) +(typeattributeset ota_data_file_26_0 (ota_data_file)) +(typeattributeset otadexopt_service_26_0 (otadexopt_service)) +(typeattributeset ota_package_file_26_0 (ota_package_file)) +(typeattributeset otapreopt_chroot_26_0 (otapreopt_chroot)) +(typeattributeset otapreopt_chroot_exec_26_0 (otapreopt_chroot_exec)) +(typeattributeset otapreopt_slot_26_0 (otapreopt_slot)) +(typeattributeset otapreopt_slot_exec_26_0 (otapreopt_slot_exec)) +(typeattributeset overlay_prop_26_0 (overlay_prop)) +(typeattributeset overlay_service_26_0 (overlay_service)) +(typeattributeset owntty_device_26_0 (owntty_device)) +(typeattributeset package_service_26_0 (package_service)) +(typeattributeset pan_result_prop_26_0 (pan_result_prop)) +(typeattributeset pdx_bufferhub_client_channel_socket_26_0 (pdx_bufferhub_client_channel_socket)) +(typeattributeset pdx_bufferhub_client_endpoint_socket_26_0 (pdx_bufferhub_client_endpoint_socket)) +(typeattributeset pdx_bufferhub_dir_26_0 (pdx_bufferhub_dir)) +(typeattributeset pdx_display_client_channel_socket_26_0 (pdx_display_client_channel_socket)) +(typeattributeset pdx_display_client_endpoint_socket_26_0 (pdx_display_client_endpoint_socket)) +(typeattributeset pdx_display_dir_26_0 (pdx_display_dir)) +(typeattributeset pdx_display_manager_channel_socket_26_0 (pdx_display_manager_channel_socket)) +(typeattributeset pdx_display_manager_endpoint_socket_26_0 (pdx_display_manager_endpoint_socket)) +(typeattributeset pdx_display_screenshot_channel_socket_26_0 (pdx_display_screenshot_channel_socket)) +(typeattributeset pdx_display_screenshot_endpoint_socket_26_0 (pdx_display_screenshot_endpoint_socket)) +(typeattributeset pdx_display_vsync_channel_socket_26_0 (pdx_display_vsync_channel_socket)) +(typeattributeset pdx_display_vsync_endpoint_socket_26_0 (pdx_display_vsync_endpoint_socket)) +(typeattributeset pdx_performance_client_channel_socket_26_0 (pdx_performance_client_channel_socket)) +(typeattributeset pdx_performance_client_endpoint_socket_26_0 (pdx_performance_client_endpoint_socket)) +(typeattributeset pdx_performance_dir_26_0 (pdx_performance_dir)) +(typeattributeset performanced_26_0 (performanced)) +(typeattributeset performanced_exec_26_0 (performanced_exec)) +(typeattributeset perfprofd_26_0 (perfprofd)) +(typeattributeset perfprofd_data_file_26_0 (perfprofd_data_file)) +(typeattributeset perfprofd_exec_26_0 (perfprofd_exec)) +(typeattributeset permission_service_26_0 (permission_service)) +(typeattributeset persist_debug_prop_26_0 (persist_debug_prop)) +(typeattributeset persistent_data_block_service_26_0 (persistent_data_block_service)) +(typeattributeset persistent_properties_ready_prop_26_0 (persistent_properties_ready_prop)) +(typeattributeset pinner_service_26_0 (pinner_service)) +(typeattributeset pipefs_26_0 (pipefs)) +(typeattributeset platform_app_26_0 (platform_app)) +(typeattributeset pmsg_device_26_0 (pmsg_device)) +(typeattributeset port_26_0 (port)) +(typeattributeset port_device_26_0 (port_device)) +(typeattributeset postinstall_26_0 (postinstall)) +(typeattributeset postinstall_dexopt_26_0 (postinstall_dexopt)) +(typeattributeset postinstall_file_26_0 (postinstall_file)) +(typeattributeset postinstall_mnt_dir_26_0 (postinstall_mnt_dir)) +(typeattributeset powerctl_prop_26_0 (powerctl_prop)) +(typeattributeset power_service_26_0 (power_service)) +(typeattributeset ppp_26_0 (ppp)) +(typeattributeset ppp_device_26_0 (ppp_device)) +(typeattributeset ppp_exec_26_0 (ppp_exec)) +(typeattributeset preloads_data_file_26_0 (preloads_data_file)) +(typeattributeset preloads_media_file_26_0 (preloads_media_file)) +(typeattributeset preopt2cachename_26_0 (preopt2cachename)) +(typeattributeset preopt2cachename_exec_26_0 (preopt2cachename_exec)) +(typeattributeset print_service_26_0 (print_service)) +(typeattributeset priv_app_26_0 (mediaprovider priv_app)) +(typeattributeset proc_26_0 (proc proc_uid_time_in_state)) +(typeattributeset proc_bluetooth_writable_26_0 (proc_bluetooth_writable)) +(typeattributeset proc_cpuinfo_26_0 (proc_cpuinfo)) +(typeattributeset proc_drop_caches_26_0 (proc_drop_caches)) +(typeattributeset processinfo_service_26_0 (processinfo_service)) +(typeattributeset proc_interrupts_26_0 (proc_interrupts)) +(typeattributeset proc_iomem_26_0 (proc_iomem)) +(typeattributeset proc_meminfo_26_0 (proc_meminfo)) +(typeattributeset proc_misc_26_0 (proc_misc)) +(typeattributeset proc_modules_26_0 (proc_modules)) +(typeattributeset proc_net_26_0 (proc_net)) +(typeattributeset proc_overcommit_memory_26_0 (proc_overcommit_memory)) +(typeattributeset proc_perf_26_0 (proc_perf)) +(typeattributeset proc_security_26_0 (proc_security)) +(typeattributeset proc_stat_26_0 (proc_stat)) +(typeattributeset procstats_service_26_0 (procstats_service)) +(typeattributeset proc_sysrq_26_0 (proc_sysrq)) +(typeattributeset proc_timer_26_0 (proc_timer)) +(typeattributeset proc_tty_drivers_26_0 (proc_tty_drivers)) +(typeattributeset proc_uid_cputime_removeuid_26_0 (proc_uid_cputime_removeuid)) +(typeattributeset proc_uid_cputime_showstat_26_0 (proc_uid_cputime_showstat)) +(typeattributeset proc_uid_io_stats_26_0 (proc_uid_io_stats)) +(typeattributeset proc_uid_procstat_set_26_0 (proc_uid_procstat_set)) +(typeattributeset proc_zoneinfo_26_0 (proc_zoneinfo)) +(typeattributeset profman_26_0 (profman)) +(typeattributeset profman_dump_data_file_26_0 (profman_dump_data_file)) +(typeattributeset profman_exec_26_0 (profman_exec)) +(typeattributeset properties_device_26_0 (properties_device)) +(typeattributeset properties_serial_26_0 (properties_serial)) +(typeattributeset property_contexts_file_26_0 (property_contexts_file)) +(typeattributeset property_data_file_26_0 (property_data_file)) +(typeattributeset property_socket_26_0 (property_socket)) +(typeattributeset pstorefs_26_0 (pstorefs)) +(typeattributeset ptmx_device_26_0 (ptmx_device)) +(typeattributeset qtaguid_device_26_0 (qtaguid_device)) +(typeattributeset qtaguid_proc_26_0 (qtaguid_proc)) +(typeattributeset racoon_26_0 (racoon)) +(typeattributeset racoon_exec_26_0 (racoon_exec)) +(typeattributeset racoon_socket_26_0 (racoon_socket)) +(typeattributeset radio_26_0 (radio)) +(typeattributeset radio_data_file_26_0 (radio_data_file)) +(typeattributeset radio_device_26_0 (radio_device)) +(typeattributeset radio_prop_26_0 (radio_prop)) +(typeattributeset radio_service_26_0 (radio_service)) +(typeattributeset ram_device_26_0 (ram_device)) +(typeattributeset random_device_26_0 (random_device)) +(typeattributeset reboot_data_file_26_0 (reboot_data_file)) +(typeattributeset recovery_26_0 (recovery)) +(typeattributeset recovery_block_device_26_0 (recovery_block_device)) +(typeattributeset recovery_data_file_26_0 (recovery_data_file)) +(typeattributeset recovery_persist_26_0 (recovery_persist)) +(typeattributeset recovery_persist_exec_26_0 (recovery_persist_exec)) +(typeattributeset recovery_refresh_26_0 (recovery_refresh)) +(typeattributeset recovery_refresh_exec_26_0 (recovery_refresh_exec)) +(typeattributeset recovery_service_26_0 (recovery_service)) +(typeattributeset registry_service_26_0 (registry_service)) +(typeattributeset resourcecache_data_file_26_0 (resourcecache_data_file)) +(typeattributeset restorecon_prop_26_0 (restorecon_prop)) +(typeattributeset restrictions_service_26_0 (restrictions_service)) +(typeattributeset rild_26_0 (rild)) +(typeattributeset rild_debug_socket_26_0 (rild_debug_socket)) +(typeattributeset rild_socket_26_0 (rild_socket)) +(typeattributeset ringtone_file_26_0 (ringtone_file)) +(typeattributeset root_block_device_26_0 (root_block_device)) +(typeattributeset rootfs_26_0 (rootfs)) +(typeattributeset rpmsg_device_26_0 (rpmsg_device)) +(typeattributeset rtc_device_26_0 (rtc_device)) +(typeattributeset rttmanager_service_26_0 (rttmanager_service)) +(typeattributeset runas_26_0 (runas)) +(typeattributeset runas_exec_26_0 (runas_exec)) +(typeattributeset runtime_event_log_tags_file_26_0 (runtime_event_log_tags_file)) +(typeattributeset safemode_prop_26_0 (safemode_prop)) +(typeattributeset same_process_hal_file_26_0 (same_process_hal_file)) +(typeattributeset samplingprofiler_service_26_0 (samplingprofiler_service)) +(typeattributeset scheduling_policy_service_26_0 (scheduling_policy_service)) +(typeattributeset sdcardd_26_0 (sdcardd)) +(typeattributeset sdcardd_exec_26_0 (sdcardd_exec)) +(typeattributeset sdcardfs_26_0 (sdcardfs)) +(typeattributeset seapp_contexts_file_26_0 (seapp_contexts_file)) +(typeattributeset search_service_26_0 (search_service)) +(typeattributeset sec_key_att_app_id_provider_service_26_0 (sec_key_att_app_id_provider_service)) +(typeattributeset selinuxfs_26_0 (selinuxfs)) +(typeattributeset sensors_device_26_0 (sensors_device)) +(typeattributeset sensorservice_service_26_0 (sensorservice_service)) +(typeattributeset sepolicy_file_26_0 (sepolicy_file)) +(typeattributeset serial_device_26_0 (serial_device)) +(typeattributeset serialno_prop_26_0 (serialno_prop)) +(typeattributeset serial_service_26_0 (serial_service)) +(typeattributeset service_contexts_file_26_0 (service_contexts_file nonplat_service_contexts_file)) +(typeattributeset servicediscovery_service_26_0 (servicediscovery_service)) +(typeattributeset servicemanager_26_0 (servicemanager)) +(typeattributeset servicemanager_exec_26_0 (servicemanager_exec)) +(typeattributeset settings_service_26_0 (settings_service)) +(typeattributeset sgdisk_26_0 (sgdisk)) +(typeattributeset sgdisk_exec_26_0 (sgdisk_exec)) +(typeattributeset shared_relro_26_0 (shared_relro)) +(typeattributeset shared_relro_file_26_0 (shared_relro_file)) +(typeattributeset shell_26_0 (shell)) +(typeattributeset shell_data_file_26_0 (shell_data_file)) +(typeattributeset shell_exec_26_0 (shell_exec)) +(typeattributeset shell_prop_26_0 (shell_prop)) +(typeattributeset shm_26_0 (shm)) +(typeattributeset shortcut_manager_icons_26_0 (shortcut_manager_icons)) +(typeattributeset shortcut_service_26_0 (shortcut_service)) +(typeattributeset slideshow_26_0 (slideshow)) +(typeattributeset socket_device_26_0 (socket_device)) +(typeattributeset sockfs_26_0 (sockfs)) +(typeattributeset statusbar_service_26_0 (statusbar_service)) +(typeattributeset storaged_service_26_0 (storaged_service)) +(typeattributeset storage_file_26_0 (storage_file)) +(typeattributeset storagestats_service_26_0 (storagestats_service)) +(typeattributeset storage_stub_file_26_0 (storage_stub_file)) +(typeattributeset su_26_0 (su)) +(typeattributeset su_exec_26_0 (su_exec)) +(typeattributeset surfaceflinger_26_0 (surfaceflinger)) +(typeattributeset surfaceflinger_service_26_0 (surfaceflinger_service)) +(typeattributeset swap_block_device_26_0 (swap_block_device)) +(typeattributeset sysfs_26_0 (sysfs)) +(typeattributeset sysfs_batteryinfo_26_0 (sysfs_batteryinfo)) +(typeattributeset sysfs_bluetooth_writable_26_0 (sysfs_bluetooth_writable)) +(typeattributeset sysfs_devices_system_cpu_26_0 (sysfs_devices_system_cpu)) +(typeattributeset sysfs_hwrandom_26_0 (sysfs_hwrandom)) +(typeattributeset sysfs_leds_26_0 (sysfs_leds)) +(typeattributeset sysfs_lowmemorykiller_26_0 (sysfs_lowmemorykiller)) +(typeattributeset sysfs_mac_address_26_0 (sysfs_mac_address)) +(typeattributeset sysfs_nfc_power_writable_26_0 (sysfs_nfc_power_writable)) +(typeattributeset sysfs_thermal_26_0 (sysfs_thermal)) +(typeattributeset sysfs_uio_26_0 (sysfs_uio)) +(typeattributeset sysfs_usb_26_0 (sysfs_usb)) +(typeattributeset sysfs_vibrator_26_0 (sysfs_vibrator)) +(typeattributeset sysfs_wake_lock_26_0 (sysfs_wake_lock)) +(typeattributeset sysfs_wlan_fwpath_26_0 (sysfs_wlan_fwpath)) +(typeattributeset sysfs_zram_26_0 (sysfs_zram)) +(typeattributeset sysfs_zram_uevent_26_0 (sysfs_zram_uevent)) +(typeattributeset system_app_26_0 (system_app)) +(typeattributeset system_app_data_file_26_0 (system_app_data_file)) +(typeattributeset system_app_service_26_0 (system_app_service)) +(typeattributeset system_block_device_26_0 (system_block_device)) +(typeattributeset system_data_file_26_0 (system_data_file)) +(typeattributeset system_file_26_0 (system_file)) +(typeattributeset systemkeys_data_file_26_0 (systemkeys_data_file)) +(typeattributeset system_ndebug_socket_26_0 (system_ndebug_socket)) +(typeattributeset system_prop_26_0 (system_prop)) +(typeattributeset system_radio_prop_26_0 (system_radio_prop)) +(typeattributeset system_server_26_0 (system_server)) +(typeattributeset system_wifi_keystore_hwservice_26_0 (system_wifi_keystore_hwservice)) +(typeattributeset system_wpa_socket_26_0 (system_wpa_socket)) +(typeattributeset task_service_26_0 (task_service)) +(typeattributeset tee_26_0 (tee)) +(typeattributeset tee_data_file_26_0 (tee_data_file)) +(typeattributeset tee_device_26_0 (tee_device)) +(typeattributeset telecom_service_26_0 (telecom_service)) +(typeattributeset textclassification_service_26_0 (textclassification_service)) +(typeattributeset textclassifier_data_file_26_0 (textclassifier_data_file)) +(typeattributeset textservices_service_26_0 (textservices_service)) +(typeattributeset tmpfs_26_0 (tmpfs)) +(typeattributeset tombstoned_26_0 (tombstoned)) +(typeattributeset tombstone_data_file_26_0 (tombstone_data_file)) +(typeattributeset tombstoned_crash_socket_26_0 (tombstoned_crash_socket)) +(typeattributeset tombstoned_exec_26_0 (tombstoned_exec)) +(typeattributeset tombstoned_intercept_socket_26_0 (tombstoned_intercept_socket)) +(typeattributeset toolbox_26_0 (toolbox)) +(typeattributeset toolbox_exec_26_0 (toolbox_exec)) +(typeattributeset tracing_shell_writable_26_0 (debugfs_tracing tracing_shell_writable)) +(typeattributeset tracing_shell_writable_debug_26_0 (debugfs_tracing_debug tracing_shell_writable_debug)) +(typeattributeset trust_service_26_0 (trust_service)) +(typeattributeset tty_device_26_0 (tty_device)) +(typeattributeset tun_device_26_0 (tun_device)) +(typeattributeset tv_input_service_26_0 (tv_input_service)) +(typeattributeset tzdatacheck_26_0 (tzdatacheck)) +(typeattributeset tzdatacheck_exec_26_0 (tzdatacheck_exec)) +(typeattributeset ueventd_26_0 (ueventd)) +(typeattributeset uhid_device_26_0 (uhid_device)) +(typeattributeset uimode_service_26_0 (uimode_service)) +(typeattributeset uio_device_26_0 (uio_device)) +(typeattributeset uncrypt_26_0 (uncrypt)) +(typeattributeset uncrypt_exec_26_0 (uncrypt_exec)) +(typeattributeset uncrypt_socket_26_0 (uncrypt_socket)) +(typeattributeset unencrypted_data_file_26_0 (unencrypted_data_file)) +(typeattributeset unlabeled_26_0 (unlabeled)) +(typeattributeset untrusted_app_25_26_0 (untrusted_app_25)) +(typeattributeset untrusted_app_26_0 (untrusted_app)) +(typeattributeset untrusted_v2_app_26_0 (untrusted_v2_app)) +(typeattributeset update_engine_26_0 (update_engine)) +(typeattributeset update_engine_data_file_26_0 (update_engine_data_file)) +(typeattributeset update_engine_exec_26_0 (update_engine_exec)) +(typeattributeset update_engine_service_26_0 (update_engine_service)) +(typeattributeset updatelock_service_26_0 (updatelock_service)) +(typeattributeset update_verifier_26_0 (update_verifier)) +(typeattributeset update_verifier_exec_26_0 (update_verifier_exec)) +(typeattributeset usagestats_service_26_0 (usagestats_service)) +(typeattributeset usbaccessory_device_26_0 (usbaccessory_device)) +(typeattributeset usb_device_26_0 (usb_device)) +(typeattributeset usbfs_26_0 (usbfs)) +(typeattributeset usb_service_26_0 (usb_service)) +(typeattributeset userdata_block_device_26_0 (userdata_block_device)) +(typeattributeset usermodehelper_26_0 (sysfs_usermodehelper usermodehelper)) +(typeattributeset user_profile_data_file_26_0 (user_profile_data_file)) +(typeattributeset user_service_26_0 (user_service)) +(typeattributeset vcs_device_26_0 (vcs_device)) +(typeattributeset vdc_26_0 (vdc)) +(typeattributeset vdc_exec_26_0 (vdc_exec)) +(typeattributeset vendor_app_file_26_0 (vendor_app_file)) +(typeattributeset vendor_configs_file_26_0 (vendor_configs_file)) +(typeattributeset vendor_file_26_0 (vendor_file)) +(typeattributeset vendor_framework_file_26_0 (vendor_framework_file)) +(typeattributeset vendor_hal_file_26_0 (vendor_hal_file)) +(typeattributeset vendor_overlay_file_26_0 (vendor_overlay_file)) +(typeattributeset vendor_shell_exec_26_0 (vendor_shell_exec)) +(typeattributeset vendor_toolbox_exec_26_0 (vendor_toolbox_exec)) +(typeattributeset vfat_26_0 (vfat)) +(typeattributeset vibrator_service_26_0 (vibrator_service)) +(typeattributeset video_device_26_0 (video_device)) +(typeattributeset virtual_touchpad_26_0 (virtual_touchpad)) +(typeattributeset virtual_touchpad_exec_26_0 (virtual_touchpad_exec)) +(typeattributeset virtual_touchpad_service_26_0 (virtual_touchpad_service)) +(typeattributeset vndbinder_device_26_0 (vndbinder_device)) +(typeattributeset vndk_sp_file_26_0 (vndk_sp_file)) +(typeattributeset vndservice_contexts_file_26_0 (vndservice_contexts_file)) +(typeattributeset vndservicemanager_26_0 (vndservicemanager)) +(typeattributeset voiceinteraction_service_26_0 (voiceinteraction_service)) +(typeattributeset vold_26_0 (vold)) +(typeattributeset vold_data_file_26_0 (vold_data_file)) +(typeattributeset vold_device_26_0 (vold_device)) +(typeattributeset vold_exec_26_0 (vold_exec)) +(typeattributeset vold_prop_26_0 (vold_prop)) +(typeattributeset vold_socket_26_0 (vold_socket)) +(typeattributeset vpn_data_file_26_0 (vpn_data_file)) +(typeattributeset vr_hwc_26_0 (vr_hwc)) +(typeattributeset vr_hwc_exec_26_0 (vr_hwc_exec)) +(typeattributeset vr_hwc_service_26_0 (vr_hwc_service)) +(typeattributeset vr_manager_service_26_0 (vr_manager_service)) +(typeattributeset wallpaper_file_26_0 (wallpaper_file)) +(typeattributeset wallpaper_service_26_0 (wallpaper_service)) +(typeattributeset watchdogd_26_0 (watchdogd)) +(typeattributeset watchdog_device_26_0 (watchdog_device)) +(typeattributeset webviewupdate_service_26_0 (webviewupdate_service)) +(typeattributeset webview_zygote_26_0 (webview_zygote)) +(typeattributeset webview_zygote_exec_26_0 (webview_zygote_exec)) +(typeattributeset webview_zygote_socket_26_0 (webview_zygote_socket)) +(typeattributeset wifiaware_service_26_0 (wifiaware_service)) +(typeattributeset wificond_26_0 (wificond)) +(typeattributeset wificond_exec_26_0 (wificond_exec)) +(typeattributeset wificond_service_26_0 (wificond_service)) +(typeattributeset wifi_data_file_26_0 (wifi_data_file)) +(typeattributeset wifi_log_prop_26_0 (wifi_log_prop)) +(typeattributeset wifip2p_service_26_0 (wifip2p_service)) +(typeattributeset wifi_prop_26_0 (wifi_prop)) +(typeattributeset wifiscanner_service_26_0 (wifiscanner_service)) +(typeattributeset wifi_service_26_0 (wifi_service)) +(typeattributeset window_service_26_0 (window_service)) +(typeattributeset wpa_socket_26_0 (wpa_socket)) +(typeattributeset zero_device_26_0 (zero_device)) +(typeattributeset zoneinfo_data_file_26_0 (zoneinfo_data_file)) +(typeattributeset zygote_26_0 (zygote)) +(typeattributeset zygote_exec_26_0 (zygote_exec)) +(typeattributeset zygote_socket_26_0 (zygote_socket)) diff --git a/system/etc/selinux/mapping/27.0.cil b/system/etc/selinux/mapping/27.0.cil new file mode 100644 index 0000000000000000000000000000000000000000..ff119a019a42790144b45b04b4671dfadad08708 --- /dev/null +++ b/system/etc/selinux/mapping/27.0.cil @@ -0,0 +1,1560 @@ +(typeattributeset mediadrmserver_service_27_0 (mediadrmserver_service)) +(expandtypeattribute (mediadrmserver_service_27_0) true) +(typeattributeset recovery_refresh_27_0 (recovery_refresh)) +(expandtypeattribute (recovery_refresh_27_0) true) +(typeattributeset pdx_display_dir_27_0 (pdx_display_dir)) +(expandtypeattribute (pdx_display_dir_27_0) true) +(typeattributeset processinfo_service_27_0 (processinfo_service)) +(expandtypeattribute (processinfo_service_27_0) true) +(typeattributeset vdc_27_0 (vdc)) +(expandtypeattribute (vdc_27_0) true) +(typeattributeset mediadrmserver_exec_27_0 (mediadrmserver_exec)) +(expandtypeattribute (mediadrmserver_exec_27_0) true) +(typeattributeset serial_service_27_0 (serial_service)) +(expandtypeattribute (serial_service_27_0) true) +(typeattributeset system_ndebug_socket_27_0 (system_ndebug_socket)) +(expandtypeattribute (system_ndebug_socket_27_0) true) +(typeattributeset fingerprint_service_27_0 (fingerprint_service)) +(expandtypeattribute (fingerprint_service_27_0) true) +(typeattributeset hal_fingerprint_service_27_0 (hal_fingerprint_service)) +(expandtypeattribute (hal_fingerprint_service_27_0) true) +(typeattributeset recovery_block_device_27_0 (recovery_block_device)) +(expandtypeattribute (recovery_block_device_27_0) true) +(typeattributeset drmserver_27_0 (drmserver)) +(expandtypeattribute (drmserver_27_0) true) +(typeattributeset vr_hwc_service_27_0 (vr_hwc_service)) +(expandtypeattribute (vr_hwc_service_27_0) true) +(typeattributeset hal_sensors_hwservice_27_0 (hal_sensors_hwservice)) +(expandtypeattribute (hal_sensors_hwservice_27_0) true) +(typeattributeset audiohal_data_file_27_0 (audiohal_data_file)) +(expandtypeattribute (audiohal_data_file_27_0) true) +(typeattributeset wifi_service_27_0 (wifi_service)) +(expandtypeattribute (wifi_service_27_0) true) +(typeattributeset guiext-server_service_27_0 (guiext-server_service)) +(expandtypeattribute (guiext-server_service_27_0) true) +(typeattributeset system_prop_27_0 (system_prop)) +(expandtypeattribute (system_prop_27_0) true) +(typeattributeset vfat_27_0 (vfat)) +(expandtypeattribute (vfat_27_0) true) +(typeattributeset pdx_bufferhub_client_endpoint_socket_27_0 (pdx_bufferhub_client_endpoint_socket)) +(expandtypeattribute (pdx_bufferhub_client_endpoint_socket_27_0) true) +(typeattributeset keystore_exec_27_0 (keystore_exec)) +(expandtypeattribute (keystore_exec_27_0) true) +(typeattributeset netpolicy_service_27_0 (netpolicy_service)) +(expandtypeattribute (netpolicy_service_27_0) true) +(typeattributeset vtservice_service_27_0 (vtservice_service)) +(expandtypeattribute (vtservice_service_27_0) true) +(typeattributeset video_device_27_0 (video_device)) +(expandtypeattribute (video_device_27_0) true) +(typeattributeset serialno_prop_27_0 (serialno_prop)) +(expandtypeattribute (serialno_prop_27_0) true) +(typeattributeset midi_service_27_0 (midi_service)) +(expandtypeattribute (midi_service_27_0) true) +(typeattributeset persistent_properties_ready_prop_27_0 (persistent_properties_ready_prop)) +(expandtypeattribute (persistent_properties_ready_prop_27_0) true) +(typeattributeset file_contexts_file_27_0 (file_contexts_file)) +(expandtypeattribute (file_contexts_file_27_0) true) +(typeattributeset tzdatacheck_27_0 (tzdatacheck)) +(expandtypeattribute (tzdatacheck_27_0) true) +(typeattributeset property_contexts_file_27_0 (property_contexts_file)) +(expandtypeattribute (property_contexts_file_27_0) true) +(typeattributeset firstboot_prop_27_0 (firstboot_prop)) +(expandtypeattribute (firstboot_prop_27_0) true) +(typeattributeset pan_result_prop_27_0 (pan_result_prop)) +(expandtypeattribute (pan_result_prop_27_0) true) +(typeattributeset ctl_rildaemon_prop_27_0 (ctl_rildaemon_prop)) +(expandtypeattribute (ctl_rildaemon_prop_27_0) true) +(typeattributeset bluetooth_logs_data_file_27_0 (bluetooth_logs_data_file)) +(expandtypeattribute (bluetooth_logs_data_file_27_0) true) +(typeattributeset hal_light_hwservice_27_0 (hal_light_hwservice)) +(expandtypeattribute (hal_light_hwservice_27_0) true) +(typeattributeset print_service_27_0 (print_service)) +(expandtypeattribute (print_service_27_0) true) +(typeattributeset same_process_hal_file_27_0 (same_process_hal_file)) +(expandtypeattribute (same_process_hal_file_27_0) true) +(typeattributeset hal_vibrator_hwservice_27_0 (hal_vibrator_hwservice)) +(expandtypeattribute (hal_vibrator_hwservice_27_0) true) +(typeattributeset location_service_27_0 (location_service)) +(expandtypeattribute (location_service_27_0) true) +(typeattributeset mediaprovider_27_0 (mediaprovider)) +(expandtypeattribute (mediaprovider_27_0) true) +(typeattributeset mtk_telecom_service_27_0 (mtk_telecom_service)) +(expandtypeattribute (mtk_telecom_service_27_0) true) +(typeattributeset device_policy_service_27_0 (device_policy_service)) +(expandtypeattribute (device_policy_service_27_0) true) +(typeattributeset preopt2cachename_27_0 (preopt2cachename)) +(expandtypeattribute (preopt2cachename_27_0) true) +(typeattributeset autofill_service_27_0 (autofill_service)) +(expandtypeattribute (autofill_service_27_0) true) +(typeattributeset debugfs_27_0 (debugfs)) +(expandtypeattribute (debugfs_27_0) true) +(typeattributeset configfs_27_0 (configfs)) +(expandtypeattribute (configfs_27_0) true) +(typeattributeset config_prop_27_0 (config_prop)) +(expandtypeattribute (config_prop_27_0) true) +(typeattributeset charger_27_0 (charger)) +(expandtypeattribute (charger_27_0) true) +(typeattributeset mdlogger_27_0 (mdlogger)) +(expandtypeattribute (mdlogger_27_0) true) +(typeattributeset system_block_device_27_0 (system_block_device)) +(expandtypeattribute (system_block_device_27_0) true) +(typeattributeset postinstall_27_0 (postinstall)) +(expandtypeattribute (postinstall_27_0) true) +(typeattributeset updatelock_service_27_0 (updatelock_service)) +(expandtypeattribute (updatelock_service_27_0) true) +(typeattributeset apk_data_file_27_0 (apk_data_file)) +(expandtypeattribute (apk_data_file_27_0) true) +(typeattributeset hidl_base_hwservice_27_0 (hidl_base_hwservice)) +(expandtypeattribute (hidl_base_hwservice_27_0) true) +(typeattributeset system_app_27_0 (system_app)) +(expandtypeattribute (system_app_27_0) true) +(typeattributeset emdlogger_27_0 (emdlogger)) +(expandtypeattribute (emdlogger_27_0) true) +(typeattributeset hidl_manager_hwservice_27_0 (hidl_manager_hwservice)) +(expandtypeattribute (hidl_manager_hwservice_27_0) true) +(typeattributeset hidl_memory_hwservice_27_0 (hidl_memory_hwservice)) +(expandtypeattribute (hidl_memory_hwservice_27_0) true) +(typeattributeset preloads_media_file_27_0 (preloads_media_file)) +(expandtypeattribute (preloads_media_file_27_0) true) +(typeattributeset surfaceflinger_27_0 (surfaceflinger)) +(expandtypeattribute (surfaceflinger_27_0) true) +(typeattributeset pdx_display_screenshot_channel_socket_27_0 (pdx_display_screenshot_channel_socket)) +(expandtypeattribute (pdx_display_screenshot_channel_socket_27_0) true) +(typeattributeset debugfs_tracing_instances_27_0 (debugfs_tracing_instances)) +(expandtypeattribute (debugfs_tracing_instances_27_0) true) +(typeattributeset hal_contexthub_hwservice_27_0 (hal_contexthub_hwservice)) +(expandtypeattribute (hal_contexthub_hwservice_27_0) true) +(typeattributeset proc_zoneinfo_27_0 (proc_zoneinfo)) +(expandtypeattribute (proc_zoneinfo_27_0) true) +(typeattributeset proc_tty_drivers_27_0 (proc_tty_drivers)) +(expandtypeattribute (proc_tty_drivers_27_0) true) +(typeattributeset sec_key_att_app_id_provider_service_27_0 (sec_key_att_app_id_provider_service)) +(expandtypeattribute (sec_key_att_app_id_provider_service_27_0) true) +(typeattributeset activity_service_27_0 (activity_service)) +(expandtypeattribute (activity_service_27_0) true) +(typeattributeset mediaextractor_exec_27_0 (mediaextractor_exec)) +(expandtypeattribute (mediaextractor_exec_27_0) true) +(typeattributeset tombstoned_java_trace_socket_27_0 (tombstoned_java_trace_socket)) +(expandtypeattribute (tombstoned_java_trace_socket_27_0) true) +(typeattributeset watchdog_device_27_0 (watchdog_device)) +(expandtypeattribute (watchdog_device_27_0) true) +(typeattributeset fuelgauged_static_27_0 (fuelgauged_static)) +(expandtypeattribute (fuelgauged_static_27_0) true) +(typeattributeset graphics_device_27_0 (graphics_device)) +(expandtypeattribute (graphics_device_27_0) true) +(typeattributeset method_trace_data_file_27_0 (method_trace_data_file)) +(expandtypeattribute (method_trace_data_file_27_0) true) +(typeattributeset vndservicemanager_27_0 (vndservicemanager)) +(expandtypeattribute (vndservicemanager_27_0) true) +(typeattributeset apk_private_data_file_27_0 (apk_private_data_file)) +(expandtypeattribute (apk_private_data_file_27_0) true) +(typeattributeset hwservicemanager_27_0 (hwservicemanager)) +(expandtypeattribute (hwservicemanager_27_0) true) +(typeattributeset keychord_device_27_0 (keychord_device)) +(expandtypeattribute (keychord_device_27_0) true) +(typeattributeset hal_graphics_composer_hwservice_27_0 (hal_graphics_composer_hwservice)) +(expandtypeattribute (hal_graphics_composer_hwservice_27_0) true) +(typeattributeset servicemanager_27_0 (servicemanager)) +(expandtypeattribute (servicemanager_27_0) true) +(typeattributeset ashmem_device_27_0 (ashmem_device)) +(expandtypeattribute (ashmem_device_27_0) true) +(typeattributeset virtual_touchpad_27_0 (virtual_touchpad)) +(expandtypeattribute (virtual_touchpad_27_0) true) +(typeattributeset hal_telephony_hwservice_27_0 (hal_telephony_hwservice)) +(expandtypeattribute (hal_telephony_hwservice_27_0) true) +(typeattributeset fingerprint_prop_27_0 (fingerprint_prop)) +(expandtypeattribute (fingerprint_prop_27_0) true) +(typeattributeset proc_stat_27_0 (proc_stat)) +(expandtypeattribute (proc_stat_27_0) true) +(typeattributeset rootfs_27_0 (rootfs)) +(expandtypeattribute (rootfs_27_0) true) +(typeattributeset sdcardfs_27_0 (sdcardfs)) +(expandtypeattribute (sdcardfs_27_0) true) +(typeattributeset netd_27_0 (netd)) +(expandtypeattribute (netd_27_0) true) +(typeattributeset pre_meta_27_0 (pre_meta)) +(expandtypeattribute (pre_meta_27_0) true) +(typeattributeset sysfs_usb_27_0 (sysfs_usb)) +(expandtypeattribute (sysfs_usb_27_0) true) +(typeattributeset vtservice_hidl_service_27_0 (vtservice_hidl_service)) +(expandtypeattribute (vtservice_hidl_service_27_0) true) +(typeattributeset proc_perf_27_0 (proc_perf)) +(expandtypeattribute (proc_perf_27_0) true) +(typeattributeset mqueue_27_0 (mqueue)) +(expandtypeattribute (mqueue_27_0) true) +(typeattributeset tee_27_0 (tee)) +(expandtypeattribute (tee_27_0) true) +(typeattributeset media_session_service_27_0 (media_session_service)) +(expandtypeattribute (media_session_service_27_0) true) +(typeattributeset adbd_27_0 (adbd)) +(expandtypeattribute (adbd_27_0) true) +(typeattributeset sysfs_fs_ext4_features_27_0 (sysfs_fs_ext4_features)) +(expandtypeattribute (sysfs_fs_ext4_features_27_0) true) +(typeattributeset textclassifier_data_file_27_0 (textclassifier_data_file)) +(expandtypeattribute (textclassifier_data_file_27_0) true) +(typeattributeset untrusted_v2_app_27_0 (untrusted_v2_app)) +(expandtypeattribute (untrusted_v2_app_27_0) true) +(typeattributeset fuse_27_0 (fuse)) +(expandtypeattribute (fuse_27_0) true) +(typeattributeset recovery_27_0 (recovery)) +(expandtypeattribute (recovery_27_0) true) +(typeattributeset bootstat_27_0 (bootstat)) +(expandtypeattribute (bootstat_27_0) true) +(typeattributeset labeledfs_27_0 (labeledfs)) +(expandtypeattribute (labeledfs_27_0) true) +(typeattributeset pdx_bufferhub_dir_27_0 (pdx_bufferhub_dir)) +(expandtypeattribute (pdx_bufferhub_dir_27_0) true) +(typeattributeset usermodehelper_27_0 (usermodehelper)) +(expandtypeattribute (usermodehelper_27_0) true) +(typeattributeset mediaextractor_service_27_0 (mediaextractor_service)) +(expandtypeattribute (mediaextractor_service_27_0) true) +(typeattributeset debug_prop_27_0 (debug_prop)) +(expandtypeattribute (debug_prop_27_0) true) +(typeattributeset hal_omx_hwservice_27_0 (hal_omx_hwservice)) +(expandtypeattribute (hal_omx_hwservice_27_0) true) +(typeattributeset update_engine_service_27_0 (update_engine_service)) +(expandtypeattribute (update_engine_service_27_0) true) +(typeattributeset hdmi_27_0 (hdmi)) +(expandtypeattribute (hdmi_27_0) true) +(typeattributeset lock_settings_service_27_0 (lock_settings_service)) +(expandtypeattribute (lock_settings_service_27_0) true) +(typeattributeset cameraproxy_service_27_0 (cameraproxy_service)) +(expandtypeattribute (cameraproxy_service_27_0) true) +(typeattributeset audio_prop_27_0 (audio_prop)) +(expandtypeattribute (audio_prop_27_0) true) +(typeattributeset healthd_27_0 (healthd)) +(expandtypeattribute (healthd_27_0) true) +(typeattributeset keychain_data_file_27_0 (keychain_data_file)) +(expandtypeattribute (keychain_data_file_27_0) true) +(typeattributeset kmem_device_27_0 (kmem_device)) +(expandtypeattribute (kmem_device_27_0) true) +(typeattributeset kmsg_device_27_0 (kmsg_device)) +(expandtypeattribute (kmsg_device_27_0) true) +(typeattributeset netif_27_0 (netif)) +(expandtypeattribute (netif_27_0) true) +(typeattributeset mtk_duraspeed_service_27_0 (mtk_duraspeed_service)) +(expandtypeattribute (mtk_duraspeed_service_27_0) true) +(typeattributeset webview_zygote_exec_27_0 (webview_zygote_exec)) +(expandtypeattribute (webview_zygote_exec_27_0) true) +(typeattributeset hal_tetheroffload_hwservice_27_0 (hal_tetheroffload_hwservice)) +(expandtypeattribute (hal_tetheroffload_hwservice_27_0) true) +(typeattributeset zoneinfo_data_file_27_0 (zoneinfo_data_file)) +(expandtypeattribute (zoneinfo_data_file_27_0) true) +(typeattributeset met_log_d_27_0 (met_log_d)) +(expandtypeattribute (met_log_d_27_0) true) +(typeattributeset radio_27_0 (radio)) +(expandtypeattribute (radio_27_0) true) +(typeattributeset pipefs_27_0 (pipefs)) +(expandtypeattribute (pipefs_27_0) true) +(typeattributeset pstorefs_27_0 (pstorefs)) +(expandtypeattribute (pstorefs_27_0) true) +(typeattributeset dm_agent_binder_27_0 (dm_agent_binder)) +(expandtypeattribute (dm_agent_binder_27_0) true) +(typeattributeset mtk_advcamserver_27_0 (mtk_advcamserver)) +(expandtypeattribute (mtk_advcamserver_27_0) true) +(typeattributeset proc_sysrq_27_0 (proc_sysrq)) +(expandtypeattribute (proc_sysrq_27_0) true) +(typeattributeset audiocmdservice_atci_27_0 (audiocmdservice_atci)) +(expandtypeattribute (audiocmdservice_atci_27_0) true) +(typeattributeset gatekeeperd_27_0 (gatekeeperd)) +(expandtypeattribute (gatekeeperd_27_0) true) +(typeattributeset consumer_ir_service_27_0 (consumer_ir_service)) +(expandtypeattribute (consumer_ir_service_27_0) true) +(typeattributeset aee_aedv_27_0 (aee_aedv)) +(expandtypeattribute (aee_aedv_27_0) true) +(typeattributeset sysfs_zram_27_0 (sysfs_zram)) +(expandtypeattribute (sysfs_zram_27_0) true) +(typeattributeset wifi_data_file_27_0 (wifi_data_file)) +(expandtypeattribute (wifi_data_file_27_0) true) +(typeattributeset mediametrics_service_27_0 (mediametrics_service)) +(expandtypeattribute (mediametrics_service_27_0) true) +(typeattributeset meta_tst_27_0 (meta_tst)) +(expandtypeattribute (meta_tst_27_0) true) +(typeattributeset assetatlas_service_27_0 (assetatlas_service)) +(expandtypeattribute (assetatlas_service_27_0) true) +(typeattributeset backup_service_27_0 (backup_service)) +(expandtypeattribute (backup_service_27_0) true) +(typeattributeset pdx_display_manager_channel_socket_27_0 (pdx_display_manager_channel_socket)) +(expandtypeattribute (pdx_display_manager_channel_socket_27_0) true) +(typeattributeset zero_device_27_0 (zero_device)) +(expandtypeattribute (zero_device_27_0) true) +(typeattributeset hwservice_contexts_file_27_0 (hwservice_contexts_file)) +(expandtypeattribute (hwservice_contexts_file_27_0) true) +(typeattributeset service_contexts_file_27_0 (service_contexts_file)) +(expandtypeattribute (service_contexts_file_27_0) true) +(typeattributeset sysfs_uio_27_0 (sysfs_uio)) +(expandtypeattribute (sysfs_uio_27_0) true) +(typeattributeset preopt2cachename_exec_27_0 (preopt2cachename_exec)) +(expandtypeattribute (preopt2cachename_exec_27_0) true) +(typeattributeset vndservice_contexts_file_27_0 (vndservice_contexts_file)) +(expandtypeattribute (vndservice_contexts_file_27_0) true) +(typeattributeset incident_27_0 (incident)) +(expandtypeattribute (incident_27_0) true) +(typeattributeset cache_block_device_27_0 (cache_block_device)) +(expandtypeattribute (cache_block_device_27_0) true) +(typeattributeset crash_dump_exec_27_0 (crash_dump_exec)) +(expandtypeattribute (crash_dump_exec_27_0) true) +(typeattributeset shell_27_0 (shell)) +(expandtypeattribute (shell_27_0) true) +(typeattributeset network_time_update_service_27_0 (network_time_update_service)) +(expandtypeattribute (network_time_update_service_27_0) true) +(typeattributeset seapp_contexts_file_27_0 (seapp_contexts_file)) +(expandtypeattribute (seapp_contexts_file_27_0) true) +(typeattributeset textclassification_service_27_0 (textclassification_service)) +(expandtypeattribute (textclassification_service_27_0) true) +(typeattributeset blkid_untrusted_27_0 (blkid_untrusted)) +(expandtypeattribute (blkid_untrusted_27_0) true) +(typeattributeset dumpstate_prop_27_0 (dumpstate_prop)) +(expandtypeattribute (dumpstate_prop_27_0) true) +(typeattributeset zygote_exec_27_0 (zygote_exec)) +(expandtypeattribute (zygote_exec_27_0) true) +(typeattributeset cppreopt_prop_27_0 (cppreopt_prop)) +(expandtypeattribute (cppreopt_prop_27_0) true) +(typeattributeset radio_prop_27_0 (radio_prop)) +(expandtypeattribute (radio_prop_27_0) true) +(typeattributeset postinstall_mnt_dir_27_0 (postinstall_mnt_dir)) +(expandtypeattribute (postinstall_mnt_dir_27_0) true) +(typeattributeset misc_user_data_file_27_0 (misc_user_data_file)) +(expandtypeattribute (misc_user_data_file_27_0) true) +(typeattributeset debugfs_wifi_tracing_27_0 (debugfs_wifi_tracing)) +(expandtypeattribute (debugfs_wifi_tracing_27_0) true) +(typeattributeset shell_prop_27_0 (shell_prop)) +(expandtypeattribute (shell_prop_27_0) true) +(typeattributeset ppl_agent_27_0 (ppl_agent)) +(expandtypeattribute (ppl_agent_27_0) true) +(typeattributeset isolated_app_27_0 (isolated_app)) +(expandtypeattribute (isolated_app_27_0) true) +(typeattributeset sysfs_vibrator_27_0 (sysfs_vibrator)) +(expandtypeattribute (sysfs_vibrator_27_0) true) +(typeattributeset network_management_service_27_0 (network_management_service)) +(expandtypeattribute (network_management_service_27_0) true) +(typeattributeset sysfs_hwrandom_27_0 (sysfs_hwrandom)) +(expandtypeattribute (sysfs_hwrandom_27_0) true) +(typeattributeset system_server_27_0 (system_server)) +(expandtypeattribute (system_server_27_0) true) +(typeattributeset device_identifiers_service_27_0 (device_identifiers_service)) +(expandtypeattribute (device_identifiers_service_27_0) true) +(typeattributeset network_score_service_27_0 (network_score_service)) +(expandtypeattribute (network_score_service_27_0) true) +(typeattributeset em_svr_27_0 (em_svr)) +(expandtypeattribute (em_svr_27_0) true) +(typeattributeset e2fs_27_0 (e2fs)) +(expandtypeattribute (e2fs_27_0) true) +(typeattributeset usbfs_27_0 (usbfs)) +(expandtypeattribute (usbfs_27_0) true) +(typeattributeset system_wifi_keystore_hwservice_27_0 (system_wifi_keystore_hwservice)) +(expandtypeattribute (system_wifi_keystore_hwservice_27_0) true) +(typeattributeset sdcardd_27_0 (sdcardd)) +(expandtypeattribute (sdcardd_27_0) true) +(typeattributeset thermal_service_27_0 (thermal_service)) +(expandtypeattribute (thermal_service_27_0) true) +(typeattributeset md_monitor_27_0 (md_monitor)) +(expandtypeattribute (md_monitor_27_0) true) +(typeattributeset logdr_socket_27_0 (logdr_socket)) +(expandtypeattribute (logdr_socket_27_0) true) +(typeattributeset logdw_socket_27_0 (logdw_socket)) +(expandtypeattribute (logdw_socket_27_0) true) +(typeattributeset vpn_data_file_27_0 (vpn_data_file)) +(expandtypeattribute (vpn_data_file_27_0) true) +(typeattributeset dalvikcache_data_file_27_0 (dalvikcache_data_file)) +(expandtypeattribute (dalvikcache_data_file_27_0) true) +(typeattributeset mediaserver_service_27_0 (mediaserver_service)) +(expandtypeattribute (mediaserver_service_27_0) true) +(typeattributeset property_data_file_27_0 (property_data_file)) +(expandtypeattribute (property_data_file_27_0) true) +(typeattributeset wifi_log_prop_27_0 (wifi_log_prop)) +(expandtypeattribute (wifi_log_prop_27_0) true) +(typeattributeset accessibility_service_27_0 (accessibility_service)) +(expandtypeattribute (accessibility_service_27_0) true) +(typeattributeset camera_device_27_0 (camera_device)) +(expandtypeattribute (camera_device_27_0) true) +(typeattributeset recovery_data_file_27_0 (recovery_data_file)) +(expandtypeattribute (recovery_data_file_27_0) true) +(typeattributeset system_app_data_file_27_0 (system_app_data_file)) +(expandtypeattribute (system_app_data_file_27_0) true) +(typeattributeset sysfs_leds_27_0 (sysfs_leds)) +(expandtypeattribute (sysfs_leds_27_0) true) +(typeattributeset mediacodec_27_0 (mediacodec)) +(expandtypeattribute (mediacodec_27_0) true) +(typeattributeset restrictions_service_27_0 (restrictions_service)) +(expandtypeattribute (restrictions_service_27_0) true) +(typeattributeset ffs_prop_27_0 (ffs_prop)) +(expandtypeattribute (ffs_prop_27_0) true) +(typeattributeset log_prop_27_0 (log_prop)) +(expandtypeattribute (log_prop_27_0) true) +(typeattributeset mmc_prop_27_0 (mmc_prop)) +(expandtypeattribute (mmc_prop_27_0) true) +(typeattributeset nfc_prop_27_0 (nfc_prop)) +(expandtypeattribute (nfc_prop_27_0) true) +(typeattributeset toolbox_27_0 (toolbox)) +(expandtypeattribute (toolbox_27_0) true) +(typeattributeset IProxyService_service_27_0 (IProxyService_service)) +(expandtypeattribute (IProxyService_service_27_0) true) +(typeattributeset mnt_media_rw_stub_file_27_0 (mnt_media_rw_stub_file)) +(expandtypeattribute (mnt_media_rw_stub_file_27_0) true) +(typeattributeset proc_27_0 (proc)) +(expandtypeattribute (proc_27_0) true) +(typeattributeset bluetooth_socket_27_0 (bluetooth_socket)) +(expandtypeattribute (bluetooth_socket_27_0) true) +(typeattributeset logcat_exec_27_0 (logcat_exec)) +(expandtypeattribute (logcat_exec_27_0) true) +(typeattributeset inputflinger_exec_27_0 (inputflinger_exec)) +(expandtypeattribute (inputflinger_exec_27_0) true) +(typeattributeset overlay_prop_27_0 (overlay_prop)) +(expandtypeattribute (overlay_prop_27_0) true) +(typeattributeset hal_wifi_offload_hwservice_27_0 (hal_wifi_offload_hwservice)) +(expandtypeattribute (hal_wifi_offload_hwservice_27_0) true) +(typeattributeset safemode_prop_27_0 (safemode_prop)) +(expandtypeattribute (safemode_prop_27_0) true) +(typeattributeset wallpaper_file_27_0 (wallpaper_file)) +(expandtypeattribute (wallpaper_file_27_0) true) +(typeattributeset shortcut_manager_icons_27_0 (shortcut_manager_icons)) +(expandtypeattribute (shortcut_manager_icons_27_0) true) +(typeattributeset hal_neuralnetworks_hwservice_27_0 (hal_neuralnetworks_hwservice)) +(expandtypeattribute (hal_neuralnetworks_hwservice_27_0) true) +(typeattributeset dhcp_prop_27_0 (dhcp_prop)) +(expandtypeattribute (dhcp_prop_27_0) true) +(typeattributeset gps_control_27_0 (gps_control)) +(expandtypeattribute (gps_control_27_0) true) +(typeattributeset logd_prop_27_0 (logd_prop)) +(expandtypeattribute (logd_prop_27_0) true) +(typeattributeset dumpstate_options_prop_27_0 (dumpstate_options_prop)) +(expandtypeattribute (dumpstate_options_prop_27_0) true) +(typeattributeset vold_prop_27_0 (vold_prop)) +(expandtypeattribute (vold_prop_27_0) true) +(typeattributeset wifi_prop_27_0 (wifi_prop)) +(expandtypeattribute (wifi_prop_27_0) true) +(typeattributeset imms_service_27_0 (imms_service)) +(expandtypeattribute (imms_service_27_0) true) +(typeattributeset netd_socket_27_0 (netd_socket)) +(expandtypeattribute (netd_socket_27_0) true) +(typeattributeset sensorcal_27_0 (sensorcal)) +(expandtypeattribute (sensorcal_27_0) true) +(typeattributeset sysfs_27_0 (sysfs)) +(expandtypeattribute (sysfs_27_0) true) +(typeattributeset default_android_service_27_0 (default_android_service)) +(expandtypeattribute (default_android_service_27_0) true) +(typeattributeset bufferhubd_27_0 (bufferhubd)) +(expandtypeattribute (bufferhubd_27_0) true) +(typeattributeset thermalserviced_exec_27_0 (thermalserviced_exec)) +(expandtypeattribute (thermalserviced_exec_27_0) true) +(typeattributeset sysfs_devices_system_cpu_27_0 (sysfs_devices_system_cpu)) +(expandtypeattribute (sysfs_devices_system_cpu_27_0) true) +(typeattributeset mtk_power_hal_mgr_service_27_0 (mtk_power_hal_mgr_service)) +(expandtypeattribute (mtk_power_hal_mgr_service_27_0) true) +(typeattributeset untrusted_app_27_0 (untrusted_app)) +(expandtypeattribute (untrusted_app_27_0) true) +(typeattributeset thermalindicator_27_0 (thermalindicator)) +(expandtypeattribute (thermalindicator_27_0) true) +(typeattributeset shared_relro_27_0 (shared_relro)) +(expandtypeattribute (shared_relro_27_0) true) +(typeattributeset hal_wifi_hwservice_27_0 (hal_wifi_hwservice)) +(expandtypeattribute (hal_wifi_hwservice_27_0) true) +(typeattributeset alarm_device_27_0 (alarm_device)) +(expandtypeattribute (alarm_device_27_0) true) +(typeattributeset hal_graphics_mapper_hwservice_27_0 (hal_graphics_mapper_hwservice)) +(expandtypeattribute (hal_graphics_mapper_hwservice_27_0) true) +(typeattributeset audio_data_file_27_0 (audio_data_file)) +(expandtypeattribute (audio_data_file_27_0) true) +(typeattributeset radio_data_file_27_0 (radio_data_file)) +(expandtypeattribute (radio_data_file_27_0) true) +(typeattributeset display_service_27_0 (display_service)) +(expandtypeattribute (display_service_27_0) true) +(typeattributeset overlay_service_27_0 (overlay_service)) +(expandtypeattribute (overlay_service_27_0) true) +(typeattributeset hal_wifi_supplicant_hwservice_27_0 (hal_wifi_supplicant_hwservice)) +(expandtypeattribute (hal_wifi_supplicant_hwservice_27_0) true) +(typeattributeset performanced_exec_27_0 (performanced_exec)) +(expandtypeattribute (performanced_exec_27_0) true) +(typeattributeset hal_health_hwservice_27_0 (hal_health_hwservice)) +(expandtypeattribute (hal_health_hwservice_27_0) true) +(typeattributeset system_wpa_socket_27_0 (system_wpa_socket)) +(expandtypeattribute (system_wpa_socket_27_0) true) +(typeattributeset fsck_27_0 (fsck)) +(expandtypeattribute (fsck_27_0) true) +(typeattributeset netd_listener_service_27_0 (netd_listener_service)) +(expandtypeattribute (netd_listener_service_27_0) true) +(typeattributeset app_fusefs_27_0 (app_fusefs)) +(expandtypeattribute (app_fusefs_27_0) true) +(typeattributeset proc_overcommit_memory_27_0 (proc_overcommit_memory)) +(expandtypeattribute (proc_overcommit_memory_27_0) true) +(typeattributeset ctl_dumpstate_prop_27_0 (ctl_dumpstate_prop)) +(expandtypeattribute (ctl_dumpstate_prop_27_0) true) +(typeattributeset fpspolicy-server_service_27_0 (fpspolicy-server_service)) +(expandtypeattribute (fpspolicy-server_service_27_0) true) +(typeattributeset connmetrics_service_27_0 (connmetrics_service)) +(expandtypeattribute (connmetrics_service_27_0) true) +(typeattributeset proc_uid_cputime_removeuid_27_0 (proc_uid_cputime_removeuid)) +(expandtypeattribute (proc_uid_cputime_removeuid_27_0) true) +(typeattributeset boot_block_device_27_0 (boot_block_device)) +(expandtypeattribute (boot_block_device_27_0) true) +(typeattributeset powerctl_prop_27_0 (powerctl_prop)) +(expandtypeattribute (powerctl_prop_27_0) true) +(typeattributeset misc_block_device_27_0 (misc_block_device)) +(expandtypeattribute (misc_block_device_27_0) true) +(typeattributeset root_block_device_27_0 (root_block_device)) +(expandtypeattribute (root_block_device_27_0) true) +(typeattributeset swap_block_device_27_0 (swap_block_device)) +(expandtypeattribute (swap_block_device_27_0) true) +(typeattributeset block_device_27_0 (block_device)) +(expandtypeattribute (block_device_27_0) true) +(typeattributeset kb_block_device_27_0 (kb_block_device)) +(expandtypeattribute (kb_block_device_27_0) true) +(typeattributeset dkb_block_device_27_0 (dkb_block_device)) +(expandtypeattribute (dkb_block_device_27_0) true) +(typeattributeset frp_block_device_27_0 (frp_block_device)) +(expandtypeattribute (frp_block_device_27_0) true) +(typeattributeset loop_device_27_0 (loop_device)) +(expandtypeattribute (loop_device_27_0) true) +(typeattributeset nvram_agent_service_27_0 (nvram_agent_service)) +(expandtypeattribute (nvram_agent_service_27_0) true) +(typeattributeset dnsproxyd_socket_27_0 (dnsproxyd_socket)) +(expandtypeattribute (dnsproxyd_socket_27_0) true) +(typeattributeset crash_dump_27_0 (crash_dump)) +(expandtypeattribute (crash_dump_27_0) true) +(typeattributeset hal_keymaster_hwservice_27_0 (hal_keymaster_hwservice)) +(expandtypeattribute (hal_keymaster_hwservice_27_0) true) +(typeattributeset shm_27_0 (shm)) +(expandtypeattribute (shm_27_0) true) +(typeattributeset installd_service_27_0 (installd_service)) +(expandtypeattribute (installd_service_27_0) true) +(typeattributeset atcid_27_0 (atcid)) +(expandtypeattribute (atcid_27_0) true) +(typeattributeset proc_uid_cputime_showstat_27_0 (proc_uid_cputime_showstat)) +(expandtypeattribute (proc_uid_cputime_showstat_27_0) true) +(typeattributeset bootstat_exec_27_0 (bootstat_exec)) +(expandtypeattribute (bootstat_exec_27_0) true) +(typeattributeset mdns_socket_27_0 (mdns_socket)) +(expandtypeattribute (mdns_socket_27_0) true) +(typeattributeset oem_lock_service_27_0 (oem_lock_service)) +(expandtypeattribute (oem_lock_service_27_0) true) +(typeattributeset audioserver_27_0 (audioserver)) +(expandtypeattribute (audioserver_27_0) true) +(typeattributeset tmpfs_27_0 (tmpfs)) +(expandtypeattribute (tmpfs_27_0) true) +(typeattributeset bootanim_exec_27_0 (bootanim_exec)) +(expandtypeattribute (bootanim_exec_27_0) true) +(typeattributeset vendor_configs_file_27_0 (vendor_configs_file)) +(expandtypeattribute (vendor_configs_file_27_0) true) +(typeattributeset vendor_shell_exec_27_0 (vendor_shell_exec)) +(expandtypeattribute (vendor_shell_exec_27_0) true) +(typeattributeset program_binary_27_0 (program_binary)) +(expandtypeattribute (program_binary_27_0) true) +(typeattributeset hwservicemanager_prop_27_0 (hwservicemanager_prop)) +(expandtypeattribute (hwservicemanager_prop_27_0) true) +(typeattributeset clatd_27_0 (clatd)) +(expandtypeattribute (clatd_27_0) true) +(typeattributeset input_device_27_0 (input_device)) +(expandtypeattribute (input_device_27_0) true) +(typeattributeset DockObserver_service_27_0 (DockObserver_service)) +(expandtypeattribute (DockObserver_service_27_0) true) +(typeattributeset shell_data_file_27_0 (shell_data_file)) +(expandtypeattribute (shell_data_file_27_0) true) +(typeattributeset bluetooth_manager_service_27_0 (bluetooth_manager_service)) +(expandtypeattribute (bluetooth_manager_service_27_0) true) +(typeattributeset contexthub_service_27_0 (contexthub_service)) +(expandtypeattribute (contexthub_service_27_0) true) +(typeattributeset dnsmasq_27_0 (dnsmasq)) +(expandtypeattribute (dnsmasq_27_0) true) +(typeattributeset dumpstate_27_0 (dumpstate)) +(expandtypeattribute (dumpstate_27_0) true) +(typeattributeset cmddumper_27_0 (cmddumper)) +(expandtypeattribute (cmddumper_27_0) true) +(typeattributeset mtk_mobile_service_27_0 (mtk_mobile_service)) +(expandtypeattribute (mtk_mobile_service_27_0) true) +(typeattributeset install_data_file_27_0 (install_data_file)) +(expandtypeattribute (install_data_file_27_0) true) +(typeattributeset asec_image_file_27_0 (asec_image_file)) +(expandtypeattribute (asec_image_file_27_0) true) +(typeattributeset hardware_properties_service_27_0 (hardware_properties_service)) +(expandtypeattribute (hardware_properties_service_27_0) true) +(typeattributeset owntty_device_27_0 (owntty_device)) +(expandtypeattribute (owntty_device_27_0) true) +(typeattributeset null_device_27_0 (null_device)) +(expandtypeattribute (null_device_27_0) true) +(typeattributeset uimode_service_27_0 (uimode_service)) +(expandtypeattribute (uimode_service_27_0) true) +(typeattributeset uncrypt_exec_27_0 (uncrypt_exec)) +(expandtypeattribute (uncrypt_exec_27_0) true) +(typeattributeset priv_app_27_0 (priv_app)) +(expandtypeattribute (priv_app_27_0) true) +(typeattributeset hal_bluetooth_hwservice_27_0 (hal_bluetooth_hwservice)) +(expandtypeattribute (hal_bluetooth_hwservice_27_0) true) +(typeattributeset wifiscanner_service_27_0 (wifiscanner_service)) +(expandtypeattribute (wifiscanner_service_27_0) true) +(typeattributeset audio_timer_device_27_0 (audio_timer_device)) +(expandtypeattribute (audio_timer_device_27_0) true) +(typeattributeset bluetooth_data_file_27_0 (bluetooth_data_file)) +(expandtypeattribute (bluetooth_data_file_27_0) true) +(typeattributeset loop_control_device_27_0 (loop_control_device)) +(expandtypeattribute (loop_control_device_27_0) true) +(typeattributeset pdx_display_client_endpoint_socket_27_0 (pdx_display_client_endpoint_socket)) +(expandtypeattribute (pdx_display_client_endpoint_socket_27_0) true) +(typeattributeset net_dns_prop_27_0 (net_dns_prop)) +(expandtypeattribute (net_dns_prop_27_0) true) +(typeattributeset fingerprintd_27_0 (fingerprintd)) +(expandtypeattribute (fingerprintd_27_0) true) +(typeattributeset bluetooth_prop_27_0 (bluetooth_prop)) +(expandtypeattribute (bluetooth_prop_27_0) true) +(typeattributeset hal_power_hwservice_27_0 (hal_power_hwservice)) +(expandtypeattribute (hal_power_hwservice_27_0) true) +(typeattributeset hal_fingerprint_hwservice_27_0 (hal_fingerprint_hwservice)) +(expandtypeattribute (hal_fingerprint_hwservice_27_0) true) +(typeattributeset font_service_27_0 (font_service)) +(expandtypeattribute (font_service_27_0) true) +(typeattributeset timezone_service_27_0 (timezone_service)) +(expandtypeattribute (timezone_service_27_0) true) +(typeattributeset wificond_service_27_0 (wificond_service)) +(expandtypeattribute (wificond_service_27_0) true) +(typeattributeset postinstall_file_27_0 (postinstall_file)) +(expandtypeattribute (postinstall_file_27_0) true) +(typeattributeset qtaguid_proc_27_0 (qtaguid_proc)) +(expandtypeattribute (qtaguid_proc_27_0) true) +(typeattributeset ctl_bugreport_prop_27_0 (ctl_bugreport_prop)) +(expandtypeattribute (ctl_bugreport_prop_27_0) true) +(typeattributeset mtk_data_shaping_service_27_0 (mtk_data_shaping_service)) +(expandtypeattribute (mtk_data_shaping_service_27_0) true) +(typeattributeset hal_tv_input_hwservice_27_0 (hal_tv_input_hwservice)) +(expandtypeattribute (hal_tv_input_hwservice_27_0) true) +(typeattributeset mtk_search_engine_service_27_0 (mtk_search_engine_service)) +(expandtypeattribute (mtk_search_engine_service_27_0) true) +(typeattributeset dalvik_prop_27_0 (dalvik_prop)) +(expandtypeattribute (dalvik_prop_27_0) true) +(typeattributeset inputflinger_service_27_0 (inputflinger_service)) +(expandtypeattribute (inputflinger_service_27_0) true) +(typeattributeset audio_seq_device_27_0 (audio_seq_device)) +(expandtypeattribute (audio_seq_device_27_0) true) +(typeattributeset mtk_anrmanager_service_27_0 (mtk_anrmanager_service)) +(expandtypeattribute (mtk_anrmanager_service_27_0) true) +(typeattributeset mtpd_socket_27_0 (mtpd_socket)) +(expandtypeattribute (mtpd_socket_27_0) true) +(typeattributeset keystore_service_27_0 (keystore_service)) +(expandtypeattribute (keystore_service_27_0) true) +(typeattributeset bluetooth_service_27_0 (bluetooth_service)) +(expandtypeattribute (bluetooth_service_27_0) true) +(typeattributeset appops_service_27_0 (appops_service)) +(expandtypeattribute (appops_service_27_0) true) +(typeattributeset system_data_file_27_0 (system_data_file)) +(expandtypeattribute (system_data_file_27_0) true) +(typeattributeset devpts_27_0 (devpts)) +(expandtypeattribute (devpts_27_0) true) +(typeattributeset aee_aed_27_0 (aee_aed)) +(expandtypeattribute (aee_aed_27_0) true) +(typeattributeset drm_data_file_27_0 (drm_data_file)) +(expandtypeattribute (drm_data_file_27_0) true) +(typeattributeset hal_broadcastradio_hwservice_27_0 (hal_broadcastradio_hwservice)) +(expandtypeattribute (hal_broadcastradio_hwservice_27_0) true) +(typeattributeset system_net_netd_hwservice_27_0 (system_net_netd_hwservice)) +(expandtypeattribute (system_net_netd_hwservice_27_0) true) +(typeattributeset su_27_0 (su)) +(expandtypeattribute (su_27_0) true) +(typeattributeset otadexopt_service_27_0 (otadexopt_service)) +(expandtypeattribute (otadexopt_service_27_0) true) +(typeattributeset proc_security_27_0 (proc_security)) +(expandtypeattribute (proc_security_27_0) true) +(typeattributeset nfc_service_27_0 (nfc_service)) +(expandtypeattribute (nfc_service_27_0) true) +(typeattributeset settings_service_27_0 (settings_service)) +(expandtypeattribute (settings_service_27_0) true) +(typeattributeset cppreopts_27_0 (cppreopts)) +(expandtypeattribute (cppreopts_27_0) true) +(typeattributeset debugfs_tracing_debug_27_0 (debugfs_tracing_debug)) +(expandtypeattribute (debugfs_tracing_debug_27_0) true) +(typeattributeset cpuinfo_service_27_0 (cpuinfo_service)) +(expandtypeattribute (cpuinfo_service_27_0) true) +(typeattributeset dbinfo_service_27_0 (dbinfo_service)) +(expandtypeattribute (dbinfo_service_27_0) true) +(typeattributeset gfxinfo_service_27_0 (gfxinfo_service)) +(expandtypeattribute (gfxinfo_service_27_0) true) +(typeattributeset meminfo_service_27_0 (meminfo_service)) +(expandtypeattribute (meminfo_service_27_0) true) +(typeattributeset dnsmasq_exec_27_0 (dnsmasq_exec)) +(expandtypeattribute (dnsmasq_exec_27_0) true) +(typeattributeset ppp_27_0 (ppp)) +(expandtypeattribute (ppp_27_0) true) +(typeattributeset vndbinder_device_27_0 (vndbinder_device)) +(expandtypeattribute (vndbinder_device_27_0) true) +(typeattributeset ethernet_service_27_0 (ethernet_service)) +(expandtypeattribute (ethernet_service_27_0) true) +(typeattributeset pinner_service_27_0 (pinner_service)) +(expandtypeattribute (pinner_service_27_0) true) +(typeattributeset performanced_27_0 (performanced)) +(expandtypeattribute (performanced_27_0) true) +(typeattributeset systemkeys_data_file_27_0 (systemkeys_data_file)) +(expandtypeattribute (systemkeys_data_file_27_0) true) +(typeattributeset binder_device_27_0 (binder_device)) +(expandtypeattribute (binder_device_27_0) true) +(typeattributeset hwbinder_device_27_0 (hwbinder_device)) +(expandtypeattribute (hwbinder_device_27_0) true) +(typeattributeset hw_random_device_27_0 (hw_random_device)) +(expandtypeattribute (hw_random_device_27_0) true) +(typeattributeset random_device_27_0 (random_device)) +(expandtypeattribute (random_device_27_0) true) +(typeattributeset ctl_default_prop_27_0 (ctl_default_prop)) +(expandtypeattribute (ctl_default_prop_27_0) true) +(typeattributeset mtk_msg_monitor_service_27_0 (mtk_msg_monitor_service)) +(expandtypeattribute (mtk_msg_monitor_service_27_0) true) +(typeattributeset userdata_block_device_27_0 (userdata_block_device)) +(expandtypeattribute (userdata_block_device_27_0) true) +(typeattributeset default_prop_27_0 (default_prop)) +(expandtypeattribute (default_prop_27_0) true) +(typeattributeset vndk_sp_file_27_0 (vndk_sp_file)) +(expandtypeattribute (vndk_sp_file_27_0) true) +(typeattributeset cameraserver_27_0 (cameraserver)) +(expandtypeattribute (cameraserver_27_0) true) +(typeattributeset otapreopt_slot_exec_27_0 (otapreopt_slot_exec)) +(expandtypeattribute (otapreopt_slot_exec_27_0) true) +(typeattributeset debuggerd_prop_27_0 (debuggerd_prop)) +(expandtypeattribute (debuggerd_prop_27_0) true) +(typeattributeset vendor_toolbox_exec_27_0 (vendor_toolbox_exec)) +(expandtypeattribute (vendor_toolbox_exec_27_0) true) +(typeattributeset shared_relro_file_27_0 (shared_relro_file)) +(expandtypeattribute (shared_relro_file_27_0) true) +(typeattributeset lmkd_socket_27_0 (lmkd_socket)) +(expandtypeattribute (lmkd_socket_27_0) true) +(typeattributeset thermald_27_0 (thermald)) +(expandtypeattribute (thermald_27_0) true) +(typeattributeset hal_drm_hwservice_27_0 (hal_drm_hwservice)) +(expandtypeattribute (hal_drm_hwservice_27_0) true) +(typeattributeset ringtone_file_27_0 (ringtone_file)) +(expandtypeattribute (ringtone_file_27_0) true) +(typeattributeset toolbox_exec_27_0 (toolbox_exec)) +(expandtypeattribute (toolbox_exec_27_0) true) +(typeattributeset mtk_appdetection_service_27_0 (mtk_appdetection_service)) +(expandtypeattribute (mtk_appdetection_service_27_0) true) +(typeattributeset mtk_fullscreen_switch_service_27_0 (mtk_fullscreen_switch_service)) +(expandtypeattribute (mtk_fullscreen_switch_service_27_0) true) +(typeattributeset permission_service_27_0 (permission_service)) +(expandtypeattribute (permission_service_27_0) true) +(typeattributeset metadata_block_device_27_0 (metadata_block_device)) +(expandtypeattribute (metadata_block_device_27_0) true) +(typeattributeset kpoc_charger_27_0 (kpoc_charger)) +(expandtypeattribute (kpoc_charger_27_0) true) +(typeattributeset logd_socket_27_0 (logd_socket)) +(expandtypeattribute (logd_socket_27_0) true) +(typeattributeset mtkbootanimation_27_0 (mtkbootanimation)) +(expandtypeattribute (mtkbootanimation_27_0) true) +(typeattributeset mac_perms_file_27_0 (mac_perms_file)) +(expandtypeattribute (mac_perms_file_27_0) true) +(typeattributeset vendor_app_file_27_0 (vendor_app_file)) +(expandtypeattribute (vendor_app_file_27_0) true) +(typeattributeset vendor_hal_file_27_0 (vendor_hal_file)) +(expandtypeattribute (vendor_hal_file_27_0) true) +(typeattributeset sysfs_wlan_fwpath_27_0 (sysfs_wlan_fwpath)) +(expandtypeattribute (sysfs_wlan_fwpath_27_0) true) +(typeattributeset nfc_27_0 (nfc)) +(expandtypeattribute (nfc_27_0) true) +(typeattributeset default_android_vndservice_27_0 (default_android_vndservice)) +(expandtypeattribute (default_android_vndservice_27_0) true) +(typeattributeset rtc_device_27_0 (rtc_device)) +(expandtypeattribute (rtc_device_27_0) true) +(typeattributeset ram_device_27_0 (ram_device)) +(expandtypeattribute (ram_device_27_0) true) +(typeattributeset perfprofd_data_file_27_0 (perfprofd_data_file)) +(expandtypeattribute (perfprofd_data_file_27_0) true) +(typeattributeset nativetest_data_file_27_0 (nativetest_data_file)) +(expandtypeattribute (nativetest_data_file_27_0) true) +(typeattributeset country_detector_service_27_0 (country_detector_service)) +(expandtypeattribute (country_detector_service_27_0) true) +(typeattributeset cgroup_27_0 (cgroup)) +(expandtypeattribute (cgroup_27_0) true) +(typeattributeset drmserver_socket_27_0 (drmserver_socket)) +(expandtypeattribute (drmserver_socket_27_0) true) +(typeattributeset ppp_device_27_0 (ppp_device)) +(expandtypeattribute (ppp_device_27_0) true) +(typeattributeset proc_net_27_0 (proc_net)) +(expandtypeattribute (proc_net_27_0) true) +(typeattributeset zygote_27_0 (zygote)) +(expandtypeattribute (zygote_27_0) true) +(typeattributeset untrusted_app_25_27_0 (untrusted_app_25)) +(expandtypeattribute (untrusted_app_25_27_0) true) +(typeattributeset adb_data_file_27_0 (adb_data_file)) +(expandtypeattribute (adb_data_file_27_0) true) +(typeattributeset anr_data_file_27_0 (anr_data_file)) +(expandtypeattribute (anr_data_file_27_0) true) +(typeattributeset adb_keys_file_27_0 (adb_keys_file)) +(expandtypeattribute (adb_keys_file_27_0) true) +(typeattributeset GoogleOtaBinder_27_0 (GoogleOtaBinder)) +(expandtypeattribute (GoogleOtaBinder_27_0) true) +(typeattributeset kernel_27_0 (kernel)) +(expandtypeattribute (kernel_27_0) true) +(typeattributeset servicediscovery_service_27_0 (servicediscovery_service)) +(expandtypeattribute (servicediscovery_service_27_0) true) +(typeattributeset coverage_service_27_0 (coverage_service)) +(expandtypeattribute (coverage_service_27_0) true) +(typeattributeset keystore_27_0 (keystore)) +(expandtypeattribute (keystore_27_0) true) +(typeattributeset package_service_27_0 (package_service)) +(expandtypeattribute (package_service_27_0) true) +(typeattributeset ephemeral_app_27_0 (ephemeral_app)) +(expandtypeattribute (ephemeral_app_27_0) true) +(typeattributeset bluetooth_27_0 (bluetooth)) +(expandtypeattribute (bluetooth_27_0) true) +(typeattributeset inputflinger_27_0 (inputflinger)) +(expandtypeattribute (inputflinger_27_0) true) +(typeattributeset vcs_device_27_0 (vcs_device)) +(expandtypeattribute (vcs_device_27_0) true) +(typeattributeset hal_oemlock_hwservice_27_0 (hal_oemlock_hwservice)) +(expandtypeattribute (hal_oemlock_hwservice_27_0) true) +(typeattributeset port_27_0 (port)) +(expandtypeattribute (port_27_0) true) +(typeattributeset factory_27_0 (factory)) +(expandtypeattribute (factory_27_0) true) +(typeattributeset virtual_touchpad_exec_27_0 (virtual_touchpad_exec)) +(expandtypeattribute (virtual_touchpad_exec_27_0) true) +(typeattributeset runas_27_0 (runas)) +(expandtypeattribute (runas_27_0) true) +(typeattributeset tty_device_27_0 (tty_device)) +(expandtypeattribute (tty_device_27_0) true) +(typeattributeset tun_device_27_0 (tun_device)) +(expandtypeattribute (tun_device_27_0) true) +(typeattributeset clatd_exec_27_0 (clatd_exec)) +(expandtypeattribute (clatd_exec_27_0) true) +(typeattributeset uio_device_27_0 (uio_device)) +(expandtypeattribute (uio_device_27_0) true) +(typeattributeset usb_device_27_0 (usb_device)) +(expandtypeattribute (usb_device_27_0) true) +(typeattributeset tv_input_service_27_0 (tv_input_service)) +(expandtypeattribute (tv_input_service_27_0) true) +(typeattributeset input_service_27_0 (input_service)) +(expandtypeattribute (input_service_27_0) true) +(typeattributeset tee_device_27_0 (tee_device)) +(expandtypeattribute (tee_device_27_0) true) +(typeattributeset hal_memtrack_hwservice_27_0 (hal_memtrack_hwservice)) +(expandtypeattribute (hal_memtrack_hwservice_27_0) true) +(typeattributeset radio_device_27_0 (radio_device)) +(expandtypeattribute (radio_device_27_0) true) +(typeattributeset bootstat_data_file_27_0 (bootstat_data_file)) +(expandtypeattribute (bootstat_data_file_27_0) true) +(typeattributeset ptmx_device_27_0 (ptmx_device)) +(expandtypeattribute (ptmx_device_27_0) true) +(typeattributeset textservices_service_27_0 (textservices_service)) +(expandtypeattribute (textservices_service_27_0) true) +(typeattributeset usbaccessory_device_27_0 (usbaccessory_device)) +(expandtypeattribute (usbaccessory_device_27_0) true) +(typeattributeset asec_public_file_27_0 (asec_public_file)) +(expandtypeattribute (asec_public_file_27_0) true) +(typeattributeset hal_usb_hwservice_27_0 (hal_usb_hwservice)) +(expandtypeattribute (hal_usb_hwservice_27_0) true) +(typeattributeset recovery_refresh_exec_27_0 (recovery_refresh_exec)) +(expandtypeattribute (recovery_refresh_exec_27_0) true) +(typeattributeset pdx_performance_client_endpoint_socket_27_0 (pdx_performance_client_endpoint_socket)) +(expandtypeattribute (pdx_performance_client_endpoint_socket_27_0) true) +(typeattributeset user_profile_data_file_27_0 (user_profile_data_file)) +(expandtypeattribute (user_profile_data_file_27_0) true) +(typeattributeset input_method_service_27_0 (input_method_service)) +(expandtypeattribute (input_method_service_27_0) true) +(typeattributeset media_projection_service_27_0 (media_projection_service)) +(expandtypeattribute (media_projection_service_27_0) true) +(typeattributeset racoon_socket_27_0 (racoon_socket)) +(expandtypeattribute (racoon_socket_27_0) true) +(typeattributeset cameraserver_service_27_0 (cameraserver_service)) +(expandtypeattribute (cameraserver_service_27_0) true) +(typeattributeset idmap_exec_27_0 (idmap_exec)) +(expandtypeattribute (idmap_exec_27_0) true) +(typeattributeset uncrypt_socket_27_0 (uncrypt_socket)) +(expandtypeattribute (uncrypt_socket_27_0) true) +(typeattributeset install_recovery_27_0 (install_recovery)) +(expandtypeattribute (install_recovery_27_0) true) +(typeattributeset logpersistd_logging_prop_27_0 (logpersistd_logging_prop)) +(expandtypeattribute (logpersistd_logging_prop_27_0) true) +(typeattributeset hal_configstore_ISurfaceFlingerConfigs_27_0 (hal_configstore_ISurfaceFlingerConfigs)) +(expandtypeattribute (hal_configstore_ISurfaceFlingerConfigs_27_0) true) +(typeattributeset hal_ir_hwservice_27_0 (hal_ir_hwservice)) +(expandtypeattribute (hal_ir_hwservice_27_0) true) +(typeattributeset hal_vr_hwservice_27_0 (hal_vr_hwservice)) +(expandtypeattribute (hal_vr_hwservice_27_0) true) +(typeattributeset incident_data_file_27_0 (incident_data_file)) +(expandtypeattribute (incident_data_file_27_0) true) +(typeattributeset webview_zygote_27_0 (webview_zygote)) +(expandtypeattribute (webview_zygote_27_0) true) +(typeattributeset proc_uid_procstat_set_27_0 (proc_uid_procstat_set)) +(expandtypeattribute (proc_uid_procstat_set_27_0) true) +(typeattributeset connectivity_service_27_0 (connectivity_service)) +(expandtypeattribute (connectivity_service_27_0) true) +(typeattributeset notification_service_27_0 (notification_service)) +(expandtypeattribute (notification_service_27_0) true) +(typeattributeset init_27_0 (init)) +(expandtypeattribute (init_27_0) true) +(typeattributeset logpersist_27_0 (logpersist)) +(expandtypeattribute (logpersist_27_0) true) +(typeattributeset dreams_service_27_0 (dreams_service)) +(expandtypeattribute (dreams_service_27_0) true) +(typeattributeset companion_device_service_27_0 (companion_device_service)) +(expandtypeattribute (companion_device_service_27_0) true) +(typeattributeset bootanim_27_0 (bootanim)) +(expandtypeattribute (bootanim_27_0) true) +(typeattributeset ota_package_file_27_0 (ota_package_file)) +(expandtypeattribute (ota_package_file_27_0) true) +(typeattributeset diskstats_service_27_0 (diskstats_service)) +(expandtypeattribute (diskstats_service_27_0) true) +(typeattributeset wallpaper_service_27_0 (wallpaper_service)) +(expandtypeattribute (wallpaper_service_27_0) true) +(typeattributeset fscklogs_27_0 (fscklogs)) +(expandtypeattribute (fscklogs_27_0) true) +(typeattributeset task_service_27_0 (task_service)) +(expandtypeattribute (task_service_27_0) true) +(typeattributeset hardware_service_27_0 (hardware_service)) +(expandtypeattribute (hardware_service_27_0) true) +(typeattributeset logd_27_0 (logd)) +(expandtypeattribute (logd_27_0) true) +(typeattributeset procstats_service_27_0 (procstats_service)) +(expandtypeattribute (procstats_service_27_0) true) +(typeattributeset dumpstate_service_27_0 (dumpstate_service)) +(expandtypeattribute (dumpstate_service_27_0) true) +(typeattributeset fingerprintd_exec_27_0 (fingerprintd_exec)) +(expandtypeattribute (fingerprintd_exec_27_0) true) +(typeattributeset alarm_service_27_0 (alarm_service)) +(expandtypeattribute (alarm_service_27_0) true) +(typeattributeset rttmanager_service_27_0 (rttmanager_service)) +(expandtypeattribute (rttmanager_service_27_0) true) +(typeattributeset fwk_sensor_hwservice_27_0 (fwk_sensor_hwservice)) +(expandtypeattribute (fwk_sensor_hwservice_27_0) true) +(typeattributeset ueventd_27_0 (ueventd)) +(expandtypeattribute (ueventd_27_0) true) +(typeattributeset node_27_0 (node)) +(expandtypeattribute (node_27_0) true) +(typeattributeset nfc_data_file_27_0 (nfc_data_file)) +(expandtypeattribute (nfc_data_file_27_0) true) +(typeattributeset misc_logd_file_27_0 (misc_logd_file)) +(expandtypeattribute (misc_logd_file_27_0) true) +(typeattributeset sepolicy_file_27_0 (sepolicy_file)) +(expandtypeattribute (sepolicy_file_27_0) true) +(typeattributeset audioserver_service_27_0 (audioserver_service)) +(expandtypeattribute (audioserver_service_27_0) true) +(typeattributeset sysfs_mac_address_27_0 (sysfs_mac_address)) +(expandtypeattribute (sysfs_mac_address_27_0) true) +(typeattributeset modprobe_27_0 (modprobe)) +(expandtypeattribute (modprobe_27_0) true) +(typeattributeset incidentd_27_0 (incidentd)) +(expandtypeattribute (incidentd_27_0) true) +(typeattributeset apk_tmp_file_27_0 (apk_tmp_file)) +(expandtypeattribute (apk_tmp_file_27_0) true) +(typeattributeset gpu_device_27_0 (gpu_device)) +(expandtypeattribute (gpu_device_27_0) true) +(typeattributeset mdnsd_27_0 (mdnsd)) +(expandtypeattribute (mdnsd_27_0) true) +(typeattributeset proc_uid_io_stats_27_0 (proc_uid_io_stats)) +(expandtypeattribute (proc_uid_io_stats_27_0) true) +(typeattributeset sensorservice_service_27_0 (sensorservice_service)) +(expandtypeattribute (sensorservice_service_27_0) true) +(typeattributeset runas_exec_27_0 (runas_exec)) +(expandtypeattribute (runas_exec_27_0) true) +(typeattributeset dex2oat_27_0 (dex2oat)) +(expandtypeattribute (dex2oat_27_0) true) +(typeattributeset wifiaware_service_27_0 (wifiaware_service)) +(expandtypeattribute (wifiaware_service_27_0) true) +(typeattributeset netstats_service_27_0 (netstats_service)) +(expandtypeattribute (netstats_service_27_0) true) +(typeattributeset vr_manager_service_27_0 (vr_manager_service)) +(expandtypeattribute (vr_manager_service_27_0) true) +(typeattributeset watchdogd_27_0 (watchdogd)) +(expandtypeattribute (watchdogd_27_0) true) +(typeattributeset mediacodec_exec_27_0 (mediacodec_exec)) +(expandtypeattribute (mediacodec_exec_27_0) true) +(typeattributeset tzdatacheck_exec_27_0 (tzdatacheck_exec)) +(expandtypeattribute (tzdatacheck_exec_27_0) true) +(typeattributeset mtk_simphonebook_service_27_0 (mtk_simphonebook_service)) +(expandtypeattribute (mtk_simphonebook_service_27_0) true) +(typeattributeset shell_exec_27_0 (shell_exec)) +(expandtypeattribute (shell_exec_27_0) true) +(typeattributeset hdmi_control_service_27_0 (hdmi_control_service)) +(expandtypeattribute (hdmi_control_service_27_0) true) +(typeattributeset clipboard_service_27_0 (clipboard_service)) +(expandtypeattribute (clipboard_service_27_0) true) +(typeattributeset dumpstate_exec_27_0 (dumpstate_exec)) +(expandtypeattribute (dumpstate_exec_27_0) true) +(typeattributeset mtk_epdg_service_27_0 (mtk_epdg_service)) +(expandtypeattribute (mtk_epdg_service_27_0) true) +(typeattributeset perfprofd_27_0 (perfprofd)) +(expandtypeattribute (perfprofd_27_0) true) +(typeattributeset netutils_wrapper_exec_27_0 (netutils_wrapper_exec)) +(expandtypeattribute (netutils_wrapper_exec_27_0) true) +(typeattributeset tombstoned_intercept_socket_27_0 (tombstoned_intercept_socket)) +(expandtypeattribute (tombstoned_intercept_socket_27_0) true) +(typeattributeset wificond_27_0 (wificond)) +(expandtypeattribute (wificond_27_0) true) +(typeattributeset debugfs_mmc_27_0 (debugfs_mmc)) +(expandtypeattribute (debugfs_mmc_27_0) true) +(typeattributeset netutils_wrapper_27_0 (netutils_wrapper)) +(expandtypeattribute (netutils_wrapper_27_0) true) +(typeattributeset racoon_27_0 (racoon)) +(expandtypeattribute (racoon_27_0) true) +(typeattributeset hal_cas_hwservice_27_0 (hal_cas_hwservice)) +(expandtypeattribute (hal_cas_hwservice_27_0) true) +(typeattributeset hal_nfc_hwservice_27_0 (hal_nfc_hwservice)) +(expandtypeattribute (hal_nfc_hwservice_27_0) true) +(typeattributeset vold_27_0 (vold)) +(expandtypeattribute (vold_27_0) true) +(typeattributeset webview_zygote_socket_27_0 (webview_zygote_socket)) +(expandtypeattribute (webview_zygote_socket_27_0) true) +(typeattributeset iio_device_27_0 (iio_device)) +(expandtypeattribute (iio_device_27_0) true) +(typeattributeset pdx_display_manager_endpoint_socket_27_0 (pdx_display_manager_endpoint_socket)) +(expandtypeattribute (pdx_display_manager_endpoint_socket_27_0) true) +(typeattributeset ion_device_27_0 (ion_device)) +(expandtypeattribute (ion_device_27_0) true) +(typeattributeset mtk_phonesubinfo_service_27_0 (mtk_phonesubinfo_service)) +(expandtypeattribute (mtk_phonesubinfo_service_27_0) true) +(typeattributeset port_device_27_0 (port_device)) +(expandtypeattribute (port_device_27_0) true) +(typeattributeset nfc_device_27_0 (nfc_device)) +(expandtypeattribute (nfc_device_27_0) true) +(typeattributeset rild_socket_27_0 (rild_socket)) +(expandtypeattribute (rild_socket_27_0) true) +(typeattributeset keystore_data_file_27_0 (keystore_data_file)) +(expandtypeattribute (keystore_data_file_27_0) true) +(typeattributeset recovery_persist_exec_27_0 (recovery_persist_exec)) +(expandtypeattribute (recovery_persist_exec_27_0) true) +(typeattributeset pmsg_device_27_0 (pmsg_device)) +(expandtypeattribute (pmsg_device_27_0) true) +(typeattributeset rpmsg_device_27_0 (rpmsg_device)) +(expandtypeattribute (rpmsg_device_27_0) true) +(typeattributeset i2c_device_27_0 (i2c_device)) +(expandtypeattribute (i2c_device_27_0) true) +(typeattributeset cache_file_27_0 (cache_file)) +(expandtypeattribute (cache_file_27_0) true) +(typeattributeset fingerprintd_service_27_0 (fingerprintd_service)) +(expandtypeattribute (fingerprintd_service_27_0) true) +(typeattributeset mtp_device_27_0 (mtp_device)) +(expandtypeattribute (mtp_device_27_0) true) +(typeattributeset netd_stable_secret_prop_27_0 (netd_stable_secret_prop)) +(expandtypeattribute (netd_stable_secret_prop_27_0) true) +(typeattributeset mtd_device_27_0 (mtd_device)) +(expandtypeattribute (mtd_device_27_0) true) +(typeattributeset adbd_socket_27_0 (adbd_socket)) +(expandtypeattribute (adbd_socket_27_0) true) +(typeattributeset debugfs_trace_marker_27_0 (debugfs_trace_marker)) +(expandtypeattribute (debugfs_trace_marker_27_0) true) +(typeattributeset otapreopt_chroot_27_0 (otapreopt_chroot)) +(expandtypeattribute (otapreopt_chroot_27_0) true) +(typeattributeset hal_renderscript_hwservice_27_0 (hal_renderscript_hwservice)) +(expandtypeattribute (hal_renderscript_hwservice_27_0) true) +(typeattributeset cppreopts_exec_27_0 (cppreopts_exec)) +(expandtypeattribute (cppreopts_exec_27_0) true) +(typeattributeset installd_exec_27_0 (installd_exec)) +(expandtypeattribute (installd_exec_27_0) true) +(typeattributeset tombstoned_exec_27_0 (tombstoned_exec)) +(expandtypeattribute (tombstoned_exec_27_0) true) +(typeattributeset runtime_event_log_tags_file_27_0 (runtime_event_log_tags_file)) +(expandtypeattribute (runtime_event_log_tags_file_27_0) true) +(typeattributeset wpa_socket_27_0 (wpa_socket)) +(expandtypeattribute (wpa_socket_27_0) true) +(typeattributeset mtp_27_0 (mtp)) +(expandtypeattribute (mtp_27_0) true) +(typeattributeset backup_data_file_27_0 (backup_data_file)) +(expandtypeattribute (backup_data_file_27_0) true) +(typeattributeset app_fuse_file_27_0 (app_fuse_file)) +(expandtypeattribute (app_fuse_file_27_0) true) +(typeattributeset app_data_file_27_0 (app_data_file)) +(expandtypeattribute (app_data_file_27_0) true) +(typeattributeset dhcp_data_file_27_0 (dhcp_data_file)) +(expandtypeattribute (dhcp_data_file_27_0) true) +(typeattributeset racoon_exec_27_0 (racoon_exec)) +(expandtypeattribute (racoon_exec_27_0) true) +(typeattributeset unlabeled_27_0 (unlabeled)) +(expandtypeattribute (unlabeled_27_0) true) +(typeattributeset ipsec_service_27_0 (ipsec_service)) +(expandtypeattribute (ipsec_service_27_0) true) +(typeattributeset user_service_27_0 (user_service)) +(expandtypeattribute (user_service_27_0) true) +(typeattributeset persistent_data_block_service_27_0 (persistent_data_block_service)) +(expandtypeattribute (persistent_data_block_service_27_0) true) +(typeattributeset profman_dump_data_file_27_0 (profman_dump_data_file)) +(expandtypeattribute (profman_dump_data_file_27_0) true) +(typeattributeset socket_device_27_0 (socket_device)) +(expandtypeattribute (socket_device_27_0) true) +(typeattributeset broadcastradio_service_27_0 (broadcastradio_service)) +(expandtypeattribute (broadcastradio_service_27_0) true) +(typeattributeset scheduling_policy_service_27_0 (scheduling_policy_service)) +(expandtypeattribute (scheduling_policy_service_27_0) true) +(typeattributeset update_engine_exec_27_0 (update_engine_exec)) +(expandtypeattribute (update_engine_exec_27_0) true) +(typeattributeset installd_27_0 (installd)) +(expandtypeattribute (installd_27_0) true) +(typeattributeset profman_exec_27_0 (profman_exec)) +(expandtypeattribute (profman_exec_27_0) true) +(typeattributeset key_install_data_file_27_0 (key_install_data_file)) +(expandtypeattribute (key_install_data_file_27_0) true) +(typeattributeset bootchart_data_file_27_0 (bootchart_data_file)) +(expandtypeattribute (bootchart_data_file_27_0) true) +(typeattributeset persist_debug_prop_27_0 (persist_debug_prop)) +(expandtypeattribute (persist_debug_prop_27_0) true) +(typeattributeset telecom_service_27_0 (telecom_service)) +(expandtypeattribute (telecom_service_27_0) true) +(typeattributeset audioserver_data_file_27_0 (audioserver_data_file)) +(expandtypeattribute (audioserver_data_file_27_0) true) +(typeattributeset console_device_27_0 (console_device)) +(expandtypeattribute (console_device_27_0) true) +(typeattributeset sensors_device_27_0 (sensors_device)) +(expandtypeattribute (sensors_device_27_0) true) +(typeattributeset nonplat_service_contexts_file_27_0 (nonplat_service_contexts_file)) +(expandtypeattribute (nonplat_service_contexts_file_27_0) true) +(typeattributeset samplingprofiler_service_27_0 (samplingprofiler_service)) +(expandtypeattribute (samplingprofiler_service_27_0) true) +(typeattributeset hal_graphics_allocator_hwservice_27_0 (hal_graphics_allocator_hwservice)) +(expandtypeattribute (hal_graphics_allocator_hwservice_27_0) true) +(typeattributeset gas_srv_service_27_0 (gas_srv_service)) +(expandtypeattribute (gas_srv_service_27_0) true) +(typeattributeset search_service_27_0 (search_service)) +(expandtypeattribute (search_service_27_0) true) +(typeattributeset mediaserver_27_0 (mediaserver)) +(expandtypeattribute (mediaserver_27_0) true) +(typeattributeset mediaserver_exec_27_0 (mediaserver_exec)) +(expandtypeattribute (mediaserver_exec_27_0) true) +(typeattributeset oemfs_27_0 (oemfs)) +(expandtypeattribute (oemfs_27_0) true) +(typeattributeset drmserver_exec_27_0 (drmserver_exec)) +(expandtypeattribute (drmserver_exec_27_0) true) +(typeattributeset sgdisk_exec_27_0 (sgdisk_exec)) +(expandtypeattribute (sgdisk_exec_27_0) true) +(typeattributeset pdx_display_screenshot_endpoint_socket_27_0 (pdx_display_screenshot_endpoint_socket)) +(expandtypeattribute (pdx_display_screenshot_endpoint_socket_27_0) true) +(typeattributeset camera_data_file_27_0 (camera_data_file)) +(expandtypeattribute (camera_data_file_27_0) true) +(typeattributeset bluetooth_efs_file_27_0 (bluetooth_efs_file)) +(expandtypeattribute (bluetooth_efs_file_27_0) true) +(typeattributeset media_data_file_27_0 (media_data_file)) +(expandtypeattribute (media_data_file_27_0) true) +(typeattributeset ota_data_file_27_0 (ota_data_file)) +(expandtypeattribute (ota_data_file_27_0) true) +(typeattributeset system_file_27_0 (system_file)) +(expandtypeattribute (system_file_27_0) true) +(typeattributeset apk_private_tmp_file_27_0 (apk_private_tmp_file)) +(expandtypeattribute (apk_private_tmp_file_27_0) true) +(typeattributeset hci_attach_dev_27_0 (hci_attach_dev)) +(expandtypeattribute (hci_attach_dev_27_0) true) +(typeattributeset statusbar_service_27_0 (statusbar_service)) +(expandtypeattribute (statusbar_service_27_0) true) +(typeattributeset boot_logo_updater_27_0 (boot_logo_updater)) +(expandtypeattribute (boot_logo_updater_27_0) true) +(typeattributeset idmap_27_0 (idmap)) +(expandtypeattribute (idmap_27_0) true) +(typeattributeset fwmarkd_socket_27_0 (fwmarkd_socket)) +(expandtypeattribute (fwmarkd_socket_27_0) true) +(typeattributeset cameraserver_exec_27_0 (cameraserver_exec)) +(expandtypeattribute (cameraserver_exec_27_0) true) +(typeattributeset shortcut_service_27_0 (shortcut_service)) +(expandtypeattribute (shortcut_service_27_0) true) +(typeattributeset profman_27_0 (profman)) +(expandtypeattribute (profman_27_0) true) +(typeattributeset media_rw_data_file_27_0 (media_rw_data_file)) +(expandtypeattribute (media_rw_data_file_27_0) true) +(typeattributeset coredump_file_27_0 (coredump_file)) +(expandtypeattribute (coredump_file_27_0) true) +(typeattributeset serial_device_27_0 (serial_device)) +(expandtypeattribute (serial_device_27_0) true) +(typeattributeset devicestoragemonitor_service_27_0 (devicestoragemonitor_service)) +(expandtypeattribute (devicestoragemonitor_service_27_0) true) +(typeattributeset boottrace_data_file_27_0 (boottrace_data_file)) +(expandtypeattribute (boottrace_data_file_27_0) true) +(typeattributeset proc_uid_time_in_state_27_0 (proc_uid_time_in_state)) +(expandtypeattribute (proc_uid_time_in_state_27_0) true) +(typeattributeset hal_audio_hwservice_27_0 (hal_audio_hwservice)) +(expandtypeattribute (hal_audio_hwservice_27_0) true) +(typeattributeset cache_backup_file_27_0 (cache_backup_file)) +(expandtypeattribute (cache_backup_file_27_0) true) +(typeattributeset mtk_rns_service_27_0 (mtk_rns_service)) +(expandtypeattribute (mtk_rns_service_27_0) true) +(typeattributeset mediacodec_service_27_0 (mediacodec_service)) +(expandtypeattribute (mediacodec_service_27_0) true) +(typeattributeset lmkd_27_0 (lmkd)) +(expandtypeattribute (lmkd_27_0) true) +(typeattributeset deviceidle_service_27_0 (deviceidle_service)) +(expandtypeattribute (deviceidle_service_27_0) true) +(typeattributeset dropbox_service_27_0 (dropbox_service)) +(expandtypeattribute (dropbox_service_27_0) true) +(typeattributeset mobile_log_d_27_0 (mobile_log_d)) +(expandtypeattribute (mobile_log_d_27_0) true) +(typeattributeset hidl_token_hwservice_27_0 (hidl_token_hwservice)) +(expandtypeattribute (hidl_token_hwservice_27_0) true) +(typeattributeset storagestats_service_27_0 (storagestats_service)) +(expandtypeattribute (storagestats_service_27_0) true) +(typeattributeset thermalcallback_hwservice_27_0 (thermalcallback_hwservice)) +(expandtypeattribute (thermalcallback_hwservice_27_0) true) +(typeattributeset wifip2p_service_27_0 (wifip2p_service)) +(expandtypeattribute (wifip2p_service_27_0) true) +(typeattributeset registry_service_27_0 (registry_service)) +(expandtypeattribute (registry_service_27_0) true) +(typeattributeset platform_app_27_0 (platform_app)) +(expandtypeattribute (platform_app_27_0) true) +(typeattributeset cpuctl_device_27_0 (cpuctl_device)) +(expandtypeattribute (cpuctl_device_27_0) true) +(typeattributeset sysfs_batteryinfo_27_0 (sysfs_batteryinfo)) +(expandtypeattribute (sysfs_batteryinfo_27_0) true) +(typeattributeset recovery_persist_27_0 (recovery_persist)) +(expandtypeattribute (recovery_persist_27_0) true) +(typeattributeset package_native_service_27_0 (package_native_service)) +(expandtypeattribute (package_native_service_27_0) true) +(typeattributeset jobscheduler_service_27_0 (jobscheduler_service)) +(expandtypeattribute (jobscheduler_service_27_0) true) +(typeattributeset proc_iomem_27_0 (proc_iomem)) +(expandtypeattribute (proc_iomem_27_0) true) +(typeattributeset dm_agent_binder_service_27_0 (dm_agent_binder_service)) +(expandtypeattribute (dm_agent_binder_service_27_0) true) +(typeattributeset hal_camera_hwservice_27_0 (hal_camera_hwservice)) +(expandtypeattribute (hal_camera_hwservice_27_0) true) +(typeattributeset proc_timer_27_0 (proc_timer)) +(expandtypeattribute (proc_timer_27_0) true) +(typeattributeset pdx_performance_client_channel_socket_27_0 (pdx_performance_client_channel_socket)) +(expandtypeattribute (pdx_performance_client_channel_socket_27_0) true) +(typeattributeset sdcardd_exec_27_0 (sdcardd_exec)) +(expandtypeattribute (sdcardd_exec_27_0) true) +(typeattributeset kmsg_debug_device_27_0 (kmsg_debug_device)) +(expandtypeattribute (kmsg_debug_device_27_0) true) +(typeattributeset mediametrics_27_0 (mediametrics)) +(expandtypeattribute (mediametrics_27_0) true) +(typeattributeset mediametrics_exec_27_0 (mediametrics_exec)) +(expandtypeattribute (mediametrics_exec_27_0) true) +(typeattributeset mtk_advcamserver_service_27_0 (mtk_advcamserver_service)) +(expandtypeattribute (mtk_advcamserver_service_27_0) true) +(typeattributeset audio_device_27_0 (audio_device)) +(expandtypeattribute (audio_device_27_0) true) +(typeattributeset webviewupdate_service_27_0 (webviewupdate_service)) +(expandtypeattribute (webviewupdate_service_27_0) true) +(typeattributeset bufferhubd_exec_27_0 (bufferhubd_exec)) +(expandtypeattribute (bufferhubd_exec_27_0) true) +(typeattributeset dex2oat_exec_27_0 (dex2oat_exec)) +(expandtypeattribute (dex2oat_exec_27_0) true) +(typeattributeset sysfs_lowmemorykiller_27_0 (sysfs_lowmemorykiller)) +(expandtypeattribute (sysfs_lowmemorykiller_27_0) true) +(typeattributeset hwservicemanager_exec_27_0 (hwservicemanager_exec)) +(expandtypeattribute (hwservicemanager_exec_27_0) true) +(typeattributeset servicemanager_exec_27_0 (servicemanager_exec)) +(expandtypeattribute (servicemanager_exec_27_0) true) +(typeattributeset pdx_performance_dir_27_0 (pdx_performance_dir)) +(expandtypeattribute (pdx_performance_dir_27_0) true) +(typeattributeset proc_cpuinfo_27_0 (proc_cpuinfo)) +(expandtypeattribute (proc_cpuinfo_27_0) true) +(typeattributeset proc_meminfo_27_0 (proc_meminfo)) +(expandtypeattribute (proc_meminfo_27_0) true) +(typeattributeset zygote_socket_27_0 (zygote_socket)) +(expandtypeattribute (zygote_socket_27_0) true) +(typeattributeset ota_agent_service_27_0 (ota_agent_service)) +(expandtypeattribute (ota_agent_service_27_0) true) +(typeattributeset vendor_framework_file_27_0 (vendor_framework_file)) +(expandtypeattribute (vendor_framework_file_27_0) true) +(typeattributeset boottime_prop_27_0 (boottime_prop)) +(expandtypeattribute (boottime_prop_27_0) true) +(typeattributeset ppl_agent_service_27_0 (ppl_agent_service)) +(expandtypeattribute (ppl_agent_service_27_0) true) +(typeattributeset system_radio_prop_27_0 (system_radio_prop)) +(expandtypeattribute (system_radio_prop_27_0) true) +(typeattributeset fsck_untrusted_27_0 (fsck_untrusted)) +(expandtypeattribute (fsck_untrusted_27_0) true) +(typeattributeset uhid_device_27_0 (uhid_device)) +(expandtypeattribute (uhid_device_27_0) true) +(typeattributeset incident_service_27_0 (incident_service)) +(expandtypeattribute (incident_service_27_0) true) +(typeattributeset ctl_bootanim_prop_27_0 (ctl_bootanim_prop)) +(expandtypeattribute (ctl_bootanim_prop_27_0) true) +(typeattributeset restorecon_prop_27_0 (restorecon_prop)) +(expandtypeattribute (restorecon_prop_27_0) true) +(typeattributeset account_service_27_0 (account_service)) +(expandtypeattribute (account_service_27_0) true) +(typeattributeset content_service_27_0 (content_service)) +(expandtypeattribute (content_service_27_0) true) +(typeattributeset mount_service_27_0 (mount_service)) +(expandtypeattribute (mount_service_27_0) true) +(typeattributeset net_radio_prop_27_0 (net_radio_prop)) +(expandtypeattribute (net_radio_prop_27_0) true) +(typeattributeset sysfs_usermodehelper_27_0 (sysfs_usermodehelper)) +(expandtypeattribute (sysfs_usermodehelper_27_0) true) +(typeattributeset asec_apk_file_27_0 (asec_apk_file)) +(expandtypeattribute (asec_apk_file_27_0) true) +(typeattributeset heapdump_data_file_27_0 (heapdump_data_file)) +(expandtypeattribute (heapdump_data_file_27_0) true) +(typeattributeset update_verifier_exec_27_0 (update_verifier_exec)) +(expandtypeattribute (update_verifier_exec_27_0) true) +(typeattributeset hal_dumpstate_hwservice_27_0 (hal_dumpstate_hwservice)) +(expandtypeattribute (hal_dumpstate_hwservice_27_0) true) +(typeattributeset cache_private_backup_file_27_0 (cache_private_backup_file)) +(expandtypeattribute (cache_private_backup_file_27_0) true) +(typeattributeset usb_service_27_0 (usb_service)) +(expandtypeattribute (usb_service_27_0) true) +(typeattributeset atci_service_27_0 (atci_service)) +(expandtypeattribute (atci_service_27_0) true) +(typeattributeset battery_service_27_0 (battery_service)) +(expandtypeattribute (battery_service_27_0) true) +(typeattributeset recovery_service_27_0 (recovery_service)) +(expandtypeattribute (recovery_service_27_0) true) +(typeattributeset mtk_perf_service_27_0 (mtk_perf_service)) +(expandtypeattribute (mtk_perf_service_27_0) true) +(typeattributeset usp_service_27_0 (usp_service)) +(expandtypeattribute (usp_service_27_0) true) +(typeattributeset ctl_fuse_prop_27_0 (ctl_fuse_prop)) +(expandtypeattribute (ctl_fuse_prop_27_0) true) +(typeattributeset ctl_console_prop_27_0 (ctl_console_prop)) +(expandtypeattribute (ctl_console_prop_27_0) true) +(typeattributeset gatekeeperd_exec_27_0 (gatekeeperd_exec)) +(expandtypeattribute (gatekeeperd_exec_27_0) true) +(typeattributeset sockfs_27_0 (sockfs)) +(expandtypeattribute (sockfs_27_0) true) +(typeattributeset trust_service_27_0 (trust_service)) +(expandtypeattribute (trust_service_27_0) true) +(typeattributeset binfmt_miscfs_27_0 (binfmt_miscfs)) +(expandtypeattribute (binfmt_miscfs_27_0) true) +(typeattributeset storage_file_27_0 (storage_file)) +(expandtypeattribute (storage_file_27_0) true) +(typeattributeset update_verifier_27_0 (update_verifier)) +(expandtypeattribute (update_verifier_27_0) true) +(typeattributeset ctl_mdnsd_prop_27_0 (ctl_mdnsd_prop)) +(expandtypeattribute (ctl_mdnsd_prop_27_0) true) +(typeattributeset mnt_media_rw_file_27_0 (mnt_media_rw_file)) +(expandtypeattribute (mnt_media_rw_file_27_0) true) +(typeattributeset update_engine_data_file_27_0 (update_engine_data_file)) +(expandtypeattribute (update_engine_data_file_27_0) true) +(typeattributeset mtk_permrecords_service_27_0 (mtk_permrecords_service)) +(expandtypeattribute (mtk_permrecords_service_27_0) true) +(typeattributeset healthd_exec_27_0 (healthd_exec)) +(expandtypeattribute (healthd_exec_27_0) true) +(typeattributeset mnt_expand_file_27_0 (mnt_expand_file)) +(expandtypeattribute (mnt_expand_file_27_0) true) +(typeattributeset fwk_display_hwservice_27_0 (fwk_display_hwservice)) +(expandtypeattribute (fwk_display_hwservice_27_0) true) +(typeattributeset postinstall_dexopt_27_0 (postinstall_dexopt)) +(expandtypeattribute (postinstall_dexopt_27_0) true) +(typeattributeset tombstoned_crash_socket_27_0 (tombstoned_crash_socket)) +(expandtypeattribute (tombstoned_crash_socket_27_0) true) +(typeattributeset proc_drop_caches_27_0 (proc_drop_caches)) +(expandtypeattribute (proc_drop_caches_27_0) true) +(typeattributeset resourcecache_data_file_27_0 (resourcecache_data_file)) +(expandtypeattribute (resourcecache_data_file_27_0) true) +(typeattributeset netd_service_27_0 (netd_service)) +(expandtypeattribute (netd_service_27_0) true) +(typeattributeset fwk_scheduler_hwservice_27_0 (fwk_scheduler_hwservice)) +(expandtypeattribute (fwk_scheduler_hwservice_27_0) true) +(typeattributeset log_tag_prop_27_0 (log_tag_prop)) +(expandtypeattribute (log_tag_prop_27_0) true) +(typeattributeset tombstone_data_file_27_0 (tombstone_data_file)) +(expandtypeattribute (tombstone_data_file_27_0) true) +(typeattributeset audio_service_27_0 (audio_service)) +(expandtypeattribute (audio_service_27_0) true) +(typeattributeset radio_service_27_0 (radio_service)) +(expandtypeattribute (radio_service_27_0) true) +(typeattributeset otapreopt_chroot_exec_27_0 (otapreopt_chroot_exec)) +(expandtypeattribute (otapreopt_chroot_exec_27_0) true) +(typeattributeset unencrypted_data_file_27_0 (unencrypted_data_file)) +(expandtypeattribute (unencrypted_data_file_27_0) true) +(typeattributeset vold_socket_27_0 (vold_socket)) +(expandtypeattribute (vold_socket_27_0) true) +(typeattributeset mtk_radio_service_27_0 (mtk_radio_service)) +(expandtypeattribute (mtk_radio_service_27_0) true) +(typeattributeset otapreopt_slot_27_0 (otapreopt_slot)) +(expandtypeattribute (otapreopt_slot_27_0) true) +(typeattributeset properties_device_27_0 (properties_device)) +(expandtypeattribute (properties_device_27_0) true) +(typeattributeset vibrator_service_27_0 (vibrator_service)) +(expandtypeattribute (vibrator_service_27_0) true) +(typeattributeset window_service_27_0 (window_service)) +(expandtypeattribute (window_service_27_0) true) +(typeattributeset update_engine_27_0 (update_engine)) +(expandtypeattribute (update_engine_27_0) true) +(typeattributeset mtk_hdmi_service_27_0 (mtk_hdmi_service)) +(expandtypeattribute (mtk_hdmi_service_27_0) true) +(typeattributeset mediaextractor_27_0 (mediaextractor)) +(expandtypeattribute (mediaextractor_27_0) true) +(typeattributeset blkid_27_0 (blkid)) +(expandtypeattribute (blkid_27_0) true) +(typeattributeset properties_serial_27_0 (properties_serial)) +(expandtypeattribute (properties_serial_27_0) true) +(typeattributeset functionfs_27_0 (functionfs)) +(expandtypeattribute (functionfs_27_0) true) +(typeattributeset rild_debug_socket_27_0 (rild_debug_socket)) +(expandtypeattribute (rild_debug_socket_27_0) true) +(typeattributeset surfaceflinger_service_27_0 (surfaceflinger_service)) +(expandtypeattribute (surfaceflinger_service_27_0) true) +(typeattributeset appwidget_service_27_0 (appwidget_service)) +(expandtypeattribute (appwidget_service_27_0) true) +(typeattributeset gatekeeper_data_file_27_0 (gatekeeper_data_file)) +(expandtypeattribute (gatekeeper_data_file_27_0) true) +(typeattributeset launcherapps_service_27_0 (launcherapps_service)) +(expandtypeattribute (launcherapps_service_27_0) true) +(typeattributeset proc_misc_27_0 (proc_misc)) +(expandtypeattribute (proc_misc_27_0) true) +(typeattributeset mnt_user_file_27_0 (mnt_user_file)) +(expandtypeattribute (mnt_user_file_27_0) true) +(typeattributeset reboot_data_file_27_0 (reboot_data_file)) +(expandtypeattribute (reboot_data_file_27_0) true) +(typeattributeset su_exec_27_0 (su_exec)) +(expandtypeattribute (su_exec_27_0) true) +(typeattributeset ppp_exec_27_0 (ppp_exec)) +(expandtypeattribute (ppp_exec_27_0) true) +(typeattributeset vdc_exec_27_0 (vdc_exec)) +(expandtypeattribute (vdc_exec_27_0) true) +(typeattributeset mtp_exec_27_0 (mtp_exec)) +(expandtypeattribute (mtp_exec_27_0) true) +(typeattributeset net_data_file_27_0 (net_data_file)) +(expandtypeattribute (net_data_file_27_0) true) +(typeattributeset vold_data_file_27_0 (vold_data_file)) +(expandtypeattribute (vold_data_file_27_0) true) +(typeattributeset dhcp_27_0 (dhcp)) +(expandtypeattribute (dhcp_27_0) true) +(typeattributeset preloads_data_file_27_0 (preloads_data_file)) +(expandtypeattribute (preloads_data_file_27_0) true) +(typeattributeset vold_exec_27_0 (vold_exec)) +(expandtypeattribute (vold_exec_27_0) true) +(typeattributeset usagestats_service_27_0 (usagestats_service)) +(expandtypeattribute (usagestats_service_27_0) true) +(typeattributeset thermalserviced_27_0 (thermalserviced)) +(expandtypeattribute (thermalserviced_27_0) true) +(typeattributeset dhcp_exec_27_0 (dhcp_exec)) +(expandtypeattribute (dhcp_exec_27_0) true) +(typeattributeset fsck_exec_27_0 (fsck_exec)) +(expandtypeattribute (fsck_exec_27_0) true) +(typeattributeset hal_tv_cec_hwservice_27_0 (hal_tv_cec_hwservice)) +(expandtypeattribute (hal_tv_cec_hwservice_27_0) true) +(typeattributeset adbd_exec_27_0 (adbd_exec)) +(expandtypeattribute (adbd_exec_27_0) true) +(typeattributeset kisd_27_0 (kisd)) +(expandtypeattribute (kisd_27_0) true) +(typeattributeset e2fs_exec_27_0 (e2fs_exec)) +(expandtypeattribute (e2fs_exec_27_0) true) +(typeattributeset lmkd_exec_27_0 (lmkd_exec)) +(expandtypeattribute (lmkd_exec_27_0) true) +(typeattributeset logd_exec_27_0 (logd_exec)) +(expandtypeattribute (logd_exec_27_0) true) +(typeattributeset netd_exec_27_0 (netd_exec)) +(expandtypeattribute (netd_exec_27_0) true) +(typeattributeset sgdisk_27_0 (sgdisk)) +(expandtypeattribute (sgdisk_27_0) true) +(typeattributeset init_exec_27_0 (init_exec)) +(expandtypeattribute (init_exec_27_0) true) +(typeattributeset media_router_service_27_0 (media_router_service)) +(expandtypeattribute (media_router_service_27_0) true) +(typeattributeset batteryproperties_service_27_0 (batteryproperties_service)) +(expandtypeattribute (batteryproperties_service_27_0) true) +(typeattributeset storaged_service_27_0 (storaged_service)) +(expandtypeattribute (storaged_service_27_0) true) +(typeattributeset selinuxfs_27_0 (selinuxfs)) +(expandtypeattribute (selinuxfs_27_0) true) +(typeattributeset sysfs_thermal_27_0 (sysfs_thermal)) +(expandtypeattribute (sysfs_thermal_27_0) true) +(typeattributeset system_app_service_27_0 (system_app_service)) +(expandtypeattribute (system_app_service_27_0) true) +(typeattributeset full_device_27_0 (full_device)) +(expandtypeattribute (full_device_27_0) true) +(typeattributeset fuse_device_27_0 (fuse_device)) +(expandtypeattribute (fuse_device_27_0) true) +(typeattributeset power_service_27_0 (power_service)) +(expandtypeattribute (power_service_27_0) true) +(typeattributeset uncrypt_27_0 (uncrypt)) +(expandtypeattribute (uncrypt_27_0) true) +(typeattributeset pdx_display_client_channel_socket_27_0 (pdx_display_client_channel_socket)) +(expandtypeattribute (pdx_display_client_channel_socket_27_0) true) +(typeattributeset debugfs_tracing_27_0 (debugfs_tracing)) +(expandtypeattribute (debugfs_tracing_27_0) true) +(typeattributeset sysfs_zram_uevent_27_0 (sysfs_zram_uevent)) +(expandtypeattribute (sysfs_zram_uevent_27_0) true) +(typeattributeset proc_modules_27_0 (proc_modules)) +(expandtypeattribute (proc_modules_27_0) true) +(typeattributeset virtual_touchpad_service_27_0 (virtual_touchpad_service)) +(expandtypeattribute (virtual_touchpad_service_27_0) true) +(typeattributeset wificond_exec_27_0 (wificond_exec)) +(expandtypeattribute (wificond_exec_27_0) true) +(typeattributeset commontime_management_service_27_0 (commontime_management_service)) +(expandtypeattribute (commontime_management_service_27_0) true) +(typeattributeset proc_interrupts_27_0 (proc_interrupts)) +(expandtypeattribute (proc_interrupts_27_0) true) +(typeattributeset mtk_registry_service_27_0 (mtk_registry_service)) +(expandtypeattribute (mtk_registry_service_27_0) true) +(typeattributeset pdx_bufferhub_client_channel_socket_27_0 (pdx_bufferhub_client_channel_socket)) +(expandtypeattribute (pdx_bufferhub_client_channel_socket_27_0) true) +(typeattributeset hal_gatekeeper_hwservice_27_0 (hal_gatekeeper_hwservice)) +(expandtypeattribute (hal_gatekeeper_hwservice_27_0) true) +(typeattributeset slideshow_27_0 (slideshow)) +(expandtypeattribute (slideshow_27_0) true) +(typeattributeset graphicsstats_service_27_0 (graphicsstats_service)) +(expandtypeattribute (graphicsstats_service_27_0) true) +(typeattributeset guiext-server_27_0 (guiext-server)) +(expandtypeattribute (guiext-server_27_0) true) +(typeattributeset drmserver_service_27_0 (drmserver_service)) +(expandtypeattribute (drmserver_service_27_0) true) +(typeattributeset fingerprintd_data_file_27_0 (fingerprintd_data_file)) +(expandtypeattribute (fingerprintd_data_file_27_0) true) +(typeattributeset vr_hwc_27_0 (vr_hwc)) +(expandtypeattribute (vr_hwc_27_0) true) +(typeattributeset inotify_27_0 (inotify)) +(expandtypeattribute (inotify_27_0) true) +(typeattributeset tombstoned_27_0 (tombstoned)) +(expandtypeattribute (tombstoned_27_0) true) +(typeattributeset pdx_display_vsync_channel_socket_27_0 (pdx_display_vsync_channel_socket)) +(expandtypeattribute (pdx_display_vsync_channel_socket_27_0) true) +(typeattributeset gpu_service_27_0 (gpu_service)) +(expandtypeattribute (gpu_service_27_0) true) +(typeattributeset mtk_ifaa_service_27_0 (mtk_ifaa_service)) +(expandtypeattribute (mtk_ifaa_service_27_0) true) +(typeattributeset hal_gnss_hwservice_27_0 (hal_gnss_hwservice)) +(expandtypeattribute (hal_gnss_hwservice_27_0) true) +(typeattributeset sysfs_bluetooth_writable_27_0 (sysfs_bluetooth_writable)) +(expandtypeattribute (sysfs_bluetooth_writable_27_0) true) +(typeattributeset proc_bluetooth_writable_27_0 (proc_bluetooth_writable)) +(expandtypeattribute (proc_bluetooth_writable_27_0) true) +(typeattributeset dm_device_27_0 (dm_device)) +(expandtypeattribute (dm_device_27_0) true) +(typeattributeset tee_data_file_27_0 (tee_data_file)) +(expandtypeattribute (tee_data_file_27_0) true) +(typeattributeset default_android_hwservice_27_0 (default_android_hwservice)) +(expandtypeattribute (default_android_hwservice_27_0) true) +(typeattributeset dumpstate_socket_27_0 (dumpstate_socket)) +(expandtypeattribute (dumpstate_socket_27_0) true) +(typeattributeset provision_file_27_0 (provision_file)) +(expandtypeattribute (provision_file_27_0) true) +(typeattributeset mtk_carrierexpress_service_27_0 (mtk_carrierexpress_service)) +(expandtypeattribute (mtk_carrierexpress_service_27_0) true) +(typeattributeset pdx_display_vsync_endpoint_socket_27_0 (pdx_display_vsync_endpoint_socket)) +(expandtypeattribute (pdx_display_vsync_endpoint_socket_27_0) true) +(typeattributeset perfprofd_exec_27_0 (perfprofd_exec)) +(expandtypeattribute (perfprofd_exec_27_0) true) +(typeattributeset hal_thermal_hwservice_27_0 (hal_thermal_hwservice)) +(expandtypeattribute (hal_thermal_hwservice_27_0) true) +(typeattributeset vr_hwc_exec_27_0 (vr_hwc_exec)) +(expandtypeattribute (vr_hwc_exec_27_0) true) +(typeattributeset cache_recovery_file_27_0 (cache_recovery_file)) +(expandtypeattribute (cache_recovery_file_27_0) true) +(typeattributeset batterystats_service_27_0 (batterystats_service)) +(expandtypeattribute (batterystats_service_27_0) true) +(typeattributeset mediadrmserver_27_0 (mediadrmserver)) +(expandtypeattribute (mediadrmserver_27_0) true) +(typeattributeset hal_weaver_hwservice_27_0 (hal_weaver_hwservice)) +(expandtypeattribute (hal_weaver_hwservice_27_0) true) +(typeattributeset device_27_0 (device)) +(expandtypeattribute (device_27_0) true) +(typeattributeset storage_stub_file_27_0 (storage_stub_file)) +(expandtypeattribute (storage_stub_file_27_0) true) +(typeattributeset sysfs_nfc_power_writable_27_0 (sysfs_nfc_power_writable)) +(expandtypeattribute (sysfs_nfc_power_writable_27_0) true) +(typeattributeset voiceinteraction_service_27_0 (voiceinteraction_service)) +(expandtypeattribute (voiceinteraction_service_27_0) true) +(typeattributeset hal_bootctl_hwservice_27_0 (hal_bootctl_hwservice)) +(expandtypeattribute (hal_bootctl_hwservice_27_0) true) +(typeattributeset gatekeeper_service_27_0 (gatekeeper_service)) +(expandtypeattribute (gatekeeper_service_27_0) true) +(typeattributeset hidl_allocator_hwservice_27_0 (hidl_allocator_hwservice)) +(expandtypeattribute (hidl_allocator_hwservice_27_0) true) +(typeattributeset qtaguid_device_27_0 (qtaguid_device)) +(expandtypeattribute (qtaguid_device_27_0) true) +(typeattributeset netdiag_27_0 (netdiag)) +(expandtypeattribute (netdiag_27_0) true) +(typeattributeset property_socket_27_0 (property_socket)) +(expandtypeattribute (property_socket_27_0) true) +(typeattributeset install_recovery_exec_27_0 (install_recovery_exec)) +(expandtypeattribute (install_recovery_exec_27_0) true) +(typeattributeset vendor_file_27_0 (vendor_file)) +(expandtypeattribute (vendor_file_27_0) true) +(typeattributeset efs_file_27_0 (efs_file)) +(expandtypeattribute (efs_file_27_0) true) +(typeattributeset rild_27_0 (rild)) +(expandtypeattribute (rild_27_0) true) +(typeattributeset device_logging_prop_27_0 (device_logging_prop)) +(expandtypeattribute (device_logging_prop_27_0) true) +(typeattributeset mdnsd_socket_27_0 (mdnsd_socket)) +(expandtypeattribute (mdnsd_socket_27_0) true) +(typeattributeset vendor_overlay_file_27_0 (vendor_overlay_file)) +(expandtypeattribute (vendor_overlay_file_27_0) true) +(typeattributeset icon_file_27_0 (icon_file)) +(expandtypeattribute (icon_file_27_0) true) +(typeattributeset vold_device_27_0 (vold_device)) +(expandtypeattribute (vold_device_27_0) true) +(typeattributeset sysfs_wake_lock_27_0 (sysfs_wake_lock)) +(expandtypeattribute (sysfs_wake_lock_27_0) true) diff --git a/system/etc/selinux/plat_and_mapping_sepolicy.cil.sha256 b/system/etc/selinux/plat_and_mapping_sepolicy.cil.sha256 new file mode 100644 index 0000000000000000000000000000000000000000..876f50ea86129723f0f287978f4b41a783d27014 --- /dev/null +++ b/system/etc/selinux/plat_and_mapping_sepolicy.cil.sha256 @@ -0,0 +1 @@ +d898bce6ea272de7977d7e090073a2af251664577d61e76236d996d04c87fbfa diff --git a/system/etc/selinux/plat_file_contexts b/system/etc/selinux/plat_file_contexts new file mode 100644 index 0000000000000000000000000000000000000000..35c4bab472d681759dbd7dda6fbdd3d6eee85cb7 --- /dev/null +++ b/system/etc/selinux/plat_file_contexts @@ -0,0 +1,431 @@ +/(vendor|system/vendor)(/.*)? u:object_r:vendor_file:s0 +/(vendor|system/vendor)/bin/sh u:object_r:vendor_shell_exec:s0 +/(vendor|system/vendor)/etc(/.*)? u:object_r:vendor_configs_file:s0 +/(vendor|system/vendor)/app(/.*)? u:object_r:vendor_app_file:s0 +/(vendor|system/vendor)/lib(64)?/hw u:object_r:vendor_hal_file:s0 +/(system\/vendor|vendor)/bin/aee_aedv u:object_r:aee_aedv_exec:s0 +/(vendor|system/vendor)/manifest.xml u:object_r:vendor_configs_file:s0 +/(vendor|system/vendor)/overlay(/.*)? u:object_r:vendor_overlay_file:s0 +/(system\/vendor|vendor)/bin/aee_aedv64 u:object_r:aee_aedv_exec:s0 +/(vendor|system/vendor)/framework(/.*)? u:object_r:vendor_framework_file:s0 +/(vendor|system/vendor)/bin/toybox_vendor u:object_r:vendor_toolbox_exec:s0 +/(vendor|system/vendor)/lib(64)?/egl(/.*)? u:object_r:same_process_hal_file:s0 +/(vendor|system/vendor)/lib(64)?/vndk-sp(/.*)? u:object_r:vndk_sp_file:s0 +/(vendor|system/vendor)/compatibility_matrix.xml u:object_r:vendor_configs_file:s0 +/efs(/.*)? u:object_r:efs_file:s0 +/odm(/.*)? u:object_r:system_file:s0 +/oem(/.*)? u:object_r:oemfs:s0 +/res(/.*)? u:object_r:rootfs:s0 +/dev(/.*)? u:object_r:device:s0 +/lib(/.*)? u:object_r:rootfs:s0 +/data(/.*)? u:object_r:system_data_file:s0 +/sbin(/.*)? u:object_r:rootfs:s0 +/init\..* u:object_r:rootfs:s0 +/cores(/.*)? u:object_r:coredump_file:s0 +/cache(/.*)? u:object_r:cache_file:s0 +/data/.layout_version u:object_r:install_data_file:s0 +/fstab\..* u:object_r:rootfs:s0 +/system(/.*)? u:object_r:system_file:s0 +/dev/rtc[0-9] u:object_r:rtc_device:s0 +/storage(/.*)? u:object_r:storage_file:s0 +/dev/mtd(/.*)? u:object_r:mtd_device:s0 +/dev/snd(/.*)? u:object_r:audio_device:s0 +/dev/adf[0-9]* u:object_r:graphics_device:s0 +/dev/tty[0-9]* u:object_r:tty_device:s0 +/dev/uio[0-9]* u:object_r:uio_device:s0 +/dev/vcs[0-9a-z]* u:object_r:vcs_device:s0 +/ueventd\..* u:object_r:rootfs:s0 +/mnt/asec(/.*)? u:object_r:asec_apk_file:s0 +/mnt/user(/.*)? u:object_r:mnt_user_file:s0 +/data/adb(/.*)? u:object_r:adb_data_file:s0 +/data/app(/.*)? u:object_r:apk_data_file:s0 +/data/anr(/.*)? u:object_r:anr_data_file:s0 +/data/drm(/.*)? u:object_r:drm_data_file:s0 +/data/ota(/.*)? u:object_r:ota_data_file:s0 +/dev/i2c-[0-9]+ u:object_r:i2c_device:s0 +/dev/ttyS[0-9]* u:object_r:serial_device:s0 +/dev/modem.* u:object_r:radio_device:s0 +/dev/audio.* u:object_r:audio_device:s0 +/dev/tegra.* u:object_r:video_device:s0 +/dev/input(/.*)? u:object_r:input_device:s0 +/dev/memcg(/.*)? u:object_r:cgroup:s0 +/dev/block(/.*)? u:object_r:block_device:s0 +/dev/video[0-9]* u:object_r:video_device:s0 +/mnt/asec/[^/]+/[^/]+\.zip u:object_r:asec_public_file:s0 +/mnt/asec/[^/]+/lib(/.*)? u:object_r:asec_public_file:s0 +/data/app/[^/]+/oat(/.*)? u:object_r:dalvikcache_data_file:s0 +/mnt/expand(/.*)? u:object_r:mnt_expand_file:s0 +/data/cache(/.*)? u:object_r:cache_file:s0 +/data/media(/.*)? u:object_r:media_rw_data_file:s0 +/dev/socket(/.*)? u:object_r:socket_device:s0 +/dev/cpuctl(/.*)? u:object_r:cpuctl_device:s0 +/dev/akm8973.* u:object_r:sensors_device:s0 +/dev/bus/usb(.*)? u:object_r:usb_device:s0 +/data/md_mon(/.*)? u:object_r:md_monitor_data_file:s0 +/mnt/runtime(/.*)? u:object_r:storage_file:s0 +/data/backup(/.*)? u:object_r:backup_data_file:s0 +/mnt/expand/[^/]+(/.*)? u:object_r:system_data_file:s0 +/mnt/expand/[^/]+/app(/.*)? u:object_r:apk_data_file:s0 +/mnt/expand/[^/]+/media(/.*)? u:object_r:media_rw_data_file:s0 +/mnt/expand/[^/]+/local/tmp(/.*)? u:object_r:shell_data_file:s0 +/mnt/expand/[^/]+/misc/vold(/.*)? u:object_r:vold_data_file:s0 +/mnt/expand/[^/]+/app/[^/]+/oat(/.*)? u:object_r:dalvikcache_data_file:s0 +/mnt/expand/[^/]+/app/vmdl[^/]+\.tmp(/.*)? u:object_r:apk_tmp_file:s0 +/mnt/expand/[^/]+/app/vmdl[^/]+\.tmp/oat(/.*)? u:object_r:dalvikcache_data_file:s0 +/cache/backup(/.*)? u:object_r:cache_private_backup_file:s0 +/mnt/media_rw(/.*)? u:object_r:mnt_media_rw_file:s0 +/dev/fscklogs(/.*)? u:object_r:fscklogs:s0 +/dev/graphics(/.*)? u:object_r:graphics_device:s0 +/dev/spdif_out.* u:object_r:audio_device:s0 +/dev/rpmsg-omx[0-9] u:object_r:rpmsg_device:s0 +/data/misc/net(/.*)? u:object_r:net_data_file:s0 +/data/misc/sms(/.*)? u:object_r:radio_data_file:s0 +/data/misc/vpn(/.*)? u:object_r:vpn_data_file:s0 +/data/app-asec(/.*)? u:object_r:asec_image_file:s0 +/data/misc/adb(/.*)? u:object_r:adb_keys_file:s0 +/data/property(/.*)? u:object_r:property_data_file:s0 +/data/preloads(/.*)? u:object_r:preloads_data_file:s0 +/data/mediadrm(/.*)? u:object_r:media_data_file:s0 +/dev/block/ram[0-9]* u:object_r:ram_device:s0 +/dev/block/dm-[0-9]+ u:object_r:dm_device:s0 +/data/app/vmdl[^/]+\.tmp(/.*)? u:object_r:apk_tmp_file:s0 +/data/app/vmdl[^/]+\.tmp/oat(/.*)? u:object_r:dalvikcache_data_file:s0 +/data/misc/user(/.*)? u:object_r:misc_user_data_file:s0 +/data/misc/wifi(/.*)? u:object_r:wifi_data_file:s0 +/data/misc/logd(/.*)? u:object_r:misc_logd_file:s0 +/data/misc/vold(/.*)? u:object_r:vold_data_file:s0 +/data/bootchart(/.*)? u:object_r:bootchart_data_file:s0 +/cache/recovery(/.*)? u:object_r:cache_recovery_file:s0 +/data/misc/dhcp(/.*)? u:object_r:dhcp_data_file:s0 +/data/local/tmp(/.*)? u:object_r:shell_data_file:s0 +/dev/iio:device[0-9]+ u:object_r:iio_device:s0 +/dev/block/zram[0-9]* u:object_r:ram_device:s0 +/dev/block/loop[0-9]* u:object_r:loop_device:s0 +/dev/block/vold/.+ u:object_r:vold_device:s0 +/data/misc/media(/.*)? u:object_r:media_data_file:s0 +/data/misc/trace(/.*)? u:object_r:method_trace_data_file:s0 +/data/misc/audio(/.*)? u:object_r:audio_data_file:s0 +/data/nativetest(/.*)? u:object_r:nativetest_data_file:s0 +/data/tombstones(/.*)? u:object_r:tombstone_data_file:s0 +/data/system_de/[0-9]+/ringtones(/.*)? u:object_r:ringtone_file:s0 +/data/system_ce/[0-9]+/shortcut_service/bitmaps(/.*)? u:object_r:shortcut_manager_icons:s0 +/data/misc/reboot(/.*)? u:object_r:reboot_data_file:s0 +/data/misc/camera(/.*)? u:object_r:camera_data_file:s0 +/data/app-private(/.*)? u:object_r:apk_private_data_file:s0 +/data/ota_package(/.*)? u:object_r:ota_package_file:s0 +/data/unencrypted(/.*)? u:object_r:unencrypted_data_file:s0 +/data/misc/dhcp-6.8.2(/.*)? u:object_r:dhcp_data_file:s0 +/system/bin/resize.f2fs u:object_r:fsck_exec:s0 +/data/misc/profman(/.*)? u:object_r:profman_dump_data_file:s0 +/data/cache/backup(/.*)? u:object_r:cache_private_backup_file:s0 +/data/nativetest64(/.*)? u:object_r:nativetest_data_file:s0 +/data/dalvik-cache(/.*)? u:object_r:dalvikcache_data_file:s0 +/dev/adf-interface[0-9]*\.[0-9]* u:object_r:graphics_device:s0 +/system/bin/dex2oat(d)? u:object_r:dex2oat_exec:s0 +/dev/socket/wpa_eth[0-9] u:object_r:wpa_socket:s0 +/data/misc/recovery(/.*)? u:object_r:recovery_data_file:s0 +/data/misc/keychain(/.*)? u:object_r:keychain_data_file:s0 +/data/misc/keystore(/.*)? u:object_r:keystore_data_file:s0 +/data/misc/zoneinfo(/.*)? u:object_r:zoneinfo_data_file:s0 +/cache/backup_stage(/.*)? u:object_r:cache_backup_file:s0 +/data/misc/audiohal(/.*)? u:object_r:audiohal_data_file:s0 +/data/misc/bootstat(/.*)? u:object_r:bootstat_data_file:s0 +/data/preloads/demo(/.*)? u:object_r:preloads_media_file:s0 +/data/secure/backup(/.*)? u:object_r:backup_data_file:s0 +/data/system/users/[0-9]+/wallpaper u:object_r:wallpaper_file:s0 +/data/system/users/[0-9]+/photo.png u:object_r:icon_file:s0 +/data/system/users/[0-9]+/fpdata(/.*)? u:object_r:fingerprintd_data_file:s0 +/data/system/users/[0-9]+/wallpaper_lock u:object_r:wallpaper_file:s0 +/data/system/users/[0-9]+/wallpaper_orig u:object_r:wallpaper_file:s0 +/data/system/users/[0-9]+/wallpaper_lock_orig u:object_r:wallpaper_file:s0 +/system/bin/dhcpcd-6.8.2 u:object_r:dhcp_exec:s0 +/system/bin/patchoat(d)? u:object_r:dex2oat_exec:s0 +/dev/socket/wpa_wlan[0-9] u:object_r:wpa_socket:s0 +/data/misc/incidents(/.*)? u:object_r:incident_data_file:s0 +/data/misc/perfprofd(/.*)? u:object_r:perfprofd_data_file:s0 +/data/cache/recovery(/.*)? u:object_r:cache_recovery_file:s0 +/data/misc/bluetooth(/.*)? u:object_r:bluetooth_data_file:s0 +/data/misc/bluedroid(/.*)? u:object_r:bluetooth_data_file:s0 +/data/misc/boottrace(/.*)? u:object_r:boottrace_data_file:s0 +/data/preloads/media(/.*)? u:object_r:preloads_media_file:s0 +/data/resource-cache(/.*)? u:object_r:resourcecache_data_file:s0 +/system/bin/cppreopts.sh u:object_r:cppreopts_exec:s0 +/system/bin/emdlogger[0-9]+ u:object_r:emdlogger_exec:s0 +/data/misc/systemkeys(/.*)? u:object_r:systemkeys_data_file:s0 +/data/misc/gatekeeper(/.*)? u:object_r:gatekeeper_data_file:s0 +/data/system/heapdump(/.*)? u:object_r:heapdump_data_file:s0 +/data/key_provisioning(/.*)? u:object_r:key_install_data_file:s0 +/dev/socket/atci-audio(/.*)? u:object_r:atci_audio_socket:s0 +/data/misc/audioserver(/.*)? u:object_r:audioserver_data_file:s0 +/data/app-private/vmdl.*\.tmp(/.*)? u:object_r:apk_private_tmp_file:s0 +/data/misc/shared_relro(/.*)? u:object_r:shared_relro_file:s0 +/data/misc/wifi/sockets(/.*)? u:object_r:wpa_socket:s0 +/data/misc/profiles/cur(/.*)? u:object_r:user_profile_data_file:s0 +/data/misc/profiles/ref(/.*)? u:object_r:user_profile_data_file:s0 +/dev/adf-overlay-engine[0-9]*\.[0-9]* u:object_r:graphics_device:s0 +/dev/socket/atci-service(/.*)? u:object_r:atci_service_socket:s0 +/dev/socket/atci-serv-fw(/.*)? u:object_r:atci_serv_fw_socket:s0 +/data/misc/update_engine(/.*)? u:object_r:update_engine_data_file:s0 +/data/cache/backup_stage(/.*)? u:object_r:cache_backup_file:s0 +/data/misc/textclassifier(/.*)? u:object_r:textclassifier_data_file:s0 +/data/misc/bluetooth/logs(/.*)? u:object_r:bluetooth_logs_data_file:s0 +/dev/socket/adb_atci_socket(/.*)? u:object_r:adb_atci_socket:s0 +/system/bin/install-recovery.sh u:object_r:install_recovery_exec:s0 +/system/etc/selinux/mapping/[0-9]+\.[0-9]+\.cil u:object_r:sepolicy_file:s0 +/data/misc/wifi/sockets/wpa_ctrl.* u:object_r:system_wpa_socket:s0 +/system/etc/selinux/plat_sepolicy.cil u:object_r:sepolicy_file:s0 +/vendor/etc/selinux/nonplat_sepolicy.cil u:object_r:sepolicy_file:s0 +/vendor/etc/selinux/nonplat_mac_permissions.xml u:object_r:mac_perms_file:s0 +/sys/devices/platform/vibrator@0/leds/vibrator(/.*)? u:object_r:sysfs_vibrator:s0 +/ u:object_r:rootfs:s0 +/d u:object_r:rootfs:s0 +/etc u:object_r:rootfs:s0 +/mnt u:object_r:tmpfs:s0 +/sys u:object_r:sysfs:s0 +/proc u:object_r:rootfs:s0 +/root u:object_r:rootfs:s0 +/init u:object_r:init_exec:s0 +/acct u:object_r:cgroup:s0 +/sdcard u:object_r:rootfs:s0 +/config u:object_r:rootfs:s0 +/dev/eac u:object_r:audio_device:s0 +/dev/mem u:object_r:kmem_device:s0 +/dev/ion u:object_r:ion_device:s0 +/dev/ppp u:object_r:ppp_device:s0 +/dev/cam u:object_r:camera_device:s0 +/charger u:object_r:rootfs:s0 +/dev/tty u:object_r:owntty_device:s0 +/dev/tun u:object_r:tun_device:s0 +/dev/fuse u:object_r:fuse_device:s0 +/dev/full u:object_r:full_device:s0 +/dev/kmem u:object_r:kmem_device:s0 +/dev/kmsg u:object_r:kmsg_device:s0 +/dev/null u:object_r:null_device:s0 +/dev/port u:object_r:port_device:s0 +/dev/ptmx u:object_r:ptmx_device:s0 +/sepolicy u:object_r:sepolicy_file:s0 +/adb_keys u:object_r:adb_keys_file:s0 +/dev/uhid u:object_r:uhid_device:s0 +/dev/zero u:object_r:zero_device:s0 +/dev/pn544 u:object_r:nfc_device:s0 +/dev/pmsg0 u:object_r:pmsg_device:s0 +/dev/alarm u:object_r:alarm_device:s0 +/dev/random u:object_r:random_device:s0 +/dev/ashmem u:object_r:ashmem_device:s0 +/dev/binder u:object_r:binder_device:s0 +/bugreports u:object_r:rootfs:s0 +/verity_key u:object_r:rootfs:s0 +/lost\+found u:object_r:rootfs:s0 +/build\.prop u:object_r:rootfs:s0 +/dev/uinput u:object_r:uhid_device:s0 +/dev/nvhdcp1 u:object_r:video_device:s0 +/dev/mtp_usb u:object_r:mtp_device:s0 +/dev/console u:object_r:console_device:s0 +/postinstall u:object_r:postinstall_mnt_dir:s0 +/dev/urandom u:object_r:random_device:s0 +/dev/hwbinder u:object_r:hwbinder_device:s0 +/dev/keychord u:object_r:keychord_device:s0 +/dev/pvrsrvkm u:object_r:gpu_device:s0 +/default\.prop u:object_r:rootfs:s0 +/dev/watchdog u:object_r:watchdog_device:s0 +/system/bin/sn u:object_r:sn_exec:s0 +/dev/hw_random u:object_r:hw_random_device:s0 +/dev/vndbinder u:object_r:vndbinder_device:s0 +/system/bin/sh -- u:object_r:shell_exec:s0 +/system/bin/aal u:object_r:aal_exec:s0 +/system/bin/mmp u:object_r:mmp_exec:s0 +/dev/kmsg_debug u:object_r:kmsg_debug_device:s0 +/dev/rproc_user u:object_r:rpmsg_device:s0 +/seapp_contexts u:object_r:seapp_contexts_file:s0 +/dev/xt_qtaguid u:object_r:qtaguid_device:s0 +/system/xbin/su u:object_r:su_exec:s0 +/system/bin/vdc u:object_r:vdc_exec:s0 +/system/bin/hdmi u:object_r:hdmi_exec:s0 +/system/bin/kisd u:object_r:kisd_exec:s0 +/dev/socket/mtpd u:object_r:mtpd_socket:s0 +/dev/socket/rild u:object_r:rild_socket:s0 +/dev/socket/netd u:object_r:netd_socket:s0 +/dev/socket/lmkd u:object_r:lmkd_socket:s0 +/dev/socket/mdns u:object_r:mdns_socket:s0 +/dev/socket/logd u:object_r:logd_socket:s0 +/dev/socket/adbd u:object_r:adbd_socket:s0 +/selinux_version u:object_r:rootfs:s0 +/system/bin/vold u:object_r:vold_exec:s0 +/system/bin/netd u:object_r:netd_exec:s0 +/dev/socket/vold u:object_r:vold_socket:s0 +/system/bin/mtpd u:object_r:mtp_exec:s0 +/system/bin/pppd u:object_r:ppp_exec:s0 +/system/bin/lmkd u:object_r:lmkd_exec:s0 +/system/bin/logd u:object_r:logd_exec:s0 +/system/bin/adbd u:object_r:adbd_exec:s0 +/system/bin/atcid u:object_r:atcid_exec:s0 +/dev/loop-control u:object_r:loop_control_device:s0 +/dev/socket/logdr u:object_r:logdr_socket:s0 +/dev/socket/logdw u:object_r:logdw_socket:s0 +/dev/socket/mdnsd u:object_r:mdnsd_socket:s0 +/system/bin/clatd u:object_r:clatd_exec:s0 +/system/bin/mdnsd u:object_r:mdnsd_exec:s0 +/system/bin/idmap u:object_r:idmap_exec:s0 +/system/bin/blkid u:object_r:blkid_exec:s0 +/system/bin/em_svr u:object_r:em_svr_exec:s0 +/dev/socket/racoon u:object_r:racoon_socket:s0 +/dev/socket/cryptd u:object_r:vold_socket:s0 +/dev/device-mapper u:object_r:dm_device:s0 +/dev/accelerometer u:object_r:sensors_device:s0 +/plat_sepolicy\.cil u:object_r:sepolicy_file:s0 +/dev/socket/zygote u:object_r:zygote_socket:s0 +/dev/usb_accessory u:object_r:usbaccessory_device:s0 +/system/bin/atrace u:object_r:atrace_exec:s0 +/system/bin/mke2fs u:object_r:e2fs_exec:s0 +/system/bin/racoon u:object_r:racoon_exec:s0 +/system/bin/sdcard u:object_r:sdcardd_exec:s0 +/system/bin/dhcpcd u:object_r:dhcp_exec:s0 +/system/bin/sgdisk u:object_r:sgdisk_exec:s0 +/system/bin/vr_hwc u:object_r:vr_hwc_exec:s0 +/system/bin/toybox -- u:object_r:toolbox_exec:s0 +/system/bin/logcat -- u:object_r:logcat_exec:s0 +/system/bin/run-as -- u:object_r:runas_exec:s0 +/system/bin/e2fsck -- u:object_r:fsck_exec:s0 +/system/bin/aee_aed u:object_r:aee_aed_exec:s0 +/system/bin/netdiag u:object_r:netdiag_exec:s0 +/system/bin/factory u:object_r:factory_exec:s0 +/dev/event-log-tags u:object_r:runtime_event_log_tags_file:s0 +/dev/socket/fwmarkd u:object_r:fwmarkd_socket:s0 +/plat_file_contexts u:object_r:file_contexts_file:s0 +/dev/socket/uncrypt u:object_r:uncrypt_socket:s0 +/dev/__properties__ u:object_r:properties_device:s0 +/system/bin/dnsmasq u:object_r:dnsmasq_exec:s0 +/system/bin/healthd u:object_r:healthd_exec:s0 +/system/bin/uncrypt u:object_r:uncrypt_exec:s0 +/system/bin/bspatch u:object_r:update_engine_exec:s0 +/system/bin/profman u:object_r:profman_exec:s0 +/system/bin/tune2fs -- u:object_r:fsck_exec:s0 +/system/bin/logcatd -- u:object_r:logcat_exec:s0 +/system/bin/toolbox -- u:object_r:toolbox_exec:s0 +/system/bin/thermald u:object_r:thermald_exec:s0 +/system/bin/mdlogger u:object_r:mdlogger_exec:s0 +/system/bin/meta_tst u:object_r:meta_tst_exec:s0 +/system/bin/pre_meta u:object_r:pre_meta_exec:s0 +/plat_seapp_contexts u:object_r:seapp_contexts_file:s0 +/vndservice_contexts u:object_r:vndservice_contexts_file:s0 +/system/bin/incident u:object_r:incident_exec:s0 +/system/bin/wificond u:object_r:wificond_exec:s0 +/system/bin/bootstat u:object_r:bootstat_exec:s0 +/system/bin/keystore u:object_r:keystore_exec:s0 +/system/bin/installd u:object_r:installd_exec:s0 +/system/bin/storaged u:object_r:storaged_exec:s0 +/system/bin/resize2fs u:object_r:fsck_exec:s0 +/system/bin/met_log_d u:object_r:met_log_d_exec:s0 +/system/bin/ppl_agent u:object_r:ppl_agent_exec:s0 +/system/bin/sensorcal u:object_r:sensorcal_exec:s0 +/system/bin/aee_aed64 u:object_r:aee_aed_exec:s0 +/system/bin/cmddumper u:object_r:cmddumper_exec:s0 +/dev/socket/dumpstate u:object_r:dumpstate_socket:s0 +/dev/socket/dnsproxyd u:object_r:dnsproxyd_socket:s0 +/mapping_sepolicy\.cil u:object_r:sepolicy_file:s0 +/nonplat_sepolicy\.cil u:object_r:sepolicy_file:s0 +/system/bin/drmserver u:object_r:drmserver_exec:s0 +/system/bin/incidentd u:object_r:incidentd_exec:s0 +/system/bin/dumpstate u:object_r:dumpstate_exec:s0 +/system/bin/e2fsdroid u:object_r:e2fs_exec:s0 +/system/bin/fsck\.f2fs -- u:object_r:fsck_exec:s0 +/system/bin/make_f2fs -- u:object_r:e2fs_exec:s0 +/system/bin/md_monitor u:object_r:md_monitor_exec:s0 +/dev/socket/rild-debug u:object_r:rild_debug_socket:s0 +/plat_service_contexts u:object_r:service_contexts_file:s0 +/nonplat_file_contexts u:object_r:file_contexts_file:s0 +/system/bin/bufferhubd u:object_r:bufferhubd_exec:s0 +/system/xbin/perfprofd u:object_r:perfprofd_exec:s0 +/system/bin/logwrapper u:object_r:system_file:s0 +/system/bin/tombstoned u:object_r:tombstoned_exec:s0 +/system/bin/fsck_msdos -- u:object_r:fsck_exec:s0 +/system/bin/usp_service u:object_r:usp_service_exec:s0 +/nonplat_seapp_contexts u:object_r:seapp_contexts_file:s0 +/plat_property_contexts u:object_r:property_contexts_file:s0 +/system/bin/mediaserver u:object_r:mediaserver_exec:s0 +/system/bin/audioserver u:object_r:audioserver_exec:s0 +/system/bin/gatekeeperd u:object_r:gatekeeperd_exec:s0 +/system/bin/tzdatacheck u:object_r:tzdatacheck_exec:s0 +/system/bin/atci_service u:object_r:atci_service_exec:s0 +/system/bin/kpoc_charger u:object_r:kpoc_charger_exec:s0 +/system/bin/mobile_log_d u:object_r:mobile_log_d_exec:s0 +/plat_hwservice_contexts u:object_r:hwservice_contexts_file:s0 +/system/bin/performanced u:object_r:performanced_exec:s0 +/system/bin/mediametrics u:object_r:mediametrics_exec:s0 +/system/bin/cameraserver u:object_r:cameraserver_exec:s0 +/system/bin/inputflinger u:object_r:inputflinger_exec:s0 +/system/bin/fingerprintd u:object_r:fingerprintd_exec:s0 +/system/bin/crash_dump32 u:object_r:crash_dump_exec:s0 +/system/bin/crash_dump64 u:object_r:crash_dump_exec:s0 +/system/bin/guiext-server u:object_r:guiext-server_exec:s0 +/system/bin/aee_dumpstate u:object_r:dumpstate_exec:s0 +/data/system/ndebugsocket u:object_r:system_ndebug_socket:s0 +/dev/snd/audio_seq_device u:object_r:audio_seq_device:s0 +/nonplat_service_contexts u:object_r:nonplat_service_contexts_file:s0 +/system/bin/app_process32 u:object_r:zygote_exec:s0 +/system/bin/app_process64 u:object_r:zygote_exec:s0 +/system/bin/bootanimation u:object_r:bootanim_exec:s0 +/system/bin/update_engine u:object_r:update_engine_exec:s0 +/system/bin/batterywarning u:object_r:batterywarning_exec:s0 +/nonplat_property_contexts u:object_r:property_contexts_file:s0 +/system/bin/surfaceflinger u:object_r:surfaceflinger_exec:s0 +/system/bin/mediadrmserver u:object_r:mediadrmserver_exec:s0 +/system/bin/servicemanager u:object_r:servicemanager_exec:s0 +/dev/socket/webview_zygote u:object_r:webview_zygote_socket:s0 +/system/bin/otapreopt_slot u:object_r:otapreopt_slot_exec:s0 +/system/bin/mediaextractor u:object_r:mediaextractor_exec:s0 +/system/bin/dexoptanalyzer u:object_r:dexoptanalyzer_exec:s0 +/system/bin/GoogleOtaBinder u:object_r:GoogleOtaBinder_exec:s0 +/system/bin/dm_agent_binder u:object_r:dm_agent_binder_exec:s0 +/system/bin/storagemanagerd u:object_r:storagemanagerd_exec:s0 +/dev/snd/audio_timer_device u:object_r:audio_timer_device:s0 +/nonplat_hwservice_contexts u:object_r:hwservice_contexts_file:s0 +/system/bin/update_verifier u:object_r:update_verifier_exec:s0 +/system/bin/thermalserviced u:object_r:thermalserviced_exec:s0 +/system/bin/mtk_advcamserver u:object_r:mtk_advcamserver_exec:s0 +/system/bin/mtkbootanimation u:object_r:mtkbootanimation_exec:s0 +/system/bin/thermalindicator u:object_r:thermalindicator_exec:s0 +/dev/socket/property_service u:object_r:property_socket:s0 +/dev/socket/tombstoned_crash u:object_r:tombstoned_crash_socket:s0 +/system/bin/hwservicemanager u:object_r:hwservicemanager_exec:s0 +/dev/socket/zygote_secondary u:object_r:zygote_socket:s0 +/system/bin/otapreopt_chroot u:object_r:otapreopt_chroot_exec:s0 +/system/bin/recovery-persist u:object_r:recovery_persist_exec:s0 +/system/bin/recovery-refresh u:object_r:recovery_refresh_exec:s0 +/system/bin/webview_zygote32 u:object_r:webview_zygote_exec:s0 +/system/bin/webview_zygote64 u:object_r:webview_zygote_exec:s0 +/system/bin/preopt2cachename u:object_r:preopt2cachename_exec:s0 +/system/bin/virtual_touchpad u:object_r:virtual_touchpad_exec:s0 +/system/bin/boot_logo_updater u:object_r:boot_logo_updater_exec:s0 +/data/misc/bluedroid/\.a2dp_ctrl u:object_r:bluetooth_socket:s0 +/data/misc/bluedroid/\.a2dp_data u:object_r:bluetooth_socket:s0 +/system/bin/audiocmdservice_atci u:object_r:audiocmdservice_atci_exec:s0 +/system/bin/netutils-wrapper-1\.0 u:object_r:netutils_wrapper_exec:s0 +/dev/socket/tombstoned_intercept u:object_r:tombstoned_intercept_socket:s0 +/dev/socket/pdx/system/vr/display u:object_r:pdx_display_dir:s0 +/dev/socket/pdx/system/buffer_hub u:object_r:pdx_bufferhub_dir:s0 +/dev/socket/tombstoned_java_trace u:object_r:tombstoned_java_trace_socket:s0 +/system/bin/program_binary_service u:object_r:program_binary_exec:s0 +/dev/socket/pdx/system/performance u:object_r:pdx_performance_dir:s0 +/system/etc/selinux/plat_file_contexts u:object_r:file_contexts_file:s0 +/vendor/etc/selinux/vndservice_contexts u:object_r:vndservice_contexts_file:s0 +/dev/socket/pdx/system/vr/display/vsync u:object_r:pdx_display_vsync_endpoint_socket:s0 +/system/etc/selinux/plat_seapp_contexts u:object_r:seapp_contexts_file:s0 +/vendor/etc/selinux/precompiled_sepolicy u:object_r:sepolicy_file:s0 +/dev/socket/pdx/system/vr/display/client u:object_r:pdx_display_client_endpoint_socket:s0 +/dev/socket/pdx/system/buffer_hub/client u:object_r:pdx_bufferhub_client_endpoint_socket:s0 +/vendor/etc/selinux/nonplat_file_contexts u:object_r:file_contexts_file:s0 +/dev/socket/pdx/system/vr/display/manager u:object_r:pdx_display_manager_endpoint_socket:s0 +/dev/socket/pdx/system/performance/client u:object_r:pdx_performance_client_endpoint_socket:s0 +/system/etc/selinux/plat_service_contexts u:object_r:service_contexts_file:s0 +/vendor/etc/selinux/nonplat_seapp_contexts u:object_r:seapp_contexts_file:s0 +/system/etc/selinux/plat_property_contexts u:object_r:property_contexts_file:s0 +/system/etc/selinux/plat_hwservice_contexts u:object_r:hwservice_contexts_file:s0 +/vendor/etc/selinux/nonplat_service_contexts u:object_r:nonplat_service_contexts_file:s0 +/dev/socket/pdx/system/vr/display/screenshot u:object_r:pdx_display_screenshot_endpoint_socket:s0 +/system/etc/selinux/plat_mac_permissions\.xml u:object_r:mac_perms_file:s0 +/vendor/etc/selinux/nonplat_property_contexts u:object_r:property_contexts_file:s0 +/vendor/etc/selinux/nonplat_hwservice_contexts u:object_r:hwservice_contexts_file:s0 +/system/bin/hw/android\.hidl\.allocator@1\.0-service u:object_r:hal_allocator_default_exec:s0 +/system/etc/selinux/plat_and_mapping_sepolicy\.cil\.sha256 u:object_r:sepolicy_file:s0 +/vendor/etc/selinux/precompiled_sepolicy\.plat_and_mapping\.sha256 u:object_r:sepolicy_file:s0 diff --git a/system/etc/selinux/plat_hwservice_contexts b/system/etc/selinux/plat_hwservice_contexts new file mode 100644 index 0000000000000000000000000000000000000000..e304495532ccb8cc3f9fc99978ca212136c8fbb2 --- /dev/null +++ b/system/etc/selinux/plat_hwservice_contexts @@ -0,0 +1,57 @@ +android.frameworks.displayservice::IDisplayService u:object_r:fwk_display_hwservice:s0 +android.frameworks.schedulerservice::ISchedulingPolicyService u:object_r:fwk_scheduler_hwservice:s0 +android.frameworks.sensorservice::ISensorManager u:object_r:fwk_sensor_hwservice:s0 +android.hardware.audio.effect::IEffectsFactory u:object_r:hal_audio_hwservice:s0 +android.hardware.audio::IDevicesFactory u:object_r:hal_audio_hwservice:s0 +android.hardware.biometrics.fingerprint::IBiometricsFingerprint u:object_r:hal_fingerprint_hwservice:s0 +android.hardware.bluetooth::IBluetoothHci u:object_r:hal_bluetooth_hwservice:s0 +android.hardware.boot::IBootControl u:object_r:hal_bootctl_hwservice:s0 +android.hardware.broadcastradio::IBroadcastRadioFactory u:object_r:hal_broadcastradio_hwservice:s0 +android.hardware.camera.provider::ICameraProvider u:object_r:hal_camera_hwservice:s0 +android.hardware.configstore::ISurfaceFlingerConfigs u:object_r:hal_configstore_ISurfaceFlingerConfigs:s0 +android.hardware.contexthub::IContexthub u:object_r:hal_contexthub_hwservice:s0 +android.hardware.cas::IMediaCasService u:object_r:hal_cas_hwservice:s0 +android.hardware.drm::ICryptoFactory u:object_r:hal_drm_hwservice:s0 +android.hardware.drm::IDrmFactory u:object_r:hal_drm_hwservice:s0 +android.hardware.dumpstate::IDumpstateDevice u:object_r:hal_dumpstate_hwservice:s0 +android.hardware.gatekeeper::IGatekeeper u:object_r:hal_gatekeeper_hwservice:s0 +android.hardware.gnss::IGnss u:object_r:hal_gnss_hwservice:s0 +android.hardware.graphics.allocator::IAllocator u:object_r:hal_graphics_allocator_hwservice:s0 +android.hardware.graphics.composer::IComposer u:object_r:hal_graphics_composer_hwservice:s0 +android.hardware.graphics.mapper::IMapper u:object_r:hal_graphics_mapper_hwservice:s0 +android.hardware.health::IHealth u:object_r:hal_health_hwservice:s0 +android.hardware.ir::IConsumerIr u:object_r:hal_ir_hwservice:s0 +android.hardware.keymaster::IKeymasterDevice u:object_r:hal_keymaster_hwservice:s0 +android.hardware.light::ILight u:object_r:hal_light_hwservice:s0 +android.hardware.media.omx::IOmx u:object_r:hal_omx_hwservice:s0 +android.hardware.media.omx::IOmxStore u:object_r:hal_omx_hwservice:s0 +android.hardware.memtrack::IMemtrack u:object_r:hal_memtrack_hwservice:s0 +android.hardware.neuralnetworks::IDevice u:object_r:hal_neuralnetworks_hwservice:s0 +android.hardware.nfc::INfc u:object_r:hal_nfc_hwservice:s0 +android.hardware.oemlock::IOemLock u:object_r:hal_oemlock_hwservice:s0 +android.hardware.power::IPower u:object_r:hal_power_hwservice:s0 +android.hardware.radio.deprecated::IOemHook u:object_r:hal_telephony_hwservice:s0 +android.hardware.radio::IRadio u:object_r:hal_telephony_hwservice:s0 +android.hardware.radio::ISap u:object_r:hal_telephony_hwservice:s0 +android.hardware.renderscript::IDevice u:object_r:hal_renderscript_hwservice:s0 +android.hardware.sensors::ISensors u:object_r:hal_sensors_hwservice:s0 +android.hardware.soundtrigger::ISoundTriggerHw u:object_r:hal_audio_hwservice:s0 +android.hardware.thermal::IThermal u:object_r:hal_thermal_hwservice:s0 +android.hardware.thermal::IThermalCallback u:object_r:thermalcallback_hwservice:s0 +android.hardware.tv.cec::IHdmiCec u:object_r:hal_tv_cec_hwservice:s0 +android.hardware.tv.input::ITvInput u:object_r:hal_tv_input_hwservice:s0 +android.hardware.usb::IUsb u:object_r:hal_usb_hwservice:s0 +android.hardware.vibrator::IVibrator u:object_r:hal_vibrator_hwservice:s0 +android.hardware.vr::IVr u:object_r:hal_vr_hwservice:s0 +android.hardware.weaver::IWeaver u:object_r:hal_weaver_hwservice:s0 +android.hardware.wifi::IWifi u:object_r:hal_wifi_hwservice:s0 +android.hardware.wifi.offload::IOffload u:object_r:hal_wifi_offload_hwservice:s0 +android.hardware.wifi.supplicant::ISupplicant u:object_r:hal_wifi_supplicant_hwservice:s0 +android.hidl.allocator::IAllocator u:object_r:hidl_allocator_hwservice:s0 +android.hidl.base::IBase u:object_r:hidl_base_hwservice:s0 +android.hidl.manager::IServiceManager u:object_r:hidl_manager_hwservice:s0 +android.hidl.memory::IMapper u:object_r:hidl_memory_hwservice:s0 +android.hidl.token::ITokenManager u:object_r:hidl_token_hwservice:s0 +android.system.net.netd::INetd u:object_r:system_net_netd_hwservice:s0 +android.system.wifi.keystore::IKeystore u:object_r:system_wifi_keystore_hwservice:s0 +* u:object_r:default_android_hwservice:s0 diff --git a/system/etc/selinux/plat_mac_permissions.xml b/system/etc/selinux/plat_mac_permissions.xml new file mode 100644 index 0000000000000000000000000000000000000000..cc1a085802e8ae856b5eec9876a155b9fa3db33d --- /dev/null +++ b/system/etc/selinux/plat_mac_permissions.xml @@ -0,0 +1 @@ +<?xml version="1.0" encoding="iso-8859-1"?><!-- AUTOGENERATED FILE DO NOT MODIFY --><policy><signer signature="308203d9308202c1a003020102020900abdcbb74bad1625a300d06092a864886f70d01010b0500308182310b300906035504061302434e3112301006035504080c094775616e67446f6e673111300f06035504070c085368656e5a68656e310f300d060355040a0c064b657974616b310c300a060355040b0c03574344310d300b06035504030c0464656d6f311e301c06092a864886f70d010901160f64656d6f406b657974616b2e636f6d301e170d3138303131373032333131325a170d3435303630343032333131325a308182310b300906035504061302434e3112301006035504080c094775616e67446f6e673111300f06035504070c085368656e5a68656e310f300d060355040a0c064b657974616b310c300a060355040b0c03574344310d300b06035504030c0464656d6f311e301c06092a864886f70d010901160f64656d6f406b657974616b2e636f6d30820122300d06092a864886f70d01010105000382010f003082010a0282010100e06bf057d4d629c5e22edc49e022da36bc04e4e13a1571fd37b9a24cdc9640d3921a02923dd6844bbd433bad1b27f8a1d5cf4f282e2ad0d3cc1291180fb3ad134756026aee26accbad7c599e88d319df11218bdbc280fa9bc0e9488169bcf77a4d3ea10ef57fa1152e1152c5c12724e6abdd3ce42fb414f0084ef576addc6cf0ea3cee1b0d6080a647d6a0a320c4c73a6de706db32f5f71e769ac7ba601fbc5f199fda70b6b452c8025404ea0f45a8fa3404d44f004ab3739bbb6e49c6a0dcb1ce3024a6095c1a356390d9fe485e11b11ec848ff1552740ac724083b436fcb0ab432257b45c2860e8955a249507a72a968f59bb9e4e229a1d6b9066d3713de390203010001a350304e301d0603551d0e0416041467a2eea8a36025e863472de3664fca85f25a8bcb301f0603551d2304183016801467a2eea8a36025e863472de3664fca85f25a8bcb300c0603551d13040530030101ff300d06092a864886f70d01010b05000382010100a132c40bb6cf08aaff9f8316100b2c1f3cedd80c62d238f03a2e9c55ec74b66c7ffe6e419908a8f973a192089e6600cf3e85432dd52b47f561c653a12da84cd2534f0b4eebc46d56b6932c049bdcc79c4fae023e909e94f36e4052f2b8c19a77cdf149d1d42fee774af7bf758d83ecbc7293f91182bb6cc7c9b04f3851841a05de917e95dd995ac6be15b1eb4db3578beed48a18264b67221c944ca6ddd4fafcbea6c63f2bf3b5515cb30cb2b9d95f4bff0061733264a601f9222d41e070e957d91f2e5a66916079ffffd2cdf83ea76d5f7fbcd44dfa3937c43a4f03d470a99b5e66f80ec2aa2e6e2e09d66903aa3fec9b4fe8f4af69924f805b2775ed593300"><seinfo value="platform"/></signer><signer signature="308203d9308202c1a003020102020900ea1789e9eceda0ac300d06092a864886f70d01010b0500308182310b300906035504061302434e3112301006035504080c094775616e67446f6e673111300f06035504070c085368656e5a68656e310f300d060355040a0c064b657974616b310c300a060355040b0c03574344310d300b06035504030c0464656d6f311e301c06092a864886f70d010901160f64656d6f406b657974616b2e636f6d301e170d3138303131373032333132335a170d3435303630343032333132335a308182310b300906035504061302434e3112301006035504080c094775616e67446f6e673111300f06035504070c085368656e5a68656e310f300d060355040a0c064b657974616b310c300a060355040b0c03574344310d300b06035504030c0464656d6f311e301c06092a864886f70d010901160f64656d6f406b657974616b2e636f6d30820122300d06092a864886f70d01010105000382010f003082010a0282010100cc5918d4e579d1b63e6d9dcc8d8e3da59334215ba653145a8684fd63579d6a8c1effc5bf8e11e8d6c57ebe12910102fdf8cd161821efc5e0f766bfb20afc8601a1f1c546e04738869c12e80c11bee310b1d327cb88a4f608ab9a506263d458e05c24956798aa797486f3680ed4b5399a2454adbfe9246938ea96d180395178a5f97042c35f6b539d3edf63d9e1c6416383bd9d360041accab7b158354652f24287cfd9d32963f573ba3e963c6f2d3f60514791e9c98bdb1b4c52e142feae85cabef2272f495f8c77c9c831946241fe86c6fdf4406bc8f96b8bda00cb328b2af32e2b7b0bf9cde7f1e3a7e62b57df229bcb01f65bc7d9ad58050acd39558629b30203010001a350304e301d0603551d0e04160414aa08a86b47b8f8529cf8ab4f1980fd7df8502ac2301f0603551d23041830168014aa08a86b47b8f8529cf8ab4f1980fd7df8502ac2300c0603551d13040530030101ff300d06092a864886f70d01010b050003820101003c2aa6778a82e5acaea916836429de95ff860dec6c287e21d9bf8843662bdf1d37a4df246132ac5dacd33e4c4ccfb8714ee5a89a3b9d298332546130e8df3b4f6bf119b00916d6fb747678195a7584b9dd8c94d2544349fac0032fe9a9e3025730aab2b11deeab1b635f85b5263f507e9997dd5aac1ab74a713457297e376537027c1fe799771fd5bdf32243d81604f72f9ee7e0cc45b7a2f23b7a7c9df9f736d482280d7d0e86fa77303042aaef2cb9ffcadba9550b6e49aa4eb475d01e6fe759d0e690ebaaff2ac2804ca7d333ab3e140b52fb6311324b452637096156150f662baa07ecad360883ff2d9da5cb12c5ca400c50ef0b695501c6623fc7d23d32"><seinfo value="media"/></signer></policy> \ No newline at end of file diff --git a/system/etc/selinux/plat_property_contexts b/system/etc/selinux/plat_property_contexts new file mode 100644 index 0000000000000000000000000000000000000000..f24ff8615bd4e8d6bb6061cc3bdcc5779caae2e3 --- /dev/null +++ b/system/etc/selinux/plat_property_contexts @@ -0,0 +1,85 @@ +bluetooth. u:object_r:bluetooth_prop:s0 +config. u:object_r:config_prop:s0 +ctl.atcid-daemon-u u:object_r:ctl_atcid-daemon-u_prop:s0 +ctl.atci_service u:object_r:ctl_atci_service_prop:s0 +ctl.bootanim u:object_r:ctl_bootanim_prop:s0 +ctl.bugreport u:object_r:ctl_bugreport_prop:s0 +ctl.console u:object_r:ctl_console_prop:s0 +ctl.dumpstate u:object_r:ctl_dumpstate_prop:s0 +ctl.fuse_ u:object_r:ctl_fuse_prop:s0 +ctl.mdnsd u:object_r:ctl_mdnsd_prop:s0 +ctl.ril-daemon u:object_r:ctl_rildaemon_prop:s0 +ctl. u:object_r:ctl_default_prop:s0 +dalvik. u:object_r:dalvik_prop:s0 +debug.db. u:object_r:debuggerd_prop:s0 +debug. u:object_r:debug_prop:s0 +dev. u:object_r:system_prop:s0 +dhcp.bt-pan.result u:object_r:pan_result_prop:s0 +dhcp. u:object_r:dhcp_prop:s0 +dumpstate.options u:object_r:dumpstate_options_prop:s0 +dumpstate. u:object_r:dumpstate_prop:s0 +gsm. u:object_r:radio_prop:s0 +hwservicemanager. u:object_r:hwservicemanager_prop:s0 +hw. u:object_r:system_prop:s0 +logd.logpersistd u:object_r:logpersistd_logging_prop:s0 +log.tag u:object_r:log_tag_prop:s0 +log.tag.WifiHAL u:object_r:wifi_log_prop:s0 +log. u:object_r:log_prop:s0 +net.cdma u:object_r:net_radio_prop:s0 +net.dns u:object_r:net_dns_prop:s0 +net.gprs u:object_r:net_radio_prop:s0 +net.lte u:object_r:net_radio_prop:s0 +net.ppp u:object_r:net_radio_prop:s0 +net.qmi u:object_r:net_radio_prop:s0 +net.rmnet u:object_r:net_radio_prop:s0 +net. u:object_r:system_prop:s0 +nfc. u:object_r:nfc_prop:s0 +persist.audio. u:object_r:audio_prop:s0 +persist.bluetooth. u:object_r:bluetooth_prop:s0 +persist.debug. u:object_r:persist_debug_prop:s0 +persist.logd.logpersistd u:object_r:logpersistd_logging_prop:s0 +persist.logd.security u:object_r:device_logging_prop:s0 +persist.logd. u:object_r:logd_prop:s0 +persist.log.tag u:object_r:log_tag_prop:s0 +persist.mdmmonitor u:object_r:mdmmonitor_prop:s0 +persist.mmc. u:object_r:mmc_prop:s0 +persist.netd.stable_secret u:object_r:netd_stable_secret_prop:s0 +persist.radio u:object_r:radio_prop:s0 +persist.security. u:object_r:system_prop:s0 +persist.service.bdroid. u:object_r:bluetooth_prop:s0 +persist.service. u:object_r:system_prop:s0 +persist.sys.audit_safemode u:object_r:safemode_prop:s0 +persist.sys.safemode u:object_r:safemode_prop:s0 +persist.sys. u:object_r:system_prop:s0 +persist.vendor.overlay. u:object_r:overlay_prop:s0 +ril. u:object_r:radio_prop:s0 +ro.boot.btmacaddr u:object_r:bluetooth_prop:s0 +ro.boot.serialno u:object_r:serialno_prop:s0 +ro.boottime. u:object_r:boottime_prop:s0 +ro.boot.vendor.overlay. u:object_r:overlay_prop:s0 +ro.bt. u:object_r:bluetooth_prop:s0 +ro.build.fingerprint u:object_r:fingerprint_prop:s0 +ro.config. u:object_r:config_prop:s0 +ro.crypto. u:object_r:vold_prop:s0 +ro.dalvik. u:object_r:dalvik_prop:s0 +ro.device_owner u:object_r:device_logging_prop:s0 +ro.hw. u:object_r:system_prop:s0 +ro.persistent_properties.ready u:object_r:persistent_properties_ready_prop:s0 +ro.ril. u:object_r:radio_prop:s0 +ro.runtime.firstboot u:object_r:firstboot_prop:s0 +ro.runtime. u:object_r:system_prop:s0 +ro.serialno u:object_r:serialno_prop:s0 +ro.sys.safemode u:object_r:safemode_prop:s0 +security.perf_harden u:object_r:shell_prop:s0 +selinux.restorecon_recursive u:object_r:restorecon_prop:s0 +service.adb.root u:object_r:shell_prop:s0 +service.adb.tcp.port u:object_r:shell_prop:s0 +service. u:object_r:system_prop:s0 +sys.cppreopt u:object_r:cppreopt_prop:s0 +sys.powerctl u:object_r:powerctl_prop:s0 +sys. u:object_r:system_prop:s0 +sys.usb.config u:object_r:system_radio_prop:s0 +sys.usb.ffs. u:object_r:ffs_prop:s0 +* u:object_r:default_prop:s0 +vold. u:object_r:vold_prop:s0 +wlan. u:object_r:wifi_prop:s0 diff --git a/system/etc/selinux/plat_seapp_contexts b/system/etc/selinux/plat_seapp_contexts new file mode 100644 index 0000000000000000000000000000000000000000..30bc624570f8f14fa664199f35d67942b4c1fc6c --- /dev/null +++ b/system/etc/selinux/plat_seapp_contexts @@ -0,0 +1,14 @@ +isSystemServer=true domain=system_server +user=system seinfo=platform domain=system_app type=system_app_data_file +user=bluetooth seinfo=platform domain=bluetooth type=bluetooth_data_file +user=nfc seinfo=platform domain=nfc type=nfc_data_file +user=radio seinfo=platform domain=radio type=radio_data_file +user=shared_relro domain=shared_relro +user=shell seinfo=platform domain=shell type=shell_data_file +user=_isolated domain=isolated_app levelFrom=user +user=_app seinfo=media domain=mediaprovider name=android.process.media type=app_data_file levelFrom=user +user=_app seinfo=platform domain=platform_app type=app_data_file levelFrom=user +user=_app isV2App=true isEphemeralApp=true domain=ephemeral_app type=app_data_file levelFrom=user +user=_app isPrivApp=true domain=priv_app type=app_data_file levelFrom=user +user=_app minTargetSdkVersion=26 domain=untrusted_app type=app_data_file levelFrom=user +user=_app domain=untrusted_app_25 type=app_data_file levelFrom=user diff --git a/system/etc/selinux/plat_sepolicy.cil b/system/etc/selinux/plat_sepolicy.cil new file mode 100644 index 0000000000000000000000000000000000000000..423a2d766f6cf0f360c266a29991b3ac0552f677 --- /dev/null +++ b/system/etc/selinux/plat_sepolicy.cil @@ -0,0 +1,14594 @@ +(role object_r) +(role auditadm_r) +(role secadm_r) +(typeattribute cil_gen_require) +(roleattribute cil_gen_require) +(handleunknown deny) +(mls true) +(policycap network_peer_controls) +(policycap open_perms) +(policycap extended_socket_class) +(sid devnull) +(sidcontext devnull (u object_r null_device ((s0) (s0)))) +(sid scmp_packet) +(sidcontext scmp_packet (u object_r unlabeled ((s0) (s0)))) +(sid policy) +(sidcontext policy (u object_r unlabeled ((s0) (s0)))) +(sid kmod) +(sidcontext kmod (u object_r unlabeled ((s0) (s0)))) +(sid sysctl_dev) +(sidcontext sysctl_dev (u object_r unlabeled ((s0) (s0)))) +(sid sysctl_vm) +(sidcontext sysctl_vm (u object_r unlabeled ((s0) (s0)))) +(sid sysctl_net_unix) +(sidcontext sysctl_net_unix (u object_r unlabeled ((s0) (s0)))) +(sid sysctl_net) +(sidcontext sysctl_net (u object_r unlabeled ((s0) (s0)))) +(sid sysctl_kernel) +(sidcontext sysctl_kernel (u object_r unlabeled ((s0) (s0)))) +(sid sysctl_fs) +(sidcontext sysctl_fs (u object_r unlabeled ((s0) (s0)))) +(sid sysctl) +(sidcontext sysctl (u object_r proc ((s0) (s0)))) +(sid sysctl_modprobe) +(sidcontext sysctl_modprobe (u object_r unlabeled ((s0) (s0)))) +(sid tcp_socket) +(sidcontext tcp_socket (u object_r unlabeled ((s0) (s0)))) +(sid icmp_socket) +(sidcontext icmp_socket (u object_r unlabeled ((s0) (s0)))) +(sid igmp_packet) +(sidcontext igmp_packet (u object_r unlabeled ((s0) (s0)))) +(sid node) +(sidcontext node (u object_r node ((s0) (s0)))) +(sid netmsg) +(sidcontext netmsg (u object_r unlabeled ((s0) (s0)))) +(sid netif) +(sidcontext netif (u object_r netif ((s0) (s0)))) +(sid port) +(sidcontext port (u object_r port ((s0) (s0)))) +(sid any_socket) +(sidcontext any_socket (u object_r unlabeled ((s0) (s0)))) +(sid init) +(sidcontext init (u object_r unlabeled ((s0) (s0)))) +(sid file_labels) +(sidcontext file_labels (u object_r unlabeled ((s0) (s0)))) +(sid file) +(sidcontext file (u object_r unlabeled ((s0) (s0)))) +(sid fs) +(sidcontext fs (u object_r labeledfs ((s0) (s0)))) +(sid unlabeled) +(sidcontext unlabeled (u object_r unlabeled ((s0) (s0)))) +(sid security) +(sidcontext security (u object_r kernel ((s0) (s0)))) +(sid kernel) +(sidcontext kernel (u r kernel ((s0) (s0)))) +(sidorder (kernel security unlabeled fs file file_labels init any_socket port netif netmsg node igmp_packet icmp_socket tcp_socket sysctl_modprobe sysctl sysctl_fs sysctl_kernel sysctl_net sysctl_net_unix sysctl_vm sysctl_dev kmod policy scmp_packet devnull )) +(fsuse trans mqueue (u object_r mqueue ((s0) (s0)))) +(fsuse trans shm (u object_r shm ((s0) (s0)))) +(fsuse trans devtmpfs (u object_r device ((s0) (s0)))) +(fsuse trans tmpfs (u object_r tmpfs ((s0) (s0)))) +(fsuse trans devpts (u object_r devpts ((s0) (s0)))) +(fsuse task sockfs (u object_r sockfs ((s0) (s0)))) +(fsuse task pipefs (u object_r pipefs ((s0) (s0)))) +(fsuse xattr squashfs (u object_r labeledfs ((s0) (s0)))) +(fsuse xattr f2fs (u object_r labeledfs ((s0) (s0)))) +(fsuse xattr btrfs (u object_r labeledfs ((s0) (s0)))) +(fsuse xattr xfs (u object_r labeledfs ((s0) (s0)))) +(fsuse xattr ext4 (u object_r labeledfs ((s0) (s0)))) +(fsuse xattr ext3 (u object_r labeledfs ((s0) (s0)))) +(fsuse xattr ext2 (u object_r labeledfs ((s0) (s0)))) +(fsuse xattr jffs2 (u object_r labeledfs ((s0) (s0)))) +(fsuse xattr yaffs2 (u object_r labeledfs ((s0) (s0)))) +(genfscon binfmt_misc / (u object_r binfmt_miscfs ((s0) (s0)))) +(genfscon cgroup / (u object_r cgroup ((s0) (s0)))) +(genfscon configfs / (u object_r configfs ((s0) (s0)))) +(genfscon debugfs /tracing/events/f2fs/f2fs_sync_file_enter/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon debugfs /tracing/events/ext4/ext4_sync_file_enter/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon debugfs /tracing/events/f2fs/f2fs_sync_file_exit/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon debugfs /tracing/events/ext4/ext4_da_write_begin/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon debugfs /tracing/events/ext4/ext4_sync_file_exit/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon debugfs /tracing/events/block/block_rq_complete/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon debugfs /tracing/events/ext4/ext4_da_write_end/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon debugfs /tracing/events/f2fs/f2fs_write_begin/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon debugfs /tracing/events/block/block_rq_issue/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon debugfs /tracing/events/f2fs/f2fs_write_end/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon debugfs /tracing/events/workqueue/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon debugfs /tracing/events/regulator/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon debugfs /tracing/events/pagecache/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon debugfs /tracing/saved_cmdlines_size (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon debugfs /tracing/events/sync/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon debugfs /tracing/events/irq/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon debugfs /tracing/events/ipi/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon debugfs /tracing/instances/wifi (u object_r debugfs_wifi_tracing ((s0) (s0)))) +(genfscon debugfs /tracing/trace_marker (u object_r debugfs_trace_marker ((s0) (s0)))) +(genfscon debugfs /tracing/instances (u object_r debugfs_tracing_instances ((s0) (s0)))) +(genfscon debugfs /tracing (u object_r debugfs_tracing ((s0) (s0)))) +(genfscon debugfs /mmc0 (u object_r debugfs_mmc ((s0) (s0)))) +(genfscon debugfs / (u object_r debugfs ((s0) (s0)))) +(genfscon functionfs / (u object_r functionfs ((s0) (s0)))) +(genfscon fuse / (u object_r fuse ((s0) (s0)))) +(genfscon inotifyfs / (u object_r inotify ((s0) (s0)))) +(genfscon proc /sys/kernel/perf_event_max_sample_rate (u object_r proc_perf ((s0) (s0)))) +(genfscon proc /sys/kernel/randomize_va_space (u object_r proc_security ((s0) (s0)))) +(genfscon proc /uid_cputime/remove_uid_range (u object_r proc_uid_cputime_removeuid ((s0) (s0)))) +(genfscon proc /sys/kernel/modules_disabled (u object_r proc_security ((s0) (s0)))) +(genfscon proc /sys/vm/mmap_rnd_compat_bits (u object_r proc_security ((s0) (s0)))) +(genfscon proc /sys/fs/protected_hardlinks (u object_r proc_security ((s0) (s0)))) +(genfscon proc /sys/fs/protected_symlinks (u object_r proc_security ((s0) (s0)))) +(genfscon proc /sys/kernel/dmesg_restrict (u object_r proc_security ((s0) (s0)))) +(genfscon proc /sys/kernel/usermodehelper (u object_r usermodehelper ((s0) (s0)))) +(genfscon proc /uid_cputime/show_uid_stat (u object_r proc_uid_cputime_showstat ((s0) (s0)))) +(genfscon proc /sys/kernel/kptr_restrict (u object_r proc_security ((s0) (s0)))) +(genfscon proc /sys/vm/overcommit_memory (u object_r proc_overcommit_memory ((s0) (s0)))) +(genfscon proc /sys/kernel/core_pattern (u object_r usermodehelper ((s0) (s0)))) +(genfscon proc /sys/kernel/poweroff_cmd (u object_r usermodehelper ((s0) (s0)))) +(genfscon proc /sys/fs/suid_dumpable (u object_r proc_security ((s0) (s0)))) +(genfscon proc /sys/vm/mmap_min_addr (u object_r proc_security ((s0) (s0)))) +(genfscon proc /sys/vm/mmap_rnd_bits (u object_r proc_security ((s0) (s0)))) +(genfscon proc /net/xt_qtaguid/ctrl (u object_r qtaguid_proc ((s0) (s0)))) +(genfscon proc /sys/kernel/modprobe (u object_r usermodehelper ((s0) (s0)))) +(genfscon proc /sys/kernel/hotplug (u object_r usermodehelper ((s0) (s0)))) +(genfscon proc /sys/vm/drop_caches (u object_r proc_drop_caches ((s0) (s0)))) +(genfscon proc /uid_time_in_state (u object_r proc_uid_time_in_state ((s0) (s0)))) +(genfscon proc /uid_procstat/set (u object_r proc_uid_procstat_set ((s0) (s0)))) +(genfscon proc /sysrq-trigger (u object_r proc_sysrq ((s0) (s0)))) +(genfscon proc /uid_io/stats (u object_r proc_uid_io_stats ((s0) (s0)))) +(genfscon proc /timer_stats (u object_r proc_timer ((s0) (s0)))) +(genfscon proc /tty/drivers (u object_r proc_tty_drivers ((s0) (s0)))) +(genfscon proc /interrupts (u object_r proc_interrupts ((s0) (s0)))) +(genfscon proc /timer_list (u object_r proc_timer ((s0) (s0)))) +(genfscon proc /config.gz (u object_r config_gz ((s0) (s0)))) +(genfscon proc /softirqs (u object_r proc_timer ((s0) (s0)))) +(genfscon proc /zoneinfo (u object_r proc_zoneinfo ((s0) (s0)))) +(genfscon proc /meminfo (u object_r proc_meminfo ((s0) (s0)))) +(genfscon proc /modules (u object_r proc_modules ((s0) (s0)))) +(genfscon proc /cpuinfo (u object_r proc_cpuinfo ((s0) (s0)))) +(genfscon proc /sys/net (u object_r proc_net ((s0) (s0)))) +(genfscon proc /iomem (u object_r proc_iomem ((s0) (s0)))) +(genfscon proc /misc (u object_r proc_misc ((s0) (s0)))) +(genfscon proc /stat (u object_r proc_stat ((s0) (s0)))) +(genfscon proc /net (u object_r proc_net ((s0) (s0)))) +(genfscon proc / (u object_r proc ((s0) (s0)))) +(genfscon pstore / (u object_r pstorefs ((s0) (s0)))) +(genfscon rootfs / (u object_r rootfs ((s0) (s0)))) +(genfscon sdcardfs / (u object_r sdcardfs ((s0) (s0)))) +(genfscon selinuxfs / (u object_r selinuxfs ((s0) (s0)))) +(genfscon sysfs /devices/virtual/timed_output/vibrator/enable (u object_r sysfs_vibrator ((s0) (s0)))) +(genfscon sysfs /devices/platform/nfc-power/nfc_power (u object_r sysfs_nfc_power_writable ((s0) (s0)))) +(genfscon sysfs /devices/virtual/block/zram0/uevent (u object_r sysfs_zram_uevent ((s0) (s0)))) +(genfscon sysfs /devices/virtual/block/zram1/uevent (u object_r sysfs_zram_uevent ((s0) (s0)))) +(genfscon sysfs /devices/virtual/misc/hw_random (u object_r sysfs_hwrandom ((s0) (s0)))) +(genfscon sysfs /module/wlan/parameters/fwpath (u object_r sysfs_wlan_fwpath ((s0) (s0)))) +(genfscon sysfs /devices/virtual/block/zram0 (u object_r sysfs_zram ((s0) (s0)))) +(genfscon sysfs /devices/virtual/block/zram1 (u object_r sysfs_zram ((s0) (s0)))) +(genfscon sysfs /module/lowmemorykiller (u object_r sysfs_lowmemorykiller ((s0) (s0)))) +(genfscon sysfs /kernel/uevent_helper (u object_r sysfs_usermodehelper ((s0) (s0)))) +(genfscon sysfs /devices/system/cpu (u object_r sysfs_devices_system_cpu ((s0) (s0)))) +(genfscon sysfs /power/wake_unlock (u object_r sysfs_wake_lock ((s0) (s0)))) +(genfscon sysfs /fs/ext4/features (u object_r sysfs_fs_ext4_features ((s0) (s0)))) +(genfscon sysfs /power/wake_lock (u object_r sysfs_wake_lock ((s0) (s0)))) +(genfscon sysfs /class/leds (u object_r sysfs_leds ((s0) (s0)))) +(genfscon sysfs / (u object_r sysfs ((s0) (s0)))) +(genfscon tracefs /events/f2fs/f2fs_sync_file_enter/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon tracefs /events/ext4/ext4_sync_file_enter/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon tracefs /events/f2fs/f2fs_sync_file_exit/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon tracefs /events/ext4/ext4_da_write_begin/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon tracefs /events/ext4/ext4_sync_file_exit/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon tracefs /events/block/block_rq_complete/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon tracefs /events/ext4/ext4_da_write_end/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon tracefs /events/f2fs/f2fs_write_begin/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon tracefs /events/block/block_rq_issue/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon tracefs /events/f2fs/f2fs_write_end/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon tracefs /events/workqueue/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon tracefs /events/regulator/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon tracefs /events/pagecache/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon tracefs /saved_cmdlines_size (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon tracefs /events/sync/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon tracefs /events/irq/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon tracefs /events/ipi/enable (u object_r debugfs_tracing_debug ((s0) (s0)))) +(genfscon tracefs /instances/wifi (u object_r debugfs_wifi_tracing ((s0) (s0)))) +(genfscon tracefs /trace_marker (u object_r debugfs_trace_marker ((s0) (s0)))) +(genfscon tracefs /instances (u object_r debugfs_tracing_instances ((s0) (s0)))) +(genfscon tracefs / (u object_r debugfs_tracing ((s0) (s0)))) +(genfscon usbfs / (u object_r usbfs ((s0) (s0)))) +(genfscon vfat / (u object_r vfat ((s0) (s0)))) +(common cap (chown dac_override dac_read_search fowner fsetid kill setgid setuid setpcap linux_immutable net_bind_service net_broadcast net_admin net_raw ipc_lock ipc_owner sys_module sys_rawio sys_chroot sys_ptrace sys_pacct sys_admin sys_boot sys_nice sys_resource sys_time sys_tty_config mknod lease audit_write audit_control setfcap )) +(common cap2 (mac_override mac_admin syslog wake_alarm block_suspend audit_read )) +(common socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind )) +(common file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton )) +(common ipc (create destroy getattr setattr read write associate unix_read unix_write )) +(typealias audio_firmware_file) +(typealiasactual audio_firmware_file audio_data_file) +(typealias platform_app_data_file) +(typealiasactual platform_app_data_file app_data_file) +(typealias download_file) +(typealiasactual download_file app_data_file) +(class security (compute_av compute_create compute_member check_context load_policy compute_relabel compute_user setenforce setbool setsecparam setcheckreqprot read_policy validate_trans )) +(class process (fork transition sigchld sigkill sigstop signull signal ptrace getsched setsched getsession getpgid setpgid getcap setcap share getattr setexec setfscreate noatsecure siginh setrlimit rlimitinh dyntransition setcurrent execmem execstack execheap setkeycreate setsockcreate getrlimit )) +(mlsconstrain (process (sigkill sigstop signal ptrace setsched setpgid setcap share setrlimit)) (or (eq l1 l2) (eq t1 mlstrustedsubject))) +(mlsconstrain (process (ptrace getsched getsession getpgid getcap share getattr)) (or (dom l1 l2) (eq t1 mlstrustedsubject))) +(mlsconstrain (process (transition dyntransition)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class system (ipc_info syslog_read syslog_mod syslog_console module_request module_load )) +(class capability ()) +(classcommon capability cap) +(class filesystem (mount remount unmount getattr relabelfrom relabelto associate quotamod quotaget )) +(class file (execute_no_trans entrypoint execmod open audit_access )) +(classcommon file file) +(mlsconstrain (file (write setattr append unlink link rename)) (or (or (or (eq t2 app_data_file) (eq l1 l2)) (eq t1 mlstrustedsubject)) (eq t2 mlstrustedobject))) +(mlsconstrain (file (read getattr execute)) (or (or (or (eq t2 app_data_file) (dom l1 l2)) (eq t1 mlstrustedsubject)) (eq t2 mlstrustedobject))) +(mlsconstrain (file (setattr unlink link rename open)) (or (or (neq t2 app_data_file) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(mlsconstrain (file (create relabelfrom relabelto)) (and (eq l2 h2) (or (eq l1 l2) (eq t1 mlstrustedsubject)))) +(class dir (add_name remove_name reparent search rmdir open audit_access execmod )) +(classcommon dir file) +(mlsconstrain (dir (write setattr rename add_name remove_name reparent rmdir)) (or (or (or (eq t2 app_data_file) (eq l1 l2)) (eq t1 mlstrustedsubject)) (eq t2 mlstrustedobject))) +(mlsconstrain (dir (read getattr search)) (or (or (or (eq t2 app_data_file) (dom l1 l2)) (eq t1 mlstrustedsubject)) (eq t2 mlstrustedobject))) +(mlsconstrain (dir (setattr rename add_name remove_name reparent search rmdir open)) (or (or (neq t2 app_data_file) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(mlsconstrain (dir (create relabelfrom relabelto)) (and (eq l2 h2) (or (eq l1 l2) (eq t1 mlstrustedsubject)))) +(class fd (use )) +(class lnk_file (open audit_access execmod )) +(classcommon lnk_file file) +(mlsconstrain (lnk_file (write setattr append unlink link rename)) (or (or (or (eq t2 app_data_file) (eq l1 l2)) (eq t1 mlstrustedsubject)) (eq t2 mlstrustedobject))) +(mlsconstrain (lnk_file (read getattr execute)) (or (or (or (eq t2 app_data_file) (dom l1 l2)) (eq t1 mlstrustedsubject)) (eq t2 mlstrustedobject))) +(mlsconstrain (lnk_file (setattr unlink link rename open)) (or (or (neq t2 app_data_file) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(mlsconstrain (lnk_file (create relabelfrom relabelto)) (and (eq l2 h2) (or (eq l1 l2) (eq t1 mlstrustedsubject)))) +(class chr_file (execute_no_trans entrypoint execmod open audit_access )) +(classcommon chr_file file) +(mlsconstrain (chr_file (write setattr append unlink link rename)) (or (or (or (eq t2 app_data_file) (eq l1 l2)) (eq t1 mlstrustedsubject)) (eq t2 mlstrustedobject))) +(mlsconstrain (chr_file (read getattr execute)) (or (or (or (eq t2 app_data_file) (dom l1 l2)) (eq t1 mlstrustedsubject)) (eq t2 mlstrustedobject))) +(mlsconstrain (chr_file (create relabelfrom relabelto)) (and (eq l2 h2) (or (eq l1 l2) (eq t1 mlstrustedsubject)))) +(class blk_file (open audit_access execmod )) +(classcommon blk_file file) +(mlsconstrain (blk_file (write setattr append unlink link rename)) (or (or (or (eq t2 app_data_file) (eq l1 l2)) (eq t1 mlstrustedsubject)) (eq t2 mlstrustedobject))) +(mlsconstrain (blk_file (read getattr execute)) (or (or (or (eq t2 app_data_file) (dom l1 l2)) (eq t1 mlstrustedsubject)) (eq t2 mlstrustedobject))) +(mlsconstrain (blk_file (create relabelfrom relabelto)) (and (eq l2 h2) (or (eq l1 l2) (eq t1 mlstrustedsubject)))) +(class sock_file (open audit_access execmod )) +(classcommon sock_file file) +(mlsconstrain (sock_file (write setattr append unlink link rename)) (or (or (or (eq t2 app_data_file) (eq l1 l2)) (eq t1 mlstrustedsubject)) (eq t2 mlstrustedobject))) +(mlsconstrain (sock_file (read getattr execute)) (or (or (or (eq t2 app_data_file) (dom l1 l2)) (eq t1 mlstrustedsubject)) (eq t2 mlstrustedobject))) +(mlsconstrain (sock_file (setattr unlink link rename open)) (or (or (neq t2 app_data_file) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(mlsconstrain (sock_file (create relabelfrom relabelto)) (and (eq l2 h2) (or (eq l1 l2) (eq t1 mlstrustedsubject)))) +(class fifo_file (open audit_access execmod )) +(classcommon fifo_file file) +(mlsconstrain (fifo_file (write setattr append unlink link rename)) (or (or (or (eq l1 l2) (eq t1 mlstrustedsubject)) (eq t2 mlstrustedobject)) (eq t2 domain))) +(mlsconstrain (fifo_file (read getattr)) (or (or (or (dom l1 l2) (eq t1 mlstrustedsubject)) (eq t2 mlstrustedobject)) (eq t2 domain))) +(mlsconstrain (fifo_file (create relabelfrom relabelto)) (and (eq l2 h2) (or (eq l1 l2) (eq t1 mlstrustedsubject)))) +(class socket ()) +(classcommon socket socket) +(mlsconstrain (socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class tcp_socket (node_bind name_connect )) +(classcommon tcp_socket socket) +(mlsconstrain (tcp_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class udp_socket (node_bind )) +(classcommon udp_socket socket) +(mlsconstrain (udp_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class rawip_socket (node_bind )) +(classcommon rawip_socket socket) +(mlsconstrain (rawip_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class node (recvfrom sendto )) +(class netif (ingress egress )) +(class netlink_socket ()) +(classcommon netlink_socket socket) +(mlsconstrain (netlink_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class packet_socket ()) +(classcommon packet_socket socket) +(mlsconstrain (packet_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class key_socket ()) +(classcommon key_socket socket) +(mlsconstrain (key_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class unix_stream_socket (connectto )) +(classcommon unix_stream_socket socket) +(mlsconstrain (unix_stream_socket (connectto)) (or (or (eq l1 l2) (eq t1 mlstrustedsubject)) (eq t2 mlstrustedsubject))) +(mlsconstrain (unix_stream_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class unix_dgram_socket ()) +(classcommon unix_dgram_socket socket) +(mlsconstrain (unix_dgram_socket (sendto)) (or (or (eq l1 l2) (eq t1 mlstrustedsubject)) (eq t2 mlstrustedsubject))) +(mlsconstrain (unix_dgram_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class sem ()) +(classcommon sem ipc) +(class msg (send receive )) +(class msgq (enqueue )) +(classcommon msgq ipc) +(class shm (lock )) +(classcommon shm ipc) +(class ipc ()) +(classcommon ipc ipc) +(class netlink_route_socket (nlmsg_read nlmsg_write )) +(classcommon netlink_route_socket socket) +(mlsconstrain (netlink_route_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class netlink_tcpdiag_socket (nlmsg_read nlmsg_write )) +(classcommon netlink_tcpdiag_socket socket) +(mlsconstrain (netlink_tcpdiag_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class netlink_nflog_socket ()) +(classcommon netlink_nflog_socket socket) +(mlsconstrain (netlink_nflog_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class netlink_xfrm_socket (nlmsg_read nlmsg_write )) +(classcommon netlink_xfrm_socket socket) +(mlsconstrain (netlink_xfrm_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class netlink_selinux_socket ()) +(classcommon netlink_selinux_socket socket) +(mlsconstrain (netlink_selinux_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class netlink_audit_socket (nlmsg_read nlmsg_write nlmsg_relay nlmsg_readpriv nlmsg_tty_audit )) +(classcommon netlink_audit_socket socket) +(mlsconstrain (netlink_audit_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class netlink_dnrt_socket ()) +(classcommon netlink_dnrt_socket socket) +(mlsconstrain (netlink_dnrt_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class association (sendto recvfrom setcontext polmatch )) +(class netlink_kobject_uevent_socket ()) +(classcommon netlink_kobject_uevent_socket socket) +(mlsconstrain (netlink_kobject_uevent_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class appletalk_socket ()) +(classcommon appletalk_socket socket) +(mlsconstrain (appletalk_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class packet (send recv relabelto flow_in flow_out forward_in forward_out )) +(class key (view read write search link setattr create )) +(class dccp_socket (node_bind name_connect )) +(classcommon dccp_socket socket) +(class memprotect (mmap_zero )) +(class peer (recv )) +(class capability2 ()) +(classcommon capability2 cap2) +(class kernel_service (use_as_override create_files_as )) +(class tun_socket (attach_queue )) +(classcommon tun_socket socket) +(mlsconstrain (tun_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class binder (impersonate call set_context_mgr transfer )) +(class netlink_iscsi_socket ()) +(classcommon netlink_iscsi_socket socket) +(mlsconstrain (netlink_iscsi_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class netlink_fib_lookup_socket ()) +(classcommon netlink_fib_lookup_socket socket) +(mlsconstrain (netlink_fib_lookup_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class netlink_connector_socket ()) +(classcommon netlink_connector_socket socket) +(mlsconstrain (netlink_connector_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class netlink_netfilter_socket ()) +(classcommon netlink_netfilter_socket socket) +(mlsconstrain (netlink_netfilter_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class netlink_generic_socket ()) +(classcommon netlink_generic_socket socket) +(mlsconstrain (netlink_generic_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class netlink_scsitransport_socket ()) +(classcommon netlink_scsitransport_socket socket) +(mlsconstrain (netlink_scsitransport_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class netlink_rdma_socket ()) +(classcommon netlink_rdma_socket socket) +(mlsconstrain (netlink_rdma_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class netlink_crypto_socket ()) +(classcommon netlink_crypto_socket socket) +(mlsconstrain (netlink_crypto_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class cap_userns ()) +(classcommon cap_userns cap) +(class cap2_userns ()) +(classcommon cap2_userns cap2) +(class sctp_socket (node_bind )) +(classcommon sctp_socket socket) +(mlsconstrain (sctp_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class icmp_socket (node_bind )) +(classcommon icmp_socket socket) +(mlsconstrain (icmp_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class ax25_socket ()) +(classcommon ax25_socket socket) +(mlsconstrain (ax25_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class ipx_socket ()) +(classcommon ipx_socket socket) +(mlsconstrain (ipx_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class netrom_socket ()) +(classcommon netrom_socket socket) +(mlsconstrain (netrom_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class atmpvc_socket ()) +(classcommon atmpvc_socket socket) +(mlsconstrain (atmpvc_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class x25_socket ()) +(classcommon x25_socket socket) +(mlsconstrain (x25_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class rose_socket ()) +(classcommon rose_socket socket) +(mlsconstrain (rose_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class decnet_socket ()) +(classcommon decnet_socket socket) +(mlsconstrain (decnet_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class atmsvc_socket ()) +(classcommon atmsvc_socket socket) +(mlsconstrain (atmsvc_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class rds_socket ()) +(classcommon rds_socket socket) +(mlsconstrain (rds_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class irda_socket ()) +(classcommon irda_socket socket) +(mlsconstrain (irda_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class pppox_socket ()) +(classcommon pppox_socket socket) +(mlsconstrain (pppox_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class llc_socket ()) +(classcommon llc_socket socket) +(mlsconstrain (llc_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class can_socket ()) +(classcommon can_socket socket) +(mlsconstrain (can_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class tipc_socket ()) +(classcommon tipc_socket socket) +(mlsconstrain (tipc_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class bluetooth_socket ()) +(classcommon bluetooth_socket socket) +(mlsconstrain (bluetooth_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class iucv_socket ()) +(classcommon iucv_socket socket) +(mlsconstrain (iucv_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class rxrpc_socket ()) +(classcommon rxrpc_socket socket) +(mlsconstrain (rxrpc_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class isdn_socket ()) +(classcommon isdn_socket socket) +(mlsconstrain (isdn_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class phonet_socket ()) +(classcommon phonet_socket socket) +(mlsconstrain (phonet_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class ieee802154_socket ()) +(classcommon ieee802154_socket socket) +(mlsconstrain (ieee802154_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class caif_socket ()) +(classcommon caif_socket socket) +(mlsconstrain (caif_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class alg_socket ()) +(classcommon alg_socket socket) +(mlsconstrain (alg_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class nfc_socket ()) +(classcommon nfc_socket socket) +(mlsconstrain (nfc_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class vsock_socket ()) +(classcommon vsock_socket socket) +(mlsconstrain (vsock_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class kcm_socket ()) +(classcommon kcm_socket socket) +(mlsconstrain (kcm_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class qipcrtr_socket ()) +(classcommon qipcrtr_socket socket) +(mlsconstrain (qipcrtr_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class smc_socket ()) +(classcommon smc_socket socket) +(mlsconstrain (smc_socket (create relabelfrom relabelto)) (or (and (eq h1 h2) (eq l1 l2)) (eq t1 mlstrustedsubject))) +(class property_service (set )) +(class service_manager (add find list )) +(class hwservice_manager (add find list )) +(class keystore_key (get_state get insert delete exist list reset password lock unlock is_empty sign verify grant duplicate clear_uid add_auth user_changed gen_unique_id )) +(class drmservice (consumeRights setPlaybackStatus openDecryptSession closeDecryptSession initializeDecryptUnit decrypt finalizeDecryptUnit pread )) +(classorder (security process system capability filesystem file dir fd lnk_file chr_file blk_file sock_file fifo_file socket tcp_socket udp_socket rawip_socket node netif netlink_socket packet_socket key_socket unix_stream_socket unix_dgram_socket sem msg msgq shm ipc netlink_route_socket netlink_tcpdiag_socket netlink_nflog_socket netlink_xfrm_socket netlink_selinux_socket netlink_audit_socket netlink_dnrt_socket association netlink_kobject_uevent_socket appletalk_socket packet key dccp_socket memprotect peer capability2 kernel_service tun_socket binder netlink_iscsi_socket netlink_fib_lookup_socket netlink_connector_socket netlink_netfilter_socket netlink_generic_socket netlink_scsitransport_socket netlink_rdma_socket netlink_crypto_socket cap_userns cap2_userns sctp_socket icmp_socket ax25_socket ipx_socket netrom_socket atmpvc_socket x25_socket rose_socket decnet_socket atmsvc_socket rds_socket irda_socket pppox_socket llc_socket can_socket tipc_socket bluetooth_socket iucv_socket rxrpc_socket isdn_socket phonet_socket ieee802154_socket caif_socket alg_socket nfc_socket vsock_socket kcm_socket qipcrtr_socket smc_socket property_service service_manager hwservice_manager keystore_key drmservice )) +(role r) +(roletype r domain) +(typeattribute dev_type) +(typeattributeset dev_type (device alarm_device ashmem_device audio_device audio_timer_device audio_seq_device binder_device hwbinder_device vndbinder_device block_device camera_device dm_device keychord_device loop_control_device loop_device pmsg_device radio_device ram_device rtc_device vold_device console_device cpuctl_device fscklogs full_device gpu_device graphics_device hw_random_device input_device kmem_device port_device mtd_device mtp_device nfc_device ptmx_device kmsg_device kmsg_debug_device null_device random_device sensors_device serial_device socket_device owntty_device tty_device video_device vcs_device zero_device fuse_device iio_device ion_device qtaguid_device watchdog_device uhid_device uio_device tun_device usbaccessory_device usb_device properties_device properties_serial i2c_device hci_attach_dev rpmsg_device root_block_device frp_block_device system_block_device recovery_block_device boot_block_device userdata_block_device cache_block_device swap_block_device metadata_block_device misc_block_device ppp_device tee_device kb_block_device dkb_block_device )) +(typeattribute domain) +(typeattributeset domain (adbd audioserver blkid blkid_untrusted bluetooth bootanim bootstat bufferhubd cameraserver charger clatd cppreopts crash_dump dex2oat dhcp dnsmasq drmserver dumpstate e2fs ephemeral_app fingerprintd fsck fsck_untrusted gatekeeperd healthd hwservicemanager idmap incident incidentd init inputflinger install_recovery installd isolated_app kernel keystore lmkd logd logpersist mdnsd mediacodec mediadrmserver mediaextractor mediametrics mediaprovider mediaserver modprobe mtp netd netutils_wrapper nfc otapreopt_chroot otapreopt_slot performanced perfprofd platform_app postinstall postinstall_dexopt ppp preopt2cachename priv_app profman racoon radio recovery recovery_persist recovery_refresh rild runas sdcardd servicemanager sgdisk shared_relro shell slideshow su surfaceflinger system_app system_server tee thermalserviced tombstoned toolbox tzdatacheck ueventd uncrypt untrusted_app untrusted_app_25 untrusted_v2_app update_engine update_verifier vdc virtual_touchpad vndservicemanager vold vr_hwc watchdogd webview_zygote wificond zygote aee_aed aee_aedv audiocmdservice_atci boot_logo_updater cmddumper em_svr emdlogger factory fuelgauged_static kisd mdlogger meta_tst mobile_log_d mtkbootanimation netdiag pre_meta sensorcal thermalindicator GoogleOtaBinder atci_service atcid dm_agent_binder guiext-server hdmi kpoc_charger md_monitor met_log_d mtk_advcamserver ppl_agent program_binary thermald usp_service dexoptanalyzer hal_allocator_default storaged storagemanagerd aal batterywarning mmp sn )) +(typeattribute fs_type) +(typeattributeset fs_type (device labeledfs pipefs sockfs rootfs proc proc_security proc_drop_caches proc_overcommit_memory usermodehelper sysfs_usermodehelper qtaguid_proc proc_bluetooth_writable proc_cpuinfo proc_interrupts proc_iomem proc_meminfo proc_misc proc_modules proc_net proc_perf proc_stat proc_sysrq proc_timer proc_tty_drivers proc_uid_cputime_showstat proc_uid_cputime_removeuid proc_uid_io_stats proc_uid_procstat_set proc_uid_time_in_state proc_zoneinfo selinuxfs cgroup sysfs sysfs_uio sysfs_batteryinfo sysfs_bluetooth_writable sysfs_leds sysfs_hwrandom sysfs_nfc_power_writable sysfs_wake_lock sysfs_mac_address sysfs_fs_ext4_features configfs sysfs_devices_system_cpu sysfs_lowmemorykiller sysfs_wlan_fwpath sysfs_vibrator sysfs_thermal sysfs_zram sysfs_zram_uevent inotify devpts tmpfs shm mqueue fuse sdcardfs vfat debugfs debugfs_mmc debugfs_trace_marker debugfs_tracing debugfs_tracing_debug debugfs_tracing_instances debugfs_wifi_tracing pstorefs functionfs oemfs usbfs binfmt_miscfs app_fusefs config_gz priv_app_devpts untrusted_app_devpts untrusted_app_25_devpts )) +(typeattribute contextmount_type) +(typeattributeset contextmount_type (oemfs app_fusefs )) +(typeattribute file_type) +(typeattributeset file_type (adbd_exec bootanim_exec bootstat_exec bufferhubd_exec cameraserver_exec clatd_exec cppreopts_exec crash_dump_exec dex2oat_exec dhcp_exec dnsmasq_exec drmserver_exec drmserver_socket dumpstate_exec e2fs_exec sysfs_usb unlabeled system_file vendor_hal_file vendor_file vendor_app_file vendor_configs_file same_process_hal_file vndk_sp_file vendor_framework_file vendor_overlay_file runtime_event_log_tags_file logcat_exec coredump_file system_data_file unencrypted_data_file install_data_file drm_data_file adb_data_file anr_data_file tombstone_data_file apk_data_file apk_tmp_file apk_private_data_file apk_private_tmp_file dalvikcache_data_file ota_data_file ota_package_file user_profile_data_file profman_dump_data_file resourcecache_data_file shell_data_file property_data_file bootchart_data_file heapdump_data_file nativetest_data_file ringtone_file preloads_data_file preloads_media_file dhcp_data_file mnt_media_rw_file mnt_user_file mnt_expand_file storage_file mnt_media_rw_stub_file storage_stub_file postinstall_mnt_dir postinstall_file adb_keys_file audio_data_file audiohal_data_file audioserver_data_file bluetooth_data_file bluetooth_logs_data_file bootstat_data_file boottrace_data_file camera_data_file gatekeeper_data_file incident_data_file keychain_data_file keystore_data_file media_data_file media_rw_data_file misc_user_data_file net_data_file nfc_data_file radio_data_file reboot_data_file recovery_data_file shared_relro_file systemkeys_data_file textclassifier_data_file vpn_data_file wifi_data_file zoneinfo_data_file vold_data_file perfprofd_data_file tee_data_file update_engine_data_file method_trace_data_file app_data_file system_app_data_file cache_file cache_backup_file cache_private_backup_file cache_recovery_file efs_file wallpaper_file shortcut_manager_icons icon_file asec_apk_file asec_public_file asec_image_file backup_data_file bluetooth_efs_file fingerprintd_data_file app_fuse_file adbd_socket bluetooth_socket dnsproxyd_socket dumpstate_socket fwmarkd_socket lmkd_socket logd_socket logdr_socket logdw_socket mdns_socket mdnsd_socket misc_logd_file mtpd_socket netd_socket property_socket racoon_socket rild_socket rild_debug_socket system_wpa_socket system_ndebug_socket tombstoned_crash_socket tombstoned_java_trace_socket tombstoned_intercept_socket uncrypt_socket vold_socket webview_zygote_socket wpa_socket zygote_socket gps_control pdx_display_dir pdx_performance_dir pdx_bufferhub_dir pdx_display_client_endpoint_socket pdx_display_manager_endpoint_socket pdx_display_screenshot_endpoint_socket pdx_display_vsync_endpoint_socket pdx_performance_client_endpoint_socket pdx_bufferhub_client_endpoint_socket file_contexts_file mac_perms_file property_contexts_file seapp_contexts_file sepolicy_file service_contexts_file nonplat_service_contexts_file hwservice_contexts_file vndservice_contexts_file fingerprintd_exec fsck_exec gatekeeperd_exec healthd_exec hwservicemanager_exec idmap_exec init_exec inputflinger_exec install_recovery_exec installd_exec keystore_exec lmkd_exec logd_exec mediacodec_exec mediadrmserver_exec mediaextractor_exec mediametrics_exec mediaserver_exec mtp_exec netd_exec netutils_wrapper_exec otapreopt_chroot_exec otapreopt_slot_exec performanced_exec perfprofd_exec ppp_exec preopt2cachename_exec profman_exec racoon_exec recovery_persist_exec recovery_refresh_exec runas_exec sdcardd_exec servicemanager_exec sgdisk_exec shell_exec su_exec thermalserviced_exec tombstoned_exec toolbox_exec tzdatacheck_exec uncrypt_exec update_engine_exec update_verifier_exec vdc_exec vendor_shell_exec vendor_toolbox_exec virtual_touchpad_exec vold_exec vr_hwc_exec webview_zygote_exec wificond_exec zygote_exec provision_file key_install_data_file adbd_tmpfs atrace_exec audioserver_exec audioserver_tmpfs blkid_exec bluetooth_tmpfs bootanim_tmpfs bootstat_tmpfs bufferhubd_tmpfs cameraserver_tmpfs cppreopts_tmpfs dexoptanalyzer_exec dexoptanalyzer_tmpfs dhcp_tmpfs drmserver_tmpfs dumpstate_tmpfs ephemeral_app_tmpfs fingerprintd_tmpfs fsck_tmpfs gatekeeperd_tmpfs hal_allocator_default_exec hal_allocator_default_tmpfs healthd_tmpfs hwservicemanager_tmpfs incident_exec incidentd_tmpfs incidentd_exec init_tmpfs inputflinger_tmpfs install_recovery_tmpfs installd_tmpfs isolated_app_tmpfs keystore_tmpfs lmkd_tmpfs logd_tmpfs mdnsd_exec mdnsd_tmpfs mediadrmserver_tmpfs mediaextractor_tmpfs mediametrics_tmpfs mediaprovider_tmpfs mediaserver_tmpfs mtp_tmpfs netd_tmpfs nfc_tmpfs otapreopt_slot_tmpfs performanced_tmpfs platform_app_tmpfs priv_app_tmpfs racoon_tmpfs radio_tmpfs recovery_persist_tmpfs recovery_refresh_tmpfs servicemanager_tmpfs shared_relro_tmpfs shell_tmpfs storaged_exec storaged_tmpfs surfaceflinger_exec surfaceflinger_tmpfs system_app_tmpfs system_server_tmpfs thermalserviced_tmpfs tombstoned_tmpfs toolbox_tmpfs tzdatacheck_tmpfs ueventd_tmpfs uncrypt_tmpfs untrusted_app_tmpfs untrusted_app_25_tmpfs untrusted_v2_app_tmpfs update_engine_tmpfs update_verifier_tmpfs vdc_tmpfs virtual_touchpad_tmpfs vold_tmpfs vr_hwc_tmpfs webview_zygote_tmpfs wificond_tmpfs zygote_tmpfs aee_aed_exec aee_aed_tmpfs aee_aedv_exec aee_aedv_tmpfs audiocmdservice_atci_exec audiocmdservice_atci_tmpfs boot_logo_updater_exec boot_logo_updater_tmpfs cmddumper_exec cmddumper_tmpfs em_svr_exec em_svr_tmpfs emdlogger_exec emdlogger_tmpfs factory_exec factory_tmpfs fuelgauged_static_exec fuelgauged_static_file fuelgauged_static_tmpfs kisd_exec kisd_tmpfs mdlogger_exec mdlogger_tmpfs meta_tst_exec meta_tst_tmpfs mobile_log_d_exec mobile_log_d_tmpfs mtkbootanimation_tmpfs mtkbootanimation_exec netdiag_exec netdiag_tmpfs pre_meta_exec pre_meta_tmpfs sensorcal_exec sensorcal_tmpfs storagemanagerd_exec storagemanagerd_tmpfs thermalindicator_exec thermalindicator_tmpfs GoogleOtaBinder_exec GoogleOtaBinder_tmpfs aal_exec aal_tmpfs atci_service_exec atci_service_tmpfs atcid_exec atcid_tmpfs batterywarning_exec batterywarning_tmpfs dm_agent_binder_exec dm_agent_binder_tmpfs atci_serv_fw_socket atci_audio_socket atci_service_socket adb_atci_socket atci_data_file md_monitor_data_file guiext-server_exec guiext-server_tmpfs hdmi_exec hdmi_tmpfs kpoc_charger_exec kpoc_charger_tmpfs md_monitor_exec md_monitor_tmpfs met_log_d_exec met_log_d_tmpfs mmp_exec mmp_tmpfs mtk_advcamserver_exec mtk_advcamserver_tmpfs ppl_agent_exec ppl_agent_tmpfs program_binary_exec program_binary_tmpfs sn_exec sn_tmpfs thermald_exec thermald_tmpfs usp_service_exec usp_service_tmpfs )) +(typeattribute exec_type) +(typeattributeset exec_type (adbd_exec bootanim_exec bootstat_exec bufferhubd_exec cameraserver_exec clatd_exec cppreopts_exec crash_dump_exec dex2oat_exec dhcp_exec dnsmasq_exec drmserver_exec dumpstate_exec e2fs_exec logcat_exec fingerprintd_exec fsck_exec gatekeeperd_exec healthd_exec hwservicemanager_exec idmap_exec init_exec inputflinger_exec install_recovery_exec installd_exec keystore_exec lmkd_exec logd_exec mediacodec_exec mediadrmserver_exec mediaextractor_exec mediametrics_exec mediaserver_exec mtp_exec netd_exec netutils_wrapper_exec otapreopt_chroot_exec otapreopt_slot_exec performanced_exec perfprofd_exec ppp_exec preopt2cachename_exec profman_exec racoon_exec recovery_persist_exec recovery_refresh_exec runas_exec sdcardd_exec servicemanager_exec sgdisk_exec shell_exec su_exec thermalserviced_exec tombstoned_exec toolbox_exec tzdatacheck_exec uncrypt_exec update_engine_exec update_verifier_exec vdc_exec vendor_shell_exec vendor_toolbox_exec virtual_touchpad_exec vold_exec vr_hwc_exec webview_zygote_exec wificond_exec zygote_exec atrace_exec audioserver_exec blkid_exec dexoptanalyzer_exec hal_allocator_default_exec incident_exec incidentd_exec mdnsd_exec storaged_exec surfaceflinger_exec aee_aed_exec aee_aedv_exec audiocmdservice_atci_exec boot_logo_updater_exec cmddumper_exec em_svr_exec emdlogger_exec factory_exec fuelgauged_static_exec kisd_exec mdlogger_exec meta_tst_exec mobile_log_d_exec mtkbootanimation_exec netdiag_exec pre_meta_exec sensorcal_exec storagemanagerd_exec thermalindicator_exec GoogleOtaBinder_exec aal_exec atci_service_exec atcid_exec batterywarning_exec dm_agent_binder_exec guiext-server_exec hdmi_exec kpoc_charger_exec md_monitor_exec met_log_d_exec mmp_exec mtk_advcamserver_exec ppl_agent_exec program_binary_exec sn_exec thermald_exec usp_service_exec )) +(typeattribute data_file_type) +(expandtypeattribute (data_file_type) false) +(typeattributeset data_file_type (system_data_file unencrypted_data_file install_data_file drm_data_file adb_data_file anr_data_file tombstone_data_file apk_data_file apk_tmp_file apk_private_data_file apk_private_tmp_file dalvikcache_data_file ota_data_file ota_package_file user_profile_data_file profman_dump_data_file resourcecache_data_file shell_data_file property_data_file bootchart_data_file heapdump_data_file nativetest_data_file ringtone_file preloads_data_file preloads_media_file dhcp_data_file adb_keys_file audio_data_file audiohal_data_file audioserver_data_file bluetooth_data_file bluetooth_logs_data_file bootstat_data_file boottrace_data_file camera_data_file gatekeeper_data_file incident_data_file keychain_data_file keystore_data_file media_data_file media_rw_data_file misc_user_data_file net_data_file nfc_data_file radio_data_file reboot_data_file recovery_data_file shared_relro_file systemkeys_data_file textclassifier_data_file vpn_data_file wifi_data_file zoneinfo_data_file vold_data_file perfprofd_data_file tee_data_file update_engine_data_file method_trace_data_file app_data_file system_app_data_file cache_file cache_backup_file cache_private_backup_file cache_recovery_file wallpaper_file shortcut_manager_icons icon_file asec_apk_file asec_public_file asec_image_file backup_data_file fingerprintd_data_file app_fuse_file bluetooth_socket misc_logd_file system_wpa_socket system_ndebug_socket wpa_socket provision_file key_install_data_file fuelgauged_static_file atci_data_file md_monitor_data_file )) +(typeattribute core_data_file_type) +(typeattributeset core_data_file_type (system_data_file unencrypted_data_file install_data_file drm_data_file adb_data_file anr_data_file tombstone_data_file apk_data_file apk_tmp_file apk_private_data_file apk_private_tmp_file dalvikcache_data_file ota_data_file ota_package_file user_profile_data_file profman_dump_data_file resourcecache_data_file shell_data_file property_data_file bootchart_data_file heapdump_data_file nativetest_data_file ringtone_file preloads_data_file preloads_media_file dhcp_data_file adb_keys_file audio_data_file audiohal_data_file audioserver_data_file bluetooth_data_file bluetooth_logs_data_file bootstat_data_file boottrace_data_file camera_data_file gatekeeper_data_file incident_data_file keychain_data_file keystore_data_file media_data_file media_rw_data_file misc_user_data_file net_data_file nfc_data_file radio_data_file reboot_data_file recovery_data_file shared_relro_file systemkeys_data_file textclassifier_data_file vpn_data_file wifi_data_file zoneinfo_data_file vold_data_file perfprofd_data_file update_engine_data_file method_trace_data_file app_data_file system_app_data_file wallpaper_file shortcut_manager_icons icon_file asec_apk_file asec_public_file asec_image_file backup_data_file fingerprintd_data_file app_fuse_file fuelgauged_static_file atci_data_file md_monitor_data_file )) +(typeattribute vendor_file_type) +(typeattributeset vendor_file_type (vendor_hal_file vendor_file vendor_app_file vendor_configs_file same_process_hal_file vndk_sp_file vendor_framework_file vendor_overlay_file mediacodec_exec vendor_shell_exec vendor_toolbox_exec aee_aedv_exec guiext-server_exec )) +(typeattribute sysfs_type) +(typeattributeset sysfs_type (sysfs_usermodehelper sysfs sysfs_uio sysfs_batteryinfo sysfs_bluetooth_writable sysfs_leds sysfs_hwrandom sysfs_nfc_power_writable sysfs_wake_lock sysfs_mac_address sysfs_usb sysfs_fs_ext4_features sysfs_devices_system_cpu sysfs_lowmemorykiller sysfs_wlan_fwpath sysfs_vibrator sysfs_thermal sysfs_zram sysfs_zram_uevent )) +(typeattribute debugfs_type) +(typeattributeset debugfs_type (debugfs debugfs_mmc debugfs_trace_marker debugfs_tracing debugfs_tracing_debug debugfs_tracing_instances debugfs_wifi_tracing )) +(typeattribute sdcard_type) +(typeattributeset sdcard_type (fuse sdcardfs vfat )) +(typeattribute node_type) +(typeattributeset node_type (node )) +(typeattribute netif_type) +(typeattributeset netif_type (netif )) +(typeattribute port_type) +(typeattributeset port_type (port )) +(typeattribute property_type) +(typeattributeset property_type (audio_prop boottime_prop bluetooth_prop config_prop cppreopt_prop ctl_bootanim_prop ctl_bugreport_prop ctl_console_prop ctl_default_prop ctl_dumpstate_prop ctl_fuse_prop ctl_mdnsd_prop ctl_rildaemon_prop dalvik_prop debuggerd_prop debug_prop default_prop device_logging_prop dhcp_prop dumpstate_options_prop dumpstate_prop ffs_prop fingerprint_prop firstboot_prop hwservicemanager_prop logd_prop logpersistd_logging_prop log_prop log_tag_prop mmc_prop net_dns_prop net_radio_prop netd_stable_secret_prop nfc_prop overlay_prop pan_result_prop persist_debug_prop persistent_properties_ready_prop powerctl_prop radio_prop restorecon_prop safemode_prop serialno_prop shell_prop system_prop system_radio_prop vold_prop wifi_log_prop wifi_prop ctl_atcid-daemon-u_prop ctl_atci_service_prop mdmmonitor_prop )) +(typeattribute core_property_type) +(typeattributeset core_property_type (audio_prop config_prop cppreopt_prop dalvik_prop debuggerd_prop debug_prop default_prop dhcp_prop dumpstate_prop ffs_prop fingerprint_prop logd_prop net_radio_prop nfc_prop pan_result_prop persist_debug_prop powerctl_prop radio_prop restorecon_prop shell_prop system_prop system_radio_prop vold_prop )) +(typeattribute log_property_type) +(typeattributeset log_property_type (log_prop log_tag_prop wifi_log_prop )) +(typeattribute system_server_service) +(typeattributeset system_server_service (accessibility_service account_service activity_service alarm_service appops_service appwidget_service assetatlas_service audio_service autofill_service backup_service batterystats_service battery_service bluetooth_manager_service broadcastradio_service cameraproxy_service clipboard_service contexthub_service IProxyService_service commontime_management_service companion_device_service connectivity_service connmetrics_service consumer_ir_service content_service country_detector_service coverage_service cpuinfo_service dbinfo_service device_policy_service deviceidle_service device_identifiers_service devicestoragemonitor_service diskstats_service display_service font_service netd_listener_service DockObserver_service dreams_service dropbox_service ethernet_service fingerprint_service gfxinfo_service graphicsstats_service hardware_service hardware_properties_service hdmi_control_service input_method_service input_service imms_service ipsec_service jobscheduler_service launcherapps_service location_service lock_settings_service media_projection_service media_router_service media_session_service meminfo_service midi_service mount_service netpolicy_service netstats_service network_management_service network_score_service network_time_update_service notification_service oem_lock_service otadexopt_service overlay_service package_service package_native_service permission_service persistent_data_block_service pinner_service power_service print_service processinfo_service procstats_service recovery_service registry_service restrictions_service rttmanager_service samplingprofiler_service scheduling_policy_service search_service sec_key_att_app_id_provider_service sensorservice_service serial_service servicediscovery_service settings_service shortcut_service statusbar_service storagestats_service task_service textclassification_service textservices_service telecom_service timezone_service trust_service tv_input_service uimode_service updatelock_service usagestats_service usb_service user_service vibrator_service voiceinteraction_service vr_manager_service wallpaper_service webviewupdate_service wifip2p_service wifiscanner_service wifi_service wifiaware_service window_service mtk_anrmanager_service mtk_permrecords_service mtk_mobile_service mtk_msg_monitor_service mtk_perf_service mtk_power_hal_mgr_service mtk_epdg_service mtk_rns_service mtk_telecom_service mtk_data_shaping_service mtk_search_engine_service mtk_duraspeed_service mtk_fullscreen_switch_service mtk_appdetection_service )) +(typeattribute app_api_service) +(typeattributeset app_api_service (batteryproperties_service gatekeeper_service accessibility_service account_service activity_service alarm_service appops_service appwidget_service assetatlas_service audio_service autofill_service backup_service batterystats_service bluetooth_manager_service clipboard_service contexthub_service IProxyService_service companion_device_service connectivity_service connmetrics_service consumer_ir_service content_service country_detector_service device_policy_service deviceidle_service device_identifiers_service display_service font_service dreams_service dropbox_service ethernet_service fingerprint_service graphicsstats_service hardware_properties_service input_method_service input_service imms_service ipsec_service jobscheduler_service launcherapps_service location_service media_projection_service media_router_service media_session_service midi_service mount_service netpolicy_service netstats_service network_management_service notification_service package_service permission_service power_service print_service procstats_service registry_service restrictions_service rttmanager_service search_service sec_key_att_app_id_provider_service sensorservice_service servicediscovery_service settings_service shortcut_service statusbar_service storagestats_service textclassification_service textservices_service telecom_service trust_service tv_input_service uimode_service usagestats_service usb_service user_service vibrator_service voiceinteraction_service wallpaper_service webviewupdate_service wifip2p_service wifi_service wifiaware_service mtk_anrmanager_service mtk_permrecords_service mtk_mobile_service mtk_msg_monitor_service mtk_perf_service mtk_power_hal_mgr_service mtk_epdg_service mtk_rns_service mtk_registry_service mtk_phonesubinfo_service mtk_telecom_service mtk_simphonebook_service mtk_data_shaping_service mtk_search_engine_service mtk_duraspeed_service mtk_fullscreen_switch_service mtk_appdetection_service mtk_carrierexpress_service mtk_ifaa_service )) +(typeattribute ephemeral_app_api_service) +(typeattributeset ephemeral_app_api_service (batteryproperties_service accessibility_service account_service activity_service alarm_service appops_service appwidget_service assetatlas_service audio_service autofill_service backup_service batterystats_service bluetooth_manager_service clipboard_service IProxyService_service companion_device_service connectivity_service connmetrics_service consumer_ir_service content_service country_detector_service deviceidle_service device_identifiers_service display_service font_service dreams_service dropbox_service graphicsstats_service hardware_properties_service input_method_service input_service imms_service ipsec_service jobscheduler_service launcherapps_service location_service media_projection_service media_router_service media_session_service midi_service mount_service netpolicy_service netstats_service network_management_service notification_service package_service permission_service power_service print_service procstats_service registry_service restrictions_service rttmanager_service search_service sensorservice_service servicediscovery_service settings_service statusbar_service storagestats_service textclassification_service textservices_service telecom_service tv_input_service uimode_service usagestats_service user_service vibrator_service voiceinteraction_service webviewupdate_service )) +(typeattribute system_api_service) +(typeattributeset system_api_service (cpuinfo_service dbinfo_service diskstats_service gfxinfo_service hdmi_control_service lock_settings_service meminfo_service network_score_service oem_lock_service overlay_service persistent_data_block_service serial_service updatelock_service wifiscanner_service window_service )) +(typeattribute service_manager_type) +(typeattributeset service_manager_type (audioserver_service batteryproperties_service bluetooth_service cameraserver_service default_android_service drmserver_service dumpstate_service fingerprintd_service hal_fingerprint_service gatekeeper_service gpu_service inputflinger_service incident_service installd_service keystore_service mediaserver_service mediametrics_service mediaextractor_service mediacodec_service mediadrmserver_service netd_service nfc_service radio_service storaged_service surfaceflinger_service system_app_service thermal_service update_engine_service virtual_touchpad_service vr_hwc_service accessibility_service account_service activity_service alarm_service appops_service appwidget_service assetatlas_service audio_service autofill_service backup_service batterystats_service battery_service bluetooth_manager_service broadcastradio_service cameraproxy_service clipboard_service contexthub_service IProxyService_service commontime_management_service companion_device_service connectivity_service connmetrics_service consumer_ir_service content_service country_detector_service coverage_service cpuinfo_service dbinfo_service device_policy_service deviceidle_service device_identifiers_service devicestoragemonitor_service diskstats_service display_service font_service netd_listener_service DockObserver_service dreams_service dropbox_service ethernet_service fingerprint_service gfxinfo_service graphicsstats_service hardware_service hardware_properties_service hdmi_control_service input_method_service input_service imms_service ipsec_service jobscheduler_service launcherapps_service location_service lock_settings_service media_projection_service media_router_service media_session_service meminfo_service midi_service mount_service netpolicy_service netstats_service network_management_service network_score_service network_time_update_service notification_service oem_lock_service otadexopt_service overlay_service package_service package_native_service permission_service persistent_data_block_service pinner_service power_service print_service processinfo_service procstats_service recovery_service registry_service restrictions_service rttmanager_service samplingprofiler_service scheduling_policy_service search_service sec_key_att_app_id_provider_service sensorservice_service serial_service servicediscovery_service settings_service shortcut_service statusbar_service storagestats_service task_service textclassification_service textservices_service telecom_service timezone_service trust_service tv_input_service uimode_service updatelock_service usagestats_service usb_service user_service vibrator_service voiceinteraction_service vr_manager_service wallpaper_service webviewupdate_service wifip2p_service wifiscanner_service wifi_service wificond_service wifiaware_service window_service nvram_agent_service mtk_anrmanager_service mtk_permrecords_service mtk_advcamserver_service dm_agent_binder_service mtk_mobile_service mtk_msg_monitor_service mtk_perf_service mtk_power_hal_mgr_service mtk_epdg_service mtk_rns_service mtk_registry_service mtk_phonesubinfo_service mtk_radio_service mtk_telecom_service mtk_simphonebook_service mtk_data_shaping_service mtk_search_engine_service mtk_duraspeed_service mtk_fullscreen_switch_service guiext-server_service ota_agent_service gas_srv_service fpspolicy-server_service mtk_appdetection_service mtk_carrierexpress_service vtservice_service vtservice_hidl_service mtk_hdmi_service ppl_agent_service mtk_ifaa_service aal_service mtk_connmetrics_service program_binary_service )) +(typeattribute hwservice_manager_type) +(typeattributeset hwservice_manager_type (default_android_hwservice fwk_display_hwservice fwk_scheduler_hwservice fwk_sensor_hwservice hal_audio_hwservice hal_bluetooth_hwservice hal_bootctl_hwservice hal_broadcastradio_hwservice hal_camera_hwservice hal_configstore_ISurfaceFlingerConfigs hal_contexthub_hwservice hal_drm_hwservice hal_cas_hwservice hal_dumpstate_hwservice hal_fingerprint_hwservice hal_gatekeeper_hwservice hal_gnss_hwservice hal_graphics_allocator_hwservice hal_graphics_composer_hwservice hal_graphics_mapper_hwservice hal_health_hwservice hal_ir_hwservice hal_keymaster_hwservice hal_light_hwservice hal_memtrack_hwservice hal_neuralnetworks_hwservice hal_nfc_hwservice hal_oemlock_hwservice hal_omx_hwservice hal_power_hwservice hal_renderscript_hwservice hal_sensors_hwservice hal_telephony_hwservice hal_tetheroffload_hwservice hal_thermal_hwservice hal_tv_cec_hwservice hal_tv_input_hwservice hal_usb_hwservice hal_vibrator_hwservice hal_vr_hwservice hal_weaver_hwservice hal_wifi_hwservice hal_wifi_offload_hwservice hal_wifi_supplicant_hwservice hidl_allocator_hwservice hidl_base_hwservice hidl_manager_hwservice hidl_memory_hwservice hidl_token_hwservice system_net_netd_hwservice system_wifi_keystore_hwservice thermalcallback_hwservice )) +(typeattribute same_process_hwservice) +(typeattributeset same_process_hwservice (hal_graphics_mapper_hwservice hal_renderscript_hwservice )) +(typeattribute coredomain_hwservice) +(typeattributeset coredomain_hwservice (fwk_display_hwservice fwk_scheduler_hwservice fwk_sensor_hwservice hidl_allocator_hwservice hidl_manager_hwservice hidl_memory_hwservice hidl_token_hwservice system_net_netd_hwservice system_wifi_keystore_hwservice )) +(typeattribute vndservice_manager_type) +(typeattributeset vndservice_manager_type (default_android_vndservice )) +(typeattribute mlstrustedsubject) +(typeattributeset mlstrustedsubject (adbd bufferhubd cppreopts drmserver dumpstate pdx_display_client_endpoint_socket pdx_display_manager_endpoint_socket pdx_display_screenshot_endpoint_socket pdx_display_vsync_endpoint_socket pdx_performance_client_endpoint_socket pdx_bufferhub_client_endpoint_socket hwservicemanager init installd kernel keystore lmkd logd mdnsd mediacodec mediadrmserver mediaextractor mediaserver netd otapreopt_slot performanced racoon radio runas sdcardd servicemanager shell surfaceflinger system_server tombstoned uncrypt vold webview_zygote zygote aee_aed aee_aedv netdiag thermalindicator md_monitor dexoptanalyzer storaged )) +(typeattribute mlstrustedobject) +(typeattributeset mlstrustedobject (alarm_device ashmem_device binder_device hwbinder_device pmsg_device gpu_device mtp_device ptmx_device null_device random_device owntty_device zero_device fuse_device ion_device tun_device usbaccessory_device usb_device qtaguid_proc selinuxfs cgroup sysfs sysfs_bluetooth_writable sysfs_nfc_power_writable sysfs_usb inotify devpts fuse sdcardfs vfat debugfs_trace_marker functionfs anr_data_file tombstone_data_file apk_tmp_file apk_private_tmp_file ota_package_file user_profile_data_file shell_data_file heapdump_data_file ringtone_file media_rw_data_file radio_data_file perfprofd_data_file method_trace_data_file system_app_data_file cache_file cache_backup_file cache_recovery_file wallpaper_file shortcut_manager_icons asec_apk_file backup_data_file app_fuse_file dnsproxyd_socket fwmarkd_socket logd_socket logdr_socket logdw_socket mdnsd_socket property_socket system_ndebug_socket tombstoned_crash_socket tombstoned_java_trace_socket pdx_display_client_endpoint_socket pdx_display_manager_endpoint_socket pdx_display_screenshot_endpoint_socket pdx_display_vsync_endpoint_socket pdx_performance_client_endpoint_socket pdx_bufferhub_client_endpoint_socket )) +(typeattribute appdomain) +(typeattributeset appdomain (bluetooth ephemeral_app isolated_app mediaprovider nfc platform_app priv_app radio shared_relro shell system_app untrusted_app untrusted_app_25 untrusted_v2_app )) +(typeattribute untrusted_app_all) +(typeattributeset untrusted_app_all (untrusted_app untrusted_app_25 )) +(typeattribute netdomain) +(typeattributeset netdomain (adbd bluetooth clatd dhcp dnsmasq drmserver dumpstate ephemeral_app mdnsd mediadrmserver mediaprovider mediaserver mtp netd nfc platform_app ppp priv_app racoon radio rild shell system_app system_server untrusted_app untrusted_app_25 untrusted_v2_app update_engine )) +(typeattribute bluetoothdomain) +(typeattributeset bluetoothdomain (platform_app priv_app radio system_server untrusted_app untrusted_app_25 untrusted_v2_app )) +(typeattribute binderservicedomain) +(typeattributeset binderservicedomain (audioserver cameraserver drmserver gatekeeperd healthd inputflinger keystore mediadrmserver mediaextractor mediametrics mediaserver nfc radio surfaceflinger system_app system_server thermalserviced virtual_touchpad vr_hwc emdlogger mdlogger GoogleOtaBinder atci_service dm_agent_binder guiext-server mtk_advcamserver ppl_agent program_binary aal )) +(typeattribute update_engine_common) +(typeattributeset update_engine_common (update_engine )) +(typeattribute coredomain) +(typeattributeset coredomain (adbd audioserver blkid blkid_untrusted bluetooth bootanim bootstat bufferhubd cameraserver charger clatd cppreopts crash_dump dex2oat dhcp dnsmasq drmserver dumpstate e2fs ephemeral_app fingerprintd fsck fsck_untrusted gatekeeperd healthd hwservicemanager idmap incident incidentd init inputflinger install_recovery installd isolated_app kernel keystore lmkd logd logpersist mdnsd mediadrmserver mediaextractor mediametrics mediaprovider mediaserver modprobe mtp netd netutils_wrapper nfc otapreopt_chroot otapreopt_slot performanced platform_app postinstall postinstall_dexopt ppp preopt2cachename priv_app profman racoon radio recovery recovery_persist recovery_refresh runas sdcardd servicemanager sgdisk shared_relro shell slideshow surfaceflinger system_app system_server thermalserviced tombstoned toolbox tzdatacheck ueventd uncrypt untrusted_app untrusted_app_25 untrusted_v2_app update_engine update_verifier vdc virtual_touchpad vold vr_hwc watchdogd webview_zygote wificond zygote aee_aed audiocmdservice_atci boot_logo_updater cmddumper em_svr emdlogger factory fuelgauged_static kisd mdlogger meta_tst mobile_log_d mtkbootanimation netdiag pre_meta sensorcal thermalindicator GoogleOtaBinder atci_service atcid dm_agent_binder guiext-server hdmi kpoc_charger md_monitor met_log_d mtk_advcamserver ppl_agent program_binary thermald usp_service dexoptanalyzer hal_allocator_default storaged storagemanagerd aal batterywarning mmp sn )) +(typeattribute coredomain_socket) +(typeattributeset coredomain_socket (drmserver_socket adbd_socket bluetooth_socket dnsproxyd_socket dumpstate_socket fwmarkd_socket lmkd_socket logd_socket logdr_socket logdw_socket mdns_socket mdnsd_socket misc_logd_file mtpd_socket netd_socket property_socket racoon_socket system_wpa_socket system_ndebug_socket tombstoned_crash_socket tombstoned_intercept_socket uncrypt_socket vold_socket webview_zygote_socket zygote_socket pdx_display_client_endpoint_socket pdx_display_client_channel_socket pdx_display_manager_endpoint_socket pdx_display_manager_channel_socket pdx_display_screenshot_endpoint_socket pdx_display_screenshot_channel_socket pdx_display_vsync_endpoint_socket pdx_display_vsync_channel_socket pdx_performance_client_endpoint_socket pdx_performance_client_channel_socket pdx_bufferhub_client_endpoint_socket pdx_bufferhub_client_channel_socket )) +(typeattribute binder_in_vendor_violators) +(expandtypeattribute (binder_in_vendor_violators) false) +(typeattribute socket_between_core_and_vendor_violators) +(expandtypeattribute (socket_between_core_and_vendor_violators) false) +(typeattribute vendor_executes_system_violators) +(expandtypeattribute (vendor_executes_system_violators) false) +(typeattribute untrusted_app_visible_hwservice) +(expandtypeattribute (untrusted_app_visible_hwservice) false) +(typeattribute untrusted_app_visible_halserver) +(expandtypeattribute (untrusted_app_visible_halserver) false) +(typeattribute pdx_endpoint_dir_type) +(typeattributeset pdx_endpoint_dir_type (pdx_display_dir pdx_performance_dir pdx_bufferhub_dir )) +(typeattribute pdx_endpoint_socket_type) +(expandtypeattribute (pdx_endpoint_socket_type) false) +(typeattributeset pdx_endpoint_socket_type (pdx_display_client_endpoint_socket pdx_display_manager_endpoint_socket pdx_display_screenshot_endpoint_socket pdx_display_vsync_endpoint_socket pdx_performance_client_endpoint_socket pdx_bufferhub_client_endpoint_socket )) +(typeattribute pdx_channel_socket_type) +(expandtypeattribute (pdx_channel_socket_type) false) +(typeattributeset pdx_channel_socket_type (pdx_display_client_channel_socket pdx_display_manager_channel_socket pdx_display_screenshot_channel_socket pdx_display_vsync_channel_socket pdx_performance_client_channel_socket pdx_bufferhub_client_channel_socket )) +(typeattribute pdx_display_client_endpoint_dir_type) +(typeattributeset pdx_display_client_endpoint_dir_type (pdx_display_dir )) +(typeattribute pdx_display_client_endpoint_socket_type) +(typeattributeset pdx_display_client_endpoint_socket_type (pdx_display_client_endpoint_socket )) +(typeattribute pdx_display_client_channel_socket_type) +(typeattributeset pdx_display_client_channel_socket_type (pdx_display_client_channel_socket )) +(typeattribute pdx_display_client_server_type) +(typeattributeset pdx_display_client_server_type (surfaceflinger )) +(typeattribute pdx_display_manager_endpoint_dir_type) +(typeattributeset pdx_display_manager_endpoint_dir_type (pdx_display_dir )) +(typeattribute pdx_display_manager_endpoint_socket_type) +(typeattributeset pdx_display_manager_endpoint_socket_type (pdx_display_manager_endpoint_socket )) +(typeattribute pdx_display_manager_channel_socket_type) +(typeattributeset pdx_display_manager_channel_socket_type (pdx_display_manager_channel_socket )) +(typeattribute pdx_display_manager_server_type) +(typeattributeset pdx_display_manager_server_type (surfaceflinger )) +(typeattribute pdx_display_screenshot_endpoint_dir_type) +(typeattributeset pdx_display_screenshot_endpoint_dir_type (pdx_display_dir )) +(typeattribute pdx_display_screenshot_endpoint_socket_type) +(typeattributeset pdx_display_screenshot_endpoint_socket_type (pdx_display_screenshot_endpoint_socket )) +(typeattribute pdx_display_screenshot_channel_socket_type) +(typeattributeset pdx_display_screenshot_channel_socket_type (pdx_display_screenshot_channel_socket )) +(typeattribute pdx_display_screenshot_server_type) +(typeattributeset pdx_display_screenshot_server_type (surfaceflinger )) +(typeattribute pdx_display_vsync_endpoint_dir_type) +(typeattributeset pdx_display_vsync_endpoint_dir_type (pdx_display_dir )) +(typeattribute pdx_display_vsync_endpoint_socket_type) +(typeattributeset pdx_display_vsync_endpoint_socket_type (pdx_display_vsync_endpoint_socket )) +(typeattribute pdx_display_vsync_channel_socket_type) +(typeattributeset pdx_display_vsync_channel_socket_type (pdx_display_vsync_channel_socket )) +(typeattribute pdx_display_vsync_server_type) +(typeattributeset pdx_display_vsync_server_type (surfaceflinger )) +(typeattribute pdx_performance_client_endpoint_dir_type) +(typeattributeset pdx_performance_client_endpoint_dir_type (pdx_performance_dir )) +(typeattribute pdx_performance_client_endpoint_socket_type) +(typeattributeset pdx_performance_client_endpoint_socket_type (pdx_performance_client_endpoint_socket )) +(typeattribute pdx_performance_client_channel_socket_type) +(typeattributeset pdx_performance_client_channel_socket_type (pdx_performance_client_channel_socket )) +(typeattribute pdx_performance_client_server_type) +(typeattributeset pdx_performance_client_server_type (performanced )) +(typeattribute pdx_bufferhub_client_endpoint_dir_type) +(typeattributeset pdx_bufferhub_client_endpoint_dir_type (pdx_bufferhub_dir )) +(typeattribute pdx_bufferhub_client_endpoint_socket_type) +(typeattributeset pdx_bufferhub_client_endpoint_socket_type (pdx_bufferhub_client_endpoint_socket )) +(typeattribute pdx_bufferhub_client_channel_socket_type) +(typeattributeset pdx_bufferhub_client_channel_socket_type (pdx_bufferhub_client_channel_socket )) +(typeattribute pdx_bufferhub_client_server_type) +(typeattributeset pdx_bufferhub_client_server_type (bufferhubd )) +(typeattribute halserverdomain) +(typeattributeset halserverdomain (rild vr_hwc hal_allocator_default )) +(typeattribute halclientdomain) +(expandtypeattribute (halclientdomain) true) +(typeattributeset halclientdomain (adbd audioserver bluetooth bootanim bufferhubd cameraserver dumpstate gatekeeperd healthd keystore mediacodec mediadrmserver mediaextractor mediaserver nfc platform_app radio surfaceflinger system_server thermalserviced update_engine update_verifier vold vr_hwc wificond mtkbootanimation atcid )) +(typeattribute hal_allocator) +(expandtypeattribute (hal_allocator) true) +(typeattributeset hal_allocator (hal_allocator_default )) +(typeattribute hal_allocator_client) +(expandtypeattribute (hal_allocator_client) true) +(typeattributeset hal_allocator_client (audioserver mediacodec mediaserver system_server )) +(typeattribute hal_allocator_server) +(expandtypeattribute (hal_allocator_server) false) +(typeattributeset hal_allocator_server (hal_allocator_default )) +(typeattribute hal_audio) +(expandtypeattribute (hal_audio) false) +(typeattribute hal_audio_client) +(expandtypeattribute (hal_audio_client) true) +(typeattributeset hal_audio_client (audioserver )) +(typeattribute hal_audio_server) +(expandtypeattribute (hal_audio_server) false) +(typeattribute hal_bluetooth) +(expandtypeattribute (hal_bluetooth) true) +(typeattribute hal_bluetooth_client) +(expandtypeattribute (hal_bluetooth_client) true) +(typeattributeset hal_bluetooth_client (bluetooth )) +(typeattribute hal_bluetooth_server) +(expandtypeattribute (hal_bluetooth_server) false) +(typeattribute hal_bootctl) +(expandtypeattribute (hal_bootctl) false) +(typeattribute hal_bootctl_client) +(expandtypeattribute (hal_bootctl_client) true) +(typeattributeset hal_bootctl_client (update_engine update_verifier )) +(typeattribute hal_bootctl_server) +(expandtypeattribute (hal_bootctl_server) false) +(typeattribute hal_broadcastradio) +(expandtypeattribute (hal_broadcastradio) true) +(typeattribute hal_broadcastradio_client) +(expandtypeattribute (hal_broadcastradio_client) true) +(typeattributeset hal_broadcastradio_client (system_server )) +(typeattribute hal_broadcastradio_server) +(expandtypeattribute (hal_broadcastradio_server) false) +(typeattribute hal_camera) +(expandtypeattribute (hal_camera) false) +(typeattribute hal_camera_client) +(expandtypeattribute (hal_camera_client) true) +(typeattributeset hal_camera_client (cameraserver )) +(typeattribute hal_camera_server) +(expandtypeattribute (hal_camera_server) false) +(typeattribute hal_configstore) +(expandtypeattribute (hal_configstore) true) +(typeattribute hal_configstore_client) +(expandtypeattribute (hal_configstore_client) true) +(typeattributeset hal_configstore_client (bootanim surfaceflinger system_server mtkbootanimation )) +(typeattribute hal_configstore_server) +(expandtypeattribute (hal_configstore_server) false) +(typeattribute hal_contexthub) +(expandtypeattribute (hal_contexthub) true) +(typeattribute hal_contexthub_client) +(expandtypeattribute (hal_contexthub_client) true) +(typeattributeset hal_contexthub_client (system_server )) +(typeattribute hal_contexthub_server) +(expandtypeattribute (hal_contexthub_server) false) +(typeattribute hal_drm) +(expandtypeattribute (hal_drm) false) +(typeattribute hal_drm_client) +(expandtypeattribute (hal_drm_client) true) +(typeattributeset hal_drm_client (mediadrmserver )) +(typeattribute hal_drm_server) +(expandtypeattribute (hal_drm_server) false) +(typeattribute hal_cas) +(expandtypeattribute (hal_cas) false) +(typeattribute hal_cas_client) +(expandtypeattribute (hal_cas_client) true) +(typeattributeset hal_cas_client (mediacodec mediaextractor )) +(typeattribute hal_cas_server) +(expandtypeattribute (hal_cas_server) false) +(typeattribute hal_dumpstate) +(expandtypeattribute (hal_dumpstate) true) +(typeattribute hal_dumpstate_client) +(expandtypeattribute (hal_dumpstate_client) true) +(typeattributeset hal_dumpstate_client (dumpstate )) +(typeattribute hal_dumpstate_server) +(expandtypeattribute (hal_dumpstate_server) false) +(typeattribute hal_fingerprint) +(expandtypeattribute (hal_fingerprint) true) +(typeattribute hal_fingerprint_client) +(expandtypeattribute (hal_fingerprint_client) true) +(typeattributeset hal_fingerprint_client (system_server )) +(typeattribute hal_fingerprint_server) +(expandtypeattribute (hal_fingerprint_server) false) +(typeattribute hal_gatekeeper) +(expandtypeattribute (hal_gatekeeper) true) +(typeattribute hal_gatekeeper_client) +(expandtypeattribute (hal_gatekeeper_client) true) +(typeattributeset hal_gatekeeper_client (gatekeeperd )) +(typeattribute hal_gatekeeper_server) +(expandtypeattribute (hal_gatekeeper_server) false) +(typeattribute hal_gnss) +(expandtypeattribute (hal_gnss) true) +(typeattribute hal_gnss_client) +(expandtypeattribute (hal_gnss_client) true) +(typeattributeset hal_gnss_client (system_server )) +(typeattribute hal_gnss_server) +(expandtypeattribute (hal_gnss_server) false) +(typeattribute hal_graphics_allocator) +(expandtypeattribute (hal_graphics_allocator) true) +(typeattribute hal_graphics_allocator_client) +(expandtypeattribute (hal_graphics_allocator_client) true) +(typeattributeset hal_graphics_allocator_client (adbd bootanim bufferhubd cameraserver dumpstate mediacodec mediadrmserver mediaserver surfaceflinger system_server vr_hwc mtkbootanimation )) +(typeattribute hal_graphics_allocator_server) +(expandtypeattribute (hal_graphics_allocator_server) false) +(typeattribute hal_graphics_composer) +(expandtypeattribute (hal_graphics_composer) true) +(typeattributeset hal_graphics_composer (vr_hwc )) +(typeattribute hal_graphics_composer_client) +(expandtypeattribute (hal_graphics_composer_client) true) +(typeattributeset hal_graphics_composer_client (bootanim surfaceflinger mtkbootanimation )) +(typeattribute hal_graphics_composer_server) +(expandtypeattribute (hal_graphics_composer_server) false) +(typeattributeset hal_graphics_composer_server (vr_hwc )) +(typeattribute hal_health) +(expandtypeattribute (hal_health) true) +(typeattribute hal_health_client) +(expandtypeattribute (hal_health_client) true) +(typeattributeset hal_health_client (healthd )) +(typeattribute hal_health_server) +(expandtypeattribute (hal_health_server) false) +(typeattribute hal_ir) +(expandtypeattribute (hal_ir) true) +(typeattribute hal_ir_client) +(expandtypeattribute (hal_ir_client) true) +(typeattributeset hal_ir_client (system_server )) +(typeattribute hal_ir_server) +(expandtypeattribute (hal_ir_server) false) +(typeattribute hal_keymaster) +(expandtypeattribute (hal_keymaster) true) +(typeattribute hal_keymaster_client) +(expandtypeattribute (hal_keymaster_client) true) +(typeattributeset hal_keymaster_client (keystore vold )) +(typeattribute hal_keymaster_server) +(expandtypeattribute (hal_keymaster_server) false) +(typeattribute hal_light) +(expandtypeattribute (hal_light) true) +(typeattribute hal_light_client) +(expandtypeattribute (hal_light_client) true) +(typeattributeset hal_light_client (system_server )) +(typeattribute hal_light_server) +(expandtypeattribute (hal_light_server) false) +(typeattribute hal_memtrack) +(expandtypeattribute (hal_memtrack) true) +(typeattribute hal_memtrack_client) +(expandtypeattribute (hal_memtrack_client) true) +(typeattributeset hal_memtrack_client (system_server )) +(typeattribute hal_memtrack_server) +(expandtypeattribute (hal_memtrack_server) false) +(typeattribute hal_neuralnetworks) +(expandtypeattribute (hal_neuralnetworks) true) +(typeattribute hal_neuralnetworks_client) +(expandtypeattribute (hal_neuralnetworks_client) true) +(typeattributeset hal_neuralnetworks_client (system_server )) +(typeattribute hal_neuralnetworks_server) +(expandtypeattribute (hal_neuralnetworks_server) false) +(typeattribute hal_nfc) +(expandtypeattribute (hal_nfc) true) +(typeattribute hal_nfc_client) +(expandtypeattribute (hal_nfc_client) true) +(typeattributeset hal_nfc_client (nfc )) +(typeattribute hal_nfc_server) +(expandtypeattribute (hal_nfc_server) false) +(typeattribute hal_oemlock) +(expandtypeattribute (hal_oemlock) true) +(typeattribute hal_oemlock_client) +(expandtypeattribute (hal_oemlock_client) true) +(typeattributeset hal_oemlock_client (system_server )) +(typeattribute hal_oemlock_server) +(expandtypeattribute (hal_oemlock_server) false) +(typeattribute hal_power) +(expandtypeattribute (hal_power) true) +(typeattribute hal_power_client) +(expandtypeattribute (hal_power_client) true) +(typeattributeset hal_power_client (platform_app system_server )) +(typeattribute hal_power_server) +(expandtypeattribute (hal_power_server) false) +(typeattribute hal_sensors) +(expandtypeattribute (hal_sensors) true) +(typeattribute hal_sensors_client) +(expandtypeattribute (hal_sensors_client) true) +(typeattributeset hal_sensors_client (system_server )) +(typeattribute hal_sensors_server) +(expandtypeattribute (hal_sensors_server) false) +(typeattribute hal_telephony) +(expandtypeattribute (hal_telephony) true) +(typeattributeset hal_telephony (rild )) +(typeattribute hal_telephony_client) +(expandtypeattribute (hal_telephony_client) true) +(typeattributeset hal_telephony_client (bluetooth radio atcid )) +(typeattribute hal_telephony_server) +(expandtypeattribute (hal_telephony_server) false) +(typeattributeset hal_telephony_server (rild )) +(typeattribute hal_tetheroffload) +(expandtypeattribute (hal_tetheroffload) true) +(typeattribute hal_tetheroffload_client) +(expandtypeattribute (hal_tetheroffload_client) true) +(typeattributeset hal_tetheroffload_client (system_server )) +(typeattribute hal_tetheroffload_server) +(expandtypeattribute (hal_tetheroffload_server) false) +(typeattribute hal_thermal) +(expandtypeattribute (hal_thermal) true) +(typeattribute hal_thermal_client) +(expandtypeattribute (hal_thermal_client) true) +(typeattributeset hal_thermal_client (system_server thermalserviced )) +(typeattribute hal_thermal_server) +(expandtypeattribute (hal_thermal_server) false) +(typeattribute hal_tv_cec) +(expandtypeattribute (hal_tv_cec) true) +(typeattribute hal_tv_cec_client) +(expandtypeattribute (hal_tv_cec_client) true) +(typeattributeset hal_tv_cec_client (system_server )) +(typeattribute hal_tv_cec_server) +(expandtypeattribute (hal_tv_cec_server) false) +(typeattribute hal_tv_input) +(expandtypeattribute (hal_tv_input) true) +(typeattribute hal_tv_input_client) +(expandtypeattribute (hal_tv_input_client) true) +(typeattributeset hal_tv_input_client (system_server )) +(typeattribute hal_tv_input_server) +(expandtypeattribute (hal_tv_input_server) false) +(typeattribute hal_usb) +(expandtypeattribute (hal_usb) true) +(typeattribute hal_usb_client) +(expandtypeattribute (hal_usb_client) true) +(typeattributeset hal_usb_client (system_server )) +(typeattribute hal_usb_server) +(expandtypeattribute (hal_usb_server) false) +(typeattribute hal_vibrator) +(expandtypeattribute (hal_vibrator) true) +(typeattribute hal_vibrator_client) +(expandtypeattribute (hal_vibrator_client) true) +(typeattributeset hal_vibrator_client (dumpstate system_server )) +(typeattribute hal_vibrator_server) +(expandtypeattribute (hal_vibrator_server) false) +(typeattribute hal_vr) +(expandtypeattribute (hal_vr) true) +(typeattribute hal_vr_client) +(expandtypeattribute (hal_vr_client) true) +(typeattributeset hal_vr_client (system_server )) +(typeattribute hal_vr_server) +(expandtypeattribute (hal_vr_server) false) +(typeattribute hal_weaver) +(expandtypeattribute (hal_weaver) true) +(typeattribute hal_weaver_client) +(expandtypeattribute (hal_weaver_client) true) +(typeattributeset hal_weaver_client (system_server )) +(typeattribute hal_weaver_server) +(expandtypeattribute (hal_weaver_server) false) +(typeattribute hal_wifi) +(expandtypeattribute (hal_wifi) true) +(typeattribute hal_wifi_client) +(expandtypeattribute (hal_wifi_client) true) +(typeattributeset hal_wifi_client (system_server )) +(typeattribute hal_wifi_server) +(expandtypeattribute (hal_wifi_server) false) +(typeattribute hal_wifi_offload) +(expandtypeattribute (hal_wifi_offload) true) +(typeattribute hal_wifi_offload_client) +(expandtypeattribute (hal_wifi_offload_client) true) +(typeattributeset hal_wifi_offload_client (system_server wificond )) +(typeattribute hal_wifi_offload_server) +(expandtypeattribute (hal_wifi_offload_server) false) +(typeattribute hal_wifi_supplicant) +(expandtypeattribute (hal_wifi_supplicant) true) +(typeattribute hal_wifi_supplicant_client) +(expandtypeattribute (hal_wifi_supplicant_client) true) +(typeattributeset hal_wifi_supplicant_client (system_server )) +(typeattribute hal_wifi_supplicant_server) +(expandtypeattribute (hal_wifi_supplicant_server) false) +(typeattribute display_service_server) +(typeattributeset display_service_server (surfaceflinger )) +(typeattribute wifi_keystore_service_server) +(typeattributeset wifi_keystore_service_server (keystore )) +(typeattribute domain_deprecated) +(typeattributeset domain_deprecated (clatd dex2oat dhcp dumpstate fingerprintd fsck fsck_untrusted installd keystore mtp netd platform_app ppp radio recovery runas sdcardd shared_relro system_app system_server ueventd uncrypt update_engine vold zygote )) +(type adbd) +(roletype object_r adbd) +(type adbd_exec) +(roletype object_r adbd_exec) +(type audioserver) +(roletype object_r audioserver) +(type blkid) +(roletype object_r blkid) +(type blkid_untrusted) +(roletype object_r blkid_untrusted) +(type bluetooth) +(roletype object_r bluetooth) +(type bootanim) +(roletype object_r bootanim) +(type bootanim_exec) +(roletype object_r bootanim_exec) +(type bootstat) +(roletype object_r bootstat) +(type bootstat_exec) +(roletype object_r bootstat_exec) +(type bufferhubd) +(roletype object_r bufferhubd) +(type bufferhubd_exec) +(roletype object_r bufferhubd_exec) +(type cameraserver) +(roletype object_r cameraserver) +(type cameraserver_exec) +(roletype object_r cameraserver_exec) +(type charger) +(roletype object_r charger) +(type clatd) +(roletype object_r clatd) +(type clatd_exec) +(roletype object_r clatd_exec) +(type cppreopts) +(roletype object_r cppreopts) +(type cppreopts_exec) +(roletype object_r cppreopts_exec) +(type crash_dump) +(roletype object_r crash_dump) +(type crash_dump_exec) +(roletype object_r crash_dump_exec) +(type device) +(roletype object_r device) +(type alarm_device) +(roletype object_r alarm_device) +(type ashmem_device) +(roletype object_r ashmem_device) +(type audio_device) +(roletype object_r audio_device) +(type audio_timer_device) +(roletype object_r audio_timer_device) +(type audio_seq_device) +(roletype object_r audio_seq_device) +(type binder_device) +(roletype object_r binder_device) +(type hwbinder_device) +(roletype object_r hwbinder_device) +(type vndbinder_device) +(roletype object_r vndbinder_device) +(type block_device) +(roletype object_r block_device) +(type camera_device) +(roletype object_r camera_device) +(type dm_device) +(roletype object_r dm_device) +(type keychord_device) +(roletype object_r keychord_device) +(type loop_control_device) +(roletype object_r loop_control_device) +(type loop_device) +(roletype object_r loop_device) +(type pmsg_device) +(roletype object_r pmsg_device) +(type radio_device) +(roletype object_r radio_device) +(type ram_device) +(roletype object_r ram_device) +(type rtc_device) +(roletype object_r rtc_device) +(type vold_device) +(roletype object_r vold_device) +(type console_device) +(roletype object_r console_device) +(type cpuctl_device) +(roletype object_r cpuctl_device) +(type fscklogs) +(roletype object_r fscklogs) +(type full_device) +(roletype object_r full_device) +(type gpu_device) +(roletype object_r gpu_device) +(type graphics_device) +(roletype object_r graphics_device) +(type hw_random_device) +(roletype object_r hw_random_device) +(type input_device) +(roletype object_r input_device) +(type kmem_device) +(roletype object_r kmem_device) +(type port_device) +(roletype object_r port_device) +(type mtd_device) +(roletype object_r mtd_device) +(type mtp_device) +(roletype object_r mtp_device) +(type nfc_device) +(roletype object_r nfc_device) +(type ptmx_device) +(roletype object_r ptmx_device) +(type kmsg_device) +(roletype object_r kmsg_device) +(type kmsg_debug_device) +(roletype object_r kmsg_debug_device) +(type null_device) +(roletype object_r null_device) +(type random_device) +(roletype object_r random_device) +(type sensors_device) +(roletype object_r sensors_device) +(type serial_device) +(roletype object_r serial_device) +(type socket_device) +(roletype object_r socket_device) +(type owntty_device) +(roletype object_r owntty_device) +(type tty_device) +(roletype object_r tty_device) +(type video_device) +(roletype object_r video_device) +(type vcs_device) +(roletype object_r vcs_device) +(type zero_device) +(roletype object_r zero_device) +(type fuse_device) +(roletype object_r fuse_device) +(type iio_device) +(roletype object_r iio_device) +(type ion_device) +(roletype object_r ion_device) +(type qtaguid_device) +(roletype object_r qtaguid_device) +(type watchdog_device) +(roletype object_r watchdog_device) +(type uhid_device) +(roletype object_r uhid_device) +(type uio_device) +(roletype object_r uio_device) +(type tun_device) +(roletype object_r tun_device) +(type usbaccessory_device) +(roletype object_r usbaccessory_device) +(type usb_device) +(roletype object_r usb_device) +(type properties_device) +(roletype object_r properties_device) +(type properties_serial) +(roletype object_r properties_serial) +(type i2c_device) +(roletype object_r i2c_device) +(type hci_attach_dev) +(roletype object_r hci_attach_dev) +(type rpmsg_device) +(roletype object_r rpmsg_device) +(type root_block_device) +(roletype object_r root_block_device) +(type frp_block_device) +(roletype object_r frp_block_device) +(type system_block_device) +(roletype object_r system_block_device) +(type recovery_block_device) +(roletype object_r recovery_block_device) +(type boot_block_device) +(roletype object_r boot_block_device) +(type userdata_block_device) +(roletype object_r userdata_block_device) +(type cache_block_device) +(roletype object_r cache_block_device) +(type swap_block_device) +(roletype object_r swap_block_device) +(type metadata_block_device) +(roletype object_r metadata_block_device) +(type misc_block_device) +(roletype object_r misc_block_device) +(type dex2oat) +(roletype object_r dex2oat) +(type dex2oat_exec) +(roletype object_r dex2oat_exec) +(type dhcp) +(roletype object_r dhcp) +(type dhcp_exec) +(roletype object_r dhcp_exec) +(type dnsmasq) +(roletype object_r dnsmasq) +(type dnsmasq_exec) +(roletype object_r dnsmasq_exec) +(type drmserver) +(roletype object_r drmserver) +(type drmserver_exec) +(roletype object_r drmserver_exec) +(type drmserver_socket) +(roletype object_r drmserver_socket) +(type dumpstate) +(roletype object_r dumpstate) +(type dumpstate_exec) +(roletype object_r dumpstate_exec) +(type e2fs) +(roletype object_r e2fs) +(type e2fs_exec) +(roletype object_r e2fs_exec) +(type ephemeral_app) +(roletype object_r ephemeral_app) +(type labeledfs) +(roletype object_r labeledfs) +(type pipefs) +(roletype object_r pipefs) +(type sockfs) +(roletype object_r sockfs) +(type rootfs) +(roletype object_r rootfs) +(type proc) +(roletype object_r proc) +(type proc_security) +(roletype object_r proc_security) +(type proc_drop_caches) +(roletype object_r proc_drop_caches) +(type proc_overcommit_memory) +(roletype object_r proc_overcommit_memory) +(type usermodehelper) +(roletype object_r usermodehelper) +(type sysfs_usermodehelper) +(roletype object_r sysfs_usermodehelper) +(type qtaguid_proc) +(roletype object_r qtaguid_proc) +(type proc_bluetooth_writable) +(roletype object_r proc_bluetooth_writable) +(type proc_cpuinfo) +(roletype object_r proc_cpuinfo) +(type proc_interrupts) +(roletype object_r proc_interrupts) +(type proc_iomem) +(roletype object_r proc_iomem) +(type proc_meminfo) +(roletype object_r proc_meminfo) +(type proc_misc) +(roletype object_r proc_misc) +(type proc_modules) +(roletype object_r proc_modules) +(type proc_net) +(roletype object_r proc_net) +(type proc_perf) +(roletype object_r proc_perf) +(type proc_stat) +(roletype object_r proc_stat) +(type proc_sysrq) +(roletype object_r proc_sysrq) +(type proc_timer) +(roletype object_r proc_timer) +(type proc_tty_drivers) +(roletype object_r proc_tty_drivers) +(type proc_uid_cputime_showstat) +(roletype object_r proc_uid_cputime_showstat) +(type proc_uid_cputime_removeuid) +(roletype object_r proc_uid_cputime_removeuid) +(type proc_uid_io_stats) +(roletype object_r proc_uid_io_stats) +(type proc_uid_procstat_set) +(roletype object_r proc_uid_procstat_set) +(type proc_uid_time_in_state) +(roletype object_r proc_uid_time_in_state) +(type proc_zoneinfo) +(roletype object_r proc_zoneinfo) +(type selinuxfs) +(roletype object_r selinuxfs) +(type cgroup) +(roletype object_r cgroup) +(type sysfs) +(roletype object_r sysfs) +(type sysfs_uio) +(roletype object_r sysfs_uio) +(type sysfs_batteryinfo) +(roletype object_r sysfs_batteryinfo) +(type sysfs_bluetooth_writable) +(roletype object_r sysfs_bluetooth_writable) +(type sysfs_leds) +(roletype object_r sysfs_leds) +(type sysfs_hwrandom) +(roletype object_r sysfs_hwrandom) +(type sysfs_nfc_power_writable) +(roletype object_r sysfs_nfc_power_writable) +(type sysfs_wake_lock) +(roletype object_r sysfs_wake_lock) +(type sysfs_mac_address) +(roletype object_r sysfs_mac_address) +(type sysfs_usb) +(roletype object_r sysfs_usb) +(type sysfs_fs_ext4_features) +(roletype object_r sysfs_fs_ext4_features) +(type configfs) +(roletype object_r configfs) +(type sysfs_devices_system_cpu) +(roletype object_r sysfs_devices_system_cpu) +(type sysfs_lowmemorykiller) +(roletype object_r sysfs_lowmemorykiller) +(type sysfs_wlan_fwpath) +(roletype object_r sysfs_wlan_fwpath) +(type sysfs_vibrator) +(roletype object_r sysfs_vibrator) +(type sysfs_thermal) +(roletype object_r sysfs_thermal) +(type sysfs_zram) +(roletype object_r sysfs_zram) +(type sysfs_zram_uevent) +(roletype object_r sysfs_zram_uevent) +(type inotify) +(roletype object_r inotify) +(type devpts) +(roletype object_r devpts) +(type tmpfs) +(roletype object_r tmpfs) +(type shm) +(roletype object_r shm) +(type mqueue) +(roletype object_r mqueue) +(type fuse) +(roletype object_r fuse) +(type sdcardfs) +(roletype object_r sdcardfs) +(type vfat) +(roletype object_r vfat) +(type debugfs) +(roletype object_r debugfs) +(type debugfs_mmc) +(roletype object_r debugfs_mmc) +(type debugfs_trace_marker) +(roletype object_r debugfs_trace_marker) +(type debugfs_tracing) +(roletype object_r debugfs_tracing) +(type debugfs_tracing_debug) +(roletype object_r debugfs_tracing_debug) +(type debugfs_tracing_instances) +(roletype object_r debugfs_tracing_instances) +(type debugfs_wifi_tracing) +(roletype object_r debugfs_wifi_tracing) +(type pstorefs) +(roletype object_r pstorefs) +(type functionfs) +(roletype object_r functionfs) +(type oemfs) +(roletype object_r oemfs) +(type usbfs) +(roletype object_r usbfs) +(type binfmt_miscfs) +(roletype object_r binfmt_miscfs) +(type app_fusefs) +(roletype object_r app_fusefs) +(type unlabeled) +(roletype object_r unlabeled) +(type system_file) +(roletype object_r system_file) +(type vendor_hal_file) +(roletype object_r vendor_hal_file) +(type vendor_file) +(roletype object_r vendor_file) +(type vendor_app_file) +(roletype object_r vendor_app_file) +(type vendor_configs_file) +(roletype object_r vendor_configs_file) +(type same_process_hal_file) +(roletype object_r same_process_hal_file) +(type vndk_sp_file) +(roletype object_r vndk_sp_file) +(type vendor_framework_file) +(roletype object_r vendor_framework_file) +(type vendor_overlay_file) +(roletype object_r vendor_overlay_file) +(type runtime_event_log_tags_file) +(roletype object_r runtime_event_log_tags_file) +(type logcat_exec) +(roletype object_r logcat_exec) +(type coredump_file) +(roletype object_r coredump_file) +(type system_data_file) +(roletype object_r system_data_file) +(type unencrypted_data_file) +(roletype object_r unencrypted_data_file) +(type install_data_file) +(roletype object_r install_data_file) +(type drm_data_file) +(roletype object_r drm_data_file) +(type adb_data_file) +(roletype object_r adb_data_file) +(type anr_data_file) +(roletype object_r anr_data_file) +(type tombstone_data_file) +(roletype object_r tombstone_data_file) +(type apk_data_file) +(roletype object_r apk_data_file) +(type apk_tmp_file) +(roletype object_r apk_tmp_file) +(type apk_private_data_file) +(roletype object_r apk_private_data_file) +(type apk_private_tmp_file) +(roletype object_r apk_private_tmp_file) +(type dalvikcache_data_file) +(roletype object_r dalvikcache_data_file) +(type ota_data_file) +(roletype object_r ota_data_file) +(type ota_package_file) +(roletype object_r ota_package_file) +(type user_profile_data_file) +(roletype object_r user_profile_data_file) +(type profman_dump_data_file) +(roletype object_r profman_dump_data_file) +(type resourcecache_data_file) +(roletype object_r resourcecache_data_file) +(type shell_data_file) +(roletype object_r shell_data_file) +(type property_data_file) +(roletype object_r property_data_file) +(type bootchart_data_file) +(roletype object_r bootchart_data_file) +(type heapdump_data_file) +(roletype object_r heapdump_data_file) +(type nativetest_data_file) +(roletype object_r nativetest_data_file) +(type ringtone_file) +(roletype object_r ringtone_file) +(type preloads_data_file) +(roletype object_r preloads_data_file) +(type preloads_media_file) +(roletype object_r preloads_media_file) +(type dhcp_data_file) +(roletype object_r dhcp_data_file) +(type mnt_media_rw_file) +(roletype object_r mnt_media_rw_file) +(type mnt_user_file) +(roletype object_r mnt_user_file) +(type mnt_expand_file) +(roletype object_r mnt_expand_file) +(type storage_file) +(roletype object_r storage_file) +(type mnt_media_rw_stub_file) +(roletype object_r mnt_media_rw_stub_file) +(type storage_stub_file) +(roletype object_r storage_stub_file) +(type postinstall_mnt_dir) +(roletype object_r postinstall_mnt_dir) +(type postinstall_file) +(roletype object_r postinstall_file) +(type adb_keys_file) +(roletype object_r adb_keys_file) +(type audio_data_file) +(roletype object_r audio_data_file) +(type audiohal_data_file) +(roletype object_r audiohal_data_file) +(type audioserver_data_file) +(roletype object_r audioserver_data_file) +(type bluetooth_data_file) +(roletype object_r bluetooth_data_file) +(type bluetooth_logs_data_file) +(roletype object_r bluetooth_logs_data_file) +(type bootstat_data_file) +(roletype object_r bootstat_data_file) +(type boottrace_data_file) +(roletype object_r boottrace_data_file) +(type camera_data_file) +(roletype object_r camera_data_file) +(type gatekeeper_data_file) +(roletype object_r gatekeeper_data_file) +(type incident_data_file) +(roletype object_r incident_data_file) +(type keychain_data_file) +(roletype object_r keychain_data_file) +(type keystore_data_file) +(roletype object_r keystore_data_file) +(type media_data_file) +(roletype object_r media_data_file) +(type media_rw_data_file) +(roletype object_r media_rw_data_file) +(type misc_user_data_file) +(roletype object_r misc_user_data_file) +(type net_data_file) +(roletype object_r net_data_file) +(type nfc_data_file) +(roletype object_r nfc_data_file) +(type radio_data_file) +(roletype object_r radio_data_file) +(type reboot_data_file) +(roletype object_r reboot_data_file) +(type recovery_data_file) +(roletype object_r recovery_data_file) +(type shared_relro_file) +(roletype object_r shared_relro_file) +(type systemkeys_data_file) +(roletype object_r systemkeys_data_file) +(type textclassifier_data_file) +(roletype object_r textclassifier_data_file) +(type vpn_data_file) +(roletype object_r vpn_data_file) +(type wifi_data_file) +(roletype object_r wifi_data_file) +(type zoneinfo_data_file) +(roletype object_r zoneinfo_data_file) +(type vold_data_file) +(roletype object_r vold_data_file) +(type perfprofd_data_file) +(roletype object_r perfprofd_data_file) +(type tee_data_file) +(roletype object_r tee_data_file) +(type update_engine_data_file) +(roletype object_r update_engine_data_file) +(type method_trace_data_file) +(roletype object_r method_trace_data_file) +(type app_data_file) +(roletype object_r app_data_file) +(type system_app_data_file) +(roletype object_r system_app_data_file) +(type cache_file) +(roletype object_r cache_file) +(type cache_backup_file) +(roletype object_r cache_backup_file) +(type cache_private_backup_file) +(roletype object_r cache_private_backup_file) +(type cache_recovery_file) +(roletype object_r cache_recovery_file) +(type efs_file) +(roletype object_r efs_file) +(type wallpaper_file) +(roletype object_r wallpaper_file) +(type shortcut_manager_icons) +(roletype object_r shortcut_manager_icons) +(type icon_file) +(roletype object_r icon_file) +(type asec_apk_file) +(roletype object_r asec_apk_file) +(type asec_public_file) +(roletype object_r asec_public_file) +(type asec_image_file) +(roletype object_r asec_image_file) +(type backup_data_file) +(roletype object_r backup_data_file) +(type bluetooth_efs_file) +(roletype object_r bluetooth_efs_file) +(type fingerprintd_data_file) +(roletype object_r fingerprintd_data_file) +(type app_fuse_file) +(roletype object_r app_fuse_file) +(type adbd_socket) +(roletype object_r adbd_socket) +(type bluetooth_socket) +(roletype object_r bluetooth_socket) +(type dnsproxyd_socket) +(roletype object_r dnsproxyd_socket) +(type dumpstate_socket) +(roletype object_r dumpstate_socket) +(type fwmarkd_socket) +(roletype object_r fwmarkd_socket) +(type lmkd_socket) +(roletype object_r lmkd_socket) +(type logd_socket) +(roletype object_r logd_socket) +(type logdr_socket) +(roletype object_r logdr_socket) +(type logdw_socket) +(roletype object_r logdw_socket) +(type mdns_socket) +(roletype object_r mdns_socket) +(type mdnsd_socket) +(roletype object_r mdnsd_socket) +(type misc_logd_file) +(roletype object_r misc_logd_file) +(type mtpd_socket) +(roletype object_r mtpd_socket) +(type netd_socket) +(roletype object_r netd_socket) +(type property_socket) +(roletype object_r property_socket) +(type racoon_socket) +(roletype object_r racoon_socket) +(type rild_socket) +(roletype object_r rild_socket) +(type rild_debug_socket) +(roletype object_r rild_debug_socket) +(type system_wpa_socket) +(roletype object_r system_wpa_socket) +(type system_ndebug_socket) +(roletype object_r system_ndebug_socket) +(type tombstoned_crash_socket) +(roletype object_r tombstoned_crash_socket) +(type tombstoned_java_trace_socket) +(roletype object_r tombstoned_java_trace_socket) +(type tombstoned_intercept_socket) +(roletype object_r tombstoned_intercept_socket) +(type uncrypt_socket) +(roletype object_r uncrypt_socket) +(type vold_socket) +(roletype object_r vold_socket) +(type webview_zygote_socket) +(roletype object_r webview_zygote_socket) +(type wpa_socket) +(roletype object_r wpa_socket) +(type zygote_socket) +(roletype object_r zygote_socket) +(type gps_control) +(roletype object_r gps_control) +(type pdx_display_dir) +(roletype object_r pdx_display_dir) +(type pdx_performance_dir) +(roletype object_r pdx_performance_dir) +(type pdx_bufferhub_dir) +(roletype object_r pdx_bufferhub_dir) +(type pdx_display_client_endpoint_socket) +(roletype object_r pdx_display_client_endpoint_socket) +(type pdx_display_client_channel_socket) +(roletype object_r pdx_display_client_channel_socket) +(type pdx_display_manager_endpoint_socket) +(roletype object_r pdx_display_manager_endpoint_socket) +(type pdx_display_manager_channel_socket) +(roletype object_r pdx_display_manager_channel_socket) +(type pdx_display_screenshot_endpoint_socket) +(roletype object_r pdx_display_screenshot_endpoint_socket) +(type pdx_display_screenshot_channel_socket) +(roletype object_r pdx_display_screenshot_channel_socket) +(type pdx_display_vsync_endpoint_socket) +(roletype object_r pdx_display_vsync_endpoint_socket) +(type pdx_display_vsync_channel_socket) +(roletype object_r pdx_display_vsync_channel_socket) +(type pdx_performance_client_endpoint_socket) +(roletype object_r pdx_performance_client_endpoint_socket) +(type pdx_performance_client_channel_socket) +(roletype object_r pdx_performance_client_channel_socket) +(type pdx_bufferhub_client_endpoint_socket) +(roletype object_r pdx_bufferhub_client_endpoint_socket) +(type pdx_bufferhub_client_channel_socket) +(roletype object_r pdx_bufferhub_client_channel_socket) +(type file_contexts_file) +(roletype object_r file_contexts_file) +(type mac_perms_file) +(roletype object_r mac_perms_file) +(type property_contexts_file) +(roletype object_r property_contexts_file) +(type seapp_contexts_file) +(roletype object_r seapp_contexts_file) +(type sepolicy_file) +(roletype object_r sepolicy_file) +(type service_contexts_file) +(roletype object_r service_contexts_file) +(type nonplat_service_contexts_file) +(roletype object_r nonplat_service_contexts_file) +(type hwservice_contexts_file) +(roletype object_r hwservice_contexts_file) +(type vndservice_contexts_file) +(roletype object_r vndservice_contexts_file) +(type fingerprintd) +(roletype object_r fingerprintd) +(type fingerprintd_exec) +(roletype object_r fingerprintd_exec) +(type fsck) +(roletype object_r fsck) +(type fsck_exec) +(roletype object_r fsck_exec) +(type fsck_untrusted) +(roletype object_r fsck_untrusted) +(type gatekeeperd) +(roletype object_r gatekeeperd) +(type gatekeeperd_exec) +(roletype object_r gatekeeperd_exec) +(type healthd) +(roletype object_r healthd) +(type healthd_exec) +(roletype object_r healthd_exec) +(type default_android_hwservice) +(roletype object_r default_android_hwservice) +(type fwk_display_hwservice) +(roletype object_r fwk_display_hwservice) +(type fwk_scheduler_hwservice) +(roletype object_r fwk_scheduler_hwservice) +(type fwk_sensor_hwservice) +(roletype object_r fwk_sensor_hwservice) +(type hal_audio_hwservice) +(roletype object_r hal_audio_hwservice) +(type hal_bluetooth_hwservice) +(roletype object_r hal_bluetooth_hwservice) +(type hal_bootctl_hwservice) +(roletype object_r hal_bootctl_hwservice) +(type hal_broadcastradio_hwservice) +(roletype object_r hal_broadcastradio_hwservice) +(type hal_camera_hwservice) +(roletype object_r hal_camera_hwservice) +(type hal_configstore_ISurfaceFlingerConfigs) +(roletype object_r hal_configstore_ISurfaceFlingerConfigs) +(type hal_contexthub_hwservice) +(roletype object_r hal_contexthub_hwservice) +(type hal_drm_hwservice) +(roletype object_r hal_drm_hwservice) +(type hal_cas_hwservice) +(roletype object_r hal_cas_hwservice) +(type hal_dumpstate_hwservice) +(roletype object_r hal_dumpstate_hwservice) +(type hal_fingerprint_hwservice) +(roletype object_r hal_fingerprint_hwservice) +(type hal_gatekeeper_hwservice) +(roletype object_r hal_gatekeeper_hwservice) +(type hal_gnss_hwservice) +(roletype object_r hal_gnss_hwservice) +(type hal_graphics_allocator_hwservice) +(roletype object_r hal_graphics_allocator_hwservice) +(type hal_graphics_composer_hwservice) +(roletype object_r hal_graphics_composer_hwservice) +(type hal_graphics_mapper_hwservice) +(roletype object_r hal_graphics_mapper_hwservice) +(type hal_health_hwservice) +(roletype object_r hal_health_hwservice) +(type hal_ir_hwservice) +(roletype object_r hal_ir_hwservice) +(type hal_keymaster_hwservice) +(roletype object_r hal_keymaster_hwservice) +(type hal_light_hwservice) +(roletype object_r hal_light_hwservice) +(type hal_memtrack_hwservice) +(roletype object_r hal_memtrack_hwservice) +(type hal_neuralnetworks_hwservice) +(roletype object_r hal_neuralnetworks_hwservice) +(type hal_nfc_hwservice) +(roletype object_r hal_nfc_hwservice) +(type hal_oemlock_hwservice) +(roletype object_r hal_oemlock_hwservice) +(type hal_omx_hwservice) +(roletype object_r hal_omx_hwservice) +(type hal_power_hwservice) +(roletype object_r hal_power_hwservice) +(type hal_renderscript_hwservice) +(roletype object_r hal_renderscript_hwservice) +(type hal_sensors_hwservice) +(roletype object_r hal_sensors_hwservice) +(type hal_telephony_hwservice) +(roletype object_r hal_telephony_hwservice) +(type hal_tetheroffload_hwservice) +(roletype object_r hal_tetheroffload_hwservice) +(type hal_thermal_hwservice) +(roletype object_r hal_thermal_hwservice) +(type hal_tv_cec_hwservice) +(roletype object_r hal_tv_cec_hwservice) +(type hal_tv_input_hwservice) +(roletype object_r hal_tv_input_hwservice) +(type hal_usb_hwservice) +(roletype object_r hal_usb_hwservice) +(type hal_vibrator_hwservice) +(roletype object_r hal_vibrator_hwservice) +(type hal_vr_hwservice) +(roletype object_r hal_vr_hwservice) +(type hal_weaver_hwservice) +(roletype object_r hal_weaver_hwservice) +(type hal_wifi_hwservice) +(roletype object_r hal_wifi_hwservice) +(type hal_wifi_offload_hwservice) +(roletype object_r hal_wifi_offload_hwservice) +(type hal_wifi_supplicant_hwservice) +(roletype object_r hal_wifi_supplicant_hwservice) +(type hidl_allocator_hwservice) +(roletype object_r hidl_allocator_hwservice) +(type hidl_base_hwservice) +(roletype object_r hidl_base_hwservice) +(type hidl_manager_hwservice) +(roletype object_r hidl_manager_hwservice) +(type hidl_memory_hwservice) +(roletype object_r hidl_memory_hwservice) +(type hidl_token_hwservice) +(roletype object_r hidl_token_hwservice) +(type system_net_netd_hwservice) +(roletype object_r system_net_netd_hwservice) +(type system_wifi_keystore_hwservice) +(roletype object_r system_wifi_keystore_hwservice) +(type thermalcallback_hwservice) +(roletype object_r thermalcallback_hwservice) +(type hwservicemanager) +(roletype object_r hwservicemanager) +(type hwservicemanager_exec) +(roletype object_r hwservicemanager_exec) +(type idmap) +(roletype object_r idmap) +(type idmap_exec) +(roletype object_r idmap_exec) +(type incident) +(roletype object_r incident) +(type incidentd) +(roletype object_r incidentd) +(type init) +(roletype object_r init) +(type init_exec) +(roletype object_r init_exec) +(type inputflinger) +(roletype object_r inputflinger) +(type inputflinger_exec) +(roletype object_r inputflinger_exec) +(type install_recovery) +(roletype object_r install_recovery) +(type install_recovery_exec) +(roletype object_r install_recovery_exec) +(type installd) +(roletype object_r installd) +(type installd_exec) +(roletype object_r installd_exec) +(type isolated_app) +(roletype object_r isolated_app) +(type kernel) +(roletype object_r kernel) +(type keystore) +(roletype object_r keystore) +(type keystore_exec) +(roletype object_r keystore_exec) +(type lmkd) +(roletype object_r lmkd) +(type lmkd_exec) +(roletype object_r lmkd_exec) +(type logd) +(roletype object_r logd) +(type logd_exec) +(roletype object_r logd_exec) +(type logpersist) +(roletype object_r logpersist) +(type mdnsd) +(roletype object_r mdnsd) +(type mediacodec) +(roletype object_r mediacodec) +(type mediacodec_exec) +(roletype object_r mediacodec_exec) +(type mediadrmserver) +(roletype object_r mediadrmserver) +(type mediadrmserver_exec) +(roletype object_r mediadrmserver_exec) +(type mediaextractor) +(roletype object_r mediaextractor) +(type mediaextractor_exec) +(roletype object_r mediaextractor_exec) +(type mediametrics) +(roletype object_r mediametrics) +(type mediametrics_exec) +(roletype object_r mediametrics_exec) +(type mediaprovider) +(roletype object_r mediaprovider) +(type mediaserver) +(roletype object_r mediaserver) +(type mediaserver_exec) +(roletype object_r mediaserver_exec) +(type modprobe) +(roletype object_r modprobe) +(type mtp) +(roletype object_r mtp) +(type mtp_exec) +(roletype object_r mtp_exec) +(type node) +(roletype object_r node) +(type netif) +(roletype object_r netif) +(type port) +(roletype object_r port) +(type netd) +(roletype object_r netd) +(type netd_exec) +(roletype object_r netd_exec) +(type netutils_wrapper) +(roletype object_r netutils_wrapper) +(type netutils_wrapper_exec) +(roletype object_r netutils_wrapper_exec) +(type nfc) +(roletype object_r nfc) +(type otapreopt_chroot) +(roletype object_r otapreopt_chroot) +(type otapreopt_chroot_exec) +(roletype object_r otapreopt_chroot_exec) +(type otapreopt_slot) +(roletype object_r otapreopt_slot) +(type otapreopt_slot_exec) +(roletype object_r otapreopt_slot_exec) +(type performanced) +(roletype object_r performanced) +(type performanced_exec) +(roletype object_r performanced_exec) +(type perfprofd) +(roletype object_r perfprofd) +(type perfprofd_exec) +(roletype object_r perfprofd_exec) +(type platform_app) +(roletype object_r platform_app) +(type postinstall) +(roletype object_r postinstall) +(type postinstall_dexopt) +(roletype object_r postinstall_dexopt) +(type ppp) +(roletype object_r ppp) +(type ppp_device) +(roletype object_r ppp_device) +(type ppp_exec) +(roletype object_r ppp_exec) +(type preopt2cachename) +(roletype object_r preopt2cachename) +(type preopt2cachename_exec) +(roletype object_r preopt2cachename_exec) +(type priv_app) +(roletype object_r priv_app) +(type profman) +(roletype object_r profman) +(type profman_exec) +(roletype object_r profman_exec) +(type audio_prop) +(roletype object_r audio_prop) +(type boottime_prop) +(roletype object_r boottime_prop) +(type bluetooth_prop) +(roletype object_r bluetooth_prop) +(type config_prop) +(roletype object_r config_prop) +(type cppreopt_prop) +(roletype object_r cppreopt_prop) +(type ctl_bootanim_prop) +(roletype object_r ctl_bootanim_prop) +(type ctl_bugreport_prop) +(roletype object_r ctl_bugreport_prop) +(type ctl_console_prop) +(roletype object_r ctl_console_prop) +(type ctl_default_prop) +(roletype object_r ctl_default_prop) +(type ctl_dumpstate_prop) +(roletype object_r ctl_dumpstate_prop) +(type ctl_fuse_prop) +(roletype object_r ctl_fuse_prop) +(type ctl_mdnsd_prop) +(roletype object_r ctl_mdnsd_prop) +(type ctl_rildaemon_prop) +(roletype object_r ctl_rildaemon_prop) +(type dalvik_prop) +(roletype object_r dalvik_prop) +(type debuggerd_prop) +(roletype object_r debuggerd_prop) +(type debug_prop) +(roletype object_r debug_prop) +(type default_prop) +(roletype object_r default_prop) +(type device_logging_prop) +(roletype object_r device_logging_prop) +(type dhcp_prop) +(roletype object_r dhcp_prop) +(type dumpstate_options_prop) +(roletype object_r dumpstate_options_prop) +(type dumpstate_prop) +(roletype object_r dumpstate_prop) +(type ffs_prop) +(roletype object_r ffs_prop) +(type fingerprint_prop) +(roletype object_r fingerprint_prop) +(type firstboot_prop) +(roletype object_r firstboot_prop) +(type hwservicemanager_prop) +(roletype object_r hwservicemanager_prop) +(type logd_prop) +(roletype object_r logd_prop) +(type logpersistd_logging_prop) +(roletype object_r logpersistd_logging_prop) +(type log_prop) +(roletype object_r log_prop) +(type log_tag_prop) +(roletype object_r log_tag_prop) +(type mmc_prop) +(roletype object_r mmc_prop) +(type net_dns_prop) +(roletype object_r net_dns_prop) +(type net_radio_prop) +(roletype object_r net_radio_prop) +(type netd_stable_secret_prop) +(roletype object_r netd_stable_secret_prop) +(type nfc_prop) +(roletype object_r nfc_prop) +(type overlay_prop) +(roletype object_r overlay_prop) +(type pan_result_prop) +(roletype object_r pan_result_prop) +(type persist_debug_prop) +(roletype object_r persist_debug_prop) +(type persistent_properties_ready_prop) +(roletype object_r persistent_properties_ready_prop) +(type powerctl_prop) +(roletype object_r powerctl_prop) +(type radio_prop) +(roletype object_r radio_prop) +(type restorecon_prop) +(roletype object_r restorecon_prop) +(type safemode_prop) +(roletype object_r safemode_prop) +(type serialno_prop) +(roletype object_r serialno_prop) +(type shell_prop) +(roletype object_r shell_prop) +(type system_prop) +(roletype object_r system_prop) +(type system_radio_prop) +(roletype object_r system_radio_prop) +(type vold_prop) +(roletype object_r vold_prop) +(type wifi_log_prop) +(roletype object_r wifi_log_prop) +(type wifi_prop) +(roletype object_r wifi_prop) +(type racoon) +(roletype object_r racoon) +(type racoon_exec) +(roletype object_r racoon_exec) +(type radio) +(roletype object_r radio) +(type recovery) +(roletype object_r recovery) +(type recovery_persist) +(roletype object_r recovery_persist) +(type recovery_persist_exec) +(roletype object_r recovery_persist_exec) +(type recovery_refresh) +(roletype object_r recovery_refresh) +(type recovery_refresh_exec) +(roletype object_r recovery_refresh_exec) +(type rild) +(roletype object_r rild) +(type runas) +(roletype object_r runas) +(type runas_exec) +(roletype object_r runas_exec) +(type sdcardd) +(roletype object_r sdcardd) +(type sdcardd_exec) +(roletype object_r sdcardd_exec) +(type audioserver_service) +(roletype object_r audioserver_service) +(type batteryproperties_service) +(roletype object_r batteryproperties_service) +(type bluetooth_service) +(roletype object_r bluetooth_service) +(type cameraserver_service) +(roletype object_r cameraserver_service) +(type default_android_service) +(roletype object_r default_android_service) +(type drmserver_service) +(roletype object_r drmserver_service) +(type dumpstate_service) +(roletype object_r dumpstate_service) +(type fingerprintd_service) +(roletype object_r fingerprintd_service) +(type hal_fingerprint_service) +(roletype object_r hal_fingerprint_service) +(type gatekeeper_service) +(roletype object_r gatekeeper_service) +(type gpu_service) +(roletype object_r gpu_service) +(type inputflinger_service) +(roletype object_r inputflinger_service) +(type incident_service) +(roletype object_r incident_service) +(type installd_service) +(roletype object_r installd_service) +(type keystore_service) +(roletype object_r keystore_service) +(type mediaserver_service) +(roletype object_r mediaserver_service) +(type mediametrics_service) +(roletype object_r mediametrics_service) +(type mediaextractor_service) +(roletype object_r mediaextractor_service) +(type mediacodec_service) +(roletype object_r mediacodec_service) +(type mediadrmserver_service) +(roletype object_r mediadrmserver_service) +(type netd_service) +(roletype object_r netd_service) +(type nfc_service) +(roletype object_r nfc_service) +(type radio_service) +(roletype object_r radio_service) +(type storaged_service) +(roletype object_r storaged_service) +(type surfaceflinger_service) +(roletype object_r surfaceflinger_service) +(type system_app_service) +(roletype object_r system_app_service) +(type thermal_service) +(roletype object_r thermal_service) +(type update_engine_service) +(roletype object_r update_engine_service) +(type virtual_touchpad_service) +(roletype object_r virtual_touchpad_service) +(type vr_hwc_service) +(roletype object_r vr_hwc_service) +(type accessibility_service) +(roletype object_r accessibility_service) +(type account_service) +(roletype object_r account_service) +(type activity_service) +(roletype object_r activity_service) +(type alarm_service) +(roletype object_r alarm_service) +(type appops_service) +(roletype object_r appops_service) +(type appwidget_service) +(roletype object_r appwidget_service) +(type assetatlas_service) +(roletype object_r assetatlas_service) +(type audio_service) +(roletype object_r audio_service) +(type autofill_service) +(roletype object_r autofill_service) +(type backup_service) +(roletype object_r backup_service) +(type batterystats_service) +(roletype object_r batterystats_service) +(type battery_service) +(roletype object_r battery_service) +(type bluetooth_manager_service) +(roletype object_r bluetooth_manager_service) +(type broadcastradio_service) +(roletype object_r broadcastradio_service) +(type cameraproxy_service) +(roletype object_r cameraproxy_service) +(type clipboard_service) +(roletype object_r clipboard_service) +(type contexthub_service) +(roletype object_r contexthub_service) +(type IProxyService_service) +(roletype object_r IProxyService_service) +(type commontime_management_service) +(roletype object_r commontime_management_service) +(type companion_device_service) +(roletype object_r companion_device_service) +(type connectivity_service) +(roletype object_r connectivity_service) +(type connmetrics_service) +(roletype object_r connmetrics_service) +(type consumer_ir_service) +(roletype object_r consumer_ir_service) +(type content_service) +(roletype object_r content_service) +(type country_detector_service) +(roletype object_r country_detector_service) +(type coverage_service) +(roletype object_r coverage_service) +(type cpuinfo_service) +(roletype object_r cpuinfo_service) +(type dbinfo_service) +(roletype object_r dbinfo_service) +(type device_policy_service) +(roletype object_r device_policy_service) +(type deviceidle_service) +(roletype object_r deviceidle_service) +(type device_identifiers_service) +(roletype object_r device_identifiers_service) +(type devicestoragemonitor_service) +(roletype object_r devicestoragemonitor_service) +(type diskstats_service) +(roletype object_r diskstats_service) +(type display_service) +(roletype object_r display_service) +(type font_service) +(roletype object_r font_service) +(type netd_listener_service) +(roletype object_r netd_listener_service) +(type DockObserver_service) +(roletype object_r DockObserver_service) +(type dreams_service) +(roletype object_r dreams_service) +(type dropbox_service) +(roletype object_r dropbox_service) +(type ethernet_service) +(roletype object_r ethernet_service) +(type fingerprint_service) +(roletype object_r fingerprint_service) +(type gfxinfo_service) +(roletype object_r gfxinfo_service) +(type graphicsstats_service) +(roletype object_r graphicsstats_service) +(type hardware_service) +(roletype object_r hardware_service) +(type hardware_properties_service) +(roletype object_r hardware_properties_service) +(type hdmi_control_service) +(roletype object_r hdmi_control_service) +(type input_method_service) +(roletype object_r input_method_service) +(type input_service) +(roletype object_r input_service) +(type imms_service) +(roletype object_r imms_service) +(type ipsec_service) +(roletype object_r ipsec_service) +(type jobscheduler_service) +(roletype object_r jobscheduler_service) +(type launcherapps_service) +(roletype object_r launcherapps_service) +(type location_service) +(roletype object_r location_service) +(type lock_settings_service) +(roletype object_r lock_settings_service) +(type media_projection_service) +(roletype object_r media_projection_service) +(type media_router_service) +(roletype object_r media_router_service) +(type media_session_service) +(roletype object_r media_session_service) +(type meminfo_service) +(roletype object_r meminfo_service) +(type midi_service) +(roletype object_r midi_service) +(type mount_service) +(roletype object_r mount_service) +(type netpolicy_service) +(roletype object_r netpolicy_service) +(type netstats_service) +(roletype object_r netstats_service) +(type network_management_service) +(roletype object_r network_management_service) +(type network_score_service) +(roletype object_r network_score_service) +(type network_time_update_service) +(roletype object_r network_time_update_service) +(type notification_service) +(roletype object_r notification_service) +(type oem_lock_service) +(roletype object_r oem_lock_service) +(type otadexopt_service) +(roletype object_r otadexopt_service) +(type overlay_service) +(roletype object_r overlay_service) +(type package_service) +(roletype object_r package_service) +(type package_native_service) +(roletype object_r package_native_service) +(type permission_service) +(roletype object_r permission_service) +(type persistent_data_block_service) +(roletype object_r persistent_data_block_service) +(type pinner_service) +(roletype object_r pinner_service) +(type power_service) +(roletype object_r power_service) +(type print_service) +(roletype object_r print_service) +(type processinfo_service) +(roletype object_r processinfo_service) +(type procstats_service) +(roletype object_r procstats_service) +(type recovery_service) +(roletype object_r recovery_service) +(type registry_service) +(roletype object_r registry_service) +(type restrictions_service) +(roletype object_r restrictions_service) +(type rttmanager_service) +(roletype object_r rttmanager_service) +(type samplingprofiler_service) +(roletype object_r samplingprofiler_service) +(type scheduling_policy_service) +(roletype object_r scheduling_policy_service) +(type search_service) +(roletype object_r search_service) +(type sec_key_att_app_id_provider_service) +(roletype object_r sec_key_att_app_id_provider_service) +(type sensorservice_service) +(roletype object_r sensorservice_service) +(type serial_service) +(roletype object_r serial_service) +(type servicediscovery_service) +(roletype object_r servicediscovery_service) +(type settings_service) +(roletype object_r settings_service) +(type shortcut_service) +(roletype object_r shortcut_service) +(type statusbar_service) +(roletype object_r statusbar_service) +(type storagestats_service) +(roletype object_r storagestats_service) +(type task_service) +(roletype object_r task_service) +(type textclassification_service) +(roletype object_r textclassification_service) +(type textservices_service) +(roletype object_r textservices_service) +(type telecom_service) +(roletype object_r telecom_service) +(type timezone_service) +(roletype object_r timezone_service) +(type trust_service) +(roletype object_r trust_service) +(type tv_input_service) +(roletype object_r tv_input_service) +(type uimode_service) +(roletype object_r uimode_service) +(type updatelock_service) +(roletype object_r updatelock_service) +(type usagestats_service) +(roletype object_r usagestats_service) +(type usb_service) +(roletype object_r usb_service) +(type user_service) +(roletype object_r user_service) +(type vibrator_service) +(roletype object_r vibrator_service) +(type voiceinteraction_service) +(roletype object_r voiceinteraction_service) +(type vr_manager_service) +(roletype object_r vr_manager_service) +(type wallpaper_service) +(roletype object_r wallpaper_service) +(type webviewupdate_service) +(roletype object_r webviewupdate_service) +(type wifip2p_service) +(roletype object_r wifip2p_service) +(type wifiscanner_service) +(roletype object_r wifiscanner_service) +(type wifi_service) +(roletype object_r wifi_service) +(type wificond_service) +(roletype object_r wificond_service) +(type wifiaware_service) +(roletype object_r wifiaware_service) +(type window_service) +(roletype object_r window_service) +(type servicemanager) +(roletype object_r servicemanager) +(type servicemanager_exec) +(roletype object_r servicemanager_exec) +(type sgdisk) +(roletype object_r sgdisk) +(type sgdisk_exec) +(roletype object_r sgdisk_exec) +(type shared_relro) +(roletype object_r shared_relro) +(type shell) +(roletype object_r shell) +(type shell_exec) +(roletype object_r shell_exec) +(type slideshow) +(roletype object_r slideshow) +(type su) +(roletype object_r su) +(type su_exec) +(roletype object_r su_exec) +(type surfaceflinger) +(roletype object_r surfaceflinger) +(type system_app) +(roletype object_r system_app) +(type system_server) +(roletype object_r system_server) +(type tee) +(roletype object_r tee) +(type tee_device) +(roletype object_r tee_device) +(type thermalserviced) +(roletype object_r thermalserviced) +(type thermalserviced_exec) +(roletype object_r thermalserviced_exec) +(type tombstoned) +(roletype object_r tombstoned) +(type tombstoned_exec) +(roletype object_r tombstoned_exec) +(type toolbox) +(roletype object_r toolbox) +(type toolbox_exec) +(roletype object_r toolbox_exec) +(type tzdatacheck) +(roletype object_r tzdatacheck) +(type tzdatacheck_exec) +(roletype object_r tzdatacheck_exec) +(type ueventd) +(roletype object_r ueventd) +(type uncrypt) +(roletype object_r uncrypt) +(type uncrypt_exec) +(roletype object_r uncrypt_exec) +(type untrusted_app) +(roletype object_r untrusted_app) +(type untrusted_app_25) +(roletype object_r untrusted_app_25) +(type untrusted_v2_app) +(roletype object_r untrusted_v2_app) +(type update_engine) +(roletype object_r update_engine) +(type update_engine_exec) +(roletype object_r update_engine_exec) +(type update_verifier) +(roletype object_r update_verifier) +(type update_verifier_exec) +(roletype object_r update_verifier_exec) +(type vdc) +(roletype object_r vdc) +(type vdc_exec) +(roletype object_r vdc_exec) +(type vendor_shell_exec) +(roletype object_r vendor_shell_exec) +(type vendor_toolbox_exec) +(roletype object_r vendor_toolbox_exec) +(type virtual_touchpad) +(roletype object_r virtual_touchpad) +(type virtual_touchpad_exec) +(roletype object_r virtual_touchpad_exec) +(type default_android_vndservice) +(roletype object_r default_android_vndservice) +(type vndservicemanager) +(roletype object_r vndservicemanager) +(type vold) +(roletype object_r vold) +(type vold_exec) +(roletype object_r vold_exec) +(type vr_hwc) +(roletype object_r vr_hwc) +(type vr_hwc_exec) +(roletype object_r vr_hwc_exec) +(type watchdogd) +(roletype object_r watchdogd) +(type webview_zygote) +(roletype object_r webview_zygote) +(type webview_zygote_exec) +(roletype object_r webview_zygote_exec) +(type wificond) +(roletype object_r wificond) +(type wificond_exec) +(roletype object_r wificond_exec) +(type zygote) +(roletype object_r zygote) +(type zygote_exec) +(roletype object_r zygote_exec) +(type aee_aed) +(roletype object_r aee_aed) +(type aee_aedv) +(roletype object_r aee_aedv) +(type audiocmdservice_atci) +(roletype object_r audiocmdservice_atci) +(type boot_logo_updater) +(roletype object_r boot_logo_updater) +(type cmddumper) +(roletype object_r cmddumper) +(type kb_block_device) +(roletype object_r kb_block_device) +(type dkb_block_device) +(roletype object_r dkb_block_device) +(type em_svr) +(roletype object_r em_svr) +(type emdlogger) +(roletype object_r emdlogger) +(type factory) +(roletype object_r factory) +(type provision_file) +(roletype object_r provision_file) +(type key_install_data_file) +(roletype object_r key_install_data_file) +(type fuelgauged_static) +(roletype object_r fuelgauged_static) +(type kisd) +(roletype object_r kisd) +(type mdlogger) +(roletype object_r mdlogger) +(type meta_tst) +(roletype object_r meta_tst) +(type mobile_log_d) +(roletype object_r mobile_log_d) +(type mtkbootanimation) +(roletype object_r mtkbootanimation) +(type netdiag) +(roletype object_r netdiag) +(type pre_meta) +(roletype object_r pre_meta) +(type sensorcal) +(roletype object_r sensorcal) +(type nvram_agent_service) +(roletype object_r nvram_agent_service) +(type thermalindicator) +(roletype object_r thermalindicator) +(type GoogleOtaBinder) +(roletype object_r GoogleOtaBinder) +(type atci_service) +(roletype object_r atci_service) +(type atcid) +(roletype object_r atcid) +(type dm_agent_binder) +(roletype object_r dm_agent_binder) +(type guiext-server) +(roletype object_r guiext-server) +(type hdmi) +(roletype object_r hdmi) +(type kpoc_charger) +(roletype object_r kpoc_charger) +(type md_monitor) +(roletype object_r md_monitor) +(type met_log_d) +(roletype object_r met_log_d) +(type mtk_advcamserver) +(roletype object_r mtk_advcamserver) +(type ppl_agent) +(roletype object_r ppl_agent) +(type program_binary) +(roletype object_r program_binary) +(type mtk_anrmanager_service) +(roletype object_r mtk_anrmanager_service) +(type mtk_permrecords_service) +(roletype object_r mtk_permrecords_service) +(type mtk_advcamserver_service) +(roletype object_r mtk_advcamserver_service) +(type dm_agent_binder_service) +(roletype object_r dm_agent_binder_service) +(type mtk_mobile_service) +(roletype object_r mtk_mobile_service) +(type mtk_msg_monitor_service) +(roletype object_r mtk_msg_monitor_service) +(type mtk_perf_service) +(roletype object_r mtk_perf_service) +(type mtk_power_hal_mgr_service) +(roletype object_r mtk_power_hal_mgr_service) +(type mtk_epdg_service) +(roletype object_r mtk_epdg_service) +(type mtk_rns_service) +(roletype object_r mtk_rns_service) +(type mtk_registry_service) +(roletype object_r mtk_registry_service) +(type mtk_phonesubinfo_service) +(roletype object_r mtk_phonesubinfo_service) +(type mtk_radio_service) +(roletype object_r mtk_radio_service) +(type mtk_telecom_service) +(roletype object_r mtk_telecom_service) +(type mtk_simphonebook_service) +(roletype object_r mtk_simphonebook_service) +(type mtk_data_shaping_service) +(roletype object_r mtk_data_shaping_service) +(type mtk_search_engine_service) +(roletype object_r mtk_search_engine_service) +(type mtk_duraspeed_service) +(roletype object_r mtk_duraspeed_service) +(type mtk_fullscreen_switch_service) +(roletype object_r mtk_fullscreen_switch_service) +(type guiext-server_service) +(roletype object_r guiext-server_service) +(type ota_agent_service) +(roletype object_r ota_agent_service) +(type gas_srv_service) +(roletype object_r gas_srv_service) +(type fpspolicy-server_service) +(roletype object_r fpspolicy-server_service) +(type mtk_appdetection_service) +(roletype object_r mtk_appdetection_service) +(type mtk_carrierexpress_service) +(roletype object_r mtk_carrierexpress_service) +(type vtservice_service) +(roletype object_r vtservice_service) +(type vtservice_hidl_service) +(roletype object_r vtservice_hidl_service) +(type mtk_hdmi_service) +(roletype object_r mtk_hdmi_service) +(type ppl_agent_service) +(roletype object_r ppl_agent_service) +(type thermald) +(roletype object_r thermald) +(type usp_service) +(roletype object_r usp_service) +(type mtk_ifaa_service) +(roletype object_r mtk_ifaa_service) +(type adbd_tmpfs) +(roletype object_r adbd_tmpfs) +(type atrace_exec) +(roletype object_r atrace_exec) +(type audioserver_exec) +(roletype object_r audioserver_exec) +(type audioserver_tmpfs) +(roletype object_r audioserver_tmpfs) +(type blkid_exec) +(roletype object_r blkid_exec) +(type bluetooth_tmpfs) +(roletype object_r bluetooth_tmpfs) +(type bootanim_tmpfs) +(roletype object_r bootanim_tmpfs) +(type bootstat_tmpfs) +(roletype object_r bootstat_tmpfs) +(type bufferhubd_tmpfs) +(roletype object_r bufferhubd_tmpfs) +(type cameraserver_tmpfs) +(roletype object_r cameraserver_tmpfs) +(type cppreopts_tmpfs) +(roletype object_r cppreopts_tmpfs) +(type dexoptanalyzer) +(roletype object_r dexoptanalyzer) +(type dexoptanalyzer_exec) +(roletype object_r dexoptanalyzer_exec) +(type dexoptanalyzer_tmpfs) +(roletype object_r dexoptanalyzer_tmpfs) +(type dhcp_tmpfs) +(roletype object_r dhcp_tmpfs) +(type drmserver_tmpfs) +(roletype object_r drmserver_tmpfs) +(type dumpstate_tmpfs) +(roletype object_r dumpstate_tmpfs) +(type ephemeral_app_tmpfs) +(roletype object_r ephemeral_app_tmpfs) +(type config_gz) +(roletype object_r config_gz) +(type fingerprintd_tmpfs) +(roletype object_r fingerprintd_tmpfs) +(type fsck_tmpfs) +(roletype object_r fsck_tmpfs) +(type gatekeeperd_tmpfs) +(roletype object_r gatekeeperd_tmpfs) +(type hal_allocator_default) +(roletype object_r hal_allocator_default) +(type hal_allocator_default_exec) +(roletype object_r hal_allocator_default_exec) +(type hal_allocator_default_tmpfs) +(roletype object_r hal_allocator_default_tmpfs) +(type healthd_tmpfs) +(roletype object_r healthd_tmpfs) +(type hwservicemanager_tmpfs) +(roletype object_r hwservicemanager_tmpfs) +(type incident_exec) +(roletype object_r incident_exec) +(type incidentd_tmpfs) +(roletype object_r incidentd_tmpfs) +(type incidentd_exec) +(roletype object_r incidentd_exec) +(type init_tmpfs) +(roletype object_r init_tmpfs) +(type inputflinger_tmpfs) +(roletype object_r inputflinger_tmpfs) +(type install_recovery_tmpfs) +(roletype object_r install_recovery_tmpfs) +(type installd_tmpfs) +(roletype object_r installd_tmpfs) +(type isolated_app_tmpfs) +(roletype object_r isolated_app_tmpfs) +(type keystore_tmpfs) +(roletype object_r keystore_tmpfs) +(type lmkd_tmpfs) +(roletype object_r lmkd_tmpfs) +(type logd_tmpfs) +(roletype object_r logd_tmpfs) +(type mdnsd_exec) +(roletype object_r mdnsd_exec) +(type mdnsd_tmpfs) +(roletype object_r mdnsd_tmpfs) +(type mediadrmserver_tmpfs) +(roletype object_r mediadrmserver_tmpfs) +(type mediaextractor_tmpfs) +(roletype object_r mediaextractor_tmpfs) +(type mediametrics_tmpfs) +(roletype object_r mediametrics_tmpfs) +(type mediaprovider_tmpfs) +(roletype object_r mediaprovider_tmpfs) +(type mediaserver_tmpfs) +(roletype object_r mediaserver_tmpfs) +(type mtp_tmpfs) +(roletype object_r mtp_tmpfs) +(type netd_tmpfs) +(roletype object_r netd_tmpfs) +(type nfc_tmpfs) +(roletype object_r nfc_tmpfs) +(type otapreopt_slot_tmpfs) +(roletype object_r otapreopt_slot_tmpfs) +(type performanced_tmpfs) +(roletype object_r performanced_tmpfs) +(type platform_app_tmpfs) +(roletype object_r platform_app_tmpfs) +(type priv_app_tmpfs) +(roletype object_r priv_app_tmpfs) +(type priv_app_devpts) +(roletype object_r priv_app_devpts) +(type racoon_tmpfs) +(roletype object_r racoon_tmpfs) +(type radio_tmpfs) +(roletype object_r radio_tmpfs) +(type recovery_persist_tmpfs) +(roletype object_r recovery_persist_tmpfs) +(type recovery_refresh_tmpfs) +(roletype object_r recovery_refresh_tmpfs) +(type servicemanager_tmpfs) +(roletype object_r servicemanager_tmpfs) +(type shared_relro_tmpfs) +(roletype object_r shared_relro_tmpfs) +(type shell_tmpfs) +(roletype object_r shell_tmpfs) +(type storaged) +(roletype object_r storaged) +(type storaged_exec) +(roletype object_r storaged_exec) +(type storaged_tmpfs) +(roletype object_r storaged_tmpfs) +(type surfaceflinger_exec) +(roletype object_r surfaceflinger_exec) +(type surfaceflinger_tmpfs) +(roletype object_r surfaceflinger_tmpfs) +(type system_app_tmpfs) +(roletype object_r system_app_tmpfs) +(type system_server_tmpfs) +(roletype object_r system_server_tmpfs) +(type thermalserviced_tmpfs) +(roletype object_r thermalserviced_tmpfs) +(type tombstoned_tmpfs) +(roletype object_r tombstoned_tmpfs) +(type toolbox_tmpfs) +(roletype object_r toolbox_tmpfs) +(type tzdatacheck_tmpfs) +(roletype object_r tzdatacheck_tmpfs) +(type ueventd_tmpfs) +(roletype object_r ueventd_tmpfs) +(type uncrypt_tmpfs) +(roletype object_r uncrypt_tmpfs) +(type untrusted_app_tmpfs) +(roletype object_r untrusted_app_tmpfs) +(type untrusted_app_devpts) +(roletype object_r untrusted_app_devpts) +(type untrusted_app_25_tmpfs) +(roletype object_r untrusted_app_25_tmpfs) +(type untrusted_app_25_devpts) +(roletype object_r untrusted_app_25_devpts) +(type untrusted_v2_app_tmpfs) +(roletype object_r untrusted_v2_app_tmpfs) +(type update_engine_tmpfs) +(roletype object_r update_engine_tmpfs) +(type update_verifier_tmpfs) +(roletype object_r update_verifier_tmpfs) +(type vdc_tmpfs) +(roletype object_r vdc_tmpfs) +(type virtual_touchpad_tmpfs) +(roletype object_r virtual_touchpad_tmpfs) +(type vold_tmpfs) +(roletype object_r vold_tmpfs) +(type vr_hwc_tmpfs) +(roletype object_r vr_hwc_tmpfs) +(type webview_zygote_tmpfs) +(roletype object_r webview_zygote_tmpfs) +(type wificond_tmpfs) +(roletype object_r wificond_tmpfs) +(type zygote_tmpfs) +(roletype object_r zygote_tmpfs) +(type aee_aed_exec) +(roletype object_r aee_aed_exec) +(type aee_aed_tmpfs) +(roletype object_r aee_aed_tmpfs) +(type aee_aedv_exec) +(roletype object_r aee_aedv_exec) +(type aee_aedv_tmpfs) +(roletype object_r aee_aedv_tmpfs) +(type audiocmdservice_atci_exec) +(roletype object_r audiocmdservice_atci_exec) +(type audiocmdservice_atci_tmpfs) +(roletype object_r audiocmdservice_atci_tmpfs) +(type boot_logo_updater_exec) +(roletype object_r boot_logo_updater_exec) +(type boot_logo_updater_tmpfs) +(roletype object_r boot_logo_updater_tmpfs) +(type cmddumper_exec) +(roletype object_r cmddumper_exec) +(type cmddumper_tmpfs) +(roletype object_r cmddumper_tmpfs) +(type em_svr_exec) +(roletype object_r em_svr_exec) +(type em_svr_tmpfs) +(roletype object_r em_svr_tmpfs) +(type emdlogger_exec) +(roletype object_r emdlogger_exec) +(type emdlogger_tmpfs) +(roletype object_r emdlogger_tmpfs) +(type factory_exec) +(roletype object_r factory_exec) +(type factory_tmpfs) +(roletype object_r factory_tmpfs) +(type fuelgauged_static_exec) +(roletype object_r fuelgauged_static_exec) +(type fuelgauged_static_file) +(roletype object_r fuelgauged_static_file) +(type fuelgauged_static_tmpfs) +(roletype object_r fuelgauged_static_tmpfs) +(type kisd_exec) +(roletype object_r kisd_exec) +(type kisd_tmpfs) +(roletype object_r kisd_tmpfs) +(type mdlogger_exec) +(roletype object_r mdlogger_exec) +(type mdlogger_tmpfs) +(roletype object_r mdlogger_tmpfs) +(type meta_tst_exec) +(roletype object_r meta_tst_exec) +(type meta_tst_tmpfs) +(roletype object_r meta_tst_tmpfs) +(type mobile_log_d_exec) +(roletype object_r mobile_log_d_exec) +(type mobile_log_d_tmpfs) +(roletype object_r mobile_log_d_tmpfs) +(type mtkbootanimation_tmpfs) +(roletype object_r mtkbootanimation_tmpfs) +(type mtkbootanimation_exec) +(roletype object_r mtkbootanimation_exec) +(type netdiag_exec) +(roletype object_r netdiag_exec) +(type netdiag_tmpfs) +(roletype object_r netdiag_tmpfs) +(type pre_meta_exec) +(roletype object_r pre_meta_exec) +(type pre_meta_tmpfs) +(roletype object_r pre_meta_tmpfs) +(type sensorcal_exec) +(roletype object_r sensorcal_exec) +(type sensorcal_tmpfs) +(roletype object_r sensorcal_tmpfs) +(type storagemanagerd) +(roletype object_r storagemanagerd) +(type storagemanagerd_exec) +(roletype object_r storagemanagerd_exec) +(type storagemanagerd_tmpfs) +(roletype object_r storagemanagerd_tmpfs) +(type thermalindicator_exec) +(roletype object_r thermalindicator_exec) +(type thermalindicator_tmpfs) +(roletype object_r thermalindicator_tmpfs) +(type GoogleOtaBinder_exec) +(roletype object_r GoogleOtaBinder_exec) +(type GoogleOtaBinder_tmpfs) +(roletype object_r GoogleOtaBinder_tmpfs) +(type aal_exec) +(roletype object_r aal_exec) +(type aal) +(roletype object_r aal) +(type aal_tmpfs) +(roletype object_r aal_tmpfs) +(type atci_service_exec) +(roletype object_r atci_service_exec) +(type atci_service_tmpfs) +(roletype object_r atci_service_tmpfs) +(type atcid_exec) +(roletype object_r atcid_exec) +(type atcid_tmpfs) +(roletype object_r atcid_tmpfs) +(type batterywarning_exec) +(roletype object_r batterywarning_exec) +(type batterywarning) +(roletype object_r batterywarning) +(type batterywarning_tmpfs) +(roletype object_r batterywarning_tmpfs) +(type dm_agent_binder_exec) +(roletype object_r dm_agent_binder_exec) +(type dm_agent_binder_tmpfs) +(roletype object_r dm_agent_binder_tmpfs) +(type atci_serv_fw_socket) +(roletype object_r atci_serv_fw_socket) +(type atci_audio_socket) +(roletype object_r atci_audio_socket) +(type atci_service_socket) +(roletype object_r atci_service_socket) +(type adb_atci_socket) +(roletype object_r adb_atci_socket) +(type atci_data_file) +(roletype object_r atci_data_file) +(type md_monitor_data_file) +(roletype object_r md_monitor_data_file) +(type guiext-server_exec) +(roletype object_r guiext-server_exec) +(type guiext-server_tmpfs) +(roletype object_r guiext-server_tmpfs) +(type hdmi_exec) +(roletype object_r hdmi_exec) +(type hdmi_tmpfs) +(roletype object_r hdmi_tmpfs) +(type kpoc_charger_exec) +(roletype object_r kpoc_charger_exec) +(type kpoc_charger_tmpfs) +(roletype object_r kpoc_charger_tmpfs) +(type md_monitor_exec) +(roletype object_r md_monitor_exec) +(type md_monitor_tmpfs) +(roletype object_r md_monitor_tmpfs) +(type met_log_d_exec) +(roletype object_r met_log_d_exec) +(type met_log_d_tmpfs) +(roletype object_r met_log_d_tmpfs) +(type mmp_exec) +(roletype object_r mmp_exec) +(type mmp) +(roletype object_r mmp) +(type mmp_tmpfs) +(roletype object_r mmp_tmpfs) +(type mtk_advcamserver_exec) +(roletype object_r mtk_advcamserver_exec) +(type mtk_advcamserver_tmpfs) +(roletype object_r mtk_advcamserver_tmpfs) +(type ppl_agent_exec) +(roletype object_r ppl_agent_exec) +(type ppl_agent_tmpfs) +(roletype object_r ppl_agent_tmpfs) +(type program_binary_exec) +(roletype object_r program_binary_exec) +(type program_binary_tmpfs) +(roletype object_r program_binary_tmpfs) +(type ctl_atcid-daemon-u_prop) +(roletype object_r ctl_atcid-daemon-u_prop) +(type ctl_atci_service_prop) +(roletype object_r ctl_atci_service_prop) +(type mdmmonitor_prop) +(roletype object_r mdmmonitor_prop) +(type aal_service) +(roletype object_r aal_service) +(type mtk_connmetrics_service) +(roletype object_r mtk_connmetrics_service) +(type program_binary_service) +(roletype object_r program_binary_service) +(type sn_exec) +(roletype object_r sn_exec) +(type sn) +(roletype object_r sn) +(type sn_tmpfs) +(roletype object_r sn_tmpfs) +(type thermald_exec) +(roletype object_r thermald_exec) +(type thermald_tmpfs) +(roletype object_r thermald_tmpfs) +(type usp_service_exec) +(roletype object_r usp_service_exec) +(type usp_service_tmpfs) +(roletype object_r usp_service_tmpfs) +(user u) +(userrole u object_r) +(userrole u r) +(userlevel u (s0 )) +(userrange u ((s0 ) (s0 (range c0 c1023)))) +(sensitivity s0) +(sensitivitycategory s0 (c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45 c46 c47 c48 c49 c50 c51 c52 c53 c54 c55 c56 c57 c58 c59 c60 c61 c62 c63 c64 c65 c66 c67 c68 c69 c70 c71 c72 c73 c74 c75 c76 c77 c78 c79 c80 c81 c82 c83 c84 c85 c86 c87 c88 c89 c90 c91 c92 c93 c94 c95 c96 c97 c98 c99 c100 c101 c102 c103 c104 c105 c106 c107 c108 c109 c110 c111 c112 c113 c114 c115 c116 c117 c118 c119 c120 c121 c122 c123 c124 c125 c126 c127 c128 c129 c130 c131 c132 c133 c134 c135 c136 c137 c138 c139 c140 c141 c142 c143 c144 c145 c146 c147 c148 c149 c150 c151 c152 c153 c154 c155 c156 c157 c158 c159 c160 c161 c162 c163 c164 c165 c166 c167 c168 c169 c170 c171 c172 c173 c174 c175 c176 c177 c178 c179 c180 c181 c182 c183 c184 c185 c186 c187 c188 c189 c190 c191 c192 c193 c194 c195 c196 c197 c198 c199 c200 c201 c202 c203 c204 c205 c206 c207 c208 c209 c210 c211 c212 c213 c214 c215 c216 c217 c218 c219 c220 c221 c222 c223 c224 c225 c226 c227 c228 c229 c230 c231 c232 c233 c234 c235 c236 c237 c238 c239 c240 c241 c242 c243 c244 c245 c246 c247 c248 c249 c250 c251 c252 c253 c254 c255 c256 c257 c258 c259 c260 c261 c262 c263 c264 c265 c266 c267 c268 c269 c270 c271 c272 c273 c274 c275 c276 c277 c278 c279 c280 c281 c282 c283 c284 c285 c286 c287 c288 c289 c290 c291 c292 c293 c294 c295 c296 c297 c298 c299 c300 c301 c302 c303 c304 c305 c306 c307 c308 c309 c310 c311 c312 c313 c314 c315 c316 c317 c318 c319 c320 c321 c322 c323 c324 c325 c326 c327 c328 c329 c330 c331 c332 c333 c334 c335 c336 c337 c338 c339 c340 c341 c342 c343 c344 c345 c346 c347 c348 c349 c350 c351 c352 c353 c354 c355 c356 c357 c358 c359 c360 c361 c362 c363 c364 c365 c366 c367 c368 c369 c370 c371 c372 c373 c374 c375 c376 c377 c378 c379 c380 c381 c382 c383 c384 c385 c386 c387 c388 c389 c390 c391 c392 c393 c394 c395 c396 c397 c398 c399 c400 c401 c402 c403 c404 c405 c406 c407 c408 c409 c410 c411 c412 c413 c414 c415 c416 c417 c418 c419 c420 c421 c422 c423 c424 c425 c426 c427 c428 c429 c430 c431 c432 c433 c434 c435 c436 c437 c438 c439 c440 c441 c442 c443 c444 c445 c446 c447 c448 c449 c450 c451 c452 c453 c454 c455 c456 c457 c458 c459 c460 c461 c462 c463 c464 c465 c466 c467 c468 c469 c470 c471 c472 c473 c474 c475 c476 c477 c478 c479 c480 c481 c482 c483 c484 c485 c486 c487 c488 c489 c490 c491 c492 c493 c494 c495 c496 c497 c498 c499 c500 c501 c502 c503 c504 c505 c506 c507 c508 c509 c510 c511 c512 c513 c514 c515 c516 c517 c518 c519 c520 c521 c522 c523 c524 c525 c526 c527 c528 c529 c530 c531 c532 c533 c534 c535 c536 c537 c538 c539 c540 c541 c542 c543 c544 c545 c546 c547 c548 c549 c550 c551 c552 c553 c554 c555 c556 c557 c558 c559 c560 c561 c562 c563 c564 c565 c566 c567 c568 c569 c570 c571 c572 c573 c574 c575 c576 c577 c578 c579 c580 c581 c582 c583 c584 c585 c586 c587 c588 c589 c590 c591 c592 c593 c594 c595 c596 c597 c598 c599 c600 c601 c602 c603 c604 c605 c606 c607 c608 c609 c610 c611 c612 c613 c614 c615 c616 c617 c618 c619 c620 c621 c622 c623 c624 c625 c626 c627 c628 c629 c630 c631 c632 c633 c634 c635 c636 c637 c638 c639 c640 c641 c642 c643 c644 c645 c646 c647 c648 c649 c650 c651 c652 c653 c654 c655 c656 c657 c658 c659 c660 c661 c662 c663 c664 c665 c666 c667 c668 c669 c670 c671 c672 c673 c674 c675 c676 c677 c678 c679 c680 c681 c682 c683 c684 c685 c686 c687 c688 c689 c690 c691 c692 c693 c694 c695 c696 c697 c698 c699 c700 c701 c702 c703 c704 c705 c706 c707 c708 c709 c710 c711 c712 c713 c714 c715 c716 c717 c718 c719 c720 c721 c722 c723 c724 c725 c726 c727 c728 c729 c730 c731 c732 c733 c734 c735 c736 c737 c738 c739 c740 c741 c742 c743 c744 c745 c746 c747 c748 c749 c750 c751 c752 c753 c754 c755 c756 c757 c758 c759 c760 c761 c762 c763 c764 c765 c766 c767 c768 c769 c770 c771 c772 c773 c774 c775 c776 c777 c778 c779 c780 c781 c782 c783 c784 c785 c786 c787 c788 c789 c790 c791 c792 c793 c794 c795 c796 c797 c798 c799 c800 c801 c802 c803 c804 c805 c806 c807 c808 c809 c810 c811 c812 c813 c814 c815 c816 c817 c818 c819 c820 c821 c822 c823 c824 c825 c826 c827 c828 c829 c830 c831 c832 c833 c834 c835 c836 c837 c838 c839 c840 c841 c842 c843 c844 c845 c846 c847 c848 c849 c850 c851 c852 c853 c854 c855 c856 c857 c858 c859 c860 c861 c862 c863 c864 c865 c866 c867 c868 c869 c870 c871 c872 c873 c874 c875 c876 c877 c878 c879 c880 c881 c882 c883 c884 c885 c886 c887 c888 c889 c890 c891 c892 c893 c894 c895 c896 c897 c898 c899 c900 c901 c902 c903 c904 c905 c906 c907 c908 c909 c910 c911 c912 c913 c914 c915 c916 c917 c918 c919 c920 c921 c922 c923 c924 c925 c926 c927 c928 c929 c930 c931 c932 c933 c934 c935 c936 c937 c938 c939 c940 c941 c942 c943 c944 c945 c946 c947 c948 c949 c950 c951 c952 c953 c954 c955 c956 c957 c958 c959 c960 c961 c962 c963 c964 c965 c966 c967 c968 c969 c970 c971 c972 c973 c974 c975 c976 c977 c978 c979 c980 c981 c982 c983 c984 c985 c986 c987 c988 c989 c990 c991 c992 c993 c994 c995 c996 c997 c998 c999 c1000 c1001 c1002 c1003 c1004 c1005 c1006 c1007 c1008 c1009 c1010 c1011 c1012 c1013 c1014 c1015 c1016 c1017 c1018 c1019 c1020 c1021 c1022 c1023 )) +(sensitivityorder (s0 )) +(category c0) +(category c1) +(category c2) +(category c3) +(category c4) +(category c5) +(category c6) +(category c7) +(category c8) +(category c9) +(category c10) +(category c11) +(category c12) +(category c13) +(category c14) +(category c15) +(category c16) +(category c17) +(category c18) +(category c19) +(category c20) +(category c21) +(category c22) +(category c23) +(category c24) +(category c25) +(category c26) +(category c27) +(category c28) +(category c29) +(category c30) +(category c31) +(category c32) +(category c33) +(category c34) +(category c35) +(category c36) +(category c37) +(category c38) +(category c39) +(category c40) +(category c41) +(category c42) +(category c43) +(category c44) +(category c45) +(category c46) +(category c47) +(category c48) +(category c49) +(category c50) +(category c51) +(category c52) +(category c53) +(category c54) +(category c55) +(category c56) +(category c57) +(category c58) +(category c59) +(category c60) +(category c61) +(category c62) +(category c63) +(category c64) +(category c65) +(category c66) +(category c67) +(category c68) +(category c69) +(category c70) +(category c71) +(category c72) +(category c73) +(category c74) +(category c75) +(category c76) +(category c77) +(category c78) +(category c79) +(category c80) +(category c81) +(category c82) +(category c83) +(category c84) +(category c85) +(category c86) +(category c87) +(category c88) +(category c89) +(category c90) +(category c91) +(category c92) +(category c93) +(category c94) +(category c95) +(category c96) +(category c97) +(category c98) +(category c99) +(category c100) +(category c101) +(category c102) +(category c103) +(category c104) +(category c105) +(category c106) +(category c107) +(category c108) +(category c109) +(category c110) +(category c111) +(category c112) +(category c113) +(category c114) +(category c115) +(category c116) +(category c117) +(category c118) +(category c119) +(category c120) +(category c121) +(category c122) +(category c123) +(category c124) +(category c125) +(category c126) +(category c127) +(category c128) +(category c129) +(category c130) +(category c131) +(category c132) +(category c133) +(category c134) +(category c135) +(category c136) +(category c137) +(category c138) +(category c139) +(category c140) +(category c141) +(category c142) +(category c143) +(category c144) +(category c145) +(category c146) +(category c147) +(category c148) +(category c149) +(category c150) +(category c151) +(category c152) +(category c153) +(category c154) +(category c155) +(category c156) +(category c157) +(category c158) +(category c159) +(category c160) +(category c161) +(category c162) +(category c163) +(category c164) +(category c165) +(category c166) +(category c167) +(category c168) +(category c169) +(category c170) +(category c171) +(category c172) +(category c173) +(category c174) +(category c175) +(category c176) +(category c177) +(category c178) +(category c179) +(category c180) +(category c181) +(category c182) +(category c183) +(category c184) +(category c185) +(category c186) +(category c187) +(category c188) +(category c189) +(category c190) +(category c191) +(category c192) +(category c193) +(category c194) +(category c195) +(category c196) +(category c197) +(category c198) +(category c199) +(category c200) +(category c201) +(category c202) +(category c203) +(category c204) +(category c205) +(category c206) +(category c207) +(category c208) +(category c209) +(category c210) +(category c211) +(category c212) +(category c213) +(category c214) +(category c215) +(category c216) +(category c217) +(category c218) +(category c219) +(category c220) +(category c221) +(category c222) +(category c223) +(category c224) +(category c225) +(category c226) +(category c227) +(category c228) +(category c229) +(category c230) +(category c231) +(category c232) +(category c233) +(category c234) +(category c235) +(category c236) +(category c237) +(category c238) +(category c239) +(category c240) +(category c241) +(category c242) +(category c243) +(category c244) +(category c245) +(category c246) +(category c247) +(category c248) +(category c249) +(category c250) +(category c251) +(category c252) +(category c253) +(category c254) +(category c255) +(category c256) +(category c257) +(category c258) +(category c259) +(category c260) +(category c261) +(category c262) +(category c263) +(category c264) +(category c265) +(category c266) +(category c267) +(category c268) +(category c269) +(category c270) +(category c271) +(category c272) +(category c273) +(category c274) +(category c275) +(category c276) +(category c277) +(category c278) +(category c279) +(category c280) +(category c281) +(category c282) +(category c283) +(category c284) +(category c285) +(category c286) +(category c287) +(category c288) +(category c289) +(category c290) +(category c291) +(category c292) +(category c293) +(category c294) +(category c295) +(category c296) +(category c297) +(category c298) +(category c299) +(category c300) +(category c301) +(category c302) +(category c303) +(category c304) +(category c305) +(category c306) +(category c307) +(category c308) +(category c309) +(category c310) +(category c311) +(category c312) +(category c313) +(category c314) +(category c315) +(category c316) +(category c317) +(category c318) +(category c319) +(category c320) +(category c321) +(category c322) +(category c323) +(category c324) +(category c325) +(category c326) +(category c327) +(category c328) +(category c329) +(category c330) +(category c331) +(category c332) +(category c333) +(category c334) +(category c335) +(category c336) +(category c337) +(category c338) +(category c339) +(category c340) +(category c341) +(category c342) +(category c343) +(category c344) +(category c345) +(category c346) +(category c347) +(category c348) +(category c349) +(category c350) +(category c351) +(category c352) +(category c353) +(category c354) +(category c355) +(category c356) +(category c357) +(category c358) +(category c359) +(category c360) +(category c361) +(category c362) +(category c363) +(category c364) +(category c365) +(category c366) +(category c367) +(category c368) +(category c369) +(category c370) +(category c371) +(category c372) +(category c373) +(category c374) +(category c375) +(category c376) +(category c377) +(category c378) +(category c379) +(category c380) +(category c381) +(category c382) +(category c383) +(category c384) +(category c385) +(category c386) +(category c387) +(category c388) +(category c389) +(category c390) +(category c391) +(category c392) +(category c393) +(category c394) +(category c395) +(category c396) +(category c397) +(category c398) +(category c399) +(category c400) +(category c401) +(category c402) +(category c403) +(category c404) +(category c405) +(category c406) +(category c407) +(category c408) +(category c409) +(category c410) +(category c411) +(category c412) +(category c413) +(category c414) +(category c415) +(category c416) +(category c417) +(category c418) +(category c419) +(category c420) +(category c421) +(category c422) +(category c423) +(category c424) +(category c425) +(category c426) +(category c427) +(category c428) +(category c429) +(category c430) +(category c431) +(category c432) +(category c433) +(category c434) +(category c435) +(category c436) +(category c437) +(category c438) +(category c439) +(category c440) +(category c441) +(category c442) +(category c443) +(category c444) +(category c445) +(category c446) +(category c447) +(category c448) +(category c449) +(category c450) +(category c451) +(category c452) +(category c453) +(category c454) +(category c455) +(category c456) +(category c457) +(category c458) +(category c459) +(category c460) +(category c461) +(category c462) +(category c463) +(category c464) +(category c465) +(category c466) +(category c467) +(category c468) +(category c469) +(category c470) +(category c471) +(category c472) +(category c473) +(category c474) +(category c475) +(category c476) +(category c477) +(category c478) +(category c479) +(category c480) +(category c481) +(category c482) +(category c483) +(category c484) +(category c485) +(category c486) +(category c487) +(category c488) +(category c489) +(category c490) +(category c491) +(category c492) +(category c493) +(category c494) +(category c495) +(category c496) +(category c497) +(category c498) +(category c499) +(category c500) +(category c501) +(category c502) +(category c503) +(category c504) +(category c505) +(category c506) +(category c507) +(category c508) +(category c509) +(category c510) +(category c511) +(category c512) +(category c513) +(category c514) +(category c515) +(category c516) +(category c517) +(category c518) +(category c519) +(category c520) +(category c521) +(category c522) +(category c523) +(category c524) +(category c525) +(category c526) +(category c527) +(category c528) +(category c529) +(category c530) +(category c531) +(category c532) +(category c533) +(category c534) +(category c535) +(category c536) +(category c537) +(category c538) +(category c539) +(category c540) +(category c541) +(category c542) +(category c543) +(category c544) +(category c545) +(category c546) +(category c547) +(category c548) +(category c549) +(category c550) +(category c551) +(category c552) +(category c553) +(category c554) +(category c555) +(category c556) +(category c557) +(category c558) +(category c559) +(category c560) +(category c561) +(category c562) +(category c563) +(category c564) +(category c565) +(category c566) +(category c567) +(category c568) +(category c569) +(category c570) +(category c571) +(category c572) +(category c573) +(category c574) +(category c575) +(category c576) +(category c577) +(category c578) +(category c579) +(category c580) +(category c581) +(category c582) +(category c583) +(category c584) +(category c585) +(category c586) +(category c587) +(category c588) +(category c589) +(category c590) +(category c591) +(category c592) +(category c593) +(category c594) +(category c595) +(category c596) +(category c597) +(category c598) +(category c599) +(category c600) +(category c601) +(category c602) +(category c603) +(category c604) +(category c605) +(category c606) +(category c607) +(category c608) +(category c609) +(category c610) +(category c611) +(category c612) +(category c613) +(category c614) +(category c615) +(category c616) +(category c617) +(category c618) +(category c619) +(category c620) +(category c621) +(category c622) +(category c623) +(category c624) +(category c625) +(category c626) +(category c627) +(category c628) +(category c629) +(category c630) +(category c631) +(category c632) +(category c633) +(category c634) +(category c635) +(category c636) +(category c637) +(category c638) +(category c639) +(category c640) +(category c641) +(category c642) +(category c643) +(category c644) +(category c645) +(category c646) +(category c647) +(category c648) +(category c649) +(category c650) +(category c651) +(category c652) +(category c653) +(category c654) +(category c655) +(category c656) +(category c657) +(category c658) +(category c659) +(category c660) +(category c661) +(category c662) +(category c663) +(category c664) +(category c665) +(category c666) +(category c667) +(category c668) +(category c669) +(category c670) +(category c671) +(category c672) +(category c673) +(category c674) +(category c675) +(category c676) +(category c677) +(category c678) +(category c679) +(category c680) +(category c681) +(category c682) +(category c683) +(category c684) +(category c685) +(category c686) +(category c687) +(category c688) +(category c689) +(category c690) +(category c691) +(category c692) +(category c693) +(category c694) +(category c695) +(category c696) +(category c697) +(category c698) +(category c699) +(category c700) +(category c701) +(category c702) +(category c703) +(category c704) +(category c705) +(category c706) +(category c707) +(category c708) +(category c709) +(category c710) +(category c711) +(category c712) +(category c713) +(category c714) +(category c715) +(category c716) +(category c717) +(category c718) +(category c719) +(category c720) +(category c721) +(category c722) +(category c723) +(category c724) +(category c725) +(category c726) +(category c727) +(category c728) +(category c729) +(category c730) +(category c731) +(category c732) +(category c733) +(category c734) +(category c735) +(category c736) +(category c737) +(category c738) +(category c739) +(category c740) +(category c741) +(category c742) +(category c743) +(category c744) +(category c745) +(category c746) +(category c747) +(category c748) +(category c749) +(category c750) +(category c751) +(category c752) +(category c753) +(category c754) +(category c755) +(category c756) +(category c757) +(category c758) +(category c759) +(category c760) +(category c761) +(category c762) +(category c763) +(category c764) +(category c765) +(category c766) +(category c767) +(category c768) +(category c769) +(category c770) +(category c771) +(category c772) +(category c773) +(category c774) +(category c775) +(category c776) +(category c777) +(category c778) +(category c779) +(category c780) +(category c781) +(category c782) +(category c783) +(category c784) +(category c785) +(category c786) +(category c787) +(category c788) +(category c789) +(category c790) +(category c791) +(category c792) +(category c793) +(category c794) +(category c795) +(category c796) +(category c797) +(category c798) +(category c799) +(category c800) +(category c801) +(category c802) +(category c803) +(category c804) +(category c805) +(category c806) +(category c807) +(category c808) +(category c809) +(category c810) +(category c811) +(category c812) +(category c813) +(category c814) +(category c815) +(category c816) +(category c817) +(category c818) +(category c819) +(category c820) +(category c821) +(category c822) +(category c823) +(category c824) +(category c825) +(category c826) +(category c827) +(category c828) +(category c829) +(category c830) +(category c831) +(category c832) +(category c833) +(category c834) +(category c835) +(category c836) +(category c837) +(category c838) +(category c839) +(category c840) +(category c841) +(category c842) +(category c843) +(category c844) +(category c845) +(category c846) +(category c847) +(category c848) +(category c849) +(category c850) +(category c851) +(category c852) +(category c853) +(category c854) +(category c855) +(category c856) +(category c857) +(category c858) +(category c859) +(category c860) +(category c861) +(category c862) +(category c863) +(category c864) +(category c865) +(category c866) +(category c867) +(category c868) +(category c869) +(category c870) +(category c871) +(category c872) +(category c873) +(category c874) +(category c875) +(category c876) +(category c877) +(category c878) +(category c879) +(category c880) +(category c881) +(category c882) +(category c883) +(category c884) +(category c885) +(category c886) +(category c887) +(category c888) +(category c889) +(category c890) +(category c891) +(category c892) +(category c893) +(category c894) +(category c895) +(category c896) +(category c897) +(category c898) +(category c899) +(category c900) +(category c901) +(category c902) +(category c903) +(category c904) +(category c905) +(category c906) +(category c907) +(category c908) +(category c909) +(category c910) +(category c911) +(category c912) +(category c913) +(category c914) +(category c915) +(category c916) +(category c917) +(category c918) +(category c919) +(category c920) +(category c921) +(category c922) +(category c923) +(category c924) +(category c925) +(category c926) +(category c927) +(category c928) +(category c929) +(category c930) +(category c931) +(category c932) +(category c933) +(category c934) +(category c935) +(category c936) +(category c937) +(category c938) +(category c939) +(category c940) +(category c941) +(category c942) +(category c943) +(category c944) +(category c945) +(category c946) +(category c947) +(category c948) +(category c949) +(category c950) +(category c951) +(category c952) +(category c953) +(category c954) +(category c955) +(category c956) +(category c957) +(category c958) +(category c959) +(category c960) +(category c961) +(category c962) +(category c963) +(category c964) +(category c965) +(category c966) +(category c967) +(category c968) +(category c969) +(category c970) +(category c971) +(category c972) +(category c973) +(category c974) +(category c975) +(category c976) +(category c977) +(category c978) +(category c979) +(category c980) +(category c981) +(category c982) +(category c983) +(category c984) +(category c985) +(category c986) +(category c987) +(category c988) +(category c989) +(category c990) +(category c991) +(category c992) +(category c993) +(category c994) +(category c995) +(category c996) +(category c997) +(category c998) +(category c999) +(category c1000) +(category c1001) +(category c1002) +(category c1003) +(category c1004) +(category c1005) +(category c1006) +(category c1007) +(category c1008) +(category c1009) +(category c1010) +(category c1011) +(category c1012) +(category c1013) +(category c1014) +(category c1015) +(category c1016) +(category c1017) +(category c1018) +(category c1019) +(category c1020) +(category c1021) +(category c1022) +(category c1023) +(categoryorder (c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45 c46 c47 c48 c49 c50 c51 c52 c53 c54 c55 c56 c57 c58 c59 c60 c61 c62 c63 c64 c65 c66 c67 c68 c69 c70 c71 c72 c73 c74 c75 c76 c77 c78 c79 c80 c81 c82 c83 c84 c85 c86 c87 c88 c89 c90 c91 c92 c93 c94 c95 c96 c97 c98 c99 c100 c101 c102 c103 c104 c105 c106 c107 c108 c109 c110 c111 c112 c113 c114 c115 c116 c117 c118 c119 c120 c121 c122 c123 c124 c125 c126 c127 c128 c129 c130 c131 c132 c133 c134 c135 c136 c137 c138 c139 c140 c141 c142 c143 c144 c145 c146 c147 c148 c149 c150 c151 c152 c153 c154 c155 c156 c157 c158 c159 c160 c161 c162 c163 c164 c165 c166 c167 c168 c169 c170 c171 c172 c173 c174 c175 c176 c177 c178 c179 c180 c181 c182 c183 c184 c185 c186 c187 c188 c189 c190 c191 c192 c193 c194 c195 c196 c197 c198 c199 c200 c201 c202 c203 c204 c205 c206 c207 c208 c209 c210 c211 c212 c213 c214 c215 c216 c217 c218 c219 c220 c221 c222 c223 c224 c225 c226 c227 c228 c229 c230 c231 c232 c233 c234 c235 c236 c237 c238 c239 c240 c241 c242 c243 c244 c245 c246 c247 c248 c249 c250 c251 c252 c253 c254 c255 c256 c257 c258 c259 c260 c261 c262 c263 c264 c265 c266 c267 c268 c269 c270 c271 c272 c273 c274 c275 c276 c277 c278 c279 c280 c281 c282 c283 c284 c285 c286 c287 c288 c289 c290 c291 c292 c293 c294 c295 c296 c297 c298 c299 c300 c301 c302 c303 c304 c305 c306 c307 c308 c309 c310 c311 c312 c313 c314 c315 c316 c317 c318 c319 c320 c321 c322 c323 c324 c325 c326 c327 c328 c329 c330 c331 c332 c333 c334 c335 c336 c337 c338 c339 c340 c341 c342 c343 c344 c345 c346 c347 c348 c349 c350 c351 c352 c353 c354 c355 c356 c357 c358 c359 c360 c361 c362 c363 c364 c365 c366 c367 c368 c369 c370 c371 c372 c373 c374 c375 c376 c377 c378 c379 c380 c381 c382 c383 c384 c385 c386 c387 c388 c389 c390 c391 c392 c393 c394 c395 c396 c397 c398 c399 c400 c401 c402 c403 c404 c405 c406 c407 c408 c409 c410 c411 c412 c413 c414 c415 c416 c417 c418 c419 c420 c421 c422 c423 c424 c425 c426 c427 c428 c429 c430 c431 c432 c433 c434 c435 c436 c437 c438 c439 c440 c441 c442 c443 c444 c445 c446 c447 c448 c449 c450 c451 c452 c453 c454 c455 c456 c457 c458 c459 c460 c461 c462 c463 c464 c465 c466 c467 c468 c469 c470 c471 c472 c473 c474 c475 c476 c477 c478 c479 c480 c481 c482 c483 c484 c485 c486 c487 c488 c489 c490 c491 c492 c493 c494 c495 c496 c497 c498 c499 c500 c501 c502 c503 c504 c505 c506 c507 c508 c509 c510 c511 c512 c513 c514 c515 c516 c517 c518 c519 c520 c521 c522 c523 c524 c525 c526 c527 c528 c529 c530 c531 c532 c533 c534 c535 c536 c537 c538 c539 c540 c541 c542 c543 c544 c545 c546 c547 c548 c549 c550 c551 c552 c553 c554 c555 c556 c557 c558 c559 c560 c561 c562 c563 c564 c565 c566 c567 c568 c569 c570 c571 c572 c573 c574 c575 c576 c577 c578 c579 c580 c581 c582 c583 c584 c585 c586 c587 c588 c589 c590 c591 c592 c593 c594 c595 c596 c597 c598 c599 c600 c601 c602 c603 c604 c605 c606 c607 c608 c609 c610 c611 c612 c613 c614 c615 c616 c617 c618 c619 c620 c621 c622 c623 c624 c625 c626 c627 c628 c629 c630 c631 c632 c633 c634 c635 c636 c637 c638 c639 c640 c641 c642 c643 c644 c645 c646 c647 c648 c649 c650 c651 c652 c653 c654 c655 c656 c657 c658 c659 c660 c661 c662 c663 c664 c665 c666 c667 c668 c669 c670 c671 c672 c673 c674 c675 c676 c677 c678 c679 c680 c681 c682 c683 c684 c685 c686 c687 c688 c689 c690 c691 c692 c693 c694 c695 c696 c697 c698 c699 c700 c701 c702 c703 c704 c705 c706 c707 c708 c709 c710 c711 c712 c713 c714 c715 c716 c717 c718 c719 c720 c721 c722 c723 c724 c725 c726 c727 c728 c729 c730 c731 c732 c733 c734 c735 c736 c737 c738 c739 c740 c741 c742 c743 c744 c745 c746 c747 c748 c749 c750 c751 c752 c753 c754 c755 c756 c757 c758 c759 c760 c761 c762 c763 c764 c765 c766 c767 c768 c769 c770 c771 c772 c773 c774 c775 c776 c777 c778 c779 c780 c781 c782 c783 c784 c785 c786 c787 c788 c789 c790 c791 c792 c793 c794 c795 c796 c797 c798 c799 c800 c801 c802 c803 c804 c805 c806 c807 c808 c809 c810 c811 c812 c813 c814 c815 c816 c817 c818 c819 c820 c821 c822 c823 c824 c825 c826 c827 c828 c829 c830 c831 c832 c833 c834 c835 c836 c837 c838 c839 c840 c841 c842 c843 c844 c845 c846 c847 c848 c849 c850 c851 c852 c853 c854 c855 c856 c857 c858 c859 c860 c861 c862 c863 c864 c865 c866 c867 c868 c869 c870 c871 c872 c873 c874 c875 c876 c877 c878 c879 c880 c881 c882 c883 c884 c885 c886 c887 c888 c889 c890 c891 c892 c893 c894 c895 c896 c897 c898 c899 c900 c901 c902 c903 c904 c905 c906 c907 c908 c909 c910 c911 c912 c913 c914 c915 c916 c917 c918 c919 c920 c921 c922 c923 c924 c925 c926 c927 c928 c929 c930 c931 c932 c933 c934 c935 c936 c937 c938 c939 c940 c941 c942 c943 c944 c945 c946 c947 c948 c949 c950 c951 c952 c953 c954 c955 c956 c957 c958 c959 c960 c961 c962 c963 c964 c965 c966 c967 c968 c969 c970 c971 c972 c973 c974 c975 c976 c977 c978 c979 c980 c981 c982 c983 c984 c985 c986 c987 c988 c989 c990 c991 c992 c993 c994 c995 c996 c997 c998 c999 c1000 c1001 c1002 c1003 c1004 c1005 c1006 c1007 c1008 c1009 c1010 c1011 c1012 c1013 c1014 c1015 c1016 c1017 c1018 c1019 c1020 c1021 c1022 c1023 )) +(allow bootanim servicemanager (binder (call transfer))) +(allow servicemanager bootanim (dir (search))) +(allow servicemanager bootanim (file (read open))) +(allow servicemanager bootanim (process (getattr))) +(allow bootanim surfaceflinger (binder (call transfer))) +(allow surfaceflinger bootanim (binder (transfer))) +(allow bootanim surfaceflinger (fd (use))) +(allow bootanim audioserver (binder (call transfer))) +(allow audioserver bootanim (binder (transfer))) +(allow bootanim audioserver (fd (use))) +(allow bootanim hwservicemanager (binder (call transfer))) +(allow hwservicemanager bootanim (binder (call transfer))) +(allow hwservicemanager bootanim (dir (search))) +(allow hwservicemanager bootanim (file (read open))) +(allow hwservicemanager bootanim (process (getattr))) +(allow bootanim gpu_device (chr_file (ioctl read write getattr lock append map open))) +(allow bootanim oemfs (dir (search))) +(allow bootanim oemfs (file (ioctl read getattr lock map open))) +(allow bootanim audio_device (dir (ioctl read getattr lock search open))) +(allow bootanim audio_device (chr_file (ioctl read write getattr lock append map open))) +(allow bootanim audioserver_service (service_manager (find))) +(allow bootanim surfaceflinger_service (service_manager (find))) +(allow bootanim ion_device (chr_file (ioctl read write getattr lock append map open))) +(allow bootanim hal_graphics_allocator (fd (use))) +(allow bootanim hal_graphics_composer (fd (use))) +(allow bootanim proc (dir (ioctl read getattr lock search open))) +(allow bootanim proc (file (ioctl read getattr lock map open))) +(allow bootanim proc (lnk_file (ioctl read getattr lock map open))) +(allow bootanim proc_meminfo (file (ioctl read getattr lock map open))) +(allow bootanim sysfs (dir (ioctl read getattr lock search open))) +(allow bootanim sysfs (file (ioctl read getattr lock map open))) +(allow bootanim sysfs (lnk_file (ioctl read getattr lock map open))) +(allow bootanim cgroup (dir (ioctl read getattr lock search open))) +(allow bootanim cgroup (file (ioctl read getattr lock map open))) +(allow bootanim cgroup (lnk_file (ioctl read getattr lock map open))) +(allow bootanim system_file (dir (ioctl read getattr lock search open))) +(allow bootstat runtime_event_log_tags_file (file (ioctl read getattr lock map open))) +(allow bootstat bootstat_data_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow bootstat bootstat_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow bootstat proc (dir (ioctl read getattr lock search open))) +(allow bootstat proc (file (ioctl read getattr lock map open))) +(allow bootstat proc (lnk_file (ioctl read getattr lock map open))) +(allow bootstat boottime_prop (file (ioctl read getattr lock map open))) +(allow init pdx_bufferhub_client_endpoint_socket_type (unix_stream_socket (create bind))) +(allow bufferhubd pdx_bufferhub_client_endpoint_socket_type (unix_stream_socket (read write getattr setattr lock append listen accept getopt setopt shutdown))) +(allow bufferhubd self (process (setsockcreate))) +(allow bufferhubd pdx_bufferhub_client_channel_socket_type (unix_stream_socket (ioctl read write create getattr setattr lock append bind connect listen accept getopt setopt shutdown))) +;;* lmx 7 system/sepolicy/public/bufferhubd.te + +(neverallow base_typeattr_1 pdx_bufferhub_client_endpoint_socket_type (unix_stream_socket (listen accept))) +;;* lme + +(allow bufferhubd pdx_performance_client_endpoint_dir_type (dir (ioctl read getattr lock search open))) +(allow bufferhubd pdx_performance_client_endpoint_socket_type (sock_file (ioctl read write getattr lock append map open))) +(allow bufferhubd pdx_performance_client_endpoint_socket_type (unix_stream_socket (read write shutdown connectto))) +(allow bufferhubd pdx_performance_client_channel_socket_type (unix_stream_socket (read write getattr setattr lock append getopt setopt shutdown))) +(allow bufferhubd pdx_performance_client_server_type (fd (use))) +(allow pdx_performance_client_server_type bufferhubd (fd (use))) +(allow bufferhubd gpu_device (chr_file (ioctl read write getattr lock append map open))) +(allow bufferhubd ion_device (chr_file (ioctl read getattr lock map open))) +(allow bufferhubd mediacodec (fd (use))) +(allow cameraserver servicemanager (binder (call transfer))) +(allow servicemanager cameraserver (dir (search))) +(allow servicemanager cameraserver (file (read open))) +(allow servicemanager cameraserver (process (getattr))) +(allow cameraserver binderservicedomain (binder (call transfer))) +(allow binderservicedomain cameraserver (binder (transfer))) +(allow cameraserver binderservicedomain (fd (use))) +(allow cameraserver appdomain (binder (call transfer))) +(allow appdomain cameraserver (binder (transfer))) +(allow cameraserver appdomain (fd (use))) +(allow cameraserver ion_device (chr_file (ioctl read write getattr lock append map open))) +(allow cameraserver hal_graphics_composer (fd (use))) +(allow cameraserver cameraserver_service (service_manager (add find))) +;;* lmx 19 system/sepolicy/public/cameraserver.te + +(neverallow base_typeattr_2 cameraserver_service (service_manager (add))) +;;* lme + +(allow cameraserver appops_service (service_manager (find))) +(allow cameraserver audioserver_service (service_manager (find))) +(allow cameraserver batterystats_service (service_manager (find))) +(allow cameraserver cameraproxy_service (service_manager (find))) +(allow cameraserver mediaserver_service (service_manager (find))) +(allow cameraserver processinfo_service (service_manager (find))) +(allow cameraserver scheduling_policy_service (service_manager (find))) +(allow cameraserver surfaceflinger_service (service_manager (find))) +(allow cameraserver hidl_token_hwservice (hwservice_manager (find))) +;;* lmx 37 system/sepolicy/public/cameraserver.te + +(neverallow cameraserver fs_type (file (execute_no_trans))) +(neverallow cameraserver file_type (file (execute_no_trans))) +;;* lme + +;;* lmx 49 system/sepolicy/public/cameraserver.te + +(neverallow cameraserver domain (tcp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind name_connect))) +(neverallow cameraserver domain (udp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +(neverallow cameraserver domain (rawip_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +;;* lme + +(allow charger kmsg_device (chr_file (ioctl read write getattr lock append map open))) +(allow charger sysfs_type (dir (ioctl read getattr lock search open))) +(allow charger sysfs_type (file (ioctl read getattr lock map open))) +(allow charger sysfs_type (lnk_file (ioctl read getattr lock map open))) +(allow charger rootfs (dir (ioctl read getattr lock search open))) +(allow charger rootfs (file (ioctl read getattr lock map open))) +(allow charger rootfs (lnk_file (ioctl read getattr lock map open))) +(allow charger cgroup (dir (ioctl read getattr lock search open))) +(allow charger cgroup (file (ioctl read getattr lock map open))) +(allow charger cgroup (lnk_file (ioctl read getattr lock map open))) +(allow charger self (capability (sys_tty_config))) +(allow charger self (capability (sys_boot))) +(allow charger sysfs_wake_lock (file (ioctl read write getattr lock append map open))) +(allow charger self (capability2 (block_suspend))) +(allow charger self (netlink_kobject_uevent_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow charger sysfs (file (write))) +(allow charger sysfs_batteryinfo (file (ioctl read getattr lock map open))) +(allow charger pstorefs (dir (ioctl read getattr lock search open))) +(allow charger pstorefs (file (ioctl read getattr lock map open))) +(allow charger graphics_device (dir (ioctl read getattr lock search open))) +(allow charger graphics_device (chr_file (ioctl read write getattr lock append map open))) +(allow charger input_device (dir (ioctl read getattr lock search open))) +(allow charger input_device (chr_file (ioctl read getattr lock map open))) +(allow charger tty_device (chr_file (ioctl read write getattr lock append map open))) +(allow charger proc_sysrq (file (ioctl read write getattr lock append map open))) +(allow charger property_socket (sock_file (write))) +(allow charger init (unix_stream_socket (connectto))) +(allow charger system_prop (property_service (set))) +(allow charger system_prop (file (ioctl read getattr lock map open))) +(allow clatd proc_net (dir (ioctl read getattr lock search open))) +(allow clatd proc_net (file (ioctl read getattr lock map open))) +(allow clatd proc_net (lnk_file (ioctl read getattr lock map open))) +(allow clatd netd (fd (use))) +(allow clatd netd (fifo_file (read write))) +(allow clatd netd (netlink_kobject_uevent_socket (read write))) +(allow clatd netd (netlink_nflog_socket (read write))) +(allow clatd netd (netlink_route_socket (read write))) +(allow clatd netd (udp_socket (read write))) +(allow clatd netd (unix_stream_socket (read write))) +(allow clatd netd (unix_dgram_socket (read write))) +(allow clatd self (capability (setgid setuid net_admin net_raw))) +(allow clatd self (capability (ipc_lock))) +(allow clatd self (netlink_route_socket (nlmsg_write))) +(allow clatd self (rawip_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow clatd self (packet_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow clatd self (tun_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow clatd tun_device (chr_file (ioctl read write getattr lock append map open))) +(allow cppreopts dalvikcache_data_file (dir (write add_name remove_name search))) +(allow cppreopts dalvikcache_data_file (file (read write create getattr rename open))) +(allow cppreopts shell_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow cppreopts system_file (dir (read open))) +(allow cppreopts toolbox_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow crash_dump base_typeattr_3 (process (sigchld sigkill sigstop signal ptrace))) +(dontaudit crash_dump self (capability (sys_ptrace))) +(allow crash_dump domain (fd (use))) +(allow crash_dump domain (fifo_file (write append))) +(allow crash_dump domain (dir (ioctl read getattr lock search open))) +(allow crash_dump domain (file (ioctl read getattr lock map open))) +(allow crash_dump domain (lnk_file (ioctl read getattr lock map open))) +(allow crash_dump exec_type (file (ioctl read getattr lock map open))) +(allow crash_dump dalvikcache_data_file (dir (getattr search))) +(allow crash_dump dalvikcache_data_file (file (ioctl read getattr lock map open))) +(allow crash_dump apk_data_file (dir (ioctl read getattr lock search open))) +(allow crash_dump apk_data_file (file (ioctl read getattr lock map open))) +(allow crash_dump apk_data_file (lnk_file (ioctl read getattr lock map open))) +(allow crash_dump vendor_file (dir (ioctl read getattr lock search open))) +(allow crash_dump same_process_hal_file (dir (ioctl read getattr lock search open))) +(allow crash_dump vendor_file (file (ioctl read getattr lock map open))) +(allow crash_dump vendor_file (lnk_file (ioctl read getattr lock map open))) +(allow crash_dump same_process_hal_file (file (ioctl read getattr lock map open))) +(allow crash_dump same_process_hal_file (lnk_file (ioctl read getattr lock map open))) +(allow crash_dump tombstoned_crash_socket (sock_file (write))) +(allow crash_dump tombstoned (unix_stream_socket (connectto))) +(allow crash_dump system_ndebug_socket (sock_file (write))) +(allow crash_dump system_server (unix_stream_socket (connectto))) +(allow crash_dump anr_data_file (file (getattr append))) +(allow crash_dump tombstone_data_file (file (getattr append))) +(allow crash_dump logcat_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow crash_dump logdr_socket (sock_file (write))) +(allow crash_dump logd (unix_stream_socket (connectto))) +;;* lmx 63 system/sepolicy/public/crash_dump.te + +(neverallow domain crash_dump_exec (file (execute_no_trans))) +;;* lme + +(allow dex2oat apk_data_file (dir (ioctl read getattr lock search open))) +(allow dex2oat apk_data_file (file (ioctl read getattr lock map open))) +(allow dex2oat apk_data_file (lnk_file (ioctl read getattr lock map open))) +(allow dex2oat vendor_app_file (dir (ioctl read getattr lock search open))) +(allow dex2oat vendor_app_file (file (ioctl read getattr lock map open))) +(allow dex2oat vendor_app_file (lnk_file (ioctl read getattr lock map open))) +(allow dex2oat vendor_framework_file (dir (getattr search))) +(allow dex2oat vendor_framework_file (file (read getattr open))) +(allow dex2oat tmpfs (file (read getattr))) +(allow dex2oat dalvikcache_data_file (dir (ioctl read getattr lock search open))) +(allow dex2oat dalvikcache_data_file (file (ioctl read getattr lock map open))) +(allow dex2oat dalvikcache_data_file (lnk_file (ioctl read getattr lock map open))) +(allow dex2oat dalvikcache_data_file (file (write))) +(allow dex2oat dalvikcache_data_file (lnk_file (read))) +(allow dex2oat installd (fd (use))) +(allow dex2oat system_file (file (lock))) +(allow dex2oat asec_apk_file (file (read))) +(allow dex2oat unlabeled (file (read))) +(allow dex2oat oemfs (file (read))) +(allow dex2oat apk_tmp_file (dir (search))) +(allow dex2oat apk_tmp_file (file (ioctl read getattr lock map open))) +(allow dex2oat user_profile_data_file (file (read getattr lock))) +(allow dex2oat app_data_file (file (read write getattr lock))) +(allow dex2oat postinstall_dexopt (fd (use))) +(allow dex2oat postinstall_file (dir (getattr search))) +(allow dex2oat postinstall_file (filesystem (getattr))) +(allow dex2oat postinstall_file (lnk_file (read))) +(allow dex2oat ota_data_file (dir (ioctl read write getattr lock add_name search open))) +(allow dex2oat ota_data_file (file (ioctl read getattr lock map open))) +(allow dex2oat ota_data_file (lnk_file (read create))) +(allow dex2oat ota_data_file (file (write create setattr lock append map open))) +;;* lmx 66 system/sepolicy/public/dex2oat.te + +(neverallow dex2oat app_data_file (file (open))) +(neverallow dex2oat app_data_file (lnk_file (open))) +(neverallow dex2oat app_data_file (sock_file (open))) +(neverallow dex2oat app_data_file (fifo_file (open))) +;;* lme + +(allow dhcp cgroup (dir (write create add_name))) +(allow dhcp self (capability (setgid setuid net_bind_service net_admin net_raw))) +(allow dhcp self (packet_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow dhcp self (netlink_route_socket (nlmsg_write))) +(allow dhcp shell_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow dhcp system_file (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow dhcp toolbox_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow dhcp proc_net (file (write))) +(allow dhcp property_socket (sock_file (write))) +(allow dhcp init (unix_stream_socket (connectto))) +(allow dhcp dhcp_prop (property_service (set))) +(allow dhcp dhcp_prop (file (ioctl read getattr lock map open))) +(allow dhcp property_socket (sock_file (write))) +(allow dhcp init (unix_stream_socket (connectto))) +(allow dhcp pan_result_prop (property_service (set))) +(allow dhcp pan_result_prop (file (ioctl read getattr lock map open))) +(allow dhcp dhcp_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow dhcp dhcp_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow dhcp netd (fd (use))) +(allow dhcp netd (fifo_file (ioctl read write getattr lock append map open))) +(allow dhcp netd (udp_socket (read write))) +(allow dhcp netd (unix_stream_socket (read write))) +(allow dhcp netd (unix_dgram_socket (read write))) +(allow dhcp netd (netlink_route_socket (read write))) +(allow dhcp netd (netlink_nflog_socket (read write))) +(allow dhcp netd (netlink_kobject_uevent_socket (read write))) +(allow display_service_server fwk_display_hwservice (hwservice_manager (add find))) +(allow display_service_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 1 system/sepolicy/public/display_service_server.te + +(neverallow base_typeattr_4 fwk_display_hwservice (hwservice_manager (add))) +;;* lme + +(allowx dnsmasq self (ioctl udp_socket (0x6900 0x6902))) +(allowx dnsmasq self (ioctl udp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(allowx dnsmasq self (ioctl udp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(allow dnsmasq self (capability (dac_override))) +(allow dnsmasq self (capability (setgid setuid net_bind_service net_admin net_raw))) +(allow dnsmasq dhcp_data_file (dir (write lock add_name remove_name search open))) +(allow dnsmasq dhcp_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow dnsmasq netd (fd (use))) +(allow dnsmasq netd (fifo_file (read write))) +(allow dnsmasq netd (netlink_kobject_uevent_socket (read write))) +(allow dnsmasq netd (netlink_nflog_socket (read write))) +(allow dnsmasq netd (netlink_route_socket (read write))) +(allow dnsmasq netd (unix_stream_socket (read write))) +(allow dnsmasq netd (unix_dgram_socket (read write))) +(allow dnsmasq netd (udp_socket (read write))) +(allow domain init (process (sigchld))) +(allow domain self (process (fork sigchld sigkill sigstop signull signal getsched setsched getsession getpgid setpgid getcap setcap getattr setrlimit))) +(allow domain self (fd (use))) +(allow domain proc (dir (ioctl read getattr lock search open))) +(allow domain proc_net (dir (search))) +(allow domain self (dir (ioctl read getattr lock search open))) +(allow domain self (file (ioctl read getattr lock map open))) +(allow domain self (lnk_file (ioctl read getattr lock map open))) +(allow domain self (file (ioctl read write getattr lock append map open))) +(allow domain self (fifo_file (ioctl read write getattr lock append map open))) +(allow domain self (unix_dgram_socket (ioctl read write create getattr setattr lock append bind connect getopt setopt shutdown sendto))) +(allow domain self (unix_stream_socket (ioctl read write create getattr setattr lock append bind connect listen accept getopt setopt shutdown connectto))) +(allow domain init (fd (use))) +(allow domain rootfs (dir (search))) +(allow domain rootfs (lnk_file (read getattr))) +(allow domain device (dir (search))) +(allow domain dev_type (lnk_file (ioctl read getattr lock map open))) +(allow domain devpts (dir (search))) +(allow domain socket_device (dir (ioctl read getattr lock search open))) +(allow domain owntty_device (chr_file (ioctl read write getattr lock append map open))) +(allow domain null_device (chr_file (ioctl read write getattr lock append map open))) +(allow domain zero_device (chr_file (ioctl read write getattr lock append map open))) +(allow domain ashmem_device (chr_file (ioctl read write getattr lock append map open))) +(allow base_typeattr_5 binder_device (chr_file (ioctl read write getattr lock append map open))) +(allow base_typeattr_6 hwbinder_device (chr_file (ioctl read write getattr lock append map open))) +(allow domain ptmx_device (chr_file (ioctl read write getattr lock append map open))) +(allow domain alarm_device (chr_file (ioctl read getattr lock map open))) +(allow domain random_device (chr_file (ioctl read write getattr lock append map open))) +(allow domain properties_device (dir (getattr search))) +(allow domain properties_serial (file (ioctl read getattr lock map open))) +(allow domain core_property_type (file (ioctl read getattr lock map open))) +(allow domain log_property_type (file (ioctl read getattr lock map open))) +(dontaudit domain property_type (file (audit_access))) +(allow domain property_contexts_file (file (ioctl read getattr lock map open))) +(allow domain init (key (search))) +(allow domain vold (key (search))) +(allow domain logdw_socket (sock_file (write))) +(allow domain logd (unix_dgram_socket (sendto))) +(allow domain pmsg_device (chr_file (write lock append map open))) +(allow domain system_file (dir (getattr search))) +(allow domain system_file (file (read getattr map execute open))) +(allow domain system_file (lnk_file (read getattr))) +(allow domain vendor_hal_file (dir (ioctl read getattr lock search open))) +(allow domain same_process_hal_file (dir (ioctl read getattr lock search open))) +(allow domain same_process_hal_file (file (read getattr map execute open))) +(allow domain vndk_sp_file (dir (ioctl read getattr lock search open))) +(allow domain vndk_sp_file (file (read getattr map execute open))) +(allow domain vendor_configs_file (dir (ioctl read getattr lock search open))) +(allow domain vendor_configs_file (file (read getattr open))) +(allow domain vendor_file (lnk_file (read getattr open))) +(allow domain vendor_file (dir (getattr search))) +(allow base_typeattr_7 vendor_file_type (dir (ioctl read getattr lock search open))) +(allow base_typeattr_7 vendor_file_type (file (read getattr map execute open))) +(allow base_typeattr_7 vendor_file_type (lnk_file (read getattr))) +(allow domain sysfs (lnk_file (read getattr))) +(allow domain zoneinfo_data_file (dir (ioctl read getattr lock search open))) +(allow domain zoneinfo_data_file (file (ioctl read getattr lock map open))) +(allow domain zoneinfo_data_file (lnk_file (ioctl read getattr lock map open))) +(allow domain sysfs_devices_system_cpu (dir (ioctl read getattr lock search open))) +(allow domain sysfs_devices_system_cpu (file (ioctl read getattr lock map open))) +(allow domain sysfs_devices_system_cpu (lnk_file (ioctl read getattr lock map open))) +(allow domain sysfs_usb (dir (ioctl read getattr lock search open))) +(allow domain sysfs_usb (file (ioctl read getattr lock map open))) +(allow domain sysfs_usb (lnk_file (ioctl read getattr lock map open))) +(allow appdomain system_data_file (dir (getattr))) +(allow coredomain system_data_file (dir (getattr))) +(allow domain system_data_file (dir (search))) +(allow domain proc (lnk_file (read getattr))) +(allow domain proc_cpuinfo (file (ioctl read getattr lock map open))) +(allow domain proc_overcommit_memory (file (ioctl read getattr lock map open))) +(allow domain proc_perf (file (ioctl read getattr lock map open))) +(allow domain selinuxfs (dir (search))) +(allow domain selinuxfs (file (getattr))) +(allow domain sysfs (dir (search))) +(allow domain selinuxfs (filesystem (getattr))) +(allow domain cgroup (dir (write search))) +(allow domain cgroup (file (write lock append map open))) +(allow domain debugfs (dir (search))) +(allow domain debugfs_tracing (dir (search))) +(allow domain debugfs_trace_marker (file (write lock append map open))) +(allow domain fs_type (filesystem (getattr))) +(allow domain fs_type (dir (getattr))) +(allowx domain domain (ioctl tcp_socket ((range 0x5401 0x5403) 0x540b (range 0x540e 0x5411) (range 0x5413 0x5414) 0x5451))) +(allowx domain domain (ioctl udp_socket ((range 0x5401 0x5403) 0x540b (range 0x540e 0x5411) (range 0x5413 0x5414) 0x5451))) +(allowx domain domain (ioctl rawip_socket ((range 0x5401 0x5403) 0x540b (range 0x540e 0x5411) (range 0x5413 0x5414) 0x5451))) +(allowx domain domain (ioctl tcp_socket ((range 0x8906 0x8907) 0x8910 (range 0x8912 0x8913) 0x8915 0x8917 0x8919 0x891b 0x8921 0x8933 0x8938 0x8942))) +(allowx domain domain (ioctl udp_socket ((range 0x8906 0x8907) 0x8910 (range 0x8912 0x8913) 0x8915 0x8917 0x8919 0x891b 0x8921 0x8933 0x8938 0x8942))) +(allowx domain domain (ioctl rawip_socket ((range 0x8906 0x8907) 0x8910 (range 0x8912 0x8913) 0x8915 0x8917 0x8919 0x891b 0x8921 0x8933 0x8938 0x8942))) +(allowx domain domain (ioctl tcp_socket (0x8b01 0x8b05 0x8b07 0x8b09 0x8b0b 0x8b0d 0x8b0f (range 0x8b11 0x8b13) 0x8b21 0x8b23 0x8b25 0x8b27 0x8b29 0x8b2d))) +(allowx domain domain (ioctl udp_socket (0x8b01 0x8b05 0x8b07 0x8b09 0x8b0b 0x8b0d 0x8b0f (range 0x8b11 0x8b13) 0x8b21 0x8b23 0x8b25 0x8b27 0x8b29 0x8b2d))) +(allowx domain domain (ioctl rawip_socket (0x8b01 0x8b05 0x8b07 0x8b09 0x8b0b 0x8b0d 0x8b0f (range 0x8b11 0x8b13) 0x8b21 0x8b23 0x8b25 0x8b27 0x8b29 0x8b2d))) +(allowx domain domain (ioctl unix_stream_socket (0x5401 0x5411 (range 0x5413 0x5414) 0x541b 0x5451))) +(allowx domain domain (ioctl unix_dgram_socket (0x5401 0x5411 (range 0x5413 0x5414) 0x541b 0x5451))) +(allowx domain devpts (ioctl chr_file ((range 0x5401 0x5403) 0x540b (range 0x540e 0x5411) (range 0x5413 0x5414) 0x5451))) +(allow base_typeattr_8 hwservice_manager_type (hwservice_manager (add find))) +(allow base_typeattr_8 vndservice_manager_type (service_manager (add find))) +;;* lmx 230 system/sepolicy/public/domain.te + +(neverallowx domain domain (ioctl socket (0x0))) +(neverallowx domain domain (ioctl tcp_socket (0x0))) +(neverallowx domain domain (ioctl udp_socket (0x0))) +(neverallowx domain domain (ioctl rawip_socket (0x0))) +(neverallowx domain domain (ioctl netlink_socket (0x0))) +(neverallowx domain domain (ioctl packet_socket (0x0))) +(neverallowx domain domain (ioctl key_socket (0x0))) +(neverallowx domain domain (ioctl unix_stream_socket (0x0))) +(neverallowx domain domain (ioctl unix_dgram_socket (0x0))) +(neverallowx domain domain (ioctl netlink_route_socket (0x0))) +(neverallowx domain domain (ioctl netlink_tcpdiag_socket (0x0))) +(neverallowx domain domain (ioctl netlink_nflog_socket (0x0))) +(neverallowx domain domain (ioctl netlink_xfrm_socket (0x0))) +(neverallowx domain domain (ioctl netlink_selinux_socket (0x0))) +(neverallowx domain domain (ioctl netlink_audit_socket (0x0))) +(neverallowx domain domain (ioctl netlink_dnrt_socket (0x0))) +(neverallowx domain domain (ioctl netlink_kobject_uevent_socket (0x0))) +(neverallowx domain domain (ioctl appletalk_socket (0x0))) +(neverallowx domain domain (ioctl tun_socket (0x0))) +(neverallowx domain domain (ioctl netlink_iscsi_socket (0x0))) +(neverallowx domain domain (ioctl netlink_fib_lookup_socket (0x0))) +(neverallowx domain domain (ioctl netlink_connector_socket (0x0))) +(neverallowx domain domain (ioctl netlink_netfilter_socket (0x0))) +(neverallowx domain domain (ioctl netlink_generic_socket (0x0))) +(neverallowx domain domain (ioctl netlink_scsitransport_socket (0x0))) +(neverallowx domain domain (ioctl netlink_rdma_socket (0x0))) +(neverallowx domain domain (ioctl netlink_crypto_socket (0x0))) +(neverallowx domain domain (ioctl sctp_socket (0x0))) +(neverallowx domain domain (ioctl icmp_socket (0x0))) +(neverallowx domain domain (ioctl ax25_socket (0x0))) +(neverallowx domain domain (ioctl ipx_socket (0x0))) +(neverallowx domain domain (ioctl netrom_socket (0x0))) +(neverallowx domain domain (ioctl atmpvc_socket (0x0))) +(neverallowx domain domain (ioctl x25_socket (0x0))) +(neverallowx domain domain (ioctl rose_socket (0x0))) +(neverallowx domain domain (ioctl decnet_socket (0x0))) +(neverallowx domain domain (ioctl atmsvc_socket (0x0))) +(neverallowx domain domain (ioctl rds_socket (0x0))) +(neverallowx domain domain (ioctl irda_socket (0x0))) +(neverallowx domain domain (ioctl pppox_socket (0x0))) +(neverallowx domain domain (ioctl llc_socket (0x0))) +(neverallowx domain domain (ioctl can_socket (0x0))) +(neverallowx domain domain (ioctl tipc_socket (0x0))) +(neverallowx domain domain (ioctl bluetooth_socket (0x0))) +(neverallowx domain domain (ioctl iucv_socket (0x0))) +(neverallowx domain domain (ioctl rxrpc_socket (0x0))) +(neverallowx domain domain (ioctl isdn_socket (0x0))) +(neverallowx domain domain (ioctl phonet_socket (0x0))) +(neverallowx domain domain (ioctl ieee802154_socket (0x0))) +(neverallowx domain domain (ioctl caif_socket (0x0))) +(neverallowx domain domain (ioctl alg_socket (0x0))) +(neverallowx domain domain (ioctl nfc_socket (0x0))) +(neverallowx domain domain (ioctl vsock_socket (0x0))) +(neverallowx domain domain (ioctl kcm_socket (0x0))) +(neverallowx domain domain (ioctl qipcrtr_socket (0x0))) +(neverallowx domain domain (ioctl smc_socket (0x0))) +;;* lme + +;;* lmx 235 system/sepolicy/public/domain.te + +(neverallowx base_typeattr_9 devpts (ioctl chr_file (0x5412))) +;;* lme + +;;* lmx 238 system/sepolicy/public/domain.te + +(neverallow base_typeattr_10 unlabeled (file (create))) +(neverallow base_typeattr_10 unlabeled (dir (create))) +(neverallow base_typeattr_10 unlabeled (lnk_file (create))) +(neverallow base_typeattr_10 unlabeled (chr_file (create))) +(neverallow base_typeattr_10 unlabeled (blk_file (create))) +(neverallow base_typeattr_10 unlabeled (sock_file (create))) +(neverallow base_typeattr_10 unlabeled (fifo_file (create))) +;;* lme + +;;* lmx 247 system/sepolicy/public/domain.te + +(neverallow base_typeattr_11 self (capability (mknod))) +;;* lme + +;;* lmx 260 system/sepolicy/public/domain.te + +(neverallow base_typeattr_12 self (capability (sys_rawio))) +;;* lme + +;;* lmx 263 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 self (memprotect (mmap_zero))) +;;* lme + +;;* lmx 266 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 self (capability2 (mac_override))) +;;* lme + +;;* lmx 269 system/sepolicy/public/domain.te + +(neverallow base_typeattr_13 self (capability2 (mac_admin))) +;;* lme + +;;* lmx 273 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 kernel (security (load_policy))) +;;* lme + +;;* lmx 279 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 kernel (security (setenforce))) +;;* lme + +;;* lmx 280 system/sepolicy/public/domain.te + +(neverallow base_typeattr_14 kernel (security (setcheckreqprot))) +;;* lme + +;;* lmx 283 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 kernel (security (setbool))) +;;* lme + +;;* lmx 288 system/sepolicy/public/domain.te + +(neverallow base_typeattr_15 kernel (security (setsecparam))) +;;* lme + +;;* lmx 297 system/sepolicy/public/domain.te + +(neverallow base_typeattr_16 hw_random_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +;;* lmx 300 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 base_typeattr_17 (file (entrypoint))) +;;* lme + +;;* lmx 307 system/sepolicy/public/domain.te + +(neverallow base_typeattr_18 kmem_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +;;* lmx 308 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 kmem_device (chr_file (ioctl read write lock relabelfrom append map link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +;;* lmx 315 system/sepolicy/public/domain.te + +(neverallow base_typeattr_18 port_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +;;* lmx 316 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 port_device (chr_file (ioctl read write lock relabelfrom append map link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +;;* lmx 319 system/sepolicy/public/domain.te + +(neverallow base_typeattr_15 usermodehelper (file (write append))) +;;* lme + +;;* lmx 320 system/sepolicy/public/domain.te + +(neverallow base_typeattr_19 sysfs_usermodehelper (file (write append))) +;;* lme + +;;* lmx 321 system/sepolicy/public/domain.te + +(neverallow base_typeattr_15 proc_security (file (read write append open))) +;;* lme + +;;* lmx 324 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 init (process (ptrace))) +;;* lme + +;;* lmx 328 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 init (binder (impersonate call set_context_mgr transfer))) +;;* lme + +;;* lmx 332 system/sepolicy/public/domain.te + +(neverallow base_typeattr_20 block_device (blk_file (read write open))) +;;* lme + +;;* lmx 337 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 base_typeattr_9 (chr_file (rename))) +(neverallow base_typeattr_9 base_typeattr_9 (blk_file (rename))) +;;* lme + +;;* lmx 341 system/sepolicy/public/domain.te + +(neverallow domain device (chr_file (read write open))) +;;* lme + +;;* lmx 346 system/sepolicy/public/domain.te + +(neverallow base_typeattr_21 base_typeattr_22 (filesystem (mount remount relabelfrom relabelto))) +;;* lme + +;;* lmx 367 system/sepolicy/public/domain.te + +(neverallow base_typeattr_23 base_typeattr_24 (file (execute))) +;;* lme + +;;* lmx 373 system/sepolicy/public/domain.te + +(neverallow base_typeattr_25 base_typeattr_26 (file (execute))) +;;* lme + +;;* lmx 375 system/sepolicy/public/domain.te + +(neverallow domain cache_file (file (execute))) +(neverallow domain cache_backup_file (file (execute))) +(neverallow domain cache_private_backup_file (file (execute))) +(neverallow domain cache_recovery_file (file (execute))) +;;* lme + +;;* lmx 386 system/sepolicy/public/domain.te + +(neverallow base_typeattr_27 base_typeattr_28 (file (execute execute_no_trans))) +;;* lme + +;;* lmx 388 system/sepolicy/public/domain.te + +(neverallow domain nativetest_data_file (file (execute execute_no_trans))) +;;* lme + +;;* lmx 391 system/sepolicy/public/domain.te + +(neverallow base_typeattr_15 property_data_file (dir (write create setattr relabelfrom link rename add_name remove_name reparent rmdir))) +;;* lme + +;;* lmx 392 system/sepolicy/public/domain.te + +(neverallow base_typeattr_15 property_data_file (file (write create setattr relabelfrom append unlink link rename execute execute_no_trans))) +;;* lme + +;;* lmx 393 system/sepolicy/public/domain.te + +(neverallow base_typeattr_15 property_type (file (write create setattr relabelfrom append unlink link rename execute execute_no_trans))) +;;* lme + +;;* lmx 394 system/sepolicy/public/domain.te + +(neverallow base_typeattr_15 properties_device (file (write create setattr relabelfrom append unlink link rename execute execute_no_trans))) +;;* lme + +;;* lmx 395 system/sepolicy/public/domain.te + +(neverallow base_typeattr_15 properties_serial (file (write create setattr relabelfrom append unlink link rename execute execute_no_trans))) +;;* lme + +;;* lmx 406 system/sepolicy/public/domain.te + +(neverallow base_typeattr_13 exec_type (file (write create setattr relabelfrom append unlink link rename))) +(neverallow base_typeattr_13 exec_type (dir (write create setattr relabelfrom append unlink link rename))) +(neverallow base_typeattr_13 exec_type (lnk_file (write create setattr relabelfrom append unlink link rename))) +(neverallow base_typeattr_13 exec_type (chr_file (write create setattr relabelfrom append unlink link rename))) +(neverallow base_typeattr_13 exec_type (blk_file (write create setattr relabelfrom append unlink link rename))) +(neverallow base_typeattr_13 exec_type (sock_file (write create setattr relabelfrom append unlink link rename))) +(neverallow base_typeattr_13 exec_type (fifo_file (write create setattr relabelfrom append unlink link rename))) +(neverallow base_typeattr_13 vendor_file_type (file (write create setattr relabelfrom append unlink link rename))) +(neverallow base_typeattr_13 vendor_file_type (dir (write create setattr relabelfrom append unlink link rename))) +(neverallow base_typeattr_13 vendor_file_type (lnk_file (write create setattr relabelfrom append unlink link rename))) +(neverallow base_typeattr_13 vendor_file_type (chr_file (write create setattr relabelfrom append unlink link rename))) +(neverallow base_typeattr_13 vendor_file_type (blk_file (write create setattr relabelfrom append unlink link rename))) +(neverallow base_typeattr_13 vendor_file_type (sock_file (write create setattr relabelfrom append unlink link rename))) +(neverallow base_typeattr_13 vendor_file_type (fifo_file (write create setattr relabelfrom append unlink link rename))) +(neverallow base_typeattr_13 system_file (file (write create setattr relabelfrom append unlink link rename))) +(neverallow base_typeattr_13 system_file (dir (write create setattr relabelfrom append unlink link rename))) +(neverallow base_typeattr_13 system_file (lnk_file (write create setattr relabelfrom append unlink link rename))) +(neverallow base_typeattr_13 system_file (chr_file (write create setattr relabelfrom append unlink link rename))) +(neverallow base_typeattr_13 system_file (blk_file (write create setattr relabelfrom append unlink link rename))) +(neverallow base_typeattr_13 system_file (sock_file (write create setattr relabelfrom append unlink link rename))) +(neverallow base_typeattr_13 system_file (fifo_file (write create setattr relabelfrom append unlink link rename))) +;;* lme + +;;* lmx 408 system/sepolicy/public/domain.te + +(neverallow base_typeattr_29 exec_type (file (relabelto))) +(neverallow base_typeattr_29 exec_type (dir (relabelto))) +(neverallow base_typeattr_29 exec_type (lnk_file (relabelto))) +(neverallow base_typeattr_29 exec_type (chr_file (relabelto))) +(neverallow base_typeattr_29 exec_type (blk_file (relabelto))) +(neverallow base_typeattr_29 exec_type (sock_file (relabelto))) +(neverallow base_typeattr_29 exec_type (fifo_file (relabelto))) +(neverallow base_typeattr_29 vendor_file_type (file (relabelto))) +(neverallow base_typeattr_29 vendor_file_type (dir (relabelto))) +(neverallow base_typeattr_29 vendor_file_type (lnk_file (relabelto))) +(neverallow base_typeattr_29 vendor_file_type (chr_file (relabelto))) +(neverallow base_typeattr_29 vendor_file_type (blk_file (relabelto))) +(neverallow base_typeattr_29 vendor_file_type (sock_file (relabelto))) +(neverallow base_typeattr_29 vendor_file_type (fifo_file (relabelto))) +(neverallow base_typeattr_29 system_file (file (relabelto))) +(neverallow base_typeattr_29 system_file (dir (relabelto))) +(neverallow base_typeattr_29 system_file (lnk_file (relabelto))) +(neverallow base_typeattr_29 system_file (chr_file (relabelto))) +(neverallow base_typeattr_29 system_file (blk_file (relabelto))) +(neverallow base_typeattr_29 system_file (sock_file (relabelto))) +(neverallow base_typeattr_29 system_file (fifo_file (relabelto))) +;;* lme + +;;* lmx 411 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 exec_type (file (mounton))) +(neverallow base_typeattr_9 exec_type (dir (mounton))) +(neverallow base_typeattr_9 exec_type (lnk_file (mounton))) +(neverallow base_typeattr_9 exec_type (chr_file (mounton))) +(neverallow base_typeattr_9 exec_type (blk_file (mounton))) +(neverallow base_typeattr_9 exec_type (sock_file (mounton))) +(neverallow base_typeattr_9 exec_type (fifo_file (mounton))) +;;* lme + +;;* lmx 412 system/sepolicy/public/domain.te + +(neverallow base_typeattr_15 vendor_file_type (file (mounton))) +(neverallow base_typeattr_15 vendor_file_type (dir (mounton))) +(neverallow base_typeattr_15 vendor_file_type (lnk_file (mounton))) +(neverallow base_typeattr_15 vendor_file_type (chr_file (mounton))) +(neverallow base_typeattr_15 vendor_file_type (blk_file (mounton))) +(neverallow base_typeattr_15 vendor_file_type (sock_file (mounton))) +(neverallow base_typeattr_15 vendor_file_type (fifo_file (mounton))) +(neverallow base_typeattr_15 system_file (file (mounton))) +(neverallow base_typeattr_15 system_file (dir (mounton))) +(neverallow base_typeattr_15 system_file (lnk_file (mounton))) +(neverallow base_typeattr_15 system_file (chr_file (mounton))) +(neverallow base_typeattr_15 system_file (blk_file (mounton))) +(neverallow base_typeattr_15 system_file (sock_file (mounton))) +(neverallow base_typeattr_15 system_file (fifo_file (mounton))) +;;* lme + +;;* lmx 415 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 rootfs (file (write create setattr relabelto append unlink link rename))) +;;* lme + +;;* lmx 419 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 base_typeattr_30 (filesystem (relabelto))) +;;* lme + +;;* lmx 425 system/sepolicy/public/domain.te + +(neverallow base_typeattr_13 contextmount_type (file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_13 contextmount_type (dir (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_13 contextmount_type (lnk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_13 contextmount_type (chr_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_13 contextmount_type (blk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_13 contextmount_type (sock_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_13 contextmount_type (fifo_file (write create setattr relabelfrom relabelto append unlink link rename))) +;;* lme + +;;* lmx 432 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 default_android_service (service_manager (add))) +;;* lme + +;;* lmx 433 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 default_android_vndservice (service_manager (add find))) +;;* lme + +;;* lmx 434 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 default_android_hwservice (hwservice_manager (add find))) +;;* lme + +;;* lmx 443 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 hidl_base_hwservice (hwservice_manager (find))) +;;* lme + +;;* lmx 447 system/sepolicy/public/domain.te + +(neverallow base_typeattr_15 default_prop (property_service (set))) +;;* lme + +;;* lmx 448 system/sepolicy/public/domain.te + +(neverallow base_typeattr_15 mmc_prop (property_service (set))) +;;* lme + +;;* lmx 463 system/sepolicy/public/domain.te + +(neverallow base_typeattr_31 serialno_prop (file (ioctl read getattr lock map open))) +;;* lme + +;;* lmx 466 system/sepolicy/public/domain.te + +(neverallow base_typeattr_32 firstboot_prop (file (ioctl read getattr lock map open))) +;;* lme + +;;* lmx 475 system/sepolicy/public/domain.te + +(neverallow base_typeattr_33 frp_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +;;* lme + +;;* lmx 481 system/sepolicy/public/domain.te + +(neverallow base_typeattr_34 metadata_block_device (blk_file (ioctl read write lock append link rename open))) +;;* lme + +;;* lmx 484 system/sepolicy/public/domain.te + +(neverallow base_typeattr_35 system_block_device (blk_file (write))) +;;* lme + +;;* lmx 487 system/sepolicy/public/domain.te + +(neverallow base_typeattr_36 recovery_block_device (blk_file (write))) +;;* lme + +;;* lmx 503 system/sepolicy/public/domain.te + +(neverallow base_typeattr_37 misc_block_device (blk_file (ioctl read write lock relabelfrom append link rename open))) +;;* lme + +;;* lmx 506 system/sepolicy/public/domain.te + +(neverallow base_typeattr_38 base_typeattr_9 (binder (set_context_mgr))) +;;* lme + +;;* lmx 508 system/sepolicy/public/domain.te + +(neverallow servicemanager hwbinder_device (chr_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +;;* lme + +;;* lmx 509 system/sepolicy/public/domain.te + +(neverallow servicemanager vndbinder_device (chr_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +;;* lme + +;;* lmx 510 system/sepolicy/public/domain.te + +(neverallow hwservicemanager binder_device (chr_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +;;* lme + +;;* lmx 511 system/sepolicy/public/domain.te + +(neverallow hwservicemanager vndbinder_device (chr_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +;;* lme + +;;* lmx 512 system/sepolicy/public/domain.te + +(neverallow vndservicemanager binder_device (chr_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +;;* lme + +;;* lmx 513 system/sepolicy/public/domain.te + +(neverallow vndservicemanager hwbinder_device (chr_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +;;* lme + +;;* lmx 518 system/sepolicy/public/domain.te + +(neverallow base_typeattr_39 binder_device (chr_file (ioctl read write getattr lock append map open))) +;;* lme + +;;* lmx 518 system/sepolicy/public/domain.te + +(neverallow base_typeattr_39 service_manager_type (service_manager (find))) +;;* lme + +;;* lmx 518 system/sepolicy/public/domain.te + +(neverallow base_typeattr_40 base_typeattr_41 (service_manager (find))) +;;* lme + +;;* lmx 518 system/sepolicy/public/domain.te + +(neverallow base_typeattr_39 servicemanager (binder (call transfer))) +;;* lme + +;;* lmx 564 system/sepolicy/public/domain.te + +(neverallow base_typeattr_42 vndbinder_device (chr_file (ioctl read write getattr lock append map open))) +;;* lme + +;;* lmx 564 system/sepolicy/public/domain.te + +(neverallow ueventd vndbinder_device (chr_file (ioctl read write append))) +;;* lme + +;;* lmx 564 system/sepolicy/public/domain.te + +(neverallow base_typeattr_43 vndservice_manager_type (service_manager (add find list))) +;;* lme + +;;* lmx 564 system/sepolicy/public/domain.te + +(neverallow base_typeattr_43 vndservicemanager (binder (impersonate call set_context_mgr transfer))) +;;* lme + +;;* lmx 586 system/sepolicy/public/domain.te + +(neverallow base_typeattr_44 base_typeattr_45 (socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (tcp_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (udp_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (rawip_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (netlink_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (packet_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (key_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (unix_stream_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (unix_dgram_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (netlink_route_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (netlink_tcpdiag_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (netlink_nflog_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (netlink_xfrm_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (netlink_selinux_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (netlink_audit_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (netlink_dnrt_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (netlink_kobject_uevent_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (appletalk_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (tun_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (netlink_iscsi_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (netlink_fib_lookup_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (netlink_connector_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (netlink_netfilter_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (netlink_generic_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (netlink_scsitransport_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (netlink_rdma_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (netlink_crypto_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (sctp_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (icmp_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (ax25_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (ipx_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (netrom_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (atmpvc_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (x25_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (rose_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (decnet_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (atmsvc_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (rds_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (irda_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (pppox_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (llc_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (can_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (tipc_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (bluetooth_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (iucv_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (rxrpc_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (isdn_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (phonet_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (ieee802154_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (caif_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (alg_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (nfc_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (vsock_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (kcm_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (qipcrtr_socket (connect sendto))) +(neverallow base_typeattr_44 base_typeattr_45 (smc_socket (connect sendto))) +;;* lme + +;;* lmx 586 system/sepolicy/public/domain.te + +(neverallow base_typeattr_44 base_typeattr_45 (unix_stream_socket (connectto))) +;;* lme + +;;* lmx 586 system/sepolicy/public/domain.te + +(neverallow base_typeattr_46 base_typeattr_47 (socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (tcp_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (udp_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (rawip_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (netlink_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (packet_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (key_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (unix_stream_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (unix_dgram_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (netlink_route_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (netlink_tcpdiag_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (netlink_nflog_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (netlink_xfrm_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (netlink_selinux_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (netlink_audit_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (netlink_dnrt_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (netlink_kobject_uevent_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (appletalk_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (tun_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (netlink_iscsi_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (netlink_fib_lookup_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (netlink_connector_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (netlink_netfilter_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (netlink_generic_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (netlink_scsitransport_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (netlink_rdma_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (netlink_crypto_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (sctp_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (icmp_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (ax25_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (ipx_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (netrom_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (atmpvc_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (x25_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (rose_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (decnet_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (atmsvc_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (rds_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (irda_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (pppox_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (llc_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (can_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (tipc_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (bluetooth_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (iucv_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (rxrpc_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (isdn_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (phonet_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (ieee802154_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (caif_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (alg_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (nfc_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (vsock_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (kcm_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (qipcrtr_socket (connect sendto))) +(neverallow base_typeattr_46 base_typeattr_47 (smc_socket (connect sendto))) +;;* lme + +;;* lmx 586 system/sepolicy/public/domain.te + +(neverallow base_typeattr_46 base_typeattr_47 (unix_stream_socket (connectto))) +;;* lme + +;;* lmx 586 system/sepolicy/public/domain.te + +(neverallow base_typeattr_48 netd (socket (connect sendto))) +(neverallow base_typeattr_48 netd (tcp_socket (connect sendto))) +(neverallow base_typeattr_48 netd (udp_socket (connect sendto))) +(neverallow base_typeattr_48 netd (rawip_socket (connect sendto))) +(neverallow base_typeattr_48 netd (netlink_socket (connect sendto))) +(neverallow base_typeattr_48 netd (packet_socket (connect sendto))) +(neverallow base_typeattr_48 netd (key_socket (connect sendto))) +(neverallow base_typeattr_48 netd (unix_stream_socket (connect sendto))) +(neverallow base_typeattr_48 netd (unix_dgram_socket (connect sendto))) +(neverallow base_typeattr_48 netd (netlink_route_socket (connect sendto))) +(neverallow base_typeattr_48 netd (netlink_tcpdiag_socket (connect sendto))) +(neverallow base_typeattr_48 netd (netlink_nflog_socket (connect sendto))) +(neverallow base_typeattr_48 netd (netlink_xfrm_socket (connect sendto))) +(neverallow base_typeattr_48 netd (netlink_selinux_socket (connect sendto))) +(neverallow base_typeattr_48 netd (netlink_audit_socket (connect sendto))) +(neverallow base_typeattr_48 netd (netlink_dnrt_socket (connect sendto))) +(neverallow base_typeattr_48 netd (netlink_kobject_uevent_socket (connect sendto))) +(neverallow base_typeattr_48 netd (appletalk_socket (connect sendto))) +(neverallow base_typeattr_48 netd (tun_socket (connect sendto))) +(neverallow base_typeattr_48 netd (netlink_iscsi_socket (connect sendto))) +(neverallow base_typeattr_48 netd (netlink_fib_lookup_socket (connect sendto))) +(neverallow base_typeattr_48 netd (netlink_connector_socket (connect sendto))) +(neverallow base_typeattr_48 netd (netlink_netfilter_socket (connect sendto))) +(neverallow base_typeattr_48 netd (netlink_generic_socket (connect sendto))) +(neverallow base_typeattr_48 netd (netlink_scsitransport_socket (connect sendto))) +(neverallow base_typeattr_48 netd (netlink_rdma_socket (connect sendto))) +(neverallow base_typeattr_48 netd (netlink_crypto_socket (connect sendto))) +(neverallow base_typeattr_48 netd (sctp_socket (connect sendto))) +(neverallow base_typeattr_48 netd (icmp_socket (connect sendto))) +(neverallow base_typeattr_48 netd (ax25_socket (connect sendto))) +(neverallow base_typeattr_48 netd (ipx_socket (connect sendto))) +(neverallow base_typeattr_48 netd (netrom_socket (connect sendto))) +(neverallow base_typeattr_48 netd (atmpvc_socket (connect sendto))) +(neverallow base_typeattr_48 netd (x25_socket (connect sendto))) +(neverallow base_typeattr_48 netd (rose_socket (connect sendto))) +(neverallow base_typeattr_48 netd (decnet_socket (connect sendto))) +(neverallow base_typeattr_48 netd (atmsvc_socket (connect sendto))) +(neverallow base_typeattr_48 netd (rds_socket (connect sendto))) +(neverallow base_typeattr_48 netd (irda_socket (connect sendto))) +(neverallow base_typeattr_48 netd (pppox_socket (connect sendto))) +(neverallow base_typeattr_48 netd (llc_socket (connect sendto))) +(neverallow base_typeattr_48 netd (can_socket (connect sendto))) +(neverallow base_typeattr_48 netd (tipc_socket (connect sendto))) +(neverallow base_typeattr_48 netd (bluetooth_socket (connect sendto))) +(neverallow base_typeattr_48 netd (iucv_socket (connect sendto))) +(neverallow base_typeattr_48 netd (rxrpc_socket (connect sendto))) +(neverallow base_typeattr_48 netd (isdn_socket (connect sendto))) +(neverallow base_typeattr_48 netd (phonet_socket (connect sendto))) +(neverallow base_typeattr_48 netd (ieee802154_socket (connect sendto))) +(neverallow base_typeattr_48 netd (caif_socket (connect sendto))) +(neverallow base_typeattr_48 netd (alg_socket (connect sendto))) +(neverallow base_typeattr_48 netd (nfc_socket (connect sendto))) +(neverallow base_typeattr_48 netd (vsock_socket (connect sendto))) +(neverallow base_typeattr_48 netd (kcm_socket (connect sendto))) +(neverallow base_typeattr_48 netd (qipcrtr_socket (connect sendto))) +(neverallow base_typeattr_48 netd (smc_socket (connect sendto))) +;;* lme + +;;* lmx 586 system/sepolicy/public/domain.te + +(neverallow base_typeattr_48 netd (unix_stream_socket (connectto))) +;;* lme + +;;* lmx 586 system/sepolicy/public/domain.te + +(neverallow base_typeattr_46 core_data_file_type (sock_file (create setattr lock relabelfrom relabelto map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow base_typeattr_46 coredomain_socket (sock_file (create setattr lock relabelfrom relabelto map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow base_typeattr_46 unlabeled (sock_file (create setattr lock relabelfrom relabelto map unlink link rename execute quotaon mounton open audit_access execmod))) +;;* lme + +;;* lmx 586 system/sepolicy/public/domain.te + +(neverallow base_typeattr_40 base_typeattr_49 (sock_file (create setattr lock relabelfrom relabelto map unlink link rename execute quotaon mounton open audit_access execmod))) +;;* lme + +;;* lmx 586 system/sepolicy/public/domain.te + +(neverallow base_typeattr_50 base_typeattr_51 (sock_file (create setattr lock relabelfrom relabelto map unlink link rename execute quotaon mounton open audit_access execmod))) +;;* lme + +;;* lmx 668 system/sepolicy/public/domain.te + +(neverallow base_typeattr_52 vendor_app_file (dir (read getattr search open))) +;;* lme + +;;* lmx 668 system/sepolicy/public/domain.te + +(neverallow base_typeattr_52 vendor_app_file (file (ioctl read getattr lock map open))) +(neverallow base_typeattr_52 vendor_app_file (lnk_file (ioctl read getattr lock map open))) +;;* lme + +;;* lmx 668 system/sepolicy/public/domain.te + +(neverallow base_typeattr_53 vendor_overlay_file (dir (read getattr search open))) +;;* lme + +;;* lmx 668 system/sepolicy/public/domain.te + +(neverallow base_typeattr_53 vendor_overlay_file (file (ioctl read getattr lock map open))) +(neverallow base_typeattr_53 vendor_overlay_file (lnk_file (ioctl read getattr lock map open))) +;;* lme + +;;* lmx 668 system/sepolicy/public/domain.te + +(neverallow base_typeattr_54 vendor_shell_exec (file (execute execute_no_trans))) +;;* lme + +;;* lmx 668 system/sepolicy/public/domain.te + +(neverallow base_typeattr_55 base_typeattr_56 (file (execute execute_no_trans entrypoint))) +;;* lme + +;;* lmx 746 system/sepolicy/public/domain.te + +(neverallow base_typeattr_57 dalvikcache_data_file (file (write create setattr relabelfrom append unlink link rename))) +;;* lme + +;;* lmx 757 system/sepolicy/public/domain.te + +(neverallow base_typeattr_57 dalvikcache_data_file (dir (write create setattr relabelfrom link rename add_name remove_name reparent rmdir))) +;;* lme + +;;* lmx 760 system/sepolicy/public/domain.te + +(neverallow base_typeattr_58 zygote (unix_stream_socket (connectto))) +;;* lme + +;;* lmx 761 system/sepolicy/public/domain.te + +(neverallow base_typeattr_59 zygote_socket (sock_file (write))) +;;* lme + +;;* lmx 763 system/sepolicy/public/domain.te + +(neverallow base_typeattr_60 webview_zygote (unix_stream_socket (connectto))) +;;* lme + +;;* lmx 764 system/sepolicy/public/domain.te + +(neverallow base_typeattr_59 webview_zygote_socket (sock_file (write))) +;;* lme + +;;* lmx 776 system/sepolicy/public/domain.te + +(neverallow base_typeattr_61 tombstoned_crash_socket (unix_stream_socket (connectto))) +;;* lme + +;;* lmx 780 system/sepolicy/public/domain.te + +(neverallow base_typeattr_62 tombstoned_intercept_socket (sock_file (write))) +;;* lme + +;;* lmx 781 system/sepolicy/public/domain.te + +(neverallow base_typeattr_62 tombstoned_intercept_socket (unix_stream_socket (connectto))) +;;* lme + +;;* lmx 799 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 base_typeattr_9 (sem (create destroy getattr setattr read write associate unix_read unix_write))) +(neverallow base_typeattr_9 base_typeattr_9 (msg (send receive))) +(neverallow base_typeattr_9 base_typeattr_9 (msgq (create destroy getattr setattr read write associate unix_read unix_write enqueue))) +(neverallow base_typeattr_9 base_typeattr_9 (shm (create destroy getattr setattr read write associate unix_read unix_write lock))) +;;* lme + +;;* lmx 803 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 dev_type (lnk_file (mounton))) +(neverallow base_typeattr_9 dev_type (sock_file (mounton))) +(neverallow base_typeattr_9 dev_type (fifo_file (mounton))) +(neverallow base_typeattr_9 fs_type (lnk_file (mounton))) +(neverallow base_typeattr_9 fs_type (sock_file (mounton))) +(neverallow base_typeattr_9 fs_type (fifo_file (mounton))) +(neverallow base_typeattr_9 file_type (lnk_file (mounton))) +(neverallow base_typeattr_9 file_type (sock_file (mounton))) +(neverallow base_typeattr_9 file_type (fifo_file (mounton))) +;;* lme + +;;* lmx 808 system/sepolicy/public/domain.te + +(neverallow domain su_exec (file (execute execute_no_trans))) +;;* lme + +;;* lmx 820 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 base_typeattr_63 (file (execmod))) +;;* lme + +;;* lmx 825 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 self (process (execstack execheap))) +;;* lme + +;;* lmx 829 system/sepolicy/public/domain.te + +(neverallow base_typeattr_64 file_type (file (execmod))) +;;* lme + +;;* lmx 831 system/sepolicy/public/domain.te + +(neverallow base_typeattr_15 proc (file (mounton))) +(neverallow base_typeattr_15 proc (dir (mounton))) +;;* lme + +;;* lmx 839 system/sepolicy/public/domain.te + +(neverallow base_typeattr_65 domain (process (transition dyntransition))) +;;* lme + +;;* lmx 856 system/sepolicy/public/domain.te + +(neverallow base_typeattr_66 system_data_file (file (write create setattr relabelfrom append unlink link rename))) +;;* lme + +;;* lmx 859 system/sepolicy/public/domain.te + +(neverallow installd system_data_file (file (write create setattr relabelto append link rename execute quotaon mounton execute_no_trans entrypoint execmod audit_access))) +;;* lme + +;;* lmx 867 system/sepolicy/public/domain.te + +(neverallow base_typeattr_67 system_app_data_file (file (create unlink open))) +(neverallow base_typeattr_67 system_app_data_file (dir (create unlink open))) +(neverallow base_typeattr_67 system_app_data_file (lnk_file (create unlink open))) +(neverallow base_typeattr_67 system_app_data_file (chr_file (create unlink open))) +(neverallow base_typeattr_67 system_app_data_file (blk_file (create unlink open))) +(neverallow base_typeattr_67 system_app_data_file (sock_file (create unlink open))) +(neverallow base_typeattr_67 system_app_data_file (fifo_file (create unlink open))) +;;* lme + +;;* lmx 873 system/sepolicy/public/domain.te + +(neverallow untrusted_app_all system_app_data_file (file (create unlink open))) +(neverallow untrusted_app_all system_app_data_file (dir (create unlink open))) +(neverallow untrusted_app_all system_app_data_file (lnk_file (create unlink open))) +(neverallow untrusted_app_all system_app_data_file (chr_file (create unlink open))) +(neverallow untrusted_app_all system_app_data_file (blk_file (create unlink open))) +(neverallow untrusted_app_all system_app_data_file (sock_file (create unlink open))) +(neverallow untrusted_app_all system_app_data_file (fifo_file (create unlink open))) +(neverallow ephemeral_app system_app_data_file (file (create unlink open))) +(neverallow ephemeral_app system_app_data_file (dir (create unlink open))) +(neverallow ephemeral_app system_app_data_file (lnk_file (create unlink open))) +(neverallow ephemeral_app system_app_data_file (chr_file (create unlink open))) +(neverallow ephemeral_app system_app_data_file (blk_file (create unlink open))) +(neverallow ephemeral_app system_app_data_file (sock_file (create unlink open))) +(neverallow ephemeral_app system_app_data_file (fifo_file (create unlink open))) +(neverallow isolated_app system_app_data_file (file (create unlink open))) +(neverallow isolated_app system_app_data_file (dir (create unlink open))) +(neverallow isolated_app system_app_data_file (lnk_file (create unlink open))) +(neverallow isolated_app system_app_data_file (chr_file (create unlink open))) +(neverallow isolated_app system_app_data_file (blk_file (create unlink open))) +(neverallow isolated_app system_app_data_file (sock_file (create unlink open))) +(neverallow isolated_app system_app_data_file (fifo_file (create unlink open))) +(neverallow priv_app system_app_data_file (file (create unlink open))) +(neverallow priv_app system_app_data_file (dir (create unlink open))) +(neverallow priv_app system_app_data_file (lnk_file (create unlink open))) +(neverallow priv_app system_app_data_file (chr_file (create unlink open))) +(neverallow priv_app system_app_data_file (blk_file (create unlink open))) +(neverallow priv_app system_app_data_file (sock_file (create unlink open))) +(neverallow priv_app system_app_data_file (fifo_file (create unlink open))) +;;* lme + +;;* lmx 881 system/sepolicy/public/domain.te + +(neverallow base_typeattr_68 app_data_file (file (create unlink))) +(neverallow base_typeattr_68 app_data_file (dir (create unlink))) +(neverallow base_typeattr_68 app_data_file (lnk_file (create unlink))) +(neverallow base_typeattr_68 app_data_file (chr_file (create unlink))) +(neverallow base_typeattr_68 app_data_file (blk_file (create unlink))) +(neverallow base_typeattr_68 app_data_file (sock_file (create unlink))) +(neverallow base_typeattr_68 app_data_file (fifo_file (create unlink))) +;;* lme + +;;* lmx 894 system/sepolicy/public/domain.te + +(neverallow base_typeattr_69 shell (process (transition dyntransition))) +;;* lme + +;;* lmx 899 system/sepolicy/public/domain.te + +(neverallow base_typeattr_70 base_typeattr_71 (process (transition dyntransition))) +;;* lme + +;;* lmx 908 system/sepolicy/public/domain.te + +(neverallow base_typeattr_72 app_data_file (lnk_file (read))) +;;* lme + +;;* lmx 915 system/sepolicy/public/domain.te + +(neverallow base_typeattr_73 shell_data_file (lnk_file (read))) +;;* lme + +;;* lmx 929 system/sepolicy/public/domain.te + +(neverallow base_typeattr_74 shell_data_file (dir (write create setattr relabelfrom link rename add_name remove_name reparent rmdir))) +;;* lme + +;;* lmx 940 system/sepolicy/public/domain.te + +(neverallow base_typeattr_75 shell_data_file (dir (search open))) +;;* lme + +;;* lmx 951 system/sepolicy/public/domain.te + +(neverallow base_typeattr_76 shell_data_file (file (open))) +;;* lme + +;;* lmx 959 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 base_typeattr_77 (service_manager (list))) +;;* lme + +;;* lmx 964 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 base_typeattr_78 (hwservice_manager (list))) +;;* lme + +;;* lmx 983 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 domain (file (execute execute_no_trans entrypoint))) +;;* lme + +;;* lmx 989 system/sepolicy/public/domain.te + +(neverallow base_typeattr_79 debugfs (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +;;* lme + +;;* lmx 997 system/sepolicy/public/domain.te + +(neverallow base_typeattr_80 profman_exec (file (execute execute_no_trans))) +;;* lme + +;;* lmx 1002 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 base_typeattr_81 (system (module_load))) +;;* lme + +;;* lmx 1009 system/sepolicy/public/domain.te + +(neverallow base_typeattr_13 self (capability (setfcap))) +;;* lme + +;;* lmx 1012 system/sepolicy/public/domain.te + +(neverallow domain crash_dump (process (noatsecure))) +;;* lme + +;;* lmx 1016 system/sepolicy/public/domain.te + +(neverallow base_typeattr_82 coredomain_hwservice (hwservice_manager (add))) +;;* lme + +;;* lmx 1021 system/sepolicy/public/domain.te + +(neverallow base_typeattr_9 same_process_hwservice (hwservice_manager (add))) +;;* lme + +(allow drmserver servicemanager (binder (call transfer))) +(allow servicemanager drmserver (dir (search))) +(allow servicemanager drmserver (file (read open))) +(allow servicemanager drmserver (process (getattr))) +(allow drmserver system_server (binder (call transfer))) +(allow system_server drmserver (binder (transfer))) +(allow drmserver system_server (fd (use))) +(allow drmserver appdomain (binder (call transfer))) +(allow appdomain drmserver (binder (transfer))) +(allow drmserver appdomain (fd (use))) +(allow drmserver system_server (fd (use))) +(allow drmserver mediaserver (binder (call transfer))) +(allow mediaserver drmserver (binder (transfer))) +(allow drmserver mediaserver (fd (use))) +(allow drmserver sdcard_type (dir (search))) +(allow drmserver drm_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow drmserver drm_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow drmserver tee_device (chr_file (ioctl read write getattr lock append map open))) +(allow drmserver app_data_file (file (read write getattr))) +(allow drmserver sdcard_type (file (read write getattr))) +(allow drmserver efs_file (dir (ioctl read getattr lock search open))) +(allow drmserver efs_file (file (ioctl read getattr lock map open))) +(allow drmserver efs_file (lnk_file (ioctl read getattr lock map open))) +(allow drmserver apk_data_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow drmserver drmserver_socket (sock_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow drmserver apk_data_file (sock_file (unlink))) +(allow drmserver media_rw_data_file (dir (ioctl read getattr lock search open))) +(allow drmserver media_rw_data_file (file (ioctl read getattr lock map open))) +(allow drmserver media_rw_data_file (lnk_file (ioctl read getattr lock map open))) +(allow drmserver apk_data_file (file (read getattr))) +(allow drmserver asec_apk_file (file (read getattr))) +(allow drmserver ringtone_file (file (read getattr))) +(allow drmserver radio_data_file (file (read getattr))) +(allow drmserver oemfs (dir (search))) +(allow drmserver oemfs (file (ioctl read getattr lock map open))) +(allow drmserver drmserver_service (service_manager (add find))) +;;* lmx 52 system/sepolicy/public/drmserver.te + +(neverallow base_typeattr_83 drmserver_service (service_manager (add))) +;;* lme + +(allow drmserver permission_service (service_manager (find))) +(allow drmserver selinuxfs (dir (ioctl read getattr lock search open))) +(allow drmserver selinuxfs (file (ioctl read getattr lock map open))) +(allow drmserver selinuxfs (lnk_file (ioctl read getattr lock map open))) +(allow drmserver selinuxfs (file (write lock append map open))) +(allow drmserver kernel (security (compute_av))) +(allow drmserver self (netlink_selinux_socket (read write create getattr setattr lock relabelfrom relabelto append bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(allow drmserver cgroup (dir (ioctl read getattr lock search open))) +(allow drmserver cgroup (file (ioctl read getattr lock map open))) +(allow drmserver cgroup (lnk_file (ioctl read getattr lock map open))) +(allow drmserver system_file (dir (ioctl read getattr lock search open))) +(allow drmserver system_file (file (ioctl read getattr lock map open))) +(allow drmserver system_file (lnk_file (ioctl read getattr lock map open))) +(allow dumpstate servicemanager (binder (call transfer))) +(allow servicemanager dumpstate (dir (search))) +(allow servicemanager dumpstate (file (read open))) +(allow servicemanager dumpstate (process (getattr))) +(allow dumpstate sysfs_wake_lock (file (ioctl read write getattr lock append map open))) +(allow dumpstate self (capability2 (block_suspend))) +(allow dumpstate self (capability (setgid setuid sys_resource))) +(allow dumpstate domain (dir (ioctl read getattr lock search open))) +(allow dumpstate domain (file (ioctl read getattr lock map open))) +(allow dumpstate domain (lnk_file (ioctl read getattr lock map open))) +(allow dumpstate self (capability (kill net_admin net_raw))) +(allow dumpstate system_file (file (execute_no_trans))) +(allow dumpstate toolbox_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow dumpstate system_file (dir (ioctl read getattr lock search open))) +(allow dumpstate self (capability (chown dac_override fowner fsetid))) +(allow dumpstate anr_data_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow dumpstate anr_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow dumpstate system_data_file (file (ioctl read getattr lock map open))) +(allow dumpstate self (capability2 (syslog))) +(allow dumpstate kernel (system (syslog_read))) +(allow dumpstate pstorefs (dir (ioctl read getattr lock search open))) +(allow dumpstate pstorefs (file (ioctl read getattr lock map open))) +(allow dumpstate domain (process (getattr))) +(allow dumpstate appdomain (process (signal))) +(allow dumpstate system_server (process (signal))) +(allow dumpstate hal_audio_server (process (signal))) +(allow dumpstate hal_bluetooth_server (process (signal))) +(allow dumpstate hal_camera_server (process (signal))) +(allow dumpstate hal_graphics_composer_server (process (signal))) +(allow dumpstate hal_sensors_server (process (signal))) +(allow dumpstate hal_vr_server (process (signal))) +(allow dumpstate audioserver (process (signal))) +(allow dumpstate cameraserver (process (signal))) +(allow dumpstate drmserver (process (signal))) +(allow dumpstate inputflinger (process (signal))) +(allow dumpstate mediacodec (process (signal))) +(allow dumpstate mediadrmserver (process (signal))) +(allow dumpstate mediaextractor (process (signal))) +(allow dumpstate mediaserver (process (signal))) +(allow dumpstate sdcardd (process (signal))) +(allow dumpstate surfaceflinger (process (signal))) +(allow dumpstate tombstoned_intercept_socket (sock_file (write))) +(allow dumpstate tombstoned (unix_stream_socket (connectto))) +(allow dumpstate sysfs_usb (file (write lock append map open))) +(allow dumpstate qtaguid_proc (file (ioctl read getattr lock map open))) +(allow dumpstate debugfs (file (ioctl read getattr lock map open))) +(allow dumpstate block_device (dir (getattr search))) +(allow dumpstate rootfs (dir (getattr search))) +(allow dumpstate selinuxfs (dir (getattr search))) +(allow dumpstate tmpfs (dir (getattr search))) +(allow dumpstate storage_file (dir (getattr search))) +(allow dumpstate cache_file (dir (getattr search))) +(allow dumpstate fuse_device (chr_file (getattr))) +(allow dumpstate dm_device (blk_file (getattr))) +(allow dumpstate cache_block_device (blk_file (getattr))) +(allow dumpstate rootfs (lnk_file (read getattr))) +(allow dumpstate cache_file (lnk_file (read getattr))) +(allow dumpstate cgroup (dir (ioctl read getattr lock search open))) +(allow dumpstate cgroup (file (ioctl read getattr lock map open))) +(allow dumpstate cgroup (lnk_file (ioctl read getattr lock map open))) +(allow dumpstate binderservicedomain (binder (call transfer))) +(allow binderservicedomain dumpstate (binder (transfer))) +(allow dumpstate binderservicedomain (fd (use))) +(allow dumpstate appdomain (binder (call transfer))) +(allow dumpstate netd (binder (call transfer))) +(allow dumpstate wificond (binder (call transfer))) +(allow appdomain dumpstate (binder (transfer))) +(allow netd dumpstate (binder (transfer))) +(allow wificond dumpstate (binder (transfer))) +(allow dumpstate appdomain (fd (use))) +(allow dumpstate netd (fd (use))) +(allow dumpstate wificond (fd (use))) +(allow dumpstate sysfs_vibrator (file (ioctl read write getattr lock append map open))) +(allow dumpstate self (capability (sys_ptrace))) +(allow dumpstate shell_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow dumpstate shell_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow dumpstate shell_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow dumpstate zygote_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow dumpstate ashmem_device (chr_file (execute))) +(allow dumpstate self (process (execmem))) +(allow dumpstate dalvikcache_data_file (dir (getattr search))) +(allow dumpstate dalvikcache_data_file (file (ioctl read getattr lock map execute open))) +(allow dumpstate dalvikcache_data_file (lnk_file (ioctl read getattr lock map open))) +(allow dumpstate bluetooth_data_file (dir (search))) +(allow dumpstate bluetooth_logs_data_file (dir (ioctl read getattr lock search open))) +(allow dumpstate bluetooth_logs_data_file (file (ioctl read getattr lock map open))) +(allow dumpstate gpu_device (chr_file (ioctl read write getattr lock append map open))) +(allow dumpstate logcat_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow dumpstate logdr_socket (sock_file (write))) +(allow dumpstate logd (unix_stream_socket (connectto))) +(allow dumpstate logd_socket (sock_file (write))) +(allow dumpstate logd (unix_stream_socket (connectto))) +(allow dumpstate runtime_event_log_tags_file (file (ioctl read getattr lock map open))) +(allow dumpstate proc_meminfo (file (ioctl read getattr lock map open))) +(allow dumpstate proc_net (file (ioctl read getattr lock map open))) +(allow dumpstate proc (dir (ioctl read getattr lock search open))) +(allow dumpstate proc (file (ioctl read getattr lock map open))) +(allow dumpstate proc (lnk_file (ioctl read getattr lock map open))) +(allow dumpstate net_data_file (dir (search))) +(allow dumpstate net_data_file (file (ioctl read getattr lock map open))) +(allow dumpstate self (netlink_tcpdiag_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown nlmsg_read))) +(allow dumpstate tombstone_data_file (dir (ioctl read getattr lock search open))) +(allow dumpstate tombstone_data_file (file (ioctl read getattr lock map open))) +(allow dumpstate cache_recovery_file (dir (ioctl read getattr lock search open))) +(allow dumpstate cache_recovery_file (file (ioctl read getattr lock map open))) +(allow dumpstate recovery_data_file (dir (ioctl read getattr lock search open))) +(allow dumpstate recovery_data_file (file (ioctl read getattr lock map open))) +(allow dumpstate base_typeattr_84 (service_manager (find))) +(allow dumpstate servicemanager (service_manager (list))) +(allow dumpstate hwservicemanager (hwservice_manager (list))) +(allow dumpstate devpts (chr_file (ioctl read write getattr lock append map open))) +(allow dumpstate property_socket (sock_file (write))) +(allow dumpstate init (unix_stream_socket (connectto))) +(allow dumpstate dumpstate_prop (property_service (set))) +(allow dumpstate dumpstate_prop (file (ioctl read getattr lock map open))) +(allow dumpstate property_socket (sock_file (write))) +(allow dumpstate init (unix_stream_socket (connectto))) +(allow dumpstate dumpstate_options_prop (property_service (set))) +(allow dumpstate dumpstate_options_prop (file (ioctl read getattr lock map open))) +(allow dumpstate serialno_prop (file (ioctl read getattr lock map open))) +(allow dumpstate device_logging_prop (file (ioctl read getattr lock map open))) +(allow dumpstate media_rw_data_file (dir (getattr))) +(allow dumpstate proc_interrupts (file (ioctl read getattr lock map open))) +(allow dumpstate proc_zoneinfo (file (ioctl read getattr lock map open))) +(allow dumpstate dumpstate_service (service_manager (add find))) +;;* lmx 215 system/sepolicy/public/dumpstate.te + +(neverallow base_typeattr_85 dumpstate_service (service_manager (add))) +;;* lme + +(allow dumpstate ion_device (chr_file (ioctl read getattr lock map open))) +(allow dumpstate sysfs (dir (ioctl read getattr lock search open))) +(allow dumpstate sysfs (file (ioctl read getattr lock map open))) +(allow dumpstate sysfs (lnk_file (ioctl read getattr lock map open))) +(allow dumpstate proc_stat (file (ioctl read getattr lock map open))) +(allow dumpstate sysfs_leds (lnk_file (ioctl read getattr lock map open))) +(allow dumpstate sysfs_leds (file (ioctl read getattr lock map open))) +(allow dumpstate sysfs_leds (dir (search))) +(allow dumpstate installd (binder (call transfer))) +(allow installd dumpstate (binder (transfer))) +(allow dumpstate installd (fd (use))) +(allow dumpstate self (netlink_xfrm_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown nlmsg_read))) +;;* lmx 243 system/sepolicy/public/dumpstate.te + +(neverallow dumpstate base_typeattr_9 (process (ptrace))) +;;* lme + +;;* lmx 246 system/sepolicy/public/dumpstate.te + +(neverallow base_typeattr_86 dumpstate_service (service_manager (find))) +;;* lme + +;;* lmx 250 system/sepolicy/public/dumpstate.te + +(neverallow dumpstate sysfs (file (write create setattr relabelfrom append unlink link rename))) +;;* lme + +(allow e2fs block_device (blk_file (getattr))) +(allow e2fs block_device (dir (search))) +(allow e2fs userdata_block_device (blk_file (ioctl read write getattr lock append map open))) +(allow e2fs proc (file (ioctl read getattr lock map open))) +(allow e2fs sysfs_fs_ext4_features (file (ioctl read getattr lock map open))) +(allow e2fs file_contexts_file (file (read getattr open))) +(allow fs_type self (filesystem (associate))) +(allow cgroup tmpfs (filesystem (associate))) +(allow sysfs_type sysfs (filesystem (associate))) +(allow debugfs_type debugfs (filesystem (associate))) +(allow debugfs_type debugfs_tracing (filesystem (associate))) +(allow file_type labeledfs (filesystem (associate))) +(allow file_type tmpfs (filesystem (associate))) +(allow file_type rootfs (filesystem (associate))) +(allow dev_type tmpfs (filesystem (associate))) +(allow app_fuse_file app_fusefs (filesystem (associate))) +(allow postinstall_file self (filesystem (associate))) +;;* lmx 347 system/sepolicy/public/file.te + +(neverallow fs_type file_type (filesystem (associate))) +;;* lme + +(allow fingerprintd servicemanager (binder (call transfer))) +(allow servicemanager fingerprintd (dir (search))) +(allow servicemanager fingerprintd (file (read open))) +(allow servicemanager fingerprintd (process (getattr))) +(allow fingerprintd system_file (dir (ioctl read getattr lock search open))) +(allow fingerprintd fingerprintd_service (service_manager (add find))) +;;* lmx 10 system/sepolicy/public/fingerprintd.te + +(neverallow base_typeattr_87 fingerprintd_service (service_manager (add))) +;;* lme + +(allow fingerprintd fingerprintd_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow fingerprintd fingerprintd_data_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow keystore fingerprintd (dir (search))) +(allow keystore fingerprintd (file (read open))) +(allow keystore fingerprintd (process (getattr))) +(allow fingerprintd keystore_service (service_manager (find))) +(allow fingerprintd keystore (binder (call transfer))) +(allow keystore fingerprintd (binder (transfer))) +(allow fingerprintd keystore (fd (use))) +(allow fingerprintd keystore (keystore_key (add_auth))) +(allow fingerprintd system_server (binder (call transfer))) +(allow system_server fingerprintd (binder (transfer))) +(allow fingerprintd system_server (fd (use))) +(allow fingerprintd permission_service (service_manager (find))) +(allow fingerprintd cgroup (dir (ioctl read getattr lock search open))) +(allow fingerprintd cgroup (file (ioctl read getattr lock map open))) +(allow fingerprintd cgroup (lnk_file (ioctl read getattr lock map open))) +(allow fingerprintd sysfs_type (dir (ioctl read getattr lock search open))) +(allow fingerprintd sysfs_type (file (ioctl read getattr lock map open))) +(allow fingerprintd sysfs_type (lnk_file (ioctl read getattr lock map open))) +(allow fingerprintd ion_device (chr_file (ioctl read getattr lock map open))) +(allow fsck tmpfs (chr_file (ioctl read write))) +(allow fsck devpts (chr_file (ioctl read write getattr))) +(allow fsck vold (fd (use))) +(allow fsck vold (fifo_file (read write getattr))) +(allow fsck block_device (dir (search))) +(allow fsck userdata_block_device (blk_file (ioctl read write getattr lock append map open))) +(allow fsck cache_block_device (blk_file (ioctl read write getattr lock append map open))) +(allow fsck dm_device (blk_file (ioctl read write getattr lock append map open))) +(allow fsck dev_type (blk_file (getattr))) +(allow fsck proc (dir (ioctl read getattr lock search open))) +(allow fsck proc (file (ioctl read getattr lock map open))) +(allow fsck proc (lnk_file (ioctl read getattr lock map open))) +(allow fsck rootfs (dir (ioctl read getattr lock search open))) +;;* lmx 50 system/sepolicy/public/fsck.te + +(neverallow fsck vold_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow fsck root_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow fsck frp_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow fsck system_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow fsck recovery_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow fsck boot_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow fsck swap_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow fsck metadata_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +;;* lme + +;;* lmx 53 system/sepolicy/public/fsck.te + +(neverallow base_typeattr_88 fsck (process (transition))) +;;* lme + +;;* lmx 54 system/sepolicy/public/fsck.te + +(neverallow base_typeattr_9 fsck (process (dyntransition))) +;;* lme + +;;* lmx 55 system/sepolicy/public/fsck.te + +(neverallow fsck base_typeattr_89 (file (entrypoint))) +;;* lme + +(allow fsck_untrusted devpts (chr_file (ioctl read write getattr))) +(allow fsck_untrusted vold (fd (use))) +(allow fsck_untrusted vold (fifo_file (read write getattr))) +(allow fsck_untrusted block_device (dir (search))) +(allow fsck_untrusted vold_device (blk_file (ioctl read write getattr lock append map open))) +(allow fsck_untrusted proc (dir (ioctl read getattr lock search open))) +(allow fsck_untrusted proc (file (ioctl read getattr lock map open))) +(allow fsck_untrusted proc (lnk_file (ioctl read getattr lock map open))) +(allow fsck_untrusted dev_type (blk_file (getattr))) +;;* lmx 44 system/sepolicy/public/fsck_untrusted.te + +(neverallow fsck_untrusted dm_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow fsck_untrusted root_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow fsck_untrusted frp_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow fsck_untrusted system_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow fsck_untrusted recovery_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow fsck_untrusted boot_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow fsck_untrusted userdata_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow fsck_untrusted cache_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow fsck_untrusted swap_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow fsck_untrusted metadata_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +;;* lme + +;;* lmx 47 system/sepolicy/public/fsck_untrusted.te + +(neverallow base_typeattr_90 fsck_untrusted (process (transition))) +;;* lme + +;;* lmx 48 system/sepolicy/public/fsck_untrusted.te + +(neverallow base_typeattr_9 fsck_untrusted (process (dyntransition))) +;;* lme + +;;* lmx 49 system/sepolicy/public/fsck_untrusted.te + +(neverallow fsck_untrusted base_typeattr_89 (file (entrypoint))) +;;* lme + +(allow gatekeeperd servicemanager (binder (call transfer))) +(allow servicemanager gatekeeperd (dir (search))) +(allow servicemanager gatekeeperd (file (read open))) +(allow servicemanager gatekeeperd (process (getattr))) +(allow gatekeeperd tee_device (chr_file (ioctl read write getattr lock append map open))) +(allow gatekeeperd ion_device (chr_file (ioctl read getattr lock map open))) +(allow gatekeeperd system_file (dir (ioctl read getattr lock search open))) +(allow gatekeeperd gatekeeper_service (service_manager (add find))) +;;* lmx 22 system/sepolicy/public/gatekeeperd.te + +(neverallow base_typeattr_91 gatekeeper_service (service_manager (add))) +;;* lme + +(allow keystore gatekeeperd (dir (search))) +(allow keystore gatekeeperd (file (read open))) +(allow keystore gatekeeperd (process (getattr))) +(allow gatekeeperd keystore_service (service_manager (find))) +(allow gatekeeperd keystore (binder (call transfer))) +(allow keystore gatekeeperd (binder (transfer))) +(allow gatekeeperd keystore (fd (use))) +(allow gatekeeperd keystore (keystore_key (add_auth))) +(allow gatekeeperd system_server (binder (call))) +(allow gatekeeperd permission_service (service_manager (find))) +(allow gatekeeperd gatekeeper_data_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow gatekeeperd gatekeeper_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow gatekeeperd hardware_properties_service (service_manager (find))) +(allow gatekeeperd cgroup (dir (ioctl read getattr lock search open))) +(allow gatekeeperd cgroup (file (ioctl read getattr lock map open))) +(allow gatekeeperd cgroup (lnk_file (ioctl read getattr lock map open))) +(allow hal_allocator_client hal_allocator_server (binder (call transfer))) +(allow hal_allocator_server hal_allocator_client (binder (transfer))) +(allow hal_allocator_client hal_allocator_server (fd (use))) +(allow hal_allocator_server hidl_allocator_hwservice (hwservice_manager (add find))) +(allow hal_allocator_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 4 system/sepolicy/public/hal_allocator.te + +(neverallow base_typeattr_92 hidl_allocator_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_allocator_client hidl_allocator_hwservice (hwservice_manager (find))) +(allow hal_allocator_client hidl_memory_hwservice (hwservice_manager (find))) +(allow hal_audio_client hal_audio_server (binder (call transfer))) +(allow hal_audio_server hal_audio_client (binder (transfer))) +(allow hal_audio_client hal_audio_server (fd (use))) +(allow hal_audio_server hal_audio_client (binder (call transfer))) +(allow hal_audio_client hal_audio_server (binder (transfer))) +(allow hal_audio_server hal_audio_client (fd (use))) +(allow hal_audio_server hal_audio_hwservice (hwservice_manager (add find))) +(allow hal_audio_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_audio.te + +(neverallow base_typeattr_93 hal_audio_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_audio_client hal_audio_hwservice (hwservice_manager (find))) +(allow hal_audio ion_device (chr_file (ioctl read getattr lock map open))) +(allow hal_audio proc (dir (ioctl read getattr lock search open))) +(allow hal_audio proc (file (ioctl read getattr lock map open))) +(allow hal_audio proc (lnk_file (ioctl read getattr lock map open))) +(allow hal_audio audio_device (dir (ioctl read getattr lock search open))) +(allow hal_audio audio_device (chr_file (ioctl read write getattr lock append map open))) +(allow hal_audio shell (fd (use))) +(allow hal_audio shell (fifo_file (write))) +(allow hal_audio dumpstate (fd (use))) +(allow hal_audio dumpstate (fifo_file (write))) +;;* lmx 31 system/sepolicy/public/hal_audio.te + +(neverallow hal_audio fs_type (file (execute_no_trans))) +(neverallow hal_audio file_type (file (execute_no_trans))) +;;* lme + +;;* lmx 35 system/sepolicy/public/hal_audio.te + +(neverallow hal_audio domain (tcp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind name_connect))) +(neverallow hal_audio domain (udp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +(neverallow hal_audio domain (rawip_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +;;* lme + +;;* lmx 38 system/sepolicy/public/hal_audio.te + +(neverallow base_typeattr_94 audio_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +(allow hal_bluetooth_client hal_bluetooth_server (binder (call transfer))) +(allow hal_bluetooth_server hal_bluetooth_client (binder (transfer))) +(allow hal_bluetooth_client hal_bluetooth_server (fd (use))) +(allow hal_bluetooth_server hal_bluetooth_client (binder (call transfer))) +(allow hal_bluetooth_client hal_bluetooth_server (binder (transfer))) +(allow hal_bluetooth_server hal_bluetooth_client (fd (use))) +(allow hal_bluetooth_server hal_bluetooth_hwservice (hwservice_manager (add find))) +(allow hal_bluetooth_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_bluetooth.te + +(neverallow base_typeattr_95 hal_bluetooth_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_bluetooth_client hal_bluetooth_hwservice (hwservice_manager (find))) +(allow hal_bluetooth sysfs_wake_lock (file (ioctl read write getattr lock append map open))) +(allow hal_bluetooth self (capability2 (block_suspend))) +(allow hal_bluetooth self (capability (net_admin))) +(allow hal_bluetooth bluetooth_efs_file (dir (ioctl read getattr lock search open))) +(allow hal_bluetooth bluetooth_efs_file (file (ioctl read getattr lock map open))) +(allow hal_bluetooth bluetooth_efs_file (lnk_file (ioctl read getattr lock map open))) +(allow hal_bluetooth uhid_device (chr_file (ioctl read write getattr lock append map open))) +(allow hal_bluetooth hci_attach_dev (chr_file (ioctl read write getattr lock append map open))) +(allow hal_bluetooth sysfs_type (dir (ioctl read getattr lock search open))) +(allow hal_bluetooth sysfs_type (file (ioctl read getattr lock map open))) +(allow hal_bluetooth sysfs_type (lnk_file (ioctl read getattr lock map open))) +(allow hal_bluetooth sysfs_bluetooth_writable (file (ioctl read write getattr lock append map open))) +(allow hal_bluetooth self (capability2 (wake_alarm))) +(allow hal_bluetooth property_socket (sock_file (write))) +(allow hal_bluetooth init (unix_stream_socket (connectto))) +(allow hal_bluetooth bluetooth_prop (property_service (set))) +(allow hal_bluetooth bluetooth_prop (file (ioctl read getattr lock map open))) +(allow hal_bluetooth proc_bluetooth_writable (file (ioctl read write getattr lock append map open))) +(allow hal_bluetooth self (capability (sys_nice))) +(allow hal_bootctl_client hal_bootctl_server (binder (call transfer))) +(allow hal_bootctl_server hal_bootctl_client (binder (transfer))) +(allow hal_bootctl_client hal_bootctl_server (fd (use))) +(allow hal_bootctl_server hal_bootctl_client (binder (call transfer))) +(allow hal_bootctl_client hal_bootctl_server (binder (transfer))) +(allow hal_bootctl_server hal_bootctl_client (fd (use))) +(allow hal_bootctl_server hal_bootctl_hwservice (hwservice_manager (add find))) +(allow hal_bootctl_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_bootctl.te + +(neverallow base_typeattr_96 hal_bootctl_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_bootctl_client hal_bootctl_hwservice (hwservice_manager (find))) +(allow hal_broadcastradio_client hal_broadcastradio_server (binder (call transfer))) +(allow hal_broadcastradio_server hal_broadcastradio_client (binder (transfer))) +(allow hal_broadcastradio_client hal_broadcastradio_server (fd (use))) +(allow hal_broadcastradio_server hal_broadcastradio_hwservice (hwservice_manager (add find))) +(allow hal_broadcastradio_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 3 system/sepolicy/public/hal_broadcastradio.te + +(neverallow base_typeattr_97 hal_broadcastradio_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_broadcastradio_client hal_broadcastradio_hwservice (hwservice_manager (find))) +(allow hal_camera_client hal_camera_server (binder (call transfer))) +(allow hal_camera_server hal_camera_client (binder (transfer))) +(allow hal_camera_client hal_camera_server (fd (use))) +(allow hal_camera_server hal_camera_client (binder (call transfer))) +(allow hal_camera_client hal_camera_server (binder (transfer))) +(allow hal_camera_server hal_camera_client (fd (use))) +(allow hal_camera_server hal_camera_hwservice (hwservice_manager (add find))) +(allow hal_camera_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_camera.te + +(neverallow base_typeattr_98 hal_camera_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_camera_client hal_camera_hwservice (hwservice_manager (find))) +(allow hal_camera camera_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow hal_camera camera_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow hal_camera video_device (dir (ioctl read getattr lock search open))) +(allow hal_camera video_device (chr_file (ioctl read write getattr lock append map open))) +(allow hal_camera camera_device (chr_file (ioctl read write getattr lock append map open))) +(allow hal_camera ion_device (chr_file (ioctl read write getattr lock append map open))) +(allow hal_camera_client hal_graphics_allocator (fd (use))) +(allow hal_camera_server hal_graphics_allocator (fd (use))) +(allow hal_camera base_typeattr_99 (fd (use))) +(allow hal_camera surfaceflinger (fd (use))) +(allow hal_camera hal_allocator_server (fd (use))) +;;* lmx 30 system/sepolicy/public/hal_camera.te + +(neverallow hal_camera fs_type (file (execute_no_trans))) +(neverallow hal_camera file_type (file (execute_no_trans))) +;;* lme + +;;* lmx 33 system/sepolicy/public/hal_camera.te + +(neverallow hal_camera domain (tcp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind name_connect))) +(neverallow hal_camera domain (udp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +(neverallow hal_camera domain (rawip_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +;;* lme + +;;* lmx 36 system/sepolicy/public/hal_camera.te + +(neverallow base_typeattr_100 camera_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +(allow hal_cas_client hal_cas_server (binder (call transfer))) +(allow hal_cas_server hal_cas_client (binder (transfer))) +(allow hal_cas_client hal_cas_server (fd (use))) +(allow hal_cas_server hal_cas_client (binder (call transfer))) +(allow hal_cas_client hal_cas_server (binder (transfer))) +(allow hal_cas_server hal_cas_client (fd (use))) +(allow hal_cas_server hal_cas_hwservice (hwservice_manager (add find))) +(allow hal_cas_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_cas.te + +(neverallow base_typeattr_101 hal_cas_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_cas_client hal_cas_hwservice (hwservice_manager (find))) +(allow hal_cas_server hidl_memory_hwservice (hwservice_manager (find))) +(allow hal_cas serialno_prop (file (ioctl read getattr lock map open))) +(allow hal_cas system_data_file (dir (getattr search))) +(allow hal_cas system_data_file (file (read getattr))) +(allow hal_cas system_data_file (lnk_file (ioctl read getattr lock map open))) +(allow hal_cas cgroup (dir (ioctl read getattr lock search open))) +(allow hal_cas cgroup (file (ioctl read getattr lock map open))) +(allow hal_cas cgroup (lnk_file (ioctl read getattr lock map open))) +(allow hal_cas cgroup (dir (write search))) +(allow hal_cas cgroup (file (write lock append map open))) +(allow hal_cas ion_device (chr_file (ioctl read write getattr lock append map open))) +(allow hal_cas hal_graphics_allocator (fd (use))) +(allow hal_cas tee_device (chr_file (ioctl read write getattr lock append map open))) +;;* lmx 34 system/sepolicy/public/hal_cas.te + +(neverallow hal_cas fs_type (file (execute_no_trans))) +(neverallow hal_cas file_type (file (execute_no_trans))) +;;* lme + +;;* lmx 37 system/sepolicy/public/hal_cas.te + +(neverallowx hal_cas domain (ioctl tcp_socket (0x6900 0x6902))) +(neverallowx hal_cas domain (ioctl udp_socket (0x6900 0x6902))) +(neverallowx hal_cas domain (ioctl rawip_socket (0x6900 0x6902))) +;;* lme + +;;* lmx 37 system/sepolicy/public/hal_cas.te + +(neverallowx hal_cas domain (ioctl tcp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx hal_cas domain (ioctl udp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx hal_cas domain (ioctl rawip_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +;;* lme + +;;* lmx 37 system/sepolicy/public/hal_cas.te + +(neverallowx hal_cas domain (ioctl tcp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx hal_cas domain (ioctl udp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx hal_cas domain (ioctl rawip_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +;;* lme + +(allow hal_configstore_client hal_configstore_server (binder (call transfer))) +(allow hal_configstore_server hal_configstore_client (binder (transfer))) +(allow hal_configstore_client hal_configstore_server (fd (use))) +(allow hal_configstore_client hal_configstore_ISurfaceFlingerConfigs (hwservice_manager (find))) +(allow hal_configstore_server hal_configstore_ISurfaceFlingerConfigs (hwservice_manager (add find))) +(allow hal_configstore_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 6 system/sepolicy/public/hal_configstore.te + +(neverallow base_typeattr_102 hal_configstore_ISurfaceFlingerConfigs (hwservice_manager (add))) +;;* lme + +(allow hal_configstore_server anr_data_file (file (append))) +(allow hal_configstore_server dumpstate (fd (use))) +(allow hal_configstore_server dumpstate (fifo_file (write append))) +(allow hal_configstore_server system_server (fifo_file (write append))) +(allow hal_configstore_server tombstoned (unix_stream_socket (connectto))) +(allow hal_configstore_server tombstoned (fd (use))) +(allow hal_configstore_server tombstoned_crash_socket (sock_file (write))) +(allow hal_configstore_server tombstone_data_file (file (append))) +;;* lmx 20 system/sepolicy/public/hal_configstore.te + +(neverallow hal_configstore_server fs_type (file (execute_no_trans))) +(neverallow hal_configstore_server file_type (file (execute_no_trans))) +;;* lme + +;;* lmx 34 system/sepolicy/public/hal_configstore.te + +(neverallow hal_configstore_server domain (socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow hal_configstore_server domain (tcp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind name_connect))) +(neverallow hal_configstore_server domain (udp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +(neverallow hal_configstore_server domain (rawip_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +(neverallow hal_configstore_server domain (netlink_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow hal_configstore_server domain (packet_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow hal_configstore_server domain (key_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow hal_configstore_server domain (netlink_route_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow hal_configstore_server domain (netlink_tcpdiag_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow hal_configstore_server domain (netlink_nflog_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow hal_configstore_server domain (netlink_xfrm_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow hal_configstore_server domain (netlink_selinux_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow hal_configstore_server domain (netlink_audit_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write nlmsg_relay nlmsg_readpriv nlmsg_tty_audit))) +(neverallow hal_configstore_server domain (netlink_dnrt_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow hal_configstore_server domain (netlink_kobject_uevent_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow hal_configstore_server domain (appletalk_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow hal_configstore_server domain (tun_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind attach_queue))) +(neverallow hal_configstore_server domain (netlink_iscsi_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow hal_configstore_server domain (netlink_fib_lookup_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow hal_configstore_server domain (netlink_connector_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow hal_configstore_server domain (netlink_netfilter_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow hal_configstore_server domain (netlink_generic_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow hal_configstore_server domain (netlink_scsitransport_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow hal_configstore_server domain (netlink_rdma_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow hal_configstore_server domain (netlink_crypto_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +;;* lme + +;;* lmx 41 system/sepolicy/public/hal_configstore.te + +(neverallow hal_configstore_server base_typeattr_103 (unix_stream_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind connectto))) +(neverallow hal_configstore_server base_typeattr_103 (unix_dgram_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +;;* lme + +;;* lmx 49 system/sepolicy/public/hal_configstore.te + +(neverallow hal_configstore_server base_typeattr_104 (file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow hal_configstore_server base_typeattr_104 (sock_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow hal_configstore_server base_typeattr_104 (fifo_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +;;* lme + +;;* lmx 52 system/sepolicy/public/hal_configstore.te + +(neverallow hal_configstore_server fuse (file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow hal_configstore_server sdcardfs (file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow hal_configstore_server vfat (file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +;;* lmx 55 system/sepolicy/public/hal_configstore.te + +(neverallow hal_configstore_server base_typeattr_9 (service_manager (add find list))) +;;* lme + +;;* lmx 58 system/sepolicy/public/hal_configstore.te + +(neverallow hal_configstore_server self (capability (chown dac_override dac_read_search fowner fsetid kill setgid setuid setpcap linux_immutable net_bind_service net_broadcast net_admin net_raw ipc_lock ipc_owner sys_module sys_rawio sys_chroot sys_ptrace sys_pacct sys_admin sys_boot sys_nice sys_resource sys_time sys_tty_config mknod lease audit_write audit_control setfcap))) +(neverallow hal_configstore_server self (capability2 (mac_override mac_admin syslog wake_alarm block_suspend audit_read))) +;;* lme + +;;* lmx 61 system/sepolicy/public/hal_configstore.te + +(neverallow hal_configstore_server base_typeattr_9 (process (ptrace))) +;;* lme + +;;* lmx 64 system/sepolicy/public/hal_configstore.te + +(neverallow hal_configstore_server base_typeattr_9 (file (relabelfrom relabelto))) +(neverallow hal_configstore_server base_typeattr_9 (dir (relabelfrom relabelto))) +(neverallow hal_configstore_server base_typeattr_9 (lnk_file (relabelfrom relabelto))) +(neverallow hal_configstore_server base_typeattr_9 (chr_file (relabelfrom relabelto))) +(neverallow hal_configstore_server base_typeattr_9 (blk_file (relabelfrom relabelto))) +(neverallow hal_configstore_server base_typeattr_9 (sock_file (relabelfrom relabelto))) +(neverallow hal_configstore_server base_typeattr_9 (fifo_file (relabelfrom relabelto))) +;;* lme + +(allow hal_contexthub_client hal_contexthub_server (binder (call transfer))) +(allow hal_contexthub_server hal_contexthub_client (binder (transfer))) +(allow hal_contexthub_client hal_contexthub_server (fd (use))) +(allow hal_contexthub_server hal_contexthub_client (binder (call transfer))) +(allow hal_contexthub_client hal_contexthub_server (binder (transfer))) +(allow hal_contexthub_server hal_contexthub_client (fd (use))) +(allow hal_contexthub_server hal_contexthub_hwservice (hwservice_manager (add find))) +(allow hal_contexthub_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_contexthub.te + +(neverallow base_typeattr_105 hal_contexthub_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_contexthub_client hal_contexthub_hwservice (hwservice_manager (find))) +(allow hal_drm_client hal_drm_server (binder (call transfer))) +(allow hal_drm_server hal_drm_client (binder (transfer))) +(allow hal_drm_client hal_drm_server (fd (use))) +(allow hal_drm_server hal_drm_client (binder (call transfer))) +(allow hal_drm_client hal_drm_server (binder (transfer))) +(allow hal_drm_server hal_drm_client (fd (use))) +(allow hal_drm_server hal_drm_hwservice (hwservice_manager (add find))) +(allow hal_drm_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_drm.te + +(neverallow base_typeattr_106 hal_drm_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_drm_client hal_drm_hwservice (hwservice_manager (find))) +(allow hal_drm hidl_memory_hwservice (hwservice_manager (find))) +(allow hal_drm self (process (execmem))) +(allow hal_drm serialno_prop (file (ioctl read getattr lock map open))) +(allow hal_drm system_file (dir (ioctl read getattr lock search open))) +(allow hal_drm system_file (file (ioctl read getattr lock map open))) +(allow hal_drm system_file (lnk_file (ioctl read getattr lock map open))) +(allow hal_drm system_data_file (dir (getattr search))) +(allow hal_drm system_data_file (file (read getattr))) +(allow hal_drm system_data_file (lnk_file (ioctl read getattr lock map open))) +(allow hal_drm cgroup (dir (ioctl read getattr lock search open))) +(allow hal_drm cgroup (file (ioctl read getattr lock map open))) +(allow hal_drm cgroup (lnk_file (ioctl read getattr lock map open))) +(allow hal_drm cgroup (dir (write search))) +(allow hal_drm cgroup (file (write lock append map open))) +(allow hal_drm ion_device (chr_file (ioctl read write getattr lock append map open))) +(allow hal_drm hal_graphics_allocator (fd (use))) +(allow hal_drm mediaserver (fd (use))) +(allow hal_drm media_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow hal_drm media_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow hal_drm media_data_file (file (read getattr))) +(allow hal_drm sysfs (file (ioctl read getattr lock map open))) +(allow hal_drm tee_device (chr_file (ioctl read write getattr lock append map open))) +(allowx hal_drm self (ioctl tcp_socket ((range 0x5401 0x5403) 0x540b (range 0x540e 0x5411) (range 0x5413 0x5414) 0x5451))) +(allowx hal_drm self (ioctl udp_socket ((range 0x5401 0x5403) 0x540b (range 0x540e 0x5411) (range 0x5413 0x5414) 0x5451))) +(allowx hal_drm self (ioctl rawip_socket ((range 0x5401 0x5403) 0x540b (range 0x540e 0x5411) (range 0x5413 0x5414) 0x5451))) +(allowx hal_drm self (ioctl tcp_socket ((range 0x8906 0x8907) 0x8910 (range 0x8912 0x8913) 0x8915 0x8917 0x8919 0x891b 0x8921 0x8933 0x8938 0x8942))) +(allowx hal_drm self (ioctl udp_socket ((range 0x8906 0x8907) 0x8910 (range 0x8912 0x8913) 0x8915 0x8917 0x8919 0x891b 0x8921 0x8933 0x8938 0x8942))) +(allowx hal_drm self (ioctl rawip_socket ((range 0x8906 0x8907) 0x8910 (range 0x8912 0x8913) 0x8915 0x8917 0x8919 0x891b 0x8921 0x8933 0x8938 0x8942))) +(allowx hal_drm self (ioctl tcp_socket (0x8b01 0x8b05 0x8b07 0x8b09 0x8b0b 0x8b0d 0x8b0f (range 0x8b11 0x8b13) 0x8b21 0x8b23 0x8b25 0x8b27 0x8b29 0x8b2d))) +(allowx hal_drm self (ioctl udp_socket (0x8b01 0x8b05 0x8b07 0x8b09 0x8b0b 0x8b0d 0x8b0f (range 0x8b11 0x8b13) 0x8b21 0x8b23 0x8b25 0x8b27 0x8b29 0x8b2d))) +(allowx hal_drm self (ioctl rawip_socket (0x8b01 0x8b05 0x8b07 0x8b09 0x8b0b 0x8b0d 0x8b0f (range 0x8b11 0x8b13) 0x8b21 0x8b23 0x8b25 0x8b27 0x8b29 0x8b2d))) +;;* lmx 57 system/sepolicy/public/hal_drm.te + +(neverallow hal_drm fs_type (file (execute_no_trans))) +(neverallow hal_drm file_type (file (execute_no_trans))) +;;* lme + +;;* lmx 60 system/sepolicy/public/hal_drm.te + +(neverallowx hal_drm domain (ioctl tcp_socket (0x6900 0x6902))) +(neverallowx hal_drm domain (ioctl udp_socket (0x6900 0x6902))) +(neverallowx hal_drm domain (ioctl rawip_socket (0x6900 0x6902))) +;;* lme + +;;* lmx 60 system/sepolicy/public/hal_drm.te + +(neverallowx hal_drm domain (ioctl tcp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx hal_drm domain (ioctl udp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx hal_drm domain (ioctl rawip_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +;;* lme + +;;* lmx 60 system/sepolicy/public/hal_drm.te + +(neverallowx hal_drm domain (ioctl tcp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx hal_drm domain (ioctl udp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx hal_drm domain (ioctl rawip_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +;;* lme + +(allow hal_dumpstate_client hal_dumpstate_server (binder (call transfer))) +(allow hal_dumpstate_server hal_dumpstate_client (binder (transfer))) +(allow hal_dumpstate_client hal_dumpstate_server (fd (use))) +(allow hal_dumpstate_server hal_dumpstate_client (binder (call transfer))) +(allow hal_dumpstate_client hal_dumpstate_server (binder (transfer))) +(allow hal_dumpstate_server hal_dumpstate_client (fd (use))) +(allow hal_dumpstate_server hal_dumpstate_hwservice (hwservice_manager (add find))) +(allow hal_dumpstate_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_dumpstate.te + +(neverallow base_typeattr_107 hal_dumpstate_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_dumpstate_client hal_dumpstate_hwservice (hwservice_manager (find))) +(allow hal_dumpstate shell_data_file (file (write))) +(allow hal_dumpstate proc_interrupts (file (ioctl read getattr lock map open))) +(allow hal_fingerprint_client hal_fingerprint_server (binder (call transfer))) +(allow hal_fingerprint_server hal_fingerprint_client (binder (transfer))) +(allow hal_fingerprint_client hal_fingerprint_server (fd (use))) +(allow hal_fingerprint_server hal_fingerprint_client (binder (call transfer))) +(allow hal_fingerprint_client hal_fingerprint_server (binder (transfer))) +(allow hal_fingerprint_server hal_fingerprint_client (fd (use))) +(allow hal_fingerprint_server hal_fingerprint_hwservice (hwservice_manager (add find))) +(allow hal_fingerprint_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_fingerprint.te + +(neverallow base_typeattr_108 hal_fingerprint_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_fingerprint_client hal_fingerprint_hwservice (hwservice_manager (find))) +(allow hal_fingerprint fingerprintd_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow hal_fingerprint fingerprintd_data_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow hal_fingerprint ion_device (chr_file (ioctl read getattr lock map open))) +(allow hal_fingerprint cgroup (dir (ioctl read getattr lock search open))) +(allow hal_fingerprint cgroup (file (ioctl read getattr lock map open))) +(allow hal_fingerprint cgroup (lnk_file (ioctl read getattr lock map open))) +(allow hal_fingerprint sysfs (dir (ioctl read getattr lock search open))) +(allow hal_fingerprint sysfs (file (ioctl read getattr lock map open))) +(allow hal_fingerprint sysfs (lnk_file (ioctl read getattr lock map open))) +(allow hal_gatekeeper_client hal_gatekeeper_server (binder (call transfer))) +(allow hal_gatekeeper_server hal_gatekeeper_client (binder (transfer))) +(allow hal_gatekeeper_client hal_gatekeeper_server (fd (use))) +(allow hal_gatekeeper_server hal_gatekeeper_hwservice (hwservice_manager (add find))) +(allow hal_gatekeeper_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 3 system/sepolicy/public/hal_gatekeeper.te + +(neverallow base_typeattr_109 hal_gatekeeper_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_gatekeeper_client hal_gatekeeper_hwservice (hwservice_manager (find))) +(allow hal_gatekeeper tee_device (chr_file (ioctl read write getattr lock append map open))) +(allow hal_gatekeeper ion_device (chr_file (ioctl read getattr lock map open))) +(allow hal_gnss_client hal_gnss_server (binder (call transfer))) +(allow hal_gnss_server hal_gnss_client (binder (transfer))) +(allow hal_gnss_client hal_gnss_server (fd (use))) +(allow hal_gnss_server hal_gnss_client (binder (call transfer))) +(allow hal_gnss_client hal_gnss_server (binder (transfer))) +(allow hal_gnss_server hal_gnss_client (fd (use))) +(allow hal_gnss_server hal_gnss_hwservice (hwservice_manager (add find))) +(allow hal_gnss_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_gnss.te + +(neverallow base_typeattr_110 hal_gnss_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_gnss_client hal_gnss_hwservice (hwservice_manager (find))) +(allow hal_graphics_allocator_client hal_graphics_allocator_server (binder (call transfer))) +(allow hal_graphics_allocator_server hal_graphics_allocator_client (binder (transfer))) +(allow hal_graphics_allocator_client hal_graphics_allocator_server (fd (use))) +(allow hal_graphics_allocator_server hal_graphics_allocator_hwservice (hwservice_manager (add find))) +(allow hal_graphics_allocator_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 4 system/sepolicy/public/hal_graphics_allocator.te + +(neverallow base_typeattr_111 hal_graphics_allocator_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_graphics_allocator_client hal_graphics_allocator_hwservice (hwservice_manager (find))) +(allow hal_graphics_allocator_client hal_graphics_mapper_hwservice (hwservice_manager (find))) +(allow hal_graphics_allocator gpu_device (chr_file (ioctl read write getattr lock append map open))) +(allow hal_graphics_allocator ion_device (chr_file (ioctl read getattr lock map open))) +(allow hal_graphics_allocator self (capability (sys_nice))) +(allow hal_graphics_composer_client hal_graphics_composer_server (binder (call transfer))) +(allow hal_graphics_composer_server hal_graphics_composer_client (binder (transfer))) +(allow hal_graphics_composer_client hal_graphics_composer_server (fd (use))) +(allow hal_graphics_composer_server hal_graphics_composer_client (binder (call transfer))) +(allow hal_graphics_composer_client hal_graphics_composer_server (binder (transfer))) +(allow hal_graphics_composer_server hal_graphics_composer_client (fd (use))) +(allow hal_graphics_composer_server hal_graphics_composer_hwservice (hwservice_manager (add find))) +(allow hal_graphics_composer_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_graphics_composer.te + +(neverallow base_typeattr_112 hal_graphics_composer_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_graphics_composer_client hal_graphics_composer_hwservice (hwservice_manager (find))) +(allow hal_graphics_composer_server hal_graphics_mapper_hwservice (hwservice_manager (find))) +(allow hal_graphics_composer gpu_device (chr_file (ioctl read write getattr lock append map open))) +(allow hal_graphics_composer ion_device (chr_file (ioctl read getattr lock map open))) +(allow hal_graphics_composer hal_graphics_allocator (fd (use))) +(allow hal_graphics_composer graphics_device (dir (search))) +(allow hal_graphics_composer graphics_device (chr_file (ioctl read write getattr lock append map open))) +(allow hal_graphics_composer system_server (fd (use))) +(allow hal_graphics_composer bootanim (fd (use))) +(allow hal_graphics_composer appdomain (fd (use))) +(allow hal_graphics_composer self (capability (sys_nice))) +(allow hal_health_client hal_health_server (binder (call transfer))) +(allow hal_health_server hal_health_client (binder (transfer))) +(allow hal_health_client hal_health_server (fd (use))) +(allow hal_health_server hal_health_client (binder (call transfer))) +(allow hal_health_client hal_health_server (binder (transfer))) +(allow hal_health_server hal_health_client (fd (use))) +(allow hal_health_server hal_health_hwservice (hwservice_manager (add find))) +(allow hal_health_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_health.te + +(neverallow base_typeattr_113 hal_health_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_health_client hal_health_hwservice (hwservice_manager (find))) +(allow hal_health system_file (dir (ioctl read getattr lock search open))) +(allow hal_health system_file (file (ioctl read getattr lock map open))) +(allow hal_health system_file (lnk_file (ioctl read getattr lock map open))) +(allow hal_ir_client hal_ir_server (binder (call transfer))) +(allow hal_ir_server hal_ir_client (binder (transfer))) +(allow hal_ir_client hal_ir_server (fd (use))) +(allow hal_ir_server hal_ir_client (binder (call transfer))) +(allow hal_ir_client hal_ir_server (binder (transfer))) +(allow hal_ir_server hal_ir_client (fd (use))) +(allow hal_ir_server hal_ir_hwservice (hwservice_manager (add find))) +(allow hal_ir_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_ir.te + +(neverallow base_typeattr_114 hal_ir_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_ir_client hal_ir_hwservice (hwservice_manager (find))) +(allow hal_keymaster_client hal_keymaster_server (binder (call transfer))) +(allow hal_keymaster_server hal_keymaster_client (binder (transfer))) +(allow hal_keymaster_client hal_keymaster_server (fd (use))) +(allow hal_keymaster_server hal_keymaster_hwservice (hwservice_manager (add find))) +(allow hal_keymaster_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 4 system/sepolicy/public/hal_keymaster.te + +(neverallow base_typeattr_115 hal_keymaster_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_keymaster_client hal_keymaster_hwservice (hwservice_manager (find))) +(allow hal_keymaster tee_device (chr_file (ioctl read write getattr lock append map open))) +(allow hal_keymaster ion_device (chr_file (ioctl read getattr lock map open))) +(allow hal_light_client hal_light_server (binder (call transfer))) +(allow hal_light_server hal_light_client (binder (transfer))) +(allow hal_light_client hal_light_server (fd (use))) +(allow hal_light_server hal_light_client (binder (call transfer))) +(allow hal_light_client hal_light_server (binder (transfer))) +(allow hal_light_server hal_light_client (fd (use))) +(allow hal_light_server hal_light_hwservice (hwservice_manager (add find))) +(allow hal_light_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_light.te + +(neverallow base_typeattr_116 hal_light_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_light_client hal_light_hwservice (hwservice_manager (find))) +(allow hal_light sysfs_leds (lnk_file (read))) +(allow hal_light sysfs_leds (file (ioctl read write getattr lock append map open))) +(allow hal_light sysfs_leds (dir (ioctl read getattr lock search open))) +(allow hal_memtrack_client hal_memtrack_server (binder (call transfer))) +(allow hal_memtrack_server hal_memtrack_client (binder (transfer))) +(allow hal_memtrack_client hal_memtrack_server (fd (use))) +(allow hal_memtrack_server hal_memtrack_hwservice (hwservice_manager (add find))) +(allow hal_memtrack_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 4 system/sepolicy/public/hal_memtrack.te + +(neverallow base_typeattr_117 hal_memtrack_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_memtrack_client hal_memtrack_hwservice (hwservice_manager (find))) +(allow hal_neuralnetworks_client hal_neuralnetworks_server (binder (call transfer))) +(allow hal_neuralnetworks_server hal_neuralnetworks_client (binder (transfer))) +(allow hal_neuralnetworks_client hal_neuralnetworks_server (fd (use))) +(allow hal_neuralnetworks_server hal_neuralnetworks_client (binder (call transfer))) +(allow hal_neuralnetworks_client hal_neuralnetworks_server (binder (transfer))) +(allow hal_neuralnetworks_server hal_neuralnetworks_client (fd (use))) +(allow hal_neuralnetworks_server hal_neuralnetworks_hwservice (hwservice_manager (add find))) +(allow hal_neuralnetworks_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_neuralnetworks.te + +(neverallow base_typeattr_118 hal_neuralnetworks_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_neuralnetworks_client hal_neuralnetworks_hwservice (hwservice_manager (find))) +(allow hal_neuralnetworks hidl_memory_hwservice (hwservice_manager (find))) +(allow hal_neuralnetworks hal_allocator (fd (use))) +;;* lmx 10 system/sepolicy/public/hal_neverallows.te + +(neverallow base_typeattr_119 self (capability (net_admin net_raw))) +;;* lme + +;;* lmx 20 system/sepolicy/public/hal_neverallows.te + +(neverallow base_typeattr_120 domain (tcp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind name_connect))) +(neverallow base_typeattr_120 domain (udp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +(neverallow base_typeattr_120 domain (rawip_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +;;* lme + +;;* lmx 47 system/sepolicy/public/hal_neverallows.te + +(neverallow base_typeattr_121 fs_type (file (execute_no_trans))) +(neverallow base_typeattr_121 file_type (file (execute_no_trans))) +;;* lme + +;;* lmx 49 system/sepolicy/public/hal_neverallows.te + +(neverallow base_typeattr_15 halserverdomain (process (transition))) +;;* lme + +;;* lmx 53 system/sepolicy/public/hal_neverallows.te + +(neverallow base_typeattr_9 halserverdomain (process (dyntransition))) +;;* lme + +(allow hal_nfc_client hal_nfc_server (binder (call transfer))) +(allow hal_nfc_server hal_nfc_client (binder (transfer))) +(allow hal_nfc_client hal_nfc_server (fd (use))) +(allow hal_nfc_server hal_nfc_client (binder (call transfer))) +(allow hal_nfc_client hal_nfc_server (binder (transfer))) +(allow hal_nfc_server hal_nfc_client (fd (use))) +(allow hal_nfc_server hal_nfc_hwservice (hwservice_manager (add find))) +(allow hal_nfc_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_nfc.te + +(neverallow base_typeattr_122 hal_nfc_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_nfc_client hal_nfc_hwservice (hwservice_manager (find))) +(allow hal_nfc property_socket (sock_file (write))) +(allow hal_nfc init (unix_stream_socket (connectto))) +(allow hal_nfc nfc_prop (property_service (set))) +(allow hal_nfc nfc_prop (file (ioctl read getattr lock map open))) +(allow hal_nfc nfc_device (chr_file (ioctl read write getattr lock append map open))) +(allow hal_nfc nfc_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow hal_nfc nfc_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow hal_nfc nfc_data_file (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow hal_nfc nfc_data_file (fifo_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow hal_oemlock_client hal_oemlock_server (binder (call transfer))) +(allow hal_oemlock_server hal_oemlock_client (binder (transfer))) +(allow hal_oemlock_client hal_oemlock_server (fd (use))) +(allow hal_oemlock_server hal_oemlock_hwservice (hwservice_manager (add find))) +(allow hal_oemlock_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 4 system/sepolicy/public/hal_oemlock.te + +(neverallow base_typeattr_123 hal_oemlock_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_oemlock_client hal_oemlock_hwservice (hwservice_manager (find))) +(allow hal_power_client hal_power_server (binder (call transfer))) +(allow hal_power_server hal_power_client (binder (transfer))) +(allow hal_power_client hal_power_server (fd (use))) +(allow hal_power_server hal_power_client (binder (call transfer))) +(allow hal_power_client hal_power_server (binder (transfer))) +(allow hal_power_server hal_power_client (fd (use))) +(allow hal_power_server hal_power_hwservice (hwservice_manager (add find))) +(allow hal_power_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_power.te + +(neverallow base_typeattr_124 hal_power_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_power_client hal_power_hwservice (hwservice_manager (find))) +(allow hal_sensors_client hal_sensors_server (binder (call transfer))) +(allow hal_sensors_server hal_sensors_client (binder (transfer))) +(allow hal_sensors_client hal_sensors_server (fd (use))) +(allow hal_sensors_server hal_sensors_hwservice (hwservice_manager (add find))) +(allow hal_sensors_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 4 system/sepolicy/public/hal_sensors.te + +(neverallow base_typeattr_125 hal_sensors_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_sensors_client hal_sensors_hwservice (hwservice_manager (find))) +(allow hal_sensors base_typeattr_99 (fd (use))) +(allow hal_sensors hal_allocator (fd (use))) +(allow hal_sensors self (capability (sys_nice))) +(allow hal_telephony_client hal_telephony_server (binder (call transfer))) +(allow hal_telephony_server hal_telephony_client (binder (transfer))) +(allow hal_telephony_client hal_telephony_server (fd (use))) +(allow hal_telephony_server hal_telephony_client (binder (call transfer))) +(allow hal_telephony_client hal_telephony_server (binder (transfer))) +(allow hal_telephony_server hal_telephony_client (fd (use))) +(allow hal_telephony_server hal_telephony_hwservice (hwservice_manager (add find))) +(allow hal_telephony_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_telephony.te + +(neverallow base_typeattr_126 hal_telephony_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_telephony_client hal_telephony_hwservice (hwservice_manager (find))) +(allow hal_tetheroffload_client hal_tetheroffload_server (binder (call transfer))) +(allow hal_tetheroffload_server hal_tetheroffload_client (binder (transfer))) +(allow hal_tetheroffload_client hal_tetheroffload_server (fd (use))) +(allow hal_tetheroffload_server hal_tetheroffload_client (binder (call transfer))) +(allow hal_tetheroffload_client hal_tetheroffload_server (binder (transfer))) +(allow hal_tetheroffload_server hal_tetheroffload_client (fd (use))) +(allow hal_tetheroffload_client hal_tetheroffload_hwservice (hwservice_manager (find))) +(allow hal_tetheroffload_server hal_tetheroffload_client (netlink_netfilter_socket (read write getattr setopt))) +(allow hal_thermal_client hal_thermal_server (binder (call transfer))) +(allow hal_thermal_server hal_thermal_client (binder (transfer))) +(allow hal_thermal_client hal_thermal_server (fd (use))) +(allow hal_thermal_server hal_thermal_client (binder (call transfer))) +(allow hal_thermal_client hal_thermal_server (binder (transfer))) +(allow hal_thermal_server hal_thermal_client (fd (use))) +(allow hal_thermal_server hal_thermal_hwservice (hwservice_manager (add find))) +(allow hal_thermal_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_thermal.te + +(neverallow base_typeattr_127 hal_thermal_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_thermal_client hal_thermal_hwservice (hwservice_manager (find))) +(allow hal_tv_cec_client hal_tv_cec_server (binder (call transfer))) +(allow hal_tv_cec_server hal_tv_cec_client (binder (transfer))) +(allow hal_tv_cec_client hal_tv_cec_server (fd (use))) +(allow hal_tv_cec_server hal_tv_cec_client (binder (call transfer))) +(allow hal_tv_cec_client hal_tv_cec_server (binder (transfer))) +(allow hal_tv_cec_server hal_tv_cec_client (fd (use))) +(allow hal_tv_cec_server hal_tv_cec_hwservice (hwservice_manager (add find))) +(allow hal_tv_cec_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_tv_cec.te + +(neverallow base_typeattr_128 hal_tv_cec_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_tv_cec_client hal_tv_cec_hwservice (hwservice_manager (find))) +(allow hal_tv_input_client hal_tv_input_server (binder (call transfer))) +(allow hal_tv_input_server hal_tv_input_client (binder (transfer))) +(allow hal_tv_input_client hal_tv_input_server (fd (use))) +(allow hal_tv_input_server hal_tv_input_client (binder (call transfer))) +(allow hal_tv_input_client hal_tv_input_server (binder (transfer))) +(allow hal_tv_input_server hal_tv_input_client (fd (use))) +(allow hal_tv_input_server hal_tv_input_hwservice (hwservice_manager (add find))) +(allow hal_tv_input_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_tv_input.te + +(neverallow base_typeattr_129 hal_tv_input_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_tv_input_client hal_tv_input_hwservice (hwservice_manager (find))) +(allow hal_usb_client hal_usb_server (binder (call transfer))) +(allow hal_usb_server hal_usb_client (binder (transfer))) +(allow hal_usb_client hal_usb_server (fd (use))) +(allow hal_usb_server hal_usb_client (binder (call transfer))) +(allow hal_usb_client hal_usb_server (binder (transfer))) +(allow hal_usb_server hal_usb_client (fd (use))) +(allow hal_usb_server hal_usb_hwservice (hwservice_manager (add find))) +(allow hal_usb_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_usb.te + +(neverallow base_typeattr_130 hal_usb_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_usb_client hal_usb_hwservice (hwservice_manager (find))) +(allow hal_usb self (netlink_kobject_uevent_socket (create))) +(allow hal_usb self (netlink_kobject_uevent_socket (setopt))) +(allow hal_usb self (netlink_kobject_uevent_socket (bind))) +(allow hal_usb self (netlink_kobject_uevent_socket (read))) +(allow hal_usb sysfs (dir (open))) +(allow hal_usb sysfs (dir (read))) +(allow hal_usb sysfs (file (read))) +(allow hal_usb sysfs (file (open))) +(allow hal_usb sysfs (file (write))) +(allow hal_usb sysfs (file (getattr))) +(allow hal_vibrator_client hal_vibrator_server (binder (call transfer))) +(allow hal_vibrator_server hal_vibrator_client (binder (transfer))) +(allow hal_vibrator_client hal_vibrator_server (fd (use))) +(allow hal_vibrator_server hal_vibrator_hwservice (hwservice_manager (add find))) +(allow hal_vibrator_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 4 system/sepolicy/public/hal_vibrator.te + +(neverallow base_typeattr_131 hal_vibrator_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_vibrator_client hal_vibrator_hwservice (hwservice_manager (find))) +(allow hal_vibrator sysfs_vibrator (file (ioctl read write getattr lock append map open))) +(allow hal_vr_client hal_vr_server (binder (call transfer))) +(allow hal_vr_server hal_vr_client (binder (transfer))) +(allow hal_vr_client hal_vr_server (fd (use))) +(allow hal_vr_server hal_vr_client (binder (call transfer))) +(allow hal_vr_client hal_vr_server (binder (transfer))) +(allow hal_vr_server hal_vr_client (fd (use))) +(allow hal_vr_server hal_vr_hwservice (hwservice_manager (add find))) +(allow hal_vr_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_vr.te + +(neverallow base_typeattr_132 hal_vr_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_vr_client hal_vr_hwservice (hwservice_manager (find))) +(allow hal_weaver_client hal_weaver_server (binder (call transfer))) +(allow hal_weaver_server hal_weaver_client (binder (transfer))) +(allow hal_weaver_client hal_weaver_server (fd (use))) +(allow hal_weaver_server hal_weaver_hwservice (hwservice_manager (add find))) +(allow hal_weaver_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 4 system/sepolicy/public/hal_weaver.te + +(neverallow base_typeattr_133 hal_weaver_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_weaver_client hal_weaver_hwservice (hwservice_manager (find))) +(allow hal_wifi_client hal_wifi_server (binder (call transfer))) +(allow hal_wifi_server hal_wifi_client (binder (transfer))) +(allow hal_wifi_client hal_wifi_server (fd (use))) +(allow hal_wifi_server hal_wifi_client (binder (call transfer))) +(allow hal_wifi_client hal_wifi_server (binder (transfer))) +(allow hal_wifi_server hal_wifi_client (fd (use))) +(allow hal_wifi_server hal_wifi_hwservice (hwservice_manager (add find))) +(allow hal_wifi_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_wifi.te + +(neverallow base_typeattr_134 hal_wifi_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_wifi_client hal_wifi_hwservice (hwservice_manager (find))) +(allow hal_wifi proc_net (dir (ioctl read getattr lock search open))) +(allow hal_wifi proc_net (file (ioctl read getattr lock map open))) +(allow hal_wifi proc_net (lnk_file (ioctl read getattr lock map open))) +(allow hal_wifi sysfs_type (dir (ioctl read getattr lock search open))) +(allow hal_wifi sysfs_type (file (ioctl read getattr lock map open))) +(allow hal_wifi sysfs_type (lnk_file (ioctl read getattr lock map open))) +(allow hal_wifi property_socket (sock_file (write))) +(allow hal_wifi init (unix_stream_socket (connectto))) +(allow hal_wifi wifi_prop (property_service (set))) +(allow hal_wifi wifi_prop (file (ioctl read getattr lock map open))) +(allow hal_wifi self (udp_socket (ioctl read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allowx hal_wifi self (ioctl udp_socket (0x8914))) +(allow hal_wifi self (capability (net_admin net_raw))) +(allow hal_wifi self (netlink_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow hal_wifi self (netlink_generic_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow hal_wifi sysfs_wlan_fwpath (file (write lock append map open))) +(allow hal_wifi proc_modules (file (read getattr open))) +(allow hal_wifi_offload_client hal_wifi_offload_server (binder (call transfer))) +(allow hal_wifi_offload_server hal_wifi_offload_client (binder (transfer))) +(allow hal_wifi_offload_client hal_wifi_offload_server (fd (use))) +(allow hal_wifi_offload_server hal_wifi_offload_client (binder (call transfer))) +(allow hal_wifi_offload_client hal_wifi_offload_server (binder (transfer))) +(allow hal_wifi_offload_server hal_wifi_offload_client (fd (use))) +(allow hal_wifi_offload_server hal_wifi_offload_hwservice (hwservice_manager (add find))) +(allow hal_wifi_offload_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_wifi.te + +(neverallow base_typeattr_135 hal_wifi_offload_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_wifi_offload_client hal_wifi_offload_hwservice (hwservice_manager (find))) +(allow hal_wifi_offload proc_net (dir (ioctl read getattr lock search open))) +(allow hal_wifi_offload proc_net (file (ioctl read getattr lock map open))) +(allow hal_wifi_offload proc_net (lnk_file (ioctl read getattr lock map open))) +(allow hal_wifi_offload sysfs_type (dir (ioctl read getattr lock search open))) +(allow hal_wifi_offload sysfs_type (file (ioctl read getattr lock map open))) +(allow hal_wifi_offload sysfs_type (lnk_file (ioctl read getattr lock map open))) +(allow hal_wifi_supplicant_client hal_wifi_supplicant_server (binder (call transfer))) +(allow hal_wifi_supplicant_server hal_wifi_supplicant_client (binder (transfer))) +(allow hal_wifi_supplicant_client hal_wifi_supplicant_server (fd (use))) +(allow hal_wifi_supplicant_server hal_wifi_supplicant_client (binder (call transfer))) +(allow hal_wifi_supplicant_client hal_wifi_supplicant_server (binder (transfer))) +(allow hal_wifi_supplicant_server hal_wifi_supplicant_client (fd (use))) +(allow hal_wifi_supplicant_server hal_wifi_supplicant_hwservice (hwservice_manager (add find))) +(allow hal_wifi_supplicant_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/public/hal_wifi_supplicant.te + +(neverallow base_typeattr_136 hal_wifi_supplicant_hwservice (hwservice_manager (add))) +;;* lme + +(allow hal_wifi_supplicant_client hal_wifi_supplicant_hwservice (hwservice_manager (find))) +(allowx hal_wifi_supplicant self (ioctl udp_socket (0x6900 0x6902))) +(allowx hal_wifi_supplicant self (ioctl udp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(allowx hal_wifi_supplicant self (ioctl udp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(allow hal_wifi_supplicant sysfs_type (dir (ioctl read getattr lock search open))) +(allow hal_wifi_supplicant sysfs_type (file (ioctl read getattr lock map open))) +(allow hal_wifi_supplicant sysfs_type (lnk_file (ioctl read getattr lock map open))) +(allow hal_wifi_supplicant proc_net (dir (ioctl read getattr lock search open))) +(allow hal_wifi_supplicant proc_net (file (ioctl read getattr lock map open))) +(allow hal_wifi_supplicant proc_net (lnk_file (ioctl read getattr lock map open))) +(allow hal_wifi_supplicant kernel (system (module_request))) +(allow hal_wifi_supplicant self (capability (setgid setuid net_admin net_raw))) +(allow hal_wifi_supplicant cgroup (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow hal_wifi_supplicant self (netlink_route_socket (nlmsg_write))) +(allow hal_wifi_supplicant self (netlink_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow hal_wifi_supplicant self (netlink_generic_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow hal_wifi_supplicant self (packet_socket (ioctl read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allowx hal_wifi_supplicant self (ioctl packet_socket ((range 0x5401 0x5403) 0x540b (range 0x540e 0x5411) (range 0x5413 0x5414) 0x5451))) +(allowx hal_wifi_supplicant self (ioctl packet_socket (0x6900 0x6902))) +(allowx hal_wifi_supplicant self (ioctl packet_socket ((range 0x8906 0x8907) (range 0x890b 0x890d) (range 0x8910 0x8927) 0x8929 (range 0x8930 0x8939) (range 0x8940 0x8943) (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(allowx hal_wifi_supplicant self (ioctl packet_socket ((range 0x8b00 0x8b02) (range 0x8b04 0x8b1d) (range 0x8b20 0x8b2d) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(allow hal_wifi_supplicant wifi_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow hal_wifi_supplicant wifi_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow hal_wifi_supplicant wpa_socket (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow hal_wifi_supplicant wpa_socket (sock_file (ioctl read write create getattr setattr lock append map unlink rename open))) +;;* lmx 40 system/sepolicy/public/hal_wifi_supplicant.te + +(neverallow hal_wifi_supplicant_server sdcard_type (dir (ioctl read write create setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent search rmdir open audit_access execmod))) +;;* lme + +;;* lmx 41 system/sepolicy/public/hal_wifi_supplicant.te + +(neverallow hal_wifi_supplicant_server sdcard_type (file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +(allow healthd kmsg_device (chr_file (ioctl read write getattr lock append map open))) +(allow healthd sysfs_type (dir (ioctl read getattr lock search open))) +(allow healthd sysfs_type (file (ioctl read getattr lock map open))) +(allow healthd sysfs_type (lnk_file (ioctl read getattr lock map open))) +(allow healthd rootfs (dir (ioctl read getattr lock search open))) +(allow healthd rootfs (file (ioctl read getattr lock map open))) +(allow healthd rootfs (lnk_file (ioctl read getattr lock map open))) +(allow healthd cgroup (dir (ioctl read getattr lock search open))) +(allow healthd cgroup (file (ioctl read getattr lock map open))) +(allow healthd cgroup (lnk_file (ioctl read getattr lock map open))) +(allow healthd system_file (dir (ioctl read getattr lock search open))) +(allow healthd system_file (file (ioctl read getattr lock map open))) +(allow healthd system_file (lnk_file (ioctl read getattr lock map open))) +(allow healthd self (capability (sys_tty_config))) +(allow healthd self (capability (sys_boot))) +(allow healthd self (netlink_kobject_uevent_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow healthd sysfs_wake_lock (file (ioctl read write getattr lock append map open))) +(allow healthd self (capability2 (block_suspend))) +(allow healthd servicemanager (binder (call transfer))) +(allow servicemanager healthd (dir (search))) +(allow servicemanager healthd (file (read open))) +(allow servicemanager healthd (process (getattr))) +(allow healthd system_server (binder (call transfer))) +(allow system_server healthd (binder (transfer))) +(allow healthd system_server (fd (use))) +(allow healthd sysfs (file (write))) +(allow healthd sysfs_usb (file (write))) +(allow healthd sysfs_batteryinfo (file (ioctl read getattr lock map open))) +(allow healthd sysfs_type (dir (ioctl read getattr lock search open))) +(allow healthd sysfs_type (file (ioctl read getattr lock map open))) +(allow healthd sysfs_type (lnk_file (ioctl read getattr lock map open))) +(allow healthd pstorefs (dir (ioctl read getattr lock search open))) +(allow healthd pstorefs (file (ioctl read getattr lock map open))) +(allow healthd graphics_device (dir (ioctl read getattr lock search open))) +(allow healthd graphics_device (chr_file (ioctl read write getattr lock append map open))) +(allow healthd input_device (dir (ioctl read getattr lock search open))) +(allow healthd input_device (chr_file (ioctl read getattr lock map open))) +(allow healthd tty_device (chr_file (ioctl read write getattr lock append map open))) +(allow healthd ashmem_device (chr_file (execute))) +(allow healthd self (process (execmem))) +(allow healthd proc_sysrq (file (ioctl read write getattr lock append map open))) +(allow healthd batteryproperties_service (service_manager (add find))) +;;* lmx 59 system/sepolicy/public/healthd.te + +(neverallow base_typeattr_137 batteryproperties_service (service_manager (add))) +;;* lme + +(allow healthd property_socket (sock_file (write))) +(allow healthd init (unix_stream_socket (connectto))) +(allow healthd system_prop (property_service (set))) +(allow healthd system_prop (file (ioctl read getattr lock map open))) +(allow hwservicemanager self (binder (set_context_mgr))) +(allow hwservicemanager property_socket (sock_file (write))) +(allow hwservicemanager init (unix_stream_socket (connectto))) +(allow hwservicemanager hwservicemanager_prop (property_service (set))) +(allow hwservicemanager hwservicemanager_prop (file (ioctl read getattr lock map open))) +(allow hwservicemanager system_file (dir (ioctl read getattr lock search open))) +(allow hwservicemanager hwservice_contexts_file (file (ioctl read getattr lock map open))) +(allow hwservicemanager selinuxfs (dir (ioctl read getattr lock search open))) +(allow hwservicemanager selinuxfs (file (ioctl read getattr lock map open))) +(allow hwservicemanager selinuxfs (lnk_file (ioctl read getattr lock map open))) +(allow hwservicemanager selinuxfs (file (write lock append map open))) +(allow hwservicemanager kernel (security (compute_av))) +(allow hwservicemanager self (netlink_selinux_socket (read write create getattr setattr lock relabelfrom relabelto append bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(allow idmap installd (fd (use))) +(allow idmap resourcecache_data_file (file (read write getattr))) +(allow idmap apk_data_file (file (ioctl read getattr lock map open))) +(allow idmap apk_data_file (dir (search))) +(allow idmap vendor_app_file (dir (ioctl read getattr lock search open))) +(allow idmap vendor_app_file (file (ioctl read getattr lock map open))) +(allow idmap vendor_app_file (lnk_file (ioctl read getattr lock map open))) +(allow idmap vendor_overlay_file (dir (ioctl read getattr lock search open))) +(allow idmap vendor_overlay_file (file (ioctl read getattr lock map open))) +(allow idmap vendor_overlay_file (lnk_file (ioctl read getattr lock map open))) +(allow init tmpfs (chr_file (ioctl read write create getattr setattr lock append map unlink open))) +(allow init tmpfs (chr_file (relabelfrom))) +(allow init kmsg_device (chr_file (write relabelto))) +(allow init properties_device (dir (relabelto))) +(allow init properties_serial (file (write relabelto))) +(allow init property_type (file (ioctl read write create getattr setattr lock relabelto append map unlink rename open))) +(allow init device (file (relabelfrom))) +(allow init runtime_event_log_tags_file (file (write setattr relabelto open))) +(allow init device (dir (relabelto))) +(allow init socket_device (dir (relabelto))) +(allow init random_device (chr_file (relabelto))) +(allow init tmpfs (chr_file (relabelfrom))) +(allow init tmpfs (blk_file (relabelfrom))) +(allow init tmpfs (blk_file (getattr))) +(allow init block_device (dir (relabelto))) +(allow init block_device (lnk_file (relabelto))) +(allow init block_device (blk_file (relabelto))) +(allow init dm_device (chr_file (relabelto))) +(allow init dm_device (blk_file (relabelto))) +(allow init kernel (fd (use))) +(allow init tmpfs (lnk_file (read getattr relabelfrom))) +(allow init system_block_device (lnk_file (relabelto))) +(allow init system_block_device (blk_file (relabelto))) +(allow init self (capability (sys_resource))) +(allow init tmpfs (file (unlink))) +(allow init devpts (chr_file (read write open))) +(allow init fscklogs (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow init tmpfs (chr_file (write))) +(allow init console_device (chr_file (ioctl read write getattr lock append map open))) +(allow init tty_device (chr_file (ioctl read write getattr lock append map open))) +(allow init self (capability (sys_admin))) +(allow init rootfs (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow init rootfs (dir (mounton))) +(allow init cgroup (dir (mounton))) +(allow init system_file (dir (mounton))) +(allow init vendor_file (dir (mounton))) +(allow init system_data_file (dir (mounton))) +(allow init storage_file (dir (mounton))) +(allow init postinstall_mnt_dir (dir (mounton))) +(allow init cache_file (dir (mounton))) +(allow init device (dir (mounton))) +(allow init rootfs (lnk_file (create unlink))) +(allow init sysfs (dir (mounton))) +(allow init tmpfs (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow init tmpfs (dir (mounton))) +(allow init cgroup (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow init cgroup (dir (ioctl read getattr lock search open))) +(allow init cgroup (file (ioctl read getattr lock map open))) +(allow init cgroup (lnk_file (ioctl read getattr lock map open))) +(allow init cpuctl_device (dir (create mounton))) +(allow init configfs (dir (mounton))) +(allow init configfs (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow init configfs (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow init configfs (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow init tmpfs (dir (relabelfrom))) +(allow init self (capability (dac_override))) +(allow init self (capability (sys_time))) +(allow init self (capability (sys_rawio mknod))) +(allow init dev_type (blk_file (ioctl read getattr lock map open))) +(allow init fs_type (filesystem (mount remount unmount getattr relabelfrom associate quotamod quotaget))) +(allow init unlabeled (filesystem (mount remount unmount getattr relabelfrom associate quotamod quotaget))) +(allow init contextmount_type (filesystem (relabelto))) +(allow init contextmount_type (dir (ioctl read getattr lock search open))) +(allow init contextmount_type (file (ioctl read getattr lock map open))) +(allow init contextmount_type (lnk_file (ioctl read getattr lock map open))) +(allow init contextmount_type (sock_file (ioctl read getattr lock map open))) +(allow init contextmount_type (fifo_file (ioctl read getattr lock map open))) +(allow init rootfs (file (relabelfrom))) +(allow init rootfs (dir (relabelfrom))) +(allow init self (capability (chown fowner fsetid))) +(allow init base_typeattr_138 (dir (ioctl read create getattr setattr search open))) +(allow init base_typeattr_139 (dir (write relabelfrom add_name remove_name rmdir))) +(allow init base_typeattr_140 (file (read write create getattr setattr relabelfrom unlink open))) +(allow init base_typeattr_139 (sock_file (read create getattr setattr relabelfrom unlink open))) +(allow init base_typeattr_139 (fifo_file (read create getattr setattr relabelfrom unlink open))) +(allow init base_typeattr_139 (lnk_file (create getattr setattr relabelfrom unlink))) +(allow init cache_file (lnk_file (ioctl read getattr lock map open))) +(allow init base_typeattr_141 (file (relabelto))) +(allow init base_typeattr_141 (dir (relabelto))) +(allow init base_typeattr_141 (lnk_file (relabelto))) +(allow init base_typeattr_141 (chr_file (relabelto))) +(allow init base_typeattr_141 (blk_file (relabelto))) +(allow init base_typeattr_141 (sock_file (relabelto))) +(allow init base_typeattr_141 (fifo_file (relabelto))) +(allow init sysfs (file (getattr relabelfrom))) +(allow init sysfs (dir (getattr relabelfrom))) +(allow init sysfs (lnk_file (getattr relabelfrom))) +(allow init debugfs (file (getattr relabelfrom))) +(allow init debugfs (dir (getattr relabelfrom))) +(allow init debugfs (lnk_file (getattr relabelfrom))) +(allow init debugfs_tracing (file (getattr relabelfrom))) +(allow init debugfs_tracing (dir (getattr relabelfrom))) +(allow init debugfs_tracing (lnk_file (getattr relabelfrom))) +(allow init sysfs_type (file (getattr relabelto))) +(allow init sysfs_type (dir (getattr relabelto))) +(allow init sysfs_type (lnk_file (getattr relabelto))) +(allow init debugfs_type (file (getattr relabelto))) +(allow init debugfs_type (dir (getattr relabelto))) +(allow init debugfs_type (lnk_file (getattr relabelto))) +(allow init dev_type (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow init dev_type (lnk_file (create))) +(allow init debugfs_tracing (file (write lock append map open))) +(allow init debugfs_tracing_instances (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow init debugfs_tracing_instances (file (write lock append map open))) +(allow init debugfs_wifi_tracing (file (write lock append map open))) +(allow init base_typeattr_142 (file (read setattr open))) +(allow init base_typeattr_142 (dir (read setattr search open))) +(allow init base_typeattr_143 (chr_file (read open))) +(auditallow init base_typeattr_144 (chr_file (read open))) +(allow init base_typeattr_145 (chr_file (setattr))) +(allow init unlabeled (dir (ioctl read write create getattr setattr lock relabelfrom rename add_name remove_name reparent search rmdir open))) +(allow init unlabeled (file (ioctl read write create getattr setattr lock relabelfrom append map unlink rename open))) +(allow init unlabeled (lnk_file (ioctl read write create getattr setattr lock relabelfrom append map unlink rename open))) +(allow init unlabeled (sock_file (ioctl read write create getattr setattr lock relabelfrom append map unlink rename open))) +(allow init unlabeled (fifo_file (ioctl read write create getattr setattr lock relabelfrom append map unlink rename open))) +(allow init kernel (system (syslog_mod))) +(allow init self (capability2 (syslog))) +(allow init usermodehelper (file (ioctl read write getattr lock append map open))) +(allow init sysfs_usermodehelper (file (ioctl read write getattr lock append map open))) +(allow init proc_security (file (ioctl read write getattr lock append map open))) +(allow init proc (dir (ioctl read getattr lock search open))) +(allow init proc (file (ioctl read getattr lock map open))) +(allow init proc (lnk_file (ioctl read getattr lock map open))) +(allow init proc (file (write lock append map open))) +(allow init proc_net (dir (ioctl read getattr lock search open))) +(allow init proc_net (file (ioctl read getattr lock map open))) +(allow init proc_net (lnk_file (ioctl read getattr lock map open))) +(allow init proc_net (file (write lock append map open))) +(allow init self (capability (net_admin))) +(allow init proc_sysrq (file (write lock append map open))) +(allow init proc_stat (file (ioctl read getattr lock map open))) +(allow init self (capability (sys_boot))) +(allow init sysfs_type (dir (ioctl read getattr lock search open))) +(allow init sysfs_type (lnk_file (read))) +(allow init sysfs_type (file (ioctl read write getattr lock append map open))) +(allow init misc_logd_file (dir (read write create getattr setattr add_name search open))) +(allow init misc_logd_file (file (write create getattr setattr open))) +(allow init self (capability (kill))) +(allow init domain (process (sigkill signal getpgid))) +(allow init keystore_data_file (dir (read create getattr setattr search open))) +(allow init keystore_data_file (file (getattr))) +(allow init vold_data_file (dir (read create getattr setattr search open))) +(allow init vold_data_file (file (getattr))) +(allow init shell_data_file (dir (read create getattr setattr search open))) +(allow init shell_data_file (file (getattr))) +(allow init self (capability (setgid setuid setpcap))) +(allow init domain (dir (ioctl read getattr lock search open))) +(allow init domain (file (ioctl read getattr lock map open))) +(allow init domain (lnk_file (ioctl read getattr lock map open))) +(allow init self (process (setexec setfscreate setsockcreate))) +(allow init file_contexts_file (file (ioctl read getattr lock map open))) +(allow init sepolicy_file (file (ioctl read getattr lock map open))) +(allow init selinuxfs (dir (ioctl read getattr lock search open))) +(allow init selinuxfs (file (ioctl read getattr lock map open))) +(allow init selinuxfs (lnk_file (ioctl read getattr lock map open))) +(allow init selinuxfs (file (write lock append map open))) +(allow init kernel (security (compute_av))) +(allow init self (netlink_selinux_socket (read write create getattr setattr lock relabelfrom relabelto append bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(allow init kernel (security (compute_create))) +(allow init domain (unix_stream_socket (create bind setopt))) +(allow init domain (unix_dgram_socket (create bind setopt))) +(allow init property_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow init property_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow init property_type (property_service (set))) +(allow init self (netlink_audit_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown nlmsg_relay))) +(allow init self (capability (audit_write))) +(allow init self (udp_socket (ioctl create))) +(allowx init self (ioctl udp_socket (0x8914))) +(allow init self (capability (net_raw))) +(allow init kernel (process (setsched))) +(allow init swap_block_device (blk_file (ioctl read write getattr lock append map open))) +(allow init hw_random_device (chr_file (ioctl read getattr lock map open))) +(allow init device (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow init self (capability (sys_tty_config))) +(allow init keychord_device (chr_file (ioctl read write getattr lock append map open))) +(allow init dm_device (chr_file (ioctl read write getattr lock append map open))) +(allow init dm_device (blk_file (ioctl read write getattr lock append map open))) +(allow init metadata_block_device (blk_file (ioctl read write getattr lock append map open))) +(allow init pstorefs (dir (search))) +(allow init pstorefs (file (ioctl read getattr lock map open))) +(allow init kernel (system (syslog_read))) +(allow init init (key (write search setattr))) +(allow init unencrypted_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow init proc_overcommit_memory (file (write))) +(allow init vold_socket (sock_file (write))) +(allow init vold (unix_stream_socket (connectto))) +(allow init misc_block_device (blk_file (write lock append map open))) +(allow init system_file (dir (ioctl read getattr lock search open))) +(allow init system_file (file (ioctl read getattr lock map open))) +(allow init system_file (lnk_file (ioctl read getattr lock map open))) +(allow init vendor_file_type (dir (ioctl read getattr lock search open))) +(allow init vendor_file_type (file (ioctl read getattr lock map open))) +(allow init vendor_file_type (lnk_file (ioctl read getattr lock map open))) +(allow init proc_meminfo (file (ioctl read getattr lock map open))) +(allow init system_data_file (file (read getattr))) +(allow init system_data_file (lnk_file (ioctl read getattr lock map open))) +(allow init vendor_shell_exec (file (execute))) +;;* lmx 418 system/sepolicy/public/init.te + +(neverallow domain init (process (dyntransition))) +;;* lme + +;;* lmx 419 system/sepolicy/public/init.te + +(neverallow base_typeattr_14 init (process (transition))) +;;* lme + +;;* lmx 420 system/sepolicy/public/init.te + +(neverallow init base_typeattr_146 (file (entrypoint))) +;;* lme + +;;* lmx 423 system/sepolicy/public/init.te + +(neverallow init shell_data_file (lnk_file (read))) +;;* lme + +;;* lmx 424 system/sepolicy/public/init.te + +(neverallow init app_data_file (lnk_file (read))) +;;* lme + +;;* lmx 427 system/sepolicy/public/init.te + +(neverallow init fs_type (file (execute_no_trans))) +(neverallow init file_type (file (execute_no_trans))) +;;* lme + +;;* lmx 430 system/sepolicy/public/init.te + +(neverallow init service_manager_type (service_manager (add find))) +;;* lme + +;;* lmx 431 system/sepolicy/public/init.te + +(neverallow init servicemanager (service_manager (list))) +;;* lme + +;;* lmx 434 system/sepolicy/public/init.te + +(neverallow init shell_data_file (dir (write add_name remove_name))) +;;* lme + +(allow inputflinger servicemanager (binder (call transfer))) +(allow servicemanager inputflinger (dir (search))) +(allow servicemanager inputflinger (file (read open))) +(allow servicemanager inputflinger (process (getattr))) +(allow inputflinger system_server (binder (call transfer))) +(allow system_server inputflinger (binder (transfer))) +(allow inputflinger system_server (fd (use))) +(allow inputflinger sysfs_wake_lock (file (ioctl read write getattr lock append map open))) +(allow inputflinger self (capability2 (block_suspend))) +(allow inputflinger inputflinger_service (service_manager (add find))) +;;* lmx 12 system/sepolicy/public/inputflinger.te + +(neverallow base_typeattr_147 inputflinger_service (service_manager (add))) +;;* lme + +(allow inputflinger input_device (dir (ioctl read getattr lock search open))) +(allow inputflinger input_device (chr_file (ioctl read write getattr lock append map open))) +(allow inputflinger cgroup (dir (ioctl read getattr lock search open))) +(allow inputflinger cgroup (file (ioctl read getattr lock map open))) +(allow inputflinger cgroup (lnk_file (ioctl read getattr lock map open))) +(allow install_recovery self (capability (dac_override))) +(allow install_recovery shell_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow install_recovery system_file (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow install_recovery toolbox_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow install_recovery block_device (dir (search))) +(allow install_recovery boot_block_device (blk_file (ioctl read getattr lock map open))) +(allow install_recovery recovery_block_device (blk_file (ioctl read write getattr lock append map open))) +(allow install_recovery cache_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow install_recovery cache_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow install_recovery proc_drop_caches (file (write lock append map open))) +(allow installd self (capability (chown dac_override fowner fsetid setgid setuid sys_admin))) +(allow installd dalvikcache_data_file (dir (relabelto))) +(allow installd dalvikcache_data_file (file (relabelto link))) +(allow installd apk_data_file (dir (ioctl read write create getattr setattr lock relabelfrom rename add_name remove_name reparent search rmdir open))) +(allow installd apk_data_file (file (ioctl read write create getattr setattr lock relabelfrom append map unlink link rename open))) +(allow installd apk_data_file (lnk_file (ioctl read create getattr lock map unlink open))) +(allow installd asec_apk_file (file (ioctl read getattr lock map open))) +(allow installd apk_tmp_file (file (ioctl read getattr lock map unlink open))) +(allow installd apk_tmp_file (dir (ioctl read write create getattr setattr lock relabelfrom rename add_name remove_name reparent search rmdir open))) +(allow installd oemfs (dir (ioctl read getattr lock search open))) +(allow installd oemfs (file (ioctl read getattr lock map open))) +(allow installd cgroup (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow installd cgroup (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow installd cgroup (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow installd mnt_expand_file (dir (getattr search))) +(allow installd selinuxfs (dir (ioctl read getattr lock search open))) +(allow installd selinuxfs (file (ioctl read getattr lock map open))) +(allow installd selinuxfs (lnk_file (ioctl read getattr lock map open))) +(allow installd selinuxfs (file (write lock append map open))) +(allow installd kernel (security (check_context))) +(allow installd rootfs (dir (ioctl read getattr lock search open))) +(allow installd rootfs (file (ioctl read getattr lock map open))) +(allow installd rootfs (lnk_file (ioctl read getattr lock map open))) +(allow installd system_file (dir (ioctl read getattr lock search open))) +(allow installd system_file (file (ioctl read getattr lock map open))) +(allow installd system_file (lnk_file (ioctl read getattr lock map open))) +(allow installd vendor_app_file (dir (ioctl read getattr lock search open))) +(allow installd vendor_app_file (file (ioctl read getattr lock map open))) +(allow installd vendor_app_file (lnk_file (ioctl read getattr lock map open))) +(allow installd vendor_overlay_file (dir (ioctl read getattr lock search open))) +(allow installd vendor_overlay_file (file (ioctl read getattr lock map open))) +(allow installd vendor_overlay_file (lnk_file (ioctl read getattr lock map open))) +(allow installd file_contexts_file (file (ioctl read getattr lock map open))) +(allow installd seapp_contexts_file (file (ioctl read getattr lock map open))) +(allow installd asec_image_file (dir (search))) +(allow installd asec_image_file (file (getattr))) +(allow installd system_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow installd system_data_file (lnk_file (create setattr unlink))) +(allow installd media_rw_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow installd media_rw_data_file (file (getattr unlink))) +(allow installd system_data_file (dir (relabelfrom))) +(allow installd media_rw_data_file (dir (relabelto))) +(allow installd tmpfs (dir (ioctl read getattr lock search open))) +(allow installd storage_file (dir (search))) +(allow installd sdcardfs (dir (read write getattr remove_name search rmdir open))) +(allow installd sdcardfs (file (getattr unlink))) +(allow installd misc_user_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow installd misc_user_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow installd keychain_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow installd keychain_data_file (file (ioctl read getattr lock map unlink open))) +(allow installd install_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow installd dalvikcache_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow installd dalvikcache_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow installd dalvikcache_data_file (lnk_file (getattr))) +(allow installd resourcecache_data_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow installd resourcecache_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow installd unlabeled (dir (ioctl read write getattr lock relabelfrom add_name remove_name search rmdir open))) +(allow installd unlabeled (file (getattr setattr relabelfrom unlink rename))) +(allow installd unlabeled (lnk_file (getattr setattr relabelfrom unlink rename))) +(allow installd unlabeled (sock_file (getattr setattr relabelfrom unlink rename))) +(allow installd unlabeled (fifo_file (getattr setattr relabelfrom unlink rename))) +(allow installd unlabeled (file (ioctl read getattr lock map open))) +(allow installd system_data_file (file (getattr relabelfrom unlink))) +(allow installd system_data_file (lnk_file (getattr relabelfrom unlink))) +(allow installd system_data_file (sock_file (getattr relabelfrom unlink))) +(allow installd system_data_file (fifo_file (getattr relabelfrom unlink))) +(allow installd shell_data_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto rename add_name remove_name reparent search rmdir open))) +(allow installd bluetooth_data_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto rename add_name remove_name reparent search rmdir open))) +(allow installd nfc_data_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto rename add_name remove_name reparent search rmdir open))) +(allow installd radio_data_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto rename add_name remove_name reparent search rmdir open))) +(allow installd app_data_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto rename add_name remove_name reparent search rmdir open))) +(allow installd system_app_data_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto rename add_name remove_name reparent search rmdir open))) +(allow installd shell_data_file (file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd shell_data_file (lnk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd shell_data_file (sock_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd shell_data_file (fifo_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd bluetooth_data_file (file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd bluetooth_data_file (lnk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd bluetooth_data_file (sock_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd bluetooth_data_file (fifo_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd nfc_data_file (file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd nfc_data_file (lnk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd nfc_data_file (sock_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd nfc_data_file (fifo_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd radio_data_file (file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd radio_data_file (lnk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd radio_data_file (sock_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd radio_data_file (fifo_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd app_data_file (file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd app_data_file (lnk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd app_data_file (sock_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd app_data_file (fifo_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd system_app_data_file (file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd system_app_data_file (lnk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd system_app_data_file (sock_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd system_app_data_file (fifo_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink rename open))) +(allow installd user_profile_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow installd user_profile_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow installd user_profile_data_file (dir (rmdir))) +(allow installd user_profile_data_file (file (unlink))) +(allow installd profman_dump_data_file (dir (write add_name search))) +(allow installd profman_dump_data_file (file (write create setattr open))) +(allow installd devpts (chr_file (ioctl read write getattr lock append map open))) +(allow installd toolbox_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow installd servicemanager (binder (call transfer))) +(allow servicemanager installd (dir (search))) +(allow servicemanager installd (file (read open))) +(allow servicemanager installd (process (getattr))) +(allow installd installd_service (service_manager (add find))) +;;* lmx 134 system/sepolicy/public/installd.te + +(neverallow base_typeattr_148 installd_service (service_manager (add))) +;;* lme + +(allow installd dumpstate (fifo_file (write getattr))) +(allow installd system_server (binder (call transfer))) +(allow system_server installd (binder (transfer))) +(allow installd system_server (fd (use))) +(allow installd permission_service (service_manager (find))) +(allow installd block_device (dir (search))) +(allow installd labeledfs (filesystem (quotamod quotaget))) +(allow installd preloads_data_file (file (ioctl read getattr lock map unlink open))) +(allow installd preloads_data_file (dir (ioctl read write getattr lock remove_name search rmdir open))) +(allow installd preloads_media_file (file (ioctl read getattr lock map unlink open))) +(allow installd preloads_media_file (dir (ioctl read write getattr lock remove_name search rmdir open))) +;;* lmx 157 system/sepolicy/public/installd.te + +(neverallow base_typeattr_149 installd_service (service_manager (find))) +;;* lme + +;;* lmx 158 system/sepolicy/public/installd.te + +(neverallow base_typeattr_62 installd (binder (call))) +;;* lme + +;;* lmx 159 system/sepolicy/public/installd.te + +(neverallow installd base_typeattr_150 (binder (call))) +;;* lme + +(allow kernel self (capability (sys_nice))) +(allow kernel rootfs (dir (ioctl read getattr lock search open))) +(allow kernel rootfs (file (ioctl read getattr lock map open))) +(allow kernel rootfs (lnk_file (ioctl read getattr lock map open))) +(allow kernel proc (dir (ioctl read getattr lock search open))) +(allow kernel proc (file (ioctl read getattr lock map open))) +(allow kernel proc (lnk_file (ioctl read getattr lock map open))) +(allow kernel selinuxfs (dir (ioctl read getattr lock search open))) +(allow kernel selinuxfs (file (ioctl read getattr lock map open))) +(allow kernel file_contexts_file (file (ioctl read getattr lock map open))) +(allow kernel rootfs (file (relabelfrom))) +(allow kernel init_exec (file (relabelto))) +(allow kernel init (process (share))) +(allow kernel unlabeled (dir (search))) +(allow kernel usbfs (filesystem (mount))) +(allow kernel usbfs (dir (search))) +(dontaudit kernel self (security (setenforce))) +(allow kernel self (capability (sys_resource))) +(allow kernel self (capability (sys_boot))) +(allow kernel proc_sysrq (file (write lock append map open))) +(allow kernel tmpfs (chr_file (write))) +(allow kernel selinuxfs (file (write))) +(allow kernel self (security (setcheckreqprot))) +(allow kernel sdcard_type (file (read write))) +(allow kernel mediaprovider (fd (use))) +(allow kernel vold (fd (use))) +(allow kernel app_data_file (file (read))) +(allow kernel asec_image_file (file (read))) +(allow kernel media_rw_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow kernel media_rw_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow kernel vold_data_file (file (read))) +;;* lmx 89 system/sepolicy/public/kernel.te + +(neverallow base_typeattr_9 kernel (process (transition dyntransition))) +;;* lme + +;;* lmx 99 system/sepolicy/public/kernel.te + +(neverallow kernel base_typeattr_9 (file (execute_no_trans entrypoint))) +;;* lme + +;;* lmx 104 system/sepolicy/public/kernel.te + +(neverallow kernel self (capability (dac_override dac_read_search))) +;;* lme + +(allow keystore servicemanager (binder (call transfer))) +(allow servicemanager keystore (dir (search))) +(allow servicemanager keystore (file (read open))) +(allow servicemanager keystore (process (getattr))) +(allow keystore system_server (binder (call transfer))) +(allow system_server keystore (binder (transfer))) +(allow keystore system_server (fd (use))) +(allow keystore keystore_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow keystore keystore_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow keystore keystore_data_file (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow keystore keystore_data_file (sock_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow keystore keystore_data_file (fifo_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow keystore keystore_exec (file (getattr))) +(allow keystore keystore_service (service_manager (add find))) +;;* lmx 14 system/sepolicy/public/keystore.te + +(neverallow base_typeattr_151 keystore_service (service_manager (add))) +;;* lme + +(allow keystore sec_key_att_app_id_provider_service (service_manager (find))) +(allow keystore selinuxfs (dir (ioctl read getattr lock search open))) +(allow keystore selinuxfs (file (ioctl read getattr lock map open))) +(allow keystore selinuxfs (lnk_file (ioctl read getattr lock map open))) +(allow keystore selinuxfs (file (write lock append map open))) +(allow keystore kernel (security (compute_av))) +(allow keystore self (netlink_selinux_socket (read write create getattr setattr lock relabelfrom relabelto append bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(allow keystore cgroup (dir (ioctl read getattr lock search open))) +(allow keystore cgroup (file (ioctl read getattr lock map open))) +(allow keystore cgroup (lnk_file (ioctl read getattr lock map open))) +;;* lmx 28 system/sepolicy/public/keystore.te + +(neverallow base_typeattr_151 keystore_data_file (dir (write lock relabelfrom append map unlink link rename execute quotaon mounton add_name remove_name reparent rmdir audit_access execmod))) +;;* lme + +;;* lmx 29 system/sepolicy/public/keystore.te + +(neverallow base_typeattr_151 keystore_data_file (file (ioctl read write create setattr lock relabelfrom append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow base_typeattr_151 keystore_data_file (lnk_file (ioctl read write create setattr lock relabelfrom append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow base_typeattr_151 keystore_data_file (sock_file (ioctl read write create setattr lock relabelfrom append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow base_typeattr_151 keystore_data_file (fifo_file (ioctl read write create setattr lock relabelfrom append map unlink link rename execute quotaon mounton open audit_access execmod))) +;;* lme + +;;* lmx 31 system/sepolicy/public/keystore.te + +(neverallow base_typeattr_152 keystore_data_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent search rmdir open audit_access execmod))) +;;* lme + +;;* lmx 32 system/sepolicy/public/keystore.te + +(neverallow base_typeattr_152 keystore_data_file (file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow base_typeattr_152 keystore_data_file (lnk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow base_typeattr_152 keystore_data_file (sock_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow base_typeattr_152 keystore_data_file (fifo_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +;;* lme + +;;* lmx 34 system/sepolicy/public/keystore.te + +(neverallow base_typeattr_9 keystore (process (ptrace))) +;;* lme + +(allow lmkd self (capability (dac_override kill sys_resource))) +(allow lmkd self (capability (ipc_lock))) +(allow lmkd appdomain (dir (ioctl read getattr lock search open))) +(allow lmkd appdomain (file (ioctl read getattr lock map open))) +(allow lmkd appdomain (lnk_file (ioctl read getattr lock map open))) +(allow lmkd appdomain (file (write))) +(allow lmkd system_server (dir (ioctl read getattr lock search open))) +(allow lmkd system_server (file (ioctl read getattr lock map open))) +(allow lmkd system_server (lnk_file (ioctl read getattr lock map open))) +(allow lmkd system_server (file (write))) +(allow lmkd sysfs_type (dir (ioctl read getattr lock search open))) +(allow lmkd sysfs_type (file (ioctl read getattr lock map open))) +(allow lmkd sysfs_type (lnk_file (ioctl read getattr lock map open))) +(allow lmkd sysfs_lowmemorykiller (file (write lock append map open))) +(allow lmkd appdomain (process (sigkill))) +(allow lmkd cgroup (dir (remove_name rmdir))) +(allow lmkd cgroup (file (ioctl read getattr lock map open))) +(allow lmkd self (capability (sys_nice))) +(allow lmkd proc_zoneinfo (file (ioctl read getattr lock map open))) +(allow lmkd lmkd_exec (file (getattr map execute execute_no_trans))) +;;* lmx 44 system/sepolicy/public/lmkd.te + +(neverallow base_typeattr_9 lmkd (process (noatsecure))) +;;* lme + +(allow logd cgroup (dir (ioctl read getattr lock search open))) +(allow logd cgroup (file (ioctl read getattr lock map open))) +(allow logd cgroup (lnk_file (ioctl read getattr lock map open))) +(allow logd proc (dir (ioctl read getattr lock search open))) +(allow logd proc (file (ioctl read getattr lock map open))) +(allow logd proc (lnk_file (ioctl read getattr lock map open))) +(allow logd proc_meminfo (dir (ioctl read getattr lock search open))) +(allow logd proc_meminfo (file (ioctl read getattr lock map open))) +(allow logd proc_meminfo (lnk_file (ioctl read getattr lock map open))) +(allow logd proc_net (dir (ioctl read getattr lock search open))) +(allow logd proc_net (file (ioctl read getattr lock map open))) +(allow logd proc_net (lnk_file (ioctl read getattr lock map open))) +(allow logd self (capability (setgid setuid setpcap sys_nice audit_control))) +(allow logd self (capability2 (syslog))) +(allow logd self (netlink_audit_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown nlmsg_write))) +(allow logd kernel (system (syslog_read))) +(allow logd kmsg_device (chr_file (write lock append map open))) +(allow logd system_data_file (file (ioctl read getattr lock map open))) +(allow logd system_data_file (lnk_file (ioctl read getattr lock map open))) +(allow logd pstorefs (dir (search))) +(allow logd pstorefs (file (ioctl read getattr lock map open))) +(allow logd runtime_event_log_tags_file (file (ioctl read write getattr lock append map open))) +(allow logd device_logging_prop (file (ioctl read getattr lock map open))) +(allow logd domain (dir (ioctl read getattr lock search open))) +(allow logd domain (file (ioctl read getattr lock map open))) +(allow logd domain (lnk_file (ioctl read getattr lock map open))) +(allow logd kernel (system (syslog_mod))) +(allow logd logd_socket (sock_file (write))) +(allow logd logd (unix_stream_socket (connectto))) +(allow logd runtime_event_log_tags_file (file (ioctl read getattr lock map open))) +(allow runtime_event_log_tags_file tmpfs (filesystem (associate))) +(dontaudit domain runtime_event_log_tags_file (file (read open))) +;;* lmx 50 system/sepolicy/public/logd.te + +(neverallow logd dev_type (blk_file (read write))) +;;* lme + +;;* lmx 53 system/sepolicy/public/logd.te + +(neverallow logd domain (process (ptrace))) +;;* lme + +;;* lmx 56 system/sepolicy/public/logd.te + +(neverallow domain logd (process (ptrace))) +;;* lme + +;;* lmx 59 system/sepolicy/public/logd.te + +(neverallow logd system_file (file (write))) +(neverallow logd system_file (dir (write))) +(neverallow logd system_file (lnk_file (write))) +(neverallow logd system_file (chr_file (write))) +(neverallow logd system_file (blk_file (write))) +(neverallow logd system_file (sock_file (write))) +(neverallow logd system_file (fifo_file (write))) +;;* lme + +;;* lmx 62 system/sepolicy/public/logd.te + +(neverallow logd system_data_file (file (write))) +(neverallow logd system_data_file (dir (write))) +(neverallow logd system_data_file (lnk_file (write))) +(neverallow logd system_data_file (chr_file (write))) +(neverallow logd system_data_file (blk_file (write))) +(neverallow logd system_data_file (sock_file (write))) +(neverallow logd system_data_file (fifo_file (write))) +(neverallow logd app_data_file (file (write))) +(neverallow logd app_data_file (dir (write))) +(neverallow logd app_data_file (lnk_file (write))) +(neverallow logd app_data_file (chr_file (write))) +(neverallow logd app_data_file (blk_file (write))) +(neverallow logd app_data_file (sock_file (write))) +(neverallow logd app_data_file (fifo_file (write))) +;;* lme + +;;* lmx 65 system/sepolicy/public/logd.te + +(neverallow base_typeattr_15 logd (process (transition))) +;;* lme + +;;* lmx 66 system/sepolicy/public/logd.te + +(neverallow base_typeattr_9 logd (process (dyntransition))) +;;* lme + +;;* lmx 73 system/sepolicy/public/logd.te + +(neverallow base_typeattr_153 runtime_event_log_tags_file (file (write create setattr relabelfrom append unlink link rename))) +;;* lme + +;;* lmx 11 system/sepolicy/public/logpersist.te + +(neverallow logpersist dev_type (blk_file (read write))) +;;* lme + +;;* lmx 14 system/sepolicy/public/logpersist.te + +(neverallow logpersist domain (process (ptrace))) +;;* lme + +;;* lmx 17 system/sepolicy/public/logpersist.te + +(neverallow logpersist system_data_file (file (write))) +(neverallow logpersist system_data_file (dir (write))) +(neverallow logpersist system_data_file (lnk_file (write))) +(neverallow logpersist system_data_file (chr_file (write))) +(neverallow logpersist system_data_file (blk_file (write))) +(neverallow logpersist system_data_file (sock_file (write))) +(neverallow logpersist system_data_file (fifo_file (write))) +(neverallow logpersist app_data_file (file (write))) +(neverallow logpersist app_data_file (dir (write))) +(neverallow logpersist app_data_file (lnk_file (write))) +(neverallow logpersist app_data_file (chr_file (write))) +(neverallow logpersist app_data_file (blk_file (write))) +(neverallow logpersist app_data_file (sock_file (write))) +(neverallow logpersist app_data_file (fifo_file (write))) +;;* lme + +;;* lmx 27 system/sepolicy/public/logpersist.te + +(neverallow base_typeattr_9 logpersist (process (dyntransition))) +;;* lme + +(allow mediacodec hwservicemanager_prop (file (ioctl read getattr lock map open))) +(allow mediacodec vndbinder_device (chr_file (ioctl read write getattr lock append map open))) +(allow mediacodec vndservicemanager (binder (call transfer))) +(allow vndservicemanager mediacodec (dir (search))) +(allow vndservicemanager mediacodec (file (read open))) +(allow vndservicemanager mediacodec (process (getattr))) +(allow mediacodec binderservicedomain (binder (call transfer))) +(allow binderservicedomain mediacodec (binder (transfer))) +(allow mediacodec binderservicedomain (fd (use))) +(allow mediacodec appdomain (binder (call transfer))) +(allow appdomain mediacodec (binder (transfer))) +(allow mediacodec appdomain (fd (use))) +(allow mediacodec hal_graphics_composer (fd (use))) +(allow mediacodec gpu_device (chr_file (ioctl read write getattr lock append map open))) +(allow mediacodec video_device (chr_file (ioctl read write getattr lock append map open))) +(allow mediacodec video_device (dir (search))) +(allow mediacodec ion_device (chr_file (ioctl read write getattr lock append map open))) +(allow mediacodec hal_camera (fd (use))) +(allow mediacodec anr_data_file (file (append))) +(allow mediacodec dumpstate (fd (use))) +(allow mediacodec dumpstate (fifo_file (write append))) +(allow mediacodec system_server (fifo_file (write append))) +(allow mediacodec tombstoned (unix_stream_socket (connectto))) +(allow mediacodec tombstoned (fd (use))) +(allow mediacodec tombstoned_crash_socket (sock_file (write))) +(allow mediacodec tombstone_data_file (file (append))) +(allow mediacodec hal_omx_hwservice (hwservice_manager (add find))) +(allow mediacodec hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 36 system/sepolicy/public/mediacodec.te + +(neverallow base_typeattr_154 hal_omx_hwservice (hwservice_manager (add))) +;;* lme + +(allow mediacodec bufferhubd (fd (use))) +;;* lmx 57 system/sepolicy/public/mediacodec.te + +(neverallow mediacodec fs_type (file (execute_no_trans))) +(neverallow mediacodec file_type (file (execute_no_trans))) +;;* lme + +;;* lmx 69 system/sepolicy/public/mediacodec.te + +(neverallow mediacodec domain (tcp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind name_connect))) +(neverallow mediacodec domain (udp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +(neverallow mediacodec domain (rawip_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +;;* lme + +(allow mediadrmserver servicemanager (binder (call transfer))) +(allow servicemanager mediadrmserver (dir (search))) +(allow servicemanager mediadrmserver (file (read open))) +(allow servicemanager mediadrmserver (process (getattr))) +(allow mediadrmserver binderservicedomain (binder (call transfer))) +(allow binderservicedomain mediadrmserver (binder (transfer))) +(allow mediadrmserver binderservicedomain (fd (use))) +(allow mediadrmserver appdomain (binder (call transfer))) +(allow appdomain mediadrmserver (binder (transfer))) +(allow mediadrmserver appdomain (fd (use))) +(allow mediadrmserver mediadrmserver_service (service_manager (add find))) +;;* lmx 14 system/sepolicy/public/mediadrmserver.te + +(neverallow base_typeattr_155 mediadrmserver_service (service_manager (add))) +;;* lme + +(allow mediadrmserver mediaserver_service (service_manager (find))) +(allow mediadrmserver mediametrics_service (service_manager (find))) +(allow mediadrmserver processinfo_service (service_manager (find))) +(allow mediadrmserver surfaceflinger_service (service_manager (find))) +(allow mediadrmserver system_file (dir (ioctl read getattr lock search open))) +(allow mediadrmserver mediacodec (binder (call transfer))) +(allow mediacodec mediadrmserver (binder (transfer))) +(allow mediadrmserver mediacodec (fd (use))) +;;* lmx 28 system/sepolicy/public/mediadrmserver.te + +(neverallow mediadrmserver fs_type (file (execute_no_trans))) +(neverallow mediadrmserver file_type (file (execute_no_trans))) +;;* lme + +;;* lmx 31 system/sepolicy/public/mediadrmserver.te + +(neverallowx mediadrmserver domain (ioctl tcp_socket (0x6900 0x6902))) +(neverallowx mediadrmserver domain (ioctl udp_socket (0x6900 0x6902))) +(neverallowx mediadrmserver domain (ioctl rawip_socket (0x6900 0x6902))) +;;* lme + +;;* lmx 31 system/sepolicy/public/mediadrmserver.te + +(neverallowx mediadrmserver domain (ioctl tcp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx mediadrmserver domain (ioctl udp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx mediadrmserver domain (ioctl rawip_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +;;* lme + +;;* lmx 31 system/sepolicy/public/mediadrmserver.te + +(neverallowx mediadrmserver domain (ioctl tcp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx mediadrmserver domain (ioctl udp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx mediadrmserver domain (ioctl rawip_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +;;* lme + +(allow mediaextractor servicemanager (binder (call transfer))) +(allow servicemanager mediaextractor (dir (search))) +(allow servicemanager mediaextractor (file (read open))) +(allow servicemanager mediaextractor (process (getattr))) +(allow mediaextractor binderservicedomain (binder (call transfer))) +(allow binderservicedomain mediaextractor (binder (transfer))) +(allow mediaextractor binderservicedomain (fd (use))) +(allow mediaextractor appdomain (binder (call transfer))) +(allow appdomain mediaextractor (binder (transfer))) +(allow mediaextractor appdomain (fd (use))) +(allow mediaextractor mediaextractor_service (service_manager (add find))) +;;* lmx 12 system/sepolicy/public/mediaextractor.te + +(neverallow base_typeattr_156 mediaextractor_service (service_manager (add))) +;;* lme + +(allow mediaextractor mediametrics_service (service_manager (find))) +(allow mediaextractor hidl_token_hwservice (hwservice_manager (find))) +(allow mediaextractor system_server (fd (use))) +(allow mediaextractor cgroup (dir (ioctl read getattr lock search open))) +(allow mediaextractor cgroup (file (ioctl read getattr lock map open))) +(allow mediaextractor cgroup (lnk_file (ioctl read getattr lock map open))) +(allow mediaextractor proc_meminfo (file (ioctl read getattr lock map open))) +(allow mediaextractor anr_data_file (file (append))) +(allow mediaextractor dumpstate (fd (use))) +(allow mediaextractor dumpstate (fifo_file (write append))) +(allow mediaextractor system_server (fifo_file (write append))) +(allow mediaextractor tombstoned (unix_stream_socket (connectto))) +(allow mediaextractor tombstoned (fd (use))) +(allow mediaextractor tombstoned_crash_socket (sock_file (write))) +(allow mediaextractor tombstone_data_file (file (append))) +(allow mediaextractor media_rw_data_file (file (read getattr))) +(allow mediaextractor app_data_file (file (read getattr))) +(allow mediaextractor apk_data_file (file (read getattr))) +(allow mediaextractor asec_apk_file (file (read getattr))) +(allow mediaextractor ringtone_file (file (read getattr))) +;;* lmx 40 system/sepolicy/public/mediaextractor.te + +(neverallow mediaextractor fs_type (file (execute_no_trans))) +(neverallow mediaextractor file_type (file (execute_no_trans))) +;;* lme + +;;* lmx 52 system/sepolicy/public/mediaextractor.te + +(neverallow mediaextractor domain (tcp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind name_connect))) +(neverallow mediaextractor domain (udp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +(neverallow mediaextractor domain (rawip_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +;;* lme + +(allow mediametrics servicemanager (binder (call transfer))) +(allow servicemanager mediametrics (dir (search))) +(allow servicemanager mediametrics (file (read open))) +(allow servicemanager mediametrics (process (getattr))) +(allow mediametrics binderservicedomain (binder (call transfer))) +(allow binderservicedomain mediametrics (binder (transfer))) +(allow mediametrics binderservicedomain (fd (use))) +(allow mediametrics mediametrics_service (service_manager (add find))) +;;* lmx 10 system/sepolicy/public/mediametrics.te + +(neverallow base_typeattr_157 mediametrics_service (service_manager (add))) +;;* lme + +(allow mediametrics system_server (fd (use))) +(allow mediametrics cgroup (dir (ioctl read getattr lock search open))) +(allow mediametrics cgroup (file (ioctl read getattr lock map open))) +(allow mediametrics cgroup (lnk_file (ioctl read getattr lock map open))) +(allow mediametrics proc_meminfo (file (ioctl read getattr lock map open))) +(allow mediametrics app_data_file (file (write))) +(allow mediametrics package_native_service (service_manager (find))) +;;* lmx 29 system/sepolicy/public/mediametrics.te + +(neverallow mediametrics fs_type (file (execute_no_trans))) +(neverallow mediametrics file_type (file (execute_no_trans))) +;;* lme + +;;* lmx 41 system/sepolicy/public/mediametrics.te + +(neverallow mediametrics domain (tcp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind name_connect))) +(neverallow mediametrics domain (udp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +(neverallow mediametrics domain (rawip_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +;;* lme + +(allow mediaserver sdcard_type (dir (ioctl read getattr lock search open))) +(allow mediaserver sdcard_type (file (ioctl read getattr lock map open))) +(allow mediaserver sdcard_type (lnk_file (ioctl read getattr lock map open))) +(allow mediaserver cgroup (dir (ioctl read getattr lock search open))) +(allow mediaserver cgroup (file (ioctl read getattr lock map open))) +(allow mediaserver cgroup (lnk_file (ioctl read getattr lock map open))) +(allow mediaserver proc (lnk_file (getattr))) +(allow mediaserver system_file (dir (ioctl read getattr lock search open))) +(allow mediaserver servicemanager (binder (call transfer))) +(allow servicemanager mediaserver (dir (search))) +(allow servicemanager mediaserver (file (read open))) +(allow servicemanager mediaserver (process (getattr))) +(allow mediaserver binderservicedomain (binder (call transfer))) +(allow binderservicedomain mediaserver (binder (transfer))) +(allow mediaserver binderservicedomain (fd (use))) +(allow mediaserver appdomain (binder (call transfer))) +(allow appdomain mediaserver (binder (transfer))) +(allow mediaserver appdomain (fd (use))) +(allow mediaserver media_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow mediaserver media_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow mediaserver app_data_file (dir (search))) +(allow mediaserver app_data_file (file (ioctl read write getattr lock append map open))) +(allow mediaserver sdcard_type (file (write))) +(allow mediaserver gpu_device (chr_file (ioctl read write getattr lock append map open))) +(allow mediaserver video_device (dir (ioctl read getattr lock search open))) +(allow mediaserver video_device (chr_file (ioctl read write getattr lock append map open))) +(allow mediaserver property_socket (sock_file (write))) +(allow mediaserver init (unix_stream_socket (connectto))) +(allow mediaserver audio_prop (property_service (set))) +(allow mediaserver audio_prop (file (ioctl read getattr lock map open))) +(allow mediaserver sysfs (file (ioctl read getattr lock map open))) +(allow mediaserver apk_data_file (file (read getattr))) +(allow mediaserver asec_apk_file (file (read getattr))) +(allow mediaserver ringtone_file (file (read getattr))) +(allow mediaserver radio_data_file (file (read getattr))) +(allow mediaserver appdomain (fifo_file (read write getattr))) +(allow mediaserver rpmsg_device (chr_file (ioctl read write getattr lock append map open))) +(allow mediaserver system_server (fifo_file (ioctl read getattr lock map open))) +(allow mediaserver media_rw_data_file (dir (ioctl read getattr lock search open))) +(allow mediaserver media_rw_data_file (file (ioctl read getattr lock map open))) +(allow mediaserver media_rw_data_file (lnk_file (ioctl read getattr lock map open))) +(allow mediaserver app_fuse_file (file (read getattr))) +(allow mediaserver qtaguid_proc (file (ioctl read write getattr lock append map open))) +(allow mediaserver qtaguid_device (chr_file (ioctl read getattr lock map open))) +(allow mediaserver drmserver_socket (sock_file (write))) +(allow mediaserver drmserver (unix_stream_socket (connectto))) +(allow mediaserver bluetooth_socket (sock_file (write))) +(allow mediaserver bluetooth (unix_stream_socket (connectto))) +(allow mediaserver mediaserver_service (service_manager (add find))) +;;* lmx 78 system/sepolicy/public/mediaserver.te + +(neverallow base_typeattr_158 mediaserver_service (service_manager (add))) +;;* lme + +(allow mediaserver activity_service (service_manager (find))) +(allow mediaserver appops_service (service_manager (find))) +(allow mediaserver audioserver_service (service_manager (find))) +(allow mediaserver cameraserver_service (service_manager (find))) +(allow mediaserver batterystats_service (service_manager (find))) +(allow mediaserver drmserver_service (service_manager (find))) +(allow mediaserver mediaextractor_service (service_manager (find))) +(allow mediaserver mediacodec_service (service_manager (find))) +(allow mediaserver mediametrics_service (service_manager (find))) +(allow mediaserver media_session_service (service_manager (find))) +(allow mediaserver permission_service (service_manager (find))) +(allow mediaserver power_service (service_manager (find))) +(allow mediaserver processinfo_service (service_manager (find))) +(allow mediaserver scheduling_policy_service (service_manager (find))) +(allow mediaserver surfaceflinger_service (service_manager (find))) +(allow mediaserver mediadrmserver_service (service_manager (find))) +(allow mediaserver hidl_token_hwservice (hwservice_manager (find))) +(allow mediaserver oemfs (dir (search))) +(allow mediaserver oemfs (file (ioctl read getattr lock map open))) +(allow drmserver mediaserver (dir (search))) +(allow drmserver mediaserver (file (read open))) +(allow drmserver mediaserver (process (getattr))) +(allow mediaserver drmserver (drmservice (consumeRights setPlaybackStatus openDecryptSession closeDecryptSession initializeDecryptUnit decrypt finalizeDecryptUnit pread))) +(allowx mediaserver self (ioctl tcp_socket ((range 0x5401 0x5403) 0x540b (range 0x540e 0x5411) (range 0x5413 0x5414) 0x5451))) +(allowx mediaserver self (ioctl udp_socket ((range 0x5401 0x5403) 0x540b (range 0x540e 0x5411) (range 0x5413 0x5414) 0x5451))) +(allowx mediaserver self (ioctl rawip_socket ((range 0x5401 0x5403) 0x540b (range 0x540e 0x5411) (range 0x5413 0x5414) 0x5451))) +(allowx mediaserver self (ioctl tcp_socket ((range 0x8906 0x8907) 0x8910 (range 0x8912 0x8913) 0x8915 0x8917 0x8919 0x891b 0x8921 0x8933 0x8938 0x8942))) +(allowx mediaserver self (ioctl udp_socket ((range 0x8906 0x8907) 0x8910 (range 0x8912 0x8913) 0x8915 0x8917 0x8919 0x891b 0x8921 0x8933 0x8938 0x8942))) +(allowx mediaserver self (ioctl rawip_socket ((range 0x8906 0x8907) 0x8910 (range 0x8912 0x8913) 0x8915 0x8917 0x8919 0x891b 0x8921 0x8933 0x8938 0x8942))) +(allowx mediaserver self (ioctl tcp_socket (0x8b01 0x8b05 0x8b07 0x8b09 0x8b0b 0x8b0d 0x8b0f (range 0x8b11 0x8b13) 0x8b21 0x8b23 0x8b25 0x8b27 0x8b29 0x8b2d))) +(allowx mediaserver self (ioctl udp_socket (0x8b01 0x8b05 0x8b07 0x8b09 0x8b0b 0x8b0d 0x8b0f (range 0x8b11 0x8b13) 0x8b21 0x8b23 0x8b25 0x8b27 0x8b29 0x8b2d))) +(allowx mediaserver self (ioctl rawip_socket (0x8b01 0x8b05 0x8b07 0x8b09 0x8b0b 0x8b0d 0x8b0f (range 0x8b11 0x8b13) 0x8b21 0x8b23 0x8b25 0x8b27 0x8b29 0x8b2d))) +(allow mediaserver media_rw_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow mediaserver media_rw_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow mediaserver preloads_media_file (file (ioctl read getattr))) +(allow mediaserver ion_device (chr_file (ioctl read getattr lock map open))) +(allow mediaserver hal_graphics_allocator (fd (use))) +(allow mediaserver hal_graphics_composer (fd (use))) +(allow mediaserver hal_camera (fd (use))) +(allow mediaserver system_server (fd (use))) +(allow mediaserver mediacodec (binder (call transfer))) +(allow mediacodec mediaserver (binder (transfer))) +(allow mediaserver mediacodec (fd (use))) +;;* lmx 147 system/sepolicy/public/mediaserver.te + +(neverallow mediaserver fs_type (file (execute_no_trans))) +(neverallow mediaserver file_type (file (execute_no_trans))) +;;* lme + +;;* lmx 150 system/sepolicy/public/mediaserver.te + +(neverallowx mediaserver domain (ioctl tcp_socket (0x6900 0x6902))) +(neverallowx mediaserver domain (ioctl udp_socket (0x6900 0x6902))) +(neverallowx mediaserver domain (ioctl rawip_socket (0x6900 0x6902))) +;;* lme + +;;* lmx 150 system/sepolicy/public/mediaserver.te + +(neverallowx mediaserver domain (ioctl tcp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx mediaserver domain (ioctl udp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx mediaserver domain (ioctl rawip_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +;;* lme + +;;* lmx 150 system/sepolicy/public/mediaserver.te + +(neverallowx mediaserver domain (ioctl tcp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx mediaserver domain (ioctl udp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx mediaserver domain (ioctl rawip_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +;;* lme + +(allow modprobe proc_modules (file (ioctl read getattr lock map open))) +(allow modprobe self (capability (sys_module))) +(allow modprobe kernel (key (search))) +(allow modprobe system_file (system (module_load))) +(allow modprobe system_file (dir (ioctl read getattr lock search open))) +(allow modprobe system_file (file (ioctl read getattr lock map open))) +(allow modprobe system_file (lnk_file (ioctl read getattr lock map open))) +(allow mtp self (socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow mtp self (capability (net_raw))) +(allow mtp ppp (process (signal))) +(allow mtp vpn_data_file (dir (search))) +(allowx netd self (ioctl udp_socket (0x6900 0x6902))) +(allowx netd self (ioctl udp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(allowx netd self (ioctl udp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(allow netd cgroup (dir (ioctl read getattr lock search open))) +(allow netd cgroup (file (ioctl read getattr lock map open))) +(allow netd cgroup (lnk_file (ioctl read getattr lock map open))) +(allow netd system_server (fd (use))) +(allow netd self (capability (kill net_admin net_raw))) +(dontaudit netd self (capability (fsetid))) +(allow netd self (netlink_kobject_uevent_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow netd self (netlink_route_socket (nlmsg_write))) +(allow netd self (netlink_nflog_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow netd self (netlink_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow netd self (netlink_tcpdiag_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown nlmsg_read nlmsg_write))) +(allow netd self (netlink_generic_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow netd self (netlink_netfilter_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow netd shell_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow netd system_file (file (getattr map execute execute_no_trans))) +(allow netd devpts (chr_file (ioctl read write getattr lock append map open))) +(allow netd system_file (file (lock))) +(allow netd proc_net (dir (ioctl read getattr lock search open))) +(allow netd proc_net (file (ioctl read getattr lock map open))) +(allow netd proc_net (lnk_file (ioctl read getattr lock map open))) +(allow netd proc_net (file (ioctl read write getattr lock append map open))) +(allow netd sysfs_type (dir (ioctl read getattr lock search open))) +(allow netd sysfs_type (file (ioctl read getattr lock map open))) +(allow netd sysfs_type (lnk_file (ioctl read getattr lock map open))) +(allow netd sysfs (file (write))) +(allow netd sysfs_usb (file (write))) +(allow netd self (capability (chown dac_override))) +(allow netd net_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow netd net_data_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow netd self (capability (fowner))) +(allow netd system_file (file (lock))) +(allow netd dnsmasq (process (signal))) +(allow netd clatd (process (signal))) +(allow netd property_socket (sock_file (write))) +(allow netd init (unix_stream_socket (connectto))) +(allow netd ctl_mdnsd_prop (property_service (set))) +(allow netd ctl_mdnsd_prop (file (ioctl read getattr lock map open))) +(allow netd property_socket (sock_file (write))) +(allow netd init (unix_stream_socket (connectto))) +(allow netd netd_stable_secret_prop (property_service (set))) +(allow netd netd_stable_secret_prop (file (ioctl read getattr lock map open))) +(allow netd servicemanager (binder (call transfer))) +(allow servicemanager netd (dir (search))) +(allow servicemanager netd (file (read open))) +(allow servicemanager netd (process (getattr))) +(allow netd netd_service (service_manager (add find))) +;;* lmx 72 system/sepolicy/public/netd.te + +(neverallow base_typeattr_159 netd_service (service_manager (add))) +;;* lme + +(allow netd dumpstate (fifo_file (write getattr))) +(allow netd system_server (binder (call))) +(allow netd permission_service (service_manager (find))) +(allow netd netd_listener_service (service_manager (find))) +(allow netd netdomain (tcp_socket (read write getattr setattr getopt setopt))) +(allow netd netdomain (udp_socket (read write getattr setattr getopt setopt))) +(allow netd netdomain (rawip_socket (read write getattr setattr getopt setopt))) +(allow netd netdomain (tun_socket (read write getattr setattr getopt setopt))) +(allow netd netdomain (fd (use))) +(allow netd self (netlink_xfrm_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown nlmsg_read nlmsg_write))) +(allow netd system_net_netd_hwservice (hwservice_manager (add find))) +(allow netd hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 95 system/sepolicy/public/netd.te + +(neverallow base_typeattr_159 system_net_netd_hwservice (hwservice_manager (add))) +;;* lme + +(allow netd hwservicemanager (binder (call transfer))) +(allow hwservicemanager netd (binder (call transfer))) +(allow hwservicemanager netd (dir (search))) +(allow hwservicemanager netd (file (read open))) +(allow hwservicemanager netd (process (getattr))) +(allow netd hwservicemanager_prop (file (ioctl read getattr lock map open))) +;;* lmx 105 system/sepolicy/public/netd.te + +(neverallow netd dev_type (blk_file (read write))) +;;* lme + +;;* lmx 108 system/sepolicy/public/netd.te + +(neverallow netd domain (process (ptrace))) +;;* lme + +;;* lmx 111 system/sepolicy/public/netd.te + +(neverallow netd system_file (file (write))) +(neverallow netd system_file (dir (write))) +(neverallow netd system_file (lnk_file (write))) +(neverallow netd system_file (chr_file (write))) +(neverallow netd system_file (blk_file (write))) +(neverallow netd system_file (sock_file (write))) +(neverallow netd system_file (fifo_file (write))) +;;* lme + +;;* lmx 114 system/sepolicy/public/netd.te + +(neverallow netd system_data_file (file (write))) +(neverallow netd system_data_file (dir (write))) +(neverallow netd system_data_file (lnk_file (write))) +(neverallow netd system_data_file (chr_file (write))) +(neverallow netd system_data_file (blk_file (write))) +(neverallow netd system_data_file (sock_file (write))) +(neverallow netd system_data_file (fifo_file (write))) +(neverallow netd app_data_file (file (write))) +(neverallow netd app_data_file (dir (write))) +(neverallow netd app_data_file (lnk_file (write))) +(neverallow netd app_data_file (chr_file (write))) +(neverallow netd app_data_file (blk_file (write))) +(neverallow netd app_data_file (sock_file (write))) +(neverallow netd app_data_file (fifo_file (write))) +;;* lme + +;;* lmx 117 system/sepolicy/public/netd.te + +(neverallow base_typeattr_160 netd_service (service_manager (find))) +;;* lme + +;;* lmx 120 system/sepolicy/public/netd.te + +(neverallow appdomain netd (binder (call))) +;;* lme + +;;* lmx 121 system/sepolicy/public/netd.te + +(neverallow netd appdomain (binder (call))) +;;* lme + +;;* lmx 125 system/sepolicy/public/netd.te + +(neverallow base_typeattr_161 netd_stable_secret_prop (file (ioctl read getattr lock map open))) +;;* lme + +;;* lmx 129 system/sepolicy/public/netd.te + +(neverallow base_typeattr_161 netd_stable_secret_prop (property_service (set))) +;;* lme + +;;* lmx 5 system/sepolicy/public/netutils_wrapper.te + +(neverallow domain netutils_wrapper_exec (file (execute_no_trans))) +;;* lme + +(allow otapreopt_chroot postinstall_file (dir (mounton search))) +(allow otapreopt_chroot self (capability (sys_chroot sys_admin))) +(allow otapreopt_chroot block_device (dir (search))) +(allow otapreopt_chroot labeledfs (filesystem (mount))) +(dontaudit otapreopt_chroot kernel (process (setsched))) +(allow otapreopt_chroot postinstall (fd (use))) +(allow otapreopt_chroot update_engine (fd (use))) +(allow otapreopt_chroot update_engine (fifo_file (write))) +(allow otapreopt_slot ota_data_file (dir (ioctl read write getattr lock rename add_name remove_name reparent search rmdir open))) +(allow otapreopt_slot ota_data_file (file (getattr))) +(allow otapreopt_slot ota_data_file (lnk_file (getattr))) +(allow otapreopt_slot ota_data_file (lnk_file (read))) +(allow otapreopt_slot dalvikcache_data_file (dir (read write getattr add_name remove_name search rmdir open))) +(allow otapreopt_slot dalvikcache_data_file (file (getattr unlink))) +(allow otapreopt_slot dalvikcache_data_file (lnk_file (read getattr unlink))) +(allow otapreopt_slot shell_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow otapreopt_slot toolbox_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow performanced servicemanager (binder (call transfer))) +(allow servicemanager performanced (dir (search))) +(allow servicemanager performanced (file (read open))) +(allow servicemanager performanced (process (getattr))) +(allow performanced system_server (binder (call transfer))) +(allow system_server performanced (binder (transfer))) +(allow performanced system_server (fd (use))) +(allow performanced permission_service (service_manager (find))) +(allow init pdx_performance_client_endpoint_socket_type (unix_stream_socket (create bind))) +(allow performanced pdx_performance_client_endpoint_socket_type (unix_stream_socket (read write getattr setattr lock append listen accept getopt setopt shutdown))) +(allow performanced self (process (setsockcreate))) +(allow performanced pdx_performance_client_channel_socket_type (unix_stream_socket (ioctl read write create getattr setattr lock append bind connect listen accept getopt setopt shutdown))) +;;* lmx 10 system/sepolicy/public/performanced.te + +(neverallow base_typeattr_162 pdx_performance_client_endpoint_socket_type (unix_stream_socket (listen accept))) +;;* lme + +(allow performanced self (capability (setgid setuid sys_nice))) +(allow performanced appdomain (dir (ioctl read getattr lock search open))) +(allow performanced bufferhubd (dir (ioctl read getattr lock search open))) +(allow performanced kernel (dir (ioctl read getattr lock search open))) +(allow performanced surfaceflinger (dir (ioctl read getattr lock search open))) +(allow performanced appdomain (file (ioctl read getattr lock map open))) +(allow performanced appdomain (lnk_file (ioctl read getattr lock map open))) +(allow performanced bufferhubd (file (ioctl read getattr lock map open))) +(allow performanced bufferhubd (lnk_file (ioctl read getattr lock map open))) +(allow performanced kernel (file (ioctl read getattr lock map open))) +(allow performanced kernel (lnk_file (ioctl read getattr lock map open))) +(allow performanced surfaceflinger (file (ioctl read getattr lock map open))) +(allow performanced surfaceflinger (lnk_file (ioctl read getattr lock map open))) +(dontaudit performanced domain (dir (read))) +(allow performanced appdomain (process (setsched))) +(allow performanced bufferhubd (process (setsched))) +(allow performanced kernel (process (setsched))) +(allow performanced surfaceflinger (process (setsched))) +(allow performanced cgroup (dir (ioctl read getattr lock search open))) +(allow performanced cgroup (file (ioctl read getattr lock map open))) +(allow performanced cgroup (lnk_file (ioctl read getattr lock map open))) +(allow postinstall update_engine_common (fd (use))) +(allow postinstall update_engine_common (fifo_file (ioctl read write getattr lock append map open))) +(allow postinstall postinstall_file (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow postinstall postinstall_file (lnk_file (ioctl read getattr lock map open))) +(allow postinstall postinstall_file (dir (ioctl read getattr lock search open))) +(allow postinstall shell_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow postinstall system_file (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow postinstall toolbox_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow postinstall servicemanager (binder (call transfer))) +(allow servicemanager postinstall (dir (search))) +(allow servicemanager postinstall (file (read open))) +(allow servicemanager postinstall (process (getattr))) +(allow postinstall system_server (binder (call transfer))) +(allow system_server postinstall (binder (transfer))) +(allow postinstall system_server (fd (use))) +(allow postinstall otadexopt_service (service_manager (find))) +;;* lmx 36 system/sepolicy/public/postinstall.te + +(neverallow base_typeattr_35 postinstall (process (transition dyntransition))) +;;* lme + +(allow postinstall_dexopt self (capability (chown dac_override fowner setgid setuid))) +(allow postinstall_dexopt postinstall_file (filesystem (getattr))) +(allow postinstall_dexopt postinstall_file (dir (getattr search))) +(allow postinstall_dexopt postinstall_file (lnk_file (read))) +(allow postinstall_dexopt proc (file (read getattr open))) +(allow postinstall_dexopt tmpfs (file (read))) +(allow postinstall_dexopt apk_data_file (dir (ioctl read getattr lock search open))) +(allow postinstall_dexopt apk_data_file (file (ioctl read getattr lock map open))) +(allow postinstall_dexopt apk_data_file (lnk_file (ioctl read getattr lock map open))) +(allow postinstall_dexopt vendor_app_file (dir (ioctl read getattr lock search open))) +(allow postinstall_dexopt vendor_app_file (file (ioctl read getattr lock map open))) +(allow postinstall_dexopt vendor_app_file (lnk_file (ioctl read getattr lock map open))) +(allow postinstall_dexopt dalvikcache_data_file (dir (ioctl read getattr lock search open))) +(allow postinstall_dexopt dalvikcache_data_file (file (ioctl read getattr lock map open))) +(allow postinstall_dexopt dalvikcache_data_file (lnk_file (ioctl read getattr lock map open))) +(allow postinstall_dexopt user_profile_data_file (dir (getattr search))) +(allow postinstall_dexopt user_profile_data_file (file (ioctl read getattr lock map open))) +(allow postinstall_dexopt ota_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow postinstall_dexopt ota_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow postinstall_dexopt ota_data_file (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow postinstall_dexopt dalvikcache_data_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow postinstall_dexopt dalvikcache_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow postinstall_dexopt dalvikcache_data_file (dir (relabelto))) +(allow postinstall_dexopt dalvikcache_data_file (file (relabelto link))) +(allow postinstall_dexopt selinuxfs (dir (ioctl read getattr lock search open))) +(allow postinstall_dexopt selinuxfs (file (ioctl read getattr lock map open))) +(allow postinstall_dexopt selinuxfs (lnk_file (ioctl read getattr lock map open))) +(allow postinstall_dexopt selinuxfs (file (write lock append map open))) +(allow postinstall_dexopt kernel (security (check_context))) +(allow postinstall_dexopt selinuxfs (dir (ioctl read getattr lock search open))) +(allow postinstall_dexopt selinuxfs (file (ioctl read getattr lock map open))) +(allow postinstall_dexopt selinuxfs (lnk_file (ioctl read getattr lock map open))) +(allow postinstall_dexopt selinuxfs (file (write lock append map open))) +(allow postinstall_dexopt kernel (security (compute_av))) +(allow postinstall_dexopt self (netlink_selinux_socket (read write create getattr setattr lock relabelfrom relabelto append bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(allow postinstall_dexopt postinstall (process (sigchld))) +(allow postinstall_dexopt otapreopt_chroot (fd (use))) +(allow postinstall_dexopt cpuctl_device (dir (search))) +(allow ppp proc_net (dir (ioctl read getattr lock search open))) +(allow ppp proc_net (file (ioctl read getattr lock map open))) +(allow ppp proc_net (lnk_file (ioctl read getattr lock map open))) +(allow ppp mtp (socket (ioctl read write getattr setattr lock append bind connect getopt setopt shutdown))) +(allowx ppp self (ioctl udp_socket (0x6900 0x6902))) +(allowx ppp self (ioctl udp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(allowx ppp self (ioctl udp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(allowx ppp mtp (ioctl socket ((range 0x7436 0x7441) (range 0x7446 0x7447) (range 0x744b 0x745a) (range 0x7480 0x7488)))) +(allow ppp mtp (unix_dgram_socket (ioctl read write getattr setattr lock append bind connect getopt setopt shutdown))) +(allow ppp ppp_device (chr_file (ioctl read write getattr lock append map open))) +(allow ppp self (capability (net_admin))) +(allow ppp system_file (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow ppp vpn_data_file (dir (write lock add_name remove_name search open))) +(allow ppp vpn_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow ppp mtp (fd (use))) +(allow preopt2cachename cppreopts (fd (use))) +(allow preopt2cachename cppreopts (fifo_file (read write getattr))) +(allow preopt2cachename proc_net (file (ioctl read getattr lock map open))) +(allow profman user_profile_data_file (file (read write getattr lock))) +(allow profman asec_apk_file (file (read))) +(allow profman apk_data_file (file (read))) +(allow profman oemfs (file (read))) +(allow profman tmpfs (file (read))) +(allow profman profman_dump_data_file (file (write))) +(allow profman installd (fd (use))) +(allow profman app_data_file (file (read write getattr lock))) +;;* lmx 27 system/sepolicy/public/profman.te + +(neverallow profman app_data_file (file (open))) +(neverallow profman app_data_file (lnk_file (open))) +(neverallow profman app_data_file (sock_file (open))) +(neverallow profman app_data_file (fifo_file (open))) +;;* lme + +(allow property_type tmpfs (filesystem (associate))) +;;* lmx 90 system/sepolicy/public/property.te + +(neverallow base_typeattr_9 base_typeattr_163 (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +;;* lme + +(allowx racoon self (ioctl udp_socket (0x8914 0x8916 0x891c))) +(allow racoon servicemanager (binder (call transfer))) +(allow servicemanager racoon (dir (search))) +(allow servicemanager racoon (file (read open))) +(allow servicemanager racoon (process (getattr))) +(allow racoon tun_device (chr_file (ioctl read getattr lock map open))) +(allow racoon cgroup (dir (create add_name))) +(allow racoon kernel (system (module_request))) +(allow racoon self (key_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow racoon self (tun_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow racoon self (capability (net_bind_service net_admin net_raw))) +(allow racoon system_file (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow racoon vpn_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow racoon vpn_data_file (dir (write lock add_name remove_name search open))) +(allow keystore racoon (dir (search))) +(allow keystore racoon (file (read open))) +(allow keystore racoon (process (getattr))) +(allow racoon keystore_service (service_manager (find))) +(allow racoon keystore (binder (call transfer))) +(allow keystore racoon (binder (transfer))) +(allow racoon keystore (fd (use))) +(allow racoon keystore (keystore_key (get sign verify))) +(allow radio radio_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow radio radio_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow radio radio_data_file (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow radio radio_data_file (sock_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow radio radio_data_file (fifo_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow radio alarm_device (chr_file (ioctl read write getattr lock append map open))) +(allow radio net_data_file (dir (search))) +(allow radio net_data_file (file (ioctl read getattr lock map open))) +(allow radio property_socket (sock_file (write))) +(allow radio init (unix_stream_socket (connectto))) +(allow radio radio_prop (property_service (set))) +(allow radio radio_prop (file (ioctl read getattr lock map open))) +(allow radio property_socket (sock_file (write))) +(allow radio init (unix_stream_socket (connectto))) +(allow radio net_radio_prop (property_service (set))) +(allow radio net_radio_prop (file (ioctl read getattr lock map open))) +(allow radio property_socket (sock_file (write))) +(allow radio init (unix_stream_socket (connectto))) +(allow radio ctl_rildaemon_prop (property_service (set))) +(allow radio ctl_rildaemon_prop (file (ioctl read getattr lock map open))) +(allow radio radio_service (service_manager (add find))) +;;* lmx 27 system/sepolicy/public/radio.te + +(neverallow base_typeattr_164 radio_service (service_manager (add))) +;;* lme + +(allow radio audioserver_service (service_manager (find))) +(allow radio cameraserver_service (service_manager (find))) +(allow radio drmserver_service (service_manager (find))) +(allow radio mediaserver_service (service_manager (find))) +(allow radio nfc_service (service_manager (find))) +(allow radio surfaceflinger_service (service_manager (find))) +(allow radio app_api_service (service_manager (find))) +(allow radio system_api_service (service_manager (find))) +(allow radio hwservicemanager (binder (call transfer))) +(allow hwservicemanager radio (binder (call transfer))) +(allow hwservicemanager radio (dir (search))) +(allow hwservicemanager radio (file (read open))) +(allow hwservicemanager radio (process (getattr))) +;;* lmx 154 system/sepolicy/public/recovery.te + +(neverallow recovery base_typeattr_165 (file (write create setattr relabelfrom append unlink link rename execute execute_no_trans))) +;;* lme + +;;* lmx 159 system/sepolicy/public/recovery.te + +(neverallow recovery base_typeattr_165 (dir (write create setattr relabelfrom link rename add_name remove_name reparent rmdir))) +;;* lme + +(allow recovery_persist pstorefs (dir (search))) +(allow recovery_persist pstorefs (file (ioctl read getattr lock map open))) +(allow recovery_persist recovery_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow recovery_persist recovery_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +;;* lmx 18 system/sepolicy/public/recovery_persist.te + +(neverallow recovery_persist dev_type (blk_file (read write))) +;;* lme + +;;* lmx 21 system/sepolicy/public/recovery_persist.te + +(neverallow recovery_persist domain (process (ptrace))) +;;* lme + +;;* lmx 24 system/sepolicy/public/recovery_persist.te + +(neverallow recovery_persist system_file (file (write))) +(neverallow recovery_persist system_file (dir (write))) +(neverallow recovery_persist system_file (lnk_file (write))) +(neverallow recovery_persist system_file (chr_file (write))) +(neverallow recovery_persist system_file (blk_file (write))) +(neverallow recovery_persist system_file (sock_file (write))) +(neverallow recovery_persist system_file (fifo_file (write))) +;;* lme + +;;* lmx 27 system/sepolicy/public/recovery_persist.te + +(neverallow recovery_persist system_data_file (file (write))) +(neverallow recovery_persist system_data_file (dir (write))) +(neverallow recovery_persist system_data_file (lnk_file (write))) +(neverallow recovery_persist system_data_file (chr_file (write))) +(neverallow recovery_persist system_data_file (blk_file (write))) +(neverallow recovery_persist system_data_file (sock_file (write))) +(neverallow recovery_persist system_data_file (fifo_file (write))) +(neverallow recovery_persist app_data_file (file (write))) +(neverallow recovery_persist app_data_file (dir (write))) +(neverallow recovery_persist app_data_file (lnk_file (write))) +(neverallow recovery_persist app_data_file (chr_file (write))) +(neverallow recovery_persist app_data_file (blk_file (write))) +(neverallow recovery_persist app_data_file (sock_file (write))) +(neverallow recovery_persist app_data_file (fifo_file (write))) +;;* lme + +(allow recovery_refresh pstorefs (dir (search))) +(allow recovery_refresh pstorefs (file (ioctl read getattr lock map open))) +;;* lmx 16 system/sepolicy/public/recovery_refresh.te + +(neverallow recovery_refresh dev_type (blk_file (read write))) +;;* lme + +;;* lmx 19 system/sepolicy/public/recovery_refresh.te + +(neverallow recovery_refresh domain (process (ptrace))) +;;* lme + +;;* lmx 22 system/sepolicy/public/recovery_refresh.te + +(neverallow recovery_refresh system_file (file (write))) +(neverallow recovery_refresh system_file (dir (write))) +(neverallow recovery_refresh system_file (lnk_file (write))) +(neverallow recovery_refresh system_file (chr_file (write))) +(neverallow recovery_refresh system_file (blk_file (write))) +(neverallow recovery_refresh system_file (sock_file (write))) +(neverallow recovery_refresh system_file (fifo_file (write))) +;;* lme + +;;* lmx 25 system/sepolicy/public/recovery_refresh.te + +(neverallow recovery_refresh system_data_file (file (write))) +(neverallow recovery_refresh system_data_file (dir (write))) +(neverallow recovery_refresh system_data_file (lnk_file (write))) +(neverallow recovery_refresh system_data_file (chr_file (write))) +(neverallow recovery_refresh system_data_file (blk_file (write))) +(neverallow recovery_refresh system_data_file (sock_file (write))) +(neverallow recovery_refresh system_data_file (fifo_file (write))) +(neverallow recovery_refresh app_data_file (file (write))) +(neverallow recovery_refresh app_data_file (dir (write))) +(neverallow recovery_refresh app_data_file (lnk_file (write))) +(neverallow recovery_refresh app_data_file (chr_file (write))) +(neverallow recovery_refresh app_data_file (blk_file (write))) +(neverallow recovery_refresh app_data_file (sock_file (write))) +(neverallow recovery_refresh app_data_file (fifo_file (write))) +;;* lme + +(allowx rild self (ioctl udp_socket (0x6900 0x6902))) +(allowx rild self (ioctl udp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(allowx rild self (ioctl udp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(allow rild self (netlink_route_socket (nlmsg_write))) +(allow rild kernel (system (module_request))) +(allow rild self (capability (setgid setuid setpcap net_admin net_raw))) +(allow rild alarm_device (chr_file (ioctl read write getattr lock append map open))) +(allow rild cgroup (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow rild cgroup (file (ioctl read getattr lock map open))) +(allow rild cgroup (lnk_file (ioctl read getattr lock map open))) +(allow rild radio_device (chr_file (ioctl read write getattr lock append map open))) +(allow rild radio_device (blk_file (ioctl read getattr lock map open))) +(allow rild mtd_device (dir (search))) +(allow rild efs_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow rild efs_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow rild shell_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow rild bluetooth_efs_file (file (ioctl read getattr lock map open))) +(allow rild bluetooth_efs_file (dir (ioctl read getattr lock search open))) +(allow rild sdcard_type (dir (ioctl read getattr lock search open))) +(allow rild property_socket (sock_file (write))) +(allow rild init (unix_stream_socket (connectto))) +(allow rild radio_prop (property_service (set))) +(allow rild radio_prop (file (ioctl read getattr lock map open))) +(allow rild tty_device (chr_file (ioctl read write getattr lock append map open))) +(allow rild self (netlink_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow rild self (netlink_generic_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow rild self (netlink_kobject_uevent_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow rild sysfs_wake_lock (file (ioctl read write getattr lock append map open))) +(allow rild self (capability2 (block_suspend))) +(allow rild proc (dir (ioctl read getattr lock search open))) +(allow rild proc (file (ioctl read getattr lock map open))) +(allow rild proc (lnk_file (ioctl read getattr lock map open))) +(allow rild proc_net (dir (ioctl read getattr lock search open))) +(allow rild proc_net (file (ioctl read getattr lock map open))) +(allow rild proc_net (lnk_file (ioctl read getattr lock map open))) +(allow rild sysfs_type (dir (ioctl read getattr lock search open))) +(allow rild sysfs_type (file (ioctl read getattr lock map open))) +(allow rild sysfs_type (lnk_file (ioctl read getattr lock map open))) +(allow rild system_file (dir (ioctl read getattr lock search open))) +(allow rild system_file (file (ioctl read getattr lock map open))) +(allow rild system_file (lnk_file (ioctl read getattr lock map open))) +(allow rild self (socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow runas adbd (fd (use))) +(allow runas adbd (process (sigchld))) +(allow runas adbd (unix_stream_socket (read write))) +(allow runas shell (fd (use))) +(allow runas shell (fifo_file (read write))) +(allow runas shell (unix_stream_socket (read write))) +(allow runas devpts (chr_file (ioctl read write))) +(allow runas shell_data_file (file (read write))) +(allow runas system_data_file (file (ioctl read getattr lock map open))) +(dontaudit runas self (capability (dac_override))) +(allow runas app_data_file (dir (getattr search))) +(allow runas self (capability (setgid setuid))) +(allow runas selinuxfs (dir (ioctl read getattr lock search open))) +(allow runas selinuxfs (file (ioctl read getattr lock map open))) +(allow runas selinuxfs (lnk_file (ioctl read getattr lock map open))) +(allow runas selinuxfs (file (write lock append map open))) +(allow runas kernel (security (check_context))) +(allow runas self (process (setcurrent))) +(allow runas base_typeattr_166 (process (dyntransition))) +(allow runas seapp_contexts_file (file (ioctl read getattr lock map open))) +;;* lmx 37 system/sepolicy/public/runas.te + +(neverallow runas self (capability (chown dac_override dac_read_search fowner fsetid kill setpcap linux_immutable net_bind_service net_broadcast net_admin net_raw ipc_lock ipc_owner sys_module sys_rawio sys_chroot sys_ptrace sys_pacct sys_admin sys_boot sys_nice sys_resource sys_time sys_tty_config mknod lease audit_write audit_control setfcap))) +;;* lme + +;;* lmx 38 system/sepolicy/public/runas.te + +(neverallow runas self (capability2 (mac_override mac_admin syslog wake_alarm block_suspend audit_read))) +;;* lme + +(allow sdcardd cgroup (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow sdcardd fuse_device (chr_file (ioctl read write getattr lock append map open))) +(allow sdcardd rootfs (dir (mounton))) +(allow sdcardd sdcardfs (filesystem (remount))) +(allow sdcardd tmpfs (dir (ioctl read getattr lock search open))) +(allow sdcardd mnt_media_rw_file (dir (ioctl read getattr lock search open))) +(allow sdcardd storage_file (dir (search))) +(allow sdcardd storage_stub_file (dir (mounton search))) +(allow sdcardd sdcard_type (filesystem (mount unmount))) +(allow sdcardd self (capability (dac_override setgid setuid sys_admin sys_resource))) +(allow sdcardd sdcard_type (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow sdcardd sdcard_type (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow sdcardd media_rw_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow sdcardd media_rw_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow sdcardd system_data_file (file (ioctl read getattr lock map open))) +(allow sdcardd install_data_file (file (ioctl read getattr lock map open))) +(allow sdcardd vold (fd (use))) +(allow sdcardd vold (fifo_file (read write getattr))) +(allow sdcardd mnt_expand_file (dir (search))) +(allow sdcardd proc (file (ioctl read getattr lock map open))) +;;* lmx 43 system/sepolicy/public/sdcardd.te + +(neverallow init sdcardd_exec (file (execute))) +;;* lme + +;;* lmx 44 system/sepolicy/public/sdcardd.te + +(neverallow init sdcardd (process (transition dyntransition))) +;;* lme + +(allow servicemanager self (binder (set_context_mgr))) +(allow servicemanager base_typeattr_167 (binder (transfer))) +(allow servicemanager service_contexts_file (file (ioctl read getattr lock map open))) +(allow servicemanager selinuxfs (dir (ioctl read getattr lock search open))) +(allow servicemanager selinuxfs (file (ioctl read getattr lock map open))) +(allow servicemanager selinuxfs (lnk_file (ioctl read getattr lock map open))) +(allow servicemanager selinuxfs (file (write lock append map open))) +(allow servicemanager kernel (security (compute_av))) +(allow servicemanager self (netlink_selinux_socket (read write create getattr setattr lock relabelfrom relabelto append bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(allow sgdisk block_device (dir (search))) +(allow sgdisk vold_device (blk_file (ioctl read write getattr lock append map open))) +(allow sgdisk devpts (chr_file (ioctl read write getattr))) +(allow sgdisk vold (fd (use))) +(allow sgdisk vold (fifo_file (read write getattr))) +(allow sgdisk self (capability (sys_admin))) +;;* lmx 21 system/sepolicy/public/sgdisk.te + +(neverallow base_typeattr_90 sgdisk (process (transition))) +;;* lme + +;;* lmx 22 system/sepolicy/public/sgdisk.te + +(neverallow base_typeattr_9 sgdisk (process (dyntransition))) +;;* lme + +;;* lmx 23 system/sepolicy/public/sgdisk.te + +(neverallow sgdisk base_typeattr_168 (file (entrypoint))) +;;* lme + +(allow shared_relro shared_relro_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow shared_relro shared_relro_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow shared_relro webviewupdate_service (service_manager (find))) +(allow shell logcat_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow shell logdr_socket (sock_file (write))) +(allow shell logd (unix_stream_socket (connectto))) +(allow shell logd_socket (sock_file (write))) +(allow shell logd (unix_stream_socket (connectto))) +(allow shell pstorefs (dir (search))) +(allow shell pstorefs (file (ioctl read getattr lock map open))) +(allow shell rootfs (dir (ioctl read getattr lock search open))) +(allow shell anr_data_file (dir (ioctl read getattr lock search open))) +(allow shell anr_data_file (file (ioctl read getattr lock map open))) +(allow shell shell_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow shell shell_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow shell shell_data_file (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow shell shell_data_file (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow shell profman_dump_data_file (dir (write getattr remove_name search))) +(allow shell profman_dump_data_file (file (getattr unlink))) +(allow shell dumpstate_socket (sock_file (write))) +(allow shell dumpstate (unix_stream_socket (connectto))) +(allow shell devpts (chr_file (ioctl read write getattr lock append map open))) +(allow shell tty_device (chr_file (ioctl read write getattr lock append map open))) +(allow shell console_device (chr_file (ioctl read write getattr lock append map open))) +(allow shell input_device (dir (ioctl read getattr lock search open))) +(allow shell input_device (chr_file (ioctl read write getattr lock append map open))) +(allow shell system_file (dir (ioctl read getattr lock search open))) +(allow shell system_file (file (ioctl read getattr lock map open))) +(allow shell system_file (lnk_file (ioctl read getattr lock map open))) +(allow shell system_file (file (getattr map execute execute_no_trans))) +(allow shell toolbox_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow shell tzdatacheck_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow shell shell_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow shell zygote_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow shell apk_data_file (dir (ioctl read getattr lock search open))) +(allow shell apk_data_file (file (ioctl read getattr lock map open))) +(allow shell apk_data_file (lnk_file (ioctl read getattr lock map open))) +(allow shell property_socket (sock_file (write))) +(allow shell init (unix_stream_socket (connectto))) +(allow shell shell_prop (property_service (set))) +(allow shell shell_prop (file (ioctl read getattr lock map open))) +(allow shell property_socket (sock_file (write))) +(allow shell init (unix_stream_socket (connectto))) +(allow shell ctl_bugreport_prop (property_service (set))) +(allow shell ctl_bugreport_prop (file (ioctl read getattr lock map open))) +(allow shell property_socket (sock_file (write))) +(allow shell init (unix_stream_socket (connectto))) +(allow shell ctl_dumpstate_prop (property_service (set))) +(allow shell ctl_dumpstate_prop (file (ioctl read getattr lock map open))) +(allow shell property_socket (sock_file (write))) +(allow shell init (unix_stream_socket (connectto))) +(allow shell dumpstate_prop (property_service (set))) +(allow shell dumpstate_prop (file (ioctl read getattr lock map open))) +(allow shell property_socket (sock_file (write))) +(allow shell init (unix_stream_socket (connectto))) +(allow shell debug_prop (property_service (set))) +(allow shell debug_prop (file (ioctl read getattr lock map open))) +(allow shell property_socket (sock_file (write))) +(allow shell init (unix_stream_socket (connectto))) +(allow shell powerctl_prop (property_service (set))) +(allow shell powerctl_prop (file (ioctl read getattr lock map open))) +(allow shell property_socket (sock_file (write))) +(allow shell init (unix_stream_socket (connectto))) +(allow shell log_tag_prop (property_service (set))) +(allow shell log_tag_prop (file (ioctl read getattr lock map open))) +(allow shell property_socket (sock_file (write))) +(allow shell init (unix_stream_socket (connectto))) +(allow shell wifi_log_prop (property_service (set))) +(allow shell wifi_log_prop (file (ioctl read getattr lock map open))) +(allow shell serialno_prop (file (ioctl read getattr lock map open))) +(allow shell device_logging_prop (file (ioctl read getattr lock map open))) +(allow shell servicemanager (service_manager (list))) +(allow shell base_typeattr_169 (service_manager (find))) +(allow shell dumpstate (binder (call))) +(allow shell hwservicemanager (binder (call transfer))) +(allow hwservicemanager shell (binder (call transfer))) +(allow hwservicemanager shell (dir (search))) +(allow hwservicemanager shell (file (read open))) +(allow hwservicemanager shell (process (getattr))) +(allow shell hwservicemanager (hwservice_manager (list))) +(allow shell proc (dir (ioctl read getattr lock search open))) +(allow shell proc (file (ioctl read getattr lock map open))) +(allow shell proc (lnk_file (ioctl read getattr lock map open))) +(allow shell proc_net (dir (ioctl read getattr lock search open))) +(allow shell proc_net (file (ioctl read getattr lock map open))) +(allow shell proc_net (lnk_file (ioctl read getattr lock map open))) +(allow shell proc_interrupts (file (ioctl read getattr lock map open))) +(allow shell proc_meminfo (file (ioctl read getattr lock map open))) +(allow shell proc_stat (file (ioctl read getattr lock map open))) +(allow shell proc_timer (file (ioctl read getattr lock map open))) +(allow shell proc_zoneinfo (file (ioctl read getattr lock map open))) +(allow shell cgroup (dir (ioctl read getattr lock search open))) +(allow shell cgroup (file (ioctl read getattr lock map open))) +(allow shell cgroup (lnk_file (ioctl read getattr lock map open))) +(allow shell domain (dir (read getattr search open))) +(allow shell domain (file (read getattr open))) +(allow shell domain (lnk_file (read getattr open))) +(allow shell labeledfs (filesystem (getattr))) +(allow shell proc (filesystem (getattr))) +(allow shell device (dir (getattr))) +(allow shell domain (process (getattr))) +(allow shell selinuxfs (dir (ioctl read getattr lock search open))) +(allow shell selinuxfs (file (ioctl read getattr lock map open))) +(allow shell bootchart_data_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow shell bootchart_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow shell self (process (ptrace))) +(allow shell sysfs_batteryinfo (file (ioctl read getattr lock map open))) +(allow shell sysfs (dir (ioctl read getattr lock search open))) +(allow shell ion_device (chr_file (ioctl read write getattr lock append map open))) +(allow shell dev_type (dir (ioctl read getattr lock search open))) +(allow shell dev_type (chr_file (getattr))) +(allow shell proc (lnk_file (getattr))) +(allow shell dev_type (blk_file (getattr))) +(allow shell file_contexts_file (file (ioctl read getattr lock map open))) +(allow shell property_contexts_file (file (ioctl read getattr lock map open))) +(allow shell seapp_contexts_file (file (ioctl read getattr lock map open))) +(allow shell service_contexts_file (file (ioctl read getattr lock map open))) +(allow shell sepolicy_file (file (ioctl read getattr lock map open))) +;;* lmx 170 system/sepolicy/public/shell.te + +(neverallow shell file_type (file (link))) +;;* lme + +;;* lmx 173 system/sepolicy/public/shell.te + +(neverallowx shell domain (ioctl tcp_socket (0x6900 0x6902))) +(neverallowx shell domain (ioctl udp_socket (0x6900 0x6902))) +(neverallowx shell domain (ioctl rawip_socket (0x6900 0x6902))) +;;* lme + +;;* lmx 173 system/sepolicy/public/shell.te + +(neverallowx shell domain (ioctl tcp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx shell domain (ioctl udp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx shell domain (ioctl rawip_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +;;* lme + +;;* lmx 173 system/sepolicy/public/shell.te + +(neverallowx shell domain (ioctl tcp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx shell domain (ioctl udp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx shell domain (ioctl rawip_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +;;* lme + +;;* lmx 182 system/sepolicy/public/shell.te + +(neverallow shell hw_random_device (chr_file (ioctl read write create setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow shell kmem_device (chr_file (ioctl read write create setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow shell port_device (chr_file (ioctl read write create setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow shell fuse_device (chr_file (ioctl read write create setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +;;* lmx 185 system/sepolicy/public/shell.te + +(neverallow shell dev_type (blk_file (ioctl read write create setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +;;* lme + +(allow slideshow kmsg_device (chr_file (ioctl read write getattr lock append map open))) +(allow slideshow sysfs_wake_lock (file (ioctl read write getattr lock append map open))) +(allow slideshow self (capability2 (block_suspend))) +(allow slideshow device (dir (ioctl read getattr lock search open))) +(allow slideshow self (capability (sys_tty_config))) +(allow slideshow graphics_device (dir (ioctl read getattr lock search open))) +(allow slideshow graphics_device (chr_file (ioctl read write getattr lock append map open))) +(allow slideshow input_device (dir (ioctl read getattr lock search open))) +(allow slideshow input_device (chr_file (ioctl read getattr lock map open))) +(allow slideshow tty_device (chr_file (ioctl read write getattr lock append map open))) +(allow thermalserviced servicemanager (binder (call transfer))) +(allow servicemanager thermalserviced (dir (search))) +(allow servicemanager thermalserviced (file (read open))) +(allow servicemanager thermalserviced (process (getattr))) +(allow thermalserviced thermal_service (service_manager (add find))) +;;* lmx 7 system/sepolicy/public/thermalserviced.te + +(neverallow base_typeattr_170 thermal_service (service_manager (add))) +;;* lme + +(allow thermalserviced hwservicemanager (binder (call transfer))) +(allow hwservicemanager thermalserviced (binder (call transfer))) +(allow hwservicemanager thermalserviced (dir (search))) +(allow hwservicemanager thermalserviced (file (read open))) +(allow hwservicemanager thermalserviced (process (getattr))) +(allow thermalserviced thermalcallback_hwservice (hwservice_manager (add find))) +(allow thermalserviced hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 11 system/sepolicy/public/thermalserviced.te + +(neverallow base_typeattr_170 thermalcallback_hwservice (hwservice_manager (add))) +;;* lme + +(allow tombstoned domain (fd (use))) +(allow tombstoned domain (fifo_file (write))) +(allow tombstoned domain (dir (ioctl read getattr lock search open))) +(allow tombstoned domain (file (ioctl read getattr lock map open))) +(allow tombstoned tombstone_data_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow tombstoned tombstone_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow tombstoned anr_data_file (file (write append))) +(auditallow tombstoned anr_data_file (file (write append))) +(allow tombstoned anr_data_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow tombstoned anr_data_file (file (create getattr open))) +(allow toolbox tmpfs (chr_file (ioctl read write))) +(allow toolbox devpts (chr_file (ioctl read write getattr))) +(allow toolbox block_device (dir (search))) +(allow toolbox swap_block_device (blk_file (ioctl read write getattr lock append map open))) +;;* lmx 23 system/sepolicy/public/toolbox.te + +(neverallow base_typeattr_15 toolbox (process (transition))) +;;* lme + +;;* lmx 24 system/sepolicy/public/toolbox.te + +(neverallow base_typeattr_9 toolbox (process (dyntransition))) +;;* lme + +;;* lmx 25 system/sepolicy/public/toolbox.te + +(neverallow toolbox base_typeattr_171 (file (entrypoint))) +;;* lme + +(allow tzdatacheck zoneinfo_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow tzdatacheck zoneinfo_data_file (file (unlink))) +;;* lmx 18 system/sepolicy/public/tzdatacheck.te + +(neverallow base_typeattr_172 zoneinfo_data_file (file (write create setattr relabelfrom append unlink link rename))) +;;* lme + +;;* lmx 19 system/sepolicy/public/tzdatacheck.te + +(neverallow base_typeattr_172 zoneinfo_data_file (dir (write create setattr relabelfrom link rename add_name remove_name reparent rmdir))) +;;* lme + +(allow ueventd kmsg_device (chr_file (ioctl read write getattr lock append map open))) +(allow ueventd self (capability (chown dac_override fowner fsetid setgid net_admin sys_rawio mknod))) +(allow ueventd device (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow ueventd rootfs (dir (ioctl read getattr lock search open))) +(allow ueventd rootfs (file (ioctl read getattr lock map open))) +(allow ueventd rootfs (lnk_file (ioctl read getattr lock map open))) +(allow ueventd sysfs_type (file (write lock append map open))) +(allow ueventd sysfs_type (dir (ioctl read getattr lock search open))) +(allow ueventd sysfs_type (file (ioctl read getattr lock map open))) +(allow ueventd sysfs_type (lnk_file (ioctl read getattr lock map open))) +(allow ueventd sysfs_type (file (setattr relabelfrom relabelto))) +(allow ueventd sysfs_type (lnk_file (setattr relabelfrom relabelto))) +(allow ueventd sysfs_type (dir (setattr relabelfrom relabelto))) +(allow ueventd tmpfs (chr_file (ioctl read write getattr lock append map open))) +(allow ueventd dev_type (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow ueventd dev_type (lnk_file (create unlink))) +(allow ueventd dev_type (chr_file (create getattr setattr unlink))) +(allow ueventd dev_type (blk_file (create getattr setattr relabelfrom relabelto unlink))) +(allow ueventd self (netlink_kobject_uevent_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow ueventd efs_file (dir (search))) +(allow ueventd efs_file (file (ioctl read getattr lock map open))) +(allow ueventd selinuxfs (dir (ioctl read getattr lock search open))) +(allow ueventd selinuxfs (file (ioctl read getattr lock map open))) +(allow ueventd selinuxfs (lnk_file (ioctl read getattr lock map open))) +(allow ueventd base_typeattr_173 (dir (ioctl read getattr lock search open))) +(allow ueventd base_typeattr_173 (file (ioctl read getattr lock map open))) +(allow ueventd base_typeattr_173 (lnk_file (ioctl read getattr lock map open))) +(allow ueventd file_contexts_file (file (ioctl read getattr lock map open))) +(allow ueventd self (process (setfscreate))) +;;* lmx 46 system/sepolicy/public/ueventd.te + +(neverallow ueventd property_socket (sock_file (write))) +;;* lme + +;;* lmx 47 system/sepolicy/public/ueventd.te + +(neverallow ueventd init (unix_stream_socket (connectto))) +;;* lme + +;;* lmx 48 system/sepolicy/public/ueventd.te + +(neverallow ueventd property_type (property_service (set))) +;;* lme + +;;* lmx 51 system/sepolicy/public/ueventd.te + +(neverallow ueventd dev_type (blk_file (ioctl read write lock append map link rename execute quotaon mounton open audit_access execmod))) +;;* lme + +;;* lmx 54 system/sepolicy/public/ueventd.te + +(neverallow ueventd kmem_device (chr_file (ioctl read write lock relabelfrom append map link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow ueventd port_device (chr_file (ioctl read write lock relabelfrom append map link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +(allow uncrypt self (capability (dac_override))) +(allow uncrypt app_data_file (dir (ioctl read getattr lock search open))) +(allow uncrypt app_data_file (file (ioctl read getattr lock map open))) +(allow uncrypt app_data_file (lnk_file (ioctl read getattr lock map open))) +(allow uncrypt cache_file (dir (search))) +(allow uncrypt cache_recovery_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow uncrypt cache_recovery_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow uncrypt ota_package_file (dir (ioctl read getattr lock search open))) +(allow uncrypt ota_package_file (file (ioctl read getattr lock map open))) +(allow uncrypt uncrypt_socket (sock_file (write))) +(allow uncrypt uncrypt (unix_stream_socket (connectto))) +(allow uncrypt property_socket (sock_file (write))) +(allow uncrypt init (unix_stream_socket (connectto))) +(allow uncrypt powerctl_prop (property_service (set))) +(allow uncrypt powerctl_prop (file (ioctl read getattr lock map open))) +(allow uncrypt self (capability (sys_rawio))) +(allow uncrypt misc_block_device (blk_file (write lock append map open))) +(allow uncrypt block_device (dir (ioctl read getattr lock search open))) +(allow uncrypt userdata_block_device (blk_file (write lock append map open))) +(allow uncrypt rootfs (dir (ioctl read getattr lock search open))) +(allow uncrypt rootfs (file (ioctl read getattr lock map open))) +(allow uncrypt rootfs (lnk_file (ioctl read getattr lock map open))) +(allow update_engine qtaguid_proc (file (ioctl read write getattr lock append map open))) +(allow update_engine qtaguid_device (chr_file (ioctl read getattr lock map open))) +(allow update_engine self (process (setsched))) +(allow update_engine self (capability (fowner sys_admin))) +(allow update_engine kmsg_device (chr_file (write lock append map open))) +(allow update_engine update_engine_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow update_engine sysfs_wake_lock (file (ioctl read write getattr lock append map open))) +(allow update_engine self (capability2 (block_suspend))) +(dontaudit update_engine kernel (process (setsched))) +(allow update_engine update_engine_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow update_engine update_engine_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(dontaudit update_engine kernel (system (module_request))) +(allow update_engine servicemanager (binder (call transfer))) +(allow servicemanager update_engine (dir (search))) +(allow servicemanager update_engine (file (read open))) +(allow servicemanager update_engine (process (getattr))) +(allow update_engine update_engine_service (service_manager (add find))) +;;* lmx 31 system/sepolicy/public/update_engine.te + +(neverallow base_typeattr_174 update_engine_service (service_manager (add))) +;;* lme + +(allow update_engine priv_app (binder (call transfer))) +(allow priv_app update_engine (binder (transfer))) +(allow update_engine priv_app (fd (use))) +(allow update_engine ota_package_file (file (ioctl read getattr lock map open))) +(allow update_engine ota_package_file (dir (ioctl read getattr lock search open))) +(allow update_engine app_data_file (file (ioctl read getattr lock map open))) +(allow update_engine app_data_file (dir (ioctl read getattr lock search open))) +(allow update_engine self (capability (dac_override dac_read_search))) +(allow update_engine_common block_device (dir (search))) +(allow update_engine_common boot_block_device (blk_file (ioctl read write getattr lock append map open))) +(allow update_engine_common system_block_device (blk_file (ioctl read write getattr lock append map open))) +(allow update_engine_common misc_block_device (blk_file (ioctl read write getattr lock append map open))) +(allow update_engine_common rootfs (dir (getattr))) +(allow update_engine_common rootfs (file (ioctl read getattr lock map open))) +(allow update_engine_common postinstall_mnt_dir (dir (getattr mounton search))) +(allow update_engine_common postinstall_file (filesystem (mount unmount relabelfrom relabelto))) +(allow update_engine_common labeledfs (filesystem (relabelfrom))) +(allow update_engine_common postinstall_file (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow update_engine_common postinstall_file (lnk_file (ioctl read getattr lock map open))) +(allow update_engine_common postinstall_file (dir (ioctl read getattr lock search open))) +(allow update_engine_common cache_file (dir (ioctl read getattr lock search open))) +(allow update_engine_common cache_file (file (ioctl read getattr lock map open))) +(allow update_engine_common cache_file (lnk_file (ioctl read getattr lock map open))) +(allow update_engine_common shell_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow update_engine_common postinstall (process (sigkill sigstop signal))) +(allow update_engine proc (file (ioctl read getattr lock map open))) +(allow update_engine proc_misc (file (ioctl read getattr lock map open))) +(allow update_engine system_file (dir (ioctl read getattr lock search open))) +(allow update_verifier block_device (dir (search))) +(allow update_verifier ota_package_file (dir (ioctl read getattr lock search open))) +(allow update_verifier ota_package_file (file (ioctl read getattr lock map open))) +(allow update_verifier dm_device (blk_file (ioctl read getattr lock map open))) +(allow update_verifier property_socket (sock_file (write))) +(allow update_verifier init (unix_stream_socket (connectto))) +(allow update_verifier powerctl_prop (property_service (set))) +(allow update_verifier powerctl_prop (file (ioctl read getattr lock map open))) +(allow vdc vold_socket (sock_file (write))) +(allow vdc vold (unix_stream_socket (connectto))) +(allow vdc dumpstate (fd (use))) +(allow vdc dumpstate (unix_stream_socket (read write getattr))) +(allow vdc shell_data_file (file (write getattr))) +(allow vdc dumpstate (unix_dgram_socket (read write))) +(allow vdc devpts (chr_file (ioctl read write getattr lock append map open))) +(allow vdc kmsg_device (chr_file (write lock append map open))) +;;* lmx 8 system/sepolicy/public/vendor_toolbox.te + +(neverallow base_typeattr_175 vendor_toolbox_exec (file (execute execute_no_trans entrypoint))) +;;* lme + +(allow virtual_touchpad servicemanager (binder (call transfer))) +(allow servicemanager virtual_touchpad (dir (search))) +(allow servicemanager virtual_touchpad (file (read open))) +(allow servicemanager virtual_touchpad (process (getattr))) +(allow virtual_touchpad virtual_touchpad_service (service_manager (add find))) +;;* lmx 6 system/sepolicy/public/virtual_touchpad.te + +(neverallow base_typeattr_176 virtual_touchpad_service (service_manager (add))) +;;* lme + +(allow virtual_touchpad system_server (binder (call transfer))) +(allow system_server virtual_touchpad (binder (transfer))) +(allow virtual_touchpad system_server (fd (use))) +(allow virtual_touchpad uhid_device (chr_file (ioctl write lock append map open))) +(allow virtual_touchpad permission_service (service_manager (find))) +(allow vold cache_file (dir (ioctl read getattr lock search open))) +(allow vold cache_file (file (read getattr))) +(allow vold cache_file (lnk_file (ioctl read getattr lock map open))) +(allow vold proc (dir (ioctl read getattr lock search open))) +(allow vold proc (file (ioctl read getattr lock map open))) +(allow vold proc (lnk_file (ioctl read getattr lock map open))) +(allow vold proc_net (dir (ioctl read getattr lock search open))) +(allow vold proc_net (file (ioctl read getattr lock map open))) +(allow vold proc_net (lnk_file (ioctl read getattr lock map open))) +(allow vold sysfs_type (dir (ioctl read getattr lock search open))) +(allow vold sysfs_type (file (ioctl read getattr lock map open))) +(allow vold sysfs_type (lnk_file (ioctl read getattr lock map open))) +(allow vold sysfs (file (write lock append map open))) +(allow vold sysfs_usb (file (write lock append map open))) +(allow vold sysfs_zram_uevent (file (write lock append map open))) +(allow vold rootfs (dir (ioctl read getattr lock search open))) +(allow vold rootfs (file (ioctl read getattr lock map open))) +(allow vold rootfs (lnk_file (ioctl read getattr lock map open))) +(allow vold proc_meminfo (file (ioctl read getattr lock map open))) +(allow vold file_contexts_file (file (ioctl read getattr lock map open))) +(allow vold self (process (setexec))) +(allow vold shell_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow vold e2fs_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow vold self (process (setfscreate))) +(allow vold system_file (file (getattr map execute execute_no_trans))) +(allow vold block_device (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow vold device (dir (write))) +(allow vold devpts (chr_file (ioctl read write getattr lock append map open))) +(allow vold rootfs (dir (mounton))) +(allow vold sdcard_type (dir (mounton))) +(allow vold sdcard_type (filesystem (mount remount unmount))) +(allow vold sdcard_type (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow vold sdcard_type (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow vold sdcard_type (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow vold mnt_media_rw_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow vold storage_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow vold sdcard_type (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow vold mnt_media_rw_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow vold storage_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow vold media_rw_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow vold media_rw_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow vold mnt_media_rw_stub_file (dir (create getattr setattr mounton rmdir))) +(allow vold storage_stub_file (dir (create getattr setattr mounton rmdir))) +(allow vold mnt_user_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow vold mnt_user_file (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow vold mnt_expand_file (dir (ioctl read write create getattr setattr lock rename mounton add_name remove_name reparent search rmdir open))) +(allow vold apk_data_file (dir (create getattr setattr))) +(allow vold shell_data_file (dir (create getattr setattr))) +(allow vold tmpfs (filesystem (mount unmount))) +(allow vold tmpfs (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow vold tmpfs (dir (mounton))) +(allow vold self (capability (chown dac_override fowner fsetid net_admin sys_admin mknod))) +(allow vold self (netlink_kobject_uevent_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow vold app_data_file (dir (search))) +(allow vold app_data_file (file (ioctl read write getattr lock append map open))) +(allow vold loop_control_device (chr_file (ioctl read write getattr lock append map open))) +(allow vold loop_device (blk_file (ioctl read write create getattr setattr lock append map unlink open))) +(allow vold vold_device (blk_file (ioctl read write create getattr setattr lock append map unlink open))) +(allow vold dm_device (chr_file (ioctl read write getattr lock append map open))) +(allow vold dm_device (blk_file (ioctl read write getattr lock append map open))) +(allow vold domain (dir (ioctl read getattr lock search open))) +(allow vold domain (file (ioctl read getattr lock map open))) +(allow vold domain (lnk_file (ioctl read getattr lock map open))) +(allow vold domain (process (sigkill signal))) +(allow vold self (capability (kill sys_ptrace))) +(allow vold sysfs (file (ioctl read write getattr lock append map open))) +(allow vold kmsg_device (chr_file (ioctl read write getattr lock append map open))) +(allow vold fsck_exec (file (ioctl read getattr lock map execute open))) +(allow vold fscklogs (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow vold fscklogs (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow vold labeledfs (filesystem (mount unmount))) +(allow vold efs_file (file (ioctl read write getattr lock append map open))) +(allow vold system_data_file (dir (ioctl read write create getattr setattr lock mounton add_name remove_name search rmdir open))) +(allow vold kernel (process (setsched))) +(allow vold property_socket (sock_file (write))) +(allow vold init (unix_stream_socket (connectto))) +(allow vold vold_prop (property_service (set))) +(allow vold vold_prop (file (ioctl read getattr lock map open))) +(allow vold property_socket (sock_file (write))) +(allow vold init (unix_stream_socket (connectto))) +(allow vold powerctl_prop (property_service (set))) +(allow vold powerctl_prop (file (ioctl read getattr lock map open))) +(allow vold property_socket (sock_file (write))) +(allow vold init (unix_stream_socket (connectto))) +(allow vold ctl_fuse_prop (property_service (set))) +(allow vold ctl_fuse_prop (file (ioctl read getattr lock map open))) +(allow vold property_socket (sock_file (write))) +(allow vold init (unix_stream_socket (connectto))) +(allow vold restorecon_prop (property_service (set))) +(allow vold restorecon_prop (file (ioctl read getattr lock map open))) +(allow vold asec_image_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow vold asec_image_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow vold asec_apk_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto rename mounton add_name remove_name reparent search rmdir open))) +(allow vold asec_public_file (dir (setattr relabelto))) +(allow vold asec_apk_file (file (ioctl read getattr setattr lock relabelfrom relabelto map open))) +(allow vold asec_public_file (file (setattr relabelto))) +(allow vold unlabeled (dir (ioctl read getattr setattr lock relabelfrom search open))) +(allow vold unlabeled (file (ioctl read getattr setattr lock relabelfrom map open))) +(allow vold sysfs_wake_lock (file (ioctl read write getattr lock append map open))) +(allow vold self (capability2 (block_suspend))) +(allow vold servicemanager (binder (call transfer))) +(allow servicemanager vold (dir (search))) +(allow servicemanager vold (file (read open))) +(allow servicemanager vold (process (getattr))) +(allow vold healthd (binder (call transfer))) +(allow healthd vold (binder (transfer))) +(allow vold healthd (fd (use))) +(allow vold userdata_block_device (blk_file (ioctl read write getattr lock append map open))) +(allow vold metadata_block_device (blk_file (ioctl read write getattr lock append map open))) +(allow vold unencrypted_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow vold unencrypted_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow vold proc_drop_caches (file (write lock append map open))) +(allow vold vold_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow vold vold_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow vold init (key (write search setattr))) +(allow vold vold (key (write search setattr))) +(allow vold self (capability (sys_nice))) +(allow vold self (capability (sys_chroot))) +(allow vold storage_file (dir (mounton))) +(allow vold fuse_device (chr_file (ioctl read write getattr lock append map open))) +(allow vold fuse (filesystem (relabelfrom))) +(allow vold app_fusefs (filesystem (relabelfrom relabelto))) +(allow vold app_fusefs (filesystem (mount unmount))) +(allow vold toolbox_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow vold user_profile_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow vold misc_block_device (blk_file (write lock append map open))) +;;* lmx 184 system/sepolicy/public/vold.te + +(neverallow base_typeattr_90 vold_data_file (dir (write lock relabelfrom append map unlink link rename execute quotaon mounton add_name remove_name reparent rmdir audit_access execmod))) +;;* lme + +;;* lmx 185 system/sepolicy/public/vold.te + +(neverallow base_typeattr_177 vold_data_file (file (ioctl read write create setattr lock relabelfrom append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow base_typeattr_177 vold_data_file (lnk_file (ioctl read write create setattr lock relabelfrom append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow base_typeattr_177 vold_data_file (sock_file (ioctl read write create setattr lock relabelfrom append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow base_typeattr_177 vold_data_file (fifo_file (ioctl read write create setattr lock relabelfrom append map unlink link rename execute quotaon mounton open audit_access execmod))) +;;* lme + +;;* lmx 186 system/sepolicy/public/vold.te + +(neverallow base_typeattr_88 vold_data_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent search rmdir open audit_access execmod))) +;;* lme + +;;* lmx 187 system/sepolicy/public/vold.te + +(neverallow base_typeattr_178 vold_data_file (file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow base_typeattr_178 vold_data_file (lnk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow base_typeattr_178 vold_data_file (sock_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow base_typeattr_178 vold_data_file (fifo_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +;;* lme + +;;* lmx 188 system/sepolicy/public/vold.te + +(neverallow base_typeattr_88 restorecon_prop (property_service (set))) +;;* lme + +;;* lmx 190 system/sepolicy/public/vold.te + +(neverallow vold fsck_exec (file (execute_no_trans))) +;;* lme + +(allow vr_hwc servicemanager (binder (call transfer))) +(allow servicemanager vr_hwc (dir (search))) +(allow servicemanager vr_hwc (file (read open))) +(allow servicemanager vr_hwc (process (getattr))) +(allow vr_hwc surfaceflinger (binder (call transfer))) +(allow surfaceflinger vr_hwc (binder (transfer))) +(allow vr_hwc surfaceflinger (fd (use))) +(allow vr_hwc system_server (binder (call transfer))) +(allow system_server vr_hwc (binder (transfer))) +(allow vr_hwc system_server (fd (use))) +(allow vr_hwc vr_hwc_service (service_manager (add find))) +;;* lmx 14 system/sepolicy/public/vr_hwc.te + +(neverallow base_typeattr_179 vr_hwc_service (service_manager (add))) +;;* lme + +(allow vr_hwc hwservicemanager (binder (call transfer))) +(allow hwservicemanager vr_hwc (binder (call transfer))) +(allow hwservicemanager vr_hwc (dir (search))) +(allow hwservicemanager vr_hwc (file (read open))) +(allow hwservicemanager vr_hwc (process (getattr))) +(allow vr_hwc system_file (dir (ioctl read getattr lock search open))) +(allow vr_hwc ion_device (chr_file (ioctl read getattr lock map open))) +(allow vr_hwc pdx_display_client_endpoint_dir_type (dir (ioctl read getattr lock search open))) +(allow vr_hwc pdx_display_client_endpoint_socket_type (sock_file (ioctl read write getattr lock append map open))) +(allow vr_hwc pdx_display_client_endpoint_socket_type (unix_stream_socket (read write shutdown connectto))) +(allow vr_hwc pdx_display_client_channel_socket_type (unix_stream_socket (read write getattr setattr lock append getopt setopt shutdown))) +(allow vr_hwc pdx_display_client_server_type (fd (use))) +(allow pdx_display_client_server_type vr_hwc (fd (use))) +(allow vr_hwc permission_service (service_manager (find))) +(allow watchdogd watchdog_device (chr_file (ioctl read write getattr lock append map open))) +(allow watchdogd kmsg_device (chr_file (ioctl read write getattr lock append map open))) +(allow wificond servicemanager (binder (call transfer))) +(allow servicemanager wificond (dir (search))) +(allow servicemanager wificond (file (read open))) +(allow servicemanager wificond (process (getattr))) +(allow wificond system_server (binder (call transfer))) +(allow system_server wificond (binder (transfer))) +(allow wificond system_server (fd (use))) +(allow wificond wificond_service (service_manager (add find))) +;;* lmx 8 system/sepolicy/public/wificond.te + +(neverallow base_typeattr_180 wificond_service (service_manager (add))) +;;* lme + +(allow wificond property_socket (sock_file (write))) +(allow wificond init (unix_stream_socket (connectto))) +(allow wificond wifi_prop (property_service (set))) +(allow wificond wifi_prop (file (ioctl read getattr lock map open))) +(allow wificond property_socket (sock_file (write))) +(allow wificond init (unix_stream_socket (connectto))) +(allow wificond ctl_default_prop (property_service (set))) +(allow wificond ctl_default_prop (file (ioctl read getattr lock map open))) +(allow wificond self (udp_socket (ioctl read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allowx wificond self (ioctl udp_socket (0x8914))) +(allow wificond self (capability (net_admin net_raw))) +(allow wificond self (netlink_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow wificond self (netlink_generic_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow wificond proc_net (dir (ioctl read getattr lock search open))) +(allow wificond proc_net (file (ioctl read getattr lock map open))) +(allow wificond proc_net (lnk_file (ioctl read getattr lock map open))) +(allow wificond wifi_data_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow wificond wifi_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow wificond permission_service (service_manager (find))) +(allow wificond dumpstate (fd (use))) +(allow wificond dumpstate (fifo_file (write))) +(allow bootanim resourcecache_data_file (file (read))) +(allow init adbd_exec (file (read getattr map execute open))) +(allow init adbd (process (transition))) +(allow adbd adbd_exec (file (read getattr map execute entrypoint open))) +(dontaudit init adbd (process (noatsecure))) +(allow init adbd (process (siginh rlimitinh))) +(typetransition init adbd_exec process adbd) +(typetransition adbd tmpfs file adbd_tmpfs) +(allow adbd adbd_tmpfs (file (read write getattr))) +(allow adbd tmpfs (dir (getattr search))) +(allow adbd shell_exec (file (read getattr map execute open))) +(allow adbd shell (process (transition))) +(allow shell shell_exec (file (read getattr map execute entrypoint open))) +(allow shell adbd (process (sigchld))) +(dontaudit adbd shell (process (noatsecure))) +(allow adbd shell (process (siginh rlimitinh))) +(typetransition adbd shell_exec process shell) +(allow adbd shell (process (signal noatsecure))) +(allow adbd self (capability (setgid setuid))) +(allow adbd self (capability (setpcap))) +(allow adbd functionfs (dir (search))) +(allow adbd functionfs (file (ioctl read write getattr lock append map open))) +(allow adbd devpts (chr_file (ioctl read write getattr lock append map open))) +(allow adbd shell_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow adbd shell_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow adbd profman_dump_data_file (dir (ioctl read getattr lock search open))) +(allow adbd profman_dump_data_file (file (ioctl read getattr lock map open))) +(allow adbd tmpfs (dir (search))) +(allow adbd rootfs (lnk_file (ioctl read getattr lock map open))) +(allow adbd tmpfs (lnk_file (ioctl read getattr lock map open))) +(allow adbd sdcard_type (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow adbd sdcard_type (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow adbd anr_data_file (dir (ioctl read getattr lock search open))) +(allow adbd anr_data_file (file (ioctl read getattr lock map open))) +(allow adbd property_socket (sock_file (write))) +(allow adbd init (unix_stream_socket (connectto))) +(allow adbd shell_prop (property_service (set))) +(allow adbd shell_prop (file (ioctl read getattr lock map open))) +(allow adbd property_socket (sock_file (write))) +(allow adbd init (unix_stream_socket (connectto))) +(allow adbd powerctl_prop (property_service (set))) +(allow adbd powerctl_prop (file (ioctl read getattr lock map open))) +(allow adbd property_socket (sock_file (write))) +(allow adbd init (unix_stream_socket (connectto))) +(allow adbd ffs_prop (property_service (set))) +(allow adbd ffs_prop (file (ioctl read getattr lock map open))) +(allow adbd device_logging_prop (file (ioctl read getattr lock map open))) +(allow adbd serialno_prop (file (ioctl read getattr lock map open))) +(allow adbd system_file (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow adbd servicemanager (binder (call transfer))) +(allow servicemanager adbd (dir (search))) +(allow servicemanager adbd (file (read open))) +(allow servicemanager adbd (process (getattr))) +(allow adbd surfaceflinger (binder (call transfer))) +(allow surfaceflinger adbd (binder (transfer))) +(allow adbd surfaceflinger (fd (use))) +(allow adbd gpu_device (chr_file (ioctl read write getattr lock append map open))) +(allow adbd ion_device (chr_file (ioctl read write getattr lock append map open))) +(allow adbd system_file (dir (ioctl read getattr lock search open))) +(allow adbd system_file (file (ioctl read getattr lock map open))) +(allow adbd system_file (lnk_file (ioctl read getattr lock map open))) +(allow adbd adb_keys_file (dir (search))) +(allow adbd adb_keys_file (file (ioctl read getattr lock map open))) +(allow adbd app_data_file (dir (search))) +(allow adbd app_data_file (sock_file (write))) +(allow adbd appdomain (unix_stream_socket (connectto))) +(allow adbd zygote_exec (file (ioctl read getattr lock map open))) +(allow adbd system_file (file (ioctl read getattr lock map open))) +(allow adbd selinuxfs (dir (ioctl read getattr lock search open))) +(allow adbd selinuxfs (file (ioctl read getattr lock map open))) +(allow adbd kernel (security (read_policy))) +(allow adbd service_contexts_file (file (ioctl read getattr lock map open))) +(allow adbd file_contexts_file (file (ioctl read getattr lock map open))) +(allow adbd seapp_contexts_file (file (ioctl read getattr lock map open))) +(allow adbd property_contexts_file (file (ioctl read getattr lock map open))) +(allow adbd sepolicy_file (file (ioctl read getattr lock map open))) +(allow adbd config_gz (file (ioctl read getattr lock map open))) +(allow adbd surfaceflinger_service (service_manager (find))) +(allow adbd bootchart_data_file (dir (search))) +(allow adbd bootchart_data_file (file (ioctl read getattr lock map open))) +(allow adbd storage_file (dir (ioctl read getattr lock search open))) +(allow adbd storage_file (lnk_file (ioctl read getattr lock map open))) +(allow adbd mnt_user_file (dir (ioctl read getattr lock search open))) +(allow adbd mnt_user_file (lnk_file (ioctl read getattr lock map open))) +(allow adbd media_rw_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow adbd media_rw_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow adbd apk_data_file (dir (ioctl read getattr lock search open))) +(allow adbd apk_data_file (file (ioctl read getattr lock map open))) +(allow adbd apk_data_file (lnk_file (ioctl read getattr lock map open))) +(allow adbd rootfs (dir (ioctl read getattr lock search open))) +;;* lmx 142 system/sepolicy/private/adbd.te + +(neverallow adbd base_typeattr_181 (process (transition))) +;;* lme + +;;* lmx 143 system/sepolicy/private/adbd.te + +(neverallow adbd domain (process (dyntransition))) +;;* lme + +(allow appdomain zygote_tmpfs (file (read))) +(allow appdomain self (process (execmem))) +(allow appdomain ashmem_device (chr_file (execute))) +(allow appdomain zygote (fd (use))) +(allow appdomain zygote_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow appdomain zygote (process (sigchld))) +(allow appdomain cgroup (dir (write search))) +(allow appdomain cgroup (file (ioctl read write getattr lock append map open))) +(allow appdomain dalvikcache_data_file (dir (getattr search))) +(allow appdomain dalvikcache_data_file (file (ioctl read getattr lock map open))) +(allow base_typeattr_99 rootfs (lnk_file (ioctl read getattr lock map open))) +(allow base_typeattr_99 tmpfs (lnk_file (ioctl read getattr lock map open))) +(allow appdomain tmpfs (dir (ioctl read getattr lock search open))) +(allow appdomain zygote (fifo_file (write))) +(allow appdomain shell (process (sigchld))) +(allow appdomain adbd (process (sigchld))) +(allow appdomain devpts (chr_file (ioctl read write getattr))) +(allow appdomain system_server (fd (use))) +(allow appdomain system_server (fifo_file (ioctl read write getattr lock append map open))) +(allow appdomain system_server (unix_stream_socket (read write getattr getopt setopt shutdown))) +(allow appdomain system_server (tcp_socket (read write getattr getopt shutdown))) +(allow appdomain appdomain (fifo_file (ioctl read write getattr lock append map open))) +(allow appdomain surfaceflinger (unix_stream_socket (read write getattr getopt setopt shutdown))) +(allow base_typeattr_99 app_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow base_typeattr_99 app_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow base_typeattr_99 app_data_file (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow base_typeattr_99 app_data_file (sock_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow base_typeattr_99 app_data_file (fifo_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow appdomain mnt_expand_file (dir (ioctl read getattr lock search open))) +(allow appdomain keychain_data_file (dir (ioctl read getattr lock search open))) +(allow appdomain keychain_data_file (file (ioctl read getattr lock map open))) +(allow appdomain keychain_data_file (lnk_file (ioctl read getattr lock map open))) +(allow appdomain misc_user_data_file (dir (ioctl read getattr lock search open))) +(allow appdomain misc_user_data_file (file (ioctl read getattr lock map open))) +(allow base_typeattr_99 textclassifier_data_file (dir (ioctl read getattr lock search open))) +(allow base_typeattr_99 textclassifier_data_file (file (ioctl read getattr lock map open))) +(allow base_typeattr_99 textclassifier_data_file (lnk_file (ioctl read getattr lock map open))) +(allow appdomain oemfs (dir (ioctl read getattr lock search open))) +(allow appdomain oemfs (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow base_typeattr_182 shell_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow base_typeattr_182 toolbox_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow base_typeattr_182 system_file (file (getattr map execute execute_no_trans))) +(allow appdomain system_file (dir (ioctl read getattr lock search open))) +(allow appdomain system_file (lnk_file (read getattr open))) +(allow base_typeattr_99 vendor_file (dir (read open))) +(allow base_typeattr_182 vendor_app_file (dir (ioctl read getattr lock search open))) +(allow base_typeattr_182 vendor_app_file (file (ioctl read getattr lock map open))) +(allow base_typeattr_182 vendor_app_file (lnk_file (ioctl read getattr lock map open))) +(allow base_typeattr_182 vendor_app_file (file (execute))) +(allow appdomain vendor_overlay_file (dir (ioctl read getattr lock search open))) +(allow appdomain vendor_overlay_file (file (ioctl read getattr lock map open))) +(allow appdomain vendor_overlay_file (lnk_file (ioctl read getattr lock map open))) +(allow appdomain vendor_framework_file (dir (ioctl read getattr lock search open))) +(allow appdomain vendor_framework_file (file (ioctl read getattr lock map open))) +(allow appdomain vendor_framework_file (lnk_file (ioctl read getattr lock map open))) +(allow appdomain dex2oat_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow appdomain wallpaper_file (file (read write getattr))) +(allow appdomain ringtone_file (file (read write getattr))) +(allow appdomain shortcut_manager_icons (file (read getattr))) +(allow appdomain icon_file (file (read getattr))) +(allow appdomain anr_data_file (dir (search))) +(allow appdomain anr_data_file (file (append open))) +(allow appdomain tombstoned_java_trace_socket (sock_file (write))) +(allow appdomain tombstoned (unix_stream_socket (connectto))) +(allow appdomain tombstoned (fd (use))) +(allow appdomain dumpstate (fifo_file (append))) +(allow appdomain dumpstate (fd (use))) +(allow appdomain dumpstate (unix_stream_socket (read write getattr getopt shutdown))) +(allow appdomain dumpstate (fifo_file (write getattr))) +(allow appdomain shell_data_file (file (write getattr))) +(allow appdomain user_profile_data_file (dir (write add_name search))) +(allow appdomain user_profile_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow appdomain qtaguid_proc (file (ioctl read write getattr lock append map open))) +(allow base_typeattr_183 proc_net (dir (ioctl read getattr lock search open))) +(allow base_typeattr_183 proc_net (file (ioctl read getattr lock map open))) +(allow base_typeattr_183 proc_net (lnk_file (ioctl read getattr lock map open))) +(allow appdomain qtaguid_device (chr_file (ioctl read getattr lock map open))) +(allow base_typeattr_99 gpu_device (chr_file (ioctl read write getattr lock append map open))) +(allow appdomain servicemanager (binder (call transfer))) +(allow servicemanager appdomain (dir (search))) +(allow servicemanager appdomain (file (read open))) +(allow servicemanager appdomain (process (getattr))) +(allow appdomain binderservicedomain (binder (call transfer))) +(allow binderservicedomain appdomain (binder (transfer))) +(allow appdomain binderservicedomain (fd (use))) +(allow appdomain appdomain (binder (call transfer))) +(allow appdomain appdomain (binder (transfer))) +(allow appdomain appdomain (fd (use))) +(allow appdomain ephemeral_app (binder (call transfer))) +(allow ephemeral_app appdomain (binder (transfer))) +(allow appdomain ephemeral_app (fd (use))) +(allow base_typeattr_99 hwservicemanager (binder (call transfer))) +(allow hwservicemanager base_typeattr_99 (binder (call transfer))) +(allow hwservicemanager base_typeattr_99 (dir (search))) +(allow hwservicemanager base_typeattr_99 (file (read open))) +(allow hwservicemanager base_typeattr_99 (process (getattr))) +(allow base_typeattr_99 hal_omx_hwservice (hwservice_manager (find))) +(allow base_typeattr_99 hidl_token_hwservice (hwservice_manager (find))) +(allow appdomain hal_graphics_composer (fd (use))) +(allow appdomain appdomain (unix_stream_socket (read write getattr getopt shutdown))) +(allow appdomain backup_data_file (file (read write getattr))) +(allow appdomain cache_backup_file (file (read write getattr))) +(allow appdomain cache_backup_file (dir (getattr))) +(allow appdomain system_data_file (lnk_file (ioctl read getattr lock map open))) +(allow appdomain system_data_file (file (read getattr))) +(allow base_typeattr_99 media_rw_data_file (file (read getattr))) +(allow base_typeattr_99 radio_data_file (file (read write getattr))) +(allow base_typeattr_184 storage_file (dir (ioctl read getattr lock search open))) +(allow base_typeattr_184 storage_file (lnk_file (ioctl read getattr lock map open))) +(allow base_typeattr_184 mnt_user_file (dir (ioctl read getattr lock search open))) +(allow base_typeattr_184 mnt_user_file (lnk_file (ioctl read getattr lock map open))) +(allow base_typeattr_184 fuse (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow base_typeattr_184 fuse (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow base_typeattr_184 sdcardfs (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow base_typeattr_184 sdcardfs (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow base_typeattr_184 vfat (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow base_typeattr_184 media_rw_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow base_typeattr_184 vfat (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow base_typeattr_184 media_rw_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow base_typeattr_184 vfat (dir (ioctl read getattr lock search open))) +(allow base_typeattr_184 vfat (file (ioctl read write getattr lock append map open))) +(allow base_typeattr_184 usb_device (chr_file (ioctl read write getattr))) +(allow base_typeattr_184 usbaccessory_device (chr_file (read write getattr))) +(allow appdomain dalvikcache_data_file (file (execute))) +(allow appdomain dalvikcache_data_file (lnk_file (ioctl read getattr lock map open))) +(allow appdomain shared_relro_file (dir (search))) +(allow appdomain shared_relro_file (file (ioctl read getattr lock map open))) +(allow appdomain apk_data_file (dir (ioctl read getattr lock search open))) +(allow appdomain apk_data_file (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow appdomain resourcecache_data_file (file (ioctl read getattr lock map open))) +(allow appdomain resourcecache_data_file (dir (ioctl read getattr lock search open))) +(allow appdomain logcat_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow appdomain logdr_socket (sock_file (write))) +(allow appdomain logd (unix_stream_socket (connectto))) +(allow base_typeattr_185 logd_socket (sock_file (write))) +(allow base_typeattr_185 logd (unix_stream_socket (connectto))) +(allow appdomain zygote (unix_dgram_socket (write))) +(allow base_typeattr_184 keystore (keystore_key (get_state get insert delete exist list sign verify))) +(allow keystore base_typeattr_184 (dir (search))) +(allow keystore base_typeattr_184 (file (read open))) +(allow keystore base_typeattr_184 (process (getattr))) +(allow base_typeattr_184 keystore_service (service_manager (find))) +(allow base_typeattr_184 keystore (binder (call transfer))) +(allow keystore base_typeattr_184 (binder (transfer))) +(allow base_typeattr_184 keystore (fd (use))) +(allow appdomain console_device (chr_file (read write))) +(allowx base_typeattr_186 self (ioctl tcp_socket ((range 0x5401 0x5403) 0x540b (range 0x540e 0x5411) (range 0x5413 0x5414) 0x5451))) +(allowx base_typeattr_186 self (ioctl udp_socket ((range 0x5401 0x5403) 0x540b (range 0x540e 0x5411) (range 0x5413 0x5414) 0x5451))) +(allowx base_typeattr_186 self (ioctl rawip_socket ((range 0x5401 0x5403) 0x540b (range 0x540e 0x5411) (range 0x5413 0x5414) 0x5451))) +(allowx base_typeattr_186 self (ioctl tcp_socket ((range 0x8906 0x8907) 0x8910 (range 0x8912 0x8913) 0x8915 0x8917 0x8919 0x891b 0x8921 0x8933 0x8938 0x8942))) +(allowx base_typeattr_186 self (ioctl udp_socket ((range 0x8906 0x8907) 0x8910 (range 0x8912 0x8913) 0x8915 0x8917 0x8919 0x891b 0x8921 0x8933 0x8938 0x8942))) +(allowx base_typeattr_186 self (ioctl rawip_socket ((range 0x8906 0x8907) 0x8910 (range 0x8912 0x8913) 0x8915 0x8917 0x8919 0x891b 0x8921 0x8933 0x8938 0x8942))) +(allowx base_typeattr_186 self (ioctl tcp_socket (0x8b01 0x8b05 0x8b07 0x8b09 0x8b0b 0x8b0d 0x8b0f (range 0x8b11 0x8b13) 0x8b21 0x8b23 0x8b25 0x8b27 0x8b29 0x8b2d))) +(allowx base_typeattr_186 self (ioctl udp_socket (0x8b01 0x8b05 0x8b07 0x8b09 0x8b0b 0x8b0d 0x8b0f (range 0x8b11 0x8b13) 0x8b21 0x8b23 0x8b25 0x8b27 0x8b29 0x8b2d))) +(allowx base_typeattr_186 self (ioctl rawip_socket (0x8b01 0x8b05 0x8b07 0x8b09 0x8b0b 0x8b0d 0x8b0f (range 0x8b11 0x8b13) 0x8b21 0x8b23 0x8b25 0x8b27 0x8b29 0x8b2d))) +(allow base_typeattr_99 ion_device (chr_file (ioctl read write getattr lock append map open))) +(auditallow appdomain ion_device (chr_file (write append))) +(allow base_typeattr_99 hwservicemanager_prop (file (ioctl read getattr lock map open))) +(allow base_typeattr_99 mediacodec (binder (call transfer))) +(allow mediacodec base_typeattr_99 (binder (transfer))) +(allow base_typeattr_99 mediacodec (fd (use))) +(allow base_typeattr_99 hal_audio (fd (use))) +(allow base_typeattr_99 hal_camera (fd (use))) +(allow base_typeattr_99 hal_renderscript_hwservice (hwservice_manager (find))) +(allow appdomain proc_meminfo (file (ioctl read getattr lock map open))) +(allow appdomain app_fuse_file (file (read write getattr append))) +(allow base_typeattr_184 pdx_display_client_endpoint_dir_type (dir (ioctl read getattr lock search open))) +(allow base_typeattr_184 pdx_display_client_endpoint_socket_type (sock_file (ioctl read write getattr lock append map open))) +(allow base_typeattr_184 pdx_display_client_endpoint_socket_type (unix_stream_socket (read write shutdown connectto))) +(allow base_typeattr_184 pdx_display_client_channel_socket_type (unix_stream_socket (read write getattr setattr lock append getopt setopt shutdown))) +(allow base_typeattr_184 pdx_display_client_server_type (fd (use))) +(allow pdx_display_client_server_type base_typeattr_184 (fd (use))) +(allow base_typeattr_184 pdx_display_manager_endpoint_dir_type (dir (ioctl read getattr lock search open))) +(allow base_typeattr_184 pdx_display_manager_endpoint_socket_type (sock_file (ioctl read write getattr lock append map open))) +(allow base_typeattr_184 pdx_display_manager_endpoint_socket_type (unix_stream_socket (read write shutdown connectto))) +(allow base_typeattr_184 pdx_display_manager_channel_socket_type (unix_stream_socket (read write getattr setattr lock append getopt setopt shutdown))) +(allow base_typeattr_184 pdx_display_manager_server_type (fd (use))) +(allow pdx_display_manager_server_type base_typeattr_184 (fd (use))) +(allow base_typeattr_184 pdx_display_vsync_endpoint_dir_type (dir (ioctl read getattr lock search open))) +(allow base_typeattr_184 pdx_display_vsync_endpoint_socket_type (sock_file (ioctl read write getattr lock append map open))) +(allow base_typeattr_184 pdx_display_vsync_endpoint_socket_type (unix_stream_socket (read write shutdown connectto))) +(allow base_typeattr_184 pdx_display_vsync_channel_socket_type (unix_stream_socket (read write getattr setattr lock append getopt setopt shutdown))) +(allow base_typeattr_184 pdx_display_vsync_server_type (fd (use))) +(allow pdx_display_vsync_server_type base_typeattr_184 (fd (use))) +(allow base_typeattr_184 pdx_performance_client_endpoint_dir_type (dir (ioctl read getattr lock search open))) +(allow base_typeattr_184 pdx_performance_client_endpoint_socket_type (sock_file (ioctl read write getattr lock append map open))) +(allow base_typeattr_184 pdx_performance_client_endpoint_socket_type (unix_stream_socket (read write shutdown connectto))) +(allow base_typeattr_184 pdx_performance_client_channel_socket_type (unix_stream_socket (read write getattr setattr lock append getopt setopt shutdown))) +(allow base_typeattr_184 pdx_performance_client_server_type (fd (use))) +(allow pdx_performance_client_server_type base_typeattr_184 (fd (use))) +(allow base_typeattr_184 pdx_bufferhub_client_channel_socket_type (unix_stream_socket (read write getattr setattr lock append getopt setopt shutdown))) +(allow base_typeattr_184 pdx_bufferhub_client_server_type (fd (use))) +(allow pdx_bufferhub_client_server_type base_typeattr_184 (fd (use))) +(allow appdomain runas_exec (file (getattr))) +(allow base_typeattr_184 tun_device (chr_file (ioctl read write getattr append))) +(allow appdomain adbd (unix_stream_socket (connectto))) +(allow appdomain adbd (fd (use))) +(allow appdomain adbd (unix_stream_socket (ioctl read write getattr getopt shutdown))) +(allow appdomain cache_file (dir (getattr))) +;;* lmx 353 system/sepolicy/private/app.te + +(neverallow base_typeattr_186 self (capability (chown dac_override dac_read_search fowner fsetid kill setgid setuid setpcap linux_immutable net_bind_service net_broadcast net_admin net_raw ipc_lock ipc_owner sys_module sys_rawio sys_chroot sys_ptrace sys_pacct sys_admin sys_boot sys_nice sys_resource sys_time sys_tty_config mknod lease audit_write audit_control setfcap))) +;;* lme + +;;* lmx 354 system/sepolicy/private/app.te + +(neverallow base_typeattr_186 self (capability2 (mac_override mac_admin syslog wake_alarm block_suspend audit_read))) +;;* lme + +;;* lmx 357 system/sepolicy/private/app.te + +(neverallow appdomain dev_type (blk_file (read write))) +;;* lme + +;;* lmx 367 system/sepolicy/private/app.te + +(neverallow appdomain audio_device (chr_file (read write))) +(neverallow appdomain camera_device (chr_file (read write))) +(neverallow appdomain dm_device (chr_file (read write))) +(neverallow appdomain radio_device (chr_file (read write))) +(neverallow appdomain video_device (chr_file (read write))) +(neverallow appdomain rpmsg_device (chr_file (read write))) +;;* lme + +;;* lmx 370 system/sepolicy/private/app.te + +(neverallow isolated_app graphics_device (chr_file (read write))) +(neverallow shell graphics_device (chr_file (read write))) +(neverallow untrusted_app graphics_device (chr_file (read write))) +;;* lme + +;;* lmx 373 system/sepolicy/private/app.te + +(neverallow base_typeattr_187 nfc_device (chr_file (read write))) +;;* lme + +;;* lmx 375 system/sepolicy/private/app.te + +(neverallow base_typeattr_186 hci_attach_dev (chr_file (read write))) +;;* lme + +;;* lmx 376 system/sepolicy/private/app.te + +(neverallow appdomain tee_device (chr_file (read write))) +;;* lme + +;;* lmx 386 system/sepolicy/private/app.te + +(neverallow appdomain domain (netlink_tcpdiag_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow appdomain domain (netlink_nflog_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow appdomain domain (netlink_xfrm_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow appdomain domain (netlink_audit_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write nlmsg_relay nlmsg_readpriv nlmsg_tty_audit))) +(neverallow appdomain domain (netlink_dnrt_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +;;* lme + +;;* lmx 391 system/sepolicy/private/app.te + +(neverallow appdomain domain (netlink_kobject_uevent_socket (write append))) +;;* lme + +;;* lmx 394 system/sepolicy/private/app.te + +(neverallow appdomain socket_device (sock_file (write))) +;;* lme + +;;* lmx 397 system/sepolicy/private/app.te + +(neverallow appdomain adbd_socket (sock_file (write))) +;;* lme + +;;* lmx 398 system/sepolicy/private/app.te + +(neverallow base_typeattr_188 rild_socket (sock_file (write))) +;;* lme + +;;* lmx 399 system/sepolicy/private/app.te + +(neverallow appdomain vold_socket (sock_file (write))) +;;* lme + +;;* lmx 400 system/sepolicy/private/app.te + +(neverallow appdomain zygote_socket (sock_file (write))) +;;* lme + +;;* lmx 403 system/sepolicy/private/app.te + +(neverallow appdomain base_typeattr_27 (process (ptrace))) +;;* lme + +;;* lmx 406 system/sepolicy/private/app.te + +(neverallow appdomain base_typeattr_27 (file (write))) +;;* lme + +;;* lmx 413 system/sepolicy/private/app.te + +(neverallow appdomain base_typeattr_27 (process (sigkill sigstop signal))) +;;* lme + +;;* lmx 419 system/sepolicy/private/app.te + +(neverallow base_typeattr_71 base_typeattr_189 (process (transition))) +;;* lme + +;;* lmx 421 system/sepolicy/private/app.te + +(neverallow base_typeattr_71 base_typeattr_27 (process (dyntransition))) +;;* lme + +;;* lmx 425 system/sepolicy/private/app.te + +(neverallow appdomain rootfs (file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain rootfs (dir (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain rootfs (lnk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain rootfs (chr_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain rootfs (blk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain rootfs (sock_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain rootfs (fifo_file (write create setattr relabelfrom relabelto append unlink link rename))) +;;* lme + +;;* lmx 429 system/sepolicy/private/app.te + +(neverallow appdomain system_file (file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain system_file (dir (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain system_file (lnk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain system_file (chr_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain system_file (blk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain system_file (sock_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain system_file (fifo_file (write create setattr relabelfrom relabelto append unlink link rename))) +;;* lme + +;;* lmx 433 system/sepolicy/private/app.te + +(neverallow appdomain exec_type (file (write create setattr relabelfrom relabelto append unlink link rename))) +;;* lme + +;;* lmx 440 system/sepolicy/private/app.te + +(neverallow appdomain system_data_file (file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain system_data_file (dir (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain system_data_file (lnk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain system_data_file (chr_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain system_data_file (blk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain system_data_file (sock_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain system_data_file (fifo_file (write create setattr relabelfrom relabelto append unlink link rename))) +;;* lme + +;;* lmx 444 system/sepolicy/private/app.te + +(neverallow appdomain drm_data_file (file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain drm_data_file (dir (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain drm_data_file (lnk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain drm_data_file (chr_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain drm_data_file (blk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain drm_data_file (sock_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain drm_data_file (fifo_file (write create setattr relabelfrom relabelto append unlink link rename))) +;;* lme + +;;* lmx 447 system/sepolicy/private/app.te + +(neverallow base_typeattr_190 apk_data_file (file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_data_file (dir (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_data_file (lnk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_data_file (chr_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_data_file (blk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_data_file (sock_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_data_file (fifo_file (write create setattr relabelfrom relabelto append unlink link rename))) +;;* lme + +;;* lmx 450 system/sepolicy/private/app.te + +(neverallow base_typeattr_190 apk_tmp_file (file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_tmp_file (dir (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_tmp_file (lnk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_tmp_file (chr_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_tmp_file (blk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_tmp_file (sock_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_tmp_file (fifo_file (write create setattr relabelfrom relabelto append unlink link rename))) +;;* lme + +;;* lmx 453 system/sepolicy/private/app.te + +(neverallow base_typeattr_190 apk_private_data_file (file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_private_data_file (dir (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_private_data_file (lnk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_private_data_file (chr_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_private_data_file (blk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_private_data_file (sock_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_private_data_file (fifo_file (write create setattr relabelfrom relabelto append unlink link rename))) +;;* lme + +;;* lmx 456 system/sepolicy/private/app.te + +(neverallow base_typeattr_190 apk_private_tmp_file (file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_private_tmp_file (dir (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_private_tmp_file (lnk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_private_tmp_file (chr_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_private_tmp_file (blk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_private_tmp_file (sock_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_190 apk_private_tmp_file (fifo_file (write create setattr relabelfrom relabelto append unlink link rename))) +;;* lme + +;;* lmx 459 system/sepolicy/private/app.te + +(neverallow base_typeattr_71 shell_data_file (file (create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_71 shell_data_file (dir (create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_71 shell_data_file (lnk_file (create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_71 shell_data_file (chr_file (create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_71 shell_data_file (blk_file (create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_71 shell_data_file (sock_file (create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_71 shell_data_file (fifo_file (create setattr relabelfrom relabelto append unlink link rename))) +;;* lme + +;;* lmx 462 system/sepolicy/private/app.te + +(neverallow base_typeattr_186 bluetooth_data_file (file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_186 bluetooth_data_file (dir (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_186 bluetooth_data_file (lnk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_186 bluetooth_data_file (chr_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_186 bluetooth_data_file (blk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_186 bluetooth_data_file (sock_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow base_typeattr_186 bluetooth_data_file (fifo_file (write create setattr relabelfrom relabelto append unlink link rename))) +;;* lme + +;;* lmx 465 system/sepolicy/private/app.te + +(neverallow appdomain keystore_data_file (file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain keystore_data_file (dir (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain keystore_data_file (lnk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain keystore_data_file (chr_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain keystore_data_file (blk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain keystore_data_file (sock_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain keystore_data_file (fifo_file (write create setattr relabelfrom relabelto append unlink link rename))) +;;* lme + +;;* lmx 468 system/sepolicy/private/app.te + +(neverallow appdomain systemkeys_data_file (file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain systemkeys_data_file (dir (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain systemkeys_data_file (lnk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain systemkeys_data_file (chr_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain systemkeys_data_file (blk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain systemkeys_data_file (sock_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain systemkeys_data_file (fifo_file (write create setattr relabelfrom relabelto append unlink link rename))) +;;* lme + +;;* lmx 471 system/sepolicy/private/app.te + +(neverallow appdomain wifi_data_file (file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain wifi_data_file (dir (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain wifi_data_file (lnk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain wifi_data_file (chr_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain wifi_data_file (blk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain wifi_data_file (sock_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain wifi_data_file (fifo_file (write create setattr relabelfrom relabelto append unlink link rename))) +;;* lme + +;;* lmx 474 system/sepolicy/private/app.te + +(neverallow appdomain dhcp_data_file (file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain dhcp_data_file (dir (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain dhcp_data_file (lnk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain dhcp_data_file (chr_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain dhcp_data_file (blk_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain dhcp_data_file (sock_file (write create setattr relabelfrom relabelto append unlink link rename))) +(neverallow appdomain dhcp_data_file (fifo_file (write create setattr relabelfrom relabelto append unlink link rename))) +;;* lme + +;;* lmx 478 system/sepolicy/private/app.te + +(neverallow base_typeattr_191 apk_tmp_file (file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow base_typeattr_191 apk_tmp_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent search rmdir open audit_access execmod))) +(neverallow base_typeattr_191 apk_tmp_file (lnk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow base_typeattr_191 apk_tmp_file (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow base_typeattr_191 apk_tmp_file (blk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow base_typeattr_191 apk_tmp_file (sock_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow base_typeattr_191 apk_tmp_file (fifo_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow base_typeattr_191 apk_private_tmp_file (file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow base_typeattr_191 apk_private_tmp_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent search rmdir open audit_access execmod))) +(neverallow base_typeattr_191 apk_private_tmp_file (lnk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow base_typeattr_191 apk_private_tmp_file (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow base_typeattr_191 apk_private_tmp_file (blk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow base_typeattr_191 apk_private_tmp_file (sock_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow base_typeattr_191 apk_private_tmp_file (fifo_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +;;* lme + +;;* lmx 480 system/sepolicy/private/app.te + +(neverallow untrusted_app_all apk_tmp_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent search rmdir open audit_access execmod))) +(neverallow untrusted_app_all apk_tmp_file (lnk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow untrusted_app_all apk_tmp_file (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow untrusted_app_all apk_tmp_file (blk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow untrusted_app_all apk_tmp_file (sock_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow untrusted_app_all apk_tmp_file (fifo_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow untrusted_app_all apk_private_tmp_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent search rmdir open audit_access execmod))) +(neverallow untrusted_app_all apk_private_tmp_file (lnk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow untrusted_app_all apk_private_tmp_file (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow untrusted_app_all apk_private_tmp_file (blk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow untrusted_app_all apk_private_tmp_file (sock_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow untrusted_app_all apk_private_tmp_file (fifo_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +;;* lme + +;;* lmx 481 system/sepolicy/private/app.te + +(neverallow untrusted_app_all apk_tmp_file (file (ioctl write create setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow untrusted_app_all apk_private_tmp_file (file (ioctl write create setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +;;* lmx 484 system/sepolicy/private/app.te + +(neverallow appdomain efs_file (file (write))) +(neverallow appdomain efs_file (dir (write))) +(neverallow appdomain efs_file (lnk_file (write))) +(neverallow appdomain efs_file (chr_file (write))) +(neverallow appdomain efs_file (blk_file (write))) +(neverallow appdomain efs_file (sock_file (write))) +(neverallow appdomain efs_file (fifo_file (write))) +;;* lme + +;;* lmx 485 system/sepolicy/private/app.te + +(neverallow base_typeattr_71 efs_file (file (read))) +(neverallow base_typeattr_71 efs_file (dir (read))) +(neverallow base_typeattr_71 efs_file (lnk_file (read))) +(neverallow base_typeattr_71 efs_file (chr_file (read))) +(neverallow base_typeattr_71 efs_file (blk_file (read))) +(neverallow base_typeattr_71 efs_file (sock_file (read))) +(neverallow base_typeattr_71 efs_file (fifo_file (read))) +;;* lme + +;;* lmx 489 system/sepolicy/private/app.te + +(neverallow base_typeattr_192 sysfs (file (write))) +(neverallow base_typeattr_192 sysfs (dir (write))) +(neverallow base_typeattr_192 sysfs (lnk_file (write))) +(neverallow base_typeattr_192 sysfs (chr_file (write))) +(neverallow base_typeattr_192 sysfs (blk_file (write))) +(neverallow base_typeattr_192 sysfs (sock_file (write))) +(neverallow base_typeattr_192 sysfs (fifo_file (write))) +;;* lme + +;;* lmx 491 system/sepolicy/private/app.te + +(neverallow appdomain proc (file (write))) +(neverallow appdomain proc (dir (write))) +(neverallow appdomain proc (lnk_file (write))) +(neverallow appdomain proc (chr_file (write))) +(neverallow appdomain proc (blk_file (write))) +(neverallow appdomain proc (sock_file (write))) +(neverallow appdomain proc (fifo_file (write))) +;;* lme + +;;* lmx 494 system/sepolicy/private/app.te + +(neverallow appdomain kernel (system (syslog_read syslog_mod syslog_console))) +;;* lme + +;;* lmx 497 system/sepolicy/private/app.te + +(neverallow base_typeattr_71 base_typeattr_9 (security (compute_av check_context))) +;;* lme + +;;* lmx 498 system/sepolicy/private/app.te + +(neverallow base_typeattr_71 base_typeattr_9 (netlink_selinux_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +;;* lme + +;;* lmx 502 system/sepolicy/private/app.te + +(neverallow appdomain fs_type (filesystem (mount remount unmount relabelfrom relabelto associate quotamod quotaget))) +;;* lme + +;;* lmx 513 system/sepolicy/private/app.te + +(neverallow appdomain dev_type (lnk_file (write create setattr relabelfrom append unlink link rename))) +(neverallow appdomain rootfs (lnk_file (write create setattr relabelfrom append unlink link rename))) +(neverallow appdomain tmpfs (lnk_file (write create setattr relabelfrom append unlink link rename))) +(neverallow appdomain system_file (lnk_file (write create setattr relabelfrom append unlink link rename))) +(neverallow appdomain apk_data_file (lnk_file (write create setattr relabelfrom append unlink link rename))) +(neverallow appdomain cache_file (lnk_file (write create setattr relabelfrom append unlink link rename))) +(neverallow appdomain cache_recovery_file (lnk_file (write create setattr relabelfrom append unlink link rename))) +;;* lme + +;;* lmx 528 system/sepolicy/private/app.te + +(neverallow bluetooth base_typeattr_28 (file (execute execute_no_trans))) +(neverallow isolated_app base_typeattr_28 (file (execute execute_no_trans))) +(neverallow nfc base_typeattr_28 (file (execute execute_no_trans))) +(neverallow radio base_typeattr_28 (file (execute execute_no_trans))) +(neverallow shared_relro base_typeattr_28 (file (execute execute_no_trans))) +(neverallow system_app base_typeattr_28 (file (execute execute_no_trans))) +;;* lme + +;;* lmx 534 system/sepolicy/private/app.te + +(neverallow base_typeattr_71 input_device (chr_file (ioctl read write create setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +;;* lmx 542 system/sepolicy/private/app.te + +(neverallow base_typeattr_193 bluetooth_prop (file (ioctl read write create getattr setattr lock append map unlink rename open))) +;;* lme + +;;* lmx 15 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all domain (netlink_kobject_uevent_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow ephemeral_app domain (netlink_kobject_uevent_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow isolated_app domain (netlink_kobject_uevent_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow mediaprovider domain (netlink_kobject_uevent_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app domain (netlink_kobject_uevent_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_25 domain (netlink_kobject_uevent_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_v2_app domain (netlink_kobject_uevent_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +;;* lme + +;;* lmx 18 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all domain (netlink_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow ephemeral_app domain (netlink_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow isolated_app domain (netlink_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow mediaprovider domain (netlink_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app domain (netlink_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_25 domain (netlink_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_v2_app domain (netlink_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +;;* lme + +;;* lmx 22 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all debugfs_type (file (read))) +(neverallow ephemeral_app debugfs_type (file (read))) +(neverallow isolated_app debugfs_type (file (read))) +(neverallow mediaprovider debugfs_type (file (read))) +(neverallow untrusted_app debugfs_type (file (read))) +(neverallow untrusted_app_25 debugfs_type (file (read))) +(neverallow untrusted_v2_app debugfs_type (file (read))) +;;* lme + +;;* lmx 27 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all service_manager_type (service_manager (add))) +(neverallow ephemeral_app service_manager_type (service_manager (add))) +(neverallow isolated_app service_manager_type (service_manager (add))) +(neverallow mediaprovider service_manager_type (service_manager (add))) +(neverallow untrusted_app service_manager_type (service_manager (add))) +(neverallow untrusted_app_25 service_manager_type (service_manager (add))) +(neverallow untrusted_v2_app service_manager_type (service_manager (add))) +;;* lme + +;;* lmx 30 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all vndbinder_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow ephemeral_app vndbinder_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow isolated_app vndbinder_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow mediaprovider vndbinder_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow untrusted_app vndbinder_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow untrusted_app_25 vndbinder_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow untrusted_v2_app vndbinder_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +;;* lmx 31 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all vndservice_manager_type (service_manager (add find list))) +(neverallow ephemeral_app vndservice_manager_type (service_manager (add find list))) +(neverallow isolated_app vndservice_manager_type (service_manager (add find list))) +(neverallow mediaprovider vndservice_manager_type (service_manager (add find list))) +(neverallow untrusted_app vndservice_manager_type (service_manager (add find list))) +(neverallow untrusted_app_25 vndservice_manager_type (service_manager (add find list))) +(neverallow untrusted_v2_app vndservice_manager_type (service_manager (add find list))) +;;* lme + +;;* lmx 35 system/sepolicy/private/app_neverallows.te + +(neverallow base_typeattr_194 property_socket (sock_file (write))) +;;* lme + +;;* lmx 36 system/sepolicy/private/app_neverallows.te + +(neverallow base_typeattr_194 init (unix_stream_socket (connectto))) +;;* lme + +;;* lmx 37 system/sepolicy/private/app_neverallows.te + +(neverallow base_typeattr_194 property_type (property_service (set))) +;;* lme + +;;* lmx 47 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all mlstrustedsubject (process (fork))) +(neverallow ephemeral_app mlstrustedsubject (process (fork))) +(neverallow isolated_app mlstrustedsubject (process (fork))) +(neverallow mediaprovider mlstrustedsubject (process (fork))) +(neverallow untrusted_app mlstrustedsubject (process (fork))) +(neverallow untrusted_app_25 mlstrustedsubject (process (fork))) +(neverallow untrusted_v2_app mlstrustedsubject (process (fork))) +;;* lme + +;;* lmx 55 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all file_type (file (link))) +(neverallow ephemeral_app file_type (file (link))) +(neverallow isolated_app file_type (file (link))) +(neverallow mediaprovider file_type (file (link))) +(neverallow untrusted_app file_type (file (link))) +(neverallow untrusted_app_25 file_type (file (link))) +(neverallow untrusted_v2_app file_type (file (link))) +;;* lme + +;;* lmx 58 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all sysfs_mac_address (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow ephemeral_app sysfs_mac_address (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow isolated_app sysfs_mac_address (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow mediaprovider sysfs_mac_address (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow untrusted_app sysfs_mac_address (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow untrusted_app_25 sysfs_mac_address (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow untrusted_v2_app sysfs_mac_address (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +;;* lme + +;;* lmx 62 system/sepolicy/private/app_neverallows.te + +(neverallowx untrusted_app_all domain (ioctl tcp_socket (0x6900 0x6902))) +(neverallowx untrusted_app_all domain (ioctl udp_socket (0x6900 0x6902))) +(neverallowx untrusted_app_all domain (ioctl rawip_socket (0x6900 0x6902))) +(neverallowx ephemeral_app domain (ioctl tcp_socket (0x6900 0x6902))) +(neverallowx ephemeral_app domain (ioctl udp_socket (0x6900 0x6902))) +(neverallowx ephemeral_app domain (ioctl rawip_socket (0x6900 0x6902))) +(neverallowx isolated_app domain (ioctl tcp_socket (0x6900 0x6902))) +(neverallowx isolated_app domain (ioctl udp_socket (0x6900 0x6902))) +(neverallowx isolated_app domain (ioctl rawip_socket (0x6900 0x6902))) +(neverallowx mediaprovider domain (ioctl tcp_socket (0x6900 0x6902))) +(neverallowx mediaprovider domain (ioctl udp_socket (0x6900 0x6902))) +(neverallowx mediaprovider domain (ioctl rawip_socket (0x6900 0x6902))) +(neverallowx untrusted_app domain (ioctl tcp_socket (0x6900 0x6902))) +(neverallowx untrusted_app domain (ioctl udp_socket (0x6900 0x6902))) +(neverallowx untrusted_app domain (ioctl rawip_socket (0x6900 0x6902))) +(neverallowx untrusted_app_25 domain (ioctl tcp_socket (0x6900 0x6902))) +(neverallowx untrusted_app_25 domain (ioctl udp_socket (0x6900 0x6902))) +(neverallowx untrusted_app_25 domain (ioctl rawip_socket (0x6900 0x6902))) +(neverallowx untrusted_v2_app domain (ioctl tcp_socket (0x6900 0x6902))) +(neverallowx untrusted_v2_app domain (ioctl udp_socket (0x6900 0x6902))) +(neverallowx untrusted_v2_app domain (ioctl rawip_socket (0x6900 0x6902))) +;;* lme + +;;* lmx 62 system/sepolicy/private/app_neverallows.te + +(neverallowx untrusted_app_all domain (ioctl tcp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx untrusted_app_all domain (ioctl udp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx untrusted_app_all domain (ioctl rawip_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx ephemeral_app domain (ioctl tcp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx ephemeral_app domain (ioctl udp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx ephemeral_app domain (ioctl rawip_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx isolated_app domain (ioctl tcp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx isolated_app domain (ioctl udp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx isolated_app domain (ioctl rawip_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx mediaprovider domain (ioctl tcp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx mediaprovider domain (ioctl udp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx mediaprovider domain (ioctl rawip_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx untrusted_app domain (ioctl tcp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx untrusted_app domain (ioctl udp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx untrusted_app domain (ioctl rawip_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx untrusted_app_25 domain (ioctl tcp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx untrusted_app_25 domain (ioctl udp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx untrusted_app_25 domain (ioctl rawip_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx untrusted_v2_app domain (ioctl tcp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx untrusted_v2_app domain (ioctl udp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(neverallowx untrusted_v2_app domain (ioctl rawip_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +;;* lme + +;;* lmx 62 system/sepolicy/private/app_neverallows.te + +(neverallowx untrusted_app_all domain (ioctl tcp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx untrusted_app_all domain (ioctl udp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx untrusted_app_all domain (ioctl rawip_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx ephemeral_app domain (ioctl tcp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx ephemeral_app domain (ioctl udp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx ephemeral_app domain (ioctl rawip_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx isolated_app domain (ioctl tcp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx isolated_app domain (ioctl udp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx isolated_app domain (ioctl rawip_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx mediaprovider domain (ioctl tcp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx mediaprovider domain (ioctl udp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx mediaprovider domain (ioctl rawip_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx untrusted_app domain (ioctl tcp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx untrusted_app domain (ioctl udp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx untrusted_app domain (ioctl rawip_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx untrusted_app_25 domain (ioctl tcp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx untrusted_app_25 domain (ioctl udp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx untrusted_app_25 domain (ioctl rawip_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx untrusted_v2_app domain (ioctl tcp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx untrusted_v2_app domain (ioctl udp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(neverallowx untrusted_v2_app domain (ioctl rawip_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +;;* lme + +;;* lmx 63 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all base_typeattr_9 (netlink_route_socket (ioctl))) +(neverallow untrusted_app_all base_typeattr_9 (netlink_selinux_socket (ioctl))) +(neverallow ephemeral_app base_typeattr_9 (netlink_route_socket (ioctl))) +(neverallow ephemeral_app base_typeattr_9 (netlink_selinux_socket (ioctl))) +(neverallow isolated_app base_typeattr_9 (netlink_route_socket (ioctl))) +(neverallow isolated_app base_typeattr_9 (netlink_selinux_socket (ioctl))) +(neverallow mediaprovider base_typeattr_9 (netlink_route_socket (ioctl))) +(neverallow mediaprovider base_typeattr_9 (netlink_selinux_socket (ioctl))) +(neverallow untrusted_app base_typeattr_9 (netlink_route_socket (ioctl))) +(neverallow untrusted_app base_typeattr_9 (netlink_selinux_socket (ioctl))) +(neverallow untrusted_app_25 base_typeattr_9 (netlink_route_socket (ioctl))) +(neverallow untrusted_app_25 base_typeattr_9 (netlink_selinux_socket (ioctl))) +(neverallow untrusted_v2_app base_typeattr_9 (netlink_route_socket (ioctl))) +(neverallow untrusted_v2_app base_typeattr_9 (netlink_selinux_socket (ioctl))) +;;* lme + +;;* lmx 72 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all base_typeattr_9 (socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_all base_typeattr_9 (netlink_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_all base_typeattr_9 (packet_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_all base_typeattr_9 (key_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_all base_typeattr_9 (netlink_tcpdiag_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow untrusted_app_all base_typeattr_9 (netlink_nflog_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_all base_typeattr_9 (netlink_xfrm_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow untrusted_app_all base_typeattr_9 (netlink_audit_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write nlmsg_relay nlmsg_readpriv nlmsg_tty_audit))) +(neverallow untrusted_app_all base_typeattr_9 (netlink_dnrt_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_all base_typeattr_9 (netlink_kobject_uevent_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_all base_typeattr_9 (appletalk_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_all base_typeattr_9 (tun_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind attach_queue))) +(neverallow untrusted_app_all base_typeattr_9 (netlink_iscsi_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_all base_typeattr_9 (netlink_fib_lookup_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_all base_typeattr_9 (netlink_connector_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_all base_typeattr_9 (netlink_netfilter_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_all base_typeattr_9 (netlink_generic_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_all base_typeattr_9 (netlink_scsitransport_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_all base_typeattr_9 (netlink_rdma_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_all base_typeattr_9 (netlink_crypto_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow ephemeral_app base_typeattr_9 (socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow ephemeral_app base_typeattr_9 (netlink_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow ephemeral_app base_typeattr_9 (packet_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow ephemeral_app base_typeattr_9 (key_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow ephemeral_app base_typeattr_9 (netlink_tcpdiag_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow ephemeral_app base_typeattr_9 (netlink_nflog_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow ephemeral_app base_typeattr_9 (netlink_xfrm_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow ephemeral_app base_typeattr_9 (netlink_audit_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write nlmsg_relay nlmsg_readpriv nlmsg_tty_audit))) +(neverallow ephemeral_app base_typeattr_9 (netlink_dnrt_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow ephemeral_app base_typeattr_9 (netlink_kobject_uevent_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow ephemeral_app base_typeattr_9 (appletalk_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow ephemeral_app base_typeattr_9 (tun_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind attach_queue))) +(neverallow ephemeral_app base_typeattr_9 (netlink_iscsi_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow ephemeral_app base_typeattr_9 (netlink_fib_lookup_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow ephemeral_app base_typeattr_9 (netlink_connector_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow ephemeral_app base_typeattr_9 (netlink_netfilter_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow ephemeral_app base_typeattr_9 (netlink_generic_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow ephemeral_app base_typeattr_9 (netlink_scsitransport_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow ephemeral_app base_typeattr_9 (netlink_rdma_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow ephemeral_app base_typeattr_9 (netlink_crypto_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow isolated_app base_typeattr_9 (socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow isolated_app base_typeattr_9 (netlink_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow isolated_app base_typeattr_9 (packet_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow isolated_app base_typeattr_9 (key_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow isolated_app base_typeattr_9 (netlink_tcpdiag_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow isolated_app base_typeattr_9 (netlink_nflog_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow isolated_app base_typeattr_9 (netlink_xfrm_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow isolated_app base_typeattr_9 (netlink_audit_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write nlmsg_relay nlmsg_readpriv nlmsg_tty_audit))) +(neverallow isolated_app base_typeattr_9 (netlink_dnrt_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow isolated_app base_typeattr_9 (netlink_kobject_uevent_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow isolated_app base_typeattr_9 (appletalk_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow isolated_app base_typeattr_9 (tun_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind attach_queue))) +(neverallow isolated_app base_typeattr_9 (netlink_iscsi_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow isolated_app base_typeattr_9 (netlink_fib_lookup_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow isolated_app base_typeattr_9 (netlink_connector_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow isolated_app base_typeattr_9 (netlink_netfilter_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow isolated_app base_typeattr_9 (netlink_generic_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow isolated_app base_typeattr_9 (netlink_scsitransport_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow isolated_app base_typeattr_9 (netlink_rdma_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow isolated_app base_typeattr_9 (netlink_crypto_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow mediaprovider base_typeattr_9 (socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow mediaprovider base_typeattr_9 (netlink_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow mediaprovider base_typeattr_9 (packet_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow mediaprovider base_typeattr_9 (key_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow mediaprovider base_typeattr_9 (netlink_tcpdiag_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow mediaprovider base_typeattr_9 (netlink_nflog_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow mediaprovider base_typeattr_9 (netlink_xfrm_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow mediaprovider base_typeattr_9 (netlink_audit_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write nlmsg_relay nlmsg_readpriv nlmsg_tty_audit))) +(neverallow mediaprovider base_typeattr_9 (netlink_dnrt_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow mediaprovider base_typeattr_9 (netlink_kobject_uevent_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow mediaprovider base_typeattr_9 (appletalk_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow mediaprovider base_typeattr_9 (tun_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind attach_queue))) +(neverallow mediaprovider base_typeattr_9 (netlink_iscsi_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow mediaprovider base_typeattr_9 (netlink_fib_lookup_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow mediaprovider base_typeattr_9 (netlink_connector_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow mediaprovider base_typeattr_9 (netlink_netfilter_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow mediaprovider base_typeattr_9 (netlink_generic_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow mediaprovider base_typeattr_9 (netlink_scsitransport_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow mediaprovider base_typeattr_9 (netlink_rdma_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow mediaprovider base_typeattr_9 (netlink_crypto_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app base_typeattr_9 (socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app base_typeattr_9 (netlink_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app base_typeattr_9 (packet_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app base_typeattr_9 (key_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app base_typeattr_9 (netlink_tcpdiag_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow untrusted_app base_typeattr_9 (netlink_nflog_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app base_typeattr_9 (netlink_xfrm_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow untrusted_app base_typeattr_9 (netlink_audit_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write nlmsg_relay nlmsg_readpriv nlmsg_tty_audit))) +(neverallow untrusted_app base_typeattr_9 (netlink_dnrt_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app base_typeattr_9 (netlink_kobject_uevent_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app base_typeattr_9 (appletalk_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app base_typeattr_9 (tun_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind attach_queue))) +(neverallow untrusted_app base_typeattr_9 (netlink_iscsi_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app base_typeattr_9 (netlink_fib_lookup_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app base_typeattr_9 (netlink_connector_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app base_typeattr_9 (netlink_netfilter_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app base_typeattr_9 (netlink_generic_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app base_typeattr_9 (netlink_scsitransport_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app base_typeattr_9 (netlink_rdma_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app base_typeattr_9 (netlink_crypto_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_25 base_typeattr_9 (socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_25 base_typeattr_9 (netlink_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_25 base_typeattr_9 (packet_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_25 base_typeattr_9 (key_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_25 base_typeattr_9 (netlink_tcpdiag_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow untrusted_app_25 base_typeattr_9 (netlink_nflog_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_25 base_typeattr_9 (netlink_xfrm_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow untrusted_app_25 base_typeattr_9 (netlink_audit_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write nlmsg_relay nlmsg_readpriv nlmsg_tty_audit))) +(neverallow untrusted_app_25 base_typeattr_9 (netlink_dnrt_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_25 base_typeattr_9 (netlink_kobject_uevent_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_25 base_typeattr_9 (appletalk_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_25 base_typeattr_9 (tun_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind attach_queue))) +(neverallow untrusted_app_25 base_typeattr_9 (netlink_iscsi_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_25 base_typeattr_9 (netlink_fib_lookup_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_25 base_typeattr_9 (netlink_connector_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_25 base_typeattr_9 (netlink_netfilter_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_25 base_typeattr_9 (netlink_generic_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_25 base_typeattr_9 (netlink_scsitransport_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_25 base_typeattr_9 (netlink_rdma_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_app_25 base_typeattr_9 (netlink_crypto_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_v2_app base_typeattr_9 (socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_v2_app base_typeattr_9 (netlink_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_v2_app base_typeattr_9 (packet_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_v2_app base_typeattr_9 (key_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_v2_app base_typeattr_9 (netlink_tcpdiag_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow untrusted_v2_app base_typeattr_9 (netlink_nflog_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_v2_app base_typeattr_9 (netlink_xfrm_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow untrusted_v2_app base_typeattr_9 (netlink_audit_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write nlmsg_relay nlmsg_readpriv nlmsg_tty_audit))) +(neverallow untrusted_v2_app base_typeattr_9 (netlink_dnrt_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_v2_app base_typeattr_9 (netlink_kobject_uevent_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_v2_app base_typeattr_9 (appletalk_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_v2_app base_typeattr_9 (tun_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind attach_queue))) +(neverallow untrusted_v2_app base_typeattr_9 (netlink_iscsi_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_v2_app base_typeattr_9 (netlink_fib_lookup_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_v2_app base_typeattr_9 (netlink_connector_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_v2_app base_typeattr_9 (netlink_netfilter_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_v2_app base_typeattr_9 (netlink_generic_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_v2_app base_typeattr_9 (netlink_scsitransport_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_v2_app base_typeattr_9 (netlink_rdma_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow untrusted_v2_app base_typeattr_9 (netlink_crypto_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +;;* lme + +;;* lmx 75 system/sepolicy/private/app_neverallows.te + +(neverallow base_typeattr_194 cache_file (dir (write create setattr relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent rmdir audit_access execmod))) +(neverallow base_typeattr_194 cache_recovery_file (dir (write create setattr relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent rmdir audit_access execmod))) +;;* lme + +;;* lmx 76 system/sepolicy/private/app_neverallows.te + +(neverallow base_typeattr_194 cache_file (file (ioctl write create setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow base_typeattr_194 cache_recovery_file (file (ioctl write create setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +;;* lmx 97 system/sepolicy/private/app_neverallows.te + +(neverallow base_typeattr_194 base_typeattr_195 (file (create unlink))) +(neverallow base_typeattr_194 base_typeattr_195 (dir (create unlink))) +(neverallow base_typeattr_194 base_typeattr_195 (lnk_file (create unlink))) +(neverallow base_typeattr_194 base_typeattr_195 (chr_file (create unlink))) +(neverallow base_typeattr_194 base_typeattr_195 (blk_file (create unlink))) +(neverallow base_typeattr_194 base_typeattr_195 (sock_file (create unlink))) +(neverallow base_typeattr_194 base_typeattr_195 (fifo_file (create unlink))) +;;* lme + +;;* lmx 100 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all fuse_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow ephemeral_app fuse_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow isolated_app fuse_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow mediaprovider fuse_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow untrusted_app fuse_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow untrusted_app_25 fuse_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow untrusted_v2_app fuse_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +;;* lmx 103 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all tun_device (chr_file (open))) +(neverallow ephemeral_app tun_device (chr_file (open))) +(neverallow isolated_app tun_device (chr_file (open))) +(neverallow mediaprovider tun_device (chr_file (open))) +(neverallow untrusted_app tun_device (chr_file (open))) +(neverallow untrusted_app_25 tun_device (chr_file (open))) +(neverallow untrusted_v2_app tun_device (chr_file (open))) +;;* lme + +;;* lmx 106 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all anr_data_file (file (ioctl read write create getattr setattr lock relabelfrom relabelto map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod audit_access))) +(neverallow ephemeral_app anr_data_file (file (ioctl read write create getattr setattr lock relabelfrom relabelto map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod audit_access))) +(neverallow isolated_app anr_data_file (file (ioctl read write create getattr setattr lock relabelfrom relabelto map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod audit_access))) +(neverallow mediaprovider anr_data_file (file (ioctl read write create getattr setattr lock relabelfrom relabelto map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod audit_access))) +(neverallow untrusted_app anr_data_file (file (ioctl read write create getattr setattr lock relabelfrom relabelto map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod audit_access))) +(neverallow untrusted_app_25 anr_data_file (file (ioctl read write create getattr setattr lock relabelfrom relabelto map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod audit_access))) +(neverallow untrusted_v2_app anr_data_file (file (ioctl read write create getattr setattr lock relabelfrom relabelto map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod audit_access))) +;;* lme + +;;* lmx 107 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all anr_data_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent rmdir open audit_access execmod))) +(neverallow ephemeral_app anr_data_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent rmdir open audit_access execmod))) +(neverallow isolated_app anr_data_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent rmdir open audit_access execmod))) +(neverallow mediaprovider anr_data_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent rmdir open audit_access execmod))) +(neverallow untrusted_app anr_data_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent rmdir open audit_access execmod))) +(neverallow untrusted_app_25 anr_data_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent rmdir open audit_access execmod))) +(neverallow untrusted_v2_app anr_data_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent rmdir open audit_access execmod))) +;;* lme + +;;* lmx 111 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all proc (file (ioctl read write create setattr lock relabelfrom append unlink link rename execute execute_no_trans open))) +(neverallow ephemeral_app proc (file (ioctl read write create setattr lock relabelfrom append unlink link rename execute execute_no_trans open))) +(neverallow isolated_app proc (file (ioctl read write create setattr lock relabelfrom append unlink link rename execute execute_no_trans open))) +(neverallow mediaprovider proc (file (ioctl read write create setattr lock relabelfrom append unlink link rename execute execute_no_trans open))) +(neverallow untrusted_app proc (file (ioctl read write create setattr lock relabelfrom append unlink link rename execute execute_no_trans open))) +(neverallow untrusted_app_25 proc (file (ioctl read write create setattr lock relabelfrom append unlink link rename execute execute_no_trans open))) +(neverallow untrusted_v2_app proc (file (ioctl read write create setattr lock relabelfrom append unlink link rename execute execute_no_trans open))) +;;* lme + +;;* lmx 114 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all config_gz (file (ioctl read write create setattr lock relabelfrom append unlink link rename execute execute_no_trans open))) +(neverallow ephemeral_app config_gz (file (ioctl read write create setattr lock relabelfrom append unlink link rename execute execute_no_trans open))) +(neverallow isolated_app config_gz (file (ioctl read write create setattr lock relabelfrom append unlink link rename execute execute_no_trans open))) +(neverallow mediaprovider config_gz (file (ioctl read write create setattr lock relabelfrom append unlink link rename execute execute_no_trans open))) +(neverallow untrusted_app config_gz (file (ioctl read write create setattr lock relabelfrom append unlink link rename execute execute_no_trans open))) +(neverallow untrusted_app_25 config_gz (file (ioctl read write create setattr lock relabelfrom append unlink link rename execute execute_no_trans open))) +(neverallow untrusted_v2_app config_gz (file (ioctl read write create setattr lock relabelfrom append unlink link rename execute execute_no_trans open))) +;;* lme + +;;* lmx 117 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all preloads_data_file (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow ephemeral_app preloads_data_file (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow isolated_app preloads_data_file (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow mediaprovider preloads_data_file (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow untrusted_app preloads_data_file (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow untrusted_app_25 preloads_data_file (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow untrusted_v2_app preloads_data_file (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +;;* lme + +;;* lmx 121 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all system_file (file (lock))) +(neverallow ephemeral_app system_file (file (lock))) +(neverallow isolated_app system_file (file (lock))) +(neverallow mediaprovider system_file (file (lock))) +(neverallow untrusted_app system_file (file (lock))) +(neverallow untrusted_app_25 system_file (file (lock))) +(neverallow untrusted_v2_app system_file (file (lock))) +;;* lme + +;;* lmx 125 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all base_typeattr_9 (hwservice_manager (add list))) +(neverallow ephemeral_app base_typeattr_9 (hwservice_manager (add list))) +(neverallow isolated_app base_typeattr_9 (hwservice_manager (add list))) +(neverallow mediaprovider base_typeattr_9 (hwservice_manager (add list))) +(neverallow untrusted_app base_typeattr_9 (hwservice_manager (add list))) +(neverallow untrusted_app_25 base_typeattr_9 (hwservice_manager (add list))) +(neverallow untrusted_v2_app base_typeattr_9 (hwservice_manager (add list))) +;;* lme + +;;* lmx 163 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all base_typeattr_196 (hwservice_manager (find))) +(neverallow ephemeral_app base_typeattr_196 (hwservice_manager (find))) +(neverallow isolated_app base_typeattr_196 (hwservice_manager (find))) +(neverallow mediaprovider base_typeattr_196 (hwservice_manager (find))) +(neverallow untrusted_app base_typeattr_196 (hwservice_manager (find))) +(neverallow untrusted_app_25 base_typeattr_196 (hwservice_manager (find))) +(neverallow untrusted_v2_app base_typeattr_196 (hwservice_manager (find))) +;;* lme + +;;* lmx 202 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all default_android_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_audio_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_bluetooth_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_bootctl_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_camera_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_contexthub_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_drm_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_dumpstate_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_fingerprint_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_gatekeeper_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_gnss_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_graphics_composer_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_health_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_ir_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_keymaster_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_light_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_memtrack_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_nfc_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_oemlock_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_power_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_sensors_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_telephony_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_thermal_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_tv_cec_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_tv_input_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_usb_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_vibrator_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_vr_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_weaver_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_wifi_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_wifi_offload_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hal_wifi_supplicant_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all hidl_base_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all system_net_netd_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_all thermalcallback_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app default_android_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_audio_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_bluetooth_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_bootctl_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_camera_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_contexthub_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_drm_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_dumpstate_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_fingerprint_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_gatekeeper_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_gnss_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_graphics_composer_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_health_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_ir_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_keymaster_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_light_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_memtrack_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_nfc_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_oemlock_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_power_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_sensors_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_telephony_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_thermal_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_tv_cec_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_tv_input_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_usb_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_vibrator_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_vr_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_weaver_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_wifi_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_wifi_offload_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hal_wifi_supplicant_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app hidl_base_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app system_net_netd_hwservice (hwservice_manager (find))) +(neverallow ephemeral_app thermalcallback_hwservice (hwservice_manager (find))) +(neverallow isolated_app default_android_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_audio_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_bluetooth_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_bootctl_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_camera_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_contexthub_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_drm_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_dumpstate_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_fingerprint_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_gatekeeper_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_gnss_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_graphics_composer_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_health_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_ir_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_keymaster_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_light_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_memtrack_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_nfc_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_oemlock_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_power_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_sensors_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_telephony_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_thermal_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_tv_cec_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_tv_input_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_usb_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_vibrator_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_vr_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_weaver_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_wifi_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_wifi_offload_hwservice (hwservice_manager (find))) +(neverallow isolated_app hal_wifi_supplicant_hwservice (hwservice_manager (find))) +(neverallow isolated_app hidl_base_hwservice (hwservice_manager (find))) +(neverallow isolated_app system_net_netd_hwservice (hwservice_manager (find))) +(neverallow isolated_app thermalcallback_hwservice (hwservice_manager (find))) +(neverallow mediaprovider default_android_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_audio_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_bluetooth_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_bootctl_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_camera_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_contexthub_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_drm_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_dumpstate_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_fingerprint_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_gatekeeper_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_gnss_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_graphics_composer_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_health_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_ir_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_keymaster_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_light_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_memtrack_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_nfc_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_oemlock_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_power_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_sensors_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_telephony_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_thermal_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_tv_cec_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_tv_input_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_usb_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_vibrator_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_vr_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_weaver_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_wifi_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_wifi_offload_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hal_wifi_supplicant_hwservice (hwservice_manager (find))) +(neverallow mediaprovider hidl_base_hwservice (hwservice_manager (find))) +(neverallow mediaprovider system_net_netd_hwservice (hwservice_manager (find))) +(neverallow mediaprovider thermalcallback_hwservice (hwservice_manager (find))) +(neverallow untrusted_app default_android_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_audio_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_bluetooth_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_bootctl_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_camera_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_contexthub_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_drm_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_dumpstate_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_fingerprint_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_gatekeeper_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_gnss_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_graphics_composer_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_health_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_ir_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_keymaster_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_light_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_memtrack_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_nfc_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_oemlock_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_power_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_sensors_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_telephony_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_thermal_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_tv_cec_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_tv_input_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_usb_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_vibrator_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_vr_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_weaver_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_wifi_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_wifi_offload_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hal_wifi_supplicant_hwservice (hwservice_manager (find))) +(neverallow untrusted_app hidl_base_hwservice (hwservice_manager (find))) +(neverallow untrusted_app system_net_netd_hwservice (hwservice_manager (find))) +(neverallow untrusted_app thermalcallback_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 default_android_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_audio_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_bluetooth_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_bootctl_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_camera_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_contexthub_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_drm_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_dumpstate_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_fingerprint_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_gatekeeper_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_gnss_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_graphics_composer_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_health_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_ir_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_keymaster_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_light_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_memtrack_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_nfc_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_oemlock_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_power_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_sensors_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_telephony_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_thermal_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_tv_cec_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_tv_input_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_usb_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_vibrator_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_vr_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_weaver_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_wifi_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_wifi_offload_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hal_wifi_supplicant_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 hidl_base_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 system_net_netd_hwservice (hwservice_manager (find))) +(neverallow untrusted_app_25 thermalcallback_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app default_android_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_audio_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_bluetooth_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_bootctl_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_camera_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_contexthub_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_drm_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_dumpstate_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_fingerprint_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_gatekeeper_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_gnss_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_graphics_composer_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_health_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_ir_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_keymaster_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_light_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_memtrack_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_nfc_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_oemlock_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_power_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_sensors_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_telephony_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_thermal_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_tv_cec_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_tv_input_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_usb_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_vibrator_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_vr_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_weaver_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_wifi_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_wifi_offload_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hal_wifi_supplicant_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app hidl_base_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app system_net_netd_hwservice (hwservice_manager (find))) +(neverallow untrusted_v2_app thermalcallback_hwservice (hwservice_manager (find))) +;;* lme + +;;* lmx 212 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all base_typeattr_197 (hwservice_manager (find))) +(neverallow ephemeral_app base_typeattr_197 (hwservice_manager (find))) +(neverallow isolated_app base_typeattr_197 (hwservice_manager (find))) +(neverallow mediaprovider base_typeattr_197 (hwservice_manager (find))) +(neverallow untrusted_app base_typeattr_197 (hwservice_manager (find))) +(neverallow untrusted_app_25 base_typeattr_197 (hwservice_manager (find))) +(neverallow untrusted_v2_app base_typeattr_197 (hwservice_manager (find))) +;;* lme + +;;* lmx 215 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all selinuxfs (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow ephemeral_app selinuxfs (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow isolated_app selinuxfs (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow mediaprovider selinuxfs (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow untrusted_app selinuxfs (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow untrusted_app_25 selinuxfs (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow untrusted_v2_app selinuxfs (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +;;* lme + +;;* lmx 220 system/sepolicy/private/app_neverallows.te + +(neverallow untrusted_app_all base_typeattr_198 (binder (call transfer))) +(neverallow ephemeral_app base_typeattr_198 (binder (call transfer))) +(neverallow isolated_app base_typeattr_198 (binder (call transfer))) +(neverallow mediaprovider base_typeattr_198 (binder (call transfer))) +(neverallow untrusted_app base_typeattr_198 (binder (call transfer))) +(neverallow untrusted_app_25 base_typeattr_198 (binder (call transfer))) +(neverallow untrusted_v2_app base_typeattr_198 (binder (call transfer))) +;;* lme + +(allow init audioserver_exec (file (read getattr map execute open))) +(allow init audioserver (process (transition))) +(allow audioserver audioserver_exec (file (read getattr map execute entrypoint open))) +(dontaudit init audioserver (process (noatsecure))) +(allow init audioserver (process (siginh rlimitinh))) +(typetransition init audioserver_exec process audioserver) +(typetransition audioserver tmpfs file audioserver_tmpfs) +(allow audioserver audioserver_tmpfs (file (read write getattr))) +(allow audioserver tmpfs (dir (getattr search))) +(allow audioserver sdcard_type (dir (ioctl read getattr lock search open))) +(allow audioserver sdcard_type (file (ioctl read getattr lock map open))) +(allow audioserver sdcard_type (lnk_file (ioctl read getattr lock map open))) +(allow audioserver servicemanager (binder (call transfer))) +(allow servicemanager audioserver (dir (search))) +(allow servicemanager audioserver (file (read open))) +(allow servicemanager audioserver (process (getattr))) +(allow audioserver binderservicedomain (binder (call transfer))) +(allow binderservicedomain audioserver (binder (transfer))) +(allow audioserver binderservicedomain (fd (use))) +(allow audioserver appdomain (binder (call transfer))) +(allow appdomain audioserver (binder (transfer))) +(allow audioserver appdomain (fd (use))) +(allow audioserver system_file (dir (ioctl read getattr lock search open))) +(allow audioserver system_file (file (ioctl read getattr lock map open))) +(allow audioserver system_file (lnk_file (ioctl read getattr lock map open))) +(allow audioserver audioserver_service (service_manager (add find))) +;;* lmx 31 system/sepolicy/private/audioserver.te + +(neverallow base_typeattr_199 audioserver_service (service_manager (add))) +;;* lme + +(allow audioserver appops_service (service_manager (find))) +(allow audioserver batterystats_service (service_manager (find))) +(allow audioserver permission_service (service_manager (find))) +(allow audioserver power_service (service_manager (find))) +(allow audioserver scheduling_policy_service (service_manager (find))) +(allow audioserver audio_data_file (dir (ioctl read write getattr lock add_name search open))) +(allow audioserver audio_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow audioserver audio_device (chr_file (read write))) +(allow audioserver bluetooth_socket (sock_file (write))) +(allow audioserver bluetooth (unix_stream_socket (connectto))) +;;* lmx 54 system/sepolicy/private/audioserver.te + +(neverallow audioserver fs_type (file (execute_no_trans))) +(neverallow audioserver file_type (file (execute_no_trans))) +;;* lme + +;;* lmx 66 system/sepolicy/private/audioserver.te + +(neverallow audioserver domain (tcp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind name_connect))) +(neverallow audioserver domain (udp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +(neverallow audioserver domain (rawip_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +;;* lme + +(allow binder_in_vendor_violators binder_device (chr_file (ioctl read write getattr lock append map open))) +(allow binderservicedomain dumpstate (fd (use))) +(allow binderservicedomain incidentd (fd (use))) +(allow binderservicedomain dumpstate (unix_stream_socket (read write getattr getopt))) +(allow binderservicedomain incidentd (unix_stream_socket (read write getattr getopt))) +(allow binderservicedomain dumpstate (fifo_file (write getattr))) +(allow binderservicedomain incidentd (fifo_file (write getattr))) +(allow binderservicedomain shell_data_file (file (write getattr))) +(allow binderservicedomain devpts (chr_file (ioctl read write getattr lock append map open))) +(allow binderservicedomain console_device (chr_file (ioctl read write getattr lock append map open))) +(allow binderservicedomain appdomain (fd (use))) +(allow binderservicedomain appdomain (fifo_file (write))) +(allow binderservicedomain permission_service (service_manager (find))) +(allow binderservicedomain keystore (keystore_key (get_state get insert delete exist list sign verify))) +(allow keystore binderservicedomain (dir (search))) +(allow keystore binderservicedomain (file (read open))) +(allow keystore binderservicedomain (process (getattr))) +(allow binderservicedomain keystore_service (service_manager (find))) +(allow binderservicedomain keystore (binder (call transfer))) +(allow keystore binderservicedomain (binder (transfer))) +(allow binderservicedomain keystore (fd (use))) +(allow blkid block_device (dir (search))) +(allow blkid userdata_block_device (blk_file (ioctl read getattr lock map open))) +(allow blkid dm_device (blk_file (ioctl read getattr lock map open))) +(allow blkid vold (fd (use))) +(allow blkid vold (fifo_file (read write getattr))) +(allow blkid blkid_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +;;* lmx 21 system/sepolicy/private/blkid.te + +(neverallow base_typeattr_90 blkid (process (transition))) +;;* lme + +;;* lmx 22 system/sepolicy/private/blkid.te + +(neverallow base_typeattr_9 blkid (process (dyntransition))) +;;* lme + +;;* lmx 23 system/sepolicy/private/blkid.te + +(neverallow blkid base_typeattr_200 (file (entrypoint))) +;;* lme + +(allow blkid_untrusted block_device (dir (search))) +(allow blkid_untrusted vold_device (blk_file (ioctl read getattr lock map open))) +(allow blkid_untrusted vold (fd (use))) +(allow blkid_untrusted vold (fifo_file (read write getattr))) +(allow blkid_untrusted blkid_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +;;* lmx 33 system/sepolicy/private/blkid_untrusted.te + +(neverallow blkid_untrusted dm_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow blkid_untrusted root_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow blkid_untrusted frp_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow blkid_untrusted system_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow blkid_untrusted recovery_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow blkid_untrusted boot_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow blkid_untrusted userdata_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow blkid_untrusted cache_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow blkid_untrusted swap_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +(neverallow blkid_untrusted metadata_block_device (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +;;* lme + +;;* lmx 36 system/sepolicy/private/blkid_untrusted.te + +(neverallow base_typeattr_90 blkid_untrusted (process (transition))) +;;* lme + +;;* lmx 37 system/sepolicy/private/blkid_untrusted.te + +(neverallow base_typeattr_9 blkid_untrusted (process (dyntransition))) +;;* lme + +;;* lmx 38 system/sepolicy/private/blkid_untrusted.te + +(neverallow blkid_untrusted base_typeattr_200 (file (entrypoint))) +;;* lme + +(typetransition bluetooth tmpfs file bluetooth_tmpfs) +(allow bluetooth bluetooth_tmpfs (file (read write getattr))) +(allow bluetooth tmpfs (dir (getattr search))) +(allow bluetooth bluetooth_tmpfs (file (execute))) +(typetransition bluetooth bluetooth_data_file sock_file bluetooth_socket) +(allowx bluetooth self (ioctl udp_socket (0x6900 0x6902))) +(allowx bluetooth self (ioctl udp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(allowx bluetooth self (ioctl udp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(allow bluetooth sysfs_wake_lock (file (ioctl read write getattr lock append map open))) +(allow bluetooth self (capability2 (block_suspend))) +(allow bluetooth bluetooth_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow bluetooth bluetooth_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow bluetooth bluetooth_data_file (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow bluetooth bluetooth_data_file (sock_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow bluetooth bluetooth_data_file (fifo_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow bluetooth bluetooth_logs_data_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow bluetooth bluetooth_logs_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow bluetooth bluetooth_socket (sock_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow bluetooth self (capability (net_admin))) +(allow bluetooth self (capability2 (wake_alarm))) +(allow bluetooth self (packet_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow bluetooth self (capability (net_bind_service net_admin net_raw))) +(allow bluetooth self (tun_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow bluetooth tun_device (chr_file (ioctl read write getattr lock append map open))) +(allow bluetooth efs_file (dir (search))) +(allow bluetooth uhid_device (chr_file (ioctl read write getattr lock append map open))) +(allow bluetooth proc_bluetooth_writable (file (ioctl read write getattr lock append map open))) +(allow bluetooth property_socket (sock_file (write))) +(allow bluetooth init (unix_stream_socket (connectto))) +(allow bluetooth bluetooth_prop (property_service (set))) +(allow bluetooth bluetooth_prop (file (ioctl read getattr lock map open))) +(allow bluetooth property_socket (sock_file (write))) +(allow bluetooth init (unix_stream_socket (connectto))) +(allow bluetooth pan_result_prop (property_service (set))) +(allow bluetooth pan_result_prop (file (ioctl read getattr lock map open))) +(allow bluetooth audioserver_service (service_manager (find))) +(allow bluetooth bluetooth_service (service_manager (find))) +(allow bluetooth drmserver_service (service_manager (find))) +(allow bluetooth mediaserver_service (service_manager (find))) +(allow bluetooth radio_service (service_manager (find))) +(allow bluetooth surfaceflinger_service (service_manager (find))) +(allow bluetooth app_api_service (service_manager (find))) +(allow bluetooth system_api_service (service_manager (find))) +(allow bluetooth shell_data_file (file (read))) +(allow bluetooth self (capability (sys_nice))) +(allow bluetooth runtime_event_log_tags_file (file (ioctl read getattr lock map open))) +;;* lmx 75 system/sepolicy/private/bluetooth.te + +(neverallow bluetooth self (capability (chown dac_override dac_read_search fowner fsetid kill setgid setuid setpcap linux_immutable net_broadcast ipc_lock ipc_owner sys_module sys_rawio sys_chroot sys_ptrace sys_pacct sys_admin sys_boot sys_resource sys_time sys_tty_config mknod lease audit_write audit_control setfcap))) +;;* lme + +;;* lmx 76 system/sepolicy/private/bluetooth.te + +(neverallow bluetooth self (capability2 (mac_override mac_admin syslog audit_read))) +;;* lme + +(allow bluetoothdomain bluetooth (unix_stream_socket (ioctl read write getattr getopt setopt shutdown))) +(allow init bootanim_exec (file (read getattr map execute open))) +(allow init bootanim (process (transition))) +(allow bootanim bootanim_exec (file (read getattr map execute entrypoint open))) +(dontaudit init bootanim (process (noatsecure))) +(allow init bootanim (process (siginh rlimitinh))) +(typetransition init bootanim_exec process bootanim) +(typetransition bootanim tmpfs file bootanim_tmpfs) +(allow bootanim bootanim_tmpfs (file (read write getattr))) +(allow bootanim tmpfs (dir (getattr search))) +(allow init bootstat_exec (file (read getattr map execute open))) +(allow init bootstat (process (transition))) +(allow bootstat bootstat_exec (file (read getattr map execute entrypoint open))) +(dontaudit init bootstat (process (noatsecure))) +(allow init bootstat (process (siginh rlimitinh))) +(typetransition init bootstat_exec process bootstat) +(typetransition bootstat tmpfs file bootstat_tmpfs) +(allow bootstat bootstat_tmpfs (file (read write getattr))) +(allow bootstat tmpfs (dir (getattr search))) +(allow init bufferhubd_exec (file (read getattr map execute open))) +(allow init bufferhubd (process (transition))) +(allow bufferhubd bufferhubd_exec (file (read getattr map execute entrypoint open))) +(dontaudit init bufferhubd (process (noatsecure))) +(allow init bufferhubd (process (siginh rlimitinh))) +(typetransition init bufferhubd_exec process bufferhubd) +(typetransition bufferhubd tmpfs file bufferhubd_tmpfs) +(allow bufferhubd bufferhubd_tmpfs (file (read write getattr))) +(allow bufferhubd tmpfs (dir (getattr search))) +(allow init cameraserver_exec (file (read getattr map execute open))) +(allow init cameraserver (process (transition))) +(allow cameraserver cameraserver_exec (file (read getattr map execute entrypoint open))) +(dontaudit init cameraserver (process (noatsecure))) +(allow init cameraserver (process (siginh rlimitinh))) +(typetransition init cameraserver_exec process cameraserver) +(typetransition cameraserver tmpfs file cameraserver_tmpfs) +(allow cameraserver cameraserver_tmpfs (file (read write getattr))) +(allow cameraserver tmpfs (dir (getattr search))) +(allow init cppreopts_exec (file (read getattr map execute open))) +(allow init cppreopts (process (transition))) +(allow cppreopts cppreopts_exec (file (read getattr map execute entrypoint open))) +(dontaudit init cppreopts (process (noatsecure))) +(allow init cppreopts (process (siginh rlimitinh))) +(typetransition init cppreopts_exec process cppreopts) +(typetransition cppreopts tmpfs file cppreopts_tmpfs) +(allow cppreopts cppreopts_tmpfs (file (read write getattr))) +(allow cppreopts tmpfs (dir (getattr search))) +(allow cppreopts preopt2cachename_exec (file (read getattr map execute open))) +(allow cppreopts preopt2cachename (process (transition))) +(allow preopt2cachename preopt2cachename_exec (file (read getattr map execute entrypoint open))) +(allow preopt2cachename cppreopts (process (sigchld))) +(dontaudit cppreopts preopt2cachename (process (noatsecure))) +(allow cppreopts preopt2cachename (process (siginh rlimitinh))) +(typetransition cppreopts preopt2cachename_exec process preopt2cachename) +(typetransition dexoptanalyzer tmpfs file dexoptanalyzer_tmpfs) +(allow dexoptanalyzer dexoptanalyzer_tmpfs (file (read write getattr))) +(allow dexoptanalyzer tmpfs (dir (getattr search))) +(allow dexoptanalyzer dalvikcache_data_file (dir (getattr search))) +(allow dexoptanalyzer dalvikcache_data_file (file (ioctl read getattr lock map open))) +(allow dexoptanalyzer dalvikcache_data_file (lnk_file (read))) +(allow dexoptanalyzer installd (fd (use))) +(allow dexoptanalyzer app_data_file (dir (getattr search))) +(allow dexoptanalyzer app_data_file (file (ioctl read getattr lock map open))) +(dontaudit dexoptanalyzer app_data_file (dir (audit_access))) +(allow dexoptanalyzer system_data_file (lnk_file (getattr))) +(allow init dhcp_exec (file (read getattr map execute open))) +(allow init dhcp (process (transition))) +(allow dhcp dhcp_exec (file (read getattr map execute entrypoint open))) +(dontaudit init dhcp (process (noatsecure))) +(allow init dhcp (process (siginh rlimitinh))) +(typetransition init dhcp_exec process dhcp) +(typetransition dhcp tmpfs file dhcp_tmpfs) +(allow dhcp dhcp_tmpfs (file (read write getattr))) +(allow dhcp tmpfs (dir (getattr search))) +(typetransition dhcp system_data_file dir dhcp_data_file) +(typetransition dhcp system_data_file file dhcp_data_file) +(allow domain crash_dump_exec (file (read getattr map execute open))) +(allow domain crash_dump (process (transition))) +(allow crash_dump crash_dump_exec (file (read getattr map execute entrypoint open))) +(allow crash_dump domain (process (sigchld))) +(dontaudit domain crash_dump (process (noatsecure))) +(allow domain crash_dump (process (siginh rlimitinh))) +(typetransition domain crash_dump_exec process crash_dump) +(allow domain crash_dump (process (sigchld))) +;;* lmx 15 system/sepolicy/private/domain.te + +(neverallow base_typeattr_201 self (capability (sys_ptrace))) +;;* lme + +;;* lmx 18 system/sepolicy/private/domain.te + +(neverallow base_typeattr_202 base_typeattr_9 (keystore_key (gen_unique_id))) +;;* lme + +(allow domain_deprecated system_data_file (file (read getattr))) +(allow domain_deprecated system_data_file (lnk_file (ioctl read getattr lock map open))) +(allow domain_deprecated apk_data_file (dir (getattr search))) +(allow domain_deprecated apk_data_file (file (ioctl read getattr lock map open))) +(allow domain_deprecated apk_data_file (lnk_file (ioctl read getattr lock map open))) +(allow domain_deprecated proc (dir (ioctl read getattr lock search open))) +(allow domain_deprecated proc (file (ioctl read getattr lock map open))) +(allow domain_deprecated proc (lnk_file (ioctl read getattr lock map open))) +(allow domain_deprecated sysfs (dir (ioctl read getattr lock search open))) +(allow domain_deprecated sysfs (file (ioctl read getattr lock map open))) +(allow domain_deprecated sysfs (lnk_file (ioctl read getattr lock map open))) +(allow init drmserver_exec (file (read getattr map execute open))) +(allow init drmserver (process (transition))) +(allow drmserver drmserver_exec (file (read getattr map execute entrypoint open))) +(dontaudit init drmserver (process (noatsecure))) +(allow init drmserver (process (siginh rlimitinh))) +(typetransition init drmserver_exec process drmserver) +(typetransition drmserver tmpfs file drmserver_tmpfs) +(allow drmserver drmserver_tmpfs (file (read write getattr))) +(allow drmserver tmpfs (dir (getattr search))) +(typetransition drmserver apk_data_file sock_file drmserver_socket) +(allow init dumpstate_exec (file (read getattr map execute open))) +(allow init dumpstate (process (transition))) +(allow dumpstate dumpstate_exec (file (read getattr map execute entrypoint open))) +(dontaudit init dumpstate (process (noatsecure))) +(allow init dumpstate (process (siginh rlimitinh))) +(typetransition init dumpstate_exec process dumpstate) +(typetransition dumpstate tmpfs file dumpstate_tmpfs) +(allow dumpstate dumpstate_tmpfs (file (read write getattr))) +(allow dumpstate tmpfs (dir (getattr search))) +(allow dumpstate vdc_exec (file (read getattr map execute open))) +(allow dumpstate vdc (process (transition))) +(allow vdc vdc_exec (file (read getattr map execute entrypoint open))) +(allow vdc dumpstate (process (sigchld))) +(dontaudit dumpstate vdc (process (noatsecure))) +(allow dumpstate vdc (process (siginh rlimitinh))) +(typetransition dumpstate vdc_exec process vdc) +(allow dumpstate system_file (file (lock))) +(allow dumpstate dumpstate_tmpfs (file (execute))) +(allow dumpstate debugfs_tracing (dir (ioctl read getattr lock search open))) +(allow dumpstate debugfs_tracing (file (ioctl read write getattr lock append map open))) +(allow dumpstate debugfs_trace_marker (file (getattr))) +(allow dumpstate atrace_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow dumpstate storaged_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow dumpstate storaged (binder (call transfer))) +(allow storaged dumpstate (binder (transfer))) +(allow dumpstate storaged (fd (use))) +(allow dumpstate boottime_prop (file (ioctl read getattr lock map open))) +(typetransition ephemeral_app tmpfs file ephemeral_app_tmpfs) +(allow ephemeral_app ephemeral_app_tmpfs (file (read write getattr))) +(allow ephemeral_app tmpfs (dir (getattr search))) +(allow ephemeral_app ephemeral_app_tmpfs (file (execute))) +(allow ephemeral_app sdcard_type (file (ioctl read write getattr lock append))) +(allow ephemeral_app media_rw_data_file (file (ioctl read write getattr lock append))) +(allow ephemeral_app app_data_file (file (ioctl read getattr lock map execute open))) +(allow ephemeral_app audioserver_service (service_manager (find))) +(allow ephemeral_app cameraserver_service (service_manager (find))) +(allow ephemeral_app mediaserver_service (service_manager (find))) +(allow ephemeral_app mediaextractor_service (service_manager (find))) +(allow ephemeral_app mediacodec_service (service_manager (find))) +(allow ephemeral_app mediametrics_service (service_manager (find))) +(allow ephemeral_app mediadrmserver_service (service_manager (find))) +(allow ephemeral_app drmserver_service (service_manager (find))) +(allow ephemeral_app surfaceflinger_service (service_manager (find))) +(allow ephemeral_app radio_service (service_manager (find))) +(allow ephemeral_app ephemeral_app_api_service (service_manager (find))) +;;* lmx 43 system/sepolicy/private/ephemeral_app.te + +(neverallow ephemeral_app app_data_file (file (execute_no_trans))) +;;* lme + +;;* lmx 46 system/sepolicy/private/ephemeral_app.te + +(neverallow ephemeral_app domain (netlink_kobject_uevent_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +;;* lme + +;;* lmx 49 system/sepolicy/private/ephemeral_app.te + +(neverallow ephemeral_app domain (netlink_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +;;* lme + +;;* lmx 53 system/sepolicy/private/ephemeral_app.te + +(neverallow ephemeral_app debugfs (file (read))) +;;* lme + +;;* lmx 56 system/sepolicy/private/ephemeral_app.te + +(neverallow ephemeral_app gpu_device (chr_file (execute))) +;;* lme + +;;* lmx 59 system/sepolicy/private/ephemeral_app.te + +(neverallow ephemeral_app sysfs (file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +;;* lmx 63 system/sepolicy/private/ephemeral_app.te + +(neverallow ephemeral_app proc (file (ioctl read write create setattr lock relabelfrom append unlink link rename execute execute_no_trans open))) +;;* lme + +;;* lmx 66 system/sepolicy/private/ephemeral_app.te + +(neverallow ephemeral_app sdcard_type (file (create open))) +(neverallow ephemeral_app media_rw_data_file (file (create open))) +;;* lme + +;;* lmx 67 system/sepolicy/private/ephemeral_app.te + +(neverallow ephemeral_app sdcard_type (dir (search))) +(neverallow ephemeral_app media_rw_data_file (dir (search))) +;;* lme + +;;* lmx 71 system/sepolicy/private/ephemeral_app.te + +(neverallow ephemeral_app proc_net (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +;;* lme + +(allow init fingerprintd_exec (file (read getattr map execute open))) +(allow init fingerprintd (process (transition))) +(allow fingerprintd fingerprintd_exec (file (read getattr map execute entrypoint open))) +(dontaudit init fingerprintd (process (noatsecure))) +(allow init fingerprintd (process (siginh rlimitinh))) +(typetransition init fingerprintd_exec process fingerprintd) +(typetransition fingerprintd tmpfs file fingerprintd_tmpfs) +(allow fingerprintd fingerprintd_tmpfs (file (read write getattr))) +(allow fingerprintd tmpfs (dir (getattr search))) +(allow init fsck_exec (file (read getattr map execute open))) +(allow init fsck (process (transition))) +(allow fsck fsck_exec (file (read getattr map execute entrypoint open))) +(dontaudit init fsck (process (noatsecure))) +(allow init fsck (process (siginh rlimitinh))) +(typetransition init fsck_exec process fsck) +(typetransition fsck tmpfs file fsck_tmpfs) +(allow fsck fsck_tmpfs (file (read write getattr))) +(allow fsck tmpfs (dir (getattr search))) +(allow init gatekeeperd_exec (file (read getattr map execute open))) +(allow init gatekeeperd (process (transition))) +(allow gatekeeperd gatekeeperd_exec (file (read getattr map execute entrypoint open))) +(dontaudit init gatekeeperd (process (noatsecure))) +(allow init gatekeeperd (process (siginh rlimitinh))) +(typetransition init gatekeeperd_exec process gatekeeperd) +(typetransition gatekeeperd tmpfs file gatekeeperd_tmpfs) +(allow gatekeeperd gatekeeperd_tmpfs (file (read write getattr))) +(allow gatekeeperd tmpfs (dir (getattr search))) +(allow init hal_allocator_default_exec (file (read getattr map execute open))) +(allow init hal_allocator_default (process (transition))) +(allow hal_allocator_default hal_allocator_default_exec (file (read getattr map execute entrypoint open))) +(dontaudit init hal_allocator_default (process (noatsecure))) +(allow init hal_allocator_default (process (siginh rlimitinh))) +(typetransition init hal_allocator_default_exec process hal_allocator_default) +(typetransition hal_allocator_default tmpfs file hal_allocator_default_tmpfs) +(allow hal_allocator_default hal_allocator_default_tmpfs (file (read write getattr))) +(allow hal_allocator_default tmpfs (dir (getattr search))) +(allow halclientdomain hwservicemanager (binder (call transfer))) +(allow hwservicemanager halclientdomain (binder (call transfer))) +(allow hwservicemanager halclientdomain (dir (search))) +(allow hwservicemanager halclientdomain (file (read open))) +(allow hwservicemanager halclientdomain (process (getattr))) +(allow halclientdomain hwservicemanager_prop (file (ioctl read getattr lock map open))) +(allow halclientdomain hidl_manager_hwservice (hwservice_manager (find))) +(allow halserverdomain hwservicemanager (binder (call transfer))) +(allow hwservicemanager halserverdomain (binder (call transfer))) +(allow hwservicemanager halserverdomain (dir (search))) +(allow hwservicemanager halserverdomain (file (read open))) +(allow hwservicemanager halserverdomain (process (getattr))) +(allow halserverdomain system_file (dir (ioctl read getattr lock search open))) +(allow halserverdomain hwservicemanager_prop (file (ioctl read getattr lock map open))) +(allow init healthd_exec (file (read getattr map execute open))) +(allow init healthd (process (transition))) +(allow healthd healthd_exec (file (read getattr map execute entrypoint open))) +(dontaudit init healthd (process (noatsecure))) +(allow init healthd (process (siginh rlimitinh))) +(typetransition init healthd_exec process healthd) +(typetransition healthd tmpfs file healthd_tmpfs) +(allow healthd healthd_tmpfs (file (read write getattr))) +(allow healthd tmpfs (dir (getattr search))) +(allow healthd storaged (binder (call transfer))) +(allow storaged healthd (binder (transfer))) +(allow healthd storaged (fd (use))) +(allow init hwservicemanager_exec (file (read getattr map execute open))) +(allow init hwservicemanager (process (transition))) +(allow hwservicemanager hwservicemanager_exec (file (read getattr map execute entrypoint open))) +(dontaudit init hwservicemanager (process (noatsecure))) +(allow init hwservicemanager (process (siginh rlimitinh))) +(typetransition init hwservicemanager_exec process hwservicemanager) +(typetransition hwservicemanager tmpfs file hwservicemanager_tmpfs) +(allow hwservicemanager hwservicemanager_tmpfs (file (read write getattr))) +(allow hwservicemanager tmpfs (dir (getattr search))) +(allow hwservicemanager hidl_manager_hwservice (hwservice_manager (add find))) +(allow hwservicemanager hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 5 system/sepolicy/private/hwservicemanager.te + +(neverallow base_typeattr_203 hidl_manager_hwservice (hwservice_manager (add))) +;;* lme + +(allow hwservicemanager hidl_token_hwservice (hwservice_manager (add find))) +(allow hwservicemanager hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 6 system/sepolicy/private/hwservicemanager.te + +(neverallow base_typeattr_203 hidl_token_hwservice (hwservice_manager (add))) +;;* lme + +(allow shell incident_exec (file (read getattr map execute open))) +(allow shell incident (process (transition))) +(allow incident incident_exec (file (read getattr map execute entrypoint open))) +(allow incident shell (process (sigchld))) +(dontaudit shell incident (process (noatsecure))) +(allow shell incident (process (siginh rlimitinh))) +(typetransition shell incident_exec process incident) +(allow incident shell (fd (use))) +(allow incident adbd (fd (use))) +(allow incident adbd (unix_stream_socket (read write))) +(allow incident adbd (process (sigchld))) +(allow incident servicemanager (binder (call transfer))) +(allow servicemanager incident (dir (search))) +(allow servicemanager incident (file (read open))) +(allow servicemanager incident (process (getattr))) +(allow incident incident_service (service_manager (find))) +(allow incident incidentd (binder (call transfer))) +(allow incidentd incident (binder (transfer))) +(allow incident incidentd (fd (use))) +(allow incident incidentd (fifo_file (write))) +(allow init incidentd_exec (file (read getattr map execute open))) +(allow init incidentd (process (transition))) +(allow incidentd incidentd_exec (file (read getattr map execute entrypoint open))) +(dontaudit init incidentd (process (noatsecure))) +(allow init incidentd (process (siginh rlimitinh))) +(typetransition init incidentd_exec process incidentd) +(typetransition incidentd tmpfs file incidentd_tmpfs) +(allow incidentd incidentd_tmpfs (file (read write getattr))) +(allow incidentd tmpfs (dir (getattr search))) +(allow incidentd servicemanager (binder (call transfer))) +(allow servicemanager incidentd (dir (search))) +(allow servicemanager incidentd (file (read open))) +(allow servicemanager incidentd (process (getattr))) +(allow incidentd sysfs_wake_lock (file (ioctl read write getattr lock append map open))) +(allow incidentd self (capability2 (block_suspend))) +(allow incidentd domain (dir (ioctl read getattr lock search open))) +(allow incidentd domain (file (ioctl read getattr lock map open))) +(allow incidentd domain (lnk_file (ioctl read getattr lock map open))) +(allow incidentd self (capability (kill))) +(allow incidentd system_file (file (execute_no_trans))) +(allow incidentd toolbox_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow incidentd incident_data_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow incidentd incident_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow incidentd audioserver (process (signal))) +(allow incidentd cameraserver (process (signal))) +(allow incidentd drmserver (process (signal))) +(allow incidentd inputflinger (process (signal))) +(allow incidentd mediacodec (process (signal))) +(allow incidentd mediadrmserver (process (signal))) +(allow incidentd mediaextractor (process (signal))) +(allow incidentd mediaserver (process (signal))) +(allow incidentd sdcardd (process (signal))) +(allow incidentd surfaceflinger (process (signal))) +(allow incidentd binderservicedomain (binder (call transfer))) +(allow binderservicedomain incidentd (binder (transfer))) +(allow incidentd binderservicedomain (fd (use))) +(allow incidentd appdomain (binder (call transfer))) +(allow appdomain incidentd (binder (transfer))) +(allow incidentd appdomain (fd (use))) +(allow incidentd shell_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow incidentd system_server_service (service_manager (find))) +(allow incidentd app_api_service (service_manager (find))) +(allow incidentd system_api_service (service_manager (find))) +(allow incidentd incident_service (service_manager (add find))) +;;* lmx 77 system/sepolicy/private/incidentd.te + +(neverallow base_typeattr_204 incident_service (service_manager (add))) +;;* lme + +(allow incidentd incident (fd (use))) +(allow incidentd incident (fifo_file (write))) +(allow incidentd incident (binder (call transfer))) +(allow incident incidentd (binder (transfer))) +(allow incidentd incident (fd (use))) +;;* lmx 91 system/sepolicy/private/incidentd.te + +(neverallow base_typeattr_205 incident_service (service_manager (find))) +;;* lme + +;;* lmx 105 system/sepolicy/private/incidentd.te + +(neverallow base_typeattr_206 incident_data_file (file (write create getattr setattr lock append map unlink rename execute execute_no_trans open))) +;;* lme + +;;* lmx 107 system/sepolicy/private/incidentd.te + +(neverallow base_typeattr_207 incident_data_file (file (ioctl read getattr lock map open))) +;;* lme + +;;* lmx 109 system/sepolicy/private/incidentd.te + +(neverallow base_typeattr_206 incident_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +;;* lme + +(typetransition init tmpfs file init_tmpfs) +(allow init init_tmpfs (file (read write getattr))) +(allow init tmpfs (dir (getattr search))) +(allow init rootfs (file (read getattr map execute open))) +(allow init charger (process (transition))) +(allow charger rootfs (file (read getattr map execute entrypoint open))) +(dontaudit init charger (process (noatsecure))) +(allow init charger (process (siginh rlimitinh))) +(allow init rootfs (file (read getattr map execute open))) +(allow init healthd (process (transition))) +(allow healthd rootfs (file (read getattr map execute entrypoint open))) +(dontaudit init healthd (process (noatsecure))) +(allow init healthd (process (siginh rlimitinh))) +(allow init rootfs (file (read getattr map execute open))) +(allow init slideshow (process (transition))) +(allow slideshow rootfs (file (read getattr map execute entrypoint open))) +(dontaudit init slideshow (process (noatsecure))) +(allow init slideshow (process (siginh rlimitinh))) +(allow init e2fs_exec (file (read getattr map execute open))) +(allow init e2fs (process (transition))) +(allow e2fs e2fs_exec (file (read getattr map execute entrypoint open))) +(dontaudit init e2fs (process (noatsecure))) +(allow init e2fs (process (siginh rlimitinh))) +(typetransition init e2fs_exec process e2fs) +(allow init shell_exec (file (read getattr map execute open))) +(allow init shell (process (transition))) +(allow shell shell_exec (file (read getattr map execute entrypoint open))) +(dontaudit init shell (process (noatsecure))) +(allow init shell (process (siginh rlimitinh))) +(allow init init_exec (file (read getattr map execute open))) +(allow init ueventd (process (transition))) +(allow ueventd init_exec (file (read getattr map execute entrypoint open))) +(dontaudit init ueventd (process (noatsecure))) +(allow init ueventd (process (siginh rlimitinh))) +(allow init init_exec (file (read getattr map execute open))) +(allow init watchdogd (process (transition))) +(allow watchdogd init_exec (file (read getattr map execute entrypoint open))) +(dontaudit init watchdogd (process (noatsecure))) +(allow init watchdogd (process (siginh rlimitinh))) +(allow init rootfs (file (read getattr map execute open))) +(allow init toolbox_exec (file (read getattr map execute open))) +(allow init modprobe (process (transition))) +(allow modprobe rootfs (file (read getattr map execute entrypoint open))) +(allow modprobe toolbox_exec (file (read getattr map execute entrypoint open))) +(dontaudit init modprobe (process (noatsecure))) +(allow init modprobe (process (siginh rlimitinh))) +(dontaudit init sysfs (dir (write))) +(allow init inputflinger_exec (file (read getattr map execute open))) +(allow init inputflinger (process (transition))) +(allow inputflinger inputflinger_exec (file (read getattr map execute entrypoint open))) +(dontaudit init inputflinger (process (noatsecure))) +(allow init inputflinger (process (siginh rlimitinh))) +(typetransition init inputflinger_exec process inputflinger) +(typetransition inputflinger tmpfs file inputflinger_tmpfs) +(allow inputflinger inputflinger_tmpfs (file (read write getattr))) +(allow inputflinger tmpfs (dir (getattr search))) +(allow init install_recovery_exec (file (read getattr map execute open))) +(allow init install_recovery (process (transition))) +(allow install_recovery install_recovery_exec (file (read getattr map execute entrypoint open))) +(dontaudit init install_recovery (process (noatsecure))) +(allow init install_recovery (process (siginh rlimitinh))) +(typetransition init install_recovery_exec process install_recovery) +(typetransition install_recovery tmpfs file install_recovery_tmpfs) +(allow install_recovery install_recovery_tmpfs (file (read write getattr))) +(allow install_recovery tmpfs (dir (getattr search))) +(allow init installd_exec (file (read getattr map execute open))) +(allow init installd (process (transition))) +(allow installd installd_exec (file (read getattr map execute entrypoint open))) +(dontaudit init installd (process (noatsecure))) +(allow init installd (process (siginh rlimitinh))) +(typetransition init installd_exec process installd) +(typetransition installd tmpfs file installd_tmpfs) +(allow installd installd_tmpfs (file (read write getattr))) +(allow installd tmpfs (dir (getattr search))) +(allow installd dex2oat_exec (file (read getattr map execute open))) +(allow installd dex2oat (process (transition))) +(allow dex2oat dex2oat_exec (file (read getattr map execute entrypoint open))) +(allow dex2oat installd (process (sigchld))) +(dontaudit installd dex2oat (process (noatsecure))) +(allow installd dex2oat (process (siginh rlimitinh))) +(typetransition installd dex2oat_exec process dex2oat) +(allow installd dexoptanalyzer_exec (file (read getattr map execute open))) +(allow installd dexoptanalyzer (process (transition))) +(allow dexoptanalyzer dexoptanalyzer_exec (file (read getattr map execute entrypoint open))) +(allow dexoptanalyzer installd (process (sigchld))) +(dontaudit installd dexoptanalyzer (process (noatsecure))) +(allow installd dexoptanalyzer (process (siginh rlimitinh))) +(typetransition installd dexoptanalyzer_exec process dexoptanalyzer) +(allow installd profman_exec (file (read getattr map execute open))) +(allow installd profman (process (transition))) +(allow profman profman_exec (file (read getattr map execute entrypoint open))) +(allow profman installd (process (sigchld))) +(dontaudit installd profman (process (noatsecure))) +(allow installd profman (process (siginh rlimitinh))) +(typetransition installd profman_exec process profman) +(allow installd idmap_exec (file (read getattr map execute open))) +(allow installd idmap (process (transition))) +(allow idmap idmap_exec (file (read getattr map execute entrypoint open))) +(allow idmap installd (process (sigchld))) +(dontaudit installd idmap (process (noatsecure))) +(allow installd idmap (process (siginh rlimitinh))) +(typetransition installd idmap_exec process idmap) +(typetransition installd system_data_file file install_data_file) +(typetransition isolated_app tmpfs file isolated_app_tmpfs) +(allow isolated_app isolated_app_tmpfs (file (read write getattr))) +(allow isolated_app tmpfs (dir (getattr search))) +(allow isolated_app isolated_app_tmpfs (file (execute))) +(allow isolated_app app_data_file (file (read write getattr lock append))) +(allow isolated_app activity_service (service_manager (find))) +(allow isolated_app display_service (service_manager (find))) +(allow isolated_app webviewupdate_service (service_manager (find))) +(allow isolated_app self (process (ptrace))) +(allow isolated_app sdcard_type (file (read write getattr lock append))) +(allow isolated_app media_rw_data_file (file (read write getattr lock append))) +(auditallow isolated_app sdcard_type (file (write append))) +(auditallow isolated_app media_rw_data_file (file (write append))) +(allow isolated_app webview_zygote (fd (use))) +(allow isolated_app webview_zygote (process (sigchld))) +(allow isolated_app webview_zygote (unix_dgram_socket (write))) +(allow isolated_app webview_zygote_tmpfs (file (read))) +(dontaudit isolated_app shell_data_file (dir (search))) +;;* lmx 58 system/sepolicy/private/isolated_app.te + +(neverallow isolated_app tun_device (chr_file (open))) +;;* lme + +;;* lmx 61 system/sepolicy/private/isolated_app.te + +(neverallow isolated_app app_data_file (file (open))) +;;* lme + +;;* lmx 66 system/sepolicy/private/isolated_app.te + +(neverallow isolated_app anr_data_file (file (ioctl read write create getattr setattr lock relabelfrom relabelto map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod audit_access))) +;;* lme + +;;* lmx 67 system/sepolicy/private/isolated_app.te + +(neverallow isolated_app anr_data_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent rmdir open audit_access execmod))) +;;* lme + +;;* lmx 70 system/sepolicy/private/isolated_app.te + +(neverallow isolated_app hwbinder_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +;;* lmx 71 system/sepolicy/private/isolated_app.te + +(neverallow isolated_app base_typeattr_9 (hwservice_manager (add find list))) +;;* lme + +;;* lmx 74 system/sepolicy/private/isolated_app.te + +(neverallow isolated_app vndbinder_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +;;* lmx 78 system/sepolicy/private/isolated_app.te + +(neverallow isolated_app base_typeattr_9 (service_manager (add list))) +;;* lme + +;;* lmx 88 system/sepolicy/private/isolated_app.te + +(neverallow isolated_app base_typeattr_208 (service_manager (find))) +;;* lme + +;;* lmx 91 system/sepolicy/private/isolated_app.te + +(neverallow isolated_app gpu_device (chr_file (ioctl read write getattr lock append map execute open))) +;;* lme + +;;* lmx 94 system/sepolicy/private/isolated_app.te + +(neverallow isolated_app cache_file (dir (write create setattr relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent rmdir audit_access execmod))) +;;* lme + +;;* lmx 95 system/sepolicy/private/isolated_app.te + +(neverallow isolated_app cache_file (file (ioctl write create setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +;;* lmx 99 system/sepolicy/private/isolated_app.te + +(neverallow isolated_app sdcard_type (dir (ioctl read write create setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent search rmdir open audit_access execmod))) +(neverallow isolated_app mnt_user_file (dir (ioctl read write create setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent search rmdir open audit_access execmod))) +(neverallow isolated_app storage_file (dir (ioctl read write create setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent search rmdir open audit_access execmod))) +;;* lme + +;;* lmx 100 system/sepolicy/private/isolated_app.te + +(neverallow isolated_app mnt_user_file (file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow isolated_app mnt_user_file (lnk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow isolated_app mnt_user_file (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow isolated_app mnt_user_file (blk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow isolated_app mnt_user_file (sock_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow isolated_app mnt_user_file (fifo_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow isolated_app storage_file (file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow isolated_app storage_file (lnk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow isolated_app storage_file (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow isolated_app storage_file (blk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow isolated_app storage_file (sock_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow isolated_app storage_file (fifo_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +;;* lme + +;;* lmx 101 system/sepolicy/private/isolated_app.te + +(neverallow isolated_app sdcard_type (lnk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow isolated_app sdcard_type (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow isolated_app sdcard_type (blk_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow isolated_app sdcard_type (sock_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +(neverallow isolated_app sdcard_type (fifo_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton open audit_access execmod))) +;;* lme + +;;* lmx 102 system/sepolicy/private/isolated_app.te + +(neverallow isolated_app sdcard_type (file (ioctl create setattr relabelfrom relabelto map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +;;* lmx 105 system/sepolicy/private/isolated_app.te + +(neverallow isolated_app usbaccessory_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +(neverallow isolated_app usb_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +;;* lmx 108 system/sepolicy/private/isolated_app.te + +(neverallow isolated_app webview_zygote_socket (sock_file (write))) +;;* lme + +(allow kernel init_exec (file (read getattr map execute open))) +(allow kernel init (process (transition))) +(allow init init_exec (file (read getattr map execute entrypoint open))) +(allow init kernel (process (sigchld))) +(dontaudit kernel init (process (noatsecure))) +(allow kernel init (process (siginh rlimitinh))) +(typetransition kernel init_exec process init) +(allow init keystore_exec (file (read getattr map execute open))) +(allow init keystore (process (transition))) +(allow keystore keystore_exec (file (read getattr map execute entrypoint open))) +(dontaudit init keystore (process (noatsecure))) +(allow init keystore (process (siginh rlimitinh))) +(typetransition init keystore_exec process keystore) +(typetransition keystore tmpfs file keystore_tmpfs) +(allow keystore keystore_tmpfs (file (read write getattr))) +(allow keystore tmpfs (dir (getattr search))) +(allow keystore system_wifi_keystore_hwservice (hwservice_manager (add find))) +(allow keystore hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 11 system/sepolicy/private/keystore.te + +(neverallow base_typeattr_151 system_wifi_keystore_hwservice (hwservice_manager (add))) +;;* lme + +(allow init lmkd_exec (file (read getattr map execute open))) +(allow init lmkd (process (transition))) +(allow lmkd lmkd_exec (file (read getattr map execute entrypoint open))) +(dontaudit init lmkd (process (noatsecure))) +(allow init lmkd (process (siginh rlimitinh))) +(typetransition init lmkd_exec process lmkd) +(typetransition lmkd tmpfs file lmkd_tmpfs) +(allow lmkd lmkd_tmpfs (file (read write getattr))) +(allow lmkd tmpfs (dir (getattr search))) +(allow init logd_exec (file (read getattr map execute open))) +(allow init logd (process (transition))) +(allow logd logd_exec (file (read getattr map execute entrypoint open))) +(dontaudit init logd (process (noatsecure))) +(allow init logd (process (siginh rlimitinh))) +(typetransition init logd_exec process logd) +(typetransition logd tmpfs file logd_tmpfs) +(allow logd logd_tmpfs (file (read write getattr))) +(allow logd tmpfs (dir (getattr search))) +;;* lmx 13 system/sepolicy/private/logd.te + +(neverallow logd base_typeattr_209 (file (write create append))) +;;* lme + +;;* lmx 28 system/sepolicy/private/logd.te + +(neverallow base_typeattr_210 runtime_event_log_tags_file (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +;;* lme + +;;* lmx 39 system/sepolicy/private/logd.te + +(neverallow base_typeattr_211 runtime_event_log_tags_file (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +;;* lme + +;;* lmx 22 system/sepolicy/private/logpersist.te + +(neverallow logpersist file_type (file (write create append))) +;;* lme + +;;* lmx 23 system/sepolicy/private/logpersist.te + +(neverallow base_typeattr_15 misc_logd_file (file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +;;* lme + +;;* lmx 24 system/sepolicy/private/logpersist.te + +(neverallow base_typeattr_15 misc_logd_file (dir (write relabelfrom link rename add_name remove_name reparent rmdir))) +;;* lme + +(allow init mdnsd_exec (file (read getattr map execute open))) +(allow init mdnsd (process (transition))) +(allow mdnsd mdnsd_exec (file (read getattr map execute entrypoint open))) +(dontaudit init mdnsd (process (noatsecure))) +(allow init mdnsd (process (siginh rlimitinh))) +(typetransition init mdnsd_exec process mdnsd) +(typetransition mdnsd tmpfs file mdnsd_tmpfs) +(allow mdnsd mdnsd_tmpfs (file (read write getattr))) +(allow mdnsd tmpfs (dir (getattr search))) +(allow mdnsd proc_net (dir (ioctl read getattr lock search open))) +(allow mdnsd proc_net (file (ioctl read getattr lock map open))) +(allow mdnsd proc_net (lnk_file (ioctl read getattr lock map open))) +(allow init mediadrmserver_exec (file (read getattr map execute open))) +(allow init mediadrmserver (process (transition))) +(allow mediadrmserver mediadrmserver_exec (file (read getattr map execute entrypoint open))) +(dontaudit init mediadrmserver (process (noatsecure))) +(allow init mediadrmserver (process (siginh rlimitinh))) +(typetransition init mediadrmserver_exec process mediadrmserver) +(typetransition mediadrmserver tmpfs file mediadrmserver_tmpfs) +(allow mediadrmserver mediadrmserver_tmpfs (file (read write getattr))) +(allow mediadrmserver tmpfs (dir (getattr search))) +(auditallow mediadrmserver hal_graphics_allocator_server (binder (call))) +(allow init mediaextractor_exec (file (read getattr map execute open))) +(allow init mediaextractor (process (transition))) +(allow mediaextractor mediaextractor_exec (file (read getattr map execute entrypoint open))) +(dontaudit init mediaextractor (process (noatsecure))) +(allow init mediaextractor (process (siginh rlimitinh))) +(typetransition init mediaextractor_exec process mediaextractor) +(typetransition mediaextractor tmpfs file mediaextractor_tmpfs) +(allow mediaextractor mediaextractor_tmpfs (file (read write getattr))) +(allow mediaextractor tmpfs (dir (getattr search))) +(allow init mediametrics_exec (file (read getattr map execute open))) +(allow init mediametrics (process (transition))) +(allow mediametrics mediametrics_exec (file (read getattr map execute entrypoint open))) +(dontaudit init mediametrics (process (noatsecure))) +(allow init mediametrics (process (siginh rlimitinh))) +(typetransition init mediametrics_exec process mediametrics) +(typetransition mediametrics tmpfs file mediametrics_tmpfs) +(allow mediametrics mediametrics_tmpfs (file (read write getattr))) +(allow mediametrics tmpfs (dir (getattr search))) +(typetransition mediaprovider tmpfs file mediaprovider_tmpfs) +(allow mediaprovider mediaprovider_tmpfs (file (read write getattr))) +(allow mediaprovider tmpfs (dir (getattr search))) +(allow mediaprovider mediaprovider_tmpfs (file (execute))) +(allow mediaprovider cache_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow mediaprovider cache_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow mediaprovider cache_file (lnk_file (ioctl read getattr lock map open))) +(allow mediaprovider app_api_service (service_manager (find))) +(allow mediaprovider audioserver_service (service_manager (find))) +(allow mediaprovider drmserver_service (service_manager (find))) +(allow mediaprovider mediaserver_service (service_manager (find))) +(allow mediaprovider surfaceflinger_service (service_manager (find))) +(allow mediaprovider ringtone_file (file (read write getattr))) +(allow mediaprovider mtp_device (chr_file (ioctl read write getattr lock append map open))) +(allow mediaprovider functionfs (dir (search))) +(allow mediaprovider functionfs (file (ioctl read write getattr lock append map open))) +(allow mediaprovider property_socket (sock_file (write))) +(allow mediaprovider init (unix_stream_socket (connectto))) +(allow mediaprovider ffs_prop (property_service (set))) +(allow mediaprovider ffs_prop (file (ioctl read getattr lock map open))) +(allow init mediaserver_exec (file (read getattr map execute open))) +(allow init mediaserver (process (transition))) +(allow mediaserver mediaserver_exec (file (read getattr map execute entrypoint open))) +(dontaudit init mediaserver (process (noatsecure))) +(allow init mediaserver (process (siginh rlimitinh))) +(typetransition init mediaserver_exec process mediaserver) +(typetransition mediaserver tmpfs file mediaserver_tmpfs) +(allow mediaserver mediaserver_tmpfs (file (read write getattr))) +(allow mediaserver tmpfs (dir (getattr search))) +(allow mediaserver hal_omx_hwservice (hwservice_manager (find))) +(allow init mtp_exec (file (read getattr map execute open))) +(allow init mtp (process (transition))) +(allow mtp mtp_exec (file (read getattr map execute entrypoint open))) +(dontaudit init mtp (process (noatsecure))) +(allow init mtp (process (siginh rlimitinh))) +(typetransition init mtp_exec process mtp) +(typetransition mtp tmpfs file mtp_tmpfs) +(allow mtp mtp_tmpfs (file (read write getattr))) +(allow mtp tmpfs (dir (getattr search))) +(allow netdomain self (tcp_socket (ioctl read write create getattr setattr lock append bind connect listen accept getopt setopt shutdown))) +(allow netdomain self (udp_socket (ioctl read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow netdomain self (rawip_socket (ioctl read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow netdomain port_type (tcp_socket (name_connect))) +(allow base_typeattr_212 node_type (tcp_socket (node_bind))) +(allow base_typeattr_212 node_type (udp_socket (node_bind))) +(allow base_typeattr_212 port_type (udp_socket (name_bind))) +(allow base_typeattr_212 port_type (tcp_socket (name_bind))) +(allow netdomain self (netlink_route_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown nlmsg_read))) +(allow netdomain dnsproxyd_socket (sock_file (write))) +(allow netdomain netd (unix_stream_socket (connectto))) +(allow netdomain fwmarkd_socket (sock_file (write))) +(allow netdomain netd (unix_stream_socket (connectto))) +(allow netdomain mdnsd_socket (sock_file (write))) +(allow netdomain mdnsd (unix_stream_socket (connectto))) +(allow init netd_exec (file (read getattr map execute open))) +(allow init netd (process (transition))) +(allow netd netd_exec (file (read getattr map execute entrypoint open))) +(dontaudit init netd (process (noatsecure))) +(allow init netd (process (siginh rlimitinh))) +(typetransition init netd_exec process netd) +(typetransition netd tmpfs file netd_tmpfs) +(allow netd netd_tmpfs (file (read write getattr))) +(allow netd tmpfs (dir (getattr search))) +(allow netd dnsmasq_exec (file (read getattr map execute open))) +(allow netd dnsmasq (process (transition))) +(allow dnsmasq dnsmasq_exec (file (read getattr map execute entrypoint open))) +(allow dnsmasq netd (process (sigchld))) +(dontaudit netd dnsmasq (process (noatsecure))) +(allow netd dnsmasq (process (siginh rlimitinh))) +(typetransition netd dnsmasq_exec process dnsmasq) +(allow netd clatd_exec (file (read getattr map execute open))) +(allow netd clatd (process (transition))) +(allow clatd clatd_exec (file (read getattr map execute entrypoint open))) +(allow clatd netd (process (sigchld))) +(dontaudit netd clatd (process (noatsecure))) +(allow netd clatd (process (siginh rlimitinh))) +(typetransition netd clatd_exec process clatd) +(allow netutils_wrapper system_file (dir (ioctl read getattr lock search open))) +(allow netutils_wrapper system_file (file (ioctl read getattr lock map open))) +(allow netutils_wrapper system_file (lnk_file (ioctl read getattr lock map open))) +(allow netutils_wrapper self (capability (net_raw))) +(allow netutils_wrapper system_file (file (execute execute_no_trans))) +(allow netutils_wrapper proc_net (file (read getattr open))) +(allow netutils_wrapper self (rawip_socket (ioctl read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow netutils_wrapper self (udp_socket (ioctl read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow netutils_wrapper self (capability (net_admin))) +(allow netutils_wrapper self (netlink_route_socket (read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(allow netutils_wrapper self (netlink_xfrm_socket (read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(allow netutils_wrapper netd_socket (sock_file (read write getattr append open))) +(allow netutils_wrapper netd (unix_stream_socket (read getattr connectto))) +(allow netutils_wrapper net_data_file (dir (ioctl read getattr lock search open))) +(allow netutils_wrapper net_data_file (file (ioctl read getattr lock map open))) +(allow netutils_wrapper net_data_file (lnk_file (ioctl read getattr lock map open))) +(allow base_typeattr_213 netutils_wrapper_exec (file (read getattr map execute open))) +(allow base_typeattr_213 netutils_wrapper (process (transition))) +(allow netutils_wrapper netutils_wrapper_exec (file (read getattr map execute entrypoint open))) +(allow netutils_wrapper base_typeattr_213 (process (sigchld))) +(dontaudit base_typeattr_213 netutils_wrapper (process (noatsecure))) +(allow base_typeattr_213 netutils_wrapper (process (siginh rlimitinh))) +(typetransition base_typeattr_213 netutils_wrapper_exec process netutils_wrapper) +(typetransition nfc tmpfs file nfc_tmpfs) +(allow nfc nfc_tmpfs (file (read write getattr))) +(allow nfc tmpfs (dir (getattr search))) +(allow nfc nfc_tmpfs (file (execute))) +(allow nfc nfc_service (service_manager (add find))) +;;* lmx 7 system/sepolicy/private/nfc.te + +(neverallow base_typeattr_214 nfc_service (service_manager (add))) +;;* lme + +(allow nfc nfc_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow nfc nfc_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow nfc nfc_data_file (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow nfc nfc_data_file (sock_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow nfc nfc_data_file (fifo_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow nfc audioserver_service (service_manager (find))) +(allow nfc drmserver_service (service_manager (find))) +(allow nfc mediacodec_service (service_manager (find))) +(allow nfc mediametrics_service (service_manager (find))) +(allow nfc mediaextractor_service (service_manager (find))) +(allow nfc mediaserver_service (service_manager (find))) +(allow nfc radio_service (service_manager (find))) +(allow nfc surfaceflinger_service (service_manager (find))) +(allow nfc app_api_service (service_manager (find))) +(allow nfc system_api_service (service_manager (find))) +(allow nfc vr_manager_service (service_manager (find))) +(allow nfc property_socket (sock_file (write))) +(allow nfc init (unix_stream_socket (connectto))) +(allow nfc nfc_prop (property_service (set))) +(allow nfc nfc_prop (file (ioctl read getattr lock map open))) +(allow nfc shell_data_file (file (read))) +(allow otapreopt_chroot postinstall_file (file (read getattr map execute open))) +(allow otapreopt_chroot postinstall_dexopt (process (transition))) +(allow postinstall_dexopt postinstall_file (file (read getattr map execute entrypoint open))) +(allow postinstall_dexopt otapreopt_chroot (process (sigchld))) +(dontaudit otapreopt_chroot postinstall_dexopt (process (noatsecure))) +(allow otapreopt_chroot postinstall_dexopt (process (siginh rlimitinh))) +(typetransition otapreopt_chroot postinstall_file process postinstall_dexopt) +(allow init otapreopt_slot_exec (file (read getattr map execute open))) +(allow init otapreopt_slot (process (transition))) +(allow otapreopt_slot otapreopt_slot_exec (file (read getattr map execute entrypoint open))) +(dontaudit init otapreopt_slot (process (noatsecure))) +(allow init otapreopt_slot (process (siginh rlimitinh))) +(typetransition init otapreopt_slot_exec process otapreopt_slot) +(typetransition otapreopt_slot tmpfs file otapreopt_slot_tmpfs) +(allow otapreopt_slot otapreopt_slot_tmpfs (file (read write getattr))) +(allow otapreopt_slot tmpfs (dir (getattr search))) +(allow init performanced_exec (file (read getattr map execute open))) +(allow init performanced (process (transition))) +(allow performanced performanced_exec (file (read getattr map execute entrypoint open))) +(dontaudit init performanced (process (noatsecure))) +(allow init performanced (process (siginh rlimitinh))) +(typetransition init performanced_exec process performanced) +(typetransition performanced tmpfs file performanced_tmpfs) +(allow performanced performanced_tmpfs (file (read write getattr))) +(allow performanced tmpfs (dir (getattr search))) +(typetransition platform_app tmpfs file platform_app_tmpfs) +(allow platform_app platform_app_tmpfs (file (read write getattr))) +(allow platform_app tmpfs (dir (getattr search))) +(allow platform_app platform_app_tmpfs (file (execute))) +(allow platform_app shell_data_file (dir (search))) +(allow platform_app shell_data_file (file (read getattr open))) +(allow platform_app icon_file (file (read getattr open))) +(allow platform_app apk_tmp_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow platform_app apk_private_tmp_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow platform_app apk_tmp_file (file (ioctl read write getattr lock append map open))) +(allow platform_app apk_private_tmp_file (file (ioctl read write getattr lock append map open))) +(allow platform_app apk_private_data_file (dir (search))) +(allow platform_app asec_apk_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow platform_app asec_apk_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow platform_app media_rw_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow platform_app media_rw_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow platform_app cache_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow platform_app cache_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow platform_app mnt_media_rw_file (dir (ioctl read getattr lock search open))) +(allow platform_app vfat (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow platform_app vfat (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow platform_app rootfs (dir (getattr))) +(allow platform_app audioserver_service (service_manager (find))) +(allow platform_app cameraserver_service (service_manager (find))) +(allow platform_app drmserver_service (service_manager (find))) +(allow platform_app mediaserver_service (service_manager (find))) +(allow platform_app mediametrics_service (service_manager (find))) +(allow platform_app mediaextractor_service (service_manager (find))) +(allow platform_app mediacodec_service (service_manager (find))) +(allow platform_app mediadrmserver_service (service_manager (find))) +(allow platform_app persistent_data_block_service (service_manager (find))) +(allow platform_app radio_service (service_manager (find))) +(allow platform_app surfaceflinger_service (service_manager (find))) +(allow platform_app timezone_service (service_manager (find))) +(allow platform_app app_api_service (service_manager (find))) +(allow platform_app system_api_service (service_manager (find))) +(allow platform_app vr_manager_service (service_manager (find))) +(allow platform_app preloads_data_file (file (ioctl read getattr lock map open))) +(allow platform_app preloads_data_file (dir (ioctl read getattr lock search open))) +(allow platform_app preloads_media_file (file (ioctl read getattr lock map open))) +(allow platform_app preloads_media_file (dir (ioctl read getattr lock search open))) +(allow platform_app runtime_event_log_tags_file (file (ioctl read getattr lock map open))) +;;* lmx 73 system/sepolicy/private/platform_app.te + +(neverallow platform_app fuse_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +(allow postinstall otapreopt_chroot_exec (file (read getattr map execute open))) +(allow postinstall otapreopt_chroot (process (transition))) +(allow otapreopt_chroot otapreopt_chroot_exec (file (read getattr map execute entrypoint open))) +(allow otapreopt_chroot postinstall (process (sigchld))) +(dontaudit postinstall otapreopt_chroot (process (noatsecure))) +(allow postinstall otapreopt_chroot (process (siginh rlimitinh))) +(typetransition postinstall otapreopt_chroot_exec process otapreopt_chroot) +(allow postinstall_dexopt postinstall_file (file (read getattr map execute open))) +(allow postinstall_dexopt dex2oat (process (transition))) +(allow dex2oat postinstall_file (file (read getattr map execute entrypoint open))) +(allow dex2oat postinstall_dexopt (process (sigchld))) +(dontaudit postinstall_dexopt dex2oat (process (noatsecure))) +(allow postinstall_dexopt dex2oat (process (siginh rlimitinh))) +(typetransition postinstall_dexopt postinstall_file process dex2oat) +(allow mtp ppp_exec (file (read getattr map execute open))) +(allow mtp ppp (process (transition))) +(allow ppp ppp_exec (file (read getattr map execute entrypoint open))) +(allow ppp mtp (process (sigchld))) +(dontaudit mtp ppp (process (noatsecure))) +(allow mtp ppp (process (siginh rlimitinh))) +(typetransition mtp ppp_exec process ppp) +(typetransition priv_app tmpfs file priv_app_tmpfs) +(allow priv_app priv_app_tmpfs (file (read write getattr))) +(allow priv_app tmpfs (dir (getattr search))) +(allow priv_app priv_app_tmpfs (file (execute))) +(typetransition priv_app devpts chr_file priv_app_devpts) +(allow priv_app priv_app_devpts (chr_file (ioctl read write getattr open))) +(allowx priv_app priv_app_devpts (ioctl chr_file ((range 0x5401 0x5403) 0x540b (range 0x540e 0x5411) (range 0x5413 0x5414) 0x5451))) +;;* lmx 15 system/sepolicy/private/priv_app.te + +(neverallowx base_typeattr_9 priv_app_devpts (ioctl chr_file (0x5412))) +;;* lme + +(allow priv_app self (process (ptrace))) +(allow priv_app app_data_file (file (execute))) +(allow priv_app audioserver_service (service_manager (find))) +(allow priv_app cameraserver_service (service_manager (find))) +(allow priv_app drmserver_service (service_manager (find))) +(allow priv_app mediacodec_service (service_manager (find))) +(allow priv_app mediametrics_service (service_manager (find))) +(allow priv_app mediadrmserver_service (service_manager (find))) +(allow priv_app mediaextractor_service (service_manager (find))) +(allow priv_app mediaserver_service (service_manager (find))) +(allow priv_app nfc_service (service_manager (find))) +(allow priv_app oem_lock_service (service_manager (find))) +(allow priv_app radio_service (service_manager (find))) +(allow priv_app surfaceflinger_service (service_manager (find))) +(allow priv_app app_api_service (service_manager (find))) +(allow priv_app system_api_service (service_manager (find))) +(allow priv_app persistent_data_block_service (service_manager (find))) +(allow priv_app recovery_service (service_manager (find))) +(allow priv_app cache_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow priv_app cache_recovery_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow priv_app cache_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow priv_app cache_recovery_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow priv_app cache_file (lnk_file (ioctl read getattr lock map open))) +(allow priv_app ota_package_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow priv_app ota_package_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow priv_app media_rw_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow priv_app media_rw_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow priv_app shell_data_file (file (ioctl read getattr lock map open))) +(allow priv_app shell_data_file (dir (ioctl read getattr lock search open))) +(allow priv_app apk_tmp_file (dir (ioctl read getattr lock search open))) +(allow priv_app apk_private_tmp_file (dir (ioctl read getattr lock search open))) +(allow priv_app apk_tmp_file (file (ioctl read getattr lock map open))) +(allow priv_app apk_private_tmp_file (file (ioctl read getattr lock map open))) +(allow priv_app anr_data_file (file (ioctl read getattr lock map open))) +(allow priv_app vold (fd (use))) +(allow priv_app fuse_device (chr_file (read write))) +(allow priv_app sysfs_type (dir (ioctl read getattr lock search open))) +(allow priv_app sysfs_type (file (ioctl read getattr lock map open))) +(allow priv_app sysfs_type (lnk_file (ioctl read getattr lock map open))) +(allow priv_app proc (dir (ioctl read getattr lock search open))) +(allow priv_app proc (file (ioctl read getattr lock map open))) +(allow priv_app proc (lnk_file (ioctl read getattr lock map open))) +(allow priv_app rootfs (dir (ioctl read getattr lock search open))) +(allow priv_app rootfs (file (ioctl read getattr lock map open))) +(allow priv_app rootfs (lnk_file (ioctl read getattr lock map open))) +(allow priv_app config_gz (file (read getattr open))) +(allowx priv_app self (ioctl udp_socket (0x8927))) +(allow priv_app update_engine (binder (call transfer))) +(allow update_engine priv_app (binder (transfer))) +(allow priv_app update_engine (fd (use))) +(allow priv_app update_engine_service (service_manager (find))) +(allow priv_app storaged (binder (call transfer))) +(allow storaged priv_app (binder (transfer))) +(allow priv_app storaged (fd (use))) +(allow priv_app storaged_service (service_manager (find))) +(allow priv_app ringtone_file (file (read write getattr))) +(allow priv_app preloads_data_file (file (ioctl read getattr lock map open))) +(allow priv_app preloads_data_file (dir (ioctl read getattr lock search open))) +(allow priv_app preloads_media_file (file (ioctl read getattr lock map open))) +(allow priv_app preloads_media_file (dir (ioctl read getattr lock search open))) +(allow priv_app keystore (keystore_key (gen_unique_id))) +(allow priv_app selinuxfs (file (ioctl read getattr lock map open))) +(allow priv_app runtime_event_log_tags_file (file (ioctl read getattr lock map open))) +(dontaudit priv_app exec_type (file (getattr))) +;;* lmx 123 system/sepolicy/private/priv_app.te + +(neverallow priv_app domain (netlink_kobject_uevent_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +;;* lme + +;;* lmx 126 system/sepolicy/private/priv_app.te + +(neverallow priv_app domain (netlink_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +;;* lme + +;;* lmx 130 system/sepolicy/private/priv_app.te + +(neverallow priv_app debugfs (file (read))) +;;* lme + +;;* lmx 135 system/sepolicy/private/priv_app.te + +(neverallow priv_app service_manager_type (service_manager (add))) +;;* lme + +;;* lmx 139 system/sepolicy/private/priv_app.te + +(neverallow priv_app property_socket (sock_file (write))) +;;* lme + +;;* lmx 140 system/sepolicy/private/priv_app.te + +(neverallow priv_app init (unix_stream_socket (connectto))) +;;* lme + +;;* lmx 141 system/sepolicy/private/priv_app.te + +(neverallow priv_app property_type (property_service (set))) +;;* lme + +;;* lmx 151 system/sepolicy/private/priv_app.te + +(neverallow priv_app mlstrustedsubject (process (fork))) +;;* lme + +;;* lmx 159 system/sepolicy/private/priv_app.te + +(neverallow priv_app file_type (file (link))) +;;* lme + +(allow init racoon_exec (file (read getattr map execute open))) +(allow init racoon (process (transition))) +(allow racoon racoon_exec (file (read getattr map execute entrypoint open))) +(dontaudit init racoon (process (noatsecure))) +(allow init racoon (process (siginh rlimitinh))) +(typetransition init racoon_exec process racoon) +(typetransition racoon tmpfs file racoon_tmpfs) +(allow racoon racoon_tmpfs (file (read write getattr))) +(allow racoon tmpfs (dir (getattr search))) +(typetransition radio tmpfs file radio_tmpfs) +(allow radio radio_tmpfs (file (read write getattr))) +(allow radio tmpfs (dir (getattr search))) +(allow radio radio_tmpfs (file (execute))) +(allow radio runtime_event_log_tags_file (file (ioctl read getattr lock map open))) +(allow init recovery_persist_exec (file (read getattr map execute open))) +(allow init recovery_persist (process (transition))) +(allow recovery_persist recovery_persist_exec (file (read getattr map execute entrypoint open))) +(dontaudit init recovery_persist (process (noatsecure))) +(allow init recovery_persist (process (siginh rlimitinh))) +(typetransition init recovery_persist_exec process recovery_persist) +(typetransition recovery_persist tmpfs file recovery_persist_tmpfs) +(allow recovery_persist recovery_persist_tmpfs (file (read write getattr))) +(allow recovery_persist tmpfs (dir (getattr search))) +;;* lmx 7 system/sepolicy/private/recovery_persist.te + +(neverallow recovery_persist base_typeattr_215 (file (write))) +;;* lme + +(allow init recovery_refresh_exec (file (read getattr map execute open))) +(allow init recovery_refresh (process (transition))) +(allow recovery_refresh recovery_refresh_exec (file (read getattr map execute entrypoint open))) +(dontaudit init recovery_refresh (process (noatsecure))) +(allow init recovery_refresh (process (siginh rlimitinh))) +(typetransition init recovery_refresh_exec process recovery_refresh) +(typetransition recovery_refresh tmpfs file recovery_refresh_tmpfs) +(allow recovery_refresh recovery_refresh_tmpfs (file (read write getattr))) +(allow recovery_refresh tmpfs (dir (getattr search))) +;;* lmx 7 system/sepolicy/private/recovery_refresh.te + +(neverallow recovery_refresh base_typeattr_216 (file (write))) +;;* lme + +(allow shell runas_exec (file (read getattr map execute open))) +(allow shell runas (process (transition))) +(allow runas runas_exec (file (read getattr map execute entrypoint open))) +(allow runas shell (process (sigchld))) +(dontaudit shell runas (process (noatsecure))) +(allow shell runas (process (siginh rlimitinh))) +(typetransition shell runas_exec process runas) +(typetransition sdcardd system_data_file dir media_rw_data_file) +(typetransition sdcardd system_data_file file media_rw_data_file) +(allow init servicemanager_exec (file (read getattr map execute open))) +(allow init servicemanager (process (transition))) +(allow servicemanager servicemanager_exec (file (read getattr map execute entrypoint open))) +(dontaudit init servicemanager (process (noatsecure))) +(allow init servicemanager (process (siginh rlimitinh))) +(typetransition init servicemanager_exec process servicemanager) +(typetransition servicemanager tmpfs file servicemanager_tmpfs) +(allow servicemanager servicemanager_tmpfs (file (read write getattr))) +(allow servicemanager tmpfs (dir (getattr search))) +(allow servicemanager runtime_event_log_tags_file (file (ioctl read getattr lock map open))) +(typetransition shared_relro tmpfs file shared_relro_tmpfs) +(allow shared_relro shared_relro_tmpfs (file (read write getattr))) +(allow shared_relro tmpfs (dir (getattr search))) +(allow shared_relro shared_relro_tmpfs (file (execute))) +(allow shell uhid_device (chr_file (ioctl read write getattr lock append map open))) +(allow shell debugfs_tracing (dir (ioctl read getattr lock search open))) +(allow shell debugfs_tracing (file (ioctl read write getattr lock append map open))) +(allow shell debugfs_trace_marker (file (getattr))) +(allow shell atrace_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow shell config_gz (file (ioctl read getattr lock map open))) +(typetransition shell tmpfs file shell_tmpfs) +(allow shell shell_tmpfs (file (read write getattr))) +(allow shell tmpfs (dir (getattr search))) +(allow shell shell_tmpfs (file (execute))) +(allow shell storaged (binder (call transfer))) +(allow storaged shell (binder (transfer))) +(allow shell storaged (fd (use))) +(allow shell selinuxfs (dir (ioctl read getattr lock search open))) +(allow shell selinuxfs (file (ioctl read getattr lock map open))) +(allow shell selinuxfs (lnk_file (ioctl read getattr lock map open))) +(allow shell selinuxfs (file (write lock append map open))) +(allow shell kernel (security (compute_av))) +(allow shell self (netlink_selinux_socket (read write create getattr setattr lock relabelfrom relabelto append bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(allow shell selinuxfs (dir (ioctl read getattr lock search open))) +(allow shell selinuxfs (file (ioctl read getattr lock map open))) +(allow shell selinuxfs (lnk_file (ioctl read getattr lock map open))) +(allow shell selinuxfs (file (write lock append map open))) +(allow shell kernel (security (check_context))) +(allow init storaged_exec (file (read getattr map execute open))) +(allow init storaged (process (transition))) +(allow storaged storaged_exec (file (read getattr map execute entrypoint open))) +(dontaudit init storaged (process (noatsecure))) +(allow init storaged (process (siginh rlimitinh))) +(typetransition init storaged_exec process storaged) +(typetransition storaged tmpfs file storaged_tmpfs) +(allow storaged storaged_tmpfs (file (read write getattr))) +(allow storaged tmpfs (dir (getattr search))) +(allow storaged sysfs_type (dir (ioctl read getattr lock search open))) +(allow storaged sysfs_type (file (ioctl read getattr lock map open))) +(allow storaged sysfs_type (lnk_file (ioctl read getattr lock map open))) +(allow storaged proc_net (dir (ioctl read getattr lock search open))) +(allow storaged proc_net (file (ioctl read getattr lock map open))) +(allow storaged proc_net (lnk_file (ioctl read getattr lock map open))) +(allow storaged domain (dir (ioctl read getattr lock search open))) +(allow storaged domain (file (ioctl read getattr lock map open))) +(allow storaged domain (lnk_file (ioctl read getattr lock map open))) +(allow storaged proc_uid_io_stats (file (ioctl read getattr lock map open))) +(allow storaged system_data_file (file (ioctl read getattr lock map open))) +(allow storaged shell (fd (use))) +(allow storaged shell (fifo_file (write))) +(allow storaged priv_app (fd (use))) +(allow storaged app_data_file (file (write))) +(allow storaged permission_service (service_manager (find))) +(allow storaged storaged_service (service_manager (add find))) +;;* lmx 34 system/sepolicy/private/storaged.te + +(neverallow base_typeattr_217 storaged_service (service_manager (add))) +;;* lme + +(allow storaged servicemanager (binder (call transfer))) +(allow servicemanager storaged (dir (search))) +(allow servicemanager storaged (file (read open))) +(allow servicemanager storaged (process (getattr))) +(allow storaged system_server (binder (call transfer))) +(allow system_server storaged (binder (transfer))) +(allow storaged system_server (fd (use))) +(allow storaged batteryproperties_service (service_manager (find))) +(allow storaged healthd (binder (call transfer))) +(allow healthd storaged (binder (transfer))) +(allow storaged healthd (fd (use))) +(allow storaged dumpstate (fd (use))) +(allow storaged package_native_service (service_manager (find))) +(dontaudit storaged self (capability (dac_override))) +;;* lmx 56 system/sepolicy/private/storaged.te + +(neverallow storaged domain (process (ptrace))) +;;* lme + +;;* lmx 57 system/sepolicy/private/storaged.te + +(neverallow storaged self (capability (chown dac_override dac_read_search fowner fsetid kill setgid setuid setpcap linux_immutable net_bind_service net_broadcast net_admin net_raw ipc_lock ipc_owner sys_module sys_rawio sys_chroot sys_ptrace sys_pacct sys_admin sys_boot sys_nice sys_resource sys_time sys_tty_config mknod lease audit_write audit_control setfcap))) +(neverallow storaged self (capability2 (mac_override mac_admin syslog wake_alarm block_suspend audit_read))) +;;* lme + +(allow init surfaceflinger_exec (file (read getattr map execute open))) +(allow init surfaceflinger (process (transition))) +(allow surfaceflinger surfaceflinger_exec (file (read getattr map execute entrypoint open))) +(dontaudit init surfaceflinger (process (noatsecure))) +(allow init surfaceflinger (process (siginh rlimitinh))) +(typetransition init surfaceflinger_exec process surfaceflinger) +(typetransition surfaceflinger tmpfs file surfaceflinger_tmpfs) +(allow surfaceflinger surfaceflinger_tmpfs (file (read write getattr))) +(allow surfaceflinger tmpfs (dir (getattr search))) +(allow surfaceflinger runtime_event_log_tags_file (file (ioctl read getattr lock map open))) +(allow surfaceflinger hidl_token_hwservice (hwservice_manager (find))) +(allow surfaceflinger servicemanager (binder (call transfer))) +(allow servicemanager surfaceflinger (dir (search))) +(allow servicemanager surfaceflinger (file (read open))) +(allow servicemanager surfaceflinger (process (getattr))) +(allow surfaceflinger binderservicedomain (binder (call transfer))) +(allow binderservicedomain surfaceflinger (binder (transfer))) +(allow surfaceflinger binderservicedomain (fd (use))) +(allow surfaceflinger appdomain (binder (call transfer))) +(allow appdomain surfaceflinger (binder (transfer))) +(allow surfaceflinger appdomain (fd (use))) +(allow surfaceflinger bootanim (binder (call transfer))) +(allow bootanim surfaceflinger (binder (transfer))) +(allow surfaceflinger bootanim (fd (use))) +(allow surfaceflinger adbd (binder (call transfer))) +(allow adbd surfaceflinger (binder (transfer))) +(allow surfaceflinger adbd (fd (use))) +(allow surfaceflinger binderservicedomain (dir (ioctl read getattr lock search open))) +(allow surfaceflinger binderservicedomain (file (ioctl read getattr lock map open))) +(allow surfaceflinger binderservicedomain (lnk_file (ioctl read getattr lock map open))) +(allow surfaceflinger appdomain (dir (ioctl read getattr lock search open))) +(allow surfaceflinger appdomain (file (ioctl read getattr lock map open))) +(allow surfaceflinger appdomain (lnk_file (ioctl read getattr lock map open))) +(allow surfaceflinger gpu_device (chr_file (ioctl read write getattr lock append map open))) +(allow surfaceflinger graphics_device (dir (search))) +(allow surfaceflinger graphics_device (chr_file (ioctl read write getattr lock append map open))) +(allow surfaceflinger video_device (dir (ioctl read getattr lock search open))) +(allow surfaceflinger video_device (chr_file (ioctl read write getattr lock append map open))) +(allow surfaceflinger self (netlink_kobject_uevent_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow surfaceflinger property_socket (sock_file (write))) +(allow surfaceflinger init (unix_stream_socket (connectto))) +(allow surfaceflinger system_prop (property_service (set))) +(allow surfaceflinger system_prop (file (ioctl read getattr lock map open))) +(allow surfaceflinger property_socket (sock_file (write))) +(allow surfaceflinger init (unix_stream_socket (connectto))) +(allow surfaceflinger ctl_bootanim_prop (property_service (set))) +(allow surfaceflinger ctl_bootanim_prop (file (ioctl read getattr lock map open))) +(allow surfaceflinger appdomain (fd (use))) +(allow surfaceflinger app_data_file (file (read write))) +(allow surfaceflinger adbd (unix_stream_socket (read write getattr))) +(allow surfaceflinger dumpstate (binder (call transfer))) +(allow dumpstate surfaceflinger (binder (transfer))) +(allow surfaceflinger dumpstate (fd (use))) +(allow surfaceflinger shell (binder (call transfer))) +(allow shell surfaceflinger (binder (transfer))) +(allow surfaceflinger shell (fd (use))) +(allow surfaceflinger dumpstate (dir (ioctl read getattr lock search open))) +(allow surfaceflinger dumpstate (file (ioctl read getattr lock map open))) +(allow surfaceflinger dumpstate (lnk_file (ioctl read getattr lock map open))) +(allow surfaceflinger tee_device (chr_file (ioctl read write getattr lock append map open))) +(allow surfaceflinger gpu_service (service_manager (add find))) +;;* lmx 69 system/sepolicy/private/surfaceflinger.te + +(neverallow base_typeattr_218 gpu_service (service_manager (add))) +;;* lme + +(allow surfaceflinger surfaceflinger_service (service_manager (add find))) +(allow surfaceflinger mediaserver_service (service_manager (find))) +(allow surfaceflinger permission_service (service_manager (find))) +(allow surfaceflinger power_service (service_manager (find))) +(allow surfaceflinger vr_manager_service (service_manager (find))) +(allow surfaceflinger window_service (service_manager (find))) +(allow surfaceflinger self (capability (sys_nice))) +(allow surfaceflinger proc_meminfo (file (ioctl read getattr lock map open))) +(allow surfaceflinger cgroup (dir (ioctl read getattr lock search open))) +(allow surfaceflinger cgroup (file (ioctl read getattr lock map open))) +(allow surfaceflinger cgroup (lnk_file (ioctl read getattr lock map open))) +(allow surfaceflinger sysfs_type (dir (ioctl read getattr lock search open))) +(allow surfaceflinger sysfs_type (file (ioctl read getattr lock map open))) +(allow surfaceflinger sysfs_type (lnk_file (ioctl read getattr lock map open))) +(allow surfaceflinger system_file (dir (ioctl read getattr lock search open))) +(allow surfaceflinger system_file (file (ioctl read getattr lock map open))) +(allow surfaceflinger system_file (lnk_file (ioctl read getattr lock map open))) +(allow surfaceflinger tmpfs (dir (ioctl read getattr lock search open))) +(allow surfaceflinger system_server (fd (use))) +(allow surfaceflinger ion_device (chr_file (ioctl read getattr lock map open))) +(allow init pdx_display_client_endpoint_socket_type (unix_stream_socket (create bind))) +(allow surfaceflinger pdx_display_client_endpoint_socket_type (unix_stream_socket (read write getattr setattr lock append listen accept getopt setopt shutdown))) +(allow surfaceflinger self (process (setsockcreate))) +(allow surfaceflinger pdx_display_client_channel_socket_type (unix_stream_socket (ioctl read write create getattr setattr lock append bind connect listen accept getopt setopt shutdown))) +;;* lmx 94 system/sepolicy/private/surfaceflinger.te + +(neverallow base_typeattr_218 pdx_display_client_endpoint_socket_type (unix_stream_socket (listen accept))) +;;* lme + +(allow init pdx_display_manager_endpoint_socket_type (unix_stream_socket (create bind))) +(allow surfaceflinger pdx_display_manager_endpoint_socket_type (unix_stream_socket (read write getattr setattr lock append listen accept getopt setopt shutdown))) +(allow surfaceflinger self (process (setsockcreate))) +(allow surfaceflinger pdx_display_manager_channel_socket_type (unix_stream_socket (ioctl read write create getattr setattr lock append bind connect listen accept getopt setopt shutdown))) +;;* lmx 95 system/sepolicy/private/surfaceflinger.te + +(neverallow base_typeattr_218 pdx_display_manager_endpoint_socket_type (unix_stream_socket (listen accept))) +;;* lme + +(allow init pdx_display_screenshot_endpoint_socket_type (unix_stream_socket (create bind))) +(allow surfaceflinger pdx_display_screenshot_endpoint_socket_type (unix_stream_socket (read write getattr setattr lock append listen accept getopt setopt shutdown))) +(allow surfaceflinger self (process (setsockcreate))) +(allow surfaceflinger pdx_display_screenshot_channel_socket_type (unix_stream_socket (ioctl read write create getattr setattr lock append bind connect listen accept getopt setopt shutdown))) +;;* lmx 96 system/sepolicy/private/surfaceflinger.te + +(neverallow base_typeattr_218 pdx_display_screenshot_endpoint_socket_type (unix_stream_socket (listen accept))) +;;* lme + +(allow init pdx_display_vsync_endpoint_socket_type (unix_stream_socket (create bind))) +(allow surfaceflinger pdx_display_vsync_endpoint_socket_type (unix_stream_socket (read write getattr setattr lock append listen accept getopt setopt shutdown))) +(allow surfaceflinger self (process (setsockcreate))) +(allow surfaceflinger pdx_display_vsync_channel_socket_type (unix_stream_socket (ioctl read write create getattr setattr lock append bind connect listen accept getopt setopt shutdown))) +;;* lmx 97 system/sepolicy/private/surfaceflinger.te + +(neverallow base_typeattr_218 pdx_display_vsync_endpoint_socket_type (unix_stream_socket (listen accept))) +;;* lme + +(allow surfaceflinger pdx_bufferhub_client_endpoint_dir_type (dir (ioctl read getattr lock search open))) +(allow surfaceflinger pdx_bufferhub_client_endpoint_socket_type (sock_file (ioctl read write getattr lock append map open))) +(allow surfaceflinger pdx_bufferhub_client_endpoint_socket_type (unix_stream_socket (read write shutdown connectto))) +(allow surfaceflinger pdx_bufferhub_client_channel_socket_type (unix_stream_socket (read write getattr setattr lock append getopt setopt shutdown))) +(allow surfaceflinger pdx_bufferhub_client_server_type (fd (use))) +(allow pdx_bufferhub_client_server_type surfaceflinger (fd (use))) +(allow surfaceflinger pdx_performance_client_endpoint_dir_type (dir (ioctl read getattr lock search open))) +(allow surfaceflinger pdx_performance_client_endpoint_socket_type (sock_file (ioctl read write getattr lock append map open))) +(allow surfaceflinger pdx_performance_client_endpoint_socket_type (unix_stream_socket (read write shutdown connectto))) +(allow surfaceflinger pdx_performance_client_channel_socket_type (unix_stream_socket (read write getattr setattr lock append getopt setopt shutdown))) +(allow surfaceflinger pdx_performance_client_server_type (fd (use))) +(allow pdx_performance_client_server_type surfaceflinger (fd (use))) +;;* lmx 109 system/sepolicy/private/surfaceflinger.te + +(neverallow surfaceflinger sdcard_type (file (ioctl read write getattr lock append map open))) +;;* lme + +(typetransition system_app tmpfs file system_app_tmpfs) +(allow system_app system_app_tmpfs (file (read write getattr))) +(allow system_app tmpfs (dir (getattr search))) +(allow system_app system_app_tmpfs (file (execute))) +(allow system_app rootfs (dir (getattr))) +(allow system_app system_app_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow system_app system_app_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_app system_app_data_file (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_app misc_user_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow system_app misc_user_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_app mnt_media_rw_file (dir (search))) +(allow system_app wallpaper_file (file (ioctl read getattr lock map open))) +(allow system_app icon_file (file (ioctl read getattr lock map open))) +(allow system_app property_socket (sock_file (write))) +(allow system_app init (unix_stream_socket (connectto))) +(allow system_app bluetooth_prop (property_service (set))) +(allow system_app bluetooth_prop (file (ioctl read getattr lock map open))) +(allow system_app property_socket (sock_file (write))) +(allow system_app init (unix_stream_socket (connectto))) +(allow system_app debug_prop (property_service (set))) +(allow system_app debug_prop (file (ioctl read getattr lock map open))) +(allow system_app property_socket (sock_file (write))) +(allow system_app init (unix_stream_socket (connectto))) +(allow system_app system_prop (property_service (set))) +(allow system_app system_prop (file (ioctl read getattr lock map open))) +(allow system_app property_socket (sock_file (write))) +(allow system_app init (unix_stream_socket (connectto))) +(allow system_app logd_prop (property_service (set))) +(allow system_app logd_prop (file (ioctl read getattr lock map open))) +(allow system_app property_socket (sock_file (write))) +(allow system_app init (unix_stream_socket (connectto))) +(allow system_app net_radio_prop (property_service (set))) +(allow system_app net_radio_prop (file (ioctl read getattr lock map open))) +(allow system_app property_socket (sock_file (write))) +(allow system_app init (unix_stream_socket (connectto))) +(allow system_app system_radio_prop (property_service (set))) +(allow system_app system_radio_prop (file (ioctl read getattr lock map open))) +(allow system_app property_socket (sock_file (write))) +(allow system_app init (unix_stream_socket (connectto))) +(allow system_app log_tag_prop (property_service (set))) +(allow system_app log_tag_prop (file (ioctl read getattr lock map open))) +(auditallow system_app net_radio_prop (property_service (set))) +(auditallow system_app system_radio_prop (property_service (set))) +(allow system_app property_socket (sock_file (write))) +(allow system_app init (unix_stream_socket (connectto))) +(allow system_app ctl_default_prop (property_service (set))) +(allow system_app ctl_default_prop (file (ioctl read getattr lock map open))) +(allow system_app property_socket (sock_file (write))) +(allow system_app init (unix_stream_socket (connectto))) +(allow system_app ctl_bugreport_prop (property_service (set))) +(allow system_app ctl_bugreport_prop (file (ioctl read getattr lock map open))) +(allow system_app anr_data_file (dir (ioctl read write getattr lock add_name search open))) +(allow system_app anr_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_app asec_apk_file (file (ioctl read getattr lock map open))) +(allow system_app incidentd (binder (call transfer))) +(allow incidentd system_app (binder (transfer))) +(allow system_app incidentd (fd (use))) +(allow system_app servicemanager (service_manager (list))) +(allow system_app base_typeattr_219 (service_manager (find))) +(allow system_app keystore (keystore_key (get_state get insert delete exist list reset password lock unlock is_empty sign verify grant duplicate clear_uid user_changed))) +(allow system_app sysfs_type (dir (ioctl read getattr lock search open))) +(allow system_app sysfs_type (file (ioctl read getattr lock map open))) +(allow system_app sysfs_type (lnk_file (ioctl read getattr lock map open))) +(allow system_app logd_socket (sock_file (write))) +(allow system_app logd (unix_stream_socket (connectto))) +(allow system_app runtime_event_log_tags_file (file (ioctl read getattr lock map open))) +;;* lmx 95 system/sepolicy/private/system_app.te + +(neverallow system_app fuse_device (chr_file (ioctl read write create getattr setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +(typetransition system_server tmpfs file system_server_tmpfs) +(allow system_server system_server_tmpfs (file (read write getattr))) +(allow system_server tmpfs (dir (getattr search))) +(allow system_server zygote_tmpfs (file (read))) +(allow system_server dalvikcache_data_file (dir (ioctl read getattr lock search open))) +(allow system_server dalvikcache_data_file (file (ioctl read getattr lock map open))) +(allow system_server resourcecache_data_file (file (ioctl read getattr lock map open))) +(allow system_server resourcecache_data_file (dir (ioctl read getattr lock search open))) +(allow system_server self (process (ptrace))) +(allow system_server reboot_data_file (file (ioctl read getattr lock map unlink rename open))) +(allow system_server reboot_data_file (dir (write remove_name search open))) +(allow system_server zygote (fd (use))) +(allow system_server zygote (process (sigchld))) +(allow system_server zygote (process (sigkill))) +(allow system_server crash_dump (process (sigkill))) +(allow system_server zygote_exec (file (ioctl read getattr lock map open))) +(allow system_server zygote (unix_stream_socket (getattr getopt))) +(allowx system_server self (ioctl udp_socket (0x6900 0x6902))) +(allowx system_server self (ioctl udp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(allowx system_server self (ioctl udp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(allow system_server self (capability (kill net_bind_service net_broadcast net_admin net_raw ipc_lock sys_ptrace sys_boot sys_nice sys_time sys_tty_config))) +(allow system_server sysfs_wake_lock (file (ioctl read write getattr lock append map open))) +(allow system_server self (capability2 (block_suspend))) +(allow system_server kernel (system (module_request))) +(allow system_server self (capability2 (wake_alarm))) +(allow system_server self (netlink_netfilter_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow system_server self (netlink_kobject_uevent_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow system_server self (netlink_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow system_server self (netlink_generic_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow system_server config_gz (file (read open))) +(allow system_server self (socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow system_server self (netlink_route_socket (nlmsg_write))) +(allow system_server appdomain (process (sigkill signal getpgid))) +(allow system_server appdomain (process (getsched setsched))) +(allow system_server audioserver (process (getsched setsched))) +(allow system_server hal_audio (process (getsched setsched))) +(allow system_server hal_bluetooth (process (getsched setsched))) +(allow system_server cameraserver (process (getsched setsched))) +(allow system_server hal_camera (process (getsched setsched))) +(allow system_server mediaserver (process (getsched setsched))) +(allow system_server bootanim (process (getsched setsched))) +(allow system_server cameraserver (file (write lock append map open))) +(allow system_server domain (dir (ioctl read getattr lock search open))) +(allow system_server domain (file (ioctl read getattr lock map open))) +(allow system_server domain (lnk_file (ioctl read getattr lock map open))) +(allow system_server qtaguid_proc (file (ioctl read write getattr lock append map open))) +(allow system_server qtaguid_device (chr_file (ioctl read write getattr lock append map open))) +(allow system_server proc_uid_cputime_showstat (file (ioctl read getattr lock map open))) +(allow system_server proc_uid_cputime_removeuid (file (write getattr lock append map open))) +(allow system_server proc_uid_procstat_set (file (write getattr lock append map open))) +(allow system_server proc_uid_time_in_state (file (ioctl read getattr lock map open))) +(allow system_server proc_sysrq (file (ioctl read write getattr lock append map open))) +(allow system_server proc_stat (file (ioctl read getattr lock map open))) +(allow system_server debugfs (file (ioctl read getattr lock map open))) +(allow system_server self (packet_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow system_server node (rawip_socket (node_bind))) +(allow system_server self (tun_socket (read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow system_server lmkd_socket (sock_file (write))) +(allow system_server lmkd (unix_stream_socket (connectto))) +(allow system_server mtpd_socket (sock_file (write))) +(allow system_server mtp (unix_stream_socket (connectto))) +(allow system_server netd_socket (sock_file (write))) +(allow system_server netd (unix_stream_socket (connectto))) +(allow system_server vold_socket (sock_file (write))) +(allow system_server vold (unix_stream_socket (connectto))) +(allow system_server webview_zygote_socket (sock_file (write))) +(allow system_server webview_zygote (unix_stream_socket (connectto))) +(allow system_server zygote_socket (sock_file (write))) +(allow system_server zygote (unix_stream_socket (connectto))) +(allow system_server racoon_socket (sock_file (write))) +(allow system_server racoon (unix_stream_socket (connectto))) +(allow system_server uncrypt_socket (sock_file (write))) +(allow system_server uncrypt (unix_stream_socket (connectto))) +(allow system_server surfaceflinger (unix_stream_socket (read write setopt))) +(allow system_server servicemanager (binder (call transfer))) +(allow servicemanager system_server (dir (search))) +(allow servicemanager system_server (file (read open))) +(allow servicemanager system_server (process (getattr))) +(allow system_server appdomain (binder (call transfer))) +(allow appdomain system_server (binder (transfer))) +(allow system_server appdomain (fd (use))) +(allow system_server binderservicedomain (binder (call transfer))) +(allow binderservicedomain system_server (binder (transfer))) +(allow system_server binderservicedomain (fd (use))) +(allow system_server dumpstate (binder (call transfer))) +(allow dumpstate system_server (binder (transfer))) +(allow system_server dumpstate (fd (use))) +(allow system_server fingerprintd (binder (call transfer))) +(allow fingerprintd system_server (binder (transfer))) +(allow system_server fingerprintd (fd (use))) +(allow system_server gatekeeperd (binder (call transfer))) +(allow gatekeeperd system_server (binder (transfer))) +(allow system_server gatekeeperd (fd (use))) +(allow system_server installd (binder (call transfer))) +(allow installd system_server (binder (transfer))) +(allow system_server installd (fd (use))) +(allow system_server incidentd (binder (call transfer))) +(allow incidentd system_server (binder (transfer))) +(allow system_server incidentd (fd (use))) +(allow system_server netd (binder (call transfer))) +(allow netd system_server (binder (transfer))) +(allow system_server netd (fd (use))) +(allow system_server wificond (binder (call transfer))) +(allow wificond system_server (binder (transfer))) +(allow system_server wificond (fd (use))) +(allow system_server hal_omx_hwservice (hwservice_manager (find))) +(allow system_server hidl_token_hwservice (hwservice_manager (find))) +(allow system_server mediacodec (binder (call transfer))) +(allow mediacodec system_server (binder (transfer))) +(allow system_server mediacodec (fd (use))) +(allow system_server hal_graphics_composer (fd (use))) +(allow system_server hal_renderscript_hwservice (hwservice_manager (find))) +(allow system_server fwk_scheduler_hwservice (hwservice_manager (add find))) +(allow system_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 225 system/sepolicy/private/system_server.te + +(neverallow base_typeattr_59 fwk_scheduler_hwservice (hwservice_manager (add))) +;;* lme + +(allow system_server fwk_sensor_hwservice (hwservice_manager (add find))) +(allow system_server hidl_base_hwservice (hwservice_manager (add))) +;;* lmx 226 system/sepolicy/private/system_server.te + +(neverallow base_typeattr_59 fwk_sensor_hwservice (hwservice_manager (add))) +;;* lme + +(allow system_server tombstoned_intercept_socket (sock_file (write))) +(allow system_server tombstoned (unix_stream_socket (connectto))) +(allow system_server hwservicemanager (hwservice_manager (list))) +(allow system_server hal_audio_server (process (signal))) +(allow system_server hal_bluetooth_server (process (signal))) +(allow system_server hal_camera_server (process (signal))) +(allow system_server hal_graphics_composer_server (process (signal))) +(allow system_server hal_sensors_server (process (signal))) +(allow system_server hal_vr_server (process (signal))) +(allow system_server audioserver (process (signal))) +(allow system_server cameraserver (process (signal))) +(allow system_server drmserver (process (signal))) +(allow system_server inputflinger (process (signal))) +(allow system_server mediacodec (process (signal))) +(allow system_server mediadrmserver (process (signal))) +(allow system_server mediaextractor (process (signal))) +(allow system_server mediametrics (process (signal))) +(allow system_server mediaserver (process (signal))) +(allow system_server sdcardd (process (signal))) +(allow system_server surfaceflinger (process (signal))) +(allow system_server audioserver (tcp_socket (ioctl read write getattr setattr lock append bind connect getopt setopt shutdown))) +(allow system_server audioserver (udp_socket (ioctl read write getattr setattr lock append bind connect getopt setopt shutdown))) +(allow system_server mediaserver (tcp_socket (ioctl read write getattr setattr lock append bind connect getopt setopt shutdown))) +(allow system_server mediaserver (udp_socket (ioctl read write getattr setattr lock append bind connect getopt setopt shutdown))) +(allow system_server mediadrmserver (tcp_socket (ioctl read write getattr setattr lock append bind connect getopt setopt shutdown))) +(allow system_server mediadrmserver (udp_socket (ioctl read write getattr setattr lock append bind connect getopt setopt shutdown))) +(allow system_server file_contexts_file (file (ioctl read getattr lock map open))) +(allow system_server mac_perms_file (file (ioctl read getattr lock map open))) +(allow system_server selinuxfs (dir (ioctl read getattr lock search open))) +(allow system_server selinuxfs (file (ioctl read getattr lock map open))) +(allow system_server selinuxfs (lnk_file (ioctl read getattr lock map open))) +(allow system_server selinuxfs (file (write lock append map open))) +(allow system_server kernel (security (compute_av))) +(allow system_server self (netlink_selinux_socket (read write create getattr setattr lock relabelfrom relabelto append bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(allow system_server sysfs (file (ioctl read write getattr lock append map open))) +(allow system_server sysfs_nfc_power_writable (file (ioctl read write getattr lock append map open))) +(allow system_server sysfs_devices_system_cpu (file (write lock append map open))) +(allow system_server sysfs_mac_address (file (ioctl read getattr lock map open))) +(allow system_server sysfs_thermal (dir (search))) +(allow system_server sysfs_thermal (file (ioctl read getattr lock map open))) +(allow system_server sysfs_vibrator (file (write append))) +(allow system_server sysfs_usb (file (write lock append map open))) +(allow system_server device (dir (ioctl read getattr lock search open))) +(allow system_server mdns_socket (sock_file (ioctl read write getattr lock append map open))) +(allow system_server alarm_device (chr_file (ioctl read write getattr lock append map open))) +(allow system_server gpu_device (chr_file (ioctl read write getattr lock append map open))) +(allow system_server iio_device (chr_file (ioctl read write getattr lock append map open))) +(allow system_server input_device (dir (ioctl read getattr lock search open))) +(allow system_server input_device (chr_file (ioctl read write getattr lock append map open))) +(allow system_server radio_device (chr_file (ioctl read getattr lock map open))) +(allow system_server tty_device (chr_file (ioctl read write getattr lock append map open))) +(allow system_server usbaccessory_device (chr_file (ioctl read write getattr lock append map open))) +(allow system_server video_device (dir (ioctl read getattr lock search open))) +(allow system_server video_device (chr_file (ioctl read write getattr lock append map open))) +(allow system_server adbd_socket (sock_file (ioctl read write getattr lock append map open))) +(allow system_server rtc_device (chr_file (ioctl read write getattr lock append map open))) +(allow system_server audio_device (dir (ioctl read getattr lock search open))) +(allow system_server audio_device (chr_file (ioctl read write getattr lock append map open))) +(allow system_server tun_device (chr_file (ioctl read write getattr lock append map open))) +(allow system_server system_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow system_server system_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server system_data_file (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server system_data_file (sock_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server system_data_file (fifo_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server keychain_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow system_server keychain_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server keychain_data_file (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server apk_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow system_server apk_data_file (file (ioctl read write create getattr setattr lock append map unlink link rename open))) +(allow system_server apk_data_file (lnk_file (ioctl read write create getattr setattr lock append map unlink link rename open))) +(allow system_server apk_tmp_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow system_server apk_tmp_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server vendor_app_file (dir (ioctl read getattr lock search open))) +(allow system_server vendor_app_file (file (ioctl read getattr lock map open))) +(allow system_server vendor_app_file (lnk_file (ioctl read getattr lock map open))) +(allow system_server vendor_overlay_file (dir (ioctl read getattr lock search open))) +(allow system_server vendor_overlay_file (file (ioctl read getattr lock map open))) +(allow system_server vendor_overlay_file (lnk_file (ioctl read getattr lock map open))) +(allow system_server apk_private_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow system_server apk_private_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server apk_private_tmp_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow system_server apk_private_tmp_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server asec_apk_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow system_server asec_apk_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server asec_public_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server anr_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow system_server anr_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server tombstoned_java_trace_socket (sock_file (write))) +(allow system_server tombstoned (unix_stream_socket (connectto))) +(allow system_server tombstoned (fd (use))) +(allow system_server dumpstate (fifo_file (append))) +(allow system_server incident_data_file (file (read))) +(allow system_server backup_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow system_server backup_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server heapdump_data_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow system_server heapdump_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server adb_keys_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow system_server adb_keys_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server radio_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow system_server radio_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server systemkeys_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow system_server systemkeys_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server textclassifier_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow system_server textclassifier_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server tombstone_data_file (dir (ioctl read getattr lock search open))) +(allow system_server tombstone_data_file (file (ioctl read getattr lock map open))) +(allow system_server vpn_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow system_server vpn_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server wifi_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow system_server wifi_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server zoneinfo_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow system_server zoneinfo_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server shell_data_file (dir (read getattr search))) +(allow system_server bluetooth_data_file (dir (read getattr search))) +(allow system_server nfc_data_file (dir (read getattr search))) +(allow system_server radio_data_file (dir (read getattr search))) +(allow system_server app_data_file (dir (read getattr search))) +(allow system_server system_app_data_file (dir (read getattr search))) +(allow system_server unlabeled (dir (ioctl read getattr lock search open))) +(allow system_server unlabeled (file (ioctl read getattr lock map open))) +(allow system_server system_app_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow system_server system_app_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server shell_data_file (file (read write getattr append))) +(allow system_server bluetooth_data_file (file (read write getattr append))) +(allow system_server nfc_data_file (file (read write getattr append))) +(allow system_server radio_data_file (file (read write getattr append))) +(allow system_server app_data_file (file (read write getattr append))) +(allow system_server system_app_data_file (file (read write getattr append))) +(allow system_server media_rw_data_file (dir (read getattr search open))) +(allow system_server media_rw_data_file (file (read write getattr append))) +(allow system_server apk_tmp_file (file (relabelfrom relabelto))) +(allow system_server apk_tmp_file (dir (relabelfrom relabelto))) +(allow system_server apk_private_tmp_file (file (relabelfrom relabelto))) +(allow system_server apk_private_tmp_file (dir (relabelfrom relabelto))) +(allow system_server apk_data_file (file (relabelfrom relabelto))) +(allow system_server apk_data_file (dir (relabelfrom relabelto))) +(allow system_server apk_private_data_file (file (relabelfrom relabelto))) +(allow system_server apk_private_data_file (dir (relabelfrom relabelto))) +(allow system_server system_data_file (file (relabelfrom))) +(allow system_server wallpaper_file (file (relabelto))) +(allow system_server wallpaper_file (file (ioctl read write getattr lock append map unlink rename open))) +(allow system_server system_data_file (file (link))) +(allow system_server wallpaper_file (file (link))) +(allow system_server system_data_file (dir (relabelfrom))) +(allow system_server shortcut_manager_icons (dir (ioctl read write create getattr setattr lock relabelto rename add_name remove_name reparent search rmdir open))) +(allow system_server shortcut_manager_icons (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server ringtone_file (dir (ioctl read write create getattr setattr lock relabelto rename add_name remove_name reparent search rmdir open))) +(allow system_server ringtone_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server icon_file (file (relabelto))) +(allow system_server icon_file (file (ioctl read write getattr lock append map unlink open))) +(allow system_server system_data_file (dir (relabelfrom))) +(allow system_server property_socket (sock_file (write))) +(allow system_server init (unix_stream_socket (connectto))) +(allow system_server system_prop (property_service (set))) +(allow system_server system_prop (file (ioctl read getattr lock map open))) +(allow system_server property_socket (sock_file (write))) +(allow system_server init (unix_stream_socket (connectto))) +(allow system_server safemode_prop (property_service (set))) +(allow system_server safemode_prop (file (ioctl read getattr lock map open))) +(allow system_server property_socket (sock_file (write))) +(allow system_server init (unix_stream_socket (connectto))) +(allow system_server dhcp_prop (property_service (set))) +(allow system_server dhcp_prop (file (ioctl read getattr lock map open))) +(allow system_server property_socket (sock_file (write))) +(allow system_server init (unix_stream_socket (connectto))) +(allow system_server net_radio_prop (property_service (set))) +(allow system_server net_radio_prop (file (ioctl read getattr lock map open))) +(allow system_server property_socket (sock_file (write))) +(allow system_server init (unix_stream_socket (connectto))) +(allow system_server net_dns_prop (property_service (set))) +(allow system_server net_dns_prop (file (ioctl read getattr lock map open))) +(allow system_server property_socket (sock_file (write))) +(allow system_server init (unix_stream_socket (connectto))) +(allow system_server system_radio_prop (property_service (set))) +(allow system_server system_radio_prop (file (ioctl read getattr lock map open))) +(allow system_server property_socket (sock_file (write))) +(allow system_server init (unix_stream_socket (connectto))) +(allow system_server debug_prop (property_service (set))) +(allow system_server debug_prop (file (ioctl read getattr lock map open))) +(allow system_server property_socket (sock_file (write))) +(allow system_server init (unix_stream_socket (connectto))) +(allow system_server powerctl_prop (property_service (set))) +(allow system_server powerctl_prop (file (ioctl read getattr lock map open))) +(allow system_server property_socket (sock_file (write))) +(allow system_server init (unix_stream_socket (connectto))) +(allow system_server fingerprint_prop (property_service (set))) +(allow system_server fingerprint_prop (file (ioctl read getattr lock map open))) +(allow system_server property_socket (sock_file (write))) +(allow system_server init (unix_stream_socket (connectto))) +(allow system_server device_logging_prop (property_service (set))) +(allow system_server device_logging_prop (file (ioctl read getattr lock map open))) +(allow system_server property_socket (sock_file (write))) +(allow system_server init (unix_stream_socket (connectto))) +(allow system_server dumpstate_options_prop (property_service (set))) +(allow system_server dumpstate_options_prop (file (ioctl read getattr lock map open))) +(allow system_server property_socket (sock_file (write))) +(allow system_server init (unix_stream_socket (connectto))) +(allow system_server overlay_prop (property_service (set))) +(allow system_server overlay_prop (file (ioctl read getattr lock map open))) +(allow system_server property_socket (sock_file (write))) +(allow system_server init (unix_stream_socket (connectto))) +(allow system_server ctl_default_prop (property_service (set))) +(allow system_server ctl_default_prop (file (ioctl read getattr lock map open))) +(allow system_server property_socket (sock_file (write))) +(allow system_server init (unix_stream_socket (connectto))) +(allow system_server ctl_bugreport_prop (property_service (set))) +(allow system_server ctl_bugreport_prop (file (ioctl read getattr lock map open))) +(allow system_server property_socket (sock_file (write))) +(allow system_server init (unix_stream_socket (connectto))) +(allow system_server cppreopt_prop (property_service (set))) +(allow system_server cppreopt_prop (file (ioctl read getattr lock map open))) +(allow system_server boottime_prop (file (ioctl read getattr lock map open))) +(allow system_server serialno_prop (file (ioctl read getattr lock map open))) +(allow system_server property_socket (sock_file (write))) +(allow system_server init (unix_stream_socket (connectto))) +(allow system_server firstboot_prop (property_service (set))) +(allow system_server firstboot_prop (file (ioctl read getattr lock map open))) +(allow system_server system_ndebug_socket (sock_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server cache_file (lnk_file (ioctl read getattr lock map open))) +(allow system_server cache_file (dir (ioctl read write create getattr setattr lock relabelfrom rename add_name remove_name reparent search rmdir open))) +(allow system_server cache_recovery_file (dir (ioctl read write create getattr setattr lock relabelfrom rename add_name remove_name reparent search rmdir open))) +(allow system_server cache_file (file (ioctl read write create getattr setattr lock relabelfrom append map unlink rename open))) +(allow system_server cache_recovery_file (file (ioctl read write create getattr setattr lock relabelfrom append map unlink rename open))) +(allow system_server cache_file (fifo_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server cache_recovery_file (fifo_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server system_file (dir (ioctl read getattr lock search open))) +(allow system_server system_file (lnk_file (ioctl read getattr lock map open))) +(allow system_server gps_control (file (ioctl read write getattr lock append map open))) +(allow system_server appdomain (tcp_socket (read write getattr getopt setopt shutdown))) +(allow system_server appdomain (udp_socket (read write getattr getopt setopt shutdown))) +(allow system_server appdomain (fifo_file (read write getattr))) +(allow system_server appdomain (unix_stream_socket (read write getattr))) +(allow system_server cache_backup_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow system_server cache_backup_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server cache_private_backup_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow system_server cache_private_backup_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow system_server usb_device (chr_file (ioctl read write getattr lock append map open))) +(allow system_server usb_device (dir (ioctl read getattr lock search open))) +(allow system_server hw_random_device (chr_file (ioctl read getattr lock map open))) +(allow system_server fscklogs (dir (ioctl read getattr lock search open))) +(allow system_server fscklogs (file (ioctl read getattr lock map open))) +(allow system_server fscklogs (lnk_file (ioctl read getattr lock map open))) +(allow system_server fscklogs (dir (write remove_name))) +(allow system_server fscklogs (file (unlink))) +(allow system_server zygote (unix_dgram_socket (write))) +(allow system_server logcat_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow system_server logdr_socket (sock_file (write))) +(allow system_server logd (unix_stream_socket (connectto))) +(allow system_server runtime_event_log_tags_file (file (ioctl read getattr lock map open))) +(allow system_server sysfs_lowmemorykiller (file (write getattr lock append map open))) +(allow system_server pstorefs (dir (ioctl read getattr lock search open))) +(allow system_server pstorefs (file (ioctl read getattr lock map open))) +(allow system_server sysfs_zram (dir (search))) +(allow system_server sysfs_zram (file (ioctl read getattr lock map open))) +(allow system_server system_server_service (service_manager (add find))) +;;* lmx 554 system/sepolicy/private/system_server.te + +(neverallow base_typeattr_59 system_server_service (service_manager (add))) +;;* lme + +(allow system_server audioserver_service (service_manager (find))) +(allow system_server batteryproperties_service (service_manager (find))) +(allow system_server cameraserver_service (service_manager (find))) +(allow system_server drmserver_service (service_manager (find))) +(allow system_server dumpstate_service (service_manager (find))) +(allow system_server fingerprintd_service (service_manager (find))) +(allow system_server hal_fingerprint_service (service_manager (find))) +(allow system_server gatekeeper_service (service_manager (find))) +(allow system_server incident_service (service_manager (find))) +(allow system_server installd_service (service_manager (find))) +(allow system_server keystore_service (service_manager (find))) +(allow system_server mediaserver_service (service_manager (find))) +(allow system_server mediametrics_service (service_manager (find))) +(allow system_server mediaextractor_service (service_manager (find))) +(allow system_server mediacodec_service (service_manager (find))) +(allow system_server mediadrmserver_service (service_manager (find))) +(allow system_server netd_service (service_manager (find))) +(allow system_server nfc_service (service_manager (find))) +(allow system_server radio_service (service_manager (find))) +(allow system_server surfaceflinger_service (service_manager (find))) +(allow system_server wificond_service (service_manager (find))) +(allow system_server keystore (keystore_key (get_state get insert delete exist list reset password lock unlock is_empty sign verify grant duplicate clear_uid add_auth user_changed))) +(allow system_server block_device (dir (search))) +(allow system_server frp_block_device (blk_file (ioctl read write getattr lock append map open))) +(allow system_server cgroup (dir (remove_name rmdir))) +(allow system_server oemfs (dir (ioctl read getattr lock search open))) +(allow system_server oemfs (file (ioctl read getattr lock map open))) +(allow system_server oemfs (lnk_file (ioctl read getattr lock map open))) +(allow system_server mnt_user_file (dir (getattr search))) +(allow system_server storage_file (dir (getattr search))) +(allow system_server mnt_user_file (lnk_file (read getattr))) +(allow system_server storage_file (lnk_file (read getattr))) +(allow system_server sdcard_type (dir (getattr search))) +(allow system_server mnt_expand_file (dir (ioctl read getattr lock search open))) +(allow system_server fingerprintd_data_file (dir (ioctl read write getattr lock relabelto remove_name search rmdir open))) +(allow system_server fingerprintd_data_file (file (getattr unlink))) +(allow system_server sysfs_mac_address (file (ioctl read getattr lock map open))) +(allow system_server vold (fd (use))) +(allow system_server fuse_device (chr_file (ioctl read write getattr))) +(allow system_server app_fuse_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow system_server app_fuse_file (file (read write getattr append open))) +(allow system_server configfs (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow system_server configfs (file (write getattr unlink open))) +(allow system_server adbd (unix_stream_socket (connectto))) +(allow system_server adbd (fd (use))) +(allow system_server adbd (unix_stream_socket (ioctl read write getattr getopt shutdown))) +(allow system_server toolbox_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow system_server postinstall (binder (call transfer))) +(allow postinstall system_server (binder (transfer))) +(allow system_server postinstall (fd (use))) +(allow system_server postinstall (fifo_file (write))) +(allow system_server update_engine (fd (use))) +(allow system_server update_engine (fifo_file (write))) +(allow system_server preloads_data_file (file (ioctl read getattr lock map unlink open))) +(allow system_server preloads_data_file (dir (ioctl read write getattr lock remove_name search rmdir open))) +(allow system_server preloads_media_file (file (ioctl read getattr lock map unlink open))) +(allow system_server preloads_media_file (dir (ioctl read write getattr lock remove_name search rmdir open))) +(allow system_server cgroup (dir (ioctl read getattr lock search open))) +(allow system_server cgroup (file (ioctl read getattr lock map open))) +(allow system_server cgroup (lnk_file (ioctl read getattr lock map open))) +(allow system_server ion_device (chr_file (ioctl read getattr lock map open))) +(allow system_server proc (dir (ioctl read getattr lock search open))) +(allow system_server proc (file (ioctl read getattr lock map open))) +(allow system_server proc (lnk_file (ioctl read getattr lock map open))) +(allow system_server proc_meminfo (dir (ioctl read getattr lock search open))) +(allow system_server proc_meminfo (file (ioctl read getattr lock map open))) +(allow system_server proc_meminfo (lnk_file (ioctl read getattr lock map open))) +(allow system_server proc_net (dir (ioctl read getattr lock search open))) +(allow system_server proc_net (file (ioctl read getattr lock map open))) +(allow system_server proc_net (lnk_file (ioctl read getattr lock map open))) +(allow system_server rootfs (dir (ioctl read getattr lock search open))) +(allow system_server rootfs (file (ioctl read getattr lock map open))) +(allow system_server rootfs (lnk_file (ioctl read getattr lock map open))) +(allow system_server sysfs_type (dir (ioctl read getattr lock search open))) +(allow system_server sysfs_type (file (ioctl read getattr lock map open))) +(allow system_server sysfs_type (lnk_file (ioctl read getattr lock map open))) +(allow system_server sysfs_leds (lnk_file (read))) +(allow system_server sysfs_leds (file (ioctl read write getattr lock append map open))) +(allow system_server sysfs_leds (dir (ioctl read getattr lock search open))) +(allow system_server debugfs_tracing_instances (dir (search))) +(allow system_server debugfs_wifi_tracing (dir (search))) +(allow system_server debugfs_wifi_tracing (file (ioctl read write getattr lock append map open))) +;;* lmx 707 system/sepolicy/private/system_server.te + +(neverallow system_server sdcard_type (dir (read write open))) +;;* lme + +;;* lmx 708 system/sepolicy/private/system_server.te + +(neverallow system_server sdcard_type (file (ioctl read write getattr lock append map open))) +;;* lme + +;;* lmx 715 system/sepolicy/private/system_server.te + +(neverallow system_server shell_data_file (file (create unlink link open))) +(neverallow system_server bluetooth_data_file (file (create unlink link open))) +(neverallow system_server nfc_data_file (file (create unlink link open))) +(neverallow system_server app_data_file (file (create unlink link open))) +;;* lme + +;;* lmx 726 system/sepolicy/private/system_server.te + +(neverallow system_server base_typeattr_220 (file (execute_no_trans))) +;;* lme + +;;* lmx 730 system/sepolicy/private/system_server.te + +(neverallow system_server base_typeattr_221 (process (transition))) +;;* lme + +;;* lmx 731 system/sepolicy/private/system_server.te + +(neverallow system_server base_typeattr_9 (process (dyntransition))) +;;* lme + +;;* lmx 734 system/sepolicy/private/system_server.te + +(neverallow base_typeattr_222 system_ndebug_socket (sock_file (write open))) +;;* lme + +;;* lmx 740 system/sepolicy/private/system_server.te + +(neverallow system_server dex2oat_exec (file (execute execute_no_trans))) +;;* lme + +;;* lmx 747 system/sepolicy/private/system_server.te + +(neverallow system_server base_typeattr_223 (file (execute execute_no_trans))) +;;* lme + +;;* lmx 752 system/sepolicy/private/system_server.te + +(neverallow system_server base_typeattr_224 (blk_file (ioctl read write create setattr lock relabelfrom append unlink link rename open))) +;;* lme + +;;* lmx 755 system/sepolicy/private/system_server.te + +(neverallow system_server self (process (execmem))) +;;* lme + +;;* lmx 756 system/sepolicy/private/system_server.te + +(neverallow system_server ashmem_device (chr_file (execute))) +;;* lme + +;;* lmx 759 system/sepolicy/private/system_server.te + +(neverallow system_server system_server_tmpfs (file (execute))) +;;* lme + +;;* lmx 763 system/sepolicy/private/system_server.te + +(neverallow system_server dexoptanalyzer_exec (file (execute execute_no_trans))) +;;* lme + +;;* lmx 766 system/sepolicy/private/system_server.te + +(neverallow system_server base_typeattr_59 (process (ptrace))) +;;* lme + +;;* lmx 771 system/sepolicy/private/system_server.te + +(neverallow system_server system_server (capability (sys_resource))) +;;* lme + +(allow init thermalserviced_exec (file (read getattr map execute open))) +(allow init thermalserviced (process (transition))) +(allow thermalserviced thermalserviced_exec (file (read getattr map execute entrypoint open))) +(dontaudit init thermalserviced (process (noatsecure))) +(allow init thermalserviced (process (siginh rlimitinh))) +(typetransition init thermalserviced_exec process thermalserviced) +(typetransition thermalserviced tmpfs file thermalserviced_tmpfs) +(allow thermalserviced thermalserviced_tmpfs (file (read write getattr))) +(allow thermalserviced tmpfs (dir (getattr search))) +(allow init tombstoned_exec (file (read getattr map execute open))) +(allow init tombstoned (process (transition))) +(allow tombstoned tombstoned_exec (file (read getattr map execute entrypoint open))) +(dontaudit init tombstoned (process (noatsecure))) +(allow init tombstoned (process (siginh rlimitinh))) +(typetransition init tombstoned_exec process tombstoned) +(typetransition tombstoned tmpfs file tombstoned_tmpfs) +(allow tombstoned tombstoned_tmpfs (file (read write getattr))) +(allow tombstoned tmpfs (dir (getattr search))) +(allow init toolbox_exec (file (read getattr map execute open))) +(allow init toolbox (process (transition))) +(allow toolbox toolbox_exec (file (read getattr map execute entrypoint open))) +(dontaudit init toolbox (process (noatsecure))) +(allow init toolbox (process (siginh rlimitinh))) +(typetransition init toolbox_exec process toolbox) +(typetransition toolbox tmpfs file toolbox_tmpfs) +(allow toolbox toolbox_tmpfs (file (read write getattr))) +(allow toolbox tmpfs (dir (getattr search))) +(allow init tzdatacheck_exec (file (read getattr map execute open))) +(allow init tzdatacheck (process (transition))) +(allow tzdatacheck tzdatacheck_exec (file (read getattr map execute entrypoint open))) +(dontaudit init tzdatacheck (process (noatsecure))) +(allow init tzdatacheck (process (siginh rlimitinh))) +(typetransition init tzdatacheck_exec process tzdatacheck) +(typetransition tzdatacheck tmpfs file tzdatacheck_tmpfs) +(allow tzdatacheck tzdatacheck_tmpfs (file (read write getattr))) +(allow tzdatacheck tmpfs (dir (getattr search))) +(typetransition ueventd tmpfs file ueventd_tmpfs) +(allow ueventd ueventd_tmpfs (file (read write getattr))) +(allow ueventd tmpfs (dir (getattr search))) +(allow init uncrypt_exec (file (read getattr map execute open))) +(allow init uncrypt (process (transition))) +(allow uncrypt uncrypt_exec (file (read getattr map execute entrypoint open))) +(dontaudit init uncrypt (process (noatsecure))) +(allow init uncrypt (process (siginh rlimitinh))) +(typetransition init uncrypt_exec process uncrypt) +(typetransition uncrypt tmpfs file uncrypt_tmpfs) +(allow uncrypt uncrypt_tmpfs (file (read write getattr))) +(allow uncrypt tmpfs (dir (getattr search))) +(typetransition untrusted_app tmpfs file untrusted_app_tmpfs) +(allow untrusted_app untrusted_app_tmpfs (file (read write getattr))) +(allow untrusted_app tmpfs (dir (getattr search))) +(allow untrusted_app untrusted_app_tmpfs (file (execute))) +(allow untrusted_app system_server (udp_socket (read write getattr connect recvfrom sendto))) +(typetransition untrusted_app devpts chr_file untrusted_app_devpts) +(allow untrusted_app untrusted_app_devpts (chr_file (ioctl read write getattr open))) +(allowx untrusted_app untrusted_app_devpts (ioctl chr_file ((range 0x5401 0x5403) 0x540b (range 0x540e 0x5411) (range 0x5413 0x5414) 0x5451))) +;;* lmx 33 system/sepolicy/private/untrusted_app.te + +(neverallowx base_typeattr_9 untrusted_app_devpts (ioctl chr_file (0x5412))) +;;* lme + +;;* lmx 37 system/sepolicy/private/untrusted_app.te + +(neverallow untrusted_app system_server (udp_socket (ioctl create setattr lock relabelfrom relabelto append bind listen accept getopt setopt shutdown name_bind))) +;;* lme + +(typetransition untrusted_app_25 tmpfs file untrusted_app_25_tmpfs) +(allow untrusted_app_25 untrusted_app_25_tmpfs (file (read write getattr))) +(allow untrusted_app_25 tmpfs (dir (getattr search))) +(allow untrusted_app_25 untrusted_app_25_tmpfs (file (execute))) +(typetransition untrusted_app_25 devpts chr_file untrusted_app_25_devpts) +(allow untrusted_app_25 untrusted_app_25_devpts (chr_file (ioctl read write getattr open))) +(allowx untrusted_app_25 untrusted_app_25_devpts (ioctl chr_file ((range 0x5401 0x5403) 0x540b (range 0x540e 0x5411) (range 0x5413 0x5414) 0x5451))) +;;* lmx 31 system/sepolicy/private/untrusted_app_25.te + +(neverallowx base_typeattr_9 untrusted_app_25_devpts (ioctl chr_file (0x5412))) +;;* lme + +(allow untrusted_app_25 net_dns_prop (file (ioctl read getattr lock map open))) +(allow untrusted_app_25 proc_misc (file (ioctl read getattr lock map open))) +(allow untrusted_app_25 proc_tty_drivers (file (ioctl read getattr lock map open))) +(allow untrusted_app_all apk_data_file (file (execmod))) +(allow untrusted_app_all app_data_file (file (ioctl read getattr lock map execute execute_no_trans execmod open))) +(allow untrusted_app_all asec_apk_file (file (ioctl read getattr lock map open))) +(allow untrusted_app_all asec_apk_file (dir (ioctl read getattr lock search open))) +(allow untrusted_app_all asec_public_file (file (execute execmod))) +(allow untrusted_app_all shell_data_file (file (ioctl read getattr lock map open))) +(allow untrusted_app_all shell_data_file (dir (ioctl read getattr lock search open))) +(allow untrusted_app_all apk_tmp_file (file (read getattr))) +(allow untrusted_app_all apk_private_tmp_file (file (read getattr))) +(allow untrusted_app_all system_app_data_file (file (read write getattr))) +(allow untrusted_app_all media_rw_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow untrusted_app_all media_rw_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow untrusted_app_all mnt_media_rw_file (dir (search))) +(allow untrusted_app_all servicemanager (service_manager (list))) +(allow untrusted_app_all audioserver_service (service_manager (find))) +(allow untrusted_app_all cameraserver_service (service_manager (find))) +(allow untrusted_app_all drmserver_service (service_manager (find))) +(allow untrusted_app_all mediaserver_service (service_manager (find))) +(allow untrusted_app_all mediaextractor_service (service_manager (find))) +(allow untrusted_app_all mediacodec_service (service_manager (find))) +(allow untrusted_app_all mediametrics_service (service_manager (find))) +(allow untrusted_app_all mediadrmserver_service (service_manager (find))) +(allow untrusted_app_all nfc_service (service_manager (find))) +(allow untrusted_app_all radio_service (service_manager (find))) +(allow untrusted_app_all surfaceflinger_service (service_manager (find))) +(allow untrusted_app_all app_api_service (service_manager (find))) +(allow untrusted_app_all vr_manager_service (service_manager (find))) +(allow untrusted_app_all self (process (ptrace))) +(allow untrusted_app_all sysfs_hwrandom (dir (search))) +(allow untrusted_app_all sysfs_hwrandom (file (ioctl read getattr lock map open))) +(allow untrusted_app_all preloads_media_file (dir (ioctl read getattr lock search open))) +(allow untrusted_app_all preloads_media_file (file (ioctl read getattr lock map open))) +(allow untrusted_app_all preloads_data_file (dir (search))) +(allow untrusted_app_all vendor_app_file (dir (read getattr search open))) +(allow untrusted_app_all vendor_app_file (file (read getattr execute open))) +(allow untrusted_app_all vendor_app_file (lnk_file (read getattr open))) +(typetransition untrusted_v2_app tmpfs file untrusted_v2_app_tmpfs) +(allow untrusted_v2_app untrusted_v2_app_tmpfs (file (read write getattr))) +(allow untrusted_v2_app tmpfs (dir (getattr search))) +(allow untrusted_v2_app untrusted_v2_app_tmpfs (file (execute))) +(allow untrusted_v2_app system_app_data_file (file (read write getattr))) +(allow untrusted_v2_app media_rw_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow untrusted_v2_app media_rw_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow untrusted_v2_app mnt_media_rw_file (dir (search))) +(allow untrusted_v2_app servicemanager (service_manager (list))) +(allow untrusted_v2_app audioserver_service (service_manager (find))) +(allow untrusted_v2_app cameraserver_service (service_manager (find))) +(allow untrusted_v2_app drmserver_service (service_manager (find))) +(allow untrusted_v2_app mediaserver_service (service_manager (find))) +(allow untrusted_v2_app mediaextractor_service (service_manager (find))) +(allow untrusted_v2_app mediacodec_service (service_manager (find))) +(allow untrusted_v2_app mediametrics_service (service_manager (find))) +(allow untrusted_v2_app mediadrmserver_service (service_manager (find))) +(allow untrusted_v2_app nfc_service (service_manager (find))) +(allow untrusted_v2_app radio_service (service_manager (find))) +(allow untrusted_v2_app surfaceflinger_service (service_manager (find))) +(allow untrusted_v2_app app_api_service (service_manager (find))) +(allow untrusted_v2_app self (process (ptrace))) +(allow init update_engine_exec (file (read getattr map execute open))) +(allow init update_engine (process (transition))) +(allow update_engine update_engine_exec (file (read getattr map execute entrypoint open))) +(dontaudit init update_engine (process (noatsecure))) +(allow init update_engine (process (siginh rlimitinh))) +(typetransition init update_engine_exec process update_engine) +(typetransition update_engine tmpfs file update_engine_tmpfs) +(allow update_engine update_engine_tmpfs (file (read write getattr))) +(allow update_engine tmpfs (dir (getattr search))) +(allow update_engine_common postinstall_file (file (read getattr map execute open))) +(allow update_engine_common postinstall (process (transition))) +(allow postinstall postinstall_file (file (read getattr map execute entrypoint open))) +(allow postinstall update_engine_common (process (sigchld))) +(dontaudit update_engine_common postinstall (process (noatsecure))) +(allow update_engine_common postinstall (process (siginh rlimitinh))) +(typetransition update_engine_common postinstall_file process postinstall) +(allow init update_verifier_exec (file (read getattr map execute open))) +(allow init update_verifier (process (transition))) +(allow update_verifier update_verifier_exec (file (read getattr map execute entrypoint open))) +(dontaudit init update_verifier (process (noatsecure))) +(allow init update_verifier (process (siginh rlimitinh))) +(typetransition init update_verifier_exec process update_verifier) +(typetransition update_verifier tmpfs file update_verifier_tmpfs) +(allow update_verifier update_verifier_tmpfs (file (read write getattr))) +(allow update_verifier tmpfs (dir (getattr search))) +(allow init vdc_exec (file (read getattr map execute open))) +(allow init vdc (process (transition))) +(allow vdc vdc_exec (file (read getattr map execute entrypoint open))) +(dontaudit init vdc (process (noatsecure))) +(allow init vdc (process (siginh rlimitinh))) +(typetransition init vdc_exec process vdc) +(typetransition vdc tmpfs file vdc_tmpfs) +(allow vdc vdc_tmpfs (file (read write getattr))) +(allow vdc tmpfs (dir (getattr search))) +(allow init virtual_touchpad_exec (file (read getattr map execute open))) +(allow init virtual_touchpad (process (transition))) +(allow virtual_touchpad virtual_touchpad_exec (file (read getattr map execute entrypoint open))) +(dontaudit init virtual_touchpad (process (noatsecure))) +(allow init virtual_touchpad (process (siginh rlimitinh))) +(typetransition init virtual_touchpad_exec process virtual_touchpad) +(typetransition virtual_touchpad tmpfs file virtual_touchpad_tmpfs) +(allow virtual_touchpad virtual_touchpad_tmpfs (file (read write getattr))) +(allow virtual_touchpad tmpfs (dir (getattr search))) +(allow init vold_exec (file (read getattr map execute open))) +(allow init vold (process (transition))) +(allow vold vold_exec (file (read getattr map execute entrypoint open))) +(dontaudit init vold (process (noatsecure))) +(allow init vold (process (siginh rlimitinh))) +(typetransition init vold_exec process vold) +(typetransition vold tmpfs file vold_tmpfs) +(allow vold vold_tmpfs (file (read write getattr))) +(allow vold tmpfs (dir (getattr search))) +(allow vold sgdisk_exec (file (read getattr map execute open))) +(allow vold sgdisk (process (transition))) +(allow sgdisk sgdisk_exec (file (read getattr map execute entrypoint open))) +(allow sgdisk vold (process (sigchld))) +(dontaudit vold sgdisk (process (noatsecure))) +(allow vold sgdisk (process (siginh rlimitinh))) +(typetransition vold sgdisk_exec process sgdisk) +(allow vold sdcardd_exec (file (read getattr map execute open))) +(allow vold sdcardd (process (transition))) +(allow sdcardd sdcardd_exec (file (read getattr map execute entrypoint open))) +(allow sdcardd vold (process (sigchld))) +(dontaudit vold sdcardd (process (noatsecure))) +(allow vold sdcardd (process (siginh rlimitinh))) +(typetransition vold sdcardd_exec process sdcardd) +(allow vold shell_exec (file (read getattr map execute open))) +(allow vold blkid (process (transition))) +(allow blkid shell_exec (file (read getattr map execute entrypoint open))) +(allow blkid vold (process (sigchld))) +(dontaudit vold blkid (process (noatsecure))) +(allow vold blkid (process (siginh rlimitinh))) +(allow vold shell_exec (file (read getattr map execute open))) +(allow vold blkid_untrusted (process (transition))) +(allow blkid_untrusted shell_exec (file (read getattr map execute entrypoint open))) +(allow blkid_untrusted vold (process (sigchld))) +(dontaudit vold blkid_untrusted (process (noatsecure))) +(allow vold blkid_untrusted (process (siginh rlimitinh))) +(allow vold fsck_exec (file (read getattr map execute open))) +(allow vold fsck (process (transition))) +(allow fsck fsck_exec (file (read getattr map execute entrypoint open))) +(allow fsck vold (process (sigchld))) +(dontaudit vold fsck (process (noatsecure))) +(allow vold fsck (process (siginh rlimitinh))) +(allow vold fsck_exec (file (read getattr map execute open))) +(allow vold fsck_untrusted (process (transition))) +(allow fsck_untrusted fsck_exec (file (read getattr map execute entrypoint open))) +(allow fsck_untrusted vold (process (sigchld))) +(dontaudit vold fsck_untrusted (process (noatsecure))) +(allow vold fsck_untrusted (process (siginh rlimitinh))) +(typetransition vold storage_file dir storage_stub_file) +(typetransition vold mnt_media_rw_file dir mnt_media_rw_stub_file) +(allow init vr_hwc_exec (file (read getattr map execute open))) +(allow init vr_hwc (process (transition))) +(allow vr_hwc vr_hwc_exec (file (read getattr map execute entrypoint open))) +(dontaudit init vr_hwc (process (noatsecure))) +(allow init vr_hwc (process (siginh rlimitinh))) +(typetransition init vr_hwc_exec process vr_hwc) +(typetransition vr_hwc tmpfs file vr_hwc_tmpfs) +(allow vr_hwc vr_hwc_tmpfs (file (read write getattr))) +(allow vr_hwc tmpfs (dir (getattr search))) +(allow init webview_zygote_exec (file (read getattr map execute open))) +(allow init webview_zygote (process (transition))) +(allow webview_zygote webview_zygote_exec (file (read getattr map execute entrypoint open))) +(dontaudit init webview_zygote (process (noatsecure))) +(allow init webview_zygote (process (siginh rlimitinh))) +(typetransition init webview_zygote_exec process webview_zygote) +(typetransition webview_zygote tmpfs file webview_zygote_tmpfs) +(allow webview_zygote webview_zygote_tmpfs (file (read write getattr))) +(allow webview_zygote tmpfs (dir (getattr search))) +(allow webview_zygote apk_data_file (dir (ioctl read getattr lock search open))) +(allow webview_zygote apk_data_file (file (ioctl read getattr lock map execute open))) +(allow webview_zygote shared_relro_file (dir (search))) +(allow webview_zygote shared_relro_file (file (ioctl read getattr lock map open))) +(allow webview_zygote self (capability (setgid setuid))) +(allow webview_zygote self (capability (setpcap))) +(allow webview_zygote self (process (setcurrent))) +(allow webview_zygote isolated_app (process (dyntransition))) +(allow webview_zygote dalvikcache_data_file (dir (ioctl read getattr lock search open))) +(allow webview_zygote dalvikcache_data_file (lnk_file (ioctl read getattr lock map open))) +(allow webview_zygote dalvikcache_data_file (file (ioctl read getattr lock map execute open))) +(allow webview_zygote debugfs_trace_marker (file (getattr))) +(allow webview_zygote system_server (process (getpgid))) +(allow webview_zygote isolated_app (process (setpgid))) +(dontaudit webview_zygote mnt_expand_file (dir (getattr))) +(allow webview_zygote seapp_contexts_file (file (ioctl read getattr lock map open))) +(allow webview_zygote selinuxfs (dir (ioctl read getattr lock search open))) +(allow webview_zygote selinuxfs (file (ioctl read getattr lock map open))) +(allow webview_zygote selinuxfs (lnk_file (ioctl read getattr lock map open))) +(allow webview_zygote selinuxfs (file (write lock append map open))) +(allow webview_zygote kernel (security (check_context))) +(allow webview_zygote selinuxfs (dir (ioctl read getattr lock search open))) +(allow webview_zygote selinuxfs (file (ioctl read getattr lock map open))) +(allow webview_zygote selinuxfs (lnk_file (ioctl read getattr lock map open))) +(allow webview_zygote selinuxfs (file (write lock append map open))) +(allow webview_zygote kernel (security (compute_av))) +(allow webview_zygote self (netlink_selinux_socket (read write create getattr setattr lock relabelfrom relabelto append bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +;;* lmx 62 system/sepolicy/private/webview_zygote.te + +(neverallow webview_zygote base_typeattr_225 (process (dyntransition))) +;;* lme + +;;* lmx 65 system/sepolicy/private/webview_zygote.te + +(neverallow webview_zygote base_typeattr_221 (process (transition))) +;;* lme + +;;* lmx 69 system/sepolicy/private/webview_zygote.te + +(neverallow webview_zygote base_typeattr_9 (file (execute_no_trans))) +;;* lme + +;;* lmx 72 system/sepolicy/private/webview_zygote.te + +(neverallow base_typeattr_15 webview_zygote (process (transition))) +;;* lme + +;;* lmx 73 system/sepolicy/private/webview_zygote.te + +(neverallow base_typeattr_9 webview_zygote (process (dyntransition))) +;;* lme + +;;* lmx 76 system/sepolicy/private/webview_zygote.te + +(neverallow webview_zygote property_socket (sock_file (write))) +;;* lme + +;;* lmx 77 system/sepolicy/private/webview_zygote.te + +(neverallow webview_zygote property_type (property_service (set))) +;;* lme + +;;* lmx 87 system/sepolicy/private/webview_zygote.te + +(neverallow webview_zygote shell_data_file (file (ioctl read write getattr lock append map execute execute_no_trans open))) +(neverallow webview_zygote bluetooth_data_file (file (ioctl read write getattr lock append map execute execute_no_trans open))) +(neverallow webview_zygote nfc_data_file (file (ioctl read write getattr lock append map execute execute_no_trans open))) +(neverallow webview_zygote radio_data_file (file (ioctl read write getattr lock append map execute execute_no_trans open))) +(neverallow webview_zygote app_data_file (file (ioctl read write getattr lock append map execute execute_no_trans open))) +(neverallow webview_zygote system_app_data_file (file (ioctl read write getattr lock append map execute execute_no_trans open))) +;;* lme + +;;* lmx 93 system/sepolicy/private/webview_zygote.te + +(neverallow webview_zygote base_typeattr_226 (service_manager (find))) +;;* lme + +;;* lmx 96 system/sepolicy/private/webview_zygote.te + +(neverallow webview_zygote gpu_device (chr_file (ioctl read write getattr lock append map execute execute_no_trans open))) +;;* lme + +;;* lmx 99 system/sepolicy/private/webview_zygote.te + +(neverallow webview_zygote cache_file (dir (write create setattr relabelfrom relabelto append map unlink link rename execute quotaon mounton add_name remove_name reparent rmdir audit_access execmod))) +;;* lme + +;;* lmx 100 system/sepolicy/private/webview_zygote.te + +(neverallow webview_zygote cache_file (file (ioctl write create setattr lock relabelfrom relabelto append map unlink link rename execute quotaon mounton execute_no_trans entrypoint execmod open audit_access))) +;;* lme + +;;* lmx 116 system/sepolicy/private/webview_zygote.te + +(neverallow webview_zygote domain (socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (tcp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind name_connect))) +(neverallow webview_zygote domain (udp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +(neverallow webview_zygote domain (rawip_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +(neverallow webview_zygote domain (netlink_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (packet_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (key_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (netlink_route_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow webview_zygote domain (netlink_tcpdiag_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow webview_zygote domain (netlink_nflog_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (netlink_xfrm_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write))) +(neverallow webview_zygote domain (netlink_audit_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind nlmsg_read nlmsg_write nlmsg_relay nlmsg_readpriv nlmsg_tty_audit))) +(neverallow webview_zygote domain (netlink_dnrt_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (netlink_kobject_uevent_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (appletalk_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (tun_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind attach_queue))) +(neverallow webview_zygote domain (netlink_iscsi_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (netlink_fib_lookup_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (netlink_connector_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (netlink_netfilter_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (netlink_generic_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (netlink_scsitransport_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (netlink_rdma_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (netlink_crypto_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (sctp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +(neverallow webview_zygote domain (icmp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +(neverallow webview_zygote domain (ax25_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (ipx_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (netrom_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (atmpvc_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (x25_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (rose_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (decnet_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (atmsvc_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (rds_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (irda_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (pppox_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (llc_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (can_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (tipc_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (bluetooth_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (iucv_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (rxrpc_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (isdn_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (phonet_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (ieee802154_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (caif_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (alg_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (nfc_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (vsock_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (kcm_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (qipcrtr_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(neverallow webview_zygote domain (smc_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +;;* lme + +;;* lmx 120 system/sepolicy/private/webview_zygote.te + +(neverallow webview_zygote bluetooth_prop (file (ioctl read write create getattr setattr lock append map unlink rename open))) +;;* lme + +(allow init wificond_exec (file (read getattr map execute open))) +(allow init wificond (process (transition))) +(allow wificond wificond_exec (file (read getattr map execute entrypoint open))) +(dontaudit init wificond (process (noatsecure))) +(allow init wificond (process (siginh rlimitinh))) +(typetransition init wificond_exec process wificond) +(typetransition wificond tmpfs file wificond_tmpfs) +(allow wificond wificond_tmpfs (file (read write getattr))) +(allow wificond tmpfs (dir (getattr search))) +(allow init zygote_exec (file (read getattr map execute open))) +(allow init zygote (process (transition))) +(allow zygote zygote_exec (file (read getattr map execute entrypoint open))) +(dontaudit init zygote (process (noatsecure))) +(allow init zygote (process (siginh rlimitinh))) +(typetransition init zygote_exec process zygote) +(typetransition zygote tmpfs file zygote_tmpfs) +(allow zygote zygote_tmpfs (file (read write getattr))) +(allow zygote tmpfs (dir (getattr search))) +(allow zygote runtime_event_log_tags_file (file (ioctl read getattr lock map open))) +(allow zygote self (capability (chown dac_override fowner setgid setuid))) +(allow zygote self (capability (setpcap))) +(allow zygote self (process (setcurrent))) +(allow zygote system_server (process (dyntransition))) +(allow zygote appdomain (process (dyntransition))) +(allow zygote appdomain (dir (getattr search))) +(allow zygote appdomain (file (ioctl read getattr lock map open))) +(allow zygote system_server (process (getpgid setpgid))) +(allow zygote appdomain (process (getpgid setpgid))) +(allow zygote system_data_file (dir (ioctl read getattr lock search open))) +(allow zygote system_data_file (file (ioctl read getattr lock map open))) +(allow zygote dalvikcache_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow zygote dalvikcache_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow zygote dalvikcache_data_file (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow zygote resourcecache_data_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow zygote resourcecache_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow base_typeattr_227 dalvikcache_data_file (file (execute))) +(allow zygote idmap_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow zygote dex2oat_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow zygote vendor_overlay_file (dir (ioctl read getattr lock search open))) +(allow zygote vendor_overlay_file (file (ioctl read getattr lock map open))) +(allow zygote vendor_overlay_file (lnk_file (ioctl read getattr lock map open))) +(allow zygote cgroup (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow zygote cgroup (file (ioctl read getattr lock map open))) +(allow zygote cgroup (lnk_file (ioctl read getattr lock map open))) +(allow zygote self (capability (sys_admin))) +(allow zygote pmsg_device (chr_file (getattr))) +(allow zygote debugfs_trace_marker (file (getattr))) +(allow zygote seapp_contexts_file (file (ioctl read getattr lock map open))) +(allow zygote selinuxfs (dir (ioctl read getattr lock search open))) +(allow zygote selinuxfs (file (ioctl read getattr lock map open))) +(allow zygote selinuxfs (lnk_file (ioctl read getattr lock map open))) +(allow zygote selinuxfs (file (write lock append map open))) +(allow zygote kernel (security (check_context))) +(allow zygote selinuxfs (dir (ioctl read getattr lock search open))) +(allow zygote selinuxfs (file (ioctl read getattr lock map open))) +(allow zygote selinuxfs (lnk_file (ioctl read getattr lock map open))) +(allow zygote selinuxfs (file (write lock append map open))) +(allow zygote kernel (security (compute_av))) +(allow zygote self (netlink_selinux_socket (read write create getattr setattr lock relabelfrom relabelto append bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind))) +(allow zygote proc_cpuinfo (file (mounton))) +(allow zygote rootfs (dir (mounton))) +(allow zygote tmpfs (filesystem (mount unmount))) +(allow zygote fuse (filesystem (unmount))) +(allow zygote sdcardfs (filesystem (unmount))) +(allow zygote mnt_user_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow zygote mnt_user_file (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow zygote storage_file (dir (mounton search))) +(allow zygote zygote_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow zygote proc_net (dir (ioctl read getattr lock search open))) +(allow zygote proc_net (file (ioctl read getattr lock map open))) +(allow zygote proc_net (lnk_file (ioctl read getattr lock map open))) +(allow zygote rootfs (dir (ioctl read getattr lock search open))) +(allow zygote rootfs (file (ioctl read getattr lock map open))) +(allow zygote rootfs (lnk_file (ioctl read getattr lock map open))) +(allow zygote system_file (dir (ioctl read getattr lock search open))) +(allow zygote system_file (file (ioctl read getattr lock map open))) +(allow zygote system_file (lnk_file (ioctl read getattr lock map open))) +(allow zygote ion_device (chr_file (ioctl read getattr lock map open))) +(allow zygote tmpfs (dir (ioctl read getattr lock search open))) +(allow zygote overlay_prop (file (ioctl read getattr lock map open))) +;;* lmx 125 system/sepolicy/private/zygote.te + +(neverallow zygote base_typeattr_228 (process (dyntransition))) +;;* lme + +;;* lmx 131 system/sepolicy/private/zygote.te + +(neverallow zygote base_typeattr_223 (file (execute execute_no_trans))) +;;* lme + +;;* lmx 134 system/sepolicy/private/zygote.te + +(neverallow zygote bluetooth_prop (file (ioctl read write create getattr setattr lock append map unlink rename open))) +;;* lme + +(allow init aee_aed_exec (file (read getattr map execute open))) +(allow init aee_aed (process (transition))) +(allow aee_aed aee_aed_exec (file (read getattr map execute entrypoint open))) +(dontaudit init aee_aed (process (noatsecure))) +(allow init aee_aed (process (siginh rlimitinh))) +(typetransition init aee_aed_exec process aee_aed) +(typetransition aee_aed tmpfs file aee_aed_tmpfs) +(allow aee_aed aee_aed_tmpfs (file (read write getattr))) +(allow aee_aed tmpfs (dir (getattr search))) +(allow aee_aed block_device (dir (search))) +(allow aee_aed sdcard_type (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow aee_aed sdcard_type (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow aee_aed anr_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow aee_aed anr_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow aee_aed domain (process (sigkill signal getsched getattr))) +(allow aee_aed domain (lnk_file (getattr))) +(allow aee_aed usermodehelper (file (ioctl read getattr lock map open))) +(allow aee_aed init (unix_stream_socket (connectto))) +(allow aee_aed property_socket (sock_file (write))) +(allow aee_aed system_file (file (execute_no_trans))) +(allow aee_aed init (process (getsched))) +(allow aee_aed kernel (process (getsched))) +(allow aee_aed system_data_file (dir (write create add_name))) +(allow aee_aed system_data_file (file (ioctl read getattr lock map open))) +(allow aee_aed toolbox_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow aee_aed media_rw_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow aee_aed media_rw_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow aee_aed mnt_user_file (dir (search))) +(allow aee_aed mnt_user_file (lnk_file (read))) +(allow aee_aed storage_file (dir (search))) +(allow aee_aed storage_file (lnk_file (read))) +(allow aee_aed dumpstate_exec (file (read getattr map execute open))) +(allow aee_aed dumpstate (process (transition))) +(allow dumpstate dumpstate_exec (file (read getattr map execute entrypoint open))) +(allow dumpstate aee_aed (process (sigchld))) +(dontaudit aee_aed dumpstate (process (noatsecure))) +(allow aee_aed dumpstate (process (siginh rlimitinh))) +(typetransition aee_aed dumpstate_exec process dumpstate) +(allow aee_aed tombstone_data_file (dir (write lock add_name remove_name search open))) +(allow aee_aed tombstone_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow aee_aed self (capability (chown dac_override fowner fsetid kill setgid setuid net_admin sys_module sys_nice sys_resource))) +(allow aee_aed shell_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow aee_aed dumpstate (unix_stream_socket (ioctl read write))) +(allow aee_aed dumpstate (dir (search))) +(allow aee_aed dumpstate (file (ioctl read getattr lock map open))) +(allow aee_aed proc (file (ioctl read write getattr lock append map open))) +(allow aee_aed logdr_socket (sock_file (write))) +(allow aee_aed logd (unix_stream_socket (connectto))) +(allow aee_aed sysfs_vibrator (file (write lock append map open))) +(allow aee_aed domain (dir (ioctl read getattr lock search open))) +(allow aee_aed domain (file (ioctl read getattr lock map open))) +(allow aee_aed domain (lnk_file (ioctl read getattr lock map open))) +(allow aee_aed base_typeattr_229 (process (ptrace))) +(allow aee_aed dalvikcache_data_file (dir (ioctl read getattr lock search open))) +(allow aee_aed zygote_exec (file (ioctl read getattr lock map open))) +(allow aee_aed init_exec (file (ioctl read getattr lock map open))) +(allow aee_aed crash_dump (dir (search))) +(allow aee_aed crash_dump (file (ioctl read getattr lock map open))) +(allow aee_aed sysfs (file (ioctl read getattr lock map open))) +(allow aee_aed debugfs_tracing (file (write))) +(allow init aee_aedv_exec (file (read getattr map execute open))) +(allow init aee_aedv (process (transition))) +(allow aee_aedv aee_aedv_exec (file (read getattr map execute entrypoint open))) +(dontaudit init aee_aedv (process (noatsecure))) +(allow init aee_aedv (process (siginh rlimitinh))) +(typetransition init aee_aedv_exec process aee_aedv) +(typetransition aee_aedv tmpfs file aee_aedv_tmpfs) +(allow aee_aedv aee_aedv_tmpfs (file (read write getattr))) +(allow aee_aedv tmpfs (dir (getattr search))) +(allow init audiocmdservice_atci_exec (file (read getattr map execute open))) +(allow init audiocmdservice_atci (process (transition))) +(allow audiocmdservice_atci audiocmdservice_atci_exec (file (read getattr map execute entrypoint open))) +(dontaudit init audiocmdservice_atci (process (noatsecure))) +(allow init audiocmdservice_atci (process (siginh rlimitinh))) +(typetransition init audiocmdservice_atci_exec process audiocmdservice_atci) +(typetransition audiocmdservice_atci tmpfs file audiocmdservice_atci_tmpfs) +(allow audiocmdservice_atci audiocmdservice_atci_tmpfs (file (read write getattr))) +(allow audiocmdservice_atci tmpfs (dir (getattr search))) +(allow audiocmdservice_atci servicemanager (binder (call transfer))) +(allow servicemanager audiocmdservice_atci (dir (search))) +(allow servicemanager audiocmdservice_atci (file (read open))) +(allow servicemanager audiocmdservice_atci (process (getattr))) +(allow audiocmdservice_atci mediaserver (binder (call transfer))) +(allow mediaserver audiocmdservice_atci (binder (transfer))) +(allow audiocmdservice_atci mediaserver (fd (use))) +(allow audiocmdservice_atci mediaserver (dir (write lock add_name remove_name search open))) +(allow audiocmdservice_atci mediaserver_service (service_manager (find))) +(allow audiocmdservice_atci audioserver (binder (call transfer))) +(allow audioserver audiocmdservice_atci (binder (transfer))) +(allow audiocmdservice_atci audioserver (fd (use))) +(allow audiocmdservice_atci audioserver (dir (write lock add_name remove_name search open))) +(allow audiocmdservice_atci audioserver_service (service_manager (find))) +(allow audiocmdservice_atci sdcard_type (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow audiocmdservice_atci sdcard_type (dir (write lock add_name remove_name search open))) +(allow audiocmdservice_atci media_rw_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow audiocmdservice_atci media_rw_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow audiocmdservice_atci kmsg_device (chr_file (write lock append map open))) +(allow radio audiocmdservice_atci_exec (file (getattr))) +(allow audiocmdservice_atci hwservicemanager (binder (call transfer))) +(allow hwservicemanager audiocmdservice_atci (binder (call transfer))) +(allow hwservicemanager audiocmdservice_atci (dir (search))) +(allow hwservicemanager audiocmdservice_atci (file (read open))) +(allow hwservicemanager audiocmdservice_atci (process (getattr))) +(allow audiocmdservice_atci hwservicemanager_prop (file (ioctl read getattr lock map open))) +(allow audiocmdservice_atci debugfs_tracing (file (ioctl read write getattr lock append map open))) +(allow audioserver sdcard_type (dir (write create lock add_name remove_name search open))) +(allow audioserver sdcard_type (file (create))) +(allow audioserver sdcard_type (dir (remove_name))) +(allow audioserver sdcard_type (file (unlink))) +(allow audioserver system_data_file (file (open))) +(allow audioserver bootanim (binder (call transfer))) +(allow audioserver mtkbootanimation (binder (call transfer))) +(allow audioserver sdcard_type (file (append))) +(allow audioserver radio_data_file (dir (search))) +(allow audioserver radio_data_file (file (open))) +(allow audioserver radio (dir (read search))) +(allow audioserver radio (file (ioctl read getattr lock map open))) +(allow audioserver untrusted_app (dir (search))) +(allow audioserver system_data_file (dir (write))) +(allow audioserver storage_file (lnk_file (read write))) +(allow audioserver mnt_user_file (dir (read write search))) +(allow audioserver mnt_user_file (lnk_file (read write))) +(allow audioserver kmsg_device (chr_file (write open))) +(allow audioserver property_socket (sock_file (write))) +(allow audioserver media_rw_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow audioserver init (unix_stream_socket (connectto))) +(allow audioserver media_rw_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow audioserver sdcard_type (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow audioserver storage_file (dir (ioctl read getattr lock search open))) +(allow audioserver self (netlink_kobject_uevent_socket (read create))) +(allow audioserver audiocmdservice_atci (binder (call))) +(allow init boot_logo_updater_exec (file (read getattr map execute open))) +(allow init boot_logo_updater (process (transition))) +(allow boot_logo_updater boot_logo_updater_exec (file (read getattr map execute entrypoint open))) +(dontaudit init boot_logo_updater (process (noatsecure))) +(allow init boot_logo_updater (process (siginh rlimitinh))) +(typetransition init boot_logo_updater_exec process boot_logo_updater) +(typetransition boot_logo_updater tmpfs file boot_logo_updater_tmpfs) +(allow boot_logo_updater boot_logo_updater_tmpfs (file (read write getattr))) +(allow boot_logo_updater tmpfs (dir (getattr search))) +(allow boot_logo_updater system_prop (property_service (set))) +(allow boot_logo_updater graphics_device (chr_file (ioctl read write getattr lock append map open))) +(allow boot_logo_updater init (unix_stream_socket (connectto))) +(allow boot_logo_updater property_socket (sock_file (write))) +(allow boot_logo_updater self (capability (dac_override))) +(allow boot_logo_updater sysfs (file (ioctl read write getattr lock append map open))) +(allow boot_logo_updater block_device (dir (search))) +(allow boot_logo_updater graphics_device (dir (search))) +(allow boot_logo_updater mtd_device (chr_file (ioctl read getattr lock map open))) +(allow boot_logo_updater mtd_device (dir (search))) +(allow boot_logo_updater device (dir (write))) +(allow boot_logo_updater kmsg_device (chr_file (write lock append map open))) +(allow boot_logo_updater rootfs (file (ioctl read getattr lock map open))) +(allow boot_logo_updater sysfs (dir (read))) +(allow boot_logo_updater mtd_device (blk_file (read))) +(allow boot_logo_updater proc (file (read))) +(allow boot_logo_updater sysfs (dir (open))) +(allow boot_logo_updater proc (file (open))) +(allow boot_logo_updater system_data_file (dir (write))) +(allow boot_logo_updater mtd_device (blk_file (open))) +(allow bootanim mediaserver (binder (call transfer))) +(allow bootanim mediaserver_service (service_manager (find))) +(allow bootanim audioserver (binder (call transfer))) +(allow bootanim audioserver_service (service_manager (find))) +(allow bootanim property_socket (sock_file (write))) +(allow bootanim init (unix_stream_socket (connectto))) +(allow bootanim debug_prop (property_service (set))) +(allow bootanim resourcecache_data_file (dir (search))) +(allow bootanim resourcecache_data_file (file (read getattr open))) +(allow bootanim surfaceflinger (fifo_file (ioctl read write getattr lock append map open))) +(allow bootanim gpu_device (dir (search))) +(allow bootanim debugfs_tracing (file (write))) +(allow bootanim debugfs_tracing (file (open))) +(allow init cmddumper_exec (file (read getattr map execute open))) +(allow init cmddumper (process (transition))) +(allow cmddumper cmddumper_exec (file (read getattr map execute entrypoint open))) +(dontaudit init cmddumper (process (noatsecure))) +(allow init cmddumper (process (siginh rlimitinh))) +(typetransition init cmddumper_exec process cmddumper) +(typetransition cmddumper tmpfs file cmddumper_tmpfs) +(allow cmddumper cmddumper_tmpfs (file (read write getattr))) +(allow cmddumper tmpfs (dir (getattr search))) +(allow cmddumper system_data_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto rename add_name remove_name reparent search rmdir open))) +(allow cmddumper system_data_file (fifo_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow cmddumper sdcard_type (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow cmddumper sdcard_type (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow cmddumper init (unix_stream_socket (connectto))) +(allow cmddumper property_socket (sock_file (read write))) +(allow cmddumper platform_app (unix_stream_socket (connectto))) +(allow cmddumper shell_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow cmddumper system_file (file (getattr map execute execute_no_trans))) +(allow cmddumper media_rw_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow cmddumper media_rw_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow cmddumper file_contexts_file (file (read getattr open))) +(allow cmddumper sysfs (file (read open))) +(allow crash_dump aee_aed (unix_stream_socket (connectto))) +(allow dhcp devpts (chr_file (ioctl read write getattr lock append map open))) +(allow dhcp kernel (system (module_request))) +(allow dhcp platform_app (fd (use))) +(allow dhcp init (fifo_file (ioctl read write getattr lock append map open))) +(allow dhcp init (unix_stream_socket (read write))) +(allow dhcp untrusted_app (fd (use))) +(allow drmserver sysfs (file (read open))) +(allow dumpstate fuse (dir (write lock add_name remove_name search open))) +(allow dumpstate fuse (file (write create setattr append open))) +(allow dumpstate mnt_user_file (dir (search))) +(allow dumpstate mnt_user_file (lnk_file (read))) +(allow dumpstate storage_file (lnk_file (read))) +(allow dumpstate sysfs (file (ioctl read getattr lock map open))) +(allow dumpstate app_data_file (dir (search))) +(allow dumpstate kmsg_device (chr_file (ioctl read getattr lock map open))) +(allow dumpstate fuse (file (ioctl))) +(allow dumpstate debugfs_tracing (file (read write open))) +(allow dumpstate gpu_device (dir (search))) +(allow dumpstate hal_camera_hwservice (hwservice_manager (find))) +(allow init em_svr_exec (file (read getattr map execute open))) +(allow init em_svr (process (transition))) +(allow em_svr em_svr_exec (file (read getattr map execute entrypoint open))) +(dontaudit init em_svr (process (noatsecure))) +(allow init em_svr (process (siginh rlimitinh))) +(typetransition init em_svr_exec process em_svr) +(typetransition em_svr tmpfs file em_svr_tmpfs) +(allow em_svr em_svr_tmpfs (file (read write getattr))) +(allow em_svr tmpfs (dir (getattr search))) +(allow em_svr proc (file (write))) +(allow em_svr sysfs (file (write))) +(allow em_svr shell_exec (file (read getattr execute execute_no_trans open))) +(allow em_svr system_file (file (execute_no_trans))) +(allow em_svr block_device (dir (search))) +(allow em_svr graphics_device (chr_file (ioctl read write open))) +(allow em_svr graphics_device (dir (search))) +(allow em_svr radio_data_file (dir (write create add_name search))) +(allow em_svr radio_data_file (file (read write create open))) +(allow em_svr sysfs_devices_system_cpu (file (write))) +(allow em_svr self (capability (chown dac_override fowner fsetid sys_nice))) +(allow em_svr self (process (execmem))) +(allow em_svr system_data_file (dir (write create relabelfrom add_name remove_name open))) +(allow em_svr kernel (system (module_request))) +(allow em_svr sdcard_type (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow em_svr sdcard_type (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow em_svr surfaceflinger_service (service_manager (find))) +(allow em_svr sysfs (dir (write))) +(allow em_svr servicemanager (binder (call transfer))) +(allow servicemanager em_svr (dir (search))) +(allow servicemanager em_svr (file (read open))) +(allow servicemanager em_svr (process (getattr))) +(allow em_svr surfaceflinger (binder (call transfer))) +(allow surfaceflinger em_svr (binder (transfer))) +(allow em_svr surfaceflinger (fd (use))) +(allow em_svr toolbox_exec (file (read getattr execute execute_no_trans open))) +(allow em_svr vendor_toolbox_exec (file (getattr))) +(allow em_svr proc (file (read open))) +(allow em_svr sysfs (file (read))) +(allow em_svr system_data_file (lnk_file (read))) +(allow em_svr system_data_file (file (open))) +(allow em_svr sysfs_leds (dir (search))) +(allow em_svr sysfs_leds (lnk_file (read))) +(allow em_svr sysfs (file (open))) +(allow em_svr media_rw_data_file (dir (read write add_name search open))) +(allow em_svr media_rw_data_file (file (write create open))) +(allow init emdlogger_exec (file (read getattr map execute open))) +(allow init emdlogger (process (transition))) +(allow emdlogger emdlogger_exec (file (read getattr map execute entrypoint open))) +(dontaudit init emdlogger (process (noatsecure))) +(allow init emdlogger (process (siginh rlimitinh))) +(typetransition init emdlogger_exec process emdlogger) +(typetransition emdlogger tmpfs file emdlogger_tmpfs) +(allow emdlogger emdlogger_tmpfs (file (read write getattr))) +(allow emdlogger tmpfs (dir (getattr search))) +(allow emdlogger servicemanager (binder (call transfer))) +(allow servicemanager emdlogger (dir (search))) +(allow servicemanager emdlogger (file (read open))) +(allow servicemanager emdlogger (process (getattr))) +(allow emdlogger sdcard_type (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow emdlogger sdcard_type (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow emdlogger property_socket (sock_file (write))) +(allow emdlogger init (unix_stream_socket (connectto))) +(allow emdlogger platform_app (unix_stream_socket (connectto))) +(allow emdlogger shell_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow emdlogger system_file (file (execute_no_trans))) +(allow emdlogger zygote_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow emdlogger vfat (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow emdlogger vfat (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow emdlogger mnt_user_file (dir (search))) +(allow emdlogger mnt_user_file (lnk_file (read))) +(allow emdlogger storage_file (lnk_file (read))) +(allow emdlogger mnt_media_rw_file (dir (search))) +(allow emdlogger rootfs (file (ioctl read getattr lock map open))) +(allow emdlogger storage_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow emdlogger tmpfs (lnk_file (read))) +(allow emdlogger storage_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow emdlogger sysfs (file (read open))) +(allow emdlogger system_file (dir (read))) +(allow emdlogger toolbox_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow emdlogger media_rw_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow emdlogger media_rw_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow emdlogger file_contexts_file (file (read getattr open))) +(allow init factory_exec (file (read getattr map execute open))) +(allow init factory (process (transition))) +(allow factory factory_exec (file (read getattr map execute entrypoint open))) +(dontaudit init factory (process (noatsecure))) +(allow init factory (process (siginh rlimitinh))) +(typetransition init factory_exec process factory) +(typetransition factory tmpfs file factory_tmpfs) +(allow factory factory_tmpfs (file (read write getattr))) +(allow factory tmpfs (dir (getattr search))) +(allow factory property_socket (sock_file (write))) +(allow factory init (unix_stream_socket (connectto))) +(allow factory kernel (system (module_request))) +(allow factory node (tcp_socket (node_bind))) +(allow factory userdata_block_device (blk_file (ioctl read write getattr lock append map open))) +(allow factory port (tcp_socket (name_bind name_connect))) +(allow factory self (capability (dac_override fsetid net_admin net_raw ipc_lock sys_module sys_admin sys_boot sys_nice sys_time))) +(allow factory sdcard_type (dir (ioctl read getattr lock search open))) +(allow factory self (netlink_route_socket (read write create getattr bind nlmsg_read nlmsg_write))) +(allow factory proc_net (file (read getattr open))) +(allowx factory self (ioctl udp_socket (0x6900 0x6902))) +(allowx factory self (ioctl udp_socket ((range 0x890b 0x890d) 0x8911 0x8914 0x8916 0x8918 0x891a (range 0x891c 0x8920) (range 0x8922 0x8927) 0x8929 (range 0x8930 0x8932) (range 0x8934 0x8937) 0x8939 (range 0x8940 0x8941) 0x8943 (range 0x8946 0x894b) (range 0x8953 0x8955) (range 0x8960 0x8962) (range 0x8970 0x8971) (range 0x8980 0x8983) (range 0x8990 0x8995) (range 0x89a0 0x89a3) 0x89b0 (range 0x89e0 0x89ff)))) +(allowx factory self (ioctl udp_socket (0x8b00 0x8b02 0x8b04 0x8b06 0x8b08 0x8b0a 0x8b0c 0x8b0e 0x8b10 (range 0x8b14 0x8b1d) 0x8b20 0x8b22 0x8b24 0x8b26 0x8b28 (range 0x8b2a 0x8b2c) (range 0x8b30 0x8b36) (range 0x8be0 0x8bff)))) +(allowx factory self (ioctl udp_socket (0x8913))) +(allowx factory self (ioctl udp_socket (0x8b03))) +(allow factory self (process (execmem))) +(allow factory self (tcp_socket (ioctl read write create getattr setattr lock append bind connect listen accept getopt setopt shutdown))) +(allow factory self (udp_socket (ioctl read write create getattr setattr lock append bind connect getopt setopt shutdown))) +(allow factory sysfs_wake_lock (file (ioctl read write getattr lock append map open))) +(allow factory system_data_file (dir (write lock add_name remove_name search open))) +(allow factory system_data_file (sock_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow factory system_file (file (getattr map execute execute_no_trans))) +(allow init fuelgauged_static_exec (file (read getattr map execute open))) +(allow init fuelgauged_static (process (transition))) +(allow fuelgauged_static fuelgauged_static_exec (file (read getattr map execute entrypoint open))) +(dontaudit init fuelgauged_static (process (noatsecure))) +(allow init fuelgauged_static (process (siginh rlimitinh))) +(typetransition init fuelgauged_static_exec process fuelgauged_static) +(typetransition fuelgauged_static tmpfs file fuelgauged_static_tmpfs) +(allow fuelgauged_static fuelgauged_static_tmpfs (file (read write getattr))) +(allow fuelgauged_static tmpfs (dir (getattr search))) +(allow fuelgauged_static input_device (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow fuelgauged_static input_device (file (ioctl read getattr lock map open))) +(allow fuelgauged_static system_data_file (dir (ioctl read write getattr lock add_name search open))) +(allow fuelgauged_static fuelgauged_static_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow fuelgauged_static fuelgauged_static_file (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow fuelgauged_static fuelgauged_static_file (sock_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow fuelgauged_static fuelgauged_static_file (fifo_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow fuelgauged_static fuelgauged_static_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(typetransition fuelgauged_static system_data_file dir fuelgauged_static_file) +(typetransition fuelgauged_static system_data_file fifo_file fuelgauged_static_file) +(typetransition fuelgauged_static system_data_file sock_file fuelgauged_static_file) +(typetransition fuelgauged_static system_data_file lnk_file fuelgauged_static_file) +(typetransition fuelgauged_static system_data_file file fuelgauged_static_file) +(allow fuelgauged_static fuelgauged_static_file (file (ioctl read write getattr lock append map open))) +(allow fuelgauged_static system_data_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow fuelgauged_static rootfs (file (entrypoint))) +(allow fuelgauged_static self (capability (chown dac_override fsetid))) +(allow hal_graphics_allocator proc (file (ioctl read getattr open))) +(allow init self (capability (sys_module))) +(allow init system_file (system (module_load))) +(allow init debugfs_tracing (dir (write))) +(allow init debugfs_tracing (file (write))) +(allow init sysfs_devices_system_cpu (file (relabelfrom))) +(allow init kisd_exec (file (read getattr map execute open))) +(allow init kisd (process (transition))) +(allow kisd kisd_exec (file (read getattr map execute entrypoint open))) +(dontaudit init kisd (process (noatsecure))) +(allow init kisd (process (siginh rlimitinh))) +(typetransition init kisd_exec process kisd) +(typetransition kisd tmpfs file kisd_tmpfs) +(allow kisd kisd_tmpfs (file (read write getattr))) +(allow kisd tmpfs (dir (getattr search))) +(allow kisd tee_device (chr_file (ioctl read write open))) +(allow kisd provision_file (dir (ioctl read write add_name remove_name search open))) +(allow kisd provision_file (file (read write create getattr unlink open))) +(allow kisd system_file (file (execute_no_trans))) +(allow kisd shell_exec (file (read getattr execute execute_no_trans open))) +(allow kisd toolbox_exec (file (read getattr execute execute_no_trans open))) +(allow kisd vendor_toolbox_exec (file (getattr))) +(allow kisd block_device (dir (ioctl read write search open))) +(allow kisd kb_block_device (blk_file (ioctl read write getattr open))) +(allow kisd dkb_block_device (blk_file (ioctl read write getattr open))) +(allow kisd key_install_data_file (dir (write add_name remove_name))) +(allow kisd key_install_data_file (file (read write create getattr unlink open))) +(allow kisd key_install_data_file (dir (search))) +(allow kisd self (capability (dac_override dac_read_search))) +(allow kisd mtd_device (chr_file (read write open))) +(allow kisd mtd_device (dir (search))) +(allow kisd kb_block_device (chr_file (ioctl read write getattr open))) +(allow kisd dkb_block_device (chr_file (ioctl read write getattr open))) +(allow init mdlogger_exec (file (read getattr map execute open))) +(allow init mdlogger (process (transition))) +(allow mdlogger mdlogger_exec (file (read getattr map execute entrypoint open))) +(dontaudit init mdlogger (process (noatsecure))) +(allow init mdlogger (process (siginh rlimitinh))) +(typetransition init mdlogger_exec process mdlogger) +(typetransition mdlogger tmpfs file mdlogger_tmpfs) +(allow mdlogger mdlogger_tmpfs (file (read write getattr))) +(allow mdlogger tmpfs (dir (getattr search))) +(allow mdlogger servicemanager (binder (call transfer))) +(allow servicemanager mdlogger (dir (search))) +(allow servicemanager mdlogger (file (read open))) +(allow servicemanager mdlogger (process (getattr))) +(allow mdlogger init (unix_stream_socket (connectto))) +(allow mdlogger property_socket (sock_file (write))) +(allow mdlogger platform_app (unix_stream_socket (connectto))) +(allow mdlogger shell_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow mdlogger system_file (file (getattr map execute execute_no_trans))) +(allow mdlogger zygote_exec (file (ioctl read getattr lock map open))) +(allow mdlogger node (tcp_socket (node_bind))) +(allow mdlogger port (tcp_socket (name_bind))) +(allow mdlogger self (tcp_socket (ioctl read write create getattr setattr lock append bind connect listen accept getopt setopt shutdown))) +(allow mdlogger vfat (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow mdlogger vfat (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow mdlogger tmpfs (lnk_file (read))) +(allow mdlogger storage_file (lnk_file (ioctl read write getattr lock append map open))) +(allow mdlogger mnt_user_file (dir (search))) +(allow mdlogger mnt_user_file (lnk_file (ioctl read write getattr lock append map open))) +(allow mdlogger sdcard_type (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow mdlogger sdcard_type (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow mdlogger media_rw_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow mdlogger media_rw_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow mdlogger storage_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow mdlogger storage_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow mdlogger file_contexts_file (file (read getattr open))) +(allow mdlogger sysfs (file (read open))) +(allow mdlogger system_file (dir (read))) +(allow init meta_tst_exec (file (read getattr map execute open))) +(allow init meta_tst (process (transition))) +(allow meta_tst meta_tst_exec (file (read getattr map execute entrypoint open))) +(dontaudit init meta_tst (process (noatsecure))) +(allow init meta_tst (process (siginh rlimitinh))) +(typetransition init meta_tst_exec process meta_tst) +(typetransition meta_tst tmpfs file meta_tst_tmpfs) +(allow meta_tst meta_tst_tmpfs (file (read write getattr))) +(allow meta_tst tmpfs (dir (getattr search))) +(allow meta_tst port (tcp_socket (name_bind name_connect))) +(allow meta_tst self (capability (chown dac_override fowner fsetid net_admin net_raw sys_admin sys_nice))) +(allow meta_tst self (tcp_socket (create bind connect setopt))) +(allow meta_tst self (tcp_socket (read write bind listen accept setopt))) +(allow meta_tst self (udp_socket (ioctl create))) +(allow meta_tst self (capability (ipc_lock sys_boot))) +(allow meta_tst sysfs_wake_lock (file (ioctl read write getattr lock append map open))) +(allow meta_tst property_socket (sock_file (write lock append map open))) +(allow meta_tst vold_socket (sock_file (write lock append map open))) +(allow meta_tst init (unix_stream_socket (connectto))) +(allow meta_tst kisd (unix_stream_socket (connectto))) +(allow meta_tst vold (unix_stream_socket (connectto))) +(allow meta_tst node (tcp_socket (node_bind))) +(allow meta_tst labeledfs (filesystem (unmount))) +(allow meta_tst shell_exec (file (execute))) +(allow meta_tst property_socket (sock_file (write))) +(allow meta_tst init (unix_stream_socket (connectto))) +(allow meta_tst powerctl_prop (property_service (set))) +(allow meta_tst powerctl_prop (file (ioctl read getattr lock map open))) +(allow meta_tst system_data_file (sock_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow meta_tst system_file (file (getattr map execute execute_no_trans))) +(allow meta_tst system_data_file (dir (write lock add_name remove_name search open))) +(allow meta_tst block_device (dir (search))) +(allow meta_tst rootfs (file (entrypoint))) +(allow init mobile_log_d_exec (file (read getattr map execute open))) +(allow init mobile_log_d (process (transition))) +(allow mobile_log_d mobile_log_d_exec (file (read getattr map execute entrypoint open))) +(dontaudit init mobile_log_d (process (noatsecure))) +(allow init mobile_log_d (process (siginh rlimitinh))) +(typetransition init mobile_log_d_exec process mobile_log_d) +(typetransition mobile_log_d tmpfs file mobile_log_d_tmpfs) +(allow mobile_log_d mobile_log_d_tmpfs (file (read write getattr))) +(allow mobile_log_d tmpfs (dir (getattr search))) +(allow mobile_log_d kernel (system (syslog_mod))) +(dontaudit mobile_log_d untrusted_app (fd (use))) +(dontaudit mobile_log_d isolated_app (fd (use))) +(allow mobile_log_d property_socket (sock_file (write))) +(allow mobile_log_d init (unix_stream_socket (connectto))) +(allow mobile_log_d debug_prop (property_service (set))) +(allow mobile_log_d debug_prop (file (ioctl read getattr lock map open))) +(allow mobile_log_d logdr_socket (sock_file (write))) +(allow mobile_log_d logd (unix_stream_socket (connectto))) +(allow mobile_log_d self (capability (chown dac_override dac_read_search fowner fsetid setgid setuid))) +(allow mobile_log_d self (capability2 (syslog))) +(allow mobile_log_d system_file (file (execute_no_trans))) +(allow mobile_log_d shell_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow mobile_log_d storage_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow mobile_log_d storage_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow mobile_log_d storage_file (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow mobile_log_d mnt_user_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow mobile_log_d mnt_user_file (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow mobile_log_d sdcard_type (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow mobile_log_d sdcard_type (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow mobile_log_d vfat (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow mobile_log_d vfat (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow mobile_log_d mnt_media_rw_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow mobile_log_d mnt_media_rw_file (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow mobile_log_d toolbox_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow mobile_log_d rootfs (file (ioctl read getattr lock map open))) +(allow mobile_log_d device_logging_prop (file (getattr open))) +(allow mobile_log_d mmc_prop (file (getattr open))) +(allow mobile_log_d safemode_prop (file (getattr open))) +(allow mobile_log_d proc (file (ioctl read getattr lock map open))) +(allow mobile_log_d sysfs (file (read open))) +(allow mobile_log_d media_rw_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow mobile_log_d media_rw_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow mobile_log_d debugfs_tracing (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow mobile_log_d debugfs_tracing (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow mobile_log_d debugfs_tracing_instances (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow mobile_log_d debugfs_tracing_instances (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow init mtkbootanimation_exec (file (read getattr map execute open))) +(allow init mtkbootanimation (process (transition))) +(allow mtkbootanimation mtkbootanimation_exec (file (read getattr map execute entrypoint open))) +(dontaudit init mtkbootanimation (process (noatsecure))) +(allow init mtkbootanimation (process (siginh rlimitinh))) +(typetransition init mtkbootanimation_exec process mtkbootanimation) +(typetransition mtkbootanimation tmpfs file mtkbootanimation_tmpfs) +(allow mtkbootanimation mtkbootanimation_tmpfs (file (read write getattr))) +(allow mtkbootanimation tmpfs (dir (getattr search))) +(allow mtkbootanimation servicemanager (binder (call transfer))) +(allow servicemanager mtkbootanimation (dir (search))) +(allow servicemanager mtkbootanimation (file (read open))) +(allow servicemanager mtkbootanimation (process (getattr))) +(allow mtkbootanimation surfaceflinger (binder (call transfer))) +(allow surfaceflinger mtkbootanimation (binder (transfer))) +(allow mtkbootanimation surfaceflinger (fd (use))) +(allow mtkbootanimation audioserver (binder (call transfer))) +(allow audioserver mtkbootanimation (binder (transfer))) +(allow mtkbootanimation audioserver (fd (use))) +(allow mtkbootanimation hwservicemanager (binder (call transfer))) +(allow hwservicemanager mtkbootanimation (binder (call transfer))) +(allow hwservicemanager mtkbootanimation (dir (search))) +(allow hwservicemanager mtkbootanimation (file (read open))) +(allow hwservicemanager mtkbootanimation (process (getattr))) +(allow mtkbootanimation gpu_device (chr_file (ioctl read write getattr lock append map open))) +(allow mtkbootanimation oemfs (dir (search))) +(allow mtkbootanimation oemfs (file (ioctl read getattr lock map open))) +(allow mtkbootanimation audio_device (dir (ioctl read getattr lock search open))) +(allow mtkbootanimation audio_device (chr_file (ioctl read write getattr lock append map open))) +(allow mtkbootanimation surfaceflinger_service (service_manager (find))) +(allow mtkbootanimation ion_device (chr_file (ioctl read write getattr lock append map open))) +(allow mtkbootanimation hal_graphics_allocator (fd (use))) +(allow mtkbootanimation hal_graphics_composer (fd (use))) +(allow mtkbootanimation proc (dir (ioctl read getattr lock search open))) +(allow mtkbootanimation proc (file (ioctl read getattr lock map open))) +(allow mtkbootanimation proc (lnk_file (ioctl read getattr lock map open))) +(allow mtkbootanimation proc_meminfo (file (ioctl read getattr lock map open))) +(allow mtkbootanimation sysfs (dir (ioctl read getattr lock search open))) +(allow mtkbootanimation sysfs (file (ioctl read getattr lock map open))) +(allow mtkbootanimation sysfs (lnk_file (ioctl read getattr lock map open))) +(allow mtkbootanimation cgroup (dir (ioctl read getattr lock search open))) +(allow mtkbootanimation cgroup (file (ioctl read getattr lock map open))) +(allow mtkbootanimation cgroup (lnk_file (ioctl read getattr lock map open))) +(allow mtkbootanimation system_file (dir (ioctl read getattr lock search open))) +(allow mtkbootanimation mediaserver (binder (call transfer))) +(allow mtkbootanimation mediaserver_service (service_manager (find))) +(allow mtkbootanimation audioserver (binder (call transfer))) +(allow mtkbootanimation audioserver_service (service_manager (find))) +(allow mtkbootanimation property_socket (sock_file (write))) +(allow mtkbootanimation init (unix_stream_socket (connectto))) +(allow mtkbootanimation debug_prop (property_service (set))) +(allow mtkbootanimation resourcecache_data_file (dir (search))) +(allow mtkbootanimation resourcecache_data_file (file (read getattr open))) +(allow mtkbootanimation surfaceflinger (fifo_file (ioctl read write getattr lock append map open))) +(allow mtkbootanimation gpu_device (dir (search))) +(allow mtkbootanimation debugfs_tracing (file (write))) +(allow mtkbootanimation debugfs_tracing (file (open))) +(allow init netdiag_exec (file (read getattr map execute open))) +(allow init netdiag (process (transition))) +(allow netdiag netdiag_exec (file (read getattr map execute entrypoint open))) +(dontaudit init netdiag (process (noatsecure))) +(allow init netdiag (process (siginh rlimitinh))) +(typetransition init netdiag_exec process netdiag) +(typetransition netdiag tmpfs file netdiag_tmpfs) +(allow netdiag netdiag_tmpfs (file (read write getattr))) +(allow netdiag tmpfs (dir (getattr search))) +(allow netdiag sdcard_type (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow netdiag sdcard_type (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow netdiag domain (dir (search))) +(allow netdiag domain (file (read open))) +(allow netdiag net_data_file (file (ioctl read getattr lock map open))) +(allow netdiag net_data_file (dir (search))) +(allow netdiag storage_file (dir (search))) +(allow netdiag storage_file (lnk_file (read))) +(allow netdiag mnt_user_file (dir (search))) +(allow netdiag mnt_user_file (lnk_file (read))) +(allow netdiag platform_app (dir (search))) +(allow netdiag untrusted_app (dir (search))) +(allow netdiag mnt_media_rw_file (dir (search))) +(allow netdiag vfat (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow netdiag vfat (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow netdiag tmpfs (lnk_file (read))) +(allow netdiag system_file (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow netdiag self (capability (setgid setuid net_admin net_raw))) +(allow netdiag shell_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow netdiag qtaguid_proc (file (ioctl read getattr lock map open))) +(allow netdiag proc_net (file (ioctl read getattr lock map open))) +(allow netdiag dnsproxyd_socket (sock_file (write))) +(allow netdiag fwmarkd_socket (sock_file (write))) +(allow netdiag netd (unix_stream_socket (connectto))) +(allow netdiag self (udp_socket (connect))) +(allow netdiag connectivity_service (service_manager (find))) +(allow netdiag netstats_service (service_manager (find))) +(allow netdiag system_server (binder (call))) +(allow system_server netdiag (fd (use))) +(allow netdiag servicemanager (binder (call))) +(allow netdiag servicemanager (binder (call transfer))) +(allow servicemanager netdiag (dir (search))) +(allow servicemanager netdiag (file (read open))) +(allow servicemanager netdiag (process (getattr))) +(allow netdiag connmetrics_service (service_manager (find))) +(allow netdiag netpolicy_service (service_manager (find))) +(allow netdiag network_management_service (service_manager (find))) +(allow netdiag settings_service (service_manager (find))) +(allow netdiag device_logging_prop (file (getattr open))) +(allow netdiag mmc_prop (file (getattr open))) +(allow netdiag proc_net (dir (read open))) +(allow netdiag safemode_prop (file (getattr open))) +(allow netdiag toolbox_exec (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow netdiag media_rw_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow netdiag media_rw_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(allow netdiag self (netlink_xfrm_socket (read write create getattr bind setopt nlmsg_read))) +(allow netdiag self (packet_socket (read create getopt setopt))) +(allowx netdiag self (ioctl packet_socket (0x8906 0x8933))) +(allow netdiag self (packet_socket (ioctl write))) +(allow netdiag self (netlink_route_socket (read write create getattr bind setopt nlmsg_read))) +(allow netdiag kernel (system (module_request))) +(allow netdiag self (rawip_socket (create getopt))) +(allow netdiag self (udp_socket (ioctl create))) +(allow platform_app system_app_service (service_manager (find))) +(allow platform_app init (unix_stream_socket (connectto))) +(allow ppp init (unix_stream_socket (connectto))) +(allow ppp property_socket (sock_file (write))) +(allow ppp devpts (chr_file (ioctl read write setattr open))) +(allow ppp self (capability (dac_override setgid setuid net_raw))) +(allow ppp shell_exec (file (read execute execute_no_trans open))) +(allow ppp net_radio_prop (property_service (set))) +(allow ppp system_prop (property_service (set))) +(allow ppp ppp_exec (file (execute_no_trans))) +(allow ppp mtp (file (read))) +(allow init pre_meta_exec (file (read getattr map execute open))) +(allow init pre_meta (process (transition))) +(allow pre_meta pre_meta_exec (file (read getattr map execute entrypoint open))) +(dontaudit init pre_meta (process (noatsecure))) +(allow init pre_meta (process (siginh rlimitinh))) +(typetransition init pre_meta_exec process pre_meta) +(typetransition pre_meta tmpfs file pre_meta_tmpfs) +(allow pre_meta pre_meta_tmpfs (file (read write getattr))) +(allow pre_meta tmpfs (dir (getattr search))) +(allow pre_meta block_device (dir (search))) +(allow pre_meta property_socket (sock_file (write))) +(allow pre_meta init (unix_stream_socket (connectto))) +(allow recovery mtd_device (dir (search))) +(allow recovery mtd_device (chr_file (ioctl read write getattr open))) +(allow recovery self (capability (sys_resource))) +(allow init sensorcal_exec (file (read getattr map execute open))) +(allow init sensorcal (process (transition))) +(allow sensorcal sensorcal_exec (file (read getattr map execute entrypoint open))) +(dontaudit init sensorcal (process (noatsecure))) +(allow init sensorcal (process (siginh rlimitinh))) +(typetransition init sensorcal_exec process sensorcal) +(typetransition sensorcal tmpfs file sensorcal_tmpfs) +(allow sensorcal sensorcal_tmpfs (file (read write getattr))) +(allow sensorcal tmpfs (dir (getattr search))) +(allow init storagemanagerd_exec (file (read getattr map execute open))) +(allow init storagemanagerd (process (transition))) +(allow storagemanagerd storagemanagerd_exec (file (read getattr map execute entrypoint open))) +(dontaudit init storagemanagerd (process (noatsecure))) +(allow init storagemanagerd (process (siginh rlimitinh))) +(typetransition init storagemanagerd_exec process storagemanagerd) +(typetransition storagemanagerd tmpfs file storagemanagerd_tmpfs) +(allow storagemanagerd storagemanagerd_tmpfs (file (read write getattr))) +(allow storagemanagerd tmpfs (dir (getattr search))) +(allow storagemanagerd vold_socket (sock_file (write))) +(allow storagemanagerd vold (unix_stream_socket (connectto))) +(allow storagemanagerd dumpstate (fd (use))) +(allow storagemanagerd dumpstate (unix_stream_socket (read write getattr))) +(allow storagemanagerd shell_data_file (file (write getattr))) +(allow storagemanagerd dumpstate (unix_dgram_socket (read write))) +(allow storagemanagerd devpts (chr_file (ioctl read write getattr lock append map open))) +(allow system_app vfat (dir (create))) +(allow system_app media_rw_data_file (dir (ioctl read write getattr lock add_name remove_name search open))) +(allow system_app media_rw_data_file (file (ioctl read write getattr lock append map open))) +(allow system_app system_data_file (dir (read open))) +(allow system_app ctl_default_prop (property_service (set))) +(dontaudit system_server appdomain (file (write lock append map open))) +(allow init thermalindicator_exec (file (read getattr map execute open))) +(allow init thermalindicator (process (transition))) +(allow thermalindicator thermalindicator_exec (file (read getattr map execute entrypoint open))) +(dontaudit init thermalindicator (process (noatsecure))) +(allow init thermalindicator (process (siginh rlimitinh))) +(typetransition init thermalindicator_exec process thermalindicator) +(typetransition thermalindicator tmpfs file thermalindicator_tmpfs) +(allow thermalindicator thermalindicator_tmpfs (file (read write getattr))) +(allow thermalindicator tmpfs (dir (getattr search))) +(allow thermalindicator gpu_device (chr_file (ioctl read write getattr open))) +(allow thermalindicator surfaceflinger (fd (use))) +(allow thermalindicator surfaceflinger (binder (call))) +(allow thermalindicator surfaceflinger (binder (transfer))) +(allow thermalindicator surfaceflinger_service (service_manager (find))) +(allow thermalindicator servicemanager (binder (call))) +(allow thermalindicator property_socket (sock_file (write))) +(allow thermalindicator init (unix_stream_socket (connectto))) +(allow surfaceflinger thermalindicator (fd (use))) +(allow surfaceflinger thermalindicator (binder (call))) +(allow surfaceflinger thermalindicator (binder (transfer))) +(allow surfaceflinger thermalindicator (file (read getattr open))) +(allow surfaceflinger thermalindicator (dir (search))) +(allow servicemanager thermalindicator (dir (search))) +(allow servicemanager thermalindicator (file (read open))) +(allow servicemanager thermalindicator (process (getattr))) +(allow thermalindicator proc (dir (getattr search))) +(allow thermalindicator proc (file (read))) +(allow thermalindicator shell (dir (search))) +(allow thermalindicator platform_app (dir (search))) +(allow thermalindicator platform_app (file (read getattr open))) +(allow thermalindicator untrusted_app (dir (search))) +(allow thermalindicator untrusted_app (file (read getattr open))) +(allow thermalindicator mediaserver (dir (search))) +(allow thermalindicator mediaserver (file (read getattr open))) +(allow vold debugfs_tracing (file (write))) +(allow init GoogleOtaBinder_exec (file (read getattr map execute open))) +(allow init GoogleOtaBinder (process (transition))) +(allow GoogleOtaBinder GoogleOtaBinder_exec (file (read getattr map execute entrypoint open))) +(dontaudit init GoogleOtaBinder (process (noatsecure))) +(allow init GoogleOtaBinder (process (siginh rlimitinh))) +(typetransition init GoogleOtaBinder_exec process GoogleOtaBinder) +(typetransition GoogleOtaBinder tmpfs file GoogleOtaBinder_tmpfs) +(allow GoogleOtaBinder GoogleOtaBinder_tmpfs (file (read write getattr))) +(allow GoogleOtaBinder tmpfs (dir (getattr search))) +(allow GoogleOtaBinder servicemanager (binder (call transfer))) +(allow servicemanager GoogleOtaBinder (dir (search))) +(allow servicemanager GoogleOtaBinder (file (read open))) +(allow servicemanager GoogleOtaBinder (process (getattr))) +(allow GoogleOtaBinder block_device (dir (search))) +(allow GoogleOtaBinder kmsg_device (chr_file (ioctl read write open))) +(allow GoogleOtaBinder mtd_device (dir (search))) +(allow GoogleOtaBinder mtd_device (chr_file (ioctl read write getattr lock append map open))) +(allow GoogleOtaBinder ota_package_file (dir (search))) +(allow GoogleOtaBinder ota_package_file (file (read write getattr open))) +(allow GoogleOtaBinder self (capability (dac_override dac_read_search))) +(allow GoogleOtaBinder proc (file (read))) +(allow GoogleOtaBinder sysfs (file (read))) +(allow init aal_exec (file (read getattr map execute open))) +(allow init aal (process (transition))) +(allow aal aal_exec (file (read getattr map execute entrypoint open))) +(dontaudit init aal (process (noatsecure))) +(allow init aal (process (siginh rlimitinh))) +(typetransition init aal_exec process aal) +(typetransition aal tmpfs file aal_tmpfs) +(allow aal aal_tmpfs (file (read write getattr))) +(allow aal tmpfs (dir (getattr search))) +(allow aal servicemanager (binder (call transfer))) +(allow servicemanager aal (dir (search))) +(allow servicemanager aal (file (read open))) +(allow servicemanager aal (process (getattr))) +(allow aal binderservicedomain (binder (call transfer))) +(allow binderservicedomain aal (binder (transfer))) +(allow aal binderservicedomain (fd (use))) +(allow aal graphics_device (chr_file (ioctl read open))) +(allow aal graphics_device (dir (search))) +(allow aal aal_service (service_manager (add))) +(allow aal permission_service (service_manager (find))) +(allow aal sensorservice_service (service_manager (find))) +(allow aal system_server (unix_stream_socket (read write))) +(allow init atci_service_exec (file (read getattr map execute open))) +(allow init atci_service (process (transition))) +(allow atci_service atci_service_exec (file (read getattr map execute entrypoint open))) +(dontaudit init atci_service (process (noatsecure))) +(allow init atci_service (process (siginh rlimitinh))) +(typetransition init atci_service_exec process atci_service) +(typetransition atci_service tmpfs file atci_service_tmpfs) +(allow atci_service atci_service_tmpfs (file (read write getattr))) +(allow atci_service tmpfs (dir (getattr search))) +(allow atci_service servicemanager (binder (call transfer))) +(allow servicemanager atci_service (dir (search))) +(allow servicemanager atci_service (file (read open))) +(allow servicemanager atci_service (process (getattr))) +(allow atci_service aal (binder (call transfer))) +(allow aal atci_service (binder (transfer))) +(allow atci_service aal (fd (use))) +(allow atci_service aal_service (service_manager (find))) +(allow atci_service block_device (dir (search))) +(allow atci_service system_data_file (dir (ioctl read write getattr lock add_name search open))) +(allow atci_service atci_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow atci_service atci_data_file (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow atci_service atci_data_file (sock_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow atci_service atci_data_file (fifo_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow atci_service atci_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(typetransition atci_service system_data_file dir atci_data_file) +(typetransition atci_service system_data_file fifo_file atci_data_file) +(typetransition atci_service system_data_file sock_file atci_data_file) +(typetransition atci_service system_data_file lnk_file atci_data_file) +(typetransition atci_service system_data_file file atci_data_file) +(allow atci_service atci_data_file (dir (write))) +(allow atci_service atci_data_file (dir (add_name))) +(allow atci_service atci_data_file (sock_file (create))) +(allow atci_service atci_data_file (sock_file (setattr))) +(allow atci_service self (capability (chown))) +(allow atci_service atci_data_file (dir (remove_name))) +(allow atci_service atci_data_file (sock_file (unlink))) +(allow atci_service system_server (unix_dgram_socket (sendto))) +(allow atci_service atci_data_file (sock_file (write))) +(allow atci_service power_service (service_manager (find))) +(allow atci_service shell_exec (file (getattr))) +(allow atci_service zygote_exec (file (read getattr execute execute_no_trans open))) +(allow atci_service self (process (execmem))) +(allow atci_service gpu_device (dir (search))) +(allow atci_service hal_allocator_default (binder (call))) +(allow atci_service hal_allocator_default (fd (use))) +(allow init atcid_exec (file (read getattr map execute open))) +(allow init atcid (process (transition))) +(allow atcid atcid_exec (file (read getattr map execute entrypoint open))) +(dontaudit init atcid (process (noatsecure))) +(allow init atcid (process (siginh rlimitinh))) +(typetransition init atcid_exec process atcid) +(typetransition atcid tmpfs file atcid_tmpfs) +(allow atcid atcid_tmpfs (file (read write getattr))) +(allow atcid tmpfs (dir (getattr search))) +(allow atcid sysfs (file (read open))) +(allow atcid self (capability (dac_override))) +(allow atcid init (unix_stream_socket (connectto))) +(allow atcid property_socket (sock_file (write))) +(allow atcid atci_service (unix_stream_socket (connectto))) +(allow atcid atci_service_socket (sock_file (write))) +(allow atcid atci_audio_socket (sock_file (write))) +(allow atcid system_prop (property_service (set))) +(allow atcid block_device (dir (search))) +(allow atcid self (capability (net_admin net_raw))) +(allow atcid self (udp_socket (ioctl create))) +(allow atcid shell_exec (file (execute))) +(allow atcid socket_device (sock_file (write))) +(allow atcid shell_exec (file (read open))) +(allow atcid shell_exec (file (execute_no_trans))) +(allow atcid system_file (file (execute_no_trans))) +(allow atcid self (rawip_socket (create))) +(allow atcid self (rawip_socket (getopt))) +(allow atcid self (rawip_socket (setopt))) +(allow atcid hwservicemanager (binder (call transfer))) +(allow hwservicemanager atcid (binder (call transfer))) +(allow hwservicemanager atcid (dir (search))) +(allow hwservicemanager atcid (file (read open))) +(allow hwservicemanager atcid (process (getattr))) +(allow init batterywarning_exec (file (read getattr map execute open))) +(allow init batterywarning (process (transition))) +(allow batterywarning batterywarning_exec (file (read getattr map execute entrypoint open))) +(dontaudit init batterywarning (process (noatsecure))) +(allow init batterywarning (process (siginh rlimitinh))) +(typetransition init batterywarning_exec process batterywarning) +(typetransition batterywarning tmpfs file batterywarning_tmpfs) +(allow batterywarning batterywarning_tmpfs (file (read write getattr))) +(allow batterywarning tmpfs (dir (getattr search))) +(allow batterywarning servicemanager (binder (call transfer))) +(allow servicemanager batterywarning (dir (search))) +(allow servicemanager batterywarning (file (read open))) +(allow servicemanager batterywarning (process (getattr))) +(allow batterywarning system_server (binder (call))) +(allow batterywarning activity_service (service_manager (find))) +(allow batterywarning sysfs (file (read getattr open))) +(allow init dm_agent_binder_exec (file (read getattr map execute open))) +(allow init dm_agent_binder (process (transition))) +(allow dm_agent_binder dm_agent_binder_exec (file (read getattr map execute entrypoint open))) +(dontaudit init dm_agent_binder (process (noatsecure))) +(allow init dm_agent_binder (process (siginh rlimitinh))) +(typetransition init dm_agent_binder_exec process dm_agent_binder) +(typetransition dm_agent_binder tmpfs file dm_agent_binder_tmpfs) +(allow dm_agent_binder dm_agent_binder_tmpfs (file (read write getattr))) +(allow dm_agent_binder tmpfs (dir (getattr search))) +(allow dm_agent_binder dm_agent_binder_service (service_manager (add))) +(allow dm_agent_binder servicemanager (binder (call transfer))) +(allow servicemanager dm_agent_binder (dir (search))) +(allow servicemanager dm_agent_binder (file (read open))) +(allow servicemanager dm_agent_binder (process (getattr))) +(allow dm_agent_binder block_device (dir (search))) +(allow dm_agent_binder property_socket (sock_file (write))) +(allow dm_agent_binder init (unix_stream_socket (connectto))) +(allow dm_agent_binder cache_file (dir (write create lock add_name remove_name search open))) +(allow dm_agent_binder cache_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow dm_agent_binder kmsg_device (chr_file (ioctl read write open))) +(allow dm_agent_binder dm_agent_binder (capability (dac_override))) +(allow dm_agent_binder system_data_file (lnk_file (read))) +(allow dnsmasq netd (file (read))) +(allow domain aee_aed (process (sigchld))) +(allow dumpstate md_monitor_exec (file (read))) +(allow init guiext-server_exec (file (read getattr map execute open))) +(allow init guiext-server (process (transition))) +(allow guiext-server guiext-server_exec (file (read getattr map execute entrypoint open))) +(dontaudit init guiext-server (process (noatsecure))) +(allow init guiext-server (process (siginh rlimitinh))) +(typetransition init guiext-server_exec process guiext-server) +(typetransition guiext-server tmpfs file guiext-server_tmpfs) +(allow guiext-server guiext-server_tmpfs (file (read write getattr))) +(allow guiext-server tmpfs (dir (getattr search))) +(allow guiext-server servicemanager (binder (call transfer))) +(allow servicemanager guiext-server (dir (search))) +(allow servicemanager guiext-server (file (read open))) +(allow servicemanager guiext-server (process (getattr))) +(allow guiext-server binderservicedomain (binder (call transfer))) +(allow binderservicedomain guiext-server (binder (transfer))) +(allow guiext-server binderservicedomain (fd (use))) +(allow guiext-server appdomain (binder (call transfer))) +(allow appdomain guiext-server (binder (transfer))) +(allow guiext-server appdomain (fd (use))) +(allow init hdmi_exec (file (read getattr map execute open))) +(allow init hdmi (process (transition))) +(allow hdmi hdmi_exec (file (read getattr map execute entrypoint open))) +(dontaudit init hdmi (process (noatsecure))) +(allow init hdmi (process (siginh rlimitinh))) +(typetransition init hdmi_exec process hdmi) +(typetransition hdmi tmpfs file hdmi_tmpfs) +(allow hdmi hdmi_tmpfs (file (read write getattr))) +(allow hdmi tmpfs (dir (getattr search))) +(allow hdmi mtk_hdmi_service (service_manager (add))) +(allow hdmi block_device (dir (search))) +(allow hdmi kisd (unix_stream_socket (connectto))) +(allow hdmi servicemanager (binder (call))) +(allow hdmi servicemanager (binder (call transfer))) +(allow servicemanager hdmi (dir (search))) +(allow servicemanager hdmi (file (read open))) +(allow servicemanager hdmi (process (getattr))) +(allow hdmi graphics_device (chr_file (ioctl read write open))) +(allow hdmi self (netlink_kobject_uevent_socket (read create bind setopt))) +(allow system_app hdmi (binder (call))) +(allow hdmi self (capability (net_admin))) +(allow hdmi property_socket (sock_file (write))) +(allow hdmi init (unix_stream_socket (connectto))) +(allow hdmi system_prop (property_service (set))) +(allow system_app self (netlink_kobject_uevent_socket (read create bind setopt))) +(allow hdmi system_app (binder (call))) +(allow system_app hdmi (binder (transfer))) +(allow init kpoc_charger_exec (file (read getattr map execute open))) +(allow init kpoc_charger (process (transition))) +(allow kpoc_charger kpoc_charger_exec (file (read getattr map execute entrypoint open))) +(dontaudit init kpoc_charger (process (noatsecure))) +(allow init kpoc_charger (process (siginh rlimitinh))) +(typetransition init kpoc_charger_exec process kpoc_charger) +(typetransition kpoc_charger tmpfs file kpoc_charger_tmpfs) +(allow kpoc_charger kpoc_charger_tmpfs (file (read write getattr))) +(allow kpoc_charger tmpfs (dir (getattr search))) +(allow kpoc_charger block_device (dir (search))) +(allow kpoc_charger graphics_device (dir (search))) +(allow kpoc_charger input_device (dir (read search open))) +(allow kpoc_charger input_device (chr_file (ioctl read write open))) +(allow kpoc_charger property_socket (sock_file (write))) +(allow kpoc_charger self (capability (sys_nice))) +(allow kpoc_charger self (capability (net_admin))) +(allow kpoc_charger self (capability (dac_override))) +(allow kpoc_charger self (netlink_kobject_uevent_socket (read create bind setopt))) +(allow kpoc_charger sysfs (file (ioctl read write getattr lock append map open))) +(allow kpoc_charger sysfs (dir (ioctl read getattr lock search open))) +(allow kpoc_charger graphics_device (chr_file (ioctl read write open))) +(allow kpoc_charger kmsg_device (chr_file (write open))) +(allow kpoc_charger rtc_device (chr_file (read write open))) +(allow kpoc_charger init (unix_stream_socket (connectto))) +(allow healthd self (capability (dac_override))) +(allow healthd app_data_file (file (write))) +(allow healthd device (dir (read write open))) +(allow kpoc_charger self (capability (sys_boot))) +(allow kpoc_charger alarm_device (chr_file (write))) +(allow kpoc_charger mtd_device (dir (search))) +(allow kpoc_charger mtd_device (chr_file (read))) +(allow kpoc_charger mtd_device (chr_file (read open))) +(allow kpoc_charger rootfs (file (ioctl read getattr lock map open))) +(allow kpoc_charger sysfs_leds (lnk_file (read))) +(allow kpoc_charger sysfs_leds (file (ioctl read write getattr lock append map open))) +(allow kpoc_charger sysfs_leds (dir (ioctl read getattr lock search open))) +(allow init md_monitor_exec (file (read getattr map execute open))) +(allow init md_monitor (process (transition))) +(allow md_monitor md_monitor_exec (file (read getattr map execute entrypoint open))) +(dontaudit init md_monitor (process (noatsecure))) +(allow init md_monitor (process (siginh rlimitinh))) +(typetransition init md_monitor_exec process md_monitor) +(typetransition md_monitor tmpfs file md_monitor_tmpfs) +(allow md_monitor md_monitor_tmpfs (file (read write getattr))) +(allow md_monitor tmpfs (dir (getattr search))) +(allow md_monitor system_data_file (dir (write create add_name))) +(allow md_monitor property_socket (sock_file (write))) +(allow md_monitor init (unix_stream_socket (connectto))) +(allow md_monitor system_data_file (fifo_file (read write create setattr open))) +(allow md_monitor system_data_file (dir (relabelto))) +(allow md_monitor system_data_file (dir (ioctl read write getattr lock add_name search open))) +(allow md_monitor md_monitor_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow md_monitor md_monitor_data_file (lnk_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow md_monitor md_monitor_data_file (sock_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow md_monitor md_monitor_data_file (fifo_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow md_monitor md_monitor_data_file (dir (ioctl read write create getattr setattr lock rename add_name remove_name reparent search rmdir open))) +(typetransition md_monitor system_data_file dir md_monitor_data_file) +(typetransition md_monitor system_data_file fifo_file md_monitor_data_file) +(typetransition md_monitor system_data_file sock_file md_monitor_data_file) +(typetransition md_monitor system_data_file lnk_file md_monitor_data_file) +(typetransition md_monitor system_data_file file md_monitor_data_file) +(allow md_monitor platform_app (unix_stream_socket (connectto))) +(allow md_monitor untrusted_app (unix_stream_socket (connectto))) +(allow md_monitor radio (unix_stream_socket (connectto))) +(allow md_monitor md_monitor_data_file (dir (ioctl read write create getattr setattr lock relabelfrom relabelto rename add_name remove_name reparent search rmdir open))) +(allow md_monitor md_monitor_data_file (fifo_file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow md_monitor md_monitor_data_file (file (ioctl read write create getattr setattr lock append map unlink rename open))) +(allow md_monitor md_monitor_data_file (file (write create setattr open))) +(allow md_monitor system_data_file (dir (ioctl read write create getattr setattr lock relabelfrom rename add_name remove_name reparent search rmdir open))) +(allow md_monitor file_contexts_file (file (read getattr open))) +(allow md_monitor media_rw_data_file (dir (read write create add_name remove_name search open))) +(allow md_monitor media_rw_data_file (file (read write create getattr unlink open))) +(allow md_monitor mnt_user_file (dir (search))) +(allow md_monitor mnt_user_file (lnk_file (read))) +(allow md_monitor sdcardfs (dir (write create add_name remove_name search))) +(allow md_monitor sdcardfs (file (read write create getattr unlink open))) +(allow md_monitor storage_file (lnk_file (read))) +(allow init met_log_d_exec (file (read getattr map execute open))) +(allow init met_log_d (process (transition))) +(allow met_log_d met_log_d_exec (file (read getattr map execute entrypoint open))) +(dontaudit init met_log_d (process (noatsecure))) +(allow init met_log_d (process (siginh rlimitinh))) +(typetransition init met_log_d_exec process met_log_d) +(typetransition met_log_d tmpfs file met_log_d_tmpfs) +(allow met_log_d met_log_d_tmpfs (file (read write getattr))) +(allow met_log_d tmpfs (dir (getattr search))) +(allow met_log_d self (capability (chown dac_override fowner fsetid setgid setuid))) +(allow met_log_d proc_net (dir (ioctl read write getattr setattr lock add_name remove_name search open))) +(allow met_log_d tmpfs (dir (ioctl read write getattr setattr lock add_name remove_name search open))) +(allow met_log_d debugfs_tracing (dir (ioctl read write getattr setattr lock add_name remove_name search open))) +(allow met_log_d proc_net (file (ioctl read write getattr setattr lock append map open))) +(allow met_log_d tmpfs (file (ioctl read write getattr setattr lock append map open))) +(allow met_log_d debugfs_tracing (file (ioctl read write getattr setattr lock append map open))) +(allow met_log_d system_file (file (ioctl read getattr lock map execute execute_no_trans open))) +(allow met_log_d debug_prop (file (ioctl read getattr lock map open))) +(allow met_log_d property_socket (sock_file (write))) +(allow met_log_d init (unix_stream_socket (connectto))) +(allow met_log_d debug_prop (property_service (set))) +(allow met_log_d debug_prop (file (ioctl read getattr lock map open))) +(allow meta_tst adb_atci_socket (sock_file (write))) +(allow init mmp_exec (file (read getattr map execute open))) +(allow init mmp (process (transition))) +(allow mmp mmp_exec (file (read getattr map execute entrypoint open))) +(dontaudit init mmp (process (noatsecure))) +(allow init mmp (process (siginh rlimitinh))) +(typetransition init mmp_exec process mmp) +(typetransition mmp tmpfs file mmp_tmpfs) +(allow mmp mmp_tmpfs (file (read write getattr))) +(allow mmp tmpfs (dir (getattr search))) +(allow init mtk_advcamserver_exec (file (read getattr map execute open))) +(allow init mtk_advcamserver (process (transition))) +(allow mtk_advcamserver mtk_advcamserver_exec (file (read getattr map execute entrypoint open))) +(dontaudit init mtk_advcamserver (process (noatsecure))) +(allow init mtk_advcamserver (process (siginh rlimitinh))) +(typetransition init mtk_advcamserver_exec process mtk_advcamserver) +(typetransition mtk_advcamserver tmpfs file mtk_advcamserver_tmpfs) +(allow mtk_advcamserver mtk_advcamserver_tmpfs (file (read write getattr))) +(allow mtk_advcamserver tmpfs (dir (getattr search))) +(allow mtk_advcamserver servicemanager (binder (call transfer))) +(allow servicemanager mtk_advcamserver (dir (search))) +(allow servicemanager mtk_advcamserver (file (read open))) +(allow servicemanager mtk_advcamserver (process (getattr))) +(allow mtk_advcamserver hwservicemanager (binder (call transfer))) +(allow hwservicemanager mtk_advcamserver (binder (call transfer))) +(allow hwservicemanager mtk_advcamserver (dir (search))) +(allow hwservicemanager mtk_advcamserver (file (read open))) +(allow hwservicemanager mtk_advcamserver (process (getattr))) +(allow mtk_advcamserver mtk_advcamserver (binder (call transfer))) +(allow mtk_advcamserver mtk_advcamserver (binder (transfer))) +(allow mtk_advcamserver mtk_advcamserver (fd (use))) +(allow mtk_advcamserver binderservicedomain (binder (call transfer))) +(allow binderservicedomain mtk_advcamserver (binder (transfer))) +(allow mtk_advcamserver binderservicedomain (fd (use))) +(allow mtk_advcamserver appdomain (binder (call transfer))) +(allow appdomain mtk_advcamserver (binder (transfer))) +(allow mtk_advcamserver appdomain (fd (use))) +(allow mtk_advcamserver mtk_advcamserver_service (service_manager (add find))) +(allow mtk_advcamserver hal_camera_hwservice (hwservice_manager (find))) +(allow mtk_advcamserver hwservicemanager_prop (file (ioctl read getattr lock map open))) +(allow netdomain self (tcp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind name_connect))) +(allow netdomain self (udp_socket (ioctl read write create getattr setattr lock relabelfrom relabelto append map bind connect listen accept getopt setopt shutdown recvfrom sendto name_bind node_bind))) +(allow netdomain port_type (tcp_socket (name_connect))) +(allow netdomain node_type (tcp_socket (node_bind))) +(allow netdomain node_type (udp_socket (node_bind))) +(allow netdomain port_type (udp_socket (name_bind))) +(allow netdomain port_type (tcp_socket (name_bind))) +(allow netdomain self (netlink_route_socket (read create bind nlmsg_read))) +(allow netdomain dnsproxyd_socket (sock_file (write))) +(allow netdomain netd (unix_stream_socket (connectto))) +(allow netd dhcp_data_file (dir (read write add_name remove_name search))) +(allow netd dhcp_data_file (file (read write create getattr unlink open))) +(allow netd self (capability (setgid setuid net_bind_service))) +(allow netd servicemanager (binder (call))) +(allow netd system_server (binder (call))) +(allow netd servicemanager (binder (call transfer))) +(allow servicemanager netd (dir (search))) +(allow servicemanager netd (file (read open))) +(allow servicemanager netd (process (getattr))) +(allow netd system_prop (property_service (set))) +(allowx netd self (ioctl unix_stream_socket (0x8941 0x89a0 0x89a2 0x89f0))) +(allow platform_app system_app_data_file (file (read write))) +(allow platform_app md_monitor (unix_stream_socket (connectto))) +(allow platform_app ppl_agent_service (service_manager (find))) +(allow platform_app nfc_service (service_manager (find))) +(allow platform_app mtk_connmetrics_service (service_manager (find))) +(allow init ppl_agent_exec (file (read getattr map execute open))) +(allow init ppl_agent (process (transition))) +(allow ppl_agent ppl_agent_exec (file (read getattr map execute entrypoint open))) +(dontaudit init ppl_agent (process (noatsecure))) +(allow init ppl_agent (process (siginh rlimitinh))) +(typetransition init ppl_agent_exec process ppl_agent) +(typetransition ppl_agent tmpfs file ppl_agent_tmpfs) +(allow ppl_agent ppl_agent_tmpfs (file (read write getattr))) +(allow ppl_agent tmpfs (dir (getattr search))) +(allow ppl_agent servicemanager (binder (call transfer))) +(allow servicemanager ppl_agent (dir (search))) +(allow servicemanager ppl_agent (file (read open))) +(allow servicemanager ppl_agent (process (getattr))) +(allow ppl_agent block_device (dir (search))) +(allow ppl_agent ppl_agent_service (service_manager (add))) +(allow ppl_agent mtd_device (dir (search))) +(allow ppl_agent mtd_device (chr_file (read write open))) +(allow ppl_agent system_data_file (lnk_file (read))) +(allow ppl_agent rootfs (file (read getattr open))) +(allow ppl_agent sysfs (file (read getattr open))) +(allow ppl_agent sysfs (dir (read getattr open))) +(allow init program_binary_exec (file (read getattr map execute open))) +(allow init program_binary (process (transition))) +(allow program_binary program_binary_exec (file (read getattr map execute entrypoint open))) +(dontaudit init program_binary (process (noatsecure))) +(allow init program_binary (process (siginh rlimitinh))) +(typetransition init program_binary_exec process program_binary) +(typetransition program_binary tmpfs file program_binary_tmpfs) +(allow program_binary program_binary_tmpfs (file (read write getattr))) +(allow program_binary tmpfs (dir (getattr search))) +(allow program_binary servicemanager (binder (call transfer))) +(allow servicemanager program_binary (dir (search))) +(allow servicemanager program_binary (file (read open))) +(allow servicemanager program_binary (process (getattr))) +(allow base_typeattr_230 program_binary (binder (call transfer))) +(allow program_binary base_typeattr_230 (binder (transfer))) +(allow base_typeattr_230 program_binary (fd (use))) +(allow program_binary gpu_device (chr_file (ioctl read write open))) +(allow program_binary gpu_device (chr_file (getattr))) +(allow program_binary program_binary_service (service_manager (add))) +(allow program_binary system_server (binder (call))) +(allow program_binary property_socket (sock_file (write))) +(allow program_binary init (unix_stream_socket (connectto))) +(allow system_server program_binary_service (service_manager (find))) +(allow program_binary program_binary_service (service_manager (find))) +(allow program_binary system_file (file (execute_no_trans))) +(allow priv_app program_binary_service (service_manager (find))) +(allow system_app program_binary_service (service_manager (find))) +(allow untrusted_app_all program_binary_service (service_manager (find))) +(allow platform_app program_binary_service (service_manager (find))) +(allow program_binary gpu_device (dir (search))) +(allow program_binary ion_device (chr_file (read))) +(allow program_binary system_file (dir (read))) +(allow program_binary ion_device (chr_file (open))) +(allow program_binary system_file (dir (open))) +(allow program_binary hwservicemanager_prop (file (ioctl read getattr lock map open))) +(allow radio ctl_atcid-daemon-u_prop (property_service (set))) +(allow radio ctl_atci_service_prop (property_service (set))) +(allow radio atci_service_exec (file (getattr))) +(allow radio atcid_exec (file (getattr))) +(allow radio atcid (unix_stream_socket (connectto))) +(allow radio adb_atci_socket (sock_file (write))) +(allow radio md_monitor (unix_stream_socket (connectto))) +(allow radio property_socket (sock_file (write))) +(allow radio init (unix_stream_socket (connectto))) +(allow radio mdmmonitor_prop (property_service (set))) +(allow radio mdmmonitor_prop (file (ioctl read getattr lock map open))) +(allow radio ppl_agent_service (service_manager (find))) +(allow radio md_monitor_data_file (dir (read search open))) +(allow radio md_monitor_data_file (file (read getattr open))) +(allow sdcardd platform_app (fd (use))) +(allow sdcardd untrusted_app (fd (use))) +(allow sdcardd sdcardfs (dir (mounton))) +(allow init sn_exec (file (read getattr map execute open))) +(allow init sn (process (transition))) +(allow sn sn_exec (file (read getattr map execute entrypoint open))) +(dontaudit init sn (process (noatsecure))) +(allow init sn (process (siginh rlimitinh))) +(typetransition init sn_exec process sn) +(typetransition sn tmpfs file sn_tmpfs) +(allow sn sn_tmpfs (file (read write getattr))) +(allow sn tmpfs (dir (getattr search))) +(allow sn sdcard_type (dir (search))) +(allow sn sdcard_type (file (read getattr open))) +(allow sn sysfs (file (ioctl read write getattr lock append map open))) +(allow sn self (capability (dac_override dac_read_search))) +(allow sn mnt_user_file (dir (search))) +(allow sn mnt_user_file (lnk_file (read))) +(allow sn storage_file (lnk_file (read))) +(allow sn media_rw_data_file (dir (search))) +(allow sn media_rw_data_file (file (read open))) +(allow sn media_rw_data_file (dir (read open))) +(allow system_app atci_serv_fw_socket (sock_file (write))) +(allow system_app atci_service (unix_stream_socket (connectto))) +(allow system_app netd_socket (sock_file (write))) +(allow system_app property_socket (sock_file (write))) +(allow system_app init (unix_stream_socket (connectto))) +(allow system_app net_dns_prop (property_service (set))) +(allow system_app net_dns_prop (file (ioctl read getattr lock map open))) +(allow system_app property_socket (sock_file (write))) +(allow system_app init (unix_stream_socket (connectto))) +(allow system_app mdmmonitor_prop (property_service (set))) +(allow system_app mdmmonitor_prop (file (ioctl read getattr lock map open))) +(allow system_server aal_service (service_manager (find))) +(allow system_app netd_socket (sock_file (write))) +(allow system_server aee_aed (unix_stream_socket (connectto))) +(allow system_server mtk_connmetrics_service (service_manager (add))) +(allow system_server mtk_permrecords_service (service_manager (add))) +(allow init thermald_exec (file (read getattr map execute open))) +(allow init thermald (process (transition))) +(allow thermald thermald_exec (file (read getattr map execute entrypoint open))) +(dontaudit init thermald (process (noatsecure))) +(allow init thermald (process (siginh rlimitinh))) +(typetransition init thermald_exec process thermald) +(typetransition thermald tmpfs file thermald_tmpfs) +(allow thermald thermald_tmpfs (file (read write getattr))) +(allow thermald tmpfs (dir (getattr search))) +(allow thermald servicemanager (binder (call transfer))) +(allow servicemanager thermald (dir (search))) +(allow servicemanager thermald (file (read open))) +(allow servicemanager thermald (process (getattr))) +(allow thermald system_server (binder (call))) +(allow thermald activity_service (service_manager (find))) +(allow untrusted_app mtk_connmetrics_service (service_manager (find))) +(allow untrusted_app_25 mtk_connmetrics_service (service_manager (find))) +(allow init usp_service_exec (file (read getattr map execute open))) +(allow init usp_service (process (transition))) +(allow usp_service usp_service_exec (file (read getattr map execute entrypoint open))) +(dontaudit init usp_service (process (noatsecure))) +(allow init usp_service (process (siginh rlimitinh))) +(typetransition init usp_service_exec process usp_service) +(typetransition usp_service tmpfs file usp_service_tmpfs) +(allow usp_service usp_service_tmpfs (file (read write getattr))) +(allow usp_service tmpfs (dir (getattr search))) +(allow usp_service block_device (dir (search))) +(allow usp_service property_socket (sock_file (write))) +(allow usp_service init (unix_stream_socket (connectto))) +(allow usp_service radio_prop (property_service (set))) +(allow usp_service radio_prop (file (ioctl read getattr lock map open))) +(allow vold platform_app (fd (use))) +(allow vold block_device (file (create))) +(allow vold mtd_device (dir (search))) +(allow vold mtd_device (chr_file (read write open))) +(allow vold proc (file (write))) +(allow vold kernel (system (module_request))) +(typetransition system_server system_data_file sock_file "ndebugsocket" system_ndebug_socket) +(typeattribute base_typeattr_230) +(typeattributeset base_typeattr_230 (and (domain ) (not (init installd netd vndservicemanager )))) +(typeattribute base_typeattr_229) +(typeattributeset base_typeattr_229 (and (domain ) (not (init keystore logd )))) +(typeattribute base_typeattr_228) +(typeattributeset base_typeattr_228 (not (appdomain system_server ) )) +(typeattribute base_typeattr_227) +(typeattributeset base_typeattr_227 (and (zygote ) (not (zygote )))) +(typeattribute base_typeattr_226) +(typeattributeset base_typeattr_226 (and (service_manager_type ) (not (activity_service webviewupdate_service )))) +(typeattribute base_typeattr_225) +(typeattributeset base_typeattr_225 (and (domain ) (not (isolated_app )))) +(typeattribute base_typeattr_224) +(typeattributeset base_typeattr_224 (and (dev_type ) (not (frp_block_device )))) +(typeattribute base_typeattr_223) +(typeattributeset base_typeattr_223 (and (data_file_type ) (not (dalvikcache_data_file )))) +(typeattribute base_typeattr_222) +(typeattributeset base_typeattr_222 (and (domain ) (not (crash_dump init system_server )))) +(typeattribute base_typeattr_221) +(typeattributeset base_typeattr_221 (and (domain ) (not (crash_dump )))) +(typeattribute base_typeattr_220) +(typeattributeset base_typeattr_220 (and (file_type ) (not (logcat_exec toolbox_exec )))) +(typeattribute base_typeattr_219) +(typeattributeset base_typeattr_219 (and (service_manager_type ) (not (dumpstate_service installd_service netd_service virtual_touchpad_service vr_hwc_service )))) +(typeattribute base_typeattr_218) +(typeattributeset base_typeattr_218 (and (domain ) (not (surfaceflinger )))) +(typeattribute base_typeattr_217) +(typeattributeset base_typeattr_217 (and (domain ) (not (storaged )))) +(typeattribute base_typeattr_216) +(typeattributeset base_typeattr_216 (and (file_type ) (not (recovery_refresh_tmpfs )))) +(typeattribute base_typeattr_215) +(typeattributeset base_typeattr_215 (and (file_type ) (not (recovery_data_file recovery_persist_tmpfs )))) +(typeattribute base_typeattr_214) +(typeattributeset base_typeattr_214 (and (domain ) (not (nfc )))) +(typeattribute base_typeattr_213) +(typeattributeset base_typeattr_213 (and (domain ) (not (appdomain coredomain )))) +(typeattribute base_typeattr_212) +(typeattributeset base_typeattr_212 (and (netdomain ) (not (ephemeral_app )))) +(typeattribute base_typeattr_211) +(typeattributeset base_typeattr_211 (and (appdomain ) (not (bluetooth platform_app priv_app radio shell system_app )))) +(typeattribute base_typeattr_210) +(typeattributeset base_typeattr_210 (and (domain ) (not (appdomain bootstat dumpstate init logd servicemanager surfaceflinger system_server zygote )))) +(typeattribute base_typeattr_209) +(typeattributeset base_typeattr_209 (and (file_type ) (not (runtime_event_log_tags_file logd_tmpfs )))) +(typeattribute base_typeattr_208) +(typeattributeset base_typeattr_208 (and (service_manager_type ) (not (activity_service display_service webviewupdate_service )))) +(typeattribute base_typeattr_207) +(typeattributeset base_typeattr_207 (and (domain ) (not (incidentd init system_server vold )))) +(typeattribute base_typeattr_206) +(typeattributeset base_typeattr_206 (and (domain ) (not (incidentd init vold )))) +(typeattribute base_typeattr_205) +(typeattributeset base_typeattr_205 (and (domain ) (not (incident incidentd system_app system_server )))) +(typeattribute base_typeattr_204) +(typeattributeset base_typeattr_204 (and (domain ) (not (incidentd )))) +(typeattribute base_typeattr_203) +(typeattributeset base_typeattr_203 (and (domain ) (not (hwservicemanager )))) +(typeattribute base_typeattr_202) +(typeattributeset base_typeattr_202 (and (domain ) (not (priv_app )))) +(typeattribute base_typeattr_201) +(typeattributeset base_typeattr_201 (and (domain ) (not (dumpstate system_server vold storaged )))) +(typeattribute base_typeattr_200) +(typeattributeset base_typeattr_200 (and (fs_type file_type ) (not (shell_exec blkid_exec )))) +(typeattribute base_typeattr_199) +(typeattributeset base_typeattr_199 (and (domain ) (not (audioserver )))) +(typeattribute base_typeattr_198) +(typeattributeset base_typeattr_198 (and (halserverdomain ) (not (coredomain binder_in_vendor_violators untrusted_app_visible_halserver hal_configstore_server hal_cas_server hal_graphics_allocator_server hal_neuralnetworks_server )))) +(typeattribute base_typeattr_197) +(typeattributeset base_typeattr_197 (and (coredomain_hwservice ) (not (same_process_hwservice hidl_allocator_hwservice hidl_manager_hwservice hidl_memory_hwservice hidl_token_hwservice )))) +(typeattribute base_typeattr_196) +(typeattributeset base_typeattr_196 (and (hwservice_manager_type ) (not (same_process_hwservice coredomain_hwservice untrusted_app_visible_hwservice hal_configstore_ISurfaceFlingerConfigs hal_cas_hwservice hal_graphics_allocator_hwservice hal_neuralnetworks_hwservice hal_omx_hwservice )))) +(typeattribute base_typeattr_195) +(typeattributeset base_typeattr_195 (and (fs_type file_type ) (not (fuse sdcardfs vfat user_profile_data_file media_rw_data_file app_data_file )))) +(typeattribute base_typeattr_194) +(typeattributeset base_typeattr_194 (and (untrusted_app_all ephemeral_app isolated_app mediaprovider untrusted_app untrusted_app_25 untrusted_v2_app ) (not (mediaprovider )))) +(typeattribute base_typeattr_193) +(typeattributeset base_typeattr_193 (and (appdomain ) (not (bluetooth system_app )))) +(typeattribute base_typeattr_192) +(typeattributeset base_typeattr_192 (and (appdomain ) (not (bluetooth nfc )))) +(typeattribute base_typeattr_191) +(typeattributeset base_typeattr_191 (and (appdomain ) (not (untrusted_app_all platform_app priv_app )))) +(typeattribute base_typeattr_190) +(typeattributeset base_typeattr_190 (and (appdomain ) (not (platform_app )))) +(typeattribute base_typeattr_189) +(typeattributeset base_typeattr_189 (and (domain ) (not (appdomain crash_dump )))) +(typeattribute base_typeattr_188) +(typeattributeset base_typeattr_188 (and (appdomain ) (not (radio )))) +(typeattribute base_typeattr_187) +(typeattributeset base_typeattr_187 (and (appdomain ) (not (nfc )))) +(typeattribute base_typeattr_186) +(typeattributeset base_typeattr_186 (and (appdomain ) (not (bluetooth )))) +(typeattribute base_typeattr_185) +(typeattributeset base_typeattr_185 (and (appdomain untrusted_v2_app ) (not (ephemeral_app )))) +(typeattribute base_typeattr_184) +(typeattributeset base_typeattr_184 (and (appdomain ) (not (ephemeral_app isolated_app )))) +(typeattribute base_typeattr_183) +(typeattributeset base_typeattr_183 (and (appdomain ) (not (ephemeral_app )))) +(typeattribute base_typeattr_182) +(typeattributeset base_typeattr_182 (and (appdomain ) (not (ephemeral_app untrusted_v2_app )))) +(typeattribute base_typeattr_181) +(typeattributeset base_typeattr_181 (and (domain ) (not (crash_dump shell )))) +(typeattribute base_typeattr_180) +(typeattributeset base_typeattr_180 (and (domain ) (not (wificond )))) +(typeattribute base_typeattr_179) +(typeattributeset base_typeattr_179 (and (domain ) (not (vr_hwc )))) +(typeattribute base_typeattr_178) +(typeattributeset base_typeattr_178 (and (domain ) (not (init kernel vold )))) +(typeattribute base_typeattr_177) +(typeattributeset base_typeattr_177 (and (domain ) (not (kernel vold )))) +(typeattribute base_typeattr_176) +(typeattributeset base_typeattr_176 (and (domain ) (not (virtual_touchpad )))) +(typeattribute base_typeattr_175) +(typeattributeset base_typeattr_175 (and (coredomain ) (not (init modprobe )))) +(typeattribute base_typeattr_174) +(typeattributeset base_typeattr_174 (and (domain ) (not (update_engine )))) +(typeattribute base_typeattr_173) +(typeattributeset base_typeattr_173 (and (vendor_file_type ) (not (vendor_app_file vendor_overlay_file )))) +(typeattribute base_typeattr_172) +(typeattributeset base_typeattr_172 (and (domain ) (not (init system_server tzdatacheck )))) +(typeattribute base_typeattr_171) +(typeattributeset base_typeattr_171 (and (fs_type file_type ) (not (toolbox_exec )))) +(typeattribute base_typeattr_170) +(typeattributeset base_typeattr_170 (and (domain ) (not (thermalserviced )))) +(typeattribute base_typeattr_169) +(typeattributeset base_typeattr_169 (and (service_manager_type ) (not (gatekeeper_service incident_service installd_service netd_service virtual_touchpad_service vr_hwc_service )))) +(typeattribute base_typeattr_168) +(typeattributeset base_typeattr_168 (and (fs_type file_type ) (not (sgdisk_exec )))) +(typeattribute base_typeattr_167) +(typeattributeset base_typeattr_167 (and (domain ) (not (hwservicemanager init vndservicemanager )))) +(typeattribute base_typeattr_166) +(typeattributeset base_typeattr_166 (and (appdomain ) (not (system_app )))) +(typeattribute base_typeattr_165) +(typeattributeset base_typeattr_165 (and (data_file_type ) (not (cache_file cache_recovery_file )))) +(typeattribute base_typeattr_164) +(typeattributeset base_typeattr_164 (and (domain ) (not (radio )))) +(typeattribute base_typeattr_163) +(typeattributeset base_typeattr_163 (and (core_property_type ) (not (audio_prop config_prop cppreopt_prop dalvik_prop debuggerd_prop debug_prop default_prop dhcp_prop dumpstate_prop ffs_prop fingerprint_prop logd_prop net_radio_prop nfc_prop pan_result_prop persist_debug_prop powerctl_prop radio_prop restorecon_prop shell_prop system_prop system_radio_prop vold_prop )))) +(typeattribute base_typeattr_162) +(typeattributeset base_typeattr_162 (and (domain ) (not (performanced )))) +(typeattribute base_typeattr_161) +(typeattributeset base_typeattr_161 (and (domain ) (not (init netd )))) +(typeattribute base_typeattr_160) +(typeattributeset base_typeattr_160 (and (domain ) (not (dumpstate netd system_server )))) +(typeattribute base_typeattr_159) +(typeattributeset base_typeattr_159 (and (domain ) (not (netd )))) +(typeattribute base_typeattr_158) +(typeattributeset base_typeattr_158 (and (domain ) (not (mediaserver )))) +(typeattribute base_typeattr_157) +(typeattributeset base_typeattr_157 (and (domain ) (not (mediametrics )))) +(typeattribute base_typeattr_156) +(typeattributeset base_typeattr_156 (and (domain ) (not (mediaextractor )))) +(typeattribute base_typeattr_155) +(typeattributeset base_typeattr_155 (and (domain ) (not (mediadrmserver )))) +(typeattribute base_typeattr_154) +(typeattributeset base_typeattr_154 (and (domain ) (not (mediacodec )))) +(typeattribute base_typeattr_153) +(typeattributeset base_typeattr_153 (and (domain ) (not (init logd )))) +(typeattribute base_typeattr_152) +(typeattributeset base_typeattr_152 (and (domain ) (not (init keystore )))) +(typeattribute base_typeattr_151) +(typeattributeset base_typeattr_151 (and (domain ) (not (keystore )))) +(typeattribute base_typeattr_150) +(typeattributeset base_typeattr_150 (and (domain ) (not (servicemanager system_server )))) +(typeattribute base_typeattr_149) +(typeattributeset base_typeattr_149 (and (domain ) (not (dumpstate installd system_server )))) +(typeattribute base_typeattr_148) +(typeattributeset base_typeattr_148 (and (domain ) (not (installd )))) +(typeattribute base_typeattr_147) +(typeattributeset base_typeattr_147 (and (domain ) (not (inputflinger )))) +(typeattribute base_typeattr_146) +(typeattributeset base_typeattr_146 (and (fs_type file_type ) (not (init_exec )))) +(typeattribute base_typeattr_145) +(typeattributeset base_typeattr_145 (and (dev_type ) (not (kmem_device port_device )))) +(typeattribute base_typeattr_144) +(typeattributeset base_typeattr_144 (and (dev_type ) (not (device alarm_device ashmem_device binder_device hwbinder_device dm_device keychord_device console_device hw_random_device kmem_device port_device ptmx_device kmsg_device null_device random_device owntty_device zero_device devpts )))) +(typeattribute base_typeattr_143) +(typeattributeset base_typeattr_143 (and (dev_type ) (not (device vndbinder_device kmem_device port_device )))) +(typeattribute base_typeattr_142) +(typeattributeset base_typeattr_142 (and (fs_type ) (not (contextmount_type sdcard_type rootfs )))) +(typeattribute base_typeattr_141) +(typeattributeset base_typeattr_141 (and (file_type ) (not (exec_type vendor_file_type system_file )))) +(typeattribute base_typeattr_140) +(typeattributeset base_typeattr_140 (and (file_type ) (not (exec_type vendor_file_type system_file runtime_event_log_tags_file shell_data_file keystore_data_file vold_data_file app_data_file system_app_data_file misc_logd_file )))) +(typeattribute base_typeattr_139) +(typeattributeset base_typeattr_139 (and (file_type ) (not (exec_type vendor_file_type system_file shell_data_file keystore_data_file vold_data_file app_data_file system_app_data_file misc_logd_file )))) +(typeattribute base_typeattr_138) +(typeattributeset base_typeattr_138 (and (file_type ) (not (exec_type vendor_file_type system_file app_data_file system_app_data_file misc_logd_file )))) +(typeattribute base_typeattr_137) +(typeattributeset base_typeattr_137 (and (domain ) (not (healthd )))) +(typeattribute base_typeattr_136) +(typeattributeset base_typeattr_136 (and (domain ) (not (hal_wifi_supplicant_server )))) +(typeattribute base_typeattr_135) +(typeattributeset base_typeattr_135 (and (domain ) (not (hal_wifi_offload_server )))) +(typeattribute base_typeattr_134) +(typeattributeset base_typeattr_134 (and (domain ) (not (hal_wifi_server )))) +(typeattribute base_typeattr_133) +(typeattributeset base_typeattr_133 (and (domain ) (not (hal_weaver_server )))) +(typeattribute base_typeattr_132) +(typeattributeset base_typeattr_132 (and (domain ) (not (hal_vr_server )))) +(typeattribute base_typeattr_131) +(typeattributeset base_typeattr_131 (and (domain ) (not (hal_vibrator_server )))) +(typeattribute base_typeattr_130) +(typeattributeset base_typeattr_130 (and (domain ) (not (hal_usb_server )))) +(typeattribute base_typeattr_129) +(typeattributeset base_typeattr_129 (and (domain ) (not (hal_tv_input_server )))) +(typeattribute base_typeattr_128) +(typeattributeset base_typeattr_128 (and (domain ) (not (hal_tv_cec_server )))) +(typeattribute base_typeattr_127) +(typeattributeset base_typeattr_127 (and (domain ) (not (hal_thermal_server )))) +(typeattribute base_typeattr_126) +(typeattributeset base_typeattr_126 (and (domain ) (not (hal_telephony_server )))) +(typeattribute base_typeattr_125) +(typeattributeset base_typeattr_125 (and (domain ) (not (hal_sensors_server )))) +(typeattribute base_typeattr_124) +(typeattributeset base_typeattr_124 (and (domain ) (not (hal_power_server )))) +(typeattribute base_typeattr_123) +(typeattributeset base_typeattr_123 (and (domain ) (not (hal_oemlock_server )))) +(typeattribute base_typeattr_122) +(typeattributeset base_typeattr_122 (and (domain ) (not (hal_nfc_server )))) +(typeattribute base_typeattr_121) +(typeattributeset base_typeattr_121 (and (halserverdomain ) (not (hal_dumpstate_server rild )))) +(typeattribute base_typeattr_120) +(typeattributeset base_typeattr_120 (and (halserverdomain ) (not (hal_tetheroffload_server hal_wifi_server hal_wifi_supplicant_server rild )))) +(typeattribute base_typeattr_119) +(typeattributeset base_typeattr_119 (and (halserverdomain ) (not (hal_bluetooth_server hal_wifi_server hal_wifi_supplicant_server rild )))) +(typeattribute base_typeattr_118) +(typeattributeset base_typeattr_118 (and (domain ) (not (hal_neuralnetworks_server )))) +(typeattribute base_typeattr_117) +(typeattributeset base_typeattr_117 (and (domain ) (not (hal_memtrack_server )))) +(typeattribute base_typeattr_116) +(typeattributeset base_typeattr_116 (and (domain ) (not (hal_light_server )))) +(typeattribute base_typeattr_115) +(typeattributeset base_typeattr_115 (and (domain ) (not (hal_keymaster_server )))) +(typeattribute base_typeattr_114) +(typeattributeset base_typeattr_114 (and (domain ) (not (hal_ir_server )))) +(typeattribute base_typeattr_113) +(typeattributeset base_typeattr_113 (and (domain ) (not (hal_health_server )))) +(typeattribute base_typeattr_112) +(typeattributeset base_typeattr_112 (and (domain ) (not (hal_graphics_composer_server )))) +(typeattribute base_typeattr_111) +(typeattributeset base_typeattr_111 (and (domain ) (not (hal_graphics_allocator_server )))) +(typeattribute base_typeattr_110) +(typeattributeset base_typeattr_110 (and (domain ) (not (hal_gnss_server )))) +(typeattribute base_typeattr_109) +(typeattributeset base_typeattr_109 (and (domain ) (not (hal_gatekeeper_server )))) +(typeattribute base_typeattr_108) +(typeattributeset base_typeattr_108 (and (domain ) (not (hal_fingerprint_server )))) +(typeattribute base_typeattr_107) +(typeattributeset base_typeattr_107 (and (domain ) (not (hal_dumpstate_server )))) +(typeattribute base_typeattr_106) +(typeattributeset base_typeattr_106 (and (domain ) (not (hal_drm_server )))) +(typeattribute base_typeattr_105) +(typeattributeset base_typeattr_105 (and (domain ) (not (hal_contexthub_server )))) +(typeattribute base_typeattr_104) +(typeattributeset base_typeattr_104 (and (data_file_type ) (not (anr_data_file tombstone_data_file zoneinfo_data_file )))) +(typeattribute base_typeattr_103) +(typeattributeset base_typeattr_103 (and (domain ) (not (hal_configstore_server logd tombstoned )))) +(typeattribute base_typeattr_102) +(typeattributeset base_typeattr_102 (and (domain ) (not (hal_configstore_server )))) +(typeattribute base_typeattr_101) +(typeattributeset base_typeattr_101 (and (domain ) (not (hal_cas_server )))) +(typeattribute base_typeattr_100) +(typeattributeset base_typeattr_100 (and (halserverdomain ) (not (hal_camera_server )))) +(typeattribute base_typeattr_99) +(typeattributeset base_typeattr_99 (and (appdomain ) (not (isolated_app )))) +(typeattribute base_typeattr_98) +(typeattributeset base_typeattr_98 (and (domain ) (not (hal_camera_server )))) +(typeattribute base_typeattr_97) +(typeattributeset base_typeattr_97 (and (domain ) (not (hal_broadcastradio_server )))) +(typeattribute base_typeattr_96) +(typeattributeset base_typeattr_96 (and (domain ) (not (hal_bootctl_server )))) +(typeattribute base_typeattr_95) +(typeattributeset base_typeattr_95 (and (domain ) (not (hal_bluetooth_server )))) +(typeattribute base_typeattr_94) +(typeattributeset base_typeattr_94 (and (halserverdomain ) (not (hal_audio_server )))) +(typeattribute base_typeattr_93) +(typeattributeset base_typeattr_93 (and (domain ) (not (hal_audio_server )))) +(typeattribute base_typeattr_92) +(typeattributeset base_typeattr_92 (and (domain ) (not (hal_allocator_server )))) +(typeattribute base_typeattr_91) +(typeattributeset base_typeattr_91 (and (domain ) (not (gatekeeperd )))) +(typeattribute base_typeattr_90) +(typeattributeset base_typeattr_90 (and (domain ) (not (vold )))) +(typeattribute base_typeattr_89) +(typeattributeset base_typeattr_89 (and (fs_type file_type ) (not (fsck_exec )))) +(typeattribute base_typeattr_88) +(typeattributeset base_typeattr_88 (and (domain ) (not (init vold )))) +(typeattribute base_typeattr_87) +(typeattributeset base_typeattr_87 (and (domain ) (not (fingerprintd )))) +(typeattribute base_typeattr_86) +(typeattributeset base_typeattr_86 (and (domain ) (not (dumpstate shell system_server )))) +(typeattribute base_typeattr_85) +(typeattributeset base_typeattr_85 (and (domain ) (not (dumpstate )))) +(typeattribute base_typeattr_84) +(typeattributeset base_typeattr_84 (and (service_manager_type ) (not (dumpstate_service gatekeeper_service incident_service virtual_touchpad_service vr_hwc_service )))) +(typeattribute base_typeattr_83) +(typeattributeset base_typeattr_83 (and (domain ) (not (drmserver )))) +(typeattribute base_typeattr_82) +(typeattributeset base_typeattr_82 (not (coredomain ) )) +(typeattribute base_typeattr_81) +(typeattributeset base_typeattr_81 (not (rootfs system_file vendor_file ) )) +(typeattribute base_typeattr_80) +(typeattributeset base_typeattr_80 (and (domain ) (not (installd profman )))) +(typeattribute base_typeattr_79) +(typeattributeset base_typeattr_79 (and (domain ) (not (dumpstate init system_server )))) +(typeattribute base_typeattr_78) +(typeattributeset base_typeattr_78 (not (hwservicemanager ) )) +(typeattribute base_typeattr_77) +(typeattributeset base_typeattr_77 (not (servicemanager vndservicemanager ) )) +(typeattribute base_typeattr_76) +(typeattributeset base_typeattr_76 (and (domain ) (not (appdomain adbd dumpstate installd )))) +(typeattribute base_typeattr_75) +(typeattributeset base_typeattr_75 (and (domain ) (not (appdomain adbd dumpstate init installd system_server )))) +(typeattribute base_typeattr_74) +(typeattributeset base_typeattr_74 (and (domain ) (not (adbd dumpstate init installd shell vold )))) +(typeattribute base_typeattr_73) +(typeattributeset base_typeattr_73 (and (domain ) (not (installd shell )))) +(typeattribute base_typeattr_72) +(typeattributeset base_typeattr_72 (and (domain ) (not (appdomain installd uncrypt )))) +(typeattribute base_typeattr_71) +(typeattributeset base_typeattr_71 (and (appdomain ) (not (shell )))) +(typeattribute base_typeattr_70) +(typeattributeset base_typeattr_70 (and (domain ) (not (runas webview_zygote zygote )))) +(typeattribute base_typeattr_69) +(typeattributeset base_typeattr_69 (and (domain ) (not (adbd init runas zygote )))) +(typeattribute base_typeattr_68) +(typeattributeset base_typeattr_68 (and (domain ) (not (appdomain installd )))) +(typeattribute base_typeattr_67) +(typeattributeset base_typeattr_67 (and (domain ) (not (appdomain installd system_server )))) +(typeattribute base_typeattr_66) +(typeattributeset base_typeattr_66 (and (domain ) (not (init installd system_app system_server )))) +(typeattribute base_typeattr_65) +(typeattributeset base_typeattr_65 (not (domain ) )) +(typeattribute base_typeattr_64) +(typeattributeset base_typeattr_64 (and (domain ) (not (untrusted_app_all )))) +(typeattribute base_typeattr_63) +(typeattributeset base_typeattr_63 (and (file_type ) (not (apk_data_file app_data_file asec_public_file )))) +(typeattribute base_typeattr_62) +(typeattributeset base_typeattr_62 (and (domain ) (not (dumpstate system_server )))) +(typeattribute base_typeattr_61) +(typeattributeset base_typeattr_61 (and (domain ) (not (crash_dump dumpstate mediacodec mediaextractor system_server tombstoned )))) +(typeattribute base_typeattr_60) +(typeattributeset base_typeattr_60 (and (domain ) (not (system_server webview_zygote )))) +(typeattribute base_typeattr_59) +(typeattributeset base_typeattr_59 (and (domain ) (not (system_server )))) +(typeattribute base_typeattr_58) +(typeattributeset base_typeattr_58 (and (domain ) (not (system_server zygote )))) +(typeattribute base_typeattr_57) +(typeattributeset base_typeattr_57 (and (domain ) (not (cppreopts dex2oat init installd otapreopt_slot postinstall_dexopt zygote )))) +(typeattribute base_typeattr_56) +(typeattributeset base_typeattr_56 (and (exec_type ) (not (vendor_file_type crash_dump_exec netutils_wrapper_exec )))) +(typeattribute base_typeattr_55) +(typeattributeset base_typeattr_55 (and (domain ) (not (appdomain coredomain vendor_executes_system_violators rild )))) +(typeattribute base_typeattr_54) +(typeattributeset base_typeattr_54 (and (coredomain ) (not (init )))) +(typeattribute base_typeattr_53) +(typeattributeset base_typeattr_53 (and (coredomain ) (not (appdomain idmap init installd system_server zygote )))) +(typeattribute base_typeattr_52) +(typeattributeset base_typeattr_52 (and (coredomain ) (not (appdomain dex2oat idmap init installd postinstall_dexopt system_server )))) +(typeattribute base_typeattr_51) +(typeattributeset base_typeattr_51 (and (dev_type file_type ) (not (core_data_file_type coredomain_socket unlabeled )))) +(typeattribute base_typeattr_50) +(typeattributeset base_typeattr_50 (and (coredomain ) (not (socket_between_core_and_vendor_violators init ueventd )))) +(typeattribute base_typeattr_49) +(typeattributeset base_typeattr_49 (and (core_data_file_type coredomain_socket unlabeled ) (not (pdx_endpoint_socket_type pdx_channel_socket_type app_data_file )))) +(typeattribute base_typeattr_48) +(typeattributeset base_typeattr_48 (and (domain ) (not (netdomain coredomain socket_between_core_and_vendor_violators )))) +(typeattribute base_typeattr_47) +(typeattributeset base_typeattr_47 (and (coredomain ) (not (incidentd init logd mdnsd netd tombstoned )))) +(typeattribute base_typeattr_46) +(typeattributeset base_typeattr_46 (and (domain ) (not (appdomain coredomain socket_between_core_and_vendor_violators )))) +(typeattribute base_typeattr_45) +(typeattributeset base_typeattr_45 (and (domain ) (not (coredomain socket_between_core_and_vendor_violators )))) +(typeattribute base_typeattr_44) +(typeattributeset base_typeattr_44 (and (coredomain ) (not (adbd init )))) +(typeattribute base_typeattr_43) +(typeattributeset base_typeattr_43 (and (coredomain ) (not (shell )))) +(typeattribute base_typeattr_42) +(typeattributeset base_typeattr_42 (and (coredomain ) (not (shell ueventd )))) +(typeattribute base_typeattr_41) +(typeattributeset base_typeattr_41 (and (service_manager_type ) (not (app_api_service ephemeral_app_api_service audioserver_service cameraserver_service drmserver_service keystore_service mediaserver_service mediametrics_service mediaextractor_service mediadrmserver_service nfc_service radio_service surfaceflinger_service virtual_touchpad_service vr_hwc_service vr_manager_service )))) +(typeattribute base_typeattr_40) +(typeattributeset base_typeattr_40 (and (appdomain ) (not (coredomain )))) +(typeattribute base_typeattr_39) +(typeattributeset base_typeattr_39 (and (domain ) (not (appdomain coredomain binder_in_vendor_violators )))) +(typeattribute base_typeattr_38) +(typeattributeset base_typeattr_38 (and (domain ) (not (hwservicemanager servicemanager vndservicemanager )))) +(typeattribute base_typeattr_37) +(typeattributeset base_typeattr_37 (and (domain ) (not (hal_bootctl init recovery ueventd uncrypt update_engine vold )))) +(typeattribute base_typeattr_36) +(typeattributeset base_typeattr_36 (and (domain ) (not (install_recovery recovery )))) +(typeattribute base_typeattr_35) +(typeattributeset base_typeattr_35 (and (domain ) (not (recovery update_engine )))) +(typeattribute base_typeattr_34) +(typeattributeset base_typeattr_34 (and (domain ) (not (init recovery vold )))) +(typeattribute base_typeattr_33) +(typeattributeset base_typeattr_33 (and (domain ) (not (init recovery shell system_server ueventd )))) +(typeattribute base_typeattr_32) +(typeattributeset base_typeattr_32 (and (domain ) (not (init system_server )))) +(typeattribute base_typeattr_31) +(typeattributeset base_typeattr_31 (and (domain ) (not (hal_drm hal_cas adbd dumpstate init mediadrmserver recovery shell system_server )))) +(typeattribute base_typeattr_30) +(typeattributeset base_typeattr_30 (and (fs_type ) (not (contextmount_type )))) +(typeattribute base_typeattr_29) +(typeattributeset base_typeattr_29 (and (domain ) (not (kernel recovery )))) +(typeattribute base_typeattr_28) +(typeattributeset base_typeattr_28 (and (data_file_type ) (not (system_data_file apk_data_file dalvikcache_data_file )))) +(typeattribute base_typeattr_27) +(typeattributeset base_typeattr_27 (and (domain ) (not (appdomain )))) +(typeattribute base_typeattr_26) +(typeattributeset base_typeattr_26 (and (fs_type ) (not (rootfs )))) +(typeattribute base_typeattr_25) +(typeattributeset base_typeattr_25 (and (domain ) (not (appdomain recovery )))) +(typeattribute base_typeattr_24) +(typeattributeset base_typeattr_24 (and (file_type ) (not (exec_type vendor_file_type system_file postinstall_file )))) +(typeattribute base_typeattr_23) +(typeattributeset base_typeattr_23 (and (domain ) (not (appdomain dumpstate shell webview_zygote zygote )))) +(typeattribute base_typeattr_22) +(typeattributeset base_typeattr_22 (and (fs_type ) (not (sdcard_type )))) +(typeattribute base_typeattr_21) +(typeattributeset base_typeattr_21 (and (domain ) (not (init kernel otapreopt_chroot recovery update_engine vold zygote )))) +(typeattribute base_typeattr_20) +(typeattributeset base_typeattr_20 (and (domain ) (not (init kernel recovery )))) +(typeattribute base_typeattr_19) +(typeattributeset base_typeattr_19 (and (domain ) (not (init ueventd )))) +(typeattribute base_typeattr_18) +(typeattributeset base_typeattr_18 (and (domain ) (not (shell ueventd )))) +(typeattribute base_typeattr_17) +(typeattributeset base_typeattr_17 (and (file_type ) (not (exec_type postinstall_file )))) +(typeattribute base_typeattr_16) +(typeattributeset base_typeattr_16 (and (domain ) (not (init shell system_server ueventd )))) +(typeattribute base_typeattr_15) +(typeattributeset base_typeattr_15 (and (domain ) (not (init )))) +(typeattribute base_typeattr_14) +(typeattributeset base_typeattr_14 (and (domain ) (not (kernel )))) +(typeattribute base_typeattr_13) +(typeattributeset base_typeattr_13 (and (domain ) (not (recovery )))) +(typeattribute base_typeattr_12) +(typeattributeset base_typeattr_12 (and (domain ) (not (healthd init kernel recovery tee ueventd uncrypt )))) +(typeattribute base_typeattr_11) +(typeattributeset base_typeattr_11 (and (domain ) (not (init kernel ueventd vold )))) +(typeattribute base_typeattr_10) +(typeattributeset base_typeattr_10 (and (domain ) (not (init recovery )))) +(typeattribute base_typeattr_9) +(typeattributeset base_typeattr_9 (all)) +(typeattribute base_typeattr_8) +(typeattributeset base_typeattr_8 (and (domain ) (not (domain )))) +(typeattribute base_typeattr_7) +(typeattributeset base_typeattr_7 (and (domain ) (not (coredomain )))) +(typeattribute base_typeattr_6) +(typeattributeset base_typeattr_6 (and (domain ) (not (isolated_app servicemanager vndservicemanager )))) +(typeattribute base_typeattr_5) +(typeattributeset base_typeattr_5 (and (appdomain coredomain binder_in_vendor_violators ) (not (hwservicemanager )))) +(typeattribute base_typeattr_4) +(typeattributeset base_typeattr_4 (and (domain ) (not (display_service_server )))) +(typeattribute base_typeattr_3) +(typeattributeset base_typeattr_3 (and (domain ) (not (crash_dump init keystore logd )))) +(typeattribute base_typeattr_2) +(typeattributeset base_typeattr_2 (and (domain ) (not (cameraserver )))) +(typeattribute base_typeattr_1) +(typeattributeset base_typeattr_1 (and (domain ) (not (bufferhubd )))) +; THIS IS A WORKAROUND for the current limitations of the module policy language +; This should be used sparingly until we figure out a saner way to achieve the +; stuff below, for example, by improving typeattribute statement of module +; language. +; +; NOTE: This file has no effect on recovery policy. + +; Apps, except isolated apps, are clients of Allocator HAL +; Unfortunately, we can't currently express this in module policy language: +; typeattribute { appdomain -isolated_app } hal_allocator_client; +; typeattribute hal_allocator_client halclientdomain; +(typeattributeset hal_allocator_client ((and (appdomain) ((not (isolated_app)))))) +(typeattributeset halclientdomain (hal_allocator_client)) + +; Apps, except isolated apps, are clients of Configstore HAL +; Unfortunately, we can't currently express this in module policy language: +; typeattribute { appdomain -isolated_app } hal_configstore_client; +(typeattributeset hal_configstore_client ((and (appdomain) ((not (isolated_app)))))) + +; Apps, except isolated apps, are clients of Graphics Allocator HAL +; Unfortunately, we can't currently express this in module policy language: +; typeattribute { appdomain -isolated_app } hal_graphics_allocator_client; +(typeattributeset hal_graphics_allocator_client ((and (appdomain) ((not (isolated_app)))))) + +; Apps, except isolated apps, are clients of Cas HAL +; Unfortunately, we can't currently express this in module policy language: +; typeattribute { appdomain -isolated_app } hal_cas_client; +(typeattributeset hal_cas_client ((and (appdomain) ((not (isolated_app)))))) + +; Domains hosting Camera HAL implementations are clients of Allocator HAL +; Unfortunately, we can't currently express this in module policy language: +; typeattribute hal_camera hal_allocator_client; +(typeattributeset hal_allocator_client (hal_camera)) + +; Apps, except isolated apps, are clients of Neuralnetworks HAL +; Unfortunately, we can't currently express this in module policy language: +; typeattribute { appdomain -isolated_app } hal_neuralnetworks_client; +(typeattributeset hal_neuralnetworks_client ((and (appdomain) ((not (isolated_app)))))) diff --git a/system/etc/selinux/plat_service_contexts b/system/etc/selinux/plat_service_contexts new file mode 100644 index 0000000000000000000000000000000000000000..6269fbce6ab562a4d32a0153b719e2c6fa0e4966 --- /dev/null +++ b/system/etc/selinux/plat_service_contexts @@ -0,0 +1,219 @@ +accessibility u:object_r:accessibility_service:s0 +account u:object_r:account_service:s0 +activity u:object_r:activity_service:s0 +alarm u:object_r:alarm_service:s0 +android.os.UpdateEngineService u:object_r:update_engine_service:s0 +android.security.keystore u:object_r:keystore_service:s0 +android.service.gatekeeper.IGateKeeperService u:object_r:gatekeeper_service:s0 +appops u:object_r:appops_service:s0 +appwidget u:object_r:appwidget_service:s0 +assetatlas u:object_r:assetatlas_service:s0 +audio u:object_r:audio_service:s0 +autofill u:object_r:autofill_service:s0 +backup u:object_r:backup_service:s0 +batteryproperties u:object_r:batteryproperties_service:s0 +batterystats u:object_r:batterystats_service:s0 +battery u:object_r:battery_service:s0 +bluetooth_manager u:object_r:bluetooth_manager_service:s0 +bluetooth u:object_r:bluetooth_service:s0 +broadcastradio u:object_r:broadcastradio_service:s0 +carrier_config u:object_r:radio_service:s0 +clipboard u:object_r:clipboard_service:s0 +com.android.net.IProxyService u:object_r:IProxyService_service:s0 +commontime_management u:object_r:commontime_management_service:s0 +common_time.clock u:object_r:mediaserver_service:s0 +common_time.config u:object_r:mediaserver_service:s0 +companiondevice u:object_r:companion_device_service:s0 +connectivity u:object_r:connectivity_service:s0 +connmetrics u:object_r:connmetrics_service:s0 +consumer_ir u:object_r:consumer_ir_service:s0 +content u:object_r:content_service:s0 +contexthub u:object_r:contexthub_service:s0 +country_detector u:object_r:country_detector_service:s0 +coverage u:object_r:coverage_service:s0 +cpuinfo u:object_r:cpuinfo_service:s0 +dbinfo u:object_r:dbinfo_service:s0 +device_policy u:object_r:device_policy_service:s0 +device_identifiers u:object_r:device_identifiers_service:s0 +deviceidle u:object_r:deviceidle_service:s0 +devicestoragemonitor u:object_r:devicestoragemonitor_service:s0 +diskstats u:object_r:diskstats_service:s0 +display.qservice u:object_r:surfaceflinger_service:s0 +display u:object_r:display_service:s0 +netd_listener u:object_r:netd_listener_service:s0 +DockObserver u:object_r:DockObserver_service:s0 +dreams u:object_r:dreams_service:s0 +drm.drmManager u:object_r:drmserver_service:s0 +dropbox u:object_r:dropbox_service:s0 +dumpstate u:object_r:dumpstate_service:s0 +econtroller u:object_r:radio_service:s0 +ethernet u:object_r:ethernet_service:s0 +fingerprint u:object_r:fingerprint_service:s0 +font u:object_r:font_service:s0 +android.hardware.fingerprint.IFingerprintDaemon u:object_r:fingerprintd_service:s0 +gfxinfo u:object_r:gfxinfo_service:s0 +graphicsstats u:object_r:graphicsstats_service:s0 +gpu u:object_r:gpu_service:s0 +hardware u:object_r:hardware_service:s0 +hardware_properties u:object_r:hardware_properties_service:s0 +hdmi_control u:object_r:hdmi_control_service:s0 +incident u:object_r:incident_service:s0 +inputflinger u:object_r:inputflinger_service:s0 +input_method u:object_r:input_method_service:s0 +input u:object_r:input_service:s0 +installd u:object_r:installd_service:s0 +iphonesubinfo_msim u:object_r:radio_service:s0 +iphonesubinfo2 u:object_r:radio_service:s0 +iphonesubinfo u:object_r:radio_service:s0 +ims u:object_r:radio_service:s0 +imms u:object_r:imms_service:s0 +ipsec u:object_r:ipsec_service:s0 +isms_msim u:object_r:radio_service:s0 +isms2 u:object_r:radio_service:s0 +isms u:object_r:radio_service:s0 +isub u:object_r:radio_service:s0 +jobscheduler u:object_r:jobscheduler_service:s0 +launcherapps u:object_r:launcherapps_service:s0 +location u:object_r:location_service:s0 +lock_settings u:object_r:lock_settings_service:s0 +media.aaudio u:object_r:audioserver_service:s0 +media.audio_flinger u:object_r:audioserver_service:s0 +media.audio_policy u:object_r:audioserver_service:s0 +media.camera u:object_r:cameraserver_service:s0 +media.camera.proxy u:object_r:cameraproxy_service:s0 +media.log u:object_r:audioserver_service:s0 +media.player u:object_r:mediaserver_service:s0 +media.metrics u:object_r:mediametrics_service:s0 +media.extractor u:object_r:mediaextractor_service:s0 +media.codec u:object_r:mediacodec_service:s0 +media.resource_manager u:object_r:mediaserver_service:s0 +media.sound_trigger_hw u:object_r:audioserver_service:s0 +media.drm u:object_r:mediadrmserver_service:s0 +media_projection u:object_r:media_projection_service:s0 +media_resource_monitor u:object_r:media_session_service:s0 +media_router u:object_r:media_router_service:s0 +media_session u:object_r:media_session_service:s0 +meminfo u:object_r:meminfo_service:s0 +midi u:object_r:midi_service:s0 +mount u:object_r:mount_service:s0 +netd u:object_r:netd_service:s0 +netpolicy u:object_r:netpolicy_service:s0 +netstats u:object_r:netstats_service:s0 +network_management u:object_r:network_management_service:s0 +network_score u:object_r:network_score_service:s0 +network_time_update_service u:object_r:network_time_update_service:s0 +nfc u:object_r:nfc_service:s0 +notification u:object_r:notification_service:s0 +oem_lock u:object_r:oem_lock_service:s0 +otadexopt u:object_r:otadexopt_service:s0 +overlay u:object_r:overlay_service:s0 +package u:object_r:package_service:s0 +package_native u:object_r:package_native_service:s0 +permission u:object_r:permission_service:s0 +persistent_data_block u:object_r:persistent_data_block_service:s0 +phone_msim u:object_r:radio_service:s0 +phone1 u:object_r:radio_service:s0 +phone2 u:object_r:radio_service:s0 +phone u:object_r:radio_service:s0 +pinner u:object_r:pinner_service:s0 +power u:object_r:power_service:s0 +print u:object_r:print_service:s0 +processinfo u:object_r:processinfo_service:s0 +procstats u:object_r:procstats_service:s0 +radio.phonesubinfo u:object_r:radio_service:s0 +radio.phone u:object_r:radio_service:s0 +radio.sms u:object_r:radio_service:s0 +recovery u:object_r:recovery_service:s0 +restrictions u:object_r:restrictions_service:s0 +rttmanager u:object_r:rttmanager_service:s0 +samplingprofiler u:object_r:samplingprofiler_service:s0 +scheduling_policy u:object_r:scheduling_policy_service:s0 +search u:object_r:search_service:s0 +sec_key_att_app_id_provider u:object_r:sec_key_att_app_id_provider_service:s0 +sensorservice u:object_r:sensorservice_service:s0 +serial u:object_r:serial_service:s0 +servicediscovery u:object_r:servicediscovery_service:s0 +settings u:object_r:settings_service:s0 +shortcut u:object_r:shortcut_service:s0 +simphonebook_msim u:object_r:radio_service:s0 +simphonebook2 u:object_r:radio_service:s0 +simphonebook u:object_r:radio_service:s0 +sip u:object_r:radio_service:s0 +soundtrigger u:object_r:voiceinteraction_service:s0 +statusbar u:object_r:statusbar_service:s0 +storaged u:object_r:storaged_service:s0 +storagestats u:object_r:storagestats_service:s0 +SurfaceFlinger u:object_r:surfaceflinger_service:s0 +task u:object_r:task_service:s0 +telecom u:object_r:telecom_service:s0 +telephony.registry u:object_r:registry_service:s0 +textclassification u:object_r:textclassification_service:s0 +textservices u:object_r:textservices_service:s0 +timezone u:object_r:timezone_service:s0 +thermalservice u:object_r:thermal_service:s0 +trust u:object_r:trust_service:s0 +tv_input u:object_r:tv_input_service:s0 +uimode u:object_r:uimode_service:s0 +updatelock u:object_r:updatelock_service:s0 +usagestats u:object_r:usagestats_service:s0 +usb u:object_r:usb_service:s0 +user u:object_r:user_service:s0 +vibrator u:object_r:vibrator_service:s0 +virtual_touchpad u:object_r:virtual_touchpad_service:s0 +voiceinteraction u:object_r:voiceinteraction_service:s0 +vr_hwc u:object_r:vr_hwc_service:s0 +vrmanager u:object_r:vr_manager_service:s0 +wallpaper u:object_r:wallpaper_service:s0 +webviewupdate u:object_r:webviewupdate_service:s0 +wifip2p u:object_r:wifip2p_service:s0 +wifiscanner u:object_r:wifiscanner_service:s0 +wifi u:object_r:wifi_service:s0 +wificond u:object_r:wificond_service:s0 +wifiaware u:object_r:wifiaware_service:s0 +window u:object_r:window_service:s0 +* u:object_r:default_android_service:s0 +NvRAMAgent u:object_r:nvram_agent_service:s0 +memory_dumper u:object_r:mediaserver_service:s0 +imsa u:object_r:radio_service:s0 +mtkIms u:object_r:radio_service:s0 +GbaService u:object_r:radio_service:s0 +anrmanager u:object_r:mtk_anrmanager_service:s0 +permrecords u:object_r:mtk_permrecords_service:s0 +media.mmsdk u:object_r:mtk_advcamserver_service:s0 +media.advcam u:object_r:mtk_advcamserver_service:s0 +AAL u:object_r:aal_service:s0 +mobile u:object_r:mtk_mobile_service:s0 +msgmonitorservice u:object_r:mtk_msg_monitor_service:s0 +mtk-perfservice u:object_r:mtk_perf_service:s0 +power_hal_mgr_service u:object_r:mtk_power_hal_mgr_service:s0 +epdg_service u:object_r:mtk_epdg_service:s0 +rns u:object_r:mtk_rns_service:s0 +phoneEx u:object_r:mtk_radio_service:s0 +telephony.mtkregistry u:object_r:mtk_registry_service:s0 +iphonesubinfoEx u:object_r:mtk_phonesubinfo_service:s0 +mtk_telecom u:object_r:mtk_telecom_service:s0 +mtksimphonebook u:object_r:mtk_simphonebook_service:s0 +data_shaping u:object_r:mtk_data_shaping_service:s0 +mtkconnmetrics u:object_r:mtk_connmetrics_service:s0 +search_engine_service u:object_r:mtk_search_engine_service:s0 +duraspeed u:object_r:mtk_duraspeed_service:s0 +FullscreenSwitchService u:object_r:mtk_fullscreen_switch_service:s0 +GoogleOtaBinder u:object_r:ota_agent_service:s0 +GpuAppSpectatorService u:object_r:gas_srv_service:s0 +GuiExtService u:object_r:guiext-server_service:s0 +DmAgent u:object_r:dm_agent_binder_service:s0 +FpsPolicyService u:object_r:fpspolicy-server_service:s0 +isubstub u:object_r:radio_service:s0 +appdetection u:object_r:mtk_appdetection_service:s0 +wfo u:object_r:radio_service:s0 +imtksms u:object_r:radio_service:s0 +carrierexpress u:object_r:mtk_carrierexpress_service:s0 +media.VTS u:object_r:vtservice_service:s0 +media.VTS.HiDL u:object_r:vtservice_hidl_service:s0 +mwis u:object_r:radio_service:s0 +hdmi.MtkHdmiService u:object_r:mtk_hdmi_service:s0 +PPLAgent u:object_r:ppl_agent_service:s0 +nfc.st_ext u:object_r:nfc_service:s0 +nfc_settings u:object_r:nfc_service:s0 +program_binary u:object_r:program_binary_service:s0 +ifaa_service u:object_r:mtk_ifaa_service:s0 diff --git a/system/etc/sepolicy_tests b/system/etc/sepolicy_tests new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/system/etc/spn-conf.xml b/system/etc/spn-conf.xml new file mode 100644 index 0000000000000000000000000000000000000000..018d2978c7040195500967070476a7bd2c51c741 --- /dev/null +++ b/system/etc/spn-conf.xml @@ -0,0 +1,1190 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<spnOverrides version="1"> +<spnOverride numeric="20201" spn="GR COSMOTE"/> +<spnOverride numeric="20205" spn="vodafone GR"/> +<spnOverride numeric="20209" spn="WIND GR"/> +<spnOverride numeric="20210" spn="WIND GR"/> +<spnOverride numeric="20402" spn="Tele2 NL"/> +<spnOverride numeric="20404" spn="vodafone NL"/> +<spnOverride numeric="20408" spn="NL KPN"/> +<spnOverride numeric="20412" spn="NL Telfort"/> +<spnOverride numeric="20416" spn="T-Mobile NL"/> +<spnOverride numeric="20601" spn="Proximus"/> +<spnOverride numeric="20610" spn="Orange B"/> +<spnOverride numeric="20620" spn="BASE"/> +<spnOverride numeric="20801" spn="Orange F"/> +<spnOverride numeric="20802" spn="F-Contact"/> +<spnOverride numeric="20809" spn="F SFR"/> +<spnOverride numeric="20810" spn="F SFR"/> +<spnOverride numeric="20811" spn="SFR FEMTO"/> +<spnOverride numeric="20813" spn="F - Contact"/> +<spnOverride numeric="20815" spn="Free"/> +<spnOverride numeric="20820" spn="F-Bouygues Telecom"/> +<spnOverride numeric="20888" spn="F - Contact"/> +<spnOverride numeric="21201" spn="vala"/> +<spnOverride numeric="21210" spn="Monaco"/> +<spnOverride numeric="21303" spn="ANDORRA-MOBILAND"/> +<spnOverride numeric="21401" spn="vodafone ES"/> +<spnOverride numeric="21403" spn="Orange SP"/> +<spnOverride numeric="21404" spn="YOIGO"/> +<spnOverride numeric="21407" spn="Movistar"/> +<spnOverride numeric="21601" spn="Telenor HU"/> +<spnOverride numeric="21603" spn="DIGI Mobil HU"/> +<spnOverride numeric="21630" spn="Telekom HU"/> +<spnOverride numeric="21670" spn="vodafone HU"/> +<spnOverride numeric="21801" spn="HT ERONET"/> +<spnOverride numeric="21803" spn="HT ERONET"/> +<spnOverride numeric="21805" spn="m:tel"/> +<spnOverride numeric="21890" spn="BH Mobile"/> +<spnOverride numeric="21901" spn="HT HR"/> +<spnOverride numeric="21902" spn="Tele2 HR"/> +<spnOverride numeric="21910" spn="HR VIP"/> +<spnOverride numeric="22001" spn="Telenor SRB"/> +<spnOverride numeric="22003" spn="mt:s"/> +<spnOverride numeric="22005" spn="Vip SRB"/> +<spnOverride numeric="22201" spn="I TIM"/> +<spnOverride numeric="22210" spn="vodafone IT"/> +<spnOverride numeric="22250" spn="ILIAD"/> +<spnOverride numeric="22288" spn="I WIND"/> +<spnOverride numeric="22299" spn="3 ITA"/> +<spnOverride numeric="22601" spn="RO Vodafone RO"/> +<spnOverride numeric="22603" spn="TELEKOM.RO"/> +<spnOverride numeric="22605" spn="RO Digi.Mobil"/> +<spnOverride numeric="22610" spn="RO ORANGE"/> +<spnOverride numeric="22615" spn="RO 2K Telecom"/> +<spnOverride numeric="22801" spn="Swisscom"/> +<spnOverride numeric="22802" spn="Sunrise"/> +<spnOverride numeric="22803" spn="Salt"/> +<spnOverride numeric="22815" spn="OnAir"/> +<spnOverride numeric="23001" spn="T-Mobile CZ"/> +<spnOverride numeric="23002" spn="O2 - CZ"/> +<spnOverride numeric="23003" spn="Vodafone CZ"/> +<spnOverride numeric="23101" spn="Orange SK"/> +<spnOverride numeric="23102" spn="Telekom SK"/> +<spnOverride numeric="23103" spn="SWAN SK"/> +<spnOverride numeric="23106" spn="O2 - SK"/> +<spnOverride numeric="23201" spn="A1"/> +<spnOverride numeric="23203" spn="T-Mobile A"/> +<spnOverride numeric="23205" spn="3 AT"/> +<spnOverride numeric="23207" spn="telering"/> +<spnOverride numeric="23210" spn="3 AT"/> +<spnOverride numeric="23212" spn="A1"/> +<spnOverride numeric="23403" spn="Airtel-Vodafone"/> +<spnOverride numeric="23408" spn="BT OnePhone"/> +<spnOverride numeric="23410" spn="O2 - UK"/> +<spnOverride numeric="23415" spn="vodafone UK"/> +<spnOverride numeric="23416" spn="TalkTalk"/> +<spnOverride numeric="23419" spn="PMN UK"/> +<spnOverride numeric="23420" spn="3 UK"/> +<spnOverride numeric="23428" spn="Marathon"/> +<spnOverride numeric="23430" spn="EE"/> +<spnOverride numeric="23431" spn="EE"/> +<spnOverride numeric="23432" spn="EE"/> +<spnOverride numeric="23433" spn="EE"/> +<spnOverride numeric="23450" spn="JT"/> +<spnOverride numeric="23455" spn="Sure"/> +<spnOverride numeric="23458" spn="Manx Telecom"/> +<spnOverride numeric="23801" spn="TDC"/> +<spnOverride numeric="23802" spn="Telenor DK"/> +<spnOverride numeric="23806" spn="3 DK"/> +<spnOverride numeric="23820" spn="Telia DK"/> +<spnOverride numeric="23866" spn="Telia-Telenor DK"/> +<spnOverride numeric="23877" spn="Telenor DK"/> +<spnOverride numeric="24001" spn="TELIA S"/> +<spnOverride numeric="24002" spn="3 SE"/> +<spnOverride numeric="24004" spn="SWEDEN"/> +<spnOverride numeric="24005" spn="Sweden 3G"/> +<spnOverride numeric="24007" spn="Tele2"/> +<spnOverride numeric="24008" spn="Telenor SE"/> +<spnOverride numeric="24024" spn="Sweden Mobile"/> +<spnOverride numeric="24201" spn="N Telenor"/> +<spnOverride numeric="24202" spn="N NetCom"/> +<spnOverride numeric="24204" spn="Mobile Norway"/> +<spnOverride numeric="24205" spn="Mobile Norway"/> +<spnOverride numeric="24214" spn="ice.net"/> +<spnOverride numeric="24299" spn="Tampnet"/> +<spnOverride numeric="24403" spn="FI DNA"/> +<spnOverride numeric="24405" spn="FI elisa"/> +<spnOverride numeric="24412" spn="FI DNA"/> +<spnOverride numeric="24414" spn="FI AMT"/> +<spnOverride numeric="24421" spn="FI elisa"/> +<spnOverride numeric="24436" spn="DNA - Sonera FI"/> +<spnOverride numeric="24491" spn="FI SONERA"/> +<spnOverride numeric="24601" spn="OMNITEL LT"/> +<spnOverride numeric="24602" spn="LT BITE GSM"/> +<spnOverride numeric="24603" spn="Tele2 LT"/> +<spnOverride numeric="24701" spn="LV LMT"/> +<spnOverride numeric="24702" spn="Tele2 LV"/> +<spnOverride numeric="24705" spn="BITE LV"/> +<spnOverride numeric="24801" spn="Telia"/> +<spnOverride numeric="24802" spn="Elisa EE"/> +<spnOverride numeric="24803" spn="Tele2 EE"/> +<spnOverride numeric="25001" spn="MTS RUS"/> +<spnOverride numeric="25002" spn="MegaFon RUS"/> +<spnOverride numeric="25003" spn="ROSTELECOM"/> +<spnOverride numeric="25005" spn="ROSTELECOM"/> +<spnOverride numeric="25007" spn="RUS 07, RUS SMARTS"/> +<spnOverride numeric="25011" spn="ROSTELECOM"/> +<spnOverride numeric="25012" spn="ROSTELECOM"/> +<spnOverride numeric="25015" spn="RUS15, RUS SMARTS"/> +<spnOverride numeric="25016" spn="NTC"/> +<spnOverride numeric="25017" spn="ROSTELECOM"/> +<spnOverride numeric="25019" spn="RUS INDIGO"/> +<spnOverride numeric="25020" spn="Tele2 RU"/> +<spnOverride numeric="25027" spn="LETAI"/> +<spnOverride numeric="25028" spn="voda"/> +<spnOverride numeric="25035" spn="MOTIV"/> +<spnOverride numeric="25037" spn="KODOTEL"/> +<spnOverride numeric="25038" spn="ROSTELECOM"/> +<spnOverride numeric="25039" spn="ROSTELECOM"/> +<spnOverride numeric="25099" spn="Beeline"/> +<spnOverride numeric="25501" spn="VODAFONE"/> +<spnOverride numeric="25502" spn="Beeline UA"/> +<spnOverride numeric="25503" spn="UA-KYIVSTAR"/> +<spnOverride numeric="25505" spn="UA-GT"/> +<spnOverride numeric="25506" spn="life:)"/> +<spnOverride numeric="25507" spn="TriMob"/> +<spnOverride numeric="25701" spn="BY VELCOM"/> +<spnOverride numeric="25702" spn="MTS BY"/> +<spnOverride numeric="25704" spn="life:) BY"/> +<spnOverride numeric="25901" spn="Orange MD"/> +<spnOverride numeric="25902" spn="Moldcell"/> +<spnOverride numeric="25905" spn="UNITE"/> +<spnOverride numeric="25915" spn="IDC"/> +<spnOverride numeric="26001" spn="Plus"/> +<spnOverride numeric="26002" spn="T-Mobile.pl"/> +<spnOverride numeric="26003" spn="Orange PL"/> +<spnOverride numeric="26006" spn="Play"/> +<spnOverride numeric="26034" spn="T-Mobile.pl"/> +<spnOverride numeric="26201" spn="Telekom.de"/> +<spnOverride numeric="26202" spn="Vodafone.de"/> +<spnOverride numeric="26203" spn="o2 - de"/> +<spnOverride numeric="26206" spn="Telekom.de"/> +<spnOverride numeric="26207" spn="o2 - de"/> +<spnOverride numeric="26208" spn="o2 - de"/> +<spnOverride numeric="26601" spn="GIBTEL"/> +<spnOverride numeric="26606" spn="CTS"/> +<spnOverride numeric="26609" spn="Shine"/> +<spnOverride numeric="26801" spn="vodafone P"/> +<spnOverride numeric="26803" spn="NOS"/> +<spnOverride numeric="26806" spn="MEO"/> +<spnOverride numeric="27001" spn="POST"/> +<spnOverride numeric="27077" spn="L TANGO"/> +<spnOverride numeric="27099" spn="L Orange-LU"/> +<spnOverride numeric="27201" spn="vodafone IE"/> +<spnOverride numeric="27202" spn="3"/> +<spnOverride numeric="27203" spn="IRL - METEOR"/> +<spnOverride numeric="27205" spn="3"/> +<spnOverride numeric="27401" spn="IS SIMINN"/> +<spnOverride numeric="27402" spn="Vodafone"/> +<spnOverride numeric="27404" spn="Viking"/> +<spnOverride numeric="27408" spn="IS OnWaves"/> +<spnOverride numeric="27411" spn="NOVA IS"/> +<spnOverride numeric="27412" spn="IS TAL"/> +<spnOverride numeric="27601" spn="Telekom.al"/> +<spnOverride numeric="27602" spn="Voda AL"/> +<spnOverride numeric="27603" spn="ALBtelecom"/> +<spnOverride numeric="27604" spn="PLUS AL"/> +<spnOverride numeric="27801" spn="vodafone MT"/> +<spnOverride numeric="27821" spn="go mobile"/> +<spnOverride numeric="27877" spn="Melita Mobile"/> +<spnOverride numeric="28001" spn="Cyta-Voda"/> +<spnOverride numeric="28010" spn="MTN"/> +<spnOverride numeric="28020" spn="PrimeTel PLC"/> +<spnOverride numeric="28201" spn="GEO-GEOCELL"/> +<spnOverride numeric="28202" spn="MAGTI-GSM-GEO"/> +<spnOverride numeric="28204" spn="BEELINE"/> +<spnOverride numeric="28301" spn="Beeline AM"/> +<spnOverride numeric="28305" spn="MTS ARM"/> +<spnOverride numeric="28310" spn="Ucom AM"/> +<spnOverride numeric="28401" spn="Mtel"/> +<spnOverride numeric="28403" spn="Vivacom BG"/> +<spnOverride numeric="28405" spn="Telenor BG"/> +<spnOverride numeric="28601" spn="TR TURKCELL"/> +<spnOverride numeric="28602" spn="Vodafone Türkiye"/> +<spnOverride numeric="28603" spn="AVEA"/> +<spnOverride numeric="28801" spn="Foroya Tele"/> +<spnOverride numeric="28802" spn="VODAFONE FO"/> +<spnOverride numeric="29001" spn="TELE Greenland"/> +<spnOverride numeric="29201" spn="SMT"/> +<spnOverride numeric="29340" spn="A1 SI"/> +<spnOverride numeric="29341" spn="MOBITEL"/> +<spnOverride numeric="29364" spn="T-2"/> +<spnOverride numeric="29370" spn="TELEMACH"/> +<spnOverride numeric="29401" spn="T-Mobile MK"/> +<spnOverride numeric="29402" spn="ONE MK"/> +<spnOverride numeric="29403" spn="Vip MKD"/> +<spnOverride numeric="29501" spn="SwisscomFL"/> +<spnOverride numeric="29502" spn="Salt.li"/> +<spnOverride numeric="29505" spn="FL1"/> +<spnOverride numeric="29701" spn="Telenor"/> +<spnOverride numeric="29702" spn="Telekom.me"/> +<spnOverride numeric="29703" spn="MTEL"/> +<spnOverride numeric="302220" spn="TELUS"/> +<spnOverride numeric="302270" spn="Eastlink"/> +<spnOverride numeric="302320" spn="Mobilicity"/> +<spnOverride numeric="302340" spn="Execulink Telecom"/> +<spnOverride numeric="302370" spn="Fido"/> +<spnOverride numeric="302380" spn="KNET"/> +<spnOverride numeric="302480" spn="SSi"/> +<spnOverride numeric="302490" spn="Freedom"/> +<spnOverride numeric="302500" spn="Videotron"/> +<spnOverride numeric="302520" spn="Videotron"/> +<spnOverride numeric="302610" spn="Bell"/> +<spnOverride numeric="302620" spn="Ice Wireless Inc"/> +<spnOverride numeric="30266" spn="MTS"/> +<spnOverride numeric="302660" spn="MTS"/> +<spnOverride numeric="302720" spn="Rogers Wireless"/> +<spnOverride numeric="302730" spn="CAN TerreStar Solutions"/> +<spnOverride numeric="302770" spn="CANRU"/> +<spnOverride numeric="302780" spn="SaskTel"/> +<spnOverride numeric="302880" spn="FastRoam"/> +<spnOverride numeric="302940" spn="Wightman"/> +<spnOverride numeric="30801" spn="SPM AMERIS"/> +<spnOverride numeric="310020" spn="US - Union Telephone"/> +<spnOverride numeric="310030" spn="AT&T"/> +<spnOverride numeric="310032" spn="IT&E"/> +<spnOverride numeric="310050" spn="GCI"/> +<spnOverride numeric="310070" spn="AT&T"/> +<spnOverride numeric="310090" spn="AT&T"/> +<spnOverride numeric="310100" spn="US PLATEAU"/> +<spnOverride numeric="310110" spn="IT&E"/> +<spnOverride numeric="310120" spn="Sprint"/> +<spnOverride numeric="310140" spn="GTA"/> +<spnOverride numeric="310150" spn="AT&T"/> +<spnOverride numeric="310160" spn="T-Mobile"/> +<spnOverride numeric="310170" spn="AT&T"/> +<spnOverride numeric="310180" spn="West Central Wireless"/> +<spnOverride numeric="310190" spn="USA Dutch Harbor"/> +<spnOverride numeric="31020" spn="US - Union Telephone"/> +<spnOverride numeric="310200" spn="T-Mobile"/> +<spnOverride numeric="310210" spn="T-Mobile"/> +<spnOverride numeric="310220" spn="T-Mobile"/> +<spnOverride numeric="310230" spn="T-Mobile"/> +<spnOverride numeric="310240" spn="T-Mobile"/> +<spnOverride numeric="310250" spn="T-Mobile"/> +<spnOverride numeric="310260" spn="T-Mobile"/> +<spnOverride numeric="310270" spn="T-Mobile"/> +<spnOverride numeric="310280" spn="AT&T"/> +<spnOverride numeric="310290" spn="NEP Wireless"/> +<spnOverride numeric="31030" spn="AT&T"/> +<spnOverride numeric="310300" spn="BigSkyUS"/> +<spnOverride numeric="310310" spn="T-Mobile"/> +<spnOverride numeric="31032" spn="IT&E"/> +<spnOverride numeric="310320" spn="USA - CellularOne"/> +<spnOverride numeric="310340" spn="WestLink"/> +<spnOverride numeric="310370" spn="DOCOMO PACIFIC"/> +<spnOverride numeric="310380" spn="AT&T"/> +<spnOverride numeric="310410" spn="AT&T"/> +<spnOverride numeric="310420" spn="Cinti Bell"/> +<spnOverride numeric="310450" spn="Cell One of NE Colorado"/> +<spnOverride numeric="310460" spn="USA1L"/> +<spnOverride numeric="310480" spn="iCONNECT ADVANCED"/> +<spnOverride numeric="310490" spn="T-Mobile"/> +<spnOverride numeric="31050" spn="GCI"/> +<spnOverride numeric="310530" spn="Iowa Wireless USA"/> +<spnOverride numeric="310560" spn="AT&T"/> +<spnOverride numeric="310570" spn="Cell One"/> +<spnOverride numeric="310580" spn="T-Mobile"/> +<spnOverride numeric="310590" spn="Verizon"/> +<spnOverride numeric="310630" spn="USA AmeriLink"/> +<spnOverride numeric="310640" spn="USA AE Airadigm"/> +<spnOverride numeric="310650" spn="Jasper"/> +<spnOverride numeric="310660" spn="T-Mobile"/> +<spnOverride numeric="310680" spn="AT&T"/> +<spnOverride numeric="310690" spn="Limitless Mobile"/> +<spnOverride numeric="310710" spn="USA ASTAC"/> +<spnOverride numeric="310730" spn="U.S.Cellular"/> +<spnOverride numeric="310740" spn="USA OTZ"/> +<spnOverride numeric="310770" spn="Iowa Wireless USA"/> +<spnOverride numeric="31080" spn="Corr Wireless"/> +<spnOverride numeric="310800" spn="T-Mobile"/> +<spnOverride numeric="310840" spn="telna Mobile"/> +<spnOverride numeric="310870" spn="US"/> +<spnOverride numeric="310880" spn="USAACSI"/> +<spnOverride numeric="310890" spn="Verizon"/> +<spnOverride numeric="310990" spn="Worldcall"/> +<spnOverride numeric="311030" spn="Indigo"/> +<spnOverride numeric="311040" spn="USA - Commnet"/> +<spnOverride numeric="311080" spn="Pine Cellular"/> +<spnOverride numeric="311090" spn="USASXLP"/> +<spnOverride numeric="311150" spn="Wilkes USA"/> +<spnOverride numeric="311180" spn="AT&T"/> +<spnOverride numeric="311190" spn="USAC1ECI"/> +<spnOverride numeric="311230" spn="C Spire"/> +<spnOverride numeric="311240" spn="USACWCI"/> +<spnOverride numeric="311270" spn="Verizon"/> +<spnOverride numeric="31130" spn="Indigo"/> +<spnOverride numeric="311330" spn="BTW"/> +<spnOverride numeric="311370" spn="GCI"/> +<spnOverride numeric="31140" spn="USA - Commnet"/> +<spnOverride numeric="311480" spn="Verizon"/> +<spnOverride numeric="311490" spn="Sprint"/> +<spnOverride numeric="311500" spn="MOSAIC"/> +<spnOverride numeric="311530" spn="USANW"/> +<spnOverride numeric="311540" spn="USA Proximiti"/> +<spnOverride numeric="311580" spn="U.S.Cellular"/> +<spnOverride numeric="311630" spn="C Spire"/> +<spnOverride numeric="311660" spn="Metro PCS"/> +<spnOverride numeric="311710" spn="Northeast Wireless"/> +<spnOverride numeric="311730" spn="USA Proximiti"/> +<spnOverride numeric="311740" spn="TCI"/> +<spnOverride numeric="31180" spn="Pine Cellular"/> +<spnOverride numeric="311810" spn="Bluegrass Wireless"/> +<spnOverride numeric="311870" spn="Sprint"/> +<spnOverride numeric="31190" spn="USASXLP"/> +<spnOverride numeric="311940" spn="CLEAR"/> +<spnOverride numeric="312060" spn="CoverageCo"/> +<spnOverride numeric="312180" spn="Limitless Mobile"/> +<spnOverride numeric="312230" spn="SRT Wireless"/> +<spnOverride numeric="312260" spn="USACL"/> +<spnOverride numeric="312280" spn="Pioneer"/> +<spnOverride numeric="312290" spn="Strata Networks USA"/> +<spnOverride numeric="312480" spn="Nemont"/> +<spnOverride numeric="31260" spn="CoverageCo"/> +<spnOverride numeric="312630" spn="NetGenuity"/> +<spnOverride numeric="312870" spn="GigSky"/> +<spnOverride numeric="313070" spn="MNSHub"/> +<spnOverride numeric="330110" spn="PR Claro"/> +<spnOverride numeric="330120" spn="Open Mob PRI"/> +<spnOverride numeric="334020" spn="TELCEL"/> +<spnOverride numeric="334030" spn="Movistar"/> +<spnOverride numeric="33403" spn="Movistar"/> +<spnOverride numeric="334050" spn="AT&T"/> +<spnOverride numeric="334070" spn="AT&T"/> +<spnOverride numeric="334090" spn="Nextel"/> +<spnOverride numeric="33420" spn="TELCEL"/> +<spnOverride numeric="33450" spn="AT&T"/> +<spnOverride numeric="33490" spn="AT&T"/> +<spnOverride numeric="338050" spn="Digicel"/> +<spnOverride numeric="338180" spn="FLOW"/> +<spnOverride numeric="33850" spn="DIGICEL"/> +<spnOverride numeric="34001" spn="F-Orange"/> +<spnOverride numeric="34002" spn="SFR"/> +<spnOverride numeric="34003" spn="CHIPPIE"/> +<spnOverride numeric="34008" spn="DAUPHIN"/> +<spnOverride numeric="34020" spn="Digicel"/> +<spnOverride numeric="342600" spn="FLOW"/> +<spnOverride numeric="342750" spn="DIGICEL"/> +<spnOverride numeric="344030" spn="APUA imobile"/> +<spnOverride numeric="34430" spn="APUA imobile"/> +<spnOverride numeric="344920" spn="FLOW"/> +<spnOverride numeric="344930" spn="Cingular"/> +<spnOverride numeric="346140" spn="FLOW"/> +<spnOverride numeric="348170" spn="FLOW"/> +<spnOverride numeric="348570" spn="CCT Boatphone"/> +<spnOverride numeric="35000" spn="CELLONE"/> +<spnOverride numeric="350000" spn="CELLONE"/> +<spnOverride numeric="350010" spn="Cingular"/> +<spnOverride numeric="35010" spn="Cingular"/> +<spnOverride numeric="352030" spn="DIGICEL"/> +<spnOverride numeric="352110" spn="FLOW"/> +<spnOverride numeric="35230" spn="DIGICEL"/> +<spnOverride numeric="354860" spn="FLOW"/> +<spnOverride numeric="356110" spn="FLOW"/> +<spnOverride numeric="358050" spn="DIGICEL"/> +<spnOverride numeric="358110" spn="FLOW"/> +<spnOverride numeric="35850" spn="DIGICEL"/> +<spnOverride numeric="360070" spn="DIGICEL"/> +<spnOverride numeric="360110" spn="FLOW"/> +<spnOverride numeric="36070" spn="DIGICEL"/> +<spnOverride numeric="36251" spn="Telcell GSM"/> +<spnOverride numeric="36269" spn="Digicel"/> +<spnOverride numeric="36278" spn="Kla"/> +<spnOverride numeric="36291" spn="CHIPPIE"/> +<spnOverride numeric="36301" spn="SETAR"/> +<spnOverride numeric="36302" spn="AW Digicel"/> +<spnOverride numeric="36320" spn="DIGICEL"/> +<spnOverride numeric="36439" spn="BTC"/> +<spnOverride numeric="36449" spn="aliv"/> +<spnOverride numeric="365840" spn="FLOW"/> +<spnOverride numeric="366020" spn="Cingular"/> +<spnOverride numeric="366110" spn="FLOW"/> +<spnOverride numeric="36620" spn="Cingular"/> +<spnOverride numeric="36801" spn="CUBACEL"/> +<spnOverride numeric="37001" spn="ALTICE"/> +<spnOverride numeric="37002" spn="CLARO DOM"/> +<spnOverride numeric="37004" spn="Viva DO"/> +<spnOverride numeric="37201" spn="COMCEL"/> +<spnOverride numeric="37203" spn="Natcom"/> +<spnOverride numeric="37412" spn="TSTT"/> +<spnOverride numeric="374130" spn="Digicel"/> +<spnOverride numeric="376350" spn="FLOW"/> +<spnOverride numeric="376360" spn="IslandCom TCI"/> +<spnOverride numeric="40001" spn="AZEAC"/> +<spnOverride numeric="40002" spn="BAKCELL AZ"/> +<spnOverride numeric="40004" spn="AZ Nar"/> +<spnOverride numeric="40101" spn="Beeline KZ"/> +<spnOverride numeric="40102" spn="Kcell"/> +<spnOverride numeric="40107" spn="ALTEL"/> +<spnOverride numeric="40177" spn="Tele2"/> +<spnOverride numeric="40211" spn="BT B-Mobile"/> +<spnOverride numeric="40277" spn="TASHICELL"/> +<spnOverride numeric="40400" spn="TATA INDICOM"/> +<spnOverride numeric="40401" spn="Vodafone IN"/> +<spnOverride numeric="40402" spn="IND airtel"/> +<spnOverride numeric="40403" spn="IND airtel"/> +<spnOverride numeric="404030" spn="Vodafone IN"/> +<spnOverride numeric="40404" spn="IDEA"/> +<spnOverride numeric="40405" spn="Vodafone IN"/> +<spnOverride numeric="40407" spn="IDEA"/> +<spnOverride numeric="40409" spn="Reliance"/> +<spnOverride numeric="40410" spn="IND airtel"/> +<spnOverride numeric="40411" spn="Vodafone IN"/> +<spnOverride numeric="40412" spn="IDEA"/> +<spnOverride numeric="40413" spn="Vodafone IN"/> +<spnOverride numeric="40414" spn="IDEA"/> +<spnOverride numeric="40415" spn="Vodafone IN"/> +<spnOverride numeric="40416" spn="IND airtel"/> +<spnOverride numeric="40417" spn="Aircel"/> +<spnOverride numeric="40418" spn="Reliance"/> +<spnOverride numeric="40419" spn="IDEA"/> +<spnOverride numeric="40420" spn="Vodafone IN"/> +<spnOverride numeric="40422" spn="IDEA"/> +<spnOverride numeric="404238" spn="Reliance"/> +<spnOverride numeric="40424" spn="IDEA"/> +<spnOverride numeric="40425" spn="Aircel"/> +<spnOverride numeric="40427" spn="Vodafone IN"/> +<spnOverride numeric="40428" spn="Aircel"/> +<spnOverride numeric="40429" spn="Aircel"/> +<spnOverride numeric="40430" spn="Vodafone IN"/> +<spnOverride numeric="40431" spn="IND airtel"/> +<spnOverride numeric="40433" spn="Aircel"/> +<spnOverride numeric="40434" spn="CellOne"/> +<spnOverride numeric="40435" spn="Aircel"/> +<spnOverride numeric="40436" spn="Reliance"/> +<spnOverride numeric="40437" spn="Aircel"/> +<spnOverride numeric="40438" spn="CellOne"/> +<spnOverride numeric="40440" spn="IND airtel"/> +<spnOverride numeric="40441" spn="Aircel"/> +<spnOverride numeric="40442" spn="Aircel"/> +<spnOverride numeric="40443" spn="Vodafone IN"/> +<spnOverride numeric="40444" spn="IDEA"/> +<spnOverride numeric="40445" spn="IND airtel"/> +<spnOverride numeric="40446" spn="Vodafone IN"/> +<spnOverride numeric="40449" spn="IND airtel"/> +<spnOverride numeric="40450" spn="Reliance"/> +<spnOverride numeric="40451" spn="CellOne"/> +<spnOverride numeric="40452" spn="Reliance"/> +<spnOverride numeric="40453" spn="CellOne"/> +<spnOverride numeric="40454" spn="CellOne"/> +<spnOverride numeric="40455" spn="CellOne"/> +<spnOverride numeric="40456" spn="IDEA"/> +<spnOverride numeric="40457" spn="CellOne"/> +<spnOverride numeric="40458" spn="CellOne"/> +<spnOverride numeric="40459" spn="CellOne"/> +<spnOverride numeric="40460" spn="Vodafone IN"/> +<spnOverride numeric="40462" spn="CellOne"/> +<spnOverride numeric="40464" spn="CellOne"/> +<spnOverride numeric="40466" spn="CellOne"/> +<spnOverride numeric="40467" spn="Reliance"/> +<spnOverride numeric="40468" spn="IN-DOLPHIN"/> +<spnOverride numeric="40469" spn="IN-DOLPHIN"/> +<spnOverride numeric="40470" spn="IND airtel"/> +<spnOverride numeric="40471" spn="CellOne"/> +<spnOverride numeric="40472" spn="CellOne"/> +<spnOverride numeric="40473" spn="CellOne"/> +<spnOverride numeric="40474" spn="CellOne"/> +<spnOverride numeric="40475" spn="CellOne"/> +<spnOverride numeric="40476" spn="CellOne"/> +<spnOverride numeric="40477" spn="CellOne"/> +<spnOverride numeric="40478" spn="IDEA"/> +<spnOverride numeric="40479" spn="CellOne"/> +<spnOverride numeric="40480" spn="CellOne"/> +<spnOverride numeric="40481" spn="CellOne"/> +<spnOverride numeric="40482" spn="IDEA"/> +<spnOverride numeric="40483" spn="Reliance"/> +<spnOverride numeric="40484" spn="Vodafone IN"/> +<spnOverride numeric="40485" spn="Reliance"/> +<spnOverride numeric="40486" spn="Vodafone IN"/> +<spnOverride numeric="40487" spn="IDEA"/> +<spnOverride numeric="40488" spn="Vodafone IN"/> +<spnOverride numeric="40489" spn="IDEA"/> +<spnOverride numeric="40490" spn="IND airtel"/> +<spnOverride numeric="40491" spn="Aircel"/> +<spnOverride numeric="40492" spn="IND airtel"/> +<spnOverride numeric="40493" spn="IND airtel"/> +<spnOverride numeric="40494" spn="IND airtel"/> +<spnOverride numeric="40495" spn="IND airtel"/> +<spnOverride numeric="40496" spn="IND airtel"/> +<spnOverride numeric="40497" spn="IND airtel"/> +<spnOverride numeric="40498" spn="IND airtel"/> +<spnOverride numeric="40501" spn="Reliance"/> +<spnOverride numeric="405025" spn="TATA DOCOMO"/> +<spnOverride numeric="405026" spn="TATA TELE"/> +<spnOverride numeric="405027" spn="TATA DOCOMO"/> +<spnOverride numeric="405028" spn="TATA TELE"/> +<spnOverride numeric="405029" spn="TATA DOCOMO"/> +<spnOverride numeric="405030" spn="TATA DOCOMO"/> +<spnOverride numeric="405031" spn="TATA DOCOMO"/> +<spnOverride numeric="405032" spn="TATA DOCOMO"/> +<spnOverride numeric="405033" spn="TATA TELE"/> +<spnOverride numeric="405034" spn="TATA DOCOMO"/> +<spnOverride numeric="405035" spn="TATA DOCOMO"/> +<spnOverride numeric="405036" spn="TATA DOCOMO"/> +<spnOverride numeric="405037" spn="TATA DOCOMO"/> +<spnOverride numeric="405038" spn="TATA DOCOMO"/> +<spnOverride numeric="405039" spn="TATA DOCOMO"/> +<spnOverride numeric="405040" spn="TATA TELE"/> +<spnOverride numeric="405041" spn="TATA DOCOMO"/> +<spnOverride numeric="405042" spn="TATA DOCOMO"/> +<spnOverride numeric="405043" spn="TATA DOCOMO"/> +<spnOverride numeric="405044" spn="TATA DOCOMO"/> +<spnOverride numeric="405045" spn="TATA DOCOMO"/> +<spnOverride numeric="405046" spn="TATA DOCOMO"/> +<spnOverride numeric="405047" spn="TATA DOCOMO"/> +<spnOverride numeric="40505" spn="Reliance"/> +<spnOverride numeric="40506" spn="Reliance"/> +<spnOverride numeric="40507" spn="Reliance"/> +<spnOverride numeric="40508" spn="Reliance"/> +<spnOverride numeric="40509" spn="Reliance"/> +<spnOverride numeric="40510" spn="Reliance"/> +<spnOverride numeric="40511" spn="Reliance"/> +<spnOverride numeric="40512" spn="Reliance"/> +<spnOverride numeric="40513" spn="Reliance"/> +<spnOverride numeric="40514" spn="Reliance"/> +<spnOverride numeric="40515" spn="Reliance"/> +<spnOverride numeric="40517" spn="Reliance"/> +<spnOverride numeric="40518" spn="Reliance"/> +<spnOverride numeric="40519" spn="Reliance"/> +<spnOverride numeric="40520" spn="Reliance"/> +<spnOverride numeric="40521" spn="Reliance"/> +<spnOverride numeric="40522" spn="Reliance"/> +<spnOverride numeric="40523" spn="Reliance"/> +<spnOverride numeric="40525" spn="TATA DOCOMO"/> +<spnOverride numeric="40527" spn="TATA DOCOMO"/> +<spnOverride numeric="40529" spn="TATA DOCOMO"/> +<spnOverride numeric="40530" spn="TATA DOCOMO"/> +<spnOverride numeric="40531" spn="TATA DOCOMO"/> +<spnOverride numeric="40532" spn="TATA DOCOMO"/> +<spnOverride numeric="40534" spn="TATA DOCOMO"/> +<spnOverride numeric="40535" spn="TATA DOCOMO"/> +<spnOverride numeric="40536" spn="TATA DOCOMO"/> +<spnOverride numeric="40537" spn="TATA DOCOMO"/> +<spnOverride numeric="40538" spn="TATA DOCOMO"/> +<spnOverride numeric="40539" spn="TATA DOCOMO"/> +<spnOverride numeric="40541" spn="TATA DOCOMO"/> +<spnOverride numeric="40542" spn="TATA DOCOMO"/> +<spnOverride numeric="40543" spn="TATA DOCOMO"/> +<spnOverride numeric="40544" spn="TATA DOCOMO"/> +<spnOverride numeric="40545" spn="TATA DOCOMO"/> +<spnOverride numeric="40546" spn="TATA DOCOMO"/> +<spnOverride numeric="40547" spn="TATA DOCOMO"/> +<spnOverride numeric="40551" spn="IND airtel"/> +<spnOverride numeric="40552" spn="IND airtel"/> +<spnOverride numeric="40553" spn="IND airtel"/> +<spnOverride numeric="40554" spn="IND airtel"/> +<spnOverride numeric="40555" spn="IND airtel"/> +<spnOverride numeric="40556" spn="IND airtel"/> +<spnOverride numeric="40566" spn="Vodafone IN"/> +<spnOverride numeric="40567" spn="Vodafone IN"/> +<spnOverride numeric="40570" spn="IDEA"/> +<spnOverride numeric="405750" spn="Vodafone IN"/> +<spnOverride numeric="405751" spn="Vodafone IN"/> +<spnOverride numeric="405752" spn="Vodafone IN"/> +<spnOverride numeric="405753" spn="Vodafone IN"/> +<spnOverride numeric="405754" spn="Vodafone IN"/> +<spnOverride numeric="405755" spn="Vodafone IN"/> +<spnOverride numeric="405756" spn="Vodafone IN"/> +<spnOverride numeric="405799" spn="IDEA"/> +<spnOverride numeric="405800" spn="Aircel"/> +<spnOverride numeric="405801" spn="Aircel"/> +<spnOverride numeric="405802" spn="Aircel"/> +<spnOverride numeric="405803" spn="Aircel"/> +<spnOverride numeric="405804" spn="Aircel"/> +<spnOverride numeric="405805" spn="Aircel"/> +<spnOverride numeric="405806" spn="Aircel"/> +<spnOverride numeric="405807" spn="Aircel"/> +<spnOverride numeric="405808" spn="Aircel"/> +<spnOverride numeric="405809" spn="Aircel"/> +<spnOverride numeric="405810" spn="Aircel"/> +<spnOverride numeric="405811" spn="Aircel"/> +<spnOverride numeric="405812" spn="Aircel"/> +<spnOverride numeric="405813" spn="IN UNITECH"/> +<spnOverride numeric="405814" spn="IN UNITECH"/> +<spnOverride numeric="405815" spn="IN UNITECH"/> +<spnOverride numeric="405816" spn="IN UNITECH"/> +<spnOverride numeric="405817" spn="IN UNITECH"/> +<spnOverride numeric="405818" spn="IN Telenor"/> +<spnOverride numeric="405819" spn="IN Telenor"/> +<spnOverride numeric="405820" spn="IN UNITECH"/> +<spnOverride numeric="405821" spn="IN UNITECH"/> +<spnOverride numeric="405822" spn="IN UNITECH"/> +<spnOverride numeric="405823" spn="VIDEOCON"/> +<spnOverride numeric="405824" spn="VIDEOCON"/> +<spnOverride numeric="405825" spn="VIDEOCON"/> +<spnOverride numeric="405827" spn="VIDEOCON"/> +<spnOverride numeric="405828" spn="VIDEOCON"/> +<spnOverride numeric="405829" spn="VIDEOCON"/> +<spnOverride numeric="405830" spn="VIDEOCON"/> +<spnOverride numeric="405831" spn="VIDEOCON"/> +<spnOverride numeric="405832" spn="VIDEOCON"/> +<spnOverride numeric="405833" spn="VIDEOCON"/> +<spnOverride numeric="405834" spn="VIDEOCON"/> +<spnOverride numeric="405835" spn="VIDEOCON"/> +<spnOverride numeric="405836" spn="VIDEOCON"/> +<spnOverride numeric="405837" spn="VIDEOCON"/> +<spnOverride numeric="405838" spn="VIDEOCON"/> +<spnOverride numeric="405839" spn="VIDEOCON"/> +<spnOverride numeric="405840" spn="IND-JIO"/> +<spnOverride numeric="405841" spn="VIDEOCON"/> +<spnOverride numeric="405842" spn="VIDEOCON"/> +<spnOverride numeric="405843" spn="VIDEOCON"/> +<spnOverride numeric="405844" spn="IN UNITECH"/> +<spnOverride numeric="405845" spn="IDEA"/> +<spnOverride numeric="405846" spn="IDEA"/> +<spnOverride numeric="405848" spn="IDEA"/> +<spnOverride numeric="405849" spn="IDEA"/> +<spnOverride numeric="405850" spn="IDEA"/> +<spnOverride numeric="405852" spn="IDEA"/> +<spnOverride numeric="405853" spn="IDEA"/> +<spnOverride numeric="405854" spn="IND-JIO"/> +<spnOverride numeric="405855" spn="IND-JIO"/> +<spnOverride numeric="405856" spn="IND-JIO"/> +<spnOverride numeric="405857" spn="IND-JIO"/> +<spnOverride numeric="405858" spn="IND-JIO"/> +<spnOverride numeric="405859" spn="IND-JIO"/> +<spnOverride numeric="405860" spn="IND-JIO"/> +<spnOverride numeric="405861" spn="IND-JIO"/> +<spnOverride numeric="405862" spn="IND-JIO"/> +<spnOverride numeric="405863" spn="IND-JIO"/> +<spnOverride numeric="405864" spn="IND-JIO"/> +<spnOverride numeric="405865" spn="IND-JIO"/> +<spnOverride numeric="405866" spn="IND-JIO"/> +<spnOverride numeric="405867" spn="IND-JIO"/> +<spnOverride numeric="405868" spn="IND-JIO"/> +<spnOverride numeric="405869" spn="IND-JIO"/> +<spnOverride numeric="405870" spn="IND-JIO"/> +<spnOverride numeric="405871" spn="IND-JIO"/> +<spnOverride numeric="405872" spn="IND-JIO"/> +<spnOverride numeric="405873" spn="IND-JIO"/> +<spnOverride numeric="405874" spn="IND-JIO"/> +<spnOverride numeric="405875" spn="IN Telenor"/> +<spnOverride numeric="405876" spn="IN Telenor"/> +<spnOverride numeric="405877" spn="IN UNITECH"/> +<spnOverride numeric="405878" spn="IN UNITECH"/> +<spnOverride numeric="405879" spn="IN Telenor"/> +<spnOverride numeric="405880" spn="IN UNITECH"/> +<spnOverride numeric="405882" spn="Reliance"/> +<spnOverride numeric="40589" spn="MTS"/> +<spnOverride numeric="405925" spn="IN UNITECH"/> +<spnOverride numeric="405926" spn="IN UNITECH"/> +<spnOverride numeric="405927" spn="IN Telenor"/> +<spnOverride numeric="405928" spn="IN UNITECH"/> +<spnOverride numeric="405929" spn="IN Telenor"/> +<spnOverride numeric="405932" spn="VIDEOCON"/> +<spnOverride numeric="41001" spn="Jazz"/> +<spnOverride numeric="41003" spn="PK-UFONE"/> +<spnOverride numeric="41004" spn="ZONG"/> +<spnOverride numeric="41005" spn="SCOM-PK"/> +<spnOverride numeric="41006" spn="Telenor PK"/> +<spnOverride numeric="41007" spn="Jazz"/> +<spnOverride numeric="41201" spn="AF AWCC"/> +<spnOverride numeric="41220" spn="ROSHAN"/> +<spnOverride numeric="41240" spn="MTN AF"/> +<spnOverride numeric="41250" spn="Etisalat Af"/> +<spnOverride numeric="41301" spn="Mobitel LK"/> +<spnOverride numeric="41302" spn="DIALOG"/> +<spnOverride numeric="41303" spn="SRI Etisalat"/> +<spnOverride numeric="41305" spn="SRI AIRTEL"/> +<spnOverride numeric="41308" spn="Hutch"/> +<spnOverride numeric="41401" spn="MM 900"/> +<spnOverride numeric="41405" spn="Ooredoo"/> +<spnOverride numeric="41406" spn="Telenor"/> +<spnOverride numeric="41409" spn="MYTEL"/> +<spnOverride numeric="41501" spn="alfa"/> +<spnOverride numeric="41503" spn="touch"/> +<spnOverride numeric="41505" spn="LBN OGERO Mobile"/> +<spnOverride numeric="41601" spn="Zain JO"/> +<spnOverride numeric="41603" spn="UMNIAH"/> +<spnOverride numeric="41677" spn="Orange"/> +<spnOverride numeric="41701" spn="SYRIATEL"/> +<spnOverride numeric="41702" spn="MTN"/> +<spnOverride numeric="41805" spn="ASIACELL"/> +<spnOverride numeric="41820" spn="zain IQ"/> +<spnOverride numeric="41830" spn="IRAQNA"/> +<spnOverride numeric="41840" spn="KOREK"/> +<spnOverride numeric="41902" spn="Zain KW"/> +<spnOverride numeric="41903" spn="Ooredoo"/> +<spnOverride numeric="41904" spn="KT, VIVA"/> +<spnOverride numeric="42001" spn="STC"/> +<spnOverride numeric="42003" spn="Mobily-KSA"/> +<spnOverride numeric="42004" spn="Zain KSA"/> +<spnOverride numeric="42101" spn="SabaFon"/> +<spnOverride numeric="42102" spn="MTN"/> +<spnOverride numeric="42104" spn="Y-Telecom"/> +<spnOverride numeric="42202" spn="Omantel"/> +<spnOverride numeric="42203" spn="Ooredoo Oman"/> +<spnOverride numeric="42402" spn="ETISALAT"/> +<spnOverride numeric="42403" spn="du"/> +<spnOverride numeric="42501" spn="Partner IL"/> +<spnOverride numeric="42502" spn="Cellcom IL"/> +<spnOverride numeric="42503" spn="IL Pelephone"/> +<spnOverride numeric="42505" spn="JAWWAL-PALESTINE"/> +<spnOverride numeric="42506" spn="PS, Wataniya Mobile"/> +<spnOverride numeric="42507" spn="Hot Mobile Ltd."/> +<spnOverride numeric="42528" spn="Hot Mobile Ltd."/> +<spnOverride numeric="42601" spn="BATELCO"/> +<spnOverride numeric="42602" spn="Zain BH"/> +<spnOverride numeric="42604" spn="VIVA BH"/> +<spnOverride numeric="42701" spn="Ooredoo"/> +<spnOverride numeric="42702" spn="vodafone"/> +<spnOverride numeric="42801" spn="Skytel MN"/> +<spnOverride numeric="42806" spn="GMOBILE_MN"/> +<spnOverride numeric="42888" spn="MONGOLIA UNITEL LLC"/> +<spnOverride numeric="42899" spn="MN MobiCom"/> +<spnOverride numeric="42901" spn="Nepal Telecom"/> +<spnOverride numeric="42902" spn="Ncell"/> +<spnOverride numeric="42904" spn="SmartCell"/> +<spnOverride numeric="43211" spn="IR-TCI"/> +<spnOverride numeric="43214" spn="IR KISH"/> +<spnOverride numeric="43220" spn="IRN 20"/> +<spnOverride numeric="43232" spn="Iran Taliya"/> +<spnOverride numeric="43235" spn="MTN Irancell"/> +<spnOverride numeric="43404" spn="Beeline UZ"/> +<spnOverride numeric="43405" spn="UZB Ucell"/> +<spnOverride numeric="43407" spn="UMS-UZB"/> +<spnOverride numeric="43408" spn="UzMobile"/> +<spnOverride numeric="43601" spn="TCELL"/> +<spnOverride numeric="43602" spn="TCELL"/> +<spnOverride numeric="43603" spn="MegaFon TJK"/> +<spnOverride numeric="43604" spn="Babilon-M"/> +<spnOverride numeric="43605" spn="BEELINE TJ"/> +<spnOverride numeric="43701" spn="Beeline KG"/> +<spnOverride numeric="43705" spn="MegaCom"/> +<spnOverride numeric="43709" spn="O!"/> +<spnOverride numeric="43801" spn="MTS TM"/> +<spnOverride numeric="43802" spn="TM CELL"/> +<spnOverride numeric="44000" spn="Ymobile"/> +<spnOverride numeric="44010" spn="JP DOCOMO"/> +<spnOverride numeric="44020" spn="SoftBank"/> +<spnOverride numeric="44050" spn="KDDI"/> +<spnOverride numeric="44051" spn="KDDI"/> +<spnOverride numeric="44100" spn="WCP ( SoftBank AXGP Network)"/> +<spnOverride numeric="44110" spn="UQ(WiMAX 2+)"/> +<spnOverride numeric="45002" spn="KT"/> +<spnOverride numeric="45005" spn="KOR SK Telecom"/> +<spnOverride numeric="45006" spn="KOR LG Uplus"/> +<spnOverride numeric="45008" spn="KT"/> +<spnOverride numeric="45201" spn="VN Mobifone"/> +<spnOverride numeric="45202" spn="VN VINAPHONE"/> +<spnOverride numeric="45204" spn="VIETTEL"/> +<spnOverride numeric="45205" spn="Vietnamobile"/> +<spnOverride numeric="45207" spn="Gmobile"/> +<spnOverride numeric="45400" spn="CSL"/> +<spnOverride numeric="45402" spn="CSL"/> +<spnOverride numeric="45403" spn="3"/> +<spnOverride numeric="45404" spn="3"/> +<spnOverride numeric="45406" spn="SmarTone HK"/> +<spnOverride numeric="45410" spn="CSL"/> +<spnOverride numeric="45412" spn="China Mobile HK"/> +<spnOverride numeric="45413" spn="China Mobile HK"/> +<spnOverride numeric="45415" spn="SmarTone HK"/> +<spnOverride numeric="45416" spn="CSL"/> +<spnOverride numeric="45417" spn="SmarTone HK"/> +<spnOverride numeric="45418" spn="CSL"/> +<spnOverride numeric="45419" spn="CSL"/> +<spnOverride numeric="45420" spn="CSL"/> +<spnOverride numeric="45500" spn="SmarTone MAC"/> +<spnOverride numeric="45501" spn="CTM"/> +<spnOverride numeric="45502" spn="CT Macao"/> +<spnOverride numeric="45503" spn="3 Macau"/> +<spnOverride numeric="45504" spn="CTM"/> +<spnOverride numeric="45505" spn="3 Macao"/> +<spnOverride numeric="45506" spn="SmarTone MAC"/> +<spnOverride numeric="45507" spn="China Telecom (Macao)"/> +<spnOverride numeric="45601" spn="Cellcard"/> +<spnOverride numeric="45604" spn="qb"/> +<spnOverride numeric="45605" spn="SMART"/> +<spnOverride numeric="45606" spn="SMART"/> +<spnOverride numeric="45608" spn="Metfone"/> +<spnOverride numeric="45609" spn="Beeline KH"/> +<spnOverride numeric="45611" spn="KH SEATEL"/> +<spnOverride numeric="45618" spn="Mfone"/> +<spnOverride numeric="45701" spn="LAO GSM"/> +<spnOverride numeric="45702" spn="ETL MOBILE NETWORK"/> +<spnOverride numeric="45703" spn="Unitel"/> +<spnOverride numeric="45708" spn="BEELINE LAO"/> +<spnOverride numeric="46000" spn="CHINA MOBILE"/> +<spnOverride numeric="46001" spn="CHN-UNICOM"/> +<spnOverride numeric="46002" spn="CHINA MOBILE"/> +<spnOverride numeric="46003" spn="CHN-CT"/> +<spnOverride numeric="46004" spn="CHINA MOBILE"/> +<spnOverride numeric="46007" spn="CHINA MOBILE"/> +<spnOverride numeric="46008" spn="CHINA MOBILE"/> +<spnOverride numeric="46009" spn="CHN-UNICOM"/> +<spnOverride numeric="46011" spn="CHN-CT"/> +<spnOverride numeric="46601" spn="Far EasTone"/> +<spnOverride numeric="46605" spn="TWN APT"/> +<spnOverride numeric="46668" spn="ACeS"/> +<spnOverride numeric="46688" spn="KGT-Online"/> +<spnOverride numeric="46689" spn="T Star"/> +<spnOverride numeric="46692" spn="Chunghwa Telecom"/> +<spnOverride numeric="46693" spn="TWN MOBITAI"/> +<spnOverride numeric="46697" spn="TW Mobile"/> +<spnOverride numeric="46699" spn="TWM TransAsi"/> +<spnOverride numeric="46705" spn="Koryolink"/> +<spnOverride numeric="470001" spn="Grameenphone"/> +<spnOverride numeric="47001" spn="Grameenphone"/> +<spnOverride numeric="47002" spn="robi axiata"/> +<spnOverride numeric="47003" spn="Banglalink"/> +<spnOverride numeric="47004" spn="BGD bMobile"/> +<spnOverride numeric="47007" spn="Airtel"/> +<spnOverride numeric="47009" spn="BGD-BIEL"/> +<spnOverride numeric="47201" spn="DHIRAAGU"/> +<spnOverride numeric="47202" spn="Ooredoo Maldives PVT LTD"/> +<spnOverride numeric="50212" spn="MY MAXIS"/> +<spnOverride numeric="50213" spn="MY CELCOM 3G"/> +<spnOverride numeric="502152" spn="Yes 4G"/> +<spnOverride numeric="502153" spn="unifi"/> +<spnOverride numeric="502156" spn="MYSALTEL"/> +<spnOverride numeric="50216" spn="Digi"/> +<spnOverride numeric="50218" spn="U MOBILE"/> +<spnOverride numeric="50219" spn="MY CELCOM"/> +<spnOverride numeric="50501" spn="Telstra Mobile"/> +<spnOverride numeric="50502" spn="Optus AU"/> +<spnOverride numeric="50503" spn="vodafone AU"/> +<spnOverride numeric="50506" spn="3TELSTRA"/> +<spnOverride numeric="50510" spn="Norfolk Telecom"/> +<spnOverride numeric="50516" spn="VicTrack"/> +<spnOverride numeric="50550" spn="Pivotel"/> +<spnOverride numeric="50571" spn="Telstra Mobile"/> +<spnOverride numeric="50572" spn="Telstra Mobile"/> +<spnOverride numeric="51000" spn="ACeS"/> +<spnOverride numeric="51001" spn="IND INDOSAT"/> +<spnOverride numeric="51008" spn="IND XL"/> +<spnOverride numeric="51009" spn="Smartfren"/> +<spnOverride numeric="51010" spn="IND TELKOMSEL"/> +<spnOverride numeric="51011" spn="IND XL"/> +<spnOverride numeric="51021" spn="IND INDOSAT"/> +<spnOverride numeric="51028" spn="Smartfren"/> +<spnOverride numeric="51088" spn="BoltSuper4G"/> +<spnOverride numeric="51089" spn="3"/> +<spnOverride numeric="51401" spn="TLS-TC"/> +<spnOverride numeric="51402" spn="TLS-TT"/> +<spnOverride numeric="51502" spn="Globe Telecom-PH"/> +<spnOverride numeric="51503" spn="SMART"/> +<spnOverride numeric="51505" spn="PH Sun Cellular"/> +<spnOverride numeric="51511" spn="ACeS"/> +<spnOverride numeric="52000" spn="TH 3G+"/> +<spnOverride numeric="52001" spn="AIS"/> +<spnOverride numeric="52003" spn="AIS"/> +<spnOverride numeric="52004" spn="TRUE-H"/> +<spnOverride numeric="52005" spn="dtac TriNet"/> +<spnOverride numeric="52015" spn="TOT3G"/> +<spnOverride numeric="52018" spn="TH-DTAC"/> +<spnOverride numeric="52020" spn="ACeS"/> +<spnOverride numeric="52023" spn="TH GSM 1800"/> +<spnOverride numeric="52099" spn="TRUE-H"/> +<spnOverride numeric="52501" spn="Singtel"/> +<spnOverride numeric="52502" spn="Singtel"/> +<spnOverride numeric="52503" spn="SGP-M1"/> +<spnOverride numeric="52505" spn="StarHub"/> +<spnOverride numeric="52507" spn="SGP Call Zone"/> +<spnOverride numeric="52508" spn="StarHub"/> +<spnOverride numeric="52802" spn="PCSB"/> +<spnOverride numeric="52811" spn="BRU-DSTCom"/> +<spnOverride numeric="53001" spn="vodafone NZ"/> +<spnOverride numeric="53005" spn="Spark NZ"/> +<spnOverride numeric="53024" spn="2degrees"/> +<spnOverride numeric="53701" spn="bmobile"/> +<spnOverride numeric="53702" spn="Telikom PNG"/> +<spnOverride numeric="53703" spn="DIGICEL"/> +<spnOverride numeric="53901" spn="U-CALL"/> +<spnOverride numeric="53988" spn="Digicel Tonga"/> +<spnOverride numeric="54001" spn="SI BREEZE"/> +<spnOverride numeric="54002" spn="bmobile"/> +<spnOverride numeric="54101" spn="VUT SMILE"/> +<spnOverride numeric="54105" spn="Digicel"/> +<spnOverride numeric="54201" spn="FJ VODAFONE"/> +<spnOverride numeric="54202" spn="DIGICEL"/> +<spnOverride numeric="54301" spn="Manuia"/> +<spnOverride numeric="544110" spn="Bluesky Communications"/> +<spnOverride numeric="54509" spn="KL-Frigate"/> +<spnOverride numeric="54601" spn="NCL MOBILIS"/> +<spnOverride numeric="54715" spn="VODAFONE PF"/> +<spnOverride numeric="54720" spn="F-VINI"/> +<spnOverride numeric="54801" spn="CK KOKANET"/> +<spnOverride numeric="54900" spn="DIGICEL"/> +<spnOverride numeric="54927" spn="Bluesky"/> +<spnOverride numeric="55001" spn="FSM Telecom"/> +<spnOverride numeric="55101" spn="MH-NTA"/> +<spnOverride numeric="55201" spn="PalauCel"/> +<spnOverride numeric="55280" spn="PLWPMC"/> +<spnOverride numeric="55301" spn="FSM Telecom"/> +<spnOverride numeric="55401" spn="Teletok"/> +<spnOverride numeric="60201" spn="Orange EG"/> +<spnOverride numeric="60202" spn="vodafone EG"/> +<spnOverride numeric="60203" spn="Etisalat"/> +<spnOverride numeric="60204" spn="EGYwe"/> +<spnOverride numeric="60301" spn="ALG Mobilis"/> +<spnOverride numeric="60302" spn="Djezzy"/> +<spnOverride numeric="60303" spn="ooredoo Algeria"/> +<spnOverride numeric="60400" spn="Orange MA"/> +<spnOverride numeric="60401" spn="MOR IAM"/> +<spnOverride numeric="60402" spn="inwi"/> +<spnOverride numeric="60501" spn="Orange"/> +<spnOverride numeric="60502" spn="TUNISIE TELECOM"/> +<spnOverride numeric="60503" spn="TUNISIANA"/> +<spnOverride numeric="60600" spn="Libyana"/> +<spnOverride numeric="60601" spn="Al Madar"/> +<spnOverride numeric="60701" spn="GAMCEL"/> +<spnOverride numeric="60702" spn="AFRICELL"/> +<spnOverride numeric="60703" spn="GM COMIUM"/> +<spnOverride numeric="60704" spn="Qcell"/> +<spnOverride numeric="60801" spn="SN ALIZE"/> +<spnOverride numeric="60802" spn="SN-SENTEL SG"/> +<spnOverride numeric="60803" spn="SEN expresso"/> +<spnOverride numeric="60901" spn="MR MATTEL"/> +<spnOverride numeric="60902" spn="MR Expresso"/> +<spnOverride numeric="60910" spn="MAURITEL"/> +<spnOverride numeric="61001" spn="MALITEL ML"/> +<spnOverride numeric="61002" spn="ORANGE ML"/> +<spnOverride numeric="61003" spn="TELECEL ML"/> +<spnOverride numeric="61101" spn="Orange GN"/> +<spnOverride numeric="61102" spn="GN LAGUI"/> +<spnOverride numeric="61104" spn="GNMTN"/> +<spnOverride numeric="61105" spn="GINCL"/> +<spnOverride numeric="61202" spn="MOOV CI"/> +<spnOverride numeric="61203" spn="Orange CI"/> +<spnOverride numeric="61204" spn="KoZ"/> +<spnOverride numeric="61205" spn="MTN CI"/> +<spnOverride numeric="61301" spn="ONATEL"/> +<spnOverride numeric="61302" spn="Orange Burkina"/> +<spnOverride numeric="61402" spn="Airtel"/> +<spnOverride numeric="61403" spn="ETISALAT NER"/> +<spnOverride numeric="61404" spn="Orange NE"/> +<spnOverride numeric="61501" spn="TG-TOGO CELL"/> +<spnOverride numeric="61503" spn="ETISALAT TOGO"/> +<spnOverride numeric="61602" spn="ETISALAT BENIN"/> +<spnOverride numeric="61603" spn="MTN BENIN"/> +<spnOverride numeric="61604" spn="BELL BENIN COMMUNICATION"/> +<spnOverride numeric="61605" spn="GloBenin"/> +<spnOverride numeric="61701" spn="CELLPLUS-MRU"/> +<spnOverride numeric="61703" spn="MTML"/> +<spnOverride numeric="61710" spn="EMTEL-MRU"/> +<spnOverride numeric="61801" spn="LBR Lonestar Cell"/> +<spnOverride numeric="61804" spn="Novafone 4G"/> +<spnOverride numeric="61807" spn="Orange Liberia"/> +<spnOverride numeric="61901" spn="Airtel"/> +<spnOverride numeric="61905" spn="Africell"/> +<spnOverride numeric="62001" spn="GH MTN"/> +<spnOverride numeric="62002" spn="GH Vodafone"/> +<spnOverride numeric="62003" spn="AirtelTigo"/> +<spnOverride numeric="62006" spn="AirtelTigo"/> +<spnOverride numeric="62120" spn="Airtel"/> +<spnOverride numeric="62130" spn="MTN - NG"/> +<spnOverride numeric="62140" spn="ntel"/> +<spnOverride numeric="62150" spn="Glo NG"/> +<spnOverride numeric="62160" spn="9mobile"/> +<spnOverride numeric="62201" spn="Airtel"/> +<spnOverride numeric="62203" spn="Tigo TD"/> +<spnOverride numeric="62207" spn="SALAM"/> +<spnOverride numeric="62301" spn="ETISALAT RCA"/> +<spnOverride numeric="62302" spn="Telecel"/> +<spnOverride numeric="62303" spn="Orange RCA"/> +<spnOverride numeric="62304" spn="NationLink"/> +<spnOverride numeric="62401" spn="MTN CAM"/> +<spnOverride numeric="62402" spn="Orange CAM"/> +<spnOverride numeric="62404" spn="Nexttel"/> +<spnOverride numeric="62501" spn="CVMOVEL"/> +<spnOverride numeric="62502" spn="Unitel T+"/> +<spnOverride numeric="62601" spn="STP CSTmovel"/> +<spnOverride numeric="62602" spn="Unitel STP"/> +<spnOverride numeric="62701" spn="GETESA"/> +<spnOverride numeric="62703" spn="GNQ-Muni"/> +<spnOverride numeric="62801" spn="LIBERTIS"/> +<spnOverride numeric="62802" spn="ETISALAT GAB"/> +<spnOverride numeric="62803" spn="Airtel"/> +<spnOverride numeric="62804" spn="AZUR"/> +<spnOverride numeric="62901" spn="Airtel"/> +<spnOverride numeric="62902" spn="AZUR COG"/> +<spnOverride numeric="62907" spn="WARID RC"/> +<spnOverride numeric="62910" spn="COG MTN"/> +<spnOverride numeric="63001" spn="Vodacom Congo"/> +<spnOverride numeric="63002" spn="Airtel"/> +<spnOverride numeric="63005" spn="SCELL CD"/> +<spnOverride numeric="63086" spn="Orange RDC"/> +<spnOverride numeric="63088" spn="CD Smart"/> +<spnOverride numeric="63089" spn="TIGO DRC"/> +<spnOverride numeric="63090" spn="Africell RDC"/> +<spnOverride numeric="63102" spn="UNITEL"/> +<spnOverride numeric="63104" spn="MOVICEL"/> +<spnOverride numeric="63202" spn="MTN"/> +<spnOverride numeric="63203" spn="Orange BS"/> +<spnOverride numeric="63301" spn="C&W SEY"/> +<spnOverride numeric="63310" spn="Airtel"/> +<spnOverride numeric="63401" spn="Zain SDN"/> +<spnOverride numeric="63402" spn="MTN"/> +<spnOverride numeric="63510" spn="MTN RWANDA"/> +<spnOverride numeric="63513" spn="TIGO RWANDA"/> +<spnOverride numeric="63514" spn="Airtel"/> +<spnOverride numeric="63601" spn="ETH MTN"/> +<spnOverride numeric="63701" spn="SO Telesom"/> +<spnOverride numeric="63704" spn="SOMAFONE"/> +<spnOverride numeric="63720" spn="Somnet TELECOM Inc"/> +<spnOverride numeric="63730" spn="Som Golis"/> +<spnOverride numeric="63750" spn="Hormuud Telecom"/> +<spnOverride numeric="63771" spn="SOMTEL"/> +<spnOverride numeric="63801" spn="DJ EVATIS"/> +<spnOverride numeric="63902" spn="Safaricom"/> +<spnOverride numeric="63903" spn="Airtel"/> +<spnOverride numeric="63907" spn="Telkom 2G"/> +<spnOverride numeric="63910" spn="FAIBA"/> +<spnOverride numeric="64002" spn="TIGO - TZ"/> +<spnOverride numeric="64003" spn="ZANTEL-TZ"/> +<spnOverride numeric="64004" spn="VodaCom"/> +<spnOverride numeric="64005" spn="Airtel"/> +<spnOverride numeric="64101" spn="Airtel"/> +<spnOverride numeric="64106" spn="VodafoneUG"/> +<spnOverride numeric="64110" spn="MTN-UGANDA"/> +<spnOverride numeric="64111" spn="Uganda Telecom"/> +<spnOverride numeric="64114" spn="Africell Uganda"/> +<spnOverride numeric="64118" spn="Suretelcom"/> +<spnOverride numeric="64122" spn="Airtel"/> +<spnOverride numeric="64201" spn="BDI ECONET"/> +<spnOverride numeric="64202" spn="BDI TEMPO-AFRICELL"/> +<spnOverride numeric="64203" spn="ONATEL BDI"/> +<spnOverride numeric="64207" spn="SMART"/> +<spnOverride numeric="64282" spn="TELECEL-BDI"/> +<spnOverride numeric="64301" spn="MOZ - mCel"/> +<spnOverride numeric="64303" spn="MOVITEL"/> +<spnOverride numeric="64304" spn="VodaCom-MZ"/> +<spnOverride numeric="64501" spn="Airtel"/> +<spnOverride numeric="64502" spn="MTN ZM"/> +<spnOverride numeric="64503" spn="ZAMTEL"/> +<spnOverride numeric="64601" spn="Airtel"/> +<spnOverride numeric="64602" spn="Orange MG"/> +<spnOverride numeric="64604" spn="TELMA"/> +<spnOverride numeric="64605" spn="Bip"/> +<spnOverride numeric="64700" spn="Orange re"/> +<spnOverride numeric="64701" spn="MAORE MOBILE"/> +<spnOverride numeric="64702" spn="ONLY"/> +<spnOverride numeric="64703" spn="FREE MOBILE RE"/> +<spnOverride numeric="64710" spn="SFR REUNION"/> +<spnOverride numeric="64801" spn="ZW NET*ONE"/> +<spnOverride numeric="64803" spn="TELECEL ZW"/> +<spnOverride numeric="64804" spn="ZW ECONET"/> +<spnOverride numeric="64901" spn="MTC NAMIBIA"/> +<spnOverride numeric="64903" spn="tnmobile"/> +<spnOverride numeric="65001" spn="TNM"/> +<spnOverride numeric="65010" spn="Airtel"/> +<spnOverride numeric="65101" spn="Vodacom Lesotho"/> +<spnOverride numeric="65102" spn="LS-ETL"/> +<spnOverride numeric="65201" spn="BW MASCOM"/> +<spnOverride numeric="65202" spn="Orange"/> +<spnOverride numeric="65204" spn="beMOBILE"/> +<spnOverride numeric="65302" spn="Swazi Mobile"/> +<spnOverride numeric="65310" spn="Swazi-MTN"/> +<spnOverride numeric="65401" spn="HURI"/> +<spnOverride numeric="65402" spn="TELCO"/> +<spnOverride numeric="65501" spn="VodaCom-SA"/> +<spnOverride numeric="65502" spn="TelkomSA"/> +<spnOverride numeric="65507" spn="Cell C"/> +<spnOverride numeric="65510" spn="MTN-SA"/> +<spnOverride numeric="65538" spn="rain"/> +<spnOverride numeric="65801" spn="Sure"/> +<spnOverride numeric="65902" spn="MTN"/> +<spnOverride numeric="65903" spn="Gemtel"/> +<spnOverride numeric="65904" spn="Vivacell"/> +<spnOverride numeric="65906" spn="ZAIN SS"/> +<spnOverride numeric="70267" spn="BTL"/> +<spnOverride numeric="70269" spn="Smart"/> +<spnOverride numeric="70401" spn="CLARO GTM"/> +<spnOverride numeric="70402" spn="TIGO"/> +<spnOverride numeric="70403" spn="Movistar"/> +<spnOverride numeric="70601" spn="CLARO SLV"/> +<spnOverride numeric="70602" spn="Digicel"/> +<spnOverride numeric="70603" spn="Tigo SV"/> +<spnOverride numeric="70604" spn="Movistar"/> +<spnOverride numeric="708001" spn="CLARO HND"/> +<spnOverride numeric="70801" spn="CLARO HND"/> +<spnOverride numeric="70802" spn="TIGOHND"/> +<spnOverride numeric="708030" spn="HND"/> +<spnOverride numeric="70830" spn="HND"/> +<spnOverride numeric="71021" spn="CLARO NIC"/> +<spnOverride numeric="710300" spn="Movistar"/> +<spnOverride numeric="71073" spn="CLARO NIC"/> +<spnOverride numeric="71201" spn="I.C.E."/> +<spnOverride numeric="71202" spn="I.C.E."/> +<spnOverride numeric="71203" spn="CLARO CR"/> +<spnOverride numeric="71204" spn="Movistar"/> +<spnOverride numeric="71401" spn="+Movil - C&W PAN"/> +<spnOverride numeric="714020" spn="Movistar"/> +<spnOverride numeric="71403" spn="CLARO PA"/> +<spnOverride numeric="71404" spn="DIGICEL"/> +<spnOverride numeric="71420" spn="Movistar"/> +<spnOverride numeric="71606" spn="MOVISTAR"/> +<spnOverride numeric="71610" spn="CLARO PER"/> +<spnOverride numeric="71615" spn="Viettel Peru"/> +<spnOverride numeric="71617" spn="Entel"/> +<spnOverride numeric="722010" spn="AR - TEFMVNO"/> +<spnOverride numeric="72207" spn="AR - Movistar"/> +<spnOverride numeric="72210" spn="Movistar"/> +<spnOverride numeric="722310" spn="CLARO ARGENTINA"/> +<spnOverride numeric="72234" spn="AR PERSONAL"/> +<spnOverride numeric="722341" spn="AR PERSONAL"/> +<spnOverride numeric="72236" spn="AR PERSONAL"/> +<spnOverride numeric="72402" spn="TIM BRA"/> +<spnOverride numeric="72403" spn="TIM BRA"/> +<spnOverride numeric="72404" spn="TIM BRA"/> +<spnOverride numeric="72405" spn="Claro BRA"/> +<spnOverride numeric="72406" spn="VIVO"/> +<spnOverride numeric="72410" spn="VIVO"/> +<spnOverride numeric="72411" spn="VIVO"/> +<spnOverride numeric="72415" spn="BRA SCTL"/> +<spnOverride numeric="72416" spn="Oi"/> +<spnOverride numeric="72423" spn="VIVO"/> +<spnOverride numeric="72424" spn="Oi"/> +<spnOverride numeric="72431" spn="Oi"/> +<spnOverride numeric="72432" spn="Algar Telecom"/> +<spnOverride numeric="72433" spn="Algar Telecom"/> +<spnOverride numeric="72434" spn="Algar Telecom"/> +<spnOverride numeric="72439" spn="Nextel Brasil"/> +<spnOverride numeric="73001" spn="ENTEL PCS"/> +<spnOverride numeric="73002" spn="Movistar"/> +<spnOverride numeric="73003" spn="CLARO CHL"/> +<spnOverride numeric="73007" spn="Movistar"/> +<spnOverride numeric="73008" spn="CHL VTR"/> +<spnOverride numeric="73009" spn="WOM"/> +<spnOverride numeric="73010" spn="ENTEL PCS"/> +<spnOverride numeric="732101" spn="Claro"/> +<spnOverride numeric="732103" spn="TIGO"/> +<spnOverride numeric="732111" spn="TIGO"/> +<spnOverride numeric="732123" spn="Movistar"/> +<spnOverride numeric="732130" spn="Avantel"/> +<spnOverride numeric="732187" spn="ETB 4G"/> +<spnOverride numeric="73402" spn="DIGITEL"/> +<spnOverride numeric="73404" spn="Movistar"/> +<spnOverride numeric="73406" spn="VE_MOVILNET"/> +<spnOverride numeric="73601" spn="VIVA"/> +<spnOverride numeric="73602" spn="BOMOV"/> +<spnOverride numeric="73603" spn="TIGO"/> +<spnOverride numeric="738002" spn="GUY GTT + Do More"/> +<spnOverride numeric="73801" spn="Digicel"/> +<spnOverride numeric="73802" spn="GUY CLNK PLS"/> +<spnOverride numeric="74000" spn="Movistar"/> +<spnOverride numeric="74001" spn="CLARO"/> +<spnOverride numeric="74002" spn="CNT"/> +<spnOverride numeric="74401" spn="HOLA PARAGUAY S.A."/> +<spnOverride numeric="74402" spn="CLARO PY"/> +<spnOverride numeric="74404" spn="TIGO PY"/> +<spnOverride numeric="74405" spn="PY Personal"/> +<spnOverride numeric="74602" spn="SR.TELESUR.GSM"/> +<spnOverride numeric="74603" spn="DIGICEL"/> +<spnOverride numeric="74604" spn="UNIQA"/> +<spnOverride numeric="74801" spn="Antel"/> +<spnOverride numeric="74807" spn="Movistar"/> +<spnOverride numeric="74810" spn="CLARO URUGUAY"/> +<spnOverride numeric="750001" spn="Sure FLK"/> +<spnOverride numeric="75001" spn="Sure FLK"/> +<spnOverride numeric="90111" spn="Inmarsat"/> +<spnOverride numeric="90112" spn="Telenor Maritime"/> +<spnOverride numeric="90114" spn="AeroMobile"/> +<spnOverride numeric="90115" spn="OnAir"/> +<spnOverride numeric="90126" spn="TIM@sea"/> +<spnOverride numeric="90144" spn="AT&T"/> +<spnOverride numeric="90145" spn="AISatSea"/> +<spnOverride numeric="90146" spn="Telecom26"/> +<spnOverride numeric="90150" spn="EchoStar Mobile"/> +</spnOverrides> diff --git a/system/etc/sysconfig/fastpass.xml b/system/etc/sysconfig/fastpass.xml new file mode 100644 index 0000000000000000000000000000000000000000..6ff9bb7653dd7c653857fb7de346ae07af96c165 --- /dev/null +++ b/system/etc/sysconfig/fastpass.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<config> + + <feature name="com.google.android.feature.GMSEXPRESS_PLUS_BUILD" /> + +</config> diff --git a/system/etc/sysconfig/framework-sysconfig.xml b/system/etc/sysconfig/framework-sysconfig.xml new file mode 100644 index 0000000000000000000000000000000000000000..ae6a7f6d6808c1f9292fa75549a38a279f5b7ab8 --- /dev/null +++ b/system/etc/sysconfig/framework-sysconfig.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- These are configurations that must exist on all Android devices. --> +<config> + + <!-- Broadcast actions that are currently exempted from O+ background + delivery restrictions. --> + <allow-implicit-broadcast action="android.intent.action.SIM_STATE_CHANGED" /> + <allow-implicit-broadcast action="android.intent.action.PACKAGE_CHANGED" /> + <allow-implicit-broadcast action="android.intent.action.MEDIA_SCANNER_SCAN_FILE" /> + <allow-implicit-broadcast action="android.media.action.OPEN_AUDIO_EFFECT_CONTROL_SESSION" /> + <allow-implicit-broadcast action="android.media.action.CLOSE_AUDIO_EFFECT_CONTROL_SESSION" /> + + <!-- Whitelist of what components are permitted as backup data transports. The + 'service' attribute here is a flattened ComponentName string. --> + <backup-transport-whitelisted-service + service="android/com.android.internal.backup.LocalTransportService" /> + + <!-- Whitelist of bundled applications which all handle URLs to their websites by default --> + <app-link package="com.android.carrierdefaultapp" /> +</config> diff --git a/system/etc/sysconfig/google.xml b/system/etc/sysconfig/google.xml new file mode 100644 index 0000000000000000000000000000000000000000..4f799e7cff46536098d236aa88c010113ec8060e --- /dev/null +++ b/system/etc/sysconfig/google.xml @@ -0,0 +1,89 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- These are configurations that must exist on all GMS devices. --> +<config> + <!-- These are the standard packages that are white-listed to always have internet + access while in power save mode, even if they aren't in the foreground. --> + + <!-- GmsCore must always have network access for GCM and other things. --> + <allow-in-power-save package="com.google.android.gms" /> + <allow-in-data-usage-save package="com.google.android.gms" /> + <allow-unthrottled-location package="com.google.android.gms" /> + + <!-- Certain broadcasts must still go to legacy implicit receivers --> + <allow-implicit-broadcast action="com.google.android.checkin.CHECKIN_COMPLETE" /> + <allow-implicit-broadcast action="com.google.gservices.intent.action.GSERVICES_CHANGED" /> + <allow-implicit-broadcast action="com.google.gservices.intent.action.GSERVICES_OVERRIDE" /> + <allow-implicit-broadcast action="com.google.android.c2dm.intent.RECEIVE" /> + <!-- TODO: This is a temporary workaround for allowing GmsCore to receive this broadcast. + This can be removed once OneTimeInitializer functionality is moved to GmsCore. --> + <allow-implicit-broadcast action="com.google.android.onetimeinitializer.ONE_TIME_INITIALIZED" /> + + <!-- Play Store likewise must have network access to support other applications. --> + <allow-in-power-save-except-idle package="com.android.vending" /> + + <!-- If the volta app is pre-installed (for monitoring power use), let it do checkins. --> + <allow-in-power-save package="com.google.android.volta" /> + + <!-- If CarrierServices is installed, it must always have network access to + reliably receive IMS messages. --> + <allow-in-power-save package="com.google.android.ims" /> + <allow-in-data-usage-save package="com.google.android.ims" /> + + <!-- These Google applications all handle URLs to their websites by default --> + + <!-- Apps below are required on all GMS devices --> + <app-link package="com.android.vending" /> + <app-link package="com.google.android.apps.mapslite" /> + <app-link package="com.google.android.apps.youtube.mango" /> + <app-link package="com.google.android.apps.docs" /> + <app-link package="com.google.android.talk" /> + <app-link package="com.google.android.apps.photos" /> + <app-link package="com.google.android.music" /> + + <!-- Apps below are optional on GMS devices --> + <app-link package="com.google.android.apps.tycho" /> + <app-link package="com.google.android.apps.plus" /> + <app-link package="com.google.android.apps.docs.editors.sheets" /> + <app-link package="com.google.android.apps.docs.editors.slides" /> + <app-link package="com.google.android.apps.docs.editors.docs" /> + <app-link package="com.google.android.talk" /> + <app-link package="com.google.android.videos" /> + <app-link package="com.google.android.calendar" /> + + <!-- These are the packages that are white-listed to be able to run as system user --> + <system-user-whitelisted-app package="com.android.vending" /> + <system-user-whitelisted-app package="com.google.android.gms" /> + <system-user-whitelisted-app package="com.google.android.gms.policy_auth" /> + <system-user-whitelisted-app package="com.google.android.play.games" /> + <system-user-whitelisted-app package="com.google.android.tts" /> + + <!-- These are the packages that are uninstalled for system user --> + <!-- Apps below are required on all GMS devices --> + <system-user-blacklisted-app package="com.google.android.googlequicksearchbox" /> + <!-- Apps below are optional on GMS devices --> + <system-user-blacklisted-app package="com.google.android.launcher" /> + + <!-- Whitelist of what components are permitted as backup data transports. The + 'service' attribute here is a flattened ComponentName string. --> + <backup-transport-whitelisted-service + service="com.google.android.gms/.backup.BackupTransportService" /> + <backup-transport-whitelisted-service + service="com.google.android.gms/.backup.component.D2dTransportService" /> + + +</config> diff --git a/system/etc/tee.img b/system/etc/tee.img new file mode 100644 index 0000000000000000000000000000000000000000..df29d0eec9eaa9570f88935d041f04f153ebfe88 Binary files /dev/null and b/system/etc/tee.img differ diff --git a/system/etc/treble_sepolicy_tests b/system/etc/treble_sepolicy_tests new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/system/etc/usb_audio_policy_configuration.xml b/system/etc/usb_audio_policy_configuration.xml new file mode 100644 index 0000000000000000000000000000000000000000..a487ecb3a7d1b236a216be99c65ae5bf11ea9d8e --- /dev/null +++ b/system/etc/usb_audio_policy_configuration.xml @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<!-- USB Audio HAL Audio Policy Configuration file --> + +<module name="usb" halVersion="2.0"> + <mixPorts> + <mixPort name="usb_accessory output" role="source"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="44100" channelMasks="AUDIO_CHANNEL_OUT_STEREO"/> + </mixPort> + <mixPort name="usb_device output" role="source"/> + <mixPort name="usb_device input" role="sink"/> + </mixPorts> + <devicePorts> + <devicePort tagName="USB Host Out" type="AUDIO_DEVICE_OUT_USB_ACCESSORY" role="sink"> + <profile name="" format="AUDIO_FORMAT_PCM_16_BIT" + samplingRates="44100" channelMasks="AUDIO_CHANNEL_OUT_STEREO"/> + </devicePort> + <devicePort tagName="USB Device Out" type="AUDIO_DEVICE_OUT_USB_DEVICE" role="sink"/> + <devicePort tagName="USB Headset Out" type="AUDIO_DEVICE_OUT_USB_HEADSET" role="sink"/> + <devicePort tagName="USB Device In" type="AUDIO_DEVICE_IN_USB_DEVICE" role="source"/> + <devicePort tagName="USB Headset In" type="AUDIO_DEVICE_IN_USB_HEADSET" role="source"/> + </devicePorts> + <routes> + <route type="mix" sink="USB Host Out" + sources="usb_accessory output"/> + <route type="mix" sink="USB Device Out" + sources="usb_device output"/> + <route type="mix" sink="USB Headset Out" + sources="usb_device output"/> + <route type="mix" sink="usb_device input" + sources="USB Device In,USB Headset In"/> + </routes> +</module> diff --git a/system/etc/wifi-apns.xml b/system/etc/wifi-apns.xml new file mode 100644 index 0000000000000000000000000000000000000000..02349aa89a372f935bb5ead24cb83c3e04fb6f51 --- /dev/null +++ b/system/etc/wifi-apns.xml @@ -0,0 +1,487 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* Copyright Statement: + * + * This software/firmware and related documentation ("MediaTek Software") are + * protected under relevant copyright laws. The information contained herein + * is confidential and proprietary to MediaTek Inc. and/or its licensors. + * Without the prior written permission of MediaTek inc. and/or its licensors, + * any reproduction, modification, use or disclosure of MediaTek Software, + * and information contained herein, in whole or in part, shall be strictly prohibited. + * + * MediaTek Inc. (C) 2015. All rights reserved. + * + * BY OPENING THIS FILE, RECEIVER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES + * THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE") + * RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO RECEIVER ON + * AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT. + * NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE + * SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR + * SUPPLIED WITH THE MEDIATEK SOFTWARE, AND RECEIVER AGREES TO LOOK ONLY TO SUCH + * THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. RECEIVER EXPRESSLY ACKNOWLEDGES + * THAT IT IS RECEIVER'S SOLE RESPONSIBILITY TO OBTAIN FROM ANY THIRD PARTY ALL PROPER LICENSES + * CONTAINED IN MEDIATEK SOFTWARE. MEDIATEK SHALL ALSO NOT BE RESPONSIBLE FOR ANY MEDIATEK + * SOFTWARE RELEASES MADE TO RECEIVER'S SPECIFICATION OR TO CONFORM TO A PARTICULAR + * STANDARD OR OPEN FORUM. RECEIVER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND + * CUMULATIVE LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE, + * AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE, + * OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY RECEIVER TO + * MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE. + * + * The following software/firmware and/or related documentation ("MediaTek Software") + * have been modified by MediaTek Inc. All revisions are subject to any receiver's + * applicable license agreements with MediaTek Inc. + */ +--> + +<apns> + <apn mcc="202" mnc="01" apn="hos" type="mms"/> + <apn mcc="202" mnc="01" apn="hos" type="xcap"/> + <apn mcc="202" mnc="01" apn="ims" type="ims"/> + <apn mcc="202" mnc="02" apn="hos" type="mms"/> + <apn mcc="202" mnc="02" apn="hos" type="xcap"/> + <apn mcc="202" mnc="02" apn="ims" type="ims"/> + <apn mcc="204" mnc="02" apn="ims" type="ims"/> + <apn mcc="204" mnc="02" apn="internet.tele2.nl" type="xcap"/> + <apn mcc="204" mnc="04" apn="ims" type="ims"/> + <apn mcc="204" mnc="08" apn="ims" type="ims"/> + <apn mcc="204" mnc="08" apn="ut" type="xcap"/> + <apn mcc="204" mnc="16" apn="ims" type="ims"/> + <apn mcc="204" mnc="20" apn="ims" type="ims"/> + <apn mcc="204" mnc="69" apn="ims" type="ims"/> + <apn mcc="204" mnc="69" apn="ut" type="xcap"/> + <apn mcc="206" mnc="01" apn="ims" type="ims"/> + <apn mcc="206" mnc="10" apn="ims" type="ims"/> + <apn mcc="208" mnc="01" apn="ims" type="ims"/> + <apn mcc="208" mnc="10" apn="ims" type="ims"/> + <apn mcc="208" mnc="20" apn="ims" type="ims"/> + <apn mcc="208" mnc="88" apn="ims" type="ims"/> + <apn mcc="214" mnc="01" apn="ims" type="ims"/> + <apn mcc="214" mnc="03" apn="ims" type="ims"/> + <apn mcc="216" mnc="01" apn="mms" type="mms"/> + <apn mcc="216" mnc="01" apn="ims" type="ims"/> + <apn mcc="216" mnc="01" apn="ims" type="ia"/> + <apn mcc="216" mnc="01" apn="xcap" type="xcap"/> + <apn mcc="216" mnc="03" apn="ims" type="ims"/> + <apn mcc="216" mnc="03" apn="xcap" type="xcap"/> + <apn mcc="216" mnc="30" apn="ims" type="ims"/> + <apn mcc="219" mnc="01" apn="ims" type="ims"/> + <apn mcc="222" mnc="06" apn="ims" type="ims"/> + <apn mcc="222" mnc="10" apn="ims" type="ims"/> + <apn mcc="226" mnc="05" apn="ims" type="ims"/> + <apn mcc="226" mnc="10" apn="ims" type="ims"/> + <apn mcc="228" mnc="01" apn="ims" type="ims"/> + <apn mcc="228" mnc="01" apn="hos" type="xcap"/> + <apn mcc="228" mnc="02" apn="ims" type="ims"/> + <apn mcc="228" mnc="02" apn="xcap" type="xcap"/> + <apn mcc="228" mnc="02" apn="mms.sunrise.ch" type="mms"/> + <apn mcc="230" mnc="01" apn="hos" type="mms"/> + <apn mcc="230" mnc="01" apn="ims" type="ims"/> + <apn mcc="230" mnc="01" apn="hos" type="xcap"/> + <apn mcc="230" mnc="03" apn="mms" type="mms"/> + <apn mcc="230" mnc="03" apn="ims" type="ims"/> + <apn mcc="231" mnc="01" apn="ims" type="ims"/> + <apn mcc="231" mnc="02" apn="ims" type="ims"/> + <apn mcc="231" mnc="04" apn="ims" type="ims"/> + <apn mcc="232" mnc="01" apn="ims" type="ims"/> + <apn mcc="234" mnc="10" apn="ims" type="ims"/> + <apn mcc="234" mnc="15" apn="ims" type="ims"/> + <apn mcc="234" mnc="15" apn="xcap" type="xcap"/> + <apn mcc="234" mnc="20" apn="ims" type="ims"/> + <apn mcc="234" mnc="30" apn="eezone" type="mms"/> + <apn mcc="234" mnc="30" apn="ims" type="ims"/> + <apn mcc="234" mnc="30" apn="eezone" type="xcap"/> + <apn mcc="234" mnc="31" apn="eezone" type="mms"/> + <apn mcc="234" mnc="31" apn="ims" type="ims"/> + <apn mcc="234" mnc="31" apn="eezone" type="xcap"/> + <apn mcc="234" mnc="32" apn="eezone" type="mms"/> + <apn mcc="234" mnc="32" apn="ims" type="ims"/> + <apn mcc="234" mnc="32" apn="eezone" type="xcap"/> + <apn mcc="234" mnc="33" apn="eezone" type="mms"/> + <apn mcc="234" mnc="33" apn="ims" type="ims"/> + <apn mcc="234" mnc="33" apn="eezone" type="xcap"/> + <apn mcc="234" mnc="34" apn="eezone" type="mms"/> + <apn mcc="234" mnc="34" apn="ims" type="ims"/> + <apn mcc="234" mnc="34" apn="eezone" type="xcap"/> + <apn mcc="234" mnc="86" apn="ims" type="ims"/> + <apn mcc="234" mnc="86" apn="eezone" type="xcap"/> + <apn mcc="235" mnc="01" apn="eezone" type="xcap"/> + <apn mcc="235" mnc="02" apn="eezone" type="xcap"/> + <apn mcc="235" mnc="91" apn="ims" type="ims"/> + <apn mcc="235" mnc="91" apn="xcap" type="xcap"/> + <apn mcc="235" mnc="94" apn="ims" type="ims"/> + <apn mcc="238" mnc="02" apn="telenor" type="mms"/> + <apn mcc="238" mnc="02" apn="ims" type="ims"/> + <apn mcc="238" mnc="02" apn="xcap" type="xcap"/> + <apn mcc="238" mnc="06" apn="ims" type="ims"/> + <apn mcc="238" mnc="06" apn="services" type="xcap"/> + <apn mcc="238" mnc="06" apn="services" type="mms"/> + <apn mcc="238" mnc="77" apn="telenor" type="mms"/> + <apn mcc="238" mnc="77" apn="ims" type="ims"/> + <apn mcc="238" mnc="77" apn="xcap" type="xcap"/> + <apn mcc="240" mnc="01" apn="mms.telia.se" type="mms"/> + <apn mcc="240" mnc="01" apn="ims" type="ims"/> + <apn mcc="240" mnc="01" apn="hos" type="xcap"/> + <apn mcc="240" mnc="02" apn="ims" type="ims"/> + <apn mcc="240" mnc="02" apn="services" type="xcap"/> + <apn mcc="240" mnc="02" apn="services" type="mms"/> + <apn mcc="240" mnc="05" apn="ims" type="ims"/> + <apn mcc="240" mnc="05" apn="hos" type="xcap"/> + <apn mcc="240" mnc="07" apn="ims" type="ims"/> + <apn mcc="240" mnc="08" apn="mms" type="mms" mvno_type="imsi" mvno_match_data="24008"/> + <apn mcc="240" mnc="08" apn="IMS" type="ims" mvno_type="imsi" mvno_match_data="24008"/> + <apn mcc="240" mnc="99" apn="ims" type="ims"/> + <apn mcc="242" mnc="01" apn="telenor.mms" type="mms"/> + <apn mcc="242" mnc="01" apn="ims" type="ims"/> + <apn mcc="242" mnc="01" apn="hos" type="xcap"/> + <apn mcc="242" mnc="02" apn="mms" type="mms"/> + <apn mcc="242" mnc="02" apn="ims" type="ims"/> + <apn mcc="242" mnc="02" apn="hos" type="xcap"/> + <apn mcc="242" mnc="05" apn="mms" type="mms"/> + <apn mcc="242" mnc="05" apn="ims" type="ims"/> + <apn mcc="242" mnc="05" apn="hos" type="xcap"/> + <apn mcc="244" mnc="05" apn="ims" type="ims"/> + <apn mcc="244" mnc="05" apn="xcap" type="xcap"/> + <apn mcc="244" mnc="12" apn="hos" type="xcap"/> + <apn mcc="244" mnc="12" apn="ims" type="ims"/> + <apn mcc="244" mnc="91" apn="wap.sonera.net" type="mms"/> + <apn mcc="244" mnc="91" apn="ims" type="ims"/> + <apn mcc="244" mnc="91" apn="hos" type="xcap"/> + <apn mcc="246" mnc="01" apn="ims" type="ims"/> + <apn mcc="248" mnc="01" apn="ims" type="ims"/> + <apn mcc="250" mnc="01" apn="ims" type="ims"/> + <apn mcc="250" mnc="02" apn="ims" type="ims"/> + <apn mcc="250" mnc="50" apn="ims" type="ims"/> + <apn mcc="250" mnc="99" apn="ims" type="ims"/> + <apn mcc="250" mnc="99" apn="xcap.beeline.ru" type="xcap"/> + <apn mcc="260" mnc="02" apn="hos" type="mms"/> + <apn mcc="260" mnc="02" apn="hos" type="xcap"/> + <apn mcc="260" mnc="02" apn="ims" type="ims"/> + <apn mcc="260" mnc="03" apn="ims" type="ims"/> + <apn mcc="260" mnc="06" apn="mms" type="mms"/> + <apn mcc="260" mnc="06" apn="ims" type="ims"/> + <apn mcc="260" mnc="06" apn="xcap" type="xcap"/> + <apn mcc="260" mnc="34" apn="hos" type="mms"/> + <apn mcc="260" mnc="34" apn="hos" type="xcap"/> + <apn mcc="260" mnc="34" apn="ims" type="ims"/> + <apn mcc="262" mnc="01" apn="ims" type="ia"/> + <apn mcc="262" mnc="01" apn="ims" type="ims"/> + <apn mcc="262" mnc="01" apn="internet.telekom" type="xcap"/> + <apn mcc="262" mnc="02" apn="ims" type="ims"/> + <apn mcc="262" mnc="06" apn="ims" type="ia"/> + <apn mcc="262" mnc="06" apn="ims" type="ims"/> + <apn mcc="262" mnc="06" apn="hos" type="xcap"/> + <apn mcc="262" mnc="07" apn="ims" type="ims"/> + <apn mcc="262" mnc="80" apn="ims01.epg78.ericsson.se" type="ims"/> + <apn mcc="262" mnc="80" apn="apn01.epg78.ericsson.se" type="xcap"/> + <apn mcc="268" mnc="01" apn="ims" type="ims"/> + <apn mcc="268" mnc="03" apn="IMS" type="ims"/> + <apn mcc="268" mnc="03" apn="XCAP" type="xcap"/> + <apn mcc="268" mnc="99" apn="IMS" type="ims"/> + <apn mcc="268" mnc="99" apn="XCAP" type="xcap"/> + <apn mcc="272" mnc="01" apn="ims" type="ims"/> + <apn mcc="272" mnc="01" apn="xcap" type="xcap"/> + <apn mcc="284" mnc="03" apn="ims" type="ims"/> + <apn mcc="284" mnc="03" apn="hos" type="xcap"/> + <apn mcc="286" mnc="01" apn="ims" type="ims"/> + <apn mcc="286" mnc="02" apn="ims" type="ims"/> + <apn mcc="286" mnc="03" apn="ims" type="ims"/> + <apn mcc="295" mnc="01" apn="ims" type="ims"/> + <apn mcc="295" mnc="01" apn="hos" type="xcap"/> + <apn mcc="302" mnc="490" apn="mms.freedommobile.ca" type="mms"/> + <apn mcc="302" mnc="490" apn="volte.mobilefrdm.ca" type="ims"/> + <apn mcc="302" mnc="490" apn="xcap.freedommobile.ca" type="xcap"/> + <apn mcc="302" mnc="610" apn="ims" type="ims"/> + <apn mcc="302" mnc="630" apn="ims" type="ims"/> + <apn mcc="302" mnc="640" apn="ims" type="ims"/> + <apn mcc="310" mnc="070" apn="nxtgenphone" type="mms"/> + <apn mcc="310" mnc="070" apn="nxtgenphone" type="xcap"/> + <apn mcc="310" mnc="070" apn="sos" type="emergency"/> + <apn mcc="310" mnc="090" apn="nxtgenphone" type="mms"/> + <apn mcc="310" mnc="090" apn="ims" type="ims"/> + <apn mcc="310" mnc="090" apn="sos" type="emergency"/> + <apn mcc="310" mnc="120" apn="ims" type="ims" mvno_type="gid" mvno_match_data="000001"/> + <apn mcc="310" mnc="150" apn="ims" type="ims"/> + <apn mcc="310" mnc="160" apn="ims" type="ims"/> + <apn mcc="310" mnc="170" apn="nxtgenphone" type="mms"/> + <apn mcc="310" mnc="170" apn="nxtgenphone" type="xcap"/> + <apn mcc="310" mnc="170" apn="sos" type="emergency"/> + <apn mcc="310" mnc="200" apn="ims" type="ims"/> + <apn mcc="310" mnc="210" apn="ims" type="ims"/> + <apn mcc="310" mnc="220" apn="ims" type="ims"/> + <apn mcc="310" mnc="230" apn="ims" type="ims"/> + <apn mcc="310" mnc="240" apn="ims" type="ims"/> + <apn mcc="310" mnc="250" apn="ims" type="ims"/> + <apn mcc="310" mnc="260" apn="ims" type="ims"/> + <apn mcc="310" mnc="260" apn="tmus" type="mms"/> + <apn mcc="310" mnc="270" apn="ims" type="ims"/> + <apn mcc="310" mnc="280" apn="ims" type="ims"/> + <apn mcc="310" mnc="310" apn="ims" type="ims"/> + <apn mcc="310" mnc="380" apn="nxtgenphone" type="mms"/> + <apn mcc="310" mnc="380" apn="nxtgenphone" type="xcap"/> + <apn mcc="310" mnc="380" apn="ims" type="ims"/> + <apn mcc="310" mnc="380" apn="sos" type="emergency"/> + <apn mcc="310" mnc="410" apn="nxtgenphone" type="mms"/> + <apn mcc="310" mnc="410" apn="Broadband" type="mms"/> + <apn mcc="310" mnc="410" apn="wap.cingular" type="mms"/> + <apn mcc="310" mnc="410" apn="nxtgenphone" type="xcap"/> + <apn mcc="310" mnc="410" apn="ims" type="ims"/> + <apn mcc="310" mnc="410" apn="sos" type="emergency"/> + <apn mcc="310" mnc="490" apn="ims" type="ims"/> + <apn mcc="310" mnc="560" apn="nxtgenphone" type="mms"/> + <apn mcc="310" mnc="560" apn="nxtgenphone" type="xcap"/> + <apn mcc="310" mnc="560" apn="ims" type="ims"/> + <apn mcc="310" mnc="560" apn="sos" type="emergency"/> + <apn mcc="310" mnc="590" apn="ims" type="ims"/> + <apn mcc="310" mnc="660" apn="ims" type="ims"/> + <apn mcc="310" mnc="680" apn="nxtgenphone" type="mms"/> + <apn mcc="310" mnc="680" apn="nxtgenphone" type="xcap"/> + <apn mcc="310" mnc="680" apn="sos" type="emergency"/> + <apn mcc="310" mnc="800" apn="ims" type="ims"/> + <apn mcc="310" mnc="800" apn="fast.t-mobile.com" type="mms"/> + <apn mcc="311" mnc="180" apn="nxtgenphone" type="mms"/> + <apn mcc="311" mnc="180" apn="sos" type="emergency"/> + <apn mcc="311" mnc="270" apn="IMS" type="ims"/> + <apn mcc="311" mnc="270" apn="IMS" type="ia"/> + <apn mcc="311" mnc="270" apn="VZWEMERGENCY" type="emergency"/> + <apn mcc="311" mnc="480" apn="IMS" type="ims"/> + <apn mcc="311" mnc="480" apn="IMS" type="ia"/> + <apn mcc="311" mnc="480" apn="VZWEMERGENCY" type="emergency"/> + <apn mcc="311" mnc="490" apn="ims" type="ims" mvno_type="gid" mvno_match_data="000003"/> + <apn mcc="311" mnc="490" apn="ims" type="ims" mvno_type="gid" mvno_match_data="000005"/> + <apn mcc="311" mnc="490" apn="ims" type="ims" mvno_type="gid" mvno_match_data="000006"/> + <apn mcc="311" mnc="870" apn="ims" type="ims" mvno_type="gid" mvno_match_data="000002"/> + <apn mcc="312" mnc="530" apn="ims" type="ims" mvno_type="gid" mvno_match_data="000004"/> + <apn mcc="312" mnc="770" apn="IMS" type="ims"/> + <apn mcc="312" mnc="770" apn="IMS" type="ia"/> + <apn mcc="312" mnc="770" apn="VZWEMERGENCY" type="emergency"/> + <apn mcc="313" mnc="100" apn="ims" type="ims"/> + <apn mcc="334" mnc="03" apn="ims" type="ims"/> + <apn mcc="334" mnc="020" apn="ims" type="ims"/> + <apn mcc="334" mnc="030" apn="ims" type="ims"/> + <apn mcc="334" mnc="050" apn="ims" type="ims"/> + <apn mcc="334" mnc="090" apn="ims" type="ims"/> + <apn mcc="404" mnc="01" apn="ims" type="ims"/> + <apn mcc="404" mnc="02" apn="ims" type="ims"/> + <apn mcc="404" mnc="03" apn="ims" type="ims"/> + <apn mcc="404" mnc="04" apn="ims" type="ims"/> + <apn mcc="404" mnc="05" apn="ims" type="ims"/> + <apn mcc="404" mnc="07" apn="ims" type="ims"/> + <apn mcc="404" mnc="10" apn="ims" type="ims"/> + <apn mcc="404" mnc="11" apn="ims" type="ims"/> + <apn mcc="404" mnc="12" apn="ims" type="ims"/> + <apn mcc="404" mnc="13" apn="ims" type="ims"/> + <apn mcc="404" mnc="14" apn="ims" type="ims"/> + <apn mcc="404" mnc="15" apn="ims" type="ims"/> + <apn mcc="404" mnc="16" apn="ims" type="ims"/> + <apn mcc="404" mnc="19" apn="ims" type="ims"/> + <apn mcc="404" mnc="20" apn="ims" type="ims"/> + <apn mcc="404" mnc="22" apn="ims" type="ims"/> + <apn mcc="404" mnc="24" apn="ims" type="ims"/> + <apn mcc="404" mnc="27" apn="ims" type="ims"/> + <apn mcc="404" mnc="30" apn="ims" type="ims"/> + <apn mcc="404" mnc="31" apn="ims" type="ims"/> + <apn mcc="404" mnc="40" apn="ims" type="ims"/> + <apn mcc="404" mnc="43" apn="ims" type="ims"/> + <apn mcc="404" mnc="44" apn="ims" type="ims"/> + <apn mcc="404" mnc="45" apn="ims" type="ims"/> + <apn mcc="404" mnc="46" apn="ims" type="ims"/> + <apn mcc="404" mnc="49" apn="ims" type="ims"/> + <apn mcc="404" mnc="56" apn="ims" type="ims"/> + <apn mcc="404" mnc="60" apn="ims" type="ims"/> + <apn mcc="404" mnc="70" apn="ims" type="ims"/> + <apn mcc="404" mnc="78" apn="ims" type="ims"/> + <apn mcc="404" mnc="82" apn="ims" type="ims"/> + <apn mcc="404" mnc="84" apn="ims" type="ims"/> + <apn mcc="404" mnc="86" apn="ims" type="ims"/> + <apn mcc="404" mnc="87" apn="ims" type="ims"/> + <apn mcc="404" mnc="88" apn="ims" type="ims"/> + <apn mcc="404" mnc="89" apn="ims" type="ims"/> + <apn mcc="404" mnc="90" apn="ims" type="ims"/> + <apn mcc="404" mnc="92" apn="ims" type="ims"/> + <apn mcc="404" mnc="93" apn="ims" type="ims"/> + <apn mcc="404" mnc="94" apn="ims" type="ims"/> + <apn mcc="404" mnc="95" apn="ims" type="ims"/> + <apn mcc="404" mnc="96" apn="ims" type="ims"/> + <apn mcc="404" mnc="97" apn="ims" type="ims"/> + <apn mcc="404" mnc="98" apn="ims" type="ims"/> + <apn mcc="405" mnc="51" apn="ims" type="ims"/> + <apn mcc="405" mnc="52" apn="ims" type="ims"/> + <apn mcc="405" mnc="53" apn="ims" type="ims"/> + <apn mcc="405" mnc="54" apn="ims" type="ims"/> + <apn mcc="405" mnc="55" apn="ims" type="ims"/> + <apn mcc="405" mnc="66" apn="ims" type="ims"/> + <apn mcc="405" mnc="67" apn="ims" type="ims"/> + <apn mcc="405" mnc="70" apn="ims" type="ims"/> + <apn mcc="405" mnc="56" apn="ims" type="ims"/> + <apn mcc="405" mnc="750" apn="IMS" type="ims"/> + <apn mcc="405" mnc="751" apn="IMS" type="ims"/> + <apn mcc="405" mnc="752" apn="IMS" type="ims"/> + <apn mcc="405" mnc="753" apn="IMS" type="ims"/> + <apn mcc="405" mnc="754" apn="IMS" type="ims"/> + <apn mcc="405" mnc="755" apn="IMS" type="ims"/> + <apn mcc="405" mnc="756" apn="IMS" type="ims"/> + <apn mcc="405" mnc="799" apn="IMS" type="ims"/> + <apn mcc="405" mnc="840" apn="IMS" type="ims"/> + <apn mcc="405" mnc="840" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="845" apn="IMS" type="ims"/> + <apn mcc="405" mnc="846" apn="IMS" type="ims"/> + <apn mcc="405" mnc="847" apn="IMS" type="ims"/> + <apn mcc="405" mnc="848" apn="IMS" type="ims"/> + <apn mcc="405" mnc="849" apn="IMS" type="ims"/> + <apn mcc="405" mnc="850" apn="IMS" type="ims"/> + <apn mcc="405" mnc="851" apn="IMS" type="ims"/> + <apn mcc="405" mnc="852" apn="IMS" type="ims"/> + <apn mcc="405" mnc="853" apn="IMS" type="ims"/> + <apn mcc="405" mnc="854" apn="IMS" type="ims"/> + <apn mcc="405" mnc="854" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="855" apn="IMS" type="ims"/> + <apn mcc="405" mnc="855" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="856" apn="IMS" type="ims"/> + <apn mcc="405" mnc="856" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="857" apn="IMS" type="ims"/> + <apn mcc="405" mnc="857" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="858" apn="IMS" type="ims"/> + <apn mcc="405" mnc="858" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="859" apn="IMS" type="ims"/> + <apn mcc="405" mnc="859" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="860" apn="IMS" type="ims"/> + <apn mcc="405" mnc="860" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="861" apn="IMS" type="ims"/> + <apn mcc="405" mnc="861" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="862" apn="IMS" type="ims"/> + <apn mcc="405" mnc="862" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="863" apn="IMS" type="ims"/> + <apn mcc="405" mnc="863" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="864" apn="IMS" type="ims"/> + <apn mcc="405" mnc="864" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="865" apn="IMS" type="ims"/> + <apn mcc="405" mnc="865" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="866" apn="IMS" type="ims"/> + <apn mcc="405" mnc="866" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="867" apn="IMS" type="ims"/> + <apn mcc="405" mnc="867" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="868" apn="IMS" type="ims"/> + <apn mcc="405" mnc="868" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="869" apn="IMS" type="ims"/> + <apn mcc="405" mnc="869" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="870" apn="IMS" type="ims"/> + <apn mcc="405" mnc="870" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="871" apn="IMS" type="ims"/> + <apn mcc="405" mnc="871" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="872" apn="IMS" type="ims"/> + <apn mcc="405" mnc="872" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="873" apn="IMS" type="ims"/> + <apn mcc="405" mnc="873" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="874" apn="IMS" type="ims"/> + <apn mcc="405" mnc="874" apn="Jionet" type="xcap"/> + <apn mcc="405" mnc="908" apn="IMS" type="ims"/> + <apn mcc="405" mnc="909" apn="IMS" type="ims"/> + <apn mcc="405" mnc="910" apn="IMS" type="ims"/> + <apn mcc="405" mnc="911" apn="IMS" type="ims"/> + <apn mcc="413" mnc="02" apn="ims" type="ims"/> + <apn mcc="418" mnc="66" apn="ims" type="ims"/> + <apn mcc="420" mnc="01" apn="ims" type="ims"/> + <apn mcc="420" mnc="04" apn="ims" type="ims"/> + <apn mcc="424" mnc="02" apn="ims" type="ims"/> + <apn mcc="452" mnc="04" apn="ims" type="ims"/> + <apn mcc="452" mnc="04" apn="xcap" type="xcap"/> + <apn mcc="456" mnc="06" apn="ims" type="ims"/> + <apn mcc="456" mnc="06" apn="smart" type="xcap"/> + <apn mcc="460" mnc="00" apn="ims" type="ims"/> + <apn mcc="460" mnc="01" apn="ims" type="ims"/> + <apn mcc="460" mnc="02" apn="ims" type="ims"/> + <apn mcc="460" mnc="03" apn="IMS" type="ims"/> + <apn mcc="460" mnc="07" apn="ims" type="ims"/> + <apn mcc="460" mnc="09" apn="ims" type="ims"/> + <apn mcc="466" mnc="01" apn="ims" type="ims"/> + <apn mcc="466" mnc="01" apn="sos" type="emergency"/> + <apn mcc="466" mnc="05" apn="ims" type="ims"/> + <apn mcc="466" mnc="05" apn="gtnet" type="xcap"/> + <apn mcc="466" mnc="89" apn="ims" type="ims"/> + <apn mcc="466" mnc="92" apn="ims" type="ims"/> + <apn mcc="466" mnc="92" apn="hos" type="xcap"/> + <apn mcc="502" mnc="16" apn="digimms" type="mms"/> + <apn mcc="502" mnc="16" apn="ims" type="ims"/> + <apn mcc="502" mnc="16" apn="hos" type="xcap"/> + <apn mcc="502" mnc="152" apn="ims" type="ims"/> + <apn mcc="502" mnc="153" apn="ims" type="ims"/> + <apn mcc="502" mnc="18" apn="ims" type="ims"/> + <apn mcc="502" mnc="18" apn="XCAP" type="xcap"/> + <apn mcc="505" mnc="01" apn="hos" type="xcap"/> + <apn mcc="505" mnc="01" apn="ims" type="ims"/> + <apn mcc="505" mnc="02" apn="ims" type="ims"/> + <apn mcc="505" mnc="02" apn="hos" type="xcap"/> + <apn mcc="505" mnc="03" apn="ims" type="ims"/> + <apn mcc="505" mnc="03" apn="hos" type="xcap"/> + <apn mcc="505" mnc="03" apn="hos" type="mms"/> + <apn mcc="505" mnc="06" apn="ims" type="ims"/> + <apn mcc="505" mnc="06" apn="hos" type="xcap"/> + <apn mcc="505" mnc="06" apn="hos" type="mms"/> + <apn mcc="505" mnc="71" apn="hos" type="xcap"/> + <apn mcc="505" mnc="71" apn="ims" type="ims"/> + <apn mcc="505" mnc="72" apn="hos" type="xcap"/> + <apn mcc="505" mnc="72" apn="ims" type="ims"/> + <apn mcc="510" mnc="09" apn="ims" type="ims"/> + <apn mcc="510" mnc="09" apn="ims" type="xcap"/> + <apn mcc="510" mnc="28" apn="ims" type="ims"/> + <apn mcc="510" mnc="28" apn="ims" type="xcap"/> + <apn mcc="515" mnc="03" apn="ims" type="ims"/> + <apn mcc="515" mnc="03" apn="xcap" type="xcap"/> + <apn mcc="520" mnc="00" apn="ims" type="ims"/> + <apn mcc="520" mnc="03" apn="ims" type="ims"/> + <apn mcc="520" mnc="04" apn="ims" type="ims"/> + <apn mcc="520" mnc="05" apn="ims" type="ims"/> + <apn mcc="525" mnc="01" apn="ims" type="ims"/> + <apn mcc="525" mnc="01" apn="stm-ut" type="xcap"/> + <apn mcc="525" mnc="05" apn="ims" type="ims" mvno_type="imsi" mvno_match_data="525053095x"/> + <apn mcc="525" mnc="05" apn="ims" type="ims" mvno_type="imsi" mvno_match_data="525053096x"/> + <apn mcc="525" mnc="05" apn="ims" type="ims" mvno_type="gid" mvno_match_data="0A"/> + <apn mcc="530" mnc="24" apn="mms" type="mms"/> + <apn mcc="530" mnc="24" apn="ims" type="ims"/> + <apn mcc="530" mnc="24" apn="hos" type="xcap"/> + <apn mcc="602" mnc="03" apn="ims" type="ims"/> + <apn mcc="602" mnc="04" apn="ims" type="ims"/> + <apn mcc="621" mnc="27" apn="ims" type="ims"/> + <apn mcc="639" mnc="02" apn="ims" type="ims"/> + <apn mcc="639" mnc="02" apn="xcap" type="xcap"/> + <apn mcc="639" mnc="10" apn="ims" type="ims"/> + <apn mcc="639" mnc="10" apn="xcap" type="xcap"/> + <apn mcc="640" mnc="11" apn="ims" type="ims"/> + <apn mcc="641" mnc="33" apn="ims" type="ims"/> + <apn mcc="653" mnc="02" apn="ims" type="ims"/> + <apn mcc="655" mnc="01" apn="ims" type="ims"/> + <apn mcc="655" mnc="07" apn="ims" type="ims"/> + <apn mcc="655" mnc="10" apn="ims" type="ims"/> + <apn mcc="716" mnc="06" apn="volte.movistar.pe" type="ims"/> + <apn mcc="716" mnc="10" apn="ims" type="ims"/> + <apn mcc="716" mnc="10" apn="mms.claro.pe" type="mms"/> + <apn mcc="716" mnc="17" apn="ims" type="ims"/> + <apn mcc="722" mnc="07" apn="ims" type="ims"/> + <apn mcc="722" mnc="07" apn="Internet" type="xcap"/> + <apn mcc="722" mnc="34" apn="ims" type="ims"/> + <apn mcc="722" mnc="34" apn="ims" type="mms"/> + <apn mcc="722" mnc="34" apn="hos" type="xcap"/> + <apn mcc="722" mnc="310" apn="ims" type="ims"/> + <apn mcc="724" mnc="02" apn="ims" type="ims"/> + <apn mcc="724" mnc="02" apn="ims" type="xcap"/> + <apn mcc="724" mnc="03" apn="ims" type="ims"/> + <apn mcc="724" mnc="03" apn="ims" type="xcap"/> + <apn mcc="724" mnc="04" apn="ims" type="ims"/> + <apn mcc="724" mnc="04" apn="ims" type="xcap"/> + <apn mcc="724" mnc="05" apn="ims" type="ims"/> + <apn mcc="724" mnc="05" apn="ims" type="mms"/> + <apn mcc="724" mnc="06" apn="ims" type="ims"/> + <apn mcc="724" mnc="10" apn="ims" type="ims"/> + <apn mcc="724" mnc="11" apn="ims" type="ims"/> + <apn mcc="724" mnc="23" apn="ims" type="ims"/> + <apn mcc="724" mnc="80" apn="ims.mnc080.mcc724.3gppnetwork.org" type="ims"/> + <apn mcc="724" mnc="80" apn="apn01.epg78.ericsson.se" type="xcap"/> + <apn mcc="730" mnc="02" apn="ims" type="ims"/> + <apn mcc="730" mnc="03" apn="ims" type="ims"/> + <apn mcc="732" mnc="101" apn="ims" type="ims"/> + <apn mcc="732" mnc="123" apn="ims" type="ims"/> + <apn mcc="732" mnc="123" apn="hos" type="xcap"/> +</apns> diff --git a/system/etc/xtables.lock b/system/etc/xtables.lock new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/system/fake-libs/libart.so b/system/fake-libs/libart.so new file mode 100644 index 0000000000000000000000000000000000000000..7fc878958481c79e41ec269c8ca9f3eb6df0db45 Binary files /dev/null and b/system/fake-libs/libart.so differ diff --git a/system/fonts/AndroidClock.ttf b/system/fonts/AndroidClock.ttf new file mode 100644 index 0000000000000000000000000000000000000000..a955442baff6615c74f73a60de896162e11b5d5e Binary files /dev/null and b/system/fonts/AndroidClock.ttf differ diff --git a/system/fonts/CarroisGothicSC-Regular.ttf b/system/fonts/CarroisGothicSC-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..d0281c739fbf779eef0754685b734171a0509d32 Binary files /dev/null and b/system/fonts/CarroisGothicSC-Regular.ttf differ diff --git a/system/fonts/ComingSoon.ttf b/system/fonts/ComingSoon.ttf new file mode 100644 index 0000000000000000000000000000000000000000..62a5a0de74a75eef722decfac46ba52e2d939f64 Binary files /dev/null and b/system/fonts/ComingSoon.ttf differ diff --git a/system/fonts/CutiveMono.ttf b/system/fonts/CutiveMono.ttf new file mode 100644 index 0000000000000000000000000000000000000000..efe0f334e5b0ac5d325f900ba83a37aed908f24f Binary files /dev/null and b/system/fonts/CutiveMono.ttf differ diff --git a/system/fonts/DancingScript-Bold.ttf b/system/fonts/DancingScript-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..d502ef871a403558c33311c2bf9cfa8952536df6 Binary files /dev/null and b/system/fonts/DancingScript-Bold.ttf differ diff --git a/system/fonts/DancingScript-Regular.ttf b/system/fonts/DancingScript-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..3fa27af34adead9147773bc5bfd5ea5c34ac6dec Binary files /dev/null and b/system/fonts/DancingScript-Regular.ttf differ diff --git a/system/fonts/DroidSans-Bold.ttf b/system/fonts/DroidSans-Bold.ttf new file mode 120000 index 0000000000000000000000000000000000000000..0d75c6f6712709c2e4a0f8466eee9d4ac2fe080d --- /dev/null +++ b/system/fonts/DroidSans-Bold.ttf @@ -0,0 +1 @@ +Roboto-Bold.ttf \ No newline at end of file diff --git a/system/fonts/DroidSans.ttf b/system/fonts/DroidSans.ttf new file mode 120000 index 0000000000000000000000000000000000000000..5170647aa533564478e72fecacbbedbbd5944760 --- /dev/null +++ b/system/fonts/DroidSans.ttf @@ -0,0 +1 @@ +Roboto-Regular.ttf \ No newline at end of file diff --git a/system/fonts/DroidSansMono.ttf b/system/fonts/DroidSansMono.ttf new file mode 100644 index 0000000000000000000000000000000000000000..b7bf5b4aa8ad5a8c8036653734d83006c6a376ee Binary files /dev/null and b/system/fonts/DroidSansMono.ttf differ diff --git a/system/fonts/NotoColorEmoji.ttf b/system/fonts/NotoColorEmoji.ttf new file mode 100644 index 0000000000000000000000000000000000000000..63dda0e08efaec58087206a2e53d0f3cdbac793b Binary files /dev/null and b/system/fonts/NotoColorEmoji.ttf differ diff --git a/system/fonts/NotoNaskhArabic-Bold.ttf b/system/fonts/NotoNaskhArabic-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..c6692b54ad102489c7decbc0c0ff0b70174ffa27 Binary files /dev/null and b/system/fonts/NotoNaskhArabic-Bold.ttf differ diff --git a/system/fonts/NotoNaskhArabic-Regular.ttf b/system/fonts/NotoNaskhArabic-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..ff5035487f8abee54089f6764c1fbda8d942209c Binary files /dev/null and b/system/fonts/NotoNaskhArabic-Regular.ttf differ diff --git a/system/fonts/NotoNaskhArabicUI-Bold.ttf b/system/fonts/NotoNaskhArabicUI-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..1d844604f0b56bda70b5b64ca082064268c40bec Binary files /dev/null and b/system/fonts/NotoNaskhArabicUI-Bold.ttf differ diff --git a/system/fonts/NotoNaskhArabicUI-Regular.ttf b/system/fonts/NotoNaskhArabicUI-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..d7797a5b104880c5fb73f2af7e9926ef915b7e24 Binary files /dev/null and b/system/fonts/NotoNaskhArabicUI-Regular.ttf differ diff --git a/system/fonts/NotoSansAdlam-Regular.ttf b/system/fonts/NotoSansAdlam-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..20ea4badb30948cbde812b43e83938dee23203b9 Binary files /dev/null and b/system/fonts/NotoSansAdlam-Regular.ttf differ diff --git a/system/fonts/NotoSansArmenian-Bold.ttf b/system/fonts/NotoSansArmenian-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..109e34fe9241e9b785c43aa8d80b0bf91ec5bfff Binary files /dev/null and b/system/fonts/NotoSansArmenian-Bold.ttf differ diff --git a/system/fonts/NotoSansArmenian-Regular.ttf b/system/fonts/NotoSansArmenian-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..7f26da5e6c02c69b911c0cfdb4ef5f5b445b218a Binary files /dev/null and b/system/fonts/NotoSansArmenian-Regular.ttf differ diff --git a/system/fonts/NotoSansAvestan-Regular.ttf b/system/fonts/NotoSansAvestan-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..31eeb5aa7c2783a1122fb44d96a478cf786c7eaa Binary files /dev/null and b/system/fonts/NotoSansAvestan-Regular.ttf differ diff --git a/system/fonts/NotoSansBalinese-Regular.ttf b/system/fonts/NotoSansBalinese-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..a15509bb90dbcf0bc7791876e697d0a57d8de482 Binary files /dev/null and b/system/fonts/NotoSansBalinese-Regular.ttf differ diff --git a/system/fonts/NotoSansBamum-Regular.ttf b/system/fonts/NotoSansBamum-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..f2de18714caaaa168f8a7b2e1c7ef3ecd95963c1 Binary files /dev/null and b/system/fonts/NotoSansBamum-Regular.ttf differ diff --git a/system/fonts/NotoSansBatak-Regular.ttf b/system/fonts/NotoSansBatak-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..882ad961bf0fb98562cf7b227febbb6fe85788ca Binary files /dev/null and b/system/fonts/NotoSansBatak-Regular.ttf differ diff --git a/system/fonts/NotoSansBengali-Bold.ttf b/system/fonts/NotoSansBengali-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..546a55559ac4be05ea85806725d63a69616337e2 Binary files /dev/null and b/system/fonts/NotoSansBengali-Bold.ttf differ diff --git a/system/fonts/NotoSansBengali-Regular.ttf b/system/fonts/NotoSansBengali-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..520d82fce1721df144d84ba580b7763f85a71450 Binary files /dev/null and b/system/fonts/NotoSansBengali-Regular.ttf differ diff --git a/system/fonts/NotoSansBengaliUI-Bold.ttf b/system/fonts/NotoSansBengaliUI-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..923580c9f6d17740dc69022cc4013faaeb0281ba Binary files /dev/null and b/system/fonts/NotoSansBengaliUI-Bold.ttf differ diff --git a/system/fonts/NotoSansBengaliUI-Regular.ttf b/system/fonts/NotoSansBengaliUI-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..5373108afd0e190a5a6ce1fff685e05eed6e68b6 Binary files /dev/null and b/system/fonts/NotoSansBengaliUI-Regular.ttf differ diff --git a/system/fonts/NotoSansBrahmi-Regular.ttf b/system/fonts/NotoSansBrahmi-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..eb98a6557f9e177a1fd6793adac1a12d9ca4ef62 Binary files /dev/null and b/system/fonts/NotoSansBrahmi-Regular.ttf differ diff --git a/system/fonts/NotoSansBuginese-Regular.ttf b/system/fonts/NotoSansBuginese-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..fd59da69188ad63d6e9391e49c01f6a9dda1d903 Binary files /dev/null and b/system/fonts/NotoSansBuginese-Regular.ttf differ diff --git a/system/fonts/NotoSansBuhid-Regular.ttf b/system/fonts/NotoSansBuhid-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..756218ffa38fbff4c969a3fb2b9d8b1dd1b2f92b Binary files /dev/null and b/system/fonts/NotoSansBuhid-Regular.ttf differ diff --git a/system/fonts/NotoSansCJK-Regular.ttc b/system/fonts/NotoSansCJK-Regular.ttc new file mode 100644 index 0000000000000000000000000000000000000000..23b4dc982a55ed8da89ec156412d143674860cd8 Binary files /dev/null and b/system/fonts/NotoSansCJK-Regular.ttc differ diff --git a/system/fonts/NotoSansCanadianAboriginal-Regular.ttf b/system/fonts/NotoSansCanadianAboriginal-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..4961f43bce7acc69d4d0d247e3b5f1b89e552ea9 Binary files /dev/null and b/system/fonts/NotoSansCanadianAboriginal-Regular.ttf differ diff --git a/system/fonts/NotoSansCarian-Regular.ttf b/system/fonts/NotoSansCarian-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..8abada192a016b6dd1ff6e8b92a4a899cf61a74d Binary files /dev/null and b/system/fonts/NotoSansCarian-Regular.ttf differ diff --git a/system/fonts/NotoSansCham-Bold.ttf b/system/fonts/NotoSansCham-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..5f98099b1e065ee9c7f196913553375cc97e6e00 Binary files /dev/null and b/system/fonts/NotoSansCham-Bold.ttf differ diff --git a/system/fonts/NotoSansCham-Regular.ttf b/system/fonts/NotoSansCham-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..be897d445345039267a958d12815211ed58a010e Binary files /dev/null and b/system/fonts/NotoSansCham-Regular.ttf differ diff --git a/system/fonts/NotoSansCherokee-Regular.ttf b/system/fonts/NotoSansCherokee-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..6d44506528b6b829b5f834f2728ee3a47069035e Binary files /dev/null and b/system/fonts/NotoSansCherokee-Regular.ttf differ diff --git a/system/fonts/NotoSansCoptic-Regular.ttf b/system/fonts/NotoSansCoptic-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..d327c79640ac3bfd95fc68f24348babf695ea122 Binary files /dev/null and b/system/fonts/NotoSansCoptic-Regular.ttf differ diff --git a/system/fonts/NotoSansCuneiform-Regular.ttf b/system/fonts/NotoSansCuneiform-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..37a4e9e1ae6c0b26e911d52f11ac26e11a018125 Binary files /dev/null and b/system/fonts/NotoSansCuneiform-Regular.ttf differ diff --git a/system/fonts/NotoSansCypriot-Regular.ttf b/system/fonts/NotoSansCypriot-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..bc4083e07686c51ab150dc0c890e3d2583901cfb Binary files /dev/null and b/system/fonts/NotoSansCypriot-Regular.ttf differ diff --git a/system/fonts/NotoSansDeseret-Regular.ttf b/system/fonts/NotoSansDeseret-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..c043a5434e3c9bacb631e5cef594c4673d9291cd Binary files /dev/null and b/system/fonts/NotoSansDeseret-Regular.ttf differ diff --git a/system/fonts/NotoSansDevanagari-Bold.ttf b/system/fonts/NotoSansDevanagari-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..9fe01629db5ceb3feab30fb18d167d4eed98fa7a Binary files /dev/null and b/system/fonts/NotoSansDevanagari-Bold.ttf differ diff --git a/system/fonts/NotoSansDevanagari-Regular.ttf b/system/fonts/NotoSansDevanagari-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..0a024dfdafd9c6a27de35d11017832f084da6bd8 Binary files /dev/null and b/system/fonts/NotoSansDevanagari-Regular.ttf differ diff --git a/system/fonts/NotoSansDevanagariUI-Bold.ttf b/system/fonts/NotoSansDevanagariUI-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..a0cc7dd332c710c0e49e1b84b9fe9051e841d14e Binary files /dev/null and b/system/fonts/NotoSansDevanagariUI-Bold.ttf differ diff --git a/system/fonts/NotoSansDevanagariUI-Regular.ttf b/system/fonts/NotoSansDevanagariUI-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..d74aefd65ff8a193a68eca305fc1096745ecad5b Binary files /dev/null and b/system/fonts/NotoSansDevanagariUI-Regular.ttf differ diff --git a/system/fonts/NotoSansEgyptianHieroglyphs-Regular.ttf b/system/fonts/NotoSansEgyptianHieroglyphs-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..62ee89793b15fc0b03f4f32411609e46ace67a25 Binary files /dev/null and b/system/fonts/NotoSansEgyptianHieroglyphs-Regular.ttf differ diff --git a/system/fonts/NotoSansEthiopic-Bold.ttf b/system/fonts/NotoSansEthiopic-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..6465bce6260733f8780693e4164e57e6b12c2539 Binary files /dev/null and b/system/fonts/NotoSansEthiopic-Bold.ttf differ diff --git a/system/fonts/NotoSansEthiopic-Regular.ttf b/system/fonts/NotoSansEthiopic-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..1c6194d0ab1f08f49a9870e726b5f286d9234e0f Binary files /dev/null and b/system/fonts/NotoSansEthiopic-Regular.ttf differ diff --git a/system/fonts/NotoSansGeorgian-Bold.ttf b/system/fonts/NotoSansGeorgian-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..2e01965d8b999e57f8394a052229b417fda2341a Binary files /dev/null and b/system/fonts/NotoSansGeorgian-Bold.ttf differ diff --git a/system/fonts/NotoSansGeorgian-Regular.ttf b/system/fonts/NotoSansGeorgian-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..b5a38474567acb11daf8c8e74ac4ec3485457a96 Binary files /dev/null and b/system/fonts/NotoSansGeorgian-Regular.ttf differ diff --git a/system/fonts/NotoSansGlagolitic-Regular.ttf b/system/fonts/NotoSansGlagolitic-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..86237aa8a0fe060208de69d3c2984e23947f93c3 Binary files /dev/null and b/system/fonts/NotoSansGlagolitic-Regular.ttf differ diff --git a/system/fonts/NotoSansGothic-Regular.ttf b/system/fonts/NotoSansGothic-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..d653ee10716ab0a5add1fa384afcf63798a24361 Binary files /dev/null and b/system/fonts/NotoSansGothic-Regular.ttf differ diff --git a/system/fonts/NotoSansGujarati-Bold.ttf b/system/fonts/NotoSansGujarati-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..7b6f05f2e380f03b033a681b3ac1655a919d80bd Binary files /dev/null and b/system/fonts/NotoSansGujarati-Bold.ttf differ diff --git a/system/fonts/NotoSansGujarati-Regular.ttf b/system/fonts/NotoSansGujarati-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..7af1329de1c8cd0622b8538ef2f37d5c034a5914 Binary files /dev/null and b/system/fonts/NotoSansGujarati-Regular.ttf differ diff --git a/system/fonts/NotoSansGujaratiUI-Bold.ttf b/system/fonts/NotoSansGujaratiUI-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..d60a3483dd07ae9011422c2713f9381fa65327b2 Binary files /dev/null and b/system/fonts/NotoSansGujaratiUI-Bold.ttf differ diff --git a/system/fonts/NotoSansGujaratiUI-Regular.ttf b/system/fonts/NotoSansGujaratiUI-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..1bb407d86a2f991283b6a7d6fa41a7c49cdaf90b Binary files /dev/null and b/system/fonts/NotoSansGujaratiUI-Regular.ttf differ diff --git a/system/fonts/NotoSansGurmukhi-Bold.ttf b/system/fonts/NotoSansGurmukhi-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..f9ae32247c529b45b1c036e249b10068b1add2c4 Binary files /dev/null and b/system/fonts/NotoSansGurmukhi-Bold.ttf differ diff --git a/system/fonts/NotoSansGurmukhi-Regular.ttf b/system/fonts/NotoSansGurmukhi-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..b86bbc66a3692d6e47b25b57e757e00b818a7543 Binary files /dev/null and b/system/fonts/NotoSansGurmukhi-Regular.ttf differ diff --git a/system/fonts/NotoSansGurmukhiUI-Bold.ttf b/system/fonts/NotoSansGurmukhiUI-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..9064d6bdfaf439904fb8b903c26eb5638f24e338 Binary files /dev/null and b/system/fonts/NotoSansGurmukhiUI-Bold.ttf differ diff --git a/system/fonts/NotoSansGurmukhiUI-Regular.ttf b/system/fonts/NotoSansGurmukhiUI-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..6de832dcf0707d0fc5e6cf58c011b70e5d4b4be2 Binary files /dev/null and b/system/fonts/NotoSansGurmukhiUI-Regular.ttf differ diff --git a/system/fonts/NotoSansHanunoo-Regular.ttf b/system/fonts/NotoSansHanunoo-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..480af3494d4ae0c9cdb35efd309a00966e2641c2 Binary files /dev/null and b/system/fonts/NotoSansHanunoo-Regular.ttf differ diff --git a/system/fonts/NotoSansHebrew-Bold.ttf b/system/fonts/NotoSansHebrew-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..64844fec28194bec9861e1a57053f82ba0390e33 Binary files /dev/null and b/system/fonts/NotoSansHebrew-Bold.ttf differ diff --git a/system/fonts/NotoSansHebrew-Regular.ttf b/system/fonts/NotoSansHebrew-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..c161ce529b72db594c14f395c9510462d067c85b Binary files /dev/null and b/system/fonts/NotoSansHebrew-Regular.ttf differ diff --git a/system/fonts/NotoSansImperialAramaic-Regular.ttf b/system/fonts/NotoSansImperialAramaic-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..10802e3248fb288bc7ed5cb18e50872e469056fe Binary files /dev/null and b/system/fonts/NotoSansImperialAramaic-Regular.ttf differ diff --git a/system/fonts/NotoSansInscriptionalPahlavi-Regular.ttf b/system/fonts/NotoSansInscriptionalPahlavi-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..44d529650ef7d95995027b3ef5ff3dfece59f093 Binary files /dev/null and b/system/fonts/NotoSansInscriptionalPahlavi-Regular.ttf differ diff --git a/system/fonts/NotoSansInscriptionalParthian-Regular.ttf b/system/fonts/NotoSansInscriptionalParthian-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..bca05aa7dfeff16f10ab0cd578913bfbfa56cc85 Binary files /dev/null and b/system/fonts/NotoSansInscriptionalParthian-Regular.ttf differ diff --git a/system/fonts/NotoSansJavanese-Regular.ttf b/system/fonts/NotoSansJavanese-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..2a855ed5a89c6ea689af8b459b3660d6e1fe1450 Binary files /dev/null and b/system/fonts/NotoSansJavanese-Regular.ttf differ diff --git a/system/fonts/NotoSansKaithi-Regular.ttf b/system/fonts/NotoSansKaithi-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..22b8c4761e38117712465d9ded8b1fd74a99642f Binary files /dev/null and b/system/fonts/NotoSansKaithi-Regular.ttf differ diff --git a/system/fonts/NotoSansKannada-Bold.ttf b/system/fonts/NotoSansKannada-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..b3c1032390d38351fb5b3201601339cac20c952c Binary files /dev/null and b/system/fonts/NotoSansKannada-Bold.ttf differ diff --git a/system/fonts/NotoSansKannada-Regular.ttf b/system/fonts/NotoSansKannada-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..be9d761535dcc1b3501676cd4e1bce9168f2531c Binary files /dev/null and b/system/fonts/NotoSansKannada-Regular.ttf differ diff --git a/system/fonts/NotoSansKannadaUI-Bold.ttf b/system/fonts/NotoSansKannadaUI-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..715f013891472aa66feca2c0fd3e10df3f72b1fe Binary files /dev/null and b/system/fonts/NotoSansKannadaUI-Bold.ttf differ diff --git a/system/fonts/NotoSansKannadaUI-Regular.ttf b/system/fonts/NotoSansKannadaUI-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..bea2878e2df6842264f45f7c4106e445ffef8e43 Binary files /dev/null and b/system/fonts/NotoSansKannadaUI-Regular.ttf differ diff --git a/system/fonts/NotoSansKayahLi-Regular.ttf b/system/fonts/NotoSansKayahLi-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..75b6b8013e48be638582bb4b9b76aaa04ccc05ff Binary files /dev/null and b/system/fonts/NotoSansKayahLi-Regular.ttf differ diff --git a/system/fonts/NotoSansKharoshthi-Regular.ttf b/system/fonts/NotoSansKharoshthi-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..1f4a9a6673c57331dadce35bb9771630c8da33e6 Binary files /dev/null and b/system/fonts/NotoSansKharoshthi-Regular.ttf differ diff --git a/system/fonts/NotoSansKhmer-VF.ttf b/system/fonts/NotoSansKhmer-VF.ttf new file mode 100644 index 0000000000000000000000000000000000000000..1ba1f1d78a61f03741302c23327c76df4f891001 Binary files /dev/null and b/system/fonts/NotoSansKhmer-VF.ttf differ diff --git a/system/fonts/NotoSansKhmerUI-Bold.ttf b/system/fonts/NotoSansKhmerUI-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..592414c3f2c7b64c8b8f045007587acc5d99cd30 Binary files /dev/null and b/system/fonts/NotoSansKhmerUI-Bold.ttf differ diff --git a/system/fonts/NotoSansKhmerUI-Regular.ttf b/system/fonts/NotoSansKhmerUI-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..7a11a8153266ed833595ff6991eddc310919b5c2 Binary files /dev/null and b/system/fonts/NotoSansKhmerUI-Regular.ttf differ diff --git a/system/fonts/NotoSansLao-Bold.ttf b/system/fonts/NotoSansLao-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..0482fc7d625806b0e66d5b8e050de6e83813e98c Binary files /dev/null and b/system/fonts/NotoSansLao-Bold.ttf differ diff --git a/system/fonts/NotoSansLao-Regular.ttf b/system/fonts/NotoSansLao-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..20f1af8619503c8b212af662e4a8be1dfbde0e58 Binary files /dev/null and b/system/fonts/NotoSansLao-Regular.ttf differ diff --git a/system/fonts/NotoSansLaoUI-Bold.ttf b/system/fonts/NotoSansLaoUI-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..4ca61cf23b38c1e979bbbaf374d12617165a7a8f Binary files /dev/null and b/system/fonts/NotoSansLaoUI-Bold.ttf differ diff --git a/system/fonts/NotoSansLaoUI-Regular.ttf b/system/fonts/NotoSansLaoUI-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..61d755df3b9ed4a66b24a75f3bcd2e483de9238c Binary files /dev/null and b/system/fonts/NotoSansLaoUI-Regular.ttf differ diff --git a/system/fonts/NotoSansLepcha-Regular.ttf b/system/fonts/NotoSansLepcha-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..b86dc59829f1b79a0f6cb747650f7267dc85c145 Binary files /dev/null and b/system/fonts/NotoSansLepcha-Regular.ttf differ diff --git a/system/fonts/NotoSansLimbu-Regular.ttf b/system/fonts/NotoSansLimbu-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..b9eca0839f0ef35c048701bb0c05beaedfa30551 Binary files /dev/null and b/system/fonts/NotoSansLimbu-Regular.ttf differ diff --git a/system/fonts/NotoSansLinearB-Regular.ttf b/system/fonts/NotoSansLinearB-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..b7415078ef1a0a0df88d1347fc3aa9db1d68b73d Binary files /dev/null and b/system/fonts/NotoSansLinearB-Regular.ttf differ diff --git a/system/fonts/NotoSansLisu-Regular.ttf b/system/fonts/NotoSansLisu-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..12405b4a5042362a2c4b07375a94288862d1a311 Binary files /dev/null and b/system/fonts/NotoSansLisu-Regular.ttf differ diff --git a/system/fonts/NotoSansLycian-Regular.ttf b/system/fonts/NotoSansLycian-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..30310c20e56436bdac2ebd9ac4c8f1e4eb5a0a70 Binary files /dev/null and b/system/fonts/NotoSansLycian-Regular.ttf differ diff --git a/system/fonts/NotoSansLydian-Regular.ttf b/system/fonts/NotoSansLydian-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..fc5bf5fd1ebc2275075bb1f29e6a6e549a40dcff Binary files /dev/null and b/system/fonts/NotoSansLydian-Regular.ttf differ diff --git a/system/fonts/NotoSansMalayalam-Bold.ttf b/system/fonts/NotoSansMalayalam-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..5f6ca0c6ac3e56d69a310842c9f98e1b7a325c6e Binary files /dev/null and b/system/fonts/NotoSansMalayalam-Bold.ttf differ diff --git a/system/fonts/NotoSansMalayalam-Regular.ttf b/system/fonts/NotoSansMalayalam-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..be82967e868d633bc01ee101d8061053d1b265bb Binary files /dev/null and b/system/fonts/NotoSansMalayalam-Regular.ttf differ diff --git a/system/fonts/NotoSansMalayalamUI-Bold.ttf b/system/fonts/NotoSansMalayalamUI-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..0919b8c7fd203b97528644e361be00626001f3eb Binary files /dev/null and b/system/fonts/NotoSansMalayalamUI-Bold.ttf differ diff --git a/system/fonts/NotoSansMalayalamUI-Regular.ttf b/system/fonts/NotoSansMalayalamUI-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..4f1b4083fa462fdf695c4f682a6bbf8ef89188dc Binary files /dev/null and b/system/fonts/NotoSansMalayalamUI-Regular.ttf differ diff --git a/system/fonts/NotoSansMandaic-Regular.ttf b/system/fonts/NotoSansMandaic-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..1a533e1b33890fb740c1acbb1fad58acc9a8ece5 Binary files /dev/null and b/system/fonts/NotoSansMandaic-Regular.ttf differ diff --git a/system/fonts/NotoSansMeeteiMayek-Regular.ttf b/system/fonts/NotoSansMeeteiMayek-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..3059a6c3a6dbb961c4ae348273e260dd6b465129 Binary files /dev/null and b/system/fonts/NotoSansMeeteiMayek-Regular.ttf differ diff --git a/system/fonts/NotoSansMongolian-Regular.ttf b/system/fonts/NotoSansMongolian-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..760d7e0d3dc9980ac71f2f77ee6d9b8dc70ff091 Binary files /dev/null and b/system/fonts/NotoSansMongolian-Regular.ttf differ diff --git a/system/fonts/NotoSansMyanmar-Bold.ttf b/system/fonts/NotoSansMyanmar-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..9f74c12152b207917523238e1a008df088ee6637 Binary files /dev/null and b/system/fonts/NotoSansMyanmar-Bold.ttf differ diff --git a/system/fonts/NotoSansMyanmar-Regular.ttf b/system/fonts/NotoSansMyanmar-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..034660b15a387353b4cf90fba244c03d3e5b412a Binary files /dev/null and b/system/fonts/NotoSansMyanmar-Regular.ttf differ diff --git a/system/fonts/NotoSansMyanmarUI-Bold.ttf b/system/fonts/NotoSansMyanmarUI-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..1c76aa7d8e9b160ba5231b0d5bf1ef9b3586b6a0 Binary files /dev/null and b/system/fonts/NotoSansMyanmarUI-Bold.ttf differ diff --git a/system/fonts/NotoSansMyanmarUI-Regular.ttf b/system/fonts/NotoSansMyanmarUI-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..a435ba192a052a0eb909a3e386a7c4e03918a3ca Binary files /dev/null and b/system/fonts/NotoSansMyanmarUI-Regular.ttf differ diff --git a/system/fonts/NotoSansNKo-Regular.ttf b/system/fonts/NotoSansNKo-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..091416be4d7e6ce32bd61121efb99d1a80b0b025 Binary files /dev/null and b/system/fonts/NotoSansNKo-Regular.ttf differ diff --git a/system/fonts/NotoSansNewTaiLue-Regular.ttf b/system/fonts/NotoSansNewTaiLue-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..bc79a793038041335047293e05aad9f6994992bd Binary files /dev/null and b/system/fonts/NotoSansNewTaiLue-Regular.ttf differ diff --git a/system/fonts/NotoSansOgham-Regular.ttf b/system/fonts/NotoSansOgham-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..8943189c52fdbe0d2230a399fa146995686880cd Binary files /dev/null and b/system/fonts/NotoSansOgham-Regular.ttf differ diff --git a/system/fonts/NotoSansOlChiki-Regular.ttf b/system/fonts/NotoSansOlChiki-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..332664043a925e84683791c94aa5881919296a8f Binary files /dev/null and b/system/fonts/NotoSansOlChiki-Regular.ttf differ diff --git a/system/fonts/NotoSansOldItalic-Regular.ttf b/system/fonts/NotoSansOldItalic-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..4a63a5e72d41d9793929e9a01f37294c02bc4670 Binary files /dev/null and b/system/fonts/NotoSansOldItalic-Regular.ttf differ diff --git a/system/fonts/NotoSansOldPersian-Regular.ttf b/system/fonts/NotoSansOldPersian-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..21166f443ee32cd251d7361593f72d0d28bd5177 Binary files /dev/null and b/system/fonts/NotoSansOldPersian-Regular.ttf differ diff --git a/system/fonts/NotoSansOldSouthArabian-Regular.ttf b/system/fonts/NotoSansOldSouthArabian-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..5037bd996685df1656d01e565f544e49c758973e Binary files /dev/null and b/system/fonts/NotoSansOldSouthArabian-Regular.ttf differ diff --git a/system/fonts/NotoSansOldTurkic-Regular.ttf b/system/fonts/NotoSansOldTurkic-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..1652ad157a20aa97dbf393f10621b5fc45f5789d Binary files /dev/null and b/system/fonts/NotoSansOldTurkic-Regular.ttf differ diff --git a/system/fonts/NotoSansOriya-Bold.ttf b/system/fonts/NotoSansOriya-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..ab6e759a5f2d365dd6918ee52575b637068ceb84 Binary files /dev/null and b/system/fonts/NotoSansOriya-Bold.ttf differ diff --git a/system/fonts/NotoSansOriya-Regular.ttf b/system/fonts/NotoSansOriya-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..92abe640c2c0cdedb1093c50a906dd17890f1dc5 Binary files /dev/null and b/system/fonts/NotoSansOriya-Regular.ttf differ diff --git a/system/fonts/NotoSansOriyaUI-Bold.ttf b/system/fonts/NotoSansOriyaUI-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..1b32205ebc7823557a727a8f3009b2827d93a848 Binary files /dev/null and b/system/fonts/NotoSansOriyaUI-Bold.ttf differ diff --git a/system/fonts/NotoSansOriyaUI-Regular.ttf b/system/fonts/NotoSansOriyaUI-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..5738e1d558ec546f56f498d2b1fca1846a122843 Binary files /dev/null and b/system/fonts/NotoSansOriyaUI-Regular.ttf differ diff --git a/system/fonts/NotoSansOsmanya-Regular.ttf b/system/fonts/NotoSansOsmanya-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..dd0b982db8c9c654b75709d68d845cc2c31b01a4 Binary files /dev/null and b/system/fonts/NotoSansOsmanya-Regular.ttf differ diff --git a/system/fonts/NotoSansPhagsPa-Regular.ttf b/system/fonts/NotoSansPhagsPa-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..bd59e328f003e19202826e4b315f6b4c0771cba8 Binary files /dev/null and b/system/fonts/NotoSansPhagsPa-Regular.ttf differ diff --git a/system/fonts/NotoSansPhoenician-Regular.ttf b/system/fonts/NotoSansPhoenician-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..345a9770a0e6a38fa3e85e26d43d3eabd484c591 Binary files /dev/null and b/system/fonts/NotoSansPhoenician-Regular.ttf differ diff --git a/system/fonts/NotoSansRejang-Regular.ttf b/system/fonts/NotoSansRejang-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..3d95fd3d90e518e1519fbc450747e4314d9d14f3 Binary files /dev/null and b/system/fonts/NotoSansRejang-Regular.ttf differ diff --git a/system/fonts/NotoSansRunic-Regular.ttf b/system/fonts/NotoSansRunic-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..64a18b17d77658ae1109970185a181d506ed8eae Binary files /dev/null and b/system/fonts/NotoSansRunic-Regular.ttf differ diff --git a/system/fonts/NotoSansSamaritan-Regular.ttf b/system/fonts/NotoSansSamaritan-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..9fe427c84ddddf9debe6156171039c4d22e10e21 Binary files /dev/null and b/system/fonts/NotoSansSamaritan-Regular.ttf differ diff --git a/system/fonts/NotoSansSaurashtra-Regular.ttf b/system/fonts/NotoSansSaurashtra-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..6ca7590aedb42d0ab18aa3193c31b2414db33902 Binary files /dev/null and b/system/fonts/NotoSansSaurashtra-Regular.ttf differ diff --git a/system/fonts/NotoSansShavian-Regular.ttf b/system/fonts/NotoSansShavian-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..265c5231b34ac85caf164caced2ba0ec222ccba2 Binary files /dev/null and b/system/fonts/NotoSansShavian-Regular.ttf differ diff --git a/system/fonts/NotoSansSinhala-Bold.ttf b/system/fonts/NotoSansSinhala-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..1ba5a1c8ff95796375ea778c99dc65c334da718f Binary files /dev/null and b/system/fonts/NotoSansSinhala-Bold.ttf differ diff --git a/system/fonts/NotoSansSinhala-Regular.ttf b/system/fonts/NotoSansSinhala-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..9f4de713e68ab372ab3ae8b1a15715ecb2b24330 Binary files /dev/null and b/system/fonts/NotoSansSinhala-Regular.ttf differ diff --git a/system/fonts/NotoSansSundanese-Regular.ttf b/system/fonts/NotoSansSundanese-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..5c19cd703bb679ebd4ccc75ab695e48895d0dc58 Binary files /dev/null and b/system/fonts/NotoSansSundanese-Regular.ttf differ diff --git a/system/fonts/NotoSansSylotiNagri-Regular.ttf b/system/fonts/NotoSansSylotiNagri-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..164c217faca9ea79cdb124b21d68c0438012cca3 Binary files /dev/null and b/system/fonts/NotoSansSylotiNagri-Regular.ttf differ diff --git a/system/fonts/NotoSansSymbols-Regular-Subsetted.ttf b/system/fonts/NotoSansSymbols-Regular-Subsetted.ttf new file mode 100644 index 0000000000000000000000000000000000000000..ebea59bf781891dc3524817c1df292f113916d0c Binary files /dev/null and b/system/fonts/NotoSansSymbols-Regular-Subsetted.ttf differ diff --git a/system/fonts/NotoSansSymbols-Regular-Subsetted2.ttf b/system/fonts/NotoSansSymbols-Regular-Subsetted2.ttf new file mode 100644 index 0000000000000000000000000000000000000000..cc3e29f953547c9d56d8009446ea0ec5bcd63487 Binary files /dev/null and b/system/fonts/NotoSansSymbols-Regular-Subsetted2.ttf differ diff --git a/system/fonts/NotoSansSyriacEastern-Regular.ttf b/system/fonts/NotoSansSyriacEastern-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..25ee338b9b9443f618b0c145c494b36084263a65 Binary files /dev/null and b/system/fonts/NotoSansSyriacEastern-Regular.ttf differ diff --git a/system/fonts/NotoSansSyriacEstrangela-Regular.ttf b/system/fonts/NotoSansSyriacEstrangela-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..07a2e043e540b970aa59443dfed21bc921bb114a Binary files /dev/null and b/system/fonts/NotoSansSyriacEstrangela-Regular.ttf differ diff --git a/system/fonts/NotoSansSyriacWestern-Regular.ttf b/system/fonts/NotoSansSyriacWestern-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..f0f9de14608964b61ef98f3516e1b6504fbd6b90 Binary files /dev/null and b/system/fonts/NotoSansSyriacWestern-Regular.ttf differ diff --git a/system/fonts/NotoSansTagalog-Regular.ttf b/system/fonts/NotoSansTagalog-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..0aff41104aa6f0f6b13f573e9112c4ab9d543d82 Binary files /dev/null and b/system/fonts/NotoSansTagalog-Regular.ttf differ diff --git a/system/fonts/NotoSansTagbanwa-Regular.ttf b/system/fonts/NotoSansTagbanwa-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..286cf4c1926727d5c9e4d7d5d41313256c8cce63 Binary files /dev/null and b/system/fonts/NotoSansTagbanwa-Regular.ttf differ diff --git a/system/fonts/NotoSansTaiLe-Regular.ttf b/system/fonts/NotoSansTaiLe-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..88ea3fd76f83e481dda288fae877582dbc6648bb Binary files /dev/null and b/system/fonts/NotoSansTaiLe-Regular.ttf differ diff --git a/system/fonts/NotoSansTaiTham-Regular.ttf b/system/fonts/NotoSansTaiTham-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..faa8ddf6ce03e2a0ceebee66ae0690ffbffa133f Binary files /dev/null and b/system/fonts/NotoSansTaiTham-Regular.ttf differ diff --git a/system/fonts/NotoSansTaiViet-Regular.ttf b/system/fonts/NotoSansTaiViet-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..9208fc776255d92d763caf100340f5129b179904 Binary files /dev/null and b/system/fonts/NotoSansTaiViet-Regular.ttf differ diff --git a/system/fonts/NotoSansTamil-Bold.ttf b/system/fonts/NotoSansTamil-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..f15bfad612773edd9112a12c51d278ec042ce5c9 Binary files /dev/null and b/system/fonts/NotoSansTamil-Bold.ttf differ diff --git a/system/fonts/NotoSansTamil-Regular.ttf b/system/fonts/NotoSansTamil-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..635a23862968dfdcc7ae033519805424fe2e5561 Binary files /dev/null and b/system/fonts/NotoSansTamil-Regular.ttf differ diff --git a/system/fonts/NotoSansTamilUI-Bold.ttf b/system/fonts/NotoSansTamilUI-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..297f30ba61b5cca761dd02eb146eea8d2d8db354 Binary files /dev/null and b/system/fonts/NotoSansTamilUI-Bold.ttf differ diff --git a/system/fonts/NotoSansTamilUI-Regular.ttf b/system/fonts/NotoSansTamilUI-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..360bed87b1ee0d58a3a0dee0314f85a44bef7605 Binary files /dev/null and b/system/fonts/NotoSansTamilUI-Regular.ttf differ diff --git a/system/fonts/NotoSansTelugu-Bold.ttf b/system/fonts/NotoSansTelugu-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..cfb258807f8e6551fde7fdf1a13241da67f24278 Binary files /dev/null and b/system/fonts/NotoSansTelugu-Bold.ttf differ diff --git a/system/fonts/NotoSansTelugu-Regular.ttf b/system/fonts/NotoSansTelugu-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..5134cbdfbd85609ae3cd6b6bf56524c5d5348575 Binary files /dev/null and b/system/fonts/NotoSansTelugu-Regular.ttf differ diff --git a/system/fonts/NotoSansTeluguUI-Bold.ttf b/system/fonts/NotoSansTeluguUI-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..93e1886cd43a142bce97f6b780acc905998e9238 Binary files /dev/null and b/system/fonts/NotoSansTeluguUI-Bold.ttf differ diff --git a/system/fonts/NotoSansTeluguUI-Regular.ttf b/system/fonts/NotoSansTeluguUI-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..aa5fea2009a353341848950fea88d9f7750dd318 Binary files /dev/null and b/system/fonts/NotoSansTeluguUI-Regular.ttf differ diff --git a/system/fonts/NotoSansThaana-Bold.ttf b/system/fonts/NotoSansThaana-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..98619569516b8971b019f72148e847d171d1fe86 Binary files /dev/null and b/system/fonts/NotoSansThaana-Bold.ttf differ diff --git a/system/fonts/NotoSansThaana-Regular.ttf b/system/fonts/NotoSansThaana-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..8fcf561a57ba06ae443d7fb1c533f5f28d7f19f5 Binary files /dev/null and b/system/fonts/NotoSansThaana-Regular.ttf differ diff --git a/system/fonts/NotoSansThai-Bold.ttf b/system/fonts/NotoSansThai-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..3b5ed2875cc990cee6096c85977fc6d8133bede2 Binary files /dev/null and b/system/fonts/NotoSansThai-Bold.ttf differ diff --git a/system/fonts/NotoSansThai-Regular.ttf b/system/fonts/NotoSansThai-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..552c3561767975274bba211646560ce890a4dc4e Binary files /dev/null and b/system/fonts/NotoSansThai-Regular.ttf differ diff --git a/system/fonts/NotoSansThaiUI-Bold.ttf b/system/fonts/NotoSansThaiUI-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..3bc9a7051544b8453138d9e89cae2a42136141c0 Binary files /dev/null and b/system/fonts/NotoSansThaiUI-Bold.ttf differ diff --git a/system/fonts/NotoSansThaiUI-Regular.ttf b/system/fonts/NotoSansThaiUI-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..9fe222d4e10dad6d4fac82e60799d8c20e253aea Binary files /dev/null and b/system/fonts/NotoSansThaiUI-Regular.ttf differ diff --git a/system/fonts/NotoSansTibetan-Bold.ttf b/system/fonts/NotoSansTibetan-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..7a5144dd5e9d33d0f3a8c28f7d7dcd391682f3eb Binary files /dev/null and b/system/fonts/NotoSansTibetan-Bold.ttf differ diff --git a/system/fonts/NotoSansTibetan-Regular.ttf b/system/fonts/NotoSansTibetan-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..65f0e93dfe000d65f1553cef361fa7dda554b9b8 Binary files /dev/null and b/system/fonts/NotoSansTibetan-Regular.ttf differ diff --git a/system/fonts/NotoSansTifinagh-Regular.ttf b/system/fonts/NotoSansTifinagh-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..96929440bc831b80c8e04cacc358a8d1c5da7c16 Binary files /dev/null and b/system/fonts/NotoSansTifinagh-Regular.ttf differ diff --git a/system/fonts/NotoSansUgaritic-Regular.ttf b/system/fonts/NotoSansUgaritic-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..dec137d5e473e951c93708eacabaf5269bbcb9d4 Binary files /dev/null and b/system/fonts/NotoSansUgaritic-Regular.ttf differ diff --git a/system/fonts/NotoSansVai-Regular.ttf b/system/fonts/NotoSansVai-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..3ec5fccfa833a77411f8d98b0bc0a8a556cb585d Binary files /dev/null and b/system/fonts/NotoSansVai-Regular.ttf differ diff --git a/system/fonts/NotoSansYi-Regular.ttf b/system/fonts/NotoSansYi-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..5bd81f9cb55f0ff4a5965b985ea2f4727d2efd89 Binary files /dev/null and b/system/fonts/NotoSansYi-Regular.ttf differ diff --git a/system/fonts/NotoSerif-Bold.ttf b/system/fonts/NotoSerif-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..2ffdf8c1cb7642a53c00e2d59019e831bd382d55 Binary files /dev/null and b/system/fonts/NotoSerif-Bold.ttf differ diff --git a/system/fonts/NotoSerif-BoldItalic.ttf b/system/fonts/NotoSerif-BoldItalic.ttf new file mode 100644 index 0000000000000000000000000000000000000000..4a317f818eed99a4e39fcda044784652d3484804 Binary files /dev/null and b/system/fonts/NotoSerif-BoldItalic.ttf differ diff --git a/system/fonts/NotoSerif-Italic.ttf b/system/fonts/NotoSerif-Italic.ttf new file mode 100644 index 0000000000000000000000000000000000000000..968b46bca3f5c5f540c827059e84724abad4321c Binary files /dev/null and b/system/fonts/NotoSerif-Italic.ttf differ diff --git a/system/fonts/NotoSerif-Regular.ttf b/system/fonts/NotoSerif-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..9d9a347f6cc328b3e302379bf5d3a00e20d00624 Binary files /dev/null and b/system/fonts/NotoSerif-Regular.ttf differ diff --git a/system/fonts/Roboto-Black.ttf b/system/fonts/Roboto-Black.ttf new file mode 100644 index 0000000000000000000000000000000000000000..3ecbdefd9df296d4bfaf4a97bfffd0f1271e6447 Binary files /dev/null and b/system/fonts/Roboto-Black.ttf differ diff --git a/system/fonts/Roboto-BlackItalic.ttf b/system/fonts/Roboto-BlackItalic.ttf new file mode 100644 index 0000000000000000000000000000000000000000..44c086c17623c3c3cf3b6fa377aa376806c9f6b1 Binary files /dev/null and b/system/fonts/Roboto-BlackItalic.ttf differ diff --git a/system/fonts/Roboto-Bold.ttf b/system/fonts/Roboto-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..70def3f7f839a20a093ff2b1adac3dac91449a49 Binary files /dev/null and b/system/fonts/Roboto-Bold.ttf differ diff --git a/system/fonts/Roboto-BoldItalic.ttf b/system/fonts/Roboto-BoldItalic.ttf new file mode 100644 index 0000000000000000000000000000000000000000..216f9ceea1cfcf6063430db24c42c7ab785bf81d Binary files /dev/null and b/system/fonts/Roboto-BoldItalic.ttf differ diff --git a/system/fonts/Roboto-Italic.ttf b/system/fonts/Roboto-Italic.ttf new file mode 100644 index 0000000000000000000000000000000000000000..f0f33dbdfa5afc355bc69802eda5751085ddb9fa Binary files /dev/null and b/system/fonts/Roboto-Italic.ttf differ diff --git a/system/fonts/Roboto-Light.ttf b/system/fonts/Roboto-Light.ttf new file mode 100644 index 0000000000000000000000000000000000000000..3a0304450c2f0cc5b372f6d75e579c77e2b75911 Binary files /dev/null and b/system/fonts/Roboto-Light.ttf differ diff --git a/system/fonts/Roboto-LightItalic.ttf b/system/fonts/Roboto-LightItalic.ttf new file mode 100644 index 0000000000000000000000000000000000000000..983381b67912bc18952139e4e9992765c2490f9d Binary files /dev/null and b/system/fonts/Roboto-LightItalic.ttf differ diff --git a/system/fonts/Roboto-Medium.ttf b/system/fonts/Roboto-Medium.ttf new file mode 100644 index 0000000000000000000000000000000000000000..284b1ba865d1bc19ccb29a659b7c373fb295ca24 Binary files /dev/null and b/system/fonts/Roboto-Medium.ttf differ diff --git a/system/fonts/Roboto-MediumItalic.ttf b/system/fonts/Roboto-MediumItalic.ttf new file mode 100644 index 0000000000000000000000000000000000000000..a0b10d2f35c41ab087196c9ed5ab8a944b173e85 Binary files /dev/null and b/system/fonts/Roboto-MediumItalic.ttf differ diff --git a/system/fonts/Roboto-Regular.ttf b/system/fonts/Roboto-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..500b1045b0c94d83d2e6798aaf1faa55a2dab6fc Binary files /dev/null and b/system/fonts/Roboto-Regular.ttf differ diff --git a/system/fonts/Roboto-Thin.ttf b/system/fonts/Roboto-Thin.ttf new file mode 100644 index 0000000000000000000000000000000000000000..0c7d50ba49ee293157dfa7024c601fdf35fe4a59 Binary files /dev/null and b/system/fonts/Roboto-Thin.ttf differ diff --git a/system/fonts/Roboto-ThinItalic.ttf b/system/fonts/Roboto-ThinItalic.ttf new file mode 100644 index 0000000000000000000000000000000000000000..277d8cf98fa21abad6b0e567f5e5f868d4e18e07 Binary files /dev/null and b/system/fonts/Roboto-ThinItalic.ttf differ diff --git a/system/fonts/RobotoCondensed-Bold.ttf b/system/fonts/RobotoCondensed-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..f1de58fc34ae98f03b49f49e5a52df4ced5ec25a Binary files /dev/null and b/system/fonts/RobotoCondensed-Bold.ttf differ diff --git a/system/fonts/RobotoCondensed-BoldItalic.ttf b/system/fonts/RobotoCondensed-BoldItalic.ttf new file mode 100644 index 0000000000000000000000000000000000000000..dc0ae5d7fffa4887fb7077719d91c67335466786 Binary files /dev/null and b/system/fonts/RobotoCondensed-BoldItalic.ttf differ diff --git a/system/fonts/RobotoCondensed-Italic.ttf b/system/fonts/RobotoCondensed-Italic.ttf new file mode 100644 index 0000000000000000000000000000000000000000..7f075cfb006af0679361fd3be2250c9f31625c98 Binary files /dev/null and b/system/fonts/RobotoCondensed-Italic.ttf differ diff --git a/system/fonts/RobotoCondensed-Light.ttf b/system/fonts/RobotoCondensed-Light.ttf new file mode 100644 index 0000000000000000000000000000000000000000..2c514bacbd20381b798a86d54828365159d57f34 Binary files /dev/null and b/system/fonts/RobotoCondensed-Light.ttf differ diff --git a/system/fonts/RobotoCondensed-LightItalic.ttf b/system/fonts/RobotoCondensed-LightItalic.ttf new file mode 100644 index 0000000000000000000000000000000000000000..248ffe85537365329bc6a33d72e6ab86b2537d9a Binary files /dev/null and b/system/fonts/RobotoCondensed-LightItalic.ttf differ diff --git a/system/fonts/RobotoCondensed-Medium.ttf b/system/fonts/RobotoCondensed-Medium.ttf new file mode 100644 index 0000000000000000000000000000000000000000..b3393ed55c7687af8f44aae3a733feba04f0e3f5 Binary files /dev/null and b/system/fonts/RobotoCondensed-Medium.ttf differ diff --git a/system/fonts/RobotoCondensed-MediumItalic.ttf b/system/fonts/RobotoCondensed-MediumItalic.ttf new file mode 100644 index 0000000000000000000000000000000000000000..a8fd4f73f95ea9a290f6bbf1620b402ed074fdf1 Binary files /dev/null and b/system/fonts/RobotoCondensed-MediumItalic.ttf differ diff --git a/system/fonts/RobotoCondensed-Regular.ttf b/system/fonts/RobotoCondensed-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..5ae7043b58c53a0d5855fa8d50784681aba0c1c4 Binary files /dev/null and b/system/fonts/RobotoCondensed-Regular.ttf differ diff --git a/system/framework/CustomPropInterface.jar b/system/framework/CustomPropInterface.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/CustomPropInterface.jar differ diff --git a/system/framework/am.jar b/system/framework/am.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/am.jar differ diff --git a/system/framework/android.hidl.base-V1.0-java.jar b/system/framework/android.hidl.base-V1.0-java.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/android.hidl.base-V1.0-java.jar differ diff --git a/system/framework/android.hidl.manager-V1.0-java.jar b/system/framework/android.hidl.manager-V1.0-java.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/android.hidl.manager-V1.0-java.jar differ diff --git a/system/framework/android.test.mock.jar b/system/framework/android.test.mock.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/android.test.mock.jar differ diff --git a/system/framework/android.test.runner.jar b/system/framework/android.test.runner.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/android.test.runner.jar differ diff --git a/system/framework/apache-xml.jar b/system/framework/apache-xml.jar new file mode 100644 index 0000000000000000000000000000000000000000..69af05bebfd130628b2bad451f32ebdf3b5209b2 Binary files /dev/null and b/system/framework/apache-xml.jar differ diff --git a/system/framework/appwidget.jar b/system/framework/appwidget.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/appwidget.jar differ diff --git a/system/framework/arm/boot-android.hidl.base-V1.0-java.art b/system/framework/arm/boot-android.hidl.base-V1.0-java.art new file mode 100644 index 0000000000000000000000000000000000000000..15d2138f72a445979e4a1c1a49f392c93ef335b2 Binary files /dev/null and b/system/framework/arm/boot-android.hidl.base-V1.0-java.art differ diff --git a/system/framework/arm/boot-android.hidl.base-V1.0-java.oat b/system/framework/arm/boot-android.hidl.base-V1.0-java.oat new file mode 100644 index 0000000000000000000000000000000000000000..db9f483e7e5830f4e6b1fa2b26e4611e3d2a1c98 Binary files /dev/null and b/system/framework/arm/boot-android.hidl.base-V1.0-java.oat differ diff --git a/system/framework/arm/boot-android.hidl.base-V1.0-java.vdex b/system/framework/arm/boot-android.hidl.base-V1.0-java.vdex new file mode 100644 index 0000000000000000000000000000000000000000..0c8851d4fbf5df0f4288a9db2086fc6ddc28381a Binary files /dev/null and b/system/framework/arm/boot-android.hidl.base-V1.0-java.vdex differ diff --git a/system/framework/arm/boot-android.hidl.manager-V1.0-java.art b/system/framework/arm/boot-android.hidl.manager-V1.0-java.art new file mode 100644 index 0000000000000000000000000000000000000000..4113d5b61813a3343f2c1813fa98802b9c74848f Binary files /dev/null and b/system/framework/arm/boot-android.hidl.manager-V1.0-java.art differ diff --git a/system/framework/arm/boot-android.hidl.manager-V1.0-java.oat b/system/framework/arm/boot-android.hidl.manager-V1.0-java.oat new file mode 100644 index 0000000000000000000000000000000000000000..04580474cb6a5bad67061457174fc3e7d37bc75b Binary files /dev/null and b/system/framework/arm/boot-android.hidl.manager-V1.0-java.oat differ diff --git a/system/framework/arm/boot-android.hidl.manager-V1.0-java.vdex b/system/framework/arm/boot-android.hidl.manager-V1.0-java.vdex new file mode 100644 index 0000000000000000000000000000000000000000..8fa7f6b9fbbef7ccc757a416ce78ea36d13a931c Binary files /dev/null and b/system/framework/arm/boot-android.hidl.manager-V1.0-java.vdex differ diff --git a/system/framework/arm/boot-apache-xml.art b/system/framework/arm/boot-apache-xml.art new file mode 100644 index 0000000000000000000000000000000000000000..133306ec1206daf614037c3c421b85bb5d33e921 Binary files /dev/null and b/system/framework/arm/boot-apache-xml.art differ diff --git a/system/framework/arm/boot-apache-xml.oat b/system/framework/arm/boot-apache-xml.oat new file mode 100644 index 0000000000000000000000000000000000000000..68b664c9d6eda667c7a4459844a3d6377d99d523 Binary files /dev/null and b/system/framework/arm/boot-apache-xml.oat differ diff --git a/system/framework/arm/boot-apache-xml.vdex b/system/framework/arm/boot-apache-xml.vdex new file mode 100644 index 0000000000000000000000000000000000000000..5bb332f14a9a06715041f6fc5b3030ec00b0688c Binary files /dev/null and b/system/framework/arm/boot-apache-xml.vdex differ diff --git a/system/framework/arm/boot-bouncycastle.art b/system/framework/arm/boot-bouncycastle.art new file mode 100644 index 0000000000000000000000000000000000000000..ea55b934469c8027bbcd2722772e502edf3276ad Binary files /dev/null and b/system/framework/arm/boot-bouncycastle.art differ diff --git a/system/framework/arm/boot-bouncycastle.oat b/system/framework/arm/boot-bouncycastle.oat new file mode 100644 index 0000000000000000000000000000000000000000..ad8d529acebb7381de4ca0aa1b3540a04d619943 Binary files /dev/null and b/system/framework/arm/boot-bouncycastle.oat differ diff --git a/system/framework/arm/boot-bouncycastle.vdex b/system/framework/arm/boot-bouncycastle.vdex new file mode 100644 index 0000000000000000000000000000000000000000..966e974de28f80e495b967f3024bf9244d2ae335 Binary files /dev/null and b/system/framework/arm/boot-bouncycastle.vdex differ diff --git a/system/framework/arm/boot-conscrypt.art b/system/framework/arm/boot-conscrypt.art new file mode 100644 index 0000000000000000000000000000000000000000..b46683ebad36de2483fd43ec957bab0f57b3e046 Binary files /dev/null and b/system/framework/arm/boot-conscrypt.art differ diff --git a/system/framework/arm/boot-conscrypt.oat b/system/framework/arm/boot-conscrypt.oat new file mode 100644 index 0000000000000000000000000000000000000000..3ed3659ddb3248635da229e5ad92e96990ed938a Binary files /dev/null and b/system/framework/arm/boot-conscrypt.oat differ diff --git a/system/framework/arm/boot-conscrypt.vdex b/system/framework/arm/boot-conscrypt.vdex new file mode 100644 index 0000000000000000000000000000000000000000..db45d803e1e7bdda02c5264feefa3d02fce14a47 Binary files /dev/null and b/system/framework/arm/boot-conscrypt.vdex differ diff --git a/system/framework/arm/boot-core-libart.art b/system/framework/arm/boot-core-libart.art new file mode 100644 index 0000000000000000000000000000000000000000..62941eaa875cb796a0b580597a2f12d60e6a9f8e Binary files /dev/null and b/system/framework/arm/boot-core-libart.art differ diff --git a/system/framework/arm/boot-core-libart.oat b/system/framework/arm/boot-core-libart.oat new file mode 100644 index 0000000000000000000000000000000000000000..447ea69e01f47da422b113d851f9bb9d6b79ce9b Binary files /dev/null and b/system/framework/arm/boot-core-libart.oat differ diff --git a/system/framework/arm/boot-core-libart.vdex b/system/framework/arm/boot-core-libart.vdex new file mode 100644 index 0000000000000000000000000000000000000000..50ee35a6a19c8c9dab2c0727f30e55a5d6bcb69c Binary files /dev/null and b/system/framework/arm/boot-core-libart.vdex differ diff --git a/system/framework/arm/boot-ext.art b/system/framework/arm/boot-ext.art new file mode 100644 index 0000000000000000000000000000000000000000..6ad1fc40ab9eda481231e532aced1d4b7adc5b15 Binary files /dev/null and b/system/framework/arm/boot-ext.art differ diff --git a/system/framework/arm/boot-ext.oat b/system/framework/arm/boot-ext.oat new file mode 100644 index 0000000000000000000000000000000000000000..8019b6dc0811b1a0997320e39d93e35a9d412c1c Binary files /dev/null and b/system/framework/arm/boot-ext.oat differ diff --git a/system/framework/arm/boot-ext.vdex b/system/framework/arm/boot-ext.vdex new file mode 100644 index 0000000000000000000000000000000000000000..a4311c00f087ce0349e8afab248f434d0a146d4d Binary files /dev/null and b/system/framework/arm/boot-ext.vdex differ diff --git a/system/framework/arm/boot-framework.art b/system/framework/arm/boot-framework.art new file mode 100644 index 0000000000000000000000000000000000000000..eac4164f63de215802fd151abb961764de295693 Binary files /dev/null and b/system/framework/arm/boot-framework.art differ diff --git a/system/framework/arm/boot-framework.oat b/system/framework/arm/boot-framework.oat new file mode 100644 index 0000000000000000000000000000000000000000..ce32592f9f340dea2465fc79a3002b13997fe22b Binary files /dev/null and b/system/framework/arm/boot-framework.oat differ diff --git a/system/framework/arm/boot-framework.vdex b/system/framework/arm/boot-framework.vdex new file mode 100644 index 0000000000000000000000000000000000000000..89723a366651b6b4b722a4a278e274ad7c5958af Binary files /dev/null and b/system/framework/arm/boot-framework.vdex differ diff --git a/system/framework/arm/boot-ims-common.art b/system/framework/arm/boot-ims-common.art new file mode 100644 index 0000000000000000000000000000000000000000..784694d3804bc23ce2e45a9e201a66e291e2a6da Binary files /dev/null and b/system/framework/arm/boot-ims-common.art differ diff --git a/system/framework/arm/boot-ims-common.oat b/system/framework/arm/boot-ims-common.oat new file mode 100644 index 0000000000000000000000000000000000000000..3945215795dc8e60fa93b45ccceaefeec529b79a Binary files /dev/null and b/system/framework/arm/boot-ims-common.oat differ diff --git a/system/framework/arm/boot-ims-common.vdex b/system/framework/arm/boot-ims-common.vdex new file mode 100644 index 0000000000000000000000000000000000000000..20bac5e1a06ee2edd5bd5589607a8fd4479c68a7 Binary files /dev/null and b/system/framework/arm/boot-ims-common.vdex differ diff --git a/system/framework/arm/boot-legacy-test.art b/system/framework/arm/boot-legacy-test.art new file mode 100644 index 0000000000000000000000000000000000000000..38108b6d82194494cb52ab502f416f4dc136f292 Binary files /dev/null and b/system/framework/arm/boot-legacy-test.art differ diff --git a/system/framework/arm/boot-legacy-test.oat b/system/framework/arm/boot-legacy-test.oat new file mode 100644 index 0000000000000000000000000000000000000000..998423f777cbc6572de7e6c19ed75f67dc1a97a3 Binary files /dev/null and b/system/framework/arm/boot-legacy-test.oat differ diff --git a/system/framework/arm/boot-legacy-test.vdex b/system/framework/arm/boot-legacy-test.vdex new file mode 100644 index 0000000000000000000000000000000000000000..5e98916b24fafb5d520d4eea5d39164ae7183f7e Binary files /dev/null and b/system/framework/arm/boot-legacy-test.vdex differ diff --git a/system/framework/arm/boot-mediatek-common.art b/system/framework/arm/boot-mediatek-common.art new file mode 100644 index 0000000000000000000000000000000000000000..1612e9d6281bbdeafda47f8e31f68bfe37c79643 Binary files /dev/null and b/system/framework/arm/boot-mediatek-common.art differ diff --git a/system/framework/arm/boot-mediatek-common.oat b/system/framework/arm/boot-mediatek-common.oat new file mode 100644 index 0000000000000000000000000000000000000000..831cb07c4a056b5c8511feb82fec0f71dbefeba1 Binary files /dev/null and b/system/framework/arm/boot-mediatek-common.oat differ diff --git a/system/framework/arm/boot-mediatek-common.vdex b/system/framework/arm/boot-mediatek-common.vdex new file mode 100644 index 0000000000000000000000000000000000000000..75588d8ac565ddb7915a9bb6fa4822626a55b6cd Binary files /dev/null and b/system/framework/arm/boot-mediatek-common.vdex differ diff --git a/system/framework/arm/boot-mediatek-framework.art b/system/framework/arm/boot-mediatek-framework.art new file mode 100644 index 0000000000000000000000000000000000000000..7fcd76eccb88d6fd89ec5416207138e3807a7f13 Binary files /dev/null and b/system/framework/arm/boot-mediatek-framework.art differ diff --git a/system/framework/arm/boot-mediatek-framework.oat b/system/framework/arm/boot-mediatek-framework.oat new file mode 100644 index 0000000000000000000000000000000000000000..82cae9755977dbac9298de619d666bc5cb6eec5f Binary files /dev/null and b/system/framework/arm/boot-mediatek-framework.oat differ diff --git a/system/framework/arm/boot-mediatek-framework.vdex b/system/framework/arm/boot-mediatek-framework.vdex new file mode 100644 index 0000000000000000000000000000000000000000..523c735bf312342a5cd5edd6da31dd9b62abef3a Binary files /dev/null and b/system/framework/arm/boot-mediatek-framework.vdex differ diff --git a/system/framework/arm/boot-mediatek-ims-common.art b/system/framework/arm/boot-mediatek-ims-common.art new file mode 100644 index 0000000000000000000000000000000000000000..b1692796f180cd508f57ebe70ca8516ce5867aeb Binary files /dev/null and b/system/framework/arm/boot-mediatek-ims-common.art differ diff --git a/system/framework/arm/boot-mediatek-ims-common.oat b/system/framework/arm/boot-mediatek-ims-common.oat new file mode 100644 index 0000000000000000000000000000000000000000..348fd7ac4745428c7992ccbff8bed86a5103bd06 Binary files /dev/null and b/system/framework/arm/boot-mediatek-ims-common.oat differ diff --git a/system/framework/arm/boot-mediatek-ims-common.vdex b/system/framework/arm/boot-mediatek-ims-common.vdex new file mode 100644 index 0000000000000000000000000000000000000000..6d37ca42653afa4ad5022322b4fcc6b022cbf968 Binary files /dev/null and b/system/framework/arm/boot-mediatek-ims-common.vdex differ diff --git a/system/framework/arm/boot-mediatek-telecom-common.art b/system/framework/arm/boot-mediatek-telecom-common.art new file mode 100644 index 0000000000000000000000000000000000000000..0226c808efc06460a2e41d3b19678adbaeedfeb2 Binary files /dev/null and b/system/framework/arm/boot-mediatek-telecom-common.art differ diff --git a/system/framework/arm/boot-mediatek-telecom-common.oat b/system/framework/arm/boot-mediatek-telecom-common.oat new file mode 100644 index 0000000000000000000000000000000000000000..fbe720aa68b03117696eb9886bbc7184d234f1e7 Binary files /dev/null and b/system/framework/arm/boot-mediatek-telecom-common.oat differ diff --git a/system/framework/arm/boot-mediatek-telecom-common.vdex b/system/framework/arm/boot-mediatek-telecom-common.vdex new file mode 100644 index 0000000000000000000000000000000000000000..ef485ae919a9d73116bc6b1c9aa10726a02998a6 Binary files /dev/null and b/system/framework/arm/boot-mediatek-telecom-common.vdex differ diff --git a/system/framework/arm/boot-mediatek-telephony-base.art b/system/framework/arm/boot-mediatek-telephony-base.art new file mode 100644 index 0000000000000000000000000000000000000000..ea9f095653961c039e1442fd2942b28818fe2885 Binary files /dev/null and b/system/framework/arm/boot-mediatek-telephony-base.art differ diff --git a/system/framework/arm/boot-mediatek-telephony-base.oat b/system/framework/arm/boot-mediatek-telephony-base.oat new file mode 100644 index 0000000000000000000000000000000000000000..de9731e21a3c4cc7bee20ea256398062377f8d4b Binary files /dev/null and b/system/framework/arm/boot-mediatek-telephony-base.oat differ diff --git a/system/framework/arm/boot-mediatek-telephony-base.vdex b/system/framework/arm/boot-mediatek-telephony-base.vdex new file mode 100644 index 0000000000000000000000000000000000000000..bc75b00283d1ac48e1f2817b6873900a11f2e343 Binary files /dev/null and b/system/framework/arm/boot-mediatek-telephony-base.vdex differ diff --git a/system/framework/arm/boot-mediatek-telephony-common.art b/system/framework/arm/boot-mediatek-telephony-common.art new file mode 100644 index 0000000000000000000000000000000000000000..1aa68039a0cc88900050a6e1591ec725edaeb148 Binary files /dev/null and b/system/framework/arm/boot-mediatek-telephony-common.art differ diff --git a/system/framework/arm/boot-mediatek-telephony-common.oat b/system/framework/arm/boot-mediatek-telephony-common.oat new file mode 100644 index 0000000000000000000000000000000000000000..ce2a31b6eeb6f1853bd6ea1cc488a78350765221 Binary files /dev/null and b/system/framework/arm/boot-mediatek-telephony-common.oat differ diff --git a/system/framework/arm/boot-mediatek-telephony-common.vdex b/system/framework/arm/boot-mediatek-telephony-common.vdex new file mode 100644 index 0000000000000000000000000000000000000000..94d8ff81293da96a61c24d43a0847f903dc80d83 Binary files /dev/null and b/system/framework/arm/boot-mediatek-telephony-common.vdex differ diff --git a/system/framework/arm/boot-okhttp.art b/system/framework/arm/boot-okhttp.art new file mode 100644 index 0000000000000000000000000000000000000000..dd1b0be8aa7c3d1fafd5f3c922730c658dfea34d Binary files /dev/null and b/system/framework/arm/boot-okhttp.art differ diff --git a/system/framework/arm/boot-okhttp.oat b/system/framework/arm/boot-okhttp.oat new file mode 100644 index 0000000000000000000000000000000000000000..090dbf8c597828fc27755283ad79f2c9683e410a Binary files /dev/null and b/system/framework/arm/boot-okhttp.oat differ diff --git a/system/framework/arm/boot-okhttp.vdex b/system/framework/arm/boot-okhttp.vdex new file mode 100644 index 0000000000000000000000000000000000000000..dd8326572f8301d7113342bfeecbeb6c89228280 Binary files /dev/null and b/system/framework/arm/boot-okhttp.vdex differ diff --git a/system/framework/arm/boot-org.apache.http.legacy.boot.art b/system/framework/arm/boot-org.apache.http.legacy.boot.art new file mode 100644 index 0000000000000000000000000000000000000000..b8e7cc591f69a22726420514721884974d771412 Binary files /dev/null and b/system/framework/arm/boot-org.apache.http.legacy.boot.art differ diff --git a/system/framework/arm/boot-org.apache.http.legacy.boot.oat b/system/framework/arm/boot-org.apache.http.legacy.boot.oat new file mode 100644 index 0000000000000000000000000000000000000000..4db1073ee27caffd9cd62f775288dd0743ba4c4b Binary files /dev/null and b/system/framework/arm/boot-org.apache.http.legacy.boot.oat differ diff --git a/system/framework/arm/boot-org.apache.http.legacy.boot.vdex b/system/framework/arm/boot-org.apache.http.legacy.boot.vdex new file mode 100644 index 0000000000000000000000000000000000000000..f1ad78f9ce5c97025813c527c999a93687749e04 Binary files /dev/null and b/system/framework/arm/boot-org.apache.http.legacy.boot.vdex differ diff --git a/system/framework/arm/boot-telephony-common.art b/system/framework/arm/boot-telephony-common.art new file mode 100644 index 0000000000000000000000000000000000000000..810a9c37aebecc608cfe643770aa11ea94c8182e Binary files /dev/null and b/system/framework/arm/boot-telephony-common.art differ diff --git a/system/framework/arm/boot-telephony-common.oat b/system/framework/arm/boot-telephony-common.oat new file mode 100644 index 0000000000000000000000000000000000000000..5ce6c07d0b736b4ed6d99c97ed8cee32c20331af Binary files /dev/null and b/system/framework/arm/boot-telephony-common.oat differ diff --git a/system/framework/arm/boot-telephony-common.vdex b/system/framework/arm/boot-telephony-common.vdex new file mode 100644 index 0000000000000000000000000000000000000000..92205a439b9896a554f13d7e888cf9fff680745e Binary files /dev/null and b/system/framework/arm/boot-telephony-common.vdex differ diff --git a/system/framework/arm/boot-voip-common.art b/system/framework/arm/boot-voip-common.art new file mode 100644 index 0000000000000000000000000000000000000000..24f0ee3e0b2abd2f821d23c80ecf81692eaf64fd Binary files /dev/null and b/system/framework/arm/boot-voip-common.art differ diff --git a/system/framework/arm/boot-voip-common.oat b/system/framework/arm/boot-voip-common.oat new file mode 100644 index 0000000000000000000000000000000000000000..14c04bd9ecf01c1456576cae951f5722b7d181fb Binary files /dev/null and b/system/framework/arm/boot-voip-common.oat differ diff --git a/system/framework/arm/boot-voip-common.vdex b/system/framework/arm/boot-voip-common.vdex new file mode 100644 index 0000000000000000000000000000000000000000..8c63d1decd33a65f93d97097ddca23f86f5ee21d Binary files /dev/null and b/system/framework/arm/boot-voip-common.vdex differ diff --git a/system/framework/arm/boot.art b/system/framework/arm/boot.art new file mode 100644 index 0000000000000000000000000000000000000000..ff69f42a4dc2fb5ab060b343ff87d406c443fc6c Binary files /dev/null and b/system/framework/arm/boot.art differ diff --git a/system/framework/arm/boot.oat b/system/framework/arm/boot.oat new file mode 100644 index 0000000000000000000000000000000000000000..e4111560e27a6b5d9df9f7849bda0032baf0f83f Binary files /dev/null and b/system/framework/arm/boot.oat differ diff --git a/system/framework/arm/boot.vdex b/system/framework/arm/boot.vdex new file mode 100644 index 0000000000000000000000000000000000000000..e7bc5fcbb61603b1804ba22bbf5291dc76ebb053 Binary files /dev/null and b/system/framework/arm/boot.vdex differ diff --git a/system/framework/bmgr.jar b/system/framework/bmgr.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/bmgr.jar differ diff --git a/system/framework/bouncycastle.jar b/system/framework/bouncycastle.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/bouncycastle.jar differ diff --git a/system/framework/bu.jar b/system/framework/bu.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/bu.jar differ diff --git a/system/framework/com.android.future.usb.accessory.jar b/system/framework/com.android.future.usb.accessory.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/com.android.future.usb.accessory.jar differ diff --git a/system/framework/com.android.location.provider.jar b/system/framework/com.android.location.provider.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/com.android.location.provider.jar differ diff --git a/system/framework/com.android.media.remotedisplay.jar b/system/framework/com.android.media.remotedisplay.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/com.android.media.remotedisplay.jar differ diff --git a/system/framework/com.android.mediadrm.signer.jar b/system/framework/com.android.mediadrm.signer.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/com.android.mediadrm.signer.jar differ diff --git a/system/framework/com.google.android.maps.jar b/system/framework/com.google.android.maps.jar new file mode 100644 index 0000000000000000000000000000000000000000..8c306b3f2c7b7ecb908ba7a5d6d87cc0ba8c27fd Binary files /dev/null and b/system/framework/com.google.android.maps.jar differ diff --git a/system/framework/com.google.android.media.effects.jar b/system/framework/com.google.android.media.effects.jar new file mode 100644 index 0000000000000000000000000000000000000000..57ba9bb11bb6e8429d7f3edb40f1142c4628626b Binary files /dev/null and b/system/framework/com.google.android.media.effects.jar differ diff --git a/system/framework/conscrypt.jar b/system/framework/conscrypt.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/conscrypt.jar differ diff --git a/system/framework/content.jar b/system/framework/content.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/content.jar differ diff --git a/system/framework/core-libart.jar b/system/framework/core-libart.jar new file mode 100644 index 0000000000000000000000000000000000000000..0ebe4de1d4fa07dd60dc436f489416d50a44c4ac Binary files /dev/null and b/system/framework/core-libart.jar differ diff --git a/system/framework/core-oj.jar b/system/framework/core-oj.jar new file mode 100644 index 0000000000000000000000000000000000000000..bd41deea9971efe08701c215266f8b6585b4293e Binary files /dev/null and b/system/framework/core-oj.jar differ diff --git a/system/framework/dpm.jar b/system/framework/dpm.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/dpm.jar differ diff --git a/system/framework/ethernet-service.jar b/system/framework/ethernet-service.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/ethernet-service.jar differ diff --git a/system/framework/ext.jar b/system/framework/ext.jar new file mode 100644 index 0000000000000000000000000000000000000000..8e7423a7a96304378632925569898a2684f11804 Binary files /dev/null and b/system/framework/ext.jar differ diff --git a/system/framework/framework-res.apk b/system/framework/framework-res.apk new file mode 100644 index 0000000000000000000000000000000000000000..cdf944351a1afd5008dbdefce9f365fb0332db22 Binary files /dev/null and b/system/framework/framework-res.apk differ diff --git a/system/framework/framework.jar b/system/framework/framework.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/framework.jar differ diff --git a/system/framework/hid.jar b/system/framework/hid.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/hid.jar differ diff --git a/system/framework/ime.jar b/system/framework/ime.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/ime.jar differ diff --git a/system/framework/ims-common.jar b/system/framework/ims-common.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/ims-common.jar differ diff --git a/system/framework/input.jar b/system/framework/input.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/input.jar differ diff --git a/system/framework/javax.obex.jar b/system/framework/javax.obex.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/javax.obex.jar differ diff --git a/system/framework/ktcustfrm-res/ktcustfrm-res.apk b/system/framework/ktcustfrm-res/ktcustfrm-res.apk new file mode 100644 index 0000000000000000000000000000000000000000..f58750c8a2c8c84bc249dfd79e401db98c5b1f4d Binary files /dev/null and b/system/framework/ktcustfrm-res/ktcustfrm-res.apk differ diff --git a/system/framework/legacy-test.jar b/system/framework/legacy-test.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/legacy-test.jar differ diff --git a/system/framework/locksettings.jar b/system/framework/locksettings.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/locksettings.jar differ diff --git a/system/framework/media_cmd.jar b/system/framework/media_cmd.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/media_cmd.jar differ diff --git a/system/framework/mediatek-common.jar b/system/framework/mediatek-common.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/mediatek-common.jar differ diff --git a/system/framework/mediatek-framework-net.jar b/system/framework/mediatek-framework-net.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/mediatek-framework-net.jar differ diff --git a/system/framework/mediatek-framework.jar b/system/framework/mediatek-framework.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/mediatek-framework.jar differ diff --git a/system/framework/mediatek-ims-common.jar b/system/framework/mediatek-ims-common.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/mediatek-ims-common.jar differ diff --git a/system/framework/mediatek-res/mediatek-res.apk b/system/framework/mediatek-res/mediatek-res.apk new file mode 100644 index 0000000000000000000000000000000000000000..33bf26bcb9f250229b992175c217373d2a810bdb Binary files /dev/null and b/system/framework/mediatek-res/mediatek-res.apk differ diff --git a/system/framework/mediatek-services.jar b/system/framework/mediatek-services.jar new file mode 100644 index 0000000000000000000000000000000000000000..8c306b3f2c7b7ecb908ba7a5d6d87cc0ba8c27fd Binary files /dev/null and b/system/framework/mediatek-services.jar differ diff --git a/system/framework/mediatek-telecom-common.jar b/system/framework/mediatek-telecom-common.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/mediatek-telecom-common.jar differ diff --git a/system/framework/mediatek-telephony-base.jar b/system/framework/mediatek-telephony-base.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/mediatek-telephony-base.jar differ diff --git a/system/framework/mediatek-telephony-common.jar b/system/framework/mediatek-telephony-common.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/mediatek-telephony-common.jar differ diff --git a/system/framework/monkey.jar b/system/framework/monkey.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/monkey.jar differ diff --git a/system/framework/oat/arm/CustomPropInterface.odex b/system/framework/oat/arm/CustomPropInterface.odex new file mode 100644 index 0000000000000000000000000000000000000000..5aefcf159a7bb00c657e5e6bedc76adbade42b15 Binary files /dev/null and b/system/framework/oat/arm/CustomPropInterface.odex differ diff --git a/system/framework/oat/arm/CustomPropInterface.vdex b/system/framework/oat/arm/CustomPropInterface.vdex new file mode 100644 index 0000000000000000000000000000000000000000..e96ef4c8d181404b9adb0285037faf6f5dc57386 Binary files /dev/null and b/system/framework/oat/arm/CustomPropInterface.vdex differ diff --git a/system/framework/oat/arm/am.odex b/system/framework/oat/arm/am.odex new file mode 100644 index 0000000000000000000000000000000000000000..a0aebb8ec907b53cffe4777d0f6f315d92a31989 Binary files /dev/null and b/system/framework/oat/arm/am.odex differ diff --git a/system/framework/oat/arm/am.vdex b/system/framework/oat/arm/am.vdex new file mode 100644 index 0000000000000000000000000000000000000000..5b4fed829f1d884c43cc1ca0858c9cbdce52fa43 Binary files /dev/null and b/system/framework/oat/arm/am.vdex differ diff --git a/system/framework/oat/arm/android.test.mock.odex b/system/framework/oat/arm/android.test.mock.odex new file mode 100644 index 0000000000000000000000000000000000000000..e281b39eec8d941192e2db6a4af8772529c48cf0 Binary files /dev/null and b/system/framework/oat/arm/android.test.mock.odex differ diff --git a/system/framework/oat/arm/android.test.mock.vdex b/system/framework/oat/arm/android.test.mock.vdex new file mode 100644 index 0000000000000000000000000000000000000000..edeb52c5edbffa30e126ada27c0cd61389adb516 Binary files /dev/null and b/system/framework/oat/arm/android.test.mock.vdex differ diff --git a/system/framework/oat/arm/android.test.runner.odex b/system/framework/oat/arm/android.test.runner.odex new file mode 100644 index 0000000000000000000000000000000000000000..faccbdff53397b9fd34e35aa2c4996c27b647b66 Binary files /dev/null and b/system/framework/oat/arm/android.test.runner.odex differ diff --git a/system/framework/oat/arm/android.test.runner.vdex b/system/framework/oat/arm/android.test.runner.vdex new file mode 100644 index 0000000000000000000000000000000000000000..dadffef7cddf7b6e1494768c1b556f85011d94cf Binary files /dev/null and b/system/framework/oat/arm/android.test.runner.vdex differ diff --git a/system/framework/oat/arm/appwidget.odex b/system/framework/oat/arm/appwidget.odex new file mode 100644 index 0000000000000000000000000000000000000000..14b1e0e0634379a4fb01016f7b54b6c60844796f Binary files /dev/null and b/system/framework/oat/arm/appwidget.odex differ diff --git a/system/framework/oat/arm/appwidget.vdex b/system/framework/oat/arm/appwidget.vdex new file mode 100644 index 0000000000000000000000000000000000000000..91f654d0638784280bf0e9438e0133abce5a7eac Binary files /dev/null and b/system/framework/oat/arm/appwidget.vdex differ diff --git a/system/framework/oat/arm/bmgr.odex b/system/framework/oat/arm/bmgr.odex new file mode 100644 index 0000000000000000000000000000000000000000..0f3506f82c9eededb9a5d6e91beaff5728efb7aa Binary files /dev/null and b/system/framework/oat/arm/bmgr.odex differ diff --git a/system/framework/oat/arm/bmgr.vdex b/system/framework/oat/arm/bmgr.vdex new file mode 100644 index 0000000000000000000000000000000000000000..88f0f7ac6cd1a595729b4b1408475e2de85df028 Binary files /dev/null and b/system/framework/oat/arm/bmgr.vdex differ diff --git a/system/framework/oat/arm/bu.odex b/system/framework/oat/arm/bu.odex new file mode 100644 index 0000000000000000000000000000000000000000..19a3e79a90f822f8fbc53cda9ba21349acfb540b Binary files /dev/null and b/system/framework/oat/arm/bu.odex differ diff --git a/system/framework/oat/arm/bu.vdex b/system/framework/oat/arm/bu.vdex new file mode 100644 index 0000000000000000000000000000000000000000..30100f7bd038e928f6c82cb974b2a6d9bddf7865 Binary files /dev/null and b/system/framework/oat/arm/bu.vdex differ diff --git a/system/framework/oat/arm/com.android.future.usb.accessory.odex b/system/framework/oat/arm/com.android.future.usb.accessory.odex new file mode 100644 index 0000000000000000000000000000000000000000..15957b1292f7ae0c8d9ccc52ce7081de9010edce Binary files /dev/null and b/system/framework/oat/arm/com.android.future.usb.accessory.odex differ diff --git a/system/framework/oat/arm/com.android.future.usb.accessory.vdex b/system/framework/oat/arm/com.android.future.usb.accessory.vdex new file mode 100644 index 0000000000000000000000000000000000000000..4d0f01699665d03a59147a2ea284e08b3fc29886 Binary files /dev/null and b/system/framework/oat/arm/com.android.future.usb.accessory.vdex differ diff --git a/system/framework/oat/arm/com.android.location.provider.odex b/system/framework/oat/arm/com.android.location.provider.odex new file mode 100644 index 0000000000000000000000000000000000000000..74552528089764f7c40b506abf66436d4e236c27 Binary files /dev/null and b/system/framework/oat/arm/com.android.location.provider.odex differ diff --git a/system/framework/oat/arm/com.android.location.provider.vdex b/system/framework/oat/arm/com.android.location.provider.vdex new file mode 100644 index 0000000000000000000000000000000000000000..6631cef77177a8fee57da8c05b07b8c1e9da8a82 Binary files /dev/null and b/system/framework/oat/arm/com.android.location.provider.vdex differ diff --git a/system/framework/oat/arm/com.android.media.remotedisplay.odex b/system/framework/oat/arm/com.android.media.remotedisplay.odex new file mode 100644 index 0000000000000000000000000000000000000000..69f0420a98bdd4d2a3de2debc812a418b7749b3d Binary files /dev/null and b/system/framework/oat/arm/com.android.media.remotedisplay.odex differ diff --git a/system/framework/oat/arm/com.android.media.remotedisplay.vdex b/system/framework/oat/arm/com.android.media.remotedisplay.vdex new file mode 100644 index 0000000000000000000000000000000000000000..5804ec1c60fb057e629e257cadd6c70ca12fc792 Binary files /dev/null and b/system/framework/oat/arm/com.android.media.remotedisplay.vdex differ diff --git a/system/framework/oat/arm/com.android.mediadrm.signer.odex b/system/framework/oat/arm/com.android.mediadrm.signer.odex new file mode 100644 index 0000000000000000000000000000000000000000..a291b938f40aa4bcf9991bd33ebc9b381d54678a Binary files /dev/null and b/system/framework/oat/arm/com.android.mediadrm.signer.odex differ diff --git a/system/framework/oat/arm/com.android.mediadrm.signer.vdex b/system/framework/oat/arm/com.android.mediadrm.signer.vdex new file mode 100644 index 0000000000000000000000000000000000000000..9c145e3ea2b7f4fd372d899e4b58525c0da670d6 Binary files /dev/null and b/system/framework/oat/arm/com.android.mediadrm.signer.vdex differ diff --git a/system/framework/oat/arm/com.google.android.maps.odex b/system/framework/oat/arm/com.google.android.maps.odex new file mode 100644 index 0000000000000000000000000000000000000000..f6d630e9246f852f87aac63d6647565973c85748 Binary files /dev/null and b/system/framework/oat/arm/com.google.android.maps.odex differ diff --git a/system/framework/oat/arm/com.google.android.maps.vdex b/system/framework/oat/arm/com.google.android.maps.vdex new file mode 100644 index 0000000000000000000000000000000000000000..5928df0100c54a3a0e55a2fb0f6ecaf969fc4c35 Binary files /dev/null and b/system/framework/oat/arm/com.google.android.maps.vdex differ diff --git a/system/framework/oat/arm/com.google.android.media.effects.odex b/system/framework/oat/arm/com.google.android.media.effects.odex new file mode 100644 index 0000000000000000000000000000000000000000..298f7adf1f2608965142d06afe9339dbf40e9843 Binary files /dev/null and b/system/framework/oat/arm/com.google.android.media.effects.odex differ diff --git a/system/framework/oat/arm/com.google.android.media.effects.vdex b/system/framework/oat/arm/com.google.android.media.effects.vdex new file mode 100644 index 0000000000000000000000000000000000000000..2ad7c98b0683cbdac4b2a11450603b5337e58e00 Binary files /dev/null and b/system/framework/oat/arm/com.google.android.media.effects.vdex differ diff --git a/system/framework/oat/arm/content.odex b/system/framework/oat/arm/content.odex new file mode 100644 index 0000000000000000000000000000000000000000..a52e2de7a4d262912799373f12bb204640cfd308 Binary files /dev/null and b/system/framework/oat/arm/content.odex differ diff --git a/system/framework/oat/arm/content.vdex b/system/framework/oat/arm/content.vdex new file mode 100644 index 0000000000000000000000000000000000000000..141c4b6973207f8a81d3bcb907bc4f6966eb6362 Binary files /dev/null and b/system/framework/oat/arm/content.vdex differ diff --git a/system/framework/oat/arm/dpm.odex b/system/framework/oat/arm/dpm.odex new file mode 100644 index 0000000000000000000000000000000000000000..d5e08f107ed23a5c3dd2cfbad11506880f506dda Binary files /dev/null and b/system/framework/oat/arm/dpm.odex differ diff --git a/system/framework/oat/arm/dpm.vdex b/system/framework/oat/arm/dpm.vdex new file mode 100644 index 0000000000000000000000000000000000000000..a9aabead3943498799386363c31289fb94efcd3f Binary files /dev/null and b/system/framework/oat/arm/dpm.vdex differ diff --git a/system/framework/oat/arm/ethernet-service.odex b/system/framework/oat/arm/ethernet-service.odex new file mode 100644 index 0000000000000000000000000000000000000000..18628f08c9b8708dd341a9d5bab3ad79c6023382 Binary files /dev/null and b/system/framework/oat/arm/ethernet-service.odex differ diff --git a/system/framework/oat/arm/ethernet-service.vdex b/system/framework/oat/arm/ethernet-service.vdex new file mode 100644 index 0000000000000000000000000000000000000000..29dd86ed6e85281e88c32135de0cb5beb21605fe Binary files /dev/null and b/system/framework/oat/arm/ethernet-service.vdex differ diff --git a/system/framework/oat/arm/hid.odex b/system/framework/oat/arm/hid.odex new file mode 100644 index 0000000000000000000000000000000000000000..f1a6a4204210c411682f8feb3e6d6b235d7c68b4 Binary files /dev/null and b/system/framework/oat/arm/hid.odex differ diff --git a/system/framework/oat/arm/hid.vdex b/system/framework/oat/arm/hid.vdex new file mode 100644 index 0000000000000000000000000000000000000000..29d984ff182ead9830a31a4c97fb12e4ca088204 Binary files /dev/null and b/system/framework/oat/arm/hid.vdex differ diff --git a/system/framework/oat/arm/ime.odex b/system/framework/oat/arm/ime.odex new file mode 100644 index 0000000000000000000000000000000000000000..92b0e219a6b34a7a97ebbed1d6f1402e83fd4142 Binary files /dev/null and b/system/framework/oat/arm/ime.odex differ diff --git a/system/framework/oat/arm/ime.vdex b/system/framework/oat/arm/ime.vdex new file mode 100644 index 0000000000000000000000000000000000000000..3ffc7a22a718b82d0dba69473a51ce045da4aedf Binary files /dev/null and b/system/framework/oat/arm/ime.vdex differ diff --git a/system/framework/oat/arm/input.odex b/system/framework/oat/arm/input.odex new file mode 100644 index 0000000000000000000000000000000000000000..8a74751c980c967a3211e5823367c36cd6a4ebf3 Binary files /dev/null and b/system/framework/oat/arm/input.odex differ diff --git a/system/framework/oat/arm/input.vdex b/system/framework/oat/arm/input.vdex new file mode 100644 index 0000000000000000000000000000000000000000..da8bfdba3d995142e4564d5ab7739d38c6067b4d Binary files /dev/null and b/system/framework/oat/arm/input.vdex differ diff --git a/system/framework/oat/arm/javax.obex.odex b/system/framework/oat/arm/javax.obex.odex new file mode 100644 index 0000000000000000000000000000000000000000..990c2e3b46c661b7de49e4fad8567c9804969d7c Binary files /dev/null and b/system/framework/oat/arm/javax.obex.odex differ diff --git a/system/framework/oat/arm/javax.obex.vdex b/system/framework/oat/arm/javax.obex.vdex new file mode 100644 index 0000000000000000000000000000000000000000..35bbefa3bc06c7f24e1b6b8d5518ee87b5fa3a9f Binary files /dev/null and b/system/framework/oat/arm/javax.obex.vdex differ diff --git a/system/framework/oat/arm/locksettings.odex b/system/framework/oat/arm/locksettings.odex new file mode 100644 index 0000000000000000000000000000000000000000..c90086a6117270fa97e273ab3982209b31fb086a Binary files /dev/null and b/system/framework/oat/arm/locksettings.odex differ diff --git a/system/framework/oat/arm/locksettings.vdex b/system/framework/oat/arm/locksettings.vdex new file mode 100644 index 0000000000000000000000000000000000000000..b0804e94435fa7b26d2e5b0d2cdc87c41a0e0b54 Binary files /dev/null and b/system/framework/oat/arm/locksettings.vdex differ diff --git a/system/framework/oat/arm/media_cmd.odex b/system/framework/oat/arm/media_cmd.odex new file mode 100644 index 0000000000000000000000000000000000000000..f59edf03cf9b5bba20441d1e62b5fc52f534c10f Binary files /dev/null and b/system/framework/oat/arm/media_cmd.odex differ diff --git a/system/framework/oat/arm/media_cmd.vdex b/system/framework/oat/arm/media_cmd.vdex new file mode 100644 index 0000000000000000000000000000000000000000..3f7f449cdef475ce7b475a9a58981b7317aadc3e Binary files /dev/null and b/system/framework/oat/arm/media_cmd.vdex differ diff --git a/system/framework/oat/arm/mediatek-framework-net.odex b/system/framework/oat/arm/mediatek-framework-net.odex new file mode 100644 index 0000000000000000000000000000000000000000..773e57225aeb2027538eb503baa9b6c5a68c7cfc Binary files /dev/null and b/system/framework/oat/arm/mediatek-framework-net.odex differ diff --git a/system/framework/oat/arm/mediatek-framework-net.vdex b/system/framework/oat/arm/mediatek-framework-net.vdex new file mode 100644 index 0000000000000000000000000000000000000000..cddfbb09e2eceaa65b548b87fc8001d807c8d632 Binary files /dev/null and b/system/framework/oat/arm/mediatek-framework-net.vdex differ diff --git a/system/framework/oat/arm/mediatek-services.odex b/system/framework/oat/arm/mediatek-services.odex new file mode 100644 index 0000000000000000000000000000000000000000..5160f6b47982f4d267cfe6db7548d17a17d41d01 Binary files /dev/null and b/system/framework/oat/arm/mediatek-services.odex differ diff --git a/system/framework/oat/arm/mediatek-services.vdex b/system/framework/oat/arm/mediatek-services.vdex new file mode 100644 index 0000000000000000000000000000000000000000..1fedbbf8b37ec2c64417c5b8f16be8eafd997220 Binary files /dev/null and b/system/framework/oat/arm/mediatek-services.vdex differ diff --git a/system/framework/oat/arm/monkey.odex b/system/framework/oat/arm/monkey.odex new file mode 100644 index 0000000000000000000000000000000000000000..0b3380ca26f5d94505f0ea14b654c1dd4e37b33c Binary files /dev/null and b/system/framework/oat/arm/monkey.odex differ diff --git a/system/framework/oat/arm/monkey.vdex b/system/framework/oat/arm/monkey.vdex new file mode 100644 index 0000000000000000000000000000000000000000..bb6e54673e00a056feaac173eaca4502ba496df0 Binary files /dev/null and b/system/framework/oat/arm/monkey.vdex differ diff --git a/system/framework/oat/arm/pm.odex b/system/framework/oat/arm/pm.odex new file mode 100644 index 0000000000000000000000000000000000000000..a7159ad6847019ec78556b2f98635300cf4ea1df Binary files /dev/null and b/system/framework/oat/arm/pm.odex differ diff --git a/system/framework/oat/arm/pm.vdex b/system/framework/oat/arm/pm.vdex new file mode 100644 index 0000000000000000000000000000000000000000..0f2d3934db7385bdbe53895a2e58c3dfa251afed Binary files /dev/null and b/system/framework/oat/arm/pm.vdex differ diff --git a/system/framework/oat/arm/requestsync.odex b/system/framework/oat/arm/requestsync.odex new file mode 100644 index 0000000000000000000000000000000000000000..c58cd4be935956d0e2ed72636e9c2bef61d06987 Binary files /dev/null and b/system/framework/oat/arm/requestsync.odex differ diff --git a/system/framework/oat/arm/requestsync.vdex b/system/framework/oat/arm/requestsync.vdex new file mode 100644 index 0000000000000000000000000000000000000000..a8146b8938da50c9ddfea09bac387b9a49185b3b Binary files /dev/null and b/system/framework/oat/arm/requestsync.vdex differ diff --git a/system/framework/oat/arm/services.art b/system/framework/oat/arm/services.art new file mode 100644 index 0000000000000000000000000000000000000000..522d3ee0ee999a0cad37b03d43bdf82979f122ff Binary files /dev/null and b/system/framework/oat/arm/services.art differ diff --git a/system/framework/oat/arm/services.odex b/system/framework/oat/arm/services.odex new file mode 100644 index 0000000000000000000000000000000000000000..44c849b18618223b89bfb302d79c62dfd82931e3 Binary files /dev/null and b/system/framework/oat/arm/services.odex differ diff --git a/system/framework/oat/arm/services.vdex b/system/framework/oat/arm/services.vdex new file mode 100644 index 0000000000000000000000000000000000000000..f7bbc1ee6cab6ffb51ccc390f49ca559bbe001c9 Binary files /dev/null and b/system/framework/oat/arm/services.vdex differ diff --git a/system/framework/oat/arm/sm.odex b/system/framework/oat/arm/sm.odex new file mode 100644 index 0000000000000000000000000000000000000000..61eb663fe9b396e06fcd7741580a3c6c96006fb1 Binary files /dev/null and b/system/framework/oat/arm/sm.odex differ diff --git a/system/framework/oat/arm/sm.vdex b/system/framework/oat/arm/sm.vdex new file mode 100644 index 0000000000000000000000000000000000000000..5aa86725ddd203b7040cc4d863a84a1ffb5cd518 Binary files /dev/null and b/system/framework/oat/arm/sm.vdex differ diff --git a/system/framework/oat/arm/svc.odex b/system/framework/oat/arm/svc.odex new file mode 100644 index 0000000000000000000000000000000000000000..ca9aa854cb35260a42d0c5a601a7b1a85cdb86c2 Binary files /dev/null and b/system/framework/oat/arm/svc.odex differ diff --git a/system/framework/oat/arm/svc.vdex b/system/framework/oat/arm/svc.vdex new file mode 100644 index 0000000000000000000000000000000000000000..fe07dd45479be9b312d981995b78cbda687166ba Binary files /dev/null and b/system/framework/oat/arm/svc.vdex differ diff --git a/system/framework/oat/arm/telecom.odex b/system/framework/oat/arm/telecom.odex new file mode 100644 index 0000000000000000000000000000000000000000..00144b98eb99e79d48fd91428d3003c8eb458ed7 Binary files /dev/null and b/system/framework/oat/arm/telecom.odex differ diff --git a/system/framework/oat/arm/telecom.vdex b/system/framework/oat/arm/telecom.vdex new file mode 100644 index 0000000000000000000000000000000000000000..736b72f0da1214554ae8b9182e666f31bb35747d Binary files /dev/null and b/system/framework/oat/arm/telecom.vdex differ diff --git a/system/framework/oat/arm/uiautomator.odex b/system/framework/oat/arm/uiautomator.odex new file mode 100644 index 0000000000000000000000000000000000000000..1d826cf54ae5700cc58a39e39c700057eae1f89a Binary files /dev/null and b/system/framework/oat/arm/uiautomator.odex differ diff --git a/system/framework/oat/arm/uiautomator.vdex b/system/framework/oat/arm/uiautomator.vdex new file mode 100644 index 0000000000000000000000000000000000000000..526b698cf83a65b03af6ab79bf63a0e298264e27 Binary files /dev/null and b/system/framework/oat/arm/uiautomator.vdex differ diff --git a/system/framework/oat/arm/vr.odex b/system/framework/oat/arm/vr.odex new file mode 100644 index 0000000000000000000000000000000000000000..2fb8d67086ac69f772bf172536c4e4058e5cb552 Binary files /dev/null and b/system/framework/oat/arm/vr.odex differ diff --git a/system/framework/oat/arm/vr.vdex b/system/framework/oat/arm/vr.vdex new file mode 100644 index 0000000000000000000000000000000000000000..0ebc6bb33f97e13bc183c7e761687868c3c8a474 Binary files /dev/null and b/system/framework/oat/arm/vr.vdex differ diff --git a/system/framework/oat/arm/wifi-service.art b/system/framework/oat/arm/wifi-service.art new file mode 100644 index 0000000000000000000000000000000000000000..51626478d1c135f7c69e9acc0ece546b65ae43b4 Binary files /dev/null and b/system/framework/oat/arm/wifi-service.art differ diff --git a/system/framework/oat/arm/wifi-service.odex b/system/framework/oat/arm/wifi-service.odex new file mode 100644 index 0000000000000000000000000000000000000000..d76a2261f99fb1c35380bf54643da4090f8df7ec Binary files /dev/null and b/system/framework/oat/arm/wifi-service.odex differ diff --git a/system/framework/oat/arm/wifi-service.vdex b/system/framework/oat/arm/wifi-service.vdex new file mode 100644 index 0000000000000000000000000000000000000000..aed7f1af3824d5437de5c788fc5f1a80c2ad6052 Binary files /dev/null and b/system/framework/oat/arm/wifi-service.vdex differ diff --git a/system/framework/oat/arm/wm.odex b/system/framework/oat/arm/wm.odex new file mode 100644 index 0000000000000000000000000000000000000000..c777c09eee2aa4ac28aa7498a1665ba5e6524858 Binary files /dev/null and b/system/framework/oat/arm/wm.odex differ diff --git a/system/framework/oat/arm/wm.vdex b/system/framework/oat/arm/wm.vdex new file mode 100644 index 0000000000000000000000000000000000000000..2fb3275e5de658c8e10e9adc932e435d587301e9 Binary files /dev/null and b/system/framework/oat/arm/wm.vdex differ diff --git a/system/framework/okhttp.jar b/system/framework/okhttp.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/okhttp.jar differ diff --git a/system/framework/org.apache.http.legacy.boot.jar b/system/framework/org.apache.http.legacy.boot.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/org.apache.http.legacy.boot.jar differ diff --git a/system/framework/pm.jar b/system/framework/pm.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/pm.jar differ diff --git a/system/framework/requestsync.jar b/system/framework/requestsync.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/requestsync.jar differ diff --git a/system/framework/services.jar b/system/framework/services.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/services.jar differ diff --git a/system/framework/services.jar.prof b/system/framework/services.jar.prof new file mode 100644 index 0000000000000000000000000000000000000000..6413ab351d7c97c26db31dbedfc1efddcaf53922 Binary files /dev/null and b/system/framework/services.jar.prof differ diff --git a/system/framework/sm.jar b/system/framework/sm.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/sm.jar differ diff --git a/system/framework/svc.jar b/system/framework/svc.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/svc.jar differ diff --git a/system/framework/telecom.jar b/system/framework/telecom.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/telecom.jar differ diff --git a/system/framework/telephony-common.jar b/system/framework/telephony-common.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/telephony-common.jar differ diff --git a/system/framework/uiautomator.jar b/system/framework/uiautomator.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/uiautomator.jar differ diff --git a/system/framework/voip-common.jar b/system/framework/voip-common.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/voip-common.jar differ diff --git a/system/framework/vr.jar b/system/framework/vr.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/vr.jar differ diff --git a/system/framework/wifi-service.jar b/system/framework/wifi-service.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/wifi-service.jar differ diff --git a/system/framework/wifi-service.jar.prof b/system/framework/wifi-service.jar.prof new file mode 100644 index 0000000000000000000000000000000000000000..fa0ffeef937657c27dc5a209db94f59229ebe762 Binary files /dev/null and b/system/framework/wifi-service.jar.prof differ diff --git a/system/framework/wm.jar b/system/framework/wm.jar new file mode 100644 index 0000000000000000000000000000000000000000..58a4bfe36c0c44c4fd60b2ea8c5f11404853c824 Binary files /dev/null and b/system/framework/wm.jar differ diff --git a/system/lib/android.frameworks.displayservice@1.0.so b/system/lib/android.frameworks.displayservice@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..d3d27d76385eadf7b3b3e76e03964301b3ed0484 Binary files /dev/null and b/system/lib/android.frameworks.displayservice@1.0.so differ diff --git a/system/lib/android.frameworks.schedulerservice@1.0.so b/system/lib/android.frameworks.schedulerservice@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..f03885308d7beff3dff7ff55fbe80cfb32b441d3 Binary files /dev/null and b/system/lib/android.frameworks.schedulerservice@1.0.so differ diff --git a/system/lib/android.frameworks.sensorservice@1.0.so b/system/lib/android.frameworks.sensorservice@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..4496c9a5eb9cb6c8fce54b77ea0c03240f459ce5 Binary files /dev/null and b/system/lib/android.frameworks.sensorservice@1.0.so differ diff --git a/system/lib/android.frameworks.vr.composer@1.0.so b/system/lib/android.frameworks.vr.composer@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..fe595dc5e093e243e1a55bf2569260d226a61a37 Binary files /dev/null and b/system/lib/android.frameworks.vr.composer@1.0.so differ diff --git a/system/lib/android.hardware.audio.common@2.0-util.so b/system/lib/android.hardware.audio.common@2.0-util.so new file mode 100644 index 0000000000000000000000000000000000000000..0a7f700485a90da0fe568f9988529385b51bead6 Binary files /dev/null and b/system/lib/android.hardware.audio.common@2.0-util.so differ diff --git a/system/lib/android.hardware.audio.common@2.0.so b/system/lib/android.hardware.audio.common@2.0.so new file mode 100644 index 0000000000000000000000000000000000000000..68374be0e80336458fbd4badc9d95a0215d3a436 Binary files /dev/null and b/system/lib/android.hardware.audio.common@2.0.so differ diff --git a/system/lib/android.hardware.audio.effect@2.0.so b/system/lib/android.hardware.audio.effect@2.0.so new file mode 100644 index 0000000000000000000000000000000000000000..2293ee912ee18ecde11f91156772c66aaff37392 Binary files /dev/null and b/system/lib/android.hardware.audio.effect@2.0.so differ diff --git a/system/lib/android.hardware.audio@2.0.so b/system/lib/android.hardware.audio@2.0.so new file mode 100644 index 0000000000000000000000000000000000000000..b904d4d84b7ae6fa925adedf36ef9b3ae69a8530 Binary files /dev/null and b/system/lib/android.hardware.audio@2.0.so differ diff --git a/system/lib/android.hardware.biometrics.fingerprint@2.1.so b/system/lib/android.hardware.biometrics.fingerprint@2.1.so new file mode 100644 index 0000000000000000000000000000000000000000..310af3f1b5fff1c0d46e21853a85a68d5e33ee12 Binary files /dev/null and b/system/lib/android.hardware.biometrics.fingerprint@2.1.so differ diff --git a/system/lib/android.hardware.bluetooth@1.0.so b/system/lib/android.hardware.bluetooth@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..ec7069fab216bb561bc2f98d0929137d6d07c67e Binary files /dev/null and b/system/lib/android.hardware.bluetooth@1.0.so differ diff --git a/system/lib/android.hardware.broadcastradio@1.0.so b/system/lib/android.hardware.broadcastradio@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..5bee95ee8ebb0bd88b261e6f97f15578b80a8b94 Binary files /dev/null and b/system/lib/android.hardware.broadcastradio@1.0.so differ diff --git a/system/lib/android.hardware.broadcastradio@1.1.so b/system/lib/android.hardware.broadcastradio@1.1.so new file mode 100644 index 0000000000000000000000000000000000000000..771945ddb8e6c09227fc2177c6d4fae50b0fd66c Binary files /dev/null and b/system/lib/android.hardware.broadcastradio@1.1.so differ diff --git a/system/lib/android.hardware.camera.common@1.0.so b/system/lib/android.hardware.camera.common@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..1cdc8c459bc3422b2474bd7ced6070db6fa1fd81 Binary files /dev/null and b/system/lib/android.hardware.camera.common@1.0.so differ diff --git a/system/lib/android.hardware.camera.device@1.0.so b/system/lib/android.hardware.camera.device@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..cbc6fcbe705c3648a4bdb7cee115a78ad2d02f3e Binary files /dev/null and b/system/lib/android.hardware.camera.device@1.0.so differ diff --git a/system/lib/android.hardware.camera.device@3.2.so b/system/lib/android.hardware.camera.device@3.2.so new file mode 100644 index 0000000000000000000000000000000000000000..8aea785e853eb5df8afd05153ad7bc85741c0870 Binary files /dev/null and b/system/lib/android.hardware.camera.device@3.2.so differ diff --git a/system/lib/android.hardware.camera.device@3.3.so b/system/lib/android.hardware.camera.device@3.3.so new file mode 100644 index 0000000000000000000000000000000000000000..70a8c7c653e35804b7c0d41dcd15f78c01824622 Binary files /dev/null and b/system/lib/android.hardware.camera.device@3.3.so differ diff --git a/system/lib/android.hardware.camera.provider@2.4.so b/system/lib/android.hardware.camera.provider@2.4.so new file mode 100644 index 0000000000000000000000000000000000000000..a9f0a7ca500c1b783466c00b11979064907853e9 Binary files /dev/null and b/system/lib/android.hardware.camera.provider@2.4.so differ diff --git a/system/lib/android.hardware.cas.native@1.0.so b/system/lib/android.hardware.cas.native@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..66b2e1dc16b18d7e7a77d9ac28073019a0a43d5a Binary files /dev/null and b/system/lib/android.hardware.cas.native@1.0.so differ diff --git a/system/lib/android.hardware.cas@1.0.so b/system/lib/android.hardware.cas@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..bde1e37de7d1d1cc81fbc2a5019cc8a947b973d0 Binary files /dev/null and b/system/lib/android.hardware.cas@1.0.so differ diff --git a/system/lib/android.hardware.configstore-utils.so b/system/lib/android.hardware.configstore-utils.so new file mode 100644 index 0000000000000000000000000000000000000000..945d2df428383f891ac6b8f43befca7096b39eb9 Binary files /dev/null and b/system/lib/android.hardware.configstore-utils.so differ diff --git a/system/lib/android.hardware.configstore@1.0.so b/system/lib/android.hardware.configstore@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..4fef583c6e1be8e405ad709cb4235297c86ddde8 Binary files /dev/null and b/system/lib/android.hardware.configstore@1.0.so differ diff --git a/system/lib/android.hardware.contexthub@1.0.so b/system/lib/android.hardware.contexthub@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..617b9cf4ef27b6b144ff1ea7029cf51aadae1246 Binary files /dev/null and b/system/lib/android.hardware.contexthub@1.0.so differ diff --git a/system/lib/android.hardware.drm@1.0.so b/system/lib/android.hardware.drm@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..77763c320a835f4aa0e71b152a6f2bb2f7322b06 Binary files /dev/null and b/system/lib/android.hardware.drm@1.0.so differ diff --git a/system/lib/android.hardware.dumpstate@1.0.so b/system/lib/android.hardware.dumpstate@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..603c937679ec33a5d233c9e16fb25ef5b0a3d2d5 Binary files /dev/null and b/system/lib/android.hardware.dumpstate@1.0.so differ diff --git a/system/lib/android.hardware.gatekeeper@1.0.so b/system/lib/android.hardware.gatekeeper@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..6e2405d246b0f291f97449510d795c21c8e5f456 Binary files /dev/null and b/system/lib/android.hardware.gatekeeper@1.0.so differ diff --git a/system/lib/android.hardware.gnss@1.0.so b/system/lib/android.hardware.gnss@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..2acbb03b5b7a7ffdde757ad258dbd6066fa2ac36 Binary files /dev/null and b/system/lib/android.hardware.gnss@1.0.so differ diff --git a/system/lib/android.hardware.graphics.allocator@2.0.so b/system/lib/android.hardware.graphics.allocator@2.0.so new file mode 100644 index 0000000000000000000000000000000000000000..fa785bf98ff8be3b3ac526f723854a96cb1352ba Binary files /dev/null and b/system/lib/android.hardware.graphics.allocator@2.0.so differ diff --git a/system/lib/android.hardware.graphics.bufferqueue@1.0.so b/system/lib/android.hardware.graphics.bufferqueue@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..e6c4b381f5f47c079e068b7b2e7ee30b7845a455 Binary files /dev/null and b/system/lib/android.hardware.graphics.bufferqueue@1.0.so differ diff --git a/system/lib/android.hardware.graphics.common@1.0.so b/system/lib/android.hardware.graphics.common@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..20a534360e4d7ca36f0c0274bf2a74b3ec9a6302 Binary files /dev/null and b/system/lib/android.hardware.graphics.common@1.0.so differ diff --git a/system/lib/android.hardware.graphics.composer@2.1.so b/system/lib/android.hardware.graphics.composer@2.1.so new file mode 100644 index 0000000000000000000000000000000000000000..7d6421ea048d4963a22298a01a32187030984661 Binary files /dev/null and b/system/lib/android.hardware.graphics.composer@2.1.so differ diff --git a/system/lib/android.hardware.graphics.mapper@2.0.so b/system/lib/android.hardware.graphics.mapper@2.0.so new file mode 100644 index 0000000000000000000000000000000000000000..3341037be28d60cfaf81851afb331bba84d04da7 Binary files /dev/null and b/system/lib/android.hardware.graphics.mapper@2.0.so differ diff --git a/system/lib/android.hardware.health@1.0.so b/system/lib/android.hardware.health@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..bf25b2d090c487c07dc4fcefb31f7379243fb949 Binary files /dev/null and b/system/lib/android.hardware.health@1.0.so differ diff --git a/system/lib/android.hardware.ir@1.0.so b/system/lib/android.hardware.ir@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..acbfb0345efd858a38efd80415f87e8fb2ac0410 Binary files /dev/null and b/system/lib/android.hardware.ir@1.0.so differ diff --git a/system/lib/android.hardware.keymaster@3.0.so b/system/lib/android.hardware.keymaster@3.0.so new file mode 100644 index 0000000000000000000000000000000000000000..da3c918a648ab95160401a1d2bc5964ff6fe3312 Binary files /dev/null and b/system/lib/android.hardware.keymaster@3.0.so differ diff --git a/system/lib/android.hardware.light@2.0.so b/system/lib/android.hardware.light@2.0.so new file mode 100644 index 0000000000000000000000000000000000000000..9fda3f384d8d81b6b97ca4fc9d39820cde5ac005 Binary files /dev/null and b/system/lib/android.hardware.light@2.0.so differ diff --git a/system/lib/android.hardware.media.omx@1.0.so b/system/lib/android.hardware.media.omx@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..6b4681e2cbd4aaeb0bef982212094f392921ad5a Binary files /dev/null and b/system/lib/android.hardware.media.omx@1.0.so differ diff --git a/system/lib/android.hardware.media@1.0.so b/system/lib/android.hardware.media@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..c09863d7e4312de59e6800d771e90a73372b6e1a Binary files /dev/null and b/system/lib/android.hardware.media@1.0.so differ diff --git a/system/lib/android.hardware.memtrack@1.0.so b/system/lib/android.hardware.memtrack@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..53a5836620f2425bd6bf9300c9afbba6275d986d Binary files /dev/null and b/system/lib/android.hardware.memtrack@1.0.so differ diff --git a/system/lib/android.hardware.neuralnetworks@1.0.so b/system/lib/android.hardware.neuralnetworks@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..5d63ba85d38724807dfa79172ac38deab7af19e0 Binary files /dev/null and b/system/lib/android.hardware.neuralnetworks@1.0.so differ diff --git a/system/lib/android.hardware.power@1.0.so b/system/lib/android.hardware.power@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..188921e2bd111085d8d874adde70693628b8377c Binary files /dev/null and b/system/lib/android.hardware.power@1.0.so differ diff --git a/system/lib/android.hardware.power@1.1.so b/system/lib/android.hardware.power@1.1.so new file mode 100644 index 0000000000000000000000000000000000000000..b944e348470ea60fe38d43ed16cef0ab8549045d Binary files /dev/null and b/system/lib/android.hardware.power@1.1.so differ diff --git a/system/lib/android.hardware.radio.deprecated@1.0.so b/system/lib/android.hardware.radio.deprecated@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..269ae9e286ef462e13c64cb5730b2c6f5d58abc1 Binary files /dev/null and b/system/lib/android.hardware.radio.deprecated@1.0.so differ diff --git a/system/lib/android.hardware.radio@1.0.so b/system/lib/android.hardware.radio@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..074b69ba81d3856ab7d5e9b5f1aaf229e28750c4 Binary files /dev/null and b/system/lib/android.hardware.radio@1.0.so differ diff --git a/system/lib/android.hardware.radio@1.1.so b/system/lib/android.hardware.radio@1.1.so new file mode 100644 index 0000000000000000000000000000000000000000..9aebcf36aec6d3eb03b496d173d8cd4f31cd765a Binary files /dev/null and b/system/lib/android.hardware.radio@1.1.so differ diff --git a/system/lib/android.hardware.renderscript@1.0.so b/system/lib/android.hardware.renderscript@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..6de41200b17c65be90cf5080ca8a1f9b899eeb69 Binary files /dev/null and b/system/lib/android.hardware.renderscript@1.0.so differ diff --git a/system/lib/android.hardware.sensors@1.0.so b/system/lib/android.hardware.sensors@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..429ab3492ffb268ec93276c3521836b690e5efc3 Binary files /dev/null and b/system/lib/android.hardware.sensors@1.0.so differ diff --git a/system/lib/android.hardware.soundtrigger@2.0.so b/system/lib/android.hardware.soundtrigger@2.0.so new file mode 100644 index 0000000000000000000000000000000000000000..5da4e3ad8fdbe346de1e9af556553f5066713b25 Binary files /dev/null and b/system/lib/android.hardware.soundtrigger@2.0.so differ diff --git a/system/lib/android.hardware.tetheroffload.config@1.0.so b/system/lib/android.hardware.tetheroffload.config@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..434d3906454d20ff4f240bb50f8e89dfd13c673c Binary files /dev/null and b/system/lib/android.hardware.tetheroffload.config@1.0.so differ diff --git a/system/lib/android.hardware.thermal@1.0.so b/system/lib/android.hardware.thermal@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..2ad688ccff6a80dc2d9faad952a255a25ba30f8d Binary files /dev/null and b/system/lib/android.hardware.thermal@1.0.so differ diff --git a/system/lib/android.hardware.thermal@1.1.so b/system/lib/android.hardware.thermal@1.1.so new file mode 100644 index 0000000000000000000000000000000000000000..21c33208e5dfbceb18fc7e38327a6763f85c82f5 Binary files /dev/null and b/system/lib/android.hardware.thermal@1.1.so differ diff --git a/system/lib/android.hardware.tv.cec@1.0.so b/system/lib/android.hardware.tv.cec@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..ebb3bcca376cde9d4c07bf2dfa8195a34b5ab0df Binary files /dev/null and b/system/lib/android.hardware.tv.cec@1.0.so differ diff --git a/system/lib/android.hardware.tv.input@1.0.so b/system/lib/android.hardware.tv.input@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..1af6efd0ecf38a392bf2079dd2c64ef07ed8a926 Binary files /dev/null and b/system/lib/android.hardware.tv.input@1.0.so differ diff --git a/system/lib/android.hardware.vibrator@1.0.so b/system/lib/android.hardware.vibrator@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..ce052637180a3d6d5cd1343c54ca18461211da6d Binary files /dev/null and b/system/lib/android.hardware.vibrator@1.0.so differ diff --git a/system/lib/android.hardware.vibrator@1.1.so b/system/lib/android.hardware.vibrator@1.1.so new file mode 100644 index 0000000000000000000000000000000000000000..34e72dfc72bdaed9197e6507dcaeb26210f464ba Binary files /dev/null and b/system/lib/android.hardware.vibrator@1.1.so differ diff --git a/system/lib/android.hardware.vr@1.0.so b/system/lib/android.hardware.vr@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..5226381217bb1366df0d933e7f7515aef5ab7ecb Binary files /dev/null and b/system/lib/android.hardware.vr@1.0.so differ diff --git a/system/lib/android.hardware.wifi.offload@1.0.so b/system/lib/android.hardware.wifi.offload@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..94d2ef21d856d9b42eb0dd30d64991d4125fcafe Binary files /dev/null and b/system/lib/android.hardware.wifi.offload@1.0.so differ diff --git a/system/lib/android.hardware.wifi.supplicant@1.0.so b/system/lib/android.hardware.wifi.supplicant@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..c4fc3f4a8e46cdbb15de87d3f197182a3921f981 Binary files /dev/null and b/system/lib/android.hardware.wifi.supplicant@1.0.so differ diff --git a/system/lib/android.hardware.wifi@1.0.so b/system/lib/android.hardware.wifi@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..ca52e926c7a6bf2367f08bad83350efb3a463386 Binary files /dev/null and b/system/lib/android.hardware.wifi@1.0.so differ diff --git a/system/lib/android.hardware.wifi@1.1.so b/system/lib/android.hardware.wifi@1.1.so new file mode 100644 index 0000000000000000000000000000000000000000..c2b5ae33e9ca0dd4c2941414eff857591f431e25 Binary files /dev/null and b/system/lib/android.hardware.wifi@1.1.so differ diff --git a/system/lib/android.hidl.allocator@1.0.so b/system/lib/android.hidl.allocator@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..857c297783bd00ff78218087e40e99fa866453f1 Binary files /dev/null and b/system/lib/android.hidl.allocator@1.0.so differ diff --git a/system/lib/android.hidl.memory@1.0.so b/system/lib/android.hidl.memory@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..f20147501b92c29b0177e7ccb79d2fc002a5a4f4 Binary files /dev/null and b/system/lib/android.hidl.memory@1.0.so differ diff --git a/system/lib/android.hidl.token@1.0-utils.so b/system/lib/android.hidl.token@1.0-utils.so new file mode 100644 index 0000000000000000000000000000000000000000..18ce5e8a47d5e481025e70b5f1aa69ed4ca6fd24 Binary files /dev/null and b/system/lib/android.hidl.token@1.0-utils.so differ diff --git a/system/lib/android.hidl.token@1.0.so b/system/lib/android.hidl.token@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..e2f25baf517c2f032517395e3615176366ad3075 Binary files /dev/null and b/system/lib/android.hidl.token@1.0.so differ diff --git a/system/lib/android.system.net.netd@1.0.so b/system/lib/android.system.net.netd@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..34acb78c44685400bf568f05506c17e63510c19a Binary files /dev/null and b/system/lib/android.system.net.netd@1.0.so differ diff --git a/system/lib/android.system.wifi.keystore@1.0.so b/system/lib/android.system.wifi.keystore@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..08cc4aee14beeaa8a751edeb0927d3bfb7a2c256 Binary files /dev/null and b/system/lib/android.system.wifi.keystore@1.0.so differ diff --git a/system/lib/egl/libGLES_android.so b/system/lib/egl/libGLES_android.so new file mode 100644 index 0000000000000000000000000000000000000000..8e211b4bb0a3c8a3086c10a170732e2931b28c8b Binary files /dev/null and b/system/lib/egl/libGLES_android.so differ diff --git a/system/lib/hw/android.hidl.memory@1.0-impl.so b/system/lib/hw/android.hidl.memory@1.0-impl.so new file mode 100644 index 0000000000000000000000000000000000000000..935c24b9d52404a3253e8fad43565128892af475 Binary files /dev/null and b/system/lib/hw/android.hidl.memory@1.0-impl.so differ diff --git a/system/lib/hw/audio.a2dp.default.so b/system/lib/hw/audio.a2dp.default.so new file mode 100644 index 0000000000000000000000000000000000000000..0faae9d1a1ddce1bc4c92b4020219d3a390030e2 Binary files /dev/null and b/system/lib/hw/audio.a2dp.default.so differ diff --git a/system/lib/hw/bluetooth.default.so b/system/lib/hw/bluetooth.default.so new file mode 100644 index 0000000000000000000000000000000000000000..bbbf2c73be672ed4a63f539e9e54d09349bf04a1 Binary files /dev/null and b/system/lib/hw/bluetooth.default.so differ diff --git a/system/lib/hw/keystore.default.so b/system/lib/hw/keystore.default.so new file mode 100644 index 0000000000000000000000000000000000000000..ee31dcdf939bbea56bef10381bffc7625c4a8222 Binary files /dev/null and b/system/lib/hw/keystore.default.so differ diff --git a/system/lib/ld-android.so b/system/lib/ld-android.so new file mode 100644 index 0000000000000000000000000000000000000000..be222b3d65fc7ab89966ec3121ba7a80b1dc4fad Binary files /dev/null and b/system/lib/ld-android.so differ diff --git a/system/lib/libEGL.so b/system/lib/libEGL.so new file mode 100644 index 0000000000000000000000000000000000000000..f2f728a1d0b3ba45858dfdd21c0935a02fd4fdf4 Binary files /dev/null and b/system/lib/libEGL.so differ diff --git a/system/lib/libETC1.so b/system/lib/libETC1.so new file mode 100644 index 0000000000000000000000000000000000000000..4f2a1192b97293f8eef72d1b2ade3d04f0d4dc8b Binary files /dev/null and b/system/lib/libETC1.so differ diff --git a/system/lib/libFFTEm.so b/system/lib/libFFTEm.so new file mode 100644 index 0000000000000000000000000000000000000000..a7cc91e9bc78edac93355803f1bd55ff82d42d3b Binary files /dev/null and b/system/lib/libFFTEm.so differ diff --git a/system/lib/libGLESv1_CM.so b/system/lib/libGLESv1_CM.so new file mode 100644 index 0000000000000000000000000000000000000000..324a5d0ddacdc8e235ea6a1d66448080c00ba6b9 Binary files /dev/null and b/system/lib/libGLESv1_CM.so differ diff --git a/system/lib/libGLESv2.so b/system/lib/libGLESv2.so new file mode 100644 index 0000000000000000000000000000000000000000..9922a02318feacc47b3373f104cca829b30b7d58 Binary files /dev/null and b/system/lib/libGLESv2.so differ diff --git a/system/lib/libGLESv3.so b/system/lib/libGLESv3.so new file mode 100644 index 0000000000000000000000000000000000000000..b05d01edf83a25b4baaef754b7d03b44e1e95591 Binary files /dev/null and b/system/lib/libGLESv3.so differ diff --git a/system/lib/libLLVM.so b/system/lib/libLLVM.so new file mode 100644 index 0000000000000000000000000000000000000000..acf41c9a10c68219b9654a87c91e2c0050337f92 Binary files /dev/null and b/system/lib/libLLVM.so differ diff --git a/system/lib/libMiraVision_jni.so b/system/lib/libMiraVision_jni.so new file mode 100644 index 0000000000000000000000000000000000000000..70a05eb5409352cd1945b3f667defb0098508906 Binary files /dev/null and b/system/lib/libMiraVision_jni.so differ diff --git a/system/lib/libOpenMAXAL.so b/system/lib/libOpenMAXAL.so new file mode 100644 index 0000000000000000000000000000000000000000..f4b5580e01a090fd96c6772ad2a985a381920403 Binary files /dev/null and b/system/lib/libOpenMAXAL.so differ diff --git a/system/lib/libOpenSLES.so b/system/lib/libOpenSLES.so new file mode 100644 index 0000000000000000000000000000000000000000..d90da7762a515f2fdd79e17b8e63c60920ef5ae7 Binary files /dev/null and b/system/lib/libOpenSLES.so differ diff --git a/system/lib/libRS.so b/system/lib/libRS.so new file mode 100644 index 0000000000000000000000000000000000000000..a632c33a8cfc9d0b5696a56a91b171abbe45ea09 Binary files /dev/null and b/system/lib/libRS.so differ diff --git a/system/lib/libRSCacheDir.so b/system/lib/libRSCacheDir.so new file mode 100644 index 0000000000000000000000000000000000000000..190f9cd488ad9c6faa4fa532e800587ebbc39973 Binary files /dev/null and b/system/lib/libRSCacheDir.so differ diff --git a/system/lib/libRSCpuRef.so b/system/lib/libRSCpuRef.so new file mode 100644 index 0000000000000000000000000000000000000000..0189b89d259d8494ef5792becfc26cbeef0c5f7b Binary files /dev/null and b/system/lib/libRSCpuRef.so differ diff --git a/system/lib/libRSDriver.so b/system/lib/libRSDriver.so new file mode 100644 index 0000000000000000000000000000000000000000..64bfcd7ad32fa533d0341ea0dea81e7aa0024672 Binary files /dev/null and b/system/lib/libRSDriver.so differ diff --git a/system/lib/libRS_internal.so b/system/lib/libRS_internal.so new file mode 100644 index 0000000000000000000000000000000000000000..54d2fc241dad96e71fff03a6d8cdaae9272f152e Binary files /dev/null and b/system/lib/libRS_internal.so differ diff --git a/system/lib/libRScpp.so b/system/lib/libRScpp.so new file mode 100644 index 0000000000000000000000000000000000000000..eab76113285063463909760c07d2b66c53311af8 Binary files /dev/null and b/system/lib/libRScpp.so differ diff --git a/system/lib/libaal.so b/system/lib/libaal.so new file mode 100644 index 0000000000000000000000000000000000000000..0462a57fea648161638c5798df5d9b427ea10b45 Binary files /dev/null and b/system/lib/libaal.so differ diff --git a/system/lib/libaal_cust.so b/system/lib/libaal_cust.so new file mode 100644 index 0000000000000000000000000000000000000000..e14ed91a0ebef78f1de2e2b0e7258e9330e9b2ba Binary files /dev/null and b/system/lib/libaal_cust.so differ diff --git a/system/lib/libaalservice.so b/system/lib/libaalservice.so new file mode 100644 index 0000000000000000000000000000000000000000..d81910baa03ee2a1ffa00946a57507e8bdd79c16 Binary files /dev/null and b/system/lib/libaalservice.so differ diff --git a/system/lib/libaaudio.so b/system/lib/libaaudio.so new file mode 100644 index 0000000000000000000000000000000000000000..b3f21c71ac57439bd64110cd7fe8be0d46615a4f Binary files /dev/null and b/system/lib/libaaudio.so differ diff --git a/system/lib/libaaudioservice.so b/system/lib/libaaudioservice.so new file mode 100644 index 0000000000000000000000000000000000000000..08c2d40a76850bfd3813e289bd77ebcacada1986 Binary files /dev/null and b/system/lib/libaaudioservice.so differ diff --git a/system/lib/libaed.so b/system/lib/libaed.so new file mode 100644 index 0000000000000000000000000000000000000000..0d0fecd2e1964d243cc5a4c7534cb8fdea18a601 Binary files /dev/null and b/system/lib/libaed.so differ diff --git a/system/lib/libandroid.so b/system/lib/libandroid.so new file mode 100644 index 0000000000000000000000000000000000000000..39cf815cb3c255687cd1c43a5baa7603406984d7 Binary files /dev/null and b/system/lib/libandroid.so differ diff --git a/system/lib/libandroid_net.so b/system/lib/libandroid_net.so new file mode 100644 index 0000000000000000000000000000000000000000..fdfd0d4e2480264c28d07ccb19210809c75a87ab Binary files /dev/null and b/system/lib/libandroid_net.so differ diff --git a/system/lib/libandroid_runtime.so b/system/lib/libandroid_runtime.so new file mode 100644 index 0000000000000000000000000000000000000000..5402c16c2c134c1b0da209c747c0eca1c765e3ac Binary files /dev/null and b/system/lib/libandroid_runtime.so differ diff --git a/system/lib/libandroid_servers.so b/system/lib/libandroid_servers.so new file mode 100644 index 0000000000000000000000000000000000000000..e88fd3efe516a4948c71ab0781becfb75e7c6a0f Binary files /dev/null and b/system/lib/libandroid_servers.so differ diff --git a/system/lib/libandroidfw.so b/system/lib/libandroidfw.so new file mode 100644 index 0000000000000000000000000000000000000000..68179c7d94efa5211589adc818cb5c42f4a91385 Binary files /dev/null and b/system/lib/libandroidfw.so differ diff --git a/system/lib/libappfuse.so b/system/lib/libappfuse.so new file mode 100644 index 0000000000000000000000000000000000000000..cc8ace0c1c0140722bb9678b814263ac927cf358 Binary files /dev/null and b/system/lib/libappfuse.so differ diff --git a/system/lib/libart-compiler.so b/system/lib/libart-compiler.so new file mode 100644 index 0000000000000000000000000000000000000000..775145b7efc9e9a10d695461c1afc663bb198ea9 Binary files /dev/null and b/system/lib/libart-compiler.so differ diff --git a/system/lib/libart-dexlayout.so b/system/lib/libart-dexlayout.so new file mode 100644 index 0000000000000000000000000000000000000000..565355fa6cdce5be43d0cee1d0a1c8201a688419 Binary files /dev/null and b/system/lib/libart-dexlayout.so differ diff --git a/system/lib/libart-disassembler.so b/system/lib/libart-disassembler.so new file mode 100644 index 0000000000000000000000000000000000000000..b30dd240ee3f6a06c37ff74310ad5c4150fd8310 Binary files /dev/null and b/system/lib/libart-disassembler.so differ diff --git a/system/lib/libart.so b/system/lib/libart.so new file mode 100644 index 0000000000000000000000000000000000000000..f6eea05f140357f29db173525ede1866e94f03a1 Binary files /dev/null and b/system/lib/libart.so differ diff --git a/system/lib/libaudio-resampler.so b/system/lib/libaudio-resampler.so new file mode 100644 index 0000000000000000000000000000000000000000..cc6c0c73c6e20b56f34109cb0b24e82bfe7b4a71 Binary files /dev/null and b/system/lib/libaudio-resampler.so differ diff --git a/system/lib/libaudio_param_parser-sys.so b/system/lib/libaudio_param_parser-sys.so new file mode 100644 index 0000000000000000000000000000000000000000..7860d8bc3a583d3709e56f5d5e2ca9f7901415d3 Binary files /dev/null and b/system/lib/libaudio_param_parser-sys.so differ diff --git a/system/lib/libaudioclient.so b/system/lib/libaudioclient.so new file mode 100644 index 0000000000000000000000000000000000000000..230b7378cf12777ac011a0128c84e96aeac445ac Binary files /dev/null and b/system/lib/libaudioclient.so differ diff --git a/system/lib/libaudiocompensationfilter.so b/system/lib/libaudiocompensationfilter.so new file mode 100644 index 0000000000000000000000000000000000000000..fdad12e1c9e431a9ba0448d17b32638517e73125 Binary files /dev/null and b/system/lib/libaudiocompensationfilter.so differ diff --git a/system/lib/libaudiocomponentengine.so b/system/lib/libaudiocomponentengine.so new file mode 100644 index 0000000000000000000000000000000000000000..5b54a626cf607dec58bbcd3d1ea7ec59b67664d1 Binary files /dev/null and b/system/lib/libaudiocomponentengine.so differ diff --git a/system/lib/libaudiocustparam.so b/system/lib/libaudiocustparam.so new file mode 100644 index 0000000000000000000000000000000000000000..844d1064e5cf463888e6a8d644a8429f664db5dc Binary files /dev/null and b/system/lib/libaudiocustparam.so differ diff --git a/system/lib/libaudiodcrflt.so b/system/lib/libaudiodcrflt.so new file mode 100644 index 0000000000000000000000000000000000000000..e0f0c7e0b8b051736f238b91a8ac3d29d23dec4a Binary files /dev/null and b/system/lib/libaudiodcrflt.so differ diff --git a/system/lib/libaudioeffect_jni.so b/system/lib/libaudioeffect_jni.so new file mode 100644 index 0000000000000000000000000000000000000000..1f4948c849c6972d37fc336ff20260c27456f54c Binary files /dev/null and b/system/lib/libaudioeffect_jni.so differ diff --git a/system/lib/libaudioflinger.so b/system/lib/libaudioflinger.so new file mode 100644 index 0000000000000000000000000000000000000000..9b64d321184fee456380942838b272bd4a748c3b Binary files /dev/null and b/system/lib/libaudioflinger.so differ diff --git a/system/lib/libaudiohal.so b/system/lib/libaudiohal.so new file mode 100644 index 0000000000000000000000000000000000000000..47be364516f5cd29ab4e7dd782cfdfb379f8cb09 Binary files /dev/null and b/system/lib/libaudiohal.so differ diff --git a/system/lib/libaudiomanager.so b/system/lib/libaudiomanager.so new file mode 100644 index 0000000000000000000000000000000000000000..240163f11936085ad06c0da9beabc8cf0ad4cbbb Binary files /dev/null and b/system/lib/libaudiomanager.so differ diff --git a/system/lib/libaudiopolicycustomextensions.so b/system/lib/libaudiopolicycustomextensions.so new file mode 100644 index 0000000000000000000000000000000000000000..6975350532cf0f094bf38479e786348ac6ee5be3 Binary files /dev/null and b/system/lib/libaudiopolicycustomextensions.so differ diff --git a/system/lib/libaudiopolicyenginedefault.so b/system/lib/libaudiopolicyenginedefault.so new file mode 100644 index 0000000000000000000000000000000000000000..4233260e69d767ebf598cfbc4d99351e9922234e Binary files /dev/null and b/system/lib/libaudiopolicyenginedefault.so differ diff --git a/system/lib/libaudiopolicymanager.so b/system/lib/libaudiopolicymanager.so new file mode 100644 index 0000000000000000000000000000000000000000..93db57795b1a69655b0ee633c3e1c1262b4522c1 Binary files /dev/null and b/system/lib/libaudiopolicymanager.so differ diff --git a/system/lib/libaudiopolicymanagerdefault.so b/system/lib/libaudiopolicymanagerdefault.so new file mode 100644 index 0000000000000000000000000000000000000000..a176e28c85b795702bf5d1955a1d10b7b1c820a0 Binary files /dev/null and b/system/lib/libaudiopolicymanagerdefault.so differ diff --git a/system/lib/libaudiopolicyservice.so b/system/lib/libaudiopolicyservice.so new file mode 100644 index 0000000000000000000000000000000000000000..c29941fa01147e86b47ca2799f4f6e9b6bf6b85c Binary files /dev/null and b/system/lib/libaudiopolicyservice.so differ diff --git a/system/lib/libaudioprocessing.so b/system/lib/libaudioprocessing.so new file mode 100644 index 0000000000000000000000000000000000000000..6e170da0e7babdbfa322ec8c36d707d59c8ee4e7 Binary files /dev/null and b/system/lib/libaudioprocessing.so differ diff --git a/system/lib/libaudiospdif.so b/system/lib/libaudiospdif.so new file mode 100644 index 0000000000000000000000000000000000000000..82761e33dc63df96be30c5540e19d3d7573d4f7b Binary files /dev/null and b/system/lib/libaudiospdif.so differ diff --git a/system/lib/libaudiotoolkit.so b/system/lib/libaudiotoolkit.so new file mode 100644 index 0000000000000000000000000000000000000000..8e20f739228f756f976fdb2d1ba960bb595f5080 Binary files /dev/null and b/system/lib/libaudiotoolkit.so differ diff --git a/system/lib/libaudioutils.so b/system/lib/libaudioutils.so new file mode 100644 index 0000000000000000000000000000000000000000..f00300d54687a8fabd70ea7e54eea26021b842bf Binary files /dev/null and b/system/lib/libaudioutils.so differ diff --git a/system/lib/libavservices_minijail.so b/system/lib/libavservices_minijail.so new file mode 100644 index 0000000000000000000000000000000000000000..08eef1795bd92f71ccf0396cb51fa3c96d4bec97 Binary files /dev/null and b/system/lib/libavservices_minijail.so differ diff --git a/system/lib/libbacktrace.so b/system/lib/libbacktrace.so new file mode 100644 index 0000000000000000000000000000000000000000..f89bc6f508bd45d1a9ac15357102dc597789ff68 Binary files /dev/null and b/system/lib/libbacktrace.so differ diff --git a/system/lib/libbase.so b/system/lib/libbase.so new file mode 100644 index 0000000000000000000000000000000000000000..09016f4b46f7c921a279d52d7057ecc84e765b68 Binary files /dev/null and b/system/lib/libbase.so differ diff --git a/system/lib/libbatteryservice.so b/system/lib/libbatteryservice.so new file mode 100644 index 0000000000000000000000000000000000000000..43e3d83b47a22fe3f44312878a4fd18beccb434d Binary files /dev/null and b/system/lib/libbatteryservice.so differ diff --git a/system/lib/libbcc.so b/system/lib/libbcc.so new file mode 100644 index 0000000000000000000000000000000000000000..36420f87634f6216b9bec1a79b38fd5a42a9e66e Binary files /dev/null and b/system/lib/libbcc.so differ diff --git a/system/lib/libbcinfo.so b/system/lib/libbcinfo.so new file mode 100644 index 0000000000000000000000000000000000000000..1db378280863f679ac56a750a3da86c55c2a237e Binary files /dev/null and b/system/lib/libbcinfo.so differ diff --git a/system/lib/libbessound_hd_mtk.so b/system/lib/libbessound_hd_mtk.so new file mode 100644 index 0000000000000000000000000000000000000000..12071dc956d98a3b65966b15204c524e1bc86cc2 Binary files /dev/null and b/system/lib/libbessound_hd_mtk.so differ diff --git a/system/lib/libbinder.so b/system/lib/libbinder.so new file mode 100644 index 0000000000000000000000000000000000000000..1e237820c54af365b1373a200b68bbc122ae4e5a Binary files /dev/null and b/system/lib/libbinder.so differ diff --git a/system/lib/libblas.so b/system/lib/libblas.so new file mode 100644 index 0000000000000000000000000000000000000000..07328983201bb5d121e4a61e52193c1b61254e8d Binary files /dev/null and b/system/lib/libblas.so differ diff --git a/system/lib/libblisrc.so b/system/lib/libblisrc.so new file mode 100644 index 0000000000000000000000000000000000000000..c4a07a84e97108c5716b7a0d098c112c797390e0 Binary files /dev/null and b/system/lib/libblisrc.so differ diff --git a/system/lib/libblisrc32.so b/system/lib/libblisrc32.so new file mode 100644 index 0000000000000000000000000000000000000000..ea7528efb92b6f47a8025b159e3db9c6b90a227c Binary files /dev/null and b/system/lib/libblisrc32.so differ diff --git a/system/lib/libc++.so b/system/lib/libc++.so new file mode 100644 index 0000000000000000000000000000000000000000..a96263d81af189369cda14601917da035e46faac Binary files /dev/null and b/system/lib/libc++.so differ diff --git a/system/lib/libc.so b/system/lib/libc.so new file mode 100644 index 0000000000000000000000000000000000000000..ad238c3de513a3adaed1932f865d80fb434e54ad Binary files /dev/null and b/system/lib/libc.so differ diff --git a/system/lib/libc_malloc_debug.so b/system/lib/libc_malloc_debug.so new file mode 100644 index 0000000000000000000000000000000000000000..916ff72b18ed5b0730eae310482369ed509c2739 Binary files /dev/null and b/system/lib/libc_malloc_debug.so differ diff --git a/system/lib/libcamera2ndk.so b/system/lib/libcamera2ndk.so new file mode 100644 index 0000000000000000000000000000000000000000..3b20b16ea24c632fb8218f7fd4a4ad448608c656 Binary files /dev/null and b/system/lib/libcamera2ndk.so differ diff --git a/system/lib/libcamera_client.so b/system/lib/libcamera_client.so new file mode 100644 index 0000000000000000000000000000000000000000..cfc4f2078419439a9f42ce28a4e867e791b78a3a Binary files /dev/null and b/system/lib/libcamera_client.so differ diff --git a/system/lib/libcamera_metadata.so b/system/lib/libcamera_metadata.so new file mode 100644 index 0000000000000000000000000000000000000000..de6cbca4e643af08d605dbb1737d0f7065c20eec Binary files /dev/null and b/system/lib/libcamera_metadata.so differ diff --git a/system/lib/libcameraservice.so b/system/lib/libcameraservice.so new file mode 100644 index 0000000000000000000000000000000000000000..e5ab8a2178e29d1ca9e87f588dc038f584b5e5f3 Binary files /dev/null and b/system/lib/libcameraservice.so differ diff --git a/system/lib/libcap.so b/system/lib/libcap.so new file mode 100644 index 0000000000000000000000000000000000000000..afd07cc6a841b9133b7e3b0f5e58a681d86896a3 Binary files /dev/null and b/system/lib/libcap.so differ diff --git a/system/lib/libccci_util_sys.so b/system/lib/libccci_util_sys.so new file mode 100644 index 0000000000000000000000000000000000000000..ef2bc7f932828301c8c56a431b81475ea71d5a14 Binary files /dev/null and b/system/lib/libccci_util_sys.so differ diff --git a/system/lib/libchrome.so b/system/lib/libchrome.so new file mode 100644 index 0000000000000000000000000000000000000000..afa1ff8eed89fe323cda51ac1015f442bedc3577 Binary files /dev/null and b/system/lib/libchrome.so differ diff --git a/system/lib/libclcore.bc b/system/lib/libclcore.bc new file mode 100644 index 0000000000000000000000000000000000000000..ee0429ad1639eb61a40e4a240db2fe0a09a6d839 Binary files /dev/null and b/system/lib/libclcore.bc differ diff --git a/system/lib/libclcore_debug.bc b/system/lib/libclcore_debug.bc new file mode 100644 index 0000000000000000000000000000000000000000..6c6fe331ae9fb04e83dcc7bd8553f18a1419079f Binary files /dev/null and b/system/lib/libclcore_debug.bc differ diff --git a/system/lib/libclcore_debug_g.bc b/system/lib/libclcore_debug_g.bc new file mode 100644 index 0000000000000000000000000000000000000000..8976d9dbda7c497822c2505cc2a5bc99c2b38bf4 Binary files /dev/null and b/system/lib/libclcore_debug_g.bc differ diff --git a/system/lib/libclcore_g.bc b/system/lib/libclcore_g.bc new file mode 100644 index 0000000000000000000000000000000000000000..ff05eab91325ed513878a2bac5467efbe883224a Binary files /dev/null and b/system/lib/libclcore_g.bc differ diff --git a/system/lib/libclcore_neon.bc b/system/lib/libclcore_neon.bc new file mode 100644 index 0000000000000000000000000000000000000000..ce3da69387f2e1bbd0d7a388e143e959999adc6f Binary files /dev/null and b/system/lib/libclcore_neon.bc differ diff --git a/system/lib/libcompiler_rt.so b/system/lib/libcompiler_rt.so new file mode 100644 index 0000000000000000000000000000000000000000..8348f292e64f2df5ecc308e743accce30f044349 Binary files /dev/null and b/system/lib/libcompiler_rt.so differ diff --git a/system/lib/libcomutils.so b/system/lib/libcomutils.so new file mode 100644 index 0000000000000000000000000000000000000000..771b647a16799c5e6bc60700bd52a0e51e74eeee Binary files /dev/null and b/system/lib/libcomutils.so differ diff --git a/system/lib/libcrypto.so b/system/lib/libcrypto.so new file mode 100644 index 0000000000000000000000000000000000000000..483c078c8966db59847a2f4b8f04b7caeeab080a Binary files /dev/null and b/system/lib/libcrypto.so differ diff --git a/system/lib/libcrypto_utils.so b/system/lib/libcrypto_utils.so new file mode 100644 index 0000000000000000000000000000000000000000..25fc678e1b561c975a0d203bfd7a8e1ac32bdd27 Binary files /dev/null and b/system/lib/libcrypto_utils.so differ diff --git a/system/lib/libcups.so b/system/lib/libcups.so new file mode 100644 index 0000000000000000000000000000000000000000..e5e9c5540115f3d5da64d1dc116af6950628495e Binary files /dev/null and b/system/lib/libcups.so differ diff --git a/system/lib/libcurl.so b/system/lib/libcurl.so new file mode 100644 index 0000000000000000000000000000000000000000..07a886a96ea899b5119965504d61b206efde9d3b Binary files /dev/null and b/system/lib/libcurl.so differ diff --git a/system/lib/libcustom_jni.so b/system/lib/libcustom_jni.so new file mode 100644 index 0000000000000000000000000000000000000000..aa27b4759b7c5d41fcab02a0c3cf6509e1f26fc8 Binary files /dev/null and b/system/lib/libcustom_jni.so differ diff --git a/system/lib/libcustom_nvram_mtk.so b/system/lib/libcustom_nvram_mtk.so new file mode 100644 index 0000000000000000000000000000000000000000..35cf5c56798ae33bcfb730b863ff2bf25f2ee01c Binary files /dev/null and b/system/lib/libcustom_nvram_mtk.so differ diff --git a/system/lib/libcustom_prop.so b/system/lib/libcustom_prop.so new file mode 100644 index 0000000000000000000000000000000000000000..ae205a747ef0fe868b86dec2a888eb1c2476c649 Binary files /dev/null and b/system/lib/libcustom_prop.so differ diff --git a/system/lib/libcutils.so b/system/lib/libcutils.so new file mode 100644 index 0000000000000000000000000000000000000000..edd20f22620b0a014df4a4522821f0813c4c9df2 Binary files /dev/null and b/system/lib/libcutils.so differ diff --git a/system/lib/libdcfdecoderjni.so b/system/lib/libdcfdecoderjni.so new file mode 100644 index 0000000000000000000000000000000000000000..6df696735af49539c57e575afe2db364c57f5e72 Binary files /dev/null and b/system/lib/libdcfdecoderjni.so differ diff --git a/system/lib/libdebuggerd_client.so b/system/lib/libdebuggerd_client.so new file mode 100644 index 0000000000000000000000000000000000000000..9ed2aad75ff9805ff3a3956e84ffe5f0648c042c Binary files /dev/null and b/system/lib/libdebuggerd_client.so differ diff --git a/system/lib/libdefcontainer_jni.so b/system/lib/libdefcontainer_jni.so new file mode 100644 index 0000000000000000000000000000000000000000..061be5cf00259a93593efccabf20e2a06148c031 Binary files /dev/null and b/system/lib/libdefcontainer_jni.so differ diff --git a/system/lib/libdiskconfig.so b/system/lib/libdiskconfig.so new file mode 100644 index 0000000000000000000000000000000000000000..55ff9926d646e4292dbda001738054e6069d0ad1 Binary files /dev/null and b/system/lib/libdiskconfig.so differ diff --git a/system/lib/libdisp_dejitter.so b/system/lib/libdisp_dejitter.so new file mode 100644 index 0000000000000000000000000000000000000000..3d02ba9bdc92c5d08ea38e64451bd8f476594e7c Binary files /dev/null and b/system/lib/libdisp_dejitter.so differ diff --git a/system/lib/libdisplayservicehidl.so b/system/lib/libdisplayservicehidl.so new file mode 100644 index 0000000000000000000000000000000000000000..94d9284be081faa080c03889addc3d4ed82c7a4b Binary files /dev/null and b/system/lib/libdisplayservicehidl.so differ diff --git a/system/lib/libdl.so b/system/lib/libdl.so new file mode 100644 index 0000000000000000000000000000000000000000..fece5a75e950452f1b94f8f61bd01951ed8776ce Binary files /dev/null and b/system/lib/libdl.so differ diff --git a/system/lib/libdng_sdk.so b/system/lib/libdng_sdk.so new file mode 100644 index 0000000000000000000000000000000000000000..4163ea9d44a277aa56b78ba43a28cc591720e0b9 Binary files /dev/null and b/system/lib/libdng_sdk.so differ diff --git a/system/lib/libdpframework_mtk.so b/system/lib/libdpframework_mtk.so new file mode 100644 index 0000000000000000000000000000000000000000..7a5292b18f398ad91fde2d2b91571341e1986640 Binary files /dev/null and b/system/lib/libdpframework_mtk.so differ diff --git a/system/lib/libdrmframework.so b/system/lib/libdrmframework.so new file mode 100644 index 0000000000000000000000000000000000000000..1642192e8d6adbc855a01d18e021c2d62ea4ffbe Binary files /dev/null and b/system/lib/libdrmframework.so differ diff --git a/system/lib/libdrmframework_jni.so b/system/lib/libdrmframework_jni.so new file mode 100644 index 0000000000000000000000000000000000000000..21276964e511102e6521667d2a6ce18105351c5c Binary files /dev/null and b/system/lib/libdrmframework_jni.so differ diff --git a/system/lib/libdrmmtkutil.so b/system/lib/libdrmmtkutil.so new file mode 100644 index 0000000000000000000000000000000000000000..22c6fdbb832d8600753a1782ca82f43222a18ef7 Binary files /dev/null and b/system/lib/libdrmmtkutil.so differ diff --git a/system/lib/libdrmmtkwhitelist.so b/system/lib/libdrmmtkwhitelist.so new file mode 100644 index 0000000000000000000000000000000000000000..407cb3372034dee0583ed315d0d89ac40e9d62af Binary files /dev/null and b/system/lib/libdrmmtkwhitelist.so differ diff --git a/system/lib/libdumpstateaidl.so b/system/lib/libdumpstateaidl.so new file mode 100644 index 0000000000000000000000000000000000000000..4a2eccc20b21c5effb1b62f630f45ea2e88757e8 Binary files /dev/null and b/system/lib/libdumpstateaidl.so differ diff --git a/system/lib/libdumpstateutil.so b/system/lib/libdumpstateutil.so new file mode 100644 index 0000000000000000000000000000000000000000..522eec04fe27a39b93dc3beca16b9a70b6c33823 Binary files /dev/null and b/system/lib/libdumpstateutil.so differ diff --git a/system/lib/libeffectsconfig.so b/system/lib/libeffectsconfig.so new file mode 100644 index 0000000000000000000000000000000000000000..b46d3aed2c243e612695776ef15e527d861e147a Binary files /dev/null and b/system/lib/libeffectsconfig.so differ diff --git a/system/lib/libevent.so b/system/lib/libevent.so new file mode 100644 index 0000000000000000000000000000000000000000..64d151e8863ef9715ad26f6de2535ab60f4e506d Binary files /dev/null and b/system/lib/libevent.so differ diff --git a/system/lib/libexif.so b/system/lib/libexif.so new file mode 100644 index 0000000000000000000000000000000000000000..69ff1a9fe272dc1c97d68a12782c8e2390a60c34 Binary files /dev/null and b/system/lib/libexif.so differ diff --git a/system/lib/libexpat.so b/system/lib/libexpat.so new file mode 100644 index 0000000000000000000000000000000000000000..a60152b462d9cdbcba38f485d7c6bd2c2af801e9 Binary files /dev/null and b/system/lib/libexpat.so differ diff --git a/system/lib/libext2_blkid.so b/system/lib/libext2_blkid.so new file mode 100644 index 0000000000000000000000000000000000000000..2982f9fdf0c489c4a044f50d54d521d1b129942f Binary files /dev/null and b/system/lib/libext2_blkid.so differ diff --git a/system/lib/libext2_com_err.so b/system/lib/libext2_com_err.so new file mode 100644 index 0000000000000000000000000000000000000000..1773c824895eb5c2e0743d3f0d349845f3974cfc Binary files /dev/null and b/system/lib/libext2_com_err.so differ diff --git a/system/lib/libext2_e2p.so b/system/lib/libext2_e2p.so new file mode 100644 index 0000000000000000000000000000000000000000..9c7eb4db2d5978f291c26fad4a98e5ad5d67fc3a Binary files /dev/null and b/system/lib/libext2_e2p.so differ diff --git a/system/lib/libext2_misc.so b/system/lib/libext2_misc.so new file mode 100644 index 0000000000000000000000000000000000000000..d6187e63b985c0fb7fdacead7bbaadfbba8e154b Binary files /dev/null and b/system/lib/libext2_misc.so differ diff --git a/system/lib/libext2_profile.so b/system/lib/libext2_profile.so new file mode 100644 index 0000000000000000000000000000000000000000..0fbb856b54aed4da7b3b52d3e79ddae65fa6b18f Binary files /dev/null and b/system/lib/libext2_profile.so differ diff --git a/system/lib/libext2_quota.so b/system/lib/libext2_quota.so new file mode 100644 index 0000000000000000000000000000000000000000..effa10633499a7050c2e045c159f9c62ee13275f Binary files /dev/null and b/system/lib/libext2_quota.so differ diff --git a/system/lib/libext2_uuid.so b/system/lib/libext2_uuid.so new file mode 100644 index 0000000000000000000000000000000000000000..684cacaee82007be23278ae6ad981c297bbc72d7 Binary files /dev/null and b/system/lib/libext2_uuid.so differ diff --git a/system/lib/libext2fs.so b/system/lib/libext2fs.so new file mode 100644 index 0000000000000000000000000000000000000000..eb974ac39763c212ff38e36afeffffcb9d90ae8b Binary files /dev/null and b/system/lib/libext2fs.so differ diff --git a/system/lib/libext4_utils.so b/system/lib/libext4_utils.so new file mode 100644 index 0000000000000000000000000000000000000000..3e06dfc834bcd25b5840498d7addfa828243651e Binary files /dev/null and b/system/lib/libext4_utils.so differ diff --git a/system/lib/libf2fs_sparseblock.so b/system/lib/libf2fs_sparseblock.so new file mode 100644 index 0000000000000000000000000000000000000000..c0f23104adeb5abd6e5a09f51ca9c92f2e2dba94 Binary files /dev/null and b/system/lib/libf2fs_sparseblock.so differ diff --git a/system/lib/libfile_op_mtk.so b/system/lib/libfile_op_mtk.so new file mode 100644 index 0000000000000000000000000000000000000000..c3bfb0d16827244750c59ce7ba5fcffca811ba33 Binary files /dev/null and b/system/lib/libfile_op_mtk.so differ diff --git a/system/lib/libfilterfw.so b/system/lib/libfilterfw.so new file mode 100644 index 0000000000000000000000000000000000000000..cc2a7787274cd28e29bc02f9985c53bb90af6b27 Binary files /dev/null and b/system/lib/libfilterfw.so differ diff --git a/system/lib/libfilterpack_facedetect.so b/system/lib/libfilterpack_facedetect.so new file mode 100644 index 0000000000000000000000000000000000000000..9ed174456878d34b0a65af8d0e3f3139af35d110 Binary files /dev/null and b/system/lib/libfilterpack_facedetect.so differ diff --git a/system/lib/libfilterpack_imageproc.so b/system/lib/libfilterpack_imageproc.so new file mode 100644 index 0000000000000000000000000000000000000000..8d8f29679653fcea037421b70d33240b81a1a17b Binary files /dev/null and b/system/lib/libfilterpack_imageproc.so differ diff --git a/system/lib/libfmjni.so b/system/lib/libfmjni.so new file mode 100644 index 0000000000000000000000000000000000000000..4c21cd06a2fcca62ab7d0928533477ad88e4dbf9 Binary files /dev/null and b/system/lib/libfmjni.so differ diff --git a/system/lib/libfmq.so b/system/lib/libfmq.so new file mode 100644 index 0000000000000000000000000000000000000000..c0f4f80fe33d0f8694b4f9a10874155fcb9dffae Binary files /dev/null and b/system/lib/libfmq.so differ diff --git a/system/lib/libfpspolicy_fw.so b/system/lib/libfpspolicy_fw.so new file mode 100644 index 0000000000000000000000000000000000000000..ffac0b912be6c89f35e54d4e010ec28bbfcf6c8a Binary files /dev/null and b/system/lib/libfpspolicy_fw.so differ diff --git a/system/lib/libft2.so b/system/lib/libft2.so new file mode 100644 index 0000000000000000000000000000000000000000..35ac133fa68e5abaf3ae871fd456e66af15f834c Binary files /dev/null and b/system/lib/libft2.so differ diff --git a/system/lib/libfw_drmutils.so b/system/lib/libfw_drmutils.so new file mode 100644 index 0000000000000000000000000000000000000000..b3e4b73c4b66471791d9909554bc93e229cc1974 Binary files /dev/null and b/system/lib/libfw_drmutils.so differ diff --git a/system/lib/libgatekeeper.so b/system/lib/libgatekeeper.so new file mode 100644 index 0000000000000000000000000000000000000000..5e080327aa0b0f87f083214cdc3c00916afaeb65 Binary files /dev/null and b/system/lib/libgatekeeper.so differ diff --git a/system/lib/libged_kpi.so b/system/lib/libged_kpi.so new file mode 100644 index 0000000000000000000000000000000000000000..42994a47160a7530778f39964808eb32d35c8e24 Binary files /dev/null and b/system/lib/libged_kpi.so differ diff --git a/system/lib/libged_sys.so b/system/lib/libged_sys.so new file mode 100644 index 0000000000000000000000000000000000000000..391dfccc816fb3997a0536d42ef36d3b0dabf06f Binary files /dev/null and b/system/lib/libged_sys.so differ diff --git a/system/lib/libgralloc_extra_sys.so b/system/lib/libgralloc_extra_sys.so new file mode 100644 index 0000000000000000000000000000000000000000..52ee3ca43b0cae407aeb217069dfe613afc71f82 Binary files /dev/null and b/system/lib/libgralloc_extra_sys.so differ diff --git a/system/lib/libgraphics2d_ext.so b/system/lib/libgraphics2d_ext.so new file mode 100644 index 0000000000000000000000000000000000000000..5981cc4dc06d6bdc6b284e745c05808fbb26d602 Binary files /dev/null and b/system/lib/libgraphics2d_ext.so differ diff --git a/system/lib/libgraphicsenv.so b/system/lib/libgraphicsenv.so new file mode 100644 index 0000000000000000000000000000000000000000..b2fb670a2a46addfd89e650bfedb05707b49b68a Binary files /dev/null and b/system/lib/libgraphicsenv.so differ diff --git a/system/lib/libgui.so b/system/lib/libgui.so new file mode 100644 index 0000000000000000000000000000000000000000..d78b96363435561468796370ab05a1085edde826 Binary files /dev/null and b/system/lib/libgui.so differ diff --git a/system/lib/libgui_debug.so b/system/lib/libgui_debug.so new file mode 100644 index 0000000000000000000000000000000000000000..a0a8cda119ad7be3f452f1b3cc2ff54a62c35628 Binary files /dev/null and b/system/lib/libgui_debug.so differ diff --git a/system/lib/libgui_ext.so b/system/lib/libgui_ext.so new file mode 100644 index 0000000000000000000000000000000000000000..f4f374018e89baf56c910eb3ec01a01f21959a0b Binary files /dev/null and b/system/lib/libgui_ext.so differ diff --git a/system/lib/libhardware.so b/system/lib/libhardware.so new file mode 100644 index 0000000000000000000000000000000000000000..ccd914338584c49098cb042b73bc0e391ed2f434 Binary files /dev/null and b/system/lib/libhardware.so differ diff --git a/system/lib/libhardware_legacy.so b/system/lib/libhardware_legacy.so new file mode 100644 index 0000000000000000000000000000000000000000..6668abe8a2ae004422bf9af60cfefde9946553f0 Binary files /dev/null and b/system/lib/libhardware_legacy.so differ diff --git a/system/lib/libharfbuzz_ng.so b/system/lib/libharfbuzz_ng.so new file mode 100644 index 0000000000000000000000000000000000000000..bf8eda220020f7df9aac9440ff43e7cdcfab1181 Binary files /dev/null and b/system/lib/libharfbuzz_ng.so differ diff --git a/system/lib/libheif.so b/system/lib/libheif.so new file mode 100644 index 0000000000000000000000000000000000000000..820b6afbf4e888b948ca1ba5b1b4032bada1d29c Binary files /dev/null and b/system/lib/libheif.so differ diff --git a/system/lib/libhidcommand_jni.so b/system/lib/libhidcommand_jni.so new file mode 100644 index 0000000000000000000000000000000000000000..edc6a35041433676ed5e2e0e67ff285a794c988d Binary files /dev/null and b/system/lib/libhidcommand_jni.so differ diff --git a/system/lib/libhidl-gen-utils.so b/system/lib/libhidl-gen-utils.so new file mode 100644 index 0000000000000000000000000000000000000000..43766136c9b3bd8e629bc9558e6c5f5343384c5b Binary files /dev/null and b/system/lib/libhidl-gen-utils.so differ diff --git a/system/lib/libhidlbase.so b/system/lib/libhidlbase.so new file mode 100644 index 0000000000000000000000000000000000000000..fbbbf3cf90f27d0ae23c6c273e57ea86e983bcce Binary files /dev/null and b/system/lib/libhidlbase.so differ diff --git a/system/lib/libhidlmemory.so b/system/lib/libhidlmemory.so new file mode 100644 index 0000000000000000000000000000000000000000..1b97b4788d5c2df1a555909dd9d1940b42b47f17 Binary files /dev/null and b/system/lib/libhidlmemory.so differ diff --git a/system/lib/libhidltransport.so b/system/lib/libhidltransport.so new file mode 100644 index 0000000000000000000000000000000000000000..be8afffaa3e35877a863c1fc69d51a8484706386 Binary files /dev/null and b/system/lib/libhidltransport.so differ diff --git a/system/lib/libhwbinder.so b/system/lib/libhwbinder.so new file mode 100644 index 0000000000000000000000000000000000000000..33d6c67b96d1f6dbc86d6065523b795317ec8565 Binary files /dev/null and b/system/lib/libhwbinder.so differ diff --git a/system/lib/libhwm_mtk.so b/system/lib/libhwm_mtk.so new file mode 100644 index 0000000000000000000000000000000000000000..feace4b21faa67a03b4c677950a65c0841fe3a3d Binary files /dev/null and b/system/lib/libhwm_mtk.so differ diff --git a/system/lib/libhwui.so b/system/lib/libhwui.so new file mode 100644 index 0000000000000000000000000000000000000000..9b90251121d8a81a199e85f1cdc586f09e2c0c9d Binary files /dev/null and b/system/lib/libhwui.so differ diff --git a/system/lib/libicui18n.so b/system/lib/libicui18n.so new file mode 100644 index 0000000000000000000000000000000000000000..6063f4e33394324e26fb3ec97a539a376ab139a1 Binary files /dev/null and b/system/lib/libicui18n.so differ diff --git a/system/lib/libicuuc.so b/system/lib/libicuuc.so new file mode 100644 index 0000000000000000000000000000000000000000..1d9ca9f23c17f690b575553c743cba76171ebb73 Binary files /dev/null and b/system/lib/libicuuc.so differ diff --git a/system/lib/libimg_utils.so b/system/lib/libimg_utils.so new file mode 100644 index 0000000000000000000000000000000000000000..09acd054ed09ab43ef355ad568a5877c9c873f9b Binary files /dev/null and b/system/lib/libimg_utils.so differ diff --git a/system/lib/libimsma.so b/system/lib/libimsma.so new file mode 100644 index 0000000000000000000000000000000000000000..db63468fa52f15c2928357dba632853dc26f5a2f Binary files /dev/null and b/system/lib/libimsma.so differ diff --git a/system/lib/libimsma_adapt.so b/system/lib/libimsma_adapt.so new file mode 100644 index 0000000000000000000000000000000000000000..0c97350c700e3ba0154bb7537a644e3acebc7a95 Binary files /dev/null and b/system/lib/libimsma_adapt.so differ diff --git a/system/lib/libimsma_rtp.so b/system/lib/libimsma_rtp.so new file mode 100644 index 0000000000000000000000000000000000000000..cf9c1cfc69727ade5f55e89757651cac984a6efe Binary files /dev/null and b/system/lib/libimsma_rtp.so differ diff --git a/system/lib/libimsma_socketwrapper.so b/system/lib/libimsma_socketwrapper.so new file mode 100644 index 0000000000000000000000000000000000000000..ce69aae856965eab7c1f5b610954446398fc1672 Binary files /dev/null and b/system/lib/libimsma_socketwrapper.so differ diff --git a/system/lib/libincident.so b/system/lib/libincident.so new file mode 100644 index 0000000000000000000000000000000000000000..cfa99ef2d311b390074c87103d5be2c92d7f638f Binary files /dev/null and b/system/lib/libincident.so differ diff --git a/system/lib/libinput.so b/system/lib/libinput.so new file mode 100644 index 0000000000000000000000000000000000000000..279a5406f85ed93cb568fa0e6e8bfdb5ab5bcaba Binary files /dev/null and b/system/lib/libinput.so differ diff --git a/system/lib/libinputflinger.so b/system/lib/libinputflinger.so new file mode 100644 index 0000000000000000000000000000000000000000..4193f0e6bbad17c8b356efb98428dc601e07ff44 Binary files /dev/null and b/system/lib/libinputflinger.so differ diff --git a/system/lib/libinputservice.so b/system/lib/libinputservice.so new file mode 100644 index 0000000000000000000000000000000000000000..85f37890778b0ec524d2c4e69973c8bfcf9a2049 Binary files /dev/null and b/system/lib/libinputservice.so differ diff --git a/system/lib/libion.so b/system/lib/libion.so new file mode 100644 index 0000000000000000000000000000000000000000..a3b8bd7369fd7dcbe26681f6bbfd8ec9321ab7aa Binary files /dev/null and b/system/lib/libion.so differ diff --git a/system/lib/libion_mtk_sys.so b/system/lib/libion_mtk_sys.so new file mode 100644 index 0000000000000000000000000000000000000000..e6c06ab407b7f38a6408b640d56ca66b3ab8fb42 Binary files /dev/null and b/system/lib/libion_mtk_sys.so differ diff --git a/system/lib/libion_ulit_sys.so b/system/lib/libion_ulit_sys.so new file mode 100644 index 0000000000000000000000000000000000000000..9b047f5aa691a431c71d5d5937eea9407be4fe90 Binary files /dev/null and b/system/lib/libion_ulit_sys.so differ diff --git a/system/lib/libiprouteutil.so b/system/lib/libiprouteutil.so new file mode 100644 index 0000000000000000000000000000000000000000..13b80d6357483626263c8497957be9f4506a031c Binary files /dev/null and b/system/lib/libiprouteutil.so differ diff --git a/system/lib/libja3m.so b/system/lib/libja3m.so new file mode 100644 index 0000000000000000000000000000000000000000..44c2d429ee7ed9b78c3cba18091b39c9a873d398 Binary files /dev/null and b/system/lib/libja3m.so differ diff --git a/system/lib/libjavacore.so b/system/lib/libjavacore.so new file mode 100644 index 0000000000000000000000000000000000000000..17dc4dad9ab304c9c09d005340dc8db973cb40a7 Binary files /dev/null and b/system/lib/libjavacore.so differ diff --git a/system/lib/libjavacrypto.so b/system/lib/libjavacrypto.so new file mode 100644 index 0000000000000000000000000000000000000000..0d9e13e94d70f6f9fcca1087657f28c1930fc3b5 Binary files /dev/null and b/system/lib/libjavacrypto.so differ diff --git a/system/lib/libjni_eglfence_mtk.so b/system/lib/libjni_eglfence_mtk.so new file mode 100644 index 0000000000000000000000000000000000000000..78743ec7761ab6daeea9919a304b3943ee7f15ac Binary files /dev/null and b/system/lib/libjni_eglfence_mtk.so differ diff --git a/system/lib/libjni_filtershow_filters_mtk.so b/system/lib/libjni_filtershow_filters_mtk.so new file mode 100644 index 0000000000000000000000000000000000000000..d7ab51e9ac5ed2510d233f6b6c1b46722330da6e Binary files /dev/null and b/system/lib/libjni_filtershow_filters_mtk.so differ diff --git a/system/lib/libjni_jpegstream_mtk.so b/system/lib/libjni_jpegstream_mtk.so new file mode 100644 index 0000000000000000000000000000000000000000..0fec51863a7d8a0a9547beae2142016ae3db8e82 Binary files /dev/null and b/system/lib/libjni_jpegstream_mtk.so differ diff --git a/system/lib/libjni_lomoeffect.so b/system/lib/libjni_lomoeffect.so new file mode 100644 index 0000000000000000000000000000000000000000..90f0a4647ba84927e38115d740d55f73245eb022 Binary files /dev/null and b/system/lib/libjni_lomoeffect.so differ diff --git a/system/lib/libjni_pacprocessor.so b/system/lib/libjni_pacprocessor.so new file mode 100644 index 0000000000000000000000000000000000000000..294b8904f3ce09bb1361ca664e2247e2783a1dc0 Binary files /dev/null and b/system/lib/libjni_pacprocessor.so differ diff --git a/system/lib/libjni_pq.so b/system/lib/libjni_pq.so new file mode 100644 index 0000000000000000000000000000000000000000..f56da248f2e5410537fac1840293a08c160501f3 Binary files /dev/null and b/system/lib/libjni_pq.so differ diff --git a/system/lib/libjni_stereoinfoaccessor.so b/system/lib/libjni_stereoinfoaccessor.so new file mode 100644 index 0000000000000000000000000000000000000000..e60f59f22fea80d96c7cdac813e10fb56ba95f85 Binary files /dev/null and b/system/lib/libjni_stereoinfoaccessor.so differ diff --git a/system/lib/libjnigraphics.so b/system/lib/libjnigraphics.so new file mode 100644 index 0000000000000000000000000000000000000000..6ea58f281ed74aa36f8a4a37770e54b966394069 Binary files /dev/null and b/system/lib/libjnigraphics.so differ diff --git a/system/lib/libjpeg.so b/system/lib/libjpeg.so new file mode 100644 index 0000000000000000000000000000000000000000..9d53a3d84877a02c5a5d82968246fe2c184158a6 Binary files /dev/null and b/system/lib/libjpeg.so differ diff --git a/system/lib/libkeymaster_messages.so b/system/lib/libkeymaster_messages.so new file mode 100644 index 0000000000000000000000000000000000000000..b741092694188b6ea4b2ddeefae5cee17c0deada Binary files /dev/null and b/system/lib/libkeymaster_messages.so differ diff --git a/system/lib/libkeymaster_portable.so b/system/lib/libkeymaster_portable.so new file mode 100644 index 0000000000000000000000000000000000000000..2be83d43cf7e3773f434a4254cb3142a043bd108 Binary files /dev/null and b/system/lib/libkeymaster_portable.so differ diff --git a/system/lib/libkeymaster_staging.so b/system/lib/libkeymaster_staging.so new file mode 100644 index 0000000000000000000000000000000000000000..1d293f3be177cdf61d8a2da4bb14f90c58e3c326 Binary files /dev/null and b/system/lib/libkeymaster_staging.so differ diff --git a/system/lib/libkeystore-engine.so b/system/lib/libkeystore-engine.so new file mode 100644 index 0000000000000000000000000000000000000000..51f860fc3e9bdaedcee59665e1d1f5f6eb220df4 Binary files /dev/null and b/system/lib/libkeystore-engine.so differ diff --git a/system/lib/libkeystore_binder.so b/system/lib/libkeystore_binder.so new file mode 100644 index 0000000000000000000000000000000000000000..af67cec58ad6da67f49ec8b14ea8419a6bc95e23 Binary files /dev/null and b/system/lib/libkeystore_binder.so differ diff --git a/system/lib/libkeyutils.so b/system/lib/libkeyutils.so new file mode 100644 index 0000000000000000000000000000000000000000..94bbec85fc54ec83da56ed4a4c3cba8e057e8045 Binary files /dev/null and b/system/lib/libkeyutils.so differ diff --git a/system/lib/libkmsetkey.so b/system/lib/libkmsetkey.so new file mode 100644 index 0000000000000000000000000000000000000000..8937b714b9b7246a931e75d0bccd289e5b3e26b5 Binary files /dev/null and b/system/lib/libkmsetkey.so differ diff --git a/system/lib/libldacBT_abr.so b/system/lib/libldacBT_abr.so new file mode 100644 index 0000000000000000000000000000000000000000..e4746831f3439c1258f0831a48718d564adbea82 Binary files /dev/null and b/system/lib/libldacBT_abr.so differ diff --git a/system/lib/libldacBT_enc.so b/system/lib/libldacBT_enc.so new file mode 100644 index 0000000000000000000000000000000000000000..96831f1b564aa90b56dcb7453f587d6b323c17ac Binary files /dev/null and b/system/lib/libldacBT_enc.so differ diff --git a/system/lib/liblocSDK6c.so b/system/lib/liblocSDK6c.so new file mode 100644 index 0000000000000000000000000000000000000000..814f5f1f9dcca189a599794f4708828d8f74b87e Binary files /dev/null and b/system/lib/liblocSDK6c.so differ diff --git a/system/lib/liblog.so b/system/lib/liblog.so new file mode 100644 index 0000000000000000000000000000000000000000..6f4f59e37872a8fc54188ea1f50a5aec2e1516c7 Binary files /dev/null and b/system/lib/liblog.so differ diff --git a/system/lib/liblogcat.so b/system/lib/liblogcat.so new file mode 100644 index 0000000000000000000000000000000000000000..53d954aa54151dacb6b4aeaa4516a4bf7a194b8f Binary files /dev/null and b/system/lib/liblogcat.so differ diff --git a/system/lib/liblogwrap.so b/system/lib/liblogwrap.so new file mode 100644 index 0000000000000000000000000000000000000000..c7461f967a917ffb8e2cd1cc409ef4c1f0ecd3b3 Binary files /dev/null and b/system/lib/liblogwrap.so differ diff --git a/system/lib/liblshal.so b/system/lib/liblshal.so new file mode 100644 index 0000000000000000000000000000000000000000..56ef806e880fc3c1f76c238d99a0fe4164361cb8 Binary files /dev/null and b/system/lib/liblshal.so differ diff --git a/system/lib/liblz4.so b/system/lib/liblz4.so new file mode 100644 index 0000000000000000000000000000000000000000..33b407599a18c951c839a71c5103b95a7e25108f Binary files /dev/null and b/system/lib/liblz4.so differ diff --git a/system/lib/liblzma.so b/system/lib/liblzma.so new file mode 100644 index 0000000000000000000000000000000000000000..1f6da5c41c62a3670f8e6f7da00c25ea6b56eb72 Binary files /dev/null and b/system/lib/liblzma.so differ diff --git a/system/lib/libm.so b/system/lib/libm.so new file mode 100644 index 0000000000000000000000000000000000000000..cf4e6f3612a63403e7220897bb7a908cf59141c3 Binary files /dev/null and b/system/lib/libm.so differ diff --git a/system/lib/libmdloggerrecycle.so b/system/lib/libmdloggerrecycle.so new file mode 100644 index 0000000000000000000000000000000000000000..a27f78f4c8c2bbc710b308e2deab5725ba17424b Binary files /dev/null and b/system/lib/libmdloggerrecycle.so differ diff --git a/system/lib/libmdnssd.so b/system/lib/libmdnssd.so new file mode 100644 index 0000000000000000000000000000000000000000..01543dd847e7936876d52d5f9377f00260b2cc22 Binary files /dev/null and b/system/lib/libmdnssd.so differ diff --git a/system/lib/libmedia.so b/system/lib/libmedia.so new file mode 100644 index 0000000000000000000000000000000000000000..9640145f9f859e2e358338c0c686ead7e4bb5d55 Binary files /dev/null and b/system/lib/libmedia.so differ diff --git a/system/lib/libmedia_helper.so b/system/lib/libmedia_helper.so new file mode 100644 index 0000000000000000000000000000000000000000..b22ebfa5895eb228ccb24f3059d06b8a6781121a Binary files /dev/null and b/system/lib/libmedia_helper.so differ diff --git a/system/lib/libmedia_jni.so b/system/lib/libmedia_jni.so new file mode 100644 index 0000000000000000000000000000000000000000..c14a169c43f2ad39e0f68306ecfeca3556330f7c Binary files /dev/null and b/system/lib/libmedia_jni.so differ diff --git a/system/lib/libmedia_omx.so b/system/lib/libmedia_omx.so new file mode 100644 index 0000000000000000000000000000000000000000..bfa474c925bbd11197df8da86aa45074609b6ecc Binary files /dev/null and b/system/lib/libmedia_omx.so differ diff --git a/system/lib/libmediadrm.so b/system/lib/libmediadrm.so new file mode 100644 index 0000000000000000000000000000000000000000..02255cb675004bd7790c800053b5934847da5124 Binary files /dev/null and b/system/lib/libmediadrm.so differ diff --git a/system/lib/libmediaextractorservice.so b/system/lib/libmediaextractorservice.so new file mode 100644 index 0000000000000000000000000000000000000000..512f55f12de5388649135ede48df633e98e45408 Binary files /dev/null and b/system/lib/libmediaextractorservice.so differ diff --git a/system/lib/libmedialogservice.so b/system/lib/libmedialogservice.so new file mode 100644 index 0000000000000000000000000000000000000000..f3e01dd76a7890964a54e8206cf31a096101599b Binary files /dev/null and b/system/lib/libmedialogservice.so differ diff --git a/system/lib/libmediametrics.so b/system/lib/libmediametrics.so new file mode 100644 index 0000000000000000000000000000000000000000..77df11acb028acec8c064345ee654c7b67c1a0ed Binary files /dev/null and b/system/lib/libmediametrics.so differ diff --git a/system/lib/libmediandk.so b/system/lib/libmediandk.so new file mode 100644 index 0000000000000000000000000000000000000000..20aeb4143c49201f38787d75d81c7ca6b1114ce9 Binary files /dev/null and b/system/lib/libmediandk.so differ diff --git a/system/lib/libmediaplayerservice.so b/system/lib/libmediaplayerservice.so new file mode 100644 index 0000000000000000000000000000000000000000..f3aaabfb81da10acf1b8b17e9cab98d915754c25 Binary files /dev/null and b/system/lib/libmediaplayerservice.so differ diff --git a/system/lib/libmediatek_exceptionlog.so b/system/lib/libmediatek_exceptionlog.so new file mode 100644 index 0000000000000000000000000000000000000000..e723d96d3e3eeea029efa127712d06b51a018763 Binary files /dev/null and b/system/lib/libmediatek_exceptionlog.so differ diff --git a/system/lib/libmediautils.so b/system/lib/libmediautils.so new file mode 100644 index 0000000000000000000000000000000000000000..972737b0f325c55953daa28f15f03d3c0d7c5425 Binary files /dev/null and b/system/lib/libmediautils.so differ diff --git a/system/lib/libmemoryDumpEncoder.so b/system/lib/libmemoryDumpEncoder.so new file mode 100644 index 0000000000000000000000000000000000000000..3b3048c71384cec320783924c1e47345d4ddbc57 Binary files /dev/null and b/system/lib/libmemoryDumpEncoder.so differ diff --git a/system/lib/libmemtrack.so b/system/lib/libmemtrack.so new file mode 100644 index 0000000000000000000000000000000000000000..fb3064c9624c59e4d76bab7cf867371208ffd221 Binary files /dev/null and b/system/lib/libmemtrack.so differ diff --git a/system/lib/libmemunreachable.so b/system/lib/libmemunreachable.so new file mode 100644 index 0000000000000000000000000000000000000000..87ea18be41b8957fe4fb55c25145d7474389e146 Binary files /dev/null and b/system/lib/libmemunreachable.so differ diff --git a/system/lib/libmet-tag.so b/system/lib/libmet-tag.so new file mode 100644 index 0000000000000000000000000000000000000000..a3325dd4abc0bb5fc48f8337318cf207c0a2b9bb Binary files /dev/null and b/system/lib/libmet-tag.so differ diff --git a/system/lib/libmetricslogger.so b/system/lib/libmetricslogger.so new file mode 100644 index 0000000000000000000000000000000000000000..13904dc2a5adc6aad1783045809b0060ab6200c4 Binary files /dev/null and b/system/lib/libmetricslogger.so differ diff --git a/system/lib/libmidi.so b/system/lib/libmidi.so new file mode 100644 index 0000000000000000000000000000000000000000..75dfb815c5c3981b725426cdf0910a7ccb10bef7 Binary files /dev/null and b/system/lib/libmidi.so differ diff --git a/system/lib/libminijail.so b/system/lib/libminijail.so new file mode 100644 index 0000000000000000000000000000000000000000..5822ff04bd5b6273ed6659c35c9c8e73fdd224c3 Binary files /dev/null and b/system/lib/libminijail.so differ diff --git a/system/lib/libminikin.so b/system/lib/libminikin.so new file mode 100644 index 0000000000000000000000000000000000000000..34a60e213c32472170391c39602f33c124c03418 Binary files /dev/null and b/system/lib/libminikin.so differ diff --git a/system/lib/libminiui.so b/system/lib/libminiui.so new file mode 100644 index 0000000000000000000000000000000000000000..0f56f8e742055e9d4761d20639dc9a86f5fb4620 Binary files /dev/null and b/system/lib/libminiui.so differ diff --git a/system/lib/libmrdump.so b/system/lib/libmrdump.so new file mode 100644 index 0000000000000000000000000000000000000000..8bf4833ed66082184ce7113c7229ea87e20ed48b Binary files /dev/null and b/system/lib/libmrdump.so differ diff --git a/system/lib/libmtk_drvb_sys.so b/system/lib/libmtk_drvb_sys.so new file mode 100644 index 0000000000000000000000000000000000000000..c13fd17e1ec1740bb7d06833a66819c1c90581e0 Binary files /dev/null and b/system/lib/libmtk_drvb_sys.so differ diff --git a/system/lib/libmtk_vt_service.so b/system/lib/libmtk_vt_service.so new file mode 100644 index 0000000000000000000000000000000000000000..549af0e29c365f5b63a8a881fd9a42ca976e1e45 Binary files /dev/null and b/system/lib/libmtk_vt_service.so differ diff --git a/system/lib/libmtk_vt_wrapper.so b/system/lib/libmtk_vt_wrapper.so new file mode 100644 index 0000000000000000000000000000000000000000..d96e6dd26ed5b57ab25767a14884e4c405a94539 Binary files /dev/null and b/system/lib/libmtk_vt_wrapper.so differ diff --git a/system/lib/libmtkavenhancements.so b/system/lib/libmtkavenhancements.so new file mode 100644 index 0000000000000000000000000000000000000000..0d83ca7cad29b729d816360a2f8fe9f3672e8593 Binary files /dev/null and b/system/lib/libmtkavenhancements.so differ diff --git a/system/lib/libmtkbluetooth_jni.so b/system/lib/libmtkbluetooth_jni.so new file mode 100644 index 0000000000000000000000000000000000000000..642acb5c80481d6312a43e34218e2caf82326721 Binary files /dev/null and b/system/lib/libmtkbluetooth_jni.so differ diff --git a/system/lib/libmtkbootanimation.so b/system/lib/libmtkbootanimation.so new file mode 100644 index 0000000000000000000000000000000000000000..bac998dd712351ad17773170bbc71a2bd829a674 Binary files /dev/null and b/system/lib/libmtkbootanimation.so differ diff --git a/system/lib/libmtklimiter.so b/system/lib/libmtklimiter.so new file mode 100644 index 0000000000000000000000000000000000000000..2500aea8d5972a5031e0ae4f3ffcdc242cac6106 Binary files /dev/null and b/system/lib/libmtklimiter.so differ diff --git a/system/lib/libmtkshifter.so b/system/lib/libmtkshifter.so new file mode 100644 index 0000000000000000000000000000000000000000..0a5a4993262f72209313fb152a1d2544e91fa4c7 Binary files /dev/null and b/system/lib/libmtkshifter.so differ diff --git a/system/lib/libmtp.so b/system/lib/libmtp.so new file mode 100644 index 0000000000000000000000000000000000000000..b048a3aa495996e3f92d28a017a828f825697d44 Binary files /dev/null and b/system/lib/libmtp.so differ diff --git a/system/lib/libnativebridge.so b/system/lib/libnativebridge.so new file mode 100644 index 0000000000000000000000000000000000000000..682f3f7ed21e37bf7f8bd029a911e5fbac136a62 Binary files /dev/null and b/system/lib/libnativebridge.so differ diff --git a/system/lib/libnativehelper.so b/system/lib/libnativehelper.so new file mode 100644 index 0000000000000000000000000000000000000000..f63b291d61189f5339066596962f6197f1fe76a1 Binary files /dev/null and b/system/lib/libnativehelper.so differ diff --git a/system/lib/libnativeloader.so b/system/lib/libnativeloader.so new file mode 100644 index 0000000000000000000000000000000000000000..fb21e72d65d48cea96e87cf3418c86e1bc586025 Binary files /dev/null and b/system/lib/libnativeloader.so differ diff --git a/system/lib/libnativewindow.so b/system/lib/libnativewindow.so new file mode 100644 index 0000000000000000000000000000000000000000..6306aea3bc195f4ece0e71a9fe4ff565a84c6338 Binary files /dev/null and b/system/lib/libnativewindow.so differ diff --git a/system/lib/libnbaio.so b/system/lib/libnbaio.so new file mode 100644 index 0000000000000000000000000000000000000000..f87b4ad25e9d60f711cee51545beea62c9136995 Binary files /dev/null and b/system/lib/libnbaio.so differ diff --git a/system/lib/libnetd_client.so b/system/lib/libnetd_client.so new file mode 100644 index 0000000000000000000000000000000000000000..4e4b6ed638e8eff71b35983b8792fc864158e86c Binary files /dev/null and b/system/lib/libnetd_client.so differ diff --git a/system/lib/libnetdaidl.so b/system/lib/libnetdaidl.so new file mode 100644 index 0000000000000000000000000000000000000000..b76c9718e2eb82abead9f12d6cf7e2cf14e4e799 Binary files /dev/null and b/system/lib/libnetdaidl.so differ diff --git a/system/lib/libnetdutils.so b/system/lib/libnetdutils.so new file mode 100644 index 0000000000000000000000000000000000000000..7e46e6de1462ff6f6bd6eacb36b28680f4449727 Binary files /dev/null and b/system/lib/libnetdutils.so differ diff --git a/system/lib/libnetlink.so b/system/lib/libnetlink.so new file mode 100644 index 0000000000000000000000000000000000000000..c74f81e3711908f55b50ef3974febbae575587a5 Binary files /dev/null and b/system/lib/libnetlink.so differ diff --git a/system/lib/libnetutils.so b/system/lib/libnetutils.so new file mode 100644 index 0000000000000000000000000000000000000000..be767f4e52d31eba76b019c9cb75d8fa063d1dff Binary files /dev/null and b/system/lib/libnetutils.so differ diff --git a/system/lib/libnetworklocation.so b/system/lib/libnetworklocation.so new file mode 100644 index 0000000000000000000000000000000000000000..88dbe4eb2f4a205a317a46ddd71b07f09f1e86c9 Binary files /dev/null and b/system/lib/libnetworklocation.so differ diff --git a/system/lib/libneuralnetworks.so b/system/lib/libneuralnetworks.so new file mode 100644 index 0000000000000000000000000000000000000000..0c9f2ee0123bfaa64dce58d853835578cc2d4ae2 Binary files /dev/null and b/system/lib/libneuralnetworks.so differ diff --git a/system/lib/libnl.so b/system/lib/libnl.so new file mode 100644 index 0000000000000000000000000000000000000000..1c63a2becc865ae6f6db92e59a4c598b02ae1102 Binary files /dev/null and b/system/lib/libnl.so differ diff --git a/system/lib/libnvram_mtk.so b/system/lib/libnvram_mtk.so new file mode 100644 index 0000000000000000000000000000000000000000..8d2606bc555d5a7286c8368d9eaf803cc7caa654 Binary files /dev/null and b/system/lib/libnvram_mtk.so differ diff --git a/system/lib/libnvram_platform_mtk.so b/system/lib/libnvram_platform_mtk.so new file mode 100644 index 0000000000000000000000000000000000000000..3f1391324768cf387f9704b73b5818dd7f6287ae Binary files /dev/null and b/system/lib/libnvram_platform_mtk.so differ diff --git a/system/lib/libnvram_sec_mtk.so b/system/lib/libnvram_sec_mtk.so new file mode 100644 index 0000000000000000000000000000000000000000..b14c233bf8a4e8f8950351b75e7e77cfea11394b Binary files /dev/null and b/system/lib/libnvram_sec_mtk.so differ diff --git a/system/lib/libopenjdk.so b/system/lib/libopenjdk.so new file mode 100644 index 0000000000000000000000000000000000000000..9ac3d070527bec7b129b5d3ed6828146a1b335e0 Binary files /dev/null and b/system/lib/libopenjdk.so differ diff --git a/system/lib/libopenjdkjvm.so b/system/lib/libopenjdkjvm.so new file mode 100644 index 0000000000000000000000000000000000000000..599711601c768bd01daf1ed7b9d5853abe8b24e8 Binary files /dev/null and b/system/lib/libopenjdkjvm.so differ diff --git a/system/lib/libopenjdkjvmti.so b/system/lib/libopenjdkjvmti.so new file mode 100644 index 0000000000000000000000000000000000000000..4bf88565d4176b5bd0c3b2f92d7de6b5869673e5 Binary files /dev/null and b/system/lib/libopenjdkjvmti.so differ diff --git a/system/lib/libopus.so b/system/lib/libopus.so new file mode 100644 index 0000000000000000000000000000000000000000..d4ae355f334a489343ff01de121c1a9b5a3b40cc Binary files /dev/null and b/system/lib/libopus.so differ diff --git a/system/lib/libpac.so b/system/lib/libpac.so new file mode 100644 index 0000000000000000000000000000000000000000..bef716378cfda568def4d7954a6ab6e9ffbb5542 Binary files /dev/null and b/system/lib/libpac.so differ diff --git a/system/lib/libpackagelistparser.so b/system/lib/libpackagelistparser.so new file mode 100644 index 0000000000000000000000000000000000000000..4de1081531eeac59f580f5e2a3643102855bb87d Binary files /dev/null and b/system/lib/libpackagelistparser.so differ diff --git a/system/lib/libpagemap.so b/system/lib/libpagemap.so new file mode 100644 index 0000000000000000000000000000000000000000..9c337cfdffa69f3a28aa2a20c9703e3c34cd8704 Binary files /dev/null and b/system/lib/libpagemap.so differ diff --git a/system/lib/libpcap.so b/system/lib/libpcap.so new file mode 100644 index 0000000000000000000000000000000000000000..5c3413b7747dec3ec88035404496333671654aa8 Binary files /dev/null and b/system/lib/libpcap.so differ diff --git a/system/lib/libpcre2.so b/system/lib/libpcre2.so new file mode 100644 index 0000000000000000000000000000000000000000..c57951c2de67e7c4a7e8a8a406b53bdbcc37f03b Binary files /dev/null and b/system/lib/libpcre2.so differ diff --git a/system/lib/libpcrecpp.so b/system/lib/libpcrecpp.so new file mode 100644 index 0000000000000000000000000000000000000000..a3a76cac24aedb60389629dd2725aadf87b2f9e8 Binary files /dev/null and b/system/lib/libpcrecpp.so differ diff --git a/system/lib/libpdfium.so b/system/lib/libpdfium.so new file mode 100644 index 0000000000000000000000000000000000000000..badc5871d69eb121a43a12c019b33f24809abfe2 Binary files /dev/null and b/system/lib/libpdfium.so differ diff --git a/system/lib/libperfctl.so b/system/lib/libperfctl.so new file mode 100644 index 0000000000000000000000000000000000000000..7c231fb40a2715ec353bbd825b6b1a6b08ef778a Binary files /dev/null and b/system/lib/libperfctl.so differ diff --git a/system/lib/libperfframeinfo_jni.so b/system/lib/libperfframeinfo_jni.so new file mode 100644 index 0000000000000000000000000000000000000000..c3846f9c3c6a5aa69ac6f1d7c493abf444baced3 Binary files /dev/null and b/system/lib/libperfframeinfo_jni.so differ diff --git a/system/lib/libpiex.so b/system/lib/libpiex.so new file mode 100644 index 0000000000000000000000000000000000000000..a87a5b378bf3d2c656ec9b475f666e2b7f6c1245 Binary files /dev/null and b/system/lib/libpiex.so differ diff --git a/system/lib/libpixelflinger.so b/system/lib/libpixelflinger.so new file mode 100644 index 0000000000000000000000000000000000000000..799e0e9bf6c79b3aca4c0a0ec4ee9a1eaaf4e115 Binary files /dev/null and b/system/lib/libpixelflinger.so differ diff --git a/system/lib/libpng.so b/system/lib/libpng.so new file mode 100644 index 0000000000000000000000000000000000000000..0e086928a398c12aea6fd61f9481f37d0174a472 Binary files /dev/null and b/system/lib/libpng.so differ diff --git a/system/lib/libpower.so b/system/lib/libpower.so new file mode 100644 index 0000000000000000000000000000000000000000..e23702bf93724fa46ea3a53535aeb0940eb408a5 Binary files /dev/null and b/system/lib/libpower.so differ diff --git a/system/lib/libpowermanager.so b/system/lib/libpowermanager.so new file mode 100644 index 0000000000000000000000000000000000000000..782674596495992890f8647b674f754c64c69ec3 Binary files /dev/null and b/system/lib/libpowermanager.so differ diff --git a/system/lib/libpq_prot_mtk.so b/system/lib/libpq_prot_mtk.so new file mode 100644 index 0000000000000000000000000000000000000000..5285241e1af1f55df265a7637379040ebe665b39 Binary files /dev/null and b/system/lib/libpq_prot_mtk.so differ diff --git a/system/lib/libprintspooler_jni.so b/system/lib/libprintspooler_jni.so new file mode 100644 index 0000000000000000000000000000000000000000..33457570853134b56c1c26f8ce3d370bb28a4c99 Binary files /dev/null and b/system/lib/libprintspooler_jni.so differ diff --git a/system/lib/libprocessgroup.so b/system/lib/libprocessgroup.so new file mode 100644 index 0000000000000000000000000000000000000000..8ec4e406d993758d58bebe89b1a1d54f244e45b3 Binary files /dev/null and b/system/lib/libprocessgroup.so differ diff --git a/system/lib/libprocinfo.so b/system/lib/libprocinfo.so new file mode 100644 index 0000000000000000000000000000000000000000..2eb2d749d1a625bca3840dcee4cece4fc418666f Binary files /dev/null and b/system/lib/libprocinfo.so differ diff --git a/system/lib/libprogrambinary.so b/system/lib/libprogrambinary.so new file mode 100644 index 0000000000000000000000000000000000000000..8b8881b2e74ebbca9d1e5541c1856451524d27f8 Binary files /dev/null and b/system/lib/libprogrambinary.so differ diff --git a/system/lib/libprotobuf-cpp-full.so b/system/lib/libprotobuf-cpp-full.so new file mode 100644 index 0000000000000000000000000000000000000000..1ab4fc1787aeb19e93e75430f872dde3c8afe7ec Binary files /dev/null and b/system/lib/libprotobuf-cpp-full.so differ diff --git a/system/lib/libprotobuf-cpp-lite.so b/system/lib/libprotobuf-cpp-lite.so new file mode 100644 index 0000000000000000000000000000000000000000..f0e3d4bebb1cb3983aa252460082ef15900d898e Binary files /dev/null and b/system/lib/libprotobuf-cpp-lite.so differ diff --git a/system/lib/libradio_metadata.so b/system/lib/libradio_metadata.so new file mode 100644 index 0000000000000000000000000000000000000000..7846850b16347e25fdf0504fa4aa62210c3e030c Binary files /dev/null and b/system/lib/libradio_metadata.so differ diff --git a/system/lib/libresourcemanagerservice.so b/system/lib/libresourcemanagerservice.so new file mode 100644 index 0000000000000000000000000000000000000000..0ed69bb841abdf62bf0a40ec696393fe8ceef19e Binary files /dev/null and b/system/lib/libresourcemanagerservice.so differ diff --git a/system/lib/librs_jni.so b/system/lib/librs_jni.so new file mode 100644 index 0000000000000000000000000000000000000000..7b86fc38a52a5c1f86c804f08bc9544513873d65 Binary files /dev/null and b/system/lib/librs_jni.so differ diff --git a/system/lib/librtp_jni.so b/system/lib/librtp_jni.so new file mode 100644 index 0000000000000000000000000000000000000000..157b0fd1f5b048ba17ead85a5ebedf823a764d71 Binary files /dev/null and b/system/lib/librtp_jni.so differ diff --git a/system/lib/libschedulerservicehidl.so b/system/lib/libschedulerservicehidl.so new file mode 100644 index 0000000000000000000000000000000000000000..f6dea1d13a078a2417179e97b87e32295bafa6f6 Binary files /dev/null and b/system/lib/libschedulerservicehidl.so differ diff --git a/system/lib/libselinux.so b/system/lib/libselinux.so new file mode 100644 index 0000000000000000000000000000000000000000..1f4c5630f0aca7955eb90f9fc6a0c72e12b2319c Binary files /dev/null and b/system/lib/libselinux.so differ diff --git a/system/lib/libsensor.so b/system/lib/libsensor.so new file mode 100644 index 0000000000000000000000000000000000000000..a12a49216ca1a8d0f2d769d0b37fa5609e1b7834 Binary files /dev/null and b/system/lib/libsensor.so differ diff --git a/system/lib/libsensorservice.so b/system/lib/libsensorservice.so new file mode 100644 index 0000000000000000000000000000000000000000..eb985560a8184afe76bfdada0b4e90579fe327e4 Binary files /dev/null and b/system/lib/libsensorservice.so differ diff --git a/system/lib/libsensorservicehidl.so b/system/lib/libsensorservicehidl.so new file mode 100644 index 0000000000000000000000000000000000000000..8d2e2d946182d0e23b91e30735a2d82ea2918c1d Binary files /dev/null and b/system/lib/libsensorservicehidl.so differ diff --git a/system/lib/libsepol.so b/system/lib/libsepol.so new file mode 100644 index 0000000000000000000000000000000000000000..290de591e2333ee679ce8c24ec515aafe349e69f Binary files /dev/null and b/system/lib/libsepol.so differ diff --git a/system/lib/libservices.so b/system/lib/libservices.so new file mode 100644 index 0000000000000000000000000000000000000000..f4a3f0fdf581a3163d9abee913a048eecc05826b Binary files /dev/null and b/system/lib/libservices.so differ diff --git a/system/lib/libserviceutility.so b/system/lib/libserviceutility.so new file mode 100644 index 0000000000000000000000000000000000000000..6f62d3a5140cdc166569dc3c9ea703eaf879342b Binary files /dev/null and b/system/lib/libserviceutility.so differ diff --git a/system/lib/libsf_debug.so b/system/lib/libsf_debug.so new file mode 100644 index 0000000000000000000000000000000000000000..c790f34e24ea8bb930bffa666b16bdb4a0c4a049 Binary files /dev/null and b/system/lib/libsf_debug.so differ diff --git a/system/lib/libshowlogo.so b/system/lib/libshowlogo.so new file mode 100644 index 0000000000000000000000000000000000000000..8c8c6990d4e0647f1f8e65c8266f0e49a9697925 Binary files /dev/null and b/system/lib/libshowlogo.so differ diff --git a/system/lib/libsigchain.so b/system/lib/libsigchain.so new file mode 100644 index 0000000000000000000000000000000000000000..46a5b4f803d958d6bbc58c682da22f22ad85f16e Binary files /dev/null and b/system/lib/libsigchain.so differ diff --git a/system/lib/libsignal.so b/system/lib/libsignal.so new file mode 100644 index 0000000000000000000000000000000000000000..c703ee95abcd5bc4694f053c6af7017d5e2e452a Binary files /dev/null and b/system/lib/libsignal.so differ diff --git a/system/lib/libsink.so b/system/lib/libsink.so new file mode 100644 index 0000000000000000000000000000000000000000..df867455cd1ad541ce12428d182e3e272e29824d Binary files /dev/null and b/system/lib/libsink.so differ diff --git a/system/lib/libskia.so b/system/lib/libskia.so new file mode 100644 index 0000000000000000000000000000000000000000..30f0acd79d2f80bc61a9c672da24edd6dacdf78f Binary files /dev/null and b/system/lib/libskia.so differ diff --git a/system/lib/libsoftkeymaster.so b/system/lib/libsoftkeymaster.so new file mode 100644 index 0000000000000000000000000000000000000000..8b1b26781ac36406f2cb20b1e32a4532c960f347 Binary files /dev/null and b/system/lib/libsoftkeymaster.so differ diff --git a/system/lib/libsoftkeymasterdevice.so b/system/lib/libsoftkeymasterdevice.so new file mode 100644 index 0000000000000000000000000000000000000000..365af02e14ffd976f697919c8b04afde620e520e Binary files /dev/null and b/system/lib/libsoftkeymasterdevice.so differ diff --git a/system/lib/libsonic.so b/system/lib/libsonic.so new file mode 100644 index 0000000000000000000000000000000000000000..185d65eb185d6d2be52172d90938208b86f6037f Binary files /dev/null and b/system/lib/libsonic.so differ diff --git a/system/lib/libsonivox.so b/system/lib/libsonivox.so new file mode 100644 index 0000000000000000000000000000000000000000..ae4c2975ff80d3994901de24e6d125ea7b18fcf0 Binary files /dev/null and b/system/lib/libsonivox.so differ diff --git a/system/lib/libsoundpool.so b/system/lib/libsoundpool.so new file mode 100644 index 0000000000000000000000000000000000000000..7b9dbbbaee2282089baeeb44ef8b24912f0b6d9c Binary files /dev/null and b/system/lib/libsoundpool.so differ diff --git a/system/lib/libsoundtrigger.so b/system/lib/libsoundtrigger.so new file mode 100644 index 0000000000000000000000000000000000000000..26c6d0421227423a04f86d17509717eaa85eb828 Binary files /dev/null and b/system/lib/libsoundtrigger.so differ diff --git a/system/lib/libsoundtriggerservice.so b/system/lib/libsoundtriggerservice.so new file mode 100644 index 0000000000000000000000000000000000000000..a9f459e53a9370879fb3e5ece9db20dd43599809 Binary files /dev/null and b/system/lib/libsoundtriggerservice.so differ diff --git a/system/lib/libsource.so b/system/lib/libsource.so new file mode 100644 index 0000000000000000000000000000000000000000..df143c5280461425755e315c918795ed490884e1 Binary files /dev/null and b/system/lib/libsource.so differ diff --git a/system/lib/libsparse.so b/system/lib/libsparse.so new file mode 100644 index 0000000000000000000000000000000000000000..33d8282e73e90a026aae930b91dcf167fd73cf1c Binary files /dev/null and b/system/lib/libsparse.so differ diff --git a/system/lib/libspeexresampler.so b/system/lib/libspeexresampler.so new file mode 100644 index 0000000000000000000000000000000000000000..b8381bc4c3ec971535f55067e2a9d91a56774a4a Binary files /dev/null and b/system/lib/libspeexresampler.so differ diff --git a/system/lib/libsqlite.so b/system/lib/libsqlite.so new file mode 100644 index 0000000000000000000000000000000000000000..b7d4c982e89f22ad076938877a1bff50428c1281 Binary files /dev/null and b/system/lib/libsqlite.so differ diff --git a/system/lib/libssl.so b/system/lib/libssl.so new file mode 100644 index 0000000000000000000000000000000000000000..8bfaeda5e10a3f52914ba8d3b335eff4ea0f4726 Binary files /dev/null and b/system/lib/libssl.so differ diff --git a/system/lib/libstagefright.so b/system/lib/libstagefright.so new file mode 100644 index 0000000000000000000000000000000000000000..320907ee59eb4ce7027c118e6cf7a5fb3c40fbe6 Binary files /dev/null and b/system/lib/libstagefright.so differ diff --git a/system/lib/libstagefright_amrnb_common.so b/system/lib/libstagefright_amrnb_common.so new file mode 100644 index 0000000000000000000000000000000000000000..80d6b16e789af6233916b2e0daf2fd23cd28cc78 Binary files /dev/null and b/system/lib/libstagefright_amrnb_common.so differ diff --git a/system/lib/libstagefright_enc_common.so b/system/lib/libstagefright_enc_common.so new file mode 100644 index 0000000000000000000000000000000000000000..93461a748392dc1b2d1a4a56389b45a0aa426c07 Binary files /dev/null and b/system/lib/libstagefright_enc_common.so differ diff --git a/system/lib/libstagefright_flacdec.so b/system/lib/libstagefright_flacdec.so new file mode 100644 index 0000000000000000000000000000000000000000..0b185fee020372394a94cb3ef5e477a387ac4f47 Binary files /dev/null and b/system/lib/libstagefright_flacdec.so differ diff --git a/system/lib/libstagefright_foundation.so b/system/lib/libstagefright_foundation.so new file mode 100644 index 0000000000000000000000000000000000000000..989cb4f4c380de03745c8d509752a4dddc42ea2d Binary files /dev/null and b/system/lib/libstagefright_foundation.so differ diff --git a/system/lib/libstagefright_http_support.so b/system/lib/libstagefright_http_support.so new file mode 100644 index 0000000000000000000000000000000000000000..340d6d4a7fb0c34ea37e7dbb993f8b6a7cd4d251 Binary files /dev/null and b/system/lib/libstagefright_http_support.so differ diff --git a/system/lib/libstagefright_httplive.so b/system/lib/libstagefright_httplive.so new file mode 100644 index 0000000000000000000000000000000000000000..0864cf6fa8ae188bd34b642da7686eb19a734396 Binary files /dev/null and b/system/lib/libstagefright_httplive.so differ diff --git a/system/lib/libstagefright_omx.so b/system/lib/libstagefright_omx.so new file mode 100644 index 0000000000000000000000000000000000000000..3e680a5885928d2d94c8de191f9bd8326eb28e06 Binary files /dev/null and b/system/lib/libstagefright_omx.so differ diff --git a/system/lib/libstagefright_omx_utils.so b/system/lib/libstagefright_omx_utils.so new file mode 100644 index 0000000000000000000000000000000000000000..7d6033c1eb3a521486b0cca905a45900d52a7543 Binary files /dev/null and b/system/lib/libstagefright_omx_utils.so differ diff --git a/system/lib/libstagefright_soft_aacdec.so b/system/lib/libstagefright_soft_aacdec.so new file mode 100644 index 0000000000000000000000000000000000000000..620702c0ef603b9777723ca817b495278d977009 Binary files /dev/null and b/system/lib/libstagefright_soft_aacdec.so differ diff --git a/system/lib/libstagefright_soft_aacenc.so b/system/lib/libstagefright_soft_aacenc.so new file mode 100644 index 0000000000000000000000000000000000000000..c663aa4fa7d98e3645396792ae7a513c11009d39 Binary files /dev/null and b/system/lib/libstagefright_soft_aacenc.so differ diff --git a/system/lib/libstagefright_soft_amrdec.so b/system/lib/libstagefright_soft_amrdec.so new file mode 100644 index 0000000000000000000000000000000000000000..2ab7029a3e76bf5e21e69c775556403401cfffb6 Binary files /dev/null and b/system/lib/libstagefright_soft_amrdec.so differ diff --git a/system/lib/libstagefright_soft_amrnbenc.so b/system/lib/libstagefright_soft_amrnbenc.so new file mode 100644 index 0000000000000000000000000000000000000000..b8b9ecc05ec22a55976045a350c1bdafb252b85d Binary files /dev/null and b/system/lib/libstagefright_soft_amrnbenc.so differ diff --git a/system/lib/libstagefright_soft_amrwbenc.so b/system/lib/libstagefright_soft_amrwbenc.so new file mode 100644 index 0000000000000000000000000000000000000000..37b102308745b748cab5c1b7d5a0aa29894b759f Binary files /dev/null and b/system/lib/libstagefright_soft_amrwbenc.so differ diff --git a/system/lib/libstagefright_soft_avcdec.so b/system/lib/libstagefright_soft_avcdec.so new file mode 100644 index 0000000000000000000000000000000000000000..8048efea4feb259b076f0d9c8bd85d5eb19c8c8d Binary files /dev/null and b/system/lib/libstagefright_soft_avcdec.so differ diff --git a/system/lib/libstagefright_soft_avcenc.so b/system/lib/libstagefright_soft_avcenc.so new file mode 100644 index 0000000000000000000000000000000000000000..c5c5a284acc994df8c37cb7456518a7f3fe76794 Binary files /dev/null and b/system/lib/libstagefright_soft_avcenc.so differ diff --git a/system/lib/libstagefright_soft_flacdec.so b/system/lib/libstagefright_soft_flacdec.so new file mode 100644 index 0000000000000000000000000000000000000000..a093a2d3176e0af7d0c2c103996192b92292ec97 Binary files /dev/null and b/system/lib/libstagefright_soft_flacdec.so differ diff --git a/system/lib/libstagefright_soft_flacenc.so b/system/lib/libstagefright_soft_flacenc.so new file mode 100644 index 0000000000000000000000000000000000000000..bdaae904cc4c176d60615bb319ca80a0ce41d324 Binary files /dev/null and b/system/lib/libstagefright_soft_flacenc.so differ diff --git a/system/lib/libstagefright_soft_g711dec.so b/system/lib/libstagefright_soft_g711dec.so new file mode 100644 index 0000000000000000000000000000000000000000..d79e02f2d3d2c3716c2e31ff86c7d6a233842e82 Binary files /dev/null and b/system/lib/libstagefright_soft_g711dec.so differ diff --git a/system/lib/libstagefright_soft_gsmdec.so b/system/lib/libstagefright_soft_gsmdec.so new file mode 100644 index 0000000000000000000000000000000000000000..4b893f052a7db2481120abee5d88afeee47ee1b2 Binary files /dev/null and b/system/lib/libstagefright_soft_gsmdec.so differ diff --git a/system/lib/libstagefright_soft_hevcdec.so b/system/lib/libstagefright_soft_hevcdec.so new file mode 100644 index 0000000000000000000000000000000000000000..d1b3f578d1b265adf6b53d31bff8bf3baf725573 Binary files /dev/null and b/system/lib/libstagefright_soft_hevcdec.so differ diff --git a/system/lib/libstagefright_soft_mp3dec.so b/system/lib/libstagefright_soft_mp3dec.so new file mode 100644 index 0000000000000000000000000000000000000000..4ab3ebdb297d4c2c7527f27483c8a6c065be42e7 Binary files /dev/null and b/system/lib/libstagefright_soft_mp3dec.so differ diff --git a/system/lib/libstagefright_soft_mpeg2dec.so b/system/lib/libstagefright_soft_mpeg2dec.so new file mode 100644 index 0000000000000000000000000000000000000000..8893559dd08741a040bbb6a47e5035139ca17783 Binary files /dev/null and b/system/lib/libstagefright_soft_mpeg2dec.so differ diff --git a/system/lib/libstagefright_soft_mpeg4dec.so b/system/lib/libstagefright_soft_mpeg4dec.so new file mode 100644 index 0000000000000000000000000000000000000000..bc70d9e7b44e197fffbb0af95225cd0de7719401 Binary files /dev/null and b/system/lib/libstagefright_soft_mpeg4dec.so differ diff --git a/system/lib/libstagefright_soft_mpeg4enc.so b/system/lib/libstagefright_soft_mpeg4enc.so new file mode 100644 index 0000000000000000000000000000000000000000..0cfad900bb2454652bead2ab63192011debe7820 Binary files /dev/null and b/system/lib/libstagefright_soft_mpeg4enc.so differ diff --git a/system/lib/libstagefright_soft_opusdec.so b/system/lib/libstagefright_soft_opusdec.so new file mode 100644 index 0000000000000000000000000000000000000000..42ae9ae7939ad36ec067afb25e898261f407a042 Binary files /dev/null and b/system/lib/libstagefright_soft_opusdec.so differ diff --git a/system/lib/libstagefright_soft_rawdec.so b/system/lib/libstagefright_soft_rawdec.so new file mode 100644 index 0000000000000000000000000000000000000000..fa803dacce9d797ce6a78cbff510a8744a0caf10 Binary files /dev/null and b/system/lib/libstagefright_soft_rawdec.so differ diff --git a/system/lib/libstagefright_soft_vorbisdec.so b/system/lib/libstagefright_soft_vorbisdec.so new file mode 100644 index 0000000000000000000000000000000000000000..3b9764d1d63df94d9cd56919be3a5a4f799be485 Binary files /dev/null and b/system/lib/libstagefright_soft_vorbisdec.so differ diff --git a/system/lib/libstagefright_soft_vpxdec.so b/system/lib/libstagefright_soft_vpxdec.so new file mode 100644 index 0000000000000000000000000000000000000000..07646951699c3e6ae8318cef712dce707ecc78aa Binary files /dev/null and b/system/lib/libstagefright_soft_vpxdec.so differ diff --git a/system/lib/libstagefright_soft_vpxenc.so b/system/lib/libstagefright_soft_vpxenc.so new file mode 100644 index 0000000000000000000000000000000000000000..f74da39d09fd410e94ab3d0428e4caf93ccab4b0 Binary files /dev/null and b/system/lib/libstagefright_soft_vpxenc.so differ diff --git a/system/lib/libstagefright_wfd_mtk.so b/system/lib/libstagefright_wfd_mtk.so new file mode 100644 index 0000000000000000000000000000000000000000..e3f1ef6cdee10977ba8f39064d49b94769568970 Binary files /dev/null and b/system/lib/libstagefright_wfd_mtk.so differ diff --git a/system/lib/libstagefright_xmlparser.so b/system/lib/libstagefright_xmlparser.so new file mode 100644 index 0000000000000000000000000000000000000000..07d9587590c6a580d0fe3aab99fe2fb13a77a481 Binary files /dev/null and b/system/lib/libstagefright_xmlparser.so differ diff --git a/system/lib/libstdc++.so b/system/lib/libstdc++.so new file mode 100644 index 0000000000000000000000000000000000000000..fe14f48bd5a3173e0fd31c3c58ebe1abf26493f1 Binary files /dev/null and b/system/lib/libstdc++.so differ diff --git a/system/lib/libstereoinfoaccessor.so b/system/lib/libstereoinfoaccessor.so new file mode 100644 index 0000000000000000000000000000000000000000..1c33629c97092047f6bece32c47a6eb6b47ce38c Binary files /dev/null and b/system/lib/libstereoinfoaccessor.so differ diff --git a/system/lib/libsurfaceflinger.so b/system/lib/libsurfaceflinger.so new file mode 100644 index 0000000000000000000000000000000000000000..a153ae049fcda98875899d337423431bfe0e7005 Binary files /dev/null and b/system/lib/libsurfaceflinger.so differ diff --git a/system/lib/libsurfaceflinger_ddmconnection.so b/system/lib/libsurfaceflinger_ddmconnection.so new file mode 100644 index 0000000000000000000000000000000000000000..e72841fa9b4cd647510ae992f5480213785d94df Binary files /dev/null and b/system/lib/libsurfaceflinger_ddmconnection.so differ diff --git a/system/lib/libsuspend.so b/system/lib/libsuspend.so new file mode 100644 index 0000000000000000000000000000000000000000..34b3f5d4da2a1c3c296b5a3a0e4eaffcc3fc2861 Binary files /dev/null and b/system/lib/libsuspend.so differ diff --git a/system/lib/libsync.so b/system/lib/libsync.so new file mode 100644 index 0000000000000000000000000000000000000000..2f13d64052269199ee967b7832a12c31f89a43fd Binary files /dev/null and b/system/lib/libsync.so differ diff --git a/system/lib/libsysenv_system.so b/system/lib/libsysenv_system.so new file mode 100644 index 0000000000000000000000000000000000000000..7581c812bff83faf84af599ceef754924bc2bd47 Binary files /dev/null and b/system/lib/libsysenv_system.so differ diff --git a/system/lib/libsysutils.so b/system/lib/libsysutils.so new file mode 100644 index 0000000000000000000000000000000000000000..bfcafbca6cac0f771cfac0092042ae835c5a6e7d Binary files /dev/null and b/system/lib/libsysutils.so differ diff --git a/system/lib/libterservice.so b/system/lib/libterservice.so new file mode 100644 index 0000000000000000000000000000000000000000..6e095aced41eb00e04ea4af672fa38e5c9cf6e2f Binary files /dev/null and b/system/lib/libterservice.so differ diff --git a/system/lib/libtextclassifier.so b/system/lib/libtextclassifier.so new file mode 100644 index 0000000000000000000000000000000000000000..a68e4bf1bca9768331fff69a1fd82353d8cb2fb5 Binary files /dev/null and b/system/lib/libtextclassifier.so differ diff --git a/system/lib/libtextclassifier_hash.so b/system/lib/libtextclassifier_hash.so new file mode 100644 index 0000000000000000000000000000000000000000..cdd16f97168f8371e7fbc250db26934f53ee1c7f Binary files /dev/null and b/system/lib/libtextclassifier_hash.so differ diff --git a/system/lib/libthermalcallback.so b/system/lib/libthermalcallback.so new file mode 100644 index 0000000000000000000000000000000000000000..4f52a0a174ba695f309b17ffd1f1f6a0d9494aad Binary files /dev/null and b/system/lib/libthermalcallback.so differ diff --git a/system/lib/libthermalservice.so b/system/lib/libthermalservice.so new file mode 100644 index 0000000000000000000000000000000000000000..919048d4c68da20dd1f74fd64d57344fcc795d8b Binary files /dev/null and b/system/lib/libthermalservice.so differ diff --git a/system/lib/libtinyalsa.so b/system/lib/libtinyalsa.so new file mode 100644 index 0000000000000000000000000000000000000000..2432d39cfd24c052058d251af5c05f45e65e0217 Binary files /dev/null and b/system/lib/libtinyalsa.so differ diff --git a/system/lib/libtinyxml2.so b/system/lib/libtinyxml2.so new file mode 100644 index 0000000000000000000000000000000000000000..7a2347595849ffef112d30d44b88910b68b8f373 Binary files /dev/null and b/system/lib/libtinyxml2.so differ diff --git a/system/lib/libtombstoned_client.so b/system/lib/libtombstoned_client.so new file mode 100644 index 0000000000000000000000000000000000000000..4455c503ca1f8ae2ee531dc78794d116b7832017 Binary files /dev/null and b/system/lib/libtombstoned_client.so differ diff --git a/system/lib/libtouchfilter.so b/system/lib/libtouchfilter.so new file mode 100644 index 0000000000000000000000000000000000000000..98b859daeb00810405a3d2ec226e3cc381a59768 Binary files /dev/null and b/system/lib/libtouchfilter.so differ diff --git a/system/lib/libui.so b/system/lib/libui.so new file mode 100644 index 0000000000000000000000000000000000000000..cdc751fc6a96802d55fd5fef42de49696d7983cb Binary files /dev/null and b/system/lib/libui.so differ diff --git a/system/lib/libui_ext_fwk.so b/system/lib/libui_ext_fwk.so new file mode 100644 index 0000000000000000000000000000000000000000..6906e30771b28b061e94322c216ef5444bb09b67 Binary files /dev/null and b/system/lib/libui_ext_fwk.so differ diff --git a/system/lib/libunwind.so b/system/lib/libunwind.so new file mode 100644 index 0000000000000000000000000000000000000000..b3e0d412a81f51ff559218024a771a4158fea505 Binary files /dev/null and b/system/lib/libunwind.so differ diff --git a/system/lib/libusbhost.so b/system/lib/libusbhost.so new file mode 100644 index 0000000000000000000000000000000000000000..bcf2160d98f5d18ad45f6e3ab89b6900290b387c Binary files /dev/null and b/system/lib/libusbhost.so differ diff --git a/system/lib/libutils.so b/system/lib/libutils.so new file mode 100644 index 0000000000000000000000000000000000000000..f1205adb84fe07f5e2b1dfaeeddd968255b9dbbc Binary files /dev/null and b/system/lib/libutils.so differ diff --git a/system/lib/libvintf.so b/system/lib/libvintf.so new file mode 100644 index 0000000000000000000000000000000000000000..9b3ff443c5e60d7ca438a5b1b79de26111a7c831 Binary files /dev/null and b/system/lib/libvintf.so differ diff --git a/system/lib/libvixl-arm.so b/system/lib/libvixl-arm.so new file mode 100644 index 0000000000000000000000000000000000000000..3e5d8e19870f3e66640f12464536672cd91fc91b Binary files /dev/null and b/system/lib/libvixl-arm.so differ diff --git a/system/lib/libvixl-arm64.so b/system/lib/libvixl-arm64.so new file mode 100644 index 0000000000000000000000000000000000000000..9d419c2d4d2e1bbbe08f32b0084a90058e996316 Binary files /dev/null and b/system/lib/libvixl-arm64.so differ diff --git a/system/lib/libvndksupport.so b/system/lib/libvndksupport.so new file mode 100644 index 0000000000000000000000000000000000000000..55af9d0499a15ad024ad75fb7cd9a52be58b7309 Binary files /dev/null and b/system/lib/libvndksupport.so differ diff --git a/system/lib/libvoicerecognition.so b/system/lib/libvoicerecognition.so new file mode 100644 index 0000000000000000000000000000000000000000..f88a621f299452f184caeb4188f51b00208abee3 Binary files /dev/null and b/system/lib/libvoicerecognition.so differ diff --git a/system/lib/libvoicerecognition_jni.so b/system/lib/libvoicerecognition_jni.so new file mode 100644 index 0000000000000000000000000000000000000000..2686d67c2435642ef2938f70ffd759f108025c90 Binary files /dev/null and b/system/lib/libvoicerecognition_jni.so differ diff --git a/system/lib/libvorbisidec.so b/system/lib/libvorbisidec.so new file mode 100644 index 0000000000000000000000000000000000000000..50c285dba17e36000ba4440d5b3eecff247e930f Binary files /dev/null and b/system/lib/libvorbisidec.so differ diff --git a/system/lib/libvsync_enhance.so b/system/lib/libvsync_enhance.so new file mode 100644 index 0000000000000000000000000000000000000000..7e50916e18150e98b80c5599e740c94c3191e95c Binary files /dev/null and b/system/lib/libvsync_enhance.so differ diff --git a/system/lib/libvsync_hint.so b/system/lib/libvsync_hint.so new file mode 100644 index 0000000000000000000000000000000000000000..6863e2886b14dd844ffe8fa1a882da07fa3ecd2a Binary files /dev/null and b/system/lib/libvsync_hint.so differ diff --git a/system/lib/libvt_avsync.so b/system/lib/libvt_avsync.so new file mode 100644 index 0000000000000000000000000000000000000000..428b8addcbc0e7f4cd14f866ffc037833bb829ac Binary files /dev/null and b/system/lib/libvt_avsync.so differ diff --git a/system/lib/libvulkan.so b/system/lib/libvulkan.so new file mode 100644 index 0000000000000000000000000000000000000000..8ec9fd5b35d0825eb36e5af23ca383d55d453965 Binary files /dev/null and b/system/lib/libvulkan.so differ diff --git a/system/lib/libwebviewchromium_loader.so b/system/lib/libwebviewchromium_loader.so new file mode 100644 index 0000000000000000000000000000000000000000..1075540a0dd1ebcc55ba93b56d15813395e9eb4e Binary files /dev/null and b/system/lib/libwebviewchromium_loader.so differ diff --git a/system/lib/libwebviewchromium_plat_support.so b/system/lib/libwebviewchromium_plat_support.so new file mode 100644 index 0000000000000000000000000000000000000000..aebe659a1f620d90550c9a79b90773849f2f0cb9 Binary files /dev/null and b/system/lib/libwebviewchromium_plat_support.so differ diff --git a/system/lib/libwfds.so b/system/lib/libwfds.so new file mode 100644 index 0000000000000000000000000000000000000000..0f08f6f7509bfdab663a86fd6161de855f83179c Binary files /dev/null and b/system/lib/libwfds.so differ diff --git a/system/lib/libwifi-service.so b/system/lib/libwifi-service.so new file mode 100644 index 0000000000000000000000000000000000000000..165a806a8e4849bcaeb4bd68cde47532af9e6f48 Binary files /dev/null and b/system/lib/libwifi-service.so differ diff --git a/system/lib/libwifi-system-iface.so b/system/lib/libwifi-system-iface.so new file mode 100644 index 0000000000000000000000000000000000000000..108f7e9d3a3ab0be23013a6c9afde797e505ee8c Binary files /dev/null and b/system/lib/libwifi-system-iface.so differ diff --git a/system/lib/libwifi-system.so b/system/lib/libwifi-system.so new file mode 100644 index 0000000000000000000000000000000000000000..fdfcdc44674e424531405390a206743b4a607246 Binary files /dev/null and b/system/lib/libwifi-system.so differ diff --git a/system/lib/libwifikeystorehal.so b/system/lib/libwifikeystorehal.so new file mode 100644 index 0000000000000000000000000000000000000000..2a9e74afb4cf4acd64a967d4c4c2e95113532ca0 Binary files /dev/null and b/system/lib/libwifikeystorehal.so differ diff --git a/system/lib/libwifitest_mtk.so b/system/lib/libwifitest_mtk.so new file mode 100644 index 0000000000000000000000000000000000000000..5006a3cad803b7389b53d7798483a5e318e06f9e Binary files /dev/null and b/system/lib/libwifitest_mtk.so differ diff --git a/system/lib/libwilhelm.so b/system/lib/libwilhelm.so new file mode 100644 index 0000000000000000000000000000000000000000..d4f7bd87c2fd808a40ed789ffa2dc8581f65386e Binary files /dev/null and b/system/lib/libwilhelm.so differ diff --git a/system/lib/libxml2.so b/system/lib/libxml2.so new file mode 100644 index 0000000000000000000000000000000000000000..0845923ed0c65ac5d82a230b6f63faec8cc12e22 Binary files /dev/null and b/system/lib/libxml2.so differ diff --git a/system/lib/libxtables.so b/system/lib/libxtables.so new file mode 100644 index 0000000000000000000000000000000000000000..2b358a112f5da79abc22db9527d65923a6b2430a Binary files /dev/null and b/system/lib/libxtables.so differ diff --git a/system/lib/libyv12util.so b/system/lib/libyv12util.so new file mode 100644 index 0000000000000000000000000000000000000000..2dca12de27db67d40853296b6d037979e5a48f52 Binary files /dev/null and b/system/lib/libyv12util.so differ diff --git a/system/lib/libz.so b/system/lib/libz.so new file mode 100644 index 0000000000000000000000000000000000000000..2402f3c846b635b360bd25b68fd1a7d55da932ce Binary files /dev/null and b/system/lib/libz.so differ diff --git a/system/lib/libziparchive.so b/system/lib/libziparchive.so new file mode 100644 index 0000000000000000000000000000000000000000..baff61f6837a3c10f9751f0dae9f6c300aa6ff27 Binary files /dev/null and b/system/lib/libziparchive.so differ diff --git a/system/lib/mtkdrm/libdrmmtkplugin.so b/system/lib/mtkdrm/libdrmmtkplugin.so new file mode 100644 index 0000000000000000000000000000000000000000..05964369666efbdcef0d4bef70127659934881c8 Binary files /dev/null and b/system/lib/mtkdrm/libdrmmtkplugin.so differ diff --git a/system/lib/vendor.mediatek.hardware.audio@2.1.so b/system/lib/vendor.mediatek.hardware.audio@2.1.so new file mode 100644 index 0000000000000000000000000000000000000000..980cc67c961eece319b92d62b6c607ff2cf09ff8 Binary files /dev/null and b/system/lib/vendor.mediatek.hardware.audio@2.1.so differ diff --git a/system/lib/vendor.mediatek.hardware.camera.device@1.1.so b/system/lib/vendor.mediatek.hardware.camera.device@1.1.so new file mode 100644 index 0000000000000000000000000000000000000000..c5076717a20556b35ef27fc00bf8d9261d8a89f5 Binary files /dev/null and b/system/lib/vendor.mediatek.hardware.camera.device@1.1.so differ diff --git a/system/lib/vendor.mediatek.hardware.camera.lomoeffect@1.0.so b/system/lib/vendor.mediatek.hardware.camera.lomoeffect@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..a6a0983eaa3fb4364d6e75b689c06535cdecf620 Binary files /dev/null and b/system/lib/vendor.mediatek.hardware.camera.lomoeffect@1.0.so differ diff --git a/system/lib/vendor.mediatek.hardware.dfps@1.0.so b/system/lib/vendor.mediatek.hardware.dfps@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..b5ae9a662d9649134e28ade25e9f671066fcb5cc Binary files /dev/null and b/system/lib/vendor.mediatek.hardware.dfps@1.0.so differ diff --git a/system/lib/vendor.mediatek.hardware.gnss@1.1.so b/system/lib/vendor.mediatek.hardware.gnss@1.1.so new file mode 100644 index 0000000000000000000000000000000000000000..a230538c3c2f1e929e3aaad3a72910f0076281fd Binary files /dev/null and b/system/lib/vendor.mediatek.hardware.gnss@1.1.so differ diff --git a/system/lib/vendor.mediatek.hardware.keymaster_attestation@1.0.so b/system/lib/vendor.mediatek.hardware.keymaster_attestation@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..4820c241058c0efe7a8118fc821cae51e84b8121 Binary files /dev/null and b/system/lib/vendor.mediatek.hardware.keymaster_attestation@1.0.so differ diff --git a/system/lib/vendor.mediatek.hardware.keymaster_attestation@1.1.so b/system/lib/vendor.mediatek.hardware.keymaster_attestation@1.1.so new file mode 100644 index 0000000000000000000000000000000000000000..39585f26f283d626be8c026765d49cdf8f650e7a Binary files /dev/null and b/system/lib/vendor.mediatek.hardware.keymaster_attestation@1.1.so differ diff --git a/system/lib/vendor.mediatek.hardware.lbs@1.0.so b/system/lib/vendor.mediatek.hardware.lbs@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..e2d96a2a027383bc1a879573600f36db37f2fe3e Binary files /dev/null and b/system/lib/vendor.mediatek.hardware.lbs@1.0.so differ diff --git a/system/lib/vendor.mediatek.hardware.nvram@1.0.so b/system/lib/vendor.mediatek.hardware.nvram@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..2e0a80609243acff3a9cc0cfbb967d3cf80df6dc Binary files /dev/null and b/system/lib/vendor.mediatek.hardware.nvram@1.0.so differ diff --git a/system/lib/vendor.mediatek.hardware.power@1.1.so b/system/lib/vendor.mediatek.hardware.power@1.1.so new file mode 100644 index 0000000000000000000000000000000000000000..5080c154232da6145de28a9d6b1fb2bfe47db0cf Binary files /dev/null and b/system/lib/vendor.mediatek.hardware.power@1.1.so differ diff --git a/system/lib/vendor.mediatek.hardware.pq@2.0.so b/system/lib/vendor.mediatek.hardware.pq@2.0.so new file mode 100644 index 0000000000000000000000000000000000000000..8e375003e511371b97e9700e874fde082fe3f695 Binary files /dev/null and b/system/lib/vendor.mediatek.hardware.pq@2.0.so differ diff --git a/system/lib/vendor.mediatek.hardware.radio@2.0.so b/system/lib/vendor.mediatek.hardware.radio@2.0.so new file mode 100644 index 0000000000000000000000000000000000000000..e48d7066062d863f94f5ffad500bd9621b01fe2b Binary files /dev/null and b/system/lib/vendor.mediatek.hardware.radio@2.0.so differ diff --git a/system/lib/vendor.mediatek.hardware.videotelephony@1.0.so b/system/lib/vendor.mediatek.hardware.videotelephony@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..8d498a22095c10ee828bc01a98dd4ae7150a40d0 Binary files /dev/null and b/system/lib/vendor.mediatek.hardware.videotelephony@1.0.so differ diff --git a/system/lib/vndk-sp/android.hardware.graphics.allocator@2.0.so b/system/lib/vndk-sp/android.hardware.graphics.allocator@2.0.so new file mode 100644 index 0000000000000000000000000000000000000000..fa785bf98ff8be3b3ac526f723854a96cb1352ba Binary files /dev/null and b/system/lib/vndk-sp/android.hardware.graphics.allocator@2.0.so differ diff --git a/system/lib/vndk-sp/android.hardware.graphics.common@1.0.so b/system/lib/vndk-sp/android.hardware.graphics.common@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..20a534360e4d7ca36f0c0274bf2a74b3ec9a6302 Binary files /dev/null and b/system/lib/vndk-sp/android.hardware.graphics.common@1.0.so differ diff --git a/system/lib/vndk-sp/android.hardware.graphics.mapper@2.0.so b/system/lib/vndk-sp/android.hardware.graphics.mapper@2.0.so new file mode 100644 index 0000000000000000000000000000000000000000..3341037be28d60cfaf81851afb331bba84d04da7 Binary files /dev/null and b/system/lib/vndk-sp/android.hardware.graphics.mapper@2.0.so differ diff --git a/system/lib/vndk-sp/android.hardware.renderscript@1.0.so b/system/lib/vndk-sp/android.hardware.renderscript@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..6de41200b17c65be90cf5080ca8a1f9b899eeb69 Binary files /dev/null and b/system/lib/vndk-sp/android.hardware.renderscript@1.0.so differ diff --git a/system/lib/vndk-sp/android.hidl.memory@1.0.so b/system/lib/vndk-sp/android.hidl.memory@1.0.so new file mode 100644 index 0000000000000000000000000000000000000000..f20147501b92c29b0177e7ccb79d2fc002a5a4f4 Binary files /dev/null and b/system/lib/vndk-sp/android.hidl.memory@1.0.so differ diff --git a/system/lib/vndk-sp/libRSCpuRef.so b/system/lib/vndk-sp/libRSCpuRef.so new file mode 100644 index 0000000000000000000000000000000000000000..0189b89d259d8494ef5792becfc26cbeef0c5f7b Binary files /dev/null and b/system/lib/vndk-sp/libRSCpuRef.so differ diff --git a/system/lib/vndk-sp/libRSDriver.so b/system/lib/vndk-sp/libRSDriver.so new file mode 100644 index 0000000000000000000000000000000000000000..64bfcd7ad32fa533d0341ea0dea81e7aa0024672 Binary files /dev/null and b/system/lib/vndk-sp/libRSDriver.so differ diff --git a/system/lib/vndk-sp/libRS_internal.so b/system/lib/vndk-sp/libRS_internal.so new file mode 100644 index 0000000000000000000000000000000000000000..54d2fc241dad96e71fff03a6d8cdaae9272f152e Binary files /dev/null and b/system/lib/vndk-sp/libRS_internal.so differ diff --git a/system/lib/vndk-sp/libbacktrace.so b/system/lib/vndk-sp/libbacktrace.so new file mode 100644 index 0000000000000000000000000000000000000000..f89bc6f508bd45d1a9ac15357102dc597789ff68 Binary files /dev/null and b/system/lib/vndk-sp/libbacktrace.so differ diff --git a/system/lib/vndk-sp/libbase.so b/system/lib/vndk-sp/libbase.so new file mode 100644 index 0000000000000000000000000000000000000000..09016f4b46f7c921a279d52d7057ecc84e765b68 Binary files /dev/null and b/system/lib/vndk-sp/libbase.so differ diff --git a/system/lib/vndk-sp/libbcinfo.so b/system/lib/vndk-sp/libbcinfo.so new file mode 100644 index 0000000000000000000000000000000000000000..1db378280863f679ac56a750a3da86c55c2a237e Binary files /dev/null and b/system/lib/vndk-sp/libbcinfo.so differ diff --git a/system/lib/vndk-sp/libblas.so b/system/lib/vndk-sp/libblas.so new file mode 100644 index 0000000000000000000000000000000000000000..07328983201bb5d121e4a61e52193c1b61254e8d Binary files /dev/null and b/system/lib/vndk-sp/libblas.so differ diff --git a/system/lib/vndk-sp/libc++.so b/system/lib/vndk-sp/libc++.so new file mode 100644 index 0000000000000000000000000000000000000000..a96263d81af189369cda14601917da035e46faac Binary files /dev/null and b/system/lib/vndk-sp/libc++.so differ diff --git a/system/lib/vndk-sp/libcompiler_rt.so b/system/lib/vndk-sp/libcompiler_rt.so new file mode 100644 index 0000000000000000000000000000000000000000..8348f292e64f2df5ecc308e743accce30f044349 Binary files /dev/null and b/system/lib/vndk-sp/libcompiler_rt.so differ diff --git a/system/lib/vndk-sp/libcutils.so b/system/lib/vndk-sp/libcutils.so new file mode 100644 index 0000000000000000000000000000000000000000..edd20f22620b0a014df4a4522821f0813c4c9df2 Binary files /dev/null and b/system/lib/vndk-sp/libcutils.so differ diff --git a/system/lib/vndk-sp/libft2.so b/system/lib/vndk-sp/libft2.so new file mode 100644 index 0000000000000000000000000000000000000000..35ac133fa68e5abaf3ae871fd456e66af15f834c Binary files /dev/null and b/system/lib/vndk-sp/libft2.so differ diff --git a/system/lib/vndk-sp/libhardware.so b/system/lib/vndk-sp/libhardware.so new file mode 100644 index 0000000000000000000000000000000000000000..ccd914338584c49098cb042b73bc0e391ed2f434 Binary files /dev/null and b/system/lib/vndk-sp/libhardware.so differ diff --git a/system/lib/vndk-sp/libhidlbase.so b/system/lib/vndk-sp/libhidlbase.so new file mode 100644 index 0000000000000000000000000000000000000000..fbbbf3cf90f27d0ae23c6c273e57ea86e983bcce Binary files /dev/null and b/system/lib/vndk-sp/libhidlbase.so differ diff --git a/system/lib/vndk-sp/libhidlmemory.so b/system/lib/vndk-sp/libhidlmemory.so new file mode 100644 index 0000000000000000000000000000000000000000..1b97b4788d5c2df1a555909dd9d1940b42b47f17 Binary files /dev/null and b/system/lib/vndk-sp/libhidlmemory.so differ diff --git a/system/lib/vndk-sp/libhidltransport.so b/system/lib/vndk-sp/libhidltransport.so new file mode 100644 index 0000000000000000000000000000000000000000..be8afffaa3e35877a863c1fc69d51a8484706386 Binary files /dev/null and b/system/lib/vndk-sp/libhidltransport.so differ diff --git a/system/lib/vndk-sp/libhwbinder.so b/system/lib/vndk-sp/libhwbinder.so new file mode 100644 index 0000000000000000000000000000000000000000..33d6c67b96d1f6dbc86d6065523b795317ec8565 Binary files /dev/null and b/system/lib/vndk-sp/libhwbinder.so differ diff --git a/system/lib/vndk-sp/libion.so b/system/lib/vndk-sp/libion.so new file mode 100644 index 0000000000000000000000000000000000000000..a3b8bd7369fd7dcbe26681f6bbfd8ec9321ab7aa Binary files /dev/null and b/system/lib/vndk-sp/libion.so differ diff --git a/system/lib/vndk-sp/liblzma.so b/system/lib/vndk-sp/liblzma.so new file mode 100644 index 0000000000000000000000000000000000000000..1f6da5c41c62a3670f8e6f7da00c25ea6b56eb72 Binary files /dev/null and b/system/lib/vndk-sp/liblzma.so differ diff --git a/system/lib/vndk-sp/libpng.so b/system/lib/vndk-sp/libpng.so new file mode 100644 index 0000000000000000000000000000000000000000..0e086928a398c12aea6fd61f9481f37d0174a472 Binary files /dev/null and b/system/lib/vndk-sp/libpng.so differ diff --git a/system/lib/vndk-sp/libunwind.so b/system/lib/vndk-sp/libunwind.so new file mode 100644 index 0000000000000000000000000000000000000000..b3e0d412a81f51ff559218024a771a4158fea505 Binary files /dev/null and b/system/lib/vndk-sp/libunwind.so differ diff --git a/system/lib/vndk-sp/libutils.so b/system/lib/vndk-sp/libutils.so new file mode 100644 index 0000000000000000000000000000000000000000..f1205adb84fe07f5e2b1dfaeeddd968255b9dbbc Binary files /dev/null and b/system/lib/vndk-sp/libutils.so differ diff --git a/system/manifest.xml b/system/manifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..ef50941743bd9924d6e3dd32a3ff5be280024edf --- /dev/null +++ b/system/manifest.xml @@ -0,0 +1,97 @@ +<manifest version="1.0" type="framework"> + <hal format="hidl"> + <name>android.frameworks.displayservice</name> + <transport>hwbinder</transport> + <version>1.0</version> + <interface> + <name>IDisplayService</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl"> + <name>android.frameworks.schedulerservice</name> + <transport>hwbinder</transport> + <version>1.0</version> + <interface> + <name>ISchedulingPolicyService</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl"> + <name>android.frameworks.sensorservice</name> + <transport>hwbinder</transport> + <version>1.0</version> + <interface> + <name>ISensorManager</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl"> + <name>android.hardware.graphics.composer</name> + <transport>hwbinder</transport> + <version>2.1</version> + <interface> + <name>IComposer</name> + <instance>vr</instance> + </interface> + </hal> + <hal format="hidl"> + <name>android.hidl.allocator</name> + <transport>hwbinder</transport> + <version>1.0</version> + <interface> + <name>IAllocator</name> + <instance>ashmem</instance> + </interface> + </hal> + <hal format="hidl"> + <name>android.hidl.manager</name> + <transport>hwbinder</transport> + <version>1.1</version> + <interface> + <name>IServiceManager</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl"> + <name>android.hidl.memory</name> + <transport arch="32+64">passthrough</transport> + <version>1.0</version> + <interface> + <name>IMapper</name> + <instance>ashmem</instance> + </interface> + </hal> + <hal format="hidl"> + <name>android.hidl.token</name> + <transport>hwbinder</transport> + <version>1.0</version> + <interface> + <name>ITokenManager</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl"> + <name>android.system.net.netd</name> + <transport>hwbinder</transport> + <version>1.0</version> + <interface> + <name>INetd</name> + <instance>default</instance> + </interface> + </hal> + <hal format="hidl"> + <name>android.system.wifi.keystore</name> + <transport>hwbinder</transport> + <version>1.0</version> + <interface> + <name>IKeystore</name> + <instance>default</instance> + </interface> + </hal> + <hal format="native"> + <name>netutils-wrapper</name> + <transport></transport> + <version>1.0</version> + </hal> +</manifest> diff --git a/system/media/audio/alarms/Alarm_Beep_01.ogg b/system/media/audio/alarms/Alarm_Beep_01.ogg new file mode 100644 index 0000000000000000000000000000000000000000..b7de5af7813c632c8a20c2a453df0cdd39b77258 Binary files /dev/null and b/system/media/audio/alarms/Alarm_Beep_01.ogg differ diff --git a/system/media/audio/alarms/Alarm_Beep_02.ogg b/system/media/audio/alarms/Alarm_Beep_02.ogg new file mode 100644 index 0000000000000000000000000000000000000000..43ea34e1de4ceda6b534cbf9c916a3e68fba7eae Binary files /dev/null and b/system/media/audio/alarms/Alarm_Beep_02.ogg differ diff --git a/system/media/audio/alarms/Alarm_Beep_03.ogg b/system/media/audio/alarms/Alarm_Beep_03.ogg new file mode 100644 index 0000000000000000000000000000000000000000..9d800377621c51700d0e01454860381ef04c3b20 Binary files /dev/null and b/system/media/audio/alarms/Alarm_Beep_03.ogg differ diff --git a/system/media/audio/alarms/Alarm_Buzzer.ogg b/system/media/audio/alarms/Alarm_Buzzer.ogg new file mode 100644 index 0000000000000000000000000000000000000000..4234f37a44f03895a58f65029693b63dd3b43367 Binary files /dev/null and b/system/media/audio/alarms/Alarm_Buzzer.ogg differ diff --git a/system/media/audio/alarms/Alarm_Rooster_02.ogg b/system/media/audio/alarms/Alarm_Rooster_02.ogg new file mode 100644 index 0000000000000000000000000000000000000000..d20bd1dba800241ac8a2dbd737cddb47c8c0cde0 Binary files /dev/null and b/system/media/audio/alarms/Alarm_Rooster_02.ogg differ diff --git a/system/media/audio/alarms/Argon.ogg b/system/media/audio/alarms/Argon.ogg new file mode 100644 index 0000000000000000000000000000000000000000..35addf57853e757825310a908b62993f3575ed90 Binary files /dev/null and b/system/media/audio/alarms/Argon.ogg differ diff --git a/system/media/audio/alarms/Barium.ogg b/system/media/audio/alarms/Barium.ogg new file mode 100644 index 0000000000000000000000000000000000000000..9a920224cace5deb9eec308c3e50f99c7aacda0e Binary files /dev/null and b/system/media/audio/alarms/Barium.ogg differ diff --git a/system/media/audio/alarms/Carbon.ogg b/system/media/audio/alarms/Carbon.ogg new file mode 100644 index 0000000000000000000000000000000000000000..b02a1cc8edb1f4942fbdea376069064192ef5b59 Binary files /dev/null and b/system/media/audio/alarms/Carbon.ogg differ diff --git a/system/media/audio/alarms/Cesium.ogg b/system/media/audio/alarms/Cesium.ogg new file mode 100644 index 0000000000000000000000000000000000000000..a8c379ab04a8335eb5ff14a3384fa4dba9db20d6 Binary files /dev/null and b/system/media/audio/alarms/Cesium.ogg differ diff --git a/system/media/audio/alarms/Fermium.ogg b/system/media/audio/alarms/Fermium.ogg new file mode 100644 index 0000000000000000000000000000000000000000..d8f6124364ae81e5a57372a34a26c4b5fc2540cb Binary files /dev/null and b/system/media/audio/alarms/Fermium.ogg differ diff --git a/system/media/audio/alarms/Hassium.ogg b/system/media/audio/alarms/Hassium.ogg new file mode 100644 index 0000000000000000000000000000000000000000..793c2697eac043fc7c5b8f9f3e4b8c9eea75d169 Binary files /dev/null and b/system/media/audio/alarms/Hassium.ogg differ diff --git a/system/media/audio/alarms/Helium.ogg b/system/media/audio/alarms/Helium.ogg new file mode 100644 index 0000000000000000000000000000000000000000..36694cb9533e8384e54072464e4d1e2296552bd3 Binary files /dev/null and b/system/media/audio/alarms/Helium.ogg differ diff --git a/system/media/audio/alarms/Krypton.ogg b/system/media/audio/alarms/Krypton.ogg new file mode 100644 index 0000000000000000000000000000000000000000..48f956bc1b7ac3edaede2d1aeaefdc91845c61f2 Binary files /dev/null and b/system/media/audio/alarms/Krypton.ogg differ diff --git a/system/media/audio/alarms/Neon.ogg b/system/media/audio/alarms/Neon.ogg new file mode 100644 index 0000000000000000000000000000000000000000..3089a277c156e7baee9b95b7aa7c5a7d16dfae09 Binary files /dev/null and b/system/media/audio/alarms/Neon.ogg differ diff --git a/system/media/audio/alarms/Neptunium.ogg b/system/media/audio/alarms/Neptunium.ogg new file mode 100644 index 0000000000000000000000000000000000000000..d99f13344f30835a94aa2ae2128beaf8708503b4 Binary files /dev/null and b/system/media/audio/alarms/Neptunium.ogg differ diff --git a/system/media/audio/alarms/Nobelium.ogg b/system/media/audio/alarms/Nobelium.ogg new file mode 100644 index 0000000000000000000000000000000000000000..1f94d1e9dfe790a1c5fb2b74bc2134bc1443650e Binary files /dev/null and b/system/media/audio/alarms/Nobelium.ogg differ diff --git a/system/media/audio/alarms/Osmium.ogg b/system/media/audio/alarms/Osmium.ogg new file mode 100644 index 0000000000000000000000000000000000000000..4c760809ccad1781e3d26aa48db9d4561be3853b Binary files /dev/null and b/system/media/audio/alarms/Osmium.ogg differ diff --git a/system/media/audio/alarms/Oxygen.ogg b/system/media/audio/alarms/Oxygen.ogg new file mode 100644 index 0000000000000000000000000000000000000000..4dc8ade219d72221f8e92db7865d911a40870c8a Binary files /dev/null and b/system/media/audio/alarms/Oxygen.ogg differ diff --git a/system/media/audio/alarms/Platinum.ogg b/system/media/audio/alarms/Platinum.ogg new file mode 100644 index 0000000000000000000000000000000000000000..d5f0893e4cf742e1dff72ab4a46c2419f71b1868 Binary files /dev/null and b/system/media/audio/alarms/Platinum.ogg differ diff --git a/system/media/audio/alarms/Plutonium.ogg b/system/media/audio/alarms/Plutonium.ogg new file mode 100644 index 0000000000000000000000000000000000000000..5e9a75093c6d5b0c00929167a5710af408f0eec8 Binary files /dev/null and b/system/media/audio/alarms/Plutonium.ogg differ diff --git a/system/media/audio/alarms/Scandium.ogg b/system/media/audio/alarms/Scandium.ogg new file mode 100644 index 0000000000000000000000000000000000000000..86ffbf89d0379c970a70bd5ae531582f53fc449e Binary files /dev/null and b/system/media/audio/alarms/Scandium.ogg differ diff --git a/system/media/audio/notifications/Aldebaran.ogg b/system/media/audio/notifications/Aldebaran.ogg new file mode 100644 index 0000000000000000000000000000000000000000..fe3013759ece91ad053c0f8d4ddadac3521d5869 Binary files /dev/null and b/system/media/audio/notifications/Aldebaran.ogg differ diff --git a/system/media/audio/notifications/Antares.ogg b/system/media/audio/notifications/Antares.ogg new file mode 100644 index 0000000000000000000000000000000000000000..f4f94d740b4f18225799d545913795010e21c636 Binary files /dev/null and b/system/media/audio/notifications/Antares.ogg differ diff --git a/system/media/audio/notifications/Beat_Box_Android.ogg b/system/media/audio/notifications/Beat_Box_Android.ogg new file mode 100644 index 0000000000000000000000000000000000000000..c5d5747948f9a5ffc63c7aab0fc593bad7977499 Binary files /dev/null and b/system/media/audio/notifications/Beat_Box_Android.ogg differ diff --git a/system/media/audio/notifications/Betelgeuse.ogg b/system/media/audio/notifications/Betelgeuse.ogg new file mode 100644 index 0000000000000000000000000000000000000000..7145a162415681a16732abcface47cc94f040afb Binary files /dev/null and b/system/media/audio/notifications/Betelgeuse.ogg differ diff --git a/system/media/audio/notifications/CaffeineSnake.ogg b/system/media/audio/notifications/CaffeineSnake.ogg new file mode 100644 index 0000000000000000000000000000000000000000..98cdd14f7d48da5f9a901db5a7bfe675c59cf1b2 Binary files /dev/null and b/system/media/audio/notifications/CaffeineSnake.ogg differ diff --git a/system/media/audio/notifications/Capella.ogg b/system/media/audio/notifications/Capella.ogg new file mode 100644 index 0000000000000000000000000000000000000000..88a955d159bc4e5bb722efbf9cced6e7e79f2055 Binary files /dev/null and b/system/media/audio/notifications/Capella.ogg differ diff --git a/system/media/audio/notifications/CetiAlpha.ogg b/system/media/audio/notifications/CetiAlpha.ogg new file mode 100644 index 0000000000000000000000000000000000000000..cd09526335db5dc8ae19ada0c746401604ea58b4 Binary files /dev/null and b/system/media/audio/notifications/CetiAlpha.ogg differ diff --git a/system/media/audio/notifications/DearDeer.ogg b/system/media/audio/notifications/DearDeer.ogg new file mode 100644 index 0000000000000000000000000000000000000000..f092433c85cb47f13836449176e4d875d5e5de54 Binary files /dev/null and b/system/media/audio/notifications/DearDeer.ogg differ diff --git a/system/media/audio/notifications/DontPanic.ogg b/system/media/audio/notifications/DontPanic.ogg new file mode 100644 index 0000000000000000000000000000000000000000..35c9478882efb8ba53814e21acb2afc386a3d08d Binary files /dev/null and b/system/media/audio/notifications/DontPanic.ogg differ diff --git a/system/media/audio/notifications/F1_New_MMS.ogg b/system/media/audio/notifications/F1_New_MMS.ogg new file mode 100644 index 0000000000000000000000000000000000000000..d3cbdfcb325850ae1d20df432c05eaa1407898bb Binary files /dev/null and b/system/media/audio/notifications/F1_New_MMS.ogg differ diff --git a/system/media/audio/notifications/Fomalhaut.ogg b/system/media/audio/notifications/Fomalhaut.ogg new file mode 100644 index 0000000000000000000000000000000000000000..9448c186004bd22cef260093436ec6d94ceffe50 Binary files /dev/null and b/system/media/audio/notifications/Fomalhaut.ogg differ diff --git a/system/media/audio/notifications/Heaven.ogg b/system/media/audio/notifications/Heaven.ogg new file mode 100644 index 0000000000000000000000000000000000000000..368c32d39fd1bfb0aec923173fcdac9fe501e02b Binary files /dev/null and b/system/media/audio/notifications/Heaven.ogg differ diff --git a/system/media/audio/notifications/Iridium.ogg b/system/media/audio/notifications/Iridium.ogg new file mode 100644 index 0000000000000000000000000000000000000000..fabda899918a49bb5cdf5b828b7b87f2420090e4 Binary files /dev/null and b/system/media/audio/notifications/Iridium.ogg differ diff --git a/system/media/audio/notifications/KzurbSonar.ogg b/system/media/audio/notifications/KzurbSonar.ogg new file mode 100644 index 0000000000000000000000000000000000000000..8cd17aeb692b3c691a22310ecacb4f11bd42e2f6 Binary files /dev/null and b/system/media/audio/notifications/KzurbSonar.ogg differ diff --git a/system/media/audio/notifications/Merope.ogg b/system/media/audio/notifications/Merope.ogg new file mode 100644 index 0000000000000000000000000000000000000000..fb18c73a1ea71605cbcb1651a199db2d8680199d Binary files /dev/null and b/system/media/audio/notifications/Merope.ogg differ diff --git a/system/media/audio/notifications/OnTheHunt.ogg b/system/media/audio/notifications/OnTheHunt.ogg new file mode 100644 index 0000000000000000000000000000000000000000..dd407f69b85df9ac6b434c1deeb01106223cd50d Binary files /dev/null and b/system/media/audio/notifications/OnTheHunt.ogg differ diff --git a/system/media/audio/notifications/Procyon.ogg b/system/media/audio/notifications/Procyon.ogg new file mode 100644 index 0000000000000000000000000000000000000000..e5ffcdb15a2da1f536181a736ef03645a3c3df2f Binary files /dev/null and b/system/media/audio/notifications/Procyon.ogg differ diff --git a/system/media/audio/notifications/Radon.ogg b/system/media/audio/notifications/Radon.ogg new file mode 100644 index 0000000000000000000000000000000000000000..550cddd3945f1e8c8fac000b6b2185efaee969b2 Binary files /dev/null and b/system/media/audio/notifications/Radon.ogg differ diff --git a/system/media/audio/notifications/Sirrah.ogg b/system/media/audio/notifications/Sirrah.ogg new file mode 100644 index 0000000000000000000000000000000000000000..ee79e49361e05438b092e3c280a3e396d05bdb18 Binary files /dev/null and b/system/media/audio/notifications/Sirrah.ogg differ diff --git a/system/media/audio/notifications/TaDa.ogg b/system/media/audio/notifications/TaDa.ogg new file mode 100644 index 0000000000000000000000000000000000000000..c3dc0252d4db1eebb208c4a163bb89423be6109c Binary files /dev/null and b/system/media/audio/notifications/TaDa.ogg differ diff --git a/system/media/audio/notifications/Tinkerbell.ogg b/system/media/audio/notifications/Tinkerbell.ogg new file mode 100644 index 0000000000000000000000000000000000000000..434e96ba21242861ce0a5c5a73bc1f7d63cae700 Binary files /dev/null and b/system/media/audio/notifications/Tinkerbell.ogg differ diff --git a/system/media/audio/notifications/Voila.ogg b/system/media/audio/notifications/Voila.ogg new file mode 100644 index 0000000000000000000000000000000000000000..2c6409dd6daf6529c64437565333fa4f49aaced3 Binary files /dev/null and b/system/media/audio/notifications/Voila.ogg differ diff --git a/system/media/audio/notifications/Xenon.ogg b/system/media/audio/notifications/Xenon.ogg new file mode 100644 index 0000000000000000000000000000000000000000..255a1a96502989ca03731480779f2f0540fbdabe Binary files /dev/null and b/system/media/audio/notifications/Xenon.ogg differ diff --git a/system/media/audio/notifications/moonbeam.ogg b/system/media/audio/notifications/moonbeam.ogg new file mode 100644 index 0000000000000000000000000000000000000000..59ac9852328d83c1d114f621ec6c624dca972dc7 Binary files /dev/null and b/system/media/audio/notifications/moonbeam.ogg differ diff --git a/system/media/audio/notifications/pixiedust.ogg b/system/media/audio/notifications/pixiedust.ogg new file mode 100644 index 0000000000000000000000000000000000000000..4ed7f52fd79c92c3556466bf4c00c27ce33ec0cb Binary files /dev/null and b/system/media/audio/notifications/pixiedust.ogg differ diff --git a/system/media/audio/notifications/pizzicato.ogg b/system/media/audio/notifications/pizzicato.ogg new file mode 100644 index 0000000000000000000000000000000000000000..0a4a32827ff351772b1ffd0ba5b4272649e3ff13 Binary files /dev/null and b/system/media/audio/notifications/pizzicato.ogg differ diff --git a/system/media/audio/notifications/regulus.ogg b/system/media/audio/notifications/regulus.ogg new file mode 100644 index 0000000000000000000000000000000000000000..4f28d9ee125d3fccff0de10bb19222109d5407c6 Binary files /dev/null and b/system/media/audio/notifications/regulus.ogg differ diff --git a/system/media/audio/notifications/tweeters.ogg b/system/media/audio/notifications/tweeters.ogg new file mode 100644 index 0000000000000000000000000000000000000000..ecc4c5adc0bb6a19c51d3ebc0ace5b6104382c08 Binary files /dev/null and b/system/media/audio/notifications/tweeters.ogg differ diff --git a/system/media/audio/ringtones/Backroad.ogg b/system/media/audio/ringtones/Backroad.ogg new file mode 100644 index 0000000000000000000000000000000000000000..e1fb8064c15ca6d2c0e958781c78fbeac6ae46f4 Binary files /dev/null and b/system/media/audio/ringtones/Backroad.ogg differ diff --git a/system/media/audio/ringtones/BeatPlucker.ogg b/system/media/audio/ringtones/BeatPlucker.ogg new file mode 100644 index 0000000000000000000000000000000000000000..f1bcef0c5d2655891312c4ef7cf7fb4453f1fb35 Binary files /dev/null and b/system/media/audio/ringtones/BeatPlucker.ogg differ diff --git a/system/media/audio/ringtones/BentleyDubs.ogg b/system/media/audio/ringtones/BentleyDubs.ogg new file mode 100644 index 0000000000000000000000000000000000000000..44c0631858757eee94d35980ba7ff00bd3ebb187 Binary files /dev/null and b/system/media/audio/ringtones/BentleyDubs.ogg differ diff --git a/system/media/audio/ringtones/BirdLoop.ogg b/system/media/audio/ringtones/BirdLoop.ogg new file mode 100644 index 0000000000000000000000000000000000000000..b484582f51045c815300f2f38015e02fe5f6ea6b Binary files /dev/null and b/system/media/audio/ringtones/BirdLoop.ogg differ diff --git a/system/media/audio/ringtones/CaribbeanIce.ogg b/system/media/audio/ringtones/CaribbeanIce.ogg new file mode 100644 index 0000000000000000000000000000000000000000..75251236eeba59a12cc4e9801948cc24876aa262 Binary files /dev/null and b/system/media/audio/ringtones/CaribbeanIce.ogg differ diff --git a/system/media/audio/ringtones/Champagne_Edition.ogg b/system/media/audio/ringtones/Champagne_Edition.ogg new file mode 100644 index 0000000000000000000000000000000000000000..0ba8be5e6a0f8e4a2b51df4992fa8188f818b835 Binary files /dev/null and b/system/media/audio/ringtones/Champagne_Edition.ogg differ diff --git a/system/media/audio/ringtones/CrayonRock.ogg b/system/media/audio/ringtones/CrayonRock.ogg new file mode 100644 index 0000000000000000000000000000000000000000..6827aa5ba7e6bef90a58f86d61373d7fdcefda26 Binary files /dev/null and b/system/media/audio/ringtones/CrayonRock.ogg differ diff --git a/system/media/audio/ringtones/CurveBall.ogg b/system/media/audio/ringtones/CurveBall.ogg new file mode 100644 index 0000000000000000000000000000000000000000..733a004d62547d710459b2cff899a8f20e95f771 Binary files /dev/null and b/system/media/audio/ringtones/CurveBall.ogg differ diff --git a/system/media/audio/ringtones/DancinFool.ogg b/system/media/audio/ringtones/DancinFool.ogg new file mode 100644 index 0000000000000000000000000000000000000000..39e3b8ab9a6119f432306af7a11c0c6fa4600809 Binary files /dev/null and b/system/media/audio/ringtones/DancinFool.ogg differ diff --git a/system/media/audio/ringtones/Enter_the_Nexus.ogg b/system/media/audio/ringtones/Enter_the_Nexus.ogg new file mode 100644 index 0000000000000000000000000000000000000000..ba304541d4e2870bdaf360c399fb5ac72ee7f87b Binary files /dev/null and b/system/media/audio/ringtones/Enter_the_Nexus.ogg differ diff --git a/system/media/audio/ringtones/Eridani.ogg b/system/media/audio/ringtones/Eridani.ogg new file mode 100644 index 0000000000000000000000000000000000000000..b665a29fd4a24d033bb6848fc1a5af35a01d8414 Binary files /dev/null and b/system/media/audio/ringtones/Eridani.ogg differ diff --git a/system/media/audio/ringtones/Gimme_Mo_Town.ogg b/system/media/audio/ringtones/Gimme_Mo_Town.ogg new file mode 100644 index 0000000000000000000000000000000000000000..a1969358fd6ddc093fc9ab877337798107847bb5 Binary files /dev/null and b/system/media/audio/ringtones/Gimme_Mo_Town.ogg differ diff --git a/system/media/audio/ringtones/Growl.ogg b/system/media/audio/ringtones/Growl.ogg new file mode 100644 index 0000000000000000000000000000000000000000..c54bde0d2182440cf2893dfb52d39ecd775aedfe Binary files /dev/null and b/system/media/audio/ringtones/Growl.ogg differ diff --git a/system/media/audio/ringtones/HalfwayHome.ogg b/system/media/audio/ringtones/HalfwayHome.ogg new file mode 100644 index 0000000000000000000000000000000000000000..4ece7cab10d58439653636385084a1084f186563 Binary files /dev/null and b/system/media/audio/ringtones/HalfwayHome.ogg differ diff --git a/system/media/audio/ringtones/LoopyLounge.ogg b/system/media/audio/ringtones/LoopyLounge.ogg new file mode 100644 index 0000000000000000000000000000000000000000..6d168cd049f1befde231a476f0dfe76ded782d66 Binary files /dev/null and b/system/media/audio/ringtones/LoopyLounge.ogg differ diff --git a/system/media/audio/ringtones/LoveFlute.ogg b/system/media/audio/ringtones/LoveFlute.ogg new file mode 100644 index 0000000000000000000000000000000000000000..16cf413fe84583de76258737d76fc884b5bd94e6 Binary files /dev/null and b/system/media/audio/ringtones/LoveFlute.ogg differ diff --git a/system/media/audio/ringtones/MidEvilJaunt.ogg b/system/media/audio/ringtones/MidEvilJaunt.ogg new file mode 100644 index 0000000000000000000000000000000000000000..66d7fad4018840240322cf7195aa27c15180900f Binary files /dev/null and b/system/media/audio/ringtones/MidEvilJaunt.ogg differ diff --git a/system/media/audio/ringtones/MildlyAlarming.ogg b/system/media/audio/ringtones/MildlyAlarming.ogg new file mode 100644 index 0000000000000000000000000000000000000000..9025b18ad1e67c5c90c62d1f1b5646943bfda420 Binary files /dev/null and b/system/media/audio/ringtones/MildlyAlarming.ogg differ diff --git a/system/media/audio/ringtones/Noises3.ogg b/system/media/audio/ringtones/Noises3.ogg new file mode 100644 index 0000000000000000000000000000000000000000..3607c2a1d53b10a1f25d784e98f2e962b727adb3 Binary files /dev/null and b/system/media/audio/ringtones/Noises3.ogg differ diff --git a/system/media/audio/ringtones/Orion.ogg b/system/media/audio/ringtones/Orion.ogg new file mode 100644 index 0000000000000000000000000000000000000000..0323e4d811a94479c94152155ff1b1422cf77bc2 Binary files /dev/null and b/system/media/audio/ringtones/Orion.ogg differ diff --git a/system/media/audio/ringtones/Ring_Digital_02.ogg b/system/media/audio/ringtones/Ring_Digital_02.ogg new file mode 100644 index 0000000000000000000000000000000000000000..f823739047def0c2757d9ab5f8cdadfc39482cc2 Binary files /dev/null and b/system/media/audio/ringtones/Ring_Digital_02.ogg differ diff --git a/system/media/audio/ringtones/Road_Trip.ogg b/system/media/audio/ringtones/Road_Trip.ogg new file mode 100644 index 0000000000000000000000000000000000000000..cd14ef13e145e087479ee6e782e93ff1cb0c58d1 Binary files /dev/null and b/system/media/audio/ringtones/Road_Trip.ogg differ diff --git a/system/media/audio/ringtones/Safari.ogg b/system/media/audio/ringtones/Safari.ogg new file mode 100644 index 0000000000000000000000000000000000000000..fa2d4ed84525fe5fd78700e0ca8d6f8608082432 Binary files /dev/null and b/system/media/audio/ringtones/Safari.ogg differ diff --git a/system/media/audio/ringtones/SilkyWay.ogg b/system/media/audio/ringtones/SilkyWay.ogg new file mode 100644 index 0000000000000000000000000000000000000000..e5a38ec05c0f0e56aee11ec762b950069e56ec7e Binary files /dev/null and b/system/media/audio/ringtones/SilkyWay.ogg differ diff --git a/system/media/audio/ringtones/SitarVsSitar.ogg b/system/media/audio/ringtones/SitarVsSitar.ogg new file mode 100644 index 0000000000000000000000000000000000000000..cfe9c8043153a08536600773a878fa9edabcf34c Binary files /dev/null and b/system/media/audio/ringtones/SitarVsSitar.ogg differ diff --git a/system/media/audio/ringtones/Steppin_Out.ogg b/system/media/audio/ringtones/Steppin_Out.ogg new file mode 100644 index 0000000000000000000000000000000000000000..5ee5fd18e44d97f7f4ec8daa2bdd09f7b146a445 Binary files /dev/null and b/system/media/audio/ringtones/Steppin_Out.ogg differ diff --git a/system/media/audio/ringtones/Terminated.ogg b/system/media/audio/ringtones/Terminated.ogg new file mode 100644 index 0000000000000000000000000000000000000000..b98005397015bf2075d92648c06e82864479563f Binary files /dev/null and b/system/media/audio/ringtones/Terminated.ogg differ diff --git a/system/media/audio/ringtones/UrsaMinor.ogg b/system/media/audio/ringtones/UrsaMinor.ogg new file mode 100644 index 0000000000000000000000000000000000000000..30d2cd1d1763b3ff4e5143542cc08f9f906168bd Binary files /dev/null and b/system/media/audio/ringtones/UrsaMinor.ogg differ diff --git a/system/media/audio/ringtones/VeryAlarmed.ogg b/system/media/audio/ringtones/VeryAlarmed.ogg new file mode 100644 index 0000000000000000000000000000000000000000..bfb63f48c7c35ca4131280555f494553ee789ca3 Binary files /dev/null and b/system/media/audio/ringtones/VeryAlarmed.ogg differ diff --git a/system/media/audio/ui/Dock.ogg b/system/media/audio/ui/Dock.ogg new file mode 100644 index 0000000000000000000000000000000000000000..cfe4405a945f422a89dd4b7665d0bd42f5209ed2 Binary files /dev/null and b/system/media/audio/ui/Dock.ogg differ diff --git a/system/media/audio/ui/Effect_Tick.ogg b/system/media/audio/ui/Effect_Tick.ogg new file mode 100644 index 0000000000000000000000000000000000000000..eb1847ea5cb03f373990f13d7dc500b868d002cf Binary files /dev/null and b/system/media/audio/ui/Effect_Tick.ogg differ diff --git a/system/media/audio/ui/KeypressDelete.ogg b/system/media/audio/ui/KeypressDelete.ogg new file mode 100644 index 0000000000000000000000000000000000000000..e21821502b8bce1f41117c985067164d6449ba1f Binary files /dev/null and b/system/media/audio/ui/KeypressDelete.ogg differ diff --git a/system/media/audio/ui/KeypressInvalid.ogg b/system/media/audio/ui/KeypressInvalid.ogg new file mode 100644 index 0000000000000000000000000000000000000000..24935ad2e3baf007ca0709813cf849761d9dbf16 Binary files /dev/null and b/system/media/audio/ui/KeypressInvalid.ogg differ diff --git a/system/media/audio/ui/KeypressReturn.ogg b/system/media/audio/ui/KeypressReturn.ogg new file mode 100644 index 0000000000000000000000000000000000000000..37a6d34928e14ef0a1dc4d9012eea00df8a48f30 Binary files /dev/null and b/system/media/audio/ui/KeypressReturn.ogg differ diff --git a/system/media/audio/ui/KeypressSpacebar.ogg b/system/media/audio/ui/KeypressSpacebar.ogg new file mode 100644 index 0000000000000000000000000000000000000000..69ee792863042001e2d7e1ec4f795634e6912527 Binary files /dev/null and b/system/media/audio/ui/KeypressSpacebar.ogg differ diff --git a/system/media/audio/ui/KeypressStandard.ogg b/system/media/audio/ui/KeypressStandard.ogg new file mode 100644 index 0000000000000000000000000000000000000000..1598c2418ad92f6f2161552308b5c1939a4d174b Binary files /dev/null and b/system/media/audio/ui/KeypressStandard.ogg differ diff --git a/system/media/audio/ui/Lock.ogg b/system/media/audio/ui/Lock.ogg new file mode 100644 index 0000000000000000000000000000000000000000..7e989114b9108d576b56ab9980feaa107f70a472 Binary files /dev/null and b/system/media/audio/ui/Lock.ogg differ diff --git a/system/media/audio/ui/LowBattery.ogg b/system/media/audio/ui/LowBattery.ogg new file mode 100644 index 0000000000000000000000000000000000000000..ab9eba356348165ca2ebccace0c0d2bb1c95d650 Binary files /dev/null and b/system/media/audio/ui/LowBattery.ogg differ diff --git a/system/media/audio/ui/Trusted.ogg b/system/media/audio/ui/Trusted.ogg new file mode 100644 index 0000000000000000000000000000000000000000..2b63c39f66808ac374df2ba6b6062fc07f06d632 Binary files /dev/null and b/system/media/audio/ui/Trusted.ogg differ diff --git a/system/media/audio/ui/Undock.ogg b/system/media/audio/ui/Undock.ogg new file mode 100644 index 0000000000000000000000000000000000000000..f00fa76a65a0b73c6b1b413c19c6d22d84cd44ca Binary files /dev/null and b/system/media/audio/ui/Undock.ogg differ diff --git a/system/media/audio/ui/Unlock.ogg b/system/media/audio/ui/Unlock.ogg new file mode 100644 index 0000000000000000000000000000000000000000..851eed5063ff8125c5c9f3fd6dd36ea3c7305612 Binary files /dev/null and b/system/media/audio/ui/Unlock.ogg differ diff --git a/system/media/audio/ui/VideoRecord.ogg b/system/media/audio/ui/VideoRecord.ogg new file mode 100644 index 0000000000000000000000000000000000000000..3eefaed4ce38867169bcdf1c7763f84b9802eb1f Binary files /dev/null and b/system/media/audio/ui/VideoRecord.ogg differ diff --git a/system/media/audio/ui/VideoStop.ogg b/system/media/audio/ui/VideoStop.ogg new file mode 100644 index 0000000000000000000000000000000000000000..7fd9f477609154963d3a510f97a5effaedb092a6 Binary files /dev/null and b/system/media/audio/ui/VideoStop.ogg differ diff --git a/system/media/audio/ui/WirelessChargingStarted.ogg b/system/media/audio/ui/WirelessChargingStarted.ogg new file mode 100644 index 0000000000000000000000000000000000000000..66f6cd251822410b0031d8b8962fcdb2a4e2f5ac Binary files /dev/null and b/system/media/audio/ui/WirelessChargingStarted.ogg differ diff --git a/system/media/audio/ui/camera_click.ogg b/system/media/audio/ui/camera_click.ogg new file mode 100644 index 0000000000000000000000000000000000000000..b836e109480b21a4310eb13d9621d92c76f4cdfe Binary files /dev/null and b/system/media/audio/ui/camera_click.ogg differ diff --git a/system/media/audio/ui/camera_focus.ogg b/system/media/audio/ui/camera_focus.ogg new file mode 100644 index 0000000000000000000000000000000000000000..0db2683ad5f46b2bf1d53b6bab5bc1c8dd95092c Binary files /dev/null and b/system/media/audio/ui/camera_focus.ogg differ diff --git a/system/media/bootanimation.zip b/system/media/bootanimation.zip new file mode 100644 index 0000000000000000000000000000000000000000..3984473625e544edcd2d041042affc2e1e4325d9 Binary files /dev/null and b/system/media/bootanimation.zip differ diff --git a/system/media/shutanimation.zip b/system/media/shutanimation.zip new file mode 100644 index 0000000000000000000000000000000000000000..ca4c9f06e7332ac5c4437dded51cd413864b7fad Binary files /dev/null and b/system/media/shutanimation.zip differ diff --git a/system/recovery-from-boot.p b/system/recovery-from-boot.p new file mode 100644 index 0000000000000000000000000000000000000000..fc2485cf3c37ce9e780a26dd3448a868620d7269 Binary files /dev/null and b/system/recovery-from-boot.p differ diff --git a/system/usr/hyphen-data/hyph-as.hyb b/system/usr/hyphen-data/hyph-as.hyb new file mode 100644 index 0000000000000000000000000000000000000000..43a9527faa7f8486040191961b2d73d678f314f0 Binary files /dev/null and b/system/usr/hyphen-data/hyph-as.hyb differ diff --git a/system/usr/hyphen-data/hyph-as.lic.txt b/system/usr/hyphen-data/hyph-as.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e08205c2de12832dcb1b3da48d8eaf04e063e61 --- /dev/null +++ b/system/usr/hyphen-data/hyph-as.lic.txt @@ -0,0 +1,26 @@ +% These patterns originate from +% https://github.com/santhoshtr/hyphenation/) +% and have been adapted for hyph-utf8 (for use in TeX). +% +% Hyphenation for Assamese +% Copyright (C) 2016 Santhosh Thottingal (santhosh dot thottingal at gmail dot com) +% +% Permission is hereby granted, free of charge, to any person obtaining +% a copy of this software and associated documentation files (the +% "Software"), to deal in the Software without restriction, including +% without limitation the rights to use, copy, modify, merge, publish, +% distribute, sublicense, and/or sell copies of the Software, and to +% permit persons to whom the Software is furnished to do so, subject to +% the following conditions: +% +% The above copyright notice and this permission notice shall be +% included in all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +% diff --git a/system/usr/hyphen-data/hyph-bg.hyb b/system/usr/hyphen-data/hyph-bg.hyb new file mode 100644 index 0000000000000000000000000000000000000000..3f46fa1c951fa92322e532b53c1dabd88cb17cdf Binary files /dev/null and b/system/usr/hyphen-data/hyph-bg.hyb differ diff --git a/system/usr/hyphen-data/hyph-bg.lic.txt b/system/usr/hyphen-data/hyph-bg.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..26fa73e85f860abc2ac51e4ed7caf6eb978e32ad --- /dev/null +++ b/system/usr/hyphen-data/hyph-bg.lic.txt @@ -0,0 +1,76 @@ +% copyright: Copyright (c) 1994-2008, Georgi Boshnakov +% title: Bulgarian hyphenation patterns +% version: 1.7, July 2008 +% language: +% name: Bulgarian +% code: bg +% notice: > +% This file is part of the hyph-utf8 package. +% See http://www.hyphenation.org for more information. +% authors: +% - +% name: Georgi Boshnakov +% contact: manchester.ac.uk:georgi.boshnakov +% licence: +% name: MIT +% url: https://opensource.org/licenses/MIT +% text: > +% Permission is hereby granted, free of charge, to any person +% obtaining a copy of this software and associated documentation +% files (the "Software"), to deal in the Software without +% restriction, including without limitation the rights to use, +% copy, modify, merge, publish, distribute, sublicense, and/or sell +% copies of the Software, and to permit persons to whom the +% Software is furnished to do so, subject to the following +% conditions: +% +% The above copyright notice and this permission notice shall be +% included in all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +% OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +% HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +% WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +% FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +% OTHER DEALINGS IN THE SOFTWARE. +% hyphenmins: +% for_typesetting: +% left: 2 +% right: 2 +% changes: +% - +% date: 2008-06 +% description: Changed encoding to UTF-8 +% - +% date: 2006-05 +% description: Added copyright notice +% - +% date: 2000-06 +% description: Minor changes +% - +% date: 1994 +% description: First version +% ========================================== +% Note: The original name of this file was 'bghyphsi.tex' which is +% part of the package 'bghyphen'. The package 'bghyphen' is now +% obsolete but it is still available on CTAN and currently (June 2008) +% gives the same hyphenation results. +% +% +% +% To make TeX use these patterns: +% +% (1) Make sure that the hyph-utf8 package is present in your TeX +% system. +% +% (2) generate the necessary formats (TeX, LaTeX, pdfLaTeX, etc), +% instructing TeX to load 'loadhyph-bg.tex' for Bulgarian +% hyphenation. +% +% The LaTeX babel package sets \lefthyphenmin and \righthyphenmin to 2 +% when the language is switched to Bulgarian. Developers who write +% support for Bulgarian outside LaTeX and/or babel need to take care +% of this. +% diff --git a/system/usr/hyphen-data/hyph-bn.hyb b/system/usr/hyphen-data/hyph-bn.hyb new file mode 100644 index 0000000000000000000000000000000000000000..43a9527faa7f8486040191961b2d73d678f314f0 Binary files /dev/null and b/system/usr/hyphen-data/hyph-bn.hyb differ diff --git a/system/usr/hyphen-data/hyph-bn.lic.txt b/system/usr/hyphen-data/hyph-bn.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..1237413facadb880deee7226fd5abb346defd6de --- /dev/null +++ b/system/usr/hyphen-data/hyph-bn.lic.txt @@ -0,0 +1,26 @@ +% These patterns originate from +% https://github.com/santhoshtr/hyphenation/) +% and have been adapted for hyph-utf8 (for use in TeX). +% +% Hyphenation for Bengali +% Copyright (C) 2016 Santhosh Thottingal (santhosh dot thottingal at gmail dot com) +% +% Permission is hereby granted, free of charge, to any person obtaining +% a copy of this software and associated documentation files (the +% "Software"), to deal in the Software without restriction, including +% without limitation the rights to use, copy, modify, merge, publish, +% distribute, sublicense, and/or sell copies of the Software, and to +% permit persons to whom the Software is furnished to do so, subject to +% the following conditions: +% +% The above copyright notice and this permission notice shall be +% included in all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +% diff --git a/system/usr/hyphen-data/hyph-cu.hyb b/system/usr/hyphen-data/hyph-cu.hyb new file mode 100644 index 0000000000000000000000000000000000000000..904e6d9f9d136bb9ede14f3d8171c294536f0b4d Binary files /dev/null and b/system/usr/hyphen-data/hyph-cu.hyb differ diff --git a/system/usr/hyphen-data/hyph-cu.lic.txt b/system/usr/hyphen-data/hyph-cu.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..e646915130433cbfaac1c4e065835ff726c522cb --- /dev/null +++ b/system/usr/hyphen-data/hyph-cu.lic.txt @@ -0,0 +1,29 @@ +% copyright: Copyright (c) 2016 Aleksandr Andreev and Mike Kroutikov +% title: Hyphenation patterns for Church Slavonic +% version: 1.0 +% notice: > +% This file is part of the hyph-utf8 package. +% See http://www.hyphenation.org for more information. +% licence: +% name: MIT +% url: https://opensource.org/licenses/MIT +% text: > +% Permission is hereby granted, free of charge, to any person obtaining +% a copy of this software and associated documentation files (the +% "Software"), to deal in the Software without restriction, including +% without limitation the rights to use, copy, modify, merge, publish, +% distribute, sublicense, and/or sell copies of the Software, and to +% permit persons to whom the Software is furnished to do so, subject to +% the following conditions: +% +% The above copyright notice and this permission notice shall be +% included in all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS +% BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +% ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +% CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +% SOFTWARE. diff --git a/system/usr/hyphen-data/hyph-cy.hyb b/system/usr/hyphen-data/hyph-cy.hyb new file mode 100644 index 0000000000000000000000000000000000000000..5afe8aaaeb6157debe64bac35c5dd180b1513252 Binary files /dev/null and b/system/usr/hyphen-data/hyph-cy.hyb differ diff --git a/system/usr/hyphen-data/hyph-cy.lic.txt b/system/usr/hyphen-data/hyph-cy.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f9217a0f981ead62f5497cc52b66ebaf9671487 --- /dev/null +++ b/system/usr/hyphen-data/hyph-cy.lic.txt @@ -0,0 +1,37 @@ +% copyright: Copyright 1996 Yannis Haralambous +% title: Welsh hyphenation patterns +% version: 1996 +% notice: > +% This file is part of the hyph-utf8 package. +% See http://www.hyphenation.org for more information. +% licence: +% - This file is available under the following license. +% name: MIT +% url: https://opensource.org/licences/MIT +% text: > +% Permission is hereby granted, free of charge, to any person +% obtaining a copy of this software and associated documentation +% files (the "Software"), to deal in the Software without +% restriction, including without limitation the rights to use, +% copy, modify, merge, publish, distribute, sublicense, and/or sell +% copies of the Software, and to permit persons to whom the +% Software is furnished to do so, subject to the following +% conditions: +% +% The above copyright notice and this permission notice shall be +% included in all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +% OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +% HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +% WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +% FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +% OTHER DEALINGS IN THE SOFTWARE. +% changes: +% - 1996 - last change to patterns +% - 2008 - inclusion into hyph-utf8 and file rename (cyhyph.tex -> hyph-cy.tex) +% - June 2011 - added LPPL licence +% - March 2016 - added MIT licence +% diff --git a/system/usr/hyphen-data/hyph-da.hyb b/system/usr/hyphen-data/hyph-da.hyb new file mode 100644 index 0000000000000000000000000000000000000000..f33f4307adc7772b19df57dae56aa51993b669ba Binary files /dev/null and b/system/usr/hyphen-data/hyph-da.hyb differ diff --git a/system/usr/hyphen-data/hyph-da.lic.txt b/system/usr/hyphen-data/hyph-da.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..b582cbe5ad7240e554b75363fb9bbb813e1b5bad --- /dev/null +++ b/system/usr/hyphen-data/hyph-da.lic.txt @@ -0,0 +1,34 @@ +% copyright: Copyright 1994 Frank Jensen +% title: Hyphenation patterns for Danish +% version: 2011-01-11 +% notice: > +% This file is part of the hyph-utf8 package. +% See http://www.hyphenation.org for more information. +% licence: +% - This file is available under the following license: +% name: MIT +% url: https://opensource.org/licenses/MIT +% text: > +% Permission is hereby granted, free of charge, to any person +% obtaining a copy of this software and associated documentation +% files (the "Software"), to deal in the Software without +% restriction, including without limitation the rights to use, +% copy, modify, merge, publish, distribute, sublicense, and/or sell +% copies of the Software, and to permit persons to whom the +% Software is furnished to do so, subject to the following +% conditions: +% +% The above copyright notice and this permission notice shall be +% included in all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +% OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +% HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +% WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +% FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +% OTHER DEALINGS IN THE SOFTWARE. +% changes: +% - 2011-01-11 - remove support for OT1 encoding +% diff --git a/system/usr/hyphen-data/hyph-de-1901.hyb b/system/usr/hyphen-data/hyph-de-1901.hyb new file mode 100644 index 0000000000000000000000000000000000000000..cbb8107d17c2cd9aac71004d30f79c27ea98a10b Binary files /dev/null and b/system/usr/hyphen-data/hyph-de-1901.hyb differ diff --git a/system/usr/hyphen-data/hyph-de-1901.lic.txt b/system/usr/hyphen-data/hyph-de-1901.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..025bd5e5a9ef46ab5dc18616c734ab999bf84a54 --- /dev/null +++ b/system/usr/hyphen-data/hyph-de-1901.lic.txt @@ -0,0 +1,29 @@ +% dehypht-x-2015-12-14.pat + +\message{German Hyphenation Patterns (Traditional Orthography) `dehypht-x' 2015-12-13 (WL)} + +% TeX-Trennmuster für die traditionelle deutsche Rechtschreibung +% +% Copyright (c) 2013-2015 +% Stephan Hennig, Werner Lemberg, Guenter Milde, Sander van Geloven, +% Georg Pfeiffer, Gisbert W. Selke, Tobias Wendorf +% +% Licensed under the MIT license. Full license text available from +% +% http://opensource.org/licenses/mit-license.php +% +% +% The word list is available from +% +% http://repo.or.cz/w/wortliste.git?a=commit;h=43e8e53dd38c4ba975e944fe07db3d8945fb30e0 +% +% The used patgen parameters are +% +% 1 1 | 2 5 | 1 1 1 +% 2 2 | 2 5 | 1 2 1 +% 3 3 | 2 6 | 1 1 1 +% 4 4 | 2 6 | 1 4 1 +% 5 5 | 2 7 | 1 1 1 +% 6 6 | 2 7 | 1 6 1 +% 7 7 | 2 13 | 1 4 1 +% 8 8 | 2 13 | 1 8 1 diff --git a/system/usr/hyphen-data/hyph-de-1996.hyb b/system/usr/hyphen-data/hyph-de-1996.hyb new file mode 100644 index 0000000000000000000000000000000000000000..f69314647b58690629e31e0afa2031bd22b281ef Binary files /dev/null and b/system/usr/hyphen-data/hyph-de-1996.hyb differ diff --git a/system/usr/hyphen-data/hyph-de-1996.lic.txt b/system/usr/hyphen-data/hyph-de-1996.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0edb4ab4ad88e283b522af364944728e5abef88 --- /dev/null +++ b/system/usr/hyphen-data/hyph-de-1996.lic.txt @@ -0,0 +1,29 @@ +% dehyphn-x-2015-12-14.pat + +\message{German Hyphenation Patterns (Reformed Orthography, 2006) `dehyphn-x' 2015-12-13 (WL)} + +% TeX-Trennmuster für die reformierte (2006) deutsche Rechtschreibung +% +% Copyright (c) 2013-2015 +% Stephan Hennig, Werner Lemberg, Guenter Milde, Sander van Geloven, +% Georg Pfeiffer, Gisbert W. Selke, Tobias Wendorf +% +% Licensed under the MIT license. Full license text available from +% +% http://opensource.org/licenses/mit-license.php +% +% +% The word list is available from +% +% http://repo.or.cz/w/wortliste.git?a=commit;h=43e8e53dd38c4ba975e944fe07db3d8945fb30e0 +% +% The used patgen parameters are +% +% 1 1 | 2 5 | 1 1 1 +% 2 2 | 2 5 | 1 2 1 +% 3 3 | 2 6 | 1 1 1 +% 4 4 | 2 6 | 1 4 1 +% 5 5 | 2 7 | 1 1 1 +% 6 6 | 2 7 | 1 6 1 +% 7 7 | 2 13 | 1 4 1 +% 8 8 | 2 13 | 1 8 1 diff --git a/system/usr/hyphen-data/hyph-de-ch-1901.hyb b/system/usr/hyphen-data/hyph-de-ch-1901.hyb new file mode 100644 index 0000000000000000000000000000000000000000..1de5d611773016df57a863afd4bf8141f327c9b5 Binary files /dev/null and b/system/usr/hyphen-data/hyph-de-ch-1901.hyb differ diff --git a/system/usr/hyphen-data/hyph-de-ch-1901.lic.txt b/system/usr/hyphen-data/hyph-de-ch-1901.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..07a4f40cc90f974d8c77b79660e53aa3013cad3e --- /dev/null +++ b/system/usr/hyphen-data/hyph-de-ch-1901.lic.txt @@ -0,0 +1,30 @@ +% dehyphts-x-2015-12-14.pat + +\message{Swiss-German Hyphenation Patterns (Traditional Orthography) `dehyphts-x' 2015-12-13 (WL)} + +% TeX-Trennmuster für die traditionelle deutsch-schweizerische +% Rechtschreibung +% +% Copyright (c) 2013-2015 +% Stephan Hennig, Werner Lemberg, Guenter Milde, Sander van Geloven, +% Georg Pfeiffer, Gisbert W. Selke, Tobias Wendorf +% +% Licensed under the MIT license. Full license text available from +% +% http://opensource.org/licenses/mit-license.php +% +% +% The word list is available from +% +% http://repo.or.cz/w/wortliste.git?a=commit;h=43e8e53dd38c4ba975e944fe07db3d8945fb30e0 +% +% The used patgen parameters are +% +% 1 1 | 2 5 | 1 1 1 +% 2 2 | 2 5 | 1 2 1 +% 3 3 | 2 6 | 1 1 1 +% 4 4 | 2 6 | 1 4 1 +% 5 5 | 2 7 | 1 1 1 +% 6 6 | 2 7 | 1 6 1 +% 7 7 | 2 13 | 1 4 1 +% 8 8 | 2 13 | 1 8 1 diff --git a/system/usr/hyphen-data/hyph-en-gb.hyb b/system/usr/hyphen-data/hyph-en-gb.hyb new file mode 100644 index 0000000000000000000000000000000000000000..8b2ca3395de7a390675c9fbaa004ebcfc809560f Binary files /dev/null and b/system/usr/hyphen-data/hyph-en-gb.hyb differ diff --git a/system/usr/hyphen-data/hyph-en-gb.lic.txt b/system/usr/hyphen-data/hyph-en-gb.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c0ae23df0685393007c59c4c5376d53517d38f4 --- /dev/null +++ b/system/usr/hyphen-data/hyph-en-gb.lic.txt @@ -0,0 +1,75 @@ +% This file was renamed from hyph-en-gb.tex to hyph-en-gb.tex(unicode-licence) in December +% 2015 following a request from 肖湘晔 (Xiangye Xiao) to modify the licence in order to allow it +% to be included in the Unicode data files archive. Following discussions between 肖湘晔, +% Dominik Wujastyk and myself (Philip Taylor), it has been agreed that the version uploaded +% to Unicode will have a unique name and carry the Unicode licence. +% +% This file was previously renamed from ukhyphen.tex to hyph-en-gb.tex in June 2008 +% for consistency with other files with hyphenation patterns in hyph-utf8 package. +% No other changes made. See http://www.tug.org/tex-hyphen for more details. +% +% Original-file: ukhyphen.tex +% TeX hyphenation patterns for UK English +% +% This file is licensed under the UNICODE, INC. LICENCE AGREEMENT - DATA FILES AND SOFTWARE <http://unicode.org/copyright.html#Exhibit1> +% +% Copyright (c) 1996 Dominik Wujastyk. +% Distributed under the Terms of Use in +% http://www.unicode.org/copyright.html. +% +% Permission is hereby granted, free of charge, to any person obtaining +% a copy of the Unicode data files and any associated documentation +% (the "Data Files") or Unicode software and any associated documentation +% (the "Software") to deal in the Data Files or Software +% without restriction, including without limitation the rights to use, +% copy, modify, merge, publish, distribute, and/or sell copies of +% the Data Files or Software, and to permit persons to whom the Data Files +% or Software are furnished to do so, provided that +% (a) this copyright and permission notice appear with all copies +% of the Data Files or Software, +% (b) this copyright and permission notice appear in associated +% documentation, and +% (c) there is clear notice in each modified Data File or in the Software +% as well as in the documentation associated with the Data File(s) or +% Software that the data or software has been modified. +% +% THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +% ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +% WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +% NONINFRINGEMENT OF THIRD PARTY RIGHTS. +% IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +% NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +% DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +% DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +% TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +% PERFORMANCE OF THE DATA FILES OR SOFTWARE. +% +% Except as contained in this notice, the name of a copyright holder +% shall not be used in advertising or otherwise to promote the sale, +% use or other dealings in these Data Files or Software without prior +% written authorization of the copyright holder. +% +% $Log: ukhyph.tex $ +% Revision 2.0 1996/09/10 15:04:04 ucgadkw +% o added list of hyphenation exceptions at the end of this file. +% +% +% Version 1.0a. Released 18th October 2005/PT. +% +% Created by Dominik Wujastyk and Graham Toal using Frank Liang's PATGEN 1.0. +% Like the US patterns, these UK patterns correctly hyphenate about 90% of +% the words in the input list, and produce no hyphens not in the list +% (see TeXbook pp. 451--2). +% +% These patterns are based on a file of 114925 British-hyphenated words +% generously made available to Dominik Wujastyk by Oxford University Press. +% This list of words is copyright to the OUP and may not be redistributed. +% The hyphenation break points in the words in the abovementioned file is +% also copyright to the OUP. +% +% We are very grateful to Oxford University Press for allowing us to use +% their list of hyphenated words to produce the following TeX hyphenation +% patterns. This file of hyphenation patterns may be freely distributed. +% +% These patterns require a value of about 14000 for TeX's pattern memory size. +% diff --git a/system/usr/hyphen-data/hyph-en-us.hyb b/system/usr/hyphen-data/hyph-en-us.hyb new file mode 100644 index 0000000000000000000000000000000000000000..db1469a5488088df1c3eae0ca9669db5269bb399 Binary files /dev/null and b/system/usr/hyphen-data/hyph-en-us.hyb differ diff --git a/system/usr/hyphen-data/hyph-en-us.lic.txt b/system/usr/hyphen-data/hyph-en-us.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..88d2bfc0da9c6ccb7888b787a22703df51734788 --- /dev/null +++ b/system/usr/hyphen-data/hyph-en-us.lic.txt @@ -0,0 +1,42 @@ +Hyphenation patterns for American English + +(more info about the licence to be added later) + +% This file has been renamed from ushyphmax.tex to hyph-en-us.tex in June 2008 +% for consistency with other files with hyphenation patterns in hyph-utf8 package. +% No other changes made. See http://www.tug.org/tex-hyphen for more details. + +% ushyphmax.tex -- patterns for more hyphenation pattern memory (12000+). +% Also known as ushyphen.max. +% +% version of 2005-05-30. +% Patterns of March 1, 1990. +% +% Copyright (C) 1990, 2004, 2005 Gerard D.C. Kuiken. +% Copying and distribution of this file, with or without modification, +% are permitted in any medium without royalty provided the copyright +% notice and this notice are preserved. +% +% Needs extended pattern memory. +% Hyphenation trie becomes 7283 with 377 ops. +% +% These patterns are based on the Hyphenation Exception Log +% published in TUGboat, Volume 10 (1989), No. 3, pp. 337-341, +% and a large number of incorrectly hyphenated words not yet published. +% If added to Liang's before the closing bracket } of \patterns, +% the patterns run errorfree as far as known at this moment. +% +% These patterns find all admissible hyphens of the words in +% the Exception Log. ushyph2.tex is a smaller set. +% +% Please send bugs or suggestions to tex-live (at) tug.org. +% +% 2005-05-30 (karl): in the past, ushyphmax.tex was a file containing +% only the additional patterns, without the \patterns command, etc. +% This turned out not to be very useful, since in practice the TeX +% distributions need one self-contained file for a language. Therefore, +% ushyphmax.tex now contains both the additional patterns from +% Dr. Kuiken, and the original patterns and hyphenations from Knuth's +% hyphen.tex. +% +% The Plain TeX hyphenation tables. diff --git a/system/usr/hyphen-data/hyph-es.hyb b/system/usr/hyphen-data/hyph-es.hyb new file mode 100644 index 0000000000000000000000000000000000000000..1ef23304b7e6919e67d8bdcc7e308f9db1876f16 Binary files /dev/null and b/system/usr/hyphen-data/hyph-es.hyb differ diff --git a/system/usr/hyphen-data/hyph-es.lic.txt b/system/usr/hyphen-data/hyph-es.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad392de781fa981318d20c32a7eeda9777feee1a --- /dev/null +++ b/system/usr/hyphen-data/hyph-es.lic.txt @@ -0,0 +1,46 @@ +Spanish hyphenation patterns + +(more info about the licence to be added later) + +% GUIONIZADO DE PALABRAS +% ~~~~~~~~~~~~~~~~~~~~~ +% hyph-es.tex 4.7 +% +% License: MIT/X11 +% +% Copyright (c) 1993, 1997 Javier Bezos +% Copyright (c) 2001-2015 Javier Bezos and CervanTeX +% +% Permission is hereby granted, free of charge, to any person obtaining a copy +% of this software and associated documentation files (the "Software"), to deal +% in the Software without restriction, including without limitation the rights +% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +% copies of the Software, and to permit persons to whom the Software is +% furnished to do so, subject to the following conditions: +% +% The above copyright notice and this permission notice shall be included in +% all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +% AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +% SOFTWARE. +% +% For further info, bug reports and comments: +% +% http://www.tex-tipografia.com/spanish_hyphen.html +% +% I would like to thanks Francesc Carmona for his permission +% to steal parts of his work without restrictions. For his +% patterns, (c) by Francesc Carmona +% +% 2015-11-12 +% +% _____________________________________________________________ +% Javier Bezos | http://www.cervantex.es/ +% ............................................................. +% TeX y tipografia | http://www.tex-tipografia.com/ + diff --git a/system/usr/hyphen-data/hyph-et.hyb b/system/usr/hyphen-data/hyph-et.hyb new file mode 100644 index 0000000000000000000000000000000000000000..bc42bf3afd7ee07272088861282510c08a5999fb Binary files /dev/null and b/system/usr/hyphen-data/hyph-et.hyb differ diff --git a/system/usr/hyphen-data/hyph-et.lic.txt b/system/usr/hyphen-data/hyph-et.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..08b3e87f34cbe8de1b40d24bb86b385f4a25a033 --- /dev/null +++ b/system/usr/hyphen-data/hyph-et.lic.txt @@ -0,0 +1,30 @@ +% This file is part of hyph-utf8 package and resulted from +% semi-manual conversions of hyphenation patterns into UTF-8 in June 2008. +% +% Source: eehyph.tex (2015-12-22) +% Author: Een Saar <saar at aai dot ee> +%------------------------------------------------------------------------------ +% Estonian hyphenation patterns (T1 encoding). +% Copyright (c) 2004-2015 Enn Saar <saar at aai dot ee> +% +% The Estonian pattern data is licensed under the MIT License. +% +% MIT License (https://opensource.org/licenses/MIT): +% +% Permission is hereby granted, free of charge, to any person obtaining a copy +% of this software and associated documentation files (the "Software"), to deal +% in the Software without restriction, including without limitation the rights +% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +% copies of the Software, and to permit persons to whom the Software is +% furnished to do so, subject to the following conditions: +% +% The above copyright notice and this permission notice shall be included in +% all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE +% AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +% THE SOFTWARE. diff --git a/system/usr/hyphen-data/hyph-eu.hyb b/system/usr/hyphen-data/hyph-eu.hyb new file mode 100644 index 0000000000000000000000000000000000000000..b9d6f468f64c1c763190b9dcd7edb4243fcc1981 Binary files /dev/null and b/system/usr/hyphen-data/hyph-eu.hyb differ diff --git a/system/usr/hyphen-data/hyph-eu.lic.txt b/system/usr/hyphen-data/hyph-eu.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..04a11715defa9304f561f2db08a6887a5c834661 --- /dev/null +++ b/system/usr/hyphen-data/hyph-eu.lic.txt @@ -0,0 +1,57 @@ +% copyright: Copyright (c) Juan M. Aguirregabiria 1997, 2008 +% title: Hyphenation patterns for Basque. +% version: June 2008 +% notice: > +% This file is part of the hyph-utf8 package. +% See http://www.hyphenation.org for more information on the package, +% and http://tp.lc.ehu.es/jma/basque.html for details on Basque hyphenation. +% licence: > +% Permission is hereby granted, free of charge, to any person obtaining +% a copy of this file and any associated documentation +% (the "Data Files") to deal in the Data Files +% without restriction, including without limitation the rights to use, +% copy, modify, merge, publish, distribute, and/or sell copies of +% the Data Files, and to permit persons to whom the Data Files +% are furnished to do so, provided that +% (a) this copyright and permission notice appear with all copies +% of the Data Files, +% (b) this copyright and permission notice appear in associated +% documentation, and +% (c) there is clear notice in each modified Data File +% as well as in the documentation associated with the Data File(s) +% that the data has been modified. +% +% THE DATA FILES ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +% ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +% WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +% NONINFRINGEMENT OF THIRD PARTY RIGHTS. +% IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +% NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +% DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +% DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +% TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +% PERFORMANCE OF THE DATA FILES OR SOFTWARE. +% +% Except as contained in this notice, the name of a copyright holder +% shall not be used in advertising or otherwise to promote the sale, +% use or other dealings in these Data Files without prior +% written authorization of the copyright holder. +% changes: +% - > +% February 1997 Patterns created by Juan M. Aguirregabiria, based on the +% shyphen.sh script for Spanish by Julio Sanchez, September 1991. +% - > +% June 2008 Generating script rewritten in Ruby and adapted for native +% UTF-8 TeX engines, patterns renamed from bahyph.tex to +% hyph-eu.tex and added to the hyph-utf8 package. Functionality should +% not change apart from adding ñ by default. +% ========================================== +% +% Open vowels: a e o +% Closed vowels: i u +% Consonants: b c d f g j k l m n ñ p q r s t v w x y z +% +% Some of the patterns below represent combinations that never +% happen in Basque. Would they happen, they would be hyphenated +% according to the rules. +% diff --git a/system/usr/hyphen-data/hyph-fr.hyb b/system/usr/hyphen-data/hyph-fr.hyb new file mode 100644 index 0000000000000000000000000000000000000000..b24b5a2a392660a47bc355d1d66b8fe9fca5d6da Binary files /dev/null and b/system/usr/hyphen-data/hyph-fr.hyb differ diff --git a/system/usr/hyphen-data/hyph-fr.lic.txt b/system/usr/hyphen-data/hyph-fr.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d4579508392819faecf41f660c34cce931d8a45 --- /dev/null +++ b/system/usr/hyphen-data/hyph-fr.lic.txt @@ -0,0 +1,45 @@ +% copyright: Daniel Flipo, Bernard Gaulle 1994-2002 +% title: French hyphenation patterns +% version: V2.12 2002/12/11 +% notice: > +% This file is part of the hyph-utf8 package. +% See http://www.hyphenation.org for more information. +% licence: +% name: MIT +% url: https://opensource.org/licenses/MIT +% text: > +% Permission is hereby granted, free of charge, to any person obtaining +% a copy of this software and associated documentation files (the +% "Software"), to deal in the Software without restriction, including +% without limitation the rights to use, copy, modify, merge, publish, +% distribute, sublicense, and/or sell copies of the Software, and to +% permit persons to whom the Software is furnished to do so, subject to +% the following conditions: +% +% The above copyright notice and this permission notice shall be +% included in all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS +% BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +% ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +% CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +% SOFTWARE. +% ========================================== +%%%%%%%% The most famous good guys who worked hard to obtain something usable. +% Jacques Desarmenien, Universite de Strasbourg : +% - << how to run TeX in a French environment: hyphenation, fonts, +% typography. >> in Tugboat, 5 (1984) 91-102. and TeX85 conference +% - << La division par ordinateur des mots francais : +% application a TeX >> in TSI vol. 5 No 4, 1986 (C) AFCET- +% Gauthier-Villars +% Norman Buckle, UQAH (nb; many additions) +% Michael Ferguson, INRS-Telecommunications (mjf) June 1988 +% Justin Bur, Universite de Montreal (jbb; checked against original list) +% all patterns including apostrophe missing from nb list +% after that, GUTenberg and specially Daniel Flipo and Bernard Gaulle +% did their best effort to improve the list of patterns. +% +% diff --git a/system/usr/hyphen-data/hyph-ga.hyb b/system/usr/hyphen-data/hyph-ga.hyb new file mode 100644 index 0000000000000000000000000000000000000000..3eb376f8db462ecb05a07fc6c68fc447dda4173b Binary files /dev/null and b/system/usr/hyphen-data/hyph-ga.hyb differ diff --git a/system/usr/hyphen-data/hyph-ga.lic.txt b/system/usr/hyphen-data/hyph-ga.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a027729722f336fb1e1620b25472023ae29cc0d --- /dev/null +++ b/system/usr/hyphen-data/hyph-ga.lic.txt @@ -0,0 +1,34 @@ +% copyright: Copyright (C) 2004-2015 Kevin P. Scannell +% title: Hyphenation patterns for Irish +% version: 1.0 (2004-01-23:15:46:12 CST) +% notice: > +% This file is part of the hyph-utf8 package. +% See http://www.hyphenation.org for more information on the package, +% and http://borel.slu.edu/fleiscin/index.html for details on Irish hyphenation. +% license: +% - This file available under the following lincense. +% - +% name: MIT +% url: https://opensource.org/licenses/MIT +% text: > +% Permission is hereby granted, free of charge, to any person +% obtaining a copy of this software and associated documentation +% files (the "Software"), to deal in the Software without +% restriction, including without limitation the rights to use, +% copy, modify, merge, publish, distribute, sublicense, and/or sell +% copies of the Software, and to permit persons to whom the +% Software is furnished to do so, subject to the following +% conditions: +% +% The above copyright notice and this permission notice shall be +% included in all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +% OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +% NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +% HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +% WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +% FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +% OTHER DEALINGS IN THE SOFTWARE. +% diff --git a/system/usr/hyphen-data/hyph-gu.hyb b/system/usr/hyphen-data/hyph-gu.hyb new file mode 100644 index 0000000000000000000000000000000000000000..908ea1ac14d8b4f4d7da66f567ae8c555d605d78 Binary files /dev/null and b/system/usr/hyphen-data/hyph-gu.hyb differ diff --git a/system/usr/hyphen-data/hyph-gu.lic.txt b/system/usr/hyphen-data/hyph-gu.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..42a59cd63f0f18a132d3851d4bf10cf6ca0b01b8 --- /dev/null +++ b/system/usr/hyphen-data/hyph-gu.lic.txt @@ -0,0 +1,26 @@ +% These patterns originate from +% https://github.com/santhoshtr/hyphenation/) +% and have been adapted for hyph-utf8 (for use in TeX). +% +% Hyphenation for Gujarati +% Copyright (C) 2016 Santhosh Thottingal (santhosh dot thottingal at gmail dot com) +% +% Permission is hereby granted, free of charge, to any person obtaining +% a copy of this software and associated documentation files (the +% "Software"), to deal in the Software without restriction, including +% without limitation the rights to use, copy, modify, merge, publish, +% distribute, sublicense, and/or sell copies of the Software, and to +% permit persons to whom the Software is furnished to do so, subject to +% the following conditions: +% +% The above copyright notice and this permission notice shall be +% included in all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +% diff --git a/system/usr/hyphen-data/hyph-hi.hyb b/system/usr/hyphen-data/hyph-hi.hyb new file mode 100644 index 0000000000000000000000000000000000000000..b0b9680f703354453f357256b8ccff4559d0d39c Binary files /dev/null and b/system/usr/hyphen-data/hyph-hi.hyb differ diff --git a/system/usr/hyphen-data/hyph-hi.lic.txt b/system/usr/hyphen-data/hyph-hi.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..7846ee09d2dda7c32a5fb4d0be7defd071d1ab2d --- /dev/null +++ b/system/usr/hyphen-data/hyph-hi.lic.txt @@ -0,0 +1,26 @@ +% These patterns originate from +% https://github.com/santhoshtr/hyphenation/) +% and have been adapted for hyph-utf8 (for use in TeX). +% +% Hyphenation for Hindi +% Copyright (C) 2016 Santhosh Thottingal (santhosh dot thottingal at gmail dot com) +% +% Permission is hereby granted, free of charge, to any person obtaining +% a copy of this software and associated documentation files (the +% "Software"), to deal in the Software without restriction, including +% without limitation the rights to use, copy, modify, merge, publish, +% distribute, sublicense, and/or sell copies of the Software, and to +% permit persons to whom the Software is furnished to do so, subject to +% the following conditions: +% +% The above copyright notice and this permission notice shall be +% included in all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +% diff --git a/system/usr/hyphen-data/hyph-hr.hyb b/system/usr/hyphen-data/hyph-hr.hyb new file mode 100644 index 0000000000000000000000000000000000000000..f73854cfe97d93bb95326b91f9cc55011e5a84df Binary files /dev/null and b/system/usr/hyphen-data/hyph-hr.hyb differ diff --git a/system/usr/hyphen-data/hyph-hr.lic.txt b/system/usr/hyphen-data/hyph-hr.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..122943c9ffcf936d1498510135a340ad678321bb --- /dev/null +++ b/system/usr/hyphen-data/hyph-hr.lic.txt @@ -0,0 +1,45 @@ +% copyright: Copyright (C) 1994, 1996, 2011, 2015 Igor Marinović +% title: Hyphenation patterns for Croatian language +% notice: > +% This file is part of the hyph-utf8 package. +% See http://www.hyphenation.org for more information. +% +% license: +% - This file is available under the following license. +% text: > +% Permission is hereby granted, free of charge, to any person obtaining +% a copy of this file and any associated documentation +% (the "Data Files") to deal in the Data Files +% without restriction, including without limitation the rights to use, +% copy, modify, merge, publish, distribute, and/or sell copies of +% the Data Files, and to permit persons to whom the Data Files +% are furnished to do so, provided that +% (a) this copyright and permission notice appear with all copies +% of the Data Files, +% (b) this copyright and permission notice appear in associated +% documentation, and +% (c) there is clear notice in each modified Data File +% as well as in the documentation associated with the Data File(s) +% that the data has been modified. +% +% THE DATA FILES ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +% ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +% WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +% NONINFRINGEMENT OF THIRD PARTY RIGHTS. +% IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +% NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +% DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +% DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +% TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +% PERFORMANCE OF THE DATA FILES. +% +% Except as contained in this notice, the name of a copyright holder +% shall not be used in advertising or otherwise to promote the sale, +% use or other dealings in these Data Files without prior +% written authorization of the copyright holder. +% changes: +% - Late 1994 first version +% - Beginning of 1996 much more improved version (date of last change: 19.03.1996). +% - In summer 2008 patterns incorporated into hyph-utf8 and renamed from hrhyph.tex to hyph-hr.tex. +% - 06.06.2011 LPPL licence added. +% diff --git a/system/usr/hyphen-data/hyph-hu.hyb b/system/usr/hyphen-data/hyph-hu.hyb new file mode 100644 index 0000000000000000000000000000000000000000..95d819411a98baff4a75d175416ea5c4a9c0b67e Binary files /dev/null and b/system/usr/hyphen-data/hyph-hu.hyb differ diff --git a/system/usr/hyphen-data/hyph-hu.lic.txt b/system/usr/hyphen-data/hyph-hu.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ec8355b8bae0ff9e06220e00ada4dd6abcb3cac --- /dev/null +++ b/system/usr/hyphen-data/hyph-hu.lic.txt @@ -0,0 +1,48 @@ +Hungarian hyphenation patterns (v20110815) + +(more info about the licence to be added later) + +% from https://github.com/nagybence/huhyphn/ +% ------------------------------------------ +% Huhyphn - hungarian hyphenation patterns v20110815 +% +% ***** BEGIN LICENSE BLOCK ***** +% Version: MPL 1.1/GPL 2.0/LGPL 2.1 +% +% The contents of this file are subject to the Mozilla Public License Version +% 1.1 (the "License"); you may not use this file except in compliance with +% the License. You may obtain a copy of the License at +% http://www.mozilla.org/MPL/ +% +% Software distributed under the License is distributed on an "AS IS" basis, +% WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +% for the specific language governing rights and limitations under the +% License. +% +% The Original Code is the Huhyphn - hungarian hyphenation patterns. +% +% The Initial Developer of the Original Code is +% Bence Nagy. +% Portions created by the Initial Developer are Copyright (C) 2003 +% the Initial Developer. All Rights Reserved. +% +% Contributor(s): +% Bence Nagy <bence.nagy@gmail.com> +% +% Alternatively, the contents of this file may be used under the terms of +% either the GNU General Public License Version 2 or later (the "GPL"), or +% the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), +% in which case the provisions of the GPL or the LGPL are applicable instead +% of those above. If you wish to allow use of your version of this file only +% under the terms of either the GPL or the LGPL, and not to allow others to +% use your version of this file under the terms of the MPL, indicate your +% decision by deleting the provisions above and replace them with the notice +% and other provisions required by the GPL or the LGPL. If you do not delete +% the provisions above, a recipient may use your version of this file under +% the terms of any one of the MPL, the GPL or the LGPL. +% +% ***** END LICENSE BLOCK ***** +% +% Encoding: UTF8 +% +\message{Huhyphn - hungarian hyphenation patterns v20110815} diff --git a/system/usr/hyphen-data/hyph-hy.hyb b/system/usr/hyphen-data/hyph-hy.hyb new file mode 100644 index 0000000000000000000000000000000000000000..1bb183289f7d57c0c6f564804ef222de3075be34 Binary files /dev/null and b/system/usr/hyphen-data/hyph-hy.hyb differ diff --git a/system/usr/hyphen-data/hyph-hy.lic.txt b/system/usr/hyphen-data/hyph-hy.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a44200b7c5fa9c742f3e50d40f486786480eadd --- /dev/null +++ b/system/usr/hyphen-data/hyph-hy.lic.txt @@ -0,0 +1,24 @@ +Armenian hyphenation patterns + +(more info about the licence to be added later) + +% Hyphenation patterns for Armenian. +% +% Written by Sahak Petrosyan <sahak at mit.edu> +% for Hyphenator.js (http://code.google.com/p/hyphenator/) +% and later adapted for TeX +% +% Licence: LGPL +% Version: May 2010 +% +% These are just primitive rules that hyphenate combinations like +% <vowel> - <consonant><vowel>. +% +% File auto-generated by a script (see source/generic/hyph-utf8/languages/hy) +% +% Vowels: Õ¡ Õ¥ Õ§ Õ¨ Õ« Õ¸ Ö… +% Consonants: Õ¢ Õ£ Õ¤ Õ¦ Õ© Õª Õ¬ Õ Õ® Õ¯ Õ° Õ± Õ² Õ³ Õ´ Õµ Õ¶ Õ· Õ¹ Õº Õ» Õ¼ Õ½ Õ¾ Õ¿ Ö€ Ö Öƒ Ö„ +% +% Some of the patterns below represent combinations that never +% appear in Armenian, but they would be hyphenated according to the rules. +% diff --git a/system/usr/hyphen-data/hyph-kn.hyb b/system/usr/hyphen-data/hyph-kn.hyb new file mode 100644 index 0000000000000000000000000000000000000000..46bdbcf4c01e257b7fec84204a5b520e483f3c9e Binary files /dev/null and b/system/usr/hyphen-data/hyph-kn.hyb differ diff --git a/system/usr/hyphen-data/hyph-kn.lic.txt b/system/usr/hyphen-data/hyph-kn.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..8511c97db34b46ceced7e2812f6a033d88dc2f86 --- /dev/null +++ b/system/usr/hyphen-data/hyph-kn.lic.txt @@ -0,0 +1,26 @@ +% These patterns originate from +% https://github.com/santhoshtr/hyphenation/) +% and have been adapted for hyph-utf8 (for use in TeX). +% +% Hyphenation for Kannada +% Copyright (C) 2016 Santhosh Thottingal (santhosh dot thottingal at gmail dot com) +% +% Permission is hereby granted, free of charge, to any person obtaining +% a copy of this software and associated documentation files (the +% "Software"), to deal in the Software without restriction, including +% without limitation the rights to use, copy, modify, merge, publish, +% distribute, sublicense, and/or sell copies of the Software, and to +% permit persons to whom the Software is furnished to do so, subject to +% the following conditions: +% +% The above copyright notice and this permission notice shall be +% included in all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +% diff --git a/system/usr/hyphen-data/hyph-ml.hyb b/system/usr/hyphen-data/hyph-ml.hyb new file mode 100644 index 0000000000000000000000000000000000000000..c716ff2bd6ad3fb7457bc45e46bcb95fc4934b95 Binary files /dev/null and b/system/usr/hyphen-data/hyph-ml.hyb differ diff --git a/system/usr/hyphen-data/hyph-ml.lic.txt b/system/usr/hyphen-data/hyph-ml.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..6627ff78dfb5b504605025c0522ac7f82d02ee4e --- /dev/null +++ b/system/usr/hyphen-data/hyph-ml.lic.txt @@ -0,0 +1,26 @@ +% These patterns originate from +% https://github.com/santhoshtr/hyphenation/) +% and have been adapted for hyph-utf8 (for use in TeX). +% +% Hyphenation for Malayalam +% Copyright (C) 2016 Santhosh Thottingal (santhosh dot thottingal at gmail dot com) +% +% Permission is hereby granted, free of charge, to any person obtaining +% a copy of this software and associated documentation files (the +% "Software"), to deal in the Software without restriction, including +% without limitation the rights to use, copy, modify, merge, publish, +% distribute, sublicense, and/or sell copies of the Software, and to +% permit persons to whom the Software is furnished to do so, subject to +% the following conditions: +% +% The above copyright notice and this permission notice shall be +% included in all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +% diff --git a/system/usr/hyphen-data/hyph-mn-cyrl.hyb b/system/usr/hyphen-data/hyph-mn-cyrl.hyb new file mode 100644 index 0000000000000000000000000000000000000000..3c6a4a4d5072973662f419322208ffc69081860f Binary files /dev/null and b/system/usr/hyphen-data/hyph-mn-cyrl.hyb differ diff --git a/system/usr/hyphen-data/hyph-mn-cyrl.lic.txt b/system/usr/hyphen-data/hyph-mn-cyrl.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..33084fbf600c0e03a80d110bfc6f60b9a365ed78 --- /dev/null +++ b/system/usr/hyphen-data/hyph-mn-cyrl.lic.txt @@ -0,0 +1,45 @@ +% copyright: Copyright 2007-2015 by Dorjgotov Batmunkh, National University of Mongolia +% title: Hyphenation patterns for Mongolian language +% version: v1.2 2008/03/23 +% notice: > +% This file is part of the hyph-utf8 package. +% See http://www.hyphenation.org for more information. +% license: +% - This file is available under the following license. +% name: MIT +% url: https://opensource.org/licenses/MIT +% text: > +% Permission is hereby granted, free of charge, to any person obtaining a copy +% of this software and associated documentation files (the "Software"), to deal +% in the Software without restriction, including without limitation the rights +% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +% copies of the Software, and to permit persons to whom the Software is +% furnished to do so, subject to the following conditions: +% +% The above copyright notice and this permission notice shall be included in +% all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +% AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +% THE SOFTWARE. +% changes: +% - 2008/03/23 v1.2 +% - 2008/06/08 Patterns added to hyph-utf8 +% - 2015/12/05 Patterns released under the MIT license +% ========================================== +% Special thanks to: Jim Hefferon and Robin Fairbairns +% +% There are few basic rules in mongolian +% +% 1. If there is a consonant then it can use hyphen before it. +% And if there're two consonants then it can use hyphen before second consonant. +% Are there three consonants then it can put hyphen before third consonant, +% also are there four consonants then it can use hyphen before fourth consonant. +% 2. In the case of hardsign or softsign, it's possible to hyphen after these signs. +% For instance, байгуулъ-Ñ, үзүүль-е +% 3. However one vowel can be belong to a syllable, it's not possible to use hyphen. +% diff --git a/system/usr/hyphen-data/hyph-mr.hyb b/system/usr/hyphen-data/hyph-mr.hyb new file mode 100644 index 0000000000000000000000000000000000000000..b0b9680f703354453f357256b8ccff4559d0d39c Binary files /dev/null and b/system/usr/hyphen-data/hyph-mr.hyb differ diff --git a/system/usr/hyphen-data/hyph-mr.lic.txt b/system/usr/hyphen-data/hyph-mr.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b9fb6d03950f845e214a3b431f7e251fbef3e84 --- /dev/null +++ b/system/usr/hyphen-data/hyph-mr.lic.txt @@ -0,0 +1,26 @@ +% These patterns originate from +% https://github.com/santhoshtr/hyphenation/) +% and have been adapted for hyph-utf8 (for use in TeX). +% +% Hyphenation for Marathi +% Copyright (C) 2016 Santhosh Thottingal (santhosh dot thottingal at gmail dot com) +% +% Permission is hereby granted, free of charge, to any person obtaining +% a copy of this software and associated documentation files (the +% "Software"), to deal in the Software without restriction, including +% without limitation the rights to use, copy, modify, merge, publish, +% distribute, sublicense, and/or sell copies of the Software, and to +% permit persons to whom the Software is furnished to do so, subject to +% the following conditions: +% +% The above copyright notice and this permission notice shall be +% included in all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +% diff --git a/system/usr/hyphen-data/hyph-nb.hyb b/system/usr/hyphen-data/hyph-nb.hyb new file mode 100644 index 0000000000000000000000000000000000000000..1e897a025d5425484a0d12ff31635aa442bfdade Binary files /dev/null and b/system/usr/hyphen-data/hyph-nb.hyb differ diff --git a/system/usr/hyphen-data/hyph-nb.lic.txt b/system/usr/hyphen-data/hyph-nb.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..0109a8e6728b772590aebf9d95ad8861146ba142 --- /dev/null +++ b/system/usr/hyphen-data/hyph-nb.lic.txt @@ -0,0 +1,37 @@ +Norwegian Bokmal hyphenation patterns + +(more info about the licence to be added later) + +% Adapted to the new pattern-loading scheme. +% Original file name was nbhyph.tex + +% TeX hyphenation patterns for Norwegian Bokmal +% +% Version 2007-02-10 +% +% Copyright (C) 2007 Karl Ove Hufthammer. +% Copying and distribution of this file, with or without modification, +% are permitted in any medium without royalty, provided the copyright +% notice and this notice are preserved. +% +% This file contains hyphenation patterns for Norwegian Bokmal. +% It uses the Norwegian hyphenation patterns from nohyphbx.tex, +% created by Rune Kleveland and Ole Michael Selberg. Please see +% that file for copyright information on those patterns. +% +% The patterns in nohyphbx are based on both Norwegian Bokmal +% and Norwegian Nynorsk, and works about equally well for both +% languages. This file, nbhyph.tex, contains only a few hyphenation +% exceptions, for words that needs to be hyphenated differently for +% the two languages. +% +% Please send bugs or suggestions to karl@huftis.org. +% + +\input hyph-no.tex + +\hyphenation{ +at-ten-de +be-tre +} + diff --git a/system/usr/hyphen-data/hyph-nn.hyb b/system/usr/hyphen-data/hyph-nn.hyb new file mode 100644 index 0000000000000000000000000000000000000000..74cf56e491e108d0eeb4b9a8ee68f37538b19102 Binary files /dev/null and b/system/usr/hyphen-data/hyph-nn.hyb differ diff --git a/system/usr/hyphen-data/hyph-nn.lic.txt b/system/usr/hyphen-data/hyph-nn.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..af0a585a35b18cc02ba49c8936b0b0797f364b99 --- /dev/null +++ b/system/usr/hyphen-data/hyph-nn.lic.txt @@ -0,0 +1,37 @@ +Norwegian Nynorsk hyphenation patterns + +(more info about the licence to be added later) + +% Adapted to the new pattern-loading scheme. +% Original file name was nnhyph.tex + +% TeX hyphenation patterns for Norwegian Nynorsk +% +% Version 2007-02-10 +% +% Copyright (C) 2007 Karl Ove Hufthammer. +% Copying and distribution of this file, with or without modification, +% are permitted in any medium without royalty, provided the copyright +% notice and this notice are preserved. +% +% This file contains hyphenation patterns for Norwegian Nynorsk. +% It uses the Norwegian hyphenation patterns from nohyphbx.tex, +% created by Rune Kleveland and Ole Michael Selberg. Please see +% that file for copyright information on those patterns. +% +% The patterns in nohyphbx are based on both Norwegian Bokmal +% and Norwegian Nynorsk, and works about equally well for both +% languages. This file, nnhyph.tex, contains only a few hyphenation +% exceptions, for words that needs to be hyphenated differently for +% the two languages. +% +% Please send bugs or suggestions to karl@huftis.org. +% + +\input hyph-no.tex + +\hyphenation{ +att-en-de +bet-re +} + diff --git a/system/usr/hyphen-data/hyph-or.hyb b/system/usr/hyphen-data/hyph-or.hyb new file mode 100644 index 0000000000000000000000000000000000000000..e320ce8c519e317871d354f8919f85bbb2fb5b14 Binary files /dev/null and b/system/usr/hyphen-data/hyph-or.hyb differ diff --git a/system/usr/hyphen-data/hyph-or.lic.txt b/system/usr/hyphen-data/hyph-or.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..42b3f66fef940c2139acbb4f7627e22587783d35 --- /dev/null +++ b/system/usr/hyphen-data/hyph-or.lic.txt @@ -0,0 +1,26 @@ +% These patterns originate from +% https://github.com/santhoshtr/hyphenation/) +% and have been adapted for hyph-utf8 (for use in TeX). +% +% Hyphenation for Oriya +% Copyright (C) 2016 Santhosh Thottingal (santhosh dot thottingal at gmail dot com) +% +% Permission is hereby granted, free of charge, to any person obtaining +% a copy of this software and associated documentation files (the +% "Software"), to deal in the Software without restriction, including +% without limitation the rights to use, copy, modify, merge, publish, +% distribute, sublicense, and/or sell copies of the Software, and to +% permit persons to whom the Software is furnished to do so, subject to +% the following conditions: +% +% The above copyright notice and this permission notice shall be +% included in all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +% diff --git a/system/usr/hyphen-data/hyph-pa.hyb b/system/usr/hyphen-data/hyph-pa.hyb new file mode 100644 index 0000000000000000000000000000000000000000..fd61325961a85dc978ae89761846f425c6dd6c9b Binary files /dev/null and b/system/usr/hyphen-data/hyph-pa.hyb differ diff --git a/system/usr/hyphen-data/hyph-pa.lic.txt b/system/usr/hyphen-data/hyph-pa.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..d66a28f3298fafe477e6b622ee77dca0a60f9a69 --- /dev/null +++ b/system/usr/hyphen-data/hyph-pa.lic.txt @@ -0,0 +1,26 @@ +% These patterns originate from +% https://github.com/santhoshtr/hyphenation/) +% and have been adapted for hyph-utf8 (for use in TeX). +% +% Hyphenation for Panjabi +% Copyright (C) 2016 Santhosh Thottingal (santhosh dot thottingal at gmail dot com) +% +% Permission is hereby granted, free of charge, to any person obtaining +% a copy of this software and associated documentation files (the +% "Software"), to deal in the Software without restriction, including +% without limitation the rights to use, copy, modify, merge, publish, +% distribute, sublicense, and/or sell copies of the Software, and to +% permit persons to whom the Software is furnished to do so, subject to +% the following conditions: +% +% The above copyright notice and this permission notice shall be +% included in all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +% diff --git a/system/usr/hyphen-data/hyph-pt.hyb b/system/usr/hyphen-data/hyph-pt.hyb new file mode 100644 index 0000000000000000000000000000000000000000..10a669be509a58d17ccf52ba7e7fa7f43dfe36c0 Binary files /dev/null and b/system/usr/hyphen-data/hyph-pt.hyb differ diff --git a/system/usr/hyphen-data/hyph-pt.lic.txt b/system/usr/hyphen-data/hyph-pt.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..175f6d84f13adeea9af79fc6889572b1cd9f4a49 --- /dev/null +++ b/system/usr/hyphen-data/hyph-pt.lic.txt @@ -0,0 +1,104 @@ +% This file is part of hyph-utf8 package and resulted from +% semi-manual conversions of hyphenation patterns into UTF-8 in June 2008. +% +% Source: pthyph.tex (Version 1.2, 1996-07-21 - date in file) +% Author: Pedro J. de Rezende <rezende at dcc.unicamp.br>, J.Joao Dias Almeida <jj at di.uminho.pt> +% +% The above mentioned file should become obsolete, +% and the author of the original file should preferably modify this file instead. +% +% Modifications were needed in order to support native UTF-8 engines, +% but functionality (hopefully) didn't change in any way, at least not intentionally. +% This file is no longer stand-alone; at least for 8-bit engines +% you probably want to use loadhyph-foo.tex (which will load this file) instead. +% +% Modifications were done by Jonathan Kew, Mojca Miklavec & Arthur Reutenauer +% with help & support from: +% - Karl Berry, who gave us free hands and all resources +% - Taco Hoekwater, with useful macros +% - Hans Hagen, who did the unicodification of patterns already long before +% and helped with testing, suggestions and bug reports +% - Norbert Preining, who tested & integrated patterns into TeX Live +% +% However, the "copyright/copyleft" owner of patterns remains the original author. +% +% The copyright statement of this file is thus: +% +% BSD 3-Clause License (https://opensource.org/licenses/BSD-3-Clause): +% +% Copyright (c) 1987, Pedro J. de Rezende (rezende@ic.unicamp.br) and J.Joao Dias Almeida (jj@di.uminho.pt) +% +% All rights reserved. +% +% Redistribution and use in source and binary forms, with or without +% modification, are permitted provided that the following conditions are met: +% * Redistributions of source code must retain the above copyright +% notice, this list of conditions and the following disclaimer. +% * Redistributions in binary form must reproduce the above copyright +% notice, this list of conditions and the following disclaimer in the +% documentation and/or other materials provided with the distribution. +% * Neither the name of the University of Campinas, of the University of +% Minho nor the names of its contributors may be used to endorse or +% promote products derived from this software without specific prior +% written permission. +% +% THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +% ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +% WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +% DISCLAIMED. IN NO EVENT SHALL PEDRO J. DE REZENDE OR J.JOAO DIAS ALMEIDA BE +% LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +% CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE +% GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +% HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +% LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +% OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +% +% If you want to change this file, rather than uploading directly to CTAN, +% we would be grateful if you could send it to us (http://tug.org/tex-hyphen) +% or ask for credentials for SVN repository and commit it yourself; +% we will then upload the whole "package" to CTAN. +% +% Before a new "pattern-revolution" starts, +% please try to follow some guidelines if possible: +% +% - \lccode is *forbidden*, and I really mean it +% - all the patterns should be in UTF-8 +% - the only "allowed" TeX commands in this file are: \patterns, \hyphenation, +% and if you really cannot do without, also \input and \message +% - in particular, please no \catcode or \lccode changes, +% they belong to loadhyph-foo.tex, +% and no \lefthyphenmin and \righthyphenmin, +% they have no influence here and belong elsewhere +% - \begingroup and/or \endinput is not needed +% - feel free to do whatever you want inside comments +% +% We know that TeX is extremely powerful, but give a stupid parser +% at least a chance to read your patterns. +% +% For more information see +% +% http://tug.org/tex-hyphen +% +%------------------------------------------------------------------ +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% The Portuguese TeX hyphenation table. +% (C) 2015 by Pedro J. de Rezende (rezende@ic.unicamp.br) +% and J.Joao Dias Almeida (jj@di.uminho.pt) +% Version: 1.3 Release date: 12/08/2015 +% +% (C) 1996 by Pedro J. de Rezende (rezende@ic.unicamp.br) +% and J.Joao Dias Almeida (jj@di.uminho.pt) +% Version: 1.2 Release date: 07/21/1996 +% +% (C) 1994 by Pedro J. de Rezende (rezende@ic.unicamp.br) +% Version: 1.1 Release date: 04/12/1994 +% +% (C) 1987 by Pedro J. de Rezende +% Version: 1.0 Release date: 02/13/1987 +% +% ----------------------------------------------------------------- +% Remember! If you *must* change it, then call the resulting file +% something else and attach your name to your *documented* changes. +% ================================================================= +% diff --git a/system/usr/hyphen-data/hyph-sl.hyb b/system/usr/hyphen-data/hyph-sl.hyb new file mode 100644 index 0000000000000000000000000000000000000000..2215e70ab46e3c8b00b632b9f10563f2c85c03b2 Binary files /dev/null and b/system/usr/hyphen-data/hyph-sl.hyb differ diff --git a/system/usr/hyphen-data/hyph-sl.lic.txt b/system/usr/hyphen-data/hyph-sl.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..a151dc4c98cc0e20fd6a26a9b065e28e8aa168a8 --- /dev/null +++ b/system/usr/hyphen-data/hyph-sl.lic.txt @@ -0,0 +1,49 @@ +% copyright: Copyright (C) 1990 Matjaž VreÄko, TeXCeX (SLO) +% title: Slovenian hyphenation patterns +% version: 2007-01-29 +% notice: > +% This file is part of the hyph-utf8 package. +% See http://www.hyphenation.org for more information. +% licence: +% - This file is available under the following license. +% name: MIT +% url: https://opensource.org/licences/MIT +% text: > +% Permission is hereby granted, free of charge, to any person +% obtaining a copy of this software and associated documentation +% files (the "Software"), to deal in the Software without +% restriction, including without limitation the rights to use, +% copy, modify, merge, publish, distribute, sublicense, and/or sell +% copies of the Software, and to permit persons to whom the +% Software is furnished to do so, subject to the following +% conditions: +% +% The above copyright notice and this permission notice shall be +% included in all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +% OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +% HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +% WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +% FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +% OTHER DEALINGS IN THE SOFTWARE. +% changes: +% - 1990 First version of `hyphen.si' (Matjaž VreÄko, TeXCeX) +% +% - > +% Some cosmetic changes done later on, but none of these apply any more; +% the patterns are still the same as they were originally: +% - 1994-05-17 Use of code page 852 in patterns (Leon Žlajpah) +% - 1995-04-06 Release of `sihyph21.tex' +% - 1995-06-20 > +% Added \slovenehyphenmins +% Release of `sihyph22.tex' +% - 1997-15-04 > +% Some changes concerning "c, "s, "z and ... +% Release of `sihyph23.tex' +% - 2007-01-20 > +% `sihyph23.tex' renamed to `slhyph.tex' +% (sl is the proper language code for Slovenian) +% diff --git a/system/usr/hyphen-data/hyph-ta.hyb b/system/usr/hyphen-data/hyph-ta.hyb new file mode 100644 index 0000000000000000000000000000000000000000..3cb21b5be02491408ac8b40544fa767ecd3a1da1 Binary files /dev/null and b/system/usr/hyphen-data/hyph-ta.hyb differ diff --git a/system/usr/hyphen-data/hyph-ta.lic.txt b/system/usr/hyphen-data/hyph-ta.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8c8c40a0fab20666bacee1b359f1fb7b76c9883 --- /dev/null +++ b/system/usr/hyphen-data/hyph-ta.lic.txt @@ -0,0 +1,26 @@ +% These patterns originate from +% https://github.com/santhoshtr/hyphenation/) +% and have been adapted for hyph-utf8 (for use in TeX). +% +% Hyphenation for Tamil +% Copyright (C) 2016 Santhosh Thottingal (santhosh dot thottingal at gmail dot com) +% +% Permission is hereby granted, free of charge, to any person obtaining +% a copy of this software and associated documentation files (the +% "Software"), to deal in the Software without restriction, including +% without limitation the rights to use, copy, modify, merge, publish, +% distribute, sublicense, and/or sell copies of the Software, and to +% permit persons to whom the Software is furnished to do so, subject to +% the following conditions: +% +% The above copyright notice and this permission notice shall be +% included in all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +% diff --git a/system/usr/hyphen-data/hyph-te.hyb b/system/usr/hyphen-data/hyph-te.hyb new file mode 100644 index 0000000000000000000000000000000000000000..4b3490711ff9029f77111bc874aa4ba35fc07e77 Binary files /dev/null and b/system/usr/hyphen-data/hyph-te.hyb differ diff --git a/system/usr/hyphen-data/hyph-te.lic.txt b/system/usr/hyphen-data/hyph-te.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b380bbd0e45e79847f0edb56092096e27ae7a45 --- /dev/null +++ b/system/usr/hyphen-data/hyph-te.lic.txt @@ -0,0 +1,26 @@ +% These patterns originate from +% https://github.com/santhoshtr/hyphenation/) +% and have been adapted for hyph-utf8 (for use in TeX). +% +% Hyphenation for Telugu +% Copyright (C) 2016 Santhosh Thottingal (santhosh dot thottingal at gmail dot com) +% +% Permission is hereby granted, free of charge, to any person obtaining +% a copy of this software and associated documentation files (the +% "Software"), to deal in the Software without restriction, including +% without limitation the rights to use, copy, modify, merge, publish, +% distribute, sublicense, and/or sell copies of the Software, and to +% permit persons to whom the Software is furnished to do so, subject to +% the following conditions: +% +% The above copyright notice and this permission notice shall be +% included in all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +% diff --git a/system/usr/hyphen-data/hyph-tk.hyb b/system/usr/hyphen-data/hyph-tk.hyb new file mode 100644 index 0000000000000000000000000000000000000000..1bc934528710426d91f61af083a82fdff0dc60b6 Binary files /dev/null and b/system/usr/hyphen-data/hyph-tk.hyb differ diff --git a/system/usr/hyphen-data/hyph-tk.lic.txt b/system/usr/hyphen-data/hyph-tk.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..6cc40115a3071385185f595f738f6827c39d844e --- /dev/null +++ b/system/usr/hyphen-data/hyph-tk.lic.txt @@ -0,0 +1,28 @@ +% copyright: Copyright (c) 2010-2015 Nazar Annagurban +% title: Hyphenation patterns for Turkmen language +% version: 0.1 16 March 2010 +% notice: > +% This file is part of the hyph-utf8 package. +% See http://www.hyphenation.org for more information. +% license: +% name: MIT +% url: https://opensource.org/licenses/MIT +% text: > +% Permission is hereby granted, free of charge, to any person obtaining a copy +% of this software and associated documentation files (the "Software"), to deal +% in the Software without restriction, including without limitation the rights +% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +% copies of the Software, and to permit persons to whom the Software is +% furnished to do so, subject to the following conditions: +% +% The above copyright notice and this permission notice shall be included in +% all copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE +% AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +% THE SOFTWARE. +% diff --git a/system/usr/hyphen-data/hyph-und-ethi.hyb b/system/usr/hyphen-data/hyph-und-ethi.hyb new file mode 100644 index 0000000000000000000000000000000000000000..3c98edbd9ef2d852ab53cd95c8be13fec1d720e8 Binary files /dev/null and b/system/usr/hyphen-data/hyph-und-ethi.hyb differ diff --git a/system/usr/hyphen-data/hyph-und-ethi.lic.txt b/system/usr/hyphen-data/hyph-und-ethi.lic.txt new file mode 100644 index 0000000000000000000000000000000000000000..a100df0655bf7d17afa432ee03179606a392cad4 --- /dev/null +++ b/system/usr/hyphen-data/hyph-und-ethi.lic.txt @@ -0,0 +1,21 @@ +Pan-Ethiopic hyphenation patterns + +(more info about the licence to be added later) + +% Experimental pattern file for languages written using the Ethiopic script. +% Arthur Reutenauer, London, 2011, for the hyph-utf8 project. +% Copyright (c) TeX Users Group, 2011. +% You may freely use, copy, modify and / or redistribute this file. +% +% This is a generated file. If you wish to edit it, consider adapting the +% generating programme +% (svn://tug.org/texhyphen/trunk/hyph-utf8/source/generic/hyph-utf8/languages/mul-ethi/generate_patterns_mul-ethi.lua). +% +% The BCP 47 language tag for that file is "mul-ethi" to reflect the fact that +% it can be used by multiple languages (and a single script, Ethiopic). It is, +% though, not supposed to be linguistically relevant and should, for proper +% typography, be replaced by files tailored to individual languages. What we +% do for the moment is to simply allow break on either sides of Ethiopic +% syllables, and to forbid it before some punctuation marks particular to +% the Ethiopic script (which we thus make letters for this purpose). + diff --git a/system/usr/icu/icudt58l.dat b/system/usr/icu/icudt58l.dat new file mode 100644 index 0000000000000000000000000000000000000000..acd11657554df807fa26f99c3433cc8364233d6e Binary files /dev/null and b/system/usr/icu/icudt58l.dat differ diff --git a/system/usr/idc/AVRCP.idc b/system/usr/idc/AVRCP.idc new file mode 100644 index 0000000000000000000000000000000000000000..610b7f9a008fb2e3bf47e498e6ec49367d23839a --- /dev/null +++ b/system/usr/idc/AVRCP.idc @@ -0,0 +1,19 @@ +# Copyright (C) 2015 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# AVRCP +# + +device.internal = 1 diff --git a/system/usr/idc/qwerty.idc b/system/usr/idc/qwerty.idc new file mode 100644 index 0000000000000000000000000000000000000000..375d78576548ef91a3b97baa4ec019563b05defb --- /dev/null +++ b/system/usr/idc/qwerty.idc @@ -0,0 +1,28 @@ +# Copyright (C) 2010 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# Emulator keyboard configuration file #1. +# + +touch.deviceType = touchScreen +touch.orientationAware = 1 + +keyboard.layout = qwerty +keyboard.characterMap = qwerty +keyboard.orientationAware = 1 +keyboard.builtIn = 1 + +cursor.mode = navigation +cursor.orientationAware = 1 diff --git a/system/usr/idc/qwerty2.idc b/system/usr/idc/qwerty2.idc new file mode 100644 index 0000000000000000000000000000000000000000..369205ea3f98339c144b0334c2fdba78566ebcbf --- /dev/null +++ b/system/usr/idc/qwerty2.idc @@ -0,0 +1,28 @@ +# Copyright (C) 2010 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# Emulator keyboard configuration file #2. +# + +touch.deviceType = touchScreen +touch.orientationAware = 1 + +keyboard.layout = qwerty +keyboard.characterMap = qwerty2 +keyboard.orientationAware = 1 +keyboard.builtIn = 1 + +cursor.mode = navigation +cursor.orientationAware = 1 diff --git a/system/usr/keychars/Generic.kcm b/system/usr/keychars/Generic.kcm new file mode 100644 index 0000000000000000000000000000000000000000..1ef74ba5e1a25712ae202878d3bfbc4e1de22724 --- /dev/null +++ b/system/usr/keychars/Generic.kcm @@ -0,0 +1,604 @@ +# Copyright (C) 2010 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# Generic key character map for full alphabetic US English PC style external keyboards. +# +# This file is intentionally very generic and is intended to support a broad rang of keyboards. +# Do not edit the generic key character map to support a specific keyboard; instead, create +# a new key character map file with the required keyboard configuration. +# + +type FULL + +### Basic QWERTY keys ### + +key A { + label: 'A' + base: 'a' + shift, capslock: 'A' +} + +key B { + label: 'B' + base: 'b' + shift, capslock: 'B' +} + +key C { + label: 'C' + base: 'c' + shift, capslock: 'C' + alt: '\u00e7' + shift+alt: '\u00c7' +} + +key D { + label: 'D' + base: 'd' + shift, capslock: 'D' +} + +key E { + label: 'E' + base: 'e' + shift, capslock: 'E' + alt: '\u0301' +} + +key F { + label: 'F' + base: 'f' + shift, capslock: 'F' +} + +key G { + label: 'G' + base: 'g' + shift, capslock: 'G' +} + +key H { + label: 'H' + base: 'h' + shift, capslock: 'H' +} + +key I { + label: 'I' + base: 'i' + shift, capslock: 'I' + alt: '\u0302' +} + +key J { + label: 'J' + base: 'j' + shift, capslock: 'J' +} + +key K { + label: 'K' + base: 'k' + shift, capslock: 'K' +} + +key L { + label: 'L' + base: 'l' + shift, capslock: 'L' +} + +key M { + label: 'M' + base: 'm' + shift, capslock: 'M' +} + +key N { + label: 'N' + base: 'n' + shift, capslock: 'N' + alt: '\u0303' +} + +key O { + label: 'O' + base: 'o' + shift, capslock: 'O' +} + +key P { + label: 'P' + base: 'p' + shift, capslock: 'P' +} + +key Q { + label: 'Q' + base: 'q' + shift, capslock: 'Q' +} + +key R { + label: 'R' + base: 'r' + shift, capslock: 'R' +} + +key S { + label: 'S' + base: 's' + shift, capslock: 'S' + alt: '\u00df' +} + +key T { + label: 'T' + base: 't' + shift, capslock: 'T' +} + +key U { + label: 'U' + base: 'u' + shift, capslock: 'U' + alt: '\u0308' +} + +key V { + label: 'V' + base: 'v' + shift, capslock: 'V' +} + +key W { + label: 'W' + base: 'w' + shift, capslock: 'W' +} + +key X { + label: 'X' + base: 'x' + shift, capslock: 'X' +} + +key Y { + label: 'Y' + base: 'y' + shift, capslock: 'Y' +} + +key Z { + label: 'Z' + base: 'z' + shift, capslock: 'Z' +} + +key 0 { + label: '0' + base: '0' + shift: ')' +} + +key 1 { + label: '1' + base: '1' + shift: '!' +} + +key 2 { + label: '2' + base: '2' + shift: '@' +} + +key 3 { + label: '3' + base: '3' + shift: '#' +} + +key 4 { + label: '4' + base: '4' + shift: '$' +} + +key 5 { + label: '5' + base: '5' + shift: '%' +} + +key 6 { + label: '6' + base: '6' + shift: '^' + alt+shift: '\u0302' +} + +key 7 { + label: '7' + base: '7' + shift: '&' +} + +key 8 { + label: '8' + base: '8' + shift: '*' +} + +key 9 { + label: '9' + base: '9' + shift: '(' +} + +key SPACE { + label: ' ' + base: ' ' + alt, meta: fallback SEARCH + ctrl: fallback LANGUAGE_SWITCH +} + +key ENTER { + label: '\n' + base: '\n' +} + +key TAB { + label: '\t' + base: '\t' +} + +key COMMA { + label: ',' + base: ',' + shift: '<' +} + +key PERIOD { + label: '.' + base: '.' + shift: '>' +} + +key SLASH { + label: '/' + base: '/' + shift: '?' +} + +key GRAVE { + label: '`' + base: '`' + shift: '~' + alt: '\u0300' + alt+shift: '\u0303' +} + +key MINUS { + label: '-' + base: '-' + shift: '_' +} + +key EQUALS { + label: '=' + base: '=' + shift: '+' +} + +key LEFT_BRACKET { + label: '[' + base: '[' + shift: '{' +} + +key RIGHT_BRACKET { + label: ']' + base: ']' + shift: '}' +} + +key BACKSLASH { + label: '\\' + base: '\\' + shift: '|' +} + +key SEMICOLON { + label: ';' + base: ';' + shift: ':' +} + +key APOSTROPHE { + label: '\'' + base: '\'' + shift: '"' +} + +### Numeric keypad ### + +key NUMPAD_0 { + label: '0' + base: fallback INSERT + numlock: '0' +} + +key NUMPAD_1 { + label: '1' + base: fallback MOVE_END + numlock: '1' +} + +key NUMPAD_2 { + label: '2' + base: fallback DPAD_DOWN + numlock: '2' +} + +key NUMPAD_3 { + label: '3' + base: fallback PAGE_DOWN + numlock: '3' +} + +key NUMPAD_4 { + label: '4' + base: fallback DPAD_LEFT + numlock: '4' +} + +key NUMPAD_5 { + label: '5' + base: fallback DPAD_CENTER + numlock: '5' +} + +key NUMPAD_6 { + label: '6' + base: fallback DPAD_RIGHT + numlock: '6' +} + +key NUMPAD_7 { + label: '7' + base: fallback MOVE_HOME + numlock: '7' +} + +key NUMPAD_8 { + label: '8' + base: fallback DPAD_UP + numlock: '8' +} + +key NUMPAD_9 { + label: '9' + base: fallback PAGE_UP + numlock: '9' +} + +key NUMPAD_LEFT_PAREN { + label: '(' + base: '(' +} + +key NUMPAD_RIGHT_PAREN { + label: ')' + base: ')' +} + +key NUMPAD_DIVIDE { + label: '/' + base: '/' +} + +key NUMPAD_MULTIPLY { + label: '*' + base: '*' +} + +key NUMPAD_SUBTRACT { + label: '-' + base: '-' +} + +key NUMPAD_ADD { + label: '+' + base: '+' +} + +key NUMPAD_DOT { + label: '.' + base: fallback FORWARD_DEL + numlock: '.' +} + +key NUMPAD_COMMA { + label: ',' + base: ',' +} + +key NUMPAD_EQUALS { + label: '=' + base: '=' +} + +key NUMPAD_ENTER { + label: '\n' + base: '\n' fallback ENTER + ctrl, alt, meta: none fallback ENTER +} + +### Special keys on phones ### + +key AT { + label: '@' + base: '@' +} + +key STAR { + label: '*' + base: '*' +} + +key POUND { + label: '#' + base: '#' +} + +key PLUS { + label: '+' + base: '+' +} + +### Non-printing keys ### + +key ESCAPE { + base: fallback BACK + alt, meta: fallback HOME + ctrl: fallback MENU +} + +### Gamepad buttons ### + +key BUTTON_A { + base: fallback DPAD_CENTER +} + +key BUTTON_B { + base: fallback BACK +} + +key BUTTON_C { + base: fallback DPAD_CENTER +} + +key BUTTON_X { + base: fallback DEL +} + +key BUTTON_Y { + base: fallback SPACE +} + +key BUTTON_Z { + base: fallback DPAD_CENTER +} + +key BUTTON_L1 { + base: none +} + +key BUTTON_R1 { + base: none +} + +key BUTTON_L2 { + base: none +} + +key BUTTON_R2 { + base: none +} + +key BUTTON_THUMBL { + base: fallback DPAD_CENTER +} + +key BUTTON_THUMBR { + base: fallback DPAD_CENTER +} + +key BUTTON_START { + base: fallback DPAD_CENTER +} + +key BUTTON_SELECT { + base: fallback MENU +} + +key BUTTON_MODE { + base: fallback MENU +} + +key BUTTON_1 { + base: fallback DPAD_CENTER +} + +key BUTTON_2 { + base: fallback DPAD_CENTER +} + +key BUTTON_3 { + base: fallback DPAD_CENTER +} + +key BUTTON_4 { + base: fallback DPAD_CENTER +} + +key BUTTON_5 { + base: fallback DPAD_CENTER +} + +key BUTTON_6 { + base: fallback DPAD_CENTER +} + +key BUTTON_7 { + base: fallback DPAD_CENTER +} + +key BUTTON_8 { + base: fallback DPAD_CENTER +} + +key BUTTON_9 { + base: fallback DPAD_CENTER +} + +key BUTTON_10 { + base: fallback DPAD_CENTER +} + +key BUTTON_11 { + base: fallback DPAD_CENTER +} + +key BUTTON_12 { + base: fallback DPAD_CENTER +} + +key BUTTON_13 { + base: fallback DPAD_CENTER +} + +key BUTTON_14 { + base: fallback DPAD_CENTER +} + +key BUTTON_15 { + base: fallback DPAD_CENTER +} + +key BUTTON_16 { + base: fallback DPAD_CENTER +} diff --git a/system/usr/keychars/Vendor_18d1_Product_5018.kcm b/system/usr/keychars/Vendor_18d1_Product_5018.kcm new file mode 100644 index 0000000000000000000000000000000000000000..0ca85a20d7f36a5c7eb51f390975efc48006f48c --- /dev/null +++ b/system/usr/keychars/Vendor_18d1_Product_5018.kcm @@ -0,0 +1,321 @@ +# Copyright (C) 2015 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# Key character map for Google Pixel C Keyboard +# + +type FULL + +### Basic QWERTY keys ### + +key A { + label: 'A' + base: 'a' + shift, capslock: 'A' +} + +key B { + label: 'B' + base: 'b' + shift, capslock: 'B' +} + +key C { + label: 'C' + base: 'c' + shift, capslock: 'C' + alt: '\u00e7' + shift+alt: '\u00c7' +} + +key D { + label: 'D' + base: 'd' + shift, capslock: 'D' +} + +key E { + label: 'E' + base: 'e' + shift, capslock: 'E' + alt: '\u0301' +} + +key F { + label: 'F' + base: 'f' + shift, capslock: 'F' +} + +key G { + label: 'G' + base: 'g' + shift, capslock: 'G' +} + +key H { + label: 'H' + base: 'h' + shift, capslock: 'H' +} + +key I { + label: 'I' + base: 'i' + shift, capslock: 'I' + alt: '\u0302' +} + +key J { + label: 'J' + base: 'j' + shift, capslock: 'J' +} + +key K { + label: 'K' + base: 'k' + shift, capslock: 'K' +} + +key L { + label: 'L' + base: 'l' + shift, capslock: 'L' +} + +key M { + label: 'M' + base: 'm' + shift, capslock: 'M' +} + +key N { + label: 'N' + base: 'n' + shift, capslock: 'N' + alt: '\u0303' +} + +key O { + label: 'O' + base: 'o' + shift, capslock: 'O' + ralt: '[' + ralt+shift: '{' +} + +key P { + label: 'P' + base: 'p' + shift, capslock: 'P' + ralt: ']' + ralt+shift: '}' +} + +key Q { + label: 'Q' + base: 'q' + shift, capslock: 'Q' +} + +key R { + label: 'R' + base: 'r' + shift, capslock: 'R' +} + +key S { + label: 'S' + base: 's' + shift, capslock: 'S' + alt: '\u00df' +} + +key T { + label: 'T' + base: 't' + shift, capslock: 'T' +} + +key U { + label: 'U' + base: 'u' + shift, capslock: 'U' + alt: '\u0308' +} + +key V { + label: 'V' + base: 'v' + shift, capslock: 'V' +} + +key W { + label: 'W' + base: 'w' + shift, capslock: 'W' +} + +key X { + label: 'X' + base: 'x' + shift, capslock: 'X' +} + +key Y { + label: 'Y' + base: 'y' + shift, capslock: 'Y' +} + +key Z { + label: 'Z' + base: 'z' + shift, capslock: 'Z' +} + +key 0 { + label: '0' + base: '0' + shift: ')' +} + +key 1 { + label: '1' + base: '1' + shift: '!' + ralt: replace ESCAPE +} + +key 2 { + label: '2' + base: '2' + shift: '@' + ralt: '`' + ralt+shift: '~' +} + +key 3 { + label: '3' + base: '3' + shift: '#' +} + +key 4 { + label: '4' + base: '4' + shift: '$' +} + +key 5 { + label: '5' + base: '5' + shift: '%' +} + +key 6 { + label: '6' + base: '6' + shift: '^' + alt+shift: '\u0302' +} + +key 7 { + label: '7' + base: '7' + shift: '&' +} + +key 8 { + label: '8' + base: '8' + shift: '*' +} + +key 9 { + label: '9' + base: '9' + shift: '(' +} + +key SPACE { + label: ' ' + base: ' ' + alt, meta: fallback SEARCH + ctrl: fallback LANGUAGE_SWITCH +} + +key ENTER { + label: '\n' + base: '\n' +} + +key TAB { + label: '\t' + base: '\t' +} + +key COMMA { + label: ',' + base: ',' + shift: '<' +} + +key PERIOD { + label: '.' + base: '.' + shift: '>' +} + +key SLASH { + label: '/' + base: '/' + shift: '?' +} + +key MINUS { + label: '-' + base: '-' + shift: '_' +} + +key EQUALS { + label: '=' + base: '=' + shift: '+' + ralt: '\\' + ralt+shift: '|' +} + +key SEMICOLON { + label: ';' + base: ';' + shift: ':' +} + +key APOSTROPHE { + label: '\'' + base: '\'' + shift: '"' +} + +### Non-printing keys ### + +key ESCAPE { + base: fallback BACK + alt, meta: fallback HOME + ctrl: fallback MENU +} diff --git a/system/usr/keychars/Virtual.kcm b/system/usr/keychars/Virtual.kcm new file mode 100644 index 0000000000000000000000000000000000000000..c4647e04f3c3184eebdfc26ff2165f9d9b039661 --- /dev/null +++ b/system/usr/keychars/Virtual.kcm @@ -0,0 +1,601 @@ +# Copyright (C) 2010 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# Key character map for a built-in generic virtual keyboard primarily used +# for instrumentation and testing purposes. +# + +type FULL + +### Basic QWERTY keys ### + +key A { + label: 'A' + base: 'a' + shift, capslock: 'A' +} + +key B { + label: 'B' + base: 'b' + shift, capslock: 'B' +} + +key C { + label: 'C' + base: 'c' + shift, capslock: 'C' + alt: '\u00e7' + shift+alt: '\u00c7' +} + +key D { + label: 'D' + base: 'd' + shift, capslock: 'D' +} + +key E { + label: 'E' + base: 'e' + shift, capslock: 'E' + alt: '\u0301' +} + +key F { + label: 'F' + base: 'f' + shift, capslock: 'F' +} + +key G { + label: 'G' + base: 'g' + shift, capslock: 'G' +} + +key H { + label: 'H' + base: 'h' + shift, capslock: 'H' +} + +key I { + label: 'I' + base: 'i' + shift, capslock: 'I' + alt: '\u0302' +} + +key J { + label: 'J' + base: 'j' + shift, capslock: 'J' +} + +key K { + label: 'K' + base: 'k' + shift, capslock: 'K' +} + +key L { + label: 'L' + base: 'l' + shift, capslock: 'L' +} + +key M { + label: 'M' + base: 'm' + shift, capslock: 'M' +} + +key N { + label: 'N' + base: 'n' + shift, capslock: 'N' + alt: '\u0303' +} + +key O { + label: 'O' + base: 'o' + shift, capslock: 'O' +} + +key P { + label: 'P' + base: 'p' + shift, capslock: 'P' +} + +key Q { + label: 'Q' + base: 'q' + shift, capslock: 'Q' +} + +key R { + label: 'R' + base: 'r' + shift, capslock: 'R' +} + +key S { + label: 'S' + base: 's' + shift, capslock: 'S' + alt: '\u00df' +} + +key T { + label: 'T' + base: 't' + shift, capslock: 'T' +} + +key U { + label: 'U' + base: 'u' + shift, capslock: 'U' + alt: '\u0308' +} + +key V { + label: 'V' + base: 'v' + shift, capslock: 'V' +} + +key W { + label: 'W' + base: 'w' + shift, capslock: 'W' +} + +key X { + label: 'X' + base: 'x' + shift, capslock: 'X' +} + +key Y { + label: 'Y' + base: 'y' + shift, capslock: 'Y' +} + +key Z { + label: 'Z' + base: 'z' + shift, capslock: 'Z' +} + +key 0 { + label: '0' + base: '0' + shift: ')' +} + +key 1 { + label: '1' + base: '1' + shift: '!' +} + +key 2 { + label: '2' + base: '2' + shift: '@' +} + +key 3 { + label: '3' + base: '3' + shift: '#' +} + +key 4 { + label: '4' + base: '4' + shift: '$' +} + +key 5 { + label: '5' + base: '5' + shift: '%' +} + +key 6 { + label: '6' + base: '6' + shift: '^' + alt+shift: '\u0302' +} + +key 7 { + label: '7' + base: '7' + shift: '&' +} + +key 8 { + label: '8' + base: '8' + shift: '*' +} + +key 9 { + label: '9' + base: '9' + shift: '(' +} + +key SPACE { + label: ' ' + base: ' ' + alt, meta: fallback SEARCH + ctrl: fallback LANGUAGE_SWITCH +} + +key ENTER { + label: '\n' + base: '\n' +} + +key TAB { + label: '\t' + base: '\t' +} + +key COMMA { + label: ',' + base: ',' + shift: '<' +} + +key PERIOD { + label: '.' + base: '.' + shift: '>' +} + +key SLASH { + label: '/' + base: '/' + shift: '?' +} + +key GRAVE { + label: '`' + base: '`' + shift: '~' + alt: '\u0300' + alt+shift: '\u0303' +} + +key MINUS { + label: '-' + base: '-' + shift: '_' +} + +key EQUALS { + label: '=' + base: '=' + shift: '+' +} + +key LEFT_BRACKET { + label: '[' + base: '[' + shift: '{' +} + +key RIGHT_BRACKET { + label: ']' + base: ']' + shift: '}' +} + +key BACKSLASH { + label: '\\' + base: '\\' + shift: '|' +} + +key SEMICOLON { + label: ';' + base: ';' + shift: ':' +} + +key APOSTROPHE { + label: '\'' + base: '\'' + shift: '"' +} + +### Numeric keypad ### + +key NUMPAD_0 { + label: '0' + base: fallback INSERT + numlock: '0' +} + +key NUMPAD_1 { + label: '1' + base: fallback MOVE_END + numlock: '1' +} + +key NUMPAD_2 { + label: '2' + base: fallback DPAD_DOWN + numlock: '2' +} + +key NUMPAD_3 { + label: '3' + base: fallback PAGE_DOWN + numlock: '3' +} + +key NUMPAD_4 { + label: '4' + base: fallback DPAD_LEFT + numlock: '4' +} + +key NUMPAD_5 { + label: '5' + base: fallback DPAD_CENTER + numlock: '5' +} + +key NUMPAD_6 { + label: '6' + base: fallback DPAD_RIGHT + numlock: '6' +} + +key NUMPAD_7 { + label: '7' + base: fallback MOVE_HOME + numlock: '7' +} + +key NUMPAD_8 { + label: '8' + base: fallback DPAD_UP + numlock: '8' +} + +key NUMPAD_9 { + label: '9' + base: fallback PAGE_UP + numlock: '9' +} + +key NUMPAD_LEFT_PAREN { + label: '(' + base: '(' +} + +key NUMPAD_RIGHT_PAREN { + label: ')' + base: ')' +} + +key NUMPAD_DIVIDE { + label: '/' + base: '/' +} + +key NUMPAD_MULTIPLY { + label: '*' + base: '*' +} + +key NUMPAD_SUBTRACT { + label: '-' + base: '-' +} + +key NUMPAD_ADD { + label: '+' + base: '+' +} + +key NUMPAD_DOT { + label: '.' + base: fallback FORWARD_DEL + numlock: '.' +} + +key NUMPAD_COMMA { + label: ',' + base: ',' +} + +key NUMPAD_EQUALS { + label: '=' + base: '=' +} + +key NUMPAD_ENTER { + label: '\n' + base: '\n' fallback ENTER + ctrl, alt, meta: none fallback ENTER +} + +### Special keys on phones ### + +key AT { + label: '@' + base: '@' +} + +key STAR { + label: '*' + base: '*' +} + +key POUND { + label: '#' + base: '#' +} + +key PLUS { + label: '+' + base: '+' +} + +### Non-printing keys ### + +key ESCAPE { + base: fallback BACK + alt, meta: fallback HOME + ctrl: fallback MENU +} + +### Gamepad buttons ### + +key BUTTON_A { + base: fallback DPAD_CENTER +} + +key BUTTON_B { + base: fallback BACK +} + +key BUTTON_C { + base: fallback DPAD_CENTER +} + +key BUTTON_X { + base: fallback DPAD_CENTER +} + +key BUTTON_Y { + base: fallback BACK +} + +key BUTTON_Z { + base: fallback DPAD_CENTER +} + +key BUTTON_L1 { + base: none +} + +key BUTTON_R1 { + base: none +} + +key BUTTON_L2 { + base: none +} + +key BUTTON_R2 { + base: none +} + +key BUTTON_THUMBL { + base: fallback DPAD_CENTER +} + +key BUTTON_THUMBR { + base: fallback DPAD_CENTER +} + +key BUTTON_START { + base: fallback DPAD_CENTER +} + +key BUTTON_SELECT { + base: fallback MENU +} + +key BUTTON_MODE { + base: fallback MENU +} + +key BUTTON_1 { + base: fallback DPAD_CENTER +} + +key BUTTON_2 { + base: fallback DPAD_CENTER +} + +key BUTTON_3 { + base: fallback DPAD_CENTER +} + +key BUTTON_4 { + base: fallback DPAD_CENTER +} + +key BUTTON_5 { + base: fallback DPAD_CENTER +} + +key BUTTON_6 { + base: fallback DPAD_CENTER +} + +key BUTTON_7 { + base: fallback DPAD_CENTER +} + +key BUTTON_8 { + base: fallback DPAD_CENTER +} + +key BUTTON_9 { + base: fallback DPAD_CENTER +} + +key BUTTON_10 { + base: fallback DPAD_CENTER +} + +key BUTTON_11 { + base: fallback DPAD_CENTER +} + +key BUTTON_12 { + base: fallback DPAD_CENTER +} + +key BUTTON_13 { + base: fallback DPAD_CENTER +} + +key BUTTON_14 { + base: fallback DPAD_CENTER +} + +key BUTTON_15 { + base: fallback DPAD_CENTER +} + +key BUTTON_16 { + base: fallback DPAD_CENTER +} diff --git a/system/usr/keychars/qwerty.kcm b/system/usr/keychars/qwerty.kcm new file mode 100644 index 0000000000000000000000000000000000000000..f3e152418a4c3bb2948596ee4a2c46c5b09f7555 --- /dev/null +++ b/system/usr/keychars/qwerty.kcm @@ -0,0 +1,508 @@ +# Copyright (C) 2010 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# Emulator keyboard character map #1. +# +# This file is no longer used as the platform's default keyboard character map. +# Refer to Generic.kcm and Virtual.kcm instead. +# + +type ALPHA + +key A { + label: 'A' + number: '2' + base: 'a' + shift, capslock: 'A' + alt: '#' + shift+alt, capslock+alt: none +} + +key B { + label: 'B' + number: '2' + base: 'b' + shift, capslock: 'B' + alt: '<' + shift+alt, capslock+alt: none +} + +key C { + label: 'C' + number: '2' + base: 'c' + shift, capslock: 'C' + alt: '9' + shift+alt, capslock+alt: '\u00e7' +} + +key D { + label: 'D' + number: '3' + base: 'd' + shift, capslock: 'D' + alt: '5' + shift+alt, capslock+alt: none +} + +key E { + label: 'E' + number: '3' + base: 'e' + shift, capslock: 'E' + alt: '2' + shift+alt, capslock+alt: '\u0301' +} + +key F { + label: 'F' + number: '3' + base: 'f' + shift, capslock: 'F' + alt: '6' + shift+alt, capslock+alt: '\u00a5' +} + +key G { + label: 'G' + number: '4' + base: 'g' + shift, capslock: 'G' + alt: '-' + shift+alt, capslock+alt: '_' +} + +key H { + label: 'H' + number: '4' + base: 'h' + shift, capslock: 'H' + alt: '[' + shift+alt, capslock+alt: '{' +} + +key I { + label: 'I' + number: '4' + base: 'i' + shift, capslock: 'I' + alt: '$' + shift+alt, capslock+alt: '\u0302' +} + +key J { + label: 'J' + number: '5' + base: 'j' + shift, capslock: 'J' + alt: ']' + shift+alt, capslock+alt: '}' +} + +key K { + label: 'K' + number: '5' + base: 'k' + shift, capslock: 'K' + alt: '"' + shift+alt, capslock+alt: '~' +} + +key L { + label: 'L' + number: '5' + base: 'l' + shift, capslock: 'L' + alt: '\'' + shift+alt, capslock+alt: '`' +} + +key M { + label: 'M' + number: '6' + base: 'm' + shift, capslock: 'M' + alt: '!' + shift+alt, capslock+alt: none +} + +key N { + label: 'N' + number: '6' + base: 'n' + shift, capslock: 'N' + alt: '>' + shift+alt, capslock+alt: '\u0303' +} + +key O { + label: 'O' + number: '6' + base: 'o' + shift, capslock: 'O' + alt: '(' + shift+alt, capslock+alt: none +} + +key P { + label: 'P' + number: '7' + base: 'p' + shift, capslock: 'P' + alt: ')' + shift+alt, capslock+alt: none +} + +key Q { + label: 'Q' + number: '7' + base: 'q' + shift, capslock: 'Q' + alt: '*' + shift+alt, capslock+alt: '\u0300' +} + +key R { + label: 'R' + number: '7' + base: 'r' + shift, capslock: 'R' + alt: '3' + shift+alt, capslock+alt: '\u20ac' +} + +key S { + label: 'S' + number: '7' + base: 's' + shift, capslock: 'S' + alt: '4' + shift+alt, capslock+alt: '\u00df' +} + +key T { + label: 'T' + number: '8' + base: 't' + shift, capslock: 'T' + alt: '+' + shift+alt, capslock+alt: '\u00a3' +} + +key U { + label: 'U' + number: '8' + base: 'u' + shift, capslock: 'U' + alt: '&' + shift+alt, capslock+alt: '\u0308' +} + +key V { + label: 'V' + number: '8' + base: 'v' + shift, capslock: 'V' + alt: '=' + shift+alt, capslock+alt: '^' +} + +key W { + label: 'W' + number: '9' + base: 'w' + shift, capslock: 'W' + alt: '1' + shift+alt, capslock+alt: none +} + +key X { + label: 'X' + number: '9' + base: 'x' + shift, capslock: 'X' + alt: '8' + shift+alt, capslock+alt: '\uef00' +} + +key Y { + label: 'Y' + number: '9' + base: 'y' + shift, capslock: 'Y' + alt: '%' + shift+alt, capslock+alt: '\u00a1' +} + +key Z { + label: 'Z' + number: '9' + base: 'z' + shift, capslock: 'Z' + alt: '7' + shift+alt, capslock+alt: none +} + +key COMMA { + label: ',' + number: ',' + base: ',' + shift: ';' + alt: ';' + shift+alt: '|' +} + +key PERIOD { + label: '.' + number: '.' + base: '.' + shift: ':' + alt: ':' + shift+alt: '\u2026' +} + +key AT { + label: '@' + number: '0' + base: '@' + shift: '0' + alt: '0' + shift+alt: '\u2022' +} + +key SLASH { + label: '/' + number: '/' + base: '/' + shift: '?' + alt: '?' + shift+alt: '\\' +} + +key SPACE { + label: ' ' + number: ' ' + base: ' ' + shift: ' ' + alt: '\uef01' + shift+alt: '\uef01' +} + +key ENTER { + label: '\n' + number: '\n' + base: '\n' + shift: '\n' + alt: '\n' + shift+alt: '\n' +} + +key TAB { + label: '\t' + number: '\t' + base: '\t' + shift: '\t' + alt: '\t' + shift+alt: '\t' +} + +key 0 { + label: '0' + number: '0' + base: '0' + shift: ')' + alt: ')' + shift+alt: ')' +} + +key 1 { + label: '1' + number: '1' + base: '1' + shift: '!' + alt: '!' + shift+alt: '!' +} + +key 2 { + label: '2' + number: '2' + base: '2' + shift: '@' + alt: '@' + shift+alt: '@' +} + +key 3 { + label: '3' + number: '3' + base: '3' + shift: '#' + alt: '#' + shift+alt: '#' +} + +key 4 { + label: '4' + number: '4' + base: '4' + shift: '$' + alt: '$' + shift+alt: '$' +} + +key 5 { + label: '5' + number: '5' + base: '5' + shift: '%' + alt: '%' + shift+alt: '%' +} + +key 6 { + label: '6' + number: '6' + base: '6' + shift: '^' + alt: '^' + shift+alt: '^' +} + +key 7 { + label: '7' + number: '7' + base: '7' + shift: '&' + alt: '&' + shift+alt: '&' +} + +key 8 { + label: '8' + number: '8' + base: '8' + shift: '*' + alt: '*' + shift+alt: '*' +} + +key 9 { + label: '9' + number: '9' + base: '9' + shift: '(' + alt: '(' + shift+alt: '(' +} + +key GRAVE { + label: '`' + number: '`' + base: '`' + shift: '~' + alt: '`' + shift+alt: '~' +} + +key MINUS { + label: '-' + number: '-' + base: '-' + shift: '_' + alt: '-' + shift+alt: '_' +} + +key EQUALS { + label: '=' + number: '=' + base: '=' + shift: '+' + alt: '=' + shift+alt: '+' +} + +key LEFT_BRACKET { + label: '[' + number: '[' + base: '[' + shift: '{' + alt: '[' + shift+alt: '{' +} + +key RIGHT_BRACKET { + label: ']' + number: ']' + base: ']' + shift: '}' + alt: ']' + shift+alt: '}' +} + +key BACKSLASH { + label: '\\' + number: '\\' + base: '\\' + shift: '|' + alt: '\\' + shift+alt: '|' +} + +key SEMICOLON { + label: ';' + number: ';' + base: ';' + shift: ':' + alt: ';' + shift+alt: ':' +} + +key APOSTROPHE { + label: '\'' + number: '\'' + base: '\'' + shift: '"' + alt: '\'' + shift+alt: '"' +} + +key STAR { + label: '*' + number: '*' + base: '*' + shift: '*' + alt: '*' + shift+alt: '*' +} + +key POUND { + label: '#' + number: '#' + base: '#' + shift: '#' + alt: '#' + shift+alt: '#' +} + +key PLUS { + label: '+' + number: '+' + base: '+' + shift: '+' + alt: '+' + shift+alt: '+' +} diff --git a/system/usr/keychars/qwerty2.kcm b/system/usr/keychars/qwerty2.kcm new file mode 100644 index 0000000000000000000000000000000000000000..b981d835bdfb00670b4e36bb47ba884070293bdc --- /dev/null +++ b/system/usr/keychars/qwerty2.kcm @@ -0,0 +1,505 @@ +# Copyright (C) 2010 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# Emulator keyboard character map #2. +# + +type ALPHA + +key A { + label: 'A' + number: '2' + base: 'a' + shift, capslock: 'A' + alt: '\u00e1' + shift+alt, capslock+alt: '\u00c1' +} + +key B { + label: 'B' + number: '2' + base: 'b' + shift, capslock: 'B' + alt: 'b' + shift+alt, capslock+alt: 'B' +} + +key C { + label: 'C' + number: '2' + base: 'c' + shift, capslock: 'C' + alt: '\u00a9' + shift+alt, capslock+alt: '\u00a2' +} + +key D { + label: 'D' + number: '3' + base: 'd' + shift, capslock: 'D' + alt: '\u00f0' + shift+alt, capslock+alt: '\u00d0' +} + +key E { + label: 'E' + number: '3' + base: 'e' + shift, capslock: 'E' + alt: '\u00e9' + shift+alt, capslock+alt: '\u00c9' +} + +key F { + label: 'F' + number: '3' + base: 'f' + shift, capslock: 'F' + alt: '[' + shift+alt, capslock+alt: '[' +} + +key G { + label: 'G' + number: '4' + base: 'g' + shift, capslock: 'G' + alt: ']' + shift+alt, capslock+alt: ']' +} + +key H { + label: 'H' + number: '4' + base: 'h' + shift, capslock: 'H' + alt: '<' + shift+alt, capslock+alt: '<' +} + +key I { + label: 'I' + number: '4' + base: 'i' + shift, capslock: 'I' + alt: '\u00ed' + shift+alt, capslock+alt: '\u00cd' +} + +key J { + label: 'J' + number: '5' + base: 'j' + shift, capslock: 'J' + alt: '>' + shift+alt, capslock+alt: '>' +} + +key K { + label: 'K' + number: '5' + base: 'k' + shift, capslock: 'K' + alt: ';' + shift+alt, capslock+alt: '~' +} + +key L { + label: 'L' + number: '5' + base: 'l' + shift, capslock: 'L' + alt: '\u00f8' + shift+alt, capslock+alt: '\u00d8' +} + +key M { + label: 'M' + number: '6' + base: 'm' + shift, capslock: 'M' + alt: '\u00b5' + shift+alt, capslock+alt: none +} + +key N { + label: 'N' + number: '6' + base: 'n' + shift, capslock: 'N' + alt: '\u00f1' + shift+alt, capslock+alt: '\u00d1' +} + +key O { + label: 'O' + number: '6' + base: 'o' + shift, capslock: 'O' + alt: '\u00f3' + shift+alt, capslock+alt: '\u00d3' +} + +key P { + label: 'P' + number: '7' + base: 'p' + shift, capslock: 'P' + alt: '\u00f6' + shift+alt, capslock+alt: '\u00d6' +} + +key Q { + label: 'Q' + number: '7' + base: 'q' + shift, capslock: 'Q' + alt: '\u00e4' + shift+alt, capslock+alt: '\u00c4' +} + +key R { + label: 'R' + number: '7' + base: 'r' + shift, capslock: 'R' + alt: '\u00ae' + shift+alt, capslock+alt: 'R' +} + +key S { + label: 'S' + number: '7' + base: 's' + shift, capslock: 'S' + alt: '\u00df' + shift+alt, capslock+alt: '\u00a7' +} + +key T { + label: 'T' + number: '8' + base: 't' + shift, capslock: 'T' + alt: '\u00fe' + shift+alt, capslock+alt: '\u00de' +} + +key U { + label: 'U' + number: '8' + base: 'u' + shift, capslock: 'U' + alt: '\u00fa' + shift+alt, capslock+alt: '\u00da' +} + +key V { + label: 'V' + number: '8' + base: 'v' + shift, capslock: 'V' + alt: 'v' + shift+alt, capslock+alt: 'V' +} + +key W { + label: 'W' + number: '9' + base: 'w' + shift, capslock: 'W' + alt: '\u00e5' + shift+alt, capslock+alt: '\u00c5' +} + +key X { + label: 'X' + number: '9' + base: 'x' + shift, capslock: 'X' + alt: 'x' + shift+alt, capslock+alt: '\uef00' +} + +key Y { + label: 'Y' + number: '9' + base: 'y' + shift, capslock: 'Y' + alt: '\u00fc' + shift+alt, capslock+alt: '\u00dc' +} + +key Z { + label: 'Z' + number: '9' + base: 'z' + shift, capslock: 'Z' + alt: '\u00e6' + shift+alt, capslock+alt: '\u00c6' +} + +key COMMA { + label: ',' + number: ',' + base: ',' + shift: '<' + alt: '\u00e7' + shift+alt: '\u00c7' +} + +key PERIOD { + label: '.' + number: '.' + base: '.' + shift: '>' + alt: '.' + shift+alt: '\u2026' +} + +key AT { + label: '@' + number: '@' + base: '@' + shift: '@' + alt: '@' + shift+alt: '\u2022' +} + +key SLASH { + label: '/' + number: '/' + base: '/' + shift: '?' + alt: '\u00bf' + shift+alt: '?' +} + +key SPACE { + label: ' ' + number: ' ' + base: ' ' + shift: ' ' + alt: '\uef01' + shift+alt: '\uef01' +} + +key ENTER { + label: '\n' + number: '\n' + base: '\n' + shift: '\n' + alt: '\n' + shift+alt: '\n' +} + +key TAB { + label: '\t' + number: '\t' + base: '\t' + shift: '\t' + alt: '\t' + shift+alt: '\t' +} + +key 0 { + label: '0' + number: '0' + base: '0' + shift: ')' + alt: '\u02bc' + shift+alt: ')' +} + +key 1 { + label: '1' + number: '1' + base: '1' + shift: '!' + alt: '\u00a1' + shift+alt: '\u00b9' +} + +key 2 { + label: '2' + number: '2' + base: '2' + shift: '@' + alt: '\u00b2' + shift+alt: '@' +} + +key 3 { + label: '3' + number: '3' + base: '3' + shift: '#' + alt: '\u00b3' + shift+alt: '#' +} + +key 4 { + label: '4' + number: '4' + base: '4' + shift: '$' + alt: '\u00a4' + shift+alt: '\u00a3' +} + +key 5 { + label: '5' + number: '5' + base: '5' + shift: '%' + alt: '\u20ac' + shift+alt: '%' +} + +key 6 { + label: '6' + number: '6' + base: '6' + shift: '^' + alt: '\u00bc' + shift+alt: '\u0302' +} + +key 7 { + label: '7' + number: '7' + base: '7' + shift: '&' + alt: '\u00bd' + shift+alt: '&' +} + +key 8 { + label: '8' + number: '8' + base: '8' + shift: '*' + alt: '\u00be' + shift+alt: '*' +} + +key 9 { + label: '9' + number: '9' + base: '9' + shift: '(' + alt: '\u02bb' + shift+alt: '(' +} + +key GRAVE { + label: '`' + number: '`' + base: '`' + shift: '~' + alt: '\u0300' + shift+alt: '\u0303' +} + +key MINUS { + label: '-' + number: '-' + base: '-' + shift: '_' + alt: '\u00a5' + shift+alt: '_' +} + +key EQUALS { + label: '=' + number: '=' + base: '=' + shift: '+' + alt: '\u00d7' + shift+alt: '\u00f7' +} + +key LEFT_BRACKET { + label: '[' + number: '[' + base: '[' + shift: '{' + alt: '\u00ab' + shift+alt: '{' +} + +key RIGHT_BRACKET { + label: ']' + number: ']' + base: ']' + shift: '}' + alt: '\u00bb' + shift+alt: '}' +} + +key BACKSLASH { + label: '\\' + number: '\\' + base: '\\' + shift: '|' + alt: '\u00ac' + shift+alt: '\u00a6' +} + +key SEMICOLON { + label: ';' + number: ';' + base: ';' + shift: ':' + alt: '\u00b6' + shift+alt: '\u00b0' +} + +key APOSTROPHE { + label: '\'' + number: '\'' + base: '\'' + shift: '"' + alt: '\u0301' + shift+alt: '\u0308' +} + +key STAR { + label: '*' + number: '*' + base: '*' + shift: '*' + alt: '*' + shift+alt: '*' +} + +key POUND { + label: '#' + number: '#' + base: '#' + shift: '#' + alt: '#' + shift+alt: '#' +} + +key PLUS { + label: '+' + number: '+' + base: '+' + shift: '+' + alt: '+' + shift+alt: '+' +} diff --git a/system/usr/keylayout/ACCDET.kl b/system/usr/keylayout/ACCDET.kl new file mode 100644 index 0000000000000000000000000000000000000000..620fd5eeacd6d4adcea7d4cf9801a4acb8d30e0b --- /dev/null +++ b/system/usr/keylayout/ACCDET.kl @@ -0,0 +1,8 @@ + +key 122 ENDCALL +key 163 MEDIA_NEXT +key 164 HEADSETHOOK +key 165 MEDIA_PREVIOUS +key 114 VOLUME_DOWN +key 115 VOLUME_UP +key 582 VOICE_ASSIST diff --git a/system/usr/keylayout/AVRCP.kl b/system/usr/keylayout/AVRCP.kl new file mode 100644 index 0000000000000000000000000000000000000000..ccd0209a731d54601d248a436a2f7a1e47fb3b4e --- /dev/null +++ b/system/usr/keylayout/AVRCP.kl @@ -0,0 +1,23 @@ +# Copyright (C) 2010 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Key layout used for Bluetooth AVRCP support. + +key 200 MEDIA_PLAY +key 201 MEDIA_PAUSE +key 166 MEDIA_STOP +key 163 MEDIA_NEXT +key 165 MEDIA_PREVIOUS +key 168 MEDIA_REWIND +key 208 MEDIA_FAST_FORWARD diff --git a/system/usr/keylayout/Generic.kl b/system/usr/keylayout/Generic.kl new file mode 100644 index 0000000000000000000000000000000000000000..41b88948b1d7b05cc71b7eaa7a39eaa0bf509a45 --- /dev/null +++ b/system/usr/keylayout/Generic.kl @@ -0,0 +1,449 @@ +# Copyright (C) 2010 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# Generic key layout file for full alphabetic US English PC style external keyboards. +# +# This file is intentionally very generic and is intended to support a broad rang of keyboards. +# Do not edit the generic key layout to support a specific keyboard; instead, create +# a new key layout file with the required keyboard configuration. +# + +key 1 ESCAPE +key 2 1 +key 3 2 +key 4 3 +key 5 4 +key 6 5 +key 7 6 +key 8 7 +key 9 8 +key 10 9 +key 11 0 +key 12 MINUS +key 13 EQUALS +key 14 DEL +key 15 TAB +key 16 Q +key 17 W +key 18 E +key 19 R +key 20 T +key 21 Y +key 22 U +key 23 I +key 24 O +key 25 P +key 26 LEFT_BRACKET +key 27 RIGHT_BRACKET +key 28 ENTER +key 29 CTRL_LEFT +key 30 A +key 31 S +key 32 D +key 33 F +key 34 G +key 35 H +key 36 J +key 37 K +key 38 L +key 39 SEMICOLON +key 40 APOSTROPHE +key 41 GRAVE +key 42 SHIFT_LEFT +key 43 BACKSLASH +key 44 Z +key 45 X +key 46 C +key 47 V +key 48 B +key 49 N +key 50 M +key 51 COMMA +key 52 PERIOD +key 53 SLASH +key 54 SHIFT_RIGHT +key 55 NUMPAD_MULTIPLY +key 56 ALT_LEFT +key 57 SPACE +key 58 CAPS_LOCK +key 59 F1 +key 60 F2 +key 61 F3 +key 62 F4 +key 63 F5 +key 64 F6 +key 65 F7 +key 66 F8 +key 67 F9 +key 68 F10 +key 69 NUM_LOCK +key 70 SCROLL_LOCK +key 71 NUMPAD_7 +key 72 NUMPAD_8 +key 73 NUMPAD_9 +key 74 NUMPAD_SUBTRACT +key 75 NUMPAD_4 +key 76 NUMPAD_5 +key 77 NUMPAD_6 +key 78 NUMPAD_ADD +key 79 NUMPAD_1 +key 80 NUMPAD_2 +key 81 NUMPAD_3 +key 82 NUMPAD_0 +key 83 NUMPAD_DOT +# key 84 (undefined) +key 85 ZENKAKU_HANKAKU +key 86 BACKSLASH +key 87 F11 +key 88 F12 +key 89 RO +# key 90 "KEY_KATAKANA" +# key 91 "KEY_HIRAGANA" +key 92 HENKAN +key 93 KATAKANA_HIRAGANA +key 94 MUHENKAN +key 95 NUMPAD_COMMA +key 96 NUMPAD_ENTER +key 97 CTRL_RIGHT +key 98 NUMPAD_DIVIDE +key 99 SYSRQ +key 100 ALT_RIGHT +# key 101 "KEY_LINEFEED" +key 102 MOVE_HOME +key 103 DPAD_UP +key 104 PAGE_UP +key 105 DPAD_LEFT +key 106 DPAD_RIGHT +key 107 MOVE_END +key 108 DPAD_DOWN +key 109 PAGE_DOWN +key 110 INSERT +key 111 FORWARD_DEL +# key 112 "KEY_MACRO" +key 113 VOLUME_MUTE +key 114 VOLUME_DOWN +key 115 VOLUME_UP +key 116 POWER +key 117 NUMPAD_EQUALS +# key 118 "KEY_KPPLUSMINUS" +key 119 BREAK +# key 120 (undefined) +key 121 NUMPAD_COMMA +key 122 KANA +key 123 EISU +key 124 YEN +key 125 META_LEFT +key 126 META_RIGHT +key 127 APP_SWITCH +key 128 MEDIA_STOP +# key 129 "KEY_AGAIN" +# key 130 "KEY_PROPS" +# key 131 "KEY_UNDO" +# key 132 "KEY_FRONT" +key 133 COPY +# key 134 "KEY_OPEN" +key 135 PASTE +# key 136 "KEY_FIND" +key 137 CUT +# key 138 "KEY_HELP" +key 139 APP_SWITCH +key 140 CALCULATOR +# key 141 "KEY_SETUP" +key 142 SLEEP +key 143 WAKEUP +# key 144 "KEY_FILE" +# key 145 "KEY_SENDFILE" +# key 146 "KEY_DELETEFILE" +# key 147 "KEY_XFER" +# key 148 "KEY_PROG1" +# key 149 "KEY_PROG2" +key 150 EXPLORER +# key 151 "KEY_MSDOS" +key 152 POWER +# key 153 "KEY_DIRECTION" +# key 154 "KEY_CYCLEWINDOWS" +key 155 ENVELOPE +key 156 BOOKMARK +# key 157 "KEY_COMPUTER" +key 158 BACK +key 159 FORWARD +key 160 MEDIA_CLOSE +key 161 MEDIA_EJECT +key 162 MEDIA_EJECT +key 163 MEDIA_NEXT +key 164 MEDIA_PLAY_PAUSE +key 165 MEDIA_PREVIOUS +key 166 MEDIA_STOP +key 167 MEDIA_RECORD +key 168 MEDIA_REWIND +key 169 CALL +# key 170 "KEY_ISO" +key 171 MUSIC +key 172 HOME +# key 173 "KEY_REFRESH" +# key 174 "KEY_EXIT" +# key 175 "KEY_MOVE" +# key 176 "KEY_EDIT" +key 177 PAGE_UP +key 178 PAGE_DOWN +key 179 NUMPAD_LEFT_PAREN +key 180 NUMPAD_RIGHT_PAREN +# key 181 "KEY_NEW" +# key 182 "KEY_REDO" +# key 183 F13 +# key 184 F14 +# key 185 F15 +# key 186 F16 +# key 187 F17 +# key 188 F18 +# key 189 F19 +# key 190 F20 +# key 191 F21 +# key 192 F22 +# key 193 F23 +# key 194 F24 +# key 195 (undefined) +# key 196 (undefined) +# key 197 (undefined) +# key 198 (undefined) +# key 199 (undefined) +key 200 MEDIA_PLAY +key 201 MEDIA_PAUSE +# key 202 "KEY_PROG3" +# key 203 "KEY_PROG4" +# key 204 (undefined) +# key 205 "KEY_SUSPEND" +# key 206 "KEY_CLOSE" +key 207 MEDIA_PLAY +key 208 MEDIA_FAST_FORWARD +# key 209 "KEY_BASSBOOST" +# key 210 "KEY_PRINT" +# key 211 "KEY_HP" +key 212 CAMERA +key 213 MUSIC +# key 214 "KEY_QUESTION" +key 215 ENVELOPE +# key 216 "KEY_CHAT" +key 217 SEARCH +# key 218 "KEY_CONNECT" +# key 219 "KEY_FINANCE" +# key 220 "KEY_SPORT" +# key 221 "KEY_SHOP" +# key 222 "KEY_ALTERASE" +# key 223 "KEY_CANCEL" +key 224 BRIGHTNESS_DOWN +key 225 BRIGHTNESS_UP +key 226 HEADSETHOOK + +key 256 BUTTON_1 +key 257 BUTTON_2 +key 258 BUTTON_3 +key 259 BUTTON_4 +key 260 BUTTON_5 +key 261 BUTTON_6 +key 262 BUTTON_7 +key 263 BUTTON_8 +key 264 BUTTON_9 +key 265 BUTTON_10 +key 266 BUTTON_11 +key 267 BUTTON_12 +key 268 BUTTON_13 +key 269 BUTTON_14 +key 270 BUTTON_15 +key 271 BUTTON_16 + +key 288 BUTTON_1 +key 289 BUTTON_2 +key 290 BUTTON_3 +key 291 BUTTON_4 +key 292 BUTTON_5 +key 293 BUTTON_6 +key 294 BUTTON_7 +key 295 BUTTON_8 +key 296 BUTTON_9 +key 297 BUTTON_10 +key 298 BUTTON_11 +key 299 BUTTON_12 +key 300 BUTTON_13 +key 301 BUTTON_14 +key 302 BUTTON_15 +key 303 BUTTON_16 + + +key 304 BUTTON_A +key 305 BUTTON_B +key 306 BUTTON_C +key 307 BUTTON_X +key 308 BUTTON_Y +key 309 BUTTON_Z +key 310 BUTTON_L1 +key 311 BUTTON_R1 +key 312 BUTTON_L2 +key 313 BUTTON_R2 +key 314 BUTTON_SELECT +key 315 BUTTON_START +key 316 BUTTON_MODE +key 317 BUTTON_THUMBL +key 318 BUTTON_THUMBR + + +# key 352 "KEY_OK" +key 353 DPAD_CENTER +# key 354 "KEY_GOTO" +# key 355 "KEY_CLEAR" +# key 356 "KEY_POWER2" +# key 357 "KEY_OPTION" +# key 358 "KEY_INFO" +# key 359 "KEY_TIME" +# key 360 "KEY_VENDOR" +# key 361 "KEY_ARCHIVE" +key 362 GUIDE +# key 363 "KEY_CHANNEL" +# key 364 "KEY_FAVORITES" +# key 365 "KEY_EPG" +key 366 DVR +# key 367 "KEY_MHP" +# key 368 "KEY_LANGUAGE" +# key 369 "KEY_TITLE" +# key 370 "KEY_SUBTITLE" +# key 371 "KEY_ANGLE" +# key 372 "KEY_ZOOM" +# key 373 "KEY_MODE" +# key 374 "KEY_KEYBOARD" +# key 375 "KEY_SCREEN" +# key 376 "KEY_PC" +key 377 TV +# key 378 "KEY_TV2" +# key 379 "KEY_VCR" +# key 380 "KEY_VCR2" +# key 381 "KEY_SAT" +# key 382 "KEY_SAT2" +# key 383 "KEY_CD" +# key 384 "KEY_TAPE" +# key 385 "KEY_RADIO" +# key 386 "KEY_TUNER" +# key 387 "KEY_PLAYER" +# key 388 "KEY_TEXT" +# key 389 "KEY_DVD" +# key 390 "KEY_AUX" +# key 391 "KEY_MP3" +# key 392 "KEY_AUDIO" +# key 393 "KEY_VIDEO" +# key 394 "KEY_DIRECTORY" +# key 395 "KEY_LIST" +# key 396 "KEY_MEMO" +key 397 CALENDAR +# key 398 "KEY_RED" +# key 399 "KEY_GREEN" +# key 400 "KEY_YELLOW" +# key 401 "KEY_BLUE" +key 402 CHANNEL_UP +key 403 CHANNEL_DOWN +# key 404 "KEY_FIRST" +# key 405 "KEY_LAST" +# key 406 "KEY_AB" +# key 407 "KEY_NEXT" +# key 408 "KEY_RESTART" +# key 409 "KEY_SLOW" +# key 410 "KEY_SHUFFLE" +# key 411 "KEY_BREAK" +# key 412 "KEY_PREVIOUS" +# key 413 "KEY_DIGITS" +# key 414 "KEY_TEEN" +# key 415 "KEY_TWEN" + +key 429 CONTACTS + +# key 448 "KEY_DEL_EOL" +# key 449 "KEY_DEL_EOS" +# key 450 "KEY_INS_LINE" +# key 451 "KEY_DEL_LINE" + + +key 464 FUNCTION +key 465 ESCAPE FUNCTION +key 466 F1 FUNCTION +key 467 F2 FUNCTION +key 468 F3 FUNCTION +key 469 F4 FUNCTION +key 470 F5 FUNCTION +key 471 F6 FUNCTION +key 472 F7 FUNCTION +key 473 F8 FUNCTION +key 474 F9 FUNCTION +key 475 F10 FUNCTION +key 476 F11 FUNCTION +key 477 F12 FUNCTION +key 478 1 FUNCTION +key 479 2 FUNCTION +key 480 D FUNCTION +key 481 E FUNCTION +key 482 F FUNCTION +key 483 S FUNCTION +key 484 B FUNCTION + + +# key 497 KEY_BRL_DOT1 +# key 498 KEY_BRL_DOT2 +# key 499 KEY_BRL_DOT3 +# key 500 KEY_BRL_DOT4 +# key 501 KEY_BRL_DOT5 +# key 502 KEY_BRL_DOT6 +# key 503 KEY_BRL_DOT7 +# key 504 KEY_BRL_DOT8 + +# KT_FINGERPRINT_ACTION +key 511 SYSTEM_NAVIGATION_UP +key 512 SYSTEM_NAVIGATION_DOWN +key 513 SYSTEM_NAVIGATION_LEFT +key 514 SYSTEM_NAVIGATION_RIGHT +key 601 FINGERPRINT_TOUCH +# KT_FINGERPRINT_ACTION + +key 580 APP_SWITCH +key 582 VOICE_ASSIST + +# Keys defined by HID usages +key usage 0x0c006F BRIGHTNESS_UP +key usage 0x0c0070 BRIGHTNESS_DOWN + +# Joystick and game controller axes. +# Axes that are not mapped will be assigned generic axis numbers by the input subsystem. +axis 0x00 X +axis 0x01 Y +axis 0x02 Z +axis 0x03 RX +axis 0x04 RY +axis 0x05 RZ +axis 0x06 THROTTLE +axis 0x07 RUDDER +axis 0x08 WHEEL +axis 0x09 GAS +axis 0x0a BRAKE +axis 0x10 HAT_X +axis 0x11 HAT_Y + +# LEDs +led 0x00 NUM_LOCK +led 0x01 CAPS_LOCK +led 0x02 SCROLL_LOCK +led 0x03 COMPOSE +led 0x04 KANA +led 0x05 SLEEP +led 0x06 SUSPEND +led 0x07 MUTE +led 0x08 MISC +led 0x09 MAIL +led 0x0a CHARGING diff --git a/system/usr/keylayout/Vendor_0079_Product_0011.kl b/system/usr/keylayout/Vendor_0079_Product_0011.kl new file mode 100644 index 0000000000000000000000000000000000000000..32f8c829cd65ee5cc14b31313c4620da40c63b3d --- /dev/null +++ b/system/usr/keylayout/Vendor_0079_Product_0011.kl @@ -0,0 +1,27 @@ +# Copyright (C) 2013 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Classic [S]NES Controller + +key 288 BUTTON_X +key 289 BUTTON_A +key 290 BUTTON_B +key 291 BUTTON_Y +key 292 BUTTON_L1 +key 293 BUTTON_R1 +key 297 BUTTON_START +key 296 BUTTON_SELECT + +axis 0x00 HAT_X +axis 0x01 HAT_Y diff --git a/system/usr/keylayout/Vendor_045e_Product_028e.kl b/system/usr/keylayout/Vendor_045e_Product_028e.kl new file mode 100644 index 0000000000000000000000000000000000000000..301601a1ffdd0eed787745f867a0cc90eca106ec --- /dev/null +++ b/system/usr/keylayout/Vendor_045e_Product_028e.kl @@ -0,0 +1,46 @@ +# Copyright (C) 2011 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# XBox 360 USB Controller +# + +key 304 BUTTON_A +key 305 BUTTON_B +key 307 BUTTON_X +key 308 BUTTON_Y +key 310 BUTTON_L1 +key 311 BUTTON_R1 +key 314 BACK +key 315 BUTTON_START +key 316 HOME +key 317 BUTTON_THUMBL +key 318 BUTTON_THUMBR + +# Left and right stick. +# The reported value for flat is 128 out of a range from -32767 to 32768, which is absurd. +# This confuses applications that rely on the flat value because the joystick actually +# settles in a flat range of +/- 4096 or so. +axis 0x00 X flat 4096 +axis 0x01 Y flat 4096 +axis 0x03 Z flat 4096 +axis 0x04 RZ flat 4096 + +# Triggers. +axis 0x02 LTRIGGER +axis 0x05 RTRIGGER + +# Hat. +axis 0x10 HAT_X +axis 0x11 HAT_Y diff --git a/system/usr/keylayout/Vendor_045e_Product_02d1.kl b/system/usr/keylayout/Vendor_045e_Product_02d1.kl new file mode 100644 index 0000000000000000000000000000000000000000..5d1637bb012d209deb7d862db979a0cebdb724ca --- /dev/null +++ b/system/usr/keylayout/Vendor_045e_Product_02d1.kl @@ -0,0 +1,46 @@ +# Copyright (C) 2016 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# XBox One USB Controller +# + +key 304 BUTTON_A +key 305 BUTTON_B +key 307 BUTTON_X +key 308 BUTTON_Y +key 310 BUTTON_L1 +key 311 BUTTON_R1 +key 314 BACK +key 315 BUTTON_START +key 316 HOME +key 317 BUTTON_THUMBL +key 318 BUTTON_THUMBR + +# Left and right stick. +# The reported value for flat is 128 out of a range from -32767 to 32768, which is absurd. +# This confuses applications that rely on the flat value because the joystick actually +# settles in a flat range of +/- 4096 or so. +axis 0x00 X flat 4096 +axis 0x01 Y flat 4096 +axis 0x03 Z flat 4096 +axis 0x04 RZ flat 4096 + +# Triggers. +axis 0x02 LTRIGGER +axis 0x05 RTRIGGER + +# Hat. +axis 0x10 HAT_X +axis 0x11 HAT_Y diff --git a/system/usr/keylayout/Vendor_046d_Product_b501.kl b/system/usr/keylayout/Vendor_046d_Product_b501.kl new file mode 100644 index 0000000000000000000000000000000000000000..496ddc3eec06c860a7bbee48e932a7187ab8dad0 --- /dev/null +++ b/system/usr/keylayout/Vendor_046d_Product_b501.kl @@ -0,0 +1,65 @@ +# Copyright (C) 2014 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Logitech Bluetooth wireless gamepad (RedHawk) + +key 304 BUTTON_A +key 305 BUTTON_B +key 307 BUTTON_X +key 308 BUTTON_Y +key 310 BUTTON_L1 +key 311 BUTTON_R1 +key 312 BUTTON_L2 +key 313 BUTTON_R2 + +key 314 BUTTON_SELECT +key 315 BUTTON_START +key 316 BUTTON_MODE +key 317 BUTTON_THUMBL +key 318 BUTTON_THUMBR + +key 103 DPAD_UP +key 105 DPAD_LEFT +key 106 DPAD_RIGHT +key 108 DPAD_DOWN +key 353 DPAD_CENTER + +key 113 VOLUME_MUTE +key 114 VOLUME_DOWN +key 115 VOLUME_UP +key 152 POWER +key 163 MEDIA_NEXT +key 164 MEDIA_PLAY_PAUSE +key 165 MEDIA_PREVIOUS + +key 158 BACK +key 172 HOME + +key 217 SEARCH +key 580 APP_SWITCH +key 582 ASSIST + +axis 0x00 X +axis 0x01 Y +axis 0x02 Z +axis 0x05 RZ +axis 0x09 RTRIGGER +axis 0x0a LTRIGGER +axis 0x10 HAT_X +axis 0x11 HAT_Y + +led 0x00 CONTROLLER_1 +led 0x01 CONTROLLER_2 +led 0x02 CONTROLLER_3 +led 0x03 CONTROLLER_4 diff --git a/system/usr/keylayout/Vendor_046d_Product_c216.kl b/system/usr/keylayout/Vendor_046d_Product_c216.kl new file mode 100644 index 0000000000000000000000000000000000000000..6743323d7db8c3ab17beec571011246016dad3cc --- /dev/null +++ b/system/usr/keylayout/Vendor_046d_Product_c216.kl @@ -0,0 +1,37 @@ +# Copyright (C) 2011 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# Logitech Dual Action Controller +# + +key 0x120 BUTTON_A +key 0x123 BUTTON_B +key 0x121 BUTTON_X +key 0x122 BUTTON_Y +key 0x124 BUTTON_L1 +key 0x125 BUTTON_R1 +key 0x126 BUTTON_L2 +key 0x127 BUTTON_R2 +key 0x128 BUTTON_SELECT +key 0x129 BUTTON_START +key 0x12a BUTTON_THUMBL +key 0x12b BUTTON_THUMBR + +axis 0x00 X +axis 0x01 Y +axis 0x02 Z +axis 0x05 RZ +axis 0x10 HAT_X +axis 0x11 HAT_Y diff --git a/system/usr/keylayout/Vendor_046d_Product_c219.kl b/system/usr/keylayout/Vendor_046d_Product_c219.kl new file mode 100644 index 0000000000000000000000000000000000000000..2fa964ce532eabf1e32185a82486b2abcfd98b5d --- /dev/null +++ b/system/usr/keylayout/Vendor_046d_Product_c219.kl @@ -0,0 +1,35 @@ +# Copyright (C) 2013 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Logitech Logitech Cordless RumblePad 2 + +key 305 BUTTON_A +key 306 BUTTON_B +key 304 BUTTON_X +key 307 BUTTON_Y +key 308 BUTTON_L1 +key 309 BUTTON_R1 +key 310 BUTTON_L2 +key 311 BUTTON_R2 +key 313 BUTTON_START +key 312 BACK +key 314 BUTTON_THUMBL +key 315 BUTTON_THUMBR + +axis 0x00 X +axis 0x01 Y +axis 0x02 Z +axis 0x05 RZ +axis 0x10 HAT_X +axis 0x11 HAT_Y diff --git a/system/usr/keylayout/Vendor_046d_Product_c21d.kl b/system/usr/keylayout/Vendor_046d_Product_c21d.kl new file mode 100644 index 0000000000000000000000000000000000000000..3fbdecc1747e84e0096bf19417d17ab355401bab --- /dev/null +++ b/system/usr/keylayout/Vendor_046d_Product_c21d.kl @@ -0,0 +1,36 @@ +# Copyright (C) 2014 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Logitech F310 + +key 304 BUTTON_A +key 305 BUTTON_B +key 307 BUTTON_X +key 308 BUTTON_Y +key 310 BUTTON_L1 +key 311 BUTTON_R1 +key 315 BUTTON_START +key 314 BACK +key 316 HOME +key 317 BUTTON_THUMBL +key 318 BUTTON_THUMBR + +axis 0x00 X +axis 0x01 Y +axis 0x03 Z +axis 0x04 RZ +axis 0x05 GAS +axis 0x02 BRAKE +axis 0x10 HAT_X +axis 0x11 HAT_Y diff --git a/system/usr/keylayout/Vendor_046d_Product_c21f.kl b/system/usr/keylayout/Vendor_046d_Product_c21f.kl new file mode 100644 index 0000000000000000000000000000000000000000..a9ba3781ec1b43f16a2e7ad4d9c54c6bab539a3b --- /dev/null +++ b/system/usr/keylayout/Vendor_046d_Product_c21f.kl @@ -0,0 +1,36 @@ +# Copyright (C) 2013 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Logitech Wireless Gamepad F710 + +key 304 BUTTON_A +key 305 BUTTON_B +key 307 BUTTON_X +key 308 BUTTON_Y +key 310 BUTTON_L1 +key 311 BUTTON_R1 +key 315 BUTTON_START +key 314 BACK +key 316 HOME +key 317 BUTTON_THUMBL +key 318 BUTTON_THUMBR + +axis 0x00 X +axis 0x01 Y +axis 0x03 Z +axis 0x04 RZ +axis 0x05 RTRIGGER +axis 0x02 LTRIGGER +axis 0x10 HAT_X +axis 0x11 HAT_Y diff --git a/system/usr/keylayout/Vendor_046d_Product_c294.kl b/system/usr/keylayout/Vendor_046d_Product_c294.kl new file mode 100644 index 0000000000000000000000000000000000000000..5492f49758f0eedb69429b68aedc5de089070e82 --- /dev/null +++ b/system/usr/keylayout/Vendor_046d_Product_c294.kl @@ -0,0 +1,53 @@ +# Copyright (C) 2011 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# Logitech G25 Racing Wheel (in Compatibility Mode) +# + +# 4 way buttons above hat +key 0x121 BUTTON_A +key 0x123 BUTTON_B +key 0x120 BUTTON_X +key 0x122 BUTTON_Y + +# Row of buttons under hat +key 0x12b BUTTON_1 +key 0x128 BUTTON_2 +key 0x129 BUTTON_3 +key 0x12a BUTTON_4 + +# Gear shift positions +# 0x12a top-left gear (aliased as BUTTON_4) +# 0x12b bottom-left gear (aliased as BUTTON_1) + +# Buttons on wheel +key 0x127 BUTTON_L1 +key 0x126 BUTTON_R1 + +# Toggles under wheel +key 0x125 BUTTON_L2 +key 0x124 BUTTON_R2 + +# Hat +axis 0x10 HAT_X +axis 0x11 HAT_Y + +# Steering Wheel +axis 0x00 WHEEL + +# Accelerator / Brake +# 00..7e : accelerator +# 80..ff : brake +axis 0x01 split 0x7f GAS BRAKE diff --git a/system/usr/keylayout/Vendor_046d_Product_c299.kl b/system/usr/keylayout/Vendor_046d_Product_c299.kl new file mode 100644 index 0000000000000000000000000000000000000000..d42963dbc961146fe5fc86837142b3f745dbc1ba --- /dev/null +++ b/system/usr/keylayout/Vendor_046d_Product_c299.kl @@ -0,0 +1,62 @@ +# Copyright (C) 2011 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# Logitech G25 Racing Wheel (in Native Mode) +# + +# 4 way buttons above hat +key 0x121 BUTTON_A +key 0x123 BUTTON_B +key 0x120 BUTTON_X +key 0x122 BUTTON_Y + +# Row of buttons under hat +key 0x12b BUTTON_1 +key 0x128 BUTTON_2 +key 0x129 BUTTON_3 +key 0x12a BUTTON_4 + +# Gear shift positions +key 0x12c BUTTON_5 +key 0x12d BUTTON_6 +key 0x12e BUTTON_7 +key 0x12f BUTTON_8 +key 0x2d0 BUTTON_9 +key 0x2d1 BUTTON_10 +key 0x2d2 BUTTON_11 + +# Buttons on wheel +key 0x127 BUTTON_L1 +key 0x126 BUTTON_R1 + +# Toggles under wheel +key 0x125 BUTTON_L2 +key 0x124 BUTTON_R2 + +# Hat +axis 0x10 HAT_X +axis 0x11 HAT_Y + +# Steering Wheel +axis 0x00 WHEEL + +# Clutch +axis 0x01 invert GENERIC_1 + +# Accelerator +axis 0x02 invert GAS + +# Brake +axis 0x05 invert BRAKE diff --git a/system/usr/keylayout/Vendor_046d_Product_c532.kl b/system/usr/keylayout/Vendor_046d_Product_c532.kl new file mode 100644 index 0000000000000000000000000000000000000000..741c2e18b228a4d84f4d5b132262a10e56126b67 --- /dev/null +++ b/system/usr/keylayout/Vendor_046d_Product_c532.kl @@ -0,0 +1,133 @@ +# Copyright (C) 2010 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# Logitech Revue Wireless keyboard +# +# Notes: +# - The GRAVE key is emulated by the keyboard. +# ALT + LEFT_BRACKET produces GRAVE. +# ALT + RIGHT_BRACKET produces SHIFT + GRAVE. +# - FORWARD_DEL is produced by fn + BACKSPACE +# - PAGE_UP / PAGE_DOWN is produced by fn + CHANNEL_UP / CHANNEL_DOWN +# - The AVR / STB / TV power and input buttons seem to be non-functional +# as well as several of the other fn buttons and the PIP button? + +key 1 ESCAPE +key 2 1 +key 3 2 +key 4 3 +key 5 4 +key 6 5 +key 7 6 +key 8 7 +key 9 8 +key 10 9 +key 11 0 +key 12 MINUS +key 13 EQUALS +key 14 DEL +key 15 TAB +key 16 Q +key 17 W +key 18 E +key 19 R +key 20 T +key 21 Y +key 22 U +key 23 I +key 24 O +key 25 P +key 26 LEFT_BRACKET +key 27 RIGHT_BRACKET +key 28 ENTER +key 29 CTRL_LEFT +key 30 A +key 31 S +key 32 D +key 33 F +key 34 G +key 35 H +key 36 J +key 37 K +key 38 L +key 39 SEMICOLON +key 40 APOSTROPHE +key 41 GRAVE +key 42 SHIFT_LEFT +key 43 BACKSLASH +key 44 Z +key 45 X +key 46 C +key 47 V +key 48 B +key 49 N +key 50 M +key 51 COMMA +key 52 PERIOD +key 53 SLASH +key 54 SHIFT_RIGHT +key 56 ALT_RIGHT +key 57 SPACE +key 58 CAPS_LOCK +key 59 F1 +key 60 F2 +key 61 F3 +key 62 F4 +key 63 F5 +key 64 F6 +key 65 F7 +key 66 F8 +key 67 F9 +key 68 F10 +key 87 F11 +key 88 F12 +key 96 DPAD_CENTER +key 97 CTRL_RIGHT +key 102 MOVE_HOME +key 103 DPAD_UP +key 104 PAGE_UP +key 105 DPAD_LEFT +key 106 DPAD_RIGHT +key 107 MOVE_END +key 108 DPAD_DOWN +key 109 PAGE_DOWN +key 110 NUMPAD_ENTER +key 111 FORWARD_DEL +key 113 VOLUME_MUTE +key 114 VOLUME_DOWN +key 115 VOLUME_UP +key 119 MEDIA_PAUSE +key 125 SEARCH +key 127 MENU +key 156 BOOKMARK +key 158 BACK +key 163 MEDIA_NEXT +key 165 MEDIA_PREVIOUS +key 166 MEDIA_STOP +key 167 MEDIA_RECORD +key 168 MEDIA_REWIND +key 172 HOME +key 207 MEDIA_PLAY +key 208 MEDIA_FAST_FORWARD +# key 288 left mouse button +# key 289 right mouse button (fn + button) +key 362 GUIDE +key 366 DVR +key 377 TV +key 402 CHANNEL_UP +key 403 CHANNEL_DOWN +key 418 ZOOM_IN +key 419 ZOOM_OUT + diff --git a/system/usr/keylayout/Vendor_054c_Product_0268.kl b/system/usr/keylayout/Vendor_054c_Product_0268.kl new file mode 100644 index 0000000000000000000000000000000000000000..7c601373c2d0ab2c193b58e15332aa823273e1bf --- /dev/null +++ b/system/usr/keylayout/Vendor_054c_Product_0268.kl @@ -0,0 +1,76 @@ +# Copyright (C) 2011 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# Sony Playstation(R)3 Controller +# + +key 0x124 DPAD_UP +key 0x125 DPAD_RIGHT +key 0x126 DPAD_DOWN +key 0x127 DPAD_LEFT + +key 0x120 BUTTON_SELECT +key 0x123 BUTTON_START +key 0x12e BUTTON_A +key 0x12d BUTTON_B +key 0x12f BUTTON_X +key 0x12c BUTTON_Y +key 0x12a BUTTON_L1 +key 0x12b BUTTON_R1 +key 0x128 BUTTON_L2 +key 0x129 BUTTON_R2 +key 0x121 BUTTON_THUMBL +key 0x122 BUTTON_THUMBR + +# PS key +key 0x2d0 HOME + +# Left Analog Stick +axis 0x00 X +axis 0x01 Y + +# Right Analog Stick +axis 0x02 Z +axis 0x05 RZ + +# DPAD +# axis 0x2c -HAT_Y +# axis 0x2d +HAT_X +# axis 0x2e +HAT_Y +# axis 0x2f -HAT_X + +# L2 trigger +axis 0x30 LTRIGGER + +# R2 trigger +axis 0x31 RTRIGGER + +# L1 trigger +# axis 0x32 + +# R1 trigger +# axis 0x33 + +# Triangle +# axis 0x34 + +# Circle +# axis 0x35 + +# Cross +# axis 0x36 + +# Square +# axis 0x37 diff --git a/system/usr/keylayout/Vendor_0583_Product_2060.kl b/system/usr/keylayout/Vendor_0583_Product_2060.kl new file mode 100644 index 0000000000000000000000000000000000000000..92c8a14a2fce17aad3fb9b80766553b75a7fb31b --- /dev/null +++ b/system/usr/keylayout/Vendor_0583_Product_2060.kl @@ -0,0 +1,27 @@ +# Copyright (C) 2013 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# ION GO PAD + +key 288 BUTTON_A +key 289 BUTTON_B +key 290 BUTTON_X +key 291 BUTTON_Y +key 294 BUTTON_L1 +key 295 BUTTON_R1 +key 292 BUTTON_L2 +key 293 BUTTON_R2 + +axis 0x00 HAT_X +axis 0x01 HAT_Y diff --git a/system/usr/keylayout/Vendor_05ac_Product_0239.kl b/system/usr/keylayout/Vendor_05ac_Product_0239.kl new file mode 100644 index 0000000000000000000000000000000000000000..b0c358e7d86363b39b16c064de78ee4e18b1e1d6 --- /dev/null +++ b/system/usr/keylayout/Vendor_05ac_Product_0239.kl @@ -0,0 +1,119 @@ +# Copyright (C) 2010 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# Apple Wireless Keyboard +# +# Notes: +# - Keys such as PAGE_UP and FORWARD_DEL are produced using the +# function key. +# - Special function keys for brightness control, etc. are not +# implemented here. + +key 1 ESCAPE +key 2 1 +key 3 2 +key 4 3 +key 5 4 +key 6 5 +key 7 6 +key 8 7 +key 9 8 +key 10 9 +key 11 0 +key 12 MINUS +key 13 EQUALS +key 14 DEL +key 15 TAB +key 16 Q +key 17 W +key 18 E +key 19 R +key 20 T +key 21 Y +key 22 U +key 23 I +key 24 O +key 25 P +key 26 LEFT_BRACKET +key 27 RIGHT_BRACKET +key 28 ENTER +key 29 CTRL_LEFT +key 30 A +key 31 S +key 32 D +key 33 F +key 34 G +key 35 H +key 36 J +key 37 K +key 38 L +key 39 SEMICOLON +key 40 APOSTROPHE +key 41 GRAVE +key 42 SHIFT_LEFT +key 43 BACKSLASH +key 44 Z +key 45 X +key 46 C +key 47 V +key 48 B +key 49 N +key 50 M +key 51 COMMA +key 52 PERIOD +key 53 SLASH +key 54 SHIFT_RIGHT +key 56 ALT_LEFT +key 57 SPACE +key 58 CAPS_LOCK +key 59 F1 +key 60 F2 +key 61 F3 +key 62 F4 +key 63 F5 +key 64 F6 +key 65 F7 +key 66 F8 +key 67 F9 +key 68 F10 +key 87 F11 +key 88 F12 +key 100 ALT_RIGHT +key 102 MOVE_HOME +key 103 DPAD_UP +key 104 PAGE_UP +key 105 DPAD_LEFT +key 106 DPAD_RIGHT +key 107 MOVE_END +key 108 DPAD_DOWN +key 109 PAGE_DOWN +key 110 NUMPAD_ENTER +key 111 FORWARD_DEL +key 113 VOLUME_MUTE +key 114 VOLUME_DOWN +key 115 VOLUME_UP +key 120 APP_SWITCH +key 125 META_LEFT +key 126 META_RIGHT +key 161 MEDIA_EJECT +key 163 MEDIA_NEXT +key 164 MEDIA_PLAY_PAUSE +key 165 MEDIA_PREVIOUS +# key 204 show gadgets +key 224 BRIGHTNESS_DOWN +key 225 BRIGHTNESS_UP +# key 229 blank special function on F5 +# key 230 blank special function on F6 +key 464 FUNCTION diff --git a/system/usr/keylayout/Vendor_0b05_Product_4500.kl b/system/usr/keylayout/Vendor_0b05_Product_4500.kl new file mode 100644 index 0000000000000000000000000000000000000000..a7d519e903d7754a2664fb7207f416d518ab119f --- /dev/null +++ b/system/usr/keylayout/Vendor_0b05_Product_4500.kl @@ -0,0 +1,42 @@ +# Copyright (C) 2014 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Asus Gamepad + +key 304 BUTTON_A +key 305 BUTTON_B +key 307 BUTTON_X +key 308 BUTTON_Y +key 310 BUTTON_L1 +key 311 BUTTON_R1 +key 316 BUTTON_MODE +key 317 BUTTON_THUMBL +key 318 BUTTON_THUMBR + +key 158 BACK +key 172 HOME + +axis 0x00 X +axis 0x01 Y +axis 0x02 Z +axis 0x05 RZ +axis 0x09 RTRIGGER +axis 0x0a LTRIGGER +axis 0x10 HAT_X +axis 0x11 HAT_Y + +led 0x00 CONTROLLER_1 +led 0x01 CONTROLLER_2 +led 0x02 CONTROLLER_3 +led 0x03 CONTROLLER_4 diff --git a/system/usr/keylayout/Vendor_1038_Product_1412.kl b/system/usr/keylayout/Vendor_1038_Product_1412.kl new file mode 100644 index 0000000000000000000000000000000000000000..551b0bd7562612b924d29ed574e86e29ec059dbf --- /dev/null +++ b/system/usr/keylayout/Vendor_1038_Product_1412.kl @@ -0,0 +1,31 @@ +# Copyright (C) 2013 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Steelseries Free + +key 304 BUTTON_A +key 305 BUTTON_B +key 307 BUTTON_X +key 308 BUTTON_Y +key 310 BUTTON_L1 +key 311 BUTTON_R1 +key 315 BUTTON_START +key 316 BUTTON_SELECT + +axis 0x00 X +axis 0x01 Y +axis 0x02 Z +axis 0x05 RZ +axis 0x10 HAT_X +axis 0x11 HAT_Y diff --git a/system/usr/keylayout/Vendor_12bd_Product_d015.kl b/system/usr/keylayout/Vendor_12bd_Product_d015.kl new file mode 100644 index 0000000000000000000000000000000000000000..557d62f135e064b3e0c95367cbac08a34a10caf1 --- /dev/null +++ b/system/usr/keylayout/Vendor_12bd_Product_d015.kl @@ -0,0 +1,27 @@ +# Copyright (C) 2013 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Hitgaming SNES Retro + +key 306 BUTTON_A +key 305 BUTTON_B +key 307 BUTTON_X +key 304 BUTTON_Y +key 308 BUTTON_L1 +key 309 BUTTON_R1 +key 313 BUTTON_START +key 312 BUTTON_SELECT + +axis 0x00 HAT_X +axis 0x01 HAT_Y diff --git a/system/usr/keylayout/Vendor_1532_Product_0900.kl b/system/usr/keylayout/Vendor_1532_Product_0900.kl new file mode 100644 index 0000000000000000000000000000000000000000..c2fc1b4f93653bd041831ac4a2807b98352bb9cd --- /dev/null +++ b/system/usr/keylayout/Vendor_1532_Product_0900.kl @@ -0,0 +1,42 @@ +# Copyright (C) 2014 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Razer Serval + +key 304 BUTTON_A +key 305 BUTTON_B +key 307 BUTTON_X +key 308 BUTTON_Y +key 310 BUTTON_L1 +key 311 BUTTON_R1 +key 316 BUTTON_MODE +key 317 BUTTON_THUMBL +key 318 BUTTON_THUMBR + +key 158 BACK +key 172 HOME + +axis 0x00 X +axis 0x01 Y +axis 0x02 Z +axis 0x05 RZ +axis 0x09 RTRIGGER +axis 0x0a LTRIGGER +axis 0x10 HAT_X +axis 0x11 HAT_Y + +led 0x00 CONTROLLER_1 +led 0x01 CONTROLLER_2 +led 0x02 CONTROLLER_3 +led 0x03 CONTROLLER_4 diff --git a/system/usr/keylayout/Vendor_1689_Product_fd00.kl b/system/usr/keylayout/Vendor_1689_Product_fd00.kl new file mode 100644 index 0000000000000000000000000000000000000000..8407b130647267e0cb9f894f5091676842841389 --- /dev/null +++ b/system/usr/keylayout/Vendor_1689_Product_fd00.kl @@ -0,0 +1,38 @@ +# Copyright (C) 2013 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Razer Onza Tournament Edition + +key 304 BUTTON_A +key 305 BUTTON_B +key 307 BUTTON_X +key 308 BUTTON_Y +key 310 BUTTON_L1 +key 311 BUTTON_R1 +key 315 BUTTON_START +key 314 BACK +key 316 HOME +key 317 BUTTON_THUMBL +key 318 BUTTON_THUMBR +key 706 DPAD_UP +key 705 DPAD_RIGHT +key 707 DPAD_DOWN +key 704 DPAD_LEFT + +axis 0x00 X +axis 0x01 Y +axis 0x03 Z +axis 0x04 RZ +axis 0x05 RTRIGGER +axis 0x02 LTRIGGER diff --git a/system/usr/keylayout/Vendor_1689_Product_fd01.kl b/system/usr/keylayout/Vendor_1689_Product_fd01.kl new file mode 100644 index 0000000000000000000000000000000000000000..cacc07526b153f49db881c4ed48f3fe33c2e19b4 --- /dev/null +++ b/system/usr/keylayout/Vendor_1689_Product_fd01.kl @@ -0,0 +1,36 @@ +# Copyright (C) 2013 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Razer Xbox 360 Gamepad + +key 304 BUTTON_A +key 305 BUTTON_B +key 307 BUTTON_X +key 308 BUTTON_Y +key 310 BUTTON_L1 +key 311 BUTTON_R1 +key 315 BUTTON_START +key 314 BACK +key 316 HOME +key 317 BUTTON_THUMBL +key 318 BUTTON_THUMBR + +axis 0x00 X +axis 0x01 Y +axis 0x03 Z +axis 0x04 RZ +axis 0x05 RTRIGGER +axis 0x02 LTRIGGER +axis 0x10 HAT_X +axis 0x11 HAT_Y diff --git a/system/usr/keylayout/Vendor_1689_Product_fe00.kl b/system/usr/keylayout/Vendor_1689_Product_fe00.kl new file mode 100644 index 0000000000000000000000000000000000000000..467173f001589c4db70b010de1da65b12305ee39 --- /dev/null +++ b/system/usr/keylayout/Vendor_1689_Product_fe00.kl @@ -0,0 +1,36 @@ +# Copyright (C) 2013 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Razer Sabertooth Elite + +key 304 BUTTON_A +key 305 BUTTON_B +key 307 BUTTON_X +key 308 BUTTON_Y +key 310 BUTTON_L1 +key 311 BUTTON_R1 +key 315 BUTTON_START +key 314 BACK +key 316 HOME +key 317 BUTTON_THUMBL +key 318 BUTTON_THUMBR + +axis 0x00 X +axis 0x01 Y +axis 0x03 Z +axis 0x04 RZ +axis 0x05 RTRIGGER +axis 0x02 LTRIGGER +axis 0x10 HAT_X +axis 0x11 HAT_Y diff --git a/system/usr/keylayout/Vendor_18d1_Product_2c40.kl b/system/usr/keylayout/Vendor_18d1_Product_2c40.kl new file mode 100644 index 0000000000000000000000000000000000000000..6efde4fa2cbc22465ac001a33c74e71d676ceda9 --- /dev/null +++ b/system/usr/keylayout/Vendor_18d1_Product_2c40.kl @@ -0,0 +1,42 @@ +# Copyright (C) 2013 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Odie + +key 304 BUTTON_A +key 305 BUTTON_B +key 307 BUTTON_X +key 308 BUTTON_Y +key 310 BUTTON_L1 +key 311 BUTTON_R1 +key 316 BUTTON_MODE +key 317 BUTTON_THUMBL +key 318 BUTTON_THUMBR + +key 158 BACK +key 172 HOME + +axis 0x00 X +axis 0x01 Y +axis 0x02 Z +axis 0x05 RZ +axis 0x09 RTRIGGER +axis 0x0a LTRIGGER +axis 0x10 HAT_X +axis 0x11 HAT_Y + +led 0x00 CONTROLLER_1 +led 0x01 CONTROLLER_2 +led 0x02 CONTROLLER_3 +led 0x03 CONTROLLER_4 diff --git a/system/usr/keylayout/Vendor_18d1_Product_5018.kl b/system/usr/keylayout/Vendor_18d1_Product_5018.kl new file mode 100644 index 0000000000000000000000000000000000000000..e95ccb5c472c1ea53e7f8272b961eb2aa674cf31 --- /dev/null +++ b/system/usr/keylayout/Vendor_18d1_Product_5018.kl @@ -0,0 +1,84 @@ +# Copyright (C) 2015 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# Key layout for Google Pixel C Keyboard +# + +# Row 1 +key 2 1 +key 3 2 +key 4 3 +key 5 4 +key 6 5 +key 7 6 +key 8 7 +key 9 8 +key 10 9 +key 11 0 +key 12 MINUS +key 14 DEL # Backspace + +# Row 2 +key 15 TAB +key 16 Q +key 17 W +key 18 E +key 19 R +key 20 T +key 21 Y +key 22 U +key 23 I +key 24 O +key 25 P +key 13 EQUALS +key 28 ENTER + +# Row 3 +key 125 META_LEFT # "Search key" +key 30 A +key 31 S +key 32 D +key 33 F +key 34 G +key 35 H +key 36 J +key 37 K +key 38 L +key 39 SEMICOLON +key 40 APOSTROPHE + +# Row 4 +key 42 SHIFT_LEFT +key 44 Z +key 45 X +key 46 C +key 47 V +key 48 B +key 49 N +key 50 M +key 51 COMMA +key 52 PERIOD +key 53 SLASH +key 54 SHIFT_RIGHT + +# Row 5 +key 29 CTRL_LEFT +key 56 ALT_LEFT +key 57 SPACE +key 100 ALT_RIGHT +key 103 DPAD_UP +key 105 DPAD_LEFT +key 106 DPAD_RIGHT +key 108 DPAD_DOWN diff --git a/system/usr/keylayout/Vendor_1949_Product_0401.kl b/system/usr/keylayout/Vendor_1949_Product_0401.kl new file mode 100644 index 0000000000000000000000000000000000000000..ab24bcdedaf3a2c5e02e3a3a2480ce7f3b2c979f --- /dev/null +++ b/system/usr/keylayout/Vendor_1949_Product_0401.kl @@ -0,0 +1,27 @@ +# Copyright (C) 2014 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Amazon Fire TV remote + +key 103 DPAD_UP +key 108 DPAD_DOWN +key 105 DPAD_LEFT +key 106 DPAD_RIGHT +key 96 DPAD_CENTER +key 158 BACK +key 172 HOME +key 168 MEDIA_REWIND +key 208 MEDIA_FAST_FORWARD +key 164 MEDIA_PLAY_PAUSE +key 217 ASSIST diff --git a/system/usr/keylayout/Vendor_1bad_Product_f016.kl b/system/usr/keylayout/Vendor_1bad_Product_f016.kl new file mode 100644 index 0000000000000000000000000000000000000000..00f855915015f0930471992dcbef81096fbee0ea --- /dev/null +++ b/system/usr/keylayout/Vendor_1bad_Product_f016.kl @@ -0,0 +1,36 @@ +# Copyright (C) 2013 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Madcatz Gamepad + +key 304 BUTTON_A +key 305 BUTTON_B +key 307 BUTTON_X +key 308 BUTTON_Y +key 310 BUTTON_L1 +key 311 BUTTON_R1 +key 315 BUTTON_START +key 314 BACK +key 316 HOME +key 317 BUTTON_THUMBL +key 318 BUTTON_THUMBR + +axis 0x00 X +axis 0x01 Y +axis 0x03 Z +axis 0x04 RZ +axis 0x05 RTRIGGER +axis 0x02 LTRIGGER +axis 0x10 HAT_X +axis 0x11 HAT_Y diff --git a/system/usr/keylayout/Vendor_1bad_Product_f023.kl b/system/usr/keylayout/Vendor_1bad_Product_f023.kl new file mode 100644 index 0000000000000000000000000000000000000000..175a523b5b3e2c8308bfa156abef98db5ed79abd --- /dev/null +++ b/system/usr/keylayout/Vendor_1bad_Product_f023.kl @@ -0,0 +1,35 @@ +# Copyright (C) 2013 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Mad Catz MLG GamePad for Xbox 360 + +key 304 BUTTON_A +key 305 BUTTON_B +key 307 BUTTON_X +key 308 BUTTON_Y +key 310 BUTTON_L1 +key 311 BUTTON_R1 +key 315 BUTTON_START +key 314 BACK +key 317 BUTTON_THUMBL +key 318 BUTTON_THUMBR + +axis 0x00 X +axis 0x01 Y +axis 0x03 Z +axis 0x04 RZ +axis 0x05 RTRIGGER +axis 0x02 LTRIGGER +axis 0x10 HAT_X +axis 0x11 HAT_Y diff --git a/system/usr/keylayout/Vendor_1bad_Product_f027.kl b/system/usr/keylayout/Vendor_1bad_Product_f027.kl new file mode 100644 index 0000000000000000000000000000000000000000..216e3daebb9c7a033888f7f26aee4cd1bf2d48d9 --- /dev/null +++ b/system/usr/keylayout/Vendor_1bad_Product_f027.kl @@ -0,0 +1,36 @@ +# Copyright (C) 2013 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# MadCatz FPS Pro + +key 304 BUTTON_A +key 305 BUTTON_B +key 307 BUTTON_X +key 308 BUTTON_Y +key 310 BUTTON_L1 +key 311 BUTTON_R1 +key 315 BUTTON_START +key 314 BACK +key 316 HOME +key 317 BUTTON_THUMBL +key 318 BUTTON_THUMBR + +axis 0x00 X +axis 0x01 Y +axis 0x03 Z +axis 0x04 RZ +axis 0x05 RTRIGGER +axis 0x02 LTRIGGER +axis 0x10 HAT_X +axis 0x11 HAT_Y diff --git a/system/usr/keylayout/Vendor_1bad_Product_f036.kl b/system/usr/keylayout/Vendor_1bad_Product_f036.kl new file mode 100644 index 0000000000000000000000000000000000000000..f27de1c0e4f2a525ab7ea8af0e8e1235d4a4bf3a --- /dev/null +++ b/system/usr/keylayout/Vendor_1bad_Product_f036.kl @@ -0,0 +1,36 @@ +# Copyright (C) 2013 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# MadCatz Generic XBox Controller + +key 304 BUTTON_A +key 305 BUTTON_B +key 307 BUTTON_X +key 308 BUTTON_Y +key 310 BUTTON_L1 +key 311 BUTTON_R1 +key 315 BUTTON_START +key 314 BACK +key 316 HOME +key 317 BUTTON_THUMBL +key 318 BUTTON_THUMBR + +axis 0x00 X +axis 0x01 Y +axis 0x03 Z +axis 0x04 RZ +axis 0x05 RTRIGGER +axis 0x02 LTRIGGER +axis 0x10 HAT_X +axis 0x11 HAT_Y diff --git a/system/usr/keylayout/Vendor_1d79_Product_0009.kl b/system/usr/keylayout/Vendor_1d79_Product_0009.kl new file mode 100644 index 0000000000000000000000000000000000000000..a3d5bbdb3cc25f9182aed9cdf905087841482353 --- /dev/null +++ b/system/usr/keylayout/Vendor_1d79_Product_0009.kl @@ -0,0 +1,40 @@ +# Copyright (C) 2013 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Nyko Playpad / Playpad Pro + +key 304 BUTTON_A +key 305 BUTTON_B +key 307 BUTTON_X +key 308 BUTTON_Y +key 310 BUTTON_L1 +key 311 BUTTON_R1 +key 315 BUTTON_START +key 158 BACK +key 172 HOME +key 317 BUTTON_THUMBL +key 318 BUTTON_THUMBR +key 103 DPAD_UP +key 105 DPAD_LEFT +key 106 DPAD_RIGHT +key 108 DPAD_DOWN + +axis 0x00 X +axis 0x01 Y +axis 0x02 Z +axis 0x05 RZ +axis 0x09 RTRIGGER +axis 0x0a LTRIGGER +axis 0x10 HAT_X +axis 0x11 HAT_Y diff --git a/system/usr/keylayout/Vendor_22b8_Product_093d.kl b/system/usr/keylayout/Vendor_22b8_Product_093d.kl new file mode 100644 index 0000000000000000000000000000000000000000..2749c5ba98b5fb7ded86f2b9ede395477091b4b7 --- /dev/null +++ b/system/usr/keylayout/Vendor_22b8_Product_093d.kl @@ -0,0 +1,105 @@ +# Copyright (C) 2010 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# Motorola Bluetooth Wireless Keyboard. +# + +key 1 BACK +key 2 1 +key 3 2 +key 4 3 +key 5 4 +key 6 5 +key 7 6 +key 8 7 +key 9 8 +key 10 9 +key 11 0 +key 12 MINUS +key 13 EQUALS +key 14 DEL +key 15 TAB +key 16 Q +key 17 W +key 18 E +key 19 R +key 20 T +key 21 Y +key 22 U +key 23 I +key 24 O +key 25 P +key 26 LEFT_BRACKET +key 27 RIGHT_BRACKET +key 28 ENTER +key 29 CTRL_LEFT +key 30 A +key 31 S +key 32 D +key 33 F +key 34 G +key 35 H +key 36 J +key 37 K +key 38 L +key 39 SEMICOLON +key 40 APOSTROPHE +key 41 GRAVE +key 42 SHIFT_LEFT +key 43 BACKSLASH +key 44 Z +key 45 X +key 46 C +key 47 V +key 48 B +key 49 N +key 50 M +key 51 COMMA +key 52 PERIOD +key 53 SLASH +key 54 SHIFT_RIGHT +key 56 ALT_LEFT +key 57 SPACE +key 58 CAPS_LOCK +key 59 F1 +key 60 F2 +key 61 F3 +key 62 F4 +key 63 F5 +key 64 F6 +key 65 F7 +key 66 F8 +key 67 F9 +key 68 F10 +key 87 F11 +key 88 F12 +key 97 CTRL_RIGHT +key 102 HOME +key 103 DPAD_UP +key 105 DPAD_LEFT +key 106 DPAD_RIGHT +key 107 MOVE_END +key 108 DPAD_DOWN +key 111 FORWARD_DEL +key 113 VOLUME_MUTE +key 114 VOLUME_DOWN +key 115 VOLUME_UP +key 125 MENU +key 127 SEARCH +key 163 MEDIA_NEXT +key 164 MEDIA_PLAY_PAUSE +key 165 MEDIA_PREVIOUS +key 166 MEDIA_STOP +# key 226 tbd reserved key diff --git a/system/usr/keylayout/Vendor_2378_Product_1008.kl b/system/usr/keylayout/Vendor_2378_Product_1008.kl new file mode 100644 index 0000000000000000000000000000000000000000..478da03b9a78d188d9581c7d005f9000b63607f1 --- /dev/null +++ b/system/usr/keylayout/Vendor_2378_Product_1008.kl @@ -0,0 +1,35 @@ +# Copyright (C) 2014 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# OnLive, Inc. OnLive Wireless Controller, USB adapter + +key 304 BUTTON_A +key 305 BUTTON_B +key 307 BUTTON_X +key 308 BUTTON_Y +key 310 BUTTON_L1 +key 311 BUTTON_R1 +key 315 BUTTON_START +key 314 BUTTON_SELECT +key 317 BUTTON_THUMBL +key 318 BUTTON_THUMBR + +axis 0x00 X +axis 0x01 Y +axis 0x03 Z +axis 0x04 RZ +axis 0x05 RTRIGGER +axis 0x02 LTRIGGER +axis 0x10 HAT_X +axis 0x11 HAT_Y diff --git a/system/usr/keylayout/Vendor_2378_Product_100a.kl b/system/usr/keylayout/Vendor_2378_Product_100a.kl new file mode 100644 index 0000000000000000000000000000000000000000..d9cd1712046465fad9f484d02788c27eb353645b --- /dev/null +++ b/system/usr/keylayout/Vendor_2378_Product_100a.kl @@ -0,0 +1,35 @@ +# Copyright (C) 2013 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# OnLive, Inc. OnLive Wireless Controller + +key 304 BUTTON_A +key 305 BUTTON_B +key 307 BUTTON_X +key 308 BUTTON_Y +key 310 BUTTON_L1 +key 311 BUTTON_R1 +key 315 BUTTON_START +key 314 BUTTON_SELECT +key 317 BUTTON_THUMBL +key 318 BUTTON_THUMBR + +axis 0x00 X +axis 0x01 Y +axis 0x03 Z +axis 0x04 RZ +axis 0x05 RTRIGGER +axis 0x02 LTRIGGER +axis 0x10 HAT_X +axis 0x11 HAT_Y diff --git a/system/usr/keylayout/mtk-kpd.kl b/system/usr/keylayout/mtk-kpd.kl new file mode 100644 index 0000000000000000000000000000000000000000..28a3bdf4b3f20289618c9a359d375d635ba5aaff --- /dev/null +++ b/system/usr/keylayout/mtk-kpd.kl @@ -0,0 +1,96 @@ +key 399 GRAVE +key 2 1 +key 3 2 +key 4 3 +key 5 4 +key 6 5 +key 7 6 +key 8 7 +key 9 8 +key 10 9 +key 11 0 +key 158 BACK +key 230 SOFT_RIGHT +key 60 SOFT_RIGHT +key 107 ENDCALL +key 62 ENDCALL +key 229 MENU +key 139 MENU +key 59 MENU +key 127 SYM +key 217 SEARCH +key 228 POUND +key 227 STAR +key 231 CALL +key 61 CALL +key 232 DPAD_CENTER +key 108 DPAD_DOWN +key 103 DPAD_UP +key 102 HOME +key 105 DPAD_LEFT +key 106 DPAD_RIGHT +key 115 VOLUME_UP +key 114 VOLUME_DOWN +key 113 MUTE +key 116 POWER +key 212 CAMERA +key 211 FOCUS + +key 16 Q +key 17 W +key 18 E +key 19 R +key 20 T +key 21 Y +key 22 U +key 23 I +key 24 O +key 25 P +key 26 LEFT_BRACKET +key 27 RIGHT_BRACKET +key 43 BACKSLASH + +key 30 A +key 31 S +key 32 D +key 33 F +key 34 G +key 35 H +key 36 J +key 37 K +key 38 L +key 39 SEMICOLON +key 40 APOSTROPHE +key 14 DEL + +key 44 Z +key 45 X +key 46 C +key 47 V +key 48 B +key 49 N +key 50 M +key 51 COMMA +key 52 PERIOD +key 53 SLASH +key 28 ENTER + +key 56 ALT_LEFT +key 100 ALT_RIGHT +key 42 SHIFT_LEFT +key 54 SHIFT_RIGHT +key 15 TAB +key 57 SPACE +key 150 EXPLORER +key 155 ENVELOPE + +key 12 MINUS +key 13 EQUALS +key 215 AT + +key 164 MEDIA_PLAY_PAUSE +key 128 MEDIA_STOP +key 163 MEDIA_NEXT +key 165 MEDIA_PREVIOUS +key 168 MEDIA_REWIND +key 159 MEDIA_FAST_FORWARD diff --git a/system/usr/keylayout/qwerty.kl b/system/usr/keylayout/qwerty.kl new file mode 100644 index 0000000000000000000000000000000000000000..2fd99abbb9fe56a7765ad6cb0ac517ece3d8e6d9 --- /dev/null +++ b/system/usr/keylayout/qwerty.kl @@ -0,0 +1,131 @@ +# Copyright (C) 2010 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# Emulator keyboard layout #1. +# +# This file is no longer used as the platform's default keyboard layout. +# Refer to Generic.kl instead. +# + +key 399 GRAVE +key 2 1 +key 3 2 +key 4 3 +key 5 4 +key 6 5 +key 7 6 +key 8 7 +key 9 8 +key 10 9 +key 11 0 +key 158 BACK +key 230 SOFT_RIGHT +key 60 SOFT_LEFT +key 107 ENDCALL +key 62 ENDCALL +key 229 MENU +key 139 MENU +key 59 MENU +key 127 SEARCH +key 217 SEARCH +key 228 POUND +key 227 STAR +key 231 CALL +key 61 CALL +key 232 DPAD_CENTER +key 108 DPAD_DOWN +key 103 DPAD_UP +key 102 HOME +key 105 DPAD_LEFT +key 106 DPAD_RIGHT +key 115 VOLUME_UP +key 114 VOLUME_DOWN +key 116 POWER +key 212 CAMERA + +key 16 Q +key 17 W +key 18 E +key 19 R +key 20 T +key 21 Y +key 22 U +key 23 I +key 24 O +key 25 P +key 26 LEFT_BRACKET +key 27 RIGHT_BRACKET +key 43 BACKSLASH + +key 30 A +key 31 S +key 32 D +key 33 F +key 34 G +key 35 H +key 36 J +key 37 K +key 38 L +key 39 SEMICOLON +key 40 APOSTROPHE +key 14 DEL + +key 44 Z +key 45 X +key 46 C +key 47 V +key 48 B +key 49 N +key 50 M +key 51 COMMA +key 52 PERIOD +key 53 SLASH +key 28 ENTER + +key 56 ALT_LEFT +key 100 ALT_RIGHT +key 42 SHIFT_LEFT +key 54 SHIFT_RIGHT +key 15 TAB +key 57 SPACE +key 150 EXPLORER +key 155 ENVELOPE + +key 12 MINUS +key 13 EQUALS +key 215 AT + +# On an AT keyboard: ESC, F10 +key 1 BACK +key 68 MENU + +# App switch = Overview key +key 580 APP_SWITCH + +# Media control keys +key 160 MEDIA_CLOSE +key 161 MEDIA_EJECT +key 163 MEDIA_NEXT +key 164 MEDIA_PLAY_PAUSE +key 165 MEDIA_PREVIOUS +key 166 MEDIA_STOP +key 167 MEDIA_RECORD +key 168 MEDIA_REWIND + +key 142 SLEEP +key 581 STEM_PRIMARY +key 582 STEM_1 +key 583 STEM_2 +key 584 STEM_3 diff --git a/system/usr/share/bmd/RFFspeed_501.bmd b/system/usr/share/bmd/RFFspeed_501.bmd new file mode 100644 index 0000000000000000000000000000000000000000..e7299a519902835c3216b96bbcc7a58bd473837d Binary files /dev/null and b/system/usr/share/bmd/RFFspeed_501.bmd differ diff --git a/system/usr/share/bmd/RFFstd_501.bmd b/system/usr/share/bmd/RFFstd_501.bmd new file mode 100644 index 0000000000000000000000000000000000000000..218739612fca0e64cd4bea17ebf706b5183ea2a6 Binary files /dev/null and b/system/usr/share/bmd/RFFstd_501.bmd differ diff --git a/system/usr/share/ime/google/d3_lms/en_us_d3_20180105.dict b/system/usr/share/ime/google/d3_lms/en_us_d3_20180105.dict new file mode 100644 index 0000000000000000000000000000000000000000..6d8bce186b68f933fa1a948b3de72d75a7b5c52e Binary files /dev/null and b/system/usr/share/ime/google/d3_lms/en_us_d3_20180105.dict differ diff --git a/system/usr/share/zoneinfo/tzdata b/system/usr/share/zoneinfo/tzdata new file mode 100644 index 0000000000000000000000000000000000000000..c5932bcef4ca03d5d8b404b9a356aef7c60f7d38 Binary files /dev/null and b/system/usr/share/zoneinfo/tzdata differ diff --git a/system/usr/share/zoneinfo/tzlookup.xml b/system/usr/share/zoneinfo/tzlookup.xml new file mode 100644 index 0000000000000000000000000000000000000000..5846f506368dd5aae5fd4e5ef067b7a1910d9a72 --- /dev/null +++ b/system/usr/share/zoneinfo/tzlookup.xml @@ -0,0 +1,1622 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +** +** Copyright 2006, The Android Open Source Project +** +** Licensed under the Apache License, Version 2.0 (the "License"); +** you may not use this file except in compliance with the License. +** You may obtain a copy of the License at +** +** http://www.apache.org/licenses/LICENSE-2.0 +** +** Unless required by applicable law or agreed to in writing, software +** distributed under the License is distributed on an "AS IS" BASIS, +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +** See the License for the specific language governing permissions and +** limitations under the License. +*/ +--> +<timezones> + <!-- Time zones by country. + + Data in this file originates from IANA's zone.tab file. + The ordering of zones within each country is Android-specific and + affects Android behavior, see below for details. + + The ordering of country elements is not important but is kept in ASCII + order by code for easier maintenance. There must only be one country + element per unique code. The code attribute is the (lower cased) + ISO 3166 2-character country code used in the IANA zones.tab file. + + The <id> entries contain the IANA IDs for time zones used in a + country. + + The file is used when picking a time zone for an Android device given + a known local time, offset from UTC and whether the local zone is + currently observing DST. + + The ordering of <id> elements is important because it influence the + order that time zones in a country are considered. + + Currently the <id> entries are mostly primarily ordered by raw (non-DST) + offset and then "desirability". This ordering is an historical artifact + that is likely to change in future. + + The most sensible ordering for <id> entries for a country is by + population of users that observe the time zone to maximize the + probability of matching an arbitrary user. Then: + + The first <id> entry for a given country should have the highest + likelihood of matching the user's needs when only the user's country + code is available. + + The first zone that matches a user's country, offset and DST state + should have the highest likelihood of matching the user's needs when + country code, offset and DST state are available. + --> + <countryzones> + + <!-- ANDORRA, 1:00 --> + <country code="ad"> + <id>Europe/Andorra</id> + </country> + + <!-- UNITED ARAB EMIRATES, 4:00 --> + <country code="ae"> + <id>Asia/Dubai</id> + </country> + + <!-- AFGHANISTAN, 4:30 --> + <country code="af"> + <id>Asia/Kabul</id> + </country> + + <!-- ANTIGUA AND BARBUDA, -4:00 --> + <country code="ag"> + <id>America/Antigua</id> + </country> + + <!-- ANGUILLA, -4:00 --> + <country code="ai"> + <id>America/Anguilla</id> + </country> + + <!-- ALBANIA, 1:00 --> + <country code="al"> + <id>Europe/Tirane</id> + </country> + + <!-- ARMENIA, 4:00 --> + <country code="am"> + <id>Asia/Yerevan</id> + </country> + + <!-- ANGOLA, 1:00 --> + <country code="ao"> + <id>Africa/Luanda</id> + </country> + + <!-- ANTARCTICA --> + <country code="aq"> + <!-- 12:00 --> + <id>Antarctica/McMurdo</id> + + <!-- 10:00 --> + <id>Antarctica/DumontDUrville</id> + + <!-- 8:00 --> + <id>Antarctica/Casey</id> + + <!-- 7:00 --> + <id>Antarctica/Davis</id> + + <!-- 5:00 --> + <id>Antarctica/Mawson</id> + + <!-- 6:00 --> + <id>Antarctica/Vostok</id> + + <!-- 3:00 --> + <id>Antarctica/Syowa</id> + + <!-- 0:00 --> + <id>Antarctica/Troll</id> + + <!-- -3:00 --> + <id>Antarctica/Rothera</id> + + <!-- -4:00 --> + <id>Antarctica/Palmer</id> + </country> + + <!-- ARGENTINA, -3:00 --> + <country code="ar"> + <id>America/Argentina/Buenos_Aires</id> + <id>America/Argentina/Cordoba</id> + <id>America/Argentina/Salta</id> + <id>America/Argentina/Jujuy</id> + <id>America/Argentina/Tucuman</id> + <id>America/Argentina/Catamarca</id> + <id>America/Argentina/La_Rioja</id> + <id>America/Argentina/San_Juan</id> + <id>America/Argentina/Mendoza</id> + <id>America/Argentina/San_Luis</id> + <id>America/Argentina/Rio_Gallegos</id> + <id>America/Argentina/Ushuaia</id> + </country> + + <!-- AMERICAN SAMOA, -11:00 --> + <country code="as"> + <id>Pacific/Pago_Pago</id> + </country> + + <!-- AUSTRIA, 1:00 --> + <country code="at"> + <id>Europe/Vienna</id> + </country> + + <!-- AUSTRALIA --> + <country code="au"> + <!-- 10:00 --> + <id>Australia/Sydney</id> + <id>Australia/Melbourne</id> + <id>Australia/Brisbane</id> + <id>Australia/Hobart</id> + <id>Australia/Currie</id> + <id>Australia/Lindeman</id> + + <!-- 11:00 --> + <id>Antarctica/Macquarie</id> + + <!-- 10:30 --> + <id>Australia/Lord_Howe</id> + + <!-- 9:30 --> + <id>Australia/Adelaide</id> + <id>Australia/Broken_Hill</id> + <id>Australia/Darwin</id> + + <!-- 8:00 --> + <id>Australia/Perth</id> + + <!-- 8:45 --> + <id>Australia/Eucla</id> + </country> + + <!-- ARUBA, -4:00 --> + <country code="aw"> + <id>America/Aruba</id> + </country> + + <!-- ALAND ISLANDS, 2:00 --> + <country code="ax"> + <id>Europe/Mariehamn</id> + </country> + + <!-- AZERBAIJAN, 4:00 --> + <country code="az"> + <id>Asia/Baku</id> + </country> + + <!-- BOSNIA AND HERZEGOVINA, 1:00 --> + <country code="ba"> + <id>Europe/Sarajevo</id> + </country> + + <!-- BARBADOS, -4:00 --> + <country code="bb"> + <id>America/Barbados</id> + </country> + + <!-- BANGLADESH, 6:00 --> + <country code="bd"> + <id>Asia/Dhaka</id> + </country> + + <!-- BELGIUM, 1:00 --> + <country code="be"> + <id>Europe/Brussels</id> + </country> + + <!-- BURKINA FASO, 0:00 --> + <country code="bf"> + <id>Africa/Ouagadougou</id> + </country> + + <!-- BULGARIA, 2:00 --> + <country code="bg"> + <id>Europe/Sofia</id> + </country> + + <!-- BAHRAIN, 3:00 --> + <country code="bh"> + <id>Asia/Bahrain</id> + </country> + + <!-- BURUNDI, 2:00 --> + <country code="bi"> + <id>Africa/Bujumbura</id> + </country> + + <!-- BENIN, 1:00 --> + <country code="bj"> + <id>Africa/Porto-Novo</id> + </country> + + <!-- Saint Barthélemy, -4:00 --> + <country code="bl"> + <id>America/St_Barthelemy</id> + </country> + + <!-- BERMUDA, -4:00 --> + <country code="bm"> + <id>Atlantic/Bermuda</id> + </country> + + <!-- BRUNEI DARUSSALAM, 8:00 --> + <country code="bn"> + <id>Asia/Brunei</id> + </country> + + <!-- BOLIVIA, -4:00 --> + <country code="bo"> + <id>America/La_Paz</id> + </country> + + <!-- Caribbean Netherlands, -4:00 --> + <country code="bq"> + <id>America/Kralendijk</id> + </country> + + <!-- BRAZIL --> + <country code="br"> + <!-- -2:00 --> + <id>America/Noronha</id> + + <!-- -3:00 --> + <id>America/Sao_Paulo</id> + <id>America/Belem</id> + <id>America/Fortaleza</id> + <id>America/Recife</id> + <id>America/Araguaina</id> + <id>America/Maceio</id> + <id>America/Bahia</id> + <id>America/Santarem</id> + + <!-- -4:00 --> + <id>America/Manaus</id> + <id>America/Campo_Grande</id> + <id>America/Cuiaba</id> + <id>America/Porto_Velho</id> + <id>America/Boa_Vista</id> + + <!-- -5:00 --> + <id>America/Eirunepe</id> + <id>America/Rio_Branco</id> + </country> + + <!-- BAHAMAS, -5:00 --> + <country code="bs"> + <id>America/Nassau</id> + </country> + + <!-- BHUTAN, 6:00 --> + <country code="bt"> + <id>Asia/Thimphu</id> + </country> + + <!-- BOTSWANA, 2:00 --> + <country code="bw"> + <id>Africa/Gaborone</id> + </country> + + <!-- BELARUS, 3:00 --> + <country code="by"> + <id>Europe/Minsk</id> + </country> + + <!-- BELIZE, -6:00 --> + <country code="bz"> + <id>America/Belize</id> + </country> + + <!-- CANADA --> + <country code="ca"> + <!-- -3:30 --> + <id>America/St_Johns</id> + + <!-- -4:00 --> + <id>America/Halifax</id> + <id>America/Glace_Bay</id> + <id>America/Moncton</id> + <id>America/Goose_Bay</id> + <id>America/Blanc-Sablon</id> + + <!-- -5:00 --> + <id>America/Toronto</id> + <id>America/Nipigon</id> + <id>America/Thunder_Bay</id> + <id>America/Iqaluit</id> + <id>America/Pangnirtung</id> + <id>America/Atikokan</id> + + <!-- -6:00 --> + <id>America/Winnipeg</id> + <id>America/Regina</id> + <id>America/Rankin_Inlet</id> + <id>America/Rainy_River</id> + <id>America/Swift_Current</id> + <id>America/Resolute</id> + + <!-- -7:00 --> + <id>America/Edmonton</id> + <id>America/Cambridge_Bay</id> + <id>America/Yellowknife</id> + <id>America/Inuvik</id> + <id>America/Dawson_Creek</id> + <id>America/Creston</id> + <id>America/Fort_Nelson</id> + + <!-- -8:00 --> + <id>America/Vancouver</id> + <id>America/Whitehorse</id> + <id>America/Dawson</id> + </country> + + <!-- COCOS (KEELING) ISLANDS, 6:30 --> + <country code="cc"> + <id>Indian/Cocos</id> + </country> + + <!-- CONGO, THE DEMOCRATIC REPUBLIC OF THE --> + <country code="cd"> + <!-- 2:00 --> + <id>Africa/Lubumbashi</id> + + <!-- 1:00 --> + <id>Africa/Kinshasa</id> + </country> + + <!-- CENTRAL AFRICAN REPUBLIC, 1:00 --> + <country code="cf"> + <id>Africa/Bangui</id> + </country> + + <!-- CONGO, 1:00 --> + <country code="cg"> + <id>Africa/Brazzaville</id> + </country> + + <!-- SWITZERLAND, 1:00 --> + <country code="ch"> + <id>Europe/Zurich</id> + </country> + + <!-- COTE D'IVOIRE, 0:00 --> + <country code="ci"> + <id>Africa/Abidjan</id> + </country> + + <!-- COOK ISLANDS, -10:00 --> + <country code="ck"> + <id>Pacific/Rarotonga</id> + </country> + + <!-- CHILE --> + <country code="cl"> + <!-- -3:00 --> + <id>America/Punta_Arenas</id> + + <!-- -4:00 --> + <id>America/Santiago</id> + + <!-- -6:00 --> + <id>Pacific/Easter</id> + </country> + + <!-- CAMEROON, 1:00 --> + <country code="cm"> + <id>Africa/Douala</id> + </country> + + <!-- CHINA --> + <country code="cn"> + <!-- 8:00 --> + <id>Asia/Shanghai</id> + + <!-- 6:00 --> + <id>Asia/Urumqi</id> + </country> + + <!-- COLOMBIA, -5:00 --> + <country code="co"> + <id>America/Bogota</id> + </country> + + <!-- COSTA RICA, -6:00 --> + <country code="cr"> + <id>America/Costa_Rica</id> + </country> + + <!-- CUBA, -5:00 --> + <country code="cu"> + <id>America/Havana</id> + </country> + + <!-- CAPE VERDE, -1:00 --> + <country code="cv"> + <id>Atlantic/Cape_Verde</id> + </country> + + <!-- Curaçao, -4:00 --> + <country code="cw"> + <id>America/Curacao</id> + </country> + + <!-- CHRISTMAS ISLAND, 7:00 --> + <country code="cx"> + <id>Indian/Christmas</id> + </country> + + <!-- CYPRUS --> + <country code="cy"> + <!-- 2:00 --> + <id>Asia/Nicosia</id> + + <!-- 3:00 --> + <id>Asia/Famagusta</id> + </country> + + <!-- CZECH REPUBLIC, 1:00 --> + <country code="cz"> + <id>Europe/Prague</id> + </country> + + <!-- GERMANY, 1:00 --> + <country code="de"> + <id>Europe/Berlin</id> + <id>Europe/Busingen</id> + </country> + + <!-- DJIBOUTI, 3:00 --> + <country code="dj"> + <id>Africa/Djibouti</id> + </country> + + <!-- DENMARK, 1:00 --> + <country code="dk"> + <id>Europe/Copenhagen</id> + </country> + + <!-- DOMINICA, -4:00 --> + <country code="dm"> + <id>America/Dominica</id> + </country> + + <!-- DOMINICAN REPUBLIC, -4:00 --> + <country code="do"> + <id>America/Santo_Domingo</id> + </country> + + <!-- ALGERIA, 1:00 --> + <country code="dz"> + <id>Africa/Algiers</id> + </country> + + <!-- ECUADOR --> + <country code="ec"> + <!-- -5:00 --> + <id>America/Guayaquil</id> + + <!-- -6:00 --> + <id>Pacific/Galapagos</id> + </country> + + <!-- ESTONIA, 2:00 --> + <country code="ee"> + <id>Europe/Tallinn</id> + </country> + + <!-- EGYPT, 2:00 --> + <country code="eg"> + <id>Africa/Cairo</id> + </country> + + <!-- WESTERN SAHARA, 0:00 --> + <country code="eh"> + <id>Africa/El_Aaiun</id> + </country> + + <!-- ERITREA, 3:00 --> + <country code="er"> + <id>Africa/Asmara</id> + </country> + + <!-- SPAIN --> + <country code="es"> + <!-- 1:00 --> + <id>Europe/Madrid</id> + <id>Africa/Ceuta</id> + + <!-- 0:00 --> + <id>Atlantic/Canary</id> + </country> + + <!-- ETHIOPIA, 3:00 --> + <country code="et"> + <id>Africa/Addis_Ababa</id> + </country> + + <!-- FINLAND, 2:00 --> + <country code="fi"> + <id>Europe/Helsinki</id> + </country> + + <!-- FIJI, 12:00 --> + <country code="fj"> + <id>Pacific/Fiji</id> + </country> + + <!-- FALKLAND ISLANDS (MALVINAS), -3:00 --> + <country code="fk"> + <id>Atlantic/Stanley</id> + </country> + + <!-- MICRONESIA, FEDERATED STATES OF --> + <country code="fm"> + <!-- 11:00 --> + <id>Pacific/Pohnpei</id> + <id>Pacific/Kosrae</id> + + <!-- 10:00 --> + <id>Pacific/Chuuk</id> + </country> + + <!-- FAROE ISLANDS, 0:00 --> + <country code="fo"> + <id>Atlantic/Faroe</id> + </country> + + <!-- FRANCE, 1:00 --> + <country code="fr"> + <id>Europe/Paris</id> + </country> + + <!-- GABON, 1:00 --> + <country code="ga"> + <id>Africa/Libreville</id> + </country> + + <!-- UNITED KINGDOM, 0:00 --> + <country code="gb"> + <id>Europe/London</id> + </country> + + <!-- GRENADA, -4:00 --> + <country code="gd"> + <id>America/Grenada</id> + </country> + + <!-- GEORGIA, 4:00 --> + <country code="ge"> + <id>Asia/Tbilisi</id> + </country> + + <!-- FRENCH GUIANA, -3:00 --> + <country code="gf"> + <id>America/Cayenne</id> + </country> + + <!-- GUERNSEY, 0:00 --> + <country code="gg"> + <id>Europe/Guernsey</id> + </country> + + <!-- GHANA, 0:00 --> + <country code="gh"> + <id>Africa/Accra</id> + </country> + + <!-- GIBRALTAR, 1:00 --> + <country code="gi"> + <id>Europe/Gibraltar</id> + </country> + + <!-- GREENLAND --> + <country code="gl"> + <!-- 0:00 --> + <id>America/Danmarkshavn</id> + + <!-- -1:00 --> + <id>America/Scoresbysund</id> + + <!-- -3:00 --> + <id>America/Godthab</id> + + <!-- -4:00 --> + <id>America/Thule</id> + </country> + + <!-- GAMBIA, 0:00 --> + <country code="gm"> + <id>Africa/Banjul</id> + </country> + + <!-- GUINEA, 0:00 --> + <country code="gn"> + <id>Africa/Conakry</id> + </country> + + <!-- GUADELOUPE, -4:00 --> + <country code="gp"> + <id>America/Guadeloupe</id> + </country> + + <!-- EQUATORIAL GUINEA, 1:00 --> + <country code="gq"> + <id>Africa/Malabo</id> + </country> + + <!-- GREECE, 2:00 --> + <country code="gr"> + <id>Europe/Athens</id> + </country> + + <!-- SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS, -2:00 --> + <country code="gs"> + <id>Atlantic/South_Georgia</id> + </country> + + <!-- GUATEMALA, -6:00 --> + <country code="gt"> + <id>America/Guatemala</id> + </country> + + <!-- GUAM, 10:00 --> + <country code="gu"> + <id>Pacific/Guam</id> + </country> + + <!-- GUINEA-BISSAU, 0:00 --> + <country code="gw"> + <id>Africa/Bissau</id> + </country> + + <!-- GUYANA, -4:00 --> + <country code="gy"> + <id>America/Guyana</id> + </country> + + <!-- HONG KONG, 8:00 --> + <country code="hk"> + <id>Asia/Hong_Kong</id> + </country> + + <!-- HONDURAS, -6:00 --> + <country code="hn"> + <id>America/Tegucigalpa</id> + </country> + + <!-- CROATIA, 1:00 --> + <country code="hr"> + <id>Europe/Zagreb</id> + </country> + + <!-- HAITI, -5:00 --> + <country code="ht"> + <id>America/Port-au-Prince</id> + </country> + + <!-- HUNGARY, 1:00 --> + <country code="hu"> + <id>Europe/Budapest</id> + </country> + + <!-- INDONESIA --> + <country code="id"> + <!-- 9:00 --> + <id>Asia/Jayapura</id> + + <!-- 8:00 --> + <id>Asia/Makassar</id> + + <!-- 7:00 --> + <id>Asia/Jakarta</id> + <id>Asia/Pontianak</id> + </country> + + <!-- IRELAND, 0:00 --> + <country code="ie"> + <id>Europe/Dublin</id> + </country> + + <!-- ISRAEL, 2:00 --> + <country code="il"> + <id>Asia/Jerusalem</id> + </country> + + <!-- ISLE OF MAN, 0:00 --> + <country code="im"> + <id>Europe/Isle_of_Man</id> + </country> + + <!-- INDIA, 5:30 --> + <country code="in"> + <id>Asia/Kolkata</id> + </country> + + <!-- BRITISH INDIAN OCEAN TERRITORY, 6:00 --> + <country code="io"> + <id>Indian/Chagos</id> + </country> + + <!-- IRAQ, 3:00 --> + <country code="iq"> + <id>Asia/Baghdad</id> + </country> + + <!-- IRAN, ISLAMIC REPUBLIC OF, 3:30 --> + <country code="ir"> + <id>Asia/Tehran</id> + </country> + + <!-- ICELAND, 0:00 --> + <country code="is"> + <id>Atlantic/Reykjavik</id> + </country> + + <!-- ITALY, 1:00 --> + <country code="it"> + <id>Europe/Rome</id> + </country> + + <!-- JERSEY, 0:00 --> + <country code="je"> + <id>Europe/Jersey</id> + </country> + + <!-- JAMAICA, -5:00 --> + <country code="jm"> + <id>America/Jamaica</id> + </country> + + <!-- JORDAN, 2:00 --> + <country code="jo"> + <id>Asia/Amman</id> + </country> + + <!-- JAPAN, 9:00 --> + <country code="jp"> + <id>Asia/Tokyo</id> + </country> + + <!-- KENYA, 3:00 --> + <country code="ke"> + <id>Africa/Nairobi</id> + </country> + + <!-- KYRGYZSTAN, 6:00 --> + <country code="kg"> + <id>Asia/Bishkek</id> + </country> + + <!-- CAMBODIA, 7:00 --> + <country code="kh"> + <id>Asia/Phnom_Penh</id> + </country> + + <!-- KIRIBATI --> + <country code="ki"> + <!-- 14:00 --> + <id>Pacific/Kiritimati</id> + + <!-- 13:00 --> + <id>Pacific/Enderbury</id> + + <!-- 12:00 --> + <id>Pacific/Tarawa</id> + </country> + + <!-- COMOROS, 3:00 --> + <country code="km"> + <id>Indian/Comoro</id> + </country> + + <!-- SAINT KITTS AND NEVIS, -4:00 --> + <country code="kn"> + <id>America/St_Kitts</id> + </country> + + <!-- KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF, 8:30 --> + <country code="kp"> + <id>Asia/Pyongyang</id> + </country> + + <!-- KOREA, REPUBLIC OF, 9:00 --> + <country code="kr"> + <id>Asia/Seoul</id> + </country> + + <!-- KUWAIT, 3:00 --> + <country code="kw"> + <id>Asia/Kuwait</id> + </country> + + <!-- CAYMAN ISLANDS, -5:00 --> + <country code="ky"> + <id>America/Cayman</id> + </country> + + <!-- KAZAKHSTAN --> + <country code="kz"> + <!-- 6:00 --> + <id>Asia/Almaty</id> + <id>Asia/Qyzylorda</id> + + <!-- 5:00 --> + <id>Asia/Aqtau</id> + <id>Asia/Oral</id> + <id>Asia/Aqtobe</id> + <id>Asia/Atyrau</id> + </country> + + <!-- LAO PEOPLE'S DEMOCRATIC REPUBLIC, 7:00 --> + <country code="la"> + <id>Asia/Vientiane</id> + </country> + + <!-- LEBANON, 2:00 --> + <country code="lb"> + <id>Asia/Beirut</id> + </country> + + <!-- SAINT LUCIA, -4:00 --> + <country code="lc"> + <id>America/St_Lucia</id> + </country> + + <!-- LIECHTENSTEIN, 1:00 --> + <country code="li"> + <id>Europe/Vaduz</id> + </country> + + <!-- SRI LANKA, 5:30 --> + <country code="lk"> + <id>Asia/Colombo</id> + </country> + + <!-- LIBERIA, 0:00 --> + <country code="lr"> + <id>Africa/Monrovia</id> + </country> + + <!-- LESOTHO, 2:00 --> + <country code="ls"> + <id>Africa/Maseru</id> + </country> + + <!-- LITHUANIA, 2:00 --> + <country code="lt"> + <id>Europe/Vilnius</id> + </country> + + <!-- LUXEMBOURG, 1:00 --> + <country code="lu"> + <id>Europe/Luxembourg</id> + </country> + + <!-- LATVIA, 2:00 --> + <country code="lv"> + <id>Europe/Riga</id> + </country> + + <!-- LIBYAN ARAB JAMAHIRIYA, 2:00 --> + <country code="ly"> + <id>Africa/Tripoli</id> + </country> + + <!-- MOROCCO, 0:00 --> + <country code="ma"> + <id>Africa/Casablanca</id> + </country> + + <!-- MONACO, 1:00 --> + <country code="mc"> + <id>Europe/Monaco</id> + </country> + + <!-- MOLDOVA, 2:00 --> + <country code="md"> + <id>Europe/Chisinau</id> + </country> + + <!-- MONTENEGRO, 1:00 --> + <country code="me"> + <id>Europe/Podgorica</id> + </country> + + <!-- Collectivity of Saint Martin, -4:00 --> + <country code="mf"> + <id>America/Marigot</id> + </country> + + <!-- MADAGASCAR, 3:00 --> + <country code="mg"> + <id>Indian/Antananarivo</id> + </country> + + <!-- MARSHALL ISLANDS, 12:00 --> + <country code="mh"> + <id>Pacific/Majuro</id> + <id>Pacific/Kwajalein</id> + </country> + + <!-- MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF, 1:00 --> + <country code="mk"> + <id>Europe/Skopje</id> + </country> + + <!-- MALI, 0:00 --> + <country code="ml"> + <id>Africa/Bamako</id> + </country> + + <!-- MYANMAR, 6:30 --> + <country code="mm"> + <id>Asia/Yangon</id> + </country> + + <!-- MONGOLIA --> + <country code="mn"> + <!-- 8:00 --> + <id>Asia/Choibalsan</id> + <id>Asia/Ulaanbaatar</id> + + <!-- 7:00 --> + <id>Asia/Hovd</id> + </country> + + <!-- MACAO, 8:00 --> + <country code="mo"> + <id>Asia/Macau</id> + </country> + + <!-- NORTHERN MARIANA ISLANDS, 10:00 --> + <country code="mp"> + <id>Pacific/Saipan</id> + </country> + + <!-- MARTINIQUE, -4:00 --> + <country code="mq"> + <id>America/Martinique</id> + </country> + + <!-- MAURITANIA, 0:00 --> + <country code="mr"> + <id>Africa/Nouakchott</id> + </country> + + <!-- MONTSERRAT, -4:00 --> + <country code="ms"> + <id>America/Montserrat</id> + </country> + + <!-- MALTA, 1:00 --> + <country code="mt"> + <id>Europe/Malta</id> + </country> + + <!-- MAURITIUS, 4:00 --> + <country code="mu"> + <id>Indian/Mauritius</id> + </country> + + <!-- MALDIVES, 5:00 --> + <country code="mv"> + <id>Indian/Maldives</id> + </country> + + <!-- MALAWI, 2:00 --> + <country code="mw"> + <id>Africa/Blantyre</id> + </country> + + <!-- MEXICO --> + <country code="mx"> + <!-- -6:00 --> + <id>America/Mexico_City</id> + <id>America/Merida</id> + <id>America/Monterrey</id> + <id>America/Matamoros</id> + <id>America/Bahia_Banderas</id> + + <!-- -5:00 --> + <id>America/Cancun</id> + + <!-- -7:00 --> + <id>America/Chihuahua</id> + <id>America/Hermosillo</id> + <id>America/Mazatlan</id> + <id>America/Ojinaga</id> + + <!-- -8:00 --> + <id>America/Tijuana</id> + </country> + + <!-- MALAYSIA, 8:00 --> + <country code="my"> + <id>Asia/Kuala_Lumpur</id> + <id>Asia/Kuching</id> + </country> + + <!-- MOZAMBIQUE, 2:00 --> + <country code="mz"> + <id>Africa/Maputo</id> + </country> + + <!-- NAMIBIA, 1:00 --> + <country code="na"> + <id>Africa/Windhoek</id> + </country> + + <!-- NEW CALEDONIA, 11:00 --> + <country code="nc"> + <id>Pacific/Noumea</id> + </country> + + <!-- NIGER, 1:00 --> + <country code="ne"> + <id>Africa/Niamey</id> + </country> + + <!-- NORFOLK ISLAND, 11:30 --> + <country code="nf"> + <id>Pacific/Norfolk</id> + </country> + + <!-- NIGERIA, 1:00 --> + <country code="ng"> + <id>Africa/Lagos</id> + </country> + + <!-- NICARAGUA, -6:00 --> + <country code="ni"> + <id>America/Managua</id> + </country> + + <!-- NETHERLANDS, 1:00 --> + <country code="nl"> + <id>Europe/Amsterdam</id> + </country> + + <!-- NORWAY, 1:00 --> + <country code="no"> + <id>Europe/Oslo</id> + </country> + + <!-- NEPAL, 5:45 --> + <country code="np"> + <id>Asia/Kathmandu</id> + </country> + + <!-- NAURU, 12:00 --> + <country code="nr"> + <id>Pacific/Nauru</id> + </country> + + <!-- NIUE, -11:00 --> + <country code="nu"> + <id>Pacific/Niue</id> + </country> + + <!-- NEW ZEALAND, 12:00 --> + <country code="nz"> + <!-- 12:00 --> + <id>Pacific/Auckland</id> + + <!-- 12:45 --> + <id>Pacific/Chatham</id> + </country> + + <!-- OMAN, 4:00 --> + <country code="om"> + <id>Asia/Muscat</id> + </country> + + <!-- PANAMA, -5:00 --> + <country code="pa"> + <id>America/Panama</id> + </country> + + <!-- PERU, -5:00 --> + <country code="pe"> + <id>America/Lima</id> + </country> + + <!-- FRENCH POLYNESIA --> + <country code="pf"> + <!-- -9:00 --> + <id>Pacific/Gambier</id> + + <!-- -9:30 --> + <id>Pacific/Marquesas</id> + + <!-- -10:00 --> + <id>Pacific/Tahiti</id> + </country> + + <!-- PAPUA NEW GUINEA --> + <country code="pg"> + <!-- 10:00 --> + <id>Pacific/Port_Moresby</id> + + <!-- 11:00 --> + <id>Pacific/Bougainville</id> + </country> + + <!-- PHILIPPINES, 8:00 --> + <country code="ph"> + <id>Asia/Manila</id> + </country> + + <!-- PAKISTAN, 5:00 --> + <country code="pk"> + <id>Asia/Karachi</id> + </country> + + <!-- POLAND, 1:00 --> + <country code="pl"> + <id>Europe/Warsaw</id> + </country> + + <!-- SAINT PIERRE AND MIQUELON, -3:00 --> + <country code="pm"> + <id>America/Miquelon</id> + </country> + + <!-- PITCAIRN, -8:00 --> + <country code="pn"> + <id>Pacific/Pitcairn</id> + </country> + + <!-- PUERTO RICO, -4:00 --> + <country code="pr"> + <id>America/Puerto_Rico</id> + </country> + + <!-- PALESTINE, 2:00 --> + <country code="ps"> + <id>Asia/Gaza</id> + <id>Asia/Hebron</id> + </country> + + <!-- PORTUGAL --> + <country code="pt"> + <!-- 0:00 --> + <id>Europe/Lisbon</id> + <id>Atlantic/Madeira</id> + + <!-- -1:00 --> + <id>Atlantic/Azores</id> + </country> + + <!-- PALAU, 9:00 --> + <country code="pw"> + <id>Pacific/Palau</id> + </country> + + <!-- PARAGUAY, -4:00 --> + <country code="py"> + <id>America/Asuncion</id> + </country> + + <!-- QATAR, 3:00 --> + <country code="qa"> + <id>Asia/Qatar</id> + </country> + + <!-- REUNION, 4:00 --> + <country code="re"> + <id>Indian/Reunion</id> + </country> + + <!-- ROMANIA, 2:00 --> + <country code="ro"> + <id>Europe/Bucharest</id> + </country> + + <!-- SERBIA, 1:00 --> + <country code="rs"> + <id>Europe/Belgrade</id> + </country> + + <!-- RUSSIAN FEDERATION --> + <country code="ru"> + <!-- 12:00 --> + <id>Asia/Kamchatka</id> + <id>Asia/Anadyr</id> + + <!-- 11:00 --> + <id>Asia/Magadan</id> + <id>Asia/Sakhalin</id> + <id>Asia/Srednekolymsk</id> + + <!-- 10:00 --> + <id>Asia/Vladivostok</id> + <id>Asia/Ust-Nera</id> + + <!-- 9:00 --> + <id>Asia/Yakutsk</id> + <id>Asia/Chita</id> + <id>Asia/Khandyga</id> + + <!-- 8:00 --> + <id>Asia/Irkutsk</id> + + <!-- 7:00 --> + <id>Asia/Krasnoyarsk</id> + <id>Asia/Novosibirsk</id> + <id>Asia/Barnaul</id> + <id>Asia/Novokuznetsk</id> + <id>Asia/Tomsk</id> + + <!-- 6:00 --> + <id>Asia/Omsk</id> + + <!-- 5:00 --> + <id>Asia/Yekaterinburg</id> + + <!-- 4:00 --> + <id>Europe/Samara</id> + <id>Europe/Astrakhan</id> + <id>Europe/Ulyanovsk</id> + <id>Europe/Saratov</id> + + <!-- 3:00 --> + <id>Europe/Moscow</id> + <id>Europe/Volgograd</id> + <id>Europe/Kirov</id> + <id>Europe/Simferopol</id> + + <!-- 2:00 --> + <id>Europe/Kaliningrad</id> + </country> + + <!-- RWANDA, 2:00 --> + <country code="rw"> + <id>Africa/Kigali</id> + </country> + + <!-- SAUDI ARABIA, 3:00 --> + <country code="sa"> + <id>Asia/Riyadh</id> + </country> + + <!-- SOLOMON ISLANDS, 11:00 --> + <country code="sb"> + <id>Pacific/Guadalcanal</id> + </country> + + <!-- SEYCHELLES, 4:00 --> + <country code="sc"> + <id>Indian/Mahe</id> + </country> + + <!-- SUDAN, 3:00 --> + <country code="sd"> + <id>Africa/Khartoum</id> + </country> + + <!-- SWEDEN, 1:00 --> + <country code="se"> + <id>Europe/Stockholm</id> + </country> + + <!-- SINGAPORE, 8:00 --> + <country code="sg"> + <id>Asia/Singapore</id> + </country> + + <!-- SAINT HELENA, 0:00 --> + <country code="sh"> + <id>Atlantic/St_Helena</id> + </country> + + <!-- SLOVENIA, 1:00 --> + <country code="si"> + <id>Europe/Ljubljana</id> + </country> + + <!-- SVALBARD AND JAN MAYEN, 1:00 --> + <country code="sj"> + <id>Arctic/Longyearbyen</id> + </country> + + <!-- SLOVAKIA, 1:00 --> + <country code="sk"> + <id>Europe/Bratislava</id> + </country> + + <!-- SIERRA LEONE, 0:00 --> + <country code="sl"> + <id>Africa/Freetown</id> + </country> + + <!-- SAN MARINO, 1:00 --> + <country code="sm"> + <id>Europe/San_Marino</id> + </country> + + <!-- SENEGAL, 0:00 --> + <country code="sn"> + <id>Africa/Dakar</id> + </country> + + <!-- SOMALIA, 3:00 --> + <country code="so"> + <id>Africa/Mogadishu</id> + </country> + + <!-- SURINAME, -3:00 --> + <country code="sr"> + <id>America/Paramaribo</id> + </country> + + <!-- South Sudan, 3:00 --> + <country code="ss"> + <id>Africa/Juba</id> + </country> + + <!-- SAO TOME AND PRINCIPE, 0:00 --> + <country code="st"> + <id>Africa/Sao_Tome</id> + </country> + + <!-- EL SALVADOR, -6:00 --> + <country code="sv"> + <id>America/El_Salvador</id> + </country> + + <!-- Sint Maarten, -4:00 --> + <country code="sx"> + <id>America/Lower_Princes</id> + </country> + + <!-- SYRIAN ARAB REPUBLIC, 2:00 --> + <country code="sy"> + <id>Asia/Damascus</id> + </country> + + <!-- SWAZILAND, 2:00 --> + <country code="sz"> + <id>Africa/Mbabane</id> + </country> + + <!-- TURKS AND CAICOS ISLANDS, -4:00 --> + <country code="tc"> + <id>America/Grand_Turk</id> + </country> + + <!-- CHAD, 1:00 --> + <country code="td"> + <id>Africa/Ndjamena</id> + </country> + + <!-- FRENCH SOUTHERN TERRITORIES --> + <country code="tf"> + <!-- 5:00 --> + <id>Indian/Kerguelen</id> + </country> + + <!-- TOGO, 0:00 --> + <country code="tg"> + <id>Africa/Lome</id> + </country> + + <!-- THAILAND, 7:00 --> + <country code="th"> + <id>Asia/Bangkok</id> + </country> + + <!-- TAJIKISTAN, 5:00 --> + <country code="tj"> + <id>Asia/Dushanbe</id> + </country> + + <!-- TOKELAU, +13:00 --> + <country code="tk"> + <id>Pacific/Fakaofo</id> + </country> + + <!-- TIMOR-LESTE, 9:00 --> + <country code="tl"> + <id>Asia/Dili</id> + </country> + + <!-- TURKMENISTAN, 5:00 --> + <country code="tm"> + <id>Asia/Ashgabat</id> + </country> + + <!-- TUNISIA, 1:00 --> + <country code="tn"> + <id>Africa/Tunis</id> + </country> + + <!-- TONGA, 13:00 --> + <country code="to"> + <id>Pacific/Tongatapu</id> + </country> + + <!-- TURKEY, 3:00 --> + <country code="tr"> + <id>Europe/Istanbul</id> + </country> + + <!-- TRINIDAD AND TOBAGO, -4:00 --> + <country code="tt"> + <id>America/Port_of_Spain</id> + </country> + + <!-- TUVALU, 12:00 --> + <country code="tv"> + <id>Pacific/Funafuti</id> + </country> + + <!-- TAIWAN, PROVINCE OF CHINA, 8:00 --> + <country code="tw"> + <id>Asia/Taipei</id> + </country> + + <!-- TANZANIA, UNITED REPUBLIC OF, 3:00 --> + <country code="tz"> + <id>Africa/Dar_es_Salaam</id> + </country> + + <!-- UKRAINE, 2:00 --> + <country code="ua"> + <id>Europe/Kiev</id> + <id>Europe/Uzhgorod</id> + <id>Europe/Zaporozhye</id> + </country> + + <!-- UGANDA, 3:00 --> + <country code="ug"> + <id>Africa/Kampala</id> + </country> + + <!-- UNITED STATES MINOR OUTLYING ISLANDS --> + <country code="um"> + <!-- 12:00 --> + <id>Pacific/Wake</id> + + <!-- -11:00 --> + <id>Pacific/Midway</id> + </country> + + <!-- UNITED STATES --> + <country code="us"> + <!-- -5:00 --> + <id>America/New_York</id> + <id>America/Detroit</id> + <id>America/Kentucky/Louisville</id> + <id>America/Kentucky/Monticello</id> + <id>America/Indiana/Indianapolis</id> + <id>America/Indiana/Vincennes</id> + <id>America/Indiana/Winamac</id> + <id>America/Indiana/Marengo</id> + <id>America/Indiana/Petersburg</id> + <id>America/Indiana/Vevay</id> + + <!-- -6:00 --> + <id>America/Chicago</id> + <id>America/Indiana/Knox</id> + <id>America/Menominee</id> + <id>America/North_Dakota/Center</id> + <id>America/North_Dakota/New_Salem</id> + <id>America/Indiana/Tell_City</id> + <id>America/North_Dakota/Beulah</id> + + <!-- -7:00 --> + <id>America/Denver</id> + <id>America/Boise</id> + <id>America/Phoenix</id> + + <!-- -8:00 --> + <id>America/Los_Angeles</id> + + <!-- -9:00 --> + <id>America/Anchorage</id> + <id>America/Juneau</id> + <id>America/Yakutat</id> + <id>America/Nome</id> + <id>America/Metlakatla</id> + <id>America/Sitka</id> + + <!-- -10:00 --> + <id>Pacific/Honolulu</id> + <id>America/Adak</id> + </country> + + <!-- URUGUAY, -3:00 --> + <country code="uy"> + <id>America/Montevideo</id> + </country> + + <!-- UZBEKISTAN, 5:00 --> + <country code="uz"> + <id>Asia/Tashkent</id> + <id>Asia/Samarkand</id> + </country> + + <!-- HOLY SEE (VATICAN CITY STATE), 1:00 --> + <country code="va"> + <id>Europe/Vatican</id> + </country> + + <!-- SAINT VINCENT AND THE GRENADINES, -4:00 --> + <country code="vc"> + <id>America/St_Vincent</id> + </country> + + <!-- VENEZUELA, -4:00 --> + <country code="ve"> + <id>America/Caracas</id> + </country> + + <!-- VIRGIN ISLANDS, BRITISH, -4:00 --> + <country code="vg"> + <id>America/Tortola</id> + </country> + + <!-- VIRGIN ISLANDS, U.S., -4:00 --> + <country code="vi"> + <id>America/St_Thomas</id> + </country> + + <!-- VIET NAM, 7:00 --> + <country code="vn"> + <id>Asia/Ho_Chi_Minh</id> + </country> + + <!-- VANUATU, 11:00 --> + <country code="vu"> + <id>Pacific/Efate</id> + </country> + + <!-- WALLIS AND FUTUNA, 12:00 --> + <country code="wf"> + <id>Pacific/Wallis</id> + </country> + + <!-- SAMOA, 13:00 --> + <country code="ws"> + <id>Pacific/Apia</id> + </country> + + <!-- YEMEN, 3:00 --> + <country code="ye"> + <id>Asia/Aden</id> + </country> + + <!-- MAYOTTE, 3:00 --> + <country code="yt"> + <id>Indian/Mayotte</id> + </country> + + <!-- SOUTH AFRICA, 2:00 --> + <country code="za"> + <id>Africa/Johannesburg</id> + </country> + + <!-- ZAMBIA, 2:00 --> + <country code="zm"> + <id>Africa/Lusaka</id> + </country> + + <!-- ZIMBABWE, 2:00 --> + <country code="zw"> + <id>Africa/Harare</id> + </country> + </countryzones> +</timezones> diff --git a/system/vendor b/system/vendor new file mode 120000 index 0000000000000000000000000000000000000000..49ce3c193f83295e932ffb427c3d515c19b50b18 --- /dev/null +++ b/system/vendor @@ -0,0 +1 @@ +/vendor \ No newline at end of file diff --git a/system/xbin/tcpdump b/system/xbin/tcpdump new file mode 100755 index 0000000000000000000000000000000000000000..28b309a740082a9ea2423518f145e986952f0e5d Binary files /dev/null and b/system/xbin/tcpdump differ