diff --git a/Corona-Warn-App/build.gradle b/Corona-Warn-App/build.gradle
index 0c93b76815e53229feabe65962069a576885f856..9a12a5ac121b5e0dbbb28b06b8bcff92e9b8007c 100644
--- a/Corona-Warn-App/build.gradle
+++ b/Corona-Warn-App/build.gradle
@@ -33,8 +33,8 @@ android {
         applicationId 'de.rki.coronawarnapp'
         minSdkVersion 23
         targetSdkVersion 29
-        versionCode 10
-        versionName "0.8.3"
+        versionCode 11
+        versionName "0.8.4"
         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
 
         buildConfigField "String", "DOWNLOAD_CDN_URL", "\"$DOWNLOAD_CDN_URL\""
diff --git a/Corona-Warn-App/proguard-rules.pro b/Corona-Warn-App/proguard-rules.pro
index 98d843e33e802d99d96181ba29d639294f6343db..601877b820d493baebcedc55270603746ebd0e20 100644
--- a/Corona-Warn-App/proguard-rules.pro
+++ b/Corona-Warn-App/proguard-rules.pro
@@ -58,3 +58,6 @@
 # and replaces all potential values with null. Explicitly keeping the interfaces prevents this.
 -if interface * { @retrofit2.http.* <methods>; }
 -keep,allowobfuscation interface <1>
+
+-keep class de.rki.coronawarnapp.http.requests.* { *; }
+-keep class de.rki.coronawarnapp.http.responses.* { *; }
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/CoronaWarnApplication.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/CoronaWarnApplication.kt
index bf6dd5608afff8f48f03570862730c024a3e69d1..f1f40cb4af09daea973768ca4a416f55fa8da581 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/CoronaWarnApplication.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/CoronaWarnApplication.kt
@@ -16,7 +16,6 @@ import androidx.lifecycle.ProcessLifecycleOwner
 import androidx.localbroadcastmanager.content.LocalBroadcastManager
 import de.rki.coronawarnapp.exception.ErrorReportReceiver
 import de.rki.coronawarnapp.exception.ReportingConstants.ERROR_REPORT_LOCAL_BROADCAST_CHANNEL
-import de.rki.coronawarnapp.exception.handler.GlobalExceptionHandler
 import de.rki.coronawarnapp.notification.NotificationHelper
 import org.conscrypt.Conscrypt
 import java.security.Security
@@ -43,7 +42,6 @@ class CoronaWarnApplication : Application(), LifecycleObserver,
 
     override fun onCreate() {
         super.onCreate()
-        GlobalExceptionHandler(this)
         instance = this
         NotificationHelper.createNotificationChannel()
         // Enable Conscrypt for TLS1.3 Support below API Level 29
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/TestForAPIFragment.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/TestForAPIFragment.kt
index 8a2247446f5a33f6c1b43f9d641b686c9136755e..d1740c85eb69cf3e6c82cdd7ae79ae44b6b5bb2c 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/TestForAPIFragment.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/TestForAPIFragment.kt
@@ -533,13 +533,13 @@ class TestForAPIFragment : Fragment(), InternalExposureNotificationPermissionHel
         }
 
         private fun bitmapForImage(key: TemporaryExposureKey): Bitmap {
-            val key = AppleLegacyKeyExchange.Key.newBuilder()
+            val legacyKey = AppleLegacyKeyExchange.Key.newBuilder()
                 .setKeyData(ByteString.copyFrom(key.keyData))
                 .setRollingPeriod(key.rollingPeriod)
                 .setRollingStartNumber(key.rollingStartIntervalNumber)
                 .build().toByteArray()
             val bMatrix = QRCodeWriter().encode(
-                Base64.encodeToString(key, Base64.DEFAULT),
+                Base64.encodeToString(legacyKey, Base64.DEFAULT),
                 BarcodeFormat.QR_CODE,
                 300,
                 300
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/TestRiskLevelCalculation.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/TestRiskLevelCalculation.kt
index ef572b3a27668c6fcbed17ef17067d25a9111396..602f7322fcc571b56124316a245872884e137e0f 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/TestRiskLevelCalculation.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/TestRiskLevelCalculation.kt
@@ -44,7 +44,7 @@ import java.io.File
 import java.util.UUID
 import java.util.concurrent.TimeUnit
 
-@Suppress("MagicNumber")
+@Suppress("MagicNumber", "LongMethod")
 class TestRiskLevelCalculation : Fragment() {
     companion object {
         val TAG: String? = TestRiskLevelCalculation::class.simpleName
@@ -305,6 +305,27 @@ class TestRiskLevelCalculation : Fragment() {
                     binding.labelFormula.text = formulaString
 
                     binding.labelFullConfig.text = it.appConfig?.toString()
+
+                    val token = LocalData.googleApiToken()
+                    if (token != null) {
+                        val exposureInformation =
+                            InternalExposureNotificationClient.asyncGetExposureInformation(token)
+
+                        var infoString = ""
+                        exposureInformation.forEach {
+                            infoString += "Attenuation duration in min.: " +
+                                    "[${it.attenuationDurationsInMinutes?.get(0)}, " +
+                                    "${it.attenuationDurationsInMinutes?.get(1)}," +
+                                    "${it.attenuationDurationsInMinutes?.get(2)}]\n" +
+                                    "Attenuation value: ${it.attenuationValue}\n" +
+                                    "Duration in min.: ${it.durationMinutes}\n" +
+                                    "Risk Score: ${it.totalRiskScore}\n" +
+                                    "Transmission Risk Level: ${it.transmissionRiskLevel}\n" +
+                                    "Date Millis Since Epoch: ${it.dateMillisSinceEpoch}\n\n"
+                        }
+
+                        binding.labelExposureInfo.text = infoString
+                    }
                 }
             })
     }
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/exception/handler/GlobalExceptionHandler.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/exception/handler/GlobalExceptionHandler.kt
deleted file mode 100644
index 2fe17a4b61c39eccc5bc2b3ed40fddd0c8891b08..0000000000000000000000000000000000000000
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/exception/handler/GlobalExceptionHandler.kt
+++ /dev/null
@@ -1,68 +0,0 @@
-package de.rki.coronawarnapp.exception.handler
-
-import android.content.Context
-import android.content.Intent
-import android.util.Log
-import de.rki.coronawarnapp.CoronaWarnApplication
-import de.rki.coronawarnapp.ui.LauncherActivity
-import java.io.PrintWriter
-import java.io.StringWriter
-import java.lang.reflect.InvocationTargetException
-
-class GlobalExceptionHandler(private val application: CoronaWarnApplication) :
-    Thread.UncaughtExceptionHandler {
-
-    companion object {
-        val TAG: String? = GlobalExceptionHandler::class.simpleName
-    }
-
-    init {
-        Thread.setDefaultUncaughtExceptionHandler(this)
-    }
-
-    override fun uncaughtException(thread: Thread, throwable: Throwable) {
-        try {
-            Log.i(TAG, "cause caught: " + throwable)
-            val cause = throwable.cause
-
-            val stringWriter = StringWriter()
-            // Throwables from main thread are wrapped in an InvocationTargetException,
-            // unwrap the InvocationTargetException to get the original cause
-            if (cause is InvocationTargetException) {
-                cause.targetException.printStackTrace(PrintWriter(stringWriter))
-                Log.i(TAG, "InvocationTargetException caught: " + cause.targetException)
-            }
-            // for errors thrown by coroutines, these are not wrapped in InvocationTargetException
-            else {
-                Log.i(TAG, "InvocationTargetException caught: " + throwable)
-                throwable.printStackTrace(PrintWriter(stringWriter))
-            }
-            val stackTrace = stringWriter.toString()
-            triggerRestart(CoronaWarnApplication.getAppContext(), stackTrace)
-        } catch (e: Exception) {
-            Log.e(TAG, "GlobalExceptionHandler failing" + e)
-        }
-    }
-
-    /**
-     * Restarts the app by sending an Intent to start LauncherActivitiy and
-     * terminating the JVM
-     *
-     * @see de.rki.coronawarnapp.ui.LauncherActivity
-     *
-     * @param context application context
-     * @param stackTrace exception that caused the crash
-     */
-    private fun triggerRestart(context: Context, stackTrace: String) {
-        val intent = Intent(context, LauncherActivity::class.java)
-        intent.addFlags(
-            Intent.FLAG_ACTIVITY_CLEAR_TOP
-                    or Intent.FLAG_ACTIVITY_CLEAR_TASK
-                    or Intent.FLAG_ACTIVITY_NEW_TASK
-        )
-        intent.putExtra(GlobalExceptionHandlerConstants.APP_CRASHED, true)
-        intent.putExtra(GlobalExceptionHandlerConstants.STACK_TRACE, stackTrace)
-        context.startActivity(intent)
-        Runtime.getRuntime().exit(0)
-    }
-}
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/exception/handler/GlobalExceptionHandlerConstants.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/exception/handler/GlobalExceptionHandlerConstants.kt
deleted file mode 100644
index 3d0509123c70c7c5b68eb4bfa941f6720ccf492e..0000000000000000000000000000000000000000
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/exception/handler/GlobalExceptionHandlerConstants.kt
+++ /dev/null
@@ -1,10 +0,0 @@
-package de.rki.coronawarnapp.exception.handler
-
-object GlobalExceptionHandlerConstants {
-
-    // name of intent extra to described that an app has crashed. Intent extra is of type boolean
-    const val APP_CRASHED = "appCrashed"
-
-    // name of intent extra that contains the stacktrace. Intent extra is of type boolean
-    const val STACK_TRACE = "stackTrace"
-}
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/nearby/InternalExposureNotificationClient.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/nearby/InternalExposureNotificationClient.kt
index 314b8d4c510ac1785f8bbb512c0b2e0183817810..47c1ea0dfdb3ddc49f82c6a9f0238359e08b6d79 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/nearby/InternalExposureNotificationClient.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/nearby/InternalExposureNotificationClient.kt
@@ -3,6 +3,7 @@ package de.rki.coronawarnapp.nearby
 import com.google.android.gms.nearby.Nearby
 import com.google.android.gms.nearby.exposurenotification.ExposureConfiguration
 import com.google.android.gms.nearby.exposurenotification.ExposureConfiguration.ExposureConfigurationBuilder
+import com.google.android.gms.nearby.exposurenotification.ExposureInformation
 import com.google.android.gms.nearby.exposurenotification.ExposureSummary
 import com.google.android.gms.nearby.exposurenotification.TemporaryExposureKey
 import de.rki.coronawarnapp.CoronaWarnApplication
@@ -156,4 +157,15 @@ object InternalExposureNotificationClient {
                     cont.resumeWithException(it)
                 }
         }
+
+    // todo remove before release - not used in prod setup - only for testing
+    suspend fun asyncGetExposureInformation(token: String): List<ExposureInformation> =
+        suspendCoroutine { cont ->
+            exposureNotificationClient.getExposureInformation(token)
+                .addOnSuccessListener {
+                    cont.resume(it)
+                }.addOnFailureListener {
+                    cont.resumeWithException(it)
+                }
+        }
 }
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/FileStorageHelper.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/FileStorageHelper.kt
index 89a4ff7ea56cd61581947f2a286e0f727d090c25..0b785287d5d52168a96c99273a8d39fe5eb8fcd1 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/FileStorageHelper.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/FileStorageHelper.kt
@@ -27,12 +27,10 @@ object FileStorageHelper {
      * Get key files export directory used to store all export files for the transaction
      * Uses FileStorageConstants.KEY_EXPORT_DIRECTORY_NAME constant
      *
-     * TODO Change to CacheDir before release
-     *
      * @return File of key export directory
      */
     val keyExportDirectory = File(
-        CoronaWarnApplication.getAppContext().getExternalFilesDir(null),
+        CoronaWarnApplication.getAppContext().cacheDir,
         FileStorageConstants.KEY_EXPORT_DIRECTORY_NAME
     )
 
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/RiskLevelRepository.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/RiskLevelRepository.kt
index 61f9627f2b6bf8e2a067026723db217e7e7d3ebe..3b82b42cd28e0b03506e9b770b0f318ca43673cf 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/RiskLevelRepository.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/RiskLevelRepository.kt
@@ -7,9 +7,10 @@ import de.rki.coronawarnapp.risk.RiskLevelConstants
 object RiskLevelRepository {
 
     /**
-     * LiveData variable that can be consumed in a ViewModel to observe RiskLevel changes
+     * LiveData variables that can be consumed in a ViewModel to observe RiskLevel changes
      */
     val riskLevelScore = MutableLiveData(RiskLevelConstants.UNKNOWN_RISK_INITIAL)
+    val riskLevelScoreLastSuccessfulCalculated = MutableLiveData(LocalData.lastSuccessfullyCalculatedRiskLevel().raw)
 
     /**
      * Set the new calculated [RiskLevel]
@@ -61,6 +62,7 @@ object RiskLevelRepository {
     private fun setLastSuccessfullyCalculatedScore(riskLevel: RiskLevel) {
         if (!RiskLevel.UNSUCCESSFUL_RISK_LEVELS.contains(riskLevel)) {
             LocalData.lastSuccessfullyCalculatedRiskLevel(riskLevel.raw)
+            riskLevelScoreLastSuccessfulCalculated.postValue(riskLevel.raw)
         }
     }
 }
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/keycache/KeyCacheRepository.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/keycache/KeyCacheRepository.kt
index e89af1e3b427419deddb3fc0f1bf7f9044cdae8a..92fb647955abfe21cc6ff76add9a8e8afde8986c 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/keycache/KeyCacheRepository.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/keycache/KeyCacheRepository.kt
@@ -59,7 +59,8 @@ class KeyCacheRepository(private val keyCacheDao: KeyCacheDao) {
     )
 
     suspend fun deleteOutdatedEntries() = keyCacheDao.getAllEntries().forEach {
-        if (File(it.path).isOutdated()) {
+        val file = File(it.path)
+        if (file.isOutdated() || !file.exists()) {
             deleteFileForEntry(it)
             keyCacheDao.deleteEntry(it)
         }
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/ActivityErrorReporting.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/ActivityErrorReporting.kt
deleted file mode 100644
index 7a3db2f49242a934c6d9e834a1a339b4fce17b12..0000000000000000000000000000000000000000
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/ActivityErrorReporting.kt
+++ /dev/null
@@ -1,22 +0,0 @@
-package de.rki.coronawarnapp.ui
-
-import androidx.appcompat.app.AppCompatActivity
-import de.rki.coronawarnapp.exception.handler.GlobalExceptionHandlerConstants
-import de.rki.coronawarnapp.exception.reportGeneric
-
-/**
- * If the app crashed in the last instance and was restarted, the stacktrace is retrieved
- * from the intent and displayed in a dialog report
- *
- * @see de.rki.coronawarnapp.exception.handler.GlobalExceptionHandler
- */
-fun AppCompatActivity.showDialogWithStacktraceIfPreviouslyCrashed() {
-    val appCrashedAndWasRestarted =
-        intent.getBooleanExtra(GlobalExceptionHandlerConstants.APP_CRASHED, false)
-    if (appCrashedAndWasRestarted) {
-        val stackTrade = intent.getStringExtra(GlobalExceptionHandlerConstants.STACK_TRACE)
-        if (!stackTrade.isNullOrEmpty()) {
-            reportGeneric(stackTrade)
-        }
-    }
-}
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/LauncherActivity.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/LauncherActivity.kt
index ff3060508f87828e772074d1751cd0af1cc9193b..7a96494ec5fa66bcf1ea1fb7e4ab195e8dd9a20b 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/LauncherActivity.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/LauncherActivity.kt
@@ -5,25 +5,28 @@ import android.net.Uri
 import android.os.Bundle
 import android.widget.Toast
 import androidx.appcompat.app.AppCompatActivity
-import de.rki.coronawarnapp.exception.handler.GlobalExceptionHandlerConstants
+import androidx.lifecycle.lifecycleScope
 import de.rki.coronawarnapp.http.DynamicURLs
 import de.rki.coronawarnapp.storage.LocalData
 import de.rki.coronawarnapp.ui.main.MainActivity
 import de.rki.coronawarnapp.ui.onboarding.OnboardingActivity
+import de.rki.coronawarnapp.update.UpdateChecker
+import kotlinx.coroutines.launch
 
 class LauncherActivity : AppCompatActivity() {
     companion object {
         private val TAG: String? = LauncherActivity::class.simpleName
     }
 
+    private lateinit var updateChecker: UpdateChecker
+
     override fun onCreate(savedInstanceState: Bundle?) {
         super.onCreate(savedInstanceState)
         retrieveCustomURLsFromSchema(intent.data)
+        updateChecker = UpdateChecker(this)
 
-        if (LocalData.isOnboarded()) {
-            startMainActivity()
-        } else {
-            startOnboardingActivity()
+        lifecycleScope.launch {
+            updateChecker.checkForUpdate()
         }
     }
 
@@ -55,34 +58,31 @@ class LauncherActivity : AppCompatActivity() {
         }
     }
 
+    override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
+        super.onActivityResult(requestCode, resultCode, data)
+
+        updateChecker.onActivityResult(requestCode, resultCode)
+    }
+
+    fun navigateToActivities() {
+        if (LocalData.isOnboarded()) {
+            startMainActivity()
+        } else {
+            startOnboardingActivity()
+        }
+    }
+
     private fun startOnboardingActivity() {
         val onboardingActivity = Intent(this, OnboardingActivity::class.java)
-        mapIntentExtras(onboardingActivity)
         startActivity(onboardingActivity)
+        this.overridePendingTransition(0, 0)
         finish()
     }
 
     private fun startMainActivity() {
         val mainActivityIntent = Intent(this, MainActivity::class.java)
-        mapIntentExtras(mainActivityIntent)
         startActivity(mainActivityIntent)
+        this.overridePendingTransition(0, 0)
         finish()
     }
-
-    /**
-     * Maps the intentExtras for global exception handling to the next activity that is
-     * started
-     *
-     * @param intentForNextActivity
-     */
-    private fun mapIntentExtras(intentForNextActivity: Intent) {
-        intentForNextActivity.putExtra(
-            GlobalExceptionHandlerConstants.APP_CRASHED,
-            intent.getBooleanExtra(GlobalExceptionHandlerConstants.APP_CRASHED, false)
-        )
-        intentForNextActivity.putExtra(
-            GlobalExceptionHandlerConstants.STACK_TRACE,
-            intent.getStringExtra(GlobalExceptionHandlerConstants.STACK_TRACE)
-        )
-    }
 }
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/main/MainActivity.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/main/MainActivity.kt
index 1d03c732ac9f6b026c4635b1d90b9a778c66d6aa..c5aee7792b0cd8d7b04ddbcefc7ab09a447589b3 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/main/MainActivity.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/main/MainActivity.kt
@@ -2,13 +2,11 @@ package de.rki.coronawarnapp.ui.main
 
 import android.content.Intent
 import android.os.Bundle
-import android.util.Log
 import androidx.appcompat.app.AppCompatActivity
 import androidx.fragment.app.Fragment
 import androidx.fragment.app.FragmentManager
 import androidx.lifecycle.ViewModelProviders
 import de.rki.coronawarnapp.R
-import de.rki.coronawarnapp.ui.showDialogWithStacktraceIfPreviouslyCrashed
 import de.rki.coronawarnapp.ui.viewmodel.SettingsViewModel
 import de.rki.coronawarnapp.util.ConnectivityHelper
 import de.rki.coronawarnapp.worker.BackgroundWorkScheduler
@@ -69,10 +67,8 @@ class MainActivity : AppCompatActivity() {
         super.onResume()
         ConnectivityHelper.registerNetworkStatusCallback(this, callbackNetwork)
         ConnectivityHelper.registerBluetoothStatusCallback(this, callbackBluetooth)
-        Log.d(TAG, "Background work is available: ${!ConnectivityHelper.isDataSaverEnabled(this)}")
-        settingsViewModel.updateBackgroundJobEnabled(!ConnectivityHelper.isDataSaverEnabled(this))
+        settingsViewModel.updateBackgroundJobEnabled(ConnectivityHelper.isBackgroundJobEnabled(this))
         scheduleWork()
-        showDialogWithStacktraceIfPreviouslyCrashed()
     }
 
     /**
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingActivity.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingActivity.kt
index bee511d98e39ba1566300da84fcf7fcdcc12f44a..8624ff94d264db5e4e7ea3e889d007f5bec1578c 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingActivity.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingActivity.kt
@@ -9,7 +9,6 @@ import androidx.lifecycle.LifecycleObserver
 import de.rki.coronawarnapp.R
 import de.rki.coronawarnapp.storage.LocalData
 import de.rki.coronawarnapp.ui.main.MainActivity
-import de.rki.coronawarnapp.ui.showDialogWithStacktraceIfPreviouslyCrashed
 
 /**
  * This activity holds all the onboarding fragments and isn't used after a successful onboarding flow.
@@ -41,11 +40,6 @@ class OnboardingActivity : AppCompatActivity(), LifecycleObserver {
         )
     }
 
-    override fun onResume() {
-        super.onResume()
-        showDialogWithStacktraceIfPreviouslyCrashed()
-    }
-
     fun completeOnboarding() {
         LocalData.isOnboarded(true)
         LocalData.onboardingCompletedTimestamp(System.currentTimeMillis())
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/submission/SubmissionQRCodeScanFragment.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/submission/SubmissionQRCodeScanFragment.kt
index bcee7773ca8a93e98e1b41fdc4f99ffaad186528..97d467a1fb5abd3191f3cd0911c41741d189b4fd 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/submission/SubmissionQRCodeScanFragment.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/submission/SubmissionQRCodeScanFragment.kt
@@ -111,7 +111,7 @@ class SubmissionQRCodeScanFragment : BaseFragment() {
 
         viewModel.scanStatus.observeEvent(viewLifecycleOwner, {
             if (ScanStatus.SUCCESS == it) {
-                showSuccessfulScanDialog()
+                viewModel.doDeviceRegistration()
             }
 
             if (ScanStatus.INVALID == it) {
@@ -139,26 +139,6 @@ class SubmissionQRCodeScanFragment : BaseFragment() {
                 .actionSubmissionQRCodeScanFragmentToSubmissionDispatcherFragment()
         )
 
-    private fun showSuccessfulScanDialog() {
-        val successfulScanDialogInstance = DialogHelper.DialogInstance(
-            requireActivity(),
-            R.string.submission_qr_code_scan_successful_dialog_headline,
-            R.string.submission_qr_code_scan_successful_dialog_body,
-            R.string.submission_qr_code_scan_successful_dialog_button_positive,
-            R.string.submission_qr_code_scan_successful_dialog_button_negative,
-            true,
-            {
-                viewModel.doDeviceRegistration()
-            },
-            {
-                viewModel.deleteTestGUID()
-                navigateToDispatchScreen()
-            }
-        )
-
-        DialogHelper.showDialog(successfulScanDialogInstance)
-    }
-
     private fun showInvalidScanDialog() {
         val invalidScanDialogInstance = DialogHelper.DialogInstance(
             requireActivity(),
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/submission/SubmissionSuccessDialogFragment.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/submission/SubmissionSuccessDialogFragment.kt
deleted file mode 100644
index 5b936c1ffbbea618d787339dff9089bcb9139799..0000000000000000000000000000000000000000
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/submission/SubmissionSuccessDialogFragment.kt
+++ /dev/null
@@ -1,50 +0,0 @@
-package de.rki.coronawarnapp.ui.submission
-
-import android.os.Bundle
-import android.util.Log
-import android.view.LayoutInflater
-import android.view.View
-import android.view.ViewGroup
-import androidx.fragment.app.DialogFragment
-import androidx.navigation.fragment.findNavController
-import de.rki.coronawarnapp.databinding.FragmentSubmissionDialogBinding
-
-/**
- * A simple [SubmissionSuccessDialogFragment] subclass.
- */
-class SubmissionSuccessDialogFragment : DialogFragment() {
-
-    companion object {
-        private val TAG: String? = SubmissionSuccessDialogFragment::class.simpleName
-    }
-
-    private var _binding: FragmentSubmissionDialogBinding? = null
-    private val binding: FragmentSubmissionDialogBinding get() = _binding!!
-
-    override fun onCreateView(
-        inflater: LayoutInflater,
-        container: ViewGroup?,
-        savedInstanceState: Bundle?
-    ): View? {
-        // get the binding reference by inflating it with the current layout
-        _binding = FragmentSubmissionDialogBinding.inflate(inflater)
-
-        // Inflate the layout for this fragment
-        return binding.root
-    }
-
-    override fun onDestroyView() {
-        super.onDestroyView()
-        _binding = null
-    }
-
-    override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
-        binding.submissionVerificationSuccessButton.setOnClickListener {
-            Log.i(TAG, "button OK clicked")
-            dismiss()
-            findNavController().navigate(
-                SubmissionSuccessDialogFragmentDirections.actionSubmissionSuccessDialogFragmentToMainFragment()
-            )
-        }
-    }
-}
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/submission/SubmissionTestResultFragment.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/submission/SubmissionTestResultFragment.kt
index 917c796df28790030c7bcc9d7c692ff4dacc0809..c0b07dfed349f80f0f7114d0854163cb4174504c 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/submission/SubmissionTestResultFragment.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/submission/SubmissionTestResultFragment.kt
@@ -120,7 +120,7 @@ class SubmissionTestResultFragment : BaseFragment() {
             )
         }
 
-        binding.submissionTestResultHeader.informationHeader.headerButtonBack.buttonIcon.setOnClickListener {
+        binding.submissionTestResultHeader.headerButtonBack.buttonIcon.setOnClickListener {
             doNavigate(
                 SubmissionTestResultFragmentDirections.actionSubmissionResultFragmentToMainFragment()
             )
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/view/CircleProgress.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/view/CircleProgress.kt
index bef8b354ff1f19b73fa79e234202a224cec75d54..9cc4e390765bfe5b95e10883f2cbd8edd56b3b29 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/view/CircleProgress.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/view/CircleProgress.kt
@@ -80,18 +80,19 @@ class CircleProgress @JvmOverloads constructor(
         setWillNotDraw(false)
         binding = ViewCircleProgressBinding.inflate(LayoutInflater.from(context), this)
         val styleAttrs = context.obtainStyledAttributes(attrs, R.styleable.CircleProgress)
-        // attribute circleColor; default = colorGreyLight
         val circleColor = styleAttrs.getColor(
             R.styleable.CircleProgress_circleColor,
-            ContextCompat.getColor(context, R.color.colorGreyLight)
+            ContextCompat.getColor(context, R.color.colorSurface2)
         )
-        // attribute progressColor; default = colorPrimary
-        val progressColor = styleAttrs.getColor(R.styleable.CircleProgress_progressColor,
-            ContextCompat.getColor(context, R.color.colorPrimary))
-        // attribute textColor; default = colorGrey
+        // attribute progressColor; default = colorAccentTintIcon
+        val progressColor = styleAttrs.getColor(
+            R.styleable.CircleProgress_progressColor,
+            ContextCompat.getColor(context, R.color.colorAccentTintIcon)
+        )
+        // attribute textColor; default = colorTextPrimary2
         val textColor = styleAttrs.getColor(
             R.styleable.CircleProgress_textColor,
-            ContextCompat.getColor(context, R.color.textColorGrey)
+            ContextCompat.getColor(context, R.color.colorTextPrimary2)
         )
         // attribute disableText; default = true
         disableText = styleAttrs.getBoolean(R.styleable.CircleProgress_disableText, false)
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/viewmodel/TracingViewModel.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/viewmodel/TracingViewModel.kt
index cba690c3fe4b55a27a20ed3c68a47a1efa739b21..ad8a5d362fc296584c87a942d437928615bd9752 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/viewmodel/TracingViewModel.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/viewmodel/TracingViewModel.kt
@@ -32,6 +32,7 @@ class TracingViewModel : ViewModel() {
     // TODO: comments for variables
     // Values from RiskLevelRepository
     val riskLevel: LiveData<Int> = RiskLevelRepository.riskLevelScore
+    val riskLevelScoreLastSuccessfulCalculated = RiskLevelRepository.riskLevelScoreLastSuccessfulCalculated
 
     // Values from ExposureSummaryRepository
     val daysSinceLastExposure: LiveData<Int?> = ExposureSummaryRepository.daysSinceLastExposure
@@ -44,9 +45,6 @@ class TracingViewModel : ViewModel() {
     val activeTracingDaysInRetentionPeriod = TracingRepository.activeTracingDaysInRetentionPeriod
     var isRefreshing: LiveData<Boolean> = TracingRepository.isRefreshing
 
-    // Todo exchange and get real stored risk level
-    val savedRiskLevel = 2
-
     // Todo exchange and get the real next update date
     val nextUpdate = Date()
 
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/update/UpdateChecker.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/update/UpdateChecker.kt
new file mode 100644
index 0000000000000000000000000000000000000000..07bf9cc0ede200968366a53ff982de42d4e04618
--- /dev/null
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/update/UpdateChecker.kt
@@ -0,0 +1,160 @@
+package de.rki.coronawarnapp.update
+
+import android.app.Activity.RESULT_CANCELED
+import android.app.Activity.RESULT_OK
+import android.content.IntentSender.SendIntentException
+import android.util.Log
+import android.widget.Toast
+import androidx.appcompat.app.AlertDialog
+import com.google.android.play.core.appupdate.AppUpdateInfo
+import com.google.android.play.core.appupdate.AppUpdateManager
+import com.google.android.play.core.appupdate.AppUpdateManagerFactory
+import com.google.android.play.core.install.model.ActivityResult.RESULT_IN_APP_UPDATE_FAILED
+import com.google.android.play.core.install.model.AppUpdateType
+import com.google.android.play.core.install.model.UpdateAvailability
+import de.rki.coronawarnapp.BuildConfig
+import de.rki.coronawarnapp.R
+import de.rki.coronawarnapp.server.protocols.ApplicationConfigurationOuterClass
+import de.rki.coronawarnapp.service.applicationconfiguration.ApplicationConfigurationService
+import de.rki.coronawarnapp.ui.LauncherActivity
+import kotlin.coroutines.resume
+import kotlin.coroutines.resumeWithException
+import kotlin.coroutines.suspendCoroutine
+
+class UpdateChecker(private val activity: LauncherActivity) {
+
+    companion object {
+        val TAG: String? = UpdateChecker::class.simpleName
+        private const val REQUEST_CODE = 100
+    }
+
+    suspend fun checkForUpdate() {
+
+        // check if an update is needed based on server config
+        val updateNeededFromServer: Boolean = try {
+            checkIfUpdatesNeededFromServer()
+        }
+        // TODO replace with signature exception
+        catch (exception: Exception) {
+            true
+        }
+
+        // get AppUpdateManager
+        val baseContext = activity.baseContext
+        val appUpdateManager = AppUpdateManagerFactory.create(baseContext)
+
+        var appUpdateInfo: AppUpdateInfo? = null
+
+        val updateAvailableFromGooglePlay = try {
+            appUpdateInfo = checkForGooglePlayUpdate(appUpdateManager)
+
+            val availability = appUpdateInfo.updateAvailability()
+            val immediateUpdateAllowed =
+                appUpdateInfo.isUpdateTypeAllowed(AppUpdateType.IMMEDIATE)
+
+            availability == UpdateAvailability.UPDATE_AVAILABLE && immediateUpdateAllowed
+        } catch (exception: Exception) {
+            false
+        }
+
+        if (updateNeededFromServer && updateAvailableFromGooglePlay && appUpdateInfo != null) {
+            Log.i(TAG, "show update dialog")
+            showUpdateAvailableDialog(appUpdateManager, appUpdateInfo)
+        } else {
+            activity.navigateToActivities()
+        }
+    }
+
+    private fun showUpdateAvailableDialog(
+        appUpdateManager: AppUpdateManager,
+        appUpdateInfo: AppUpdateInfo
+    ) {
+        AlertDialog.Builder(activity)
+            .setTitle(activity.getString(R.string.update_dialog_title))
+            .setMessage(activity.getString(R.string.update_dialog_message))
+            .setPositiveButton(activity.getString(R.string.update_dialog_button)) { _, _ ->
+                startGooglePlayUpdateFlow(appUpdateManager, appUpdateInfo)
+            }
+            .create().show()
+    }
+
+    private fun startGooglePlayUpdateFlow(
+        appUpdateManager: AppUpdateManager,
+        appUpdateInfo: AppUpdateInfo
+    ) {
+        try {
+            appUpdateManager.startUpdateFlowForResult(
+                appUpdateInfo,
+                AppUpdateType.IMMEDIATE,
+                activity,
+                REQUEST_CODE
+            )
+        } catch (exception: SendIntentException) {
+            Log.i(TAG, exception.toString())
+        }
+    }
+
+    fun onActivityResult(requestCode: Int, resultCode: Int) {
+        if (REQUEST_CODE == requestCode) {
+
+            // TODO react to these
+            when (resultCode) {
+                RESULT_OK -> {
+                    Log.i(TAG, "startFlowResult RESULT_OK")
+                    activity.navigateToActivities()
+                }
+                RESULT_CANCELED -> {
+                    Log.i(TAG, "startFlowResult RESULT_CANCELED")
+                }
+                RESULT_IN_APP_UPDATE_FAILED -> {
+                    Log.i(TAG, "startFlowResult RESULT_IN_APP_UPDATE_FAILED")
+                    val toast = Toast.makeText(activity, "In app update failed", Toast.LENGTH_LONG)
+                    toast.show()
+                    activity.navigateToActivities()
+                }
+            }
+        }
+    }
+
+    private suspend fun checkIfUpdatesNeededFromServer(): Boolean {
+
+        val applicationConfigurationFromServer =
+            ApplicationConfigurationService.asyncRetrieveApplicationConfiguration()
+
+        val minVersionFromServer = applicationConfigurationFromServer.appVersion.android.min
+        val minVersionFromServerString =
+            constructSemanticVersionString(minVersionFromServer)
+        Log.i(
+            TAG,
+            "minVersionStringFromServer:" + constructSemanticVersionString(
+                minVersionFromServer
+            )
+        )
+        Log.i(TAG, "Current app version:" + BuildConfig.VERSION_NAME)
+
+        val needsImmediateUpdate = VersionComparator.isVersionOlder(
+            BuildConfig.VERSION_NAME,
+            minVersionFromServerString
+        )
+        Log.i(TAG, "needs update:" + needsImmediateUpdate)
+        return true
+    }
+
+    private fun constructSemanticVersionString(
+        semanticVersion: ApplicationConfigurationOuterClass.SemanticVersion
+    ): String {
+        return semanticVersion.major.toString() + "." +
+                semanticVersion.minor.toString() + "." +
+                semanticVersion.patch.toString()
+    }
+
+    private suspend fun checkForGooglePlayUpdate(appUpdateManager: AppUpdateManager) =
+        suspendCoroutine<AppUpdateInfo> { cont ->
+            val appUpdateInfoTask = appUpdateManager.appUpdateInfo
+            appUpdateInfoTask.addOnSuccessListener {
+                cont.resume(it)
+            }.addOnFailureListener {
+                cont.resumeWithException(it)
+            }
+        }
+}
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/update/VersionComparator.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/update/VersionComparator.kt
new file mode 100644
index 0000000000000000000000000000000000000000..1df0b5dde051662beb2912bb2c008701666b6d8e
--- /dev/null
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/update/VersionComparator.kt
@@ -0,0 +1,30 @@
+package de.rki.coronawarnapp.update
+
+object VersionComparator {
+
+    fun isVersionOlder(currentVersion: String, versionToCompareTo: String): Boolean {
+        var isVersionOlder = false
+
+        val delimiter = "."
+
+        val currentVersionParts = currentVersion.split(delimiter)
+        val currentVersionMajor = currentVersionParts[0].toInt()
+        val currentVersionMinor = currentVersionParts[1].toInt()
+        val currentVersionPatch = currentVersionParts[2].toInt()
+
+        val versionToCompareParts = versionToCompareTo.split(delimiter)
+        val versionToCompareMajor = versionToCompareParts[0].toInt()
+        val versionToCompareMinor = versionToCompareParts[1].toInt()
+        val versionToComparePatch = versionToCompareParts[2].toInt()
+
+        if (versionToCompareMajor > currentVersionMajor) {
+            isVersionOlder = true
+        } else if (versionToCompareMinor > currentVersionMinor) {
+            isVersionOlder = true
+        } else if (versionToComparePatch > currentVersionPatch) {
+            isVersionOlder = true
+        }
+
+        return isVersionOlder
+    }
+}
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/ConnectivityHelper.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/ConnectivityHelper.kt
index 457de57a667cafdba40b88c47c899fa93bbaf9fe..7cd591d3bbed1b4d5810fcf9d5bbc54fd8a989b7 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/ConnectivityHelper.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/ConnectivityHelper.kt
@@ -1,5 +1,6 @@
 package de.rki.coronawarnapp.util
 
+import android.app.ActivityManager
 import android.bluetooth.BluetoothAdapter
 import android.content.BroadcastReceiver
 import android.content.Context
@@ -121,6 +122,20 @@ object ConnectivityHelper {
         }
     }
 
+    /**
+     * Checks if background jobs are enabled
+     *
+     * @param context the context
+     *
+     * @return Boolean
+     *
+     * @see isDataSaverEnabled
+     * @see isBackgroundRestricted
+     */
+    fun isBackgroundJobEnabled(context: Context): Boolean {
+        return !(isDataSaverEnabled(context) || isBackgroundRestricted(context))
+    }
+
     /**
      * For API level 24+ check if data saver is enabled
      * Else always return false
@@ -131,13 +146,30 @@ object ConnectivityHelper {
      *
      * @see ConnectivityManager.RESTRICT_BACKGROUND_STATUS_DISABLED
      */
-    fun isDataSaverEnabled(context: Context): Boolean {
+    private fun isDataSaverEnabled(context: Context): Boolean {
         return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
             val connectivityManager = context.getSystemService(Context.CONNECTIVITY_SERVICE) as ConnectivityManager
             connectivityManager.restrictBackgroundStatus != ConnectivityManager.RESTRICT_BACKGROUND_STATUS_DISABLED
         } else false
     }
 
+    /**
+     * For API level 28+ check if background is restricted
+     * Else always return false
+     *
+     * @param context the context
+     *
+     * @return Boolean
+     *
+     * @see isBackgroundRestricted
+     */
+    private fun isBackgroundRestricted(context: Context): Boolean {
+        val activityManager = context.getSystemService(Context.ACTIVITY_SERVICE) as ActivityManager
+        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
+            return activityManager.isBackgroundRestricted
+        } else return false
+    }
+
     /**
      * Get bluetooth enabled status.
      *
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/TimeAndDateExtensions.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/TimeAndDateExtensions.kt
index 93c8ddc25ba94ff27f0aac1141b7dfa6a135101f..6206d2a139526fc87a79dafe8353e4951c540b13 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/TimeAndDateExtensions.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/TimeAndDateExtensions.kt
@@ -1,5 +1,6 @@
 package de.rki.coronawarnapp.util
 
+import android.content.Context
 import org.joda.time.DateTime
 import org.joda.time.DateTimeZone
 import org.joda.time.Instant
@@ -21,6 +22,9 @@ object TimeAndDateExtensions {
             .withZoneUTC()
             .print(this.time)
 
+    fun Date.toUIFormat(context: Context): String =
+        android.text.format.DateFormat.getDateFormat(context).format(this)
+
     fun Date.logUTCFormat(): String = DateTime(this, DateTimeZone.UTC).toString()
 
     fun Long.millisecondsToSeconds(): Long {
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterHelper.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterHelper.kt
index 0a895a569e71c49b3d672bfe5ba2d3db2a8199b8..6acacc3870b65a03848a6df9934ee53413674377 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterHelper.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterHelper.kt
@@ -113,5 +113,5 @@ fun formatText(value: Boolean?, stringTrue: Int, stringFalse: Int): String {
  */
 fun formatColorIcon(color: Int?): Int {
     val appContext = CoronaWarnApplication.getAppContext()
-    return color ?: appContext.getColor(R.color.colorLight)
+    return color ?: appContext.getColor(R.color.colorAccentTintIcon)
 }
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterRiskHelper.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterRiskHelper.kt
index 2b26669bfa76401e1dd1077238d59bb459a728a1..743c2af945954f058c4744f8078ab7ca29b2b2fd 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterRiskHelper.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterRiskHelper.kt
@@ -82,21 +82,21 @@ fun formatRiskBody(riskLevelScore: Int?): String {
  * the persisted risk level is of importance
  *
  * @param riskLevelScore
- * @param savedRiskLevelScore
+ * @param riskLevelScoreLastSuccessfulCalculated
  * @return
  */
-fun formatRiskSavedRisk(riskLevelScore: Int?, savedRiskLevelScore: Int?): String {
+fun formatRiskSavedRisk(riskLevelScore: Int?, riskLevelScoreLastSuccessfulCalculated: Int?): String {
     val appContext = CoronaWarnApplication.getAppContext()
     return if (
         riskLevelScore == RiskLevelConstants.NO_CALCULATION_POSSIBLE_TRACING_OFF ||
         riskLevelScore == RiskLevelConstants.UNKNOWN_RISK_OUTDATED_RESULTS
     ) {
-        when (savedRiskLevelScore) {
+        when (riskLevelScoreLastSuccessfulCalculated) {
             RiskLevelConstants.LOW_LEVEL_RISK,
             RiskLevelConstants.INCREASED_RISK,
             RiskLevelConstants.UNKNOWN_RISK_INITIAL ->
                 appContext.getString(R.string.risk_card_no_calculation_possible_body_saved_risk)
-                    .format(formatRiskLevelHeadline(savedRiskLevelScore, false))
+                    .format(formatRiskLevelHeadline(riskLevelScoreLastSuccessfulCalculated, false))
             else -> ""
         }
     } else {
@@ -195,13 +195,13 @@ fun formatRiskActiveTracingDaysInRetentionPeriod(
  * successfully fetched from the server
  *
  * @param riskLevelScore
- * @param savedRiskLevelScore
+ * @param riskLevelScoreLastSuccessfulCalculated
  * @param lastTimeDiagnosisKeysFetched
  * @return
  */
 fun formatTimeFetched(
     riskLevelScore: Int?,
-    savedRiskLevelScore: Int?,
+    riskLevelScoreLastSuccessfulCalculated: Int?,
     lastTimeDiagnosisKeysFetched: Date?
 ): String {
     val appContext = CoronaWarnApplication.getAppContext()
@@ -221,7 +221,7 @@ fun formatTimeFetched(
         }
         RiskLevelConstants.NO_CALCULATION_POSSIBLE_TRACING_OFF,
         RiskLevelConstants.UNKNOWN_RISK_OUTDATED_RESULTS -> {
-            when (savedRiskLevelScore) {
+            when (riskLevelScoreLastSuccessfulCalculated) {
                 RiskLevelConstants.LOW_LEVEL_RISK,
                 RiskLevelConstants.INCREASED_RISK,
                 RiskLevelConstants.UNKNOWN_RISK_INITIAL -> {
@@ -272,21 +272,6 @@ fun formatNextUpdate(
     }
 }
 
-/**
- * Formats the risk details subtitle text display depending on risk level
- *
- * @param riskLevelScore
- * @return
- */
-fun formatRiskDetailsRiskLevelSubtitle(riskLevelScore: Int?): String {
-    val appContext = CoronaWarnApplication.getAppContext()
-    return when (riskLevelScore) {
-        RiskLevelConstants.LOW_LEVEL_RISK,
-        RiskLevelConstants.INCREASED_RISK -> appContext.getString(R.string.risk_details_subtitle_infection_risk_past)
-        else -> appContext.getString(R.string.risk_details_subtitle_infection_risk)
-    }
-}
-
 /**
  * Formats the risk details text display for each risk level
  *
@@ -355,8 +340,8 @@ fun formatRiskShape(showDetails: Boolean): Drawable? =
 fun formatStableIconColor(riskLevelScore: Int?): Int =
     formatColor(
         !isTracingOffRiskLevel(riskLevelScore),
-        R.color.stableIconColor,
-        R.color.iconColor
+        R.color.colorStableLight,
+        R.color.colorTextPrimary1
     )
 
 /**
@@ -387,8 +372,8 @@ fun formatStableBackButtonColor(riskLevelScore: Int?): ColorStateList? {
 fun formatStableTextColor(riskLevelScore: Int?): Int =
     formatColor(
         !isTracingOffRiskLevel(riskLevelScore),
-        R.color.stableBackgroundColor,
-        R.color.textColorPrimary
+        R.color.colorStableLight,
+        R.color.colorTextPrimary1
     )
 
 /**
@@ -506,8 +491,8 @@ fun formatBehaviorIcon(riskLevelScore: Int?): Int {
     val appContext = CoronaWarnApplication.getAppContext()
     return when (riskLevelScore) {
         RiskLevelConstants.NO_CALCULATION_POSSIBLE_TRACING_OFF,
-        RiskLevelConstants.UNKNOWN_RISK_OUTDATED_RESULTS -> appContext.getColor(R.color.colorPrimary)
-        else -> appContext.getColor(R.color.stableIconColor)
+        RiskLevelConstants.UNKNOWN_RISK_OUTDATED_RESULTS -> appContext.getColor(R.color.colorAccentTintIcon)
+        else -> appContext.getColor(R.color.colorStableLight)
     }
 }
 
@@ -520,10 +505,10 @@ fun formatBehaviorIcon(riskLevelScore: Int?): Int {
 fun formatBehaviorIconBackground(riskLevelScore: Int?): Int {
     val appContext = CoronaWarnApplication.getAppContext()
     return when (riskLevelScore) {
-        RiskLevelConstants.INCREASED_RISK -> appContext.getColor(R.color.colorRiskCardIncreasedRisk)
-        RiskLevelConstants.LOW_LEVEL_RISK -> appContext.getColor(R.color.colorRiskCardLowRisk)
-        RiskLevelConstants.UNKNOWN_RISK_INITIAL -> appContext.getColor(R.color.colorRiskCardUnknownRisk)
-        else -> appContext.getColor(R.color.riskCardGrey)
+        RiskLevelConstants.INCREASED_RISK -> appContext.getColor(R.color.colorSemanticHighRisk)
+        RiskLevelConstants.LOW_LEVEL_RISK -> appContext.getColor(R.color.colorSemanticLowRisk)
+        RiskLevelConstants.UNKNOWN_RISK_INITIAL -> appContext.getColor(R.color.colorSemanticNeutralRisk)
+        else -> appContext.getColor(R.color.colorSurface2)
     }
 }
 
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterSettingsHelper.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterSettingsHelper.kt
index 9194931d5c1a9c9d9f038525f79324c52697b092..1c936b039dc25bf750250655d62c05d16bc578bd 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterSettingsHelper.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterSettingsHelper.kt
@@ -7,6 +7,7 @@ import de.rki.coronawarnapp.CoronaWarnApplication
 import de.rki.coronawarnapp.R
 
 /*Texter*/
+
 /**
  * Formats the text display of settings item status depending on flag provided
  *
@@ -34,6 +35,43 @@ fun formatNotificationsStatusText(
 ): String =
     formatStatus((notifications && (notificationsRisk || notificationsTest)))
 
+/**
+ * Formats the settings notifications title display depending on notifications status
+ *
+ * @param notifications
+ * @return
+ */
+fun formatNotificationsTitle(notifications: Boolean): String = formatText(
+    notifications,
+    R.string.settings_notifications_headline_active,
+    R.string.settings_notifications_headline_inactive
+)
+
+/**
+ * Formats the settings notifications description text display depending on notifications status
+ *
+ * @param notifications
+ * @return
+ */
+fun formatNotificationsDescription(notifications: Boolean): String = formatText(
+    notifications,
+    R.string.settings_notifications_body_active,
+    R.string.settings_notifications_body_inactive
+)
+
+/**
+ * Formats the settings notifications details illustration description depending on notifications status
+ *
+ * @param notifications
+ * @return
+ */
+fun formatNotificationIllustrationText(notifications: Boolean): String =
+    formatText(
+        notifications,
+        R.string.settings_notifications_illustration_description_active,
+        R.string.settings_notifications_illustration_description_inactive
+    )
+
 /**
  * Change the tracing text in the row based on the tracing status.
  *
@@ -78,30 +116,6 @@ fun formatTracingDescription(tracing: Boolean, bluetooth: Boolean, connection: B
     }
 }
 
-/**
- * Formats the settings notifications title display depending on notifications status
- *
- * @param notifications
- * @return
- */
-fun formatNotificationsTitle(notifications: Boolean): String = formatText(
-    notifications,
-    R.string.settings_notifications_headline_active,
-    R.string.settings_notifications_headline_inactive
-)
-
-/**
- * Formats the settings notifications description text display depending on notifications status
- *
- * @param notifications
- * @return
- */
-fun formatNotificationsDescription(notifications: Boolean): String = formatText(
-    notifications,
-    R.string.settings_notifications_body_active,
-    R.string.settings_notifications_body_inactive
-)
-
 /**
  * Formats the tracing body depending on the tracing status and the days since last exposure.
  *
@@ -116,19 +130,6 @@ fun formatTracingStatusBody(activeTracingDaysInRetentionPeriod: Long): String {
     return resources.getQuantityString(R.plurals.settings_tracing_status_body_active, days, days)
 }
 
-/**
- * Formats the settings notifications details illustration description depending on notifications status
- *
- * @param notifications
- * @return
- */
-fun formatNotificationIllustrationText(notifications: Boolean): String =
-    formatText(
-        notifications,
-        R.string.settings_notifications_illustration_description_active,
-        R.string.settings_notifications_illustration_description_inactive
-    )
-
 /**
  * Format the settings tracing content description for the header illustration
  *
@@ -164,7 +165,7 @@ fun formatTracingIllustrationText(
  * @return Int
  */
 fun formatIconColor(active: Boolean): Int =
-    formatColor(active, R.color.settingsIconActive, R.color.settingsIconInactive)
+    formatColor(active, R.color.colorAccentTintIcon, R.color.colorTextPrimary3)
 
 /**
  * Formats the settings icon color for notifications depending on notification values
@@ -174,12 +175,94 @@ fun formatIconColor(active: Boolean): Int =
  * @param notificationsTest
  * @return Int
  */
-fun formatIconColor(
+fun formatNotificationIconColor(
     notifications: Boolean,
     notificationsRisk: Boolean,
     notificationsTest: Boolean
 ): Int =
-    formatIconColor((notifications && (notificationsRisk || notificationsTest)))
+    formatColor(
+        (notifications && (notificationsRisk || notificationsTest)),
+        R.color.colorAccentTintIcon,
+        R.color.colorTextSemanticRed
+    )
+
+/**
+ * Formats settings icon color for notifications depending on notification values
+ *
+ * @param notifications
+ * @param notificationsRisk
+ * @param notificationsTest
+ * @return
+ */
+fun formatNotificationIcon(
+    notifications: Boolean,
+    notificationsRisk: Boolean,
+    notificationsTest: Boolean
+): Drawable? =
+    formatDrawable(
+        (notifications && (notificationsRisk || notificationsTest)),
+        R.drawable.ic_settings_notification_active,
+        R.drawable.ic_settings_notification_inactive
+    )
+
+/**
+ * Formats the settings notifications details illustration depending on notifications status
+ *
+ * @param notifications
+ * @return
+ */
+fun formatNotificationImage(notifications: Boolean): Drawable? =
+    formatDrawable(
+        notifications,
+        R.drawable.ic_illustration_notification_on,
+        R.drawable.ic_settings_illustration_notification_off
+    )
+
+/**
+ * Formats the settings icon color for tracing depending on tracing values
+ *
+ * @param tracing
+ * @param bluetooth
+ * @param connection
+ * @return
+ */
+fun formatSettingsTracingIconColor(tracing: Boolean, bluetooth: Boolean, connection: Boolean): Int {
+    val appContext = CoronaWarnApplication.getAppContext()
+    return when (tracingStatusHelper(tracing, bluetooth, connection)) {
+        TracingStatusHelper.CONNECTION, TracingStatusHelper.BLUETOOTH ->
+            appContext.getColor(R.color.colorTextSemanticRed)
+        TracingStatusHelper.TRACING_ACTIVE ->
+            appContext.getColor(R.color.colorAccentTintIcon)
+        TracingStatusHelper.TRACING_INACTIVE ->
+            appContext.getColor(R.color.colorTextSemanticRed)
+        else -> appContext.getColor(R.color.colorTextSemanticRed)
+    }
+}
+
+/**
+ * Formats the settings icon for tracing depending on tracing values
+ *
+ * @param tracing
+ * @param bluetooth
+ * @param connection
+ * @return
+ */
+fun formatSettingsTracingIcon(
+    tracing: Boolean,
+    bluetooth: Boolean,
+    connection: Boolean
+): Drawable? {
+    val appContext = CoronaWarnApplication.getAppContext()
+    return when (tracingStatusHelper(tracing, bluetooth, connection)) {
+        TracingStatusHelper.CONNECTION,
+        TracingStatusHelper.BLUETOOTH,
+        TracingStatusHelper.TRACING_ACTIVE ->
+            appContext.getDrawable(R.drawable.ic_settings_tracing_active)
+        TracingStatusHelper.TRACING_INACTIVE ->
+            appContext.getDrawable(R.drawable.ic_settings_tracing_inactive)
+        else -> appContext.getDrawable(R.drawable.ic_settings_tracing_inactive)
+    }
+}
 
 /**
  * Formats the tracing switch status based on the tracing status
@@ -245,9 +328,9 @@ fun formatTracingIconColor(tracing: Boolean, bluetooth: Boolean, connection: Boo
     val appContext = CoronaWarnApplication.getAppContext()
     return when (tracingStatusHelper(tracing, bluetooth, connection)) {
         TracingStatusHelper.TRACING_ACTIVE ->
-            appContext.getColor(R.color.tracingIconActive)
+            appContext.getColor(R.color.colorAccentTintIcon)
         else ->
-            appContext.getColor(R.color.tracingIconInactive)
+            appContext.getColor(R.color.colorTextSemanticRed)
     }
 }
 
@@ -267,7 +350,7 @@ fun formatTracingStatusImage(tracing: Boolean, bluetooth: Boolean, connection: B
         TracingStatusHelper.CONNECTION ->
             appContext.getDrawable(R.drawable.ic_settings_illustration_connection_off)
         TracingStatusHelper.TRACING_ACTIVE ->
-            appContext.getDrawable(R.drawable.ic_settings_illustration_tracing_on)
+            appContext.getDrawable(R.drawable.ic_illustration_tracing_on)
         else ->
             appContext.getDrawable(R.drawable.ic_settings_illustration_tracing_off)
     }
@@ -330,16 +413,3 @@ fun formatTracingStatusVisibilityTracing(
                 tracingStatus == TracingStatusHelper.TRACING_INACTIVE
     )
 }
-
-/**
- * Formats the settings notifications details illustration depending on notifications status
- *
- * @param notifications
- * @return
- */
-fun formatNotificationImage(notifications: Boolean): Drawable? =
-    formatDrawable(
-        notifications,
-        R.drawable.ic_settings_illustration_notification_on,
-        R.drawable.ic_settings_illustration_notification_off
-    )
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterSubmissionHelper.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterSubmissionHelper.kt
index 55b9a454c9e8859e0b411bb6a79182136c621a18..dbe3e29ed71c9d4c6116f0044da2aaf72f51bb13 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterSubmissionHelper.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterSubmissionHelper.kt
@@ -3,11 +3,16 @@
 package de.rki.coronawarnapp.util.formatter
 
 import android.graphics.drawable.Drawable
+import android.text.Spannable
+import android.text.SpannableString
+import android.text.SpannableStringBuilder
+import android.text.style.ForegroundColorSpan
 import android.view.View
 import de.rki.coronawarnapp.CoronaWarnApplication
 import de.rki.coronawarnapp.R
 import de.rki.coronawarnapp.ui.submission.ApiRequestState
 import de.rki.coronawarnapp.util.DeviceUIState
+import de.rki.coronawarnapp.util.TimeAndDateExtensions.toUIFormat
 import java.util.Date
 
 fun formatTestResultSpinnerVisible(uiStateState: ApiRequestState?): Int =
@@ -16,24 +21,6 @@ fun formatTestResultSpinnerVisible(uiStateState: ApiRequestState?): Int =
 fun formatTestResultVisible(uiStateState: ApiRequestState?): Int =
     formatVisibility(uiStateState == ApiRequestState.SUCCESS)
 
-fun formatTestResultVirusNameTextVisible(uiState: DeviceUIState?): Int {
-    return when (uiState) {
-        DeviceUIState.PAIRED_POSITIVE,
-        DeviceUIState.PAIRED_POSITIVE_TELETAN,
-        DeviceUIState.PAIRED_NEGATIVE -> View.VISIBLE
-        else -> View.GONE
-    }
-}
-
-fun formatTestResultStatusTextVisible(uiState: DeviceUIState?): Int {
-    return when (uiState) {
-        DeviceUIState.PAIRED_POSITIVE,
-        DeviceUIState.PAIRED_POSITIVE_TELETAN,
-        DeviceUIState.PAIRED_NEGATIVE -> View.VISIBLE
-        else -> View.GONE
-    }
-}
-
 fun formatTestResultStatusText(uiState: DeviceUIState?): String {
     val appContext = CoronaWarnApplication.getAppContext()
     return when (uiState) {
@@ -54,9 +41,35 @@ fun formatTestResultStatusColor(uiState: DeviceUIState?): Int {
     }
 }
 
+fun formatTestResult(uiState: DeviceUIState?): Spannable {
+    val appContext = CoronaWarnApplication.getAppContext()
+    return SpannableStringBuilder()
+        .append(appContext.getString(R.string.test_result_card_virus_name_text))
+        .append(" ")
+        .append(
+            formatTestResultStatusText(uiState),
+            ForegroundColorSpan(formatTestResultStatusColor(uiState)),
+            Spannable.SPAN_EXCLUSIVE_INCLUSIVE
+        )
+}
+
+fun formatTestResultCardContent(uiState: DeviceUIState?): Spannable {
+    val appContext = CoronaWarnApplication.getAppContext()
+    return when (uiState) {
+        DeviceUIState.PAIRED_NO_RESULT ->
+            SpannableString(appContext.getString(R.string.test_result_card_status_pending))
+        DeviceUIState.PAIRED_ERROR ->
+            SpannableString(appContext.getString(R.string.test_result_card_status_invalid))
+
+        DeviceUIState.PAIRED_POSITIVE,
+        DeviceUIState.PAIRED_POSITIVE_TELETAN,
+        DeviceUIState.PAIRED_NEGATIVE -> formatTestResult(uiState)
+        else -> SpannableString("")
+    }
+}
+
 fun formatTestStatusIcon(uiState: DeviceUIState?): Drawable? {
     val appContext = CoronaWarnApplication.getAppContext()
-    // TODO Replace with real drawables when design is finished
     return when (uiState) {
         DeviceUIState.PAIRED_NO_RESULT -> appContext.getDrawable(R.drawable.ic_test_result_illustration_pending)
         DeviceUIState.PAIRED_POSITIVE_TELETAN,
@@ -67,15 +80,10 @@ fun formatTestStatusIcon(uiState: DeviceUIState?): Drawable? {
     }
 }
 
-fun formatTestResultInvalidStatusTextVisible(uiState: DeviceUIState?): Int =
-    formatVisibility(uiState == DeviceUIState.PAIRED_ERROR)
-
-fun formatTestResultPendingStatusTextVisible(uiState: DeviceUIState?): Int =
-    formatVisibility(uiState == DeviceUIState.PAIRED_NO_RESULT)
-
 fun formatTestResultRegisteredAtText(registeredAt: Date?): String {
     val appContext = CoronaWarnApplication.getAppContext()
-    return appContext.getString(R.string.test_result_card_registered_at_text).format(registeredAt)
+    return appContext.getString(R.string.test_result_card_registered_at_text)
+        .format(registeredAt?.toUIFormat(appContext))
 }
 
 fun formatTestResultPendingStepsVisible(uiState: DeviceUIState?): Int =
@@ -90,13 +98,29 @@ fun formatTestResultPositiveStepsVisible(uiState: DeviceUIState?): Int =
 fun formatTestResultInvalidStepsVisible(uiState: DeviceUIState?): Int =
     formatVisibility(uiState == DeviceUIState.PAIRED_ERROR)
 
+fun formatSubmissionStatusCardSubtitleColor(uiState: DeviceUIState?): Int {
+    val appContext = CoronaWarnApplication.getAppContext()
+    return when (uiState) {
+        DeviceUIState.PAIRED_NEGATIVE -> appContext.getColor(R.color.colorTextSemanticGreen)
+        DeviceUIState.PAIRED_ERROR -> appContext.getColor(R.color.colorTextSemanticNeutral)
+        else -> appContext.getColor(R.color.colorTextPrimary1)
+    }
+}
+
+fun formatSubmissionStatusCardSubtitleText(uiState: DeviceUIState?): String {
+    val appContext = CoronaWarnApplication.getAppContext()
+    return when (uiState) {
+        DeviceUIState.PAIRED_NEGATIVE -> appContext.getString(R.string.submission_status_card_subtitle_negative)
+        DeviceUIState.PAIRED_ERROR -> appContext.getString(R.string.submission_status_card_subtitle_invalid)
+        else -> ""
+    }
+}
+
 fun formatSubmissionStatusCardContentTitleText(uiState: DeviceUIState?): String {
     val appContext = CoronaWarnApplication.getAppContext()
     return when (uiState) {
         DeviceUIState.PAIRED_ERROR,
-        DeviceUIState.PAIRED_NEGATIVE,
-        DeviceUIState.PAIRED_POSITIVE_TELETAN,
-        DeviceUIState.PAIRED_POSITIVE -> appContext.getString(R.string.submission_status_card_title_available)
+        DeviceUIState.PAIRED_NEGATIVE -> appContext.getString(R.string.submission_status_card_title_available)
         DeviceUIState.PAIRED_NO_RESULT -> appContext.getString(R.string.submission_status_card_title_pending)
         else -> appContext.getString(R.string.submission_status_card_title_pending)
     }
@@ -107,28 +131,13 @@ fun formatSubmissionStatusCardContentBodyText(uiState: DeviceUIState?): String {
     return when (uiState) {
         DeviceUIState.PAIRED_ERROR -> appContext.getString(R.string.submission_status_card_body_invalid)
         DeviceUIState.PAIRED_NEGATIVE -> appContext.getString(R.string.submission_status_card_body_negative)
-        DeviceUIState.PAIRED_POSITIVE,
-        DeviceUIState.PAIRED_POSITIVE_TELETAN -> appContext.getString(R.string.submission_status_card_body_positive)
         DeviceUIState.PAIRED_NO_RESULT -> appContext.getString(R.string.submission_status_card_body_pending)
         else -> appContext.getString(R.string.submission_status_card_body_pending)
     }
 }
 
-fun formatSubmissionStatusCardContentButtonText(uiState: DeviceUIState?): String {
-    val appContext = CoronaWarnApplication.getAppContext()
-    return when (uiState) {
-        DeviceUIState.PAIRED_ERROR,
-        DeviceUIState.PAIRED_NEGATIVE,
-        DeviceUIState.PAIRED_POSITIVE_TELETAN,
-        DeviceUIState.PAIRED_POSITIVE -> appContext.getString(R.string.submission_status_card_button_show_results)
-        else -> appContext.getString(R.string.submission_status_card_button_show_details)
-    }
-}
-
 fun formatSubmissionStatusCardContentStatusTextVisible(uiState: DeviceUIState?): Int {
     return when (uiState) {
-        DeviceUIState.PAIRED_POSITIVE,
-        DeviceUIState.PAIRED_POSITIVE_TELETAN,
         DeviceUIState.PAIRED_NEGATIVE,
         DeviceUIState.PAIRED_ERROR -> View.VISIBLE
         else -> View.GONE
diff --git a/Corona-Warn-App/src/main/res/color/button_back.xml b/Corona-Warn-App/src/main/res/color/button_back.xml
index efafab00fb8d1fefb7c77d552acf42698c691a6f..ae25457c52f41ff53f460586ce4e4cb282b311c5 100644
--- a/Corona-Warn-App/src/main/res/color/button_back.xml
+++ b/Corona-Warn-App/src/main/res/color/button_back.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
 <selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:color="@color/colorGreyLight" android:state_pressed="true" /> <!-- pressed -->
+    <item android:color="@color/colorSurface1Pressed" android:state_pressed="true" /> <!-- pressed -->
     <item android:color="@color/colorTransparent" /> <!-- default -->
 </selector>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/color/button_back_stable.xml b/Corona-Warn-App/src/main/res/color/button_back_stable.xml
index 247883582d19e77c0244cc07485d21db38890b23..8e9ee708c671bd5819295899e24e59ca63bcff05 100644
--- a/Corona-Warn-App/src/main/res/color/button_back_stable.xml
+++ b/Corona-Warn-App/src/main/res/color/button_back_stable.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
 <selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:color="@color/stableHighlightColor" android:state_pressed="true" /> <!-- pressed -->
+    <item android:color="@color/colorStableMedium" android:state_pressed="true" /> <!-- pressed -->
     <item android:color="@color/colorTransparent" /> <!-- default -->
 </selector>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/color/button_light.xml b/Corona-Warn-App/src/main/res/color/button_light.xml
index d57581e9c479ca3a19b5716883aea7a25a8b2bc1..3b4d4735efe14b72cfe77e5a1f330a738f60e912 100644
--- a/Corona-Warn-App/src/main/res/color/button_light.xml
+++ b/Corona-Warn-App/src/main/res/color/button_light.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
 <selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:color="@color/colorGreyLight" android:state_pressed="true" /> <!-- pressed -->
-    <item android:color="@color/colorLight" /> <!-- default -->
+    <item android:color="@color/colorSurface1Pressed" android:state_pressed="true" /> <!-- pressed -->
+    <item android:color="@color/colorSurface1" /> <!-- default -->
 </selector>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/color/button_main_tracing.xml b/Corona-Warn-App/src/main/res/color/button_main_tracing.xml
index efafab00fb8d1fefb7c77d552acf42698c691a6f..ae25457c52f41ff53f460586ce4e4cb282b311c5 100644
--- a/Corona-Warn-App/src/main/res/color/button_main_tracing.xml
+++ b/Corona-Warn-App/src/main/res/color/button_main_tracing.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
 <selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:color="@color/colorGreyLight" android:state_pressed="true" /> <!-- pressed -->
+    <item android:color="@color/colorSurface1Pressed" android:state_pressed="true" /> <!-- pressed -->
     <item android:color="@color/colorTransparent" /> <!-- default -->
 </selector>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/color/button_primary.xml b/Corona-Warn-App/src/main/res/color/button_primary.xml
index 2555dd3e1ef9aadc91def1cf2b254fa49629de86..72706c8363909a69540881ae6f0c9542b902523e 100644
--- a/Corona-Warn-App/src/main/res/color/button_primary.xml
+++ b/Corona-Warn-App/src/main/res/color/button_primary.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:color="@color/colorPrimaryDark" android:state_pressed="true" /> <!-- pressed -->
+    <item android:color="@color/colorAccentTintButtonPressed" android:state_pressed="true" /> <!-- pressed -->
     <item android:color="@color/colorSurface2" android:state_enabled="false" /> <!-- disabled -->
     <item android:color="@color/colorAccentTintButton" /> <!-- default -->
 </selector>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/color/button_red.xml b/Corona-Warn-App/src/main/res/color/button_red.xml
index e1733036b1610e9dea31655f8d6cbda59eaadb46..4d42fdd5d8682606ac8bee5815c604ea53cb5446 100644
--- a/Corona-Warn-App/src/main/res/color/button_red.xml
+++ b/Corona-Warn-App/src/main/res/color/button_red.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
 <selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:color="@color/colorRiskCardIncreasedRiskPressed" android:state_pressed="true" /> <!-- pressed -->
-    <item android:color="@color/colorRiskCardIncreasedRisk" /> <!-- default -->
+    <item android:color="@color/colorSemanticHighRiskPressed" android:state_pressed="true" /> <!-- pressed -->
+    <item android:color="@color/colorSemanticHighRisk" /> <!-- default -->
 </selector>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/color/card_increased.xml b/Corona-Warn-App/src/main/res/color/card_increased.xml
index e1733036b1610e9dea31655f8d6cbda59eaadb46..4d42fdd5d8682606ac8bee5815c604ea53cb5446 100644
--- a/Corona-Warn-App/src/main/res/color/card_increased.xml
+++ b/Corona-Warn-App/src/main/res/color/card_increased.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
 <selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:color="@color/colorRiskCardIncreasedRiskPressed" android:state_pressed="true" /> <!-- pressed -->
-    <item android:color="@color/colorRiskCardIncreasedRisk" /> <!-- default -->
+    <item android:color="@color/colorSemanticHighRiskPressed" android:state_pressed="true" /> <!-- pressed -->
+    <item android:color="@color/colorSemanticHighRisk" /> <!-- default -->
 </selector>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/color/card_light.xml b/Corona-Warn-App/src/main/res/color/card_light.xml
index b41eb530170ab63be39e99f9c2d1fe971a13bebf..3b4d4735efe14b72cfe77e5a1f330a738f60e912 100644
--- a/Corona-Warn-App/src/main/res/color/card_light.xml
+++ b/Corona-Warn-App/src/main/res/color/card_light.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
 <selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:color="@color/colorRiskCardNoCalculationPossiblePressed" android:state_pressed="true" /> <!-- pressed -->
-    <item android:color="@color/colorRiskCardNoCalculationPossible" /> <!-- default -->
+    <item android:color="@color/colorSurface1Pressed" android:state_pressed="true" /> <!-- pressed -->
+    <item android:color="@color/colorSurface1" /> <!-- default -->
 </selector>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/color/card_low.xml b/Corona-Warn-App/src/main/res/color/card_low.xml
index dfb7f33c820fbcfa2dbbbfe715abafe09bc74f8d..1b4f227ceb3f2aca13a12c8405daa353279cbe10 100644
--- a/Corona-Warn-App/src/main/res/color/card_low.xml
+++ b/Corona-Warn-App/src/main/res/color/card_low.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
 <selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:color="@color/colorRiskCardLowRiskPressed" android:state_pressed="true" /> <!-- pressed -->
-    <item android:color="@color/colorRiskCardLowRisk" /> <!-- default -->
+    <item android:color="@color/colorSemanticLowRiskPressed" android:state_pressed="true" /> <!-- pressed -->
+    <item android:color="@color/colorSemanticLowRisk" /> <!-- default -->
 </selector>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/color/card_no_calculation.xml b/Corona-Warn-App/src/main/res/color/card_no_calculation.xml
index b41eb530170ab63be39e99f9c2d1fe971a13bebf..2b89bf182cf7cb786659513362cedf31d51da51b 100644
--- a/Corona-Warn-App/src/main/res/color/card_no_calculation.xml
+++ b/Corona-Warn-App/src/main/res/color/card_no_calculation.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
 <selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:color="@color/colorRiskCardNoCalculationPossiblePressed" android:state_pressed="true" /> <!-- pressed -->
-    <item android:color="@color/colorRiskCardNoCalculationPossible" /> <!-- default -->
+    <item android:color="@color/colorSemanticUnknownRiskPressed" android:state_pressed="true" /> <!-- pressed -->
+    <item android:color="@color/colorSemanticUnknownRisk" /> <!-- default -->
 </selector>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/color/card_outdated.xml b/Corona-Warn-App/src/main/res/color/card_outdated.xml
index 1e68d9dc371f64442328f085d6d5ea2be0660de2..2b89bf182cf7cb786659513362cedf31d51da51b 100644
--- a/Corona-Warn-App/src/main/res/color/card_outdated.xml
+++ b/Corona-Warn-App/src/main/res/color/card_outdated.xml
@@ -1,7 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<selector xmlns:android="http://schemas.android.com/apk/res/android"> <!--
-    <item android:color="@color/colorRiskCardOutdatedRiskPressed" android:state_pressed="true" />  pressed -->
-    <!--<item android:color="@color/colorRiskCardOutdatedRisk" /> default -->
-    <item android:color="@color/colorRiskCardNoCalculationPossiblePressed" android:state_pressed="true" /> <!-- pressed -->
-    <item android:color="@color/colorRiskCardNoCalculationPossible" /> <!-- default -->
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+    <item android:color="@color/colorSemanticUnknownRiskPressed" android:state_pressed="true" /> <!-- pressed -->
+    <item android:color="@color/colorSemanticUnknownRisk" /> <!-- default -->
 </selector>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/color/card_unknown.xml b/Corona-Warn-App/src/main/res/color/card_unknown.xml
index bbb24111da6e9f982b4d8c67e98320510641a079..03c3a4f6dc017e402c3604ff157608314a2744ff 100644
--- a/Corona-Warn-App/src/main/res/color/card_unknown.xml
+++ b/Corona-Warn-App/src/main/res/color/card_unknown.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
 <selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:color="@color/colorRiskCardUnknownRiskPressed" android:state_pressed="true" /> <!-- pressed -->
-    <item android:color="@color/colorRiskCardUnknownRisk" /> <!-- default -->
+    <item android:color="@color/colorSemanticNeutralRiskPressed" android:state_pressed="true" /> <!-- pressed -->
+    <item android:color="@color/colorSemanticNeutralRisk" /> <!-- default -->
 </selector>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/color/row.xml b/Corona-Warn-App/src/main/res/color/row.xml
index efafab00fb8d1fefb7c77d552acf42698c691a6f..ae25457c52f41ff53f460586ce4e4cb282b311c5 100644
--- a/Corona-Warn-App/src/main/res/color/row.xml
+++ b/Corona-Warn-App/src/main/res/color/row.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
 <selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:color="@color/colorGreyLight" android:state_pressed="true" /> <!-- pressed -->
+    <item android:color="@color/colorSurface1Pressed" android:state_pressed="true" /> <!-- pressed -->
     <item android:color="@color/colorTransparent" /> <!-- default -->
 </selector>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/drawable/circle.xml b/Corona-Warn-App/src/main/res/drawable/circle.xml
index 7e73f1ae2ee3eed19f8746288035b5617378975c..5c7a6fe8f61532c21f4abfdea6bbbf04344fe09b 100644
--- a/Corona-Warn-App/src/main/res/drawable/circle.xml
+++ b/Corona-Warn-App/src/main/res/drawable/circle.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
 <shape xmlns:android="http://schemas.android.com/apk/res/android"
     android:shape="oval">
-    <solid android:color="@color/colorPrimary" />
+    <solid android:color="@color/colorAccentTintIcon" />
 </shape>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_forward.xml b/Corona-Warn-App/src/main/res/drawable/ic_forward.xml
index 8f3cf3ee1190c654820cbb045f04d4efacd58ebe..260f315718dd32046b31f778ebea0f2d7de7a4a0 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_forward.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_forward.xml
@@ -3,10 +3,11 @@
     android:height="40dp"
     android:viewportWidth="40"
     android:viewportHeight="40">
-    <path
-        android:fillColor="#FAFDFF"
-        android:fillType="evenOdd"
-        android:pathData="M21.9572,13l-1.4942,1.4851l4.5525,4.5249l-14.0156,0l-0,1.9801l14.0156,0l-4.5525,4.5249l1.4942,1.4851l7.0428,-7z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
+  <path
+      android:pathData="M21.9572,13l-1.4942,1.4851l4.5525,4.5249l-14.0156,0l-0,1.9801l14.0156,0l-4.5525,4.5249l1.4942,1.4851l7.0428,-7z"
+      android:strokeWidth="1"
+      android:fillColor="#17191A"
+      android:fillAlpha="1.0"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_illustration_notification_on.xml b/Corona-Warn-App/src/main/res/drawable/ic_illustration_notification_on.xml
new file mode 100644
index 0000000000000000000000000000000000000000..9664222cb254ad461a8d2784cf9da69fd657602a
--- /dev/null
+++ b/Corona-Warn-App/src/main/res/drawable/ic_illustration_notification_on.xml
@@ -0,0 +1,298 @@
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+    android:width="360dp"
+    android:height="220dp"
+    android:viewportWidth="360"
+    android:viewportHeight="220">
+  <group>
+    <clip-path
+        android:pathData="M0,0h360v220h-360z"/>
+    <path
+        android:pathData="M216.595,150.161C216.586,150.109 215.692,144.795 215.153,139.02C214.427,131.248 214.454,126.265 215.494,123.928L215.923,124.071C213.488,129.546 217.256,149.926 217.29,150.131L216.595,150.161Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M215.603,144.717C214.136,144.717 212.166,143.593 209.813,141.624C207.978,140.088 206.554,138.496 206.54,138.48L206.766,138.28C206.822,138.342 212.355,144.406 215.737,144.137L215.845,144.708C215.766,144.714 215.685,144.717 215.603,144.717"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M217.922,147.733C216.894,147.733 216.237,147.681 216.224,147.679L216.307,147.117C216.415,147.127 227.128,148.209 230.099,142.788L230.365,142.933C229.093,145.254 226.239,146.81 222.111,147.433C220.517,147.674 219.011,147.733 217.922,147.733"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M231.894,150.678C274.558,150.678 293.144,123.768 332.978,128.863C342.447,130.074 354.471,133.857 367.974,144.468L367.974,174.24L-7.025,176.32L-7.025,142.32C4.975,137.32 8.975,139.32 21.975,142.32C65.473,152.358 115.977,126.356 139.478,125.446C141.672,125.361 143.79,125.321 145.825,125.321C196.599,125.317 199.027,150.678 231.894,150.678"
+        android:strokeWidth="1"
+        android:fillColor="#E8F5FF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+  </group>
+  <group>
+    <clip-path
+        android:pathData="M0,0h360v220h-360z"/>
+    <group>
+      <clip-path
+          android:pathData="M145.826,125.321C143.791,125.321 141.673,125.362 139.479,125.446L139.479,125.446C115.978,126.356 65.474,152.359 21.975,142.32L21.975,142.32C8.975,139.321 4.975,137.321 -7.025,142.32L-7.025,142.32L-7.025,176.32L367.974,174.24L367.974,144.468C354.471,133.858 342.447,130.074 332.979,128.863L332.979,128.863C293.144,123.769 274.558,150.679 231.895,150.679L231.895,150.679C199.029,150.679 196.601,125.321 145.836,125.321L145.836,125.321C145.833,125.321 145.829,125.321 145.826,125.321L145.826,125.321Z"/>
+      <path
+          android:pathData="M-106.558,182.459l508.41,0l0,-63.805l-508.41,0z"
+          android:strokeWidth="1"
+          android:fillColor="#E8F5FF"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+  </group>
+  <group>
+    <clip-path
+        android:pathData="M0,0h360v220h-360z"/>
+    <group>
+      <clip-path
+          android:pathData="M145.836,125.321C145.834,125.321 145.828,125.321 145.826,125.321L145.826,125.321C143.791,125.321 141.673,125.362 139.479,125.446L139.479,125.446C115.978,126.356 65.474,152.359 21.975,142.32L21.975,142.32C8.975,139.321 4.975,137.321 -7.025,142.32L-7.025,142.32L-7.025,176.32L367.974,174.24L367.974,144.468C354.471,133.858 342.447,130.074 332.979,128.863L332.979,128.863C293.144,123.769 274.558,150.679 231.895,150.679L231.895,150.679C199.031,150.679 196.595,125.323 145.839,125.321L145.839,125.321C145.836,125.321 145.84,125.321 145.836,125.321L145.836,125.321Z"/>
+      <path
+          android:pathData="M-76.862,176.204l445.453,0l0,-52.545l-445.453,0z"
+          android:strokeWidth="1"
+          android:fillColor="#E8F5FF"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+  </group>
+  <group>
+    <clip-path
+        android:pathData="M0,0h360v220h-360z"/>
+    <group>
+      <clip-path
+          android:pathData="M145.836,125.321C145.834,125.321 145.828,125.321 145.826,125.321L145.826,125.321C143.791,125.321 141.673,125.362 139.479,125.446L139.479,125.446C115.978,126.356 65.474,152.359 21.975,142.32L21.975,142.32C8.975,139.321 4.975,137.321 -7.025,142.32L-7.025,142.32L-7.025,176.203L14.061,176.203L367.974,174.24L367.974,144.468C354.471,133.858 342.447,130.074 332.979,128.863L332.979,128.863C293.144,123.769 274.558,150.679 231.895,150.679L231.895,150.679C199.031,150.679 196.595,125.323 145.839,125.321L145.839,125.321C145.836,125.321 145.839,125.321 145.836,125.321L145.836,125.321Z"/>
+      <path
+          android:pathData="M-112,188.509l519.179,0l0,-75.7l-519.179,0z"
+          android:strokeWidth="1"
+          android:fillColor="#E8F5FF"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+  </group>
+  <group>
+    <clip-path
+        android:pathData="M0,0h360v220h-360z"/>
+    <group>
+      <clip-path
+          android:pathData="M107.573,166.86C71.657,166.86 56.009,149.308 22.475,152.631L22.475,152.631C14.504,153.421 4.383,155.889 -6.985,162.81L-6.985,162.81L-6.985,182.23L367.496,183.319L367.496,168.991C365.608,168.134 363.733,167.4 361.95,166.848L361.95,166.848C361.95,166.848 324.155,154.936 282.3,165.129L282.3,165.129C246.451,173.867 205.155,150.995 185.372,150.402L185.372,150.402C183.524,150.346 181.741,150.32 180.028,150.32L180.028,150.32C137.286,150.318 135.242,166.86 107.573,166.86L107.573,166.86Z"/>
+      <path
+          android:pathData="M-39.989,191.537l437.066,0l0,-49.378l-437.066,0z"
+          android:strokeWidth="1"
+          android:fillColor="#D8ECF9"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+  </group>
+  <group>
+    <clip-path
+        android:pathData="M0,0h360v220h-360z"/>
+    <path
+        android:pathData="M159.279,63.618C159.279,63.618 167.286,71.109 170.315,73.132C172.826,74.809 181.106,78.56 181.106,78.56L177.546,82.265C177.546,82.265 170.271,80.644 168.032,79.601C165.735,78.532 159.659,73.893 159.659,73.893L159.279,63.618Z"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M121.247,188.632L118.356,194.122C117.957,194.878 118.223,195.814 118.961,196.244C122.455,198.281 132.006,203.487 136.128,202.084C136.706,201.887 136.849,201.132 136.399,200.718C133.769,198.298 125.591,190.573 126.224,188.676L121.247,188.632Z"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M120.981,189.144L126.571,189.889L154.217,126.053L139.819,97.136L139.652,136.717C139.652,136.717 126.812,162.241 124.762,172.254C122.739,182.141 120.981,189.144 120.981,189.144"
+        android:strokeWidth="1"
+        android:fillColor="#B96161"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M138.915,87.901L160.609,88.191C160.609,88.191 179.412,182.49 186.933,188.854L182.883,191.747C182.883,191.747 159.742,160.217 161.767,139.968C161.767,139.968 133.129,93.976 138.915,87.901"
+        android:strokeWidth="1"
+        android:fillColor="#C66A61"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M154.225,51.624L152.831,41.767C152.831,41.767 158.891,42.036 158.751,33.581C158.725,32.014 158.617,29.332 157.171,27.299L152.831,26.017L148.117,36.731L145.829,50.348L150.689,54.088L154.76,53.981L154.225,51.624Z"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M182.883,191.747L183.776,197.888C183.898,198.733 184.664,199.333 185.513,199.247C189.536,198.839 200.322,197.429 202.831,193.868C203.182,193.369 202.853,192.674 202.246,192.604C198.695,192.195 187.537,190.761 186.933,188.854L182.883,191.747Z"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M134.197,100.94L135.707,82.488L143.507,84.716L138.032,103.693C138.032,103.693 136.655,114.708 132.033,111.462C126.297,107.434 134,103.202 134.197,100.94"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M135.67,82.757C135.67,82.757 135.682,82.664 135.706,82.488C136.116,79.465 139.969,51.87 144.29,50.759C148.861,49.584 151.186,53.93 153.275,51.579C155.365,49.228 167.657,68.68 160.609,88.191L142.546,88.208L148.6,61.077L143.506,84.716C143.506,84.716 136.976,86.414 135.67,82.757"
+        android:strokeWidth="1"
+        android:fillColor="#B1DAEF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M158.617,33.624C158.617,33.624 163.117,30.838 160.225,23.338C160.225,23.338 159.581,20.124 155.081,20.231C155.081,20.231 147.904,13.803 141.154,19.267C134.404,24.731 139.01,30.196 139.01,30.196C139.01,30.196 130.01,38.338 133.117,49.374C133.117,49.374 136.439,56.553 140.296,54.088C144.154,51.624 143.939,56.981 145.975,49.803C148.01,42.624 151.546,43.696 150.154,31.588C150.154,31.588 154.975,31.91 156.046,26.981C156.046,26.981 159.154,28.053 158.617,33.624"
+        android:strokeWidth="1"
+        android:fillColor="#663014"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M174.465,85.015C174.224,85.446 180.069,86.345 180.209,86.451C181.007,87.202 188.119,75.833 188.657,75.49C188.921,75.426 188.758,74.325 188.238,74.061L183.193,73.016C182.092,71.733 175.057,83.594 174.435,83.895C174.078,84.306 174.269,84.64 174.465,85.015"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M185.353,79.517C186.605,79.055 185.192,81.609 184.448,82.657C183.768,83.615 183.506,84.231 183.043,84.007C182.581,83.783 182.871,82.733 183.446,81.546C184.021,80.358 184.453,79.849 185.353,79.517"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M289.647,143.193C289.647,143.193 275.844,123.938 285.557,121.552C295.27,119.167 294.588,131.095 301.064,126.664C307.539,122.234 296.137,101.587 311.549,99.542C330.6,97.014 316.155,116.923 314.812,121.816C314.526,122.856 314.83,123.986 315.644,124.694C317.304,126.138 322.675,126.507 330.713,121.552C343.153,113.884 334.292,149.498 310.947,150.52C310.947,150.52 296.293,150.861 289.647,143.193"
+        android:strokeWidth="1"
+        android:fillColor="#B8E0FA"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M308.297,150.626C308.286,150.54 307.976,141.877 307.691,132.288C307.308,119.383 309.324,108.938 311.874,105.282L312.383,105.799C306.406,114.37 309.579,150.215 309.621,150.559L308.297,150.626Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M308.527,144.519C308.483,144.505 304.034,143.113 299.377,140.488C295.061,138.054 289.676,134.03 288.533,128.683L288.835,128.393C290.967,138.374 308.346,143.275 308.522,143.329L308.527,144.519Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M308.463,141.134L308.351,139.967C308.521,139.914 325.376,135.176 328.18,127.815L328.549,128.127C327.34,131.301 323.587,134.455 317.395,137.504C312.803,139.765 308.506,141.12 308.463,141.134"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M39.967,60.324C34.448,60.474 31.29,68.901 31.027,72.903C29.901,90.032 20.129,102.25 21.034,128.933C21.627,146.416 27.345,164.38 33.393,167.524C45.038,173.58 52.852,160.093 54.166,147.514C55.481,134.936 56.27,116.64 47.592,93.771C42.775,81.072 51.018,60.022 39.967,60.324"
+        android:strokeWidth="1"
+        android:fillColor="#B8E0FA"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M39.532,169.676C38.503,164.926 36.195,141.121 36.134,115.351C36.097,99.704 36.887,83.326 39.295,70.034L39.942,70.16C37.543,83.409 36.756,99.743 36.793,115.351C36.853,141.068 39.152,164.797 40.175,169.526L39.532,169.676Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M36.821,139.765C36.845,139.723 44.426,126.334 45.595,120.937L46.239,121.089C45.048,126.59 37.414,140.073 37.39,140.116L36.821,139.765Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M36.202,109.494C36.186,109.472 29.654,101.151 30.093,94.944L30.691,94.996C30.272,100.922 36.642,109.03 36.659,109.052L36.202,109.494Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M64.086,170.605C69.327,166.699 73.886,159.852 74.565,143.816C75.243,127.778 73.912,123.845 70.163,122.444C66.414,121.044 63.466,123.039 61.363,128.223C59.26,133.408 58.38,138.837 56.332,140.581C54.284,142.326 42.57,152.046 45.871,163.061C49.173,174.076 58.687,173.186 64.086,170.605"
+        android:strokeWidth="1"
+        android:fillColor="#B8E0FA"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M52.684,171.636C54.725,168.818 59.138,160.881 62.746,151.791C65.165,145.695 67.226,139.075 67.968,133.125L67.457,133.059C66.72,138.967 64.673,145.543 62.268,151.603C58.677,160.65 54.292,168.538 52.267,171.335L52.684,171.636Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M59.733,158.59C59.341,158.886 67.845,155.446 70.248,150.852L69.807,150.618C67.496,155.04 59.871,157.952 59.849,157.961L59.733,158.59Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M55.587,166.996C55.578,166.976 52.442,159.996 52.701,155.332L52.227,155.32C51.961,160.126 55.149,167.221 55.158,167.241L55.587,166.996Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M268.96,24.18C266.689,24.64 263.882,26.714 263.977,27.321C264.01,27.533 271.093,27.332 278.373,27.321C289.35,27.303 294.837,27.321 295.537,27.321L309.378,27.321C310.459,27.321 308.476,23.758 307.717,23.133C306.404,22.051 304.412,21.576 302.734,22.086C300.436,22.784 300.479,24.798 298.305,25.227C296.886,25.507 295.362,24.947 294.429,24.18C293.007,23.011 293.598,21.888 292.214,20.515C291.245,19.554 289.981,19.112 288.338,19.469C286.422,19.885 286.678,19.992 283.909,22.086C282.937,22.821 281.887,24.934 280.034,25.227C275.005,26.02 272.907,23.38 268.96,24.18"
+        android:strokeWidth="1"
+        android:fillColor="#D8ECF9"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M8.725,38.32L38.176,38.32C37.043,36.768 35.923,36.277 35.108,36.117C33.106,35.723 32.26,37.186 28.973,37.218C28.388,37.224 26.945,37.227 25.291,36.668C24.31,36.336 24.282,36.154 22.837,35.566C21.642,35.08 20.594,34.653 19.156,34.465C18.058,34.32 17.234,34.381 16.088,34.465C14.787,34.56 13.984,34.625 13.02,35.015C12.304,35.305 11.853,35.631 11.179,36.117C10.53,36.586 9.644,37.301 8.725,38.32"
+        android:strokeWidth="1"
+        android:fillColor="#D8ECF9"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M96.763,28.32L59.829,28.32C61.249,26.032 62.655,25.309 63.676,25.073C66.188,24.492 67.248,26.649 71.371,26.696C72.104,26.705 73.913,26.709 75.988,25.885C77.218,25.396 77.253,25.128 79.065,24.261C80.563,23.545 81.879,22.916 83.682,22.638C85.059,22.425 86.092,22.514 87.529,22.638C89.16,22.778 90.167,22.874 91.377,23.449C92.274,23.876 92.84,24.356 93.685,25.073C94.5,25.764 95.611,26.819 96.763,28.32"
+        android:strokeWidth="1"
+        android:fillColor="#D8ECF9"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M238.975,54.32L196.975,54.32C196.423,54.32 195.975,53.872 195.975,53.32C195.975,52.768 196.423,52.32 196.975,52.32L238.975,52.32C239.527,52.32 239.975,52.768 239.975,53.32C239.975,53.872 239.527,54.32 238.975,54.32"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M230.975,61.32L196.975,61.32C196.423,61.32 195.975,60.872 195.975,60.32C195.975,59.768 196.423,59.32 196.975,59.32L230.975,59.32C231.527,59.32 231.975,59.768 231.975,60.32C231.975,60.872 231.527,61.32 230.975,61.32"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M224.975,47.32L196.975,47.32C196.423,47.32 195.975,46.872 195.975,46.32C195.975,45.768 196.423,45.32 196.975,45.32L224.975,45.32C225.527,45.32 225.975,45.768 225.975,46.32C225.975,46.872 225.527,47.32 224.975,47.32"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M243.613,65.207L191.997,65.207C189.616,65.207 187.687,63.277 187.687,60.897L187.687,39.517C187.687,37.136 189.616,35.207 191.997,35.207L243.613,35.207C245.993,35.207 247.923,37.136 247.923,39.517L247.923,60.897C247.923,63.277 245.993,65.207 243.613,65.207"
+        android:strokeWidth="1"
+        android:fillColor="#657887"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M237.687,51.091L195.687,51.091C195.135,51.091 194.687,50.643 194.687,50.091C194.687,49.539 195.135,49.091 195.687,49.091L237.687,49.091C238.239,49.091 238.687,49.539 238.687,50.091C238.687,50.643 238.239,51.091 237.687,51.091"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M229.687,58.091L195.687,58.091C195.135,58.091 194.687,57.643 194.687,57.091C194.687,56.539 195.135,56.091 195.687,56.091L229.687,56.091C230.239,56.091 230.687,56.539 230.687,57.091C230.687,57.643 230.239,58.091 229.687,58.091"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M223.687,44.091L195.687,44.091C195.135,44.091 194.687,43.643 194.687,43.091C194.687,42.539 195.135,42.091 195.687,42.091L223.687,42.091C224.239,42.091 224.687,42.539 224.687,43.091C224.687,43.643 224.239,44.091 223.687,44.091"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M197.376,61.685L188.855,68.927C188.366,69.342 187.687,68.926 187.687,68.212L187.687,60.97C187.687,60.485 188.018,60.092 188.425,60.092L196.947,60.092C197.666,60.092 197.961,61.188 197.376,61.685"
+        android:strokeWidth="1"
+        android:fillColor="#657887"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+  </group>
+</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_illustration_privacy.xml b/Corona-Warn-App/src/main/res/drawable/ic_illustration_privacy.xml
new file mode 100644
index 0000000000000000000000000000000000000000..301cecf4c8d713fc18c777e9d3bbd971f99fc394
--- /dev/null
+++ b/Corona-Warn-App/src/main/res/drawable/ic_illustration_privacy.xml
@@ -0,0 +1,248 @@
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+    android:width="360dp"
+    android:height="220dp"
+    android:viewportWidth="360"
+    android:viewportHeight="220">
+  <group>
+    <clip-path
+        android:pathData="M0,0h360v220h-360z"/>
+    <path
+        android:pathData="M185.167,195.45C234.873,195.45 275.167,155.156 275.167,105.45C275.167,55.745 234.873,15.45 185.167,15.45C135.462,15.45 95.167,55.745 95.167,105.45C95.167,155.156 135.462,195.45 185.167,195.45"
+        android:strokeWidth="1"
+        android:fillColor="#F6FBFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <group>
+      <clip-path
+          android:pathData="M95.168,105.45C95.168,155.156 135.462,195.45 185.168,195.45L185.168,195.45C234.874,195.45 275.168,155.156 275.168,105.45L275.168,105.45C275.168,55.745 234.874,15.45 185.168,15.45L185.168,15.45C135.462,15.45 95.168,55.745 95.168,105.45L95.168,105.45Z"/>
+      <path
+          android:pathData="M89.207,201.411l191.921,0l0,-191.921l-191.921,0z"
+          android:strokeWidth="1"
+          android:fillColor="#F6FBFF"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M115.167,105.45C115.167,144.11 146.508,175.45 185.168,175.45L185.168,175.45C223.827,175.45 255.168,144.11 255.168,105.45L255.168,105.45C255.168,66.791 223.827,35.45 185.168,35.45L185.168,35.45C146.508,35.45 115.167,66.791 115.167,105.45L115.167,105.45Z"/>
+      <path
+          android:pathData="M110.532,180.085l149.271,0l0,-149.271l-149.271,0z"
+          android:strokeWidth="1"
+          android:fillColor="#E9F6FF"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <path
+        android:pathData="M113.246,69.829C109.66,71.988 98.095,78.432 86.493,79.284C85.089,79.388 84.001,80.532 84.001,81.915L84.001,123.212C84.001,129.558 87.363,135.446 92.877,138.759C101.794,144.116 111.572,149.18 113.874,150.359C114.189,150.521 114.565,150.521 114.882,150.359C117.185,149.18 126.963,144.116 135.88,138.759C141.393,135.446 144.757,129.558 144.757,123.212L144.757,81.915C144.757,80.532 143.669,79.388 142.264,79.284C130.661,78.432 119.098,71.988 115.51,69.829C115.162,69.619 114.77,69.515 114.379,69.515C113.986,69.515 113.594,69.619 113.246,69.829"
+        android:strokeWidth="1"
+        android:fillColor="#657888"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <group>
+      <clip-path
+          android:pathData="M113.247,69.829C109.659,71.988 98.095,78.432 86.493,79.284L86.493,79.284C85.089,79.388 84,80.532 84,81.915L84,81.915L84,123.212C84,129.557 87.363,135.446 92.876,138.759L92.876,138.759C101.793,144.116 111.572,149.18 113.873,150.359L113.873,150.359C114.19,150.522 114.566,150.522 114.882,150.359L114.882,150.359C117.185,149.18 126.962,144.116 135.879,138.759L135.879,138.759C141.394,135.446 144.757,129.557 144.757,123.212L144.757,123.212L144.757,81.915C144.757,80.532 143.669,79.388 142.263,79.284L142.263,79.284C130.662,78.432 119.097,71.988 115.51,69.829L115.51,69.829C115.163,69.619 114.77,69.515 114.378,69.515L114.378,69.515C113.986,69.515 113.594,69.619 113.247,69.829L113.247,69.829Z"/>
+      <path
+          android:pathData="M83.453,150.702l62,0l0,-82l-62,0z"
+          android:strokeWidth="1"
+          android:fillColor="#657888"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M113.247,69.829C109.659,71.988 98.095,78.432 86.493,79.284L86.493,79.284C85.089,79.388 84,80.532 84,81.915L84,81.915L84,123.212C84,129.557 87.363,135.446 92.876,138.759L92.876,138.759C101.793,144.116 111.572,149.18 113.873,150.359L113.873,150.359C114.19,150.522 114.566,150.522 114.882,150.359L114.882,150.359C117.185,149.18 126.962,144.116 135.879,138.759L135.879,138.759C141.394,135.446 144.757,129.557 144.757,123.212L144.757,123.212L144.757,81.915C144.757,80.532 143.669,79.388 142.263,79.284L142.263,79.284C130.662,78.432 119.097,71.988 115.51,69.829L115.51,69.829C115.163,69.619 114.77,69.515 114.378,69.515L114.378,69.515C113.986,69.515 113.594,69.619 113.247,69.829L113.247,69.829Z"/>
+      <path
+          android:pathData="M86.494,79.284C85.089,79.388 84.001,80.532 84.001,81.915L84.001,123.212C84.001,129.557 87.363,135.446 92.877,138.759C101.794,144.116 111.572,149.179 113.874,150.359C114.19,150.521 114.566,150.521 114.883,150.359C117.185,149.179 126.963,144.116 135.88,138.759C141.394,135.446 144.757,129.557 144.757,123.212L144.757,81.915C144.757,80.532 143.669,79.388 142.264,79.284C130.662,78.431 119.098,71.988 115.511,69.829C115.163,69.619 114.77,69.514 114.379,69.514C113.986,69.514 113.595,69.619 113.247,69.829C109.66,71.988 98.096,78.431 86.494,79.284"
+          android:strokeWidth="1"
+          android:fillColor="#657888"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M113.247,69.829C109.659,71.988 98.095,78.432 86.493,79.284L86.493,79.284C85.089,79.388 84,80.532 84,81.915L84,81.915L84,123.212C84,129.557 87.363,135.446 92.876,138.759L92.876,138.759C101.793,144.116 111.572,149.18 113.873,150.359L113.873,150.359C114.19,150.522 114.566,150.522 114.882,150.359L114.882,150.359C117.185,149.18 126.962,144.116 135.879,138.759L135.879,138.759C141.394,135.446 144.757,129.557 144.757,123.212L144.757,123.212L144.757,81.915C144.757,80.532 143.669,79.388 142.263,79.284L142.263,79.284C130.662,78.432 119.097,71.988 115.51,69.829L115.51,69.829C115.163,69.619 114.77,69.515 114.378,69.515L114.378,69.515C113.986,69.515 113.594,69.619 113.247,69.829L113.247,69.829Z"/>
+      <path
+          android:pathData="M83.453,150.702l62,0l0,-82l-62,0z"
+          android:strokeWidth="1"
+          android:fillColor="#657888"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M113.247,69.829C109.659,71.988 98.095,78.432 86.493,79.284L86.493,79.284C85.089,79.388 84,80.532 84,81.915L84,81.915L84,123.212C84,129.557 87.363,135.446 92.876,138.759L92.876,138.759C101.793,144.116 111.572,149.18 113.873,150.359L113.873,150.359C114.19,150.522 114.566,150.522 114.882,150.359L114.882,150.359C117.185,149.18 126.962,144.116 135.879,138.759L135.879,138.759C141.394,135.446 144.757,129.557 144.757,123.212L144.757,123.212L144.757,81.915C144.757,80.532 143.669,79.388 142.263,79.284L142.263,79.284C130.662,78.432 119.097,71.988 115.51,69.829L115.51,69.829C115.163,69.619 114.77,69.515 114.378,69.515L114.378,69.515C113.986,69.515 113.594,69.619 113.247,69.829L113.247,69.829Z"/>
+      <path
+          android:pathData="M79,155.482l70.756,0l0,-90.967l-70.756,0z"
+          android:strokeWidth="1"
+          android:fillColor="#657888"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M103.815,101.798L101.962,101.798C99.498,101.798 97.503,103.842 97.503,106.363L97.503,106.363L97.503,121.987C97.503,124.509 99.498,126.553 101.962,126.553L101.962,126.553L125.598,126.553C128.061,126.553 130.057,124.509 130.057,121.987L130.057,121.987L130.057,106.363C130.057,103.842 128.061,101.798 125.598,101.798L125.598,101.798L123.745,101.798C123.419,94.992 119.074,89.585 113.78,89.585L113.78,89.585C108.486,89.585 104.142,94.992 103.815,101.798L103.815,101.798ZM113.78,93.983C116.682,93.983 119.161,97.484 119.445,101.798L119.445,101.798L108.115,101.798C108.398,97.484 110.877,93.983 113.78,93.983L113.78,93.983Z"/>
+      <path
+          android:pathData="M92.503,131.553l42.554,0l0,-46.968l-42.554,0z"
+          android:strokeWidth="1"
+          android:fillColor="#FFFFFF"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <path
+        android:pathData="M109.224,111.945C109.224,113.506 110.128,114.865 111.468,115.594L111.468,120.247C111.468,120.859 111.996,121.355 112.648,121.355L114.776,121.355C115.427,121.355 115.955,120.859 115.955,120.247L115.955,115.594C117.295,114.865 118.2,113.506 118.2,111.945C118.2,109.615 116.191,107.726 113.711,107.726C111.234,107.726 109.224,109.615 109.224,111.945"
+        android:strokeWidth="1"
+        android:fillColor="#657888"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <group>
+      <clip-path
+          android:pathData="M109.224,111.945C109.224,113.506 110.128,114.866 111.468,115.595L111.468,115.595L111.468,120.247C111.468,120.86 111.997,121.355 112.648,121.355L112.648,121.355L114.776,121.355C115.428,121.355 115.956,120.86 115.956,120.247L115.956,120.247L115.956,115.595C117.295,114.866 118.199,113.506 118.199,111.945L118.199,111.945C118.199,109.615 116.191,107.727 113.711,107.727L113.711,107.727C111.234,107.727 109.224,109.615 109.224,111.945L109.224,111.945Z"/>
+      <path
+          android:pathData="M108.453,121.702l10,0l0,-14l-10,0z"
+          android:strokeWidth="1"
+          android:fillColor="#657888"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M109.224,111.945C109.224,113.506 110.128,114.866 111.468,115.595L111.468,115.595L111.468,120.247C111.468,120.86 111.997,121.355 112.648,121.355L112.648,121.355L114.776,121.355C115.428,121.355 115.956,120.86 115.956,120.247L115.956,120.247L115.956,115.595C117.295,114.866 118.199,113.506 118.199,111.945L118.199,111.945C118.199,109.615 116.191,107.727 113.711,107.727L113.711,107.727C111.234,107.727 109.224,109.615 109.224,111.945L109.224,111.945Z"/>
+      <path
+          android:pathData="M109.224,111.945C109.224,113.506 110.128,114.865 111.468,115.594L111.468,120.247C111.468,120.859 111.996,121.355 112.648,121.355L114.776,121.355C115.427,121.355 115.955,120.859 115.955,120.247L115.955,115.594C117.295,114.865 118.2,113.506 118.2,111.945C118.2,109.615 116.191,107.726 113.711,107.726C111.234,107.726 109.224,109.615 109.224,111.945"
+          android:strokeWidth="1"
+          android:fillColor="#657888"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M109.224,111.945C109.224,113.506 110.128,114.866 111.468,115.595L111.468,115.595L111.468,120.247C111.468,120.86 111.997,121.355 112.648,121.355L112.648,121.355L114.776,121.355C115.428,121.355 115.956,120.86 115.956,120.247L115.956,120.247L115.956,115.595C117.295,114.866 118.199,113.506 118.199,111.945L118.199,111.945C118.199,109.615 116.191,107.727 113.711,107.727L113.711,107.727C111.234,107.727 109.224,109.615 109.224,111.945L109.224,111.945Z"/>
+      <path
+          android:pathData="M108.453,121.702l10,0l0,-14l-10,0z"
+          android:strokeWidth="1"
+          android:fillColor="#657888"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M109.224,111.945C109.224,113.506 110.128,114.866 111.468,115.595L111.468,115.595L111.468,120.247C111.468,120.86 111.997,121.355 112.648,121.355L112.648,121.355L114.776,121.355C115.428,121.355 115.956,120.86 115.956,120.247L115.956,120.247L115.956,115.595C117.295,114.866 118.199,113.506 118.199,111.945L118.199,111.945C118.199,109.615 116.191,107.727 113.711,107.727L113.711,107.727C111.234,107.727 109.224,109.615 109.224,111.945L109.224,111.945Z"/>
+      <path
+          android:pathData="M104.224,126.355l18.976,0l0,-23.629l-18.976,0z"
+          android:strokeWidth="1"
+          android:fillColor="#657888"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M186.925,43.702l-1.472,11l10,0l-0.388,-11z"/>
+      <path
+          android:pathData="M180.453,59.702l20,0l0,-21l-20,0z"
+          android:strokeWidth="1"
+          android:fillColor="#B7846A"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M182.493,35.719C182.451,53.333 200.235,51.043 200.751,33.368L200.751,33.368C200.77,25.138 196.897,21.254 192.713,21.253L192.713,21.253C187.942,21.252 182.767,26.302 182.493,35.719L182.493,35.719Z"/>
+      <path
+          android:pathData="M177.492,52.834l28.26,0l0,-36.581l-28.26,0z"
+          android:strokeWidth="1"
+          android:fillColor="#B7846A"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M178.842,103.017C172.772,123.943 173.224,137.522 171.961,148.973L171.961,148.973C171.944,148.996 176.021,201.163 176.017,201.176L176.017,201.176L182.734,201.34C183.554,183.93 184.376,166.519 185.195,149.108L185.195,149.108C187.342,137.484 190.622,128.09 193.009,119.43L193.009,119.43L193.746,125.619L198.419,200.889L203.413,200.726C205.54,168.547 214.055,140.766 206.365,102.197L206.365,102.197L178.842,103.017Z"/>
+      <path
+          android:pathData="M166.961,206.341l47.56,0l0,-109.144l-47.56,0z"
+          android:strokeWidth="1"
+          android:fillColor="#DEA8A3"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M170.85,103.453L168.25,100.505C153.552,120.591 173.942,117.747 170.85,103.453L170.85,103.453Z"/>
+      <path
+          android:pathData="M157.866,119.872l18.309,0l0,-24.367l-18.309,0z"
+          android:strokeWidth="1"
+          android:fillColor="#B7846A"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M169.129,80.04C167.914,85.71 167.51,93.99 166.753,99.405L166.753,99.405C166.654,100.115 166.02,103 167.705,103.613L167.705,103.613C169.674,104.301 171.128,105.125 171.701,103.222L171.701,103.222C173.578,96.984 176.693,83.798 178.438,75.527L178.438,75.527C178.815,73.733 179.652,70.603 179.652,71.424L179.652,71.424C179.652,72.341 177.505,100.666 178.842,103.017L178.842,103.017C179.534,104.233 183.676,104.767 188.579,104.785L188.579,104.785L189.102,104.785C195.99,104.76 204.16,103.748 206.365,102.197L206.365,102.197C206.908,101.815 206.63,96.575 205.924,90.236L205.924,90.236C205.803,90.121 205.68,90.006 205.556,89.888L205.556,89.888C203.631,88.058 199.081,84.964 196.163,83.672L196.163,83.672C196.941,81.662 197.897,80.82 198.675,78.809L198.675,78.809C198.675,78.809 203.137,82.015 203.937,82.502L203.937,82.502C204.3,82.722 204.663,82.929 205.014,83.122L205.014,83.122C204.802,81.657 204.576,80.208 204.341,78.809L204.341,78.809C203.258,72.352 203.127,66.5 203.127,66.5L203.127,66.5C203.127,66.5 204.573,73.934 205.556,77.168L205.556,77.168C207.175,82.502 207.984,84.553 207.984,84.553L207.984,84.553C207.984,84.553 206.621,84 205.014,83.122L205.014,83.122C205.36,85.518 205.671,87.949 205.924,90.236L205.924,90.236C212.193,96.133 216.339,98.409 219.318,93.58L219.318,93.58C219.518,93.256 219.613,92.779 219.624,92.178L219.624,92.178L219.624,91.949C219.555,87.733 215.786,78.155 214.056,71.833L214.056,71.833C212.117,64.762 207.984,52.549 195.65,52.506L195.65,52.506C194.737,52.504 193.713,52.648 192.677,52.792L192.677,52.792C190.186,53.138 187.62,53.485 186.343,51.786L186.343,51.786C173.581,55.011 171.152,70.603 169.129,80.04L169.129,80.04Z"/>
+      <path
+          android:pathData="M161.554,109.785l63.07,0l0,-62.999l-63.07,0z"
+          android:strokeWidth="1"
+          android:fillColor="#B2DBF0"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M198.064,213.706C199.991,215.676 201.398,214.731 203.213,213.706L203.213,213.706C207.821,211.663 204.075,202.582 203.583,200.453L203.583,200.453L198.694,199.222C198.586,200.945 193.901,211.157 198.064,213.706L198.064,213.706Z"/>
+      <path
+          android:pathData="M191.343,219.857l19.142,0l0,-25.635l-19.142,0z"
+          android:strokeWidth="1"
+          android:fillColor="#4A4A4A"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M163.343,211.613C169.125,211.601 175.719,211.59 181.501,211.578L181.501,211.578C181.701,211.514 182.128,211.343 182.498,210.92L182.498,210.92C183.62,210.216 182.578,202.432 182.734,201.34L182.734,201.34C180.495,201.286 178.256,201.231 176.017,201.176L176.017,201.176C176.287,207.02 160.131,208.033 163.343,211.613L163.343,211.613Z"/>
+      <path
+          android:pathData="M157.92,216.614l30.105,0l0,-20.437l-30.105,0z"
+          android:strokeWidth="1"
+          android:fillColor="#4A4A4A"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M183.873,67.497C183.148,67.497 182.611,68.094 182.676,68.828L182.676,68.828L183.846,82.398C183.909,83.133 184.549,83.729 185.275,83.729L185.275,83.729L190.798,83.729C191.525,83.729 192.061,83.133 191.998,82.398L191.998,82.398L190.827,68.828C190.763,68.094 190.123,67.497 189.398,67.497L189.398,67.497L183.873,67.497Z"/>
+      <path
+          android:pathData="M177.669,88.729l19.333,0l0,-26.232l-19.333,0z"
+          android:strokeWidth="1"
+          android:fillColor="#4A4A4A"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M186.756,78.742C188.561,81.056 192.707,83.37 196.48,83.007L196.48,83.007L197.46,81.169L198.314,79.271C196.207,77.71 193.948,75.485 191.014,74.472L191.014,74.472C190.648,74.449 190.304,74.439 189.981,74.439L189.981,74.439C185.426,74.439 185.079,76.591 186.756,78.742L186.756,78.742Z"/>
+      <path
+          android:pathData="M180.832,88.045l22.481,0l0,-18.607l-22.481,0z"
+          android:strokeWidth="1"
+          android:fillColor="#B7846A"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M181.461,8.912C181.162,9.248 180.716,9.407 180.273,9.348L180.273,9.348C175.156,8.657 174.34,10.235 174.005,11.814L174.005,11.814C173.671,13.391 173.819,14.967 170.641,14.282L170.641,14.282C164.132,12.876 165.096,17.916 164.764,20.025L164.764,20.025C164.434,22.131 162.141,22.461 162.141,22.461L162.141,22.461C160.193,23.018 162.236,26.364 160.068,28.069L160.068,28.069C158.309,29.451 158.857,31.143 159.128,31.735L159.128,31.735C159.186,31.862 159.266,31.978 159.359,32.082L159.359,32.082C161.985,35 160.072,35.992 160.072,35.992L160.072,35.992C158.908,36.915 158.469,37.782 158.453,38.558L158.453,38.558L158.453,38.649C158.483,40.026 159.829,41.112 160.777,41.706L160.777,41.706C161.251,42.003 161.487,42.571 161.385,43.128L161.385,43.128C161.021,45.126 162.959,46.216 165.066,45.983L165.066,45.983C167.475,45.717 167.331,47.928 167.331,47.928L167.331,47.928C166.515,51.159 169.634,51.191 171.261,50.999L171.261,50.999C171.787,50.938 172.309,51.196 172.572,51.662L172.572,51.662C173.234,52.837 174.081,53.243 174.915,53.263L174.915,53.263L175.049,53.263C176.039,53.24 176.992,52.701 177.573,52.296L177.573,52.296C177.931,52.046 178.388,51.983 178.795,52.137L178.795,52.137C180.77,52.889 181.844,52.14 182.33,51.583L182.33,51.583C182.574,51.301 182.937,51.145 183.306,51.152L183.306,51.152C187.033,51.225 188.694,44.692 187.842,43.029L187.842,43.029L183.973,37.318C183.487,36.199 181.715,31.057 184.254,29.535L184.254,29.535C186.158,28.395 187.703,30.269 190.667,26.874L190.667,26.874C193.37,23.779 193.369,23.53 194.703,23.294L194.703,23.294C195.637,23.127 196.049,25.406 198.894,26.988L198.894,26.988C199.292,27.21 199.314,28.189 199.363,28.542L199.363,28.542C200.618,37.293 195.308,42.476 193.608,43.749L193.608,43.749C193.314,43.969 193.124,44.297 193.07,44.663L193.07,44.663C191.829,53.046 200.177,52.737 201.896,52.586L201.896,52.586C202.105,52.569 202.31,52.605 202.506,52.675L202.506,52.675C204.951,53.557 206.327,51.889 206.933,50.808L206.933,50.808C207.196,50.339 207.717,50.082 208.247,50.132L208.247,50.132C211.44,50.432 212.328,48.453 212.574,47.304L212.574,47.304C212.674,46.835 213.006,46.451 213.454,46.296L213.454,46.296C216.556,45.233 216.546,42.79 216.367,41.692L216.367,41.692C216.307,41.324 216.408,40.946 216.629,40.647L216.629,40.647C217.487,39.497 217.8,38.534 217.806,37.742L217.806,37.742L217.806,37.692C217.797,36.579 217.18,35.813 216.631,35.351L216.631,35.351C216.201,34.988 216.06,34.402 216.218,33.858L216.218,33.858C216.924,31.436 214.408,29.748 212.965,29.001L212.965,29.001C212.466,28.743 212.166,28.191 212.242,27.629L212.242,27.629C212.535,25.502 211.196,24.356 210.255,23.824L210.255,23.824C209.77,23.55 209.499,23.002 209.573,22.444L209.573,22.444C210.2,17.643 206.672,16.72 205.202,16.542L205.202,16.542C204.818,16.496 204.48,16.281 204.248,15.965L204.248,15.965C202.467,13.545 199.325,15.092 199.325,15.092L199.325,15.092C199.325,15.092 197.882,15.913 198.431,13.433L198.431,13.433C198.856,11.523 197.15,10.982 196.163,10.829L196.163,10.829C195.756,10.765 195.423,10.498 195.234,10.128L195.234,10.128C193.673,7.067 189.68,7.546 188.243,7.831L188.243,7.831C187.909,7.897 187.565,7.828 187.273,7.65L187.273,7.65C186.51,7.183 185.788,7 185.123,7L185.123,7C183.431,7 182.11,8.188 181.461,8.912L181.461,8.912Z"/>
+      <path
+          android:pathData="M153.453,58.264l69.354,0l0,-56.264l-69.354,0z"
+          android:strokeWidth="1"
+          android:fillColor="#000000"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M195.555,84.558l10.958,11.695l-1.731,-14.033l-6.344,-3.508z"/>
+      <path
+          android:pathData="M190.554,101.253l20.959,0l0,-27.541l-20.959,0z"
+          android:strokeWidth="1"
+          android:fillColor="#B2DBF0"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+  </group>
+</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_illustration_test.xml b/Corona-Warn-App/src/main/res/drawable/ic_illustration_test.xml
new file mode 100644
index 0000000000000000000000000000000000000000..6f6ca8d55f7002302691d99430b30bf06a0d6da7
--- /dev/null
+++ b/Corona-Warn-App/src/main/res/drawable/ic_illustration_test.xml
@@ -0,0 +1,766 @@
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+    android:width="360dp"
+    android:height="220dp"
+    android:viewportWidth="360"
+    android:viewportHeight="220">
+  <group>
+    <path
+        android:pathData="M68.11,118.984L44.963,118.907C44.471,118.905 44.07,119.304 44.069,119.796L44.044,127.033C44.043,127.527 44.441,127.927 44.933,127.929L68.08,128.005C68.572,128.007 68.974,127.609 68.975,127.116L68.999,119.879C69,119.386 68.602,118.986 68.11,118.984"
+        android:strokeWidth="1"
+        android:fillColor="#B1BBC2"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M68.155,106.455L45.008,106.378C44.515,106.376 44.115,106.775 44.113,107.267L44.089,114.504C44.087,114.997 44.486,115.398 44.978,115.4L68.125,115.476C68.617,115.478 69.018,115.08 69.02,114.587L69.044,107.35C69.046,106.857 68.648,106.457 68.155,106.455"
+        android:strokeWidth="1"
+        android:fillColor="#94A1AB"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M45.347,115.399C45.347,115.399 45.033,115.4 45.02,115.4C44.813,115.399 45.047,115.403 44.841,115.399C44.671,115.394 44.135,115.2 44.117,114.627C44.116,113.992 44.117,109.477 44.117,107.319C44.112,106.562 44.725,106.384 44.941,106.383C45.129,106.383 44.821,106.384 45.009,106.383C45.049,106.382 45.346,106.383 45.346,106.383L45.347,115.399Z"
+        android:strokeWidth="1"
+        android:fillColor="#BE0F2D"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M68.192,93.929L45.045,93.852C44.553,93.85 44.152,94.249 44.15,94.741L44.126,101.978C44.125,102.472 44.523,102.872 45.016,102.874L68.163,102.95C68.655,102.952 69.056,102.554 69.057,102.062L69.081,94.824C69.083,94.331 68.685,93.931 68.192,93.929"
+        android:strokeWidth="1"
+        android:fillColor="#748692"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M68.225,81.407L45.078,81.33C44.586,81.329 44.184,81.727 44.184,82.219L44.159,89.456C44.158,89.95 44.556,90.35 45.048,90.352L68.195,90.428C68.687,90.43 69.088,90.032 69.089,89.539L69.113,82.302C69.115,81.809 68.717,81.409 68.225,81.407"
+        android:strokeWidth="1"
+        android:fillColor="#657887"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M56.917,110.785C60.353,110.785 63.137,108 63.137,104.564C63.137,101.129 60.353,98.343 56.917,98.343C53.481,98.343 50.697,101.129 50.697,104.564C50.697,108 53.481,110.785 56.917,110.785"
+        android:strokeWidth="1"
+        android:fillColor="#E7EAEF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <group>
+      <path
+          android:pathData="M50.285,111.197l13.266,0l0,-13.265l-13.266,0z"
+          android:strokeWidth="1"
+          android:fillColor="#FFFFFF"
+          android:fillType="nonZero"
+          android:strokeColor="#00000000"/>
+    </group>
+    <path
+        android:pathData="M56.76,99.789C56.33,100.049 54.947,100.819 53.558,100.922C53.389,100.933 53.26,101.07 53.26,101.236L53.26,106.18C53.26,106.939 53.662,107.644 54.321,108.04C55.389,108.681 56.559,109.288 56.835,109.429C56.873,109.448 56.918,109.448 56.956,109.429C57.231,109.288 58.402,108.681 59.469,108.04C60.129,107.644 60.532,106.939 60.532,106.18L60.532,101.236C60.532,101.07 60.401,100.933 60.233,100.922C58.844,100.819 57.459,100.049 57.031,99.789C56.989,99.765 56.942,99.752 56.895,99.752C56.848,99.752 56.801,99.765 56.76,99.789"
+        android:strokeWidth="1"
+        android:fillColor="#657887"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M55.631,103.616L55.409,103.616C55.114,103.616 54.875,103.861 54.875,104.163L54.875,106.033C54.875,106.334 55.114,106.579 55.409,106.579L58.238,106.579C58.533,106.579 58.772,106.334 58.772,106.033L58.772,104.163C58.772,103.861 58.533,103.616 58.238,103.616L58.016,103.616C57.977,102.801 57.458,102.155 56.824,102.155C56.19,102.155 55.67,102.801 55.631,103.616M56.824,102.68C57.171,102.68 57.468,103.1 57.502,103.616L56.146,103.616C56.18,103.1 56.476,102.68 56.824,102.68"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <group>
+      <path
+          android:pathData="M54.277,107.178l5.094,0l0,-5.622l-5.094,0z"
+          android:strokeWidth="1"
+          android:fillColor="#FFFFFF"
+          android:fillType="nonZero"
+          android:strokeColor="#00000000"/>
+    </group>
+    <path
+        android:pathData="M56.278,104.831C56.278,105.018 56.387,105.18 56.547,105.267L56.547,105.825C56.547,105.898 56.61,105.957 56.688,105.957L56.943,105.957C57.021,105.957 57.084,105.898 57.084,105.825L57.084,105.267C57.245,105.18 57.353,105.018 57.353,104.831C57.353,104.551 57.112,104.326 56.816,104.326C56.518,104.326 56.278,104.551 56.278,104.831"
+        android:strokeWidth="1"
+        android:fillColor="#657887"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M49.691,87.03L49.691,86.536L49.95,86.536L49.95,86.171L49.691,86.171L49.691,84.746L49.233,84.746L48.281,86.251L48.301,86.536L49.238,86.536L49.238,87.03L49.691,87.03ZM49.238,86.171L48.733,86.171L49.208,85.416L49.238,85.364L49.238,86.171ZM50.995,87.062C51.143,87.062 51.277,87.028 51.394,86.961C51.512,86.894 51.603,86.801 51.667,86.681C51.732,86.56 51.764,86.426 51.764,86.277C51.764,86.045 51.705,85.858 51.588,85.716C51.471,85.573 51.313,85.502 51.114,85.502C50.929,85.502 50.776,85.564 50.654,85.687C50.68,85.503 50.755,85.359 50.88,85.256C51.005,85.152 51.17,85.099 51.375,85.096L51.375,85.096L51.419,85.096L51.419,84.722L51.343,84.722C51.112,84.723 50.909,84.776 50.734,84.88C50.558,84.984 50.424,85.131 50.33,85.321C50.237,85.511 50.19,85.73 50.19,85.978L50.19,85.978L50.19,86.141C50.19,86.42 50.264,86.643 50.412,86.811C50.56,86.978 50.754,87.062 50.995,87.062ZM50.986,86.696C50.878,86.696 50.794,86.654 50.734,86.568C50.675,86.483 50.645,86.365 50.645,86.213L50.645,86.213L50.645,86.075C50.673,86.012 50.717,85.962 50.777,85.923C50.836,85.885 50.903,85.866 50.976,85.866C51.079,85.866 51.16,85.904 51.221,85.981C51.282,86.057 51.312,86.157 51.312,86.282C51.312,86.404 51.282,86.504 51.222,86.581C51.162,86.658 51.083,86.696 50.986,86.696ZM52.815,87.062C52.973,87.062 53.11,87.03 53.226,86.965C53.342,86.901 53.432,86.811 53.494,86.694C53.556,86.577 53.587,86.445 53.587,86.298C53.587,86.055 53.525,85.866 53.402,85.731C53.279,85.596 53.108,85.529 52.89,85.529C52.769,85.529 52.655,85.558 52.547,85.615L52.547,85.615L52.603,85.124L53.512,85.124L53.512,84.746L52.231,84.746L52.1,85.907L52.461,85.996L52.504,85.956C52.571,85.899 52.659,85.871 52.766,85.871C52.884,85.871 52.974,85.905 53.038,85.974C53.102,86.043 53.134,86.143 53.134,86.273C53.134,86.408 53.106,86.512 53.051,86.586C52.995,86.659 52.916,86.696 52.814,86.696C52.722,86.696 52.647,86.67 52.59,86.617C52.533,86.564 52.5,86.49 52.49,86.395L52.49,86.395L52.042,86.395C52.046,86.525 52.082,86.64 52.151,86.742C52.219,86.843 52.312,86.922 52.431,86.978C52.549,87.034 52.677,87.062 52.815,87.062ZM54.643,87.062C54.881,87.062 55.068,87.003 55.206,86.885C55.345,86.768 55.414,86.607 55.414,86.404C55.414,86.278 55.381,86.168 55.316,86.074C55.251,85.98 55.164,85.907 55.053,85.854C55.15,85.802 55.226,85.734 55.282,85.648C55.337,85.562 55.365,85.464 55.365,85.353C55.365,85.156 55.3,85.001 55.17,84.886C55.039,84.772 54.863,84.714 54.642,84.714C54.419,84.714 54.243,84.772 54.113,84.888C53.983,85.003 53.918,85.158 53.918,85.353C53.918,85.464 53.946,85.562 54.001,85.648C54.056,85.734 54.132,85.802 54.229,85.854C54.119,85.906 54.032,85.979 53.967,86.073C53.902,86.167 53.87,86.278 53.87,86.404C53.87,86.606 53.939,86.766 54.078,86.885C54.217,87.003 54.406,87.062 54.643,87.062ZM54.643,85.678C54.557,85.678 54.491,85.65 54.444,85.595C54.397,85.539 54.373,85.466 54.373,85.375C54.373,85.283 54.397,85.211 54.444,85.158C54.491,85.106 54.557,85.08 54.642,85.08C54.727,85.08 54.794,85.107 54.841,85.161C54.888,85.215 54.911,85.286 54.911,85.375C54.911,85.466 54.888,85.539 54.842,85.595C54.795,85.65 54.729,85.678 54.643,85.678ZM54.643,86.696C54.543,86.696 54.464,86.666 54.408,86.607C54.351,86.547 54.323,86.469 54.323,86.371C54.323,86.271 54.352,86.191 54.409,86.132C54.467,86.073 54.544,86.043 54.64,86.043C54.737,86.043 54.815,86.073 54.872,86.133C54.93,86.193 54.959,86.272 54.959,86.371C54.959,86.473 54.931,86.552 54.875,86.61C54.819,86.667 54.741,86.696 54.643,86.696ZM56.78,87.03L57.575,84.746L57.051,84.746L56.533,86.464L56.019,84.746L55.496,84.746L56.289,87.03L56.78,87.03ZM58.261,87.03L58.261,86.194L58.636,86.194L59.064,87.03L59.57,87.03L59.57,87.008L59.075,86.075C59.212,86.013 59.315,85.93 59.382,85.826C59.45,85.722 59.483,85.592 59.483,85.436C59.483,85.217 59.41,85.047 59.264,84.926C59.117,84.806 58.909,84.746 58.639,84.746L58.639,84.746L57.79,84.746L57.79,87.03L58.261,87.03ZM58.641,85.813L58.261,85.813L58.261,85.127L58.639,85.127C58.766,85.127 58.86,85.158 58.921,85.22C58.982,85.281 59.013,85.366 59.013,85.474C59.013,85.58 58.98,85.662 58.915,85.723C58.85,85.783 58.759,85.813 58.641,85.813L58.641,85.813ZM60.462,87.03L61.346,85L61.346,84.746L59.733,84.746L59.733,85.113L60.869,85.113L59.984,87.03L60.462,87.03ZM63.202,87.03L63.202,86.665L62.22,86.665L62.739,86.117C62.882,85.961 62.982,85.825 63.041,85.708C63.099,85.591 63.128,85.475 63.128,85.362C63.128,85.156 63.063,84.997 62.933,84.884C62.803,84.771 62.62,84.714 62.385,84.714C62.231,84.714 62.093,84.747 61.972,84.813C61.851,84.878 61.757,84.968 61.69,85.083C61.624,85.198 61.591,85.325 61.591,85.464L61.591,85.464L62.046,85.464C62.046,85.349 62.075,85.257 62.134,85.186C62.193,85.115 62.274,85.08 62.377,85.08C62.472,85.08 62.545,85.109 62.596,85.167C62.648,85.225 62.673,85.305 62.673,85.406C62.673,85.481 62.649,85.559 62.6,85.642C62.552,85.724 62.477,85.821 62.375,85.932L62.375,85.932L61.636,86.72L61.636,87.03L63.202,87.03ZM64.357,87.062C64.61,87.062 64.812,87.006 64.961,86.893C65.111,86.781 65.186,86.626 65.186,86.428C65.186,86.25 65.124,86.102 65.002,85.982C64.88,85.863 64.684,85.763 64.417,85.683C64.271,85.639 64.161,85.592 64.086,85.541C64.012,85.491 63.974,85.429 63.974,85.355C63.974,85.275 64.006,85.211 64.07,85.162C64.134,85.114 64.223,85.089 64.338,85.089C64.457,85.089 64.55,85.118 64.616,85.177C64.682,85.235 64.715,85.316 64.715,85.421L64.715,85.421L65.186,85.421C65.186,85.283 65.15,85.161 65.08,85.053C65.009,84.946 64.91,84.862 64.782,84.803C64.655,84.744 64.509,84.714 64.346,84.714C64.184,84.714 64.038,84.742 63.907,84.796C63.777,84.85 63.677,84.926 63.608,85.023C63.538,85.12 63.503,85.23 63.503,85.353C63.503,85.591 63.633,85.779 63.893,85.92C63.988,85.971 64.117,86.023 64.28,86.076C64.443,86.128 64.556,86.179 64.619,86.226C64.682,86.274 64.713,86.342 64.713,86.431C64.713,86.513 64.682,86.576 64.619,86.622C64.556,86.667 64.469,86.69 64.357,86.69C64.056,86.69 63.905,86.564 63.905,86.312L63.905,86.312L63.433,86.312C63.433,86.459 63.471,86.589 63.547,86.701C63.622,86.813 63.732,86.901 63.877,86.965C64.021,87.03 64.181,87.062 64.357,87.062Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M48.9,99.496L48.9,98.871L48.853,97.795L49.468,99.496L49.791,99.496L50.408,97.793L50.361,98.871L50.361,99.496L50.833,99.496L50.833,97.211L50.215,97.211L49.631,98.868L49.044,97.211L48.429,97.211L48.429,99.496L48.9,99.496ZM52.3,99.496L52.3,97.208L52.251,97.208L51.305,97.547L51.305,97.916L51.846,97.748L51.846,99.496L52.3,99.496ZM53.764,99.527C54.008,99.527 54.203,99.466 54.351,99.344C54.499,99.221 54.574,99.059 54.574,98.856C54.574,98.73 54.542,98.621 54.479,98.529C54.415,98.437 54.319,98.368 54.191,98.322C54.294,98.275 54.378,98.208 54.442,98.12C54.506,98.032 54.537,97.936 54.537,97.831C54.537,97.628 54.469,97.469 54.332,97.353C54.195,97.238 54.005,97.18 53.764,97.18C53.625,97.18 53.497,97.207 53.382,97.26C53.266,97.313 53.176,97.387 53.112,97.482C53.048,97.577 53.015,97.684 53.015,97.803L53.015,97.803L53.469,97.803C53.469,97.727 53.498,97.665 53.557,97.617C53.615,97.569 53.688,97.546 53.775,97.546C53.871,97.546 53.947,97.571 54.002,97.622C54.056,97.674 54.084,97.745 54.084,97.837C54.084,97.933 54.056,98.009 54.001,98.067C53.945,98.124 53.86,98.153 53.745,98.153L53.745,98.153L53.503,98.153L53.503,98.507L53.743,98.507C53.995,98.507 54.12,98.621 54.12,98.849C54.12,98.944 54.089,99.019 54.028,99.076C53.967,99.133 53.883,99.162 53.775,99.162C53.681,99.162 53.601,99.135 53.537,99.08C53.473,99.026 53.441,98.956 53.441,98.87L53.441,98.87L52.987,98.87C52.987,99.068 53.06,99.227 53.204,99.347C53.349,99.467 53.536,99.527 53.764,99.527ZM55.206,99.518L55.317,99.516C55.665,99.502 55.933,99.386 56.122,99.168C56.312,98.95 56.406,98.651 56.406,98.27L56.406,98.27L56.406,98.103C56.405,97.921 56.372,97.759 56.307,97.618C56.243,97.477 56.152,97.368 56.034,97.293C55.917,97.218 55.783,97.18 55.633,97.18C55.486,97.18 55.354,97.215 55.237,97.284C55.12,97.354 55.029,97.451 54.963,97.576C54.898,97.701 54.865,97.838 54.865,97.988C54.865,98.223 54.926,98.41 55.047,98.549C55.169,98.688 55.33,98.757 55.532,98.757C55.69,98.757 55.828,98.699 55.946,98.583C55.914,98.935 55.701,99.12 55.306,99.138L55.306,99.138L55.206,99.14L55.206,99.518ZM55.644,98.41C55.54,98.41 55.46,98.37 55.403,98.29C55.346,98.21 55.317,98.108 55.317,97.983C55.317,97.858 55.347,97.753 55.405,97.67C55.464,97.587 55.539,97.546 55.63,97.546C55.728,97.546 55.806,97.588 55.865,97.673C55.923,97.757 55.953,97.877 55.953,98.03L55.953,98.03L55.953,98.217C55.926,98.27 55.886,98.316 55.833,98.354C55.78,98.391 55.717,98.41 55.644,98.41ZM57.497,99.527C57.749,99.527 57.94,99.444 58.071,99.276C58.202,99.109 58.267,98.867 58.267,98.551L58.267,98.551L58.267,98.131C58.264,97.824 58.197,97.589 58.065,97.426C57.933,97.262 57.743,97.18 57.494,97.18C57.245,97.18 57.054,97.263 56.922,97.428C56.789,97.593 56.723,97.835 56.723,98.154L56.723,98.154L56.723,98.575C56.726,98.881 56.794,99.117 56.926,99.281C57.057,99.445 57.248,99.527 57.497,99.527ZM57.497,99.162C57.385,99.162 57.304,99.117 57.253,99.026C57.202,98.936 57.177,98.797 57.177,98.611L57.177,98.611L57.177,98.056C57.18,97.881 57.207,97.752 57.257,97.67C57.308,97.588 57.387,97.547 57.494,97.547C57.603,97.547 57.684,97.59 57.736,97.677C57.788,97.763 57.814,97.901 57.814,98.09L57.814,98.09L57.814,98.633C57.812,98.812 57.786,98.945 57.737,99.032C57.688,99.118 57.608,99.162 57.497,99.162ZM58.899,99.496L59.056,99.025L59.881,99.025L60.04,99.496L60.54,99.496L59.685,97.211L59.249,97.211L58.398,99.496L58.899,99.496ZM59.754,98.644L59.183,98.644L59.467,97.789L59.754,98.644ZM61.224,99.496L61.224,98.871L61.177,97.795L61.792,99.496L62.116,99.496L62.732,97.793L62.685,98.871L62.685,99.496L63.157,99.496L63.157,97.211L62.539,97.211L61.956,98.868L61.369,97.211L60.754,97.211L60.754,99.496L61.224,99.496ZM65.037,99.496L65.037,99.118L64.038,99.118L64.038,97.211L63.567,97.211L63.567,99.496L65.037,99.496Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M49.065,111.961L49.065,111.028L49.969,111.028L49.969,110.648L49.065,110.648L49.065,110.058L50.082,110.058L50.082,109.677L48.594,109.677L48.594,111.961L49.065,111.961ZM50.825,111.961L50.825,111.309L51.07,111.045L51.657,111.961L52.217,111.961L51.382,110.692L52.194,109.677L51.615,109.677L51.033,110.428L50.825,110.712L50.825,109.677L50.355,109.677L50.355,111.961L50.825,111.961ZM53.005,111.993C53.152,111.993 53.285,111.963 53.402,111.902C53.519,111.841 53.61,111.755 53.674,111.644C53.738,111.532 53.771,111.404 53.771,111.259L53.771,111.259L53.771,109.677L53.3,109.677L53.3,111.259C53.3,111.373 53.273,111.46 53.22,111.522C53.166,111.584 53.095,111.615 53.005,111.615C52.903,111.615 52.829,111.588 52.782,111.535C52.735,111.481 52.711,111.399 52.711,111.287L52.711,111.287L52.238,111.287C52.238,111.512 52.305,111.686 52.44,111.809C52.575,111.931 52.763,111.993 53.005,111.993ZM54.445,111.983L54.557,111.982C54.904,111.967 55.172,111.851 55.362,111.634C55.551,111.416 55.646,111.117 55.646,110.736L55.646,110.736L55.646,110.568C55.645,110.386 55.612,110.224 55.547,110.083C55.482,109.942 55.391,109.834 55.274,109.758C55.157,109.683 55.023,109.645 54.872,109.645C54.726,109.645 54.594,109.68 54.477,109.75C54.36,109.819 54.268,109.917 54.203,110.042C54.138,110.167 54.105,110.304 54.105,110.454C54.105,110.689 54.165,110.876 54.287,111.015C54.408,111.153 54.57,111.222 54.772,111.222C54.93,111.222 55.068,111.164 55.186,111.048C55.154,111.401 54.94,111.586 54.546,111.604L54.546,111.604L54.445,111.605L54.445,111.983ZM54.883,110.876C54.78,110.876 54.699,110.836 54.642,110.756C54.585,110.676 54.557,110.573 54.557,110.449C54.557,110.323 54.586,110.219 54.645,110.136C54.703,110.053 54.778,110.011 54.869,110.011C54.967,110.011 55.046,110.053 55.104,110.138C55.163,110.223 55.192,110.342 55.192,110.496L55.192,110.496L55.192,110.683C55.165,110.736 55.125,110.782 55.072,110.819C55.019,110.857 54.956,110.876 54.883,110.876ZM56.289,111.983L56.4,111.982C56.748,111.967 57.016,111.851 57.205,111.634C57.395,111.416 57.489,111.117 57.489,110.736L57.489,110.736L57.489,110.568C57.488,110.386 57.455,110.224 57.391,110.083C57.326,109.942 57.235,109.834 57.118,109.758C57,109.683 56.866,109.645 56.716,109.645C56.569,109.645 56.438,109.68 56.32,109.75C56.203,109.819 56.112,109.917 56.047,110.042C55.981,110.167 55.949,110.304 55.949,110.454C55.949,110.689 56.009,110.876 56.131,111.015C56.252,111.153 56.414,111.222 56.615,111.222C56.773,111.222 56.911,111.164 57.03,111.048C56.997,111.401 56.784,111.586 56.389,111.604L56.389,111.604L56.289,111.605L56.289,111.983ZM56.727,110.876C56.623,110.876 56.543,110.836 56.486,110.756C56.429,110.676 56.4,110.573 56.4,110.449C56.4,110.323 56.43,110.219 56.488,110.136C56.547,110.053 56.622,110.011 56.713,110.011C56.811,110.011 56.889,110.053 56.948,110.138C57.007,110.223 57.036,110.342 57.036,110.496L57.036,110.496L57.036,110.683C57.009,110.736 56.969,110.782 56.916,110.819C56.863,110.857 56.8,110.876 56.727,110.876ZM58.586,111.993C58.744,111.993 58.881,111.961 58.997,111.896C59.114,111.832 59.203,111.742 59.265,111.625C59.327,111.508 59.358,111.376 59.358,111.229C59.358,110.986 59.297,110.797 59.173,110.662C59.05,110.527 58.879,110.46 58.662,110.46C58.54,110.46 58.426,110.489 58.318,110.546L58.318,110.546L58.374,110.055L59.283,110.055L59.283,109.677L58.003,109.677L57.871,110.838L58.232,110.927L58.276,110.887C58.343,110.83 58.43,110.802 58.538,110.802C58.655,110.802 58.745,110.836 58.809,110.905C58.873,110.975 58.905,111.074 58.905,111.204C58.905,111.339 58.877,111.443 58.822,111.517C58.766,111.59 58.687,111.627 58.585,111.627C58.493,111.627 58.418,111.601 58.361,111.548C58.304,111.495 58.271,111.421 58.262,111.326L58.262,111.326L57.813,111.326C57.817,111.456 57.853,111.571 57.922,111.673C57.99,111.774 58.084,111.853 58.202,111.909C58.32,111.965 58.448,111.993 58.586,111.993ZM60.369,111.993C60.613,111.993 60.808,111.932 60.956,111.809C61.105,111.687 61.179,111.524 61.179,111.321C61.179,111.196 61.147,111.087 61.084,110.995C61.02,110.903 60.924,110.834 60.796,110.788C60.899,110.741 60.983,110.673 61.047,110.585C61.111,110.498 61.142,110.401 61.142,110.297C61.142,110.094 61.074,109.934 60.937,109.819C60.8,109.703 60.61,109.645 60.369,109.645C60.23,109.645 60.102,109.672 59.987,109.725C59.871,109.779 59.781,109.853 59.717,109.948C59.653,110.042 59.62,110.149 59.62,110.268L59.62,110.268L60.074,110.268C60.074,110.192 60.103,110.13 60.162,110.082C60.22,110.035 60.293,110.011 60.38,110.011C60.476,110.011 60.552,110.037 60.607,110.088C60.661,110.139 60.689,110.211 60.689,110.303C60.689,110.398 60.661,110.474 60.606,110.532C60.55,110.59 60.465,110.618 60.35,110.618L60.35,110.618L60.108,110.618L60.108,110.973L60.348,110.973C60.6,110.973 60.725,111.087 60.725,111.315C60.725,111.409 60.694,111.485 60.633,111.542C60.572,111.599 60.488,111.627 60.38,111.627C60.286,111.627 60.206,111.6 60.142,111.546C60.078,111.491 60.046,111.421 60.046,111.335L60.046,111.335L59.592,111.335C59.592,111.533 59.665,111.692 59.809,111.812C59.954,111.933 60.141,111.993 60.369,111.993ZM62.253,111.993C62.505,111.993 62.696,111.909 62.827,111.742C62.958,111.574 63.023,111.333 63.023,111.017L63.023,111.017L63.023,110.596C63.02,110.29 62.953,110.055 62.821,109.891C62.689,109.727 62.499,109.645 62.25,109.645C62.001,109.645 61.81,109.728 61.678,109.893C61.546,110.059 61.479,110.301 61.479,110.62L61.479,110.62L61.479,111.04C61.482,111.347 61.55,111.582 61.682,111.747C61.814,111.911 62.004,111.993 62.253,111.993ZM62.253,111.627C62.141,111.627 62.06,111.582 62.009,111.492C61.958,111.401 61.933,111.263 61.933,111.077L61.933,111.077L61.933,110.521C61.936,110.346 61.963,110.218 62.014,110.136C62.064,110.054 62.143,110.013 62.25,110.013C62.36,110.013 62.44,110.056 62.492,110.142C62.544,110.228 62.57,110.366 62.57,110.556L62.57,110.556L62.57,111.098C62.568,111.277 62.542,111.41 62.493,111.497C62.444,111.584 62.364,111.627 62.253,111.627ZM64.872,111.961L64.872,111.596L63.89,111.596L64.409,111.048C64.552,110.892 64.652,110.756 64.711,110.639C64.769,110.522 64.798,110.406 64.798,110.294C64.798,110.087 64.733,109.928 64.603,109.815C64.473,109.702 64.29,109.645 64.055,109.645C63.901,109.645 63.763,109.678 63.642,109.744C63.521,109.809 63.427,109.899 63.36,110.014C63.294,110.129 63.261,110.256 63.261,110.396L63.261,110.396L63.716,110.396C63.716,110.28 63.745,110.188 63.804,110.117C63.864,110.046 63.944,110.011 64.047,110.011C64.142,110.011 64.215,110.04 64.267,110.098C64.318,110.156 64.343,110.236 64.343,110.337C64.343,110.412 64.319,110.49 64.27,110.573C64.222,110.655 64.147,110.752 64.045,110.863L64.045,110.863L63.306,111.651L63.306,111.961L64.872,111.961Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M48.539,124.427L48.539,123.448L49.457,123.448L49.457,124.427L49.928,124.427L49.928,122.143L49.457,122.143L49.457,123.068L48.539,123.068L48.539,122.143L48.068,122.143L48.068,124.427L48.539,124.427ZM50.675,124.427L50.831,123.956L51.657,123.956L51.815,124.427L52.316,124.427L51.461,122.143L51.024,122.143L50.174,124.427L50.675,124.427ZM51.53,123.575L50.959,123.575L51.243,122.72L51.53,123.575ZM53.188,124.459C53.432,124.459 53.628,124.397 53.776,124.275C53.924,124.153 53.998,123.99 53.998,123.787C53.998,123.661 53.966,123.553 53.903,123.461C53.839,123.369 53.743,123.3 53.615,123.254C53.718,123.206 53.802,123.139 53.866,123.051C53.93,122.963 53.962,122.867 53.962,122.762C53.962,122.559 53.893,122.4 53.756,122.285C53.619,122.169 53.43,122.111 53.188,122.111C53.049,122.111 52.921,122.138 52.806,122.191C52.69,122.245 52.6,122.319 52.536,122.413C52.472,122.508 52.439,122.615 52.439,122.734L52.439,122.734L52.893,122.734C52.893,122.658 52.922,122.596 52.981,122.548C53.039,122.501 53.112,122.477 53.199,122.477C53.295,122.477 53.371,122.502 53.426,122.554C53.481,122.605 53.508,122.677 53.508,122.769C53.508,122.864 53.48,122.94 53.425,122.998C53.369,123.055 53.284,123.084 53.169,123.084L53.169,123.084L52.927,123.084L52.927,123.439L53.168,123.439C53.419,123.439 53.544,123.553 53.544,123.781C53.544,123.875 53.514,123.95 53.452,124.007C53.391,124.064 53.307,124.093 53.199,124.093C53.105,124.093 53.026,124.066 52.961,124.011C52.897,123.957 52.865,123.887 52.865,123.801L52.865,123.801L52.411,123.801C52.411,123.999 52.484,124.158 52.629,124.278C52.773,124.398 52.96,124.459 53.188,124.459ZM55.651,124.427L55.651,123.933L55.91,123.933L55.91,123.567L55.651,123.567L55.651,122.143L55.193,122.143L54.241,123.647L54.261,123.933L55.198,123.933L55.198,124.427L55.651,124.427ZM55.198,123.567L54.693,123.567L55.168,122.813L55.198,122.761L55.198,123.567ZM57.119,124.459C57.308,124.459 57.479,124.431 57.634,124.375C57.789,124.319 57.909,124.24 57.993,124.138L57.993,124.138L57.993,123.227L57.094,123.227L57.094,123.574L57.523,123.574L57.523,123.967C57.447,124.043 57.321,124.08 57.145,124.08C56.969,124.08 56.835,124.019 56.744,123.897C56.653,123.774 56.608,123.593 56.608,123.354L56.608,123.354L56.608,123.208C56.609,122.971 56.651,122.792 56.735,122.671C56.819,122.551 56.941,122.491 57.101,122.491C57.226,122.491 57.325,122.521 57.396,122.582C57.468,122.643 57.514,122.738 57.535,122.869L57.535,122.869L57.993,122.869C57.965,122.622 57.875,122.434 57.722,122.305C57.569,122.176 57.357,122.111 57.087,122.111C56.892,122.111 56.722,122.155 56.577,122.244C56.432,122.332 56.322,122.46 56.245,122.627C56.168,122.793 56.129,122.991 56.129,123.219L56.129,123.219L56.129,123.374C56.131,123.596 56.173,123.789 56.254,123.953C56.335,124.118 56.45,124.243 56.599,124.329C56.748,124.415 56.922,124.459 57.119,124.459ZM59.228,124.459C59.499,124.459 59.713,124.386 59.869,124.24C60.026,124.095 60.104,123.897 60.104,123.647L60.104,123.647L60.104,122.143L59.632,122.143L59.632,123.663C59.627,123.941 59.493,124.08 59.228,124.08C59.102,124.08 59.003,124.046 58.931,123.978C58.859,123.909 58.824,123.8 58.824,123.65L58.824,123.65L58.824,122.143L58.353,122.143L58.353,123.665C58.356,123.911 58.436,124.106 58.593,124.247C58.75,124.388 58.962,124.459 59.228,124.459ZM60.868,124.427L61.307,123.627L61.747,124.427L62.294,124.427L61.612,123.275L62.277,122.143L61.736,122.143L61.307,122.93L60.879,122.143L60.338,122.143L61.003,123.275L60.32,124.427L60.868,124.427ZM63.236,124.459C63.394,124.459 63.531,124.426 63.647,124.362C63.763,124.298 63.852,124.207 63.914,124.091C63.977,123.974 64.008,123.842 64.008,123.694C64.008,123.452 63.946,123.263 63.823,123.128C63.699,122.993 63.529,122.926 63.311,122.926C63.19,122.926 63.075,122.954 62.968,123.012L62.968,123.012L63.024,122.521L63.933,122.521L63.933,122.143L62.652,122.143L62.52,123.304L62.881,123.393L62.925,123.352C62.992,123.296 63.079,123.268 63.187,123.268C63.304,123.268 63.395,123.302 63.459,123.371C63.522,123.44 63.554,123.54 63.554,123.669C63.554,123.804 63.527,123.909 63.471,123.982C63.416,124.056 63.337,124.093 63.234,124.093C63.142,124.093 63.068,124.067 63.011,124.014C62.954,123.961 62.92,123.887 62.911,123.792L62.911,123.792L62.462,123.792C62.466,123.921 62.503,124.037 62.571,124.138C62.64,124.24 62.733,124.319 62.851,124.375C62.97,124.431 63.098,124.459 63.236,124.459ZM65.398,124.427L65.398,122.139L65.349,122.139L64.403,122.478L64.403,122.847L64.945,122.679L64.945,124.427L65.398,124.427Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M45.389,90.346C45.389,90.346 45.076,90.347 45.062,90.347C44.856,90.346 45.09,90.35 44.884,90.346C44.713,90.341 44.177,90.146 44.159,89.574C44.158,88.938 44.158,84.424 44.158,82.266C44.154,81.509 44.767,81.331 44.983,81.331C45.171,81.33 44.864,81.331 45.051,81.33C45.092,81.329 45.388,81.33 45.388,81.33L45.389,90.346Z"
+        android:strokeWidth="1"
+        android:fillColor="#BE0F2D"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M45.399,102.877C45.399,102.877 45.085,102.878 45.072,102.878C44.865,102.877 45.099,102.881 44.892,102.877C44.722,102.873 44.187,102.678 44.168,102.105C44.168,101.47 44.168,96.955 44.168,94.797C44.163,94.04 44.776,93.862 44.993,93.862C45.18,93.861 44.873,93.862 45.06,93.861C45.101,93.86 45.398,93.861 45.398,93.861L45.399,102.877Z"
+        android:strokeWidth="1"
+        android:fillColor="#BE0F2D"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M81.123,103.844C81.123,104.856 80.304,105.676 79.292,105.676C78.28,105.676 77.46,104.856 77.46,103.844C77.46,102.833 78.28,102.013 79.292,102.013C80.304,102.013 81.123,102.833 81.123,103.844"
+        android:strokeWidth="1"
+        android:fillColor="#A6B4BC"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M93.934,103.82C93.934,104.848 93.101,105.682 92.072,105.682C91.044,105.682 90.21,104.848 90.21,103.82C90.21,102.791 91.044,101.957 92.072,101.957C93.101,101.957 93.934,102.791 93.934,103.82"
+        android:strokeWidth="1"
+        android:fillColor="#A6B4BC"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M183.915,138.393L121.571,138.393C118.932,138.393 116.792,135.802 116.792,132.604L116.792,67.572C116.792,64.374 118.932,61.783 121.571,61.783L183.915,61.783C186.554,61.783 188.694,64.374 188.694,67.572L188.694,132.604C188.694,135.802 186.554,138.393 183.915,138.393"
+        android:strokeWidth="1"
+        android:fillColor="#94A1AB"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M179.139,116.041C179.139,117.234 180.106,118.201 181.298,118.201C182.492,118.201 183.458,117.234 183.458,116.041C183.458,114.849 182.492,113.881 181.298,113.881C180.106,113.881 179.139,114.849 179.139,116.041"
+        android:strokeWidth="1"
+        android:fillColor="#E8F5FF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M170.501,116.041C170.501,117.234 171.468,118.201 172.66,118.201C173.854,118.201 174.82,117.234 174.82,116.041C174.82,114.849 173.854,113.881 172.66,113.881C171.468,113.881 170.501,114.849 170.501,116.041"
+        android:strokeWidth="1"
+        android:fillColor="#E8F5FF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M161.863,116.041C161.863,117.234 162.83,118.201 164.023,118.201C165.215,118.201 166.181,117.234 166.181,116.041C166.181,114.849 165.215,113.881 164.023,113.881C162.83,113.881 161.863,114.849 161.863,116.041"
+        android:strokeWidth="1"
+        android:fillColor="#E8F5FF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M179.179,95.28C178.891,96.8 180.2,98.11 181.721,97.821C182.566,97.661 183.258,96.97 183.418,96.125C183.706,94.603 182.397,93.294 180.876,93.583C180.031,93.743 179.339,94.434 179.179,95.28"
+        android:strokeWidth="1"
+        android:fillColor="#DCE1E5"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M170.541,95.28C170.253,96.8 171.561,98.11 173.083,97.821C173.928,97.661 174.619,96.97 174.779,96.125C175.068,94.603 173.759,93.294 172.238,93.583C171.392,93.743 170.702,94.434 170.541,95.28"
+        android:strokeWidth="1"
+        android:fillColor="#DCE1E5"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M161.903,95.28C161.615,96.8 162.924,98.11 164.445,97.821C165.29,97.661 165.982,96.97 166.142,96.125C166.43,94.603 165.121,93.294 163.6,93.583C162.755,93.743 162.063,94.434 161.903,95.28"
+        android:strokeWidth="1"
+        android:fillColor="#DCE1E5"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M124.337,79.682L155.119,79.682C155.861,79.682 156.464,79.08 156.464,78.337L156.464,72.39C156.464,71.647 155.861,71.044 155.119,71.044L124.337,71.044C123.594,71.044 122.992,71.647 122.992,72.39L122.992,78.337C122.992,79.08 123.594,79.682 124.337,79.682"
+        android:strokeWidth="1"
+        android:fillColor="#657887"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M179.179,74.941C178.891,76.462 180.2,77.771 181.721,77.482C182.566,77.322 183.258,76.631 183.418,75.786C183.706,74.265 182.397,72.955 180.876,73.244C180.031,73.404 179.339,74.095 179.179,74.941"
+        android:strokeWidth="1"
+        android:fillColor="#DCE1E5"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M170.541,74.941C170.253,76.462 171.561,77.771 173.083,77.482C173.928,77.322 174.619,76.631 174.779,75.786C175.068,74.265 173.759,72.955 172.238,73.244C171.392,73.404 170.702,74.095 170.541,74.941"
+        android:strokeWidth="1"
+        android:fillColor="#DCE1E5"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M161.903,74.941C161.615,76.462 162.924,77.771 164.445,77.482C165.29,77.322 165.982,76.631 166.142,75.786C166.43,74.265 165.121,72.955 163.6,73.244C162.755,73.404 162.063,74.095 161.903,74.941"
+        android:strokeWidth="1"
+        android:fillColor="#DCE1E5"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M124.614,100.06L155.396,100.06C156.139,100.06 156.741,99.458 156.741,98.715L156.741,92.767C156.741,92.024 156.139,91.422 155.396,91.422L124.614,91.422C123.871,91.422 123.269,92.024 123.269,92.767L123.269,98.715C123.269,99.458 123.871,100.06 124.614,100.06"
+        android:strokeWidth="1"
+        android:fillColor="#657887"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M124.614,119.782L155.396,119.782C156.139,119.782 156.741,119.179 156.741,118.437L156.741,112.49C156.741,111.746 156.139,111.144 155.396,111.144L124.614,111.144C123.871,111.144 123.269,111.746 123.269,112.49L123.269,118.437C123.269,119.179 123.871,119.782 124.614,119.782"
+        android:strokeWidth="1"
+        android:fillColor="#657887"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M91.443,146.349C93.056,128.406 116.552,130.141 118.333,130.853C123.299,119.522 140.103,118.207 145.972,122.398C148.906,116.949 152.938,114.252 156.741,112.489C169.194,106.721 191.244,104.248 204.04,129.411C224.049,129 225.705,145.539 226.051,146.349L160.16,146.349L91.443,146.349Z"
+        android:strokeWidth="1"
+        android:fillColor="#D8ECF9"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M107.307,103.797C107.307,104.826 106.473,105.66 105.444,105.66C104.416,105.66 103.582,104.826 103.582,103.797C103.582,102.769 104.416,101.935 105.444,101.935C106.473,101.935 107.307,102.769 107.307,103.797"
+        android:strokeWidth="1"
+        android:fillColor="#A6B4BC"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M201.038,103.844C201.038,104.856 200.219,105.676 199.207,105.676C198.195,105.676 197.376,104.856 197.376,103.844C197.376,102.833 198.195,102.013 199.207,102.013C200.219,102.013 201.038,102.833 201.038,103.844"
+        android:strokeWidth="1"
+        android:fillColor="#A6B4BC"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M213.85,103.82C213.85,104.848 213.016,105.682 211.987,105.682C210.959,105.682 210.125,104.848 210.125,103.82C210.125,102.791 210.959,101.957 211.987,101.957C213.016,101.957 213.85,102.791 213.85,103.82"
+        android:strokeWidth="1"
+        android:fillColor="#A6B4BC"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M227.222,103.797C227.222,104.826 226.388,105.66 225.359,105.66C224.331,105.66 223.497,104.826 223.497,103.797C223.497,102.769 224.331,101.935 225.359,101.935C226.388,101.935 227.222,102.769 227.222,103.797"
+        android:strokeWidth="1"
+        android:fillColor="#A6B4BC"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M47.001,112.237L20.123,112.237C16.595,112.237 13.733,115.082 13.733,118.588L13.733,183.315C13.733,186.822 16.595,189.667 20.123,189.667L47.001,189.667C50.531,189.667 53.392,186.822 53.392,183.315L53.392,118.588C53.392,115.082 50.531,112.237 47.001,112.237"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <group>
+      <path
+          android:pathData="M47.326,112.559C49.792,112.559 51.799,114.555 51.799,117.009L51.799,184.894C51.799,187.348 49.792,189.344 47.326,189.344L19.169,189.344C16.702,189.344 14.696,187.348 14.696,184.894L14.696,117.009C14.696,114.555 16.702,112.559 19.169,112.559L47.326,112.559ZM47.326,110.349L19.169,110.349C15.472,110.349 12.473,113.33 12.473,117.009L12.473,184.894C12.473,188.572 15.472,191.555 19.169,191.555L47.326,191.555C51.024,191.555 54.022,188.572 54.022,184.894L54.022,117.009C54.022,113.33 51.024,110.349 47.326,110.349L47.326,110.349Z"
+          android:strokeWidth="1"
+          android:fillColor="#4A4A4A"
+          android:fillType="nonZero"
+          android:strokeColor="#00000000"/>
+    </group>
+    <path
+        android:pathData="M48.264,160.924L18.359,161.076C17.92,161.079 17.562,160.724 17.561,160.286L17.44,136.68C17.438,136.241 17.792,135.884 18.23,135.882L48.135,135.728C48.574,135.726 48.931,136.08 48.933,136.519L49.054,160.124C49.056,160.564 48.703,160.922 48.264,160.924"
+        android:strokeWidth="1"
+        android:fillColor="#EFEFEF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M37.325,150.841C35.889,153.575 32.507,154.625 29.775,153.189C27.041,151.752 25.991,148.371 27.427,145.638C28.864,142.905 32.245,141.854 34.978,143.291C37.711,144.727 38.762,148.108 37.325,150.841"
+        android:strokeWidth="1"
+        android:fillColor="#BF0F2D"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M38.195,153.263C38.067,153.46 37.63,154.151 37.317,153.306C36.908,152.204 36.044,152.445 36.044,152.445L35.242,152.558L36.926,150.657C36.926,150.657 36.885,151.42 37.134,151.801C37.26,151.993 37.522,152.274 37.851,152.282C38.18,152.289 38.817,152.313 38.195,153.263"
+        android:strokeWidth="1"
+        android:fillColor="#BF0F2D"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M29.014,155.584C28.793,155.502 28.023,155.229 28.777,154.737C29.761,154.094 29.47,153.038 29.47,153.038L29.182,152.282L31.408,153.503C31.408,153.503 30.655,153.632 30.339,153.959C30.179,154.123 29.829,154.708 29.895,155.03C29.96,155.353 30.078,155.98 29.014,155.584"
+        android:strokeWidth="1"
+        android:fillColor="#BF0F2D"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M34.69,152.755C34.69,152.755 34.242,152.988 34.382,153.996C34.466,154.597 34.873,155.519 34.93,155.711C34.969,155.834 35.043,155.87 35.148,155.945C35.407,156.129 35.798,156.525 34.869,156.785C34.089,157.004 33.735,156.931 33.892,156.466C33.973,156.229 34.011,156.054 33.983,155.804C33.925,155.258 33.537,153.933 33.024,153.575C32.25,153.036 32.511,153.201 32.511,153.201L34.17,151.948L34.69,152.755Z"
+        android:strokeWidth="1"
+        android:fillColor="#BF0F2D"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M30.745,140.989C31.049,140.945 31.389,140.842 31.244,141.37C31.193,141.555 31.184,141.732 31.2,141.895C31.239,142.322 31.383,142.555 31.716,142.826L31.971,143.034L30.266,143.186C30.266,143.186 30.569,142.923 30.487,142.485C30.452,142.303 30.425,141.898 30.218,141.748C30.03,141.609 29.638,141.146 30.745,140.989"
+        android:strokeWidth="1"
+        android:fillColor="#BF0F2D"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M28.068,146.261C27.934,146.166 27.867,146.002 27.899,145.841C27.956,145.56 28.077,145.131 27.521,144.634C26.884,144.066 25.971,143.632 25.895,143.625C25.315,143.56 24.942,143.535 25.579,142.636C26.183,141.786 26.533,141.821 26.592,142.48C26.605,142.622 26.657,142.758 26.741,142.874C27.043,143.286 28.188,144.405 28.965,144.419C29.202,144.423 28.935,145.646 28.935,145.646C28.891,145.956 28.068,146.261 28.068,146.261"
+        android:strokeWidth="1"
+        android:fillColor="#BF0F2D"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M24.256,147.715C24.331,147.018 24.625,146.683 25.246,147.115C26.321,147.863 27.546,146.769 27.546,146.769L27.781,146.125L27.53,149.149C27.53,149.149 27.05,148.507 26.562,148.275C26.326,148.163 25.599,148.062 25.246,148.206C24.864,148.362 24.161,148.584 24.256,147.715"
+        android:strokeWidth="1"
+        android:fillColor="#BF0F2D"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M28.977,151.716C28.977,151.716 28.292,151.035 27.357,151.745C26.421,152.455 26.237,152.654 26.237,152.654C26.237,152.654 25.474,154.204 24.672,152.974C23.87,151.746 24.53,151.455 25.407,151.659C25.407,151.659 27.222,151.149 27.525,150.165C27.827,149.182 27.665,149.433 27.665,149.433L29.78,151.085L28.977,151.716Z"
+        android:strokeWidth="1"
+        android:fillColor="#BF0F2D"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M33.075,143.052C33.075,143.052 33.973,143.295 34.417,142.212C34.63,141.693 34.797,141.098 34.869,140.893C34.923,140.738 34.946,140.574 34.933,140.41C34.909,140.113 34.988,139.623 35.91,140.105C36.979,140.664 36.641,140.932 36.286,141.073C36.142,141.13 36.015,141.223 35.913,141.339C35.557,141.738 34.799,142.916 34.963,143.674C35.179,144.676 35.194,144.377 35.194,144.377L32.925,144.135L33.075,143.052Z"
+        android:strokeWidth="1"
+        android:fillColor="#BF0F2D"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M39.195,144.285C39.328,144.48 39.796,145.15 38.896,145.112C37.722,145.062 37.346,146.093 37.346,146.093L37.14,146.876L36.038,144.588C36.038,144.588 36.726,144.92 37.174,144.838C37.398,144.796 38.022,144.525 38.156,144.224C38.291,143.923 38.559,143.345 39.195,144.285"
+        android:strokeWidth="1"
+        android:fillColor="#BF0F2D"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M37.568,147.637C37.568,147.637 37.684,148.477 38.762,148.459C39.368,148.449 39.73,148.46 39.93,148.471C40.058,148.478 40.537,148.475 40.643,148.402C40.904,148.222 41.41,147.989 41.336,148.953C41.273,149.76 41.083,150.067 40.701,149.76C40.506,149.603 39.935,149.453 39.693,149.393C39.159,149.261 38.279,149.124 37.767,149.484C36.994,150.025 37.239,149.837 37.239,149.837L36.632,147.849L37.568,147.637Z"
+        android:strokeWidth="1"
+        android:fillColor="#BF0F2D"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M271.747,99.449C271.737,109.479 263.599,117.602 253.57,117.592C243.54,117.584 235.417,109.445 235.426,99.415C235.435,89.386 243.573,81.263 253.602,81.272C263.632,81.281 271.755,89.419 271.747,99.449"
+        android:strokeWidth="1"
+        android:fillColor="#E8F5FF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M249.702,106.917C249.631,106.633 249.561,106.338 249.492,106.037C244.938,106.77 243.048,111.061 243.827,114.744C244.188,114.975 244.556,115.197 244.934,115.403C243.757,112.008 245.347,107.617 249.702,106.917"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M257.257,110.226L256.371,110.213C257.49,112.543 257.174,115.555 255.425,117.501C255.796,117.464 256.163,117.411 256.527,117.352C257.931,115.301 258.175,112.527 257.257,110.226"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M253.236,108.512C252.652,108.517 252.11,108.534 251.652,108.57C251.822,109.468 251.749,110.165 251.168,110.095C251.148,110.098 251.129,110.099 251.109,110.099C251.198,110.121 251.298,110.135 251.412,110.139L256.371,110.213L257.256,110.226L259.235,110.256L259.235,110.121L259.924,110.122L259.377,108.835C257.914,108.772 255.133,108.936 253.236,108.512"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M250.3,108.925C250.283,108.957 250.277,108.99 250.286,109.028C250.438,109.428 250.523,109.867 250.964,110.05C250.742,109.917 250.52,109.511 250.3,108.925"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M256.377,105.686C255.107,106.886 252.507,108.106 251.385,107.441C251.654,107.984 252.346,108.314 253.236,108.512C255.132,108.936 257.915,108.772 259.377,108.835L258.003,105.598C257.623,105.601 257.05,105.638 256.377,105.686"
+        android:strokeWidth="1"
+        android:fillColor="#3E6883"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M260.874,106.416C260.399,106.324 259.664,106.068 258.804,105.79L262.359,114.166L262.76,115.104C263.308,114.782 263.838,114.434 264.349,114.059L262.708,108.12C262.708,108.12 262.19,106.832 260.874,106.416"
+        android:strokeWidth="1"
+        android:fillColor="#3E6883"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M252.907,95.034L253.128,94.4C252.478,94.186 252.043,94.035 251.712,93.765C251.711,93.765 251.708,93.765 251.706,93.765C251.523,94.102 251.253,94.601 251.116,94.856C251.297,94.755 251.479,94.699 251.658,94.703C252.112,94.695 252.526,94.815 252.907,95.034"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M254.159,90.536C254.051,90.501 253.94,90.562 253.9,90.666C253.68,91.245 252.962,91.785 252.729,91.826C252.409,90.983 251.583,91.317 251.868,92.185C251.968,92.489 252.505,92.933 252.417,93.164C252.34,93.367 252.071,93.646 251.713,93.764C252.042,94.035 252.479,94.186 253.128,94.4C253.393,94.487 253.692,94.585 254.037,94.707C254.985,95.045 256.095,92.466 255.567,90.92C255.491,90.69 255.398,90.482 255.294,90.293C255.07,90.56 254.687,90.706 254.159,90.536"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M252.417,93.164C252.505,92.933 251.968,92.489 251.869,92.185C251.584,91.317 252.409,90.983 252.729,91.825C252.962,91.785 253.68,91.246 253.9,90.667C253.94,90.561 254.051,90.502 254.159,90.536C254.687,90.705 255.07,90.559 255.294,90.294C255.73,89.774 255.554,88.796 254.633,88.796C254.374,88.485 251.767,86.909 250.164,89.292C249.693,89.991 249.87,91.652 250.518,92.85C250.537,92.885 250.559,92.919 250.582,92.951C250.821,93.27 251.253,93.827 251.41,93.822C251.514,93.818 251.612,93.796 251.705,93.766C251.708,93.765 251.71,93.764 251.713,93.764C252.071,93.645 252.34,93.366 252.417,93.164"
+        android:strokeWidth="1"
+        android:fillColor="#663014"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M256.96,104.605C256.801,103.876 256.631,103.102 256.442,102.319L255.671,102.343C254.915,102.459 254.391,101.841 254.123,101.562L251.011,98.335C250.231,97.051 252.011,94.943 253.305,96.225L255.703,99.638C255.033,97.555 254.154,95.75 252.907,95.034C252.526,94.815 252.112,94.695 251.658,94.703C251.479,94.699 251.297,94.755 251.116,94.857C250.07,95.443 249.076,97.604 249.277,99.272C249.296,99.417 249.321,99.587 249.354,99.772C249.808,101.111 250.259,102.926 250.645,104.554C252.261,104.298 255.164,104.52 256.96,104.605"
+        android:strokeWidth="1"
+        android:fillColor="#C66A61"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M251.386,107.44C252.507,108.107 255.107,106.887 256.377,105.685C254.707,105.803 252.426,105.982 250.949,105.844C251.084,106.419 251.207,106.936 251.314,107.357C251.319,107.374 251.325,107.392 251.329,107.408C251.347,107.42 251.367,107.43 251.386,107.44"
+        android:strokeWidth="1"
+        android:fillColor="#C66A61"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M262.008,100.166C262.046,100.148 262.082,100.141 262.119,100.139C262.227,99.413 262.334,98.691 262.334,98.691C262.461,98.244 262.004,98.447 261.785,98.436L261.633,98.454C261.477,98.472 261.443,98.514 261.418,98.669L261.141,100.432L261.385,100.433L262.008,100.166Z"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M260.59,101.74C260.862,101.781 261.666,102.282 261.916,102.002L262.511,101.498C262.891,101.148 262.556,100.11 262.118,100.139C262.083,100.141 262.046,100.149 262.009,100.167L261.385,100.433L261.14,100.433L260.743,100.433L260.575,101.621L260.59,101.74Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFC1AF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M251.011,98.334L254.124,101.562C254.391,101.841 254.915,102.459 255.671,102.343L256.442,102.318L260.496,102.188L260.575,101.622L260.743,100.433L260.786,100.129L256.008,100.07L255.704,99.637L253.305,96.225C252.011,94.943 250.232,97.051 251.011,98.334"
+        android:strokeWidth="1"
+        android:fillColor="#C66A61"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M250.645,104.554C250.752,105.003 250.853,105.437 250.949,105.843C252.426,105.981 254.707,105.803 256.377,105.686C257.05,105.638 257.622,105.601 258.003,105.599L257.959,105.494L258.569,105.236L258.724,105.602C259.285,105.599 259.969,105.684 259.977,105.127C259.886,104.469 259.019,104.677 258.419,104.606C258.203,104.652 257.668,104.639 256.96,104.605C255.164,104.519 252.261,104.298 250.645,104.554"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M250.3,108.925C250.52,109.511 250.742,109.917 250.964,110.05C251.013,110.08 251.061,110.096 251.109,110.099C251.129,110.099 251.148,110.098 251.168,110.095C251.749,110.165 251.822,109.468 251.652,108.57C251.638,108.498 251.624,108.425 251.608,108.351C251.535,108.185 251.434,107.833 251.314,107.356C251.207,106.937 251.085,106.419 250.949,105.844C250.853,105.437 250.752,105.003 250.645,104.553C250.259,102.926 249.808,101.11 249.355,99.772C248.992,98.704 248.628,97.941 248.295,97.827C248.242,97.792 247.669,97.373 247.872,98.289C248.137,98.78 248.754,102.818 249.492,106.037C249.561,106.338 249.631,106.633 249.702,106.917C249.897,107.691 250.096,108.384 250.3,108.925"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M259.923,110.123L259.234,110.122L259.234,110.256L259.229,116.448C259.478,116.396 259.737,116.389 259.988,116.428C260.011,116.42 260.033,116.41 260.055,116.402L260.061,110.446L259.923,110.123Z"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M249.815,113.359C249.798,114.449 251.511,114.451 251.495,113.361C251.513,112.27 249.8,112.269 249.815,113.359"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M259.229,116.447C258.853,116.525 258.501,116.705 258.233,116.989C258.831,116.832 259.416,116.644 259.988,116.428C259.737,116.389 259.478,116.396 259.229,116.447"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M258.804,105.79L258.724,105.603L258.569,105.236L257.959,105.494L258.003,105.599L259.377,108.835L259.923,110.123L260.061,110.446L262.178,115.435C262.374,115.329 262.566,115.218 262.757,115.105L262.359,114.167L258.804,105.79Z"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M345.815,99.061C345.815,109.091 337.684,117.222 327.655,117.222C317.625,117.222 309.494,109.091 309.494,99.061C309.494,89.032 317.625,80.901 327.655,80.901C337.684,80.901 345.815,89.032 345.815,99.061"
+        android:strokeWidth="1"
+        android:fillColor="#E8F5FF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M325.79,90.93C325.708,90.448 325.595,89.954 325.518,89.456C325.512,89.461 325.507,89.465 325.501,89.472C325.611,89.33 325.087,91.14 325.828,91.407C325.839,91.411 325.847,91.412 325.858,91.416C325.834,91.274 325.814,91.131 325.797,90.986C325.795,90.968 325.792,90.948 325.79,90.93"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M330.372,90.171C330.37,90.197 330.366,90.222 330.364,90.248C330.344,90.664 330.309,91.081 330.236,91.48C330.251,91.476 330.263,91.475 330.279,91.469C330.833,91.269 330.681,89.63 330.605,89.534C330.576,89.497 330.54,89.486 330.5,89.493C330.465,89.685 330.426,89.873 330.386,90.057C330.379,90.095 330.375,90.132 330.372,90.171"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M323.373,110.538C323.373,110.527 323.372,110.516 323.372,110.506C323.345,112.036 323.421,114.248 323.556,116.752C324.874,117.055 326.244,117.222 327.655,117.222C327.952,117.222 328.249,117.213 328.542,117.199C328.549,117.096 328.555,116.994 328.562,116.892C328.568,116.791 328.714,116.785 328.73,116.884C328.73,116.884 328.74,116.991 328.761,117.185C330.434,117.085 332.044,116.756 333.564,116.233C333.492,113.635 333.342,111.474 333.082,110.186C332.379,111.77 323.709,111.772 323.373,110.538"
+        android:strokeWidth="1"
+        android:fillColor="#8C8C99"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M335.526,109.359L334.866,109.457C334.742,109.47 334.646,109.42 334.567,109.338C334.417,109.944 334.284,110.621 334.457,111.345C334.553,111.879 335.35,112.751 335.921,112.095C336.424,111.255 336.24,110.015 335.814,109.199C335.742,109.284 335.644,109.347 335.526,109.359"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M333.082,110.186C333.097,110.151 333.114,110.116 333.122,110.08C333.311,109.159 332.968,104.58 332.429,101.684C333.002,104.156 334.06,108.406 334.421,109.121C334.462,109.203 334.51,109.277 334.568,109.338C334.646,109.419 334.741,109.47 334.865,109.457L335.525,109.359C335.643,109.347 335.742,109.285 335.813,109.199C335.871,109.128 335.91,109.04 335.914,108.944C335.985,107.199 335.699,104.918 334.896,101.363C334.587,99.996 333.465,95.513 330.534,93.781C330.137,93.546 329.738,93.387 329.341,93.283C329.335,93.287 329.329,93.294 329.322,93.3L329.362,93.636C329.357,94.207 328.538,94.789 328.035,94.783C327.465,94.841 326.976,94.373 326.982,93.732C326.982,93.732 326.985,93.491 326.985,93.444C326.931,93.409 326.88,93.372 326.83,93.332C325.878,93.609 325.032,94.136 324.406,94.711C323.49,95.549 322.279,97.444 321.048,98.647C319.485,100.528 318.061,101.58 315.813,102.862L316.099,104.849C318.351,104.251 320.209,103.055 321.538,102.051C322.358,101.386 322.397,101.307 323.487,100.216C323.831,99.872 323.031,102.275 323.371,110.506C323.371,110.516 323.372,110.527 323.372,110.538C323.709,111.772 332.38,111.77 333.082,110.186"
+        android:strokeWidth="1"
+        android:fillColor="#C66A61"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M327.866,93.787C327.517,93.721 327.228,93.602 326.985,93.444C326.984,93.491 326.982,93.732 326.982,93.732C326.977,94.372 327.465,94.84 328.036,94.783C328.539,94.789 329.357,94.207 329.362,93.636L329.323,93.3C329.044,93.531 328.693,93.7 328.245,93.786C328.12,93.81 327.991,93.811 327.866,93.787"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M330.367,90.214C330.366,90.226 330.366,90.237 330.365,90.249C330.367,90.222 330.37,90.197 330.372,90.17C330.37,90.185 330.367,90.2 330.367,90.214"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M328.759,91.86C328.628,91.808 328.195,91.793 328.051,91.624C327.899,91.786 327.461,91.736 327.326,91.771C327.27,91.785 327.193,91.92 327.115,92.089C327.306,92.431 327.556,92.687 328.114,92.678C328.536,92.671 328.786,92.481 328.975,92.21C328.894,92.03 328.813,91.881 328.759,91.86"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M328.074,91.164C328.247,91.159 328.547,91.064 328.951,91.28C329.055,91.348 329.153,91.528 329.227,91.749C329.312,91.567 329.393,91.377 329.49,91.193C329.527,91.124 329.573,91.062 329.626,91.004C329.687,90.938 329.746,90.872 329.802,90.802C329.902,90.676 330.002,90.282 330.025,90.123C330.254,88.517 330.433,86.925 328.183,87.263C328.066,87.281 327.945,87.278 327.829,87.251C325.866,86.804 325.781,88.403 326.011,90.238C326.053,90.579 326.314,90.834 326.567,91.1C326.607,91.141 326.644,91.186 326.676,91.234C326.764,91.369 326.835,91.511 326.902,91.651C327.125,91.3 327.543,91.092 328.074,91.164"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M326.901,91.651C326.835,91.511 326.764,91.369 326.676,91.233C326.644,91.185 326.607,91.141 326.566,91.1C326.314,90.834 326.053,90.579 326.011,90.237C325.782,88.403 325.866,86.803 327.829,87.251C327.945,87.277 328.066,87.281 328.183,87.263C330.434,86.925 330.254,88.517 330.025,90.123C330.002,90.282 329.902,90.676 329.802,90.802C329.745,90.872 329.687,90.938 329.625,91.004C329.573,91.062 329.527,91.125 329.49,91.193C329.393,91.377 329.312,91.567 329.227,91.749C329.376,92.182 329.436,92.772 329.272,92.98C329.272,92.98 329.123,92.54 328.975,92.211C328.787,92.482 328.535,92.671 328.113,92.677C327.556,92.687 327.305,92.431 327.115,92.088C326.971,92.4 326.828,92.828 326.828,92.828C326.659,92.382 326.704,91.961 326.901,91.651M327.866,93.787C327.99,93.811 328.12,93.81 328.245,93.786C328.693,93.7 329.044,93.53 329.322,93.3C329.329,93.294 329.335,93.288 329.34,93.282C329.853,92.845 330.106,92.197 330.237,91.48C330.309,91.082 330.344,90.664 330.364,90.249C330.365,90.237 330.365,90.226 330.366,90.214C330.367,90.2 330.371,90.185 330.372,90.17C330.376,90.132 330.379,90.095 330.386,90.057C330.426,89.873 330.465,89.685 330.5,89.493C330.589,89.005 330.648,88.498 330.601,87.989L330.607,87.995C330.761,86.796 330.001,86.193 329.522,86.121C329.358,86.095 329.197,86.044 329.061,85.947C328.76,85.728 328.329,85.688 328.012,85.816C327.855,85.879 327.683,85.906 327.517,85.878C327.225,85.829 327.016,85.899 326.808,86.069C326.709,86.15 326.595,86.208 326.473,86.241C326.041,86.359 325.376,86.804 325.453,88.012C325.457,88.061 325.456,88.11 325.453,88.159C325.414,88.595 325.453,89.028 325.519,89.456C325.595,89.954 325.708,90.448 325.789,90.93C325.792,90.948 325.795,90.968 325.797,90.986C325.813,91.131 325.833,91.274 325.858,91.416C325.991,92.185 326.261,92.884 326.83,93.333C326.88,93.371 326.931,93.409 326.985,93.444C327.228,93.601 327.517,93.72 327.866,93.787"
+        android:strokeWidth="1"
+        android:fillColor="#DFDFDF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M327.115,92.088C327.193,91.92 327.271,91.785 327.326,91.771C327.461,91.736 327.899,91.786 328.052,91.624C328.195,91.794 328.628,91.808 328.759,91.86C328.813,91.881 328.894,92.03 328.975,92.211C329.122,92.54 329.272,92.98 329.272,92.98C329.436,92.772 329.376,92.182 329.228,91.749C329.153,91.528 329.054,91.348 328.952,91.28C328.548,91.064 328.247,91.159 328.075,91.164C327.543,91.092 327.125,91.3 326.901,91.651C326.704,91.961 326.658,92.382 326.829,92.828C326.829,92.828 326.972,92.4 327.115,92.088"
+        android:strokeWidth="1"
+        android:fillColor="#DFDFDF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M315.769,102.55C315.738,102.348 315.671,102.298 315.341,102.294L315.022,102.29C314.554,102.332 313.61,102.123 313.82,102.696C313.82,102.696 313.88,103.115 313.961,103.674C314.069,103.668 314.051,104.165 314.286,104.205C315.052,104.245 315.658,105.348 315.102,105.873C314.905,106.03 314.58,106.019 314.28,105.909C314.329,106.252 314.362,106.479 314.362,106.479C314.363,106.973 315.517,106.897 315.94,106.887C316.192,106.847 316.383,106.811 316.352,106.61L316.099,104.849L315.813,102.862L315.769,102.55Z"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M315.102,105.872C315.659,105.348 315.051,104.245 314.286,104.205C314.051,104.164 314.069,103.667 313.96,103.674C313.949,103.674 313.937,103.679 313.923,103.691C313.616,103.958 313.441,105.225 313.751,105.568C313.885,105.716 314.077,105.834 314.28,105.909C314.58,106.019 314.904,106.031 315.102,105.872"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M285.143,143.818C285.134,153.848 276.995,161.971 266.966,161.961C256.936,161.953 248.813,153.814 248.822,143.785C248.831,133.755 256.97,125.632 266.999,125.641C277.028,125.65 285.152,133.789 285.143,143.818"
+        android:strokeWidth="1"
+        android:fillColor="#E8F5FF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M273.221,149.65C274.256,151.144 275.336,152.654 276.245,153.73C276.402,153.048 276.59,152.278 276.773,151.788C276.618,151.54 276.481,151.322 276.433,151.235C275.964,150.389 275.42,149.448 274.873,148.519C274.415,149.38 273.678,149.588 273.221,149.65"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M270.322,155.541C268.684,156.293 263.765,156.657 261.562,155.588C261.389,155.504 261.279,155.335 261.259,155.147C261.25,155.409 261.243,155.691 261.237,155.989C261.298,156.069 261.356,156.143 261.407,156.207C262.404,156.034 263.855,156.792 263.687,157.772C263.332,158.737 262.02,158.659 261.216,158.089C261.215,158.992 261.221,159.981 261.233,161.028C262.737,161.528 264.325,161.843 265.976,161.933C266.069,161.137 266.125,160.662 266.125,160.662C266.135,160.565 266.157,160.79 266.175,160.886C266.243,161.238 266.306,161.592 266.368,161.946C266.567,161.953 266.765,161.962 266.966,161.962C268.297,161.963 269.592,161.817 270.842,161.547C270.816,159.556 270.758,157.424 270.667,155.16C270.61,155.326 270.487,155.465 270.322,155.541"
+        android:strokeWidth="1"
+        android:fillColor="#8C8C99"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M269.062,133.473C269.217,133.674 269.32,133.929 269.353,134.245C269.363,133.98 269.346,133.737 269.305,133.513C269.286,133.566 269.273,133.596 269.273,133.596C269.204,133.551 269.133,133.513 269.062,133.473"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M266.254,133.037C266.284,133.052 266.296,133.072 266.285,133.096C266.02,133.137 265.845,133.241 265.727,133.369C266.136,133.156 266.576,133.006 267.005,132.93C266.749,132.938 266.497,132.973 266.254,133.037"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M265.031,137.421C264.982,137.327 264.729,137.026 264.888,136.868C264.904,136.851 264.914,136.832 264.923,136.811C264.853,136.883 264.752,136.874 264.645,136.816C264.868,137.189 265.099,137.606 265.401,137.957C265.403,137.947 265.405,137.937 265.407,137.928C265.249,137.738 265.12,137.56 265.031,137.421"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M264.638,135.247C264.654,135.256 264.668,135.269 264.682,135.284C264.681,135.282 264.681,135.279 264.68,135.277C264.597,135.175 264.485,135.063 264.334,134.874C264.161,135.178 264.03,135.159 263.938,135.552C263.799,135.133 263.693,134.758 263.631,134.413C263.66,134.818 263.779,135.261 264.007,135.739C263.985,135.334 264.177,135.005 264.638,135.247"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M264.923,136.811C264.924,136.807 264.925,136.803 264.926,136.799C264.824,136.299 264.76,135.731 264.681,135.284C264.668,135.269 264.654,135.256 264.638,135.247C264.177,135.005 263.985,135.334 264.007,135.739C264.017,135.905 264.062,136.084 264.139,136.242C264.244,136.462 264.456,136.714 264.645,136.816C264.752,136.874 264.853,136.884 264.923,136.811"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M275.883,155.169C275.828,155.318 275.915,155.389 276.007,155.47C275.991,155.583 276.98,155.296 277.422,155.177C277.005,155.096 276.766,154.671 277.243,153.848C277.418,153.647 277.699,153.511 277.971,153.464C278.181,153.429 278.3,153.053 278.42,153.007C278.639,152.207 278.824,151.471 278.873,151.406C278.938,151.361 278.779,151.079 278.61,151.062L277.131,151.302C277.022,151.244 276.899,151.447 276.772,151.789C276.591,152.277 276.403,153.048 276.244,153.73C276.073,154.474 275.936,155.112 275.883,155.169"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M277.971,153.465C277.699,153.512 277.417,153.648 277.243,153.847C276.766,154.672 277.006,155.096 277.421,155.177C278.105,155.311 279.268,154.51 278.491,153.021C278.466,153.001 278.443,152.998 278.42,153.008C278.299,153.054 278.18,153.429 277.971,153.465"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M263.688,157.772C263.856,156.793 262.404,156.034 261.406,156.207C261.356,156.143 261.298,156.068 261.236,155.989C260.869,155.517 260.32,154.812 259.814,154.153C259.387,153.6 259.208,152.988 259.201,152.35C258.747,152.497 257.769,152.211 257.266,151.802C257.202,153.482 258.104,154.991 260.579,157.15C260.627,157.525 260.877,157.849 261.216,158.089C262.02,158.659 263.332,158.736 263.688,157.772"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M259.201,152.35C259.265,152.33 259.322,152.304 259.362,152.266C260.23,151.431 261.234,147.829 261.234,147.829L261.251,155.092C261.251,155.11 261.257,155.128 261.259,155.147C261.279,155.335 261.389,155.504 261.562,155.588C263.765,156.657 268.684,156.293 270.322,155.542C270.487,155.466 270.61,155.327 270.667,155.16C270.688,155.1 270.701,155.037 270.703,154.972L270.773,152.751C270.848,150.559 270.786,148.783 270.845,146.403L272.418,149.269C272.528,149.49 272.893,149.682 273.01,149.672C273.07,149.668 273.141,149.662 273.221,149.65C273.677,149.589 274.414,149.381 274.873,148.52C274.941,148.392 275.003,148.253 275.057,148.096C275.186,147.719 271.984,142.333 269.952,140.469C269.357,139.851 268.542,139.636 267.648,139.55C267.643,139.686 267.64,139.767 267.64,139.767C267.623,140.376 267.057,140.788 266.471,140.704C265.934,140.685 265.088,140.096 265.107,139.56C265.107,139.56 265.109,139.55 265.113,139.53C263.854,139.855 262.819,140.213 262.042,140.657C261.858,140.74 261.675,140.863 261.494,141.02C261.109,141.315 260.818,141.647 260.629,142.026C258.894,144.546 257.469,149.527 256.969,151.211C256.908,151.414 257.041,151.62 257.265,151.802C257.768,152.211 258.747,152.497 259.201,152.35"
+        android:strokeWidth="1"
+        android:fillColor="#B1DAEF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M266.471,140.703C267.056,140.789 267.623,140.375 267.64,139.768C267.64,139.768 267.643,139.685 267.648,139.55C267.65,139.474 267.653,139.382 267.657,139.278C266.803,139.344 265.937,138.567 265.406,137.928C265.405,137.937 265.403,137.947 265.401,137.956C265.275,138.644 265.14,139.379 265.113,139.531C265.11,139.549 265.107,139.56 265.107,139.56C265.089,140.096 265.934,140.684 266.471,140.703"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M267.004,132.93C266.575,133.006 266.136,133.156 265.727,133.369C265.453,133.668 265.5,134.092 265.499,134.113C265.104,134.848 265.098,135.231 265.19,135.765L265.199,135.765C265.207,135.825 265.215,135.883 265.223,135.938C265.246,136.067 265.274,136.205 265.303,136.359C265.402,136.719 265.588,136.974 266.051,137.203C266.256,137.341 266.513,137.27 266.666,137.09C266.895,136.805 267.86,136.984 268.168,136.948C268.715,136.917 268.744,137.859 269.102,136.961C269.025,137.195 268.943,137.459 268.849,137.724C269.357,136.551 269.465,134.988 269.357,134.265C269.356,134.258 269.354,134.253 269.353,134.246C269.32,133.929 269.216,133.674 269.062,133.473C268.41,133.095 267.694,132.909 267.004,132.93"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M264.91,136.274C264.896,135.644 264.842,135.477 264.68,135.277C264.681,135.28 264.681,135.282 264.682,135.285C264.76,135.731 264.825,136.3 264.926,136.8C264.972,136.666 264.915,136.445 264.91,136.274"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M268.236,137.688C268.271,137.561 268.358,137.299 268.145,137.29L267.043,137.272C266.854,137.267 266.841,137.497 266.887,137.625C267.02,138.218 268.084,138.311 268.236,137.688"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M267.043,137.273L268.145,137.289C268.359,137.299 268.27,137.561 268.236,137.688C268.083,138.31 267.02,138.218 266.887,137.626C266.842,137.497 266.854,137.266 267.043,137.273M264.335,134.874C264.485,135.063 264.597,135.174 264.68,135.277C264.842,135.477 264.896,135.644 264.91,136.274C264.915,136.445 264.973,136.666 264.927,136.8C264.925,136.804 264.925,136.807 264.924,136.811C264.914,136.832 264.904,136.852 264.887,136.867C264.729,137.026 264.982,137.327 265.031,137.421C265.12,137.561 265.249,137.738 265.406,137.928C265.937,138.566 266.803,139.343 267.657,139.277C267.661,139.277 267.665,139.277 267.669,139.277C268.23,139.228 268.584,138.477 268.85,137.724C268.943,137.46 269.026,137.195 269.102,136.961C268.743,137.86 268.715,136.917 268.169,136.948C267.86,136.984 266.895,136.805 266.665,137.09C266.513,137.271 266.255,137.341 266.051,137.203C265.589,136.974 265.402,136.719 265.303,136.359C265.275,136.205 265.247,136.067 265.223,135.939C265.214,135.882 265.207,135.825 265.2,135.764L265.19,135.764C265.098,135.232 265.103,134.848 265.499,134.113C265.499,134.092 265.453,133.668 265.727,133.37C265.845,133.241 266.02,133.136 266.284,133.096C266.297,133.072 266.284,133.053 266.255,133.037C266.497,132.973 266.749,132.938 267.004,132.93C267.694,132.91 268.41,133.095 269.062,133.473C269.133,133.513 269.204,133.552 269.273,133.597C269.273,133.597 269.286,133.565 269.305,133.513C269.454,133.122 270.024,131.434 269.07,130.995C268.457,130.712 267.545,130.667 266.881,130.999C266.188,131.345 265.663,131.11 265.1,131.486C263.73,132.419 263.422,133.243 263.631,134.412C263.694,134.758 263.798,135.133 263.937,135.551C264.029,135.159 264.161,135.177 264.335,134.874"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <group>
+      <path
+          android:pathData="M308.905,73.557C308.896,83.586 300.758,91.709 290.728,91.7C280.699,91.691 272.576,83.553 272.584,73.523C272.594,63.493 280.731,55.37 290.761,55.38C300.791,55.389 308.914,63.527 308.905,73.557"
+          android:strokeWidth="1"
+          android:fillColor="#E8F5FF"
+          android:fillType="nonZero"
+          android:strokeColor="#00000000"/>
+    </group>
+    <path
+        android:pathData="M293.338,77.944C293.852,78.313 294.467,78.736 294.799,78.891C295.234,79.093 296.352,79.373 296.982,79.524C297.212,79.185 297.506,78.738 297.802,78.316C297.072,77.974 295.897,77.409 295.433,77.099C294.878,76.729 293.728,75.702 293.006,75.045C293.221,75.927 293.353,76.909 293.338,77.944"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M286.952,91.301C288.171,91.56 289.433,91.699 290.728,91.7C290.737,91.7 290.746,91.699 290.755,91.699C289.382,89.271 287.762,86.201 286.983,83.973L286.952,91.301Z"
+        android:strokeWidth="1"
+        android:fillColor="#B96161"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M287.74,81.275L287.756,81.204L287.748,81.204L286.964,83.919C286.97,83.937 286.977,83.955 286.983,83.973C287.762,86.201 289.382,89.271 290.756,91.699C292.165,91.699 293.537,91.532 294.855,91.227C293.649,85.808 292.744,81.27 292.744,81.27L287.74,81.275Z"
+        android:strokeWidth="1"
+        android:fillColor="#C66A61"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M292.204,65.669C292.185,65.463 292.149,65.24 292.081,65.015C291.871,64.452 291.48,64.315 291.48,64.315C291.221,65.503 290.176,65.59 289.909,65.592L289.859,65.706C290.209,68.936 289.246,68.672 288.69,70.636C288.677,70.679 288.666,70.718 288.654,70.758L288.649,70.787L288.728,70.848C289.67,70.884 290.216,71.686 290.712,71.128C290.771,71.062 290.862,71.062 290.971,71.116L290.589,68.411C290.589,68.411 292.268,68.485 292.229,66.142C292.229,66.139 292.228,66.133 292.228,66.129C292.207,66.144 292.192,66.155 292.192,66.155C292.209,65.976 292.211,65.816 292.204,65.669"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M287.747,81.204L287.785,81.074L287.953,80.32C287.664,80.386 286.17,80.677 285.839,79.772L285.427,84.802C285.373,85.428 283.239,86.601 284.828,87.717C286.109,88.616 286.49,85.565 286.49,85.565L286.964,83.919L287.747,81.204Z"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M287.953,80.32L287.785,81.074L287.755,81.204L287.74,81.275L292.744,81.27C293.151,80.142 293.323,79.015 293.338,77.944C293.352,76.909 293.221,75.927 293.007,75.045C292.487,72.911 291.494,71.37 290.972,71.115C290.861,71.062 290.771,71.062 290.712,71.128C290.216,71.687 289.671,70.884 288.728,70.848C288.695,70.847 288.662,70.846 288.629,70.847C288.23,72.174 288.158,71.592 287.628,71.63C286.69,73.617 285.939,78.995 285.845,79.691C285.838,79.74 285.836,79.765 285.836,79.765C285.836,79.768 285.837,79.769 285.838,79.771C286.17,80.677 287.663,80.386 287.953,80.32"
+        android:strokeWidth="1"
+        android:fillColor="#B1DAEF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M288.628,70.847C288.637,70.818 288.646,70.788 288.654,70.758C288.667,70.718 288.677,70.679 288.69,70.637C289.247,68.672 290.209,68.936 289.859,65.706C289.855,65.667 289.852,65.63 289.848,65.591C289.848,65.591 289.87,65.592 289.909,65.592C290.176,65.59 291.221,65.503 291.48,64.315C291.48,64.315 291.871,64.452 292.081,65.015C292.146,65.189 292.192,65.405 292.204,65.669C292.211,65.816 292.209,65.976 292.192,66.155C292.192,66.155 292.207,66.144 292.228,66.129C292.424,65.984 293.359,65.174 292.637,63.305C292.637,63.305 292.46,62.415 291.212,62.445C291.212,62.445 289.224,60.664 287.354,62.178C285.484,63.691 286.76,65.205 286.76,65.205C286.76,65.205 284.267,67.461 285.128,70.518C285.128,70.518 286.048,72.506 287.117,71.824C287.326,71.689 287.491,71.639 287.628,71.63C288.159,71.591 288.23,72.174 288.628,70.847"
+        android:strokeWidth="1"
+        android:fillColor="#663014"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M296.574,80.08C296.475,80.194 296.528,80.287 296.582,80.39C296.515,80.51 298.135,80.76 298.173,80.788C298.252,80.861 298.547,80.517 298.903,80.036C298.872,79.916 298.946,79.685 299.07,79.43C299.229,79.101 299.348,78.96 299.598,78.868C299.662,78.844 299.702,78.849 299.721,78.875C300.121,78.29 300.455,77.789 300.513,77.752C300.586,77.734 300.541,77.429 300.397,77.356L298.999,77.067C298.853,76.896 298.328,77.565 297.802,78.316C297.506,78.738 297.212,79.185 296.982,79.524C296.771,79.839 296.617,80.059 296.574,80.08"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M299.598,78.868C299.348,78.96 299.229,79.101 299.07,79.43C298.946,79.685 298.871,79.916 298.903,80.036C298.913,80.071 298.93,80.098 298.958,80.111C299.086,80.173 299.158,80.003 299.347,79.737C299.515,79.501 299.806,78.988 299.721,78.875C299.701,78.849 299.662,78.844 299.598,78.868"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M332.213,144.258C332.213,154.288 324.082,162.419 314.052,162.419C304.023,162.419 295.892,154.288 295.892,144.258C295.892,134.229 304.023,126.098 314.052,126.098C324.082,126.098 332.213,134.229 332.213,144.258"
+        android:strokeWidth="1"
+        android:fillColor="#E8F5FF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M309.509,146.721L309.45,147.014L307.896,154.676C307.896,154.676 306.739,156.334 307.871,156.331C309.004,156.328 308.739,154.819 308.739,154.819L310.939,147.248C310.926,147.248 310.913,147.248 310.9,147.244L309.509,146.721Z"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M316.65,152.6L310.533,152.704C310.524,152.704 310.517,152.7 310.51,152.699L310.495,152.812L311.093,162.175C311.867,162.302 312.659,162.378 313.463,162.404L313.677,155.435L314.105,162.417C314.887,162.415 315.655,162.359 316.412,162.262L316.663,152.598C316.658,152.598 316.655,152.6 316.65,152.6"
+        android:strokeWidth="1"
+        android:fillColor="#C66A61"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M312.86,142.924C312.956,143.045 313.092,143.191 313.252,143.303C313.093,143.185 312.956,143.039 312.86,142.924"
+        android:strokeWidth="1"
+        android:fillColor="#CBAB7D"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M311.142,143.515L312.609,142.752C312.655,142.731 312.707,142.741 312.743,142.774C312.725,142.749 312.715,142.735 312.715,142.735L312.886,141.722C312.824,141.708 312.762,141.692 312.699,141.682C312.364,141.634 311.559,141.388 311.182,140.138C311.182,140.138 310.598,139.287 311.053,138.517C311.508,137.746 313.048,138.283 313.918,136.534C313.918,136.534 315.17,138.547 316.002,138.567C316.834,138.585 315.924,141.308 314.678,141.605C314.678,141.605 314.592,141.638 314.453,141.676L314.541,142.708C314.529,142.742 314.516,142.773 314.503,142.805C314.541,142.772 314.596,142.764 314.642,142.789L316.264,143.602C316.28,143.611 316.527,143.781 316.789,144.074C317.015,144.324 317.198,144.607 317.289,144.931L317.541,145.833C320.733,146.004 321.08,144.965 320.945,144.236C320.876,143.868 320.621,143.558 320.277,143.409C320.261,143.402 320.246,143.396 320.23,143.389C319.519,143.074 319.317,142.168 319.814,141.571C320.052,141.285 320.088,141.073 320.081,140.953C320.079,140.889 320.097,140.824 320.087,140.761C319.998,140.167 318.943,139.49 318.114,139.039C317.706,138.817 317.47,138.374 317.511,137.911C317.78,134.925 315.469,133.959 314.674,133.741C314.55,133.708 314.411,133.65 314.28,133.645C313.921,133.631 313.423,133.313 311.551,134.327C309.562,135.406 309.734,137.903 309.886,138.872C309.92,139.092 310.013,139.3 310.161,139.467C310.506,139.858 311.127,140.794 310.578,142.021C310.078,143.136 310.322,143.609 310.527,143.797C310.571,143.837 310.607,143.884 310.643,143.931C310.814,143.738 310.998,143.566 311.142,143.515"
+        android:strokeWidth="1"
+        android:fillColor="#CBAB7D"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M314.41,141.174L314.453,141.677C314.592,141.637 314.679,141.606 314.679,141.606C315.924,141.308 316.833,138.585 316.002,138.566C315.17,138.548 313.917,136.535 313.917,136.535C313.049,138.283 311.509,137.746 311.053,138.517C310.597,139.287 311.181,140.138 311.181,140.138C311.559,141.388 312.364,141.634 312.698,141.682C312.763,141.691 312.824,141.708 312.886,141.723L312.969,141.231C313.664,141.618 314.41,141.174 314.41,141.174"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M316.65,152.6C316.655,152.6 316.658,152.598 316.663,152.598C316.735,152.589 316.788,152.522 316.771,152.449L316.368,150.263L314.102,149.491C314.102,149.491 314.052,149.496 313.973,149.502L314,149.812C314.013,149.955 313.908,150.071 313.765,150.071L312.678,150.071C312.536,150.071 312.41,149.955 312.398,149.812L312.168,147.18C312.154,147.038 312.261,146.922 312.403,146.922L313.49,146.922C313.632,146.922 313.758,147.038 313.771,147.18L313.894,148.594C314.088,148.715 314.222,148.819 314.222,148.819L316.186,149.275L316.156,149.119L316.156,149.119C316.128,149.006 316.104,148.819 316.104,148.703L315.884,146.752C315.875,146.622 315.861,146.524 315.93,146.635L316.005,147.03C316.04,147.087 316.116,147.106 316.175,147.072L316.199,147.057L316.199,147.056L317.517,146.28L317.518,146.284L317.563,146.258C317.614,146.227 317.637,146.167 317.619,146.11L317.541,145.833L317.289,144.931C317.198,144.607 317.014,144.324 316.79,144.073C316.528,143.782 316.28,143.611 316.264,143.602L314.642,142.789C314.595,142.765 314.541,142.772 314.503,142.804C314.141,143.698 313.634,143.585 313.252,143.303C313.093,143.192 312.955,143.045 312.859,142.924C312.808,142.86 312.767,142.808 312.743,142.774C312.707,142.742 312.654,142.731 312.609,142.751L311.142,143.515C310.997,143.565 310.814,143.738 310.643,143.93C310.384,144.222 310.156,144.558 310.149,144.575L309.424,146.549C309.396,146.615 309.428,146.69 309.495,146.716L309.509,146.721L310.9,147.243C310.914,147.248 310.926,147.248 310.939,147.248C311.003,147.252 311.063,147.207 311.07,147.138L311.097,146.853C311.111,146.704 311.18,146.694 311.2,146.841L311.153,148.368C311.096,148.859 310.988,149.675 310.953,150.022L310.41,152.546C310.39,152.618 310.439,152.686 310.51,152.699C310.517,152.7 310.524,152.704 310.533,152.704L316.65,152.6Z"
+        android:strokeWidth="1"
+        android:fillColor="#B1DAEF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M312.5,148.946C312.384,147.795 313.363,148.263 313.895,148.595L313.771,147.18C313.758,147.038 313.633,146.922 313.49,146.922L312.403,146.922C312.261,146.922 312.155,147.038 312.168,147.18L312.398,149.813C312.41,149.955 312.536,150.071 312.679,150.071L313.765,150.071C313.908,150.071 314.014,149.955 314,149.813L313.973,149.503C313.605,149.531 312.561,149.557 312.5,148.946"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M316.198,147.056L316.198,147.058L316.734,149.402L316.186,149.275L314.222,148.819C314.222,148.819 314.088,148.716 313.895,148.595C313.363,148.263 312.384,147.796 312.5,148.945C312.561,149.557 313.605,149.531 313.973,149.503C314.053,149.496 314.102,149.49 314.102,149.49L316.368,150.263L317.344,150.596C317.71,150.721 318.081,150.423 318.036,150.039L317.564,146.623L317.518,146.285L317.518,146.28L316.198,147.056Z"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M314.453,141.676L314.41,141.174C314.41,141.174 313.664,141.618 312.969,141.231L312.886,141.723L312.715,142.735C312.715,142.735 312.725,142.749 312.743,142.774C312.767,142.808 312.808,142.86 312.859,142.924C312.955,143.038 313.094,143.185 313.253,143.303C313.634,143.586 314.141,143.698 314.503,142.804C314.516,142.772 314.529,142.742 314.541,142.708L314.453,141.676Z"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M300.639,112.362C300.639,117.846 296.192,122.292 290.708,122.292C285.224,122.292 280.778,117.846 280.778,112.362C280.778,106.877 285.224,102.431 290.708,102.431C296.192,102.431 300.639,106.877 300.639,112.362"
+        android:strokeWidth="1"
+        android:fillColor="#BF0F2D"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M290.622,105.396C290.042,105.396 289.565,105.873 289.565,106.453L289.565,106.948C288.881,107.108 288.282,107.426 287.822,107.889C287.134,108.584 286.749,109.567 286.749,110.699L286.749,113.445C286.749,114.091 286.396,114.911 286.031,115.519L285.4,116.466C285.328,116.575 285.322,116.714 285.383,116.828C285.444,116.942 285.564,117.013 285.693,117.013L288.862,117.013C288.862,117.98 289.655,118.774 290.622,118.774C291.588,118.774 292.381,117.98 292.381,117.013L295.55,117.013C295.679,117.013 295.799,116.942 295.861,116.828C295.921,116.714 295.914,116.575 295.842,116.466L295.215,115.523L295.213,115.521C294.844,114.907 294.494,114.139 294.494,113.493L294.494,110.747C294.494,108.857 293.369,107.395 291.678,106.96L291.678,106.453C291.678,105.873 291.2,105.396 290.622,105.396"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+  </group>
+</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_illustration_together.xml b/Corona-Warn-App/src/main/res/drawable/ic_illustration_together.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c1c835b0e1c0a45ae36f9d0212000487ebcbfb6f
--- /dev/null
+++ b/Corona-Warn-App/src/main/res/drawable/ic_illustration_together.xml
@@ -0,0 +1,614 @@
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+    android:width="360dp"
+    android:height="220dp"
+    android:viewportWidth="360"
+    android:viewportHeight="220">
+  <group>
+    <clip-path
+        android:pathData="M0,0h360v220h-360z"/>
+  </group>
+  <group>
+    <clip-path
+        android:pathData="M0,0h360v220h-360z"/>
+    <path
+        android:pathData="M142.212,55.992l-0.198,36.184l-16.437,0l0,-16.734l-51.937,0l0,-6.066l-31.065,0l0,20.142l-11.166,0l0,7.547l-46.409,0l0,48.801l17.77,0l17.477,0l11.162,0l11.166,0l6.31,0l36.406,0l0,-0.149l35.434,0l0,0.149l23.782,0l11.412,0l32.084,0l2.322,0l11.58,0l17.892,0l22.486,0l6.285,0l26.864,0l10.631,0l18.135,0l0,-7.871l55.861,6.744l0,-50.128l-55.861,0l0,-26.965l-18.135,0l0,-6.679l-43.78,0l0,23.989l-14.526,0l0,-7.854l-25.852,0l0,-21.147z"
+        android:strokeWidth="1"
+        android:fillColor="#E8F5FF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+  </group>
+  <group>
+    <clip-path
+        android:pathData="M0,0h360v220h-360z"/>
+    <path
+        android:pathData="M99.558,140.13C63.642,140.13 47.995,118.621 14.461,122.693C6.49,123.661 -3.632,126.685 -15,135.166L-15,158.963L360.058,160.3L360.058,143.066C357.976,141.876 355.9,140.859 353.935,140.115C353.935,140.115 316.141,125.518 274.286,138.008C238.437,148.716 197.141,120.689 177.357,119.962C175.51,119.894 173.727,119.862 172.014,119.862C129.271,119.859 127.227,140.13 99.558,140.13"
+        android:strokeWidth="1"
+        android:fillColor="#D8ECF9"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M285.362,24.225C282.128,24.918 278.131,28.041 278.266,28.956C278.313,29.275 288.4,28.973 298.766,28.956C314.398,28.929 322.213,28.956 323.208,28.956L342.919,28.956C344.457,28.956 341.634,23.59 340.554,22.648C338.684,21.018 335.847,20.304 333.458,21.071C330.184,22.123 330.246,25.156 327.15,25.802C325.13,26.224 322.96,25.38 321.631,24.225C319.606,22.465 320.447,20.774 318.477,18.706C317.097,17.257 315.297,16.591 312.958,17.129C310.228,17.756 310.592,17.917 306.65,21.071C305.266,22.179 303.771,25.362 301.131,25.802C293.97,26.996 290.982,23.02 285.362,24.225"
+        android:strokeWidth="1"
+        android:fillColor="#D8ECF9"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M227.058,18.956L178.212,18.956C180.091,15.93 181.949,14.974 183.3,14.662C186.622,13.893 188.024,16.746 193.476,16.809C194.446,16.82 196.839,16.825 199.582,15.735C201.21,15.089 201.256,14.734 203.653,13.588C205.634,12.641 207.373,11.809 209.758,11.441C211.579,11.159 212.945,11.277 214.847,11.441C217.003,11.626 218.335,11.754 219.934,12.514C221.121,13.079 221.87,13.714 222.988,14.662C224.065,15.576 225.534,16.97 227.058,18.956"
+        android:strokeWidth="1"
+        android:fillColor="#D8ECF9"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M105.568,32.956L135.02,32.956C133.887,31.403 132.766,30.913 131.952,30.753C129.949,30.358 129.103,31.822 125.816,31.854C125.232,31.86 123.789,31.862 122.134,31.303C121.153,30.972 121.126,30.79 119.68,30.202C118.486,29.716 117.437,29.289 115.999,29.1C114.901,28.956 114.077,29.016 112.931,29.1C111.63,29.196 110.828,29.261 109.863,29.651C109.148,29.941 108.696,30.267 108.023,30.753C107.373,31.222 106.487,31.937 105.568,32.956"
+        android:strokeWidth="1"
+        android:fillColor="#D8ECF9"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M59.741,15.216C61.777,15.617 64.295,17.426 64.21,17.956C64.18,18.141 57.828,17.966 51.3,17.956C41.456,17.94 36.534,17.956 35.908,17.956L23.495,17.956C22.526,17.956 24.304,14.848 24.985,14.303C26.162,13.359 27.949,12.945 29.453,13.39C31.514,13.998 31.475,15.755 33.426,16.129C34.698,16.373 36.064,15.885 36.901,15.216C38.177,14.196 37.646,13.217 38.887,12.02C39.756,11.181 40.89,10.796 42.363,11.107C44.082,11.47 43.852,11.563 46.335,13.39C47.207,14.031 48.148,15.874 49.811,16.129C54.32,16.821 56.201,14.518 59.741,15.216"
+        android:strokeWidth="1"
+        android:fillColor="#D8ECF9"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M320.034,184.421L318.044,184.227L322.834,135.212C322.794,134.809 322.798,133.859 323.553,133.007C324.51,131.923 326.264,131.475 328.764,131.674L328.605,133.669C326.23,133.479 325.371,133.988 325.071,134.309C324.777,134.624 324.819,134.979 324.825,135.018L324.843,135.139L324.836,135.292L320.034,184.421Z"
+        android:strokeWidth="1"
+        android:fillColor="#4D4D4D"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M333.753,105.875C333.753,105.875 333.224,101.549 332.401,101.137C331.578,100.726 337.66,98.919 337.66,98.919C337.66,98.919 338.682,101.316 338.648,101.487C338.613,101.659 333.753,105.875 333.753,105.875"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M333.105,180.79C333.105,180.79 330.165,182.55 328.887,182.665C327.519,182.788 328.053,184.381 328.053,184.381L338.891,184.185C338.891,184.185 339.914,181.338 339.08,180.749L333.105,180.79Z"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M346.155,180.124C346.155,180.124 347.914,183.842 346.345,184.136C344.776,184.43 335.846,184.209 335.846,184.209C335.846,184.209 334.919,182.959 337.126,182.518C339.332,182.076 340.628,181.69 340.628,180.856L346.155,180.124Z"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M330.647,136.266C330.647,136.266 331.818,175.372 332.897,180.6C332.958,180.893 333.214,181.104 333.514,181.104L338.67,181.104C338.982,181.104 339.231,180.843 339.217,180.531L338.899,173.704L340.335,180.483C340.399,180.788 340.682,180.997 340.994,180.97L345.717,180.553C346.032,180.525 346.259,180.238 346.212,179.924C345.562,175.565 341.504,147.868 342.772,143.589C344.148,138.943 344.891,135.691 342.971,132.843C341.051,129.994 331.129,133.195 331.129,133.195L330.647,136.266Z"
+        android:strokeWidth="1"
+        android:fillColor="#B1DAEF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M329.694,130.712C329.694,130.712 327.108,131.697 327.161,132.654C327.184,133.066 327.374,133.271 327.584,133.371C327.748,133.45 327.745,133.683 327.577,133.754C326.944,134.025 325.914,134.317 325.035,133.877C323.652,133.186 323.451,131.494 324.024,130.793C325.194,129.363 329.136,128.537 329.326,128.496C329.694,128.418 329.694,130.712 329.694,130.712"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M331.577,136.29C334.103,136.314 341.023,136.099 342.834,133.096C342.924,132.947 342.98,132.782 343.005,132.61C343.395,129.926 346.828,104.839 339.69,101.519C339.256,101.317 338.746,101.369 338.36,101.651C336.462,103.035 330.377,107.876 330.143,113.176C329.886,118.997 329.154,127.196 329.047,128.373C329.038,128.468 329.04,128.564 329.053,128.659L329.663,133.369C329.675,133.459 329.696,133.548 329.726,133.634L330.348,135.409C330.531,135.933 331.022,136.285 331.577,136.29"
+        android:strokeWidth="1"
+        android:fillColor="#385460"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M332.57,101.3L337.661,98.919C337.661,98.919 342.852,91.933 337.523,91.018C332.193,90.103 330.686,91.233 330.686,91.233C330.686,91.233 328.748,94.463 329.017,96.024C329.017,96.024 329.189,96.607 328.882,96.641C328.573,96.675 328.163,97.189 328.608,97.565C329.052,97.941 332.57,101.3 332.57,101.3"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M334.331,94.713C334.209,94.867 334.144,95.057 334.143,95.254C334.133,96.328 334.064,100.178 333.573,100.575C333.003,101.037 329.986,102.422 329.144,101.77C328.302,101.118 328.775,99.722 328.775,99.722C328.775,99.722 330.475,99.815 329.067,99.028C328.304,98.601 328.258,98.285 328.376,98.084C328.484,97.901 328.716,97.83 328.918,97.894C329.411,98.049 330.547,98.456 330.593,98.907C330.647,99.457 333.788,97.496 333.394,94.668C333.357,94.402 333.201,94.169 332.973,94.026C331.869,93.337 328.448,91.101 329.323,90.421C330.362,89.613 335.789,87.476 338.098,89.786C340.407,92.095 342.197,95.559 338.502,99.023C338.502,99.023 335.808,100.113 335.701,96.349C335.618,93.429 334.727,94.214 334.331,94.713"
+        android:strokeWidth="1"
+        android:fillColor="#DFDFDF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M313.901,112.365C313.408,112.389 312.381,111.931 312.665,112.936L313.636,119.475C313.689,120.322 314.873,119.723 315.321,119.749C315.586,119.707 315.785,119.665 315.73,119.317L314.723,112.889C314.668,112.541 314.592,112.447 314.241,112.405"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M316.579,119.79C315.966,119.88 314.16,121.006 313.6,120.376L312.261,119.241C311.338,118.389 312.3,115.721 313.395,116.251L314.794,116.851L316.927,116.851L316.579,119.79Z"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M332.954,107.415C335.864,104.538 339.857,109.277 338.103,112.158C338.103,112.158 331.105,119.403 331.105,119.403C330.501,120.028 329.325,121.415 327.625,121.154L316.789,120.795L316.142,116.169L326.875,116.047L332.954,107.415Z"
+        android:strokeWidth="1"
+        android:fillColor="#385460"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M198.811,159.746L198.811,163.915C198.811,164.592 199.347,165.141 200.009,165.141L290.799,165.141C291.46,165.141 291.997,164.592 291.997,163.915L291.997,159.971L198.811,159.746Z"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M208.006,139.392l-0.152,20.435l2.867,0l-0.018,-20.435z"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M280.103,139.392l0.213,20.567l2.742,0l-0.012,-20.567z"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M202.859,140.863C202.859,140.863 203.595,138.165 205.557,138.165L284.828,138.185C285.095,138.185 285.359,138.252 285.593,138.379C286.263,138.739 287.589,139.605 287.952,140.863L202.859,140.863Z"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M202.43,143.61l0,2.276l85.444,0.066l-0.066,-2.207z"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M202.43,148.514l0,2.276l85.444,0.066l-0.066,-2.207z"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M202.43,153.909l0,2.276l85.444,0.066l-0.066,-2.207z"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M277.543,164.812L277.643,178.895C277.647,179.434 278.086,179.869 278.625,179.869L282.44,179.869C282.984,179.869 283.424,179.425 283.421,178.881L283.32,164.746L277.543,164.812Z"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M206.946,165.155L207,179.034C207.002,179.574 207.44,180.011 207.981,180.011L211.695,180.011C212.233,180.011 212.67,179.578 212.676,179.041L212.831,165.155L206.946,165.155Z"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M233.661,120.799C233.661,120.799 232.907,120.772 232.924,119.169C232.94,117.566 232.532,117.734 232.858,117.144C233.185,116.553 233.374,117.281 233.374,117.281L233.661,120.799Z"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M242.938,117.25C242.938,117.25 243.874,116.736 243.78,117.577C243.687,118.419 243.687,119.635 243.406,120.056C243.125,120.478 242.62,120.819 242.62,120.819L242.938,117.25Z"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M230.611,184.399C230.611,184.399 230.166,191.796 231.768,192.352C233.371,192.908 236.52,190.906 236.515,189.824C236.511,188.743 235.495,183.73 234.542,183.258C233.589,182.786 230.611,184.399 230.611,184.399"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M239.852,181.274C239.852,181.274 236.435,186.94 236.998,188.972C237.56,191.005 239.376,191.697 241.02,190.962C242.664,190.226 243.961,184.734 243.788,183.306C243.615,181.879 239.852,181.274 239.852,181.274"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M238.979,179.839C239.381,180.828 241.712,184.395 245.382,182.698C245.467,182.659 245.534,182.587 245.57,182.501L251.49,168.271C251.52,168.2 251.568,168.142 251.603,168.073C252.139,167.005 254.156,164.305 250.934,161.423C250.914,161.405 250.896,161.386 250.881,161.363C250.569,160.905 247.052,155.749 246.043,154.739C245.05,153.747 229.979,153.687 228.156,153.683C228.041,153.683 227.934,153.735 227.862,153.824L220.424,163.145C220.414,163.158 220.402,163.17 220.389,163.181C220.176,163.358 218.328,165.034 220.674,168.135C222.964,171.161 228.267,182.549 229.086,184.32C229.152,184.461 229.296,184.546 229.451,184.535C230.795,184.436 236.099,183.851 235.169,181.18C234.841,180.237 230.379,169.983 229.581,168.481C229.521,168.369 229.413,168.239 229.376,168.087C229.306,167.791 229.199,167.514 229.76,166.793C230.469,165.881 234.462,162.517 235.15,161.941C235.215,161.886 235.297,161.855 235.382,161.854L237.711,161.804C237.805,161.802 237.896,161.835 237.967,161.897L243.595,166.842C243.713,166.945 243.754,167.112 243.698,167.258L238.979,179.488C238.935,179.601 238.933,179.727 238.979,179.839"
+        android:strokeWidth="1"
+        android:fillColor="#8C8C98"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M248.28,147.434L246.194,158.512C246.194,158.512 243.697,161.74 246.432,161.76C249.031,161.778 248.887,158.829 248.887,158.829L253.11,147.272"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M229.078,153.986C231.671,154.369 238.708,155.619 244.283,154.942C245.239,154.825 245.94,153.984 245.894,153.022C245.758,150.115 245.554,144.295 246.067,143.576C246.756,142.611 247.789,147.57 247.789,147.57L253.574,147.226C253.574,147.226 251.696,141.059 250.568,138.214C250.293,137.521 250.088,136.805 249.96,136.07C249.568,133.826 247.991,128.799 241.73,128.931C241.73,128.931 238.085,134.865 233.423,128.762C233.423,128.762 228.828,127.029 225.709,135.035L223.165,144.581L228.505,147.04C228.505,147.04 228.709,144.285 229.015,143.935C229.464,143.423 228.652,150.232 228.208,152.782C228.108,153.357 228.5,153.901 229.078,153.986"
+        android:strokeWidth="1"
+        android:fillColor="#3E6883"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M237.462,142.164L234.542,142.164C234.361,142.16 234.188,142.235 234.066,142.368C233.943,142.501 233.885,142.68 233.906,142.859L234.516,149.932C234.557,150.321 234.882,150.62 235.273,150.627L238.193,150.627C238.374,150.631 238.548,150.556 238.669,150.423C238.792,150.29 238.85,150.111 238.829,149.932L238.219,142.859C238.178,142.469 237.854,142.171 237.462,142.164"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M223.592,144.785C223.592,144.785 222.547,152.657 223.535,153.509C224.912,154.697 233.21,150.165 234.216,149.464C234.279,149.42 234.355,149.403 234.431,149.415C234.914,149.496 237.976,149.732 238.015,147.679C238.015,147.637 238.004,147.43 237.999,147.388C237.954,146.993 237.221,144.852 234.088,146.964L227.314,149.52L228.025,146.834"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M233.422,128.762C233.422,128.762 234.554,131.998 239.027,131.812C242.012,131.687 242.5,128.954 242.5,128.954C242.5,128.954 239.356,128.69 240.845,125.335L235.151,125.236C235.151,125.236 236.686,129.287 233.422,128.762"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M233.369,117.227L233.364,114.477C233.354,114.25 233.428,114.029 233.571,113.852C233.848,113.51 234.326,112.972 234.631,112.904C234.631,112.904 235.335,111.447 236.969,110.919C236.969,110.919 235.458,109.668 236.348,109.088C236.407,109.05 236.442,108.986 236.454,108.917C236.497,108.661 236.682,108.084 237.469,108.2C237.557,108.213 237.648,108.181 237.704,108.111C237.867,107.91 238.263,107.571 238.828,108.079C238.828,108.08 240.713,107.376 240.11,108.959C240.11,108.959 241.643,109.989 239.205,110.743C239.205,110.743 241.994,111.522 242.045,113.03C242.045,113.03 243.377,113.508 243.251,114.814C243.125,116.121 242.96,119.665 242.96,119.665C242.96,119.665 242.719,123.704 242.125,125.197C242.097,125.268 242.066,125.328 242.023,125.395C241.651,125.971 240.153,128.867 237.547,127.983C234.65,127.001 233.598,124.178 233.694,121.227C233.671,120.941 233.417,117.755 233.369,117.227"
+        android:strokeWidth="1"
+        android:fillColor="#191818"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M234.919,122.205C234.919,122.205 233.297,119.437 234.052,116.78C234.807,114.124 234.947,114.04 236.568,113.817C238.19,113.593 241.406,113.872 241.797,114.572C242.189,115.271 242.496,116.026 242.468,116.893C242.441,117.742 242.95,120.845 241.709,122.285C241.658,122.344 241.584,122.376 241.506,122.377C241.262,122.38 240.749,122.337 240.539,122.177C239.892,121.683 239.189,121.284 238.973,121.366C238.806,121.43 238.274,121.758 237.575,121.45C236.876,121.143 235.674,122.96 234.919,122.205"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M235.608,123.278C235.608,123.278 236.355,123.952 237.39,123.567C238.426,123.182 239.004,123.446 239.004,123.446C239.004,123.446 240.424,124.121 240.858,123.206C240.858,123.206 239.196,122.724 238.98,122.652C238.763,122.58 237.752,122.435 237.077,122.748C236.403,123.061 235.849,123.326 235.608,123.278"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M106.336,160.021C106.336,160.021 106.022,145.064 112.737,141.931C112.737,141.931 111.244,109.4 121.242,109.848C121.242,109.848 124.077,94.925 129.6,96.567C135.12,98.208 136.165,111.489 134.822,127.157C134.822,127.157 146.163,126.113 144.969,141.483C144.969,141.483 151.684,146.855 150.939,159.838L106.336,160.021Z"
+        android:strokeWidth="1"
+        android:fillColor="#B8E0FA"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M128.775,159.925l-0.926,0.015l0,-51.855l0.604,0z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M127.99,129.983C127.973,129.973 126.333,129.007 124.642,127.497C122.353,125.455 121.06,123.443 120.799,121.517L121.266,121.285C121.858,125.649 128.254,129.11 128.318,129.147L127.99,129.983Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M128.204,142.556L128.252,141.497C128.32,141.432 134.572,135.693 135.871,132.365L136.402,132.625C135.068,136.043 128.484,142.292 128.204,142.556"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M128,154.657C127.979,154.651 125.908,154.072 123.794,152.892C120.963,151.312 119.336,149.375 119.09,147.289L119.683,147.189C120.242,151.916 128.3,153.097 128.255,154.156L128,154.657Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M13.495,41.03C7.93,41.172 4.745,49.1 4.479,52.865C3.345,68.982 -6.509,80.476 -5.597,105.581C-4.999,122.031 0.767,138.932 6.866,141.89C18.609,147.588 26.487,134.898 27.813,123.063C29.139,111.229 29.934,94.016 21.184,72.499C16.326,60.551 24.639,40.746 13.495,41.03"
+        android:strokeWidth="1"
+        android:fillColor="#B8E0FA"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M9.699,87.293C9.682,87.272 3.096,79.443 3.538,73.603L4.141,73.653C3.72,79.228 10.142,86.856 10.158,86.877L9.699,87.293Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M13.056,143.915C12.019,139.446 9.691,117.049 9.63,92.803C9.593,78.082 10.389,62.672 12.817,50.166L13.47,50.285C11.051,62.75 10.257,78.118 10.294,92.803C10.355,116.999 12.672,139.325 13.704,143.774L13.056,143.915Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M10.322,115.773C10.346,115.733 17.991,103.136 19.169,98.059L19.819,98.202C18.617,103.377 10.92,116.062 10.895,116.103L10.322,115.773Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M46.171,146.898C51.539,140.923 55.373,131.571 52.306,112.088C49.238,92.605 46.682,88.189 41.827,87.41C36.971,86.631 33.903,89.748 32.625,96.502C31.347,103.256 31.603,110.01 29.558,112.607C27.513,115.205 15.757,129.753 22.401,142.222C29.047,154.691 40.293,151.314 46.171,146.898"
+        android:strokeWidth="1"
+        android:fillColor="#B8E0FA"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M32.686,150.901C34.462,147.012 37.856,136.382 40,124.558C41.438,116.628 42.316,108.154 41.77,100.807L41.139,100.851C41.681,108.146 40.808,116.564 39.379,124.447C37.245,136.216 33.874,146.78 32.112,150.639L32.686,150.901Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M38.018,133.479C37.617,133.93 47.028,127.727 48.81,121.61L48.223,121.435C46.509,127.322 38.029,132.677 38.005,132.693L38.018,133.479Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M35.058,144.609C35.042,144.587 29.575,136.939 28.756,131.257L28.183,131.358C29.026,137.212 34.585,144.986 34.601,145.008L35.058,144.609Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M33.081,108.976l0.187,5.23l-4.819,0l0.709,-5.23z"
+        android:strokeWidth="1"
+        android:fillColor="#B6836A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M26.755,104.954C26.735,113.49 35.472,112.38 35.725,103.815C35.744,95.279 27.008,96.389 26.755,104.954"
+        android:strokeWidth="1"
+        android:fillColor="#B6836A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M38.482,137.169C42.261,155.858 38.077,169.32 37.033,184.914L34.579,184.993L32.284,148.518L31.922,145.52C30.75,149.716 29.138,154.268 28.083,159.901C27.681,168.339 27.277,176.775 26.875,185.212L23.575,185.132C23.576,185.126 21.574,159.846 21.582,159.835C22.202,154.286 21.979,147.706 24.961,137.566L38.482,137.169Z"
+        android:strokeWidth="1"
+        android:fillColor="#DDA7A2"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M21.036,137.777C22.555,144.704 12.538,146.082 19.759,136.349L21.036,137.777Z"
+        android:strokeWidth="1"
+        android:fillColor="#B6836A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M37.818,127.925C37.714,127.216 37.604,126.513 37.488,125.835C36.955,122.707 36.892,119.871 36.892,119.871C36.892,119.871 37.602,123.473 38.085,125.04C38.88,127.625 39.277,128.619 39.277,128.619C39.277,128.619 38.608,128.351 37.818,127.925M42.26,122.455C41.308,119.028 39.277,113.11 33.219,113.09C31.693,113.084 29.535,113.905 28.647,112.74C22.377,114.303 21.184,121.859 20.19,126.432C19.592,129.18 19.395,133.192 19.023,135.816C18.974,136.16 18.663,137.558 19.49,137.855C20.458,138.188 21.172,138.588 21.453,137.666C22.376,134.643 23.906,128.253 24.763,124.245C24.949,123.376 25.36,121.859 25.36,122.256C25.36,122.701 24.305,136.427 24.962,137.566C25.786,138.996 36.592,138.48 38.482,137.169C38.749,136.984 38.611,134.444 38.265,131.372C41.345,134.229 43.382,135.334 44.845,132.993C45.612,131.766 43.254,126.034 42.26,122.455"
+        android:strokeWidth="1"
+        android:fillColor="#8FB6CF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M34.528,184.186L37.043,184.76C37.284,185.792 39.197,190.215 36.933,191.205C36.042,191.702 35.351,192.159 34.404,191.205C32.36,189.97 34.579,184.994 34.528,184.186"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M26.874,185.212C26.797,185.74 27.31,189.512 26.758,189.854C26.577,190.059 26.366,190.141 26.269,190.173C23.427,190.179 20.189,190.184 17.348,190.19C15.77,188.455 23.707,187.964 23.574,185.132C24.674,185.16 25.774,185.186 26.874,185.212"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M30.147,120.354L27.433,120.354C27.077,120.354 26.813,120.643 26.845,120.999L27.419,127.575C27.451,127.931 27.765,128.22 28.121,128.22L30.835,128.22C31.192,128.22 31.456,127.931 31.424,127.575L30.849,120.999C30.818,120.643 30.504,120.354 30.147,120.354"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M34.107,126.979L33.626,127.87C29.928,128.221 25.498,123.405 30.942,123.733C32.382,124.225 33.493,125.303 34.528,126.059"
+        android:strokeWidth="1"
+        android:fillColor="#B6836A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M29.383,108.496C29.801,109.302 28.986,112.468 27.154,112.433C26.973,112.429 26.795,112.505 26.675,112.642C26.436,112.912 25.909,113.274 24.938,112.91C24.738,112.835 24.514,112.866 24.339,112.987C23.8,113.357 22.612,113.958 21.882,112.68C21.753,112.454 21.496,112.329 21.237,112.359C20.438,112.451 18.906,112.436 19.307,110.871C19.307,110.871 19.378,109.799 18.194,109.928C17.159,110.041 16.207,109.513 16.386,108.545C16.436,108.275 16.32,108 16.087,107.855C15.351,107.4 14.125,106.35 15.741,105.086C15.741,105.086 16.681,104.606 15.391,103.192C15.345,103.142 15.306,103.085 15.278,103.023C15.144,102.737 14.875,101.916 15.738,101.247C16.803,100.421 15.8,98.799 16.758,98.529C16.758,98.529 17.883,98.37 18.047,97.349C18.209,96.327 17.736,93.885 20.933,94.566C24.057,95.231 20.64,91.505 25.665,92.175C25.882,92.204 26.101,92.127 26.248,91.964C26.692,91.475 27.777,90.55 29.103,91.352C29.247,91.439 29.416,91.472 29.58,91.44C30.286,91.302 32.247,91.07 33.014,92.553C33.107,92.733 33.271,92.862 33.47,92.893C33.955,92.967 34.793,93.23 34.585,94.155C34.315,95.357 35.024,94.959 35.024,94.959C35.024,94.959 36.567,94.209 37.442,95.382C37.556,95.535 37.722,95.639 37.911,95.661C38.633,95.747 40.366,96.195 40.058,98.521C40.022,98.792 40.154,99.057 40.393,99.19C40.855,99.448 41.513,100.003 41.369,101.034C41.332,101.307 41.48,101.574 41.725,101.699C42.433,102.061 43.669,102.879 43.322,104.053C43.245,104.316 43.314,104.6 43.525,104.776C43.988,105.161 44.552,105.982 43.525,107.343C43.416,107.487 43.366,107.67 43.396,107.849C43.484,108.381 43.488,109.564 41.965,110.08C41.745,110.154 41.581,110.341 41.532,110.568C41.411,111.125 40.976,112.084 39.407,111.938C39.147,111.914 38.89,112.039 38.761,112.266C38.464,112.789 37.787,113.598 36.587,113.171C36.49,113.136 36.389,113.119 36.287,113.128C35.442,113.201 31.342,113.351 31.951,109.288C31.978,109.111 32.071,108.952 32.216,108.846C33.05,108.228 35.659,105.717 35.043,101.476C35.018,101.305 35.008,100.831 34.812,100.723C33.415,99.956 33.212,98.852 32.753,98.933C32.098,99.048 32.098,99.169 30.771,100.668C29.314,102.314 28.555,101.405 27.621,101.958C26.373,102.695 27.244,105.187 27.482,105.729"
+        android:strokeWidth="1"
+        android:fillColor="#191818"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M89.745,120.329C89.745,120.329 94.275,124.567 95.989,125.712C97.409,126.66 101.733,128.647 101.733,128.647L100.079,130.879C100.079,130.879 95.964,129.961 94.697,129.371C93.397,128.767 89.96,126.142 89.96,126.142L89.745,120.329Z"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M68.229,191.055L66.593,194.161C66.368,194.589 66.518,195.118 66.936,195.361C68.912,196.514 74.315,199.459 76.648,198.665C76.975,198.554 77.055,198.126 76.801,197.893C75.313,196.523 70.686,192.153 71.044,191.08L68.229,191.055Z"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M68.078,191.344L71.241,191.765L86.881,155.651L78.736,139.291L78.641,161.683C78.641,161.683 71.377,176.124 70.217,181.789C69.073,187.382 68.078,191.344 68.078,191.344"
+        android:strokeWidth="1"
+        android:fillColor="#B96161"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M78.225,134.067L90.498,134.231C90.498,134.231 101.136,187.58 105.391,191.181L103.1,192.817C103.1,192.817 90.008,174.979 91.153,163.524C91.153,163.524 74.952,137.504 78.225,134.067"
+        android:strokeWidth="1"
+        android:fillColor="#C66A61"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M86.886,113.543L86.098,107.966C86.098,107.966 89.527,108.119 89.447,103.335C89.432,102.449 89.37,100.932 88.553,99.781L85.416,98.778L83.431,105.117L81.544,112.811L84.886,114.937L87.189,114.876L86.886,113.543Z"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M103.099,192.817L103.604,196.291C103.673,196.769 104.106,197.109 104.587,197.06C106.863,196.829 112.965,196.031 114.384,194.017C114.583,193.735 114.397,193.342 114.054,193.302C112.045,193.07 105.732,192.259 105.39,191.181L103.099,192.817Z"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M75.555,141.443L76.409,131.004L80.822,132.264L77.724,143.001C77.724,143.001 76.946,149.232 74.331,147.396C71.085,145.117 75.444,142.723 75.555,141.443"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M86.349,113.518C85.167,114.848 83.852,112.389 81.266,113.054C78.822,113.683 76.641,129.294 76.41,131.005C76.396,131.104 76.389,131.157 76.389,131.157C77.056,133.024 80.121,132.425 80.714,132.29L80.279,134.241L90.498,134.231C94.486,123.193 87.531,112.188 86.349,113.518"
+        android:strokeWidth="1"
+        android:fillColor="#B1DAEF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M89.453,103.375C89.453,103.375 91.917,101.784 90.281,97.541C90.281,97.541 89.917,95.723 87.371,95.783C87.371,95.783 83.31,92.146 79.491,95.238C75.672,98.329 78.279,101.42 78.279,101.42C78.279,101.42 73.187,106.027 74.945,112.271C74.945,112.271 76.824,116.332 79.006,114.938C81.188,113.543 81.067,116.574 82.219,112.513C83.37,108.452 85.371,109.058 84.583,102.208C84.583,102.208 87.31,102.39 87.916,99.602C87.916,99.602 89.363,100.283 89.453,103.375"
+        android:strokeWidth="1"
+        android:fillColor="#663014"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M98.481,132.445C98.997,132.731 100.957,133.283 101.605,133.412C101.761,133.444 102.157,133.464 102.322,133.151C103.238,131.413 105.996,127.172 106.168,126.917C106.355,126.64 106.338,126.564 106.095,126.407C105.934,126.302 103.732,125.683 103.093,125.497C102.876,125.434 102.687,125.78 102.618,125.862C101.553,127.135 98.65,131.533 98.464,131.811C98.239,132.147 98.272,132.329 98.481,132.445"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M104.641,129.027C105.514,128.844 104.406,130.507 103.985,131.1C103.6,131.642 103.254,132.18 102.992,132.053C102.73,131.926 102.942,131.077 103.267,130.405C103.593,129.733 104.11,129.138 104.641,129.027"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M149.657,163.433C134.458,163.704 134.46,186.294 149.657,186.563C164.856,186.292 164.854,163.702 149.657,163.433M149.542,188.04C132.299,187.731 132.302,162.107 149.542,161.8C166.784,162.11 166.782,187.734 149.542,188.04"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M167.232,168.266C167.232,168.942 167.206,169.71 165.971,169.71L150.785,169.496C149.232,169.451 149.079,168.398 148.725,167.466C148.247,165.722 164.077,166.988 164.988,166.624C166.467,166.667 167.398,167.232 167.232,168.266"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M168.079,162.674C164.577,162.006 153.289,156.415 150.544,163.11C149.633,168.499 163.942,166.571 166.688,167.24L172.607,181.103L175.296,179.717L171.434,165.786C171.434,165.786 170.484,163.434 168.079,162.674"
+        android:strokeWidth="1"
+        android:fillColor="#3E6883"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M151.194,143.467C151.84,143.792 152.756,143.683 153.052,143.143L154.172,139.926C154.812,138.676 152.151,137.866 151.63,138.94L150.056,141.853C149.785,142.323 150.142,142.649 150.788,142.9"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M158.351,134.352C159.317,137.178 157.292,141.894 155.558,141.279C151.958,140.004 150.939,140.155 149.972,137.329C147.44,130.639 156.134,127.785 158.351,134.352"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M155.774,133.652C158.618,134.564 159.187,130.468 156.637,130.469C156.163,129.901 151.395,127.024 148.467,131.385C147.608,132.664 147.934,135.7 149.12,137.888C149.155,137.953 149.195,138.014 149.239,138.073C149.676,138.656 150.465,139.673 150.754,139.663C151.68,139.631 152.416,138.928 152.594,138.459C152.754,138.037 151.772,137.226 151.589,136.671C151.066,135.085 152.575,134.472 153.162,136.012C153.589,135.937 154.899,134.949 155.3,133.892C155.374,133.699 155.578,133.589 155.774,133.652"
+        android:strokeWidth="1"
+        android:fillColor="#663014"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M151.209,141.275C156.984,141.168 159.331,152.119 161.023,159.845C159.913,162.328 153.085,166.173 150.629,164.504C150.077,162.775 147.274,152.992 146.864,149.632C146.427,146.053 149.001,141.229 151.209,141.275"
+        android:strokeWidth="1"
+        android:fillColor="#C66A61"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M169.73,148.083C170.13,148.103 170.967,147.73 170.736,148.547C170.736,148.547 169.945,153.87 169.945,153.87C169.902,154.56 168.939,154.072 168.574,154.093C168.357,154.059 168.197,154.024 168.24,153.741L169.061,148.51C169.105,148.226 169.167,148.15 169.454,148.116"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M167.274,154.104C167.773,154.177 169.519,155.115 169.974,154.604L171.065,153.679C171.815,152.986 171.032,150.814 170.141,151.246L169.003,151.734L167.267,151.734L167.274,154.104Z"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M154.223,144.055C151.854,141.713 148.604,145.571 150.032,147.915C150.032,147.915 155.728,153.812 155.728,153.812C156.219,154.321 157.177,155.45 158.56,155.237L167.379,154.945L167.907,151.18L159.171,151.081L154.223,144.055Z"
+        android:strokeWidth="1"
+        android:fillColor="#C66A61"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M166.437,160.321C166.421,161.54 164.622,161.072 163.57,161.226C161.824,160.865 147.336,163.031 147.22,160.451C147.448,157.997 160.372,159.582 163.223,159.411C163.471,159.396 163.719,159.387 163.968,159.395C165.019,159.433 166.288,159.251 166.437,160.321"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M150.339,169.417C149.811,169.524 149.252,168.844 148.721,167.429C146.829,162.381 145.071,149.948 144.365,148.004C144.295,147.81 144.241,147.61 144.222,147.404C144.12,146.306 144.981,146.917 145.073,146.969C146.984,148.042 150.124,163.57 151.081,166.086C151.126,166.204 151.161,166.325 151.186,166.449C151.542,168.177 151.439,169.549 150.339,169.417"
+        android:strokeWidth="1"
+        android:fillColor="#6A7F90"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <group>
+      <clip-path
+          android:pathData="M-15,198.799l375.059,0l0,-187.799l-375.059,0z"/>
+      <path
+          android:pathData="M165.088,183.348l1.51,0l0,-13.895l-1.51,0z"
+          android:strokeWidth="1"
+          android:fillColor="#6A7F90"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M-15,198.799l375.059,0l0,-187.799l-375.059,0z"/>
+      <path
+          android:pathData="M150.942,175.387C150.971,177.38 147.84,177.38 147.87,175.387C147.841,173.395 150.971,173.395 150.942,175.387"
+          android:strokeWidth="1"
+          android:fillColor="#6A7F90"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M-15,198.799l375.059,0l0,-187.799l-375.059,0z"/>
+      <path
+          android:pathData="M169.386,184.394C169.307,189.008 162.445,189.007 162.366,184.394C162.445,179.78 169.308,179.781 169.386,184.394"
+          android:strokeWidth="1"
+          android:fillColor="#6A7F90"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M-15,198.799l375.059,0l0,-187.799l-375.059,0z"/>
+      <path
+          android:pathData="M168.412,184.404C168.397,187.758 163.296,187.758 163.282,184.404C163.297,181.049 168.397,181.049 168.412,184.404"
+          android:strokeWidth="1"
+          android:fillColor="#FFFFFF"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M-15,198.799l375.059,0l0,-187.799l-375.059,0z"/>
+      <path
+          android:pathData="M173.867,184.038l-1.113,0.474l-10.007,-23.518l1.114,-0.474z"
+          android:strokeWidth="1"
+          android:fillColor="#6A7F90"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M-15,198.799l375.059,0l0,-187.799l-375.059,0z"/>
+      <path
+          android:pathData="M178.549,182.949L173.486,185.104C173.053,185.296 172.849,184.786 172.736,184.468C172.729,184.46 178.204,182.142 178.204,182.138C178.726,181.907 179.08,182.732 178.549,182.949"
+          android:strokeWidth="1"
+          android:fillColor="#6A7F90"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M-15,198.799l375.059,0l0,-187.799l-375.059,0z"/>
+      <path
+          android:pathData="M180.698,180.975C181.29,180.561 180.172,179.853 179.372,179.864C178.632,179.86 175.331,180.292 175.201,179.394L172.367,180.475C172.724,181.482 173.653,184.187 174.83,183.551C175.635,183.231 179.884,181.544 180.698,180.975"
+          android:strokeWidth="1"
+          android:fillColor="#4A4A4A"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M-15,198.799l375.059,0l0,-187.799l-375.059,0z"/>
+      <path
+          android:pathData="M166.61,184.398C166.625,185.389 165.068,185.389 165.082,184.398C165.068,183.407 166.625,183.407 166.61,184.398"
+          android:strokeWidth="1"
+          android:fillColor="#6A7F90"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+  </group>
+</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_illustration_tracing_on.xml b/Corona-Warn-App/src/main/res/drawable/ic_illustration_tracing_on.xml
new file mode 100644
index 0000000000000000000000000000000000000000..74eb464f309d2e284b62e7a6356e26c2b073062b
--- /dev/null
+++ b/Corona-Warn-App/src/main/res/drawable/ic_illustration_tracing_on.xml
@@ -0,0 +1,326 @@
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+    android:width="360dp"
+    android:height="220dp"
+    android:viewportWidth="360"
+    android:viewportHeight="220">
+  <group>
+    <clip-path
+        android:pathData="M0.25,0h359.75v220h-359.75z"/>
+    <path
+        android:pathData="M273.65,57.454C273.547,59.088 272.138,60.311 270.528,60.214C268.919,60.117 267.674,58.734 267.777,57.1C267.88,55.467 269.289,54.244 270.899,54.34C272.509,54.437 273.753,55.82 273.65,57.454Z"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M286.863,58.512C286.301,67.579 278.605,74.465 269.698,73.919C260.789,73.373 254.002,65.599 254.564,56.532C255.126,47.466 262.822,40.58 271.73,41.126C280.637,41.672 287.425,49.446 286.863,58.512Z"
+        android:strokeAlpha="0.35999998"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.35999998"/>
+    <path
+        android:pathData="M291.267,58.518C290.552,69.886 280.758,78.519 269.42,77.834C258.083,77.149 249.445,67.403 250.16,56.036C250.875,44.669 260.669,36.036 272.007,36.72C283.344,37.405 291.982,47.151 291.267,58.518Z"
+        android:strokeAlpha="0.14"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.14"/>
+    <path
+        android:pathData="M295.508,58.775C294.646,72.488 282.83,82.902 269.154,82.076C255.477,81.25 245.056,69.492 245.919,55.779C246.781,42.067 258.597,31.652 272.273,32.478C285.95,33.304 296.371,45.062 295.508,58.775Z"
+        android:strokeAlpha="0.04"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.04"/>
+    <path
+        android:pathData="M282.458,58.246C282.049,64.881 276.45,69.913 269.974,69.514C263.499,69.115 258.56,63.433 258.969,56.799C259.378,50.164 264.978,45.132 271.453,45.531C277.928,45.93 282.867,51.612 282.458,58.246Z"
+        android:strokeAlpha="0.5"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.5"/>
+    <path
+        android:pathData="M278.005,57.694C277.75,61.747 274.257,64.813 270.228,64.57C266.2,64.327 263.118,60.864 263.373,56.811C263.628,52.758 267.121,49.692 271.15,49.935C275.178,50.178 278.26,53.641 278.005,57.694Z"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M319.23,65.532C317.22,68.19 316.905,74.736 320.64,74.489C323.81,74.28 321.956,67.366 321.608,65.931C321.224,64.348 321.134,65.693 320.801,64.798"
+        android:strokeWidth="1"
+        android:fillColor="#FFC1AF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M306.395,19.746l0.675,8.585l-7.909,0.641l-1.376,-9.127z"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M296.165,12.665C296.007,26.659 309.449,26.227 309.946,12.796C309.896,-0.922 296.474,-1.048 296.165,12.665"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M314.955,67.154C320.875,89.327 316.041,121.398 314.729,147.1L310.692,147.295C310.692,147.295 307.708,105.582 306.575,96.103C306.23,93.225 305.157,87.074 304.617,84.401C304.576,84.198 304.131,83.32 304.096,84.355C303.872,90.908 301.041,98.157 300.501,105.369C299.239,122.224 299.763,133.935 299.321,147.836C299.321,147.836 294.682,150.682 294.673,150.652C293.633,146.79 290.502,114.901 290.425,110.114C290.409,109.132 288.808,88.702 293.681,67.821L314.955,67.154Z"
+        android:strokeWidth="1"
+        android:fillColor="#385460"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M274.37,61.957C272.746,62.537 269.653,58.459 271.905,57.367C277.153,54.821 281.584,47.159 282.096,46.599C285.585,42.489 288.116,33.63 292.069,29.029C295.27,26.445 295.396,27.276 298.807,26.544C301.37,29.941 305.758,27.966 307.02,26.598C307.17,26.436 307.582,26.629 307.649,26.588C313.221,27.275 316.275,30.67 319.134,36.104C321.044,39.734 322.285,45.623 322.418,49.7C322.647,56.684 322.566,61.948 322.199,66.807C322.164,67.264 320.14,67.137 318.096,66.823C318.085,66.821 316.836,50.441 316.828,50.436C316.154,46.668 314.673,41.334 313.988,38.985C314.204,46.021 314.402,57.552 315.374,66.484C315.421,66.921 315.356,67.75 314.96,67.71C314.96,67.71 302.143,69.52 296.916,68.475C296.168,68.325 293.617,68.056 293.565,67.51C292.706,58.631 295.247,48.873 294.67,38.985C292.999,45.244 282.294,59.131 274.37,61.957"
+        android:strokeWidth="1"
+        android:fillColor="#E8A5A1"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M312.971,28.399C312.332,28.078 312.679,28.136 310.777,27.417C309.236,26.834 307.419,27.063 306.961,26.627C305.998,25.712 305.538,23.888 305.886,22.255C306.074,21.372 306.419,21.009 306.609,20.785C310.876,15.767 308.204,7.663 308.204,7.663C308.204,7.663 305.78,12.617 296.821,15.921C296.821,15.921 297.162,18.242 298.452,19.896C298.546,20.016 299.518,20.917 299.536,22.308C299.553,23.672 299.538,25.055 298.582,27.135C297.414,29.676 294.517,30.256 292.334,29.352C290.705,28.677 290.07,27.032 290.014,25.417C290.014,25.417 294.473,25.733 293.482,20.737C292.741,16.982 291.903,8.79 295.656,4.103C295.71,4.039 295.763,3.974 295.816,3.909C295.853,3.86 295.896,3.812 295.939,3.767C296.016,3.678 296.096,3.591 296.175,3.507C296.251,3.43 296.327,3.352 296.403,3.274C297.577,2.113 299.113,1.247 301.112,0.839C301.112,0.839 308.733,-0.117 309.989,4.358C309.989,4.358 312.075,5.434 312.293,9.372C312.507,13.311 311.832,14.744 311.665,17.761C311.464,21.428 311.482,24.736 316.23,24.76C316.23,24.76 315.78,26.898 312.971,28.399"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M275.699,64.809C275.72,65.327 275.243,65.724 274.729,65.649C273.357,65.45 270.659,64.579 270.536,64.613C269.66,64.96 267.157,54.196 266.99,53.563C266.941,53.377 266.995,53.171 267.21,52.913C267.42,52.661 267.753,52.549 268.075,52.61C268.86,52.758 270.992,53.16 271.882,53.328C272.229,53.394 272.528,53.613 272.692,53.926C273.834,56.112 275.672,64.272 275.698,64.796C275.699,64.801 275.699,64.805 275.699,64.809"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M268.063,58.353C268.505,57.978 268.845,59.546 269.583,59.681C269.905,59.74 270.23,59.842 270.538,59.981C271.299,60.326 271.863,60.992 272.17,61.769C274.287,67.123 264.478,65.023 268.063,58.353"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M310.539,143.409L314.38,144.178C314.805,145.869 318.079,153.218 314.379,154.907C312.924,155.749 311.798,156.52 310.214,154.974C306.815,152.994 310.474,144.786 310.539,143.409"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M299.294,145.279C299.182,146.152 300.125,152.348 299.225,152.925C298.932,153.268 298.588,153.409 298.428,153.464C293.75,153.547 288.418,153.642 283.741,153.725C281.098,150.91 294.153,149.894 293.859,145.235C295.671,145.25 297.482,145.264 299.294,145.279"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M102.344,81.408C102.235,83.14 100.741,84.437 99.035,84.334C97.329,84.232 96.01,82.766 96.119,81.034C96.228,79.302 97.722,78.006 99.428,78.108C101.134,78.211 102.453,79.677 102.344,81.408Z"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M116.35,82.53C115.754,92.141 107.597,99.44 98.154,98.861C88.712,98.282 81.518,90.042 82.113,80.431C82.709,70.821 90.866,63.522 100.308,64.101C109.751,64.679 116.945,72.92 116.35,82.53Z"
+        android:strokeAlpha="0.35999998"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.35999998"/>
+    <path
+        android:pathData="M121.018,82.537C120.26,94.586 109.878,103.737 97.861,103.011C85.843,102.286 76.686,91.954 77.445,79.905C78.202,67.856 88.585,58.705 100.602,59.431C112.62,60.156 121.776,70.488 121.018,82.537Z"
+        android:strokeAlpha="0.14"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.14"/>
+    <path
+        android:pathData="M125.514,82.808C124.6,97.344 112.075,108.383 97.578,107.508C83.08,106.632 72.034,94.169 72.949,79.633C73.863,65.098 86.388,54.059 100.885,54.934C115.382,55.81 126.429,68.273 125.514,82.808Z"
+        android:strokeAlpha="0.04"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.04"/>
+    <path
+        android:pathData="M111.681,82.248C111.248,89.281 105.312,94.615 98.448,94.192C91.584,93.769 86.348,87.746 86.782,80.714C87.215,73.681 93.152,68.347 100.015,68.77C106.879,69.193 112.115,75.216 111.681,82.248Z"
+        android:strokeAlpha="0.5"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.5"/>
+    <path
+        android:pathData="M106.96,81.663C106.69,85.959 102.987,89.209 98.717,88.951C94.447,88.694 91.18,85.023 91.45,80.727C91.721,76.431 95.423,73.181 99.694,73.439C103.964,73.696 107.231,77.367 106.96,81.663Z"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M80.863,50.059C80.863,50.059 89.991,64.711 95.676,74.96C96.077,75.683 98.442,79.288 98.567,80.024C98.567,80.024 98.128,85.089 95.957,83.853C88.81,75.795 77.518,57.473 74.133,53.953C70.353,49.97 80.863,50.059 80.863,50.059"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M65.299,171.663L55.899,164.633C54.631,164.118 52.686,163.776 50.866,164.169C50.049,164.346 49.943,163.736 49.957,164.492L48.979,167.623C48.095,169.702 48.459,171.303 50.842,172.216C54.283,173.169 62.097,177.297 65.598,174.678C67.126,173.909 67.269,172.435 65.299,171.663"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M83.91,169.07L73.527,162.782C72.217,162.381 70.654,162.321 68.876,162.873C68.077,163.121 68.145,162.529 67.998,163.274L67.299,166.479C66.601,168.628 67.264,170.117 69.717,170.817L79.101,172.828C81.602,173.264 88.725,171.164 83.91,169.07"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M47.951,83.753C48.154,80.922 77.162,80.03 77.355,84.465C79.14,125.383 77.436,153.224 74.661,162.451C74.615,162.605 74.556,162.754 74.467,162.888C73.453,164.423 71.093,164.442 69.104,163.473C68.407,163.133 67.998,162.395 68.037,161.621C68.591,150.597 67.468,127.373 63.294,105.422C63.237,105.12 63.168,104.413 63.134,104.718C63.134,104.718 56.435,161.729 56.328,165.62C56.265,167.908 52.94,168.37 51.681,167.588C51.251,167.321 49.92,166.256 49.877,165.649C48.395,144.602 46.997,97.064 47.951,83.753"
+        android:strokeWidth="1"
+        android:fillColor="#8C8C99"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M73.325,21.408C74.041,6.479 46.85,12.335 57.871,28.491C59.455,30.879 60.851,34.474 64.368,35.29L65.483,25.073C68.96,22.599 72.125,20.681 73.325,21.408"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M58.444,24.488C56.386,23.412 56.019,25.92 56.868,27.629C57.498,28.953 59.343,30.642 59.618,28.742C59.346,28.019 59.21,24.973 58.444,24.488"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M94.332,88.33C94.267,88.778 99.296,87.204 99.451,87.249C100.382,87.631 103.029,75.97 103.378,75.499C103.583,75.357 103.083,74.466 102.55,74.411L97.878,75.171C96.513,74.432 94.374,86.916 93.938,87.378C93.767,87.848 94.04,88.072 94.332,88.33"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M102.172,80.599C101.705,80.193 101.32,81.862 100.532,81.997C99.672,82.144 98.785,82.575 98.234,83.207C94.244,90.093 106.114,88.15 102.172,80.599"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M48.24,90.654C47.133,89.236 45.078,86.597 43.215,84.169C36.871,75.953 47.685,63.636 52.74,57.542L44.743,53.067C34.837,73.93 29.018,79.136 45.628,93.633C46.143,97.617 53.848,99.922 55.443,95.595C55.972,92.503 51.389,90.108 48.24,90.654"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M75.216,40.972C71.848,37.469 66.233,38.07 60.958,37.752C56.516,38.842 52.907,40.043 50.248,41.567C49.666,41.83 49.088,42.218 48.515,42.712C47.302,43.644 46.385,44.691 45.787,45.887C40.311,53.843 35.813,69.568 34.232,74.882C33.557,77.15 40.356,79.588 41.788,78.211C44.527,75.578 47.697,64.208 47.697,64.208L47.75,87.131C47.752,87.799 48.132,88.407 48.733,88.699C55.685,92.075 71.216,90.926 76.386,88.552C77.095,88.227 77.563,87.535 77.588,86.755L77.808,79.744C78.045,72.824 77.852,67.217 78.038,59.707L83,68.752C83.35,69.451 84.503,70.057 84.873,70.027C86.302,69.912 89.818,69.491 91.332,65.05C91.739,63.859 81.632,46.858 75.216,40.972"
+        android:strokeWidth="1"
+        android:fillColor="#B1DAEF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M64.229,41.713C66.078,41.982 67.865,40.677 67.919,38.76C67.919,38.76 68.258,29.21 68.258,29.21C68.319,27.518 66.982,26.082 65.288,26.023C63.44,25.751 61.653,27.058 61.598,28.974L59.923,38.103C59.863,39.797 62.535,41.652 64.229,41.713"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M73.338,21.389C72.786,15.549 64.889,16.089 60.013,19.727C59.723,20.726 59.234,22.566 58.487,24.093C58.902,26.15 59.142,29.406 59.885,31.355C61.11,33.279 65.264,36.856 68.015,36.584C72.793,34.655 73.867,24.885 73.338,21.389"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M66.035,30.883C66.035,30.883 69.514,30.936 69.514,30.936C70.187,30.966 69.91,31.793 69.799,32.194C69.32,34.159 65.963,33.868 65.542,31.997C65.397,31.592 65.437,30.864 66.035,30.883M73.073,19.279C73.073,19.279 75.848,12.639 72.433,11.065C70.496,10.172 67.62,10.03 65.523,11.078C63.337,12.171 61.678,11.428 59.9,12.618C54.296,16.432 54.309,19.663 56.23,25.45C56.523,24.211 56.935,24.269 57.484,23.312C58.882,25.06 59.231,24.71 59.3,27.73C59.32,28.374 59.581,29.254 59.231,29.604C58.73,30.105 59.529,31.056 59.684,31.352C60.91,33.276 64.5,37.515 68.011,37.211C70.402,37.003 71.603,32.751 72.534,29.899C71.403,32.736 71.312,29.76 69.588,29.858C68.612,29.973 65.566,29.406 64.843,30.307C64.36,30.877 63.549,31.098 62.902,30.664C61.443,29.941 60.855,29.135 60.542,27.999C60.453,27.514 60.365,27.075 60.287,26.673C60.263,26.495 60.239,26.313 60.215,26.122L60.186,26.122C59.895,24.439 59.91,23.23 61.16,20.911C61.163,20.814 60.856,18.118 63.642,17.7C63.679,17.623 63.639,17.561 63.544,17.512C66.607,16.713 70.099,17.321 73.073,19.279"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M208.087,130.546C207.758,135.758 203.264,139.66 198.129,139.351C192.994,139.042 189.025,134.631 189.354,129.419C189.682,124.207 194.177,120.306 199.312,120.614C204.446,120.923 208.416,125.335 208.087,130.546Z"
+        android:strokeWidth="4.6927188"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M250.237,133.923C248.445,162.846 223.895,184.812 195.479,183.07C167.063,181.328 145.412,156.529 147.204,127.606C148.996,98.683 173.546,76.717 201.961,78.459C230.377,80.201 252.029,105 250.237,133.923Z"
+        android:strokeAlpha="0.35999998"
+        android:strokeWidth="4.6927188"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.35999998"/>
+    <path
+        android:pathData="M264.286,133.942C262.006,170.204 230.761,197.743 194.595,195.559C158.429,193.375 130.873,162.284 133.154,126.022C135.435,89.761 166.68,62.222 202.845,64.406C239.011,66.59 266.568,97.681 264.286,133.942Z"
+        android:strokeAlpha="0.14"
+        android:strokeWidth="4.6927188"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.14"/>
+    <path
+        android:pathData="M277.816,134.759C275.065,178.503 237.373,211.726 193.744,209.091C150.115,206.456 116.873,168.949 119.625,125.205C122.376,81.461 160.068,48.239 203.697,50.874C247.325,53.509 280.568,91.016 277.816,134.759Z"
+        android:strokeAlpha="0.04"
+        android:strokeWidth="4.6927188"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.04"/>
+    <path
+        android:pathData="M236.187,133.074C234.882,154.237 217.018,170.291 196.362,169.018C175.707,167.745 159.95,149.619 161.254,128.456C162.559,107.292 180.423,91.238 201.079,92.511C221.734,93.785 237.491,111.911 236.187,133.074Z"
+        android:strokeAlpha="0.5"
+        android:strokeWidth="4.6927188"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.5"/>
+    <path
+        android:pathData="M221.98,131.312C221.165,144.241 210.024,154.022 197.172,153.246C184.321,152.471 174.49,141.424 175.304,128.496C176.118,115.567 187.26,105.786 200.111,106.562C212.963,107.337 222.793,118.383 221.98,131.312Z"
+        android:strokeWidth="4.6927188"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M187.374,219.093C186.692,211.443 186.21,203.784 185.287,196.141C183.357,180.233 180.713,164.424 178.393,148.565C170.318,147.526 164.696,146.836 164.696,146.836C164.696,146.836 149.836,144.466 149.628,151.276C149.42,158.087 166.177,161.538 166.177,161.538L167.532,161.538L168.73,171.443C168.73,171.443 155.649,187.243 156.588,192.515C157.528,197.788 165.736,195.493 165.736,195.493C165.736,195.493 160.913,209.871 164.613,213.663C167.324,216.449 170.06,215.226 170.06,215.226C170.06,215.226 163.199,221.447 166.293,226.985C167.648,229.422 175.64,230.129 175.64,230.129L188.555,229.721C187.703,226.245 187.311,222.672 187.391,219.093"
+        android:strokeWidth="1"
+        android:fillColor="#F7B994"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M191.815,258.877C186.936,259.559 182.427,256.162 181.736,251.285L164.937,131.759C164.256,126.88 167.653,122.371 172.53,121.68L220.438,114.952C225.318,114.266 229.831,117.665 230.517,122.545L247.316,242.062C247.997,246.944 244.596,251.454 239.715,252.141L191.815,258.877Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M240.048,252.1L192.139,258.836C187.259,259.517 182.751,256.114 182.068,251.235L165.27,131.717C164.938,129.373 165.552,126.994 166.976,125.103C168.401,123.212 170.518,121.966 172.863,121.638L220.763,114.902C225.641,114.221 230.151,117.617 230.842,122.495L247.632,241.996C247.969,244.342 247.359,246.725 245.936,248.621C244.513,250.516 242.394,251.768 240.048,252.1Z"
+        android:strokeWidth="3.351348"
+        android:fillColor="#00000000"
+        android:strokeColor="#4A4A4A"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M284.397,207.775C284.397,207.775 278.035,206.112 271.54,196.416C265.046,186.719 259.066,163.459 254.784,160.973C254.784,160.973 253.212,140.657 242.784,139.127C242.784,139.127 239.457,124.416 238.376,124.382C237.295,124.349 231.607,124.208 229.894,131.384C228.181,138.561 230.393,151.742 237.204,155.567C237.204,155.567 249.137,239.742 249.154,239.991C249.486,246.769 248.813,246.42 247.898,248.732C256.014,250.777 299.274,263.825 334.85,274.636L334.85,219.11L284.397,207.775Z"
+        android:strokeWidth="1"
+        android:fillColor="#F7B994"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M186.992,163.677L189.229,165.362C185.994,169.654 184.397,175.18 185.204,180.923C185.99,186.515 188.94,191.439 193.361,194.771C193.362,194.771 193.362,194.771 193.362,194.772L191.677,197.007C186.925,193.426 183.508,188.076 182.5,181.765L182.432,181.312C181.517,174.804 183.327,168.541 186.992,163.677ZM220.324,158.993C225.188,162.659 228.654,168.18 229.568,174.688C230.483,181.196 228.673,187.459 225.008,192.323L222.772,190.638C226.006,186.345 227.603,180.82 226.796,175.077C225.989,169.335 222.931,164.464 218.639,161.23Z"
+        android:strokeAlpha="0.24"
+        android:strokeWidth="1"
+        android:fillColor="#95B9CB"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"
+        android:fillAlpha="0.24"/>
+    <path
+        android:pathData="M191.465,167.047L193.701,168.733C191.329,171.88 190.158,175.932 190.75,180.143C191.308,184.112 193.351,187.622 196.421,190.059L196.732,190.299C196.732,190.299 196.732,190.299 196.733,190.299L195.047,192.535C191.436,189.814 188.833,185.757 188.044,180.97L187.977,180.533C187.278,175.556 188.662,170.767 191.465,167.047ZM216.953,163.465C220.673,166.268 223.323,170.49 224.023,175.467C224.722,180.444 223.338,185.234 220.534,188.954L218.299,187.269C220.671,184.121 221.842,180.068 221.25,175.857C220.658,171.646 218.416,168.073 215.269,165.701Z"
+        android:strokeAlpha="0.6"
+        android:strokeWidth="1"
+        android:fillColor="#95B9CB"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"
+        android:fillAlpha="0.6"/>
+    <path
+        android:pathData="M204.246,165.523C197.355,166.491 192.554,172.863 193.523,179.754C193.994,183.106 195.766,186.065 198.417,188.062C201.067,190.06 204.4,190.949 207.754,190.477C214.645,189.509 219.446,183.137 218.477,176.246C217.509,169.355 211.137,164.554 204.246,165.523ZM204.636,168.295C209.996,167.542 214.951,171.276 215.705,176.636C216.458,181.996 212.724,186.951 207.364,187.705C204.754,188.071 202.165,187.381 200.102,185.826C198.039,184.271 196.662,181.974 196.295,179.364C195.542,174.004 199.276,169.049 204.636,168.295Z"
+        android:strokeWidth="1"
+        android:fillColor="#007FAD"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+  </group>
+</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_about.xml b/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_about.xml
deleted file mode 100644
index c8301f5657b775c76bec2fd141cb74c8e798e90b..0000000000000000000000000000000000000000
--- a/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_about.xml
+++ /dev/null
@@ -1,699 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="438dp"
-    android:height="220dp"
-    android:viewportWidth="438"
-    android:viewportHeight="220">
-    <path
-        android:fillColor="#E9F6FF"
-        android:fillType="evenOdd"
-        android:pathData="M190.216,55.993l-0.198,36.184l-16.437,0l0,-16.735l-51.937,0l0,-6.065l-31.066,0l0,20.141l-11.165,0l0,7.547l-46.409,0l0,48.802l17.77,0l17.477,0l11.162,0l11.165,0l6.311,0l36.406,0l0,-0.149l35.433,0l0,0.149l23.783,0l11.412,0l32.084,0l2.321,0l11.581,0l17.891,0l22.486,0l6.286,0l26.864,0l10.631,0l18.135,0l0,-7.871l55.861,6.744l0,-50.128l-55.861,0l0,-26.966l-18.135,0l0,-6.679l-43.781,0l0,23.99l-14.525,0l0,-7.854l-25.852,0l0,-21.147z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <group>
-        <clip-path android:pathData="M147.561,140.129C111.647,140.129 95.999,118.62 62.465,122.693L62.465,122.693C54.494,123.66 44.372,126.685 33.004,135.166L33.004,135.166L33.004,158.963L407.485,160.297L407.485,142.74C405.597,141.69 403.723,140.79 401.939,140.115L401.939,140.115C401.939,140.115 364.145,125.518 322.29,138.007L322.29,138.007C286.441,148.715 245.145,120.689 225.361,119.961L225.361,119.961C223.514,119.894 221.731,119.861 220.018,119.861L220.018,119.861C177.276,119.859 175.232,140.129 147.561,140.129L147.561,140.129Z" />
-        <path
-            android:fillColor="#D9EDFA"
-            android:fillType="evenOdd"
-            android:pathData="M0,170.369l437.066,0l0,-60.508l-437.066,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M60.968,41.882C60.913,41.882 60.86,41.882 60.803,41.885L60.803,41.885C55.341,42.023 52.214,49.805 51.954,53.501L51.954,53.501C50.84,69.319 41.169,80.6 42.065,105.241L42.065,105.241C42.652,121.386 48.31,137.975 54.297,140.876L54.297,140.876C65.822,146.47 73.554,134.016 74.856,122.4L74.856,122.4C76.158,110.785 76.937,93.889 68.349,72.77L68.349,72.77C63.625,61.151 71.59,41.961 61.096,41.882L61.096,41.882L60.968,41.882Z" />
-        <path
-            android:fillColor="#B9E1FB"
-            android:fillType="evenOdd"
-            android:pathData="M32.005,152.259l53.652,0l0,-120.379l-53.652,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M57.008,92.698C57.07,116.495 59.353,138.479 60.372,142.864L60.372,142.864L61.009,142.726C59.996,138.36 57.72,116.447 57.661,92.698L57.661,92.698C57.625,78.286 58.405,63.202 60.78,50.968L60.78,50.968L60.138,50.851C57.755,63.125 56.973,78.25 57.008,92.698L57.008,92.698Z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M47.007,152.866l24.003,0l0,-112.016l-24.003,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M57.008,116.537L57.571,116.861C57.595,116.821 65.831,103.077 67.01,97.998L67.01,97.998L66.372,97.858C65.216,102.841 57.031,116.498 57.008,116.537L57.008,116.537Z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M47.007,126.862l30.004,0l0,-39.005l-30.004,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M56.557,86.856L57.008,86.448C56.993,86.428 51.208,79.375 51.622,73.903L51.622,73.903L51.03,73.854C50.595,79.586 56.54,86.836 56.557,86.856L56.557,86.856Z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M41.006,96.857l26.003,0l0,-33.004l-26.003,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M86.405,83.097C82.323,83.13 79.7,86.32 78.535,92.474L78.535,92.474C77.234,99.351 77.494,106.228 75.412,108.873L75.412,108.873C73.784,110.941 66.115,120.441 66.074,130.555L66.074,130.555L66.074,130.718C66.085,133.492 66.674,136.308 68.124,139.028L68.124,139.028C74.891,151.724 86.342,148.285 92.328,143.79L92.328,143.79C97.794,137.706 101.697,128.183 98.574,108.344L98.574,108.344C95.45,88.505 92.848,84.008 87.906,83.214L87.906,83.214C87.432,83.14 86.978,83.1 86.54,83.097L86.54,83.097L86.405,83.097Z" />
-        <path
-            android:fillColor="#B9E1FB"
-            android:fillType="evenOdd"
-            android:pathData="M56.073,157.867l53.611,0l0,-84.771l-53.611,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M87.203,96.902C87.755,104.331 86.866,112.902 85.412,120.93L85.412,120.93C83.238,132.912 79.805,143.668 78.012,147.6L78.012,147.6L78.596,147.866C80.404,143.906 83.861,133.081 86.044,121.041L86.044,121.041C87.509,112.968 88.402,104.338 87.845,96.859L87.845,96.859L87.203,96.902Z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M68.011,157.867l30.003,0l0,-71.01l-30.003,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M84.011,129.325L84.341,129.863C84.367,129.846 93.2,124.268 95.014,118.04L95.014,118.04L94.416,117.861C92.671,123.855 84.038,129.31 84.011,129.325L84.011,129.325Z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M74.012,139.864l31.003,0l0,-32.004l-31.003,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M74.011,127.964C74.869,133.927 80.53,141.84 80.546,141.864L80.546,141.864L81.011,141.459C80.996,141.436 75.428,133.648 74.594,127.864L74.594,127.864L74.011,127.964Z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M64.01,151.866l27.003,0l0,-34.004l-27.003,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M169.118,109.241C159.007,108.79 160.518,141.688 160.518,141.688L160.518,141.688C153.726,144.857 154.043,159.982 154.043,159.982L154.043,159.982L199.149,159.797C199.904,146.67 193.113,141.235 193.113,141.235L193.113,141.235C194.32,125.691 182.852,126.747 182.852,126.747L182.852,126.747C184.21,110.902 183.154,97.471 177.569,95.811L177.569,95.811C177.278,95.724 176.994,95.683 176.718,95.683L176.718,95.683C171.694,95.683 169.118,109.241 169.118,109.241L169.118,109.241Z" />
-        <path
-            android:fillColor="#B9E1FB"
-            android:fillType="evenOdd"
-            android:pathData="M149.041,164.983l55.167,0l0,-74.3l-55.167,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <path
-        android:fillColor="#FFFFFF"
-        android:fillType="evenOdd"
-        android:pathData="M175.8,107.459l0,52.442l0.936,-0.016l-0.326,-52.426z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <group>
-        <clip-path android:pathData="M168.671,121.043C168.934,122.991 170.242,125.025 172.557,127.091L172.557,127.091C174.267,128.617 175.926,129.595 175.943,129.605L175.943,129.605L176.274,128.76C176.211,128.721 169.741,125.222 169.142,120.808L169.142,120.808L168.671,121.043Z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M163.671,134.605l17.604,0l0,-18.797l-17.604,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M176.208,141.248L176.159,142.32C176.441,142.053 183.1,135.733 184.45,132.277L184.45,132.277L183.912,132.013C182.598,135.38 176.277,141.184 176.208,141.248L176.208,141.248Z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M171.159,147.32l18.29,0l0,-20.307l-18.29,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M166.941,147.107C167.191,149.215 168.835,151.175 171.698,152.772L171.698,152.772C173.836,153.965 175.932,154.552 175.952,154.558L175.952,154.558L176.21,154.051C176.256,152.98 168.106,151.786 167.541,147.005L167.541,147.005L166.941,147.107Z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M161.941,159.558l19.27,0l0,-17.553l-19.27,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <path
-        android:fillColor="#D9EDFA"
-        android:fillType="evenOdd"
-        android:pathData="M333.366,24.225C330.133,24.918 326.135,28.041 326.269,28.955C326.317,29.276 336.404,28.974 346.769,28.955C362.402,28.929 370.217,28.955 371.212,28.955L390.924,28.955C392.462,28.955 389.638,23.59 388.558,22.648C386.688,21.018 383.85,20.304 381.462,21.072C378.188,22.123 378.25,25.156 375.154,25.802C373.135,26.224 370.964,25.38 369.635,24.225C367.609,22.465 368.451,20.774 366.481,18.706C365.101,17.257 363.301,16.592 360.962,17.129C358.232,17.756 358.596,17.917 354.654,21.072C353.269,22.179 351.774,25.362 349.135,25.802C341.973,26.996 338.986,23.021 333.366,24.225"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#D9EDFA"
-        android:fillType="evenOdd"
-        android:pathData="M275.061,18.955L226.215,18.955C228.094,15.931 229.954,14.975 231.303,14.661C234.626,13.894 236.029,16.746 241.48,16.809C242.451,16.819 244.842,16.825 247.585,15.734C249.214,15.089 249.26,14.734 251.656,13.589C253.637,12.642 255.376,11.809 257.763,11.441C259.582,11.16 260.949,11.276 262.85,11.441C265.008,11.627 266.339,11.753 267.939,12.514C269.125,13.078 269.875,13.714 270.991,14.661C272.069,15.576 273.539,16.971 275.061,18.955"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#D9EDFA"
-        android:fillType="evenOdd"
-        android:pathData="M153.572,32.956L183.023,32.956C181.89,31.404 180.769,30.913 179.955,30.753C177.952,30.359 177.107,31.822 173.819,31.854C173.235,31.86 171.792,31.863 170.138,31.304C169.157,30.973 169.129,30.79 167.683,30.202C166.489,29.717 165.44,29.29 164.003,29.101C162.904,28.957 162.081,29.017 160.934,29.101C159.634,29.196 158.831,29.262 157.867,29.651C157.151,29.941 156.7,30.267 156.026,30.753C155.376,31.222 154.491,31.937 153.572,32.956"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#D9EDFA"
-        android:fillType="evenOdd"
-        android:pathData="M107.745,15.216C109.781,15.617 112.299,17.426 112.214,17.955C112.184,18.141 105.832,17.966 99.305,17.955C89.46,17.941 84.539,17.955 83.912,17.955L71.499,17.955C70.53,17.955 72.307,14.849 72.988,14.303C74.166,13.36 75.953,12.945 77.457,13.39C79.518,13.999 79.479,15.755 81.43,16.129C82.701,16.373 84.068,15.885 84.905,15.216C86.181,14.196 85.65,13.218 86.891,12.02C87.761,11.181 88.893,10.796 90.367,11.107C92.086,11.47 91.856,11.564 94.339,13.39C95.211,14.031 96.152,15.874 97.814,16.129C102.324,16.821 104.206,14.519 107.745,15.216"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#00000000"
-        android:fillType="evenOdd"
-        android:pathData="M367.043,184.324L371.845,135.195C371.845,135.195 371.235,132.237 376.689,132.672"
-        android:strokeWidth="2"
-        android:strokeColor="#4D4D4D" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M381.757,105.875C381.757,105.875 381.228,101.548 380.405,101.137C379.583,100.726 385.664,98.919 385.664,98.919C385.664,98.919 386.687,101.315 386.652,101.486C386.617,101.658 381.757,105.875 381.757,105.875"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M381.109,180.79C381.109,180.79 378.169,182.551 376.89,182.665C375.522,182.788 376.056,184.382 376.056,184.382L386.894,184.186C386.894,184.186 387.918,181.339 387.084,180.749L381.109,180.79Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M394.159,180.123C394.159,180.123 395.918,183.842 394.348,184.136C392.779,184.43 383.849,184.209 383.849,184.209C383.849,184.209 382.923,182.959 385.129,182.518C387.336,182.076 388.631,181.689 388.631,180.856L394.159,180.123Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#B2DBF0"
-        android:fillType="evenOdd"
-        android:pathData="M378.65,136.266C378.65,136.266 379.821,175.372 380.901,180.6C380.962,180.893 381.218,181.104 381.517,181.104L386.674,181.104C386.986,181.104 387.235,180.843 387.22,180.532L386.903,173.704L388.338,180.483C388.403,180.788 388.686,180.997 388.997,180.97L393.72,180.553C394.036,180.525 394.263,180.238 394.216,179.924C393.565,175.565 389.507,147.868 390.775,143.589C392.152,138.943 392.894,135.691 390.974,132.843C389.054,129.995 379.132,133.195 379.132,133.195L378.65,136.266Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M377.698,130.712C377.698,130.712 375.112,131.697 375.166,132.654C375.188,133.066 375.379,133.271 375.588,133.371C375.752,133.45 375.75,133.683 375.582,133.755C374.948,134.025 373.918,134.317 373.039,133.877C371.656,133.187 371.455,131.494 372.028,130.793C373.198,129.363 377.14,128.537 377.33,128.496C377.698,128.418 377.698,130.712 377.698,130.712"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#385460"
-        android:fillType="evenOdd"
-        android:pathData="M379.581,136.29C382.106,136.314 389.026,136.099 390.838,133.095C390.927,132.946 390.984,132.781 391.009,132.609C391.398,129.925 394.832,104.839 387.693,101.519C387.259,101.316 386.75,101.368 386.363,101.65C384.466,103.034 378.38,107.875 378.146,113.176C377.89,118.996 377.157,127.195 377.051,128.372C377.042,128.468 377.044,128.563 377.057,128.659L377.667,133.368C377.679,133.459 377.699,133.548 377.729,133.634L378.351,135.409C378.534,135.933 379.026,136.284 379.581,136.29"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M380.573,101.3L385.664,98.919C385.664,98.919 390.855,91.933 385.526,91.018C380.197,90.103 378.689,91.234 378.689,91.234C378.689,91.234 376.752,94.463 377.02,96.025C377.02,96.025 377.193,96.607 376.885,96.641C376.577,96.675 376.167,97.189 376.611,97.565C377.055,97.942 380.573,101.3 380.573,101.3"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E0E0E0"
-        android:fillType="evenOdd"
-        android:pathData="M382.335,94.712C382.213,94.866 382.148,95.057 382.147,95.254C382.137,96.327 382.067,100.177 381.577,100.574C381.007,101.036 377.99,102.422 377.148,101.77C376.306,101.117 376.779,99.722 376.779,99.722C376.779,99.722 378.479,99.814 377.07,99.027C376.309,98.601 376.263,98.284 376.381,98.083C376.488,97.9 376.72,97.829 376.923,97.894C377.415,98.049 378.552,98.455 378.597,98.907C378.651,99.456 381.792,97.496 381.398,94.667C381.361,94.401 381.204,94.168 380.978,94.026C379.873,93.336 376.451,91.101 377.326,90.42C378.365,89.612 383.792,87.476 386.102,89.785C388.411,92.095 390.201,95.559 386.506,99.023C386.506,99.023 383.812,100.113 383.705,96.349C383.622,93.428 382.731,94.214 382.335,94.712"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M361.904,112.365C361.411,112.388 360.384,111.931 360.669,112.935L361.639,119.475C361.692,120.322 362.877,119.722 363.325,119.749C363.59,119.708 363.788,119.665 363.733,119.316L362.726,112.889C362.672,112.541 362.596,112.447 362.244,112.405"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#FFC2B0"
-        android:fillType="evenOdd"
-        android:pathData="M364.583,119.79C363.97,119.88 362.164,121.005 361.604,120.376C361.604,120.376 360.265,119.24 360.265,119.24C359.342,118.389 360.304,115.721 361.398,116.251L362.798,116.851L364.931,116.851L364.583,119.79Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#385460"
-        android:fillType="evenOdd"
-        android:pathData="M380.958,107.415C383.868,104.538 387.861,109.277 386.106,112.158L379.108,119.402C378.505,120.028 377.328,121.415 375.629,121.153L364.793,120.795L364.146,116.169L374.878,116.048L380.958,107.415Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#B7846A"
-        android:fillType="evenOdd"
-        android:pathData="M81.084,108.976l0.187,5.229l-4.819,0l0.71,-5.229z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#B7846A"
-        android:fillType="evenOdd"
-        android:pathData="M74.759,104.955C74.739,113.491 83.476,112.381 83.729,103.816C83.748,95.28 75.012,96.391 74.759,104.955"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#DEA8A3"
-        android:fillType="evenOdd"
-        android:pathData="M86.486,137.168C90.264,155.858 86.081,169.32 85.036,184.914L82.583,184.993L80.288,148.519L79.924,145.52C78.753,149.716 77.141,154.268 76.087,159.901C75.683,168.338 75.281,176.775 74.878,185.212L71.578,185.133C71.58,185.126 69.577,159.847 69.586,159.835C70.206,154.286 69.983,147.706 72.965,137.566L86.486,137.168Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#B7846A"
-        android:fillType="evenOdd"
-        android:pathData="M69.04,137.778C70.559,144.705 60.542,146.083 67.763,136.349L69.04,137.778Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#90B7D0"
-        android:fillType="evenOdd"
-        android:pathData="M85.822,127.925C85.718,127.216 85.607,126.513 85.492,125.835C84.96,122.706 84.895,119.87 84.895,119.87C84.895,119.87 85.606,123.473 86.089,125.04C86.884,127.624 87.282,128.618 87.282,128.618C87.282,128.618 86.612,128.351 85.822,127.925M90.264,122.455C89.312,119.028 87.282,113.11 81.222,113.089C79.697,113.084 77.539,113.905 76.65,112.74C70.381,114.303 69.188,121.859 68.194,126.432C67.596,129.179 67.398,133.192 67.027,135.816C66.978,136.159 66.667,137.558 67.495,137.855C68.462,138.189 69.176,138.588 69.457,137.665C70.38,134.643 71.91,128.253 72.767,124.244C72.953,123.375 73.363,121.859 73.363,122.256C73.363,122.7 72.309,136.427 72.966,137.567C73.79,138.995 84.596,138.48 86.486,137.168C86.753,136.984 86.616,134.444 86.269,131.371C89.348,134.229 91.386,135.333 92.848,132.993C93.616,131.766 91.259,126.034 90.264,122.455"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M82.718,184.186L85.12,184.783C85.362,185.814 87.201,190.214 84.938,191.205C84.046,191.702 83.355,192.159 82.408,191.205C80.364,189.969 82.665,185.021 82.718,184.186"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M74.878,185.212C74.801,185.74 75.314,189.513 74.762,189.854C74.58,190.059 74.37,190.142 74.273,190.173C71.432,190.179 68.192,190.185 65.352,190.191C63.774,188.455 71.711,187.964 71.578,185.133C72.678,185.159 73.777,185.186 74.878,185.212"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M78.151,120.354L75.437,120.354C75.081,120.354 74.817,120.643 74.848,121L75.423,127.575C75.455,127.931 75.769,128.22 76.126,128.22L78.839,128.22C79.196,128.22 79.46,127.931 79.428,127.575L78.852,121C78.822,120.643 78.507,120.354 78.151,120.354"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#B7846A"
-        android:fillType="evenOdd"
-        android:pathData="M82.111,126.979L81.63,127.87C77.931,128.221 73.502,123.405 78.945,123.734C80.386,124.225 81.496,125.303 82.531,126.059"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#000000"
-        android:fillType="evenOdd"
-        android:pathData="M77.388,108.497C77.806,109.303 76.991,112.47 75.159,112.434C74.978,112.431 74.799,112.507 74.679,112.643C74.441,112.913 73.913,113.275 72.943,112.91C72.743,112.836 72.519,112.867 72.343,112.988C71.805,113.358 70.616,113.959 69.886,112.681C69.757,112.455 69.5,112.33 69.242,112.359C68.443,112.451 66.91,112.437 67.312,110.871C67.312,110.871 67.382,109.799 66.199,109.929C65.164,110.042 64.212,109.514 64.391,108.546C64.441,108.276 64.325,108.001 64.092,107.855C63.356,107.4 62.13,106.351 63.745,105.088C63.745,105.088 64.686,104.605 63.396,103.192C63.35,103.143 63.311,103.086 63.282,103.024C63.149,102.738 62.879,101.918 63.743,101.248C64.808,100.422 63.805,98.799 64.762,98.53C64.762,98.53 65.888,98.371 66.051,97.35C66.214,96.327 65.74,93.886 68.938,94.566C72.062,95.232 68.645,91.506 73.669,92.177C73.887,92.205 74.106,92.128 74.253,91.965C74.697,91.476 75.782,90.551 77.108,91.353C77.251,91.44 77.42,91.474 77.584,91.441C78.29,91.303 80.251,91.071 81.019,92.555C81.112,92.733 81.276,92.863 81.475,92.893C81.959,92.968 82.797,93.229 82.589,94.156C82.32,95.357 83.029,94.96 83.029,94.96C83.029,94.96 84.572,94.21 85.447,95.382C85.561,95.535 85.727,95.64 85.915,95.661C86.638,95.748 88.371,96.196 88.063,98.521C88.027,98.793 88.159,99.059 88.398,99.191C88.86,99.449 89.517,100.004 89.374,101.035C89.336,101.308 89.484,101.574 89.729,101.7C90.438,102.061 91.674,102.88 91.327,104.054C91.249,104.316 91.319,104.601 91.53,104.776C91.992,105.161 92.557,105.983 91.53,107.344C91.42,107.488 91.37,107.671 91.4,107.85C91.488,108.382 91.493,109.565 89.969,110.081C89.749,110.155 89.586,110.341 89.536,110.569C89.416,111.126 88.981,112.085 87.411,111.938C87.152,111.915 86.895,112.04 86.766,112.267C86.468,112.791 85.791,113.6 84.591,113.172C84.494,113.138 84.394,113.119 84.291,113.129C83.447,113.201 79.346,113.351 79.955,109.289C79.982,109.112 80.076,108.952 80.22,108.847C81.055,108.229 83.663,105.718 83.047,101.477C83.023,101.307 83.012,100.832 82.817,100.725C81.419,99.957 81.216,98.853 80.758,98.934C80.103,99.049 80.103,99.17 78.776,100.669C77.319,102.313 76.56,101.406 75.625,101.959C74.377,102.696 75.248,105.188 75.487,105.729"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M137.402,120.653C137.402,120.653 141.91,124.87 143.615,126.008C145.028,126.953 149.689,129.064 149.689,129.064L147.685,131.15C147.685,131.15 143.589,130.237 142.33,129.651C141.037,129.049 137.617,126.437 137.617,126.437L137.402,120.653Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M115.994,191.026L114.366,194.116C114.142,194.542 114.292,195.068 114.707,195.311C116.674,196.458 122.05,199.387 124.371,198.598C124.696,198.487 124.776,198.062 124.523,197.829C123.043,196.466 118.439,192.119 118.796,191.05L115.994,191.026Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#BA6161"
-        android:fillType="evenOdd"
-        android:pathData="M115.845,191.314L118.991,191.733L134.554,155.798L126.449,139.521L126.355,161.801C126.355,161.801 119.126,176.169 117.973,181.806C116.834,187.372 115.845,191.314 115.845,191.314"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#C76A61"
-        android:fillType="evenOdd"
-        android:pathData="M125.939,134.323L138.152,134.486C138.152,134.486 148.736,187.569 152.969,191.151L150.691,192.779C150.691,192.779 137.665,175.031 138.803,163.633C138.803,163.633 122.684,137.743 125.939,134.323"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M134.558,113.902L133.774,108.353C133.774,108.353 137.186,108.505 137.107,103.745C137.092,102.863 137.031,101.353 136.216,100.209L133.774,99.487L131.12,105.518L129.832,113.183L132.568,115.289L134.86,115.228L134.558,113.902Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M150.69,192.779L151.192,196.236C151.261,196.712 151.692,197.05 152.17,197.002C154.435,196.771 160.506,195.977 161.919,193.973C162.117,193.692 161.931,193.301 161.589,193.262C159.59,193.031 153.31,192.224 152.969,191.151L150.69,192.779Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M123.283,141.663L124.134,131.275L128.524,132.529L125.442,143.213C125.442,143.213 124.668,149.413 122.065,147.586C118.836,145.318 123.173,142.935 123.283,141.663"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#B2DBF0"
-        android:fillType="evenOdd"
-        android:pathData="M124.113,131.426C124.113,131.426 124.12,131.374 124.134,131.276C124.364,129.573 126.533,114.04 128.966,113.414C131.538,112.753 132.846,115.199 134.023,113.876C135.199,112.553 142.119,123.502 138.152,134.486L127.983,134.495L131.391,119.223L128.524,132.53C128.524,132.53 124.848,133.485 124.113,131.426"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#663014"
-        android:fillType="evenOdd"
-        android:pathData="M137.03,103.769C137.03,103.769 139.563,102.201 137.935,97.979C137.935,97.979 137.573,96.169 135.04,96.23C135.04,96.23 130.999,92.612 127.199,95.687C123.4,98.763 125.993,101.839 125.993,101.839C125.993,101.839 120.926,106.422 122.676,112.635C122.676,112.635 124.546,116.676 126.717,115.289C128.888,113.902 128.767,116.917 129.914,112.876C131.059,108.835 133.05,109.438 132.265,102.623C132.265,102.623 134.979,102.804 135.583,100.03C135.583,100.03 137.332,100.632 137.03,103.769"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M145.951,132.698C145.816,132.941 149.106,133.447 149.184,133.507C149.635,133.929 153.638,127.53 153.94,127.337C154.089,127.301 153.998,126.68 153.705,126.532L150.864,125.944C150.245,125.221 146.285,131.898 145.934,132.068C145.733,132.299 145.841,132.487 145.951,132.698"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M152.08,129.603C152.786,129.343 151.99,130.781 151.571,131.371C151.188,131.91 151.041,132.257 150.78,132.13C150.52,132.004 150.683,131.414 151.007,130.746C151.331,130.077 151.573,129.79 152.08,129.603"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F91"
-        android:fillType="evenOdd"
-        android:pathData="M197.871,163.558C182.779,163.827 182.781,186.257 197.871,186.524C212.963,186.255 212.96,163.825 197.871,163.558M197.757,187.992C180.636,187.684 180.639,162.242 197.757,161.937C214.877,162.244 214.875,187.687 197.757,187.992"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F91"
-        android:fillType="evenOdd"
-        android:pathData="M215.322,168.357C215.322,169.029 215.296,169.791 214.07,169.791L198.991,169.579C197.448,169.533 197.297,168.488 196.946,167.563C196.47,165.832 212.188,167.087 213.094,166.727C214.562,166.77 215.487,167.331 215.322,168.357"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#3E6884"
-        android:fillType="evenOdd"
-        android:pathData="M216.163,162.804C212.685,162.141 201.477,156.59 198.751,163.237C197.847,168.588 212.055,166.673 214.781,167.338L220.687,181.111L223.328,179.727L219.494,165.894C219.494,165.894 218.552,163.559 216.163,162.804"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M199.398,143.734C200.04,144.056 200.949,143.948 201.243,143.412L202.355,140.218C202.99,138.977 200.348,138.172 199.831,139.239L198.268,142.131C197.999,142.597 198.354,142.922 198.995,143.172"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M206.504,134.682C207.463,137.489 205.452,142.17 203.73,141.561C200.155,140.294 199.144,140.445 198.184,137.638C195.67,130.996 204.302,128.161 206.504,134.682"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#663014"
-        android:fillType="evenOdd"
-        android:pathData="M203.945,133.988C206.769,134.893 207.334,130.826 204.802,130.828C204.332,130.263 199.596,127.406 196.69,131.737C195.837,133.007 196.161,136.021 197.339,138.194C197.373,138.259 197.413,138.319 197.457,138.378C197.89,138.957 198.674,139.967 198.961,139.957C199.881,139.925 200.611,139.227 200.788,138.76C200.946,138.342 199.971,137.537 199.79,136.986C199.271,135.411 200.768,134.801 201.351,136.331C201.776,136.257 203.077,135.276 203.475,134.226C203.548,134.035 203.751,133.926 203.945,133.988"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#C76A61"
-        android:fillType="evenOdd"
-        android:pathData="M199.412,141.556C205.147,141.45 207.476,152.324 209.157,159.995C208.056,162.461 201.275,166.278 198.837,164.62C198.288,162.904 195.505,153.19 195.098,149.855C194.664,146.3 197.22,141.51 199.412,141.556"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M217.802,148.317C218.201,148.337 219.031,147.966 218.801,148.778L218.017,154.063C217.974,154.748 217.017,154.263 216.655,154.284C216.441,154.251 216.281,154.216 216.324,153.934L217.138,148.74C217.182,148.459 217.243,148.383 217.528,148.349"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#FFC2B0"
-        android:fillType="evenOdd"
-        android:pathData="M215.638,154.318C216.133,154.39 217.593,155.299 218.045,154.792L219.128,153.874C219.873,153.185 219.096,151.029 218.211,151.458L217.08,151.942L215.357,151.942L215.638,154.318Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#C76A61"
-        android:fillType="evenOdd"
-        android:pathData="M202.404,144.317C200.052,141.992 196.826,145.822 198.243,148.15L203.899,154.005C204.386,154.51 205.338,155.631 206.711,155.42L215.467,155.13L215.991,151.391L207.317,151.294L202.404,144.317Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F91"
-        android:fillType="evenOdd"
-        android:pathData="M214.532,160.468C214.516,161.678 212.73,161.214 211.685,161.365C209.952,161.008 195.566,163.158 195.451,160.597C195.689,158.032 209.895,159.91 211.701,159.522C212.791,159.651 214.365,159.273 214.532,160.468"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F91"
-        android:fillType="evenOdd"
-        android:pathData="M198.549,169.499C196.088,169.998 193.369,149.6 192.546,148.071C192.174,146.409 193.216,147.169 193.313,147.233C195.519,147.98 198.469,164.355 199.343,166.333C199.75,168.15 199.687,169.636 198.549,169.499"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M213.192,183.332l1.5,0l0,-13.797l-1.5,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M199.148,175.428C199.176,177.407 196.068,177.407 196.098,175.428C196.068,173.449 199.176,173.449 199.148,175.428"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M217.461,184.37C217.383,188.952 210.568,188.951 210.491,184.37C210.569,179.79 217.383,179.79 217.461,184.37"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M216.493,184.381C216.478,187.712 211.414,187.712 211.399,184.381C211.414,181.05 216.478,181.05 216.493,184.381"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M221.91,184.018l-1.105,0.47l-9.936,-23.351l1.105,-0.471z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M226.56,182.936L221.532,185.076C221.103,185.266 220.9,184.76 220.788,184.445C220.781,184.437 226.217,182.134 226.217,182.131C226.735,181.902 227.086,182.721 226.56,182.936"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M228.693,180.976C229.281,180.565 228.171,179.862 227.376,179.872C226.641,179.87 223.096,180.325 223.214,179.391L220.431,180.47C220.786,181.471 221.698,184.166 222.867,183.535C223.666,183.216 227.884,181.541 228.693,180.976"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M214.705,184.374C214.72,185.358 213.174,185.358 213.187,184.374C213.174,183.39 214.72,183.39 214.705,184.374"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M246.814,159.745L246.814,163.915C246.814,164.592 247.35,165.142 248.012,165.142L338.802,165.142C339.464,165.142 340,164.592 340,163.915L340,159.971L246.814,159.745Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M256.011,139.392l-0.152,20.435l2.866,0l-0.017,-20.435z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M328.106,139.392l0.214,20.567l2.741,0l-0.013,-20.567z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M250.863,140.864C250.863,140.864 251.598,138.166 253.56,138.166L332.832,138.186C333.099,138.185 333.362,138.253 333.596,138.38C334.266,138.74 335.593,139.605 335.956,140.864L250.863,140.864Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M250.434,143.61l0,2.275l85.444,0.067l-0.066,-2.207z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M250.434,148.514l0,2.276l85.444,0.066l-0.066,-2.207z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M250.434,153.91l0,2.275l85.444,0.067l-0.066,-2.207z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M325.547,164.812L325.648,178.895C325.651,179.434 326.09,179.87 326.628,179.87L330.444,179.87C330.988,179.87 331.429,179.426 331.425,178.881L331.324,164.747L325.547,164.812Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M254.949,165.156L255.003,179.034C255.006,179.575 255.444,180.011 255.984,180.011L259.698,180.011C260.236,180.011 260.674,179.579 260.679,179.042L260.835,165.156L254.949,165.156Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M281.665,120.799C281.665,120.799 280.911,120.772 280.927,119.168C280.943,117.565 280.535,117.734 280.861,117.143C281.188,116.553 281.378,117.28 281.378,117.28L281.665,120.799Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M290.942,117.25C290.942,117.25 291.878,116.735 291.784,117.577C291.69,118.419 291.69,119.636 291.41,120.057C291.129,120.478 290.624,120.818 290.624,120.818L290.942,117.25Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M278.615,184.4C278.615,184.4 278.17,191.797 279.772,192.353C281.375,192.909 284.524,190.906 284.519,189.825C284.514,188.744 283.499,183.731 282.546,183.259C281.593,182.788 278.615,184.4 278.615,184.4"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M287.855,181.274C287.855,181.274 284.44,186.939 285.001,188.972C285.564,191.004 287.379,191.697 289.023,190.962C290.668,190.226 291.964,184.734 291.792,183.306C291.618,181.879 287.855,181.274 287.855,181.274"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#8D8D99"
-            android:fillType="evenOdd"
-            android:pathData="M286.983,179.839C287.384,180.827 289.716,184.395 293.385,182.697C293.47,182.658 293.538,182.586 293.573,182.5L299.494,168.271C299.523,168.2 299.572,168.141 299.606,168.072C300.142,167.004 302.159,164.305 298.938,161.423C298.918,161.405 298.9,161.385 298.884,161.362C298.573,160.904 295.055,155.748 294.046,154.739C293.053,153.746 277.983,153.687 276.159,153.683C276.045,153.683 275.937,153.735 275.866,153.823L268.428,163.145C268.418,163.158 268.406,163.17 268.392,163.181C268.18,163.358 266.332,165.033 268.678,168.135C270.967,171.16 276.271,182.548 277.09,184.319C277.155,184.46 277.299,184.546 277.454,184.534C278.799,184.436 284.102,183.851 283.173,181.18C282.845,180.236 278.382,169.983 277.585,168.481C277.524,168.368 277.417,168.238 277.379,168.087C277.309,167.791 277.203,167.513 277.763,166.792C278.472,165.88 282.466,162.517 283.153,161.941C283.218,161.886 283.3,161.855 283.385,161.853L285.714,161.804C285.809,161.802 285.9,161.835 285.97,161.897L291.599,166.841C291.716,166.945 291.757,167.111 291.701,167.258L286.982,179.487C286.938,179.601 286.937,179.726 286.983,179.839"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M296.284,147.435L294.198,158.512C294.198,158.512 291.701,161.741 294.435,161.76C297.035,161.779 296.891,158.83 296.891,158.83L301.113,147.273"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#3E6884"
-            android:fillType="evenOdd"
-            android:pathData="M277.081,153.986C279.675,154.37 286.712,155.619 292.286,154.942C293.242,154.826 293.943,153.985 293.897,153.022C293.761,150.116 293.557,144.296 294.071,143.576C294.76,142.612 295.793,147.571 295.793,147.571L301.577,147.226C301.577,147.226 299.699,141.059 298.571,138.215C298.297,137.521 298.092,136.805 297.964,136.071C297.571,133.827 295.994,128.8 289.733,128.931C289.733,128.931 286.089,134.866 281.427,128.762C281.427,128.762 276.832,127.03 273.713,135.035L271.168,144.582L276.509,147.04C276.509,147.04 276.712,144.285 277.019,143.935C277.468,143.423 276.655,150.232 276.212,152.782C276.111,153.357 276.504,153.901 277.081,153.986"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M285.466,142.165L282.545,142.165C282.364,142.161 282.192,142.234 282.07,142.368C281.948,142.501 281.89,142.68 281.91,142.859L282.521,149.933C282.561,150.322 282.886,150.62 283.278,150.628L286.198,150.628C286.378,150.631 286.552,150.557 286.673,150.424C286.795,150.29 286.853,150.111 286.833,149.933L286.223,142.859C286.183,142.471 285.858,142.172 285.466,142.165"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M271.596,144.786C271.596,144.786 270.551,152.658 271.539,153.51C272.916,154.698 281.214,150.166 282.221,149.465C282.284,149.421 282.36,149.403 282.435,149.416C282.918,149.497 285.981,149.732 286.019,147.68C286.02,147.638 286.008,147.431 286.003,147.389C285.958,146.994 285.225,144.853 282.092,146.965L275.318,149.52L276.03,146.835"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M281.427,128.762C281.427,128.762 282.558,131.997 287.031,131.812C290.017,131.687 290.504,128.954 290.504,128.954C290.504,128.954 287.361,128.69 288.849,125.334L283.156,125.237C283.156,125.237 284.69,129.287 281.427,128.762"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#191818"
-            android:fillType="evenOdd"
-            android:pathData="M281.373,117.227L281.367,114.477C281.358,114.25 281.431,114.029 281.574,113.852C281.852,113.51 282.329,112.972 282.635,112.905C282.635,112.905 283.339,111.447 284.972,110.919C284.972,110.919 283.462,109.668 284.352,109.087C284.41,109.049 284.446,108.986 284.457,108.917C284.501,108.661 284.686,108.083 285.473,108.2C285.56,108.213 285.652,108.18 285.708,108.111C285.87,107.91 286.267,107.571 286.832,108.08C286.832,108.08 288.717,107.375 288.113,108.958C288.113,108.958 289.646,109.989 287.209,110.743C287.209,110.743 289.998,111.522 290.049,113.03C290.049,113.03 291.381,113.507 291.255,114.814C291.129,116.121 290.964,119.665 290.964,119.665C290.964,119.665 290.723,123.704 290.129,125.197C290.101,125.268 290.069,125.328 290.026,125.395C289.655,125.971 288.156,128.867 285.55,127.983C282.653,127 281.602,124.177 281.697,121.227C281.675,120.941 281.421,117.754 281.373,117.227"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M282.923,122.206C282.923,122.206 281.301,119.437 282.056,116.781C282.811,114.125 282.95,114.041 284.572,113.817C286.194,113.594 289.409,113.874 289.801,114.572C290.193,115.271 290.5,116.026 290.472,116.894C290.444,117.742 290.954,120.846 289.713,122.285C289.662,122.345 289.588,122.377 289.511,122.378C289.267,122.381 288.752,122.338 288.543,122.178C287.896,121.685 287.194,121.285 286.977,121.367C286.81,121.431 286.278,121.758 285.579,121.451C284.88,121.144 283.678,122.961 282.923,122.206"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M283.612,123.278C283.612,123.278 284.359,123.952 285.394,123.567C286.429,123.181 287.008,123.447 287.008,123.447C287.008,123.447 288.428,124.121 288.862,123.206C288.862,123.206 287.2,122.724 286.983,122.652C286.766,122.58 285.756,122.435 285.081,122.749C284.407,123.061 283.853,123.326 283.612,123.278"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_contact.xml b/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_contact.xml
index 580c4fc2057cf51916c6e56321e165aa81fa44f1..2a15985a2d0083667365c20839e46c4a9a39d706 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_contact.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_contact.xml
@@ -7,90 +7,56 @@
     <clip-path
         android:pathData="M0,0h360v220h-360z"/>
     <path
-        android:pathData="M273.5,161.612C273.889,158.044 274.5,155.612 274.5,155.612L255.5,153.612C255.5,153.612 254.641,161.2 254.5,164.612L273.5,161.612Z"
+        android:pathData="M246.5,161.612C246.889,158.044 247.5,155.612 247.5,155.612L228.5,153.612C228.5,153.612 227.641,161.2 227.5,164.612L246.5,161.612Z"
         android:strokeWidth="1"
         android:fillColor="#F3B590"
         android:fillType="evenOdd"
         android:strokeColor="#00000000"/>
     <path
-        android:pathData="M236.462,62.523C236.462,62.523 234.831,95.377 211.781,85.648C209.393,84.639 206.501,83.612 203.9,81.165C199.289,76.825 192.501,68.612 194.331,49.473C196.001,32.01 213.47,19.77 227.141,35.926C240.813,52.083 242.676,58.297 240.813,60.037C238.949,61.777 236.462,62.523 236.462,62.523"
+        android:pathData="M209.462,62.523C209.462,62.523 207.831,95.377 184.781,85.648C182.393,84.639 179.501,83.612 176.9,81.165C172.289,76.825 165.501,68.612 167.331,49.473C169.001,32.01 186.47,19.77 200.141,35.926C213.813,52.083 215.676,58.297 213.813,60.037C211.949,61.777 209.462,62.523 209.462,62.523"
         android:strokeWidth="1"
         android:fillColor="#F3B590"
         android:fillType="evenOdd"
         android:strokeColor="#00000000"/>
     <path
-        android:pathData="M207.02,103.767C207.02,103.767 205.443,101.86 207.105,96.006C207.125,95.938 207.112,95.822 207.188,95.725C208.39,94.188 209.977,86.817 211.333,84.432L229.589,81.198C229.589,81.198 229.344,90.307 231.462,97.121C232.601,100.785 230.443,104.377 228.195,105.879C222.929,109.396 211.689,113.366 207.02,103.767"
+        android:pathData="M180.02,103.767C180.02,103.767 178.443,101.86 180.105,96.006C180.125,95.938 180.112,95.822 180.188,95.725C181.39,94.188 182.977,86.817 184.333,84.432L202.589,81.198C202.589,81.198 202.344,90.307 204.462,97.121C205.601,100.785 203.443,104.377 201.195,105.879C195.929,109.396 184.689,113.366 180.02,103.767"
         android:strokeWidth="1"
         android:fillColor="#F3B590"
         android:fillType="evenOdd"
         android:strokeColor="#00000000"/>
     <path
-        android:pathData="M186.891,143.043C186.891,143.043 178.5,200.612 166.5,198.612C161.05,197.704 143.46,186.756 129.241,171.964C120.419,162.789 116.584,159.285 115.02,157.172C111.088,151.859 95.638,147.71 98.966,139.277C100.127,136.335 106.281,133.665 112.109,136.985C117.811,140.233 121.27,146.481 121.553,147.512C122.389,150.562 129.108,155.933 134.883,160.252C140.58,164.514 158.09,174.252 158.09,174.252C159.097,175.093 160.633,174.683 161.081,173.449C163.735,166.146 165.63,144.616 165.813,143.903C166.037,143.036 186.891,143.043 186.891,143.043"
+        android:pathData="M159.891,143.043C159.891,143.043 151.5,200.612 139.5,198.612C134.05,197.704 116.46,186.756 102.241,171.964C93.419,162.789 89.584,159.285 88.02,157.172C84.088,151.859 68.638,147.71 71.966,139.277C73.127,136.335 79.281,133.665 85.109,136.985C90.811,140.233 94.27,146.481 94.553,147.512C95.389,150.562 102.108,155.933 107.883,160.252C113.58,164.514 131.09,174.252 131.09,174.252C132.097,175.093 133.633,174.683 134.081,173.449C136.735,166.146 138.63,144.616 138.813,143.903C139.037,143.036 159.891,143.043 159.891,143.043"
         android:strokeWidth="1"
         android:fillColor="#F3B590"
         android:fillType="evenOdd"
         android:strokeColor="#00000000"/>
     <group>
       <clip-path
-          android:pathData="M162.478,95.804l113.459,0l0,110.029l-113.459,0z"/>
+          android:pathData="M135.478,95.804l113.459,0l0,110.029l-113.459,0z"/>
       <path
-          android:pathData="M231.647,97.474C231.647,97.474 230.335,101.311 226.5,103.612C216.5,109.612 208.5,102.612 207.603,98.661L207.094,95.804C207.094,95.804 179.414,102.261 171.337,111.99C167.5,116.612 165.5,119.612 162.5,148.612C162.191,151.596 165.209,153.182 166.5,153.612C171.273,155.203 181.731,154.025 184.99,153.476C185.799,153.34 186.444,152.736 186.638,151.938L187.751,147.373L189.5,137.612L188.153,205.182L248.846,205.833L253.5,140.612L254.52,154.074C254.599,155.12 255.326,155.991 256.335,156.277C261.203,157.655 272.895,155.97 274.898,155.648C275.496,155.553 275.935,155.043 275.938,154.437C275.956,148.516 275.647,119.08 267.665,112.46C258.777,105.09 231.647,97.474 231.647,97.474"
+          android:pathData="M204.647,97.474C204.647,97.474 203.335,101.311 199.5,103.612C189.5,109.612 181.5,102.612 180.603,98.661L180.094,95.804C180.094,95.804 152.414,102.261 144.337,111.99C140.5,116.612 138.5,119.612 135.5,148.612C135.191,151.596 138.209,153.182 139.5,153.612C144.273,155.203 154.731,154.025 157.99,153.476C158.799,153.34 159.444,152.736 159.638,151.938L160.751,147.373L162.5,137.612L161.153,205.182L221.846,205.833L226.5,140.612L227.52,154.074C227.599,155.12 228.326,155.991 229.335,156.277C234.203,157.655 245.895,155.97 247.898,155.648C248.496,155.553 248.935,155.043 248.938,154.437C248.956,148.516 248.647,119.08 240.665,112.46C231.777,105.09 204.647,97.474 204.647,97.474"
           android:strokeWidth="1"
           android:fillColor="#898995"
           android:fillType="evenOdd"
           android:strokeColor="#00000000"/>
     </group>
     <path
-        android:pathData="M255.5,156.612C254.668,159.914 253.944,170.157 253.5,174.612C252.608,183.573 251.457,191.975 250.754,191.887C249.35,191.711 207.885,198.489 203.5,197.612C198.5,196.612 201.5,196.612 196.5,195.612C186.5,193.612 175.5,197.612 179.5,205.612C180.552,207.716 184.5,208.612 192.5,207.612C198.122,206.909 205.457,205.677 208.5,205.612C215.537,205.462 253.577,207.13 261.162,205.669C265.07,204.916 268.504,192.053 270.5,179.612C271.609,172.704 273.003,166.173 273.5,161.612L255.5,156.612Z"
+        android:pathData="M228.5,156.612C227.668,159.914 226.944,170.157 226.5,174.612C225.608,183.573 224.457,191.975 223.754,191.887C222.35,191.711 180.885,198.489 176.5,197.612C171.5,196.612 174.5,196.612 169.5,195.612C159.5,193.612 148.5,197.612 152.5,205.612C153.552,207.716 157.5,208.612 165.5,207.612C171.122,206.909 178.457,205.677 181.5,205.612C188.537,205.462 226.577,207.13 234.162,205.669C238.07,204.916 241.504,192.053 243.5,179.612C244.609,172.704 246.003,166.173 246.5,161.612L228.5,156.612Z"
         android:strokeWidth="1"
         android:fillColor="#F3B590"
         android:fillType="evenOdd"
         android:strokeColor="#00000000"/>
     <path
-        android:pathData="M223.5,45.612C225.781,47.893 225.264,50.376 227.5,52.612C230.5,55.612 238.778,55.769 239.787,49.574C239.829,49.317 239.59,55.707 239.665,55.956C240.562,58.928 237.428,58.192 236.462,62.523C236.341,63.069 235.513,69.269 235.426,69.642C234.603,73.137 234.086,74.458 234.086,74.458C237.968,73.736 251.6,54.089 247.551,42.958C243.557,31.981 234.767,25.766 230.17,23.572C230.056,23.518 219.538,20.284 216.5,20.612C215.473,20.723 206.515,22.498 205.525,23.372C205.397,23.485 205.236,23.543 205.069,23.573C203.553,23.849 197.739,24.818 194.937,24.028C194.266,23.839 193.611,24.365 193.702,25.056C193.799,25.799 193.946,26.619 194.166,27.261C194.369,27.856 193.929,28.475 193.301,28.497C190.346,28.599 184.47,28.47 183.633,28.47C182.726,28.47 184.194,31.155 186.221,32.931C186.904,33.529 186.466,34.638 185.559,34.601C185.537,34.6 185.515,34.599 185.493,34.598C184.742,34.563 184.25,35.362 184.622,36.015C186.639,39.559 189.683,47.988 195.5,47.612C202.083,47.187 214.5,36.612 223.5,45.612"
+        android:pathData="M196.5,45.612C198.781,47.893 198.264,50.376 200.5,52.612C203.5,55.612 211.778,55.769 212.787,49.574C212.829,49.317 212.59,55.707 212.665,55.956C213.562,58.928 210.428,58.192 209.462,62.523C209.341,63.069 208.513,69.269 208.426,69.642C207.603,73.137 207.086,74.458 207.086,74.458C210.968,73.736 224.6,54.089 220.551,42.958C216.557,31.981 207.767,25.766 203.17,23.572C203.056,23.518 192.538,20.284 189.5,20.612C188.473,20.723 179.515,22.498 178.525,23.372C178.397,23.485 178.236,23.543 178.069,23.573C176.553,23.849 170.739,24.818 167.937,24.028C167.266,23.839 166.611,24.365 166.702,25.056C166.799,25.799 166.946,26.619 167.166,27.261C167.369,27.856 166.929,28.475 166.301,28.497C163.346,28.599 157.47,28.47 156.633,28.47C155.726,28.47 157.194,31.155 159.221,32.931C159.904,33.529 159.466,34.638 158.559,34.601C158.537,34.6 158.515,34.599 158.493,34.598C157.742,34.563 157.25,35.362 157.622,36.015C159.639,39.559 162.683,47.988 168.5,47.612C175.083,47.187 187.5,36.612 196.5,45.612"
         android:strokeWidth="1"
         android:fillColor="#352525"
         android:fillType="evenOdd"
         android:strokeColor="#00000000"/>
     <path
-        android:pathData="M216.5,73.612C216.5,73.612 210.061,73.594 209.865,76.717C209.67,79.839 216.329,77.564 217.5,75.612C217.5,75.612 227.5,72.612 236.894,60.129C236.894,60.129 246.075,62.084 245.773,52.908C245.5,44.612 242.5,43.612 239.5,43.612C239.5,43.612 237.5,31.612 230.5,23.612C225.844,18.291 218.577,15.738 212.5,17.612C208.454,18.86 204.5,23.612 204.5,23.612C204.5,23.612 207.857,23.001 209.82,22.454C211.584,21.963 213.538,21.035 216.745,21.319C223.173,21.887 225.385,23.725 227.152,25.413C230.5,28.612 235.5,36.612 236.992,44.419C236.992,44.419 230.356,47.932 235.918,58.373C235.918,58.373 233.5,61.612 229.5,65.612C225.5,69.612 217.927,73.73 216.5,73.612"
+        android:pathData="M189.5,73.612C189.5,73.612 183.061,73.594 182.865,76.717C182.67,79.839 189.329,77.564 190.5,75.612C190.5,75.612 200.5,72.612 209.894,60.129C209.894,60.129 219.075,62.084 218.773,52.908C218.5,44.612 215.5,43.612 212.5,43.612C212.5,43.612 210.5,31.612 203.5,23.612C198.844,18.291 191.577,15.738 185.5,17.612C181.454,18.86 177.5,23.612 177.5,23.612C177.5,23.612 180.857,23.001 182.82,22.454C184.584,21.963 186.538,21.035 189.745,21.319C196.173,21.887 198.385,23.725 200.152,25.413C203.5,28.612 208.5,36.612 209.992,44.419C209.992,44.419 203.356,47.932 208.918,58.373C208.918,58.373 206.5,61.612 202.5,65.612C198.5,69.612 190.927,73.73 189.5,73.612"
         android:strokeWidth="1"
         android:fillColor="#C36A61"
         android:fillType="evenOdd"
         android:strokeColor="#00000000"/>
-    <group>
-      <clip-path
-          android:pathData="M83,9.4l79.69,0l0,71.289l-79.69,0z"/>
-      <path
-          android:pathData="M161.679,77.391L156.832,62.702C156.611,62.033 156.678,61.312 157.023,60.697C159.004,57.158 164.393,44.605 162.157,34.175C159.732,22.87 146.747,6.486 116.161,9.845C85.575,13.205 83.094,40.548 83.094,40.548C83.094,40.548 81.288,54.163 93.453,64.618C105.391,74.878 124.803,76.632 138.99,72.971C139.517,72.835 140.068,72.87 140.57,73.079L158.333,80.49C160.316,81.318 162.353,79.43 161.679,77.391"
-          android:strokeWidth="1"
-          android:fillColor="#E7E7E7"
-          android:fillType="evenOdd"
-          android:strokeColor="#00000000"/>
-    </group>
-    <path
-        android:pathData="M150.847,34.203L141.384,34.203C140.677,34.203 140.103,34.735 140.103,35.393L140.103,50.265C140.103,50.922 140.677,51.455 141.384,51.455L150.847,51.455C151.554,51.455 152.128,50.922 152.128,50.265L152.128,35.393C152.128,34.735 151.554,34.203 150.847,34.203"
-        android:strokeWidth="1"
-        android:fillColor="#657887"
-        android:fillType="evenOdd"
-        android:strokeColor="#00000000"/>
-    <path
-        android:pathData="M135.522,34.203L126.06,34.203C125.353,34.203 124.779,34.735 124.779,35.393L124.779,50.265C124.779,50.922 125.353,51.455 126.06,51.455L135.522,51.455C136.229,51.455 136.803,50.922 136.803,50.265L136.803,35.393C136.803,34.735 136.229,34.203 135.522,34.203"
-        android:strokeWidth="1"
-        android:fillColor="#657887"
-        android:fillType="evenOdd"
-        android:strokeColor="#00000000"/>
-    <path
-        android:pathData="M120.197,34.203L110.735,34.203C110.028,34.203 109.454,34.735 109.454,35.393L109.454,50.265C109.454,50.922 110.028,51.455 110.735,51.455L120.197,51.455C120.904,51.455 121.478,50.922 121.478,50.265L121.478,35.393C121.478,34.735 120.904,34.203 120.197,34.203"
-        android:strokeWidth="1"
-        android:fillColor="#657887"
-        android:fillType="evenOdd"
-        android:strokeColor="#00000000"/>
-    <path
-        android:pathData="M104.873,34.203L95.41,34.203C94.703,34.203 94.129,34.735 94.129,35.393L94.129,50.265C94.129,50.922 94.703,51.455 95.41,51.455L104.873,51.455C105.58,51.455 106.154,50.922 106.154,50.265L106.154,35.393C106.154,34.735 105.58,34.203 104.873,34.203"
-        android:strokeWidth="1"
-        android:fillColor="#657887"
-        android:fillType="evenOdd"
-        android:strokeColor="#00000000"/>
   </group>
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_legal.xml b/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_legal.xml
index e3597aca0a5e6d20608100d0e118e46de39a9b73..b0b99fef23d5f1fdb7cb51754443579e8410dbc4 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_legal.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_legal.xml
@@ -3,55 +3,90 @@
     android:height="220dp"
     android:viewportWidth="360"
     android:viewportHeight="220">
+  <group>
+    <clip-path
+        android:pathData="M0,0h360v220h-360z"/>
     <group>
-        <clip-path android:pathData="M0,0h360v220h-360z" />
-        <path
-            android:fillColor="#E9F6FF"
-            android:fillType="evenOdd"
-            android:pathData="M178,117.8m-72,0a72,72 0,1 1,144 0a72,72 0,1 1,-144 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M233.733,144.953C233.118,138.032 232.68,131.108 231.845,124.199C230.096,109.816 227.71,95.522 225.609,81.19C218.317,80.25 213.23,79.623 213.23,79.623C213.23,79.623 199.795,77.484 199.613,83.638C199.431,89.793 214.572,92.923 214.572,92.923L215.799,92.923L216.882,101.878C216.882,101.878 205.052,116.141 205.919,120.922C206.785,125.703 214.174,123.63 214.174,123.63C214.174,123.63 209.814,136.628 213.157,140.059C215.609,142.57 218.085,141.467 218.085,141.467C218.085,141.467 211.895,147.092 214.677,152.102C215.903,154.307 223.129,154.941 223.129,154.941L234.808,154.577C233.945,151.421 233.768,148.206 233.752,144.968"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F8F8F8"
-            android:fillType="nonZero"
-            android:pathData="M281.353,174.805L238.027,180.879C233.625,181.493 229.555,178.431 228.924,174.032L213.737,65.948C213.44,63.827 213.999,61.675 215.29,59.967C216.581,58.258 218.498,57.132 220.619,56.838L263.945,50.749C266.064,50.451 268.214,51.007 269.922,52.295C271.631,53.583 272.758,55.497 273.055,57.615L288.243,165.68C288.546,167.805 287.989,169.962 286.696,171.675C285.402,173.388 283.479,174.515 281.353,174.805Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#00000000"
-            android:fillType="evenOdd"
-            android:pathData="M281.353,174.805L238.027,180.879C233.625,181.493 229.555,178.431 228.924,174.032L213.737,65.948C213.44,63.827 213.999,61.675 215.29,59.967C216.581,58.258 218.498,57.132 220.619,56.838L263.945,50.749C266.064,50.451 268.214,51.007 269.922,52.295C271.631,53.583 272.758,55.497 273.055,57.615L288.243,165.68C288.546,167.805 287.989,169.962 286.696,171.675C285.402,173.388 283.479,174.515 281.353,174.805Z"
-            android:strokeWidth="3.11407895"
-            android:strokeColor="#4A4A4A" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M386.07,150.821L321.457,134.721C321.457,134.721 315.705,133.173 309.828,124.45C303.952,115.727 298.552,94.663 294.68,92.404C294.68,92.404 293.256,74.033 283.848,72.648C283.848,72.648 280.877,59.348 279.856,59.321C278.835,59.294 273.736,59.163 272.193,65.65C270.649,72.137 272.641,84.06 278.8,87.511C278.8,87.511 289.593,163.618 289.604,163.846C289.906,169.97 289.299,169.649 288.467,171.749C293.761,173.084 321.465,182.918 347.514,190.311C354.114,192.184 360.414,194.222 365.658,196.442C367.987,197.428 374.792,182.221 386.07,150.821Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#E7E7E7"
-            android:fillType="evenOdd"
-            android:pathData="M223.671,67.754L264.902,61.839C266.651,61.588 268.273,62.803 268.524,64.552C268.524,64.558 268.525,64.564 268.526,64.57L269.688,73.007C269.928,74.75 268.714,76.361 266.972,76.611L225.742,82.525C223.992,82.776 222.371,81.562 222.12,79.812C222.119,79.806 222.118,79.8 222.117,79.794L220.956,71.358C220.716,69.614 221.929,68.004 223.671,67.754Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#E7E7E7"
-            android:fillType="evenOdd"
-            android:pathData="M226.875,89.314L267.976,83.437C269.726,83.187 271.347,84.403 271.597,86.152C271.598,86.157 271.598,86.162 271.599,86.167L276.086,118.645C276.327,120.39 275.113,122.001 273.369,122.251L232.267,128.127C230.518,128.377 228.896,127.162 228.646,125.412C228.646,125.407 228.645,125.402 228.644,125.397L224.158,92.92C223.917,91.175 225.131,89.563 226.875,89.314Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#E7E7E7"
-            android:fillType="evenOdd"
-            android:pathData="M233.281,135.657L274.314,129.833C276.064,129.585 277.683,130.802 277.932,132.552C277.932,132.555 277.932,132.557 277.933,132.56L281.682,159.498C281.925,161.246 280.708,162.86 278.962,163.108L237.93,168.931C236.18,169.18 234.56,167.963 234.312,166.213C234.311,166.21 234.311,166.207 234.311,166.204L230.562,139.266C230.318,137.519 231.535,135.905 233.281,135.657Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
+      <clip-path
+          android:pathData="M56,110C56,159.705 96.295,200 146,200L146,200C195.706,200 236,159.705 236,110L236,110C236,60.294 195.706,20 146,20L146,20C96.295,20 56,60.294 56,110L56,110Z"/>
+      <path
+          android:pathData="M51,205l190,0l0,-190l-190,0z"
+          android:strokeWidth="1"
+          android:fillColor="#E8F5FF"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
     </group>
+    <path
+        android:pathData="M145.715,140.258C154.996,140.258 161.254,135.477 161.254,128.41C161.254,123.875 158.828,121.063 153.414,119.059L153.414,118.426C158.301,117.125 161.535,113.223 161.535,108.652C161.535,103.836 158.336,100.742 150.848,98.246L144.836,96.207C141.145,95.012 139.668,93.746 139.668,91.707C139.668,89 142.094,87.172 145.68,87.172C149.125,87.172 151.691,88.895 152.043,91.461L160.867,91.461C160.34,84.5 154.363,80 145.75,80C136.469,80 130.352,84.676 130.352,91.777C130.352,96.172 132.531,99.09 137.559,101.41L137.559,102.043C132.848,103.484 130,107.035 130,111.43C130,116.457 133.164,119.586 140.582,121.977L146.734,124.016C150.426,125.141 151.973,126.441 151.973,128.48C151.973,131.223 149.477,133.051 145.855,133.051C142.34,133.051 139.633,131.258 139.281,128.586L130.387,128.586C130.738,135.547 136.961,140.258 145.715,140.258ZM147.754,115.754L143.922,114.488C140.758,113.574 138.93,111.746 138.93,109.496C138.93,107.105 141.109,104.855 143.852,104.469L147.684,105.77C150.848,106.648 152.641,108.441 152.641,110.727C152.641,113.188 150.531,115.367 147.754,115.754Z"
+        android:strokeWidth="1"
+        android:fillColor="#657887"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+    <group>
+      <clip-path
+          android:pathData="M186.104,78.298C185.878,85.991 204.804,89.903 204.804,89.903L204.804,89.903L206.337,89.903L207.691,101.097C207.691,101.097 192.904,118.926 193.986,124.902L193.986,124.902C195.069,130.879 204.306,128.287 204.306,128.287L204.306,128.287C204.306,128.287 198.855,144.535 203.034,148.824L203.034,148.824C206.1,151.962 209.195,150.584 209.195,150.584L209.195,150.584C209.195,150.584 201.457,157.616 204.935,163.877L204.935,163.877C206.467,166.633 215.5,167.427 215.5,167.427L215.5,167.427L230.099,166.972C229.02,163.026 228.798,159.008 228.779,154.96L228.779,154.96L228.754,154.942C227.986,146.29 227.439,137.635 226.395,128.998L226.395,128.998C224.209,111.02 221.225,93.152 218.6,75.238L218.6,75.238C209.484,74.061 203.126,73.278 203.126,73.278L203.126,73.278C203.126,73.278 200.302,72.829 196.954,72.828L196.954,72.828C192.138,72.828 186.238,73.759 186.104,78.298L186.104,78.298Z"/>
+      <path
+          android:pathData="M181.103,172.427l53.996,0l0,-104.598l-53.996,0z"
+          android:strokeWidth="1"
+          android:fillColor="#F7B994"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M266.519,37.187L212.362,44.797C209.71,45.165 207.314,46.573 205.7,48.708L205.7,48.708C204.087,50.845 203.389,53.534 203.759,56.185L203.759,56.185L222.743,191.29C223.533,196.789 228.619,200.616 234.121,199.849L234.121,199.849L288.279,192.257C290.937,191.894 293.341,190.485 294.958,188.343L294.958,188.343C296.574,186.203 297.27,183.506 296.892,180.85L296.892,180.85L277.907,45.77C277.535,43.121 276.127,40.728 273.991,39.119L273.991,39.119C272.232,37.793 270.1,37.089 267.923,37.089L267.923,37.089C267.456,37.089 266.987,37.121 266.519,37.187L266.519,37.187Z"/>
+      <path
+          android:pathData="M198.662,204.946l103.33,0l0,-172.858l-103.33,0z"
+          android:strokeWidth="1"
+          android:fillColor="#F8F8F8"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <path
+        android:pathData="M288.279,192.257L234.121,199.849C228.619,200.616 223.532,196.789 222.743,191.29L203.758,56.185C203.388,53.534 204.087,50.845 205.7,48.708C207.313,46.572 209.71,45.165 212.361,44.797L266.519,37.187C269.168,36.814 271.855,37.509 273.991,39.119C276.127,40.729 277.535,43.121 277.907,45.77L296.891,180.85C297.27,183.506 296.574,186.203 294.958,188.344C293.341,190.486 290.937,191.894 288.279,192.257Z"
+        android:strokeWidth="3.893"
+        android:fillColor="#00000000"
+        android:strokeColor="#4A4A4A"
+        android:fillType="evenOdd"/>
+    <group>
+      <clip-path
+          android:pathData="M276.829,55.812C274.899,63.922 277.389,78.825 285.088,83.139L285.088,83.139C285.088,83.139 298.579,178.272 298.594,178.558L298.594,178.558C298.971,186.212 298.212,185.811 297.172,188.436L297.172,188.436C303.79,190.106 338.419,202.399 370.98,211.639L370.98,211.639C379.231,213.981 387.107,216.528 393.66,219.302L393.66,219.302C396.572,220.535 405.077,201.527 419.176,162.277L419.176,162.277L338.409,142.152C338.409,142.152 331.219,140.217 323.874,129.312L323.874,129.312C316.529,118.408 309.779,92.079 304.938,89.255L304.938,89.255C304.938,89.255 303.158,66.291 291.399,64.561L291.399,64.561C291.399,64.561 287.685,47.935 286.408,47.901L286.408,47.901C286.306,47.898 286.17,47.895 286.006,47.895L286.006,47.895C284.135,47.895 278.602,48.355 276.829,55.812L276.829,55.812Z"/>
+      <path
+          android:pathData="M271.205,224.359l152.971,0l0,-181.463l-152.971,0z"
+          android:strokeWidth="1"
+          android:fillColor="#F7B994"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M267.715,51.048L216.178,58.443C213.999,58.755 212.482,60.768 212.783,62.947L212.783,62.947L214.235,73.494C214.236,73.5 214.237,73.508 214.238,73.515L214.238,73.515C214.551,75.702 216.579,77.22 218.765,76.906L218.765,76.906L270.303,69.514C272.482,69.201 273.998,67.188 273.698,65.007L273.698,65.007L272.246,54.463C272.245,54.455 272.244,54.449 272.242,54.44L272.242,54.44C271.957,52.446 270.245,51.008 268.288,51.008L268.288,51.008C268.099,51.008 267.908,51.021 267.715,51.048L267.715,51.048Z"/>
+      <path
+          android:pathData="M207.745,81.947l70.99,0l0,-35.939l-70.99,0z"
+          android:strokeWidth="1"
+          android:fillColor="#E7E7E7"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M271.558,78.047L220.182,85.392C218.002,85.704 216.484,87.719 216.785,89.9L216.785,89.9L222.394,130.497C222.395,130.503 222.396,130.509 222.397,130.516L222.397,130.516C222.709,132.702 224.736,134.222 226.922,133.91L226.922,133.91L278.298,126.564C280.478,126.252 281.997,124.237 281.695,122.056L281.695,122.056L276.087,81.459C276.086,81.453 276.085,81.446 276.085,81.44L276.085,81.44C275.799,79.444 274.087,78.006 272.129,78.006L272.129,78.006C271.941,78.006 271.75,78.02 271.558,78.047L271.558,78.047Z"/>
+      <path
+          android:pathData="M211.747,138.95l74.986,0l0,-65.944l-74.986,0z"
+          android:strokeWidth="1"
+          android:fillColor="#E7E7E7"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M279.392,135.225L228.102,142.505C225.919,142.815 224.397,144.833 224.703,147.016L224.703,147.016L229.388,180.69C229.389,180.693 229.389,180.697 229.39,180.701L229.39,180.701C229.7,182.888 231.724,184.41 233.912,184.099L233.912,184.099L285.202,176.819C287.386,176.51 288.907,174.492 288.603,172.307L288.603,172.307L283.916,138.635C283.915,138.631 283.915,138.628 283.914,138.624L283.914,138.624C283.631,136.628 281.919,135.185 279.959,135.185L279.959,135.185C279.772,135.185 279.583,135.198 279.392,135.225L279.392,135.225Z"/>
+      <path
+          android:pathData="M219.663,189.139l73.978,0l0,-58.953l-73.978,0z"
+          android:strokeWidth="1"
+          android:fillColor="#E7E7E7"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+  </group>
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_privacy.xml b/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_privacy.xml
deleted file mode 100644
index b5a170e9e03264e3178d3fa1727fbe5fa2a1d087..0000000000000000000000000000000000000000
--- a/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_privacy.xml
+++ /dev/null
@@ -1,225 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="360dp"
-    android:height="220dp"
-    android:viewportWidth="360"
-    android:viewportHeight="220">
-    <group>
-        <clip-path android:pathData="M0,0h360v220h-360z" />
-        <path
-            android:fillColor="#F6FBFF"
-            android:fillType="evenOdd"
-            android:pathData="M185.167,195.45C234.873,195.45 275.167,155.156 275.167,105.45C275.167,55.745 234.873,15.45 185.167,15.45C135.462,15.45 95.167,55.745 95.167,105.45C95.167,155.156 135.462,195.45 185.167,195.45"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <group>
-            <clip-path android:pathData="M95.168,105.45C95.168,155.156 135.462,195.45 185.168,195.45L185.168,195.45C234.874,195.45 275.168,155.156 275.168,105.45L275.168,105.45C275.168,55.745 234.874,15.45 185.168,15.45L185.168,15.45C135.462,15.45 95.168,55.745 95.168,105.45L95.168,105.45Z" />
-            <path
-                android:fillColor="#F6FBFF"
-                android:fillType="evenOdd"
-                android:pathData="M89.207,201.411l191.921,0l0,-191.921l-191.921,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M115.167,105.45C115.167,144.11 146.508,175.45 185.168,175.45L185.168,175.45C223.827,175.45 255.168,144.11 255.168,105.45L255.168,105.45C255.168,66.791 223.827,35.45 185.168,35.45L185.168,35.45C146.508,35.45 115.167,66.791 115.167,105.45L115.167,105.45Z" />
-            <path
-                android:fillColor="#E9F6FF"
-                android:fillType="evenOdd"
-                android:pathData="M110.532,180.085l149.271,0l0,-149.271l-149.271,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <path
-            android:fillColor="#657888"
-            android:fillType="evenOdd"
-            android:pathData="M113.246,69.829C109.66,71.988 98.095,78.432 86.493,79.284C85.089,79.388 84.001,80.532 84.001,81.915L84.001,123.212C84.001,129.558 87.363,135.446 92.877,138.759C101.794,144.116 111.572,149.18 113.874,150.359C114.189,150.521 114.565,150.521 114.882,150.359C117.185,149.18 126.963,144.116 135.88,138.759C141.393,135.446 144.757,129.558 144.757,123.212L144.757,81.915C144.757,80.532 143.669,79.388 142.264,79.284C130.661,78.432 119.098,71.988 115.51,69.829C115.162,69.619 114.77,69.515 114.379,69.515C113.986,69.515 113.594,69.619 113.246,69.829"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <group>
-            <clip-path android:pathData="M113.247,69.829C109.659,71.988 98.095,78.432 86.493,79.284L86.493,79.284C85.089,79.388 84,80.532 84,81.915L84,81.915L84,123.212C84,129.557 87.363,135.446 92.876,138.759L92.876,138.759C101.793,144.116 111.572,149.18 113.873,150.359L113.873,150.359C114.19,150.522 114.566,150.522 114.882,150.359L114.882,150.359C117.185,149.18 126.962,144.116 135.879,138.759L135.879,138.759C141.394,135.446 144.757,129.557 144.757,123.212L144.757,123.212L144.757,81.915C144.757,80.532 143.669,79.388 142.263,79.284L142.263,79.284C130.662,78.432 119.097,71.988 115.51,69.829L115.51,69.829C115.163,69.619 114.77,69.515 114.378,69.515L114.378,69.515C113.986,69.515 113.594,69.619 113.247,69.829L113.247,69.829Z" />
-            <path
-                android:fillColor="#657888"
-                android:fillType="evenOdd"
-                android:pathData="M83.453,150.702l62,0l0,-82l-62,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M113.247,69.829C109.659,71.988 98.095,78.432 86.493,79.284L86.493,79.284C85.089,79.388 84,80.532 84,81.915L84,81.915L84,123.212C84,129.557 87.363,135.446 92.876,138.759L92.876,138.759C101.793,144.116 111.572,149.18 113.873,150.359L113.873,150.359C114.19,150.522 114.566,150.522 114.882,150.359L114.882,150.359C117.185,149.18 126.962,144.116 135.879,138.759L135.879,138.759C141.394,135.446 144.757,129.557 144.757,123.212L144.757,123.212L144.757,81.915C144.757,80.532 143.669,79.388 142.263,79.284L142.263,79.284C130.662,78.432 119.097,71.988 115.51,69.829L115.51,69.829C115.163,69.619 114.77,69.515 114.378,69.515L114.378,69.515C113.986,69.515 113.594,69.619 113.247,69.829L113.247,69.829Z" />
-            <path
-                android:fillColor="#657888"
-                android:fillType="evenOdd"
-                android:pathData="M86.494,79.284C85.089,79.388 84.001,80.532 84.001,81.915L84.001,123.212C84.001,129.557 87.363,135.446 92.877,138.759C101.794,144.116 111.572,149.179 113.874,150.359C114.19,150.521 114.566,150.521 114.883,150.359C117.185,149.179 126.963,144.116 135.88,138.759C141.394,135.446 144.757,129.557 144.757,123.212L144.757,81.915C144.757,80.532 143.669,79.388 142.264,79.284C130.662,78.431 119.098,71.988 115.511,69.829C115.163,69.619 114.77,69.514 114.379,69.514C113.986,69.514 113.595,69.619 113.247,69.829C109.66,71.988 98.096,78.431 86.494,79.284"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M113.247,69.829C109.659,71.988 98.095,78.432 86.493,79.284L86.493,79.284C85.089,79.388 84,80.532 84,81.915L84,81.915L84,123.212C84,129.557 87.363,135.446 92.876,138.759L92.876,138.759C101.793,144.116 111.572,149.18 113.873,150.359L113.873,150.359C114.19,150.522 114.566,150.522 114.882,150.359L114.882,150.359C117.185,149.18 126.962,144.116 135.879,138.759L135.879,138.759C141.394,135.446 144.757,129.557 144.757,123.212L144.757,123.212L144.757,81.915C144.757,80.532 143.669,79.388 142.263,79.284L142.263,79.284C130.662,78.432 119.097,71.988 115.51,69.829L115.51,69.829C115.163,69.619 114.77,69.515 114.378,69.515L114.378,69.515C113.986,69.515 113.594,69.619 113.247,69.829L113.247,69.829Z" />
-            <path
-                android:fillColor="#657888"
-                android:fillType="evenOdd"
-                android:pathData="M83.453,150.702l62,0l0,-82l-62,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M113.247,69.829C109.659,71.988 98.095,78.432 86.493,79.284L86.493,79.284C85.089,79.388 84,80.532 84,81.915L84,81.915L84,123.212C84,129.557 87.363,135.446 92.876,138.759L92.876,138.759C101.793,144.116 111.572,149.18 113.873,150.359L113.873,150.359C114.19,150.522 114.566,150.522 114.882,150.359L114.882,150.359C117.185,149.18 126.962,144.116 135.879,138.759L135.879,138.759C141.394,135.446 144.757,129.557 144.757,123.212L144.757,123.212L144.757,81.915C144.757,80.532 143.669,79.388 142.263,79.284L142.263,79.284C130.662,78.432 119.097,71.988 115.51,69.829L115.51,69.829C115.163,69.619 114.77,69.515 114.378,69.515L114.378,69.515C113.986,69.515 113.594,69.619 113.247,69.829L113.247,69.829Z" />
-            <path
-                android:fillColor="#657888"
-                android:fillType="evenOdd"
-                android:pathData="M79,155.482l70.756,0l0,-90.967l-70.756,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M103.815,101.798L101.962,101.798C99.498,101.798 97.503,103.842 97.503,106.363L97.503,106.363L97.503,121.987C97.503,124.509 99.498,126.553 101.962,126.553L101.962,126.553L125.598,126.553C128.061,126.553 130.057,124.509 130.057,121.987L130.057,121.987L130.057,106.363C130.057,103.842 128.061,101.798 125.598,101.798L125.598,101.798L123.745,101.798C123.419,94.992 119.074,89.585 113.78,89.585L113.78,89.585C108.486,89.585 104.142,94.992 103.815,101.798L103.815,101.798ZM113.78,93.983C116.682,93.983 119.161,97.484 119.445,101.798L119.445,101.798L108.115,101.798C108.398,97.484 110.877,93.983 113.78,93.983L113.78,93.983Z" />
-            <path
-                android:fillColor="#FFFFFF"
-                android:fillType="evenOdd"
-                android:pathData="M92.503,131.553l42.554,0l0,-46.968l-42.554,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <path
-            android:fillColor="#657888"
-            android:fillType="evenOdd"
-            android:pathData="M109.224,111.945C109.224,113.506 110.128,114.865 111.468,115.594L111.468,120.247C111.468,120.859 111.996,121.355 112.648,121.355L114.776,121.355C115.427,121.355 115.955,120.859 115.955,120.247L115.955,115.594C117.295,114.865 118.2,113.506 118.2,111.945C118.2,109.615 116.191,107.726 113.711,107.726C111.234,107.726 109.224,109.615 109.224,111.945"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <group>
-            <clip-path android:pathData="M109.224,111.945C109.224,113.506 110.128,114.866 111.468,115.595L111.468,115.595L111.468,120.247C111.468,120.86 111.997,121.355 112.648,121.355L112.648,121.355L114.776,121.355C115.428,121.355 115.956,120.86 115.956,120.247L115.956,120.247L115.956,115.595C117.295,114.866 118.199,113.506 118.199,111.945L118.199,111.945C118.199,109.615 116.191,107.727 113.711,107.727L113.711,107.727C111.234,107.727 109.224,109.615 109.224,111.945L109.224,111.945Z" />
-            <path
-                android:fillColor="#657888"
-                android:fillType="evenOdd"
-                android:pathData="M108.453,121.702l10,0l0,-14l-10,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M109.224,111.945C109.224,113.506 110.128,114.866 111.468,115.595L111.468,115.595L111.468,120.247C111.468,120.86 111.997,121.355 112.648,121.355L112.648,121.355L114.776,121.355C115.428,121.355 115.956,120.86 115.956,120.247L115.956,120.247L115.956,115.595C117.295,114.866 118.199,113.506 118.199,111.945L118.199,111.945C118.199,109.615 116.191,107.727 113.711,107.727L113.711,107.727C111.234,107.727 109.224,109.615 109.224,111.945L109.224,111.945Z" />
-            <path
-                android:fillColor="#657888"
-                android:fillType="evenOdd"
-                android:pathData="M109.224,111.945C109.224,113.506 110.128,114.865 111.468,115.594L111.468,120.247C111.468,120.859 111.996,121.355 112.648,121.355L114.776,121.355C115.427,121.355 115.955,120.859 115.955,120.247L115.955,115.594C117.295,114.865 118.2,113.506 118.2,111.945C118.2,109.615 116.191,107.726 113.711,107.726C111.234,107.726 109.224,109.615 109.224,111.945"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M109.224,111.945C109.224,113.506 110.128,114.866 111.468,115.595L111.468,115.595L111.468,120.247C111.468,120.86 111.997,121.355 112.648,121.355L112.648,121.355L114.776,121.355C115.428,121.355 115.956,120.86 115.956,120.247L115.956,120.247L115.956,115.595C117.295,114.866 118.199,113.506 118.199,111.945L118.199,111.945C118.199,109.615 116.191,107.727 113.711,107.727L113.711,107.727C111.234,107.727 109.224,109.615 109.224,111.945L109.224,111.945Z" />
-            <path
-                android:fillColor="#657888"
-                android:fillType="evenOdd"
-                android:pathData="M108.453,121.702l10,0l0,-14l-10,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M109.224,111.945C109.224,113.506 110.128,114.866 111.468,115.595L111.468,115.595L111.468,120.247C111.468,120.86 111.997,121.355 112.648,121.355L112.648,121.355L114.776,121.355C115.428,121.355 115.956,120.86 115.956,120.247L115.956,120.247L115.956,115.595C117.295,114.866 118.199,113.506 118.199,111.945L118.199,111.945C118.199,109.615 116.191,107.727 113.711,107.727L113.711,107.727C111.234,107.727 109.224,109.615 109.224,111.945L109.224,111.945Z" />
-            <path
-                android:fillColor="#657888"
-                android:fillType="evenOdd"
-                android:pathData="M104.224,126.355l18.976,0l0,-23.629l-18.976,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M186.925,43.702l-1.472,11l10,0l-0.388,-11z" />
-            <path
-                android:fillColor="#B7846A"
-                android:fillType="evenOdd"
-                android:pathData="M180.453,59.702l20,0l0,-21l-20,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M182.493,35.719C182.451,53.333 200.235,51.043 200.751,33.368L200.751,33.368C200.77,25.138 196.897,21.254 192.713,21.253L192.713,21.253C187.942,21.252 182.767,26.302 182.493,35.719L182.493,35.719Z" />
-            <path
-                android:fillColor="#B7846A"
-                android:fillType="evenOdd"
-                android:pathData="M177.492,52.834l28.26,0l0,-36.581l-28.26,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M178.842,103.017C172.772,123.943 173.224,137.522 171.961,148.973L171.961,148.973C171.944,148.996 176.021,201.163 176.017,201.176L176.017,201.176L182.734,201.34C183.554,183.93 184.376,166.519 185.195,149.108L185.195,149.108C187.342,137.484 190.622,128.09 193.009,119.43L193.009,119.43L193.746,125.619L198.419,200.889L203.413,200.726C205.54,168.547 214.055,140.766 206.365,102.197L206.365,102.197L178.842,103.017Z" />
-            <path
-                android:fillColor="#DEA8A3"
-                android:fillType="evenOdd"
-                android:pathData="M166.961,206.341l47.56,0l0,-109.144l-47.56,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M170.85,103.453L168.25,100.505C153.552,120.591 173.942,117.747 170.85,103.453L170.85,103.453Z" />
-            <path
-                android:fillColor="#B7846A"
-                android:fillType="evenOdd"
-                android:pathData="M157.866,119.872l18.309,0l0,-24.367l-18.309,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M169.129,80.04C167.914,85.71 167.51,93.99 166.753,99.405L166.753,99.405C166.654,100.115 166.02,103 167.705,103.613L167.705,103.613C169.674,104.301 171.128,105.125 171.701,103.222L171.701,103.222C173.578,96.984 176.693,83.798 178.438,75.527L178.438,75.527C178.815,73.733 179.652,70.603 179.652,71.424L179.652,71.424C179.652,72.341 177.505,100.666 178.842,103.017L178.842,103.017C179.534,104.233 183.676,104.767 188.579,104.785L188.579,104.785L189.102,104.785C195.99,104.76 204.16,103.748 206.365,102.197L206.365,102.197C206.908,101.815 206.63,96.575 205.924,90.236L205.924,90.236C205.803,90.121 205.68,90.006 205.556,89.888L205.556,89.888C203.631,88.058 199.081,84.964 196.163,83.672L196.163,83.672C196.941,81.662 197.897,80.82 198.675,78.809L198.675,78.809C198.675,78.809 203.137,82.015 203.937,82.502L203.937,82.502C204.3,82.722 204.663,82.929 205.014,83.122L205.014,83.122C204.802,81.657 204.576,80.208 204.341,78.809L204.341,78.809C203.258,72.352 203.127,66.5 203.127,66.5L203.127,66.5C203.127,66.5 204.573,73.934 205.556,77.168L205.556,77.168C207.175,82.502 207.984,84.553 207.984,84.553L207.984,84.553C207.984,84.553 206.621,84 205.014,83.122L205.014,83.122C205.36,85.518 205.671,87.949 205.924,90.236L205.924,90.236C212.193,96.133 216.339,98.409 219.318,93.58L219.318,93.58C219.518,93.256 219.613,92.779 219.624,92.178L219.624,92.178L219.624,91.949C219.555,87.733 215.786,78.155 214.056,71.833L214.056,71.833C212.117,64.762 207.984,52.549 195.65,52.506L195.65,52.506C194.737,52.504 193.713,52.648 192.677,52.792L192.677,52.792C190.186,53.138 187.62,53.485 186.343,51.786L186.343,51.786C173.581,55.011 171.152,70.603 169.129,80.04L169.129,80.04Z" />
-            <path
-                android:fillColor="#B2DBF0"
-                android:fillType="evenOdd"
-                android:pathData="M161.554,109.785l63.07,0l0,-62.999l-63.07,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M198.064,213.706C199.991,215.676 201.398,214.731 203.213,213.706L203.213,213.706C207.821,211.663 204.075,202.582 203.583,200.453L203.583,200.453L198.694,199.222C198.586,200.945 193.901,211.157 198.064,213.706L198.064,213.706Z" />
-            <path
-                android:fillColor="#4A4A4A"
-                android:fillType="evenOdd"
-                android:pathData="M191.343,219.857l19.142,0l0,-25.635l-19.142,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M163.343,211.613C169.125,211.601 175.719,211.59 181.501,211.578L181.501,211.578C181.701,211.514 182.128,211.343 182.498,210.92L182.498,210.92C183.62,210.216 182.578,202.432 182.734,201.34L182.734,201.34C180.495,201.286 178.256,201.231 176.017,201.176L176.017,201.176C176.287,207.02 160.131,208.033 163.343,211.613L163.343,211.613Z" />
-            <path
-                android:fillColor="#4A4A4A"
-                android:fillType="evenOdd"
-                android:pathData="M157.92,216.614l30.105,0l0,-20.437l-30.105,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M183.873,67.497C183.148,67.497 182.611,68.094 182.676,68.828L182.676,68.828L183.846,82.398C183.909,83.133 184.549,83.729 185.275,83.729L185.275,83.729L190.798,83.729C191.525,83.729 192.061,83.133 191.998,82.398L191.998,82.398L190.827,68.828C190.763,68.094 190.123,67.497 189.398,67.497L189.398,67.497L183.873,67.497Z" />
-            <path
-                android:fillColor="#4A4A4A"
-                android:fillType="evenOdd"
-                android:pathData="M177.669,88.729l19.333,0l0,-26.232l-19.333,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M186.756,78.742C188.561,81.056 192.707,83.37 196.48,83.007L196.48,83.007L197.46,81.169L198.314,79.271C196.207,77.71 193.948,75.485 191.014,74.472L191.014,74.472C190.648,74.449 190.304,74.439 189.981,74.439L189.981,74.439C185.426,74.439 185.079,76.591 186.756,78.742L186.756,78.742Z" />
-            <path
-                android:fillColor="#B7846A"
-                android:fillType="evenOdd"
-                android:pathData="M180.832,88.045l22.481,0l0,-18.607l-22.481,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M181.461,8.912C181.162,9.248 180.716,9.407 180.273,9.348L180.273,9.348C175.156,8.657 174.34,10.235 174.005,11.814L174.005,11.814C173.671,13.391 173.819,14.967 170.641,14.282L170.641,14.282C164.132,12.876 165.096,17.916 164.764,20.025L164.764,20.025C164.434,22.131 162.141,22.461 162.141,22.461L162.141,22.461C160.193,23.018 162.236,26.364 160.068,28.069L160.068,28.069C158.309,29.451 158.857,31.143 159.128,31.735L159.128,31.735C159.186,31.862 159.266,31.978 159.359,32.082L159.359,32.082C161.985,35 160.072,35.992 160.072,35.992L160.072,35.992C158.908,36.915 158.469,37.782 158.453,38.558L158.453,38.558L158.453,38.649C158.483,40.026 159.829,41.112 160.777,41.706L160.777,41.706C161.251,42.003 161.487,42.571 161.385,43.128L161.385,43.128C161.021,45.126 162.959,46.216 165.066,45.983L165.066,45.983C167.475,45.717 167.331,47.928 167.331,47.928L167.331,47.928C166.515,51.159 169.634,51.191 171.261,50.999L171.261,50.999C171.787,50.938 172.309,51.196 172.572,51.662L172.572,51.662C173.234,52.837 174.081,53.243 174.915,53.263L174.915,53.263L175.049,53.263C176.039,53.24 176.992,52.701 177.573,52.296L177.573,52.296C177.931,52.046 178.388,51.983 178.795,52.137L178.795,52.137C180.77,52.889 181.844,52.14 182.33,51.583L182.33,51.583C182.574,51.301 182.937,51.145 183.306,51.152L183.306,51.152C187.033,51.225 188.694,44.692 187.842,43.029L187.842,43.029L183.973,37.318C183.487,36.199 181.715,31.057 184.254,29.535L184.254,29.535C186.158,28.395 187.703,30.269 190.667,26.874L190.667,26.874C193.37,23.779 193.369,23.53 194.703,23.294L194.703,23.294C195.637,23.127 196.049,25.406 198.894,26.988L198.894,26.988C199.292,27.21 199.314,28.189 199.363,28.542L199.363,28.542C200.618,37.293 195.308,42.476 193.608,43.749L193.608,43.749C193.314,43.969 193.124,44.297 193.07,44.663L193.07,44.663C191.829,53.046 200.177,52.737 201.896,52.586L201.896,52.586C202.105,52.569 202.31,52.605 202.506,52.675L202.506,52.675C204.951,53.557 206.327,51.889 206.933,50.808L206.933,50.808C207.196,50.339 207.717,50.082 208.247,50.132L208.247,50.132C211.44,50.432 212.328,48.453 212.574,47.304L212.574,47.304C212.674,46.835 213.006,46.451 213.454,46.296L213.454,46.296C216.556,45.233 216.546,42.79 216.367,41.692L216.367,41.692C216.307,41.324 216.408,40.946 216.629,40.647L216.629,40.647C217.487,39.497 217.8,38.534 217.806,37.742L217.806,37.742L217.806,37.692C217.797,36.579 217.18,35.813 216.631,35.351L216.631,35.351C216.201,34.988 216.06,34.402 216.218,33.858L216.218,33.858C216.924,31.436 214.408,29.748 212.965,29.001L212.965,29.001C212.466,28.743 212.166,28.191 212.242,27.629L212.242,27.629C212.535,25.502 211.196,24.356 210.255,23.824L210.255,23.824C209.77,23.55 209.499,23.002 209.573,22.444L209.573,22.444C210.2,17.643 206.672,16.72 205.202,16.542L205.202,16.542C204.818,16.496 204.48,16.281 204.248,15.965L204.248,15.965C202.467,13.545 199.325,15.092 199.325,15.092L199.325,15.092C199.325,15.092 197.882,15.913 198.431,13.433L198.431,13.433C198.856,11.523 197.15,10.982 196.163,10.829L196.163,10.829C195.756,10.765 195.423,10.498 195.234,10.128L195.234,10.128C193.673,7.067 189.68,7.546 188.243,7.831L188.243,7.831C187.909,7.897 187.565,7.828 187.273,7.65L187.273,7.65C186.51,7.183 185.788,7 185.123,7L185.123,7C183.431,7 182.11,8.188 181.461,8.912L181.461,8.912Z" />
-            <path
-                android:fillColor="#000000"
-                android:fillType="evenOdd"
-                android:pathData="M153.453,58.264l69.354,0l0,-56.264l-69.354,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M195.555,84.558l10.958,11.695l-1.731,-14.033l-6.344,-3.508z" />
-            <path
-                android:fillColor="#B2DBF0"
-                android:fillType="evenOdd"
-                android:pathData="M190.554,101.253l20.959,0l0,-27.541l-20.959,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-    </group>
-</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_technical.xml b/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_technical.xml
index d30045871f3f5af376067077525a3c92a5dd430a..8e7b91c0fa30780ef2fa345c5c9f70baaef646b4 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_technical.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_technical.xml
@@ -3,124 +3,98 @@
     android:height="220dp"
     android:viewportWidth="360"
     android:viewportHeight="220">
+  <group>
+    <clip-path
+        android:pathData="M0,0h360v220h-360z"/>
     <group>
-        <clip-path android:pathData="M0,0h360v220h-360z" />
-        <path
-            android:fillColor="#E9F6FF"
-            android:fillType="evenOdd"
-            android:pathData="M178,117.8m-72,0a72,72 0,1 1,144 0a72,72 0,1 1,-144 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M233.733,144.953C233.118,138.032 232.68,131.108 231.845,124.199C230.096,109.816 227.71,95.522 225.609,81.19C218.317,80.25 213.23,79.623 213.23,79.623C213.23,79.623 199.795,77.484 199.613,83.638C199.431,89.793 214.572,92.923 214.572,92.923L215.799,92.923L216.882,101.878C216.882,101.878 205.052,116.141 205.919,120.922C206.785,125.703 214.174,123.63 214.174,123.63C214.174,123.63 209.814,136.628 213.157,140.059C215.609,142.57 218.085,141.467 218.085,141.467C218.085,141.467 211.895,147.092 214.677,152.102C215.903,154.307 223.129,154.941 223.129,154.941L234.808,154.577C233.945,151.421 233.768,148.206 233.752,144.968"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F8F8F8"
-            android:fillType="nonZero"
-            android:pathData="M281.353,174.805L238.027,180.879C233.625,181.493 229.555,178.431 228.924,174.032L213.737,65.948C213.44,63.827 213.999,61.675 215.29,59.967C216.581,58.258 218.498,57.132 220.619,56.838L263.945,50.749C266.064,50.451 268.214,51.007 269.922,52.295C271.631,53.583 272.758,55.497 273.055,57.615L288.243,165.68C288.546,167.805 287.989,169.962 286.696,171.675C285.402,173.388 283.479,174.515 281.353,174.805Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#00000000"
-            android:fillType="evenOdd"
-            android:pathData="M281.353,174.805L238.027,180.879C233.625,181.493 229.555,178.431 228.924,174.032L213.737,65.948C213.44,63.827 213.999,61.675 215.29,59.967C216.581,58.258 218.498,57.132 220.619,56.838L263.945,50.749C266.064,50.451 268.214,51.007 269.922,52.295C271.631,53.583 272.758,55.497 273.055,57.615L288.243,165.68C288.546,167.805 287.989,169.962 286.696,171.675C285.402,173.388 283.479,174.515 281.353,174.805Z"
-            android:strokeWidth="3.11407895"
-            android:strokeColor="#4A4A4A" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M386.07,150.821L321.457,134.721C321.457,134.721 315.705,133.173 309.828,124.45C303.952,115.727 298.552,94.663 294.68,92.404C294.68,92.404 293.256,74.033 283.848,72.648C283.848,72.648 280.877,59.348 279.856,59.321C278.835,59.294 273.736,59.163 272.193,65.65C270.649,72.137 272.641,84.06 278.8,87.511C278.8,87.511 289.593,163.618 289.604,163.846C289.906,169.97 289.299,169.649 288.467,171.749C293.761,173.084 321.465,182.918 347.514,190.311C354.114,192.184 360.414,194.222 365.658,196.442C367.987,197.428 374.792,182.221 386.07,150.821Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#E7E7E7"
-            android:fillType="evenOdd"
-            android:pathData="M223.671,67.754L264.902,61.839C266.651,61.588 268.273,62.803 268.524,64.552C268.524,64.558 268.525,64.564 268.526,64.57L269.688,73.007C269.928,74.75 268.714,76.361 266.972,76.611L225.742,82.525C223.992,82.776 222.371,81.562 222.12,79.812C222.119,79.806 222.118,79.8 222.117,79.794L220.956,71.358C220.716,69.614 221.929,68.004 223.671,67.754Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#E7E7E7"
-            android:fillType="evenOdd"
-            android:pathData="M226.875,89.314L267.976,83.437C269.726,83.187 271.347,84.403 271.597,86.152C271.598,86.157 271.598,86.162 271.599,86.167L276.086,118.645C276.327,120.39 275.113,122.001 273.369,122.251L232.267,128.127C230.518,128.377 228.896,127.162 228.646,125.412C228.646,125.407 228.645,125.402 228.644,125.397L224.158,92.92C223.917,91.175 225.131,89.563 226.875,89.314Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#E7E7E7"
-            android:fillType="evenOdd"
-            android:pathData="M233.281,135.657L274.314,129.833C276.064,129.585 277.683,130.802 277.932,132.552C277.932,132.555 277.932,132.557 277.933,132.56L281.682,159.498C281.925,161.246 280.708,162.86 278.962,163.108L237.93,168.931C236.18,169.18 234.56,167.963 234.312,166.213C234.311,166.21 234.311,166.207 234.311,166.204L230.562,139.266C230.318,137.519 231.535,135.905 233.281,135.657Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <group>
-            <clip-path android:pathData="M144.4,93l57.6,0l0,49.6l-57.6,0z" />
-            <path
-                android:fillColor="#657888"
-                android:fillType="evenOdd"
-                android:pathData="M183.821,117.356L190.871,101.627L197.922,117.356L183.821,117.356ZM148.478,124.542L155.528,108.813L162.579,124.542L148.478,124.542ZM173.126,97.757C174.48,97.757 175.581,98.858 175.581,100.211C175.581,101.564 174.48,102.665 173.126,102.665C171.773,102.665 170.672,101.564 170.672,100.211C170.672,98.858 171.773,97.757 173.126,97.757L173.126,97.757ZM201.836,116.559L194.198,99.519C195.214,98.835 195.795,97.599 195.57,96.313C195.267,94.57 193.609,93.404 191.864,93.707L178.94,95.96C177.626,94.169 175.512,93 173.126,93C169.856,93 167.091,95.189 166.21,98.178L153.437,100.403C151.694,100.707 150.527,102.366 150.831,104.109C151,105.077 151.586,105.865 152.373,106.325L144.564,123.745C144.417,124.072 144.376,124.418 144.413,124.75C144.541,130.028 149.463,133.234 155.528,133.234C161.591,133.234 166.51,130.03 166.644,124.758C166.682,124.423 166.641,124.075 166.493,123.745L158.547,106.017L167.331,104.486C168.101,105.527 169.14,106.359 170.35,106.866L170.35,137.049L160.439,137.049C158.906,137.049 157.663,138.292 157.663,139.824C157.663,141.357 158.906,142.6 160.439,142.6L185.813,142.6C187.346,142.6 188.589,141.357 188.589,139.824C188.589,138.292 187.346,137.049 185.813,137.049L175.901,137.049L175.901,106.866C177.882,106.037 179.415,104.35 180.035,102.272L186.843,101.085L179.907,116.559C179.759,116.887 179.719,117.233 179.756,117.567C179.886,122.842 184.807,126.049 190.871,126.049C196.936,126.049 201.859,122.842 201.988,117.564C202.024,117.231 201.983,116.886 201.836,116.559L201.836,116.559Z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
+      <clip-path
+          android:pathData="M56,110C56,159.705 96.295,200 146,200L146,200C195.706,200 236,159.705 236,110L236,110C236,60.294 195.706,20 146,20L146,20C96.295,20 56,60.294 56,110L56,110Z"/>
+      <path
+          android:pathData="M51,205l190,0l0,-190l-190,0z"
+          android:strokeWidth="1"
+          android:fillColor="#E8F5FF"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
     </group>
     <group>
-        <clip-path android:pathData="M0,0h360v220h-360z" />
-        <path
-            android:fillColor="#E9F6FF"
-            android:fillType="evenOdd"
-            android:pathData="M178,117.8m-72,0a72,72 0,1 1,144 0a72,72 0,1 1,-144 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M233.733,144.953C233.118,138.032 232.68,131.108 231.845,124.199C230.096,109.816 227.71,95.522 225.609,81.19C218.317,80.25 213.23,79.623 213.23,79.623C213.23,79.623 199.795,77.484 199.613,83.638C199.431,89.793 214.572,92.923 214.572,92.923L215.799,92.923L216.882,101.878C216.882,101.878 205.052,116.141 205.919,120.922C206.785,125.703 214.174,123.63 214.174,123.63C214.174,123.63 209.814,136.628 213.157,140.059C215.609,142.57 218.085,141.467 218.085,141.467C218.085,141.467 211.895,147.092 214.677,152.102C215.903,154.307 223.129,154.941 223.129,154.941L234.808,154.577C233.945,151.421 233.768,148.206 233.752,144.968"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F8F8F8"
-            android:fillType="nonZero"
-            android:pathData="M281.353,174.805L238.027,180.879C233.625,181.493 229.555,178.431 228.924,174.032L213.737,65.948C213.44,63.827 213.999,61.675 215.29,59.967C216.581,58.258 218.498,57.132 220.619,56.838L263.945,50.749C266.064,50.451 268.214,51.007 269.922,52.295C271.631,53.583 272.758,55.497 273.055,57.615L288.243,165.68C288.546,167.805 287.989,169.962 286.696,171.675C285.402,173.388 283.479,174.515 281.353,174.805Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#00000000"
-            android:fillType="evenOdd"
-            android:pathData="M281.353,174.805L238.027,180.879C233.625,181.493 229.555,178.431 228.924,174.032L213.737,65.948C213.44,63.827 213.999,61.675 215.29,59.967C216.581,58.258 218.498,57.132 220.619,56.838L263.945,50.749C266.064,50.451 268.214,51.007 269.922,52.295C271.631,53.583 272.758,55.497 273.055,57.615L288.243,165.68C288.546,167.805 287.989,169.962 286.696,171.675C285.402,173.388 283.479,174.515 281.353,174.805Z"
-            android:strokeWidth="3.11407895"
-            android:strokeColor="#4A4A4A" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M386.07,150.821L321.457,134.721C321.457,134.721 315.705,133.173 309.828,124.45C303.952,115.727 298.552,94.663 294.68,92.404C294.68,92.404 293.256,74.033 283.848,72.648C283.848,72.648 280.877,59.348 279.856,59.321C278.835,59.294 273.736,59.163 272.193,65.65C270.649,72.137 272.641,84.06 278.8,87.511C278.8,87.511 289.593,163.618 289.604,163.846C289.906,169.97 289.299,169.649 288.467,171.749C293.761,173.084 321.465,182.918 347.514,190.311C354.114,192.184 360.414,194.222 365.658,196.442C367.987,197.428 374.792,182.221 386.07,150.821Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#E7E7E7"
-            android:fillType="evenOdd"
-            android:pathData="M223.671,67.754L264.902,61.839C266.651,61.588 268.273,62.803 268.524,64.552C268.524,64.558 268.525,64.564 268.526,64.57L269.688,73.007C269.928,74.75 268.714,76.361 266.972,76.611L225.742,82.525C223.992,82.776 222.371,81.562 222.12,79.812C222.119,79.806 222.118,79.8 222.117,79.794L220.956,71.358C220.716,69.614 221.929,68.004 223.671,67.754Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#E7E7E7"
-            android:fillType="evenOdd"
-            android:pathData="M226.875,89.314L267.976,83.437C269.726,83.187 271.347,84.403 271.597,86.152C271.598,86.157 271.598,86.162 271.599,86.167L276.086,118.645C276.327,120.39 275.113,122.001 273.369,122.251L232.267,128.127C230.518,128.377 228.896,127.162 228.646,125.412C228.646,125.407 228.645,125.402 228.644,125.397L224.158,92.92C223.917,91.175 225.131,89.563 226.875,89.314Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#E7E7E7"
-            android:fillType="evenOdd"
-            android:pathData="M233.281,135.657L274.314,129.833C276.064,129.585 277.683,130.802 277.932,132.552C277.932,132.555 277.932,132.557 277.933,132.56L281.682,159.498C281.925,161.246 280.708,162.86 278.962,163.108L237.93,168.931C236.18,169.18 234.56,167.963 234.312,166.213C234.311,166.21 234.311,166.207 234.311,166.204L230.562,139.266C230.318,137.519 231.535,135.905 233.281,135.657Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <group>
-            <clip-path android:pathData="M144.4,93l57.6,0l0,49.6l-57.6,0z" />
-            <path
-                android:fillColor="#657888"
-                android:fillType="evenOdd"
-                android:pathData="M183.821,117.356L190.871,101.627L197.922,117.356L183.821,117.356ZM148.478,124.542L155.528,108.813L162.579,124.542L148.478,124.542ZM173.126,97.757C174.48,97.757 175.581,98.858 175.581,100.211C175.581,101.564 174.48,102.665 173.126,102.665C171.773,102.665 170.672,101.564 170.672,100.211C170.672,98.858 171.773,97.757 173.126,97.757L173.126,97.757ZM201.836,116.559L194.198,99.519C195.214,98.835 195.795,97.599 195.57,96.313C195.267,94.57 193.609,93.404 191.864,93.707L178.94,95.96C177.626,94.169 175.512,93 173.126,93C169.856,93 167.091,95.189 166.21,98.178L153.437,100.403C151.694,100.707 150.527,102.366 150.831,104.109C151,105.077 151.586,105.865 152.373,106.325L144.564,123.745C144.417,124.072 144.376,124.418 144.413,124.75C144.541,130.028 149.463,133.234 155.528,133.234C161.591,133.234 166.51,130.03 166.644,124.758C166.682,124.423 166.641,124.075 166.493,123.745L158.547,106.017L167.331,104.486C168.101,105.527 169.14,106.359 170.35,106.866L170.35,137.049L160.439,137.049C158.906,137.049 157.663,138.292 157.663,139.824C157.663,141.357 158.906,142.6 160.439,142.6L185.813,142.6C187.346,142.6 188.589,141.357 188.589,139.824C188.589,138.292 187.346,137.049 185.813,137.049L175.901,137.049L175.901,106.866C177.882,106.037 179.415,104.35 180.035,102.272L186.843,101.085L179.907,116.559C179.759,116.887 179.719,117.233 179.756,117.567C179.886,122.842 184.807,126.049 190.871,126.049C196.936,126.049 201.859,122.842 201.988,117.564C202.024,117.231 201.983,116.886 201.836,116.559L201.836,116.559Z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
+      <clip-path
+          android:pathData="M137.698,85.883L121.732,88.665C119.553,89.044 118.095,91.118 118.475,93.297L118.475,93.297C118.686,94.506 119.419,95.492 120.402,96.066L120.402,96.066L110.64,117.842C110.506,118.143 110.443,118.455 110.437,118.765L110.437,118.765L110.437,118.865C110.438,118.943 110.443,119.021 110.452,119.098L110.452,119.098C110.613,125.695 116.764,129.703 124.346,129.703L124.346,129.703C131.924,129.703 138.074,125.699 138.241,119.109L138.241,119.109C138.289,118.689 138.237,118.255 138.052,117.842L138.052,117.842L128.119,95.682L139.099,93.768C140.063,95.069 141.361,96.109 142.874,96.743L142.874,96.743L142.874,134.472L130.485,134.472C128.569,134.472 127.015,136.025 127.015,137.94L127.015,137.94C127.015,139.857 128.569,141.411 130.485,141.411L130.485,141.411L162.203,141.411C164.119,141.411 165.672,139.857 165.672,137.94L165.672,137.94C165.672,136.025 164.119,134.472 162.203,134.472L162.203,134.472L149.812,134.472L149.812,96.743C152.287,95.707 154.204,93.597 154.98,91L154.98,91L163.491,89.517L154.819,108.859C154.635,109.269 154.584,109.702 154.631,110.119L154.631,110.119C154.794,116.714 160.945,120.721 168.525,120.721L168.525,120.721C176.107,120.721 182.259,116.713 182.42,110.116L182.42,110.116C182.466,109.699 182.414,109.267 182.231,108.859L182.231,108.859L172.682,87.559C173.954,86.704 174.679,85.159 174.398,83.552L174.398,83.552C174.02,81.373 171.947,79.916 169.765,80.294L169.765,80.294L153.61,83.11C151.968,80.872 149.326,79.411 146.344,79.411L146.344,79.411C142.256,79.411 138.8,82.147 137.698,85.883L137.698,85.883ZM143.276,88.425C143.276,86.733 144.653,85.357 146.344,85.357L146.344,85.357C148.036,85.357 149.412,86.733 149.412,88.425L149.412,88.425C149.412,90.115 148.036,91.492 146.344,91.492L146.344,91.492C144.653,91.492 143.276,90.115 143.276,88.425L143.276,88.425ZM168.525,90.194L177.339,109.856L159.712,109.856L168.525,90.194ZM124.346,99.176L133.16,118.837L115.533,118.837L124.346,99.176Z"/>
+      <path
+          android:pathData="M105.436,146.411l82,0l0,-72l-82,0z"
+          android:strokeWidth="1"
+          android:fillColor="#657888"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
     </group>
+  </group>
+  <group>
+    <clip-path
+        android:pathData="M0,0h360v220h-360z"/>
+    <group>
+      <clip-path
+          android:pathData="M186.104,78.298C185.878,85.991 204.804,89.903 204.804,89.903L204.804,89.903L206.337,89.903L207.691,101.097C207.691,101.097 192.904,118.926 193.986,124.902L193.986,124.902C195.069,130.879 204.306,128.287 204.306,128.287L204.306,128.287C204.306,128.287 198.855,144.535 203.034,148.824L203.034,148.824C206.1,151.962 209.195,150.584 209.195,150.584L209.195,150.584C209.195,150.584 201.457,157.616 204.935,163.877L204.935,163.877C206.467,166.633 215.5,167.427 215.5,167.427L215.5,167.427L230.099,166.972C229.02,163.026 228.798,159.008 228.779,154.96L228.779,154.96L228.754,154.942C227.986,146.29 227.439,137.635 226.395,128.998L226.395,128.998C224.209,111.02 221.225,93.152 218.6,75.238L218.6,75.238C209.484,74.061 203.126,73.278 203.126,73.278L203.126,73.278C203.126,73.278 200.302,72.829 196.954,72.828L196.954,72.828C192.138,72.828 186.238,73.759 186.104,78.298L186.104,78.298Z"/>
+      <path
+          android:pathData="M181.103,172.427l53.996,0l0,-104.598l-53.996,0z"
+          android:strokeWidth="1"
+          android:fillColor="#F7B994"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M266.519,37.187L212.362,44.797C209.71,45.165 207.314,46.573 205.7,48.708L205.7,48.708C204.087,50.845 203.389,53.534 203.759,56.185L203.759,56.185L222.743,191.29C223.533,196.789 228.619,200.616 234.121,199.849L234.121,199.849L288.279,192.257C290.937,191.894 293.341,190.485 294.958,188.343L294.958,188.343C296.574,186.203 297.27,183.506 296.892,180.85L296.892,180.85L277.907,45.77C277.535,43.121 276.127,40.728 273.991,39.119L273.991,39.119C272.232,37.793 270.1,37.089 267.923,37.089L267.923,37.089C267.456,37.089 266.987,37.121 266.519,37.187L266.519,37.187Z"/>
+      <path
+          android:pathData="M198.662,204.946l103.33,0l0,-172.858l-103.33,0z"
+          android:strokeWidth="1"
+          android:fillColor="#F8F8F8"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <path
+        android:pathData="M288.279,192.257L234.121,199.849C228.619,200.616 223.532,196.789 222.743,191.29L203.758,56.185C203.388,53.534 204.087,50.845 205.7,48.708C207.313,46.572 209.71,45.165 212.361,44.797L266.519,37.187C269.168,36.814 271.855,37.509 273.991,39.119C276.127,40.729 277.535,43.121 277.907,45.77L296.891,180.85C297.27,183.506 296.574,186.203 294.958,188.344C293.341,190.486 290.937,191.894 288.279,192.257Z"
+        android:strokeWidth="3.893"
+        android:fillColor="#00000000"
+        android:strokeColor="#4A4A4A"
+        android:fillType="evenOdd"/>
+    <group>
+      <clip-path
+          android:pathData="M276.829,55.812C274.899,63.922 277.389,78.825 285.088,83.139L285.088,83.139C285.088,83.139 298.579,178.272 298.594,178.558L298.594,178.558C298.971,186.212 298.212,185.811 297.172,188.436L297.172,188.436C303.79,190.106 338.419,202.399 370.98,211.639L370.98,211.639C379.231,213.981 387.107,216.528 393.66,219.302L393.66,219.302C396.572,220.535 405.077,201.527 419.176,162.277L419.176,162.277L338.409,142.152C338.409,142.152 331.219,140.217 323.874,129.312L323.874,129.312C316.529,118.408 309.779,92.079 304.938,89.255L304.938,89.255C304.938,89.255 303.158,66.291 291.399,64.561L291.399,64.561C291.399,64.561 287.685,47.935 286.408,47.901L286.408,47.901C286.306,47.898 286.17,47.895 286.006,47.895L286.006,47.895C284.135,47.895 278.602,48.355 276.829,55.812L276.829,55.812Z"/>
+      <path
+          android:pathData="M271.205,224.359l152.971,0l0,-181.463l-152.971,0z"
+          android:strokeWidth="1"
+          android:fillColor="#F7B994"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M267.715,51.048L216.178,58.443C213.999,58.755 212.482,60.768 212.783,62.947L212.783,62.947L214.235,73.494C214.236,73.5 214.237,73.508 214.238,73.515L214.238,73.515C214.551,75.702 216.579,77.22 218.765,76.906L218.765,76.906L270.303,69.514C272.482,69.201 273.998,67.188 273.698,65.007L273.698,65.007L272.246,54.463C272.245,54.455 272.244,54.449 272.242,54.44L272.242,54.44C271.957,52.446 270.245,51.008 268.288,51.008L268.288,51.008C268.099,51.008 267.908,51.021 267.715,51.048L267.715,51.048Z"/>
+      <path
+          android:pathData="M207.745,81.947l70.99,0l0,-35.939l-70.99,0z"
+          android:strokeWidth="1"
+          android:fillColor="#E7E7E7"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M271.558,78.047L220.182,85.392C218.002,85.704 216.484,87.719 216.785,89.9L216.785,89.9L222.394,130.497C222.395,130.503 222.396,130.509 222.397,130.516L222.397,130.516C222.709,132.702 224.736,134.222 226.922,133.91L226.922,133.91L278.298,126.564C280.478,126.252 281.997,124.237 281.695,122.056L281.695,122.056L276.087,81.459C276.086,81.453 276.085,81.446 276.085,81.44L276.085,81.44C275.799,79.444 274.087,78.006 272.129,78.006L272.129,78.006C271.941,78.006 271.75,78.02 271.558,78.047L271.558,78.047Z"/>
+      <path
+          android:pathData="M211.747,138.95l74.986,0l0,-65.944l-74.986,0z"
+          android:strokeWidth="1"
+          android:fillColor="#E7E7E7"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M279.392,135.225L228.102,142.505C225.919,142.815 224.397,144.833 224.703,147.016L224.703,147.016L229.388,180.69C229.389,180.693 229.389,180.697 229.39,180.701L229.39,180.701C229.7,182.888 231.724,184.41 233.912,184.099L233.912,184.099L285.202,176.819C287.386,176.51 288.907,174.492 288.603,172.307L288.603,172.307L283.916,138.635C283.915,138.631 283.915,138.628 283.914,138.624L283.914,138.624C283.631,136.628 281.919,135.185 279.959,135.185L279.959,135.185C279.772,135.185 279.583,135.198 279.392,135.225L279.392,135.225Z"/>
+      <path
+          android:pathData="M219.663,189.139l73.978,0l0,-58.953l-73.978,0z"
+          android:strokeWidth="1"
+          android:fillColor="#E7E7E7"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+  </group>
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_terms.xml b/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_terms.xml
index 018080c5019b3704f4ae42717ef7b9898d35d3d9..ec772d7e49363db2e2f6a4698b4b29248cf62db9 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_terms.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_information_illustration_terms.xml
@@ -3,64 +3,90 @@
     android:height="220dp"
     android:viewportWidth="360"
     android:viewportHeight="220">
+  <group>
+    <clip-path
+        android:pathData="M0,0h360v220h-360z"/>
+    <path
+        android:pathData="M56,110C56,159.706 96.295,200 146,200L146,200C195.706,200 236,159.706 236,110L236,110C236,60.294 195.706,20 146,20L146,20C96.295,20 56,60.294 56,110L56,110Z"
+        android:strokeWidth="1"
+        android:fillColor="#E9F6FF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
     <group>
-        <clip-path android:pathData="M0,0h360v220h-360z" />
-        <path
-            android:fillColor="#E9F6FF"
-            android:fillType="evenOdd"
-            android:pathData="M178,117.8m-72,0a72,72 0,1 1,144 0a72,72 0,1 1,-144 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M233.733,144.953C233.118,138.032 232.68,131.108 231.845,124.199C230.096,109.816 227.71,95.522 225.609,81.19C218.317,80.25 213.23,79.623 213.23,79.623C213.23,79.623 199.795,77.484 199.613,83.638C199.431,89.793 214.572,92.923 214.572,92.923L215.799,92.923L216.882,101.878C216.882,101.878 205.052,116.141 205.919,120.922C206.785,125.703 214.174,123.63 214.174,123.63C214.174,123.63 209.814,136.628 213.157,140.059C215.609,142.57 218.085,141.467 218.085,141.467C218.085,141.467 211.895,147.092 214.677,152.102C215.903,154.307 223.129,154.941 223.129,154.941L234.808,154.577C233.945,151.421 233.768,148.206 233.752,144.968"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F8F8F8"
-            android:fillType="nonZero"
-            android:pathData="M281.353,174.805L238.027,180.879C233.625,181.493 229.555,178.431 228.924,174.032L213.737,65.948C213.44,63.827 213.999,61.675 215.29,59.967C216.581,58.258 218.498,57.132 220.619,56.838L263.945,50.749C266.064,50.451 268.214,51.007 269.922,52.295C271.631,53.583 272.758,55.497 273.055,57.615L288.243,165.68C288.546,167.805 287.989,169.962 286.696,171.675C285.402,173.388 283.479,174.515 281.353,174.805Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#00000000"
-            android:fillType="evenOdd"
-            android:pathData="M281.353,174.805L238.027,180.879C233.625,181.493 229.555,178.431 228.924,174.032L213.737,65.948C213.44,63.827 213.999,61.675 215.29,59.967C216.581,58.258 218.498,57.132 220.619,56.838L263.945,50.749C266.064,50.451 268.214,51.007 269.922,52.295C271.631,53.583 272.758,55.497 273.055,57.615L288.243,165.68C288.546,167.805 287.989,169.962 286.696,171.675C285.402,173.388 283.479,174.515 281.353,174.805Z"
-            android:strokeWidth="3.11407895"
-            android:strokeColor="#4A4A4A" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M386.07,150.821L321.457,134.721C321.457,134.721 315.705,133.173 309.828,124.45C303.952,115.727 298.552,94.663 294.68,92.404C294.68,92.404 293.256,74.033 283.848,72.648C283.848,72.648 280.877,59.348 279.856,59.321C278.835,59.294 273.736,59.163 272.193,65.65C270.649,72.137 272.641,84.06 278.8,87.511C278.8,87.511 289.593,163.618 289.604,163.846C289.906,169.97 289.299,169.649 288.467,171.749C293.761,173.084 321.465,182.918 347.514,190.311C354.114,192.184 360.414,194.222 365.658,196.442C367.987,197.428 374.792,182.221 386.07,150.821Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#E7E7E7"
-            android:fillType="evenOdd"
-            android:pathData="M223.671,67.754L264.902,61.839C266.651,61.588 268.273,62.803 268.524,64.552C268.524,64.558 268.525,64.564 268.526,64.57L269.688,73.007C269.928,74.75 268.714,76.361 266.972,76.611L225.742,82.525C223.992,82.776 222.371,81.562 222.12,79.812C222.119,79.806 222.118,79.8 222.117,79.794L220.956,71.358C220.716,69.614 221.929,68.004 223.671,67.754Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#E7E7E7"
-            android:fillType="evenOdd"
-            android:pathData="M226.875,89.314L267.976,83.437C269.726,83.187 271.347,84.403 271.597,86.152C271.598,86.157 271.598,86.162 271.599,86.167L276.086,118.645C276.327,120.39 275.113,122.001 273.369,122.251L232.267,128.127C230.518,128.377 228.896,127.162 228.646,125.412C228.646,125.407 228.645,125.402 228.644,125.397L224.158,92.92C223.917,91.175 225.131,89.563 226.875,89.314Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#E7E7E7"
-            android:fillType="evenOdd"
-            android:pathData="M233.281,135.657L274.314,129.833C276.064,129.585 277.683,130.802 277.932,132.552C277.932,132.555 277.932,132.557 277.933,132.56L281.682,159.498C281.925,161.246 280.708,162.86 278.962,163.108L237.93,168.931C236.18,169.18 234.56,167.963 234.312,166.213C234.311,166.21 234.311,166.207 234.311,166.204L230.562,139.266C230.318,137.519 231.535,135.905 233.281,135.657Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <group>
-            <clip-path android:pathData="M193.84,98.992L169.782,123.37C169.203,123.958 168.262,123.958 167.684,123.37L167.684,123.37L160.622,116.216C158.552,114.116 155.194,114.116 153.123,116.216L153.123,116.216C151.053,118.314 151.053,121.717 153.123,123.814L153.123,123.814L165.755,136.614C167.71,138.595 170.88,138.595 172.834,136.614L172.834,136.614L201.901,107.16C204.127,104.905 204.127,101.247 201.901,98.992L201.901,98.992C200.788,97.865 199.329,97.3 197.87,97.3L197.87,97.3C196.411,97.3 194.952,97.865 193.84,98.992L193.84,98.992Z" />
-            <path
-                android:fillColor="#657888"
-                android:fillType="evenOdd"
-                android:pathData="M147.57,142.1l60,0l0,-48.8l-60,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
+      <clip-path
+          android:pathData="M166.837,86.931L136.765,117.404C136.041,118.138 134.865,118.138 134.142,117.404L134.142,117.404L125.315,108.461C122.727,105.836 118.53,105.836 115.941,108.461L115.941,108.461C113.353,111.083 113.353,115.337 115.941,117.958L115.941,117.958L131.731,133.959C134.175,136.435 138.137,136.435 140.579,133.959L140.579,133.959L176.913,97.141C179.696,94.322 179.696,89.75 176.913,86.931L176.913,86.931C175.522,85.522 173.698,84.816 171.875,84.816L171.875,84.816C170.051,84.816 168.227,85.522 166.837,86.931L166.837,86.931Z"/>
+      <path
+          android:pathData="M109,140.816l75,0l0,-61l-75,0z"
+          android:strokeWidth="1"
+          android:fillColor="#657888"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
     </group>
+    <group>
+      <clip-path
+          android:pathData="M186.104,78.298C185.878,85.991 204.804,89.903 204.804,89.903L204.804,89.903L206.337,89.903L207.691,101.097C207.691,101.097 192.904,118.926 193.986,124.902L193.986,124.902C195.069,130.879 204.306,128.287 204.306,128.287L204.306,128.287C204.306,128.287 198.855,144.535 203.034,148.824L203.034,148.824C206.1,151.962 209.195,150.584 209.195,150.584L209.195,150.584C209.195,150.584 201.457,157.616 204.935,163.877L204.935,163.877C206.467,166.633 215.5,167.427 215.5,167.427L215.5,167.427L230.099,166.972C229.02,163.026 228.798,159.008 228.779,154.96L228.779,154.96L228.754,154.942C227.986,146.29 227.439,137.635 226.395,128.998L226.395,128.998C224.209,111.02 221.225,93.152 218.6,75.238L218.6,75.238C209.484,74.061 203.126,73.278 203.126,73.278L203.126,73.278C203.126,73.278 200.302,72.829 196.954,72.828L196.954,72.828C192.138,72.828 186.238,73.759 186.104,78.298L186.104,78.298Z"/>
+      <path
+          android:pathData="M181.103,172.427l53.996,0l0,-104.598l-53.996,0z"
+          android:strokeWidth="1"
+          android:fillColor="#F7B994"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M266.519,37.187L212.362,44.797C209.71,45.165 207.314,46.573 205.7,48.708L205.7,48.708C204.087,50.845 203.389,53.534 203.759,56.185L203.759,56.185L222.743,191.29C223.533,196.789 228.619,200.616 234.121,199.849L234.121,199.849L288.279,192.257C290.937,191.894 293.341,190.485 294.958,188.343L294.958,188.343C296.574,186.203 297.27,183.506 296.892,180.85L296.892,180.85L277.907,45.77C277.535,43.121 276.127,40.728 273.991,39.119L273.991,39.119C272.232,37.793 270.1,37.089 267.923,37.089L267.923,37.089C267.456,37.089 266.987,37.121 266.519,37.187L266.519,37.187Z"/>
+      <path
+          android:pathData="M198.662,204.946l103.33,0l0,-172.858l-103.33,0z"
+          android:strokeWidth="1"
+          android:fillColor="#F8F8F8"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <path
+        android:pathData="M288.279,192.257L234.121,199.849C228.619,200.616 223.532,196.789 222.743,191.29L203.758,56.185C203.388,53.534 204.087,50.845 205.7,48.708C207.313,46.572 209.71,45.165 212.361,44.797L266.519,37.187C269.168,36.814 271.855,37.509 273.991,39.119C276.127,40.729 277.535,43.121 277.907,45.77L296.891,180.85C297.27,183.506 296.574,186.203 294.958,188.344C293.341,190.486 290.937,191.894 288.279,192.257Z"
+        android:strokeWidth="3.893"
+        android:fillColor="#00000000"
+        android:strokeColor="#4A4A4A"
+        android:fillType="evenOdd"/>
+    <group>
+      <clip-path
+          android:pathData="M276.829,55.812C274.899,63.922 277.389,78.825 285.088,83.139L285.088,83.139C285.088,83.139 298.579,178.272 298.594,178.558L298.594,178.558C298.971,186.212 298.212,185.811 297.172,188.436L297.172,188.436C303.79,190.106 338.419,202.399 370.98,211.639L370.98,211.639C379.231,213.981 387.107,216.528 393.66,219.302L393.66,219.302C396.572,220.535 405.077,201.527 419.176,162.277L419.176,162.277L338.409,142.152C338.409,142.152 331.219,140.217 323.874,129.312L323.874,129.312C316.529,118.408 309.779,92.079 304.938,89.255L304.938,89.255C304.938,89.255 303.158,66.291 291.399,64.561L291.399,64.561C291.399,64.561 287.685,47.935 286.408,47.901L286.408,47.901C286.306,47.898 286.17,47.895 286.006,47.895L286.006,47.895C284.135,47.895 278.602,48.355 276.829,55.812L276.829,55.812Z"/>
+      <path
+          android:pathData="M271.205,224.359l152.971,0l0,-181.463l-152.971,0z"
+          android:strokeWidth="1"
+          android:fillColor="#F7B994"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M267.715,51.048L216.178,58.443C213.999,58.755 212.482,60.768 212.783,62.947L212.783,62.947L214.235,73.494C214.236,73.5 214.237,73.508 214.238,73.515L214.238,73.515C214.551,75.702 216.579,77.22 218.765,76.906L218.765,76.906L270.303,69.514C272.482,69.201 273.998,67.188 273.698,65.007L273.698,65.007L272.246,54.463C272.245,54.455 272.244,54.449 272.242,54.44L272.242,54.44C271.957,52.446 270.245,51.008 268.288,51.008L268.288,51.008C268.099,51.008 267.908,51.021 267.715,51.048L267.715,51.048Z"/>
+      <path
+          android:pathData="M207.745,81.947l70.99,0l0,-35.939l-70.99,0z"
+          android:strokeWidth="1"
+          android:fillColor="#E7E7E7"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M271.558,78.047L220.182,85.392C218.002,85.704 216.484,87.719 216.785,89.9L216.785,89.9L222.394,130.497C222.395,130.503 222.396,130.509 222.397,130.516L222.397,130.516C222.709,132.702 224.736,134.222 226.922,133.91L226.922,133.91L278.298,126.564C280.478,126.252 281.997,124.237 281.695,122.056L281.695,122.056L276.087,81.459C276.086,81.453 276.085,81.446 276.085,81.44L276.085,81.44C275.799,79.444 274.087,78.006 272.129,78.006L272.129,78.006C271.941,78.006 271.75,78.02 271.558,78.047L271.558,78.047Z"/>
+      <path
+          android:pathData="M211.747,138.95l74.986,0l0,-65.944l-74.986,0z"
+          android:strokeWidth="1"
+          android:fillColor="#E7E7E7"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+    <group>
+      <clip-path
+          android:pathData="M279.392,135.225L228.102,142.505C225.919,142.815 224.397,144.833 224.703,147.016L224.703,147.016L229.388,180.69C229.389,180.693 229.389,180.697 229.39,180.701L229.39,180.701C229.7,182.888 231.724,184.41 233.912,184.099L233.912,184.099L285.202,176.819C287.386,176.51 288.907,174.492 288.603,172.307L288.603,172.307L283.916,138.635C283.915,138.631 283.915,138.628 283.914,138.624L283.914,138.624C283.631,136.628 281.919,135.185 279.959,135.185L279.959,135.185C279.772,135.185 279.583,135.198 279.392,135.225L279.392,135.225Z"/>
+      <path
+          android:pathData="M219.663,189.139l73.978,0l0,-58.953l-73.978,0z"
+          android:strokeWidth="1"
+          android:fillColor="#E7E7E7"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
+    </group>
+  </group>
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_main_about.xml b/Corona-Warn-App/src/main/res/drawable/ic_main_about.xml
index e74058a9478ad8a6f2950f4fd69eef9ff9cee2fa..f9c3d8c85d2ffc7df4f852c6a7f7fd0310c766ff 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_main_about.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_main_about.xml
@@ -3,17 +3,22 @@
     android:height="40dp"
     android:viewportWidth="40"
     android:viewportHeight="40">
+  <path
+      android:pathData="M20,0C31.0457,-0 40,8.9543 40,20C40,31.0457 31.0457,40 20,40C8.9543,40 0,31.0457 0,20C-0,8.9543 8.9543,0 20,0Z"
+      android:strokeAlpha="0.2"
+      android:strokeWidth="1"
+      android:fillColor="#80CDEC"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"
+      android:fillAlpha="0.2"/>
+  <group>
+    <clip-path
+        android:pathData="M20,0C31.0457,-0 40,8.9543 40,20C40,31.0457 31.0457,40 20,40C8.9543,40 0,31.0457 0,20C-0,8.9543 8.9543,0 20,0Z"/>
     <path
-        android:fillColor="#DAF5FF"
-        android:fillType="evenOdd"
-        android:pathData="M20,0C31.0457,-0 40,8.9543 40,20C40,31.0457 31.0457,40 20,40C8.9543,40 0,31.0457 0,20C-0,8.9543 8.9543,0 20,0Z"
+        android:pathData="M18.3077,9L18.3077,10.6923L19.1538,10.6923L19.1538,11.5913C17.4516,11.7599 15.9147,12.4144 14.6587,13.4423L14.024,12.8077L14.6058,12.226L13.4159,11.0361L11.0361,13.4159L12.226,14.6058L12.8077,14.024L13.4423,14.6587C12.4144,15.9147 11.7599,17.4516 11.5913,19.1538L10.6923,19.1538L10.6923,18.3077L9,18.3077L9,21.6923L10.6923,21.6923L10.6923,20.8462L11.5913,20.8462C11.7599,22.5616 12.4276,24.1085 13.4688,25.3678L12.8077,25.976L12.226,25.3942L11.0361,26.5841L13.4159,28.9639L14.6058,27.774L14.024,27.1923L14.6587,26.5313C15.918,27.5658 17.4483,28.2401 19.1538,28.4087L19.1538,29.3077L18.3077,29.3077L18.3077,31L21.6923,31L21.6923,29.3077L20.8462,29.3077L20.8462,28.4087C22.5517,28.2401 24.082,27.5658 25.3413,26.5313L25.3678,26.5313L25.976,27.1923L25.3942,27.774L26.5841,28.9639L28.9639,26.5841L27.774,25.3942L27.1923,25.976L26.5313,25.3678C26.5346,25.3612 26.5279,25.348 26.5313,25.3413C27.5658,24.082 28.2401,22.5517 28.4087,20.8462L29.3077,20.8462L29.3077,21.6923L31,21.6923L31,18.3077L29.3077,18.3077L29.3077,19.1538L28.4087,19.1538C28.2401,17.4516 27.5856,15.9147 26.5577,14.6587L27.1923,14.024L27.774,14.6058L28.9639,13.4159L26.5841,11.0361L25.3942,12.226L25.976,12.8077L25.3413,13.4423C24.0853,12.4144 22.5484,11.7599 20.8462,11.5913L20.8462,10.6923L21.6923,10.6923L21.6923,9L18.3077,9ZM20,13.2308C23.7482,13.2308 26.7692,16.2518 26.7692,20C26.7692,23.7482 23.7482,26.7692 20,26.7692C16.2518,26.7692 13.2308,23.7482 13.2308,20C13.2308,16.2518 16.2518,13.2308 20,13.2308ZM17.8846,15.0553C17.1839,15.0553 16.6154,15.6238 16.6154,16.3245C16.6154,17.0252 17.1839,17.5938 17.8846,17.5938C18.5853,17.5938 19.1538,17.0252 19.1538,16.3245C19.1538,15.6238 18.5853,15.0553 17.8846,15.0553ZM22.1154,15.0553C21.4147,15.0553 20.8462,15.6238 20.8462,16.3245C20.8462,17.0252 21.4147,17.5938 22.1154,17.5938C22.8161,17.5938 23.3846,17.0252 23.3846,16.3245C23.3846,15.6238 22.8161,15.0553 22.1154,15.0553ZM15.7692,18.7308C15.0685,18.7308 14.5,19.2993 14.5,20C14.5,20.7007 15.0685,21.2692 15.7692,21.2692C16.47,21.2692 17.0385,20.7007 17.0385,20C17.0385,19.2993 16.47,18.7308 15.7692,18.7308ZM20,18.7308C19.2993,18.7308 18.7308,19.2993 18.7308,20C18.7308,20.7007 19.2993,21.2692 20,21.2692C20.7007,21.2692 21.2692,20.7007 21.2692,20C21.2692,19.2993 20.7007,18.7308 20,18.7308ZM24.2308,18.7308C23.53,18.7308 22.9615,19.2993 22.9615,20C22.9615,20.7007 23.53,21.2692 24.2308,21.2692C24.9315,21.2692 25.5,20.7007 25.5,20C25.5,19.2993 24.9315,18.7308 24.2308,18.7308ZM17.8846,22.4063C17.1839,22.4063 16.6154,22.9748 16.6154,23.6755C16.6154,24.3762 17.1839,24.9447 17.8846,24.9447C18.5853,24.9447 19.1538,24.3762 19.1538,23.6755C19.1538,22.9748 18.5853,22.4063 17.8846,22.4063ZM22.1154,22.4063C21.4147,22.4063 20.8462,22.9748 20.8462,23.6755C20.8462,24.3762 21.4147,24.9447 22.1154,24.9447C22.8161,24.9447 23.3846,24.3762 23.3846,23.6755C23.3846,22.9748 22.8161,22.4063 22.1154,22.4063Z"
         android:strokeWidth="1"
-        android:strokeAlpha="0.2"
-        android:strokeColor="#00000000" />
-    <path
         android:fillColor="#007FAD"
         android:fillType="nonZero"
-        android:pathData="M18.3077,9L18.3077,10.6923L19.1538,10.6923L19.1538,11.5913C17.4516,11.7599 15.9147,12.4144 14.6587,13.4423L14.024,12.8077L14.6058,12.226L13.4159,11.0361L11.0361,13.4159L12.226,14.6058L12.8077,14.024L13.4423,14.6587C12.4144,15.9147 11.7599,17.4516 11.5913,19.1538L10.6923,19.1538L10.6923,18.3077L9,18.3077L9,21.6923L10.6923,21.6923L10.6923,20.8462L11.5913,20.8462C11.7599,22.5616 12.4276,24.1085 13.4688,25.3678L12.8077,25.976L12.226,25.3942L11.0361,26.5841L13.4159,28.9639L14.6058,27.774L14.024,27.1923L14.6587,26.5313C15.918,27.5658 17.4483,28.2401 19.1538,28.4087L19.1538,29.3077L18.3077,29.3077L18.3077,31L21.6923,31L21.6923,29.3077L20.8462,29.3077L20.8462,28.4087C22.5517,28.2401 24.082,27.5658 25.3413,26.5313L25.3678,26.5313L25.976,27.1923L25.3942,27.774L26.5841,28.9639L28.9639,26.5841L27.774,25.3942L27.1923,25.976L26.5313,25.3678C26.5346,25.3612 26.5279,25.348 26.5313,25.3413C27.5658,24.082 28.2401,22.5517 28.4087,20.8462L29.3077,20.8462L29.3077,21.6923L31,21.6923L31,18.3077L29.3077,18.3077L29.3077,19.1538L28.4087,19.1538C28.2401,17.4516 27.5856,15.9147 26.5577,14.6587L27.1923,14.024L27.774,14.6058L28.9639,13.4159L26.5841,11.0361L25.3942,12.226L25.976,12.8077L25.3413,13.4423C24.0853,12.4144 22.5484,11.7599 20.8462,11.5913L20.8462,10.6923L21.6923,10.6923L21.6923,9L18.3077,9ZM20,13.2308C23.7482,13.2308 26.7692,16.2518 26.7692,20C26.7692,23.7482 23.7482,26.7692 20,26.7692C16.2518,26.7692 13.2308,23.7482 13.2308,20C13.2308,16.2518 16.2518,13.2308 20,13.2308ZM17.8846,15.0553C17.1839,15.0553 16.6154,15.6238 16.6154,16.3245C16.6154,17.0252 17.1839,17.5938 17.8846,17.5938C18.5853,17.5938 19.1538,17.0252 19.1538,16.3245C19.1538,15.6238 18.5853,15.0553 17.8846,15.0553ZM22.1154,15.0553C21.4147,15.0553 20.8462,15.6238 20.8462,16.3245C20.8462,17.0252 21.4147,17.5938 22.1154,17.5938C22.8161,17.5938 23.3846,17.0252 23.3846,16.3245C23.3846,15.6238 22.8161,15.0553 22.1154,15.0553ZM15.7692,18.7308C15.0685,18.7308 14.5,19.2993 14.5,20C14.5,20.7007 15.0685,21.2692 15.7692,21.2692C16.47,21.2692 17.0385,20.7007 17.0385,20C17.0385,19.2993 16.47,18.7308 15.7692,18.7308ZM20,18.7308C19.2993,18.7308 18.7308,19.2993 18.7308,20C18.7308,20.7007 19.2993,21.2692 20,21.2692C20.7007,21.2692 21.2692,20.7007 21.2692,20C21.2692,19.2993 20.7007,18.7308 20,18.7308ZM24.2308,18.7308C23.53,18.7308 22.9615,19.2993 22.9615,20C22.9615,20.7007 23.53,21.2692 24.2308,21.2692C24.9315,21.2692 25.5,20.7007 25.5,20C25.5,19.2993 24.9315,18.7308 24.2308,18.7308ZM17.8846,22.4063C17.1839,22.4063 16.6154,22.9748 16.6154,23.6755C16.6154,24.3762 17.1839,24.9447 17.8846,24.9447C18.5853,24.9447 19.1538,24.3762 19.1538,23.6755C19.1538,22.9748 18.5853,22.4063 17.8846,22.4063ZM22.1154,22.4063C21.4147,22.4063 20.8462,22.9748 20.8462,23.6755C20.8462,24.3762 21.4147,24.9447 22.1154,24.9447C22.8161,24.9447 23.3846,24.3762 23.3846,23.6755C23.3846,22.9748 22.8161,22.4063 22.1154,22.4063Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
+        android:strokeColor="#00000000"/>
+  </group>
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_main_illustration_overview.xml b/Corona-Warn-App/src/main/res/drawable/ic_main_illustration_overview.xml
index 44126e7a7174c94dadc3b1aba12b265d55394860..d56901e4994ceba1d6be12c9082ae29ba431029d 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_main_illustration_overview.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_main_illustration_overview.xml
@@ -1,112 +1,102 @@
 <vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="360dp"
-    android:height="221dp"
-    android:viewportWidth="360"
-    android:viewportHeight="221">
+    android:width="361dp"
+    android:height="220dp"
+    android:viewportWidth="361"
+    android:viewportHeight="220">
   <group>
     <clip-path
-        android:pathData="M0.25,0.983h359.75v220h-359.75z"/>
+        android:pathData="M0.125,0h360v220h-360z"/>
     <path
-        android:pathData="M195.849,96.341L197.849,96.341L195.849,96.341Z"
-        android:strokeWidth="1"
-        android:fillColor="#FF395A"
-        android:fillType="evenOdd"
-        android:strokeColor="#00000000"/>
-    <path
-        android:pathData="M205.031,182.759L154.923,182.759C149.821,182.757 145.686,178.621 145.685,173.519L145.698,48.54C145.705,43.443 149.839,39.315 154.936,39.315L205.045,39.315C210.138,39.325 214.262,43.455 214.265,48.549L214.265,173.53C214.263,178.628 210.13,182.759 205.031,182.759Z"
+        android:pathData="M205.156,180.759L155.048,180.759C149.946,180.757 145.811,176.621 145.81,171.519L145.823,46.54C145.83,41.443 149.964,37.315 155.061,37.315L205.17,37.315C210.263,37.325 214.387,41.455 214.39,46.549L214.39,171.53C214.388,176.628 210.255,180.759 205.156,180.759Z"
         android:strokeWidth="1"
         android:fillColor="#FFFFFF"
         android:fillType="evenOdd"
         android:strokeColor="#00000000"/>
     <path
-        android:pathData="M205.031,182.759L154.923,182.759C149.821,182.757 145.686,178.621 145.685,173.519L145.698,48.54C145.705,43.443 149.839,39.315 154.936,39.315L205.045,39.315C210.138,39.325 214.262,43.455 214.265,48.549L214.265,173.53C214.263,178.628 210.13,182.759 205.031,182.759Z"
+        android:pathData="M205.156,180.759L155.048,180.759C149.946,180.757 145.811,176.621 145.81,171.519L145.823,46.54C145.83,41.443 149.964,37.315 155.061,37.315L205.17,37.315C210.263,37.325 214.387,41.455 214.39,46.549L214.39,171.53C214.388,176.628 210.255,180.759 205.156,180.759Z"
         android:strokeWidth="3.567"
         android:fillColor="#00000000"
         android:strokeColor="#4A4A4A"
         android:fillType="evenOdd"/>
     <path
-        android:pathData="M155.5,48.483L204.042,48.483A4,4 0,0 1,208.042 52.483L208.042,61.483A4,4 0,0 1,204.042 65.483L155.5,65.483A4,4 0,0 1,151.5 61.483L151.5,52.483A4,4 0,0 1,155.5 48.483z"
+        android:pathData="M155.625,46.483L204.167,46.483A4,4 0,0 1,208.167 50.483L208.167,59.483A4,4 0,0 1,204.167 63.483L155.625,63.483A4,4 0,0 1,151.625 59.483L151.625,50.483A4,4 0,0 1,155.625 46.483z"
         android:strokeWidth="1"
         android:fillColor="#E7E7E7"
         android:fillType="evenOdd"
         android:strokeColor="#00000000"/>
     <path
-        android:pathData="M155.5,131.483L204.042,131.483A4,4 0,0 1,208.042 135.483L208.042,171.483A4,4 0,0 1,204.042 175.483L155.5,175.483A4,4 0,0 1,151.5 171.483L151.5,135.483A4,4 0,0 1,155.5 131.483z"
+        android:pathData="M155.625,129.483L204.167,129.483A4,4 0,0 1,208.167 133.483L208.167,169.483A4,4 0,0 1,204.167 173.483L155.625,173.483A4,4 0,0 1,151.625 169.483L151.625,133.483A4,4 0,0 1,155.625 129.483z"
         android:strokeWidth="1"
         android:fillColor="#E7E7E7"
         android:fillType="evenOdd"
         android:strokeColor="#00000000"/>
     <path
-        android:pathData="M158.5,164.483L201.5,164.483A3,3 0,0 1,204.5 167.483L204.5,167.483A3,3 0,0 1,201.5 170.483L158.5,170.483A3,3 0,0 1,155.5 167.483L155.5,167.483A3,3 0,0 1,158.5 164.483z"
+        android:pathData="M158.625,162.483L201.625,162.483A3,3 0,0 1,204.625 165.483L204.625,165.483A3,3 0,0 1,201.625 168.483L158.625,168.483A3,3 0,0 1,155.625 165.483L155.625,165.483A3,3 0,0 1,158.625 162.483z"
         android:strokeWidth="1"
         android:fillColor="#0088B2"
         android:fillType="evenOdd"
         android:strokeColor="#00000000"/>
     <path
-        android:pathData="M155.5,75.483L204.042,75.483A4,4 0,0 1,208.042 79.483L208.042,117.483A4,4 0,0 1,204.042 121.483L155.5,121.483A4,4 0,0 1,151.5 117.483L151.5,79.483A4,4 0,0 1,155.5 75.483z"
+        android:pathData="M155.625,73.483L204.167,73.483A4,4 0,0 1,208.167 77.483L208.167,115.483A4,4 0,0 1,204.167 119.483L155.625,119.483A4,4 0,0 1,151.625 115.483L151.625,77.483A4,4 0,0 1,155.625 73.483z"
         android:strokeWidth="1"
         android:fillColor="#2E854B"
         android:fillType="evenOdd"
         android:strokeColor="#00000000"/>
-  </group>
-  <group>
-    <clip-path
-        android:pathData="M0.25,0.983h359.75v220h-359.75z"/>
     <path
-        android:pathData="M76,101.741m-12,0a12,12 0,1 1,24 0a12,12 0,1 1,-24 0"
+        android:pathData="M85,99.741m-12,0a12,12 0,1 1,24 0a12,12 0,1 1,-24 0"
         android:strokeWidth="1"
         android:fillColor="#E9F6FF"
         android:fillType="evenOdd"
         android:strokeColor="#00000000"/>
     <path
-        android:pathData="M79,100.741C79,101.841 78.1,102.741 77,102.741L75,102.741L75,104.741L78,104.741C78.55,104.741 79,105.191 79,105.741C79,106.291 78.55,106.741 78,106.741L74,106.741C73.45,106.741 73,106.291 73,105.741L73,102.741C73,101.641 73.9,100.741 75,100.741L77,100.741L77,98.741L74,98.741C73.45,98.741 73,98.291 73,97.741C73,97.191 73.45,96.741 74,96.741L77,96.741C78.1,96.741 79,97.641 79,98.741L79,100.741Z"
+        android:pathData="M88,98.741C88,99.841 87.1,100.741 86,100.741L84,100.741L84,102.741L87,102.741C87.55,102.741 88,103.191 88,103.741C88,104.291 87.55,104.741 87,104.741L83,104.741C82.45,104.741 82,104.291 82,103.741L82,100.741C82,99.641 82.9,98.741 84,98.741L86,98.741L86,96.741L83,96.741C82.45,96.741 82,96.291 82,95.741C82,95.191 82.45,94.741 83,94.741L86,94.741C87.1,94.741 88,95.641 88,96.741L88,98.741Z"
         android:strokeWidth="1"
         android:fillColor="#17191A"
         android:fillType="nonZero"
         android:strokeColor="#00000000"/>
     <path
-        android:pathData="M76,57m-12,0a12,12 0,1 1,24 0a12,12 0,1 1,-24 0"
+        android:pathData="M85,55m-12,0a12,12 0,1 1,24 0a12,12 0,1 1,-24 0"
         android:strokeWidth="1"
         android:fillColor="#E9F6FF"
         android:fillType="evenOdd"
         android:strokeColor="#00000000"/>
     <path
-        android:pathData="M77,62C76.45,62 76,61.55 76,61L76,54L75,54C74.45,54 74,53.55 74,53C74,52.45 74.45,52 75,52L77,52C77.55,52 78,52.45 78,53L78,61C78,61.55 77.55,62 77,62Z"
+        android:pathData="M86,60C85.45,60 85,59.55 85,59L85,52L84,52C83.45,52 83,51.55 83,51C83,50.45 83.45,50 84,50L86,50C86.55,50 87,50.45 87,51L87,59C87,59.55 86.55,60 86,60Z"
         android:strokeWidth="1"
         android:fillColor="#17191A"
         android:fillType="nonZero"
         android:strokeColor="#00000000"/>
     <path
-        android:pathData="M76,146.483m-12,0a12,12 0,1 1,24 0a12,12 0,1 1,-24 0"
+        android:pathData="M85,144.483m-12,0a12,12 0,1 1,24 0a12,12 0,1 1,-24 0"
         android:strokeWidth="1"
         android:fillColor="#E9F6FF"
         android:fillType="evenOdd"
         android:strokeColor="#00000000"/>
     <path
-        android:pathData="M79.005,144.983C79.005,145.813 78.335,146.483 77.505,146.483C78.335,146.483 79.005,147.153 79.005,147.983L79.005,149.483C79.005,150.593 78.105,151.483 77.005,151.483L73.995,151.483C73.445,151.483 72.995,151.033 72.995,150.483C72.995,149.933 73.445,149.483 73.995,149.483L77.005,149.483L76.995,147.483L75.995,147.483C75.445,147.483 74.995,147.033 74.995,146.483C74.995,145.933 75.445,145.483 75.995,145.483L76.995,145.483L77.005,143.483L73.995,143.483C73.445,143.483 73.005,143.033 73.005,142.483C73.005,141.933 73.445,141.483 73.995,141.483L77.005,141.483C78.105,141.483 79.005,142.383 79.005,143.483L79.005,144.983Z"
+        android:pathData="M88.005,142.983C88.005,143.813 87.335,144.483 86.505,144.483C87.335,144.483 88.005,145.153 88.005,145.983L88.005,147.483C88.005,148.593 87.105,149.483 86.005,149.483L82.995,149.483C82.445,149.483 81.995,149.033 81.995,148.483C81.995,147.933 82.445,147.483 82.995,147.483L86.005,147.483L85.995,145.483L84.995,145.483C84.445,145.483 83.995,145.033 83.995,144.483C83.995,143.933 84.445,143.483 84.995,143.483L85.995,143.483L86.005,141.483L82.995,141.483C82.445,141.483 82.005,141.033 82.005,140.483C82.005,139.933 82.445,139.483 82.995,139.483L86.005,139.483C87.105,139.483 88.005,140.383 88.005,141.483L88.005,142.983Z"
         android:strokeWidth="1"
         android:fillColor="#17191A"
         android:fillType="nonZero"
         android:strokeColor="#00000000"/>
     <path
-        android:pathData="M95.5,146.483L137.5,146.483"
-        android:strokeAlpha="0.1"
+        android:pathData="M105.5,144.483L137.5,144.483"
+        android:strokeAlpha="0.2"
         android:strokeWidth="1"
         android:fillColor="#00000000"
         android:strokeColor="#17191A"
         android:fillType="evenOdd"
         android:strokeLineCap="square"/>
     <path
-        android:pathData="M95.5,57L137.5,57"
-        android:strokeAlpha="0.1"
+        android:pathData="M105.5,55L137.5,55"
+        android:strokeAlpha="0.2"
         android:strokeWidth="1"
         android:fillColor="#00000000"
         android:strokeColor="#17191A"
         android:fillType="evenOdd"
         android:strokeLineCap="square"/>
     <path
-        android:pathData="M95.5,101.741L137.5,101.741"
-        android:strokeAlpha="0.1"
+        android:pathData="M105.5,99.741L137.5,99.741"
+        android:strokeAlpha="0.2"
         android:strokeWidth="1"
         android:fillColor="#00000000"
         android:strokeColor="#17191A"
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_main_illustration_share.xml b/Corona-Warn-App/src/main/res/drawable/ic_main_illustration_share.xml
index 9487b4ead6a8d7990b98c433b15d663e35b30b2c..2ec4ba021d7a65a9bbbaca45a9b4e11f251a5c55 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_main_illustration_share.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_main_illustration_share.xml
@@ -3,367 +3,368 @@
     android:height="229dp"
     android:viewportWidth="360"
     android:viewportHeight="229">
-    <path
-        android:fillColor="#B1DAEF"
-        android:fillType="evenOdd"
-        android:pathData="M270.294,88.533L270.399,88.53C270.376,88.495 270.351,88.463 270.326,88.43C270.315,88.465 270.306,88.499 270.294,88.533"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E1EEFF"
-        android:fillType="evenOdd"
-        android:pathData="M308.134,123.596L308.166,123.669C308.169,123.645 308.171,123.621 308.174,123.597C308.174,123.597 308.159,123.597 308.134,123.596"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E1EEFF"
-        android:fillType="evenOdd"
-        android:pathData="M301.21,121.55C301.02,122.081 300.88,122.732 300.84,123.526C300.9,122.904 301.011,122.225 301.21,121.55"
+  <path
+      android:pathData="M270.294,88.533L270.399,88.53C270.376,88.495 270.351,88.463 270.326,88.43C270.315,88.465 270.306,88.499 270.294,88.533"
+      android:strokeWidth="1"
+      android:fillColor="#B1DAEF"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M308.134,123.596L308.166,123.669C308.169,123.645 308.171,123.621 308.174,123.597C308.174,123.597 308.159,123.597 308.134,123.596"
+      android:strokeWidth="1"
+      android:fillColor="#E1EEFF"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M301.21,121.55C301.02,122.081 300.88,122.732 300.84,123.526C300.9,122.904 301.011,122.225 301.21,121.55"
+      android:strokeWidth="1"
+      android:fillColor="#E1EEFF"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M299.806,98.328C280.331,98.328 264.543,114.16 264.543,133.689C264.543,152.66 279.442,168.14 298.146,169.01C297.494,166.234 297.248,163.494 297.297,160.874C292.898,157.78 285.05,152.695 285.013,152.625C284.892,152.394 284.895,152.115 284.977,151.811L281.806,149.218C281.777,149.192 281.741,149.18 281.703,149.186C281.139,149.276 276.618,149.891 276.152,146.574C275.72,143.494 277.977,143.239 278.57,143.224C278.645,143.223 278.7,143.159 278.69,143.085C278.624,142.577 278.444,140.83 279.005,140.207C279.196,139.994 279.542,140.035 279.703,140.273C279.867,140.518 280.079,140.943 280.219,141.625C280.465,142.83 282.225,145.042 282.373,145.226C282.38,145.235 282.385,145.241 282.395,145.247C282.619,145.408 285.726,147.635 287.013,148.149C287.109,148.188 287.21,148.232 287.311,148.277C287.406,148.109 287.561,147.85 287.605,147.878C289.605,149.144 294.467,150.98 298.471,152.387C300.125,145.985 303.106,141.391 304.695,140.612L305.888,132.144C305.888,132.144 300.644,132.378 300.764,125.04C300.764,125.026 300.765,125.011 300.765,124.997C300.141,124.532 297.246,121.987 299.491,116.153C299.491,116.153 300.046,113.363 303.941,113.456C303.941,113.456 310.152,107.878 315.994,112.62C321.835,117.361 317.848,122.103 317.848,122.103C317.848,122.103 325.636,129.169 322.948,138.746C322.948,138.746 320.074,144.975 316.736,142.837C316.085,142.42 315.568,142.261 315.146,142.229C317.242,146.699 319.04,156.619 319.998,162.68C329.11,156.287 335.069,145.686 335.069,133.689C335.069,114.16 319.281,98.328 299.806,98.328"
+      android:strokeWidth="1"
+      android:fillColor="#E8F5FF"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M311.947,139.591L311.708,139.776C311.808,139.772 311.909,139.771 312.012,139.773C311.986,139.686 311.96,139.596 311.932,139.503L311.947,139.591Z"
+      android:strokeWidth="1"
+      android:fillColor="#E1EEFF"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M287.311,148.277C287.209,148.232 287.11,148.188 287.013,148.149C285.727,147.635 282.618,145.408 282.395,145.247C282.386,145.241 282.38,145.235 282.372,145.226C282.224,145.042 280.465,142.83 280.219,141.625C280.079,140.943 279.868,140.518 279.703,140.273C279.543,140.035 279.197,139.994 279.005,140.207C278.445,140.83 278.624,142.577 278.69,143.085C278.7,143.159 278.645,143.223 278.57,143.225C277.977,143.239 275.719,143.494 276.152,146.574C276.618,149.891 281.139,149.276 281.703,149.186C281.742,149.18 281.777,149.192 281.805,149.218L284.978,151.811C285.312,150.593 286.957,148.973 287.241,148.407C287.249,148.39 287.276,148.339 287.311,148.277"
+      android:strokeWidth="1"
+      android:fillColor="#EFB18C"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M305.504,140.659C307.056,142.409 308.758,139.884 311.708,139.775L311.947,139.591L311.932,139.503C311.896,139.378 311.86,139.251 311.822,139.117C310.065,132.902 306.983,134.096 308.166,123.669L308.134,123.596C307.716,123.582 303.981,123.35 303.107,119.314C303.107,119.314 301.859,119.746 301.21,121.55C301.011,122.226 300.9,122.905 300.84,123.526C300.817,123.993 300.827,124.507 300.881,125.078C300.881,125.078 300.838,125.051 300.766,124.997C300.765,125.011 300.765,125.026 300.765,125.04C300.644,132.378 305.888,132.144 305.888,132.144L304.694,140.611C305.038,140.443 305.319,140.45 305.504,140.659"
+      android:strokeWidth="1"
+      android:fillColor="#EFB18C"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M312.012,139.773C311.909,139.771 311.808,139.772 311.708,139.775C308.758,139.884 307.056,142.409 305.504,140.659C305.319,140.45 305.038,140.443 304.695,140.612C303.106,141.391 300.125,145.985 298.471,152.387C294.467,150.98 289.606,149.144 287.605,147.877C287.561,147.85 287.405,148.109 287.311,148.277C287.277,148.339 287.25,148.389 287.241,148.407C286.957,148.973 285.311,150.593 284.978,151.811C284.895,152.115 284.892,152.394 285.013,152.625C285.05,152.695 292.898,157.78 297.297,160.874C297.248,163.493 297.493,166.233 298.146,169.01C298.696,169.035 299.249,169.05 299.806,169.05C304.588,169.05 309.145,168.094 313.302,166.365L313.958,169.415C313.958,169.415 314.018,169.43 314.123,169.454L313.425,166.315C315.754,165.336 317.954,164.114 319.998,162.68C319.039,156.618 317.241,146.699 315.145,142.229C313.479,142.104 313.258,143.945 312.012,139.773"
+      android:strokeWidth="1"
+      android:fillColor="#AAD3E8"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M300.84,123.526C300.88,122.732 301.019,122.081 301.21,121.55C301.859,119.746 303.106,119.313 303.106,119.313C303.982,123.349 307.716,123.582 308.134,123.595C308.159,123.596 308.174,123.596 308.174,123.596C308.171,123.621 308.169,123.644 308.166,123.668C306.983,134.096 310.065,132.902 311.822,139.117C311.86,139.251 311.897,139.378 311.933,139.502C311.96,139.595 311.986,139.685 312.012,139.772C313.258,143.944 313.478,142.103 315.146,142.229C315.569,142.261 316.085,142.419 316.735,142.836C320.074,144.974 322.948,138.745 322.948,138.745C325.637,129.169 317.848,122.102 317.848,122.102C317.848,122.102 321.835,117.361 315.994,112.619C310.153,107.877 303.941,113.456 303.941,113.456C300.047,113.363 299.49,116.152 299.49,116.152C297.246,121.987 300.141,124.532 300.766,124.996C300.838,125.05 300.881,125.078 300.881,125.078C300.826,124.507 300.818,123.993 300.84,123.526"
+      android:strokeWidth="1"
+      android:fillColor="#663014"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M243.44,13.273C223.965,13.273 208.177,29.105 208.177,48.634C208.177,68.163 223.965,83.995 243.44,83.995C244.744,83.995 246.03,83.922 247.298,83.784L246.852,80.339C246.835,80.205 246.832,80.071 246.844,79.936C246.934,78.94 247.341,74.366 247.73,69.097C246.939,69.602 245.976,69.95 244.848,69.775L229.638,69.27L229.484,68.173L228.301,68.029C228.26,68.02 228.22,68.03 228.188,68.057C227.714,68.461 223.862,71.598 221.556,68.78C219.416,66.164 221.37,64.646 221.912,64.296C221.98,64.252 221.996,64.162 221.945,64.098C221.597,63.663 220.444,62.142 220.614,61.246C220.672,60.939 221.016,60.78 221.299,60.911C221.591,61.045 222.027,61.319 222.541,61.874C223.451,62.855 226.333,63.91 226.574,63.998C226.586,64.002 226.595,64.004 226.608,64.005C226.749,64.015 227.749,64.089 228.921,64.137L228.729,62.759L243.794,62.588L249.131,54.989C250.046,52.498 251.679,50.169 253.439,48.181C253.352,47.501 252.738,42.968 251.805,41.822L251.789,41.829C251.789,41.829 251.73,41.773 251.629,41.676C250.039,42.4 247.792,43.121 246.98,42.491C245.798,41.573 246.463,39.608 246.463,39.608C246.463,39.608 248.848,39.738 246.872,38.63C245.802,38.031 245.737,37.585 245.903,37.302C246.055,37.044 246.379,36.945 246.663,37.035C246.698,37.045 246.737,37.058 246.776,37.071C246.516,36.829 246.322,36.652 246.228,36.572C245.603,36.042 246.18,35.32 246.611,35.272C247.043,35.224 246.802,34.404 246.802,34.404C246.546,32.91 247.719,30.332 248.498,28.834C247.394,27.88 246.66,26.961 247.231,26.515C248.69,25.378 256.308,22.371 259.549,25.622C262.791,28.872 265.303,33.748 260.116,38.624C260.116,38.624 259.672,38.804 259.083,38.828C259.447,39.696 260.359,41.899 260.32,42.093C260.32,42.095 260.315,42.1 260.314,42.103C260.782,41.913 261.314,41.919 261.782,42.138C268.54,45.289 268.549,62.372 267.67,74.324C274.464,67.878 278.703,58.753 278.703,48.634C278.703,29.105 262.916,13.273 243.44,13.273"
+      android:strokeWidth="1"
+      android:fillColor="#E8F5FF"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M259.915,42.322C260.04,42.231 260.175,42.16 260.314,42.103C260.315,42.099 260.32,42.095 260.32,42.092C260.359,41.898 259.447,39.695 259.083,38.827C258.849,38.836 258.593,38.82 258.333,38.759C258.275,38.746 258.218,38.731 258.161,38.714C257.212,38.419 256.259,37.468 256.184,34.861C256.068,30.749 254.817,31.854 254.261,32.556C254.09,32.773 253.999,33.042 253.997,33.319C253.985,34.625 253.911,38.848 253.446,40.332C253.374,40.564 253.291,40.731 253.198,40.807C252.949,41.009 252.369,41.336 251.652,41.665C251.644,41.668 251.637,41.672 251.629,41.675C251.73,41.772 251.789,41.829 251.789,41.829L251.805,41.821C252.738,42.968 253.352,47.5 253.439,48.181C255.906,45.394 258.613,43.276 259.915,42.322"
+      android:strokeWidth="1"
+      android:fillColor="#F6B893"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M266.358,86.229L266.389,86.228C266.382,86.218 266.374,86.209 266.367,86.199C266.364,86.209 266.361,86.219 266.358,86.229"
+      android:strokeWidth="1"
+      android:fillColor="#B1DAEF"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M261.782,42.137C261.314,41.918 260.782,41.913 260.315,42.103C260.175,42.159 260.04,42.231 259.916,42.322C258.613,43.275 255.906,45.394 253.44,48.18C251.679,50.169 250.045,52.497 249.131,54.989L243.794,62.587L228.728,62.759L228.921,64.137L229.484,68.172L229.638,69.27L244.848,69.775C245.976,69.949 246.939,69.602 247.73,69.096C247.342,74.366 246.934,78.939 246.844,79.936C246.832,80.07 246.835,80.205 246.852,80.339L247.298,83.783C255.151,82.926 262.229,79.485 267.67,74.324C268.549,62.372 268.54,45.289 261.782,42.137"
+      android:strokeWidth="1"
+      android:fillColor="#385460"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M249.014,38.461C249.091,39.234 253.499,36.475 252.946,32.493C252.895,32.12 252.675,31.791 252.355,31.591C251.527,31.071 249.768,29.93 248.498,28.833C247.719,30.332 246.546,32.91 246.802,34.403C246.802,34.403 247.043,35.223 246.611,35.272C246.18,35.32 245.603,36.042 246.227,36.572C246.322,36.652 246.516,36.829 246.776,37.071C247.513,37.311 248.954,37.857 249.014,38.461"
+      android:strokeWidth="1"
+      android:fillColor="#F6B893"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M253.198,40.808C253.292,40.732 253.373,40.565 253.446,40.332C253.911,38.849 253.985,34.626 253.997,33.319C254,33.042 254.09,32.774 254.261,32.557C254.816,31.855 256.068,30.749 256.185,34.86C256.258,37.469 257.212,38.42 258.162,38.714C258.219,38.732 258.276,38.747 258.333,38.76C258.593,38.821 258.849,38.837 259.083,38.828C259.672,38.804 260.116,38.624 260.116,38.624C265.302,33.748 262.79,28.872 259.549,25.622C256.307,22.371 248.689,25.378 247.231,26.516C246.66,26.961 247.394,27.88 248.498,28.834C249.767,29.93 251.527,31.072 252.355,31.591C252.674,31.791 252.895,32.12 252.947,32.494C253.499,36.475 249.091,39.235 249.013,38.461C248.954,37.857 247.513,37.312 246.776,37.071C246.737,37.058 246.698,37.046 246.664,37.035C246.38,36.945 246.055,37.044 245.903,37.302C245.738,37.585 245.801,38.031 246.872,38.631C248.849,39.738 246.463,39.608 246.463,39.608C246.463,39.608 245.798,41.573 246.981,42.491C247.792,43.121 250.04,42.4 251.629,41.676C251.637,41.672 251.644,41.669 251.652,41.665C252.369,41.337 252.949,41.01 253.198,40.808"
+      android:strokeWidth="1"
+      android:fillColor="#DFDFDF"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M226.608,64.004C226.595,64.003 226.587,64.001 226.575,63.997C226.333,63.91 223.45,62.854 222.541,61.873C222.026,61.318 221.591,61.045 221.299,60.91C221.016,60.779 220.671,60.938 220.613,61.245C220.445,62.141 221.597,63.663 221.945,64.098C221.995,64.161 221.98,64.251 221.913,64.295C221.37,64.645 219.417,66.163 221.557,68.779C223.861,71.597 227.715,68.46 228.187,68.056C228.219,68.029 228.261,68.019 228.302,68.028L229.485,68.172L228.921,64.137C227.748,64.088 226.748,64.014 226.608,64.004"
+      android:strokeWidth="1"
+      android:fillColor="#EFB18C"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <group>
+    <clip-path
+        android:pathData="M85.377,10l70.527,0l0,70.049l-70.527,0z"/>
+    <path
+        android:pathData="M114.105,78.48C114.134,78.345 114.156,78.211 114.171,78.074C114.271,77.149 114.502,75.385 114.643,74.204C114.657,74.085 114.665,73.967 114.669,73.846L114.772,70.437C114.779,70.224 114.769,70.013 114.742,69.801C114.729,69.699 114.713,69.574 114.696,69.432C114.673,69.346 114.659,69.263 114.659,69.188C114.659,67.199 107.373,58.053 107.373,58.053C107.3,57.938 107.308,57.789 107.392,57.682L107.427,57.649L99.014,46.721C99.014,46.721 95.494,44.989 97.196,42.638C98.898,40.287 100.579,45.192 100.579,45.192L109.87,55.389C110.009,55.336 110.193,55.374 110.287,55.49C110.726,55.995 111.027,56.306 111.482,56.829C112.007,57.434 112.497,57.983 112.908,58.437C112.991,58.217 113.082,57.989 113.19,57.746C114.595,54.598 113.007,52.199 112.124,51.196C111.747,50.767 111.508,50.235 111.42,49.67C111.032,47.185 110.591,40.78 115.679,38.016C120.467,35.414 122.127,35.872 122.659,36.264C122.923,36.458 123.227,36.585 123.544,36.672C125.578,37.231 131.611,39.547 130.925,47.205C130.818,48.393 131.422,49.53 132.467,50.099C133.238,50.519 134.084,51.017 134.862,51.553L140.638,45.217C140.638,45.217 142.353,40.324 144.039,42.686C145.724,45.049 142.194,46.757 142.194,46.757L136.994,53.436C137.271,53.801 137.46,54.163 137.513,54.514C137.537,54.678 137.491,54.842 137.5,55.007C137.516,55.314 137.423,55.86 136.814,56.592C135.541,58.123 136.062,60.448 137.879,61.256C137.918,61.273 137.957,61.29 137.997,61.307C138.878,61.688 139.531,62.483 139.707,63.429C140.087,65.472 138.995,68.464 128.541,67.321C128.141,67.277 127.755,67.232 127.377,67.187C127.217,67.479 127.08,67.751 126.97,67.997C126.844,69.018 126.757,69.783 126.763,69.883L127.311,74.767C127.319,74.846 127.324,74.926 127.327,75.005C127.342,75.301 127.397,75.7 127.46,75.953L127.461,75.954L128.188,79.907C144.036,76.441 155.904,62.292 155.904,45.361C155.904,25.832 140.115,10 120.641,10C101.165,10 85.377,25.832 85.377,45.361C85.377,62.532 97.583,76.842 113.769,80.049L114.105,78.48Z"
         android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
         android:fillColor="#E8F5FF"
         android:fillType="evenOdd"
-        android:pathData="M299.806,98.328C280.331,98.328 264.543,114.16 264.543,133.689C264.543,152.66 279.442,168.14 298.146,169.01C297.494,166.234 297.248,163.494 297.297,160.874C292.898,157.78 285.05,152.695 285.013,152.625C284.892,152.394 284.895,152.115 284.977,151.811L281.806,149.218C281.777,149.192 281.741,149.18 281.703,149.186C281.139,149.276 276.618,149.891 276.152,146.574C275.72,143.494 277.977,143.239 278.57,143.224C278.645,143.223 278.7,143.159 278.69,143.085C278.624,142.577 278.444,140.83 279.005,140.207C279.196,139.994 279.542,140.035 279.703,140.273C279.867,140.518 280.079,140.943 280.219,141.625C280.465,142.83 282.225,145.042 282.373,145.226C282.38,145.235 282.385,145.241 282.395,145.247C282.619,145.408 285.726,147.635 287.013,148.149C287.109,148.188 287.21,148.232 287.311,148.277C287.406,148.109 287.561,147.85 287.605,147.878C289.605,149.144 294.467,150.98 298.471,152.387C300.125,145.985 303.106,141.391 304.695,140.612L305.888,132.144C305.888,132.144 300.644,132.378 300.764,125.04C300.764,125.026 300.765,125.011 300.765,124.997C300.141,124.532 297.246,121.987 299.491,116.153C299.491,116.153 300.046,113.363 303.941,113.456C303.941,113.456 310.152,107.878 315.994,112.62C321.835,117.361 317.848,122.103 317.848,122.103C317.848,122.103 325.636,129.169 322.948,138.746C322.948,138.746 320.074,144.975 316.736,142.837C316.085,142.42 315.568,142.261 315.146,142.229C317.242,146.699 319.04,156.619 319.998,162.68C329.11,156.287 335.069,145.686 335.069,133.689C335.069,114.16 319.281,98.328 299.806,98.328"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E1EEFF"
-        android:fillType="evenOdd"
-        android:pathData="M311.947,139.591L311.708,139.776C311.808,139.772 311.909,139.771 312.012,139.773C311.986,139.686 311.96,139.596 311.932,139.503L311.947,139.591Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#EFB18C"
-        android:fillType="evenOdd"
-        android:pathData="M287.311,148.277C287.209,148.232 287.11,148.188 287.013,148.149C285.727,147.635 282.618,145.408 282.395,145.247C282.386,145.241 282.38,145.235 282.372,145.226C282.224,145.042 280.465,142.83 280.219,141.625C280.079,140.943 279.868,140.518 279.703,140.273C279.543,140.035 279.197,139.994 279.005,140.207C278.445,140.83 278.624,142.577 278.69,143.085C278.7,143.159 278.645,143.223 278.57,143.225C277.977,143.239 275.719,143.494 276.152,146.574C276.618,149.891 281.139,149.276 281.703,149.186C281.742,149.18 281.777,149.192 281.805,149.218L284.978,151.811C285.312,150.593 286.957,148.973 287.241,148.407C287.249,148.39 287.276,148.339 287.311,148.277"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#EFB18C"
-        android:fillType="evenOdd"
-        android:pathData="M305.504,140.659C307.056,142.409 308.758,139.884 311.708,139.775L311.947,139.591L311.932,139.503C311.896,139.378 311.86,139.251 311.822,139.117C310.065,132.902 306.983,134.096 308.166,123.669L308.134,123.596C307.716,123.582 303.981,123.35 303.107,119.314C303.107,119.314 301.859,119.746 301.21,121.55C301.011,122.226 300.9,122.905 300.84,123.526C300.817,123.993 300.827,124.507 300.881,125.078C300.881,125.078 300.838,125.051 300.766,124.997C300.765,125.011 300.765,125.026 300.765,125.04C300.644,132.378 305.888,132.144 305.888,132.144L304.694,140.611C305.038,140.443 305.319,140.45 305.504,140.659"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#AAD3E8"
-        android:fillType="evenOdd"
-        android:pathData="M312.012,139.773C311.909,139.771 311.808,139.772 311.708,139.775C308.758,139.884 307.056,142.409 305.504,140.659C305.319,140.45 305.038,140.443 304.695,140.612C303.106,141.391 300.125,145.985 298.471,152.387C294.467,150.98 289.606,149.144 287.605,147.877C287.561,147.85 287.405,148.109 287.311,148.277C287.277,148.339 287.25,148.389 287.241,148.407C286.957,148.973 285.311,150.593 284.978,151.811C284.895,152.115 284.892,152.394 285.013,152.625C285.05,152.695 292.898,157.78 297.297,160.874C297.248,163.493 297.493,166.233 298.146,169.01C298.696,169.035 299.249,169.05 299.806,169.05C304.588,169.05 309.145,168.094 313.302,166.365L313.958,169.415C313.958,169.415 314.018,169.43 314.123,169.454L313.425,166.315C315.754,165.336 317.954,164.114 319.998,162.68C319.039,156.618 317.241,146.699 315.145,142.229C313.479,142.104 313.258,143.945 312.012,139.773"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#663014"
-        android:fillType="evenOdd"
-        android:pathData="M300.84,123.526C300.88,122.732 301.019,122.081 301.21,121.55C301.859,119.746 303.106,119.313 303.106,119.313C303.982,123.349 307.716,123.582 308.134,123.595C308.159,123.596 308.174,123.596 308.174,123.596C308.171,123.621 308.169,123.644 308.166,123.668C306.983,134.096 310.065,132.902 311.822,139.117C311.86,139.251 311.897,139.378 311.933,139.502C311.96,139.595 311.986,139.685 312.012,139.772C313.258,143.944 313.478,142.103 315.146,142.229C315.569,142.261 316.085,142.419 316.735,142.836C320.074,144.974 322.948,138.745 322.948,138.745C325.637,129.169 317.848,122.102 317.848,122.102C317.848,122.102 321.835,117.361 315.994,112.619C310.153,107.877 303.941,113.456 303.941,113.456C300.047,113.363 299.49,116.152 299.49,116.152C297.246,121.987 300.141,124.532 300.766,124.996C300.838,125.05 300.881,125.078 300.881,125.078C300.826,124.507 300.818,123.993 300.84,123.526"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E8F5FF"
-        android:fillType="evenOdd"
-        android:pathData="M243.44,13.273C223.965,13.273 208.177,29.105 208.177,48.634C208.177,68.163 223.965,83.995 243.44,83.995C244.744,83.995 246.03,83.922 247.298,83.784L246.852,80.339C246.835,80.205 246.832,80.071 246.844,79.936C246.934,78.94 247.341,74.366 247.73,69.097C246.939,69.602 245.976,69.95 244.848,69.775L229.638,69.27L229.484,68.173L228.301,68.029C228.26,68.02 228.22,68.03 228.188,68.057C227.714,68.461 223.862,71.598 221.556,68.78C219.416,66.164 221.37,64.646 221.912,64.296C221.98,64.252 221.996,64.162 221.945,64.098C221.597,63.663 220.444,62.142 220.614,61.246C220.672,60.939 221.016,60.78 221.299,60.911C221.591,61.045 222.027,61.319 222.541,61.874C223.451,62.855 226.333,63.91 226.574,63.998C226.586,64.002 226.595,64.004 226.608,64.005C226.749,64.015 227.749,64.089 228.921,64.137L228.729,62.759L243.794,62.588L249.131,54.989C250.046,52.498 251.679,50.169 253.439,48.181C253.352,47.501 252.738,42.968 251.805,41.822L251.789,41.829C251.789,41.829 251.73,41.773 251.629,41.676C250.039,42.4 247.792,43.121 246.98,42.491C245.798,41.573 246.463,39.608 246.463,39.608C246.463,39.608 248.848,39.738 246.872,38.63C245.802,38.031 245.737,37.585 245.903,37.302C246.055,37.044 246.379,36.945 246.663,37.035C246.698,37.045 246.737,37.058 246.776,37.071C246.516,36.829 246.322,36.652 246.228,36.572C245.603,36.042 246.18,35.32 246.611,35.272C247.043,35.224 246.802,34.404 246.802,34.404C246.546,32.91 247.719,30.332 248.498,28.834C247.394,27.88 246.66,26.961 247.231,26.515C248.69,25.378 256.308,22.371 259.549,25.622C262.791,28.872 265.303,33.748 260.116,38.624C260.116,38.624 259.672,38.804 259.083,38.828C259.447,39.696 260.359,41.899 260.32,42.093C260.32,42.095 260.315,42.1 260.314,42.103C260.782,41.913 261.314,41.919 261.782,42.138C268.54,45.289 268.549,62.372 267.67,74.324C274.464,67.878 278.703,58.753 278.703,48.634C278.703,29.105 262.916,13.273 243.44,13.273"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M259.915,42.322C260.04,42.231 260.175,42.16 260.314,42.103C260.315,42.099 260.32,42.095 260.32,42.092C260.359,41.898 259.447,39.695 259.083,38.827C258.849,38.836 258.593,38.82 258.333,38.759C258.275,38.746 258.218,38.731 258.161,38.714C257.212,38.419 256.259,37.468 256.184,34.861C256.068,30.749 254.817,31.854 254.261,32.556C254.09,32.773 253.999,33.042 253.997,33.319C253.985,34.625 253.911,38.848 253.446,40.332C253.374,40.564 253.291,40.731 253.198,40.807C252.949,41.009 252.369,41.336 251.652,41.665C251.644,41.668 251.637,41.672 251.629,41.675C251.73,41.772 251.789,41.829 251.789,41.829L251.805,41.821C252.738,42.968 253.352,47.5 253.439,48.181C255.906,45.394 258.613,43.276 259.915,42.322"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#B1DAEF"
-        android:fillType="evenOdd"
-        android:pathData="M266.358,86.229L266.389,86.228C266.382,86.218 266.374,86.209 266.367,86.199C266.364,86.209 266.361,86.219 266.358,86.229"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#385460"
-        android:fillType="evenOdd"
-        android:pathData="M261.782,42.137C261.314,41.918 260.782,41.913 260.315,42.103C260.175,42.159 260.04,42.231 259.916,42.322C258.613,43.275 255.906,45.394 253.44,48.18C251.679,50.169 250.045,52.497 249.131,54.989L243.794,62.587L228.728,62.759L228.921,64.137L229.484,68.172L229.638,69.27L244.848,69.775C245.976,69.949 246.939,69.602 247.73,69.096C247.342,74.366 246.934,78.939 246.844,79.936C246.832,80.07 246.835,80.205 246.852,80.339L247.298,83.783C255.151,82.926 262.229,79.485 267.67,74.324C268.549,62.372 268.54,45.289 261.782,42.137"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M249.014,38.461C249.091,39.234 253.499,36.475 252.946,32.493C252.895,32.12 252.675,31.791 252.355,31.591C251.527,31.071 249.768,29.93 248.498,28.833C247.719,30.332 246.546,32.91 246.802,34.403C246.802,34.403 247.043,35.223 246.611,35.272C246.18,35.32 245.603,36.042 246.227,36.572C246.322,36.652 246.516,36.829 246.776,37.071C247.513,37.311 248.954,37.857 249.014,38.461"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#DFDFDF"
-        android:fillType="evenOdd"
-        android:pathData="M253.198,40.808C253.292,40.732 253.373,40.565 253.446,40.332C253.911,38.849 253.985,34.626 253.997,33.319C254,33.042 254.09,32.774 254.261,32.557C254.816,31.855 256.068,30.749 256.185,34.86C256.258,37.469 257.212,38.42 258.162,38.714C258.219,38.732 258.276,38.747 258.333,38.76C258.593,38.821 258.849,38.837 259.083,38.828C259.672,38.804 260.116,38.624 260.116,38.624C265.302,33.748 262.79,28.872 259.549,25.622C256.307,22.371 248.689,25.378 247.231,26.516C246.66,26.961 247.394,27.88 248.498,28.834C249.767,29.93 251.527,31.072 252.355,31.591C252.674,31.791 252.895,32.12 252.947,32.494C253.499,36.475 249.091,39.235 249.013,38.461C248.954,37.857 247.513,37.312 246.776,37.071C246.737,37.058 246.698,37.046 246.664,37.035C246.38,36.945 246.055,37.044 245.903,37.302C245.738,37.585 245.801,38.031 246.872,38.631C248.849,39.738 246.463,39.608 246.463,39.608C246.463,39.608 245.798,41.573 246.981,42.491C247.792,43.121 250.04,42.4 251.629,41.676C251.637,41.672 251.644,41.669 251.652,41.665C252.369,41.337 252.949,41.01 253.198,40.808"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#EFB18C"
-        android:fillType="evenOdd"
-        android:pathData="M226.608,64.004C226.595,64.003 226.587,64.001 226.575,63.997C226.333,63.91 223.45,62.854 222.541,61.873C222.026,61.318 221.591,61.045 221.299,60.91C221.016,60.779 220.671,60.938 220.613,61.245C220.445,62.141 221.597,63.663 221.945,64.098C221.995,64.161 221.98,64.251 221.913,64.295C221.37,64.645 219.417,66.163 221.557,68.779C223.861,71.597 227.715,68.46 228.187,68.056C228.219,68.029 228.261,68.019 228.302,68.028L229.485,68.172L228.921,64.137C227.748,64.088 226.748,64.014 226.608,64.004"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <group>
-        <clip-path android:pathData="M85.377,10l70.527,0l0,70.049l-70.527,0z" />
-        <path
-            android:fillColor="#E8F5FF"
-            android:fillType="evenOdd"
-            android:pathData="M114.105,78.48C114.134,78.345 114.156,78.211 114.171,78.074C114.271,77.149 114.502,75.385 114.643,74.204C114.657,74.085 114.665,73.967 114.669,73.846L114.772,70.437C114.779,70.224 114.769,70.013 114.742,69.801C114.729,69.699 114.713,69.574 114.696,69.432C114.673,69.346 114.659,69.263 114.659,69.188C114.659,67.199 107.373,58.053 107.373,58.053C107.3,57.938 107.308,57.789 107.392,57.682L107.427,57.649L99.014,46.721C99.014,46.721 95.494,44.989 97.196,42.638C98.898,40.287 100.579,45.192 100.579,45.192L109.87,55.389C110.009,55.336 110.193,55.374 110.287,55.49C110.726,55.995 111.027,56.306 111.482,56.829C112.007,57.434 112.497,57.983 112.908,58.437C112.991,58.217 113.082,57.989 113.19,57.746C114.595,54.598 113.007,52.199 112.124,51.196C111.747,50.767 111.508,50.235 111.42,49.67C111.032,47.185 110.591,40.78 115.679,38.016C120.467,35.414 122.127,35.872 122.659,36.264C122.923,36.458 123.227,36.585 123.544,36.672C125.578,37.231 131.611,39.547 130.925,47.205C130.818,48.393 131.422,49.53 132.467,50.099C133.238,50.519 134.084,51.017 134.862,51.553L140.638,45.217C140.638,45.217 142.353,40.324 144.039,42.686C145.724,45.049 142.194,46.757 142.194,46.757L136.994,53.436C137.271,53.801 137.46,54.163 137.513,54.514C137.537,54.678 137.491,54.842 137.5,55.007C137.516,55.314 137.423,55.86 136.814,56.592C135.541,58.123 136.062,60.448 137.879,61.256C137.918,61.273 137.957,61.29 137.997,61.307C138.878,61.688 139.531,62.483 139.707,63.429C140.087,65.472 138.995,68.464 128.541,67.321C128.141,67.277 127.755,67.232 127.377,67.187C127.217,67.479 127.08,67.751 126.97,67.997C126.844,69.018 126.757,69.783 126.763,69.883L127.311,74.767C127.319,74.846 127.324,74.926 127.327,75.005C127.342,75.301 127.397,75.7 127.46,75.953L127.461,75.954L128.188,79.907C144.036,76.441 155.904,62.292 155.904,45.361C155.904,25.832 140.115,10 120.641,10C101.165,10 85.377,25.832 85.377,45.361C85.377,62.532 97.583,76.842 113.769,80.049L114.105,78.48Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M109.87,55.389L100.58,45.192C100.58,45.192 98.898,40.287 97.196,42.638C95.495,44.989 99.013,46.722 99.013,46.722L107.428,57.649L109.746,55.477C109.778,55.436 109.822,55.407 109.87,55.389"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#CBAB7D"
-        android:fillType="evenOdd"
-        android:pathData="M133.938,57.505C134.023,57.612 134.031,57.762 133.957,57.877C133.957,57.877 129.203,63.845 127.376,67.187C127.754,67.232 128.141,67.277 128.54,67.321C138.995,68.464 140.086,65.472 139.706,63.429C139.531,62.484 138.879,61.689 137.997,61.307C137.957,61.29 137.918,61.273 137.879,61.256C136.061,60.448 135.541,58.123 136.814,56.592C137.423,55.86 137.515,55.314 137.499,55.007C137.491,54.842 137.536,54.678 137.512,54.515C137.46,54.163 137.272,53.801 136.994,53.436L133.873,57.444L133.938,57.505Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#CBAB7D"
-        android:fillType="evenOdd"
-        android:pathData="M119.012,60.043C119.277,60.38 119.665,60.804 120.123,61.1C119.668,60.782 119.276,60.362 119.012,60.043"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#CBAB7D"
-        android:fillType="evenOdd"
-        android:pathData="M117.337,60.167L118.385,59.621C118.502,59.567 118.635,59.595 118.729,59.679C118.683,59.615 118.657,59.577 118.657,59.577L119.096,56.971C118.937,56.934 118.777,56.901 118.616,56.878C117.76,56.755 115.699,56.124 114.736,52.918C114.736,52.918 113.241,50.736 114.406,48.76C115.57,46.783 119.509,48.16 121.731,43.674C121.731,43.674 124.935,48.839 127.062,48.887C129.191,48.934 126.864,55.919 123.679,56.681C123.679,56.681 123.458,56.764 123.102,56.864L123.328,59.51C123.297,59.597 123.263,59.675 123.231,59.756C123.328,59.674 123.467,59.654 123.585,59.719L124.38,60.118C125.447,60.386 126.724,60.078 127.244,59.535C127.336,59.438 128.48,58.23 129.849,56.652C130.303,56.129 130.605,55.818 131.042,55.313C131.149,55.183 131.363,55.152 131.506,55.235L134.862,51.553C134.084,51.017 133.237,50.519 132.466,50.099C131.422,49.53 130.818,48.392 130.925,47.205C131.611,39.547 125.579,37.231 123.543,36.671C123.227,36.584 122.923,36.458 122.659,36.264C122.128,35.872 120.468,35.414 115.679,38.015C110.591,40.78 111.032,47.185 111.42,49.67C111.509,50.235 111.748,50.767 112.124,51.195C113.006,52.198 114.595,54.598 113.19,57.745C113.081,57.989 112.992,58.216 112.909,58.437C113.572,59.168 114.03,59.652 114.086,59.712C114.671,60.322 116.213,60.636 117.337,60.167"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#C66A61"
-        android:fillType="evenOdd"
-        android:pathData="M127.46,75.953C127.397,75.7 127.342,75.301 127.327,75.005C127.324,74.926 127.319,74.846 127.311,74.767L126.763,69.883C126.756,69.783 126.844,69.017 126.97,67.997C127.08,67.751 127.217,67.479 127.377,67.187C129.204,63.845 133.957,57.877 133.957,57.877C134.03,57.762 134.024,57.612 133.939,57.505L133.873,57.444L131.584,55.3C131.562,55.273 131.535,55.252 131.506,55.235C131.364,55.152 131.149,55.183 131.043,55.313C130.605,55.818 130.304,56.129 129.849,56.652C128.479,58.23 127.336,59.439 127.243,59.535C126.725,60.078 125.446,60.386 124.379,60.118L123.586,59.719C123.468,59.654 123.328,59.674 123.23,59.756C122.335,61.979 121.089,61.775 120.124,61.1C119.664,60.804 119.276,60.38 119.011,60.043C118.886,59.891 118.789,59.762 118.728,59.679C118.635,59.595 118.503,59.567 118.384,59.621L117.338,60.167C116.213,60.637 114.67,60.322 114.087,59.712C114.03,59.652 113.572,59.169 112.908,58.437C112.497,57.983 112.006,57.433 111.482,56.829C111.026,56.306 110.726,55.995 110.287,55.49C110.193,55.373 110.009,55.336 109.87,55.389C109.822,55.407 109.779,55.436 109.746,55.476L107.427,57.649L107.392,57.682C107.308,57.789 107.3,57.938 107.374,58.053C107.374,58.053 114.659,67.199 114.659,69.187C114.659,69.263 114.673,69.346 114.696,69.432C114.713,69.574 114.729,69.699 114.742,69.801C114.768,70.013 114.779,70.224 114.772,70.437L114.669,73.846C114.665,73.966 114.657,74.085 114.642,74.204C114.502,75.384 114.271,77.149 114.171,78.074C114.156,78.211 114.134,78.345 114.105,78.48L113.769,80.048C115.992,80.489 118.288,80.722 120.641,80.722C123.231,80.722 125.756,80.439 128.188,79.907L127.46,75.953Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M123.102,56.863C123.458,56.764 123.68,56.681 123.68,56.681C126.864,55.918 129.19,48.935 127.063,48.887C124.935,48.839 121.731,43.674 121.731,43.674C119.509,48.16 115.57,46.784 114.405,48.759C113.241,50.736 114.735,52.918 114.735,52.918C115.699,56.124 117.76,56.756 118.616,56.877C118.777,56.902 118.937,56.933 119.095,56.972L118.657,59.577C118.657,59.577 118.682,59.616 118.728,59.679C118.788,59.762 118.886,59.89 119.012,60.042C119.276,60.362 119.668,60.782 120.123,61.099C121.089,61.775 122.334,61.979 123.231,59.756C123.264,59.674 123.297,59.597 123.329,59.509L123.102,56.863Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M131.584,55.3L133.873,57.444L136.993,53.436L142.194,46.757C142.194,46.757 145.724,45.049 144.039,42.686C142.354,40.324 140.638,45.217 140.638,45.217L134.862,51.553L131.506,55.236C131.536,55.253 131.563,55.273 131.584,55.3"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M49.271,145.124C49.115,144.505 48.961,143.862 48.811,143.203C41.908,144.324 37.823,149.21 36.553,154.788C37.119,155.265 37.701,155.724 38.297,156.164C39.187,150.909 42.844,146.166 49.271,145.124"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M50.572,149.499C50.535,149.571 50.524,149.648 50.547,149.731C50.877,150.604 51.064,151.564 52.024,151.964C51.541,151.672 51.053,150.783 50.572,149.499"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#B1DAEF"
-        android:fillType="evenOdd"
-        android:pathData="M52.925,146.256C52.738,145.875 52.648,145.447 52.668,144.964C52.611,144.96 52.557,144.953 52.5,144.949C52.597,145.353 52.69,145.729 52.779,146.077C52.791,146.116 52.804,146.158 52.815,146.192C52.85,146.216 52.889,146.234 52.925,146.256"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M51.867,142.978C51.847,142.907 51.827,142.835 51.806,142.762C50.002,142.577 48.79,142.159 48.754,141.352C48.817,140.674 49.69,140.254 51.039,140.007C50.052,136.402 48.96,132.136 48.498,129.519C47.708,127.189 46.915,125.527 46.189,125.28C46.073,125.202 44.824,124.29 45.269,126.288C45.845,127.361 47.198,136.174 48.811,143.202C49.671,143.063 50.573,142.98 51.519,142.964C51.638,142.966 51.751,142.974 51.867,142.978"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M52.339,152.069C52.225,152.041 52.121,152.005 52.024,151.964C52.129,152.028 52.235,152.065 52.339,152.069"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M51.656,144.914C51.92,144.919 52.18,144.93 52.437,144.946C52.275,144.4 52.082,143.732 51.868,142.979C51.751,142.975 51.637,142.966 51.519,142.964C50.573,142.981 49.671,143.063 48.811,143.203C48.962,143.862 49.115,144.505 49.271,145.124C50.028,145.001 50.822,144.929 51.656,144.914"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M52.499,144.949C52.479,144.948 52.458,144.947 52.437,144.946C52.579,145.427 52.694,145.809 52.779,146.077C52.69,145.73 52.597,145.353 52.499,144.949"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M51.984,142.78C51.924,142.775 51.864,142.769 51.806,142.763C51.826,142.835 51.847,142.908 51.867,142.978C51.922,142.98 51.977,142.983 52.032,142.985C52.016,142.917 52,142.849 51.984,142.78"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M51.319,139.959C50.474,136.406 49.489,132.438 48.497,129.519C48.96,132.136 50.052,136.402 51.038,140.007C51.13,139.99 51.223,139.974 51.319,139.959"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M52.032,142.985C51.977,142.983 51.922,142.98 51.867,142.978C52.082,143.731 52.275,144.399 52.437,144.946C52.458,144.947 52.479,144.947 52.5,144.949C52.353,144.346 52.198,143.686 52.032,142.985"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M48.754,141.352C48.79,142.159 50.002,142.577 51.806,142.762C51.568,141.924 51.308,140.992 51.039,140.007C49.69,140.254 48.817,140.674 48.754,141.352"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M51.319,139.959C51.223,139.974 51.13,139.99 51.038,140.007C51.308,140.992 51.568,141.924 51.806,142.763C51.864,142.769 51.924,142.774 51.984,142.78C51.775,141.892 51.552,140.942 51.319,139.959"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E1EEFF"
-        android:fillType="evenOdd"
-        android:pathData="M71.831,160.703C72.794,160.332 73.738,159.921 74.657,159.47L71.831,152.808L71.831,160.703Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E8F5FF"
-        android:fillType="evenOdd"
-        android:pathData="M59.197,92.321C39.722,92.321 23.934,108.153 23.934,127.682C23.934,138.567 28.839,148.301 36.553,154.788C37.823,149.209 41.908,144.323 48.811,143.202C47.198,136.174 45.846,127.361 45.269,126.288C44.824,124.29 46.072,125.202 46.189,125.28C46.915,125.527 47.708,127.189 48.497,129.519C48.427,129.116 48.369,128.748 48.331,128.432C47.887,124.79 50.048,120.071 52.323,118.788C52.622,118.233 53.207,117.148 53.603,116.414C53.402,116.478 53.187,116.52 52.964,116.528C52.619,116.54 51.681,115.326 51.159,114.629C51.107,114.559 51.059,114.486 51.017,114.408C49.605,111.795 49.217,108.17 50.24,106.642C53.727,101.434 59.405,104.87 59.97,105.549C61.976,105.548 62.36,107.682 61.414,108.816C61.64,109.228 61.84,109.683 62.01,110.185C63.161,113.56 60.748,119.191 58.683,118.457C57.935,118.191 57.282,117.978 56.705,117.788C56.561,118.204 56.388,118.701 56.227,119.166C57.45,119.868 58.51,121.052 59.439,122.556L64.27,125.115L73.593,120.483L73.742,120.92C74.676,120.377 75.605,119.77 75.71,119.702C75.717,119.697 75.722,119.693 75.728,119.686C75.844,119.553 77.235,117.952 77.458,117.056C77.585,116.548 77.757,116.237 77.889,116.059C78.016,115.885 78.277,115.866 78.414,116.032C78.814,116.517 78.624,117.821 78.558,118.2C78.548,118.255 78.588,118.305 78.643,118.309C79.087,118.339 80.772,118.603 80.348,120.899C79.892,123.371 76.523,122.763 76.102,122.678C76.074,122.672 76.046,122.68 76.024,122.699L74.735,123.803L75.07,124.775L65.869,129.868C64.755,130.672 63.457,130.352 62.588,130.06C63.594,133.358 64.379,136.908 65.068,140.062C66.609,140.134 67.775,140.161 68.244,140.06C69.551,140.214 71.439,139.759 71.639,141.197C71.623,142.411 70.132,142.225 68.912,142.236L69.085,142.644C70.96,143.251 72.562,143.809 73.595,144.007C76.46,144.914 77.59,147.723 77.59,147.723L79.952,156.269C88.745,149.838 94.46,139.43 94.46,127.682C94.46,108.153 78.672,92.321 59.197,92.321"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E1EEFF"
-        android:fillType="evenOdd"
-        android:pathData="M49.529,159.19C49.494,156.81 53.223,156.81 53.187,159.19C53.222,161.57 49.494,161.57 49.529,159.19M63.797,152.307L53,152.155C52.75,152.148 52.533,152.117 52.339,152.069C52.235,152.065 52.129,152.028 52.023,151.964C51.064,151.565 50.877,150.605 50.547,149.731C50.524,149.648 50.535,149.571 50.572,149.499C50.131,148.32 49.694,146.81 49.271,145.124C42.845,146.166 39.187,150.909 38.297,156.164C44.146,160.487 51.373,163.044 59.196,163.044C61.079,163.044 62.926,162.894 64.728,162.609C65.627,159.21 65.315,155.471 63.797,152.307"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E1EEFF"
-        android:fillType="evenOdd"
-        android:pathData="M65.725,152.334C66.972,155.457 67.241,158.979 66.532,162.274C67.722,162.022 68.89,161.709 70.032,161.339L70.032,152.395L65.725,152.334Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E1EEFF"
-        android:fillType="evenOdd"
-        android:pathData="M53.519,148.727C54.513,148.649 55.692,148.611 56.955,148.6C55.015,148.166 53.506,147.446 52.924,146.256C52.888,146.234 52.849,146.216 52.815,146.192C52.804,146.158 52.791,146.115 52.779,146.077C53.043,147.12 53.261,147.889 53.422,148.252C53.457,148.413 53.49,148.571 53.519,148.727"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#EFB18C"
-        android:fillType="evenOdd"
-        android:pathData="M76.024,122.699C76.046,122.68 76.074,122.672 76.102,122.678C76.523,122.764 79.892,123.371 80.348,120.899C80.772,118.603 79.087,118.339 78.643,118.309C78.588,118.305 78.548,118.256 78.558,118.2C78.624,117.821 78.814,116.517 78.414,116.032C78.277,115.866 78.016,115.885 77.889,116.059C77.757,116.238 77.585,116.549 77.458,117.056C77.235,117.952 75.844,119.553 75.728,119.687C75.722,119.693 75.717,119.697 75.71,119.702C75.605,119.771 74.676,120.377 73.742,120.92L74.735,123.803L76.024,122.699Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#C66A61"
-        android:fillType="evenOdd"
-        android:pathData="M73.595,144.007C72.562,143.809 70.96,143.251 69.085,142.645L71.859,149.183L72.584,150.892L75.942,158.808C77.339,158.051 78.678,157.201 79.952,156.269L77.59,147.723C77.59,147.723 76.46,144.914 73.595,144.007"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#C66A61"
-        android:fillType="evenOdd"
-        android:pathData="M56.955,148.6C58.372,148.917 60.018,149.083 61.697,149.168C62.486,149.208 63.283,149.231 64.066,149.244C66.473,149.282 68.76,149.225 70.338,149.29L70.103,148.734L67.343,142.228C66.513,142.235 65.265,142.317 63.801,142.422C62.756,143.414 61.297,144.412 59.756,145.192C59.013,145.568 58.252,145.893 57.507,146.142C55.7,146.747 54,146.903 52.925,146.256C53.506,147.446 55.016,148.166 56.955,148.6"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M56.227,119.166C56.388,118.701 56.561,118.203 56.705,117.788C57.282,117.979 57.935,118.191 58.683,118.457C60.748,119.191 63.161,113.561 62.01,110.186C61.84,109.684 61.64,109.229 61.414,108.816C60.927,109.399 60.091,109.718 58.942,109.35C58.708,109.274 58.465,109.407 58.378,109.636C57.9,110.899 56.34,112.078 55.831,112.168C55.132,110.328 53.336,111.061 53.958,112.955C54.173,113.609 55.312,114.561 55.159,115.07C55.157,115.076 55.157,115.084 55.155,115.09C54.987,115.533 54.403,116.149 53.622,116.408C53.615,116.41 53.609,116.411 53.603,116.413C53.207,117.147 52.622,118.233 52.323,118.788C52.718,118.566 53.116,118.445 53.505,118.452C54.494,118.435 55.397,118.689 56.227,119.166"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#663014"
-        android:fillType="evenOdd"
-        android:pathData="M55.155,115.09C55.157,115.083 55.157,115.076 55.159,115.069C55.312,114.56 54.173,113.609 53.958,112.956C53.336,111.061 55.132,110.329 55.831,112.168C56.339,112.079 57.9,110.899 58.378,109.636C58.465,109.406 58.708,109.275 58.942,109.35C60.091,109.719 60.928,109.399 61.413,108.817C62.36,107.682 61.976,105.548 59.97,105.549C59.405,104.871 53.727,101.434 50.239,106.642C49.217,108.17 49.606,111.796 51.018,114.409C51.059,114.486 51.107,114.559 51.16,114.629C51.68,115.326 52.62,116.541 52.964,116.529C53.187,116.521 53.402,116.479 53.603,116.414C53.61,116.412 53.616,116.41 53.622,116.408C54.404,116.149 54.987,115.533 55.155,115.09"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#B1DAEF"
-        android:fillType="evenOdd"
-        android:pathData="M65.068,140.062C64.379,136.908 63.594,133.358 62.588,130.06C63.457,130.352 64.756,130.672 65.87,129.868L75.069,124.775L74.734,123.803L73.743,120.92L73.592,120.483L64.27,125.115L59.439,122.557C58.509,121.052 57.449,119.868 56.227,119.166C55.397,118.69 54.493,118.434 53.505,118.453C53.116,118.445 52.718,118.566 52.323,118.789C50.048,120.071 47.887,124.79 48.331,128.433C48.368,128.749 48.427,129.116 48.498,129.519C49.488,132.438 50.474,136.406 51.318,139.959C54.836,139.4 61.161,139.878 65.068,140.062"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#B1DAEF"
-        android:fillType="evenOdd"
-        android:pathData="M57.507,146.142C58.252,145.893 59.013,145.568 59.755,145.192C61.298,144.412 62.756,143.414 63.802,142.422C60.761,142.639 56.789,142.952 53.689,142.874C53.082,142.859 52.51,142.828 51.983,142.779C52,142.848 52.016,142.917 52.032,142.985C52.197,143.686 52.353,144.346 52.5,144.948C52.557,144.952 52.612,144.959 52.668,144.964C52.649,145.446 52.738,145.875 52.925,146.256C53.999,146.903 55.7,146.747 57.507,146.142"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M49.529,159.19C49.494,161.57 53.222,161.57 53.187,159.19C53.223,156.81 49.494,156.81 49.529,159.19"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M71.859,149.183L69.085,142.644L68.911,142.235C70.133,142.225 71.624,142.411 71.639,141.197C71.439,139.759 69.551,140.214 68.244,140.059C67.775,140.161 66.609,140.134 65.068,140.062C61.16,139.878 54.837,139.399 51.318,139.959C51.552,140.941 51.775,141.891 51.984,142.779C52.51,142.828 53.082,142.859 53.689,142.874C56.789,142.952 60.761,142.639 63.801,142.422C65.266,142.317 66.513,142.235 67.343,142.228L70.103,148.734L70.339,149.29C68.76,149.225 66.473,149.282 64.066,149.244C63.282,149.231 62.486,149.208 61.698,149.168C60.017,149.083 58.373,148.917 56.956,148.6C55.692,148.611 54.512,148.648 53.518,148.727C53.489,148.57 53.457,148.413 53.422,148.252C53.262,147.888 53.043,147.119 52.778,146.077C52.695,145.808 52.579,145.426 52.436,144.945C52.18,144.93 51.921,144.918 51.656,144.913C50.823,144.928 50.028,145 49.271,145.123C49.694,146.809 50.131,148.319 50.572,149.499C51.053,150.783 51.541,151.672 52.023,151.964C52.121,152.004 52.225,152.04 52.34,152.068C52.533,152.116 52.75,152.147 53,152.154L63.797,152.307C65.315,155.47 65.627,159.209 64.728,162.609C65.335,162.513 65.937,162.401 66.532,162.274C67.241,158.979 66.972,155.457 65.725,152.334L70.032,152.395L70.032,161.339C70.64,161.143 71.239,160.931 71.831,160.703L71.831,152.808L74.658,159.469C75.089,159.258 75.516,159.039 75.937,158.811C75.939,158.81 75.941,158.809 75.943,158.808L72.584,150.892L71.859,149.183Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M169.83,117.063C169.83,117.063 167.732,116.989 167.777,112.513C167.822,108.038 166.685,108.509 167.595,106.861C168.504,105.212 169.031,107.243 169.031,107.243L169.83,117.063Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M195.652,107.159C195.652,107.159 198.256,105.723 197.996,108.073C197.735,110.423 197.735,113.817 196.954,114.992C196.173,116.167 194.766,117.12 194.766,117.12L195.652,107.159Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#8D8D99"
-        android:fillType="evenOdd"
-        android:pathData="M157.073,211.921C164.292,212.991 183.877,214.248 199.394,212.358C202.054,212.034 203.746,211.13 203.62,208.445C203.239,200.331 203.951,185.297 204.361,180.636C204.593,177.995 203.002,191.914 203.002,191.914L219.104,190.953C219.104,190.953 217.769,175.273 216.887,165.67C216.698,163.598 216.412,162.593 215.931,159.406C214.979,153.119 209.714,139.394 192.288,139.762C192.288,139.762 182.144,156.323 169.167,139.289C169.167,139.289 156.38,134.454 147.696,156.797L141.432,184.011L156.295,190.872C156.295,190.872 157.068,183.097 156.898,181.639C156.613,179.179 155.889,201.442 154.653,208.56C154.374,210.165 155.466,211.683 157.073,211.921"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M169.167,139.289C169.167,139.289 172.317,148.32 184.767,147.8C193.076,147.454 194.432,139.826 194.432,139.826C194.432,139.826 185.683,139.087 189.826,129.723L173.98,129.448C173.98,129.448 178.25,140.756 169.167,139.289"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#000000"
-        android:fillType="evenOdd"
-        android:pathData="M169.017,107.093L169.002,99.418C168.976,98.785 169.181,98.166 169.579,97.674C170.351,96.719 171.68,95.218 172.53,95.029C172.53,95.029 174.489,90.96 179.035,89.488C179.035,89.488 174.833,85.997 177.308,84.376C177.472,84.27 177.571,84.092 177.603,83.9C177.723,83.185 178.238,81.573 180.428,81.899C180.674,81.936 180.928,81.844 181.085,81.65C181.536,81.088 182.638,80.141 184.212,81.562C184.212,81.562 189.458,79.598 187.779,84.016C187.779,84.016 192.046,86.892 185.261,88.997C185.261,88.997 193.025,91.171 193.165,95.379C193.165,95.379 196.873,96.712 196.523,100.359C196.173,104.007 195.714,113.896 195.714,113.896C195.714,113.896 195.041,125.17 193.387,129.339C193.31,129.536 193.224,129.704 193.104,129.89C192.07,131.498 187.9,139.581 180.645,137.114C172.582,134.372 169.654,126.493 169.922,118.258C169.859,117.46 169.151,108.567 169.017,107.093"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M173.331,120.99C173.331,120.99 168.818,113.263 170.919,105.85C173.02,98.436 173.409,98.201 177.923,97.576C182.437,96.952 191.387,97.733 192.476,99.685C193.566,101.635 194.422,103.743 194.344,106.161C194.268,108.532 195.686,117.193 192.231,121.214C192.09,121.378 191.883,121.465 191.667,121.468C190.988,121.478 189.557,121.357 188.975,120.911C187.172,119.534 185.217,118.42 184.616,118.648C184.15,118.826 182.67,119.741 180.725,118.882C178.779,118.023 175.432,123.096 173.331,120.99"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M175.251,123.982C175.251,123.982 177.33,125.864 180.212,124.789C183.094,123.713 184.702,124.452 184.702,124.452C184.702,124.452 188.656,126.335 189.863,123.78C189.863,123.78 185.239,122.436 184.635,122.234C184.032,122.033 181.217,121.63 179.34,122.503C177.463,123.377 175.921,124.117 175.251,123.982"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M178.196,143.176L187.564,143.176C188.834,143.176 189.863,144.195 189.863,145.451L189.863,171.691C189.863,172.948 188.834,173.966 187.564,173.966L178.196,173.966C176.927,173.966 175.898,172.948 175.898,171.691L175.898,145.451C175.898,144.195 176.927,143.176 178.196,143.176"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M141.806,184.011C141.806,184.011 137.176,205.208 141.647,208.361C145.788,211.282 175.036,175.879 176.692,172.68C176.79,172.49 177.079,172.508 177.29,172.543C178.634,172.769 187.157,173.427 187.265,167.697C187.267,167.58 187.233,167.001 187.22,166.885C187.097,165.783 185.054,159.808 176.335,165.701L152.797,188.291L152.072,189.017"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M219.104,190.953C219.104,190.953 222.334,208.085 217.516,210.674C210.156,214.63 193.641,174.636 190.841,172.68C190.665,172.557 190.454,172.508 190.243,172.543C188.897,172.768 180.376,173.427 180.267,167.697C180.265,167.579 180.298,167.001 180.312,166.884C180.424,165.886 183.269,161.895 190.292,165.541C191.681,166.262 192.911,167.252 193.951,168.422C197.78,172.728 207.704,185.834 210.273,191.412"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
+        android:strokeColor="#00000000"/>
+  </group>
+  <path
+      android:pathData="M109.87,55.389L100.58,45.192C100.58,45.192 98.898,40.287 97.196,42.638C95.495,44.989 99.013,46.722 99.013,46.722L107.428,57.649L109.746,55.477C109.778,55.436 109.822,55.407 109.87,55.389"
+      android:strokeWidth="1"
+      android:fillColor="#F6B893"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M133.938,57.505C134.023,57.612 134.031,57.762 133.957,57.877C133.957,57.877 129.203,63.845 127.376,67.187C127.754,67.232 128.141,67.277 128.54,67.321C138.995,68.464 140.086,65.472 139.706,63.429C139.531,62.484 138.879,61.689 137.997,61.307C137.957,61.29 137.918,61.273 137.879,61.256C136.061,60.448 135.541,58.123 136.814,56.592C137.423,55.86 137.515,55.314 137.499,55.007C137.491,54.842 137.536,54.678 137.512,54.515C137.46,54.163 137.272,53.801 136.994,53.436L133.873,57.444L133.938,57.505Z"
+      android:strokeWidth="1"
+      android:fillColor="#CBAB7D"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M119.012,60.043C119.277,60.38 119.665,60.804 120.123,61.1C119.668,60.782 119.276,60.362 119.012,60.043"
+      android:strokeWidth="1"
+      android:fillColor="#CBAB7D"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M117.337,60.167L118.385,59.621C118.502,59.567 118.635,59.595 118.729,59.679C118.683,59.615 118.657,59.577 118.657,59.577L119.096,56.971C118.937,56.934 118.777,56.901 118.616,56.878C117.76,56.755 115.699,56.124 114.736,52.918C114.736,52.918 113.241,50.736 114.406,48.76C115.57,46.783 119.509,48.16 121.731,43.674C121.731,43.674 124.935,48.839 127.062,48.887C129.191,48.934 126.864,55.919 123.679,56.681C123.679,56.681 123.458,56.764 123.102,56.864L123.328,59.51C123.297,59.597 123.263,59.675 123.231,59.756C123.328,59.674 123.467,59.654 123.585,59.719L124.38,60.118C125.447,60.386 126.724,60.078 127.244,59.535C127.336,59.438 128.48,58.23 129.849,56.652C130.303,56.129 130.605,55.818 131.042,55.313C131.149,55.183 131.363,55.152 131.506,55.235L134.862,51.553C134.084,51.017 133.237,50.519 132.466,50.099C131.422,49.53 130.818,48.392 130.925,47.205C131.611,39.547 125.579,37.231 123.543,36.671C123.227,36.584 122.923,36.458 122.659,36.264C122.128,35.872 120.468,35.414 115.679,38.015C110.591,40.78 111.032,47.185 111.42,49.67C111.509,50.235 111.748,50.767 112.124,51.195C113.006,52.198 114.595,54.598 113.19,57.745C113.081,57.989 112.992,58.216 112.909,58.437C113.572,59.168 114.03,59.652 114.086,59.712C114.671,60.322 116.213,60.636 117.337,60.167"
+      android:strokeWidth="1"
+      android:fillColor="#CBAB7D"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M127.46,75.953C127.397,75.7 127.342,75.301 127.327,75.005C127.324,74.926 127.319,74.846 127.311,74.767L126.763,69.883C126.756,69.783 126.844,69.017 126.97,67.997C127.08,67.751 127.217,67.479 127.377,67.187C129.204,63.845 133.957,57.877 133.957,57.877C134.03,57.762 134.024,57.612 133.939,57.505L133.873,57.444L131.584,55.3C131.562,55.273 131.535,55.252 131.506,55.235C131.364,55.152 131.149,55.183 131.043,55.313C130.605,55.818 130.304,56.129 129.849,56.652C128.479,58.23 127.336,59.439 127.243,59.535C126.725,60.078 125.446,60.386 124.379,60.118L123.586,59.719C123.468,59.654 123.328,59.674 123.23,59.756C122.335,61.979 121.089,61.775 120.124,61.1C119.664,60.804 119.276,60.38 119.011,60.043C118.886,59.891 118.789,59.762 118.728,59.679C118.635,59.595 118.503,59.567 118.384,59.621L117.338,60.167C116.213,60.637 114.67,60.322 114.087,59.712C114.03,59.652 113.572,59.169 112.908,58.437C112.497,57.983 112.006,57.433 111.482,56.829C111.026,56.306 110.726,55.995 110.287,55.49C110.193,55.373 110.009,55.336 109.87,55.389C109.822,55.407 109.779,55.436 109.746,55.476L107.427,57.649L107.392,57.682C107.308,57.789 107.3,57.938 107.374,58.053C107.374,58.053 114.659,67.199 114.659,69.187C114.659,69.263 114.673,69.346 114.696,69.432C114.713,69.574 114.729,69.699 114.742,69.801C114.768,70.013 114.779,70.224 114.772,70.437L114.669,73.846C114.665,73.966 114.657,74.085 114.642,74.204C114.502,75.384 114.271,77.149 114.171,78.074C114.156,78.211 114.134,78.345 114.105,78.48L113.769,80.048C115.992,80.489 118.288,80.722 120.641,80.722C123.231,80.722 125.756,80.439 128.188,79.907L127.46,75.953Z"
+      android:strokeWidth="1"
+      android:fillColor="#C66A61"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M123.102,56.863C123.458,56.764 123.68,56.681 123.68,56.681C126.864,55.918 129.19,48.935 127.063,48.887C124.935,48.839 121.731,43.674 121.731,43.674C119.509,48.16 115.57,46.784 114.405,48.759C113.241,50.736 114.735,52.918 114.735,52.918C115.699,56.124 117.76,56.756 118.616,56.877C118.777,56.902 118.937,56.933 119.095,56.972L118.657,59.577C118.657,59.577 118.682,59.616 118.728,59.679C118.788,59.762 118.886,59.89 119.012,60.042C119.276,60.362 119.668,60.782 120.123,61.099C121.089,61.775 122.334,61.979 123.231,59.756C123.264,59.674 123.297,59.597 123.329,59.509L123.102,56.863Z"
+      android:strokeWidth="1"
+      android:fillColor="#F6B893"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M131.584,55.3L133.873,57.444L136.993,53.436L142.194,46.757C142.194,46.757 145.724,45.049 144.039,42.686C142.354,40.324 140.638,45.217 140.638,45.217L134.862,51.553L131.506,55.236C131.536,55.253 131.563,55.273 131.584,55.3"
+      android:strokeWidth="1"
+      android:fillColor="#F6B893"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M49.271,145.124C49.115,144.505 48.961,143.862 48.811,143.203C41.908,144.324 37.823,149.21 36.553,154.788C37.119,155.265 37.701,155.724 38.297,156.164C39.187,150.909 42.844,146.166 49.271,145.124"
+      android:strokeWidth="1"
+      android:fillColor="#6A7F90"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M50.572,149.499C50.535,149.571 50.524,149.648 50.547,149.731C50.877,150.604 51.064,151.564 52.024,151.964C51.541,151.672 51.053,150.783 50.572,149.499"
+      android:strokeWidth="1"
+      android:fillColor="#6A7F90"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M52.925,146.256C52.738,145.875 52.648,145.447 52.668,144.964C52.611,144.96 52.557,144.953 52.5,144.949C52.597,145.353 52.69,145.729 52.779,146.077C52.791,146.116 52.804,146.158 52.815,146.192C52.85,146.216 52.889,146.234 52.925,146.256"
+      android:strokeWidth="1"
+      android:fillColor="#B1DAEF"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M51.867,142.978C51.847,142.907 51.827,142.835 51.806,142.762C50.002,142.577 48.79,142.159 48.754,141.352C48.817,140.674 49.69,140.254 51.039,140.007C50.052,136.402 48.96,132.136 48.498,129.519C47.708,127.189 46.915,125.527 46.189,125.28C46.073,125.202 44.824,124.29 45.269,126.288C45.845,127.361 47.198,136.174 48.811,143.202C49.671,143.063 50.573,142.98 51.519,142.964C51.638,142.966 51.751,142.974 51.867,142.978"
+      android:strokeWidth="1"
+      android:fillColor="#6A7F90"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M52.339,152.069C52.225,152.041 52.121,152.005 52.024,151.964C52.129,152.028 52.235,152.065 52.339,152.069"
+      android:strokeWidth="1"
+      android:fillColor="#6A7F90"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M51.656,144.914C51.92,144.919 52.18,144.93 52.437,144.946C52.275,144.4 52.082,143.732 51.868,142.979C51.751,142.975 51.637,142.966 51.519,142.964C50.573,142.981 49.671,143.063 48.811,143.203C48.962,143.862 49.115,144.505 49.271,145.124C50.028,145.001 50.822,144.929 51.656,144.914"
+      android:strokeWidth="1"
+      android:fillColor="#6A7F90"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M52.499,144.949C52.479,144.948 52.458,144.947 52.437,144.946C52.579,145.427 52.694,145.809 52.779,146.077C52.69,145.73 52.597,145.353 52.499,144.949"
+      android:strokeWidth="1"
+      android:fillColor="#6A7F90"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M51.984,142.78C51.924,142.775 51.864,142.769 51.806,142.763C51.826,142.835 51.847,142.908 51.867,142.978C51.922,142.98 51.977,142.983 52.032,142.985C52.016,142.917 52,142.849 51.984,142.78"
+      android:strokeWidth="1"
+      android:fillColor="#6A7F90"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M51.319,139.959C50.474,136.406 49.489,132.438 48.497,129.519C48.96,132.136 50.052,136.402 51.038,140.007C51.13,139.99 51.223,139.974 51.319,139.959"
+      android:strokeWidth="1"
+      android:fillColor="#6A7F90"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M52.032,142.985C51.977,142.983 51.922,142.98 51.867,142.978C52.082,143.731 52.275,144.399 52.437,144.946C52.458,144.947 52.479,144.947 52.5,144.949C52.353,144.346 52.198,143.686 52.032,142.985"
+      android:strokeWidth="1"
+      android:fillColor="#6A7F90"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M48.754,141.352C48.79,142.159 50.002,142.577 51.806,142.762C51.568,141.924 51.308,140.992 51.039,140.007C49.69,140.254 48.817,140.674 48.754,141.352"
+      android:strokeWidth="1"
+      android:fillColor="#6A7F90"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M51.319,139.959C51.223,139.974 51.13,139.99 51.038,140.007C51.308,140.992 51.568,141.924 51.806,142.763C51.864,142.769 51.924,142.774 51.984,142.78C51.775,141.892 51.552,140.942 51.319,139.959"
+      android:strokeWidth="1"
+      android:fillColor="#6A7F90"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M71.831,160.703C72.794,160.332 73.738,159.921 74.657,159.47L71.831,152.808L71.831,160.703Z"
+      android:strokeWidth="1"
+      android:fillColor="#E1EEFF"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M59.197,92.321C39.722,92.321 23.934,108.153 23.934,127.682C23.934,138.567 28.839,148.301 36.553,154.788C37.823,149.209 41.908,144.323 48.811,143.202C47.198,136.174 45.846,127.361 45.269,126.288C44.824,124.29 46.072,125.202 46.189,125.28C46.915,125.527 47.708,127.189 48.497,129.519C48.427,129.116 48.369,128.748 48.331,128.432C47.887,124.79 50.048,120.071 52.323,118.788C52.622,118.233 53.207,117.148 53.603,116.414C53.402,116.478 53.187,116.52 52.964,116.528C52.619,116.54 51.681,115.326 51.159,114.629C51.107,114.559 51.059,114.486 51.017,114.408C49.605,111.795 49.217,108.17 50.24,106.642C53.727,101.434 59.405,104.87 59.97,105.549C61.976,105.548 62.36,107.682 61.414,108.816C61.64,109.228 61.84,109.683 62.01,110.185C63.161,113.56 60.748,119.191 58.683,118.457C57.935,118.191 57.282,117.978 56.705,117.788C56.561,118.204 56.388,118.701 56.227,119.166C57.45,119.868 58.51,121.052 59.439,122.556L64.27,125.115L73.593,120.483L73.742,120.92C74.676,120.377 75.605,119.77 75.71,119.702C75.717,119.697 75.722,119.693 75.728,119.686C75.844,119.553 77.235,117.952 77.458,117.056C77.585,116.548 77.757,116.237 77.889,116.059C78.016,115.885 78.277,115.866 78.414,116.032C78.814,116.517 78.624,117.821 78.558,118.2C78.548,118.255 78.588,118.305 78.643,118.309C79.087,118.339 80.772,118.603 80.348,120.899C79.892,123.371 76.523,122.763 76.102,122.678C76.074,122.672 76.046,122.68 76.024,122.699L74.735,123.803L75.07,124.775L65.869,129.868C64.755,130.672 63.457,130.352 62.588,130.06C63.594,133.358 64.379,136.908 65.068,140.062C66.609,140.134 67.775,140.161 68.244,140.06C69.551,140.214 71.439,139.759 71.639,141.197C71.623,142.411 70.132,142.225 68.912,142.236L69.085,142.644C70.96,143.251 72.562,143.809 73.595,144.007C76.46,144.914 77.59,147.723 77.59,147.723L79.952,156.269C88.745,149.838 94.46,139.43 94.46,127.682C94.46,108.153 78.672,92.321 59.197,92.321"
+      android:strokeWidth="1"
+      android:fillColor="#E8F5FF"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M49.529,159.19C49.494,156.81 53.223,156.81 53.187,159.19C53.222,161.57 49.494,161.57 49.529,159.19M63.797,152.307L53,152.155C52.75,152.148 52.533,152.117 52.339,152.069C52.235,152.065 52.129,152.028 52.023,151.964C51.064,151.565 50.877,150.605 50.547,149.731C50.524,149.648 50.535,149.571 50.572,149.499C50.131,148.32 49.694,146.81 49.271,145.124C42.845,146.166 39.187,150.909 38.297,156.164C44.146,160.487 51.373,163.044 59.196,163.044C61.079,163.044 62.926,162.894 64.728,162.609C65.627,159.21 65.315,155.471 63.797,152.307"
+      android:strokeWidth="1"
+      android:fillColor="#E1EEFF"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M65.725,152.334C66.972,155.457 67.241,158.979 66.532,162.274C67.722,162.022 68.89,161.709 70.032,161.339L70.032,152.395L65.725,152.334Z"
+      android:strokeWidth="1"
+      android:fillColor="#E1EEFF"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M53.519,148.727C54.513,148.649 55.692,148.611 56.955,148.6C55.015,148.166 53.506,147.446 52.924,146.256C52.888,146.234 52.849,146.216 52.815,146.192C52.804,146.158 52.791,146.115 52.779,146.077C53.043,147.12 53.261,147.889 53.422,148.252C53.457,148.413 53.49,148.571 53.519,148.727"
+      android:strokeWidth="1"
+      android:fillColor="#E1EEFF"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M76.024,122.699C76.046,122.68 76.074,122.672 76.102,122.678C76.523,122.764 79.892,123.371 80.348,120.899C80.772,118.603 79.087,118.339 78.643,118.309C78.588,118.305 78.548,118.256 78.558,118.2C78.624,117.821 78.814,116.517 78.414,116.032C78.277,115.866 78.016,115.885 77.889,116.059C77.757,116.238 77.585,116.549 77.458,117.056C77.235,117.952 75.844,119.553 75.728,119.687C75.722,119.693 75.717,119.697 75.71,119.702C75.605,119.771 74.676,120.377 73.742,120.92L74.735,123.803L76.024,122.699Z"
+      android:strokeWidth="1"
+      android:fillColor="#EFB18C"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M73.595,144.007C72.562,143.809 70.96,143.251 69.085,142.645L71.859,149.183L72.584,150.892L75.942,158.808C77.339,158.051 78.678,157.201 79.952,156.269L77.59,147.723C77.59,147.723 76.46,144.914 73.595,144.007"
+      android:strokeWidth="1"
+      android:fillColor="#C66A61"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M56.955,148.6C58.372,148.917 60.018,149.083 61.697,149.168C62.486,149.208 63.283,149.231 64.066,149.244C66.473,149.282 68.76,149.225 70.338,149.29L70.103,148.734L67.343,142.228C66.513,142.235 65.265,142.317 63.801,142.422C62.756,143.414 61.297,144.412 59.756,145.192C59.013,145.568 58.252,145.893 57.507,146.142C55.7,146.747 54,146.903 52.925,146.256C53.506,147.446 55.016,148.166 56.955,148.6"
+      android:strokeWidth="1"
+      android:fillColor="#C66A61"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M56.227,119.166C56.388,118.701 56.561,118.203 56.705,117.788C57.282,117.979 57.935,118.191 58.683,118.457C60.748,119.191 63.161,113.561 62.01,110.186C61.84,109.684 61.64,109.229 61.414,108.816C60.927,109.399 60.091,109.718 58.942,109.35C58.708,109.274 58.465,109.407 58.378,109.636C57.9,110.899 56.34,112.078 55.831,112.168C55.132,110.328 53.336,111.061 53.958,112.955C54.173,113.609 55.312,114.561 55.159,115.07C55.157,115.076 55.157,115.084 55.155,115.09C54.987,115.533 54.403,116.149 53.622,116.408C53.615,116.41 53.609,116.411 53.603,116.413C53.207,117.147 52.622,118.233 52.323,118.788C52.718,118.566 53.116,118.445 53.505,118.452C54.494,118.435 55.397,118.689 56.227,119.166"
+      android:strokeWidth="1"
+      android:fillColor="#F6B893"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M55.155,115.09C55.157,115.083 55.157,115.076 55.159,115.069C55.312,114.56 54.173,113.609 53.958,112.956C53.336,111.061 55.132,110.329 55.831,112.168C56.339,112.079 57.9,110.899 58.378,109.636C58.465,109.406 58.708,109.275 58.942,109.35C60.091,109.719 60.928,109.399 61.413,108.817C62.36,107.682 61.976,105.548 59.97,105.549C59.405,104.871 53.727,101.434 50.239,106.642C49.217,108.17 49.606,111.796 51.018,114.409C51.059,114.486 51.107,114.559 51.16,114.629C51.68,115.326 52.62,116.541 52.964,116.529C53.187,116.521 53.402,116.479 53.603,116.414C53.61,116.412 53.616,116.41 53.622,116.408C54.404,116.149 54.987,115.533 55.155,115.09"
+      android:strokeWidth="1"
+      android:fillColor="#663014"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M65.068,140.062C64.379,136.908 63.594,133.358 62.588,130.06C63.457,130.352 64.756,130.672 65.87,129.868L75.069,124.775L74.734,123.803L73.743,120.92L73.592,120.483L64.27,125.115L59.439,122.557C58.509,121.052 57.449,119.868 56.227,119.166C55.397,118.69 54.493,118.434 53.505,118.453C53.116,118.445 52.718,118.566 52.323,118.789C50.048,120.071 47.887,124.79 48.331,128.433C48.368,128.749 48.427,129.116 48.498,129.519C49.488,132.438 50.474,136.406 51.318,139.959C54.836,139.4 61.161,139.878 65.068,140.062"
+      android:strokeWidth="1"
+      android:fillColor="#B1DAEF"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M57.507,146.142C58.252,145.893 59.013,145.568 59.755,145.192C61.298,144.412 62.756,143.414 63.802,142.422C60.761,142.639 56.789,142.952 53.689,142.874C53.082,142.859 52.51,142.828 51.983,142.779C52,142.848 52.016,142.917 52.032,142.985C52.197,143.686 52.353,144.346 52.5,144.948C52.557,144.952 52.612,144.959 52.668,144.964C52.649,145.446 52.738,145.875 52.925,146.256C53.999,146.903 55.7,146.747 57.507,146.142"
+      android:strokeWidth="1"
+      android:fillColor="#B1DAEF"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M49.529,159.19C49.494,161.57 53.222,161.57 53.187,159.19C53.223,156.81 49.494,156.81 49.529,159.19"
+      android:strokeWidth="1"
+      android:fillColor="#6A7F90"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M71.859,149.183L69.085,142.644L68.911,142.235C70.133,142.225 71.624,142.411 71.639,141.197C71.439,139.759 69.551,140.214 68.244,140.059C67.775,140.161 66.609,140.134 65.068,140.062C61.16,139.878 54.837,139.399 51.318,139.959C51.552,140.941 51.775,141.891 51.984,142.779C52.51,142.828 53.082,142.859 53.689,142.874C56.789,142.952 60.761,142.639 63.801,142.422C65.266,142.317 66.513,142.235 67.343,142.228L70.103,148.734L70.339,149.29C68.76,149.225 66.473,149.282 64.066,149.244C63.282,149.231 62.486,149.208 61.698,149.168C60.017,149.083 58.373,148.917 56.956,148.6C55.692,148.611 54.512,148.648 53.518,148.727C53.489,148.57 53.457,148.413 53.422,148.252C53.262,147.888 53.043,147.119 52.778,146.077C52.695,145.808 52.579,145.426 52.436,144.945C52.18,144.93 51.921,144.918 51.656,144.913C50.823,144.928 50.028,145 49.271,145.123C49.694,146.809 50.131,148.319 50.572,149.499C51.053,150.783 51.541,151.672 52.023,151.964C52.121,152.004 52.225,152.04 52.34,152.068C52.533,152.116 52.75,152.147 53,152.154L63.797,152.307C65.315,155.47 65.627,159.209 64.728,162.609C65.335,162.513 65.937,162.401 66.532,162.274C67.241,158.979 66.972,155.457 65.725,152.334L70.032,152.395L70.032,161.339C70.64,161.143 71.239,160.931 71.831,160.703L71.831,152.808L74.658,159.469C75.089,159.258 75.516,159.039 75.937,158.811C75.939,158.81 75.941,158.809 75.943,158.808L72.584,150.892L71.859,149.183Z"
+      android:strokeWidth="1"
+      android:fillColor="#6A7F90"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M169.83,117.063C169.83,117.063 167.732,116.989 167.777,112.513C167.822,108.038 166.685,108.509 167.595,106.861C168.504,105.212 169.031,107.243 169.031,107.243L169.83,117.063Z"
+      android:strokeWidth="1"
+      android:fillColor="#F7B994"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M195.652,107.159C195.652,107.159 198.256,105.723 197.996,108.073C197.735,110.423 197.735,113.817 196.954,114.992C196.173,116.167 194.766,117.12 194.766,117.12L195.652,107.159Z"
+      android:strokeWidth="1"
+      android:fillColor="#F7B994"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M157.073,211.921C164.292,212.991 183.877,214.248 199.394,212.358C202.054,212.034 203.746,211.13 203.62,208.445C203.239,200.331 203.951,185.297 204.361,180.636C204.593,177.995 203.002,191.914 203.002,191.914L219.104,190.953C219.104,190.953 217.769,175.273 216.887,165.67C216.698,163.598 216.412,162.593 215.931,159.406C214.979,153.119 209.714,139.394 192.288,139.762C192.288,139.762 182.144,156.323 169.167,139.289C169.167,139.289 156.38,134.454 147.696,156.797L141.432,184.011L156.295,190.872C156.295,190.872 157.068,183.097 156.898,181.639C156.613,179.179 155.889,201.442 154.653,208.56C154.374,210.165 155.466,211.683 157.073,211.921"
+      android:strokeWidth="1"
+      android:fillColor="#8D8D99"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M169.167,139.289C169.167,139.289 172.317,148.32 184.767,147.8C193.076,147.454 194.432,139.826 194.432,139.826C194.432,139.826 185.683,139.087 189.826,129.723L173.98,129.448C173.98,129.448 178.25,140.756 169.167,139.289"
+      android:strokeWidth="1"
+      android:fillColor="#F7B994"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M169.017,107.093L169.002,99.418C168.976,98.785 169.181,98.166 169.579,97.674C170.351,96.719 171.68,95.218 172.53,95.029C172.53,95.029 174.489,90.96 179.035,89.488C179.035,89.488 174.833,85.997 177.308,84.376C177.472,84.27 177.571,84.092 177.603,83.9C177.723,83.185 178.238,81.573 180.428,81.899C180.674,81.936 180.928,81.844 181.085,81.65C181.536,81.088 182.638,80.141 184.212,81.562C184.212,81.562 189.458,79.598 187.779,84.016C187.779,84.016 192.046,86.892 185.261,88.997C185.261,88.997 193.025,91.171 193.165,95.379C193.165,95.379 196.873,96.712 196.523,100.359C196.173,104.007 195.714,113.896 195.714,113.896C195.714,113.896 195.041,125.17 193.387,129.339C193.31,129.536 193.224,129.704 193.104,129.89C192.07,131.498 187.9,139.581 180.645,137.114C172.582,134.372 169.654,126.493 169.922,118.258C169.859,117.46 169.151,108.567 169.017,107.093"
+      android:strokeWidth="1"
+      android:fillColor="#000000"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M173.331,120.99C173.331,120.99 168.818,113.263 170.919,105.85C173.02,98.436 173.409,98.201 177.923,97.576C182.437,96.952 191.387,97.733 192.476,99.685C193.566,101.635 194.422,103.743 194.344,106.161C194.268,108.532 195.686,117.193 192.231,121.214C192.09,121.378 191.883,121.465 191.667,121.468C190.988,121.478 189.557,121.357 188.975,120.911C187.172,119.534 185.217,118.42 184.616,118.648C184.15,118.826 182.67,119.741 180.725,118.882C178.779,118.023 175.432,123.096 173.331,120.99"
+      android:strokeWidth="1"
+      android:fillColor="#F7B994"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M175.251,123.982C175.251,123.982 177.33,125.864 180.212,124.789C183.094,123.713 184.702,124.452 184.702,124.452C184.702,124.452 188.656,126.335 189.863,123.78C189.863,123.78 185.239,122.436 184.635,122.234C184.032,122.033 181.217,121.63 179.34,122.503C177.463,123.377 175.921,124.117 175.251,123.982"
+      android:strokeWidth="1"
+      android:fillColor="#F7B994"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M178.196,143.176L187.564,143.176C188.834,143.176 189.863,144.195 189.863,145.451L189.863,171.691C189.863,172.948 188.834,173.966 187.564,173.966L178.196,173.966C176.927,173.966 175.898,172.948 175.898,171.691L175.898,145.451C175.898,144.195 176.927,143.176 178.196,143.176"
+      android:strokeWidth="1"
+      android:fillColor="#4A4A4A"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M141.806,184.011C141.806,184.011 137.176,205.208 141.647,208.361C145.788,211.282 175.036,175.879 176.692,172.68C176.79,172.49 177.079,172.508 177.29,172.543C178.634,172.769 187.157,173.427 187.265,167.697C187.267,167.58 187.233,167.001 187.22,166.885C187.097,165.783 185.054,159.808 176.335,165.701L152.797,188.291L152.072,189.017"
+      android:strokeWidth="1"
+      android:fillColor="#F7B994"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M219.104,190.953C219.104,190.953 222.334,208.085 217.516,210.674C210.156,214.63 193.641,174.636 190.841,172.68C190.665,172.557 190.454,172.508 190.243,172.543C188.897,172.768 180.376,173.427 180.267,167.697C180.265,167.579 180.298,167.001 180.312,166.884C180.424,165.886 183.269,161.895 190.292,165.541C191.681,166.262 192.911,167.252 193.951,168.422C197.78,172.728 207.704,185.834 210.273,191.412"
+      android:strokeWidth="1"
+      android:fillColor="#F7B994"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_onboarding_illustration_notification.xml b/Corona-Warn-App/src/main/res/drawable/ic_onboarding_illustration_notification.xml
deleted file mode 100644
index 377661a34461fc6967bd8bf1e485aaf6d2aeed1a..0000000000000000000000000000000000000000
--- a/Corona-Warn-App/src/main/res/drawable/ic_onboarding_illustration_notification.xml
+++ /dev/null
@@ -1,273 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="360dp"
-    android:height="220dp"
-    android:viewportWidth="360"
-    android:viewportHeight="220">
-    <group>
-        <clip-path android:pathData="M0,0h360v220h-360z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M216.595,153.16C216.586,153.108 215.692,147.796 215.152,142.02C214.426,134.247 214.454,129.264 215.494,126.927L215.923,127.07C213.488,132.546 217.255,152.926 217.289,153.132L216.595,153.16Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M215.603,147.717C214.136,147.717 212.166,146.594 209.813,144.624C207.978,143.087 206.554,141.496 206.54,141.48L206.766,141.28C206.823,141.342 212.355,147.405 215.737,147.137L215.844,147.707C215.765,147.714 215.685,147.717 215.603,147.717"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M217.921,150.733C216.894,150.733 216.236,150.681 216.224,150.68L216.307,150.118C216.415,150.127 227.127,151.21 230.099,145.789L230.364,145.933C229.092,148.254 226.238,149.81 222.111,150.433C220.517,150.674 219.011,150.733 217.921,150.733"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#E9F6FF"
-            android:fillType="evenOdd"
-            android:pathData="M231.894,153.678C274.558,153.678 293.145,126.769 332.979,131.864C342.448,133.074 354.471,136.858 367.975,147.468L367.975,177.24L-7.025,179.321L-7.025,145.321C4.975,140.321 8.975,142.321 21.975,145.321C65.473,155.359 115.978,129.356 139.479,128.447C141.673,128.362 143.791,128.322 145.826,128.322C196.599,128.318 199.027,153.678 231.894,153.678"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <group>
-            <clip-path android:pathData="M145.826,128.322C143.791,128.322 141.673,128.362 139.479,128.447L139.479,128.447C115.978,129.356 65.473,155.359 21.975,145.32L21.975,145.32C8.974,142.321 4.975,140.321 -7.025,145.32L-7.025,145.32L-7.025,179.32L367.974,177.24L367.974,147.469C354.471,136.858 342.448,133.075 332.979,131.863L332.979,131.863C293.145,126.769 274.558,153.679 231.894,153.679L231.894,153.679C199.029,153.679 196.604,128.321 145.839,128.322L145.839,128.322C145.836,128.322 145.829,128.322 145.826,128.322L145.826,128.322Z" />
-            <path
-                android:fillColor="#E9F6FF"
-                android:fillType="evenOdd"
-                android:pathData="M-106.558,185.459l508.41,0l0,-63.805l-508.41,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M145.839,128.322C145.836,128.322 145.828,128.322 145.826,128.322L145.826,128.322C143.791,128.322 141.673,128.362 139.479,128.447L139.479,128.447C115.978,129.356 65.473,155.359 21.975,145.32L21.975,145.32C8.974,142.321 4.975,140.321 -7.025,145.32L-7.025,145.32L-7.025,179.32L367.974,177.24L367.974,147.469C354.471,136.858 342.448,133.075 332.979,131.863L332.979,131.863C293.145,126.769 274.558,153.679 231.894,153.679L231.894,153.679C199.03,153.679 196.6,128.323 145.845,128.322L145.845,128.322C145.841,128.322 145.842,128.322 145.839,128.322L145.839,128.322Z" />
-            <path
-                android:fillColor="#E9F6FF"
-                android:fillType="evenOdd"
-                android:pathData="M-76.861,179.203l445.452,0l0,-52.545l-445.452,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M145.839,128.322C145.836,128.322 145.828,128.322 145.826,128.322L145.826,128.322C143.791,128.322 141.673,128.362 139.479,128.447L139.479,128.447C115.978,129.356 65.473,155.359 21.975,145.32L21.975,145.32C8.974,142.321 4.975,140.321 -7.025,145.32L-7.025,145.32L-7.025,179.203L14.061,179.203L367.974,177.24L367.974,147.469C354.471,136.858 342.448,133.075 332.979,131.863L332.979,131.863C293.145,126.769 274.558,153.679 231.894,153.679L231.894,153.679C199.03,153.679 196.6,128.323 145.845,128.322L145.845,128.322C145.842,128.322 145.842,128.322 145.839,128.322L145.839,128.322Z" />
-            <path
-                android:fillColor="#E9F6FF"
-                android:fillType="evenOdd"
-                android:pathData="M-112,191.509l519.179,0l0,-75.7l-519.179,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M107.572,169.86C71.657,169.86 56.009,152.308 22.476,155.631L22.476,155.631C14.504,156.421 4.382,158.889 -6.985,165.81L-6.985,165.81L-6.985,185.23L367.496,186.319L367.496,171.991C365.607,171.134 363.733,170.4 361.949,169.848L361.949,169.848C361.949,169.848 324.155,157.936 282.3,168.129L282.3,168.129C246.451,176.868 205.155,153.995 185.372,153.403L185.372,153.403C183.525,153.347 181.741,153.32 180.028,153.32L180.028,153.32C137.286,153.318 135.242,169.86 107.572,169.86L107.572,169.86Z" />
-            <path
-                android:fillColor="#D9EDFA"
-                android:fillType="evenOdd"
-                android:pathData="M-39.99,194.538l437.066,0l0,-49.378l-437.066,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M159.279,66.618C159.279,66.618 167.286,74.108 170.314,76.132C172.827,77.809 181.105,81.56 181.105,81.56L177.546,85.264C177.546,85.264 170.27,83.644 168.031,82.601C165.734,81.532 159.66,76.893 159.66,76.893L159.279,66.618Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M121.247,191.632L118.355,197.122C117.957,197.878 118.223,198.814 118.961,199.244C122.454,201.28 132.005,206.486 136.128,205.084C136.706,204.887 136.849,204.131 136.399,203.718C133.768,201.297 125.59,193.573 126.224,191.676L121.247,191.632Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#BA6161"
-            android:fillType="evenOdd"
-            android:pathData="M120.981,192.144L126.571,192.888L154.217,129.053L139.82,100.135L139.652,139.716C139.652,139.716 126.812,165.241 124.762,175.254C122.739,185.14 120.981,192.144 120.981,192.144"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#C76A61"
-            android:fillType="evenOdd"
-            android:pathData="M138.915,90.902L160.609,91.191C160.609,91.191 179.412,185.491 186.933,191.855L182.883,194.748C182.883,194.748 159.742,163.217 161.767,142.969C161.767,142.969 133.13,96.976 138.915,90.902"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M154.225,54.623L152.832,44.767C152.832,44.767 158.892,45.036 158.752,36.58C158.726,35.014 158.617,32.332 157.17,30.299L152.832,29.017L148.118,39.73L145.829,53.348L150.689,57.088L154.76,56.98L154.225,54.623Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M182.883,194.747L183.776,200.888C183.899,201.732 184.663,202.333 185.514,202.247C189.536,201.839 200.322,200.429 202.831,196.868C203.183,196.369 202.853,195.674 202.246,195.604C198.696,195.194 187.537,193.761 186.933,191.854L182.883,194.747Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M134.197,103.94L135.706,85.489L143.507,87.716L138.031,106.694C138.031,106.694 136.654,117.708 132.034,114.462C126.297,110.434 134.001,106.202 134.197,103.94"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B2DBF0"
-            android:fillType="evenOdd"
-            android:pathData="M135.67,85.757C135.67,85.757 135.683,85.664 135.706,85.488C136.116,82.464 139.97,54.87 144.29,53.759C148.861,52.584 151.186,56.93 153.275,54.578C155.364,52.228 167.657,71.68 160.609,91.191L142.546,91.208L148.6,64.076L143.506,87.716C143.506,87.716 136.977,89.413 135.67,85.757"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#663014"
-            android:fillType="evenOdd"
-            android:pathData="M158.617,36.623C158.617,36.623 163.117,33.838 160.224,26.338C160.224,26.338 159.581,23.124 155.082,23.23C155.082,23.23 147.903,16.802 141.153,22.267C134.403,27.73 139.01,33.195 139.01,33.195C139.01,33.195 130.011,41.338 133.117,52.373C133.117,52.373 136.438,59.552 140.296,57.088C144.153,54.623 143.938,59.98 145.974,52.802C148.01,45.623 151.546,46.695 150.153,34.588C150.153,34.588 154.974,34.909 156.046,29.98C156.046,29.98 159.153,31.052 158.617,36.623"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M174.465,88.015C174.225,88.446 180.069,89.345 180.209,89.452C181.008,90.203 188.119,78.833 188.657,78.49C188.921,78.426 188.759,77.326 188.238,77.062L183.193,76.017C182.092,74.733 175.058,86.594 174.435,86.895C174.078,87.306 174.269,87.64 174.465,88.015"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M185.353,82.517C186.606,82.055 185.193,84.61 184.449,85.657C183.768,86.615 183.507,87.232 183.044,87.007C182.582,86.784 182.871,85.734 183.447,84.546C184.022,83.359 184.454,82.849 185.353,82.517"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B9E1FB"
-            android:fillType="evenOdd"
-            android:pathData="M289.647,146.193C289.647,146.193 275.844,126.938 285.557,124.552C295.27,122.167 294.588,134.095 301.064,129.665C307.539,125.234 296.137,104.587 311.549,102.542C330.6,100.014 316.155,119.923 314.811,124.816C314.526,125.856 314.83,126.987 315.644,127.694C317.304,129.138 322.675,129.507 330.713,124.552C343.153,116.884 334.292,152.498 310.947,153.52C310.947,153.52 296.293,153.861 289.647,146.193"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M308.297,153.625C308.286,153.539 307.976,144.876 307.692,135.287C307.309,122.382 309.324,111.937 311.874,108.281L312.383,108.799C306.406,117.369 309.579,153.215 309.621,153.558L308.297,153.625Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M308.527,147.519C308.483,147.505 304.034,146.114 299.378,143.488C295.061,141.054 289.676,137.031 288.533,131.683L288.835,131.393C290.967,141.374 308.346,146.275 308.522,146.33L308.527,147.519Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M308.463,144.134L308.351,142.968C308.521,142.914 325.376,138.176 328.18,130.816L328.549,131.127C327.34,134.301 323.587,137.455 317.395,140.504C312.803,142.765 308.506,144.12 308.463,144.134"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B9E1FB"
-            android:fillType="evenOdd"
-            android:pathData="M39.967,63.324C34.448,63.474 31.29,71.901 31.027,75.903C29.901,93.033 20.129,105.25 21.034,131.933C21.627,149.417 27.345,167.381 33.394,170.524C45.038,176.58 52.852,163.093 54.166,150.514C55.481,137.936 56.27,119.64 47.593,96.771C42.775,84.072 51.019,63.022 39.967,63.324"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M39.532,172.676C38.503,167.926 36.194,144.12 36.134,118.351C36.097,102.704 36.887,86.326 39.295,73.033L39.942,73.159C37.543,86.408 36.756,102.743 36.793,118.351C36.853,144.068 39.151,167.797 40.175,172.526L39.532,172.676Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M36.82,142.765C36.844,142.723 44.425,129.334 45.595,123.938L46.238,124.089C45.048,129.59 37.413,143.073 37.389,143.116L36.82,142.765Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M36.202,112.494C36.185,112.472 29.654,104.15 30.093,97.943L30.69,97.996C30.272,103.923 36.641,112.03 36.658,112.052L36.202,112.494Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B9E1FB"
-            android:fillType="evenOdd"
-            android:pathData="M64.086,173.606C69.327,169.7 73.886,162.853 74.565,146.816C75.243,130.779 73.912,126.846 70.163,125.445C66.414,124.044 63.466,126.04 61.363,131.223C59.26,136.408 58.38,141.837 56.332,143.582C54.284,145.326 42.57,155.046 45.871,166.061C49.173,177.077 58.688,176.186 64.086,173.606"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M52.684,174.636C54.725,171.818 59.139,163.881 62.747,154.791C65.166,148.695 67.226,142.075 67.968,136.125L67.458,136.059C66.72,141.967 64.673,148.543 62.269,154.604C58.678,163.651 54.293,171.538 52.268,174.335L52.684,174.636Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M59.734,161.59C59.342,161.886 67.845,158.446 70.249,153.852L69.808,153.618C67.496,158.04 59.872,160.952 59.849,160.961L59.734,161.59Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M55.586,169.996C55.577,169.975 52.441,162.996 52.7,158.332L52.227,158.32C51.96,163.126 55.149,170.221 55.157,170.241L55.586,169.996Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#D9EDFA"
-            android:fillType="evenOdd"
-            android:pathData="M268.96,27.18C266.689,27.64 263.882,29.713 263.977,30.321C264.01,30.533 271.094,30.332 278.372,30.321C289.35,30.303 294.838,30.321 295.536,30.321L309.379,30.321C310.458,30.321 308.477,26.758 307.718,26.132C306.404,25.05 304.412,24.576 302.734,25.085C300.436,25.784 300.48,27.797 298.305,28.227C296.887,28.506 295.362,27.947 294.429,27.18C293.007,26.011 293.598,24.888 292.215,23.515C291.245,22.553 289.981,22.112 288.339,22.468C286.422,22.884 286.678,22.992 283.909,25.085C282.938,25.821 281.887,27.934 280.033,28.227C275.005,29.02 272.907,26.38 268.96,27.18"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#D9EDFA"
-            android:fillType="evenOdd"
-            android:pathData="M8.726,41.321L38.177,41.321C37.044,39.768 35.923,39.278 35.109,39.118C33.106,38.723 32.261,40.187 28.973,40.219C28.389,40.225 26.946,40.227 25.292,39.669C24.311,39.337 24.283,39.155 22.837,38.567C21.643,38.081 20.594,37.654 19.157,37.466C18.058,37.321 17.235,37.382 16.088,37.466C14.788,37.56 13.985,37.626 13.021,38.016C12.305,38.305 11.854,38.632 11.18,39.118C10.53,39.587 9.645,40.302 8.726,41.321"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#D9EDFA"
-            android:fillType="evenOdd"
-            android:pathData="M96.763,31.321L59.829,31.321C61.249,29.033 62.655,28.31 63.676,28.074C66.188,27.493 67.248,29.65 71.37,29.697C72.104,29.706 73.913,29.71 75.988,28.885C77.218,28.396 77.253,28.129 79.066,27.262C80.564,26.546 81.878,25.917 83.682,25.638C85.059,25.425 86.092,25.514 87.53,25.638C89.16,25.779 90.167,25.875 91.376,26.45C92.275,26.877 92.84,27.357 93.685,28.074C94.5,28.765 95.611,29.819 96.763,31.321"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M238.975,57.321L196.975,57.321C196.423,57.321 195.975,56.873 195.975,56.321C195.975,55.768 196.423,55.321 196.975,55.321L238.975,55.321C239.528,55.321 239.975,55.768 239.975,56.321C239.975,56.873 239.528,57.321 238.975,57.321"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M230.975,64.321L196.975,64.321C196.423,64.321 195.975,63.873 195.975,63.321C195.975,62.768 196.423,62.321 196.975,62.321L230.975,62.321C231.528,62.321 231.975,62.768 231.975,63.321C231.975,63.873 231.528,64.321 230.975,64.321"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M224.975,50.321L196.975,50.321C196.423,50.321 195.975,49.873 195.975,49.321C195.975,48.768 196.423,48.321 196.975,48.321L224.975,48.321C225.528,48.321 225.975,48.768 225.975,49.321C225.975,49.873 225.528,50.321 224.975,50.321"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#657888"
-            android:fillType="evenOdd"
-            android:pathData="M248.613,68.207L191.997,68.207C189.617,68.207 187.686,66.277 187.686,63.897L187.686,42.517C187.686,40.136 189.617,38.207 191.997,38.207L248.613,38.207C250.992,38.207 252.923,40.136 252.923,42.517L252.923,63.897C252.923,66.277 250.992,68.207 248.613,68.207"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M237.687,54.091L195.687,54.091C195.134,54.091 194.687,53.644 194.687,53.091C194.687,52.539 195.134,52.091 195.687,52.091L237.687,52.091C238.239,52.091 238.687,52.539 238.687,53.091C238.687,53.644 238.239,54.091 237.687,54.091"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M229.687,61.091L195.687,61.091C195.134,61.091 194.687,60.644 194.687,60.091C194.687,59.539 195.134,59.091 195.687,59.091L229.687,59.091C230.239,59.091 230.687,59.539 230.687,60.091C230.687,60.644 230.239,61.091 229.687,61.091"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M223.687,47.091L195.687,47.091C195.134,47.091 194.687,46.644 194.687,46.091C194.687,45.539 195.134,45.091 195.687,45.091L223.687,45.091C224.239,45.091 224.687,45.539 224.687,46.091C224.687,46.644 224.239,47.091 223.687,47.091"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#657888"
-            android:fillType="evenOdd"
-            android:pathData="M197.376,64.685L188.855,71.926C188.365,72.341 187.687,71.926 187.687,71.211L187.687,63.97C187.687,63.485 188.017,63.091 188.425,63.091L196.946,63.091C197.665,63.091 197.96,64.188 197.376,64.685"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_onboarding_illustration_privacy.xml b/Corona-Warn-App/src/main/res/drawable/ic_onboarding_illustration_privacy.xml
deleted file mode 100644
index b5a170e9e03264e3178d3fa1727fbe5fa2a1d087..0000000000000000000000000000000000000000
--- a/Corona-Warn-App/src/main/res/drawable/ic_onboarding_illustration_privacy.xml
+++ /dev/null
@@ -1,225 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="360dp"
-    android:height="220dp"
-    android:viewportWidth="360"
-    android:viewportHeight="220">
-    <group>
-        <clip-path android:pathData="M0,0h360v220h-360z" />
-        <path
-            android:fillColor="#F6FBFF"
-            android:fillType="evenOdd"
-            android:pathData="M185.167,195.45C234.873,195.45 275.167,155.156 275.167,105.45C275.167,55.745 234.873,15.45 185.167,15.45C135.462,15.45 95.167,55.745 95.167,105.45C95.167,155.156 135.462,195.45 185.167,195.45"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <group>
-            <clip-path android:pathData="M95.168,105.45C95.168,155.156 135.462,195.45 185.168,195.45L185.168,195.45C234.874,195.45 275.168,155.156 275.168,105.45L275.168,105.45C275.168,55.745 234.874,15.45 185.168,15.45L185.168,15.45C135.462,15.45 95.168,55.745 95.168,105.45L95.168,105.45Z" />
-            <path
-                android:fillColor="#F6FBFF"
-                android:fillType="evenOdd"
-                android:pathData="M89.207,201.411l191.921,0l0,-191.921l-191.921,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M115.167,105.45C115.167,144.11 146.508,175.45 185.168,175.45L185.168,175.45C223.827,175.45 255.168,144.11 255.168,105.45L255.168,105.45C255.168,66.791 223.827,35.45 185.168,35.45L185.168,35.45C146.508,35.45 115.167,66.791 115.167,105.45L115.167,105.45Z" />
-            <path
-                android:fillColor="#E9F6FF"
-                android:fillType="evenOdd"
-                android:pathData="M110.532,180.085l149.271,0l0,-149.271l-149.271,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <path
-            android:fillColor="#657888"
-            android:fillType="evenOdd"
-            android:pathData="M113.246,69.829C109.66,71.988 98.095,78.432 86.493,79.284C85.089,79.388 84.001,80.532 84.001,81.915L84.001,123.212C84.001,129.558 87.363,135.446 92.877,138.759C101.794,144.116 111.572,149.18 113.874,150.359C114.189,150.521 114.565,150.521 114.882,150.359C117.185,149.18 126.963,144.116 135.88,138.759C141.393,135.446 144.757,129.558 144.757,123.212L144.757,81.915C144.757,80.532 143.669,79.388 142.264,79.284C130.661,78.432 119.098,71.988 115.51,69.829C115.162,69.619 114.77,69.515 114.379,69.515C113.986,69.515 113.594,69.619 113.246,69.829"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <group>
-            <clip-path android:pathData="M113.247,69.829C109.659,71.988 98.095,78.432 86.493,79.284L86.493,79.284C85.089,79.388 84,80.532 84,81.915L84,81.915L84,123.212C84,129.557 87.363,135.446 92.876,138.759L92.876,138.759C101.793,144.116 111.572,149.18 113.873,150.359L113.873,150.359C114.19,150.522 114.566,150.522 114.882,150.359L114.882,150.359C117.185,149.18 126.962,144.116 135.879,138.759L135.879,138.759C141.394,135.446 144.757,129.557 144.757,123.212L144.757,123.212L144.757,81.915C144.757,80.532 143.669,79.388 142.263,79.284L142.263,79.284C130.662,78.432 119.097,71.988 115.51,69.829L115.51,69.829C115.163,69.619 114.77,69.515 114.378,69.515L114.378,69.515C113.986,69.515 113.594,69.619 113.247,69.829L113.247,69.829Z" />
-            <path
-                android:fillColor="#657888"
-                android:fillType="evenOdd"
-                android:pathData="M83.453,150.702l62,0l0,-82l-62,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M113.247,69.829C109.659,71.988 98.095,78.432 86.493,79.284L86.493,79.284C85.089,79.388 84,80.532 84,81.915L84,81.915L84,123.212C84,129.557 87.363,135.446 92.876,138.759L92.876,138.759C101.793,144.116 111.572,149.18 113.873,150.359L113.873,150.359C114.19,150.522 114.566,150.522 114.882,150.359L114.882,150.359C117.185,149.18 126.962,144.116 135.879,138.759L135.879,138.759C141.394,135.446 144.757,129.557 144.757,123.212L144.757,123.212L144.757,81.915C144.757,80.532 143.669,79.388 142.263,79.284L142.263,79.284C130.662,78.432 119.097,71.988 115.51,69.829L115.51,69.829C115.163,69.619 114.77,69.515 114.378,69.515L114.378,69.515C113.986,69.515 113.594,69.619 113.247,69.829L113.247,69.829Z" />
-            <path
-                android:fillColor="#657888"
-                android:fillType="evenOdd"
-                android:pathData="M86.494,79.284C85.089,79.388 84.001,80.532 84.001,81.915L84.001,123.212C84.001,129.557 87.363,135.446 92.877,138.759C101.794,144.116 111.572,149.179 113.874,150.359C114.19,150.521 114.566,150.521 114.883,150.359C117.185,149.179 126.963,144.116 135.88,138.759C141.394,135.446 144.757,129.557 144.757,123.212L144.757,81.915C144.757,80.532 143.669,79.388 142.264,79.284C130.662,78.431 119.098,71.988 115.511,69.829C115.163,69.619 114.77,69.514 114.379,69.514C113.986,69.514 113.595,69.619 113.247,69.829C109.66,71.988 98.096,78.431 86.494,79.284"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M113.247,69.829C109.659,71.988 98.095,78.432 86.493,79.284L86.493,79.284C85.089,79.388 84,80.532 84,81.915L84,81.915L84,123.212C84,129.557 87.363,135.446 92.876,138.759L92.876,138.759C101.793,144.116 111.572,149.18 113.873,150.359L113.873,150.359C114.19,150.522 114.566,150.522 114.882,150.359L114.882,150.359C117.185,149.18 126.962,144.116 135.879,138.759L135.879,138.759C141.394,135.446 144.757,129.557 144.757,123.212L144.757,123.212L144.757,81.915C144.757,80.532 143.669,79.388 142.263,79.284L142.263,79.284C130.662,78.432 119.097,71.988 115.51,69.829L115.51,69.829C115.163,69.619 114.77,69.515 114.378,69.515L114.378,69.515C113.986,69.515 113.594,69.619 113.247,69.829L113.247,69.829Z" />
-            <path
-                android:fillColor="#657888"
-                android:fillType="evenOdd"
-                android:pathData="M83.453,150.702l62,0l0,-82l-62,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M113.247,69.829C109.659,71.988 98.095,78.432 86.493,79.284L86.493,79.284C85.089,79.388 84,80.532 84,81.915L84,81.915L84,123.212C84,129.557 87.363,135.446 92.876,138.759L92.876,138.759C101.793,144.116 111.572,149.18 113.873,150.359L113.873,150.359C114.19,150.522 114.566,150.522 114.882,150.359L114.882,150.359C117.185,149.18 126.962,144.116 135.879,138.759L135.879,138.759C141.394,135.446 144.757,129.557 144.757,123.212L144.757,123.212L144.757,81.915C144.757,80.532 143.669,79.388 142.263,79.284L142.263,79.284C130.662,78.432 119.097,71.988 115.51,69.829L115.51,69.829C115.163,69.619 114.77,69.515 114.378,69.515L114.378,69.515C113.986,69.515 113.594,69.619 113.247,69.829L113.247,69.829Z" />
-            <path
-                android:fillColor="#657888"
-                android:fillType="evenOdd"
-                android:pathData="M79,155.482l70.756,0l0,-90.967l-70.756,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M103.815,101.798L101.962,101.798C99.498,101.798 97.503,103.842 97.503,106.363L97.503,106.363L97.503,121.987C97.503,124.509 99.498,126.553 101.962,126.553L101.962,126.553L125.598,126.553C128.061,126.553 130.057,124.509 130.057,121.987L130.057,121.987L130.057,106.363C130.057,103.842 128.061,101.798 125.598,101.798L125.598,101.798L123.745,101.798C123.419,94.992 119.074,89.585 113.78,89.585L113.78,89.585C108.486,89.585 104.142,94.992 103.815,101.798L103.815,101.798ZM113.78,93.983C116.682,93.983 119.161,97.484 119.445,101.798L119.445,101.798L108.115,101.798C108.398,97.484 110.877,93.983 113.78,93.983L113.78,93.983Z" />
-            <path
-                android:fillColor="#FFFFFF"
-                android:fillType="evenOdd"
-                android:pathData="M92.503,131.553l42.554,0l0,-46.968l-42.554,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <path
-            android:fillColor="#657888"
-            android:fillType="evenOdd"
-            android:pathData="M109.224,111.945C109.224,113.506 110.128,114.865 111.468,115.594L111.468,120.247C111.468,120.859 111.996,121.355 112.648,121.355L114.776,121.355C115.427,121.355 115.955,120.859 115.955,120.247L115.955,115.594C117.295,114.865 118.2,113.506 118.2,111.945C118.2,109.615 116.191,107.726 113.711,107.726C111.234,107.726 109.224,109.615 109.224,111.945"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <group>
-            <clip-path android:pathData="M109.224,111.945C109.224,113.506 110.128,114.866 111.468,115.595L111.468,115.595L111.468,120.247C111.468,120.86 111.997,121.355 112.648,121.355L112.648,121.355L114.776,121.355C115.428,121.355 115.956,120.86 115.956,120.247L115.956,120.247L115.956,115.595C117.295,114.866 118.199,113.506 118.199,111.945L118.199,111.945C118.199,109.615 116.191,107.727 113.711,107.727L113.711,107.727C111.234,107.727 109.224,109.615 109.224,111.945L109.224,111.945Z" />
-            <path
-                android:fillColor="#657888"
-                android:fillType="evenOdd"
-                android:pathData="M108.453,121.702l10,0l0,-14l-10,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M109.224,111.945C109.224,113.506 110.128,114.866 111.468,115.595L111.468,115.595L111.468,120.247C111.468,120.86 111.997,121.355 112.648,121.355L112.648,121.355L114.776,121.355C115.428,121.355 115.956,120.86 115.956,120.247L115.956,120.247L115.956,115.595C117.295,114.866 118.199,113.506 118.199,111.945L118.199,111.945C118.199,109.615 116.191,107.727 113.711,107.727L113.711,107.727C111.234,107.727 109.224,109.615 109.224,111.945L109.224,111.945Z" />
-            <path
-                android:fillColor="#657888"
-                android:fillType="evenOdd"
-                android:pathData="M109.224,111.945C109.224,113.506 110.128,114.865 111.468,115.594L111.468,120.247C111.468,120.859 111.996,121.355 112.648,121.355L114.776,121.355C115.427,121.355 115.955,120.859 115.955,120.247L115.955,115.594C117.295,114.865 118.2,113.506 118.2,111.945C118.2,109.615 116.191,107.726 113.711,107.726C111.234,107.726 109.224,109.615 109.224,111.945"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M109.224,111.945C109.224,113.506 110.128,114.866 111.468,115.595L111.468,115.595L111.468,120.247C111.468,120.86 111.997,121.355 112.648,121.355L112.648,121.355L114.776,121.355C115.428,121.355 115.956,120.86 115.956,120.247L115.956,120.247L115.956,115.595C117.295,114.866 118.199,113.506 118.199,111.945L118.199,111.945C118.199,109.615 116.191,107.727 113.711,107.727L113.711,107.727C111.234,107.727 109.224,109.615 109.224,111.945L109.224,111.945Z" />
-            <path
-                android:fillColor="#657888"
-                android:fillType="evenOdd"
-                android:pathData="M108.453,121.702l10,0l0,-14l-10,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M109.224,111.945C109.224,113.506 110.128,114.866 111.468,115.595L111.468,115.595L111.468,120.247C111.468,120.86 111.997,121.355 112.648,121.355L112.648,121.355L114.776,121.355C115.428,121.355 115.956,120.86 115.956,120.247L115.956,120.247L115.956,115.595C117.295,114.866 118.199,113.506 118.199,111.945L118.199,111.945C118.199,109.615 116.191,107.727 113.711,107.727L113.711,107.727C111.234,107.727 109.224,109.615 109.224,111.945L109.224,111.945Z" />
-            <path
-                android:fillColor="#657888"
-                android:fillType="evenOdd"
-                android:pathData="M104.224,126.355l18.976,0l0,-23.629l-18.976,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M186.925,43.702l-1.472,11l10,0l-0.388,-11z" />
-            <path
-                android:fillColor="#B7846A"
-                android:fillType="evenOdd"
-                android:pathData="M180.453,59.702l20,0l0,-21l-20,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M182.493,35.719C182.451,53.333 200.235,51.043 200.751,33.368L200.751,33.368C200.77,25.138 196.897,21.254 192.713,21.253L192.713,21.253C187.942,21.252 182.767,26.302 182.493,35.719L182.493,35.719Z" />
-            <path
-                android:fillColor="#B7846A"
-                android:fillType="evenOdd"
-                android:pathData="M177.492,52.834l28.26,0l0,-36.581l-28.26,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M178.842,103.017C172.772,123.943 173.224,137.522 171.961,148.973L171.961,148.973C171.944,148.996 176.021,201.163 176.017,201.176L176.017,201.176L182.734,201.34C183.554,183.93 184.376,166.519 185.195,149.108L185.195,149.108C187.342,137.484 190.622,128.09 193.009,119.43L193.009,119.43L193.746,125.619L198.419,200.889L203.413,200.726C205.54,168.547 214.055,140.766 206.365,102.197L206.365,102.197L178.842,103.017Z" />
-            <path
-                android:fillColor="#DEA8A3"
-                android:fillType="evenOdd"
-                android:pathData="M166.961,206.341l47.56,0l0,-109.144l-47.56,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M170.85,103.453L168.25,100.505C153.552,120.591 173.942,117.747 170.85,103.453L170.85,103.453Z" />
-            <path
-                android:fillColor="#B7846A"
-                android:fillType="evenOdd"
-                android:pathData="M157.866,119.872l18.309,0l0,-24.367l-18.309,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M169.129,80.04C167.914,85.71 167.51,93.99 166.753,99.405L166.753,99.405C166.654,100.115 166.02,103 167.705,103.613L167.705,103.613C169.674,104.301 171.128,105.125 171.701,103.222L171.701,103.222C173.578,96.984 176.693,83.798 178.438,75.527L178.438,75.527C178.815,73.733 179.652,70.603 179.652,71.424L179.652,71.424C179.652,72.341 177.505,100.666 178.842,103.017L178.842,103.017C179.534,104.233 183.676,104.767 188.579,104.785L188.579,104.785L189.102,104.785C195.99,104.76 204.16,103.748 206.365,102.197L206.365,102.197C206.908,101.815 206.63,96.575 205.924,90.236L205.924,90.236C205.803,90.121 205.68,90.006 205.556,89.888L205.556,89.888C203.631,88.058 199.081,84.964 196.163,83.672L196.163,83.672C196.941,81.662 197.897,80.82 198.675,78.809L198.675,78.809C198.675,78.809 203.137,82.015 203.937,82.502L203.937,82.502C204.3,82.722 204.663,82.929 205.014,83.122L205.014,83.122C204.802,81.657 204.576,80.208 204.341,78.809L204.341,78.809C203.258,72.352 203.127,66.5 203.127,66.5L203.127,66.5C203.127,66.5 204.573,73.934 205.556,77.168L205.556,77.168C207.175,82.502 207.984,84.553 207.984,84.553L207.984,84.553C207.984,84.553 206.621,84 205.014,83.122L205.014,83.122C205.36,85.518 205.671,87.949 205.924,90.236L205.924,90.236C212.193,96.133 216.339,98.409 219.318,93.58L219.318,93.58C219.518,93.256 219.613,92.779 219.624,92.178L219.624,92.178L219.624,91.949C219.555,87.733 215.786,78.155 214.056,71.833L214.056,71.833C212.117,64.762 207.984,52.549 195.65,52.506L195.65,52.506C194.737,52.504 193.713,52.648 192.677,52.792L192.677,52.792C190.186,53.138 187.62,53.485 186.343,51.786L186.343,51.786C173.581,55.011 171.152,70.603 169.129,80.04L169.129,80.04Z" />
-            <path
-                android:fillColor="#B2DBF0"
-                android:fillType="evenOdd"
-                android:pathData="M161.554,109.785l63.07,0l0,-62.999l-63.07,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M198.064,213.706C199.991,215.676 201.398,214.731 203.213,213.706L203.213,213.706C207.821,211.663 204.075,202.582 203.583,200.453L203.583,200.453L198.694,199.222C198.586,200.945 193.901,211.157 198.064,213.706L198.064,213.706Z" />
-            <path
-                android:fillColor="#4A4A4A"
-                android:fillType="evenOdd"
-                android:pathData="M191.343,219.857l19.142,0l0,-25.635l-19.142,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M163.343,211.613C169.125,211.601 175.719,211.59 181.501,211.578L181.501,211.578C181.701,211.514 182.128,211.343 182.498,210.92L182.498,210.92C183.62,210.216 182.578,202.432 182.734,201.34L182.734,201.34C180.495,201.286 178.256,201.231 176.017,201.176L176.017,201.176C176.287,207.02 160.131,208.033 163.343,211.613L163.343,211.613Z" />
-            <path
-                android:fillColor="#4A4A4A"
-                android:fillType="evenOdd"
-                android:pathData="M157.92,216.614l30.105,0l0,-20.437l-30.105,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M183.873,67.497C183.148,67.497 182.611,68.094 182.676,68.828L182.676,68.828L183.846,82.398C183.909,83.133 184.549,83.729 185.275,83.729L185.275,83.729L190.798,83.729C191.525,83.729 192.061,83.133 191.998,82.398L191.998,82.398L190.827,68.828C190.763,68.094 190.123,67.497 189.398,67.497L189.398,67.497L183.873,67.497Z" />
-            <path
-                android:fillColor="#4A4A4A"
-                android:fillType="evenOdd"
-                android:pathData="M177.669,88.729l19.333,0l0,-26.232l-19.333,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M186.756,78.742C188.561,81.056 192.707,83.37 196.48,83.007L196.48,83.007L197.46,81.169L198.314,79.271C196.207,77.71 193.948,75.485 191.014,74.472L191.014,74.472C190.648,74.449 190.304,74.439 189.981,74.439L189.981,74.439C185.426,74.439 185.079,76.591 186.756,78.742L186.756,78.742Z" />
-            <path
-                android:fillColor="#B7846A"
-                android:fillType="evenOdd"
-                android:pathData="M180.832,88.045l22.481,0l0,-18.607l-22.481,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M181.461,8.912C181.162,9.248 180.716,9.407 180.273,9.348L180.273,9.348C175.156,8.657 174.34,10.235 174.005,11.814L174.005,11.814C173.671,13.391 173.819,14.967 170.641,14.282L170.641,14.282C164.132,12.876 165.096,17.916 164.764,20.025L164.764,20.025C164.434,22.131 162.141,22.461 162.141,22.461L162.141,22.461C160.193,23.018 162.236,26.364 160.068,28.069L160.068,28.069C158.309,29.451 158.857,31.143 159.128,31.735L159.128,31.735C159.186,31.862 159.266,31.978 159.359,32.082L159.359,32.082C161.985,35 160.072,35.992 160.072,35.992L160.072,35.992C158.908,36.915 158.469,37.782 158.453,38.558L158.453,38.558L158.453,38.649C158.483,40.026 159.829,41.112 160.777,41.706L160.777,41.706C161.251,42.003 161.487,42.571 161.385,43.128L161.385,43.128C161.021,45.126 162.959,46.216 165.066,45.983L165.066,45.983C167.475,45.717 167.331,47.928 167.331,47.928L167.331,47.928C166.515,51.159 169.634,51.191 171.261,50.999L171.261,50.999C171.787,50.938 172.309,51.196 172.572,51.662L172.572,51.662C173.234,52.837 174.081,53.243 174.915,53.263L174.915,53.263L175.049,53.263C176.039,53.24 176.992,52.701 177.573,52.296L177.573,52.296C177.931,52.046 178.388,51.983 178.795,52.137L178.795,52.137C180.77,52.889 181.844,52.14 182.33,51.583L182.33,51.583C182.574,51.301 182.937,51.145 183.306,51.152L183.306,51.152C187.033,51.225 188.694,44.692 187.842,43.029L187.842,43.029L183.973,37.318C183.487,36.199 181.715,31.057 184.254,29.535L184.254,29.535C186.158,28.395 187.703,30.269 190.667,26.874L190.667,26.874C193.37,23.779 193.369,23.53 194.703,23.294L194.703,23.294C195.637,23.127 196.049,25.406 198.894,26.988L198.894,26.988C199.292,27.21 199.314,28.189 199.363,28.542L199.363,28.542C200.618,37.293 195.308,42.476 193.608,43.749L193.608,43.749C193.314,43.969 193.124,44.297 193.07,44.663L193.07,44.663C191.829,53.046 200.177,52.737 201.896,52.586L201.896,52.586C202.105,52.569 202.31,52.605 202.506,52.675L202.506,52.675C204.951,53.557 206.327,51.889 206.933,50.808L206.933,50.808C207.196,50.339 207.717,50.082 208.247,50.132L208.247,50.132C211.44,50.432 212.328,48.453 212.574,47.304L212.574,47.304C212.674,46.835 213.006,46.451 213.454,46.296L213.454,46.296C216.556,45.233 216.546,42.79 216.367,41.692L216.367,41.692C216.307,41.324 216.408,40.946 216.629,40.647L216.629,40.647C217.487,39.497 217.8,38.534 217.806,37.742L217.806,37.742L217.806,37.692C217.797,36.579 217.18,35.813 216.631,35.351L216.631,35.351C216.201,34.988 216.06,34.402 216.218,33.858L216.218,33.858C216.924,31.436 214.408,29.748 212.965,29.001L212.965,29.001C212.466,28.743 212.166,28.191 212.242,27.629L212.242,27.629C212.535,25.502 211.196,24.356 210.255,23.824L210.255,23.824C209.77,23.55 209.499,23.002 209.573,22.444L209.573,22.444C210.2,17.643 206.672,16.72 205.202,16.542L205.202,16.542C204.818,16.496 204.48,16.281 204.248,15.965L204.248,15.965C202.467,13.545 199.325,15.092 199.325,15.092L199.325,15.092C199.325,15.092 197.882,15.913 198.431,13.433L198.431,13.433C198.856,11.523 197.15,10.982 196.163,10.829L196.163,10.829C195.756,10.765 195.423,10.498 195.234,10.128L195.234,10.128C193.673,7.067 189.68,7.546 188.243,7.831L188.243,7.831C187.909,7.897 187.565,7.828 187.273,7.65L187.273,7.65C186.51,7.183 185.788,7 185.123,7L185.123,7C183.431,7 182.11,8.188 181.461,8.912L181.461,8.912Z" />
-            <path
-                android:fillColor="#000000"
-                android:fillType="evenOdd"
-                android:pathData="M153.453,58.264l69.354,0l0,-56.264l-69.354,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M195.555,84.558l10.958,11.695l-1.731,-14.033l-6.344,-3.508z" />
-            <path
-                android:fillColor="#B2DBF0"
-                android:fillType="evenOdd"
-                android:pathData="M190.554,101.253l20.959,0l0,-27.541l-20.959,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-    </group>
-</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_onboarding_illustration_test.xml b/Corona-Warn-App/src/main/res/drawable/ic_onboarding_illustration_test.xml
deleted file mode 100644
index 16707dc8c905f8c05556647edd4080f1de4edce6..0000000000000000000000000000000000000000
--- a/Corona-Warn-App/src/main/res/drawable/ic_onboarding_illustration_test.xml
+++ /dev/null
@@ -1,399 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="360dp"
-    android:height="220dp"
-    android:viewportWidth="360"
-    android:viewportHeight="220">
-    <group>
-        <clip-path android:pathData="M0,0h360v220h-360z" />
-        <group>
-            <clip-path android:pathData="M10,43.018l340,0l0,107.433l-340,0z" />
-            <path
-                android:fillColor="#D8ECF9"
-                android:fillType="evenOdd"
-                android:pathData="M10,150.451C13.849,107.646 69.904,111.784 74.151,113.483C86,86.451 128,75.451 142,85.451C149,72.451 153,67.451 161,61.451C209.063,25.403 309,41.451 315,116.451C341,119.451 349.177,148.52 350,150.451L173.939,150.451L10,150.451Z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M119.093,94.69L88.816,94.69C84.841,94.69 81.617,97.894 81.617,101.845L81.617,174.756C81.617,178.706 84.841,181.911 88.816,181.911L119.093,181.911C123.07,181.911 126.291,178.706 126.291,174.756L126.291,101.845C126.291,97.894 123.07,94.69 119.093,94.69"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M119.458,95.053C122.236,95.053 124.497,97.302 124.497,100.066L124.497,176.535C124.497,179.299 122.236,181.548 119.458,181.548L87.739,181.548C84.961,181.548 82.701,179.299 82.701,176.535L82.701,100.066C82.701,97.302 84.961,95.053 87.739,95.053L119.458,95.053ZM119.458,92.563L87.739,92.563C83.575,92.563 80.198,95.921 80.198,100.066L80.198,176.535C80.198,180.678 83.575,184.038 87.739,184.038L119.458,184.038C123.624,184.038 127,180.678 127,176.535L127,100.066C127,95.921 123.624,92.563 119.458,92.563L119.458,92.563Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#BF0F2D"
-            android:fillType="evenOdd"
-            android:pathData="M116.92,150.451L90.08,150.451C87.826,150.451 86,148.624 86,146.371L86,126.531C86,124.278 87.826,122.451 90.08,122.451L116.92,122.451C119.173,122.451 121,124.278 121,126.531L121,146.371C121,148.624 119.173,150.451 116.92,150.451"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M102.103,128.451L102.103,129.637L102.696,129.637L102.696,130.267C101.503,130.386 100.425,130.844 99.545,131.565L99.1,131.12L99.508,130.712L98.674,129.878L97.006,131.546L97.84,132.38L98.248,131.973L98.692,132.418C97.972,133.298 97.513,134.375 97.395,135.568L96.765,135.568L96.765,134.975L95.579,134.975L95.579,137.348L96.765,137.348L96.765,136.755L97.395,136.755C97.513,137.957 97.981,139.041 98.711,139.924L98.248,140.35L97.84,139.943L97.006,140.777L98.674,142.445L99.508,141.611L99.1,141.203L99.545,140.74C100.428,141.465 101.5,141.938 102.696,142.056L102.696,142.686L102.103,142.686L102.103,143.872L104.475,143.872L104.475,142.686L103.882,142.686L103.882,142.056C105.078,141.938 106.15,141.465 107.033,140.74L107.052,140.74L107.478,141.203L107.07,141.611L107.904,142.445L109.572,140.777L108.738,139.943L108.331,140.35L107.867,139.924C107.87,139.92 107.865,139.91 107.867,139.906C108.592,139.023 109.065,137.95 109.183,136.755L109.813,136.755L109.813,137.348L110.999,137.348L110.999,134.975L109.813,134.975L109.813,135.568L109.183,135.568C109.065,134.375 108.606,133.298 107.886,132.418L108.331,131.973L108.738,132.38L109.572,131.546L107.904,129.878L107.07,130.712L107.478,131.12L107.033,131.565C106.153,130.844 105.075,130.386 103.882,130.267L103.882,129.637L104.475,129.637L104.475,128.451L102.103,128.451ZM103.289,131.417C105.916,131.417 108.034,133.534 108.034,136.162C108.034,138.789 105.916,140.907 103.289,140.907C100.662,140.907 98.544,138.789 98.544,136.162C98.544,133.534 100.662,131.417 103.289,131.417L103.289,131.417ZM101.806,132.696C101.315,132.696 100.916,133.094 100.916,133.585C100.916,134.076 101.315,134.475 101.806,134.475C102.297,134.475 102.696,134.076 102.696,133.585C102.696,133.094 102.297,132.696 101.806,132.696L101.806,132.696ZM104.772,132.696C104.281,132.696 103.882,133.094 103.882,133.585C103.882,134.076 104.281,134.475 104.772,134.475C105.263,134.475 105.662,134.076 105.662,133.585C105.662,133.094 105.263,132.696 104.772,132.696L104.772,132.696ZM100.324,135.272C99.832,135.272 99.434,135.67 99.434,136.162C99.434,136.653 99.832,137.051 100.324,137.051C100.815,137.051 101.213,136.653 101.213,136.162C101.213,135.67 100.815,135.272 100.324,135.272L100.324,135.272ZM103.289,135.272C102.798,135.272 102.399,135.67 102.399,136.162C102.399,136.653 102.798,137.051 103.289,137.051C103.78,137.051 104.179,136.653 104.179,136.162C104.179,135.67 103.78,135.272 103.289,135.272L103.289,135.272ZM106.255,135.272C105.764,135.272 105.365,135.67 105.365,136.162C105.365,136.653 105.764,137.051 106.255,137.051C106.746,137.051 107.145,136.653 107.145,136.162C107.145,135.67 106.746,135.272 106.255,135.272L106.255,135.272ZM101.806,137.848C101.315,137.848 100.916,138.247 100.916,138.738C100.916,139.229 101.315,139.628 101.806,139.628C102.297,139.628 102.696,139.229 102.696,138.738C102.696,138.247 102.297,137.848 101.806,137.848L101.806,137.848ZM104.772,137.848C104.281,137.848 103.882,138.247 103.882,138.738C103.882,139.229 104.281,139.628 104.772,139.628C105.263,139.628 105.662,139.229 105.662,138.738C105.662,138.247 105.263,137.848 104.772,137.848L104.772,137.848Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#657887"
-            android:fillType="evenOdd"
-            android:pathData="M290.941,85.451L185.059,85.451C183.37,85.451 182,84.081 182,82.392L182,60.51C182,58.821 183.37,57.451 185.059,57.451L290.941,57.451C292.63,57.451 294,58.821 294,60.51L294,82.392C294,84.081 292.63,85.451 290.941,85.451"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#4A4A4A"
-                android:fillType="evenOdd"
-                android:pathData="M189,127.451l98,0l0,-7l-98,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#657887"
-                android:fillType="evenOdd"
-                android:pathData="M290.907,120.451L185.093,120.451C183.385,120.451 182,119.066 182,117.358L182,95.544C182,93.836 183.385,92.451 185.093,92.451L290.907,92.451C292.615,92.451 294,93.836 294,95.544L294,117.358C294,119.066 292.615,120.451 290.907,120.451"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#E7EAEF"
-                android:fillType="evenOdd"
-                android:pathData="M196,106.451C196,108.384 194.433,109.951 192.5,109.951C190.567,109.951 189,108.384 189,106.451C189,104.518 190.567,102.951 192.5,102.951C194.433,102.951 196,104.518 196,106.451"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#E7EAEF"
-                android:fillType="evenOdd"
-                android:pathData="M210,106.451C210,108.384 208.433,109.951 206.5,109.951C204.567,109.951 203,108.384 203,106.451C203,104.518 204.567,102.951 206.5,102.951C208.433,102.951 210,104.518 210,106.451"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#E7EAEF"
-                android:fillType="evenOdd"
-                android:pathData="M224,106.451C224,108.384 222.433,109.951 220.5,109.951C218.567,109.951 217,108.384 217,106.451C217,104.518 218.567,102.951 220.5,102.951C222.433,102.951 224,104.518 224,106.451"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#4A4A4A"
-                android:fillType="evenOdd"
-                android:pathData="M189,92.451l98,0l0,-7l-98,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#E7EAEF"
-                android:fillType="evenOdd"
-                android:pathData="M195.935,70.766C196.402,73.232 194.281,75.353 191.815,74.886C190.445,74.626 189.325,73.506 189.065,72.136C188.598,69.671 190.719,67.549 193.185,68.016C194.555,68.276 195.675,69.396 195.935,70.766"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#E7EAEF"
-                android:fillType="evenOdd"
-                android:pathData="M209.935,70.766C210.402,73.232 208.281,75.353 205.815,74.886C204.445,74.626 203.325,73.506 203.065,72.136C202.598,69.671 204.719,67.549 207.185,68.016C208.555,68.276 209.675,69.396 209.935,70.766"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#E7EAEF"
-                android:fillType="evenOdd"
-                android:pathData="M223.935,70.766C224.402,73.232 222.281,75.353 219.815,74.886C218.445,74.626 217.325,73.506 217.065,72.136C216.598,69.671 218.719,67.549 221.185,68.016C222.555,68.276 223.675,69.396 223.935,70.766"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#4A4A4A"
-                android:fillType="evenOdd"
-                android:pathData="M189,57.451l98,0l0,-7l-98,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#657887"
-                android:fillType="evenOdd"
-                android:pathData="M291.018,50.451L184.982,50.451C183.335,50.451 181.999,49.116 181.999,47.47L181.999,25.432C181.999,23.786 183.335,22.451 184.982,22.451L291.018,22.451C292.665,22.451 294,23.786 294,25.432L294,47.47C294,49.116 292.665,50.451 291.018,50.451"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#4A4A4A"
-                android:fillType="evenOdd"
-                android:pathData="M284.819,43.451L234.93,43.451C233.726,43.451 232.75,42.475 232.75,41.271L232.75,31.632C232.75,30.427 233.726,29.451 234.93,29.451L284.819,29.451C286.024,29.451 287,30.427 287,31.632L287,41.271C287,42.475 286.024,43.451 284.819,43.451"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#E7EAEF"
-                android:fillType="evenOdd"
-                android:pathData="M195.935,35.766C196.402,38.232 194.281,40.353 191.815,39.886C190.445,39.626 189.325,38.506 189.065,37.136C188.598,34.671 190.719,32.549 193.185,33.016C194.555,33.276 195.675,34.396 195.935,35.766"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#E7EAEF"
-                android:fillType="evenOdd"
-                android:pathData="M209.935,35.766C210.402,38.232 208.281,40.353 205.815,39.886C204.445,39.626 203.325,38.506 203.065,37.136C202.598,34.671 204.719,32.549 207.185,33.016C208.555,33.276 209.675,34.396 209.935,35.766"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#E7EAEF"
-                android:fillType="evenOdd"
-                android:pathData="M223.935,35.766C224.402,38.232 222.281,40.353 219.815,39.886C218.445,39.626 217.325,38.506 217.065,37.136C216.598,34.671 218.719,32.549 221.185,33.016C222.555,33.276 223.675,34.396 223.935,35.766"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#4A4A4A"
-                android:fillType="evenOdd"
-                android:pathData="M284.37,78.514L234.481,78.514C233.277,78.514 232.301,77.538 232.301,76.333L232.301,66.695C232.301,65.49 233.277,64.514 234.481,64.514L284.37,64.514C285.575,64.514 286.551,65.49 286.551,66.695L286.551,76.333C286.551,77.538 285.575,78.514 284.37,78.514"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#4A4A4A"
-                android:fillType="evenOdd"
-                android:pathData="M284.37,112.514L234.481,112.514C233.277,112.514 232.301,111.538 232.301,110.333L232.301,100.695C232.301,99.49 233.277,98.514 234.481,98.514L284.37,98.514C285.575,98.514 286.551,99.49 286.551,100.695L286.551,110.333C286.551,111.538 285.575,112.514 284.37,112.514"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#657887"
-                android:fillType="evenOdd"
-                android:pathData="M171,36.451C171,38.108 169.657,39.451 168,39.451C166.343,39.451 165,38.108 165,36.451C165,34.794 166.343,33.451 168,33.451C169.657,33.451 171,34.794 171,36.451"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#657887"
-                android:fillType="evenOdd"
-                android:pathData="M155,36.451C155,38.108 153.657,39.451 152,39.451C150.343,39.451 149,38.108 149,36.451C149,34.794 150.343,33.451 152,33.451C153.657,33.451 155,34.794 155,36.451"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#657887"
-                android:fillType="evenOdd"
-                android:pathData="M139,36.451C139,38.108 137.657,39.451 136,39.451C134.343,39.451 133,38.108 133,36.451C133,34.794 134.343,33.451 136,33.451C137.657,33.451 139,34.794 139,36.451"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#657887"
-                android:fillType="evenOdd"
-                android:pathData="M112,51.451C112,53.108 110.657,54.451 109,54.451C107.343,54.451 106,53.108 106,51.451C106,49.794 107.343,48.451 109,48.451C110.657,48.451 112,49.794 112,51.451"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#657887"
-                android:fillType="evenOdd"
-                android:pathData="M107,65.451C107,67.108 105.657,68.451 104,68.451C102.343,68.451 101,67.108 101,65.451C101,63.794 102.343,62.451 104,62.451C105.657,62.451 107,63.794 107,65.451"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#657887"
-                android:fillType="evenOdd"
-                android:pathData="M124,40.451C124,42.108 122.657,43.451 121,43.451C119.343,43.451 118,42.108 118,40.451C118,38.794 119.343,37.451 121,37.451C122.657,37.451 124,38.794 124,40.451"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#657887"
-                android:fillType="evenOdd"
-                android:pathData="M107,81.451C107,83.108 105.657,84.451 104,84.451C102.343,84.451 101,83.108 101,81.451C101,79.794 102.343,78.451 104,78.451C105.657,78.451 107,79.794 107,81.451"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#E1EEFF"
-                android:fillType="evenOdd"
-                android:pathData="M77.261,68.991L77.716,74.56C77.553,72.534 77.339,69.877 77.261,68.991"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#E1EEFF"
-                android:fillType="evenOdd"
-                android:pathData="M64.807,128.817l0.047,-0.047l-2.718,-1.252z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#E1EEFF"
-                android:fillType="evenOdd"
-                android:pathData="M35.563,22.447L36.209,30.374C35.978,27.49 35.673,23.708 35.563,22.447"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#F6B893"
-                android:fillType="evenOdd"
-                android:pathData="M33.911,39.844l-0.813,10.326l9.514,0.772l1.655,-10.978z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#F6B893"
-                android:fillType="evenOdd"
-                android:pathData="M46.216,31.328C46.405,48.16 30.238,47.64 29.64,31.485C29.699,14.986 45.844,14.835 46.216,31.328"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#8C8C98"
-                android:fillType="evenOdd"
-                android:pathData="M23.615,96.866C16.494,123.535 22.309,162.111 23.886,193.025L28.742,193.26C28.742,193.26 32.331,143.087 33.695,131.687C34.109,128.225 35.4,120.826 36.049,117.611C36.098,117.367 36.634,116.31 36.677,117.555C36.945,125.437 40.351,134.156 41,142.831C42.518,163.104 41.888,177.189 42.42,193.911C42.42,193.911 48,197.333 48.01,197.296C49.261,192.652 53.027,154.295 53.119,148.538C53.138,147.357 55.065,122.784 49.203,97.668L23.615,96.866Z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#DDA7A2"
-                android:fillType="evenOdd"
-                android:pathData="M51.142,51.009C47.292,47.902 47.141,48.902 43.037,48.021C39.955,52.107 34.677,49.731 33.159,48.086C32.978,47.89 32.483,48.123 32.403,48.073C15.652,49.272 24.28,85.318 23.111,96.06C23.054,96.586 23.132,97.583 23.608,97.535C23.608,97.535 39.025,99.712 45.312,98.455C46.212,98.275 49.28,97.952 49.343,97.295C50.376,86.614 55.897,56.543 51.142,51.009"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#4A4A4A"
-                android:fillType="evenOdd"
-                android:pathData="M25.984,50.243C25.995,50.249 26.007,50.252 26.02,50.257C26.371,50.401 27.489,51.822 29.755,50.965C31.609,50.264 32.68,48.646 33.23,48.122C34.388,47.021 34.941,44.827 34.524,42.863C34.298,41.801 33.882,41.364 33.654,41.096C29.163,35.812 30.621,30.347 31.166,28.4C31.21,28.241 31.361,26.849 31.448,26.99C32.287,28.357 36.513,28.978 45.551,32.349C45.637,32.381 45.417,35.31 45.401,35.4C45.289,36.014 44.798,38.316 43.465,40.025C43.352,40.17 42.183,41.253 42.162,42.926C42.14,44.567 42.16,46.231 43.309,48.732C44.713,51.789 48.198,52.485 50.824,51.398C52.714,50.616 53.492,48.747 53.605,46.872C53.611,46.763 53.524,46.671 53.415,46.671C52.453,46.668 48.39,46.346 49.443,41.037C50.334,36.521 51.341,26.667 46.827,21.03C46.763,20.952 46.699,20.874 46.635,20.796C46.591,20.738 46.539,20.679 46.487,20.625C46.396,20.52 46.3,20.414 46.204,20.313C46.112,20.22 46.021,20.126 45.929,20.033C44.52,18.638 42.675,17.597 40.275,17.106C40.269,17.104 40.262,17.103 40.256,17.103C39.925,17.063 31.151,16.065 29.609,21.264C29.596,21.309 29.566,21.348 29.526,21.372C29.138,21.609 27.055,23.075 26.817,27.368C26.56,32.105 27.372,33.828 27.573,37.457C27.812,41.804 27.793,45.73 22.331,45.872C22.202,45.876 22.111,46 22.152,46.122C22.381,46.806 23.248,48.775 25.984,50.243"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#4A4A4A"
-                android:fillType="evenOdd"
-                android:pathData="M28.926,188.586L23.832,189.74C23.55,191.715 19.857,200.384 24.308,202.416C26.058,203.428 27.413,204.356 29.317,202.495C33.406,200.114 29.004,190.241 28.926,188.586"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#4A4A4A"
-                android:fillType="evenOdd"
-                android:pathData="M42.452,190.835C42.587,191.884 41.453,199.337 42.535,200.031C42.888,200.443 43.302,200.613 43.494,200.679C49.12,200.78 55.534,200.893 61.16,200.994C64.339,197.608 48.636,196.385 48.989,190.782C46.81,190.799 44.631,190.817 42.452,190.835"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#EFEFEF"
-                android:fillType="evenOdd"
-                android:pathData="M38.324,51.02C37.343,50.607 36.844,50.398 36.392,50.285C35.477,50.053 35.019,49.938 34.59,50.102C34.117,50.282 33.73,50.653 33.045,50.653C32.842,50.652 32.675,50.619 32.53,50.468C32.371,50.305 32.346,50.113 32.143,49.367C31.903,48.48 30.187,45.409 29.954,44.773C29.535,43.632 28.928,43.58 28.924,42.937C28.923,42.687 29.013,42.534 29.825,41.467C30.5,40.58 30.897,40.084 31.113,39.813C32.038,38.657 32.148,38.525 32.401,38.343C32.671,38.15 33.042,37.884 33.56,37.792C34.005,37.715 34.205,37.826 34.59,37.61C34.649,37.576 34.636,37.577 35.234,37.059C35.734,36.624 35.902,36.485 36.135,36.507C36.241,36.518 40.829,37.669 41.917,37.669C42.295,37.669 44.339,38.421 44.762,38.528C44.892,38.561 45.692,38.76 46.565,39.078C46.803,39.166 46.397,40.417 46.115,40.763C45.984,40.923 44.554,43.106 44.376,43.672C44.016,44.806 43.99,45.843 43.99,46.243C43.99,46.925 44.067,47.412 44.118,48.999C44.128,49.287 44.137,49.688 43.99,50.102C43.918,50.3 43.874,50.325 43.603,50.835C43.303,51.403 43.314,51.456 43.217,51.57C42.939,51.9 42.558,51.808 42.187,51.755C41.011,51.582 41.095,51.944 40.127,51.755C39.764,51.683 39.807,51.644 38.324,51.02"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#F6B893"
-                android:fillType="evenOdd"
-                android:pathData="M54.157,75.02C54.042,74.421 53.838,73.844 53.551,73.313L51.147,68.866C51.137,68.846 51.126,68.827 51.115,68.81C46.566,61.326 46.165,60.701 45.751,60.042C45.704,59.968 43.743,56.804 43.713,56.721C43.56,56.306 43.06,54.921 42.695,53.557C42.686,53.526 42.678,53.492 42.672,53.458C42.515,52.629 42.358,51.798 42.201,50.967C42.191,50.912 42.184,50.856 42.181,50.8C42.363,49.117 42.363,47.05 41.84,44.785C41.732,44.32 41.61,43.878 41.477,43.456C41.434,43.187 41.343,42.808 41.13,42.403C41.028,42.212 40.219,40.726 39.119,40.844C38.429,40.92 37.981,41.581 37.882,41.747C37.694,42.064 37.564,42.444 37.505,42.853C37.067,45.876 37.351,47.279 37.592,48.852C37.809,50.264 38.157,52.807 39.046,55.957C39.341,57.001 39.809,58.613 40.44,60.593C41.504,63.936 42.402,66.688 43.826,69.805C44.749,71.826 46.137,74.525 48.183,77.535C48.216,77.583 48.252,77.631 48.291,77.674C50.102,79.69 51.289,80.032 52.064,79.902C52.129,79.891 52.193,79.869 52.254,79.844L53.737,79.254C54.108,79.104 54.382,78.756 54.437,78.331C54.556,77.419 54.34,75.977 54.157,75.02"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#DDA7A2"
-                android:fillType="evenOdd"
-                android:pathData="M20.916,78.723C20.936,77.415 21.06,76.077 21.407,74.833C21.645,73.981 22.086,72.63 22.959,71.074C23.885,69.241 24.696,67.777 24.758,67.685C24.76,67.682 22.523,68.445 21.406,69.762C18.663,72.993 19.285,77.382 19.59,77.415C19.613,77.419 19.635,77.423 19.658,77.428C19.853,77.477 19.917,77.503 19.963,77.572C20.053,77.708 19.958,77.854 19.999,78.066C20.02,78.18 20.082,78.333 20.275,78.499C20.308,78.527 20.915,78.825 20.916,78.723"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#DDA7A2"
-                android:fillType="evenOdd"
-                android:pathData="M53.598,79.416C53.673,78.109 53.731,76.114 53.474,74.848C53.298,73.982 52.956,72.601 52.197,70.987C51.405,69.093 50.701,67.573 50.645,67.478C50.644,67.476 52.82,68.396 53.84,69.79C56.344,73.209 55.408,77.543 55.102,77.555C55.078,77.555 55.056,77.558 55.033,77.562C54.835,77.597 54.768,77.617 54.718,77.683C54.619,77.813 54.702,77.965 54.647,78.175C54.618,78.285 54.545,78.435 54.34,78.585C54.306,78.611 53.593,79.516 53.598,79.416"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M10,203.564l340,0l0,-186.564l-340,0z" />
-            <path
-                android:fillColor="#F6B893"
-                android:fillType="evenOdd"
-                android:pathData="M21.167,74.955C21.281,74.356 21.486,73.78 21.773,73.249L24.177,68.8C24.187,68.782 24.198,68.763 24.209,68.745C28.758,61.261 29.159,60.637 29.573,59.978C29.62,59.904 31.581,56.739 31.611,56.656C31.764,56.242 32.264,54.856 32.629,53.493C32.638,53.461 32.646,53.427 32.652,53.394C32.809,52.564 32.965,51.733 33.123,50.903C33.133,50.848 33.14,50.792 33.143,50.736C32.96,49.052 32.961,46.986 33.484,44.721C33.592,44.256 33.714,43.813 33.847,43.392C33.89,43.122 33.98,42.743 34.194,42.339C34.295,42.147 35.105,40.661 36.205,40.78C36.895,40.855 37.343,41.517 37.442,41.683C37.63,42 37.76,42.379 37.819,42.788C38.257,45.812 37.973,47.215 37.731,48.787C37.515,50.199 37.167,52.743 36.278,55.892C35.983,56.937 35.515,58.549 34.884,60.529C33.82,63.871 32.921,66.623 31.498,69.74C30.575,71.762 29.187,74.46 27.141,77.471C27.108,77.519 27.071,77.566 27.033,77.609C25.222,79.626 24.035,79.967 23.26,79.836C23.194,79.826 23.131,79.805 23.069,79.78L21.587,79.189C21.216,79.04 20.942,78.691 20.887,78.267C20.768,77.355 20.984,75.912 21.167,74.955"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-    </group>
-</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_onboarding_illustration_together.xml b/Corona-Warn-App/src/main/res/drawable/ic_onboarding_illustration_together.xml
deleted file mode 100644
index c8301f5657b775c76bec2fd141cb74c8e798e90b..0000000000000000000000000000000000000000
--- a/Corona-Warn-App/src/main/res/drawable/ic_onboarding_illustration_together.xml
+++ /dev/null
@@ -1,699 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="438dp"
-    android:height="220dp"
-    android:viewportWidth="438"
-    android:viewportHeight="220">
-    <path
-        android:fillColor="#E9F6FF"
-        android:fillType="evenOdd"
-        android:pathData="M190.216,55.993l-0.198,36.184l-16.437,0l0,-16.735l-51.937,0l0,-6.065l-31.066,0l0,20.141l-11.165,0l0,7.547l-46.409,0l0,48.802l17.77,0l17.477,0l11.162,0l11.165,0l6.311,0l36.406,0l0,-0.149l35.433,0l0,0.149l23.783,0l11.412,0l32.084,0l2.321,0l11.581,0l17.891,0l22.486,0l6.286,0l26.864,0l10.631,0l18.135,0l0,-7.871l55.861,6.744l0,-50.128l-55.861,0l0,-26.966l-18.135,0l0,-6.679l-43.781,0l0,23.99l-14.525,0l0,-7.854l-25.852,0l0,-21.147z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <group>
-        <clip-path android:pathData="M147.561,140.129C111.647,140.129 95.999,118.62 62.465,122.693L62.465,122.693C54.494,123.66 44.372,126.685 33.004,135.166L33.004,135.166L33.004,158.963L407.485,160.297L407.485,142.74C405.597,141.69 403.723,140.79 401.939,140.115L401.939,140.115C401.939,140.115 364.145,125.518 322.29,138.007L322.29,138.007C286.441,148.715 245.145,120.689 225.361,119.961L225.361,119.961C223.514,119.894 221.731,119.861 220.018,119.861L220.018,119.861C177.276,119.859 175.232,140.129 147.561,140.129L147.561,140.129Z" />
-        <path
-            android:fillColor="#D9EDFA"
-            android:fillType="evenOdd"
-            android:pathData="M0,170.369l437.066,0l0,-60.508l-437.066,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M60.968,41.882C60.913,41.882 60.86,41.882 60.803,41.885L60.803,41.885C55.341,42.023 52.214,49.805 51.954,53.501L51.954,53.501C50.84,69.319 41.169,80.6 42.065,105.241L42.065,105.241C42.652,121.386 48.31,137.975 54.297,140.876L54.297,140.876C65.822,146.47 73.554,134.016 74.856,122.4L74.856,122.4C76.158,110.785 76.937,93.889 68.349,72.77L68.349,72.77C63.625,61.151 71.59,41.961 61.096,41.882L61.096,41.882L60.968,41.882Z" />
-        <path
-            android:fillColor="#B9E1FB"
-            android:fillType="evenOdd"
-            android:pathData="M32.005,152.259l53.652,0l0,-120.379l-53.652,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M57.008,92.698C57.07,116.495 59.353,138.479 60.372,142.864L60.372,142.864L61.009,142.726C59.996,138.36 57.72,116.447 57.661,92.698L57.661,92.698C57.625,78.286 58.405,63.202 60.78,50.968L60.78,50.968L60.138,50.851C57.755,63.125 56.973,78.25 57.008,92.698L57.008,92.698Z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M47.007,152.866l24.003,0l0,-112.016l-24.003,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M57.008,116.537L57.571,116.861C57.595,116.821 65.831,103.077 67.01,97.998L67.01,97.998L66.372,97.858C65.216,102.841 57.031,116.498 57.008,116.537L57.008,116.537Z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M47.007,126.862l30.004,0l0,-39.005l-30.004,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M56.557,86.856L57.008,86.448C56.993,86.428 51.208,79.375 51.622,73.903L51.622,73.903L51.03,73.854C50.595,79.586 56.54,86.836 56.557,86.856L56.557,86.856Z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M41.006,96.857l26.003,0l0,-33.004l-26.003,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M86.405,83.097C82.323,83.13 79.7,86.32 78.535,92.474L78.535,92.474C77.234,99.351 77.494,106.228 75.412,108.873L75.412,108.873C73.784,110.941 66.115,120.441 66.074,130.555L66.074,130.555L66.074,130.718C66.085,133.492 66.674,136.308 68.124,139.028L68.124,139.028C74.891,151.724 86.342,148.285 92.328,143.79L92.328,143.79C97.794,137.706 101.697,128.183 98.574,108.344L98.574,108.344C95.45,88.505 92.848,84.008 87.906,83.214L87.906,83.214C87.432,83.14 86.978,83.1 86.54,83.097L86.54,83.097L86.405,83.097Z" />
-        <path
-            android:fillColor="#B9E1FB"
-            android:fillType="evenOdd"
-            android:pathData="M56.073,157.867l53.611,0l0,-84.771l-53.611,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M87.203,96.902C87.755,104.331 86.866,112.902 85.412,120.93L85.412,120.93C83.238,132.912 79.805,143.668 78.012,147.6L78.012,147.6L78.596,147.866C80.404,143.906 83.861,133.081 86.044,121.041L86.044,121.041C87.509,112.968 88.402,104.338 87.845,96.859L87.845,96.859L87.203,96.902Z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M68.011,157.867l30.003,0l0,-71.01l-30.003,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M84.011,129.325L84.341,129.863C84.367,129.846 93.2,124.268 95.014,118.04L95.014,118.04L94.416,117.861C92.671,123.855 84.038,129.31 84.011,129.325L84.011,129.325Z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M74.012,139.864l31.003,0l0,-32.004l-31.003,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M74.011,127.964C74.869,133.927 80.53,141.84 80.546,141.864L80.546,141.864L81.011,141.459C80.996,141.436 75.428,133.648 74.594,127.864L74.594,127.864L74.011,127.964Z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M64.01,151.866l27.003,0l0,-34.004l-27.003,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M169.118,109.241C159.007,108.79 160.518,141.688 160.518,141.688L160.518,141.688C153.726,144.857 154.043,159.982 154.043,159.982L154.043,159.982L199.149,159.797C199.904,146.67 193.113,141.235 193.113,141.235L193.113,141.235C194.32,125.691 182.852,126.747 182.852,126.747L182.852,126.747C184.21,110.902 183.154,97.471 177.569,95.811L177.569,95.811C177.278,95.724 176.994,95.683 176.718,95.683L176.718,95.683C171.694,95.683 169.118,109.241 169.118,109.241L169.118,109.241Z" />
-        <path
-            android:fillColor="#B9E1FB"
-            android:fillType="evenOdd"
-            android:pathData="M149.041,164.983l55.167,0l0,-74.3l-55.167,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <path
-        android:fillColor="#FFFFFF"
-        android:fillType="evenOdd"
-        android:pathData="M175.8,107.459l0,52.442l0.936,-0.016l-0.326,-52.426z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <group>
-        <clip-path android:pathData="M168.671,121.043C168.934,122.991 170.242,125.025 172.557,127.091L172.557,127.091C174.267,128.617 175.926,129.595 175.943,129.605L175.943,129.605L176.274,128.76C176.211,128.721 169.741,125.222 169.142,120.808L169.142,120.808L168.671,121.043Z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M163.671,134.605l17.604,0l0,-18.797l-17.604,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M176.208,141.248L176.159,142.32C176.441,142.053 183.1,135.733 184.45,132.277L184.45,132.277L183.912,132.013C182.598,135.38 176.277,141.184 176.208,141.248L176.208,141.248Z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M171.159,147.32l18.29,0l0,-20.307l-18.29,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M166.941,147.107C167.191,149.215 168.835,151.175 171.698,152.772L171.698,152.772C173.836,153.965 175.932,154.552 175.952,154.558L175.952,154.558L176.21,154.051C176.256,152.98 168.106,151.786 167.541,147.005L167.541,147.005L166.941,147.107Z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M161.941,159.558l19.27,0l0,-17.553l-19.27,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <path
-        android:fillColor="#D9EDFA"
-        android:fillType="evenOdd"
-        android:pathData="M333.366,24.225C330.133,24.918 326.135,28.041 326.269,28.955C326.317,29.276 336.404,28.974 346.769,28.955C362.402,28.929 370.217,28.955 371.212,28.955L390.924,28.955C392.462,28.955 389.638,23.59 388.558,22.648C386.688,21.018 383.85,20.304 381.462,21.072C378.188,22.123 378.25,25.156 375.154,25.802C373.135,26.224 370.964,25.38 369.635,24.225C367.609,22.465 368.451,20.774 366.481,18.706C365.101,17.257 363.301,16.592 360.962,17.129C358.232,17.756 358.596,17.917 354.654,21.072C353.269,22.179 351.774,25.362 349.135,25.802C341.973,26.996 338.986,23.021 333.366,24.225"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#D9EDFA"
-        android:fillType="evenOdd"
-        android:pathData="M275.061,18.955L226.215,18.955C228.094,15.931 229.954,14.975 231.303,14.661C234.626,13.894 236.029,16.746 241.48,16.809C242.451,16.819 244.842,16.825 247.585,15.734C249.214,15.089 249.26,14.734 251.656,13.589C253.637,12.642 255.376,11.809 257.763,11.441C259.582,11.16 260.949,11.276 262.85,11.441C265.008,11.627 266.339,11.753 267.939,12.514C269.125,13.078 269.875,13.714 270.991,14.661C272.069,15.576 273.539,16.971 275.061,18.955"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#D9EDFA"
-        android:fillType="evenOdd"
-        android:pathData="M153.572,32.956L183.023,32.956C181.89,31.404 180.769,30.913 179.955,30.753C177.952,30.359 177.107,31.822 173.819,31.854C173.235,31.86 171.792,31.863 170.138,31.304C169.157,30.973 169.129,30.79 167.683,30.202C166.489,29.717 165.44,29.29 164.003,29.101C162.904,28.957 162.081,29.017 160.934,29.101C159.634,29.196 158.831,29.262 157.867,29.651C157.151,29.941 156.7,30.267 156.026,30.753C155.376,31.222 154.491,31.937 153.572,32.956"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#D9EDFA"
-        android:fillType="evenOdd"
-        android:pathData="M107.745,15.216C109.781,15.617 112.299,17.426 112.214,17.955C112.184,18.141 105.832,17.966 99.305,17.955C89.46,17.941 84.539,17.955 83.912,17.955L71.499,17.955C70.53,17.955 72.307,14.849 72.988,14.303C74.166,13.36 75.953,12.945 77.457,13.39C79.518,13.999 79.479,15.755 81.43,16.129C82.701,16.373 84.068,15.885 84.905,15.216C86.181,14.196 85.65,13.218 86.891,12.02C87.761,11.181 88.893,10.796 90.367,11.107C92.086,11.47 91.856,11.564 94.339,13.39C95.211,14.031 96.152,15.874 97.814,16.129C102.324,16.821 104.206,14.519 107.745,15.216"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#00000000"
-        android:fillType="evenOdd"
-        android:pathData="M367.043,184.324L371.845,135.195C371.845,135.195 371.235,132.237 376.689,132.672"
-        android:strokeWidth="2"
-        android:strokeColor="#4D4D4D" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M381.757,105.875C381.757,105.875 381.228,101.548 380.405,101.137C379.583,100.726 385.664,98.919 385.664,98.919C385.664,98.919 386.687,101.315 386.652,101.486C386.617,101.658 381.757,105.875 381.757,105.875"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M381.109,180.79C381.109,180.79 378.169,182.551 376.89,182.665C375.522,182.788 376.056,184.382 376.056,184.382L386.894,184.186C386.894,184.186 387.918,181.339 387.084,180.749L381.109,180.79Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M394.159,180.123C394.159,180.123 395.918,183.842 394.348,184.136C392.779,184.43 383.849,184.209 383.849,184.209C383.849,184.209 382.923,182.959 385.129,182.518C387.336,182.076 388.631,181.689 388.631,180.856L394.159,180.123Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#B2DBF0"
-        android:fillType="evenOdd"
-        android:pathData="M378.65,136.266C378.65,136.266 379.821,175.372 380.901,180.6C380.962,180.893 381.218,181.104 381.517,181.104L386.674,181.104C386.986,181.104 387.235,180.843 387.22,180.532L386.903,173.704L388.338,180.483C388.403,180.788 388.686,180.997 388.997,180.97L393.72,180.553C394.036,180.525 394.263,180.238 394.216,179.924C393.565,175.565 389.507,147.868 390.775,143.589C392.152,138.943 392.894,135.691 390.974,132.843C389.054,129.995 379.132,133.195 379.132,133.195L378.65,136.266Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M377.698,130.712C377.698,130.712 375.112,131.697 375.166,132.654C375.188,133.066 375.379,133.271 375.588,133.371C375.752,133.45 375.75,133.683 375.582,133.755C374.948,134.025 373.918,134.317 373.039,133.877C371.656,133.187 371.455,131.494 372.028,130.793C373.198,129.363 377.14,128.537 377.33,128.496C377.698,128.418 377.698,130.712 377.698,130.712"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#385460"
-        android:fillType="evenOdd"
-        android:pathData="M379.581,136.29C382.106,136.314 389.026,136.099 390.838,133.095C390.927,132.946 390.984,132.781 391.009,132.609C391.398,129.925 394.832,104.839 387.693,101.519C387.259,101.316 386.75,101.368 386.363,101.65C384.466,103.034 378.38,107.875 378.146,113.176C377.89,118.996 377.157,127.195 377.051,128.372C377.042,128.468 377.044,128.563 377.057,128.659L377.667,133.368C377.679,133.459 377.699,133.548 377.729,133.634L378.351,135.409C378.534,135.933 379.026,136.284 379.581,136.29"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M380.573,101.3L385.664,98.919C385.664,98.919 390.855,91.933 385.526,91.018C380.197,90.103 378.689,91.234 378.689,91.234C378.689,91.234 376.752,94.463 377.02,96.025C377.02,96.025 377.193,96.607 376.885,96.641C376.577,96.675 376.167,97.189 376.611,97.565C377.055,97.942 380.573,101.3 380.573,101.3"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E0E0E0"
-        android:fillType="evenOdd"
-        android:pathData="M382.335,94.712C382.213,94.866 382.148,95.057 382.147,95.254C382.137,96.327 382.067,100.177 381.577,100.574C381.007,101.036 377.99,102.422 377.148,101.77C376.306,101.117 376.779,99.722 376.779,99.722C376.779,99.722 378.479,99.814 377.07,99.027C376.309,98.601 376.263,98.284 376.381,98.083C376.488,97.9 376.72,97.829 376.923,97.894C377.415,98.049 378.552,98.455 378.597,98.907C378.651,99.456 381.792,97.496 381.398,94.667C381.361,94.401 381.204,94.168 380.978,94.026C379.873,93.336 376.451,91.101 377.326,90.42C378.365,89.612 383.792,87.476 386.102,89.785C388.411,92.095 390.201,95.559 386.506,99.023C386.506,99.023 383.812,100.113 383.705,96.349C383.622,93.428 382.731,94.214 382.335,94.712"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M361.904,112.365C361.411,112.388 360.384,111.931 360.669,112.935L361.639,119.475C361.692,120.322 362.877,119.722 363.325,119.749C363.59,119.708 363.788,119.665 363.733,119.316L362.726,112.889C362.672,112.541 362.596,112.447 362.244,112.405"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#FFC2B0"
-        android:fillType="evenOdd"
-        android:pathData="M364.583,119.79C363.97,119.88 362.164,121.005 361.604,120.376C361.604,120.376 360.265,119.24 360.265,119.24C359.342,118.389 360.304,115.721 361.398,116.251L362.798,116.851L364.931,116.851L364.583,119.79Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#385460"
-        android:fillType="evenOdd"
-        android:pathData="M380.958,107.415C383.868,104.538 387.861,109.277 386.106,112.158L379.108,119.402C378.505,120.028 377.328,121.415 375.629,121.153L364.793,120.795L364.146,116.169L374.878,116.048L380.958,107.415Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#B7846A"
-        android:fillType="evenOdd"
-        android:pathData="M81.084,108.976l0.187,5.229l-4.819,0l0.71,-5.229z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#B7846A"
-        android:fillType="evenOdd"
-        android:pathData="M74.759,104.955C74.739,113.491 83.476,112.381 83.729,103.816C83.748,95.28 75.012,96.391 74.759,104.955"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#DEA8A3"
-        android:fillType="evenOdd"
-        android:pathData="M86.486,137.168C90.264,155.858 86.081,169.32 85.036,184.914L82.583,184.993L80.288,148.519L79.924,145.52C78.753,149.716 77.141,154.268 76.087,159.901C75.683,168.338 75.281,176.775 74.878,185.212L71.578,185.133C71.58,185.126 69.577,159.847 69.586,159.835C70.206,154.286 69.983,147.706 72.965,137.566L86.486,137.168Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#B7846A"
-        android:fillType="evenOdd"
-        android:pathData="M69.04,137.778C70.559,144.705 60.542,146.083 67.763,136.349L69.04,137.778Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#90B7D0"
-        android:fillType="evenOdd"
-        android:pathData="M85.822,127.925C85.718,127.216 85.607,126.513 85.492,125.835C84.96,122.706 84.895,119.87 84.895,119.87C84.895,119.87 85.606,123.473 86.089,125.04C86.884,127.624 87.282,128.618 87.282,128.618C87.282,128.618 86.612,128.351 85.822,127.925M90.264,122.455C89.312,119.028 87.282,113.11 81.222,113.089C79.697,113.084 77.539,113.905 76.65,112.74C70.381,114.303 69.188,121.859 68.194,126.432C67.596,129.179 67.398,133.192 67.027,135.816C66.978,136.159 66.667,137.558 67.495,137.855C68.462,138.189 69.176,138.588 69.457,137.665C70.38,134.643 71.91,128.253 72.767,124.244C72.953,123.375 73.363,121.859 73.363,122.256C73.363,122.7 72.309,136.427 72.966,137.567C73.79,138.995 84.596,138.48 86.486,137.168C86.753,136.984 86.616,134.444 86.269,131.371C89.348,134.229 91.386,135.333 92.848,132.993C93.616,131.766 91.259,126.034 90.264,122.455"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M82.718,184.186L85.12,184.783C85.362,185.814 87.201,190.214 84.938,191.205C84.046,191.702 83.355,192.159 82.408,191.205C80.364,189.969 82.665,185.021 82.718,184.186"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M74.878,185.212C74.801,185.74 75.314,189.513 74.762,189.854C74.58,190.059 74.37,190.142 74.273,190.173C71.432,190.179 68.192,190.185 65.352,190.191C63.774,188.455 71.711,187.964 71.578,185.133C72.678,185.159 73.777,185.186 74.878,185.212"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M78.151,120.354L75.437,120.354C75.081,120.354 74.817,120.643 74.848,121L75.423,127.575C75.455,127.931 75.769,128.22 76.126,128.22L78.839,128.22C79.196,128.22 79.46,127.931 79.428,127.575L78.852,121C78.822,120.643 78.507,120.354 78.151,120.354"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#B7846A"
-        android:fillType="evenOdd"
-        android:pathData="M82.111,126.979L81.63,127.87C77.931,128.221 73.502,123.405 78.945,123.734C80.386,124.225 81.496,125.303 82.531,126.059"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#000000"
-        android:fillType="evenOdd"
-        android:pathData="M77.388,108.497C77.806,109.303 76.991,112.47 75.159,112.434C74.978,112.431 74.799,112.507 74.679,112.643C74.441,112.913 73.913,113.275 72.943,112.91C72.743,112.836 72.519,112.867 72.343,112.988C71.805,113.358 70.616,113.959 69.886,112.681C69.757,112.455 69.5,112.33 69.242,112.359C68.443,112.451 66.91,112.437 67.312,110.871C67.312,110.871 67.382,109.799 66.199,109.929C65.164,110.042 64.212,109.514 64.391,108.546C64.441,108.276 64.325,108.001 64.092,107.855C63.356,107.4 62.13,106.351 63.745,105.088C63.745,105.088 64.686,104.605 63.396,103.192C63.35,103.143 63.311,103.086 63.282,103.024C63.149,102.738 62.879,101.918 63.743,101.248C64.808,100.422 63.805,98.799 64.762,98.53C64.762,98.53 65.888,98.371 66.051,97.35C66.214,96.327 65.74,93.886 68.938,94.566C72.062,95.232 68.645,91.506 73.669,92.177C73.887,92.205 74.106,92.128 74.253,91.965C74.697,91.476 75.782,90.551 77.108,91.353C77.251,91.44 77.42,91.474 77.584,91.441C78.29,91.303 80.251,91.071 81.019,92.555C81.112,92.733 81.276,92.863 81.475,92.893C81.959,92.968 82.797,93.229 82.589,94.156C82.32,95.357 83.029,94.96 83.029,94.96C83.029,94.96 84.572,94.21 85.447,95.382C85.561,95.535 85.727,95.64 85.915,95.661C86.638,95.748 88.371,96.196 88.063,98.521C88.027,98.793 88.159,99.059 88.398,99.191C88.86,99.449 89.517,100.004 89.374,101.035C89.336,101.308 89.484,101.574 89.729,101.7C90.438,102.061 91.674,102.88 91.327,104.054C91.249,104.316 91.319,104.601 91.53,104.776C91.992,105.161 92.557,105.983 91.53,107.344C91.42,107.488 91.37,107.671 91.4,107.85C91.488,108.382 91.493,109.565 89.969,110.081C89.749,110.155 89.586,110.341 89.536,110.569C89.416,111.126 88.981,112.085 87.411,111.938C87.152,111.915 86.895,112.04 86.766,112.267C86.468,112.791 85.791,113.6 84.591,113.172C84.494,113.138 84.394,113.119 84.291,113.129C83.447,113.201 79.346,113.351 79.955,109.289C79.982,109.112 80.076,108.952 80.22,108.847C81.055,108.229 83.663,105.718 83.047,101.477C83.023,101.307 83.012,100.832 82.817,100.725C81.419,99.957 81.216,98.853 80.758,98.934C80.103,99.049 80.103,99.17 78.776,100.669C77.319,102.313 76.56,101.406 75.625,101.959C74.377,102.696 75.248,105.188 75.487,105.729"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M137.402,120.653C137.402,120.653 141.91,124.87 143.615,126.008C145.028,126.953 149.689,129.064 149.689,129.064L147.685,131.15C147.685,131.15 143.589,130.237 142.33,129.651C141.037,129.049 137.617,126.437 137.617,126.437L137.402,120.653Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M115.994,191.026L114.366,194.116C114.142,194.542 114.292,195.068 114.707,195.311C116.674,196.458 122.05,199.387 124.371,198.598C124.696,198.487 124.776,198.062 124.523,197.829C123.043,196.466 118.439,192.119 118.796,191.05L115.994,191.026Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#BA6161"
-        android:fillType="evenOdd"
-        android:pathData="M115.845,191.314L118.991,191.733L134.554,155.798L126.449,139.521L126.355,161.801C126.355,161.801 119.126,176.169 117.973,181.806C116.834,187.372 115.845,191.314 115.845,191.314"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#C76A61"
-        android:fillType="evenOdd"
-        android:pathData="M125.939,134.323L138.152,134.486C138.152,134.486 148.736,187.569 152.969,191.151L150.691,192.779C150.691,192.779 137.665,175.031 138.803,163.633C138.803,163.633 122.684,137.743 125.939,134.323"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M134.558,113.902L133.774,108.353C133.774,108.353 137.186,108.505 137.107,103.745C137.092,102.863 137.031,101.353 136.216,100.209L133.774,99.487L131.12,105.518L129.832,113.183L132.568,115.289L134.86,115.228L134.558,113.902Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M150.69,192.779L151.192,196.236C151.261,196.712 151.692,197.05 152.17,197.002C154.435,196.771 160.506,195.977 161.919,193.973C162.117,193.692 161.931,193.301 161.589,193.262C159.59,193.031 153.31,192.224 152.969,191.151L150.69,192.779Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M123.283,141.663L124.134,131.275L128.524,132.529L125.442,143.213C125.442,143.213 124.668,149.413 122.065,147.586C118.836,145.318 123.173,142.935 123.283,141.663"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#B2DBF0"
-        android:fillType="evenOdd"
-        android:pathData="M124.113,131.426C124.113,131.426 124.12,131.374 124.134,131.276C124.364,129.573 126.533,114.04 128.966,113.414C131.538,112.753 132.846,115.199 134.023,113.876C135.199,112.553 142.119,123.502 138.152,134.486L127.983,134.495L131.391,119.223L128.524,132.53C128.524,132.53 124.848,133.485 124.113,131.426"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#663014"
-        android:fillType="evenOdd"
-        android:pathData="M137.03,103.769C137.03,103.769 139.563,102.201 137.935,97.979C137.935,97.979 137.573,96.169 135.04,96.23C135.04,96.23 130.999,92.612 127.199,95.687C123.4,98.763 125.993,101.839 125.993,101.839C125.993,101.839 120.926,106.422 122.676,112.635C122.676,112.635 124.546,116.676 126.717,115.289C128.888,113.902 128.767,116.917 129.914,112.876C131.059,108.835 133.05,109.438 132.265,102.623C132.265,102.623 134.979,102.804 135.583,100.03C135.583,100.03 137.332,100.632 137.03,103.769"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M145.951,132.698C145.816,132.941 149.106,133.447 149.184,133.507C149.635,133.929 153.638,127.53 153.94,127.337C154.089,127.301 153.998,126.68 153.705,126.532L150.864,125.944C150.245,125.221 146.285,131.898 145.934,132.068C145.733,132.299 145.841,132.487 145.951,132.698"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M152.08,129.603C152.786,129.343 151.99,130.781 151.571,131.371C151.188,131.91 151.041,132.257 150.78,132.13C150.52,132.004 150.683,131.414 151.007,130.746C151.331,130.077 151.573,129.79 152.08,129.603"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F91"
-        android:fillType="evenOdd"
-        android:pathData="M197.871,163.558C182.779,163.827 182.781,186.257 197.871,186.524C212.963,186.255 212.96,163.825 197.871,163.558M197.757,187.992C180.636,187.684 180.639,162.242 197.757,161.937C214.877,162.244 214.875,187.687 197.757,187.992"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F91"
-        android:fillType="evenOdd"
-        android:pathData="M215.322,168.357C215.322,169.029 215.296,169.791 214.07,169.791L198.991,169.579C197.448,169.533 197.297,168.488 196.946,167.563C196.47,165.832 212.188,167.087 213.094,166.727C214.562,166.77 215.487,167.331 215.322,168.357"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#3E6884"
-        android:fillType="evenOdd"
-        android:pathData="M216.163,162.804C212.685,162.141 201.477,156.59 198.751,163.237C197.847,168.588 212.055,166.673 214.781,167.338L220.687,181.111L223.328,179.727L219.494,165.894C219.494,165.894 218.552,163.559 216.163,162.804"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M199.398,143.734C200.04,144.056 200.949,143.948 201.243,143.412L202.355,140.218C202.99,138.977 200.348,138.172 199.831,139.239L198.268,142.131C197.999,142.597 198.354,142.922 198.995,143.172"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M206.504,134.682C207.463,137.489 205.452,142.17 203.73,141.561C200.155,140.294 199.144,140.445 198.184,137.638C195.67,130.996 204.302,128.161 206.504,134.682"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#663014"
-        android:fillType="evenOdd"
-        android:pathData="M203.945,133.988C206.769,134.893 207.334,130.826 204.802,130.828C204.332,130.263 199.596,127.406 196.69,131.737C195.837,133.007 196.161,136.021 197.339,138.194C197.373,138.259 197.413,138.319 197.457,138.378C197.89,138.957 198.674,139.967 198.961,139.957C199.881,139.925 200.611,139.227 200.788,138.76C200.946,138.342 199.971,137.537 199.79,136.986C199.271,135.411 200.768,134.801 201.351,136.331C201.776,136.257 203.077,135.276 203.475,134.226C203.548,134.035 203.751,133.926 203.945,133.988"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#C76A61"
-        android:fillType="evenOdd"
-        android:pathData="M199.412,141.556C205.147,141.45 207.476,152.324 209.157,159.995C208.056,162.461 201.275,166.278 198.837,164.62C198.288,162.904 195.505,153.19 195.098,149.855C194.664,146.3 197.22,141.51 199.412,141.556"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M217.802,148.317C218.201,148.337 219.031,147.966 218.801,148.778L218.017,154.063C217.974,154.748 217.017,154.263 216.655,154.284C216.441,154.251 216.281,154.216 216.324,153.934L217.138,148.74C217.182,148.459 217.243,148.383 217.528,148.349"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#FFC2B0"
-        android:fillType="evenOdd"
-        android:pathData="M215.638,154.318C216.133,154.39 217.593,155.299 218.045,154.792L219.128,153.874C219.873,153.185 219.096,151.029 218.211,151.458L217.08,151.942L215.357,151.942L215.638,154.318Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#C76A61"
-        android:fillType="evenOdd"
-        android:pathData="M202.404,144.317C200.052,141.992 196.826,145.822 198.243,148.15L203.899,154.005C204.386,154.51 205.338,155.631 206.711,155.42L215.467,155.13L215.991,151.391L207.317,151.294L202.404,144.317Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F91"
-        android:fillType="evenOdd"
-        android:pathData="M214.532,160.468C214.516,161.678 212.73,161.214 211.685,161.365C209.952,161.008 195.566,163.158 195.451,160.597C195.689,158.032 209.895,159.91 211.701,159.522C212.791,159.651 214.365,159.273 214.532,160.468"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F91"
-        android:fillType="evenOdd"
-        android:pathData="M198.549,169.499C196.088,169.998 193.369,149.6 192.546,148.071C192.174,146.409 193.216,147.169 193.313,147.233C195.519,147.98 198.469,164.355 199.343,166.333C199.75,168.15 199.687,169.636 198.549,169.499"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M213.192,183.332l1.5,0l0,-13.797l-1.5,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M199.148,175.428C199.176,177.407 196.068,177.407 196.098,175.428C196.068,173.449 199.176,173.449 199.148,175.428"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M217.461,184.37C217.383,188.952 210.568,188.951 210.491,184.37C210.569,179.79 217.383,179.79 217.461,184.37"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M216.493,184.381C216.478,187.712 211.414,187.712 211.399,184.381C211.414,181.05 216.478,181.05 216.493,184.381"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M221.91,184.018l-1.105,0.47l-9.936,-23.351l1.105,-0.471z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M226.56,182.936L221.532,185.076C221.103,185.266 220.9,184.76 220.788,184.445C220.781,184.437 226.217,182.134 226.217,182.131C226.735,181.902 227.086,182.721 226.56,182.936"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M228.693,180.976C229.281,180.565 228.171,179.862 227.376,179.872C226.641,179.87 223.096,180.325 223.214,179.391L220.431,180.47C220.786,181.471 221.698,184.166 222.867,183.535C223.666,183.216 227.884,181.541 228.693,180.976"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M214.705,184.374C214.72,185.358 213.174,185.358 213.187,184.374C213.174,183.39 214.72,183.39 214.705,184.374"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M246.814,159.745L246.814,163.915C246.814,164.592 247.35,165.142 248.012,165.142L338.802,165.142C339.464,165.142 340,164.592 340,163.915L340,159.971L246.814,159.745Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M256.011,139.392l-0.152,20.435l2.866,0l-0.017,-20.435z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M328.106,139.392l0.214,20.567l2.741,0l-0.013,-20.567z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M250.863,140.864C250.863,140.864 251.598,138.166 253.56,138.166L332.832,138.186C333.099,138.185 333.362,138.253 333.596,138.38C334.266,138.74 335.593,139.605 335.956,140.864L250.863,140.864Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M250.434,143.61l0,2.275l85.444,0.067l-0.066,-2.207z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M250.434,148.514l0,2.276l85.444,0.066l-0.066,-2.207z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M250.434,153.91l0,2.275l85.444,0.067l-0.066,-2.207z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M325.547,164.812L325.648,178.895C325.651,179.434 326.09,179.87 326.628,179.87L330.444,179.87C330.988,179.87 331.429,179.426 331.425,178.881L331.324,164.747L325.547,164.812Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#6A7F91"
-            android:fillType="evenOdd"
-            android:pathData="M254.949,165.156L255.003,179.034C255.006,179.575 255.444,180.011 255.984,180.011L259.698,180.011C260.236,180.011 260.674,179.579 260.679,179.042L260.835,165.156L254.949,165.156Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M281.665,120.799C281.665,120.799 280.911,120.772 280.927,119.168C280.943,117.565 280.535,117.734 280.861,117.143C281.188,116.553 281.378,117.28 281.378,117.28L281.665,120.799Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M290.942,117.25C290.942,117.25 291.878,116.735 291.784,117.577C291.69,118.419 291.69,119.636 291.41,120.057C291.129,120.478 290.624,120.818 290.624,120.818L290.942,117.25Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M278.615,184.4C278.615,184.4 278.17,191.797 279.772,192.353C281.375,192.909 284.524,190.906 284.519,189.825C284.514,188.744 283.499,183.731 282.546,183.259C281.593,182.788 278.615,184.4 278.615,184.4"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M287.855,181.274C287.855,181.274 284.44,186.939 285.001,188.972C285.564,191.004 287.379,191.697 289.023,190.962C290.668,190.226 291.964,184.734 291.792,183.306C291.618,181.879 287.855,181.274 287.855,181.274"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#8D8D99"
-            android:fillType="evenOdd"
-            android:pathData="M286.983,179.839C287.384,180.827 289.716,184.395 293.385,182.697C293.47,182.658 293.538,182.586 293.573,182.5L299.494,168.271C299.523,168.2 299.572,168.141 299.606,168.072C300.142,167.004 302.159,164.305 298.938,161.423C298.918,161.405 298.9,161.385 298.884,161.362C298.573,160.904 295.055,155.748 294.046,154.739C293.053,153.746 277.983,153.687 276.159,153.683C276.045,153.683 275.937,153.735 275.866,153.823L268.428,163.145C268.418,163.158 268.406,163.17 268.392,163.181C268.18,163.358 266.332,165.033 268.678,168.135C270.967,171.16 276.271,182.548 277.09,184.319C277.155,184.46 277.299,184.546 277.454,184.534C278.799,184.436 284.102,183.851 283.173,181.18C282.845,180.236 278.382,169.983 277.585,168.481C277.524,168.368 277.417,168.238 277.379,168.087C277.309,167.791 277.203,167.513 277.763,166.792C278.472,165.88 282.466,162.517 283.153,161.941C283.218,161.886 283.3,161.855 283.385,161.853L285.714,161.804C285.809,161.802 285.9,161.835 285.97,161.897L291.599,166.841C291.716,166.945 291.757,167.111 291.701,167.258L286.982,179.487C286.938,179.601 286.937,179.726 286.983,179.839"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M296.284,147.435L294.198,158.512C294.198,158.512 291.701,161.741 294.435,161.76C297.035,161.779 296.891,158.83 296.891,158.83L301.113,147.273"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#3E6884"
-            android:fillType="evenOdd"
-            android:pathData="M277.081,153.986C279.675,154.37 286.712,155.619 292.286,154.942C293.242,154.826 293.943,153.985 293.897,153.022C293.761,150.116 293.557,144.296 294.071,143.576C294.76,142.612 295.793,147.571 295.793,147.571L301.577,147.226C301.577,147.226 299.699,141.059 298.571,138.215C298.297,137.521 298.092,136.805 297.964,136.071C297.571,133.827 295.994,128.8 289.733,128.931C289.733,128.931 286.089,134.866 281.427,128.762C281.427,128.762 276.832,127.03 273.713,135.035L271.168,144.582L276.509,147.04C276.509,147.04 276.712,144.285 277.019,143.935C277.468,143.423 276.655,150.232 276.212,152.782C276.111,153.357 276.504,153.901 277.081,153.986"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M285.466,142.165L282.545,142.165C282.364,142.161 282.192,142.234 282.07,142.368C281.948,142.501 281.89,142.68 281.91,142.859L282.521,149.933C282.561,150.322 282.886,150.62 283.278,150.628L286.198,150.628C286.378,150.631 286.552,150.557 286.673,150.424C286.795,150.29 286.853,150.111 286.833,149.933L286.223,142.859C286.183,142.471 285.858,142.172 285.466,142.165"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M271.596,144.786C271.596,144.786 270.551,152.658 271.539,153.51C272.916,154.698 281.214,150.166 282.221,149.465C282.284,149.421 282.36,149.403 282.435,149.416C282.918,149.497 285.981,149.732 286.019,147.68C286.02,147.638 286.008,147.431 286.003,147.389C285.958,146.994 285.225,144.853 282.092,146.965L275.318,149.52L276.03,146.835"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M281.427,128.762C281.427,128.762 282.558,131.997 287.031,131.812C290.017,131.687 290.504,128.954 290.504,128.954C290.504,128.954 287.361,128.69 288.849,125.334L283.156,125.237C283.156,125.237 284.69,129.287 281.427,128.762"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#191818"
-            android:fillType="evenOdd"
-            android:pathData="M281.373,117.227L281.367,114.477C281.358,114.25 281.431,114.029 281.574,113.852C281.852,113.51 282.329,112.972 282.635,112.905C282.635,112.905 283.339,111.447 284.972,110.919C284.972,110.919 283.462,109.668 284.352,109.087C284.41,109.049 284.446,108.986 284.457,108.917C284.501,108.661 284.686,108.083 285.473,108.2C285.56,108.213 285.652,108.18 285.708,108.111C285.87,107.91 286.267,107.571 286.832,108.08C286.832,108.08 288.717,107.375 288.113,108.958C288.113,108.958 289.646,109.989 287.209,110.743C287.209,110.743 289.998,111.522 290.049,113.03C290.049,113.03 291.381,113.507 291.255,114.814C291.129,116.121 290.964,119.665 290.964,119.665C290.964,119.665 290.723,123.704 290.129,125.197C290.101,125.268 290.069,125.328 290.026,125.395C289.655,125.971 288.156,128.867 285.55,127.983C282.653,127 281.602,124.177 281.697,121.227C281.675,120.941 281.421,117.754 281.373,117.227"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M282.923,122.206C282.923,122.206 281.301,119.437 282.056,116.781C282.811,114.125 282.95,114.041 284.572,113.817C286.194,113.594 289.409,113.874 289.801,114.572C290.193,115.271 290.5,116.026 290.472,116.894C290.444,117.742 290.954,120.846 289.713,122.285C289.662,122.345 289.588,122.377 289.511,122.378C289.267,122.381 288.752,122.338 288.543,122.178C287.896,121.685 287.194,121.285 286.977,121.367C286.81,121.431 286.278,121.758 285.579,121.451C284.88,121.144 283.678,122.961 282.923,122.206"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,198.731l437.066,0l0,-187.731l-437.066,0z" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M283.612,123.278C283.612,123.278 284.359,123.952 285.394,123.567C286.429,123.181 287.008,123.447 287.008,123.447C287.008,123.447 288.428,124.121 288.862,123.206C288.862,123.206 287.2,122.724 286.983,122.652C286.766,122.58 285.756,122.435 285.081,122.749C284.407,123.061 283.853,123.326 283.612,123.278"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_onboarding_illustration_tracing.xml b/Corona-Warn-App/src/main/res/drawable/ic_onboarding_illustration_tracing.xml
deleted file mode 100644
index a655092d621ed4bf7ab8093e141e43d56218767d..0000000000000000000000000000000000000000
--- a/Corona-Warn-App/src/main/res/drawable/ic_onboarding_illustration_tracing.xml
+++ /dev/null
@@ -1,304 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="360dp"
-    android:height="220dp"
-    android:viewportWidth="360"
-    android:viewportHeight="220">
-    <group>
-        <clip-path android:pathData="M0,0h360v220h-360z" />
-        <path
-            android:fillColor="#EFF4F7"
-            android:fillType="evenOdd"
-            android:pathData="M283.357,101.626C296.06,101.626 306.357,91.328 306.357,78.626C306.357,65.923 296.06,55.626 283.357,55.626C270.655,55.626 260.357,65.923 260.357,78.626C260.357,91.328 270.655,101.626 283.357,101.626"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <group>
-            <clip-path android:pathData="M260.357,78.626C260.357,91.329 270.654,101.626 283.357,101.626L283.357,101.626C296.06,101.626 306.357,91.329 306.357,78.626L306.357,78.626C306.357,65.924 296.06,55.626 283.357,55.626L283.357,55.626C270.654,55.626 260.357,65.924 260.357,78.626L260.357,78.626Z" />
-            <path
-                android:fillColor="#EFF4F7"
-                android:fillType="evenOdd"
-                android:pathData="M255.357,106.626l56,0l0,-56l-56,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <path
-            android:fillColor="#DDE8EE"
-            android:fillType="evenOdd"
-            android:pathData="M283.357,94.626C292.194,94.626 299.357,87.463 299.357,78.626C299.357,69.789 292.194,62.626 283.357,62.626C274.521,62.626 267.357,69.789 267.357,78.626C267.357,87.463 274.521,94.626 283.357,94.626"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <group>
-            <clip-path android:pathData="M267.357,78.626C267.357,87.462 274.52,94.626 283.357,94.626L283.357,94.626C292.193,94.626 299.356,87.462 299.356,78.626L299.356,78.626C299.356,69.789 292.193,62.626 283.357,62.626L283.357,62.626C274.52,62.626 267.357,69.789 267.357,78.626L267.357,78.626Z" />
-            <path
-                android:fillColor="#DDE8EE"
-                android:fillType="evenOdd"
-                android:pathData="M262.357,99.626l42,0l0,-42l-42,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <path
-            android:fillColor="#FFC1AF"
-            android:fillType="evenOdd"
-            android:pathData="M342.217,84.802C339.8,87.998 339.421,95.87 343.913,95.573C347.725,95.321 345.495,87.008 345.077,85.282C344.615,83.378 344.507,84.996 344.107,83.919"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F6B893"
-            android:fillType="evenOdd"
-            android:pathData="M326.783,29.744l0.812,10.324l-9.511,0.771l-1.655,-10.975z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F6B893"
-            android:fillType="evenOdd"
-            android:pathData="M314.481,21.23C314.292,38.058 330.455,37.538 331.053,21.387C330.993,4.892 314.853,4.74 314.481,21.23"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#8C8C98"
-            android:fillType="evenOdd"
-            android:pathData="M337.076,86.752C344.195,113.415 338.382,151.981 336.805,182.887L331.95,183.122C331.95,183.122 328.362,132.962 326.999,121.564C326.585,118.103 325.294,110.706 324.645,107.492C324.596,107.248 324.06,106.192 324.018,107.436C323.749,115.316 320.345,124.033 319.695,132.706C318.178,152.974 318.808,167.056 318.276,183.773C318.276,183.773 312.698,187.195 312.687,187.159C311.436,182.515 307.671,144.168 307.579,138.412C307.56,137.231 305.634,112.664 311.494,87.554L337.076,86.752Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#DDA7A2"
-            android:fillType="evenOdd"
-            android:pathData="M288.273,80.504C286.32,81.201 282.601,76.297 285.309,74.984C291.619,71.923 296.948,62.709 297.564,62.036C301.759,57.093 304.802,46.44 309.556,40.907C313.405,37.8 313.557,38.8 317.659,37.919C320.74,42.004 326.017,39.629 327.535,37.984C327.715,37.789 328.211,38.021 328.291,37.972C334.992,38.798 338.664,42.881 342.102,49.415C344.398,53.78 345.891,60.862 346.051,65.765C346.326,74.163 346.229,80.493 345.787,86.335C345.745,86.885 343.311,86.732 340.853,86.355C340.84,86.353 339.339,66.656 339.329,66.649C338.518,62.119 336.737,55.704 335.914,52.88C336.173,61.34 336.412,75.207 337.58,85.947C337.637,86.473 337.559,87.469 337.083,87.421C337.083,87.421 321.67,89.598 315.385,88.341C314.485,88.161 311.418,87.838 311.355,87.181C310.322,76.504 313.378,64.77 312.684,52.88C310.674,60.406 297.802,77.105 288.273,80.504"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M334.691,40.149C333.922,39.763 334.34,39.833 332.053,38.968C330.199,38.267 328.014,38.543 327.464,38.019C326.306,36.918 325.753,34.725 326.171,32.761C326.397,31.7 326.812,31.263 327.04,30.994C332.171,24.959 328.958,15.214 328.958,15.214C328.958,15.214 326.044,21.172 315.27,25.145C315.27,25.145 315.68,27.936 317.232,29.924C317.345,30.069 318.513,31.152 318.535,32.825C318.556,34.465 318.537,36.128 317.388,38.629C315.983,41.685 312.5,42.382 309.875,41.295C307.916,40.484 307.152,38.506 307.085,36.564C307.085,36.564 312.447,36.943 311.255,30.936C310.364,26.421 309.357,16.569 313.87,10.934C313.934,10.856 313.998,10.778 314.062,10.7C314.106,10.641 314.158,10.583 314.21,10.529C314.302,10.423 314.398,10.318 314.493,10.217C314.585,10.124 314.676,10.03 314.768,9.937C316.179,8.54 318.026,7.499 320.43,7.008C320.43,7.008 329.595,5.859 331.105,11.24C331.105,11.24 333.613,12.534 333.875,17.27C334.133,22.006 333.321,23.729 333.12,27.357C332.878,31.767 332.9,35.745 338.61,35.774C338.61,35.774 338.069,38.344 334.691,40.149"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M289.87,83.933C289.896,84.556 289.322,85.033 288.704,84.943C287.054,84.703 283.81,83.656 283.662,83.697C282.608,84.114 279.599,71.171 279.398,70.409C279.339,70.186 279.404,69.938 279.662,69.628C279.915,69.325 280.315,69.19 280.703,69.263C281.647,69.441 284.21,69.925 285.28,70.127C285.698,70.206 286.057,70.469 286.254,70.846C287.628,73.475 289.838,83.287 289.869,83.917C289.87,83.923 289.87,83.928 289.87,83.933"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F6B893"
-            android:fillType="evenOdd"
-            android:pathData="M280.688,76.17C281.22,75.719 281.629,77.605 282.516,77.767C282.903,77.838 283.294,77.96 283.664,78.128C284.579,78.542 285.258,79.343 285.627,80.277C288.173,86.716 276.377,84.191 280.688,76.17"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M331.766,178.45L336.385,179.374C336.895,181.408 340.833,190.245 336.383,192.276C334.633,193.289 333.279,194.216 331.375,192.356C327.287,189.975 331.688,180.105 331.766,178.45"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M318.244,180.699C318.109,181.748 319.243,189.199 318.161,189.893C317.808,190.305 317.394,190.475 317.202,190.541C311.577,190.641 305.165,190.755 299.541,190.855C296.363,187.47 312.061,186.248 311.708,180.646C313.887,180.664 316.065,180.681 318.244,180.699"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#EFF4F7"
-            android:fillType="evenOdd"
-            android:pathData="M87.357,108.626C100.06,108.626 110.357,98.328 110.357,85.626C110.357,72.923 100.06,62.626 87.357,62.626C74.655,62.626 64.357,72.923 64.357,85.626C64.357,98.328 74.655,108.626 87.357,108.626"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <group>
-            <clip-path android:pathData="M64.356,85.626C64.356,98.328 74.654,108.626 87.357,108.626L87.357,108.626C100.059,108.626 110.356,98.328 110.356,85.626L110.356,85.626C110.356,72.923 100.059,62.626 87.357,62.626L87.357,62.626C74.654,62.626 64.356,72.923 64.356,85.626L64.356,85.626Z" />
-            <path
-                android:fillColor="#EFF4F7"
-                android:fillType="evenOdd"
-                android:pathData="M59.357,113.626l56,0l0,-56l-56,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <path
-            android:fillColor="#DDE8EE"
-            android:fillType="evenOdd"
-            android:pathData="M87.357,101.626C96.194,101.626 103.357,94.463 103.357,85.626C103.357,76.789 96.194,69.626 87.357,69.626C78.521,69.626 71.357,76.789 71.357,85.626C71.357,94.463 78.521,101.626 87.357,101.626"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <group>
-            <clip-path android:pathData="M71.357,85.626C71.357,94.463 78.521,101.626 87.357,101.626L87.357,101.626C96.194,101.626 103.357,94.463 103.357,85.626L103.357,85.626C103.357,76.789 96.194,69.626 87.357,69.626L87.357,69.626C78.521,69.626 71.357,76.789 71.357,85.626L71.357,85.626Z" />
-            <path
-                android:fillColor="#DDE8EE"
-                android:fillType="evenOdd"
-                android:pathData="M66.357,106.626l42,0l0,-42l-42,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <path
-            android:fillColor="#E9F0F5"
-            android:fillType="evenOdd"
-            android:pathData="M181.387,191.741C215.486,194.842 245.641,169.713 248.741,135.614C251.842,101.514 226.713,71.359 192.614,68.259C158.515,65.158 128.359,90.287 125.259,124.386C122.158,158.485 147.287,188.641 181.387,191.741"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <group>
-            <clip-path android:pathData="M141.165,126.243C138.827,151.952 157.773,174.688 183.481,177.025L183.481,177.025C209.19,179.362 231.926,160.416 234.264,134.708L234.264,134.708C236.601,108.999 217.655,86.263 191.947,83.926L191.947,83.926C190.508,83.795 189.078,83.731 187.66,83.731L187.66,83.731C163.756,83.731 143.372,101.974 141.165,126.243L141.165,126.243Z" />
-            <path
-                android:fillColor="#C2D6E1"
-                android:fillType="evenOdd"
-                android:pathData="M141.618,75.16l101.412,9.22l-9.221,101.412l-101.411,-9.221z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M143.925,143.685C143.19,149.741 157.858,154.183 157.858,154.183L157.858,154.183L159.068,154.296L159.334,163.228C159.334,163.228 146.382,176.25 146.788,181.046L146.788,181.046C147.196,185.843 154.696,184.444 154.696,184.444L154.696,184.444C154.696,184.444 149.225,196.88 152.218,200.564L152.218,200.564C154.411,203.265 156.952,202.397 156.952,202.397L156.952,202.397C156.952,202.397 150.326,207.393 152.635,212.586L152.635,212.586C153.65,214.871 160.722,216.146 160.722,216.146L160.722,216.146L172.276,216.836L172.28,216.836C171.714,213.643 171.825,210.454 172.101,207.258L172.101,207.258C172.113,200.374 172.305,193.5 172.098,186.607L172.098,186.607C171.987,182.939 171.835,179.273 171.656,175.608L171.656,175.608L171.642,175.311C171.122,164.737 170.385,154.173 169.805,143.602L169.805,143.602C162.692,142.016 157.726,140.943 157.726,140.943L157.726,140.943C157.726,140.943 154.157,140.037 150.645,140.037L150.645,140.037C147.436,140.037 144.276,140.793 143.925,143.685L143.925,143.685Z" />
-            <path
-                android:fillColor="#F6B893"
-                android:fillType="evenOdd"
-                android:pathData="M139.699,136.718l33.803,-1.656l4.181,85.341l-33.803,1.656z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M210.057,117.016L166.769,119.136C162.359,119.352 158.96,123.102 159.176,127.512L159.176,127.512L164.468,235.518C164.684,239.928 168.434,243.327 172.843,243.111L172.843,243.111L216.132,240.99C220.541,240.774 223.941,237.024 223.725,232.614L223.725,232.614L218.433,124.608C218.223,120.331 214.691,117.006 210.455,117.006L210.455,117.006C210.323,117.006 210.19,117.009 210.057,117.016L210.057,117.016Z" />
-            <path
-                android:fillColor="#FFFFFF"
-                android:fillType="evenOdd"
-                android:pathData="M154.775,115.892l66.903,-3.278l6.448,131.621l-66.902,3.278z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <group>
-            <clip-path android:pathData="M210.057,117.016L166.769,119.136C162.359,119.352 158.96,123.102 159.176,127.512L159.176,127.512L164.468,235.518C164.684,239.928 168.434,243.327 172.843,243.111L172.843,243.111L216.132,240.99C220.541,240.774 223.941,237.024 223.725,232.614L223.725,232.614L218.433,124.608C218.223,120.331 214.691,117.006 210.455,117.006L210.455,117.006C210.323,117.006 210.19,117.009 210.057,117.016L210.057,117.016Z" />
-            <path
-                android:fillAlpha="0.14092727"
-                android:fillColor="#95B9CB"
-                android:fillType="evenOdd"
-                android:pathData="M192.847,200.341C204.531,199.729 213.506,189.761 212.894,178.077C212.281,166.393 202.313,157.418 190.629,158.03C178.945,158.643 169.97,168.611 170.582,180.295C170.889,186.136 173.533,191.301 177.562,194.928C181.591,198.557 187.004,200.648 192.847,200.341Z"
-                android:strokeWidth="1"
-                android:strokeAlpha="0.14092727"
-                android:strokeColor="#00000000" />
-            <path
-                android:fillAlpha="0.36"
-                android:fillColor="#95B9CB"
-                android:fillType="evenOdd"
-                android:pathData="M192.586,195.364C201.521,194.895 208.384,187.273 207.916,178.338C207.447,169.403 199.825,162.54 190.89,163.008C181.955,163.476 175.092,171.099 175.56,180.034C175.794,184.501 177.817,188.45 180.898,191.224C183.979,193.999 188.118,195.598 192.586,195.364Z"
-                android:strokeWidth="1"
-                android:strokeAlpha="0.36"
-                android:strokeColor="#00000000" />
-            <path
-                android:fillColor="#00000000"
-                android:fillType="evenOdd"
-                android:pathData="M192.151,185.742C195.736,185.554 198.49,182.496 198.302,178.911C198.114,175.326 195.056,172.572 191.471,172.76C187.886,172.948 185.132,176.006 185.32,179.591C185.414,181.384 186.225,182.969 187.461,184.082C188.698,185.194 190.359,185.836 192.151,185.742Z"
-                android:strokeWidth="7.2"
-                android:strokeColor="#E9F6FF" />
-            <path
-                android:fillColor="#00000000"
-                android:fillType="evenOdd"
-                android:pathData="M192.151,185.742C195.736,185.554 198.49,182.496 198.302,178.911C198.114,175.326 195.056,172.572 191.471,172.76C187.886,172.948 185.132,176.006 185.32,179.591C185.414,181.384 186.225,182.969 187.461,184.082C188.698,185.194 190.359,185.836 192.151,185.742Z"
-                android:strokeWidth="7.2"
-                android:strokeColor="#FFFFFF" />
-            <path
-                android:fillColor="#00000000"
-                android:fillType="evenOdd"
-                android:pathData="M191.942,181.748C193.321,181.676 194.38,180.5 194.307,179.12C194.235,177.741 193.059,176.682 191.68,176.755C190.301,176.827 189.242,178.003 189.314,179.382C189.35,180.071 189.663,180.681 190.138,181.109C190.613,181.537 191.252,181.784 191.942,181.748Z"
-                android:strokeWidth="7.2"
-                android:strokeColor="#E9F6FF" />
-            <path
-                android:fillColor="#00000000"
-                android:fillType="evenOdd"
-                android:pathData="M191.942,181.748C193.321,181.676 194.38,180.5 194.307,179.12C194.235,177.741 193.059,176.682 191.68,176.755C190.301,176.827 189.242,178.003 189.314,179.382C189.35,180.071 189.663,180.681 190.138,181.109C190.613,181.537 191.252,181.784 191.942,181.748Z"
-                android:strokeWidth="7.2"
-                android:strokeColor="#FFFFFF" />
-            <path
-                android:fillColor="#00000000"
-                android:fillType="evenOdd"
-                android:pathData="M191.792,189.692C197.308,189.403 201.544,184.698 201.255,179.183C200.966,173.667 196.261,169.431 190.746,169.72C185.23,170.009 180.994,174.714 181.283,180.229C181.427,182.987 182.676,185.425 184.577,187.137C186.479,188.85 189.035,189.837 191.792,189.692Z"
-                android:strokeWidth="3.6"
-                android:strokeColor="#007FAD" />
-        </group>
-        <path
-            android:fillColor="#00000000"
-            android:fillType="evenOdd"
-            android:pathData="M216.413,240.976L173.124,243.097C168.715,243.313 164.965,239.914 164.749,235.504L159.457,127.497C159.241,123.088 162.641,119.338 167.05,119.122L210.339,117.001C214.748,116.785 218.498,120.184 218.714,124.594L224.006,232.601C224.222,237.011 220.822,240.76 216.413,240.976Z"
-            android:strokeWidth="4.032"
-            android:strokeColor="#4A4A4A" />
-        <group>
-            <clip-path android:pathData="M223.929,126.826L223.722,126.836C221.775,126.957 218.69,127.883 217.155,132.445L217.155,132.445C215.049,138.706 215.947,150.653 221.715,154.614L221.715,154.614C221.715,154.614 225.536,230.687 225.527,230.916L225.527,230.916C225.275,236.983 224.706,236.618 223.697,238.611L223.697,238.611C230.798,241.1 268.572,256.351 299.496,268.905L299.496,268.905L304.003,219.34L259.59,205.029C259.59,205.029 254.051,202.995 249.035,193.85L249.035,193.85C244.02,184.707 240.581,163.435 236.961,160.867L236.961,160.867C236.961,160.867 237.206,142.613 228.029,140.4L228.029,140.4C228.029,140.4 226.291,127.007 225.287,126.889L225.287,126.889C225.08,126.864 224.703,126.82 224.215,126.82L224.215,126.82C224.124,126.82 224.028,126.822 223.929,126.826L223.929,126.826Z" />
-            <path
-                android:fillColor="#F6B893"
-                android:fillType="evenOdd"
-                android:pathData="M211.459,123.604l127.609,-6.252l8.441,172.279l-127.61,6.252z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="evenOdd"
-            android:pathData="M67.378,49.92C67.378,49.92 77.733,66.542 84.182,78.169C84.637,78.989 87.32,83.079 87.462,83.913C87.462,83.913 86.963,89.659 84.501,88.257C76.393,79.116 63.583,58.331 59.743,54.338C55.454,49.819 67.378,49.92 67.378,49.92"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M49.721,187.872L39.058,179.897C37.619,179.313 35.413,178.925 33.348,179.371C32.421,179.571 32.301,178.879 32.317,179.737L31.207,183.289C30.205,185.647 30.618,187.464 33.321,188.499C37.224,189.58 46.089,194.263 50.06,191.292C51.794,190.42 51.956,188.748 49.721,187.872"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M70.835,184.93L59.056,177.796C57.57,177.341 55.797,177.274 53.779,177.9C52.873,178.181 52.95,177.509 52.783,178.355L51.99,181.991C51.199,184.428 51.951,186.118 54.734,186.912L65.379,189.193C68.216,189.688 76.297,187.305 70.835,184.93"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#8C8C99"
-            android:fillType="evenOdd"
-            android:pathData="M30.041,88.144C30.271,84.932 63.179,83.921 63.398,88.951C65.423,135.37 63.49,166.953 60.342,177.421C60.289,177.596 60.222,177.766 60.121,177.917C58.971,179.658 56.294,179.679 54.037,178.58C53.247,178.195 52.783,177.357 52.827,176.479C53.456,163.973 52.182,137.628 47.447,112.726C47.382,112.382 47.304,111.581 47.265,111.928C47.265,111.928 39.665,176.602 39.544,181.016C39.473,183.613 35.7,184.136 34.272,183.248C33.785,182.945 32.275,181.738 32.226,181.049C30.545,157.173 28.959,103.245 30.041,88.144"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M58.826,17.418C59.638,0.481 28.792,7.125 41.295,25.453C43.092,28.162 44.675,32.24 48.665,33.166L49.93,21.575C53.875,18.769 57.465,16.593 58.826,17.418"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="evenOdd"
-            android:pathData="M41.945,20.911C39.61,19.691 39.194,22.536 40.157,24.474C40.871,25.977 42.965,27.893 43.276,25.737C42.968,24.917 42.814,21.461 41.945,20.911"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M82.658,93.335C82.584,93.844 88.288,92.058 88.465,92.109C89.521,92.542 92.523,79.314 92.92,78.779C93.152,78.619 92.585,77.608 91.98,77.545L86.68,78.408C85.132,77.569 82.704,91.731 82.211,92.256C82.017,92.789 82.326,93.043 82.658,93.335"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="evenOdd"
-            android:pathData="M91.551,84.565C91.021,84.105 90.585,85.998 89.691,86.151C88.715,86.318 87.709,86.807 87.084,87.524C82.558,95.336 96.023,93.132 91.551,84.565"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="evenOdd"
-            android:pathData="M30.369,95.972C29.113,94.363 26.782,91.37 24.668,88.615C17.472,79.295 29.739,65.322 35.474,58.408L26.402,53.332C15.164,77 8.563,82.905 27.406,99.351C27.99,103.871 36.731,106.486 38.54,101.577C39.141,98.07 33.941,95.353 30.369,95.972"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B1DAEF"
-            android:fillType="evenOdd"
-            android:pathData="M60.972,39.611C57.151,35.638 50.78,36.319 44.797,35.959C39.757,37.195 35.663,38.558 32.647,40.286C31.986,40.585 31.33,41.025 30.681,41.585C29.305,42.643 28.264,43.83 27.587,45.187C21.374,54.213 16.271,72.052 14.477,78.08C13.712,80.653 21.425,83.419 23.049,81.857C26.156,78.87 29.752,65.971 29.752,65.971L29.813,91.976C29.816,92.734 30.247,93.424 30.928,93.755C38.814,97.584 56.433,96.281 62.299,93.588C63.104,93.219 63.634,92.434 63.662,91.549L63.912,83.596C64.18,75.745 63.961,69.385 64.173,60.865L69.801,71.126C70.199,71.919 71.507,72.607 71.926,72.573C73.548,72.442 77.536,71.964 79.255,66.927C79.715,65.575 68.249,46.289 60.972,39.611"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="evenOdd"
-            android:pathData="M48.507,40.452C50.605,40.757 52.632,39.277 52.694,37.102C52.694,37.102 53.078,26.268 53.078,26.268C53.147,24.348 51.631,22.719 49.709,22.652C47.612,22.344 45.585,23.827 45.523,26L43.623,36.357C43.554,38.278 46.586,40.383 48.507,40.452"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="evenOdd"
-            android:pathData="M58.841,17.396C58.215,10.771 49.257,11.383 43.725,15.511C43.396,16.644 42.841,18.731 41.994,20.463C42.465,22.797 42.737,26.491 43.58,28.702C44.97,30.884 49.682,34.942 52.803,34.634C58.223,32.445 59.442,21.362 58.841,17.396"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M50.556,28.166C50.556,28.166 54.502,28.226 54.502,28.226C55.266,28.26 54.952,29.198 54.826,29.653C54.283,31.882 50.474,31.552 49.997,29.43C49.832,28.97 49.877,28.144 50.556,28.166M58.54,15.002C58.54,15.002 61.688,7.469 57.814,5.684C55.617,4.671 52.354,4.509 49.975,5.698C47.495,6.938 45.613,6.095 43.596,7.445C37.239,11.772 37.253,15.438 39.433,22.002C39.765,20.597 40.233,20.663 40.855,19.577C42.441,21.56 42.837,21.163 42.916,24.589C42.938,25.32 43.234,26.318 42.837,26.715C42.269,27.283 43.175,28.362 43.351,28.698C44.742,30.88 48.815,35.689 52.797,35.344C55.51,35.109 56.872,30.285 57.928,27.05C56.646,30.268 56.542,26.892 54.586,27.003C53.479,27.133 50.024,26.49 49.204,27.512C48.656,28.159 47.736,28.41 47.002,27.917C45.347,27.097 44.68,26.183 44.324,24.894C44.223,24.344 44.124,23.846 44.035,23.39C44.008,23.188 43.981,22.982 43.954,22.765L43.921,22.765C43.59,20.856 43.608,19.484 45.026,16.853C45.029,16.743 44.681,13.685 47.841,13.21C47.883,13.123 47.838,13.053 47.73,12.997C51.205,12.091 55.166,12.781 58.54,15.002"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_risk_card_calendar.xml b/Corona-Warn-App/src/main/res/drawable/ic_risk_card_calendar.xml
index 1c1e8318d7d7e2208aee65d71993fd6259b5c696..de17816830d33793a8183ada0991a845b7105c45 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_risk_card_calendar.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_risk_card_calendar.xml
@@ -4,7 +4,7 @@
     android:viewportWidth="41"
     android:viewportHeight="40">
     <path
-        android:fillAlpha="0.920000017"
+        android:fillAlpha="1"
         android:fillColor="#FFFFFF"
         android:fillType="evenOdd"
         android:pathData="M17.0732,19L15.122,19L15.122,21L17.0732,21L17.0732,19ZM20.9756,19L19.0244,19L19.0244,21L20.9756,21L20.9756,19ZM24.878,19L22.9268,19L22.9268,21L24.878,21L24.878,19ZM26.8293,12L25.8537,12L25.8537,10L23.9024,10L23.9024,12L16.0976,12L16.0976,10L14.1463,10L14.1463,12L13.1707,12C12.0878,12 11.2293,12.9 11.2293,14L11.2195,28C11.2195,29.1 12.0878,30 13.1707,30L26.8293,30C27.9024,30 28.7805,29.1 28.7805,28L28.7805,14C28.7805,12.9 27.9024,12 26.8293,12ZM26.8293,28L13.1707,28L13.1707,17L26.8293,17L26.8293,28Z"
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_risk_details_mask.xml b/Corona-Warn-App/src/main/res/drawable/ic_risk_details_mask.xml
index cf71a2875b89e0e56b7d680ba820dd3ecd446aec..5dc085308f4c95090db8c7af131ffaca94a37193 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_risk_details_mask.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_risk_details_mask.xml
@@ -1,20 +1,12 @@
 <vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="28dp"
-    android:height="28dp"
-    android:viewportWidth="28"
-    android:viewportHeight="28">
-    <path
-        android:fillColor="#3C4143"
-        android:fillType="nonZero"
-        android:pathData="M14,5.4091C12.4524,5.4091 7,6.0455 7,12.4091L7,14.9545L7,15.5909C7,16.5561 7.4227,17.2433 7.8539,17.6206C8.1168,17.8506 8.2268,17.8542 8.4032,17.9238C8.6329,18.5174 10.0958,21.9065 13.9267,21.9508C13.951,21.9535 13.9755,21.9546 14,21.9546C14.0253,21.9548 14.0506,21.9536 14.0758,21.9508C17.9048,21.905 19.3671,18.5173 19.5968,17.9238C19.7732,17.8542 19.8832,17.8506 20.1461,17.6206C20.5773,17.2433 21,16.5561 21,15.5909L21,14.3182L21,12.4091C21,9.8636 19.7273,6.6818 17.1818,6.6818C17.1818,6.6818 16.5455,5.4091 14,5.4091ZM17.1818,9.2273C17.1818,9.2273 19.0909,10.9836 19.0909,14.9545L19.7273,14.9545L19.7273,15.5909C19.7273,16.2167 19.5136,16.484 19.3084,16.6635C19.1033,16.843 18.9368,16.8823 18.9368,16.8823L18.5975,16.9668L18.4869,17.2987C18.4869,17.2987 17.3939,20.6818 14,20.6818C10.6061,20.6818 9.5131,17.2987 9.5131,17.2987L9.4025,16.9668L9.0632,16.8823C9.0632,16.8823 8.8967,16.843 8.6916,16.6635C8.4864,16.484 8.2727,16.2167 8.2727,15.5909L8.2727,14.9545L8.9091,14.9545C8.9091,10.5 15.2727,13.6818 17.1818,9.2273ZM11.1364,14.3182C10.6092,14.3182 10.1818,14.7455 10.1818,15.2727C10.1818,15.7999 10.6092,16.2273 11.1364,16.2273C11.6635,16.2273 12.0909,15.7999 12.0909,15.2727C12.0909,14.7455 11.6635,14.3182 11.1364,14.3182ZM16.8636,14.3182C16.3365,14.3182 15.9091,14.7455 15.9091,15.2727C15.9091,15.7999 16.3365,16.2273 16.8636,16.2273C17.3908,16.2273 17.8182,15.7999 17.8182,15.2727C17.8182,14.7455 17.3908,14.3182 16.8636,14.3182Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#FFFFFF"
-        android:fillType="evenOdd"
-        android:pathData="M8.6834,17.802C10.3302,17.802 11.6804,17.4543 12.7339,16.7589L12.7339,16.7589C13.3893,16.3262 14.2372,16.3172 14.9017,16.7358C16.0301,17.4466 17.5017,17.802 19.3166,17.802C18.1496,19.6049 18.1381,22.1385 13.8049,22.1385C9.4717,22.1385 9.7883,19.4673 8.6834,17.802Z"
-        android:strokeWidth="1.6"
-        android:strokeColor="#3C4143"
-        android:strokeLineCap="round"
-        android:strokeLineJoin="round" />
+    android:width="24dp"
+    android:height="24dp"
+    android:viewportWidth="24"
+    android:viewportHeight="24">
+  <path
+      android:fillColor="#FFFFFF"
+      android:fillType="nonZero"
+      android:pathData="M11.8795,1.35C11.5912,1.35 11.3113,1.3606 11.0387,1.3812C11.0286,1.382 11.0194,1.384 11.0093,1.3848C7.2436,1.68 5.0005,3.9281 4.7303,7.6842C4.7113,7.9406 4.7018,8.2026 4.7018,8.4698C4.7018,9.1394 4.9291,10.278 5.1788,11.2294C5.2594,11.5515 5.3355,11.8215 5.4107,12.064C5.2779,12.1752 5.1507,12.2491 5.021,12.4465C4.8013,12.7809 4.6381,13.2577 4.7045,13.8223C4.7048,13.8223 4.7051,13.8223 4.7054,13.8223C4.8133,14.7378 5.1011,15.3573 5.3812,15.7483C5.5814,16.0277 5.6986,16.084 5.8065,16.1611C5.9491,16.9706 6.4615,17.9228 7.2251,18.8967C8.0323,19.926 9.0885,20.9129 10.2496,21.4646C10.6679,21.9879 11.2869,22.35 12.0061,22.35C12.725,22.35 13.3433,21.9882 13.7618,21.4655C14.9201,20.913 15.9701,19.9239 16.772,18.894C17.5292,17.9214 18.0364,16.9707 18.179,16.1638C18.2902,16.087 18.4049,16.0349 18.6061,15.7608C18.8907,15.3729 19.1835,14.7549 19.2918,13.8384C19.3584,13.2719 19.1915,12.7929 18.9699,12.4554C18.8379,12.2546 18.7089,12.178 18.574,12.064C18.7528,11.4893 18.8959,10.9299 19.0091,10.3841C19.031,10.2813 19.0547,10.1867 19.0751,10.0801C19.1016,9.9386 19.1281,9.7976 19.15,9.6583C19.1558,9.6218 19.1613,9.5855 19.1669,9.5487C19.1882,9.4065 19.2067,9.2658 19.2231,9.126C19.2308,9.0619 19.2386,8.9984 19.2454,8.9334C19.2601,8.7905 19.2715,8.6493 19.2811,8.509C19.2849,8.4532 19.2896,8.3985 19.2927,8.3423C19.3036,8.1391 19.3105,7.9385 19.3105,7.7413C19.3105,7.5401 19.2977,7.338 19.2784,7.1359C19.2763,7.115 19.2753,7.0954 19.273,7.0744C19.2486,6.8426 19.2111,6.612 19.1607,6.3851C19.1596,6.3801 19.1582,6.375 19.1571,6.37C19.1327,6.2615 19.1055,6.1543 19.0751,6.0481C19.0667,6.0183 19.0573,5.9887 19.0483,5.9589C19.0206,5.8676 18.9915,5.777 18.9592,5.6878C18.9427,5.6418 18.9236,5.5964 18.9057,5.5505C18.8799,5.4853 18.8547,5.4199 18.8263,5.3562C18.7887,5.2704 18.7463,5.1864 18.7033,5.102C18.6927,5.0816 18.6829,5.0607 18.6721,5.0405C18.6503,4.9994 18.6318,4.9572 18.6088,4.9166C18.5719,4.8517 18.5287,4.7897 18.4875,4.7267C18.4857,4.7239 18.4839,4.7213 18.4822,4.7186C18.4271,4.635 18.3682,4.5538 18.3056,4.4743C18.2757,4.4355 18.245,4.3977 18.2138,4.3602C18.1809,4.3219 18.1478,4.284 18.113,4.247C17.5737,3.6525 16.8487,3.2481 15.9187,3.185C15.5431,2.6288 14.6018,1.6168 12.6642,1.3955C12.6281,1.3912 12.5903,1.3884 12.5536,1.3848C12.4689,1.3766 12.3852,1.3676 12.2968,1.3625C12.1616,1.3544 12.0226,1.35 11.8795,1.35ZM15.4274,7.0021C15.8711,7.7093 16.5714,9.0537 16.5714,10.4849C16.5784,11.1357 16.7932,12.1528 17.4942,12.5125C16.6691,13.215 15.7404,13.8027 14.8594,14.2316C13.7643,14.7646 12.7264,15.0457 12.1479,15.0457C11.5213,15.0457 10.437,14.7759 9.2911,14.2637C8.3695,13.8518 7.399,13.2862 6.5341,12.607C7.0873,12.204 7.3145,11.111 7.4409,10.4804C7.7267,9.0552 9.2949,8.6543 11.5496,8.6543C13.6734,8.6543 14.864,7.6705 15.4274,7.0021ZM9.4953,12.3065C9.1171,12.3065 8.8105,12.6131 8.8105,12.9913C8.8105,13.3695 9.1171,13.6761 9.4953,13.6761C9.8735,13.6761 10.1801,13.3695 10.1801,12.9913C10.1801,12.6131 9.8735,12.3065 9.4953,12.3065ZM14.517,12.3065C14.1388,12.3065 13.8322,12.6131 13.8322,12.9913C13.8322,13.3695 14.1388,13.6761 14.517,13.6761C14.8952,13.6761 15.2018,13.3695 15.2018,12.9913C15.2018,12.6131 14.8952,12.3065 14.517,12.3065ZM18.2628,13.0555C18.3581,13.232 18.4188,13.4449 18.385,13.7323C18.2932,14.5078 18.0608,14.9611 17.8705,15.2204C17.6801,15.4799 17.5753,15.5227 17.5753,15.5227C17.4408,15.5938 17.3506,15.7272 17.3346,15.8784C17.2872,16.3299 16.7994,17.3725 16.0515,18.3331C15.9854,18.4181 15.9075,18.4987 15.8375,18.5828C15.6303,17.3908 15.4624,15.9737 15.9526,14.6819C16.7438,14.2388 17.5392,13.697 18.2628,13.0555ZM5.6969,13.1054C6.3638,13.6617 7.0918,14.1403 7.8234,14.5445C8.3558,15.8133 8.2201,17.2193 8.0196,18.4214C7.9956,18.3915 7.9673,18.3631 7.9438,18.3331C7.1902,17.3721 6.6988,16.3278 6.6518,15.8784C6.636,15.7302 6.5488,15.5991 6.4182,15.5271C6.4182,15.5271 6.3135,15.4815 6.124,15.2168C5.9344,14.9522 5.7029,14.4926 5.6113,13.7153L5.6122,13.7153C5.5822,13.4602 5.6233,13.2658 5.6969,13.1054Z"
+      android:strokeWidth="1"
+      android:strokeColor="#00000000" />
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_risk_details_sneeze.xml b/Corona-Warn-App/src/main/res/drawable/ic_risk_details_sneeze.xml
index e7ecd1c92a795f0f8d4993b8ac9c888a5051f0c6..dc5896ac243a9840d8d1588c1331c4f060a786b8 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_risk_details_sneeze.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_risk_details_sneeze.xml
@@ -1,18 +1,12 @@
 <vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="28dp"
-    android:height="28dp"
-    android:viewportWidth="28"
-    android:viewportHeight="28">
-    <path
-        android:fillColor="#404040"
-        android:fillType="nonZero"
-        android:pathData="M5.415,3.8182C5.4126,3.8201 5.4115,3.8206 5.4091,3.8232L5.4091,20.3636L7.8439,20.3636L7.8439,19.5768C7.8439,18.9894 8.348,18.0001 8.902,18.0968L10.0861,18.3031C10.8238,18.4317 11.496,17.8373 11.496,17.0552L11.496,16.4349L10.3916,16.251C9.9759,16.181 9.6775,15.9722 9.6775,15.5324C9.6775,15.0926 9.9759,15.0938 10.3916,15.0237L11.276,15.0237C11.385,15.0237 11.4739,14.9365 11.4759,14.8275L11.496,13.7518L11.496,13.7518L12.8787,13.3383C13.1407,13.261 13.3217,13.0113 13.3221,12.7267C13.322,12.5668 13.2643,12.4128 13.1604,12.2954L11.4723,10.1798C11.2245,6.6145 8.9036,3.8206 5.415,3.8182ZM15.1482,13.9995C14.812,13.9995 14.5395,14.2845 14.5395,14.6359C14.5395,14.9874 14.812,15.2723 15.1482,15.2723C15.4844,15.2723 15.7569,14.9874 15.7569,14.6359C15.7569,14.2845 15.4844,13.9995 15.1482,13.9995ZM13.3221,15.2723C12.986,15.2723 12.7134,15.5573 12.7134,15.9088C12.7134,16.2602 12.986,16.5452 13.3221,16.5452C13.6583,16.5452 13.9308,16.2602 13.9308,15.9088C13.9308,15.5573 13.6583,15.2723 13.3221,15.2723ZM16.9743,15.2723C16.6381,15.2723 16.3656,15.5573 16.3656,15.9088C16.3656,16.2602 16.6381,16.5452 16.9743,16.5452C17.3105,16.5452 17.583,16.2602 17.583,15.9088C17.583,15.5573 17.3105,15.2723 16.9743,15.2723ZM15.1482,16.5452C14.812,16.5452 14.5395,16.8301 14.5395,17.1816C14.5395,17.5331 14.812,17.818 15.1482,17.818C15.4844,17.818 15.7569,17.5331 15.7569,17.1816C15.7569,16.8301 15.4844,16.5452 15.1482,16.5452ZM16.9743,17.818C16.6381,17.818 16.3656,18.1029 16.3656,18.4544C16.3656,18.8059 16.6381,19.0908 16.9743,19.0908C17.3105,19.0908 17.583,18.8059 17.583,18.4544C17.583,18.1029 17.3105,17.818 16.9743,17.818Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#404040"
-        android:fillType="nonZero"
-        android:pathData="M12.5622,22.3406C10.9452,22.3406 10.4697,21.5998 10.4381,20.6937C10.4064,19.7875 11.2931,19.0056 12.9245,18.2763C15.1482,16.5452 15.712,16.8488 16.4725,15.8007C14.7327,14.2932 15.553,12.4303 14.7744,11.0264C14.1532,11.2182 13.7362,10.8623 13.5176,10.7033L12.4454,10.43C12.3927,10.4174 12.3442,10.3953 12.3015,10.3644C12.0759,10.2003 12.0632,9.8326 12.2732,9.5431C12.417,9.3453 13.3152,9.8102 13.5176,9.8216L13.8501,9.2687L13.7422,8.621L12.3351,8.2654C12.2797,8.253 12.2287,8.2302 12.1842,8.1978C11.9585,8.0336 11.9458,7.6659 12.1559,7.3765C12.261,7.2319 12.4081,7.1278 12.5622,7.0888L14.4944,6.6535L14.517,6.6559C14.6798,6.5945 14.8431,6.6091 14.9635,6.696L16.1893,7.5877C16.31,7.6753 16.375,7.8268 16.3669,8.0016C16.3683,8.0569 16.3934,9.0038 16.5058,9.3881C16.8141,10.4387 17.1637,10.7983 18.0427,11.9245C18.9065,13.0318 19.116,14.2927 19.6866,14.9454C19.836,15.1081 19.8455,15.3841 19.7102,15.6287C19.7094,15.6306 19.7096,15.6337 19.7088,15.6356C19.3564,16.5452 19.1182,17.1816 18.5438,18.1081C17.9695,19.0347 16.9769,20.2308 16.3669,20.6937C15.7569,21.1565 14.1792,22.3406 12.5622,22.3406Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
+    android:width="24dp"
+    android:height="24dp"
+    android:viewportWidth="24"
+    android:viewportHeight="24">
+  <path
+      android:fillColor="#FFFFFF"
+      android:fillType="nonZero"
+      android:pathData="M9.0652,2.7196C3.8563,2.7196 2,6.5001 2,10.0378C2,12.402 2.5774,13.3497 3.1345,14.2651C3.6695,15.1414 4.1739,15.9719 4.1739,18.2274L4.1739,20.5457C4.1739,20.7851 4.3692,20.9804 4.6087,20.9804L10.2609,20.9804C10.5003,20.9804 10.6957,20.7851 10.6957,20.5457L10.6957,20.1109C10.6957,20.1109 11.91,20.9804 13.3043,20.9804C13.7748,20.9804 15.913,20.6357 15.913,18.8065C15.913,18.6486 15.9895,18.5518 16.1168,18.4125C16.2731,18.2376 16.4888,17.9964 16.2188,17.5276C16.054,17.2423 15.7466,17.0674 15.4171,17.0674L15.356,17.0674C15.3475,17.0674 15.3373,17.0674 15.3288,17.0674C13.7816,17.0572 12.0017,16.9468 12.5791,15.7274C12.9783,14.8935 14.0296,14.8935 15.0435,14.8935L16.3478,14.8935C16.4905,14.8935 16.6247,14.8221 16.7062,14.705C16.786,14.5878 16.8047,14.4366 16.7537,14.3024C16.6026,13.9084 16.6552,14.0324 16.6977,13.8863L17.9562,13.134C18.216,12.9913 18.4029,12.7552 18.481,12.4733C18.5591,12.1931 18.5234,11.8976 18.3791,11.6394C18.3604,11.6054 18.3383,11.5749 18.3128,11.5494L16.3478,9.5012C16.3342,7.4631 15.7245,5.7783 14.5798,4.6234C13.3298,3.3599 11.4735,2.7196 9.0652,2.7196ZM11.966,9.243C12.0221,9.2379 12.0798,9.2447 12.1376,9.2634L14.7463,10.1329C14.9738,10.2094 15.0978,10.4556 15.0214,10.6832C14.9603,10.8649 14.7904,10.9804 14.6087,10.9804C14.5628,10.9804 14.517,10.9719 14.4711,10.9584L11.8624,10.0888C11.6349,10.0124 11.5126,9.7661 11.5873,9.5385C11.645,9.3687 11.7962,9.2566 11.966,9.243ZM21.5652,13.1543C21.3257,13.1543 21.1304,13.3497 21.1304,13.5891C21.1304,13.8286 21.3257,14.0239 21.5652,14.0239C21.8047,14.0239 22,13.8286 22,13.5891C22,13.3497 21.8047,13.1543 21.5652,13.1543ZM20.2609,14.0239C20.0214,14.0239 19.8261,14.2192 19.8261,14.4587C19.8261,14.6982 20.0214,14.8935 20.2609,14.8935C20.5003,14.8935 20.6957,14.6982 20.6957,14.4587C20.6957,14.2192 20.5003,14.0239 20.2609,14.0239ZM18.9565,14.8935C18.7171,14.8935 18.5217,15.0888 18.5217,15.3283C18.5217,15.5677 18.7171,15.763 18.9565,15.763C19.196,15.763 19.3913,15.5677 19.3913,15.3283C19.3913,15.0888 19.196,14.8935 18.9565,14.8935ZM21.5652,14.8935C21.3257,14.8935 21.1304,15.0888 21.1304,15.3283C21.1304,15.5677 21.3257,15.763 21.5652,15.763C21.8047,15.763 22,15.5677 22,15.3283C22,15.0888 21.8047,14.8935 21.5652,14.8935ZM17.6522,15.763C17.4127,15.763 17.2174,15.9584 17.2174,16.1978C17.2174,16.4373 17.4127,16.6326 17.6522,16.6326C17.8916,16.6326 18.087,16.4373 18.087,16.1978C18.087,15.9584 17.8916,15.763 17.6522,15.763ZM20.2609,15.763C20.0214,15.763 19.8261,15.9584 19.8261,16.1978C19.8261,16.4373 20.0214,16.6326 20.2609,16.6326C20.5003,16.6326 20.6957,16.4373 20.6957,16.1978C20.6957,15.9584 20.5003,15.763 20.2609,15.763ZM18.9565,16.6326C18.7171,16.6326 18.5217,16.8279 18.5217,17.0674C18.5217,17.3069 18.7171,17.5022 18.9565,17.5022C19.196,17.5022 19.3913,17.3069 19.3913,17.0674C19.3913,16.8279 19.196,16.6326 18.9565,16.6326ZM21.5652,16.6326C21.3257,16.6326 21.1304,16.8279 21.1304,17.0674C21.1304,17.3069 21.3257,17.5022 21.5652,17.5022C21.8047,17.5022 22,17.3069 22,17.0674C22,16.8279 21.8047,16.6326 21.5652,16.6326ZM20.2609,17.5022C20.0214,17.5022 19.8261,17.6975 19.8261,17.937C19.8261,18.1764 20.0214,18.3717 20.2609,18.3717C20.5003,18.3717 20.6957,18.1764 20.6957,17.937C20.6957,17.6975 20.5003,17.5022 20.2609,17.5022ZM21.5652,18.3717C21.3257,18.3717 21.1304,18.5671 21.1304,18.8065C21.1304,19.046 21.3257,19.2413 21.5652,19.2413C21.8047,19.2413 22,19.046 22,18.8065C22,18.5671 21.8047,18.3717 21.5652,18.3717Z"
+      android:strokeWidth="1"
+      android:strokeColor="#00000000" />
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_risk_details_wash.xml b/Corona-Warn-App/src/main/res/drawable/ic_risk_details_wash.xml
index 7caf0f892425c53076eb625d78b337afc93cc62b..0e7eae98224589f6f81c3a82475b3d1882a7246d 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_risk_details_wash.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_risk_details_wash.xml
@@ -1,12 +1,12 @@
 <vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="28dp"
-    android:height="28dp"
-    android:viewportWidth="28"
-    android:viewportHeight="28">
-    <path
-        android:fillColor="#3C4143"
-        android:fillType="nonZero"
-        android:pathData="M9.8636,6.3636L9.8636,7C9.8636,7.3519 10.1481,7.6364 10.5,7.6364L12.782,7.6364L8.7773,11.641C8.5285,11.8898 8.5285,12.292 8.7773,12.5408C9.0262,12.7897 9.4284,12.7897 9.6772,12.5408L12.1456,10.0724L12.5185,10.4453L9.4137,13.5501C9.1649,13.7989 9.1649,14.2011 9.4137,14.4499C9.5378,14.574 9.7007,14.6364 9.8636,14.6364C10.0265,14.6364 10.1895,14.574 10.3136,14.4499L13.4183,11.3452L13.7912,11.718L11.3228,14.1864C11.074,14.4353 11.074,14.8375 11.3228,15.0863C11.4469,15.2104 11.6098,15.2727 11.7727,15.2727C11.9356,15.2727 12.0986,15.2104 12.2227,15.0863L14.6911,12.6179L15.0639,12.9908L13.8683,14.1864C13.6194,14.4353 13.6194,14.8375 13.8683,15.0863C13.9923,15.2104 14.1553,15.2727 14.3182,15.2727C14.4811,15.2727 14.644,15.2104 14.7681,15.0863L18.1239,11.7305C18.9779,10.8765 18.9779,9.4872 18.1239,8.6332L16.502,7.0112C16.1494,6.6586 15.6437,6.3636 14.9545,6.3636L11.7727,6.3636L10.5,6.3636L9.8636,6.3636ZM21.2958,7.6127C20.9817,7.6256 20.724,7.8658 20.6893,8.1783L19.255,17.7337C17.7883,17.4574 16.8636,16.5455 16.8636,16.5455C16.8636,16.5455 15.5909,17.8182 13.6818,17.8182C11.7727,17.8182 10.505,16.5455 10.505,16.5455C10.505,16.5455 9.5393,17.4492 8.1074,17.7299L6.6744,8.1783C6.6328,7.8713 6.3762,7.6388 6.0666,7.6277C5.876,7.621 5.6924,7.7003 5.5665,7.8435C5.4406,7.9868 5.3855,8.179 5.4165,8.3672L7.1628,20.0107C7.3024,20.9405 8.1105,21.6364 9.0508,21.6364L18.3129,21.6364C19.2531,21.6364 20.0621,20.941 20.2008,20.0107L21.9471,8.3672C21.9832,8.1765 21.9304,7.9797 21.8036,7.8328C21.6767,7.6858 21.4898,7.6048 21.2958,7.6127Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
+    android:width="24dp"
+    android:height="24dp"
+    android:viewportWidth="24"
+    android:viewportHeight="24">
+  <path
+      android:fillColor="#FFFFFF"
+      android:fillType="nonZero"
+      android:pathData="M16.0026,0.85L15.6203,1.4088C15.3115,1.8537 14.5909,2.9548 14.5909,3.5559C14.5909,4.3335 15.2251,4.9676 16.0026,4.9676C16.7802,4.9676 17.4144,4.3335 17.4144,3.5559C17.4144,2.9548 16.6938,1.8537 16.385,1.4088L16.0026,0.85ZM20.0026,2.0265L19.6203,2.5853C19.3243,3.0136 18.3556,4.464 18.3556,5.2029C18.3556,6.111 19.0946,6.85 20.0026,6.85C20.9107,6.85 21.6497,6.111 21.6497,5.2029C21.6497,4.464 20.681,3.0136 20.385,2.5853L20.0026,2.0265ZM8.8115,4.0265C8.703,4.0393 8.6074,4.0926 8.5321,4.1735C8.3813,4.3353 4.8151,8.1423 4.3115,8.7912C3.7949,9.4566 2.5412,12.2397 2.3997,12.5559C2.374,12.611 2.3574,12.6717 2.3556,12.7324C2.3519,12.8316 2.2931,14.5375 2.6791,16.1C2.9493,14.986 3.3482,13.5191 3.5909,12.9676C3.953,12.1478 6.5504,7.4254 6.5762,7.3794C6.7912,6.9915 7.192,6.7342 7.635,6.6735C7.6975,6.6643 7.749,6.6588 7.8115,6.6588C8.1901,6.6588 8.5615,6.8151 8.8262,7.0853L9.1644,7.4235C9.1736,7.4327 9.1718,7.4437 9.1791,7.4529C9.7251,6.6312 10.1056,5.6809 9.5173,4.6735L9.2821,4.2618C9.2067,4.1331 9.0762,4.043 8.9291,4.0265C8.8923,4.0228 8.8482,4.0228 8.8115,4.0265ZM17.0615,6.9235C16.9843,6.9309 16.8942,6.9493 16.8115,6.9676L9.8997,8.6294C10.1442,9.3886 10.0486,10.1478 9.885,10.7324L16.4879,7.3353C16.76,7.1956 17.0523,7.1294 17.3409,7.1294C17.7287,7.1294 18.0541,7.2581 18.3262,7.4382C18.0357,7.111 17.6056,6.8757 17.0615,6.9235ZM7.7526,7.6C7.6056,7.6202 7.4714,7.7048 7.3997,7.8353C7.2931,8.0283 4.7747,12.5982 4.4438,13.35C4.1037,14.1202 3.3574,17.2746 3.2968,17.6147C3.2949,17.6349 3.2986,17.6551 3.2968,17.6735C3.0982,21.3702 5.8776,22.6018 5.9879,22.6588C6.0284,22.679 6.0615,22.6938 6.1056,22.7029C6.1368,22.7085 6.9034,22.85 7.9438,22.85C9.2324,22.85 10.3556,22.6349 11.2821,22.2029C11.4273,22.1349 12.7526,21.4548 14.0321,20.8059L20.2232,17.6735C20.6681,17.4511 20.8427,16.9254 20.6203,16.4824C20.3979,16.0412 19.8574,15.8482 19.4144,16.0706L16.9291,17.3353L15.635,17.9824C15.567,18.0154 15.5008,18.0265 15.4291,18.0265C15.2563,18.0265 15.0854,17.9272 15.0026,17.7618C14.8868,17.5301 14.9769,17.2452 15.2085,17.1294L20.8115,14.3206C21.1699,14.0706 21.3078,13.5908 21.1056,13.1882C20.9071,12.793 20.4567,12.6092 20.0468,12.7324L14.7085,15.4088C14.6405,15.4419 14.5725,15.4529 14.5026,15.4529C14.3298,15.4529 14.1589,15.3537 14.0762,15.1882C13.9604,14.9566 14.0504,14.6717 14.2821,14.5559L20.2526,11.5706C20.6699,11.3371 20.8354,10.8243 20.6203,10.3941C20.3979,9.9529 19.8574,9.7746 19.4144,9.9971L14.6203,12.4088L13.1644,13.1588C13.0964,13.1938 13.0302,13.2029 12.9585,13.2029C12.7876,13.2029 12.6148,13.1018 12.5321,12.9382C12.4144,12.7066 12.5063,12.4235 12.7379,12.3059L14.2232,11.5559L14.2085,11.5412L17.8556,9.7029C18.3004,9.4805 18.4751,8.9401 18.2526,8.4971C18.0302,8.0559 17.4898,7.8776 17.0468,8.1L8.135,12.6L8.7232,11.1882C8.9935,10.5301 9.5504,9.157 8.4879,8.0706L8.1497,7.7324C8.0449,7.6257 7.8997,7.5816 7.7526,7.6Z"
+      android:strokeWidth="1"
+      android:strokeColor="#00000000" />
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_bluetooth_off.xml b/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_bluetooth_off.xml
index 326e296d851df5c37c5b14d121e0d1b959e9e698..5e2c11534ae1ad93a32dba8f28fc79226d395c93 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_bluetooth_off.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_bluetooth_off.xml
@@ -1,207 +1,266 @@
 <vector xmlns:android="http://schemas.android.com/apk/res/android"
     android:width="360dp"
-    android:height="221dp"
+    android:height="220dp"
     android:viewportWidth="360"
-    android:viewportHeight="221">
-    <group>
-        <clip-path android:pathData="M0.25,0.983h359.75v220h-359.75z" />
-        <path
-            android:fillColor="#EFF4F7"
-            android:fillType="nonZero"
-            android:pathData="M272.302,56.233m-19.597,0a19.597,19.597 0,1 1,39.194 0a19.597,19.597 0,1 1,-39.194 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CEDEE7"
-            android:fillType="nonZero"
-            android:pathData="M272.302,56.233m-13.634,0a13.634,13.634 0,1 1,27.268 0a13.634,13.634 0,1 1,-27.268 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#EFF4F7"
-            android:fillType="nonZero"
-            android:pathData="M98.681,80.98m-20.07,0a20.07,20.07 0,1 1,40.14 0a20.07,20.07 0,1 1,-40.14 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CEDEE7"
-            android:fillType="nonZero"
-            android:pathData="M98.681,80.98m-13.966,0a13.966,13.966 0,1 1,27.932 0a13.966,13.966 0,1 1,-27.932 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFC2B0"
-            android:fillType="evenOdd"
-            android:pathData="M318.328,61.418C316.524,64.119 316.947,67.721 319.329,69.935C320.998,71.171 322.666,69.703 322.666,67.945C322.452,66.264 322.117,64.602 321.665,62.969C321.356,61.89 320.33,61.7 319.997,60.87"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M306.082,18.233l0.734,8.02l-7.433,0.688l-1.393,-8.517z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M296.363,11.765C296.363,24.843 309.002,24.288 309.319,11.765C309.144,-1.115 296.522,-1.082 296.363,11.765"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#8D8D99"
-            android:fillType="evenOdd"
-            android:pathData="M314.107,62.496C323.05,64.213 311.763,125.12 311.137,135.479L307.8,135.578C307.275,135.429 305.515,77.316 304.105,78.353C302.248,84.653 300.042,90.847 297.498,96.906C296.58,109.785 296.722,123.312 295.354,135.885L291.842,136.714C290.507,137.17 288.905,97.055 288.455,96.773L290.841,78.652C291.183,78.37 293.302,62.496 294.662,63.251L314.082,62.512"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B2DBF0"
-            android:fillType="evenOdd"
-            android:pathData="M275.224,58.656C273.706,59.212 270.753,55.438 272.855,54.393C277.76,51.955 281.84,44.748 282.315,44.217C285.519,40.336 288.855,31.287 292.534,26.942C295.512,24.454 296.197,25.067 299.4,24.337C301.068,27.464 304.664,26.403 306.691,24.926C306.808,24.86 307.275,24.926 307.342,24.926C323.192,24.669 322.958,51.864 320.205,62.189C319.805,62.338 319.538,62.687 317.611,62.413C317.611,62.413 316.985,54.435 316.977,54.435C316.585,51.117 315.392,38.677 313.915,36.803C314.199,43.379 315.5,54.559 316.284,62.736C316.284,63.002 315.867,63.275 315.6,63.275L294.878,63.533C294.628,63.533 293.944,62.977 293.944,62.703C293.794,54.302 294.828,44.209 293.994,36.587C291.809,40.825 280.171,56.856 275.224,58.648"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M307.825,134.765L311.388,135.213C311.479,135.213 312.464,138.622 312.831,140.115C313.365,141.873 312.831,144.261 311.212,145.091C309.828,145.854 308.76,146.559 307.292,145.091C305.823,143.623 305.573,142.702 306.19,140.164C306.808,137.627 307.767,134.765 307.767,134.732"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M284.784,140.546L289.965,137.933L295.88,131.34C298.207,133.397 297.94,135.022 297.94,135.022C297.94,136.076 296.981,142.777 296.981,142.777L295.996,142.777L294.962,137.096C290.666,144.8 294.962,142.395 283.934,142.777C283.801,141.939 284.117,141.094 284.768,140.546"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M297.356,14.709C296.18,17.081 301.36,21.476 299.742,24.371C298.991,26.295 291.441,29.347 291.4,24.877C298.115,24.321 291.525,14.145 293.686,8.737C294.42,3.073 303.554,-1.704 308.109,2.716C315.659,8.887 306.549,23.102 314.724,24.959C314.382,29.886 307.091,26.386 305.815,23.649C304.046,18.922 311.655,16.326 307.767,7.427C306.427,10.069 304.146,12.12 301.369,13.183"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M276.159,62.131C276.217,62.521 271.787,61.144 271.654,61.177C270.82,61.517 268.501,51.308 268.192,50.893C268.008,50.769 268.45,49.989 268.926,49.939L273.039,50.611C274.24,49.956 276.125,60.887 276.509,61.293C276.659,61.708 276.417,61.899 276.159,62.123"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M269.251,55.355C269.668,55.007 270.002,56.466 270.703,56.583C271.475,56.707 272.184,57.08 272.722,57.644C276.234,63.673 265.781,61.973 269.251,55.355"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="evenOdd"
-            android:pathData="M80.554,50.641C80.554,50.641 89.616,65.136 95.26,75.266C95.659,75.978 98.004,79.548 98.128,80.236C98.128,80.236 97.688,85.205 95.535,84.021C88.46,76.094 77.229,57.971 73.904,54.493C70.138,50.558 80.554,50.641 80.554,50.641Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M65.125,170.891L55.797,163.934C54.211,163.316 52.482,163.158 50.809,163.478C49.978,163.652 49.895,163.047 49.912,163.801L48.964,166.891C48.083,168.953 48.448,170.535 50.809,171.438C54.226,172.374 61.982,176.457 65.457,173.873C66.97,173.111 67.12,171.653 65.158,170.891"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M83.597,168.357L73.288,162.145C71.778,161.705 70.168,161.734 68.675,162.227C67.843,162.476 67.951,161.888 67.802,162.625L67.112,165.797C66.422,167.918 67.112,169.392 69.514,170.088L78.825,172.076C81.319,172.506 88.377,170.419 83.597,168.357"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#8C8C99"
-            android:fillType="nonZero"
-            android:pathData="M47.908,83.963C48.108,81.163 76.896,80.277 77.088,84.667C78.858,125.129 77.171,152.652 74.419,161.78C74.373,161.931 74.308,162.075 74.228,162.211C73.214,163.727 70.903,163.751 68.899,162.791C68.212,162.445 67.797,161.726 67.843,160.96C68.392,150.06 67.278,127.092 63.138,105.391C63.08,105.092 63.013,104.388 62.98,104.695C62.98,104.695 56.329,161.068 56.221,164.911C56.163,167.181 52.896,167.636 51.607,166.858C51.183,166.592 49.862,165.541 49.82,164.944C48.349,144.129 46.96,97.124 47.908,83.963Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="nonZero"
-            android:pathData="M73.072,22.314C73.787,7.554 46.802,13.344 57.734,29.321C59.306,31.682 60.694,35.235 64.185,36.039L65.291,25.933C68.758,23.49 71.9,21.593 73.072,22.314Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="nonZero"
-            android:pathData="M58.325,25.362C56.28,24.293 55.914,26.778 56.762,28.468C57.385,29.777 59.214,31.442 59.488,29.57C59.214,28.849 59.081,25.834 58.325,25.362Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M93.939,88.485C93.872,88.933 98.868,87.376 99.018,87.417C99.941,87.798 102.568,76.268 102.917,75.821C103.125,75.688 102.626,74.802 102.086,74.752L97.455,75.498C96.092,74.769 93.972,87.094 93.54,87.574C93.382,88.013 93.648,88.237 93.939,88.485Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="nonZero"
-            android:pathData="M101.72,80.84C101.254,80.443 100.888,82.091 100.057,82.224C99.186,82.364 98.385,82.786 97.779,83.425C93.855,90.233 105.635,88.311 101.72,80.84Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="nonZero"
-            android:pathData="M48.199,90.788C47.093,89.38 45.057,86.771 43.211,84.377C36.91,76.252 47.642,64.068 52.663,58.046L44.724,53.623C34.89,74.247 29.12,79.399 45.639,93.728C46.146,97.671 53.794,99.949 55.373,95.675C55.872,92.619 51.317,90.25 48.199,90.788Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B1DAEF"
-            android:fillType="evenOdd"
-            android:pathData="M74.968,41.629C71.642,38.159 66.056,38.755 60.835,38.441C57.137,39.22 53.561,40.491 50.203,42.218C49.58,42.508 49.003,42.888 48.49,43.344C47.357,44.169 46.429,45.243 45.78,46.483C40.343,54.352 35.879,69.899 34.308,75.158C33.643,77.403 40.385,79.813 41.79,78.471C44.508,75.871 47.659,64.631 47.659,64.631L47.709,87.293C47.709,87.952 48.086,88.553 48.681,88.842C55.581,92.155 70.994,91.045 76.115,88.701C76.816,88.377 77.275,87.689 77.304,86.92L77.528,79.987C77.761,73.146 77.57,67.604 77.753,60.175L82.674,69.12C83.095,69.776 83.769,70.232 84.536,70.379C87.524,70.316 90.123,68.322 90.946,65.459C91.361,64.291 81.336,47.477 74.968,41.629Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="evenOdd"
-            android:pathData="M64.061,42.391C64.945,42.542 65.852,42.308 66.552,41.749C67.253,41.191 67.68,40.36 67.727,39.468L68.084,30.033C68.114,29.227 67.82,28.442 67.268,27.852C66.716,27.262 65.951,26.914 65.141,26.886C64.253,26.723 63.338,26.948 62.628,27.505C61.918,28.061 61.483,28.895 61.434,29.793L59.771,38.822C59.713,40.478 62.365,42.333 64.044,42.391"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="nonZero"
-            android:pathData="M73.072,22.297C72.524,16.499 64.684,17.054 59.846,20.641C59.463,22.119 58.957,23.562 58.333,24.956C58.74,26.994 58.981,30.216 59.721,32.137C60.935,34.042 65.058,37.579 67.785,37.314C72.565,35.409 73.629,25.751 73.072,22.297Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="nonZero"
-            android:pathData="M72.84,20.21C72.84,20.21 75.566,13.642 72.241,12.085C70.056,11.127 67.568,11.127 65.383,12.085C63.213,13.161 61.567,12.432 59.804,13.609C54.243,17.377 54.251,20.575 56.163,26.29C56.446,25.064 56.828,25.147 57.369,24.236C58.757,25.967 59.106,25.619 59.173,28.609C59.173,29.247 59.447,30.116 59.106,30.456C58.607,30.953 59.397,31.897 59.555,32.187C60.769,34.092 64.335,38.283 67.818,37.985C70.188,37.778 71.385,33.57 72.307,30.754C71.185,33.554 71.094,30.613 69.381,30.754C68.417,30.862 65.391,30.307 64.676,31.193C64.22,31.787 63.387,31.941 62.747,31.549C61.589,31.094 60.719,30.115 60.403,28.915C60.32,28.435 60.228,28.004 60.153,27.607C60.153,27.424 60.104,27.25 60.079,27.06L60.079,27.06C59.788,25.403 59.804,24.194 61.043,21.908C60.942,21.155 61.15,20.394 61.619,19.795C62.088,19.197 62.78,18.812 63.537,18.727C63.537,18.653 63.537,18.595 63.446,18.545C66.673,17.769 70.079,18.373 72.84,20.21L72.84,20.21ZM65.856,31.69L69.306,31.74C69.98,31.74 69.705,32.568 69.589,32.99C69.115,34.929 65.782,34.647 65.366,32.792C65.225,32.386 65.266,31.69 65.856,31.69Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M188.867,221.031C188.187,213.401 187.706,205.763 186.786,198.142C184.862,182.276 182.224,166.511 179.911,150.695C171.858,149.659 166.251,148.97 166.251,148.97C166.251,148.97 151.431,146.607 151.224,153.399C151.017,160.191 167.728,163.633 167.728,163.633L169.079,163.633L170.274,173.51C170.274,173.51 157.228,189.268 158.165,194.526C159.103,199.784 167.288,197.495 167.288,197.495C167.288,197.495 162.478,211.834 166.169,215.616C168.872,218.394 171.601,217.175 171.601,217.175C171.601,217.175 164.759,223.378 167.844,228.902C169.196,231.331 177.165,232.036 177.165,232.036L190.045,231.63C189.195,228.163 188.805,224.6 188.884,221.031"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M193.296,260.706C188.431,261.386 183.934,257.999 183.244,253.135L166.492,133.935C165.812,129.069 169.2,124.572 174.064,123.883L221.842,117.174C226.708,116.489 231.208,119.879 231.893,124.746L248.646,243.937C249.325,248.805 245.933,253.304 241.066,253.989L193.296,260.706Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#00000000"
-            android:fillType="evenOdd"
-            android:pathData="M241.397,253.947L193.619,260.665C188.753,261.344 184.257,257.951 183.576,253.085L166.824,133.893C166.493,131.556 167.105,129.183 168.525,127.297C169.946,125.412 172.058,124.168 174.395,123.842L222.165,117.124C227.03,116.444 231.527,119.832 232.217,124.696L248.961,243.871C249.297,246.211 248.688,248.588 247.269,250.478C245.85,252.369 243.738,253.617 241.397,253.947Z"
-            android:strokeWidth="4.03"
-            android:strokeColor="#4A4A4A" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M285.626,209.744C285.626,209.744 279.281,208.085 272.804,198.415C266.327,188.745 260.364,165.549 256.093,163.069C256.093,163.069 254.526,142.808 244.126,141.282C244.126,141.282 240.809,126.612 239.73,126.578C238.652,126.545 232.98,126.404 231.271,133.561C229.563,140.719 231.769,153.863 238.561,157.678C238.561,157.678 250.462,241.623 250.479,241.872C250.81,248.631 250.139,248.283 249.226,250.589C257.321,252.629 300.462,265.641 335.941,276.422L335.941,221.048L285.626,209.744Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#C00F2D"
-            android:fillType="nonZero"
-            android:pathData="M215.558,173.504L201.988,163.278L203.342,172.915L204.074,178.118L188.061,166.049L185.807,169.042L203.935,182.703L196.622,192.407L199.614,194.662L205.332,187.073L207.418,201.912L215.405,191.389L223.853,197.744L226.124,194.724L209.181,181.966L211.453,178.95L215.558,173.504ZM206.957,171.712L210.312,174.241L208.426,176.726L207.573,176.102L206.957,171.712ZM209.869,192.435L209.042,186.552L212.397,189.08L209.869,192.435Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="nonZero"
-            android:pathData="M201.102,175.861l2.24,-2.947l8.111,6.036l-2.147,3.13z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
+    android:viewportHeight="220">
+  <group>
+    <clip-path
+        android:pathData="M0.25,0h359.75v220h-359.75z"/>
+    <path
+        android:pathData="M273.65,57.454C273.547,59.088 272.138,60.311 270.528,60.214C268.919,60.117 267.674,58.734 267.777,57.1C267.88,55.467 269.289,54.244 270.899,54.34C272.509,54.437 273.753,55.82 273.65,57.454Z"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M286.863,58.512C286.301,67.579 278.605,74.465 269.698,73.919C260.789,73.373 254.002,65.599 254.564,56.532C255.126,47.466 262.822,40.58 271.73,41.126C280.637,41.672 287.425,49.446 286.863,58.512Z"
+        android:strokeAlpha="0.35999998"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.35999998"/>
+    <path
+        android:pathData="M291.267,58.518C290.552,69.886 280.758,78.519 269.42,77.834C258.083,77.149 249.445,67.403 250.16,56.036C250.875,44.669 260.669,36.036 272.007,36.72C283.344,37.405 291.982,47.151 291.267,58.518Z"
+        android:strokeAlpha="0.14"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.14"/>
+    <path
+        android:pathData="M295.508,58.775C294.646,72.488 282.83,82.902 269.154,82.076C255.477,81.25 245.056,69.492 245.919,55.779C246.781,42.067 258.597,31.652 272.273,32.478C285.95,33.304 296.371,45.062 295.508,58.775Z"
+        android:strokeAlpha="0.04"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.04"/>
+    <path
+        android:pathData="M282.458,58.246C282.049,64.881 276.45,69.913 269.974,69.514C263.499,69.115 258.56,63.433 258.969,56.799C259.378,50.164 264.978,45.132 271.453,45.531C277.928,45.93 282.867,51.612 282.458,58.246Z"
+        android:strokeAlpha="0.5"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.5"/>
+    <path
+        android:pathData="M278.005,57.694C277.75,61.747 274.257,64.813 270.228,64.57C266.2,64.327 263.118,60.864 263.373,56.811C263.628,52.758 267.121,49.692 271.15,49.935C275.178,50.178 278.26,53.641 278.005,57.694Z"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M319.23,65.532C317.22,68.19 316.905,74.736 320.64,74.489C323.81,74.28 321.956,67.366 321.608,65.931C321.224,64.348 321.134,65.693 320.801,64.798"
+        android:strokeWidth="1"
+        android:fillColor="#FFC1AF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M306.395,19.746l0.675,8.585l-7.909,0.641l-1.376,-9.127z"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M296.165,12.665C296.007,26.659 309.449,26.227 309.946,12.796C309.896,-0.922 296.474,-1.048 296.165,12.665"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M314.955,67.154C320.875,89.327 316.041,121.398 314.729,147.1L310.692,147.295C310.692,147.295 307.708,105.582 306.575,96.103C306.23,93.225 305.157,87.074 304.617,84.401C304.576,84.198 304.131,83.32 304.096,84.355C303.872,90.908 301.041,98.157 300.501,105.369C299.239,122.224 299.763,133.935 299.321,147.836C299.321,147.836 294.682,150.682 294.673,150.652C293.633,146.79 290.502,114.901 290.425,110.114C290.409,109.132 288.808,88.702 293.681,67.821L314.955,67.154Z"
+        android:strokeWidth="1"
+        android:fillColor="#385460"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M274.37,61.957C272.746,62.537 269.653,58.459 271.905,57.367C277.153,54.821 281.584,47.159 282.096,46.599C285.585,42.489 288.116,33.63 292.069,29.029C295.27,26.445 295.396,27.276 298.807,26.544C301.37,29.941 305.758,27.966 307.02,26.598C307.17,26.436 307.582,26.629 307.649,26.588C313.221,27.275 316.275,30.67 319.134,36.104C321.044,39.734 322.285,45.623 322.418,49.7C322.647,56.684 322.566,61.948 322.199,66.807C322.164,67.264 320.14,67.137 318.096,66.823C318.085,66.821 316.836,50.441 316.828,50.436C316.154,46.668 314.673,41.334 313.988,38.985C314.204,46.021 314.402,57.552 315.374,66.484C315.421,66.921 315.356,67.75 314.96,67.71C314.96,67.71 302.143,69.52 296.916,68.475C296.168,68.325 293.617,68.056 293.565,67.51C292.706,58.631 295.247,48.873 294.67,38.985C292.999,45.244 282.294,59.131 274.37,61.957"
+        android:strokeWidth="1"
+        android:fillColor="#E8A5A1"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M312.971,28.399C312.332,28.078 312.679,28.136 310.777,27.417C309.236,26.834 307.419,27.063 306.961,26.627C305.998,25.712 305.538,23.888 305.886,22.255C306.074,21.372 306.419,21.009 306.609,20.785C310.876,15.767 308.204,7.663 308.204,7.663C308.204,7.663 305.78,12.617 296.821,15.921C296.821,15.921 297.162,18.242 298.452,19.896C298.546,20.016 299.518,20.917 299.536,22.308C299.553,23.672 299.538,25.055 298.582,27.135C297.414,29.676 294.517,30.256 292.334,29.352C290.705,28.677 290.07,27.032 290.014,25.417C290.014,25.417 294.473,25.733 293.482,20.737C292.741,16.982 291.903,8.79 295.656,4.103C295.71,4.039 295.763,3.974 295.816,3.909C295.853,3.86 295.896,3.812 295.939,3.767C296.016,3.678 296.096,3.591 296.175,3.507C296.251,3.43 296.327,3.352 296.403,3.274C297.577,2.113 299.113,1.247 301.112,0.839C301.112,0.839 308.733,-0.117 309.989,4.358C309.989,4.358 312.075,5.434 312.293,9.372C312.507,13.311 311.832,14.744 311.665,17.761C311.464,21.428 311.482,24.736 316.23,24.76C316.23,24.76 315.78,26.898 312.971,28.399"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M275.699,64.809C275.72,65.327 275.243,65.724 274.729,65.649C273.357,65.45 270.659,64.579 270.536,64.613C269.66,64.96 267.157,54.196 266.99,53.563C266.941,53.377 266.995,53.171 267.21,52.913C267.42,52.661 267.753,52.549 268.075,52.61C268.86,52.758 270.992,53.16 271.882,53.328C272.229,53.394 272.528,53.613 272.692,53.926C273.834,56.112 275.672,64.272 275.698,64.796C275.699,64.801 275.699,64.805 275.699,64.809"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M268.063,58.353C268.505,57.978 268.845,59.546 269.583,59.681C269.905,59.74 270.23,59.842 270.538,59.981C271.299,60.326 271.863,60.992 272.17,61.769C274.287,67.123 264.478,65.023 268.063,58.353"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M310.539,143.409L314.38,144.178C314.805,145.869 318.079,153.218 314.379,154.907C312.924,155.749 311.798,156.52 310.214,154.974C306.815,152.994 310.474,144.786 310.539,143.409"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M299.294,145.279C299.182,146.152 300.125,152.348 299.225,152.925C298.932,153.268 298.588,153.409 298.428,153.464C293.75,153.547 288.418,153.642 283.741,153.725C281.098,150.91 294.153,149.894 293.859,145.235C295.671,145.25 297.482,145.264 299.294,145.279"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M102.344,81.408C102.235,83.14 100.741,84.437 99.035,84.334C97.329,84.232 96.01,82.766 96.119,81.034C96.228,79.302 97.722,78.006 99.428,78.108C101.134,78.211 102.453,79.677 102.344,81.408Z"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M116.35,82.53C115.754,92.141 107.597,99.44 98.154,98.861C88.712,98.282 81.518,90.042 82.113,80.431C82.709,70.821 90.866,63.522 100.308,64.101C109.751,64.679 116.945,72.92 116.35,82.53Z"
+        android:strokeAlpha="0.35999998"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.35999998"/>
+    <path
+        android:pathData="M121.018,82.537C120.26,94.586 109.878,103.737 97.861,103.011C85.843,102.286 76.686,91.954 77.445,79.905C78.202,67.856 88.585,58.705 100.602,59.431C112.62,60.156 121.776,70.488 121.018,82.537Z"
+        android:strokeAlpha="0.14"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.14"/>
+    <path
+        android:pathData="M125.514,82.808C124.6,97.344 112.075,108.383 97.578,107.508C83.08,106.632 72.034,94.169 72.949,79.633C73.863,65.098 86.388,54.059 100.885,54.934C115.382,55.81 126.429,68.273 125.514,82.808Z"
+        android:strokeAlpha="0.04"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.04"/>
+    <path
+        android:pathData="M111.681,82.248C111.248,89.281 105.312,94.615 98.448,94.192C91.584,93.769 86.348,87.746 86.782,80.714C87.215,73.681 93.152,68.347 100.015,68.77C106.879,69.193 112.115,75.216 111.681,82.248Z"
+        android:strokeAlpha="0.5"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.5"/>
+    <path
+        android:pathData="M106.96,81.663C106.69,85.959 102.987,89.209 98.717,88.951C94.447,88.694 91.18,85.023 91.45,80.727C91.721,76.431 95.423,73.181 99.694,73.439C103.964,73.696 107.231,77.367 106.96,81.663Z"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M80.863,50.059C80.863,50.059 89.991,64.711 95.676,74.96C96.077,75.683 98.442,79.288 98.567,80.024C98.567,80.024 98.128,85.089 95.957,83.853C88.81,75.795 77.518,57.473 74.133,53.953C70.353,49.97 80.863,50.059 80.863,50.059"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M65.299,171.663L55.899,164.633C54.631,164.118 52.686,163.776 50.866,164.169C50.049,164.346 49.943,163.736 49.957,164.492L48.979,167.623C48.095,169.702 48.459,171.303 50.842,172.216C54.283,173.169 62.097,177.297 65.598,174.678C67.126,173.909 67.269,172.435 65.299,171.663"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M83.91,169.07L73.527,162.782C72.217,162.381 70.654,162.321 68.876,162.873C68.077,163.121 68.145,162.529 67.998,163.274L67.299,166.479C66.601,168.628 67.264,170.117 69.717,170.817L79.101,172.828C81.602,173.264 88.725,171.164 83.91,169.07"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M47.951,83.753C48.154,80.922 77.162,80.03 77.355,84.465C79.14,125.383 77.436,153.224 74.661,162.451C74.615,162.605 74.556,162.754 74.467,162.888C73.453,164.423 71.093,164.442 69.104,163.473C68.407,163.133 67.998,162.395 68.037,161.621C68.591,150.597 67.468,127.373 63.294,105.422C63.237,105.12 63.168,104.413 63.134,104.718C63.134,104.718 56.435,161.729 56.328,165.62C56.265,167.908 52.94,168.37 51.681,167.588C51.251,167.321 49.92,166.256 49.877,165.649C48.395,144.602 46.997,97.064 47.951,83.753"
+        android:strokeWidth="1"
+        android:fillColor="#8C8C99"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M73.325,21.408C74.041,6.479 46.85,12.335 57.871,28.491C59.455,30.879 60.851,34.474 64.368,35.29L65.483,25.073C68.96,22.599 72.125,20.681 73.325,21.408"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M58.444,24.488C56.386,23.412 56.019,25.92 56.868,27.629C57.498,28.953 59.343,30.642 59.618,28.742C59.346,28.019 59.21,24.973 58.444,24.488"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M94.332,88.33C94.267,88.778 99.296,87.204 99.451,87.249C100.382,87.631 103.029,75.97 103.378,75.499C103.583,75.357 103.083,74.466 102.55,74.411L97.878,75.171C96.513,74.432 94.374,86.916 93.938,87.378C93.767,87.848 94.04,88.072 94.332,88.33"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M102.172,80.599C101.705,80.193 101.32,81.862 100.532,81.997C99.672,82.144 98.785,82.575 98.234,83.207C94.244,90.093 106.114,88.15 102.172,80.599"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M48.24,90.654C47.133,89.236 45.078,86.597 43.215,84.169C36.871,75.953 47.685,63.636 52.74,57.542L44.743,53.067C34.837,73.93 29.018,79.136 45.628,93.633C46.143,97.617 53.848,99.922 55.443,95.595C55.972,92.503 51.389,90.108 48.24,90.654"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M75.216,40.972C71.848,37.469 66.233,38.07 60.958,37.752C56.516,38.842 52.907,40.043 50.248,41.567C49.666,41.83 49.088,42.218 48.515,42.712C47.302,43.644 46.385,44.691 45.787,45.887C40.311,53.843 35.813,69.568 34.232,74.882C33.557,77.15 40.356,79.588 41.788,78.211C44.527,75.578 47.697,64.208 47.697,64.208L47.75,87.131C47.752,87.799 48.132,88.407 48.733,88.699C55.685,92.075 71.216,90.926 76.386,88.552C77.095,88.227 77.563,87.535 77.588,86.755L77.808,79.744C78.045,72.824 77.852,67.217 78.038,59.707L83,68.752C83.35,69.451 84.503,70.057 84.873,70.027C86.302,69.912 89.818,69.491 91.332,65.05C91.739,63.859 81.632,46.858 75.216,40.972"
+        android:strokeWidth="1"
+        android:fillColor="#B1DAEF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M64.229,41.713C66.078,41.982 67.865,40.677 67.919,38.76C67.919,38.76 68.258,29.21 68.258,29.21C68.319,27.518 66.982,26.082 65.288,26.023C63.44,25.751 61.653,27.058 61.598,28.974L59.923,38.103C59.863,39.797 62.535,41.652 64.229,41.713"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M73.338,21.389C72.786,15.549 64.889,16.089 60.013,19.727C59.723,20.726 59.234,22.566 58.487,24.093C58.902,26.15 59.142,29.406 59.885,31.355C61.11,33.279 65.264,36.856 68.015,36.584C72.793,34.655 73.867,24.885 73.338,21.389"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M66.035,30.883C66.035,30.883 69.514,30.936 69.514,30.936C70.187,30.966 69.91,31.793 69.799,32.194C69.32,34.159 65.963,33.868 65.542,31.997C65.397,31.592 65.437,30.864 66.035,30.883M73.073,19.279C73.073,19.279 75.848,12.639 72.433,11.065C70.496,10.172 67.62,10.03 65.523,11.078C63.337,12.171 61.678,11.428 59.9,12.618C54.296,16.432 54.309,19.663 56.23,25.45C56.523,24.211 56.935,24.269 57.484,23.312C58.882,25.06 59.231,24.71 59.3,27.73C59.32,28.374 59.581,29.254 59.231,29.604C58.73,30.105 59.529,31.056 59.684,31.352C60.91,33.276 64.5,37.515 68.011,37.211C70.402,37.003 71.603,32.751 72.534,29.899C71.403,32.736 71.312,29.76 69.588,29.858C68.612,29.973 65.566,29.406 64.843,30.307C64.36,30.877 63.549,31.098 62.902,30.664C61.443,29.941 60.855,29.135 60.542,27.999C60.453,27.514 60.365,27.075 60.287,26.673C60.263,26.495 60.239,26.313 60.215,26.122L60.186,26.122C59.895,24.439 59.91,23.23 61.16,20.911C61.163,20.814 60.856,18.118 63.642,17.7C63.679,17.623 63.639,17.561 63.544,17.512C66.607,16.713 70.099,17.321 73.073,19.279"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M187.374,219.093C186.692,211.443 186.21,203.784 185.287,196.141C183.357,180.233 180.713,164.424 178.393,148.565C170.318,147.526 164.696,146.836 164.696,146.836C164.696,146.836 149.836,144.466 149.628,151.276C149.42,158.087 166.177,161.538 166.177,161.538L167.532,161.538L168.73,171.443C168.73,171.443 155.649,187.243 156.588,192.515C157.528,197.788 165.736,195.493 165.736,195.493C165.736,195.493 160.913,209.871 164.613,213.663C167.324,216.449 170.06,215.226 170.06,215.226C170.06,215.226 163.199,221.447 166.293,226.985C167.648,229.422 175.64,230.129 175.64,230.129L188.555,229.721C187.703,226.245 187.311,222.672 187.391,219.093"
+        android:strokeWidth="1"
+        android:fillColor="#F7B994"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M191.368,258.774C186.489,259.456 181.98,256.059 181.289,251.181L164.49,131.656C163.809,126.777 167.205,122.268 172.083,121.577L219.991,114.849C224.871,114.162 229.383,117.562 230.07,122.441L246.869,241.959C247.55,246.84 244.148,251.351 239.268,252.038L191.368,258.774Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M240.048,252.1L192.139,258.836C187.259,259.517 182.751,256.114 182.068,251.235L165.27,131.717C164.938,129.373 165.552,126.994 166.976,125.103C168.401,123.212 170.518,121.966 172.863,121.638L220.763,114.902C225.641,114.221 230.151,117.617 230.842,122.495L247.632,241.996C247.969,244.342 247.359,246.725 245.936,248.621C244.513,250.516 242.394,251.768 240.048,252.1Z"
+        android:strokeWidth="3.351348"
+        android:fillColor="#00000000"
+        android:strokeColor="#4A4A4A"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M284.397,207.775C284.397,207.775 278.035,206.112 271.54,196.416C265.046,186.719 259.066,163.459 254.784,160.973C254.784,160.973 253.212,140.657 242.784,139.127C242.784,139.127 239.457,124.416 238.376,124.382C237.295,124.349 231.607,124.208 229.894,131.384C228.181,138.561 230.393,151.742 237.204,155.567C237.204,155.567 249.137,239.742 249.154,239.991C249.486,246.769 248.813,246.42 247.898,248.732C256.014,250.777 299.274,263.825 334.85,274.636L334.85,219.11L284.397,207.775Z"
+        android:strokeWidth="1"
+        android:fillColor="#F7B994"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M192.189,166.1L201.917,173.431L201.916,173.434L207.974,177.995L207.974,177.996L220.639,187.532L218.941,189.789L212.627,185.039L206.657,192.904L205.098,181.813L200.824,187.485L198.588,185.8L204.054,178.547L190.504,168.337L192.189,166.1ZM207.871,181.424L208.489,185.821L210.379,183.313L207.871,181.424ZM202.599,164.029L212.741,171.671L209.66,175.758L207.179,173.91L207.41,174.08L208.82,172.222L206.312,170.333L206.772,173.607L203.614,171.254L202.599,164.029Z"
+        android:strokeWidth="1"
+        android:fillColor="#C00F2D"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+  </group>
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_connection_off.xml b/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_connection_off.xml
index 01661cf05c6c2b7a0f42c63142d32107c3ad46a9..93d21ebc2687547ca301d67492bbad8bfd054153 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_connection_off.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_connection_off.xml
@@ -1,201 +1,266 @@
 <vector xmlns:android="http://schemas.android.com/apk/res/android"
     android:width="360dp"
-    android:height="221dp"
+    android:height="220dp"
     android:viewportWidth="360"
-    android:viewportHeight="221">
-    <group>
-        <clip-path android:pathData="M0.25,0.983h359.75v220h-359.75z" />
-        <path
-            android:fillColor="#EFF4F7"
-            android:fillType="nonZero"
-            android:pathData="M272.302,56.233m-19.597,0a19.597,19.597 0,1 1,39.194 0a19.597,19.597 0,1 1,-39.194 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CEDEE7"
-            android:fillType="nonZero"
-            android:pathData="M272.302,56.233m-13.634,0a13.634,13.634 0,1 1,27.268 0a13.634,13.634 0,1 1,-27.268 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#EFF4F7"
-            android:fillType="nonZero"
-            android:pathData="M98.681,80.98m-20.07,0a20.07,20.07 0,1 1,40.14 0a20.07,20.07 0,1 1,-40.14 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CEDEE7"
-            android:fillType="nonZero"
-            android:pathData="M98.681,80.98m-13.966,0a13.966,13.966 0,1 1,27.932 0a13.966,13.966 0,1 1,-27.932 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFC2B0"
-            android:fillType="evenOdd"
-            android:pathData="M318.328,61.418C316.524,64.119 316.947,67.721 319.329,69.935C320.998,71.171 322.666,69.703 322.666,67.945C322.452,66.264 322.117,64.602 321.665,62.969C321.356,61.89 320.33,61.7 319.997,60.87"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M306.082,18.233l0.734,8.02l-7.433,0.688l-1.393,-8.517z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M296.363,11.765C296.363,24.843 309.002,24.288 309.319,11.765C309.144,-1.115 296.522,-1.082 296.363,11.765"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#8D8D99"
-            android:fillType="evenOdd"
-            android:pathData="M314.107,62.496C323.05,64.213 311.763,125.12 311.137,135.479L307.8,135.578C307.275,135.429 305.515,77.316 304.105,78.353C302.248,84.653 300.042,90.847 297.498,96.906C296.58,109.785 296.722,123.312 295.354,135.885L291.842,136.714C290.507,137.17 288.905,97.055 288.455,96.773L290.841,78.652C291.183,78.37 293.302,62.496 294.662,63.251L314.082,62.512"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B2DBF0"
-            android:fillType="evenOdd"
-            android:pathData="M275.224,58.656C273.706,59.212 270.753,55.438 272.855,54.393C277.76,51.955 281.84,44.748 282.315,44.217C285.519,40.336 288.855,31.287 292.534,26.942C295.512,24.454 296.197,25.067 299.4,24.337C301.068,27.464 304.664,26.403 306.691,24.926C306.808,24.86 307.275,24.926 307.342,24.926C323.192,24.669 322.958,51.864 320.205,62.189C319.805,62.338 319.538,62.687 317.611,62.413C317.611,62.413 316.985,54.435 316.977,54.435C316.585,51.117 315.392,38.677 313.915,36.803C314.199,43.379 315.5,54.559 316.284,62.736C316.284,63.002 315.867,63.275 315.6,63.275L294.878,63.533C294.628,63.533 293.944,62.977 293.944,62.703C293.794,54.302 294.828,44.209 293.994,36.587C291.809,40.825 280.171,56.856 275.224,58.648"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M307.825,134.765L311.388,135.213C311.479,135.213 312.464,138.622 312.831,140.115C313.365,141.873 312.831,144.261 311.212,145.091C309.828,145.854 308.76,146.559 307.292,145.091C305.823,143.623 305.573,142.702 306.19,140.164C306.808,137.627 307.767,134.765 307.767,134.732"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M284.784,140.546L289.965,137.933L295.88,131.34C298.207,133.397 297.94,135.022 297.94,135.022C297.94,136.076 296.981,142.777 296.981,142.777L295.996,142.777L294.962,137.096C290.666,144.8 294.962,142.395 283.934,142.777C283.801,141.939 284.117,141.094 284.768,140.546"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M297.356,14.709C296.18,17.081 301.36,21.476 299.742,24.371C298.991,26.295 291.441,29.347 291.4,24.877C298.115,24.321 291.525,14.145 293.686,8.737C294.42,3.073 303.554,-1.704 308.109,2.716C315.659,8.887 306.549,23.102 314.724,24.959C314.382,29.886 307.091,26.386 305.815,23.649C304.046,18.922 311.655,16.326 307.767,7.427C306.427,10.069 304.146,12.12 301.369,13.183"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M276.159,62.131C276.217,62.521 271.787,61.144 271.654,61.177C270.82,61.517 268.501,51.308 268.192,50.893C268.008,50.769 268.45,49.989 268.926,49.939L273.039,50.611C274.24,49.956 276.125,60.887 276.509,61.293C276.659,61.708 276.417,61.899 276.159,62.123"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M269.251,55.355C269.668,55.007 270.002,56.466 270.703,56.583C271.475,56.707 272.184,57.08 272.722,57.644C276.234,63.673 265.781,61.973 269.251,55.355"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="evenOdd"
-            android:pathData="M80.554,50.641C80.554,50.641 89.616,65.136 95.26,75.266C95.659,75.978 98.004,79.548 98.128,80.236C98.128,80.236 97.688,85.205 95.535,84.021C88.46,76.094 77.229,57.971 73.904,54.493C70.138,50.558 80.554,50.641 80.554,50.641Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M65.125,170.891L55.797,163.934C54.211,163.316 52.482,163.158 50.809,163.478C49.978,163.652 49.895,163.047 49.912,163.801L48.964,166.891C48.083,168.953 48.448,170.535 50.809,171.438C54.226,172.374 61.982,176.457 65.457,173.873C66.97,173.111 67.12,171.653 65.158,170.891"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M83.597,168.357L73.288,162.145C71.778,161.705 70.168,161.734 68.675,162.227C67.843,162.476 67.951,161.888 67.802,162.625L67.112,165.797C66.422,167.918 67.112,169.392 69.514,170.088L78.825,172.076C81.319,172.506 88.377,170.419 83.597,168.357"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#8C8C99"
-            android:fillType="nonZero"
-            android:pathData="M47.908,83.963C48.108,81.163 76.896,80.277 77.088,84.667C78.858,125.129 77.171,152.652 74.419,161.78C74.373,161.931 74.308,162.075 74.228,162.211C73.214,163.727 70.903,163.751 68.899,162.791C68.212,162.445 67.797,161.726 67.843,160.96C68.392,150.06 67.278,127.092 63.138,105.391C63.08,105.092 63.013,104.388 62.98,104.695C62.98,104.695 56.329,161.068 56.221,164.911C56.163,167.181 52.896,167.636 51.607,166.858C51.183,166.592 49.862,165.541 49.82,164.944C48.349,144.129 46.96,97.124 47.908,83.963Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="nonZero"
-            android:pathData="M73.072,22.314C73.787,7.554 46.802,13.344 57.734,29.321C59.306,31.682 60.694,35.235 64.185,36.039L65.291,25.933C68.758,23.49 71.9,21.593 73.072,22.314Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="nonZero"
-            android:pathData="M58.325,25.362C56.28,24.293 55.914,26.778 56.762,28.468C57.385,29.777 59.214,31.442 59.488,29.57C59.214,28.849 59.081,25.834 58.325,25.362Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M93.939,88.485C93.872,88.933 98.868,87.376 99.018,87.417C99.941,87.798 102.568,76.268 102.917,75.821C103.125,75.688 102.626,74.802 102.086,74.752L97.455,75.498C96.092,74.769 93.972,87.094 93.54,87.574C93.382,88.013 93.648,88.237 93.939,88.485Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="nonZero"
-            android:pathData="M101.72,80.84C101.254,80.443 100.888,82.091 100.057,82.224C99.186,82.364 98.385,82.786 97.779,83.425C93.855,90.233 105.635,88.311 101.72,80.84Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="nonZero"
-            android:pathData="M48.199,90.788C47.093,89.38 45.057,86.771 43.211,84.377C36.91,76.252 47.642,64.068 52.663,58.046L44.724,53.623C34.89,74.247 29.12,79.399 45.639,93.728C46.146,97.671 53.794,99.949 55.373,95.675C55.872,92.619 51.317,90.25 48.199,90.788Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B1DAEF"
-            android:fillType="evenOdd"
-            android:pathData="M74.968,41.629C71.642,38.159 66.056,38.755 60.835,38.441C57.137,39.22 53.561,40.491 50.203,42.218C49.58,42.508 49.003,42.888 48.49,43.344C47.357,44.169 46.429,45.243 45.78,46.483C40.343,54.352 35.879,69.899 34.308,75.158C33.643,77.403 40.385,79.813 41.79,78.471C44.508,75.871 47.659,64.631 47.659,64.631L47.709,87.293C47.709,87.952 48.086,88.553 48.681,88.842C55.581,92.155 70.994,91.045 76.115,88.701C76.816,88.377 77.275,87.689 77.304,86.92L77.528,79.987C77.761,73.146 77.57,67.604 77.753,60.175L82.674,69.12C83.095,69.776 83.769,70.232 84.536,70.379C87.524,70.316 90.123,68.322 90.946,65.459C91.361,64.291 81.336,47.477 74.968,41.629Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="evenOdd"
-            android:pathData="M64.061,42.391C64.945,42.542 65.852,42.308 66.552,41.749C67.253,41.191 67.68,40.36 67.727,39.468L68.084,30.033C68.114,29.227 67.82,28.442 67.268,27.852C66.716,27.262 65.951,26.914 65.141,26.886C64.253,26.723 63.338,26.948 62.628,27.505C61.918,28.061 61.483,28.895 61.434,29.793L59.771,38.822C59.713,40.478 62.365,42.333 64.044,42.391"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="nonZero"
-            android:pathData="M73.072,22.297C72.524,16.499 64.684,17.054 59.846,20.641C59.463,22.119 58.957,23.562 58.333,24.956C58.74,26.994 58.981,30.216 59.721,32.137C60.935,34.042 65.058,37.579 67.785,37.314C72.565,35.409 73.629,25.751 73.072,22.297Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="nonZero"
-            android:pathData="M72.84,20.21C72.84,20.21 75.566,13.642 72.241,12.085C70.056,11.127 67.568,11.127 65.383,12.085C63.213,13.161 61.567,12.432 59.804,13.609C54.243,17.377 54.251,20.575 56.163,26.29C56.446,25.064 56.828,25.147 57.369,24.236C58.757,25.967 59.106,25.619 59.173,28.609C59.173,29.247 59.447,30.116 59.106,30.456C58.607,30.953 59.397,31.897 59.555,32.187C60.769,34.092 64.335,38.283 67.818,37.985C70.188,37.778 71.385,33.57 72.307,30.754C71.185,33.554 71.094,30.613 69.381,30.754C68.417,30.862 65.391,30.307 64.676,31.193C64.22,31.787 63.387,31.941 62.747,31.549C61.589,31.094 60.719,30.115 60.403,28.915C60.32,28.435 60.228,28.004 60.153,27.607C60.153,27.424 60.104,27.25 60.079,27.06L60.079,27.06C59.788,25.403 59.804,24.194 61.043,21.908C60.942,21.155 61.15,20.394 61.619,19.795C62.088,19.197 62.78,18.812 63.537,18.727C63.537,18.653 63.537,18.595 63.446,18.545C66.673,17.769 70.079,18.373 72.84,20.21L72.84,20.21ZM65.856,31.69L69.306,31.74C69.98,31.74 69.705,32.568 69.589,32.99C69.115,34.929 65.782,34.647 65.366,32.792C65.225,32.386 65.266,31.69 65.856,31.69Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M188.867,221.031C188.187,213.401 187.706,205.763 186.786,198.142C184.862,182.276 182.224,166.511 179.911,150.695C171.858,149.659 166.251,148.97 166.251,148.97C166.251,148.97 151.431,146.607 151.224,153.399C151.017,160.191 167.728,163.633 167.728,163.633L169.079,163.633L170.274,173.51C170.274,173.51 157.228,189.268 158.165,194.526C159.103,199.784 167.288,197.495 167.288,197.495C167.288,197.495 162.478,211.834 166.169,215.616C168.872,218.394 171.601,217.175 171.601,217.175C171.601,217.175 164.759,223.378 167.844,228.902C169.196,231.331 177.165,232.036 177.165,232.036L190.045,231.63C189.195,228.163 188.805,224.6 188.884,221.031"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M193.296,260.706C188.431,261.386 183.934,257.999 183.244,253.135L166.492,133.935C165.812,129.069 169.2,124.572 174.064,123.883L221.842,117.174C226.708,116.489 231.208,119.879 231.893,124.746L248.646,243.937C249.325,248.805 245.933,253.304 241.066,253.989L193.296,260.706Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#00000000"
-            android:fillType="evenOdd"
-            android:pathData="M241.397,253.947L193.619,260.665C188.753,261.344 184.257,257.951 183.576,253.085L166.824,133.893C166.493,131.556 167.105,129.183 168.525,127.297C169.946,125.412 172.058,124.168 174.395,123.842L222.165,117.124C227.03,116.444 231.527,119.832 232.217,124.696L248.961,243.871C249.297,246.211 248.688,248.588 247.269,250.478C245.85,252.369 243.738,253.617 241.397,253.947Z"
-            android:strokeWidth="4.03"
-            android:strokeColor="#4A4A4A" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M285.626,209.744C285.626,209.744 279.281,208.085 272.804,198.415C266.327,188.745 260.364,165.549 256.093,163.069C256.093,163.069 254.526,142.808 244.126,141.282C244.126,141.282 240.809,126.612 239.73,126.578C238.652,126.545 232.98,126.404 231.271,133.561C229.563,140.719 231.769,153.863 238.561,157.678C238.561,157.678 250.462,241.623 250.479,241.872C250.81,248.631 250.139,248.283 249.226,250.589C257.321,252.629 300.462,265.641 335.941,276.422L335.941,221.048L285.626,209.744Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#C00F2D"
-            android:fillType="nonZero"
-            android:pathData="M188.271,166.198L186.039,169.16L192.167,173.777C189.75,175.466 187.611,177.501 185.853,179.832L189.923,182.899C191.834,180.631 194.175,178.732 196.818,177.282L200.119,179.77C197.303,181.014 194.837,182.852 192.881,185.128L197.323,188.476C199.422,186.149 202.265,184.48 205.539,183.854L210.362,187.488C209.208,187.27 208.005,187.219 206.779,187.392C204.208,187.753 201.974,188.979 200.305,190.723L208.069,196.573L213.266,189.676L223.738,197.568L225.969,194.606L188.271,166.198ZM204.198,169.029C202.632,169.249 201.13,169.624 199.669,170.086L205.507,174.488C211.429,173.791 217.121,175.321 221.743,178.428L224.807,174.362C219.122,170.076 211.804,167.96 204.198,169.029ZM210.349,178.134L217.757,183.717L219.511,181.389C216.804,179.607 213.672,178.471 210.349,178.134Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
+    android:viewportHeight="220">
+  <group>
+    <clip-path
+        android:pathData="M0.25,0h359.75v220h-359.75z"/>
+    <path
+        android:pathData="M187.374,219.093C186.692,211.443 186.21,203.784 185.287,196.141C183.357,180.233 180.713,164.424 178.393,148.565C170.318,147.526 164.696,146.836 164.696,146.836C164.696,146.836 149.836,144.466 149.628,151.276C149.42,158.087 166.177,161.538 166.177,161.538L167.532,161.538L168.73,171.443C168.73,171.443 155.649,187.243 156.588,192.515C157.528,197.788 165.736,195.493 165.736,195.493C165.736,195.493 160.913,209.871 164.613,213.663C167.324,216.449 170.06,215.226 170.06,215.226C170.06,215.226 163.199,221.447 166.293,226.985C167.648,229.422 175.64,230.129 175.64,230.129L188.555,229.721C187.703,226.245 187.311,222.672 187.391,219.093"
+        android:strokeWidth="1"
+        android:fillColor="#F7B994"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M191.815,258.877C186.936,259.559 182.427,256.162 181.736,251.285L164.937,131.759C164.256,126.88 167.653,122.371 172.53,121.68L220.438,114.952C225.318,114.266 229.831,117.665 230.517,122.545L247.316,242.062C247.997,246.944 244.596,251.454 239.715,252.141L191.815,258.877Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M240.269,252.045L192.36,258.781C187.481,259.462 182.972,256.06 182.29,251.18L165.491,131.663C165.159,129.319 165.773,126.94 167.197,125.049C168.622,123.158 170.74,121.911 173.084,121.584L220.984,114.848C225.863,114.166 230.372,117.563 231.063,122.44L247.853,241.941C248.19,244.287 247.58,246.671 246.157,248.567C244.734,250.462 242.616,251.714 240.269,252.045Z"
+        android:strokeWidth="3.351348"
+        android:fillColor="#00000000"
+        android:strokeColor="#4A4A4A"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M284.397,207.775C284.397,207.775 278.035,206.112 271.54,196.416C265.046,186.719 259.066,163.459 254.784,160.973C254.784,160.973 253.212,140.657 242.784,139.127C242.784,139.127 239.457,124.416 238.376,124.382C237.295,124.349 231.607,124.208 229.894,131.384C228.181,138.561 230.393,151.742 237.204,155.567C237.204,155.567 249.137,239.742 249.154,239.991C249.486,246.769 248.813,246.42 247.898,248.732C256.014,250.777 299.274,263.825 334.85,274.636L334.85,219.11L284.397,207.775Z"
+        android:strokeWidth="1"
+        android:fillColor="#F7B994"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M273.65,57.454C273.547,59.088 272.138,60.311 270.528,60.214C268.919,60.117 267.674,58.734 267.777,57.1C267.88,55.467 269.289,54.244 270.899,54.34C272.509,54.437 273.753,55.82 273.65,57.454Z"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M286.863,58.512C286.301,67.579 278.605,74.465 269.698,73.919C260.789,73.373 254.002,65.599 254.564,56.532C255.126,47.466 262.822,40.58 271.73,41.126C280.637,41.672 287.425,49.446 286.863,58.512Z"
+        android:strokeAlpha="0.35999998"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.35999998"/>
+    <path
+        android:pathData="M291.267,58.518C290.552,69.886 280.758,78.519 269.42,77.834C258.083,77.149 249.445,67.403 250.16,56.036C250.875,44.669 260.669,36.036 272.007,36.72C283.344,37.405 291.982,47.151 291.267,58.518Z"
+        android:strokeAlpha="0.14"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.14"/>
+    <path
+        android:pathData="M295.508,58.775C294.646,72.488 282.83,82.902 269.154,82.076C255.477,81.25 245.056,69.492 245.919,55.779C246.781,42.067 258.597,31.652 272.273,32.478C285.95,33.304 296.371,45.062 295.508,58.775Z"
+        android:strokeAlpha="0.04"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.04"/>
+    <path
+        android:pathData="M282.458,58.246C282.049,64.881 276.45,69.913 269.974,69.514C263.499,69.115 258.56,63.433 258.969,56.799C259.378,50.164 264.978,45.132 271.453,45.531C277.928,45.93 282.867,51.612 282.458,58.246Z"
+        android:strokeAlpha="0.5"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.5"/>
+    <path
+        android:pathData="M278.005,57.694C277.75,61.747 274.257,64.813 270.228,64.57C266.2,64.327 263.118,60.864 263.373,56.811C263.628,52.758 267.121,49.692 271.15,49.935C275.178,50.178 278.26,53.641 278.005,57.694Z"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M319.23,65.532C317.22,68.19 316.905,74.736 320.64,74.489C323.81,74.28 321.956,67.366 321.608,65.931C321.224,64.348 321.134,65.693 320.801,64.798"
+        android:strokeWidth="1"
+        android:fillColor="#FFC1AF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M306.395,19.746l0.675,8.585l-7.909,0.641l-1.376,-9.127z"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M296.165,12.665C296.007,26.659 309.449,26.227 309.946,12.796C309.896,-0.922 296.474,-1.048 296.165,12.665"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M314.955,67.154C320.875,89.327 316.041,121.398 314.729,147.1L310.692,147.295C310.692,147.295 307.708,105.582 306.575,96.103C306.23,93.225 305.157,87.074 304.617,84.401C304.576,84.198 304.131,83.32 304.096,84.355C303.872,90.908 301.041,98.157 300.501,105.369C299.239,122.224 299.763,133.935 299.321,147.836C299.321,147.836 294.682,150.682 294.673,150.652C293.633,146.79 290.502,114.901 290.425,110.114C290.409,109.132 288.808,88.702 293.681,67.821L314.955,67.154Z"
+        android:strokeWidth="1"
+        android:fillColor="#385460"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M274.37,61.957C272.746,62.537 269.653,58.459 271.905,57.367C277.153,54.821 281.584,47.159 282.096,46.599C285.585,42.489 288.116,33.63 292.069,29.029C295.27,26.445 295.396,27.276 298.807,26.544C301.37,29.941 305.758,27.966 307.02,26.598C307.17,26.436 307.582,26.629 307.649,26.588C313.221,27.275 316.275,30.67 319.134,36.104C321.044,39.734 322.285,45.623 322.418,49.7C322.647,56.684 322.566,61.948 322.199,66.807C322.164,67.264 320.14,67.137 318.096,66.823C318.085,66.821 316.836,50.441 316.828,50.436C316.154,46.668 314.673,41.334 313.988,38.985C314.204,46.021 314.402,57.552 315.374,66.484C315.421,66.921 315.356,67.75 314.96,67.71C314.96,67.71 302.143,69.52 296.916,68.475C296.168,68.325 293.617,68.056 293.565,67.51C292.706,58.631 295.247,48.873 294.67,38.985C292.999,45.244 282.294,59.131 274.37,61.957"
+        android:strokeWidth="1"
+        android:fillColor="#E8A5A1"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M312.971,28.399C312.332,28.078 312.679,28.136 310.777,27.417C309.236,26.834 307.419,27.063 306.961,26.627C305.998,25.712 305.538,23.888 305.886,22.255C306.074,21.372 306.419,21.009 306.609,20.785C310.876,15.767 308.204,7.663 308.204,7.663C308.204,7.663 305.78,12.617 296.821,15.921C296.821,15.921 297.162,18.242 298.452,19.896C298.546,20.016 299.518,20.917 299.536,22.308C299.553,23.672 299.538,25.055 298.582,27.135C297.414,29.676 294.517,30.256 292.334,29.352C290.705,28.677 290.07,27.032 290.014,25.417C290.014,25.417 294.473,25.733 293.482,20.737C292.741,16.982 291.903,8.79 295.656,4.103C295.71,4.039 295.763,3.974 295.816,3.909C295.853,3.86 295.896,3.812 295.939,3.767C296.016,3.678 296.096,3.591 296.175,3.507C296.251,3.43 296.327,3.352 296.403,3.274C297.577,2.113 299.113,1.247 301.112,0.839C301.112,0.839 308.733,-0.117 309.989,4.358C309.989,4.358 312.075,5.434 312.293,9.372C312.507,13.311 311.832,14.744 311.665,17.761C311.464,21.428 311.482,24.736 316.23,24.76C316.23,24.76 315.78,26.898 312.971,28.399"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M275.699,64.809C275.72,65.327 275.243,65.724 274.729,65.649C273.357,65.45 270.659,64.579 270.536,64.613C269.66,64.96 267.157,54.196 266.99,53.563C266.941,53.377 266.995,53.171 267.21,52.913C267.42,52.661 267.753,52.549 268.075,52.61C268.86,52.758 270.992,53.16 271.882,53.328C272.229,53.394 272.528,53.613 272.692,53.926C273.834,56.112 275.672,64.272 275.698,64.796C275.699,64.801 275.699,64.805 275.699,64.809"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M268.063,58.353C268.505,57.978 268.845,59.546 269.583,59.681C269.905,59.74 270.23,59.842 270.538,59.981C271.299,60.326 271.863,60.992 272.17,61.769C274.287,67.123 264.478,65.023 268.063,58.353"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M310.539,143.409L314.38,144.178C314.805,145.869 318.079,153.218 314.379,154.907C312.924,155.749 311.798,156.52 310.214,154.974C306.815,152.994 310.474,144.786 310.539,143.409"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M299.294,145.279C299.182,146.152 300.125,152.348 299.225,152.925C298.932,153.268 298.588,153.409 298.428,153.464C293.75,153.547 288.418,153.642 283.741,153.725C281.098,150.91 294.153,149.894 293.859,145.235C295.671,145.25 297.482,145.264 299.294,145.279"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M102.344,81.408C102.235,83.14 100.741,84.437 99.035,84.334C97.329,84.232 96.01,82.766 96.119,81.034C96.228,79.302 97.722,78.006 99.428,78.108C101.134,78.211 102.453,79.677 102.344,81.408Z"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M116.35,82.53C115.754,92.141 107.597,99.44 98.154,98.861C88.712,98.282 81.518,90.042 82.113,80.431C82.709,70.821 90.866,63.522 100.308,64.101C109.751,64.679 116.945,72.92 116.35,82.53Z"
+        android:strokeAlpha="0.35999998"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.35999998"/>
+    <path
+        android:pathData="M121.018,82.537C120.26,94.586 109.878,103.737 97.861,103.011C85.843,102.286 76.686,91.954 77.445,79.905C78.202,67.856 88.585,58.705 100.602,59.431C112.62,60.156 121.776,70.488 121.018,82.537Z"
+        android:strokeAlpha="0.14"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.14"/>
+    <path
+        android:pathData="M125.514,82.808C124.6,97.344 112.075,108.383 97.578,107.508C83.08,106.632 72.034,94.169 72.949,79.633C73.863,65.098 86.388,54.059 100.885,54.934C115.382,55.81 126.429,68.273 125.514,82.808Z"
+        android:strokeAlpha="0.04"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.04"/>
+    <path
+        android:pathData="M111.681,82.248C111.248,89.281 105.312,94.615 98.448,94.192C91.584,93.769 86.348,87.746 86.782,80.714C87.215,73.681 93.152,68.347 100.015,68.77C106.879,69.193 112.115,75.216 111.681,82.248Z"
+        android:strokeAlpha="0.5"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.5"/>
+    <path
+        android:pathData="M106.96,81.663C106.69,85.959 102.987,89.209 98.717,88.951C94.447,88.694 91.18,85.023 91.45,80.727C91.721,76.431 95.423,73.181 99.694,73.439C103.964,73.696 107.231,77.367 106.96,81.663Z"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M80.863,50.059C80.863,50.059 89.991,64.711 95.676,74.96C96.077,75.683 98.442,79.288 98.567,80.024C98.567,80.024 98.128,85.089 95.957,83.853C88.81,75.795 77.518,57.473 74.133,53.953C70.353,49.97 80.863,50.059 80.863,50.059"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M65.299,171.663L55.899,164.633C54.631,164.118 52.686,163.776 50.866,164.169C50.049,164.346 49.943,163.736 49.957,164.492L48.979,167.623C48.095,169.702 48.459,171.303 50.842,172.216C54.283,173.169 62.097,177.297 65.598,174.678C67.126,173.909 67.269,172.435 65.299,171.663"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M83.91,169.07L73.527,162.782C72.217,162.381 70.654,162.321 68.876,162.873C68.077,163.121 68.145,162.529 67.998,163.274L67.299,166.479C66.601,168.628 67.264,170.117 69.717,170.817L79.101,172.828C81.602,173.264 88.725,171.164 83.91,169.07"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M47.951,83.753C48.154,80.922 77.162,80.03 77.355,84.465C79.14,125.383 77.436,153.224 74.661,162.451C74.615,162.605 74.556,162.754 74.467,162.888C73.453,164.423 71.093,164.442 69.104,163.473C68.407,163.133 67.998,162.395 68.037,161.621C68.591,150.597 67.468,127.373 63.294,105.422C63.237,105.12 63.168,104.413 63.134,104.718C63.134,104.718 56.435,161.729 56.328,165.62C56.265,167.908 52.94,168.37 51.681,167.588C51.251,167.321 49.92,166.256 49.877,165.649C48.395,144.602 46.997,97.064 47.951,83.753"
+        android:strokeWidth="1"
+        android:fillColor="#8C8C99"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M73.325,21.408C74.041,6.479 46.85,12.335 57.871,28.491C59.455,30.879 60.851,34.474 64.368,35.29L65.483,25.073C68.96,22.599 72.125,20.681 73.325,21.408"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M58.444,24.488C56.386,23.412 56.019,25.92 56.868,27.629C57.498,28.953 59.343,30.642 59.618,28.742C59.346,28.019 59.21,24.973 58.444,24.488"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M94.332,88.33C94.267,88.778 99.296,87.204 99.451,87.249C100.382,87.631 103.029,75.97 103.378,75.499C103.583,75.357 103.083,74.466 102.55,74.411L97.878,75.171C96.513,74.432 94.374,86.916 93.938,87.378C93.767,87.848 94.04,88.072 94.332,88.33"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M102.172,80.599C101.705,80.193 101.32,81.862 100.532,81.997C99.672,82.144 98.785,82.575 98.234,83.207C94.244,90.093 106.114,88.15 102.172,80.599"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M48.24,90.654C47.133,89.236 45.078,86.597 43.215,84.169C36.871,75.953 47.685,63.636 52.74,57.542L44.743,53.067C34.837,73.93 29.018,79.136 45.628,93.633C46.143,97.617 53.848,99.922 55.443,95.595C55.972,92.503 51.389,90.108 48.24,90.654"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M75.216,40.972C71.848,37.469 66.233,38.07 60.958,37.752C56.516,38.842 52.907,40.043 50.248,41.567C49.666,41.83 49.088,42.218 48.515,42.712C47.302,43.644 46.385,44.691 45.787,45.887C40.311,53.843 35.813,69.568 34.232,74.882C33.557,77.15 40.356,79.588 41.788,78.211C44.527,75.578 47.697,64.208 47.697,64.208L47.75,87.131C47.752,87.799 48.132,88.407 48.733,88.699C55.685,92.075 71.216,90.926 76.386,88.552C77.095,88.227 77.563,87.535 77.588,86.755L77.808,79.744C78.045,72.824 77.852,67.217 78.038,59.707L83,68.752C83.35,69.451 84.503,70.057 84.873,70.027C86.302,69.912 89.818,69.491 91.332,65.05C91.739,63.859 81.632,46.858 75.216,40.972"
+        android:strokeWidth="1"
+        android:fillColor="#B1DAEF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M64.229,41.713C66.078,41.982 67.865,40.677 67.919,38.76C67.919,38.76 68.258,29.21 68.258,29.21C68.319,27.518 66.982,26.082 65.288,26.023C63.44,25.751 61.653,27.058 61.598,28.974L59.923,38.103C59.863,39.797 62.535,41.652 64.229,41.713"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M73.338,21.389C72.786,15.549 64.889,16.089 60.013,19.727C59.723,20.726 59.234,22.566 58.487,24.093C58.902,26.15 59.142,29.406 59.885,31.355C61.11,33.279 65.264,36.856 68.015,36.584C72.793,34.655 73.867,24.885 73.338,21.389"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M66.035,30.883C66.035,30.883 69.514,30.936 69.514,30.936C70.187,30.966 69.91,31.793 69.799,32.194C69.32,34.159 65.963,33.868 65.542,31.997C65.397,31.592 65.437,30.864 66.035,30.883M73.073,19.279C73.073,19.279 75.848,12.639 72.433,11.065C70.496,10.172 67.62,10.03 65.523,11.078C63.337,12.171 61.678,11.428 59.9,12.618C54.296,16.432 54.309,19.663 56.23,25.45C56.523,24.211 56.935,24.269 57.484,23.312C58.882,25.06 59.231,24.71 59.3,27.73C59.32,28.374 59.581,29.254 59.231,29.604C58.73,30.105 59.529,31.056 59.684,31.352C60.91,33.276 64.5,37.515 68.011,37.211C70.402,37.003 71.603,32.751 72.534,29.899C71.403,32.736 71.312,29.76 69.588,29.858C68.612,29.973 65.566,29.406 64.843,30.307C64.36,30.877 63.549,31.098 62.902,30.664C61.443,29.941 60.855,29.135 60.542,27.999C60.453,27.514 60.365,27.075 60.287,26.673C60.263,26.495 60.239,26.313 60.215,26.122L60.186,26.122C59.895,24.439 59.91,23.23 61.16,20.911C61.163,20.814 60.856,18.118 63.642,17.7C63.679,17.623 63.639,17.561 63.544,17.512C66.607,16.713 70.099,17.321 73.073,19.279"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M192.196,166.069L190.511,168.305L195.138,171.791C193.313,173.066 191.698,174.602 190.371,176.362L193.444,178.678C194.886,176.965 196.654,175.532 198.649,174.437L201.141,176.315C199.015,177.255 197.153,178.642 195.677,180.361L199.031,182.888C200.615,181.131 202.762,179.872 205.233,179.398L208.875,182.142C208.004,181.978 207.095,181.94 206.169,182.07C204.228,182.342 202.542,183.268 201.282,184.584L207.144,189.001L211.067,183.795L218.973,189.752L220.658,187.516L192.196,166.069ZM204.221,168.206C203.038,168.372 201.905,168.655 200.802,169.004L205.209,172.328C209.68,171.801 213.978,172.956 217.467,175.302L219.78,172.232C215.489,168.997 209.963,167.399 204.221,168.206ZM208.865,175.08L214.458,179.295L215.782,177.538C213.738,176.192 211.373,175.334 208.865,175.08Z"
+        android:strokeWidth="1"
+        android:fillColor="#C00F2D"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+  </group>
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_notification_off.xml b/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_notification_off.xml
index 14306fc0305b7ce6c54ac56b7dbaadc6532c853b..f4ef5dae35f598209c34f18be192809904d56a06 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_notification_off.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_notification_off.xml
@@ -3,288 +3,298 @@
     android:height="220dp"
     android:viewportWidth="360"
     android:viewportHeight="220">
+  <group>
+    <clip-path
+        android:pathData="M0,0h360v220h-360z"/>
+    <path
+        android:pathData="M216.594,150.161C216.586,150.109 215.691,144.795 215.152,139.02C214.426,131.248 214.454,126.265 215.493,123.928L215.922,124.071C213.487,129.546 217.255,149.926 217.289,150.131L216.594,150.161Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M215.603,144.717C214.136,144.717 212.166,143.593 209.813,141.624C207.978,140.088 206.554,138.496 206.54,138.48L206.766,138.28C206.822,138.342 212.355,144.406 215.737,144.137L215.845,144.708C215.766,144.714 215.685,144.717 215.603,144.717"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M217.921,147.733C216.895,147.733 216.236,147.681 216.223,147.679L216.307,147.117C216.415,147.127 227.128,148.209 230.098,142.788L230.365,142.933C229.092,145.254 226.238,146.81 222.111,147.433C220.516,147.674 219.01,147.733 217.921,147.733"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M231.894,150.678C274.558,150.678 293.144,123.768 332.978,128.863C342.447,130.074 354.471,133.857 367.975,144.468L367.975,174.24L-7.025,176.32L-7.025,142.32C4.975,137.32 8.975,139.32 21.975,142.32C65.473,152.358 115.977,126.356 139.478,125.446C141.673,125.361 143.79,125.321 145.826,125.321C196.599,125.317 199.027,150.678 231.894,150.678"
+        android:strokeWidth="1"
+        android:fillColor="#E8F5FF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+  </group>
+  <group>
+    <clip-path
+        android:pathData="M0,0h360v220h-360z"/>
     <group>
-        <clip-path android:pathData="M0,0h360v220h-360z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M216.594,150.161C216.586,150.109 215.691,144.795 215.152,139.02C214.426,131.248 214.454,126.265 215.493,123.928L215.922,124.071C213.487,129.546 217.255,149.926 217.289,150.131L216.594,150.161Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M215.603,144.717C214.136,144.717 212.166,143.593 209.813,141.624C207.978,140.088 206.554,138.496 206.54,138.48L206.766,138.28C206.822,138.342 212.355,144.406 215.737,144.137L215.845,144.708C215.766,144.714 215.685,144.717 215.603,144.717"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M217.921,147.733C216.895,147.733 216.236,147.681 216.223,147.679L216.307,147.117C216.415,147.127 227.128,148.209 230.098,142.788L230.365,142.933C229.092,145.254 226.238,146.81 222.111,147.433C220.516,147.674 219.01,147.733 217.921,147.733"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#E8F5FF"
-            android:fillType="evenOdd"
-            android:pathData="M231.894,150.678C274.558,150.678 293.144,123.768 332.978,128.863C342.447,130.074 354.471,133.857 367.975,144.468L367.975,174.24L-7.025,176.32L-7.025,142.32C4.975,137.32 8.975,139.32 21.975,142.32C65.473,152.358 115.977,126.356 139.478,125.446C141.673,125.361 143.79,125.321 145.826,125.321C196.599,125.317 199.027,150.678 231.894,150.678"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
+      <clip-path
+          android:pathData="M145.826,125.321C143.791,125.321 141.673,125.362 139.479,125.446L139.479,125.446C115.978,126.356 65.474,152.359 21.975,142.32L21.975,142.32C8.974,139.321 4.975,137.321 -7.025,142.32L-7.025,142.32L-7.025,176.32L367.974,174.24L367.974,144.468C354.471,133.858 342.448,130.074 332.979,128.863L332.979,128.863C293.145,123.769 274.558,150.679 231.895,150.679L231.895,150.679C199.029,150.679 196.601,125.321 145.836,125.321L145.836,125.321C145.833,125.321 145.829,125.321 145.826,125.321L145.826,125.321Z"/>
+      <path
+          android:pathData="M-106.558,182.459l508.41,0l0,-63.805l-508.41,0z"
+          android:strokeWidth="1"
+          android:fillColor="#E8F5FF"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
     </group>
+  </group>
+  <group>
+    <clip-path
+        android:pathData="M0,0h360v220h-360z"/>
     <group>
-        <clip-path android:pathData="M0,0h360v220h-360z" />
-        <group>
-            <clip-path android:pathData="M145.826,125.321C143.791,125.321 141.673,125.362 139.479,125.446L139.479,125.446C115.978,126.356 65.474,152.359 21.975,142.32L21.975,142.32C8.974,139.321 4.975,137.321 -7.025,142.32L-7.025,142.32L-7.025,176.32L367.974,174.24L367.974,144.468C354.471,133.858 342.448,130.074 332.979,128.863L332.979,128.863C293.145,123.769 274.558,150.679 231.895,150.679L231.895,150.679C199.029,150.679 196.601,125.321 145.836,125.321L145.836,125.321C145.833,125.321 145.829,125.321 145.826,125.321L145.826,125.321Z" />
-            <path
-                android:fillColor="#E8F5FF"
-                android:fillType="evenOdd"
-                android:pathData="M-106.558,182.459l508.41,0l0,-63.805l-508.41,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
+      <clip-path
+          android:pathData="M145.836,125.321C145.834,125.321 145.828,125.321 145.826,125.321L145.826,125.321C143.791,125.321 141.673,125.362 139.479,125.446L139.479,125.446C115.978,126.356 65.474,152.359 21.975,142.32L21.975,142.32C8.974,139.321 4.975,137.321 -7.025,142.32L-7.025,142.32L-7.025,176.32L367.974,174.24L367.974,144.468C354.471,133.858 342.448,130.074 332.979,128.863L332.979,128.863C293.145,123.769 274.558,150.679 231.895,150.679L231.895,150.679C199.031,150.679 196.595,125.323 145.839,125.321L145.839,125.321C145.836,125.321 145.84,125.321 145.836,125.321L145.836,125.321Z"/>
+      <path
+          android:pathData="M-76.862,176.204l445.453,0l0,-52.545l-445.453,0z"
+          android:strokeWidth="1"
+          android:fillColor="#E8F5FF"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
     </group>
+  </group>
+  <group>
+    <clip-path
+        android:pathData="M0,0h360v220h-360z"/>
     <group>
-        <clip-path android:pathData="M0,0h360v220h-360z" />
-        <group>
-            <clip-path android:pathData="M145.836,125.321C145.834,125.321 145.828,125.321 145.826,125.321L145.826,125.321C143.791,125.321 141.673,125.362 139.479,125.446L139.479,125.446C115.978,126.356 65.474,152.359 21.975,142.32L21.975,142.32C8.974,139.321 4.975,137.321 -7.025,142.32L-7.025,142.32L-7.025,176.32L367.974,174.24L367.974,144.468C354.471,133.858 342.448,130.074 332.979,128.863L332.979,128.863C293.145,123.769 274.558,150.679 231.895,150.679L231.895,150.679C199.031,150.679 196.595,125.323 145.839,125.321L145.839,125.321C145.836,125.321 145.84,125.321 145.836,125.321L145.836,125.321Z" />
-            <path
-                android:fillColor="#E8F5FF"
-                android:fillType="evenOdd"
-                android:pathData="M-76.862,176.204l445.453,0l0,-52.545l-445.453,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
+      <clip-path
+          android:pathData="M145.836,125.321C145.834,125.321 145.828,125.321 145.826,125.321L145.826,125.321C143.791,125.321 141.673,125.362 139.479,125.446L139.479,125.446C115.978,126.356 65.474,152.359 21.975,142.32L21.975,142.32C8.974,139.321 4.975,137.321 -7.025,142.32L-7.025,142.32L-7.025,176.203L14.061,176.203L367.974,174.24L367.974,144.468C354.471,133.858 342.448,130.074 332.979,128.863L332.979,128.863C293.145,123.769 274.558,150.679 231.895,150.679L231.895,150.679C199.031,150.679 196.595,125.323 145.839,125.321L145.839,125.321C145.836,125.321 145.839,125.321 145.836,125.321L145.836,125.321Z"/>
+      <path
+          android:pathData="M-112,188.509l519.179,0l0,-75.7l-519.179,0z"
+          android:strokeWidth="1"
+          android:fillColor="#E8F5FF"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
     </group>
+  </group>
+  <group>
+    <clip-path
+        android:pathData="M0,0h360v220h-360z"/>
     <group>
-        <clip-path android:pathData="M0,0h360v220h-360z" />
-        <group>
-            <clip-path android:pathData="M145.836,125.321C145.834,125.321 145.828,125.321 145.826,125.321L145.826,125.321C143.791,125.321 141.673,125.362 139.479,125.446L139.479,125.446C115.978,126.356 65.474,152.359 21.975,142.32L21.975,142.32C8.974,139.321 4.975,137.321 -7.025,142.32L-7.025,142.32L-7.025,176.203L14.061,176.203L367.974,174.24L367.974,144.468C354.471,133.858 342.448,130.074 332.979,128.863L332.979,128.863C293.145,123.769 274.558,150.679 231.895,150.679L231.895,150.679C199.031,150.679 196.595,125.323 145.839,125.321L145.839,125.321C145.836,125.321 145.839,125.321 145.836,125.321L145.836,125.321Z" />
-            <path
-                android:fillColor="#E8F5FF"
-                android:fillType="evenOdd"
-                android:pathData="M-112,188.509l519.179,0l0,-75.7l-519.179,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-    </group>
-    <group>
-        <clip-path android:pathData="M0,0h360v220h-360z" />
-        <group>
-            <clip-path android:pathData="M107.572,166.86C71.657,166.86 56.009,149.308 22.475,152.631L22.475,152.631C14.505,153.421 4.383,155.889 -6.985,162.81L-6.985,162.81L-6.985,182.23L367.496,183.319L367.496,168.991C365.607,168.134 363.733,167.4 361.949,166.848L361.949,166.848C361.949,166.848 324.155,154.936 282.301,165.129L282.301,165.129C246.451,173.867 205.155,150.995 185.371,150.402L185.371,150.402C183.525,150.346 181.741,150.32 180.028,150.32L180.028,150.32C137.286,150.318 135.242,166.86 107.572,166.86L107.572,166.86Z" />
-            <path
-                android:fillColor="#D8ECF9"
-                android:fillType="evenOdd"
-                android:pathData="M-39.99,191.537l437.066,0l0,-49.378l-437.066,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-    </group>
-    <group>
-        <clip-path android:pathData="M0,0h360v220h-360z" />
-        <path
-            android:fillColor="#F6B893"
-            android:fillType="evenOdd"
-            android:pathData="M159.279,63.618C159.279,63.618 167.286,71.109 170.314,73.132C172.826,74.809 181.105,78.56 181.105,78.56L177.546,82.265C177.546,82.265 170.27,80.644 168.031,79.601C165.736,78.532 159.658,73.893 159.658,73.893L159.279,63.618Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M121.247,188.632L118.356,194.122C117.958,194.878 118.224,195.814 118.961,196.244C122.455,198.281 132.006,203.487 136.129,202.084C136.706,201.887 136.849,201.132 136.4,200.718C133.769,198.298 125.591,190.573 126.224,188.676L121.247,188.632Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B96161"
-            android:fillType="evenOdd"
-            android:pathData="M120.981,189.144L126.571,189.889L154.217,126.053L139.819,97.136L139.652,136.717C139.652,136.717 126.812,162.241 124.762,172.254C122.739,182.141 120.981,189.144 120.981,189.144"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#C66A61"
-            android:fillType="evenOdd"
-            android:pathData="M138.915,87.901L160.61,88.191C160.61,88.191 179.412,182.49 186.933,188.854L182.883,191.747C182.883,191.747 159.742,160.217 161.767,139.968C161.767,139.968 133.13,93.976 138.915,87.901"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F6B893"
-            android:fillType="evenOdd"
-            android:pathData="M154.225,51.624L152.832,41.767C152.832,41.767 158.892,42.036 158.752,33.581C158.726,32.014 158.617,29.332 157.17,27.299L152.832,26.017L148.118,36.731L145.83,50.348L150.689,54.088L154.761,53.981L154.225,51.624Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M182.883,191.747L183.775,197.888C183.898,198.733 184.663,199.333 185.514,199.247C189.536,198.839 200.322,197.429 202.831,193.868C203.182,193.369 202.852,192.674 202.247,192.604C198.695,192.195 187.538,190.761 186.932,188.854L182.883,191.747Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F6B893"
-            android:fillType="evenOdd"
-            android:pathData="M134.196,100.94L135.706,82.488L143.506,84.716L138.031,103.693C138.031,103.693 136.654,114.708 132.032,111.462C126.296,107.434 133.999,103.202 134.196,100.94"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B1DAEF"
-            android:fillType="evenOdd"
-            android:pathData="M135.671,82.757C135.671,82.757 135.683,82.664 135.707,82.488C136.117,79.465 139.97,51.87 144.291,50.759C148.861,49.584 151.186,53.93 153.276,51.579C155.365,49.228 167.657,68.68 160.61,88.191L142.547,88.208L148.6,61.077L143.507,84.716C143.507,84.716 136.977,86.414 135.671,82.757"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#663014"
-            android:fillType="evenOdd"
-            android:pathData="M158.617,33.624C158.617,33.624 163.117,30.838 160.224,23.338C160.224,23.338 159.581,20.124 155.081,20.231C155.081,20.231 147.903,13.803 141.153,19.267C134.403,24.731 139.01,30.196 139.01,30.196C139.01,30.196 130.01,38.338 133.117,49.374C133.117,49.374 136.439,56.553 140.296,54.088C144.153,51.624 143.939,56.981 145.974,49.803C148.01,42.624 151.546,43.696 150.153,31.588C150.153,31.588 154.974,31.91 156.046,26.981C156.046,26.981 159.153,28.053 158.617,33.624"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M174.465,85.015C174.224,85.446 180.07,86.345 180.209,86.451C181.008,87.202 188.119,75.833 188.657,75.49C188.921,75.426 188.759,74.325 188.238,74.061L183.193,73.016C182.092,71.733 175.058,83.594 174.435,83.895C174.078,84.306 174.269,84.64 174.465,85.015"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F6B893"
-            android:fillType="evenOdd"
-            android:pathData="M185.353,79.517C186.606,79.055 185.192,81.609 184.448,82.657C183.768,83.615 183.507,84.231 183.044,84.007C182.581,83.783 182.871,82.733 183.446,81.546C184.021,80.358 184.453,79.849 185.353,79.517"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B8E0FA"
-            android:fillType="evenOdd"
-            android:pathData="M289.647,143.193C289.647,143.193 275.845,123.938 285.558,121.552C295.27,119.167 294.589,131.095 301.064,126.664C307.539,122.234 296.137,101.587 311.549,99.542C330.6,97.014 316.155,116.923 314.812,121.816C314.526,122.856 314.83,123.986 315.644,124.694C317.304,126.138 322.675,126.507 330.713,121.552C343.153,113.884 334.292,149.498 310.947,150.52C310.947,150.52 296.293,150.861 289.647,143.193"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M308.297,150.626C308.287,150.54 307.976,141.877 307.692,132.288C307.308,119.383 309.324,108.938 311.874,105.282L312.383,105.799C306.407,114.37 309.579,150.215 309.621,150.559L308.297,150.626Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M308.527,144.519C308.482,144.505 304.033,143.113 299.377,140.488C295.061,138.054 289.675,134.03 288.533,128.683L288.834,128.393C290.967,138.374 308.346,143.275 308.522,143.329L308.527,144.519Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M308.463,141.134L308.351,139.967C308.521,139.914 325.377,135.176 328.18,127.815L328.549,128.127C327.34,131.301 323.587,134.455 317.395,137.504C312.803,139.765 308.506,141.12 308.463,141.134"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B8E0FA"
-            android:fillType="evenOdd"
-            android:pathData="M39.967,60.324C34.448,60.474 31.29,68.901 31.026,72.903C29.901,90.032 20.129,102.25 21.033,128.933C21.627,146.416 27.345,164.38 33.393,167.524C45.038,173.58 52.851,160.093 54.166,147.514C55.481,134.936 56.269,116.64 47.592,93.771C42.775,81.072 51.018,60.022 39.967,60.324"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M39.532,169.676C38.503,164.926 36.195,141.121 36.135,115.351C36.097,99.704 36.887,83.326 39.295,70.034L39.943,70.16C37.544,83.409 36.756,99.743 36.793,115.351C36.853,141.068 39.152,164.797 40.176,169.526L39.532,169.676Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M36.82,139.765C36.844,139.723 44.426,126.334 45.595,120.937L46.238,121.089C45.048,126.59 37.413,140.073 37.389,140.116L36.82,139.765Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M36.203,109.494C36.186,109.472 29.654,101.151 30.093,94.944L30.691,94.996C30.273,100.922 36.642,109.03 36.659,109.052L36.203,109.494Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B8E0FA"
-            android:fillType="evenOdd"
-            android:pathData="M64.086,170.605C69.328,166.699 73.886,159.852 74.565,143.816C75.243,127.778 73.913,123.845 70.163,122.444C66.414,121.044 63.466,123.039 61.363,128.223C59.26,133.408 58.38,138.837 56.332,140.581C54.284,142.326 42.57,152.046 45.871,163.061C49.173,174.076 58.688,173.186 64.086,170.605"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M52.684,171.636C54.725,168.818 59.139,160.881 62.746,151.791C65.166,145.695 67.226,139.075 67.968,133.125L67.458,133.059C66.72,138.967 64.673,145.543 62.268,151.603C58.678,160.65 54.293,168.538 52.267,171.335L52.684,171.636Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M59.734,158.59C59.342,158.886 67.846,155.446 70.248,150.852L69.808,150.618C67.496,155.04 59.872,157.952 59.85,157.961L59.734,158.59Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M55.587,166.996C55.578,166.976 52.442,159.996 52.701,155.332L52.227,155.32C51.961,160.126 55.149,167.221 55.158,167.241L55.587,166.996Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#D8ECF9"
-            android:fillType="evenOdd"
-            android:pathData="M268.96,24.18C266.689,24.64 263.882,26.714 263.977,27.321C264.01,27.533 271.093,27.332 278.373,27.321C289.35,27.303 294.838,27.321 295.537,27.321L309.378,27.321C310.459,27.321 308.477,23.758 307.717,23.133C306.404,22.051 304.412,21.576 302.734,22.086C300.436,22.784 300.479,24.798 298.305,25.227C296.886,25.507 295.362,24.947 294.429,24.18C293.007,23.011 293.598,21.888 292.214,20.515C291.245,19.554 289.981,19.112 288.339,19.469C286.422,19.885 286.678,19.992 283.909,22.086C282.937,22.821 281.887,24.934 280.034,25.227C275.005,26.02 272.907,23.38 268.96,24.18"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#D8ECF9"
-            android:fillType="evenOdd"
-            android:pathData="M8.725,38.32L38.177,38.32C37.044,36.768 35.923,36.277 35.109,36.117C33.106,35.723 32.26,37.186 28.973,37.218C28.389,37.224 26.946,37.227 25.291,36.668C24.31,36.336 24.283,36.154 22.837,35.566C21.643,35.08 20.594,34.653 19.156,34.465C18.058,34.32 17.234,34.381 16.088,34.465C14.787,34.56 13.985,34.625 13.02,35.015C12.305,35.305 11.853,35.631 11.18,36.117C10.53,36.586 9.644,37.301 8.725,38.32"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#D8ECF9"
-            android:fillType="evenOdd"
-            android:pathData="M96.763,28.32L59.829,28.32C61.25,26.032 62.655,25.309 63.676,25.073C66.188,24.492 67.248,26.649 71.371,26.696C72.104,26.705 73.913,26.709 75.988,25.885C77.219,25.396 77.253,25.128 79.065,24.261C80.563,23.545 81.879,22.916 83.682,22.638C85.059,22.425 86.092,22.514 87.53,22.638C89.16,22.778 90.167,22.874 91.377,23.449C92.274,23.876 92.84,24.356 93.685,25.073C94.5,25.764 95.611,26.819 96.763,28.32"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M227.525,41.676L196.322,41.676C195.77,41.676 195.322,41.228 195.322,40.676L195.322,40.463C195.322,39.91 195.77,39.463 196.322,39.463L227.525,39.463C228.077,39.463 228.525,39.91 228.525,40.463L228.525,40.676C228.525,41.228 228.077,41.676 227.525,41.676"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#BF0F2D"
-            android:fillType="evenOdd"
-            android:pathData="M218.977,48.911C218.977,59.302 210.553,67.726 200.162,67.726C189.771,67.726 181.348,59.302 181.348,48.911C181.348,38.52 189.771,30.096 200.162,30.096C210.553,30.096 218.977,38.52 218.977,48.911"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M200.62,40.378C199.881,40.378 199.272,40.986 199.272,41.725L199.272,42.357C198.399,42.562 197.636,42.967 197.048,43.558C196.171,44.444 195.68,45.699 195.68,47.143L195.68,50.646C195.68,51.47 195.229,52.516 194.764,53.291L193.959,54.5C193.868,54.639 193.859,54.816 193.936,54.961C194.015,55.107 194.167,55.198 194.332,55.198L198.374,55.198C198.374,56.431 199.387,57.444 200.62,57.444C201.853,57.444 202.865,56.431 202.865,55.198L206.907,55.198C207.072,55.198 207.225,55.107 207.304,54.961C207.381,54.816 207.372,54.639 207.281,54.5L206.479,53.296L206.477,53.295C206.007,52.511 205.56,51.532 205.56,50.707L205.56,47.204C205.56,44.794 204.125,42.927 201.967,42.373L201.967,41.725C201.967,40.986 201.358,40.378 200.62,40.378"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M191.684,55.735L208.641,41.506"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#00000000"
-            android:fillType="evenOdd"
-            android:pathData="M191.684,55.735L208.641,41.506"
-            android:strokeWidth="2"
-            android:strokeColor="#BF0F2D"
-            android:strokeLineCap="round" />
-        <path
-            android:fillColor="#BF0F2D"
-            android:fillType="evenOdd"
-            android:pathData="M192.181,56.314L209.138,42.086"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#00000000"
-            android:fillType="evenOdd"
-            android:pathData="M192.181,56.314L209.138,42.086"
-            android:strokeWidth="1"
-            android:strokeColor="#FFFFFF"
-            android:strokeLineCap="round" />
-        <path
-            android:fillColor="#BF0F2D"
-            android:fillType="evenOdd"
-            android:pathData="M198.502,63.562L188.727,68.913C188.186,69.373 187.435,68.913 187.435,68.122L186.328,59.135C186.328,58.598 187.801,59.135 188.252,59.135L197.683,59.135C198.479,59.135 199.149,63.012 198.502,63.562"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
+      <clip-path
+          android:pathData="M107.572,166.86C71.657,166.86 56.009,149.308 22.475,152.631L22.475,152.631C14.505,153.421 4.383,155.889 -6.985,162.81L-6.985,162.81L-6.985,182.23L367.496,183.319L367.496,168.991C365.607,168.134 363.733,167.4 361.949,166.848L361.949,166.848C361.949,166.848 324.155,154.936 282.301,165.129L282.301,165.129C246.451,173.867 205.155,150.995 185.371,150.402L185.371,150.402C183.525,150.346 181.741,150.32 180.028,150.32L180.028,150.32C137.286,150.318 135.242,166.86 107.572,166.86L107.572,166.86Z"/>
+      <path
+          android:pathData="M-39.99,191.537l437.066,0l0,-49.378l-437.066,0z"
+          android:strokeWidth="1"
+          android:fillColor="#D8ECF9"
+          android:fillType="evenOdd"
+          android:strokeColor="#00000000"/>
     </group>
+  </group>
+  <group>
+    <clip-path
+        android:pathData="M0,0h360v220h-360z"/>
+    <path
+        android:pathData="M159.279,63.618C159.279,63.618 167.286,71.109 170.314,73.132C172.826,74.809 181.105,78.56 181.105,78.56L177.546,82.265C177.546,82.265 170.27,80.644 168.031,79.601C165.736,78.532 159.658,73.893 159.658,73.893L159.279,63.618Z"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M121.247,188.632L118.356,194.122C117.958,194.878 118.224,195.814 118.961,196.244C122.455,198.281 132.006,203.487 136.129,202.084C136.706,201.887 136.849,201.132 136.4,200.718C133.769,198.298 125.591,190.573 126.224,188.676L121.247,188.632Z"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M120.981,189.144L126.571,189.889L154.217,126.053L139.819,97.136L139.652,136.717C139.652,136.717 126.812,162.241 124.762,172.254C122.739,182.141 120.981,189.144 120.981,189.144"
+        android:strokeWidth="1"
+        android:fillColor="#B96161"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M138.915,87.901L160.61,88.191C160.61,88.191 179.412,182.49 186.933,188.854L182.883,191.747C182.883,191.747 159.742,160.217 161.767,139.968C161.767,139.968 133.13,93.976 138.915,87.901"
+        android:strokeWidth="1"
+        android:fillColor="#C66A61"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M154.225,51.624L152.832,41.767C152.832,41.767 158.892,42.036 158.752,33.581C158.726,32.014 158.617,29.332 157.17,27.299L152.832,26.017L148.118,36.731L145.83,50.348L150.689,54.088L154.761,53.981L154.225,51.624Z"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M182.883,191.747L183.775,197.888C183.898,198.733 184.663,199.333 185.514,199.247C189.536,198.839 200.322,197.429 202.831,193.868C203.182,193.369 202.852,192.674 202.247,192.604C198.695,192.195 187.538,190.761 186.932,188.854L182.883,191.747Z"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M134.196,100.94L135.706,82.488L143.506,84.716L138.031,103.693C138.031,103.693 136.654,114.708 132.032,111.462C126.296,107.434 133.999,103.202 134.196,100.94"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M135.671,82.757C135.671,82.757 135.683,82.664 135.707,82.488C136.117,79.465 139.97,51.87 144.291,50.759C148.861,49.584 151.186,53.93 153.276,51.579C155.365,49.228 167.657,68.68 160.61,88.191L142.547,88.208L148.6,61.077L143.507,84.716C143.507,84.716 136.977,86.414 135.671,82.757"
+        android:strokeWidth="1"
+        android:fillColor="#B1DAEF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M158.617,33.624C158.617,33.624 163.117,30.838 160.224,23.338C160.224,23.338 159.581,20.124 155.081,20.231C155.081,20.231 147.903,13.803 141.153,19.267C134.403,24.731 139.01,30.196 139.01,30.196C139.01,30.196 130.01,38.338 133.117,49.374C133.117,49.374 136.439,56.553 140.296,54.088C144.153,51.624 143.939,56.981 145.974,49.803C148.01,42.624 151.546,43.696 150.153,31.588C150.153,31.588 154.974,31.91 156.046,26.981C156.046,26.981 159.153,28.053 158.617,33.624"
+        android:strokeWidth="1"
+        android:fillColor="#663014"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M174.465,85.015C174.224,85.446 180.07,86.345 180.209,86.451C181.008,87.202 188.119,75.833 188.657,75.49C188.921,75.426 188.759,74.325 188.238,74.061L183.193,73.016C182.092,71.733 175.058,83.594 174.435,83.895C174.078,84.306 174.269,84.64 174.465,85.015"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M185.353,79.517C186.606,79.055 185.192,81.609 184.448,82.657C183.768,83.615 183.507,84.231 183.044,84.007C182.581,83.783 182.871,82.733 183.446,81.546C184.021,80.358 184.453,79.849 185.353,79.517"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M289.647,143.193C289.647,143.193 275.845,123.938 285.558,121.552C295.27,119.167 294.589,131.095 301.064,126.664C307.539,122.234 296.137,101.587 311.549,99.542C330.6,97.014 316.155,116.923 314.812,121.816C314.526,122.856 314.83,123.986 315.644,124.694C317.304,126.138 322.675,126.507 330.713,121.552C343.153,113.884 334.292,149.498 310.947,150.52C310.947,150.52 296.293,150.861 289.647,143.193"
+        android:strokeWidth="1"
+        android:fillColor="#B8E0FA"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M308.297,150.626C308.287,150.54 307.976,141.877 307.692,132.288C307.308,119.383 309.324,108.938 311.874,105.282L312.383,105.799C306.407,114.37 309.579,150.215 309.621,150.559L308.297,150.626Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M308.527,144.519C308.482,144.505 304.033,143.113 299.377,140.488C295.061,138.054 289.675,134.03 288.533,128.683L288.834,128.393C290.967,138.374 308.346,143.275 308.522,143.329L308.527,144.519Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M308.463,141.134L308.351,139.967C308.521,139.914 325.377,135.176 328.18,127.815L328.549,128.127C327.34,131.301 323.587,134.455 317.395,137.504C312.803,139.765 308.506,141.12 308.463,141.134"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M39.967,60.324C34.448,60.474 31.29,68.901 31.026,72.903C29.901,90.032 20.129,102.25 21.033,128.933C21.627,146.416 27.345,164.38 33.393,167.524C45.038,173.58 52.851,160.093 54.166,147.514C55.481,134.936 56.269,116.64 47.592,93.771C42.775,81.072 51.018,60.022 39.967,60.324"
+        android:strokeWidth="1"
+        android:fillColor="#B8E0FA"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M39.532,169.676C38.503,164.926 36.195,141.121 36.135,115.351C36.097,99.704 36.887,83.326 39.295,70.034L39.943,70.16C37.544,83.409 36.756,99.743 36.793,115.351C36.853,141.068 39.152,164.797 40.176,169.526L39.532,169.676Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M36.82,139.765C36.844,139.723 44.426,126.334 45.595,120.937L46.238,121.089C45.048,126.59 37.413,140.073 37.389,140.116L36.82,139.765Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M36.203,109.494C36.186,109.472 29.654,101.151 30.093,94.944L30.691,94.996C30.273,100.922 36.642,109.03 36.659,109.052L36.203,109.494Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M64.086,170.605C69.328,166.699 73.886,159.852 74.565,143.816C75.243,127.778 73.913,123.845 70.163,122.444C66.414,121.044 63.466,123.039 61.363,128.223C59.26,133.408 58.38,138.837 56.332,140.581C54.284,142.326 42.57,152.046 45.871,163.061C49.173,174.076 58.688,173.186 64.086,170.605"
+        android:strokeWidth="1"
+        android:fillColor="#B8E0FA"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M52.684,171.636C54.725,168.818 59.139,160.881 62.746,151.791C65.166,145.695 67.226,139.075 67.968,133.125L67.458,133.059C66.72,138.967 64.673,145.543 62.268,151.603C58.678,160.65 54.293,168.538 52.267,171.335L52.684,171.636Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M59.734,158.59C59.342,158.886 67.846,155.446 70.248,150.852L69.808,150.618C67.496,155.04 59.872,157.952 59.85,157.961L59.734,158.59Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M55.587,166.996C55.578,166.976 52.442,159.996 52.701,155.332L52.227,155.32C51.961,160.126 55.149,167.221 55.158,167.241L55.587,166.996Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M268.96,24.18C266.689,24.64 263.882,26.714 263.977,27.321C264.01,27.533 271.093,27.332 278.373,27.321C289.35,27.303 294.838,27.321 295.537,27.321L309.378,27.321C310.459,27.321 308.477,23.758 307.717,23.133C306.404,22.051 304.412,21.576 302.734,22.086C300.436,22.784 300.479,24.798 298.305,25.227C296.886,25.507 295.362,24.947 294.429,24.18C293.007,23.011 293.598,21.888 292.214,20.515C291.245,19.554 289.981,19.112 288.339,19.469C286.422,19.885 286.678,19.992 283.909,22.086C282.937,22.821 281.887,24.934 280.034,25.227C275.005,26.02 272.907,23.38 268.96,24.18"
+        android:strokeWidth="1"
+        android:fillColor="#D8ECF9"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M8.725,38.32L38.177,38.32C37.044,36.768 35.923,36.277 35.109,36.117C33.106,35.723 32.26,37.186 28.973,37.218C28.389,37.224 26.946,37.227 25.291,36.668C24.31,36.336 24.283,36.154 22.837,35.566C21.643,35.08 20.594,34.653 19.156,34.465C18.058,34.32 17.234,34.381 16.088,34.465C14.787,34.56 13.985,34.625 13.02,35.015C12.305,35.305 11.853,35.631 11.18,36.117C10.53,36.586 9.644,37.301 8.725,38.32"
+        android:strokeWidth="1"
+        android:fillColor="#D8ECF9"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M96.763,28.32L59.829,28.32C61.25,26.032 62.655,25.309 63.676,25.073C66.188,24.492 67.248,26.649 71.371,26.696C72.104,26.705 73.913,26.709 75.988,25.885C77.219,25.396 77.253,25.128 79.065,24.261C80.563,23.545 81.879,22.916 83.682,22.638C85.059,22.425 86.092,22.514 87.53,22.638C89.16,22.778 90.167,22.874 91.377,23.449C92.274,23.876 92.84,24.356 93.685,25.073C94.5,25.764 95.611,26.819 96.763,28.32"
+        android:strokeWidth="1"
+        android:fillColor="#D8ECF9"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M227.525,41.676L196.322,41.676C195.77,41.676 195.322,41.228 195.322,40.676L195.322,40.463C195.322,39.91 195.77,39.463 196.322,39.463L227.525,39.463C228.077,39.463 228.525,39.91 228.525,40.463L228.525,40.676C228.525,41.228 228.077,41.676 227.525,41.676"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M218.977,48.911C218.977,59.302 210.553,67.726 200.162,67.726C189.771,67.726 181.348,59.302 181.348,48.911C181.348,38.52 189.771,30.096 200.162,30.096C210.553,30.096 218.977,38.52 218.977,48.911"
+        android:strokeWidth="1"
+        android:fillColor="#BF0F2D"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M200.62,40.378C199.881,40.378 199.272,40.986 199.272,41.725L199.272,42.357C198.399,42.562 197.636,42.967 197.048,43.558C196.171,44.444 195.68,45.699 195.68,47.143L195.68,50.646C195.68,51.47 195.229,52.516 194.764,53.291L193.959,54.5C193.868,54.639 193.859,54.816 193.936,54.961C194.015,55.107 194.167,55.198 194.332,55.198L198.374,55.198C198.374,56.431 199.387,57.444 200.62,57.444C201.853,57.444 202.865,56.431 202.865,55.198L206.907,55.198C207.072,55.198 207.225,55.107 207.304,54.961C207.381,54.816 207.372,54.639 207.281,54.5L206.479,53.296L206.477,53.295C206.007,52.511 205.56,51.532 205.56,50.707L205.56,47.204C205.56,44.794 204.125,42.927 201.967,42.373L201.967,41.725C201.967,40.986 201.358,40.378 200.62,40.378"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M191.684,55.735L208.641,41.506"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M191.684,55.735L208.641,41.506"
+        android:strokeWidth="2"
+        android:fillColor="#00000000"
+        android:strokeColor="#BF0F2D"
+        android:fillType="evenOdd"
+        android:strokeLineCap="round"/>
+    <path
+        android:pathData="M192.181,56.314L209.138,42.086"
+        android:strokeWidth="1"
+        android:fillColor="#BF0F2D"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M192.181,56.314L209.138,42.086"
+        android:strokeWidth="1"
+        android:fillColor="#00000000"
+        android:strokeColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeLineCap="round"/>
+    <path
+        android:pathData="M198.502,63.562L188.727,68.913C188.186,69.373 187.435,68.913 187.435,68.122L186.328,59.135C186.328,58.598 187.801,59.135 188.252,59.135L197.683,59.135C198.479,59.135 199.149,63.012 198.502,63.562"
+        android:strokeWidth="1"
+        android:fillColor="#BF0F2D"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+  </group>
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_notification_on.xml b/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_notification_on.xml
deleted file mode 100644
index 5b686c5d3e97bcc93308eac765831237f3283144..0000000000000000000000000000000000000000
--- a/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_notification_on.xml
+++ /dev/null
@@ -1,288 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="360dp"
-    android:height="220dp"
-    android:viewportWidth="360"
-    android:viewportHeight="220">
-    <group>
-        <clip-path android:pathData="M0,0h360v220h-360z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M216.595,150.161C216.586,150.109 215.692,144.795 215.153,139.02C214.427,131.248 214.454,126.265 215.494,123.928L215.923,124.071C213.488,129.546 217.256,149.926 217.29,150.131L216.595,150.161Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M215.603,144.717C214.136,144.717 212.166,143.593 209.813,141.624C207.978,140.088 206.554,138.496 206.54,138.48L206.766,138.28C206.822,138.342 212.355,144.406 215.737,144.137L215.845,144.708C215.766,144.714 215.685,144.717 215.603,144.717"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M217.922,147.733C216.894,147.733 216.237,147.681 216.224,147.679L216.307,147.117C216.415,147.127 227.128,148.209 230.099,142.788L230.365,142.933C229.093,145.254 226.239,146.81 222.111,147.433C220.517,147.674 219.011,147.733 217.922,147.733"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#E8F5FF"
-            android:fillType="evenOdd"
-            android:pathData="M231.894,150.678C274.558,150.678 293.144,123.768 332.978,128.863C342.447,130.074 354.471,133.857 367.974,144.468L367.974,174.24L-7.025,176.32L-7.025,142.32C4.975,137.32 8.975,139.32 21.975,142.32C65.473,152.358 115.977,126.356 139.478,125.446C141.672,125.361 143.79,125.321 145.825,125.321C196.599,125.317 199.027,150.678 231.894,150.678"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M0,0h360v220h-360z" />
-        <group>
-            <clip-path android:pathData="M145.826,125.321C143.791,125.321 141.673,125.362 139.479,125.446L139.479,125.446C115.978,126.356 65.474,152.359 21.975,142.32L21.975,142.32C8.975,139.321 4.975,137.321 -7.025,142.32L-7.025,142.32L-7.025,176.32L367.974,174.24L367.974,144.468C354.471,133.858 342.447,130.074 332.979,128.863L332.979,128.863C293.144,123.769 274.558,150.679 231.895,150.679L231.895,150.679C199.029,150.679 196.601,125.321 145.836,125.321L145.836,125.321C145.833,125.321 145.829,125.321 145.826,125.321L145.826,125.321Z" />
-            <path
-                android:fillColor="#E8F5FF"
-                android:fillType="evenOdd"
-                android:pathData="M-106.558,182.459l508.41,0l0,-63.805l-508.41,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-    </group>
-    <group>
-        <clip-path android:pathData="M0,0h360v220h-360z" />
-        <group>
-            <clip-path android:pathData="M145.836,125.321C145.834,125.321 145.828,125.321 145.826,125.321L145.826,125.321C143.791,125.321 141.673,125.362 139.479,125.446L139.479,125.446C115.978,126.356 65.474,152.359 21.975,142.32L21.975,142.32C8.975,139.321 4.975,137.321 -7.025,142.32L-7.025,142.32L-7.025,176.32L367.974,174.24L367.974,144.468C354.471,133.858 342.447,130.074 332.979,128.863L332.979,128.863C293.144,123.769 274.558,150.679 231.895,150.679L231.895,150.679C199.031,150.679 196.595,125.323 145.839,125.321L145.839,125.321C145.836,125.321 145.84,125.321 145.836,125.321L145.836,125.321Z" />
-            <path
-                android:fillColor="#E8F5FF"
-                android:fillType="evenOdd"
-                android:pathData="M-76.862,176.204l445.453,0l0,-52.545l-445.453,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-    </group>
-    <group>
-        <clip-path android:pathData="M0,0h360v220h-360z" />
-        <group>
-            <clip-path android:pathData="M145.836,125.321C145.834,125.321 145.828,125.321 145.826,125.321L145.826,125.321C143.791,125.321 141.673,125.362 139.479,125.446L139.479,125.446C115.978,126.356 65.474,152.359 21.975,142.32L21.975,142.32C8.975,139.321 4.975,137.321 -7.025,142.32L-7.025,142.32L-7.025,176.203L14.061,176.203L367.974,174.24L367.974,144.468C354.471,133.858 342.447,130.074 332.979,128.863L332.979,128.863C293.144,123.769 274.558,150.679 231.895,150.679L231.895,150.679C199.031,150.679 196.595,125.323 145.839,125.321L145.839,125.321C145.836,125.321 145.839,125.321 145.836,125.321L145.836,125.321Z" />
-            <path
-                android:fillColor="#E8F5FF"
-                android:fillType="evenOdd"
-                android:pathData="M-112,188.509l519.179,0l0,-75.7l-519.179,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-    </group>
-    <group>
-        <clip-path android:pathData="M0,0h360v220h-360z" />
-        <group>
-            <clip-path android:pathData="M107.573,166.86C71.657,166.86 56.009,149.308 22.475,152.631L22.475,152.631C14.504,153.421 4.383,155.889 -6.985,162.81L-6.985,162.81L-6.985,182.23L367.496,183.319L367.496,168.991C365.608,168.134 363.733,167.4 361.95,166.848L361.95,166.848C361.95,166.848 324.155,154.936 282.3,165.129L282.3,165.129C246.451,173.867 205.155,150.995 185.372,150.402L185.372,150.402C183.524,150.346 181.741,150.32 180.028,150.32L180.028,150.32C137.286,150.318 135.242,166.86 107.573,166.86L107.573,166.86Z" />
-            <path
-                android:fillColor="#D8ECF9"
-                android:fillType="evenOdd"
-                android:pathData="M-39.989,191.537l437.066,0l0,-49.378l-437.066,0z"
-                android:strokeWidth="1"
-                android:strokeColor="#00000000" />
-        </group>
-    </group>
-    <group>
-        <clip-path android:pathData="M0,0h360v220h-360z" />
-        <path
-            android:fillColor="#F6B893"
-            android:fillType="evenOdd"
-            android:pathData="M159.279,63.618C159.279,63.618 167.286,71.109 170.315,73.132C172.826,74.809 181.106,78.56 181.106,78.56L177.546,82.265C177.546,82.265 170.271,80.644 168.032,79.601C165.735,78.532 159.659,73.893 159.659,73.893L159.279,63.618Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M121.247,188.632L118.356,194.122C117.957,194.878 118.223,195.814 118.961,196.244C122.455,198.281 132.006,203.487 136.128,202.084C136.706,201.887 136.849,201.132 136.399,200.718C133.769,198.298 125.591,190.573 126.224,188.676L121.247,188.632Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B96161"
-            android:fillType="evenOdd"
-            android:pathData="M120.981,189.144L126.571,189.889L154.217,126.053L139.819,97.136L139.652,136.717C139.652,136.717 126.812,162.241 124.762,172.254C122.739,182.141 120.981,189.144 120.981,189.144"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#C66A61"
-            android:fillType="evenOdd"
-            android:pathData="M138.915,87.901L160.609,88.191C160.609,88.191 179.412,182.49 186.933,188.854L182.883,191.747C182.883,191.747 159.742,160.217 161.767,139.968C161.767,139.968 133.129,93.976 138.915,87.901"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F6B893"
-            android:fillType="evenOdd"
-            android:pathData="M154.225,51.624L152.831,41.767C152.831,41.767 158.891,42.036 158.751,33.581C158.725,32.014 158.617,29.332 157.171,27.299L152.831,26.017L148.117,36.731L145.829,50.348L150.689,54.088L154.76,53.981L154.225,51.624Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M182.883,191.747L183.776,197.888C183.898,198.733 184.664,199.333 185.513,199.247C189.536,198.839 200.322,197.429 202.831,193.868C203.182,193.369 202.853,192.674 202.246,192.604C198.695,192.195 187.537,190.761 186.933,188.854L182.883,191.747Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F6B893"
-            android:fillType="evenOdd"
-            android:pathData="M134.197,100.94L135.707,82.488L143.507,84.716L138.032,103.693C138.032,103.693 136.655,114.708 132.033,111.462C126.297,107.434 134,103.202 134.197,100.94"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B1DAEF"
-            android:fillType="evenOdd"
-            android:pathData="M135.67,82.757C135.67,82.757 135.682,82.664 135.706,82.488C136.116,79.465 139.969,51.87 144.29,50.759C148.861,49.584 151.186,53.93 153.275,51.579C155.365,49.228 167.657,68.68 160.609,88.191L142.546,88.208L148.6,61.077L143.506,84.716C143.506,84.716 136.976,86.414 135.67,82.757"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#663014"
-            android:fillType="evenOdd"
-            android:pathData="M158.617,33.624C158.617,33.624 163.117,30.838 160.225,23.338C160.225,23.338 159.581,20.124 155.081,20.231C155.081,20.231 147.904,13.803 141.154,19.267C134.404,24.731 139.01,30.196 139.01,30.196C139.01,30.196 130.01,38.338 133.117,49.374C133.117,49.374 136.439,56.553 140.296,54.088C144.154,51.624 143.939,56.981 145.975,49.803C148.01,42.624 151.546,43.696 150.154,31.588C150.154,31.588 154.975,31.91 156.046,26.981C156.046,26.981 159.154,28.053 158.617,33.624"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M174.465,85.015C174.224,85.446 180.069,86.345 180.209,86.451C181.007,87.202 188.119,75.833 188.657,75.49C188.921,75.426 188.758,74.325 188.238,74.061L183.193,73.016C182.092,71.733 175.057,83.594 174.435,83.895C174.078,84.306 174.269,84.64 174.465,85.015"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F6B893"
-            android:fillType="evenOdd"
-            android:pathData="M185.353,79.517C186.605,79.055 185.192,81.609 184.448,82.657C183.768,83.615 183.506,84.231 183.043,84.007C182.581,83.783 182.871,82.733 183.446,81.546C184.021,80.358 184.453,79.849 185.353,79.517"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B8E0FA"
-            android:fillType="evenOdd"
-            android:pathData="M289.647,143.193C289.647,143.193 275.844,123.938 285.557,121.552C295.27,119.167 294.588,131.095 301.064,126.664C307.539,122.234 296.137,101.587 311.549,99.542C330.6,97.014 316.155,116.923 314.812,121.816C314.526,122.856 314.83,123.986 315.644,124.694C317.304,126.138 322.675,126.507 330.713,121.552C343.153,113.884 334.292,149.498 310.947,150.52C310.947,150.52 296.293,150.861 289.647,143.193"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M308.297,150.626C308.286,150.54 307.976,141.877 307.691,132.288C307.308,119.383 309.324,108.938 311.874,105.282L312.383,105.799C306.406,114.37 309.579,150.215 309.621,150.559L308.297,150.626Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M308.527,144.519C308.483,144.505 304.034,143.113 299.377,140.488C295.061,138.054 289.676,134.03 288.533,128.683L288.835,128.393C290.967,138.374 308.346,143.275 308.522,143.329L308.527,144.519Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M308.463,141.134L308.351,139.967C308.521,139.914 325.376,135.176 328.18,127.815L328.549,128.127C327.34,131.301 323.587,134.455 317.395,137.504C312.803,139.765 308.506,141.12 308.463,141.134"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B8E0FA"
-            android:fillType="evenOdd"
-            android:pathData="M39.967,60.324C34.448,60.474 31.29,68.901 31.027,72.903C29.901,90.032 20.129,102.25 21.034,128.933C21.627,146.416 27.345,164.38 33.393,167.524C45.038,173.58 52.852,160.093 54.166,147.514C55.481,134.936 56.27,116.64 47.592,93.771C42.775,81.072 51.018,60.022 39.967,60.324"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M39.532,169.676C38.503,164.926 36.195,141.121 36.134,115.351C36.097,99.704 36.887,83.326 39.295,70.034L39.942,70.16C37.543,83.409 36.756,99.743 36.793,115.351C36.853,141.068 39.152,164.797 40.175,169.526L39.532,169.676Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M36.821,139.765C36.845,139.723 44.426,126.334 45.595,120.937L46.239,121.089C45.048,126.59 37.414,140.073 37.39,140.116L36.821,139.765Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M36.202,109.494C36.186,109.472 29.654,101.151 30.093,94.944L30.691,94.996C30.272,100.922 36.642,109.03 36.659,109.052L36.202,109.494Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B8E0FA"
-            android:fillType="evenOdd"
-            android:pathData="M64.086,170.605C69.327,166.699 73.886,159.852 74.565,143.816C75.243,127.778 73.912,123.845 70.163,122.444C66.414,121.044 63.466,123.039 61.363,128.223C59.26,133.408 58.38,138.837 56.332,140.581C54.284,142.326 42.57,152.046 45.871,163.061C49.173,174.076 58.687,173.186 64.086,170.605"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M52.684,171.636C54.725,168.818 59.138,160.881 62.746,151.791C65.165,145.695 67.226,139.075 67.968,133.125L67.457,133.059C66.72,138.967 64.673,145.543 62.268,151.603C58.677,160.65 54.292,168.538 52.267,171.335L52.684,171.636Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M59.733,158.59C59.341,158.886 67.845,155.446 70.248,150.852L69.807,150.618C67.496,155.04 59.871,157.952 59.849,157.961L59.733,158.59Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M55.587,166.996C55.578,166.976 52.442,159.996 52.701,155.332L52.227,155.32C51.961,160.126 55.149,167.221 55.158,167.241L55.587,166.996Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#D8ECF9"
-            android:fillType="evenOdd"
-            android:pathData="M268.96,24.18C266.689,24.64 263.882,26.714 263.977,27.321C264.01,27.533 271.093,27.332 278.373,27.321C289.35,27.303 294.837,27.321 295.537,27.321L309.378,27.321C310.459,27.321 308.476,23.758 307.717,23.133C306.404,22.051 304.412,21.576 302.734,22.086C300.436,22.784 300.479,24.798 298.305,25.227C296.886,25.507 295.362,24.947 294.429,24.18C293.007,23.011 293.598,21.888 292.214,20.515C291.245,19.554 289.981,19.112 288.338,19.469C286.422,19.885 286.678,19.992 283.909,22.086C282.937,22.821 281.887,24.934 280.034,25.227C275.005,26.02 272.907,23.38 268.96,24.18"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#D8ECF9"
-            android:fillType="evenOdd"
-            android:pathData="M8.725,38.32L38.176,38.32C37.043,36.768 35.923,36.277 35.108,36.117C33.106,35.723 32.26,37.186 28.973,37.218C28.388,37.224 26.945,37.227 25.291,36.668C24.31,36.336 24.282,36.154 22.837,35.566C21.642,35.08 20.594,34.653 19.156,34.465C18.058,34.32 17.234,34.381 16.088,34.465C14.787,34.56 13.984,34.625 13.02,35.015C12.304,35.305 11.853,35.631 11.179,36.117C10.53,36.586 9.644,37.301 8.725,38.32"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#D8ECF9"
-            android:fillType="evenOdd"
-            android:pathData="M96.763,28.32L59.829,28.32C61.249,26.032 62.655,25.309 63.676,25.073C66.188,24.492 67.248,26.649 71.371,26.696C72.104,26.705 73.913,26.709 75.988,25.885C77.218,25.396 77.253,25.128 79.065,24.261C80.563,23.545 81.879,22.916 83.682,22.638C85.059,22.425 86.092,22.514 87.529,22.638C89.16,22.778 90.167,22.874 91.377,23.449C92.274,23.876 92.84,24.356 93.685,25.073C94.5,25.764 95.611,26.819 96.763,28.32"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M238.975,54.32L196.975,54.32C196.423,54.32 195.975,53.872 195.975,53.32C195.975,52.768 196.423,52.32 196.975,52.32L238.975,52.32C239.527,52.32 239.975,52.768 239.975,53.32C239.975,53.872 239.527,54.32 238.975,54.32"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M230.975,61.32L196.975,61.32C196.423,61.32 195.975,60.872 195.975,60.32C195.975,59.768 196.423,59.32 196.975,59.32L230.975,59.32C231.527,59.32 231.975,59.768 231.975,60.32C231.975,60.872 231.527,61.32 230.975,61.32"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M224.975,47.32L196.975,47.32C196.423,47.32 195.975,46.872 195.975,46.32C195.975,45.768 196.423,45.32 196.975,45.32L224.975,45.32C225.527,45.32 225.975,45.768 225.975,46.32C225.975,46.872 225.527,47.32 224.975,47.32"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#657887"
-            android:fillType="evenOdd"
-            android:pathData="M243.613,65.207L191.997,65.207C189.616,65.207 187.687,63.277 187.687,60.897L187.687,39.517C187.687,37.136 189.616,35.207 191.997,35.207L243.613,35.207C245.993,35.207 247.923,37.136 247.923,39.517L247.923,60.897C247.923,63.277 245.993,65.207 243.613,65.207"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M237.687,51.091L195.687,51.091C195.135,51.091 194.687,50.643 194.687,50.091C194.687,49.539 195.135,49.091 195.687,49.091L237.687,49.091C238.239,49.091 238.687,49.539 238.687,50.091C238.687,50.643 238.239,51.091 237.687,51.091"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M229.687,58.091L195.687,58.091C195.135,58.091 194.687,57.643 194.687,57.091C194.687,56.539 195.135,56.091 195.687,56.091L229.687,56.091C230.239,56.091 230.687,56.539 230.687,57.091C230.687,57.643 230.239,58.091 229.687,58.091"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M223.687,44.091L195.687,44.091C195.135,44.091 194.687,43.643 194.687,43.091C194.687,42.539 195.135,42.091 195.687,42.091L223.687,42.091C224.239,42.091 224.687,42.539 224.687,43.091C224.687,43.643 224.239,44.091 223.687,44.091"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#657887"
-            android:fillType="evenOdd"
-            android:pathData="M197.376,61.685L188.855,68.927C188.366,69.342 187.687,68.926 187.687,68.212L187.687,60.97C187.687,60.485 188.018,60.092 188.425,60.092L196.947,60.092C197.666,60.092 197.961,61.188 197.376,61.685"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_reset.xml b/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_reset.xml
index 5503969f25eef32e8d0737af28c515296a59e740..841867d94362037b540317bb7eb316969ee1b380 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_reset.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_reset.xml
@@ -3,73 +3,73 @@
     android:height="220dp"
     android:viewportWidth="360"
     android:viewportHeight="220">
-    <path
-        android:fillColor="#E9F6FF"
-        android:fillType="evenOdd"
-        android:pathData="M184.365,114.5m-85.5,0a85.5,85.5 0,1 1,171 0a85.5,85.5 0,1 1,-171 0"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M110.283,132.846C110.684,124.899 111.297,116.976 111.446,109.007C111.76,92.416 111.329,75.838 111.234,59.23C103.114,56.998 97.441,55.502 97.441,55.502C97.441,55.502 82.544,50.912 81.352,57.863C80.16,64.813 96.842,70.777 96.842,70.777L98.233,70.973L98.034,81.302C98.034,81.302 82.348,95.598 82.546,101.16C82.744,106.722 91.477,105.547 91.477,105.547C91.477,105.547 84.464,119.572 87.717,123.993C90.098,127.235 93.081,126.38 93.081,126.38C93.081,126.38 85.165,131.772 87.521,137.897C88.56,140.593 96.655,142.465 96.655,142.465L109.971,143.916C109.496,140.198 109.807,136.524 110.305,132.849"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#FFFFFF"
-        android:fillType="nonZero"
-        android:pathData="M109.423,174.275C104.321,174.273 100.186,170.137 100.185,165.036L100.198,40.056C100.205,34.96 104.339,30.832 109.436,30.832L159.544,30.832C164.638,30.841 168.763,34.971 168.765,40.065L168.765,165.046C168.763,170.144 164.629,174.276 159.531,174.275L109.423,174.275Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E7E7E7"
-        android:fillType="evenOdd"
-        android:pathData="M115,47L153,47A4,4 0,0 1,157 51L157,59A4,4 0,0 1,153 63L115,63A4,4 0,0 1,111 59L111,51A4,4 95.31,0 1,115 47z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E7E7E7"
-        android:fillType="evenOdd"
-        android:pathData="M115,70L153,70A4,4 0,0 1,157 74L157,107A4,4 0,0 1,153 111L115,111A4,4 86.437,0 1,111 107L111,74A4,4 0,0 1,115 70z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E7E7E7"
-        android:fillType="evenOdd"
-        android:pathData="M115,119L153,119A4,4 0,0 1,157 123L157,154A4,4 0,0 1,153 158L115,158A4,4 0,0 1,111 154L111,123A4,4 0,0 1,115 119z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#00000000"
-        android:fillType="evenOdd"
-        android:pathData="M159.531,174.275L109.423,174.275C104.321,174.273 100.186,170.137 100.185,165.036L100.198,40.056C100.205,34.96 104.339,30.832 109.436,30.832L159.544,30.832C164.638,30.841 168.763,34.971 168.765,40.065L168.765,165.046C168.763,170.144 164.629,174.276 159.531,174.275L159.531,174.275Z"
-        android:strokeWidth="3.56651591"
-        android:strokeColor="#4A4A4A" />
-    <path
-        android:fillColor="#F7B994"
-        android:fillType="evenOdd"
-        android:pathData="M261.864,154.261L211.411,135.22C211.411,135.22 205.134,132.549 199.86,121.719C194.586,110.889 191.818,86.139 187.787,82.959C187.787,82.959 189.1,61.901 178.651,58.831C178.651,58.831 177.401,43.274 176.247,43.08C175.093,42.887 169.308,41.931 166.526,49.029C163.743,56.127 164.1,69.98 170.534,74.879C170.534,74.879 170.644,162.912 170.621,163.177C169.987,170.166 169.349,169.709 168.071,171.959C173.465,174.148 194.393,183.715 218.136,194.673C237.038,186.878 251.614,173.407 261.864,154.261Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#657888"
-        android:fillType="nonZero"
-        android:pathData="M113,101.5a21,20.5 0,1 0,42 0a21,20.5 0,1 0,-42 0z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#00000000"
-        android:fillType="evenOdd"
-        android:pathData="M123.782,100.362C124.153,95.183 127.948,90.947 132.942,90.137C137.937,89.328 142.817,92.157 144.723,96.968C146.629,101.779 145.06,107.304 140.934,110.307C137.971,112.464 134.25,112.911 130.985,111.718C130.389,111.5 129.809,111.228 129.252,110.901"
-        android:strokeWidth="3"
-        android:strokeColor="#FFFFFF"
-        android:strokeLineCap="round" />
-    <path
-        android:fillColor="#FFFFFF"
-        android:fillType="nonZero"
-        android:pathData="M123.78,105.228l-3.78,-5.71l7.564,0z"
-        android:strokeWidth="1.017"
-        android:strokeColor="#FFFFFF"
-        android:strokeLineCap="round"
-        android:strokeLineJoin="round" />
+  <path
+      android:pathData="M184.365,114.5m-85.5,0a85.5,85.5 0,1 1,171 0a85.5,85.5 0,1 1,-171 0"
+      android:strokeWidth="1"
+      android:fillColor="#E9F6FF"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M110.283,132.846C110.684,124.899 111.297,116.976 111.446,109.007C111.76,92.416 111.329,75.838 111.234,59.23C103.114,56.998 97.441,55.502 97.441,55.502C97.441,55.502 82.544,50.912 81.352,57.863C80.16,64.813 96.842,70.777 96.842,70.777L98.233,70.973L98.034,81.302C98.034,81.302 82.348,95.598 82.546,101.16C82.744,106.722 91.477,105.547 91.477,105.547C91.477,105.547 84.464,119.572 87.717,123.993C90.098,127.235 93.081,126.38 93.081,126.38C93.081,126.38 85.165,131.772 87.521,137.897C88.56,140.593 96.655,142.465 96.655,142.465L109.971,143.916C109.496,140.198 109.807,136.524 110.305,132.849"
+      android:strokeWidth="1"
+      android:fillColor="#F7B994"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M109.423,174.275C104.321,174.273 100.186,170.137 100.185,165.036L100.198,40.056C100.205,34.96 104.339,30.832 109.436,30.832L159.544,30.832C164.638,30.841 168.763,34.971 168.765,40.065L168.765,165.046C168.763,170.144 164.629,174.276 159.531,174.275L109.423,174.275Z"
+      android:strokeWidth="1"
+      android:fillColor="#FFFFFF"
+      android:fillType="nonZero"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M115,47L153,47A4,4 0,0 1,157 51L157,59A4,4 0,0 1,153 63L115,63A4,4 0,0 1,111 59L111,51A4,4 95.31,0 1,115 47z"
+      android:strokeWidth="1"
+      android:fillColor="#E7E7E7"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M115,70L153,70A4,4 0,0 1,157 74L157,107A4,4 0,0 1,153 111L115,111A4,4 86.437,0 1,111 107L111,74A4,4 0,0 1,115 70z"
+      android:strokeWidth="1"
+      android:fillColor="#E7E7E7"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M115,119L153,119A4,4 0,0 1,157 123L157,154A4,4 0,0 1,153 158L115,158A4,4 0,0 1,111 154L111,123A4,4 0,0 1,115 119z"
+      android:strokeWidth="1"
+      android:fillColor="#E7E7E7"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M159.531,174.275L109.423,174.275C104.321,174.273 100.186,170.137 100.185,165.036L100.198,40.056C100.205,34.96 104.339,30.832 109.436,30.832L159.544,30.832C164.638,30.841 168.763,34.971 168.765,40.065L168.765,165.046C168.763,170.144 164.629,174.276 159.531,174.275L159.531,174.275Z"
+      android:strokeWidth="3.56651591"
+      android:fillColor="#00000000"
+      android:strokeColor="#4A4A4A"
+      android:fillType="evenOdd"/>
+  <path
+      android:pathData="M261.864,154.261L211.411,135.22C211.411,135.22 205.134,132.549 199.86,121.719C194.586,110.889 191.818,86.139 187.787,82.959C187.787,82.959 189.1,61.901 178.651,58.831C178.651,58.831 177.401,43.274 176.247,43.08C175.093,42.887 169.308,41.931 166.526,49.029C163.743,56.127 164.1,69.98 170.534,74.879C170.534,74.879 170.644,162.912 170.621,163.177C169.987,170.166 169.349,169.709 168.071,171.959C173.465,174.148 194.393,183.715 218.136,194.673C237.038,186.878 251.614,173.407 261.864,154.261Z"
+      android:strokeWidth="1"
+      android:fillColor="#F7B994"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M113,101.5a21,20.5 0,1 0,42 0a21,20.5 0,1 0,-42 0z"
+      android:strokeWidth="1"
+      android:fillColor="#657888"
+      android:fillType="nonZero"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M123.782,100.362C124.153,95.183 127.948,90.947 132.942,90.137C137.937,89.328 142.817,92.157 144.723,96.968C146.629,101.779 145.06,107.304 140.934,110.307C137.971,112.464 134.25,112.911 130.985,111.718C130.389,111.5 129.809,111.228 129.252,110.901"
+      android:strokeWidth="3"
+      android:fillColor="#00000000"
+      android:strokeColor="#FFFFFF"
+      android:fillType="evenOdd"
+      android:strokeLineCap="round"/>
+  <path
+      android:pathData="M123.78,105.228l-3.78,-5.71l7.564,0z"
+      android:strokeLineJoin="round"
+      android:strokeWidth="1.017"
+      android:fillColor="#FFFFFF"
+      android:fillType="nonZero"
+      android:strokeColor="#FFFFFF"
+      android:strokeLineCap="round"/>
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_tracing_off.xml b/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_tracing_off.xml
index cb3a75d75758572570bd28f9dfab04e8667b82f3..e12914608265c1b375a53504ef4f822f0413d6ad 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_tracing_off.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_tracing_off.xml
@@ -3,247 +3,280 @@
     android:height="220dp"
     android:viewportWidth="360"
     android:viewportHeight="220">
-    <group>
-        <clip-path android:pathData="M0.25,0h359.75v220h-359.75z" />
-        <path
-            android:fillColor="#EFF4F7"
-            android:fillType="nonZero"
-            android:pathData="M272.302,55.25m-19.597,0a19.597,19.597 0,1 1,39.194 0a19.597,19.597 0,1 1,-39.194 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CEDEE7"
-            android:fillType="nonZero"
-            android:pathData="M272.302,55.25m-13.634,0a13.634,13.634 0,1 1,27.268 0a13.634,13.634 0,1 1,-27.268 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#EFF4F7"
-            android:fillType="nonZero"
-            android:pathData="M98.681,79.997m-20.07,0a20.07,20.07 0,1 1,40.14 0a20.07,20.07 0,1 1,-40.14 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CEDEE7"
-            android:fillType="nonZero"
-            android:pathData="M98.681,79.997m-13.966,0a13.966,13.966 0,1 1,27.932 0a13.966,13.966 0,1 1,-27.932 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#EAF1F6"
-            android:fillType="nonZero"
-            android:pathData="M198.5,132.5m-69.5,0a69.5,69.5 0,1 1,139 0a69.5,69.5 0,1 1,-139 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#C3D7E2"
-            android:fillType="nonZero"
-            android:pathData="M151,132.5a47.5,48 0,1 0,95 0a47.5,48 0,1 0,-95 0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFC2B0"
-            android:fillType="evenOdd"
-            android:pathData="M318.328,60.435C316.524,63.136 316.947,66.738 319.329,68.952C320.998,70.188 322.666,68.72 322.666,66.962C322.452,65.281 322.117,63.619 321.665,61.986C321.356,60.907 320.33,60.717 319.997,59.887"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M306.082,17.25l0.734,8.02l-7.433,0.688l-1.393,-8.517z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M296.363,10.782C296.363,23.86 309.002,23.305 309.319,10.782C309.144,-2.098 296.522,-2.065 296.363,10.782"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#8D8D99"
-            android:fillType="evenOdd"
-            android:pathData="M314.107,61.513C323.05,63.23 311.763,124.137 311.137,134.496L307.8,134.595C307.275,134.446 305.515,76.333 304.105,77.37C302.248,83.67 300.042,89.864 297.498,95.923C296.58,108.802 296.722,122.329 295.354,134.902L291.842,135.731C290.507,136.187 288.905,96.072 288.455,95.79L290.841,77.669C291.183,77.387 293.302,61.513 294.662,62.268L314.082,61.529"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B2DBF0"
-            android:fillType="evenOdd"
-            android:pathData="M275.224,57.673C273.706,58.229 270.753,54.455 272.855,53.41C277.76,50.972 281.84,43.765 282.315,43.234C285.519,39.353 288.855,30.304 292.534,25.959C295.512,23.471 296.197,24.084 299.4,23.354C301.068,26.481 304.664,25.42 306.691,23.943C306.808,23.877 307.275,23.943 307.342,23.943C323.192,23.686 322.958,50.881 320.205,61.206C319.805,61.355 319.538,61.704 317.611,61.43C317.611,61.43 316.985,53.452 316.977,53.452C316.585,50.134 315.392,37.694 313.915,35.82C314.199,42.396 315.5,53.576 316.284,61.753C316.284,62.019 315.867,62.292 315.6,62.292L294.878,62.55C294.628,62.55 293.944,61.994 293.944,61.72C293.794,53.319 294.828,43.226 293.994,35.604C291.809,39.842 280.171,55.873 275.224,57.665"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M307.825,133.782L311.388,134.23C311.479,134.23 312.464,137.639 312.831,139.132C313.365,140.89 312.831,143.278 311.212,144.108C309.828,144.871 308.76,145.576 307.292,144.108C305.823,142.64 305.573,141.719 306.19,139.181C306.808,136.644 307.767,133.782 307.767,133.749"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M284.784,139.563L289.965,136.95L295.88,130.357C298.207,132.414 297.94,134.039 297.94,134.039C297.94,135.093 296.981,141.794 296.981,141.794L295.996,141.794L294.962,136.113C290.666,143.817 294.962,141.412 283.934,141.794C283.801,140.956 284.117,140.111 284.768,139.563"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M297.356,13.726C296.18,16.098 301.36,20.493 299.742,23.388C298.991,25.312 291.441,28.364 291.4,23.894C298.115,23.338 291.525,13.162 293.686,7.754C294.42,2.09 303.554,-2.687 308.109,1.733C315.659,7.904 306.549,22.119 314.724,23.976C314.382,28.903 307.091,25.403 305.815,22.666C304.046,17.939 311.655,15.343 307.767,6.444C306.427,9.086 304.146,11.137 301.369,12.2"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M276.159,61.148C276.217,61.538 271.787,60.161 271.654,60.194C270.82,60.534 268.501,50.325 268.192,49.91C268.008,49.786 268.45,49.006 268.926,48.956L273.039,49.628C274.24,48.973 276.125,59.904 276.509,60.31C276.659,60.725 276.417,60.916 276.159,61.14"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M269.251,54.372C269.668,54.024 270.002,55.483 270.703,55.6C271.475,55.724 272.184,56.097 272.722,56.661C276.234,62.69 265.781,60.99 269.251,54.372"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="evenOdd"
-            android:pathData="M80.554,49.658C80.554,49.658 89.616,64.153 95.26,74.283C95.659,74.995 98.004,78.565 98.128,79.253C98.128,79.253 97.688,84.222 95.535,83.038C88.46,75.111 77.229,56.988 73.904,53.51C70.138,49.575 80.554,49.658 80.554,49.658Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M65.125,169.908L55.797,162.951C54.211,162.333 52.482,162.175 50.809,162.495C49.978,162.669 49.895,162.064 49.912,162.818L48.964,165.908C48.083,167.97 48.448,169.552 50.809,170.455C54.226,171.391 61.982,175.474 65.457,172.89C66.97,172.128 67.12,170.67 65.158,169.908"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M83.597,167.374L73.288,161.162C71.778,160.722 70.168,160.751 68.675,161.244C67.843,161.493 67.951,160.905 67.802,161.642L67.112,164.814C66.422,166.935 67.112,168.409 69.514,169.105L78.825,171.093C81.319,171.523 88.377,169.436 83.597,167.374"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#8C8C99"
-            android:fillType="nonZero"
-            android:pathData="M47.908,82.98C48.108,80.18 76.896,79.294 77.088,83.684C78.858,124.146 77.171,151.669 74.419,160.797C74.373,160.948 74.308,161.092 74.228,161.228C73.214,162.744 70.903,162.768 68.899,161.808C68.212,161.462 67.797,160.743 67.843,159.977C68.392,149.077 67.278,126.109 63.138,104.408C63.08,104.109 63.013,103.405 62.98,103.712C62.98,103.712 56.329,160.085 56.221,163.928C56.163,166.198 52.896,166.653 51.607,165.875C51.183,165.609 49.862,164.558 49.82,163.961C48.349,143.146 46.96,96.141 47.908,82.98Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="nonZero"
-            android:pathData="M73.072,21.331C73.787,6.571 46.802,12.361 57.734,28.338C59.306,30.699 60.694,34.252 64.185,35.056L65.291,24.951C68.758,22.507 71.9,20.61 73.072,21.331Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="nonZero"
-            android:pathData="M58.325,24.379C56.28,23.311 55.914,25.795 56.762,27.485C57.385,28.794 59.214,30.459 59.488,28.587C59.214,27.866 59.081,24.851 58.325,24.379Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M93.939,87.502C93.872,87.95 98.868,86.393 99.018,86.434C99.941,86.815 102.568,75.285 102.917,74.838C103.125,74.705 102.626,73.819 102.086,73.769L97.455,74.515C96.092,73.786 93.972,86.111 93.54,86.591C93.382,87.03 93.648,87.254 93.939,87.502Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="nonZero"
-            android:pathData="M101.72,79.857C101.254,79.46 100.888,81.108 100.057,81.241C99.186,81.381 98.385,81.803 97.779,82.442C93.855,89.25 105.635,87.328 101.72,79.857Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="nonZero"
-            android:pathData="M48.199,89.805C47.093,88.397 45.057,85.788 43.211,83.394C36.91,75.269 47.642,63.085 52.663,57.063L44.724,52.64C34.89,73.264 29.12,78.416 45.639,92.745C46.146,96.688 53.794,98.966 55.373,94.692C55.872,91.636 51.317,89.267 48.199,89.805Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B1DAEF"
-            android:fillType="evenOdd"
-            android:pathData="M74.968,40.646C71.642,37.176 66.056,37.772 60.835,37.458C57.137,38.237 53.561,39.508 50.203,41.235C49.58,41.525 49.003,41.905 48.49,42.361C47.357,43.186 46.429,44.26 45.78,45.5C40.343,53.369 35.879,68.916 34.308,74.175C33.643,76.42 40.385,78.83 41.79,77.488C44.508,74.888 47.659,63.648 47.659,63.648L47.709,86.31C47.709,86.969 48.086,87.57 48.681,87.859C55.581,91.172 70.994,90.062 76.115,87.718C76.816,87.394 77.275,86.706 77.304,85.937L77.528,79.004C77.761,72.163 77.57,66.621 77.753,59.192L82.674,68.137C83.095,68.793 83.769,69.249 84.536,69.396C87.524,69.333 90.123,67.339 90.946,64.476C91.361,63.308 81.336,46.494 74.968,40.646Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="evenOdd"
-            android:pathData="M64.061,41.408C64.945,41.559 65.852,41.325 66.552,40.766C67.253,40.208 67.68,39.377 67.727,38.485L68.084,29.051C68.114,28.244 67.82,27.459 67.268,26.869C66.716,26.279 65.951,25.931 65.141,25.903C64.253,25.74 63.338,25.965 62.628,26.522C61.918,27.078 61.483,27.912 61.434,28.81L59.771,37.839C59.713,39.495 62.365,41.351 64.044,41.408"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="nonZero"
-            android:pathData="M73.072,21.314C72.524,15.516 64.684,16.071 59.846,19.658C59.463,21.136 58.957,22.579 58.333,23.973C58.74,26.011 58.981,29.233 59.721,31.154C60.935,33.059 65.058,36.596 67.785,36.331C72.565,34.426 73.629,24.768 73.072,21.314Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="nonZero"
-            android:pathData="M72.84,19.227C72.84,19.227 75.566,12.659 72.241,11.102C70.056,10.144 67.568,10.144 65.383,11.102C63.213,12.178 61.567,11.449 59.804,12.626C54.243,16.394 54.251,19.592 56.163,25.307C56.446,24.081 56.828,24.164 57.369,23.253C58.757,24.984 59.106,24.636 59.173,27.626C59.173,28.264 59.447,29.133 59.106,29.473C58.607,29.97 59.397,30.914 59.555,31.204C60.769,33.109 64.335,37.3 67.818,37.002C70.188,36.795 71.385,32.587 72.307,29.771C71.185,32.571 71.094,29.63 69.381,29.771C68.417,29.879 65.391,29.324 64.676,30.21C64.22,30.804 63.387,30.958 62.747,30.566C61.589,30.111 60.719,29.132 60.403,27.932C60.32,27.452 60.228,27.021 60.153,26.624C60.153,26.441 60.104,26.267 60.079,26.077L60.079,26.077C59.788,24.42 59.804,23.211 61.043,20.925C60.942,20.172 61.15,19.411 61.619,18.812C62.088,18.214 62.78,17.829 63.537,17.744C63.537,17.67 63.537,17.612 63.446,17.562C66.673,16.786 70.079,17.39 72.84,19.227L72.84,19.227ZM65.856,30.707L69.306,30.757C69.98,30.757 69.705,31.585 69.589,32.007C69.115,33.946 65.782,33.664 65.366,31.809C65.225,31.403 65.266,30.707 65.856,30.707Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M188.867,220.048C188.187,212.418 187.706,204.78 186.786,197.159C184.862,181.293 182.224,165.528 179.911,149.712C171.858,148.676 166.251,147.987 166.251,147.987C166.251,147.987 151.431,145.624 151.224,152.416C151.017,159.208 167.728,162.65 167.728,162.65L169.079,162.65L170.274,172.527C170.274,172.527 157.228,188.285 158.165,193.543C159.103,198.801 167.288,196.512 167.288,196.512C167.288,196.512 162.478,210.851 166.169,214.633C168.872,217.411 171.601,216.192 171.601,216.192C171.601,216.192 164.759,222.395 167.844,227.919C169.196,230.348 177.165,231.053 177.165,231.053L190.045,230.647C189.195,227.18 188.805,223.617 188.884,220.048"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M193.296,259.723C188.431,260.403 183.934,257.016 183.244,252.152L166.492,132.952C165.812,128.086 169.2,123.589 174.064,122.9L221.842,116.191C226.708,115.506 231.208,118.896 231.893,123.763L248.646,242.954C249.325,247.822 245.933,252.321 241.066,253.006L193.296,259.723Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#00000000"
-            android:fillType="evenOdd"
-            android:pathData="M241.397,252.964L193.619,259.682C188.753,260.361 184.257,256.968 183.576,252.102L166.824,132.91C166.493,130.573 167.105,128.2 168.525,126.314C169.946,124.429 172.058,123.185 174.395,122.859L222.165,116.141C227.03,115.461 231.527,118.849 232.217,123.713L248.961,242.888C249.297,245.228 248.688,247.605 247.269,249.495C245.85,251.386 243.738,252.634 241.397,252.964Z"
-            android:strokeWidth="4.03"
-            android:strokeColor="#4A4A4A" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M285.626,208.761C285.626,208.761 279.281,207.102 272.804,197.432C266.327,187.762 260.364,164.566 256.093,162.086C256.093,162.086 254.526,141.825 244.126,140.299C244.126,140.299 240.809,125.629 239.73,125.595C238.652,125.562 232.98,125.421 231.271,132.578C229.563,139.736 231.769,152.88 238.561,156.695C238.561,156.695 250.462,240.641 250.479,240.889C250.81,247.648 250.139,247.3 249.226,249.606C257.321,251.646 300.462,264.658 335.941,275.439L335.941,220.065L285.626,208.761Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#EBAFB4"
-            android:fillType="nonZero"
-            android:pathData="M195.55,173.548L189.956,169.406C189.956,169.406 178.281,185.445 194.501,198.021L197.963,193.24C197.963,193.24 187.667,185.055 195.55,173.548Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F8E0E2"
-            android:fillType="nonZero"
-            android:pathData="M189.956,169.422L184.866,165.719C184.866,165.719 169.771,185.701 190.824,203.149L194.509,198.037C194.509,198.037 194.344,197.913 194.063,197.673C178.529,185.146 189.956,169.422 189.956,169.422Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#EBAFB4"
-            android:fillType="nonZero"
-            android:pathData="M214.422,170.507L218.462,164.799C218.462,164.799 234.533,176.398 223.015,193.414L218.247,189.951C218.247,189.951 225.485,178.983 214.422,170.507Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F8E0E2"
-            android:fillType="nonZero"
-            android:pathData="M218.462,164.841L222.155,159.737C222.155,159.737 242.696,174.012 228.113,197.159L223.015,193.464C223.015,193.464 223.139,193.282 223.329,192.967C234.202,176.216 218.462,164.841 218.462,164.841Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#C00F2D"
-            android:fillType="nonZero"
-            android:pathData="M208.844,196.132C203.234,197.033 197.634,194.456 194.658,189.602C191.681,184.749 191.915,178.575 195.249,173.962C198.583,169.348 204.361,167.203 209.887,168.527C215.414,169.851 219.601,174.383 220.495,180.01C221.714,187.687 216.5,194.902 208.844,196.132ZM204.911,171.427C198.971,172.372 194.917,177.964 195.854,183.921C196.79,189.878 202.363,193.948 208.305,193.015C214.247,192.083 218.312,186.499 217.388,180.54C216.939,177.673 215.372,175.102 213.032,173.393C210.692,171.684 207.771,170.977 204.911,171.427L204.911,171.427Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F8F8F8"
-            android:fillType="evenOdd"
-            android:pathData="M223.568,193.464L223.568,193.464C222.521,194.843 220.557,195.11 219.181,194.061L190.526,172.57C189.135,171.538 188.836,169.573 189.857,168.171L189.857,168.171C190.91,166.794 192.876,166.531 194.253,167.583L222.899,189.073C224.289,190.103 224.589,192.065 223.568,193.464L223.568,193.464Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#C00F2D"
-            android:fillType="nonZero"
-            android:pathData="M191.233,169.082C191.761,168.375 192.762,168.229 193.469,168.757C193.47,168.758 193.471,168.759 193.472,168.759L222.022,190.182C222.73,190.713 222.874,191.717 222.345,192.427C221.817,193.134 220.816,193.279 220.109,192.751C220.108,192.751 220.107,192.75 220.106,192.749L191.556,171.326C190.848,170.795 190.704,169.791 191.233,169.082Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
+  <group>
+    <clip-path
+        android:pathData="M0.25,0h359.75v220h-359.75z"/>
+    <path
+        android:pathData="M273.65,57.454C273.547,59.088 272.138,60.311 270.528,60.214C268.919,60.117 267.674,58.734 267.777,57.1C267.88,55.467 269.289,54.244 270.899,54.34C272.509,54.437 273.753,55.82 273.65,57.454Z"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M286.863,58.512C286.301,67.579 278.605,74.465 269.698,73.919C260.789,73.373 254.002,65.599 254.564,56.532C255.126,47.466 262.822,40.58 271.73,41.126C280.637,41.672 287.425,49.446 286.863,58.512Z"
+        android:strokeAlpha="0.35999998"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.35999998"/>
+    <path
+        android:pathData="M291.267,58.518C290.552,69.886 280.758,78.519 269.42,77.834C258.083,77.149 249.445,67.403 250.16,56.036C250.875,44.669 260.669,36.036 272.007,36.72C283.344,37.405 291.982,47.151 291.267,58.518Z"
+        android:strokeAlpha="0.14"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.14"/>
+    <path
+        android:pathData="M295.508,58.775C294.646,72.488 282.83,82.902 269.154,82.076C255.477,81.25 245.056,69.492 245.919,55.779C246.781,42.067 258.597,31.652 272.273,32.478C285.95,33.304 296.371,45.062 295.508,58.775Z"
+        android:strokeAlpha="0.04"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.04"/>
+    <path
+        android:pathData="M282.458,58.246C282.049,64.881 276.45,69.913 269.974,69.514C263.499,69.115 258.56,63.433 258.969,56.799C259.378,50.164 264.978,45.132 271.453,45.531C277.928,45.93 282.867,51.612 282.458,58.246Z"
+        android:strokeAlpha="0.5"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.5"/>
+    <path
+        android:pathData="M278.005,57.694C277.75,61.747 274.257,64.813 270.228,64.57C266.2,64.327 263.118,60.864 263.373,56.811C263.628,52.758 267.121,49.692 271.15,49.935C275.178,50.178 278.26,53.641 278.005,57.694Z"
+        android:strokeWidth="1.47107172"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M319.23,65.532C317.22,68.19 316.905,74.736 320.64,74.489C323.81,74.28 321.956,67.366 321.608,65.931C321.224,64.348 321.134,65.693 320.801,64.798"
+        android:strokeWidth="1"
+        android:fillColor="#FFC1AF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M306.395,19.746l0.675,8.585l-7.909,0.641l-1.376,-9.127z"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M296.165,12.665C296.007,26.659 309.449,26.227 309.946,12.796C309.896,-0.922 296.474,-1.048 296.165,12.665"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M314.955,67.154C320.875,89.327 316.041,121.398 314.729,147.1L310.692,147.295C310.692,147.295 307.708,105.582 306.575,96.103C306.23,93.225 305.157,87.074 304.617,84.401C304.576,84.198 304.131,83.32 304.096,84.355C303.872,90.908 301.041,98.157 300.501,105.369C299.239,122.224 299.763,133.935 299.321,147.836C299.321,147.836 294.682,150.682 294.673,150.652C293.633,146.79 290.502,114.901 290.425,110.114C290.409,109.132 288.808,88.702 293.681,67.821L314.955,67.154Z"
+        android:strokeWidth="1"
+        android:fillColor="#385460"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M274.37,61.957C272.746,62.537 269.653,58.459 271.905,57.367C277.153,54.821 281.584,47.159 282.096,46.599C285.585,42.489 288.116,33.63 292.069,29.029C295.27,26.445 295.396,27.276 298.807,26.544C301.37,29.941 305.758,27.966 307.02,26.598C307.17,26.436 307.582,26.629 307.649,26.588C313.221,27.275 316.275,30.67 319.134,36.104C321.044,39.734 322.285,45.623 322.418,49.7C322.647,56.684 322.566,61.948 322.199,66.807C322.164,67.264 320.14,67.137 318.096,66.823C318.085,66.821 316.836,50.441 316.828,50.436C316.154,46.668 314.673,41.334 313.988,38.985C314.204,46.021 314.402,57.552 315.374,66.484C315.421,66.921 315.356,67.75 314.96,67.71C314.96,67.71 302.143,69.52 296.916,68.475C296.168,68.325 293.617,68.056 293.565,67.51C292.706,58.631 295.247,48.873 294.67,38.985C292.999,45.244 282.294,59.131 274.37,61.957"
+        android:strokeWidth="1"
+        android:fillColor="#E8A5A1"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M312.971,28.399C312.332,28.078 312.679,28.136 310.777,27.417C309.236,26.834 307.419,27.063 306.961,26.627C305.998,25.712 305.538,23.888 305.886,22.255C306.074,21.372 306.419,21.009 306.609,20.785C310.876,15.767 308.204,7.663 308.204,7.663C308.204,7.663 305.78,12.617 296.821,15.921C296.821,15.921 297.162,18.242 298.452,19.896C298.546,20.016 299.518,20.917 299.536,22.308C299.553,23.672 299.538,25.055 298.582,27.135C297.414,29.676 294.517,30.256 292.334,29.352C290.705,28.677 290.07,27.032 290.014,25.417C290.014,25.417 294.473,25.733 293.482,20.737C292.741,16.982 291.903,8.79 295.656,4.103C295.71,4.039 295.763,3.974 295.816,3.909C295.853,3.86 295.896,3.812 295.939,3.767C296.016,3.678 296.096,3.591 296.175,3.507C296.251,3.43 296.327,3.352 296.403,3.274C297.577,2.113 299.113,1.247 301.112,0.839C301.112,0.839 308.733,-0.117 309.989,4.358C309.989,4.358 312.075,5.434 312.293,9.372C312.507,13.311 311.832,14.744 311.665,17.761C311.464,21.428 311.482,24.736 316.23,24.76C316.23,24.76 315.78,26.898 312.971,28.399"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M275.699,64.809C275.72,65.327 275.243,65.724 274.729,65.649C273.357,65.45 270.659,64.579 270.536,64.613C269.66,64.96 267.157,54.196 266.99,53.563C266.941,53.377 266.995,53.171 267.21,52.913C267.42,52.661 267.753,52.549 268.075,52.61C268.86,52.758 270.992,53.16 271.882,53.328C272.229,53.394 272.528,53.613 272.692,53.926C273.834,56.112 275.672,64.272 275.698,64.796C275.699,64.801 275.699,64.805 275.699,64.809"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M268.063,58.353C268.505,57.978 268.845,59.546 269.583,59.681C269.905,59.74 270.23,59.842 270.538,59.981C271.299,60.326 271.863,60.992 272.17,61.769C274.287,67.123 264.478,65.023 268.063,58.353"
+        android:strokeWidth="1"
+        android:fillColor="#F6B893"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M310.539,143.409L314.38,144.178C314.805,145.869 318.079,153.218 314.379,154.907C312.924,155.749 311.798,156.52 310.214,154.974C306.815,152.994 310.474,144.786 310.539,143.409"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M299.294,145.279C299.182,146.152 300.125,152.348 299.225,152.925C298.932,153.268 298.588,153.409 298.428,153.464C293.75,153.547 288.418,153.642 283.741,153.725C281.098,150.91 294.153,149.894 293.859,145.235C295.671,145.25 297.482,145.264 299.294,145.279"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M102.344,81.408C102.235,83.14 100.741,84.437 99.035,84.334C97.329,84.232 96.01,82.766 96.119,81.034C96.228,79.302 97.722,78.006 99.428,78.108C101.134,78.211 102.453,79.677 102.344,81.408Z"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M116.35,82.53C115.754,92.141 107.597,99.44 98.154,98.861C88.712,98.282 81.518,90.042 82.113,80.431C82.709,70.821 90.866,63.522 100.308,64.101C109.751,64.679 116.945,72.92 116.35,82.53Z"
+        android:strokeAlpha="0.35999998"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.35999998"/>
+    <path
+        android:pathData="M121.018,82.537C120.26,94.586 109.878,103.737 97.861,103.011C85.843,102.286 76.686,91.954 77.445,79.905C78.202,67.856 88.585,58.705 100.602,59.431C112.62,60.156 121.776,70.488 121.018,82.537Z"
+        android:strokeAlpha="0.14"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.14"/>
+    <path
+        android:pathData="M125.514,82.808C124.6,97.344 112.075,108.383 97.578,107.508C83.08,106.632 72.034,94.169 72.949,79.633C73.863,65.098 86.388,54.059 100.885,54.934C115.382,55.81 126.429,68.273 125.514,82.808Z"
+        android:strokeAlpha="0.04"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.04"/>
+    <path
+        android:pathData="M111.681,82.248C111.248,89.281 105.312,94.615 98.448,94.192C91.584,93.769 86.348,87.746 86.782,80.714C87.215,73.681 93.152,68.347 100.015,68.77C106.879,69.193 112.115,75.216 111.681,82.248Z"
+        android:strokeAlpha="0.5"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"
+        android:fillAlpha="0.5"/>
+    <path
+        android:pathData="M106.96,81.663C106.69,85.959 102.987,89.209 98.717,88.951C94.447,88.694 91.18,85.023 91.45,80.727C91.721,76.431 95.423,73.181 99.694,73.439C103.964,73.696 107.231,77.367 106.96,81.663Z"
+        android:strokeWidth="1.55933603"
+        android:fillColor="#00000000"
+        android:strokeColor="#C2D6E1"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M80.863,50.059C80.863,50.059 89.991,64.711 95.676,74.96C96.077,75.683 98.442,79.288 98.567,80.024C98.567,80.024 98.128,85.089 95.957,83.853C88.81,75.795 77.518,57.473 74.133,53.953C70.353,49.97 80.863,50.059 80.863,50.059"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M65.299,171.663L55.899,164.633C54.631,164.118 52.686,163.776 50.866,164.169C50.049,164.346 49.943,163.736 49.957,164.492L48.979,167.623C48.095,169.702 48.459,171.303 50.842,172.216C54.283,173.169 62.097,177.297 65.598,174.678C67.126,173.909 67.269,172.435 65.299,171.663"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M83.91,169.07L73.527,162.782C72.217,162.381 70.654,162.321 68.876,162.873C68.077,163.121 68.145,162.529 67.998,163.274L67.299,166.479C66.601,168.628 67.264,170.117 69.717,170.817L79.101,172.828C81.602,173.264 88.725,171.164 83.91,169.07"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M47.951,83.753C48.154,80.922 77.162,80.03 77.355,84.465C79.14,125.383 77.436,153.224 74.661,162.451C74.615,162.605 74.556,162.754 74.467,162.888C73.453,164.423 71.093,164.442 69.104,163.473C68.407,163.133 67.998,162.395 68.037,161.621C68.591,150.597 67.468,127.373 63.294,105.422C63.237,105.12 63.168,104.413 63.134,104.718C63.134,104.718 56.435,161.729 56.328,165.62C56.265,167.908 52.94,168.37 51.681,167.588C51.251,167.321 49.92,166.256 49.877,165.649C48.395,144.602 46.997,97.064 47.951,83.753"
+        android:strokeWidth="1"
+        android:fillColor="#8C8C99"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M73.325,21.408C74.041,6.479 46.85,12.335 57.871,28.491C59.455,30.879 60.851,34.474 64.368,35.29L65.483,25.073C68.96,22.599 72.125,20.681 73.325,21.408"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M58.444,24.488C56.386,23.412 56.019,25.92 56.868,27.629C57.498,28.953 59.343,30.642 59.618,28.742C59.346,28.019 59.21,24.973 58.444,24.488"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M94.332,88.33C94.267,88.778 99.296,87.204 99.451,87.249C100.382,87.631 103.029,75.97 103.378,75.499C103.583,75.357 103.083,74.466 102.55,74.411L97.878,75.171C96.513,74.432 94.374,86.916 93.938,87.378C93.767,87.848 94.04,88.072 94.332,88.33"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M102.172,80.599C101.705,80.193 101.32,81.862 100.532,81.997C99.672,82.144 98.785,82.575 98.234,83.207C94.244,90.093 106.114,88.15 102.172,80.599"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M48.24,90.654C47.133,89.236 45.078,86.597 43.215,84.169C36.871,75.953 47.685,63.636 52.74,57.542L44.743,53.067C34.837,73.93 29.018,79.136 45.628,93.633C46.143,97.617 53.848,99.922 55.443,95.595C55.972,92.503 51.389,90.108 48.24,90.654"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M75.216,40.972C71.848,37.469 66.233,38.07 60.958,37.752C56.516,38.842 52.907,40.043 50.248,41.567C49.666,41.83 49.088,42.218 48.515,42.712C47.302,43.644 46.385,44.691 45.787,45.887C40.311,53.843 35.813,69.568 34.232,74.882C33.557,77.15 40.356,79.588 41.788,78.211C44.527,75.578 47.697,64.208 47.697,64.208L47.75,87.131C47.752,87.799 48.132,88.407 48.733,88.699C55.685,92.075 71.216,90.926 76.386,88.552C77.095,88.227 77.563,87.535 77.588,86.755L77.808,79.744C78.045,72.824 77.852,67.217 78.038,59.707L83,68.752C83.35,69.451 84.503,70.057 84.873,70.027C86.302,69.912 89.818,69.491 91.332,65.05C91.739,63.859 81.632,46.858 75.216,40.972"
+        android:strokeWidth="1"
+        android:fillColor="#B1DAEF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M64.229,41.713C66.078,41.982 67.865,40.677 67.919,38.76C67.919,38.76 68.258,29.21 68.258,29.21C68.319,27.518 66.982,26.082 65.288,26.023C63.44,25.751 61.653,27.058 61.598,28.974L59.923,38.103C59.863,39.797 62.535,41.652 64.229,41.713"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M73.338,21.389C72.786,15.549 64.889,16.089 60.013,19.727C59.723,20.726 59.234,22.566 58.487,24.093C58.902,26.15 59.142,29.406 59.885,31.355C61.11,33.279 65.264,36.856 68.015,36.584C72.793,34.655 73.867,24.885 73.338,21.389"
+        android:strokeWidth="1"
+        android:fillColor="#CB8E75"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M66.035,30.883C66.035,30.883 69.514,30.936 69.514,30.936C70.187,30.966 69.91,31.793 69.799,32.194C69.32,34.159 65.963,33.868 65.542,31.997C65.397,31.592 65.437,30.864 66.035,30.883M73.073,19.279C73.073,19.279 75.848,12.639 72.433,11.065C70.496,10.172 67.62,10.03 65.523,11.078C63.337,12.171 61.678,11.428 59.9,12.618C54.296,16.432 54.309,19.663 56.23,25.45C56.523,24.211 56.935,24.269 57.484,23.312C58.882,25.06 59.231,24.71 59.3,27.73C59.32,28.374 59.581,29.254 59.231,29.604C58.73,30.105 59.529,31.056 59.684,31.352C60.91,33.276 64.5,37.515 68.011,37.211C70.402,37.003 71.603,32.751 72.534,29.899C71.403,32.736 71.312,29.76 69.588,29.858C68.612,29.973 65.566,29.406 64.843,30.307C64.36,30.877 63.549,31.098 62.902,30.664C61.443,29.941 60.855,29.135 60.542,27.999C60.453,27.514 60.365,27.075 60.287,26.673C60.263,26.495 60.239,26.313 60.215,26.122L60.186,26.122C59.895,24.439 59.91,23.23 61.16,20.911C61.163,20.814 60.856,18.118 63.642,17.7C63.679,17.623 63.639,17.561 63.544,17.512C66.607,16.713 70.099,17.321 73.073,19.279"
+        android:strokeWidth="1"
+        android:fillColor="#4A4A4A"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M187.374,219.093C186.692,211.443 186.21,203.784 185.287,196.141C183.357,180.233 180.713,164.424 178.393,148.565C170.318,147.526 164.696,146.836 164.696,146.836C164.696,146.836 149.836,144.466 149.628,151.276C149.42,158.087 166.177,161.538 166.177,161.538L167.532,161.538L168.73,171.443C168.73,171.443 155.649,187.243 156.588,192.515C157.528,197.788 165.736,195.493 165.736,195.493C165.736,195.493 160.913,209.871 164.613,213.663C167.324,216.449 170.06,215.226 170.06,215.226C170.06,215.226 163.199,221.447 166.293,226.985C167.648,229.422 175.64,230.129 175.64,230.129L188.555,229.721C187.703,226.245 187.311,222.672 187.391,219.093"
+        android:strokeWidth="1"
+        android:fillColor="#F7B994"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M191.368,258.774C186.489,259.456 181.98,256.059 181.289,251.181L164.49,131.656C163.809,126.777 167.205,122.268 172.083,121.577L219.991,114.849C224.871,114.162 229.383,117.562 230.07,122.441L246.869,241.959C247.55,246.84 244.148,251.351 239.268,252.038L191.368,258.774Z"
+        android:strokeWidth="1"
+        android:fillColor="#FFFFFF"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M240.048,252.1L192.139,258.836C187.259,259.517 182.751,256.114 182.068,251.235L165.27,131.717C164.938,129.373 165.552,126.994 166.976,125.103C168.401,123.212 170.518,121.966 172.863,121.638L220.763,114.902C225.641,114.221 230.151,117.617 230.842,122.495L247.632,241.996C247.969,244.342 247.359,246.725 245.936,248.621C244.513,250.516 242.394,251.768 240.048,252.1Z"
+        android:strokeWidth="3.351348"
+        android:fillColor="#00000000"
+        android:strokeColor="#4A4A4A"
+        android:fillType="evenOdd"/>
+    <path
+        android:pathData="M284.397,207.775C284.397,207.775 278.035,206.112 271.54,196.416C265.046,186.719 259.066,163.459 254.784,160.973C254.784,160.973 253.212,140.657 242.784,139.127C242.784,139.127 239.457,124.416 238.376,124.382C237.295,124.349 231.607,124.208 229.894,131.384C228.181,138.561 230.393,151.742 237.204,155.567C237.204,155.567 249.137,239.742 249.154,239.991C249.486,246.769 248.813,246.42 247.898,248.732C256.014,250.777 299.274,263.825 334.85,274.636L334.85,219.11L284.397,207.775Z"
+        android:strokeWidth="1"
+        android:fillColor="#F7B994"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"/>
+    <path
+        android:pathData="M186.992,163.677L189.229,165.362C185.994,169.654 184.397,175.18 185.204,180.923C185.99,186.515 188.94,191.439 193.361,194.771C193.362,194.771 193.362,194.771 193.362,194.772L191.677,197.007C186.925,193.426 183.508,188.076 182.5,181.765L182.432,181.312C181.517,174.804 183.327,168.541 186.992,163.677ZM220.324,158.993C225.188,162.659 228.654,168.18 229.568,174.688C230.483,181.196 228.673,187.459 225.008,192.323L222.772,190.638C226.006,186.345 227.603,180.82 226.796,175.077C225.989,169.335 222.931,164.464 218.639,161.23Z"
+        android:strokeAlpha="0.12"
+        android:strokeWidth="1"
+        android:fillColor="#C00F2D"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"
+        android:fillAlpha="0.12"/>
+    <path
+        android:pathData="M189.501,170.312L191.797,172.042C190.756,174.516 190.349,177.293 190.75,180.143C191.308,184.112 193.351,187.622 196.421,190.059L196.732,190.299C196.732,190.299 196.732,190.299 196.733,190.299L195.047,192.535C191.436,189.814 188.833,185.757 188.044,180.97L187.977,180.533C187.468,176.914 188.062,173.394 189.501,170.312ZM216.953,163.465C220.673,166.268 223.323,170.49 224.023,175.467C224.531,179.086 223.938,182.606 222.499,185.687L220.204,183.957C221.244,181.484 221.651,178.707 221.25,175.857C220.658,171.646 218.416,168.073 215.269,165.701Z"
+        android:strokeAlpha="0.28"
+        android:strokeWidth="1"
+        android:fillColor="#C00F2D"
+        android:fillType="evenOdd"
+        android:strokeColor="#00000000"
+        android:fillAlpha="0.28"/>
+    <path
+        android:pathData="M193.947,167.178L194.094,167.275L219.393,186.34C220.011,186.805 220.134,187.683 219.669,188.3C219.239,188.87 218.458,189.019 217.855,188.673L217.708,188.576L215.159,186.654C213.264,188.662 210.7,190.063 207.754,190.477C204.4,190.949 201.067,190.06 198.417,188.062C195.766,186.065 193.994,183.106 193.523,179.754C193.109,176.807 193.749,173.956 195.157,171.582L192.409,169.511C191.791,169.046 191.668,168.168 192.133,167.551C192.563,166.981 193.344,166.832 193.947,167.178ZM197.411,173.281C196.425,175.071 195.989,177.184 196.295,179.364C196.662,181.974 198.039,184.271 200.102,185.826C202.165,187.381 204.754,188.071 207.364,187.705C209.544,187.398 211.455,186.397 212.904,184.956ZM204.246,165.523C211.137,164.554 217.509,169.355 218.477,176.246C218.77,178.325 218.537,180.357 217.88,182.207L215.501,180.415C215.806,179.215 215.888,177.938 215.705,176.636C214.951,171.276 209.996,167.542 204.636,168.295C203.335,168.478 202.129,168.909 201.06,169.533L198.681,167.74C200.279,166.599 202.168,165.815 204.246,165.523Z"
+        android:strokeWidth="1"
+        android:fillColor="#C00F2D"
+        android:fillType="nonZero"
+        android:strokeColor="#00000000"/>
+  </group>
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_tracing_on.xml b/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_tracing_on.xml
deleted file mode 100644
index c5bd96552e238c8f3ef1fe8b0c1f5411f979255f..0000000000000000000000000000000000000000
--- a/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_tracing_on.xml
+++ /dev/null
@@ -1,237 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="360dp"
-    android:height="220dp"
-    android:viewportWidth="360"
-    android:viewportHeight="220">
-    <group>
-        <clip-path android:pathData="M0.25,0h359.75v220h-359.75z" />
-        <path
-            android:fillColor="#EFF4F7"
-            android:fillType="nonZero"
-            android:pathData="M272.302,55.25m-19.597,0a19.597,19.597 0,1 1,39.194 0a19.597,19.597 0,1 1,-39.194 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CEDEE7"
-            android:fillType="nonZero"
-            android:pathData="M272.302,55.25m-13.634,0a13.634,13.634 0,1 1,27.268 0a13.634,13.634 0,1 1,-27.268 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#EFF4F7"
-            android:fillType="nonZero"
-            android:pathData="M98.681,79.997m-20.07,0a20.07,20.07 0,1 1,40.14 0a20.07,20.07 0,1 1,-40.14 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CEDEE7"
-            android:fillType="nonZero"
-            android:pathData="M98.681,79.997m-13.966,0a13.966,13.966 0,1 1,27.932 0a13.966,13.966 0,1 1,-27.932 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#EAF1F6"
-            android:fillType="nonZero"
-            android:pathData="M198.5,132.5m-69.5,0a69.5,69.5 0,1 1,139 0a69.5,69.5 0,1 1,-139 0"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#C3D7E2"
-            android:fillType="nonZero"
-            android:pathData="M151,132.5a47.5,48 0,1 0,95 0a47.5,48 0,1 0,-95 0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFC2B0"
-            android:fillType="evenOdd"
-            android:pathData="M318.328,60.435C316.524,63.136 316.947,66.738 319.329,68.952C320.998,70.188 322.666,68.72 322.666,66.962C322.452,65.281 322.117,63.619 321.665,61.986C321.356,60.907 320.33,60.717 319.997,59.887"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M306.082,17.25l0.734,8.02l-7.433,0.688l-1.393,-8.517z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M296.363,10.782C296.363,23.86 309.002,23.305 309.319,10.782C309.144,-2.098 296.522,-2.065 296.363,10.782"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#8D8D99"
-            android:fillType="evenOdd"
-            android:pathData="M314.107,61.513C323.05,63.23 311.763,124.137 311.137,134.496L307.8,134.595C307.275,134.446 305.515,76.333 304.105,77.37C302.248,83.67 300.042,89.864 297.498,95.923C296.58,108.802 296.722,122.329 295.354,134.902L291.842,135.731C290.507,136.187 288.905,96.072 288.455,95.79L290.841,77.669C291.183,77.387 293.302,61.513 294.662,62.268L314.082,61.529"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B2DBF0"
-            android:fillType="evenOdd"
-            android:pathData="M275.224,57.673C273.706,58.229 270.753,54.455 272.855,53.41C277.76,50.972 281.84,43.765 282.315,43.234C285.519,39.353 288.855,30.304 292.534,25.959C295.512,23.471 296.197,24.084 299.4,23.354C301.068,26.481 304.664,25.42 306.691,23.943C306.808,23.877 307.275,23.943 307.342,23.943C323.192,23.686 322.958,50.881 320.205,61.206C319.805,61.355 319.538,61.704 317.611,61.43C317.611,61.43 316.985,53.452 316.977,53.452C316.585,50.134 315.392,37.694 313.915,35.82C314.199,42.396 315.5,53.576 316.284,61.753C316.284,62.019 315.867,62.292 315.6,62.292L294.878,62.55C294.628,62.55 293.944,61.994 293.944,61.72C293.794,53.319 294.828,43.226 293.994,35.604C291.809,39.842 280.171,55.873 275.224,57.665"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M307.825,133.782L311.388,134.23C311.479,134.23 312.464,137.639 312.831,139.132C313.365,140.89 312.831,143.278 311.212,144.108C309.828,144.871 308.76,145.576 307.292,144.108C305.823,142.64 305.573,141.719 306.19,139.181C306.808,136.644 307.767,133.782 307.767,133.749"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M284.784,139.563L289.965,136.95L295.88,130.357C298.207,132.414 297.94,134.039 297.94,134.039C297.94,135.093 296.981,141.794 296.981,141.794L295.996,141.794L294.962,136.113C290.666,143.817 294.962,141.412 283.934,141.794C283.801,140.956 284.117,140.111 284.768,139.563"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M297.356,13.726C296.18,16.098 301.36,20.493 299.742,23.388C298.991,25.312 291.441,28.364 291.4,23.894C298.115,23.338 291.525,13.162 293.686,7.754C294.42,2.09 303.554,-2.687 308.109,1.733C315.659,7.904 306.549,22.119 314.724,23.976C314.382,28.903 307.091,25.403 305.815,22.666C304.046,17.939 311.655,15.343 307.767,6.444C306.427,9.086 304.146,11.137 301.369,12.2"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M276.159,61.148C276.217,61.538 271.787,60.161 271.654,60.194C270.82,60.534 268.501,50.325 268.192,49.91C268.008,49.786 268.45,49.006 268.926,48.956L273.039,49.628C274.24,48.973 276.125,59.904 276.509,60.31C276.659,60.725 276.417,60.916 276.159,61.14"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M269.251,54.372C269.668,54.024 270.002,55.483 270.703,55.6C271.475,55.724 272.184,56.097 272.722,56.661C276.234,62.69 265.781,60.99 269.251,54.372"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="evenOdd"
-            android:pathData="M80.554,49.658C80.554,49.658 89.616,64.153 95.26,74.283C95.659,74.995 98.004,78.565 98.128,79.253C98.128,79.253 97.688,84.222 95.535,83.038C88.46,75.111 77.229,56.988 73.904,53.51C70.138,49.575 80.554,49.658 80.554,49.658Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M65.125,169.908L55.797,162.951C54.211,162.333 52.482,162.175 50.809,162.495C49.978,162.669 49.895,162.064 49.912,162.818L48.964,165.908C48.083,167.97 48.448,169.552 50.809,170.455C54.226,171.391 61.982,175.474 65.457,172.89C66.97,172.128 67.12,170.67 65.158,169.908"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M83.597,167.374L73.288,161.162C71.778,160.722 70.168,160.751 68.675,161.244C67.843,161.493 67.951,160.905 67.802,161.642L67.112,164.814C66.422,166.935 67.112,168.409 69.514,169.105L78.825,171.093C81.319,171.523 88.377,169.436 83.597,167.374"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#8C8C99"
-            android:fillType="nonZero"
-            android:pathData="M47.908,82.98C48.108,80.18 76.896,79.294 77.088,83.684C78.858,124.146 77.171,151.669 74.419,160.797C74.373,160.948 74.308,161.092 74.228,161.228C73.214,162.744 70.903,162.768 68.899,161.808C68.212,161.462 67.797,160.743 67.843,159.977C68.392,149.077 67.278,126.109 63.138,104.408C63.08,104.109 63.013,103.405 62.98,103.712C62.98,103.712 56.329,160.085 56.221,163.928C56.163,166.198 52.896,166.653 51.607,165.875C51.183,165.609 49.862,164.558 49.82,163.961C48.349,143.146 46.96,96.141 47.908,82.98Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="nonZero"
-            android:pathData="M73.072,21.331C73.787,6.571 46.802,12.361 57.734,28.338C59.306,30.699 60.694,34.252 64.185,35.056L65.291,24.951C68.758,22.507 71.9,20.61 73.072,21.331Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="nonZero"
-            android:pathData="M58.325,24.379C56.28,23.311 55.914,25.795 56.762,27.485C57.385,28.794 59.214,30.459 59.488,28.587C59.214,27.866 59.081,24.851 58.325,24.379Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="evenOdd"
-            android:pathData="M93.939,87.502C93.872,87.95 98.868,86.393 99.018,86.434C99.941,86.815 102.568,75.285 102.917,74.838C103.125,74.705 102.626,73.819 102.086,73.769L97.455,74.515C96.092,73.786 93.972,86.111 93.54,86.591C93.382,87.03 93.648,87.254 93.939,87.502Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="nonZero"
-            android:pathData="M101.72,79.857C101.254,79.46 100.888,81.108 100.057,81.241C99.186,81.381 98.385,81.803 97.779,82.442C93.855,89.25 105.635,87.328 101.72,79.857Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="nonZero"
-            android:pathData="M48.199,89.805C47.093,88.397 45.057,85.788 43.211,83.394C36.91,75.269 47.642,63.085 52.663,57.063L44.724,52.64C34.89,73.264 29.12,78.416 45.639,92.745C46.146,96.688 53.794,98.966 55.373,94.692C55.872,91.636 51.317,89.267 48.199,89.805Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#B1DAEF"
-            android:fillType="evenOdd"
-            android:pathData="M74.968,40.646C71.642,37.176 66.056,37.772 60.835,37.458C57.137,38.237 53.561,39.508 50.203,41.235C49.58,41.525 49.003,41.905 48.49,42.361C47.357,43.186 46.429,44.26 45.78,45.5C40.343,53.369 35.879,68.916 34.308,74.175C33.643,76.42 40.385,78.83 41.79,77.488C44.508,74.888 47.659,63.648 47.659,63.648L47.709,86.31C47.709,86.969 48.086,87.57 48.681,87.859C55.581,91.172 70.994,90.062 76.115,87.718C76.816,87.394 77.275,86.706 77.304,85.937L77.528,79.004C77.761,72.163 77.57,66.621 77.753,59.192L82.674,68.137C83.095,68.793 83.769,69.249 84.536,69.396C87.524,69.333 90.123,67.339 90.946,64.476C91.361,63.308 81.336,46.494 74.968,40.646Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="evenOdd"
-            android:pathData="M64.061,41.408C64.945,41.559 65.852,41.325 66.552,40.766C67.253,40.208 67.68,39.377 67.727,38.485L68.084,29.051C68.114,28.244 67.82,27.459 67.268,26.869C66.716,26.279 65.951,25.931 65.141,25.903C64.253,25.74 63.338,25.965 62.628,26.522C61.918,27.078 61.483,27.912 61.434,28.81L59.771,37.839C59.713,39.495 62.365,41.351 64.044,41.408"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CB8E75"
-            android:fillType="nonZero"
-            android:pathData="M73.072,21.314C72.524,15.516 64.684,16.071 59.846,19.658C59.463,21.136 58.957,22.579 58.333,23.973C58.74,26.011 58.981,29.233 59.721,31.154C60.935,33.059 65.058,36.596 67.785,36.331C72.565,34.426 73.629,24.768 73.072,21.314Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#4A4A4A"
-            android:fillType="nonZero"
-            android:pathData="M72.84,19.227C72.84,19.227 75.566,12.659 72.241,11.102C70.056,10.144 67.568,10.144 65.383,11.102C63.213,12.178 61.567,11.449 59.804,12.626C54.243,16.394 54.251,19.592 56.163,25.307C56.446,24.081 56.828,24.164 57.369,23.253C58.757,24.984 59.106,24.636 59.173,27.626C59.173,28.264 59.447,29.133 59.106,29.473C58.607,29.97 59.397,30.914 59.555,31.204C60.769,33.109 64.335,37.3 67.818,37.002C70.188,36.795 71.385,32.587 72.307,29.771C71.185,32.571 71.094,29.63 69.381,29.771C68.417,29.879 65.391,29.324 64.676,30.21C64.22,30.804 63.387,30.958 62.747,30.566C61.589,30.111 60.719,29.132 60.403,27.932C60.32,27.452 60.228,27.021 60.153,26.624C60.153,26.441 60.104,26.267 60.079,26.077L60.079,26.077C59.788,24.42 59.804,23.211 61.043,20.925C60.942,20.172 61.15,19.411 61.619,18.812C62.088,18.214 62.78,17.829 63.537,17.744C63.537,17.67 63.537,17.612 63.446,17.562C66.673,16.786 70.079,17.39 72.84,19.227L72.84,19.227ZM65.856,30.707L69.306,30.757C69.98,30.757 69.705,31.585 69.589,32.007C69.115,33.946 65.782,33.664 65.366,31.809C65.225,31.403 65.266,30.707 65.856,30.707Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M188.867,220.048C188.187,212.418 187.706,204.78 186.786,197.159C184.862,181.293 182.224,165.528 179.911,149.712C171.858,148.676 166.251,147.987 166.251,147.987C166.251,147.987 151.431,145.624 151.224,152.416C151.017,159.208 167.728,162.65 167.728,162.65L169.079,162.65L170.274,172.527C170.274,172.527 157.228,188.285 158.165,193.543C159.103,198.801 167.288,196.512 167.288,196.512C167.288,196.512 162.478,210.851 166.169,214.633C168.872,217.411 171.601,216.192 171.601,216.192C171.601,216.192 164.759,222.395 167.844,227.919C169.196,230.348 177.165,231.053 177.165,231.053L190.045,230.647C189.195,227.18 188.805,223.617 188.884,220.048"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M193.296,259.723C188.431,260.403 183.934,257.016 183.244,252.152L166.492,132.952C165.812,128.086 169.2,123.589 174.064,122.9L221.842,116.191C226.708,115.506 231.208,118.896 231.893,123.763L248.646,242.954C249.325,247.822 245.933,252.321 241.066,253.006L193.296,259.723Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#00000000"
-            android:fillType="evenOdd"
-            android:pathData="M241.397,252.964L193.619,259.682C188.753,260.361 184.257,256.968 183.576,252.102L166.824,132.91C166.493,130.573 167.105,128.2 168.525,126.314C169.946,124.429 172.058,123.185 174.395,122.859L222.165,116.141C227.03,115.461 231.527,118.849 232.217,123.713L248.961,242.888C249.297,245.228 248.688,247.605 247.269,249.495C245.85,251.386 243.738,252.634 241.397,252.964Z"
-            android:strokeWidth="4.03"
-            android:strokeColor="#4A4A4A" />
-        <path
-            android:fillColor="#F7B994"
-            android:fillType="evenOdd"
-            android:pathData="M285.626,208.761C285.626,208.761 279.281,207.102 272.804,197.432C266.327,187.762 260.364,164.566 256.093,162.086C256.093,162.086 254.526,141.825 244.126,140.299C244.126,140.299 240.809,125.629 239.73,125.595C238.652,125.562 232.98,125.421 231.271,132.578C229.563,139.736 231.769,152.88 238.561,156.695C238.561,156.695 250.462,240.641 250.479,240.889C250.81,247.648 250.139,247.3 249.226,249.606C257.321,251.646 300.462,264.658 335.941,275.439L335.941,220.065L285.626,208.761Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CEDEE7"
-            android:fillType="nonZero"
-            android:pathData="M195.55,173.548L189.956,169.406C189.956,169.406 178.281,185.445 194.501,198.021L197.963,193.24C197.963,193.24 187.667,185.055 195.55,173.548Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#EAF1F6"
-            android:fillType="nonZero"
-            android:pathData="M189.956,169.422L184.866,165.719C184.866,165.719 169.771,185.701 190.824,203.149L194.509,198.037C194.509,198.037 194.344,197.913 194.063,197.673C178.529,185.146 189.956,169.422 189.956,169.422Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#CEDEE7"
-            android:fillType="nonZero"
-            android:pathData="M214.422,170.507L218.462,164.799C218.462,164.799 234.533,176.398 223.015,193.414L218.247,189.951C218.247,189.951 225.485,178.983 214.422,170.507Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#EAF1F6"
-            android:fillType="nonZero"
-            android:pathData="M218.462,164.841L222.155,159.737C222.155,159.737 242.696,174.012 228.113,197.159L223.015,193.464C223.015,193.464 223.139,193.282 223.329,192.967C234.202,176.216 218.462,164.841 218.462,164.841Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-        <path
-            android:fillColor="#007FAD"
-            android:fillType="nonZero"
-            android:pathData="M208.844,196.132C203.234,197.033 197.634,194.456 194.658,189.602C191.681,184.749 191.915,178.575 195.249,173.962C198.583,169.348 204.361,167.203 209.887,168.527C215.414,169.851 219.601,174.383 220.495,180.01C221.714,187.687 216.5,194.902 208.844,196.132ZM204.911,171.427C198.971,172.372 194.917,177.964 195.854,183.921C196.79,189.878 202.363,193.948 208.305,193.015C214.247,192.083 218.312,186.499 217.388,180.54C216.939,177.673 215.372,175.102 213.032,173.393C210.692,171.684 207.771,170.977 204.911,171.427L204.911,171.427Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_settings_notification_active.xml b/Corona-Warn-App/src/main/res/drawable/ic_settings_notification_active.xml
new file mode 100644
index 0000000000000000000000000000000000000000..5a989615c231c44f67924b5cf06b03608b3a2337
--- /dev/null
+++ b/Corona-Warn-App/src/main/res/drawable/ic_settings_notification_active.xml
@@ -0,0 +1,12 @@
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+    android:width="40dp"
+    android:height="40dp"
+    android:viewportWidth="40"
+    android:viewportHeight="40">
+  <path
+      android:pathData="M20,10C19.172,10 18.5,10.672 18.5,11.5L18.5,12.1953C15.9132,12.8621 14,15.2048 14,18L14,24L12,26L12,27L18.2695,27C18.0934,27.3039 18.0005,27.6488 18,28C18,29.1046 18.8954,30 20,30C21.1046,30 22,29.1046 22,28C21.9989,27.6486 21.9053,27.3037 21.7285,27L28,27L28,26L26,24L26,18C26,15.2048 24.0868,12.8621 21.5,12.1953L21.5,11.5C21.5,10.672 20.828,10 20,10ZM20,14C22.206,14 24,15.794 24,18L24,24L24,24.8281L24.1719,25L15.8281,25L16,24.8281L16,24L16,18C16,15.794 17.794,14 20,14Z"
+      android:strokeWidth="1"
+      android:fillColor="#007FAD"
+      android:fillType="nonZero"
+      android:strokeColor="#00000000"/>
+</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_settings_notification_inactive.xml b/Corona-Warn-App/src/main/res/drawable/ic_settings_notification_inactive.xml
new file mode 100644
index 0000000000000000000000000000000000000000..4285730c936c7ebb30cacaee64f445d5236d2b82
--- /dev/null
+++ b/Corona-Warn-App/src/main/res/drawable/ic_settings_notification_inactive.xml
@@ -0,0 +1,12 @@
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+    android:width="40dp"
+    android:height="41dp"
+    android:viewportWidth="40"
+    android:viewportHeight="41">
+  <path
+      android:pathData="M14.2583,16.2546L15.9991,17.995L16,24.8281L15.8281,25L23.0031,25L25.0031,27L21.7285,27C21.8758,27.2531 21.9654,27.5348 21.9918,27.825L22,28C22,29.1046 21.1046,30 20,30C18.8954,30 18,29.1046 18,28C18.0005,27.6488 18.0934,27.3039 18.2695,27L18.2695,27L12,27L12,26L14,24L14,18C14,17.3927 14.0903,16.8067 14.2583,16.2546ZM12.7856,11.7951L12.8521,11.8538L28.1462,27.1479C28.4219,27.4236 28.4219,27.8705 28.1462,28.1462C27.8917,28.4007 27.4913,28.4202 27.2144,28.2049L27.1479,28.1462L11.8538,12.8521C11.5781,12.5764 11.5781,12.1295 11.8538,11.8538C12.1083,11.5993 12.5087,11.5798 12.7856,11.7951ZM20,10C20.828,10 21.5,10.672 21.5,11.5L21.5,11.5L21.5,12.1953C24.0868,12.8621 26,15.2048 26,18L26,18L26,24L28,26L27.9991,26.002L23.9991,22.002L24,18C24,15.8608 22.3131,14.1091 20.1994,14.0049L20,14C18.896,14 17.8952,14.4493 17.1708,15.1747L15.7578,13.7618C16.5042,13.0167 17.4462,12.4669 18.5,12.1953L18.5,12.1953L18.5,11.5C18.5,10.672 19.172,10 20,10Z"
+      android:strokeWidth="1"
+      android:fillColor="#C00F2D"
+      android:fillType="nonZero"
+      android:strokeColor="#00000000"/>
+</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_settings_reset_circle.xml b/Corona-Warn-App/src/main/res/drawable/ic_settings_reset_circle.xml
index b9f5b384bcc063b20c4113eab431cc658c593699..0bfe1b0a09bed9946c4aa45bc84060c01eaa5286 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_settings_reset_circle.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_settings_reset_circle.xml
@@ -1,28 +1,34 @@
 <vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24">
-    <path
-        android:fillAlpha="0.14092727"
-        android:fillColor="#95B9CB"
-        android:fillType="evenOdd"
-        android:pathData="M3.6247,3.6245L8.5508,8.5516C7.6686,9.4342 7.1229,10.6533 7.1229,11.9998C7.1229,13.3114 7.6421,14.5391 8.5512,15.4483L8.5522,15.4493L3.6245,20.3755C1.5605,18.3107 0.2549,15.4886 0.161,12.3619L0.1555,11.9998C0.1555,8.729 1.4813,5.7679 3.6247,3.6245ZM20.3753,3.6245C22.5187,5.7679 23.8445,8.729 23.8445,11.9998C23.8445,15.2705 22.5187,18.2317 20.3753,20.3751L15.4481,15.4489C16.331,14.5663 16.8771,13.3468 16.8771,11.9998C16.8771,10.6533 16.3314,9.4342 15.4492,8.5516Z"
-        android:strokeWidth="1"
-        android:strokeAlpha="0.14092727"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillAlpha="0.36"
-        android:fillColor="#95B9CB"
-        android:fillType="evenOdd"
-        android:pathData="M5.5954,5.5952L8.5508,8.5517C7.6686,9.4343 7.1229,10.6533 7.1229,11.9999C7.1229,13.3115 7.6421,14.5392 8.5512,15.4484C8.5515,15.4487 8.5519,15.449 8.5522,15.4493L5.5955,18.4042C4.0274,16.8364 3.0318,14.6966 2.9482,12.3247L2.9425,11.9999C2.9425,9.4987 3.9563,7.2343 5.5954,5.5952ZM18.4046,5.5952C20.0437,7.2343 21.0575,9.4987 21.0575,11.9999C21.0575,14.501 20.0437,16.7654 18.4046,18.4045L15.4481,15.449C16.331,14.5664 16.8771,13.3469 16.8771,11.9999C16.8771,10.6533 16.3314,9.4343 15.4492,8.5517Z"
-        android:strokeWidth="1"
-        android:strokeAlpha="0.36"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#007FAD"
-        android:fillType="nonZero"
-        android:pathData="M12,5.7293C8.5368,5.7293 5.7294,8.5367 5.7294,11.9999C5.7294,13.6849 6.398,15.2657 7.5658,16.4336C8.7338,17.6017 10.3148,18.2704 12,18.2704C15.4632,18.2704 18.2706,15.463 18.2706,11.9999C18.2706,8.5367 15.4632,5.7293 12,5.7293ZM12,7.1227C14.6936,7.1227 16.8771,9.3063 16.8771,11.9999C16.8771,14.6934 14.6936,16.877 12,16.877C10.6882,16.877 9.4604,16.3576 8.5512,15.4484C7.6421,14.5392 7.1229,13.3115 7.1229,11.9999C7.1229,9.3063 9.3064,7.1227 12,7.1227Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
+    android:width="40dp"
+    android:height="40dp"
+    android:viewportWidth="40"
+    android:viewportHeight="40">
+  <path
+      android:pathData="M20,0L20,0A20,20 0,0 1,40 20L40,20A20,20 0,0 1,20 40L20,40A20,20 0,0 1,0 20L0,20A20,20 0,0 1,20 0z"
+      android:strokeWidth="1"
+      android:fillColor="#FFFFFF"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M11.5147,11.5007L12.513,12.499C10.5969,14.4151 9.4118,17.0622 9.4118,19.9861C9.4118,22.7197 10.4506,25.2854 12.2799,27.2326L12.5127,27.4727L11.5143,28.4709C9.343,26.2994 8,23.2995 8,19.986C8,16.6723 9.3431,13.6723 11.5147,11.5007ZM28.4853,11.5007C30.6569,13.6723 32,16.6723 32,19.986C32,23.2994 30.6571,26.2992 28.4858,28.4708L27.487,27.4731C29.4031,25.557 30.5882,22.9099 30.5882,19.9861C30.5882,17.0622 29.4031,14.4151 27.487,12.499Z"
+      android:strokeAlpha="0.24"
+      android:strokeWidth="1"
+      android:fillColor="#95B9CB"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"
+      android:fillAlpha="0.24"/>
+  <path
+      android:pathData="M26.4882,13.4968C28.1492,15.1575 29.1765,17.4518 29.1765,19.9861C29.1765,22.5203 28.1492,24.8146 26.4882,26.4753L25.4905,25.4765C26.8956,24.0714 27.7647,22.1302 27.7647,19.9861C27.7647,17.8419 26.8956,15.9007 25.4905,14.4956ZM13.5118,13.4968L14.5095,14.4956C13.1044,15.9007 12.2353,17.8419 12.2353,19.9861C12.2353,21.9699 12.9813,23.833 14.2969,25.2554L14.5093,25.4763L13.511,26.4745C11.8505,24.8139 10.8235,22.5199 10.8235,19.9861C10.8235,17.4518 11.8508,15.1575 13.5118,13.4968Z"
+      android:strokeAlpha="0.6"
+      android:strokeWidth="1"
+      android:fillColor="#95B9CB"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"
+      android:fillAlpha="0.6"/>
+  <path
+      android:pathData="M20,13.6331C16.4914,13.6331 13.6471,16.4774 13.6471,19.9861C13.6471,21.6932 14.3245,23.2948 15.5076,24.4781C16.6909,25.6614 18.2927,26.339 20,26.339C23.5086,26.339 26.3529,23.4947 26.3529,19.9861C26.3529,16.4774 23.5086,13.6331 20,13.6331ZM20,15.4379C22.5118,15.4379 24.5481,17.4742 24.5481,19.9861C24.5481,22.4979 22.5118,24.5342 20,24.5342C18.7767,24.5342 17.6317,24.0498 16.7839,23.2019C15.9361,22.3541 15.4519,21.2092 15.4519,19.9861C15.4519,17.4742 17.4882,15.4379 20,15.4379Z"
+      android:strokeWidth="1"
+      android:fillColor="#007FAD"
+      android:fillType="nonZero"
+      android:strokeColor="#00000000"/>
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_active.xml b/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_active.xml
index b543f752ee6fa141e8d7bcac157cbc52cb35f10e..d8f8b595c8b18a4398b324004516890311ea78b9 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_active.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_active.xml
@@ -3,26 +3,26 @@
     android:height="40dp"
     android:viewportWidth="40"
     android:viewportHeight="40">
-    <path
-        android:fillAlpha="0.14092727"
-        android:fillColor="#95B9CB"
-        android:fillType="evenOdd"
-        android:pathData="M7.9792,7.9791L15.0503,15.0502C13.7835,16.3169 13,18.0669 13,19.9999C13,21.7779 13.6647,23.4484 14.8378,24.7278L15.05,24.9494C15.0504,24.9498 15.0507,24.9501 15.051,24.9504L7.979,32.0211C4.9958,29.0371 3.1164,24.9505 3.0052,20.4254L3,19.9999C3,15.3055 4.9028,11.0555 7.9792,7.9791ZM32.0208,7.9791C35.0972,11.0555 37,15.3055 37,19.9999C37,24.6943 35.0972,28.9443 32.0208,32.0207L24.9497,24.9497C26.2165,23.6829 27,21.9329 27,19.9999C27,18.0674 26.2169,16.3178 24.9507,15.0511Z"
-        android:strokeWidth="1"
-        android:strokeAlpha="0.14092727"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillAlpha="0.36"
-        android:fillColor="#95B9CB"
-        android:fillType="evenOdd"
-        android:pathData="M10.8076,10.8076L15.0503,15.0503C13.7835,16.317 13,18.067 13,20C13,21.8826 13.7452,23.6446 15.05,24.9495C15.0504,24.9499 15.0507,24.9502 15.051,24.9505L10.808,29.1926C8.5389,26.9235 7.1051,23.8206 7.0055,20.3833L7,20C7,16.4101 8.4551,13.1601 10.8076,10.8076ZM29.1934,10.8086C31.5453,13.1611 33,16.4107 33,20C33,23.5899 31.5449,26.8399 29.1924,29.1924L24.9497,24.9497C26.2165,23.683 27,21.933 27,20C27,18.0675 26.2169,16.3179 24.9507,15.0512Z"
-        android:strokeWidth="1"
-        android:strokeAlpha="0.36"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#007FAD"
-        android:fillType="nonZero"
-        android:pathData="M20,11C15.0294,11 11,15.0294 11,20C11,22.4184 11.9596,24.6874 13.6358,26.3637C15.3121,28.0401 17.5813,29 20,29C24.9706,29 29,24.9706 29,20C29,15.0294 24.9706,11 20,11ZM20,13C23.866,13 27,16.134 27,20C27,23.866 23.866,27 20,27C18.1172,27 16.355,26.2546 15.05,24.9495C13.7452,23.6446 13,21.8826 13,20C13,16.134 16.134,13 20,13Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
+  <path
+      android:pathData="M7.9802,7.9781L9.3939,9.3929C6.6791,12.1074 5,15.8576 5,20C5,24.0341 6.5969,27.8099 9.3929,30.6061C9.3933,30.6065 9.3936,30.6068 9.3939,30.6071L7.979,32.0211C4.9958,29.0371 3.1164,24.9505 3.0052,20.4254L3,19.9999C3,15.305 4.9032,11.0546 7.9802,7.9781ZM32.0208,7.9791C35.0972,11.0555 37,15.3055 37,19.9999C37,24.6943 35.0972,28.9443 32.0208,32.0207L30.6066,30.6066C33.3211,27.8921 35,24.1421 35,20C35,15.8581 33.3213,12.1083 30.6071,9.3939Z"
+      android:strokeAlpha="0.24"
+      android:strokeWidth="1"
+      android:fillColor="#95B9CB"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"
+      android:fillAlpha="0.24"/>
+  <path
+      android:pathData="M10.8076,10.8076L12.2218,12.2218C10.2312,14.2124 9,16.9624 9,20C9,22.84 10.0793,25.5054 11.9797,27.5284L12.2215,27.7778C12.2218,27.7782 12.2221,27.7785 12.2225,27.7788L10.808,29.1926C8.5389,26.9235 7.1051,23.8206 7.0055,20.3833L7,20C7,16.4101 8.4551,13.1601 10.8076,10.8076ZM29.1934,10.8086C31.5453,13.1611 33,16.4107 33,20C33,23.5899 31.5449,26.8399 29.1924,29.1924L27.7782,27.7782C29.7688,25.7876 31,23.0376 31,20C31,16.9629 29.7692,14.2134 27.7792,12.2228Z"
+      android:strokeAlpha="0.6"
+      android:strokeWidth="1"
+      android:fillColor="#95B9CB"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"
+      android:fillAlpha="0.6"/>
+  <path
+      android:pathData="M20,11C15.0294,11 11,15.0294 11,20C11,22.4184 11.9596,24.6874 13.6358,26.3637C15.3121,28.0401 17.5813,29 20,29C24.9706,29 29,24.9706 29,20C29,15.0294 24.9706,11 20,11ZM20,13C23.866,13 27,16.134 27,20C27,23.866 23.866,27 20,27C18.1172,27 16.355,26.2546 15.05,24.9495C13.7452,23.6446 13,21.8826 13,20C13,16.134 16.134,13 20,13Z"
+      android:strokeWidth="1"
+      android:fillColor="#007FAD"
+      android:fillType="nonZero"
+      android:strokeColor="#00000000"/>
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_bluetooth.xml b/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_bluetooth.xml
index 66c42c5e858be53b624901794abfc46536214256..5100ec034f130dc16953fc08d6ae86f5ab20560c 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_bluetooth.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_bluetooth.xml
@@ -1,12 +1,18 @@
 <vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="42dp"
-    android:height="42dp"
-    android:viewportWidth="42"
-    android:viewportHeight="42">
-    <path
-        android:fillColor="#0071F0"
-        android:fillType="evenOdd"
-        android:pathData="M21,1C32.0457,1 41,9.9543 41,21C41,32.0457 32.0457,41 21,41C9.9543,41 1,32.0457 1,21C1,9.9543 9.9543,1 21,1ZM20.2935,10.586L20.2935,18.586L16.7245,15.016L15.3105,16.431L19.8795,21L15.2925,25.587L16.7065,27.001L20.2935,23.414L20.2935,31.414L26.7075,25L22.7075,21L26.7075,17L20.2935,10.586ZM22.2935,23.414L23.8795,25L22.2935,26.586L22.2935,23.414ZM22.2935,15.414L23.8795,17L22.2935,18.586L22.2935,15.414Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
+    android:width="40dp"
+    android:height="40dp"
+    android:viewportWidth="40"
+    android:viewportHeight="40">
+  <path
+      android:pathData="M20,0L20,0A20,20 0,0 1,40 20L40,20A20,20 0,0 1,20 40L20,40A20,20 0,0 1,0 20L0,20A20,20 0,0 1,20 0z"
+      android:strokeWidth="1"
+      android:fillColor="#0071F0"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M25.7075,16L19.2935,9.586L19.2935,17.586L19.2935,17.586L15.7245,14.016L14.3105,15.431L18.8795,20L14.2925,24.587L15.7065,26.001L19.2935,22.414L19.2935,30.414L25.7075,24L21.7075,20L25.7075,16ZM21.2935,14.414L22.8795,16L21.2935,17.586L21.2935,14.414ZM21.2935,25.586L21.2935,22.414L22.8795,24L21.2935,25.586Z"
+      android:strokeWidth="1"
+      android:fillColor="#FFFFFF"
+      android:fillType="nonZero"
+      android:strokeColor="#00000000"/>
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_bluetooth_inactive.xml b/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_bluetooth_inactive.xml
index c241107eb76957afb13f01a7b8c18e286b6f3445..5669ab489f49d42d14b663750ebd9e62594962d4 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_bluetooth_inactive.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_bluetooth_inactive.xml
@@ -1,12 +1,12 @@
 <vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="22dp"
-    android:height="22dp"
-    android:viewportWidth="22"
-    android:viewportHeight="22">
-    <path
-        android:fillColor="#C00F2D"
-        android:fillType="nonZero"
-        android:pathData="M2.414,1.43L8.566,7.583L8.5655,7.5846L12.397,11.412L12.397,11.414L20.4068,19.4179L18.9816,20.8458L14.9877,16.8581L9.983,21.828L9.983,13.828L6.396,17.415L4.982,16.001L9.569,11.414L1,2.845L2.414,1.43ZM11.983,13.828L11.983,17L13.569,15.414L11.983,13.828ZM9.983,1L16.397,7.414L13.8225,9.9885L13.812,9.998L12.236,8.44L12.3872,8.5875L13.569,7.414L11.983,5.828L11.983,8.19L9.982,6.212L9.983,1Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
+    android:width="41dp"
+    android:height="40dp"
+    android:viewportWidth="41"
+    android:viewportHeight="40">
+  <path
+      android:pathData="M11.914,10.2096L18.066,16.3626L18.0655,16.3642L21.897,20.1916L21.897,20.1936L29.9068,28.1975L28.4816,29.6254L24.4877,25.6377L19.483,30.6076L19.483,22.6076L15.896,26.1946L14.482,24.7806L19.069,20.1936L10.5,11.6246L11.914,10.2096ZM21.483,22.6076L21.483,25.7796L23.069,24.1936L21.483,22.6076ZM19.483,9.7796L25.897,16.1936L23.3225,18.7681L23.312,18.7776L21.736,17.2196L21.8872,17.3671L23.069,16.1936L21.483,14.6076L21.483,16.9696L19.482,14.9916L19.483,9.7796Z"
+      android:strokeWidth="1"
+      android:fillColor="#C00F2D"
+      android:fillType="nonZero"
+      android:strokeColor="#00000000"/>
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_connection.xml b/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_connection.xml
index 734f6ebf89019f28d5932e16337d0cb03f7bc0d4..85e7eb1cc86ecf5bdcf84712f374eefbd83898f7 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_connection.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_connection.xml
@@ -1,12 +1,18 @@
 <vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="42dp"
-    android:height="42dp"
-    android:viewportWidth="42"
-    android:viewportHeight="42">
-    <path
-        android:fillColor="#0071F0"
-        android:fillType="evenOdd"
-        android:pathData="M21,1C32.0457,1 41,9.9543 41,21C41,32.0457 32.0457,41 21,41C9.9543,41 1,32.0457 1,21C1,9.9543 9.9543,1 21,1ZM21.001,23.5C19.601,23.5 18.3159,23.987 17.2939,24.793L21.001,28.5L24.708,24.793C23.686,23.987 22.401,23.5 21.001,23.5ZM21.001,18.5C18.222,18.5 15.688,19.543 13.749,21.248L15.8701,23.3691C17.2611,22.2041 19.05,21.5 21.001,21.5C22.952,21.5 24.7418,22.2031 26.1318,23.3691L28.251,21.25C26.313,19.544 23.78,18.5 21.001,18.5ZM21.001,13.5C16.859,13.5 13.1086,15.1786 10.3936,17.8926L12.3369,19.8359C14.6399,17.7699 17.671,16.5 21.001,16.5C24.331,16.5 27.363,17.7689 29.665,19.8359L31.6064,17.8945C28.8924,15.1795 25.143,13.5 21.001,13.5Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
+    android:width="40dp"
+    android:height="40dp"
+    android:viewportWidth="40"
+    android:viewportHeight="40">
+  <path
+      android:pathData="M20,0L20,0A20,20 0,0 1,40 20L40,20A20,20 0,0 1,20 40L20,40A20,20 0,0 1,0 20L0,20A20,20 0,0 1,20 0z"
+      android:strokeWidth="1"
+      android:fillColor="#2296F3"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"/>
+  <path
+      android:pathData="M20.001,12.5C15.859,12.5 12.1086,14.1786 9.3936,16.8926L11.3369,18.8359C13.6399,16.7699 16.671,15.5 20.001,15.5C23.331,15.5 26.363,16.7689 28.665,18.8359L30.6064,16.8945C27.8924,14.1795 24.143,12.5 20.001,12.5ZM20.001,17.5C17.222,17.5 14.688,18.543 12.749,20.248L14.8701,22.3691C16.2611,21.2041 18.05,20.5 20.001,20.5C21.952,20.5 23.7418,21.2031 25.1318,22.3691L27.251,20.25C25.313,18.544 22.78,17.5 20.001,17.5ZM20.001,22.5C18.601,22.5 17.3159,22.987 16.2939,23.793L20.001,27.5L23.708,23.793C22.686,22.987 21.401,22.5 20.001,22.5Z"
+      android:strokeWidth="1"
+      android:fillColor="#FFFFFF"
+      android:fillType="nonZero"
+      android:strokeColor="#00000000"/>
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_connection_inactive.xml b/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_connection_inactive.xml
index 42e277ea0e266a85f70005a7b0bc11f8a8f332d9..5bcad91c3635d6c617513a06b444a985d097c9ec 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_connection_inactive.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_connection_inactive.xml
@@ -1,12 +1,12 @@
 <vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="21dp"
-    android:height="21dp"
-    android:viewportWidth="21"
-    android:viewportHeight="21">
-    <path
-        android:fillColor="#C00F2D"
-        android:fillType="nonZero"
-        android:pathData="M2.3145,1L0.9004,2.4141L3.8262,5.3398C2.4087,6.0602 1.1139,6.9866 0,8.0996L1.9434,10.043C3.1338,8.9748 4.5264,8.1366 6.0469,7.5605L7.623,9.1367C6.0257,9.5901 4.5707,10.3863 3.3555,11.4551L5.4766,13.5762C6.7722,12.4911 8.4155,11.8135 10.2109,11.7246L12.5137,14.0273C11.9142,13.8243 11.275,13.707 10.6074,13.707C9.2074,13.707 7.9224,14.194 6.9004,15L10.6074,18.707L13.9004,15.4141L18.9004,20.4141L20.3145,19L2.3145,1ZM10.6074,3.707C9.7544,3.707 8.9244,3.7946 8.1094,3.9316L10.8965,6.7207C14.1115,6.7927 17.0365,8.037 19.2715,10.043L21.2129,8.1016C18.4989,5.3866 14.7494,3.707 10.6074,3.707ZM13.209,9.0313L16.7461,12.5684L17.8574,11.457C16.5454,10.302 14.958,9.4602 13.209,9.0313Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
+    android:width="41dp"
+    android:height="40dp"
+    android:viewportWidth="41"
+    android:viewportHeight="40">
+  <path
+      android:pathData="M12.208,10.293L10.7939,11.707L13.7197,14.6328C12.3022,15.3532 11.0074,16.2795 9.8936,17.3926L11.8369,19.3359C13.0273,18.2677 14.42,17.4296 15.9404,16.8535L17.5166,18.4297C15.9193,18.883 14.4643,19.6793 13.249,20.748L15.3701,22.8691C16.6657,21.784 18.309,21.1064 20.1045,21.0176L22.4072,23.3203C21.8077,23.1173 21.1686,23 20.501,23C19.101,23 17.8159,23.487 16.7939,24.293L20.501,28L23.7939,24.707L28.7939,29.707L30.208,28.293L12.208,10.293ZM20.501,13C19.648,13 18.8179,13.0876 18.0029,13.2246L20.79,16.0137C24.005,16.0857 26.93,17.3299 29.165,19.3359L31.1064,17.3945C28.3924,14.6795 24.643,13 20.501,13ZM23.1025,18.3242L26.6396,21.8613L27.751,20.75C26.439,19.595 24.8515,18.7532 23.1025,18.3242Z"
+      android:strokeWidth="1"
+      android:fillColor="#C00F2D"
+      android:fillType="nonZero"
+      android:strokeColor="#00000000"/>
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_inactive.xml b/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_inactive.xml
index 947c3ba9c57cf98b403bca79d24da9ad444fbf77..58dd5566f9821a96cbd275c76088e6d609653abb 100644
--- a/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_inactive.xml
+++ b/Corona-Warn-App/src/main/res/drawable/ic_settings_tracing_inactive.xml
@@ -3,26 +3,26 @@
     android:height="40dp"
     android:viewportWidth="40"
     android:viewportHeight="40">
-    <path
-        android:fillAlpha="0.12"
-        android:fillColor="#C00F2D"
-        android:fillType="evenOdd"
-        android:pathData="M7.9792,7.9791L10.5233,10.5233C9.7422,11.3043 9.7422,12.5707 10.5233,13.3517L10.5233,13.3517L13.8414,16.6696C13.3048,17.66 13,18.7943 13,19.9999C13,21.7779 13.6647,23.4484 14.8378,24.7278L15.05,24.9494C15.0504,24.9498 15.0507,24.9501 15.051,24.9504L7.979,32.0211C4.9958,29.0371 3.1164,24.9505 3.0052,20.4254L3,19.9999C3,15.3055 4.9028,11.0555 7.9792,7.9791ZM32.0208,7.9791C35.0972,11.0555 37,15.3055 37,19.9999C37,24.6943 35.0972,28.9443 32.0208,32.0207L29.4767,29.4767C30.2578,28.6957 30.2578,27.4293 29.4767,26.6483L29.4767,26.6483L26.158,23.3312C26.695,22.3406 27,21.2059 27,19.9999C27,18.0674 26.2169,16.3178 24.9507,15.0511Z"
-        android:strokeWidth="1"
-        android:strokeAlpha="0.12"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillAlpha="0.28"
-        android:fillColor="#C00F2D"
-        android:fillType="evenOdd"
-        android:pathData="M9.9456,11.7571C9.8943,12.3273 10.0868,12.9153 10.5233,13.3517L10.5233,13.3517L13.8414,16.6697C13.3048,17.6601 13,18.7944 13,20C13,21.8826 13.7452,23.6446 15.05,24.9495C15.0504,24.9499 15.0507,24.9502 15.051,24.9505L10.808,29.1926C8.5389,26.9235 7.1051,23.8206 7.0055,20.3833L7,20C7,16.923 8.069,14.0957 9.856,11.8692ZM29.1924,10.8076C31.5449,13.1601 33,16.4101 33,20C33,23.1288 31.8947,25.9994 30.0533,28.2427C30.1056,27.6725 29.9131,27.0846 29.4767,26.6483L29.4767,26.6483L26.1586,23.3303C26.6952,22.3399 27,21.2056 27,20C27,18.0675 26.2169,16.3179 24.9507,15.0512Z"
-        android:strokeWidth="1"
-        android:strokeAlpha="0.28"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#C00F2D"
-        android:fillType="nonZero"
-        android:pathData="M12.3804,15.208L13.8411,16.6703C13.3046,17.6605 13,18.7947 13,20C13,21.8826 13.7452,23.6446 15.05,24.9495C16.355,26.2546 18.1172,27 20,27C21.2053,27 22.3395,26.6954 23.3297,26.1589L24.791,27.6202C23.4037,28.4943 21.7609,29 20,29C17.5813,29 15.3121,28.0401 13.6358,26.3637C11.9596,24.6874 11,22.4184 11,20C11,18.2387 11.506,16.5955 12.3804,15.208ZM12.5504,11.1472L12.6446,11.2304L28.6446,27.2304C29.0351,27.6209 29.0351,28.2541 28.6446,28.6446C28.2841,29.0051 27.7169,29.0328 27.3246,28.7278L27.2304,28.6446L11.2304,12.6446C10.8399,12.2541 10.8399,11.6209 11.2304,11.2304C11.5909,10.8699 12.1581,10.8422 12.5504,11.1472ZM20,11C24.9706,11 29,15.0294 29,20C29,21.7609 28.4943,23.4037 27.6202,24.791L26.1589,23.3297C26.6954,22.3395 27,21.2053 27,20C27,16.134 23.866,13 20,13C18.7947,13 17.6605,13.3046 16.6703,13.8411L15.208,12.3804C16.5955,11.506 18.2387,11 20,11Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
+  <path
+      android:pathData="M7.9802,7.9781L9.3939,9.3929C6.6791,12.1074 5,15.8576 5,20C5,24.0341 6.5969,27.8099 9.3929,30.6061C9.3933,30.6065 9.3936,30.6068 9.3939,30.6071L7.979,32.0211C4.9958,29.0371 3.1164,24.9505 3.0052,20.4254L3,19.9999C3,15.305 4.9032,11.0546 7.9802,7.9781ZM32.0208,7.9791C35.0972,11.0555 37,15.3055 37,19.9999C37,24.6943 35.0972,28.9443 32.0208,32.0207L30.6066,30.6066C33.3211,27.8921 35,24.1421 35,20C35,15.8581 33.3213,12.1083 30.6071,9.3939Z"
+      android:strokeAlpha="0.12"
+      android:strokeWidth="1"
+      android:fillColor="#C00F2D"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"
+      android:fillAlpha="0.12"/>
+  <path
+      android:pathData="M9.0937,12.9225L10.5452,14.3747C9.5638,16.0206 9,17.9445 9,20C9,22.84 10.0793,25.5054 11.9797,27.5284L12.2215,27.7778C12.2218,27.7782 12.2221,27.7785 12.2225,27.7788L10.808,29.1926C8.5389,26.9235 7.1051,23.8206 7.0055,20.3833L7,20C7,17.3897 7.7694,14.959 9.0937,12.9225ZM29.1924,10.8076C31.5449,13.1601 33,16.4101 33,20C33,22.6103 32.2306,25.041 30.9063,27.0775L29.4545,25.6257C30.4361,23.9797 31,22.0557 31,20C31,16.9629 29.7692,14.2134 27.7792,12.2228Z"
+      android:strokeAlpha="0.28"
+      android:strokeWidth="1"
+      android:fillColor="#C00F2D"
+      android:fillType="evenOdd"
+      android:strokeColor="#00000000"
+      android:fillAlpha="0.28"/>
+  <path
+      android:pathData="M12.5504,11.1472L12.6446,11.2304L28.6446,27.2304C29.0351,27.6209 29.0351,28.2541 28.6446,28.6446C28.2841,29.0051 27.7169,29.0328 27.3246,28.7278L27.2304,28.6446L25.6172,27.0323C24.0776,28.2637 22.1248,29 20,29C17.5813,29 15.3121,28.0401 13.6358,26.3637C11.9596,24.6874 11,22.4184 11,20C11,17.8752 11.7363,15.9224 12.9677,14.3828L11.2304,12.6446C10.8399,12.2541 10.8399,11.6209 11.2304,11.2304C11.5909,10.8699 12.1581,10.8422 12.5504,11.1472ZM14.3933,15.8083C13.5183,16.9768 13,18.4279 13,20C13,21.8826 13.7452,23.6446 15.05,24.9495C16.355,26.2546 18.1172,27 20,27C21.5721,27 23.0232,26.4817 24.1917,25.6067ZM20,11C24.9706,11 29,15.0294 29,20C29,21.4993 28.6334,22.913 27.9849,24.1563L26.4806,22.6511C26.8154,21.8334 27,20.9383 27,20C27,16.134 23.866,13 20,13C19.0617,13 18.1666,13.1846 17.3489,13.5194L15.8437,12.0151C17.087,11.3666 18.5007,11 20,11Z"
+      android:strokeWidth="1"
+      android:fillColor="#C00F2D"
+      android:fillType="nonZero"
+      android:strokeColor="#00000000"/>
 </vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_submission_illustration_intro_a.xml b/Corona-Warn-App/src/main/res/drawable/ic_submission_illustration_intro_a.xml
deleted file mode 100644
index cc3289d43e850bd965c3eb256e314eaca5d4445d..0000000000000000000000000000000000000000
--- a/Corona-Warn-App/src/main/res/drawable/ic_submission_illustration_intro_a.xml
+++ /dev/null
@@ -1,852 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="360dp"
-    android:height="220dp"
-    android:viewportWidth="360"
-    android:viewportHeight="220">
-    <path
-        android:fillColor="#D8ECF9"
-        android:fillType="evenOdd"
-        android:pathData="M131.264,116.648C135.039,109.637 137.196,106.941 141.51,103.705C167.43,84.265 221.325,92.92 224.56,133.366C238.582,134.984 242.991,150.661 243.435,151.702L208.606,151.702L160.856,151.702L118.674,151.702L95.096,151.702C95.096,151.702 95.003,116.777 131.264,116.648"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#657887"
-        android:fillType="evenOdd"
-        android:pathData="M206.386,109.117L129.556,109.117C128.33,109.117 127.336,108.123 127.336,106.897L127.336,91.019C127.336,89.794 128.33,88.8 129.556,88.8L206.386,88.8C207.612,88.8 208.606,89.794 208.606,91.019L208.606,106.897C208.606,108.123 207.612,109.117 206.386,109.117"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M132.415,139.593l71.111,0l0,-5.079l-71.111,0z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#657887"
-        android:fillType="evenOdd"
-        android:pathData="M206.362,134.514L129.58,134.514C128.34,134.514 127.336,133.509 127.336,132.27L127.336,116.441C127.336,115.201 128.34,114.197 129.58,114.197L206.362,114.197C207.601,114.197 208.606,115.201 208.606,116.441L208.606,132.27C208.606,133.509 207.601,134.514 206.362,134.514"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E7EAEF"
-        android:fillType="evenOdd"
-        android:pathData="M137.494,124.355C137.494,125.758 136.357,126.895 134.955,126.895C133.552,126.895 132.415,125.758 132.415,124.355C132.415,122.953 133.552,121.816 134.955,121.816C136.357,121.816 137.494,122.953 137.494,124.355"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E7EAEF"
-        android:fillType="evenOdd"
-        android:pathData="M147.653,124.355C147.653,125.758 146.516,126.895 145.114,126.895C143.711,126.895 142.574,125.758 142.574,124.355C142.574,122.953 143.711,121.816 145.114,121.816C146.516,121.816 147.653,122.953 147.653,124.355"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E7EAEF"
-        android:fillType="evenOdd"
-        android:pathData="M157.812,124.355C157.812,125.758 156.675,126.895 155.272,126.895C153.87,126.895 152.733,125.758 152.733,124.355C152.733,122.953 153.87,121.816 155.272,121.816C156.675,121.816 157.812,122.953 157.812,124.355"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M132.415,114.197l71.111,0l0,-5.079l-71.111,0z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E7EAEF"
-        android:fillType="evenOdd"
-        android:pathData="M137.447,97.556C137.787,99.345 136.247,100.885 134.458,100.545C133.464,100.357 132.651,99.544 132.462,98.55C132.123,96.761 133.663,95.221 135.452,95.56C136.446,95.749 137.259,96.562 137.447,97.556"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E7EAEF"
-        android:fillType="evenOdd"
-        android:pathData="M147.606,97.556C147.945,99.345 146.406,100.885 144.617,100.545C143.623,100.357 142.81,99.544 142.621,98.55C142.282,96.761 143.821,95.221 145.611,95.56C146.605,95.749 147.418,96.562 147.606,97.556"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E7EAEF"
-        android:fillType="evenOdd"
-        android:pathData="M157.765,97.556C158.104,99.345 156.564,100.885 154.775,100.545C153.781,100.357 152.968,99.544 152.78,98.55C152.441,96.761 153.98,95.221 155.769,95.56C156.763,95.749 157.576,96.562 157.765,97.556"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M132.415,88.8l71.111,0l0,-5.079l-71.111,0z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#657887"
-        android:fillType="evenOdd"
-        android:pathData="M206.442,83.72L129.499,83.72C128.304,83.72 127.336,82.752 127.336,81.557L127.336,65.566C127.336,64.371 128.304,63.403 129.499,63.403L206.442,63.403C207.637,63.403 208.606,64.371 208.606,65.566L208.606,81.557C208.606,82.752 207.637,83.72 206.442,83.72"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M201.944,78.641L165.744,78.641C164.87,78.641 164.161,77.933 164.161,77.059L164.161,70.065C164.161,69.191 164.87,68.482 165.744,68.482L201.944,68.482C202.818,68.482 203.526,69.191 203.526,70.065L203.526,77.059C203.526,77.933 202.818,78.641 201.944,78.641"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E7EAEF"
-        android:fillType="evenOdd"
-        android:pathData="M137.447,73.064C137.787,74.854 136.247,76.393 134.458,76.054C133.464,75.866 132.651,75.053 132.462,74.059C132.123,72.27 133.663,70.73 135.452,71.069C136.446,71.258 137.259,72.071 137.447,73.064"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E7EAEF"
-        android:fillType="evenOdd"
-        android:pathData="M147.606,73.064C147.945,74.854 146.406,76.393 144.617,76.054C143.623,75.866 142.81,75.053 142.621,74.059C142.282,72.27 143.821,70.73 145.611,71.069C146.605,71.258 147.418,72.071 147.606,73.064"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E7EAEF"
-        android:fillType="evenOdd"
-        android:pathData="M157.765,73.064C158.104,74.854 156.564,76.393 154.775,76.054C153.781,75.866 152.968,75.053 152.78,74.059C152.441,72.27 153.98,70.73 155.769,71.069C156.763,71.258 157.576,72.071 157.765,73.064"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M201.618,104.083L165.417,104.083C164.544,104.083 163.835,103.375 163.835,102.501L163.835,95.507C163.835,94.633 164.544,93.925 165.417,93.925L201.618,93.925C202.492,93.925 203.2,94.633 203.2,95.507L203.2,102.501C203.2,103.375 202.492,104.083 201.618,104.083"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M201.618,128.755L165.417,128.755C164.544,128.755 163.835,128.046 163.835,127.172L163.835,120.178C163.835,119.304 164.544,118.596 165.417,118.596L201.618,118.596C202.492,118.596 203.2,119.304 203.2,120.178L203.2,127.172C203.2,128.046 202.492,128.755 201.618,128.755"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <group>
-        <clip-path android:pathData="M98.189,95.912l4.28,0l0,4.281l-4.28,0z" />
-        <path
-            android:fillColor="#657887"
-            android:fillType="evenOdd"
-            android:pathData="M102.469,98.053C102.469,99.235 101.511,100.193 100.328,100.193C99.146,100.193 98.188,99.235 98.188,98.053C98.188,96.871 99.146,95.912 100.328,95.912C101.511,95.912 102.469,96.871 102.469,98.053"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <path
-        android:fillColor="#B1BBC2"
-        android:fillType="evenOdd"
-        android:pathData="M85.977,111.992L61.064,111.918C60.534,111.916 60.103,112.302 60.101,112.778L60.075,119.783C60.073,120.26 60.502,120.648 61.032,120.649L85.945,120.724C86.475,120.725 86.906,120.34 86.908,119.863L86.934,112.859C86.936,112.382 86.507,111.994 85.977,111.992"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <group>
-        <clip-path android:pathData="M85.977,111.992L61.064,111.918C60.534,111.916 60.103,112.302 60.101,112.778L60.075,119.783C60.073,120.26 60.502,120.648 61.032,120.649L85.945,120.724C86.475,120.725 86.906,120.34 86.908,119.863L86.934,112.859C86.936,112.382 86.507,111.994 85.977,111.992" />
-        <path
-            android:fillColor="#BF0F2D"
-            android:fillType="evenOdd"
-            android:pathData="M61.135,111.072L60.115,110.986C60.094,110.984 60.076,111.43 60.076,111.983L60.075,120.105C60.075,120.658 60.092,121.107 60.114,121.109L61.134,121.195C61.156,121.197 61.173,120.75 61.173,120.198L61.174,112.076C61.174,111.523 61.157,111.074 61.135,111.072"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <path
-        android:fillColor="#94A1AB"
-        android:fillType="evenOdd"
-        android:pathData="M86.129,99.866L61.07,99.792C60.537,99.79 60.103,100.176 60.101,100.652L60.075,107.657C60.073,108.134 60.504,108.522 61.038,108.523L86.096,108.598C86.63,108.599 87.063,108.214 87.065,107.737L87.091,100.733C87.093,100.256 86.662,99.868 86.129,99.866"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <group>
-        <clip-path android:pathData="M86.129,99.866L61.07,99.792C60.537,99.79 60.103,100.176 60.101,100.652L60.075,107.657C60.073,108.134 60.504,108.522 61.038,108.523L86.096,108.598C86.63,108.599 87.063,108.214 87.065,107.737L87.091,100.733C87.093,100.256 86.662,99.868 86.129,99.866" />
-        <path
-            android:fillColor="#BF0F2D"
-            android:fillType="evenOdd"
-            android:pathData="M61.135,99.567L60.115,99.487C60.094,99.486 60.076,99.898 60.076,100.408L60.075,107.905C60.075,108.415 60.092,108.83 60.114,108.832L61.134,108.912C61.156,108.913 61.173,108.501 61.173,107.991L61.174,100.494C61.174,99.984 61.157,99.569 61.135,99.567"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <path
-        android:fillColor="#748692"
-        android:fillType="evenOdd"
-        android:pathData="M86.134,87.743L61.221,87.669C60.691,87.667 60.26,88.053 60.258,88.529L60.232,95.534C60.23,96.011 60.659,96.399 61.189,96.4L86.102,96.475C86.632,96.476 87.063,96.091 87.065,95.614L87.091,88.61C87.093,88.133 86.664,87.745 86.134,87.743"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <group>
-        <clip-path android:pathData="M86.134,87.743L61.221,87.669C60.691,87.667 60.26,88.053 60.258,88.529L60.232,95.534C60.23,96.011 60.659,96.399 61.189,96.4L86.102,96.475C86.632,96.476 87.063,96.091 87.065,95.614L87.091,88.61C87.093,88.133 86.664,87.745 86.134,87.743" />
-        <path
-            android:fillColor="#BF0F2D"
-            android:fillType="evenOdd"
-            android:pathData="M61.292,86.825L60.272,86.736C60.251,86.734 60.233,87.195 60.233,87.764L60.232,96.136C60.232,96.706 60.249,97.169 60.271,97.171L61.291,97.26C61.313,97.262 61.33,96.801 61.33,96.231L61.331,87.86C61.332,87.29 61.314,86.827 61.292,86.825"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <path
-        android:fillColor="#657887"
-        android:fillType="evenOdd"
-        android:pathData="M86.134,75.623L61.221,75.549C60.691,75.547 60.26,75.933 60.258,76.409L60.232,83.414C60.23,83.891 60.659,84.279 61.189,84.28L86.102,84.355C86.632,84.356 87.063,83.971 87.065,83.494L87.091,76.49C87.093,76.013 86.664,75.625 86.134,75.623"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <group>
-        <clip-path android:pathData="M86.134,75.623L61.221,75.549C60.691,75.547 60.26,75.933 60.258,76.409L60.232,83.414C60.23,83.891 60.659,84.279 61.189,84.28L86.102,84.355C86.632,84.356 87.063,83.971 87.065,83.494L87.091,76.49C87.093,76.013 86.664,75.625 86.134,75.623" />
-        <path
-            android:fillColor="#BF0F2D"
-            android:fillType="evenOdd"
-            android:pathData="M61.292,74.864L60.272,74.773C60.251,74.771 60.233,75.239 60.233,75.817L60.232,84.313C60.232,84.892 60.249,85.362 60.271,85.364L61.291,85.454C61.313,85.456 61.33,84.989 61.33,84.411L61.331,75.914C61.332,75.336 61.314,74.866 61.292,74.864"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <path
-        android:fillColor="#FFFFFF"
-        android:fillType="nonZero"
-        android:pathData="M65.229,81.742L65.229,81.246L65.587,81.246L65.587,80.845L65.229,80.845L65.229,79.085L64.559,79.085C64.089,79.792 63.716,80.383 63.476,80.823L63.476,81.246L64.774,81.246L64.774,81.742L65.229,81.742ZM64.781,80.856L63.916,80.856L63.916,80.829C64.225,80.284 64.501,79.848 64.755,79.472L64.781,79.472L64.781,80.856ZM67.003,81.806C67.581,81.806 67.989,81.419 67.989,80.873C67.989,80.363 67.619,79.989 67.115,79.989C66.802,79.989 66.552,80.135 66.427,80.387L66.395,80.387C66.395,79.779 66.625,79.417 67.014,79.417C67.242,79.417 67.419,79.542 67.478,79.743L67.952,79.743C67.873,79.306 67.501,79.019 67.017,79.019C66.34,79.019 65.941,79.549 65.941,80.442C65.941,80.781 66.005,81.064 66.128,81.281C66.305,81.622 66.612,81.806 67.003,81.806ZM66.997,81.41C66.701,81.41 66.474,81.182 66.474,80.88C66.474,80.584 66.697,80.367 67.001,80.367C67.305,80.367 67.524,80.584 67.524,80.887C67.524,81.184 67.295,81.41 66.997,81.41ZM69.368,81.808C69.957,81.808 70.352,81.429 70.352,80.875C70.352,80.354 69.995,79.984 69.491,79.984C69.235,79.984 69.047,80.074 68.93,80.232L68.898,80.232L68.963,79.487L70.194,79.487L70.194,79.085L68.595,79.085L68.457,80.613L68.887,80.613C68.985,80.449 69.156,80.352 69.375,80.352C69.681,80.352 69.894,80.567 69.894,80.886C69.894,81.202 69.682,81.412 69.371,81.412C69.097,81.412 68.889,81.25 68.86,81.005L68.414,81.005C68.436,81.473 68.817,81.808 69.368,81.808ZM71.751,81.808C72.364,81.808 72.784,81.491 72.784,81.029C72.784,80.687 72.555,80.418 72.209,80.354L72.209,80.322C72.495,80.251 72.675,80.024 72.675,79.739C72.675,79.319 72.292,79.019 71.753,79.019C71.214,79.019 70.829,79.319 70.829,79.739C70.829,80.022 71.013,80.252 71.296,80.322L71.296,80.354C70.949,80.427 70.722,80.694 70.722,81.031C70.722,81.491 71.142,81.808 71.751,81.808ZM71.753,80.179C71.482,80.179 71.296,80.019 71.296,79.785C71.296,79.547 71.48,79.384 71.753,79.384C72.023,79.384 72.208,79.547 72.208,79.785C72.208,80.019 72.022,80.179 71.753,80.179ZM71.753,81.438C71.433,81.438 71.212,81.256 71.212,80.991C71.212,80.726 71.433,80.543 71.753,80.543C72.071,80.543 72.292,80.726 72.292,80.991C72.292,81.256 72.073,81.438 71.753,81.438ZM74.477,81.742L75.395,79.085L74.889,79.085L74.226,81.188L74.195,81.188L73.527,79.085L73.002,79.085L73.93,81.742L74.477,81.742ZM76.238,81.742L76.238,80.746L76.764,80.746L77.285,81.742L77.828,81.742L77.249,80.672C77.565,80.558 77.749,80.265 77.749,79.916C77.749,79.406 77.4,79.085 76.842,79.085L75.763,79.085L75.763,81.742L76.238,81.742ZM76.787,80.368L76.238,80.368L76.238,79.479L76.776,79.479C77.077,79.479 77.261,79.649 77.261,79.925C77.261,80.206 77.088,80.368 76.787,80.368ZM78.796,81.742L79.932,79.49L79.932,79.085L78.084,79.085L78.084,79.485L79.453,79.485L79.453,79.514L78.299,81.742L78.796,81.742ZM82.17,81.742L82.17,81.338L80.977,81.338L80.977,81.307L81.533,80.749C81.984,80.304 82.129,80.068 82.129,79.783C82.129,79.339 81.75,79.019 81.226,79.019C80.681,79.019 80.3,79.365 80.3,79.862L80.3,79.87L80.745,79.87L80.745,79.862C80.745,79.592 80.933,79.409 81.211,79.409C81.472,79.409 81.664,79.579 81.664,79.813C81.664,80 81.574,80.138 81.211,80.506L80.326,81.412L80.326,81.742L82.17,81.742ZM83.572,81.808C84.217,81.808 84.616,81.486 84.616,80.968C84.616,80.564 84.39,80.339 83.85,80.217L83.545,80.148C83.215,80.072 83.081,79.967 83.081,79.789C83.081,79.562 83.283,79.415 83.589,79.415C83.88,79.415 84.086,79.562 84.119,79.796L84.574,79.796C84.552,79.339 84.148,79.019 83.591,79.019C82.996,79.019 82.602,79.339 82.602,79.822C82.602,80.217 82.829,80.457 83.311,80.565L83.655,80.645C83.996,80.724 84.141,80.836 84.141,81.027C84.141,81.25 83.915,81.41 83.602,81.41C83.265,81.41 83.029,81.257 83,81.02L82.536,81.02C82.56,81.502 82.963,81.808 83.572,81.808Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#FFFFFF"
-        android:fillType="nonZero"
-        android:pathData="M64.034,93.836L64.034,91.968L64.06,91.968L64.794,93.733L65.133,93.733L65.867,91.968L65.893,91.968L65.893,93.836L66.335,93.836L66.335,91.18L65.779,91.18L64.98,93.114L64.947,93.114L64.148,91.18L63.592,91.18L63.592,93.836L64.034,93.836ZM67.965,93.836L67.965,91.18L67.492,91.18L66.798,91.666L66.798,92.122L67.459,91.658L67.49,91.658L67.49,93.836L67.965,93.836ZM69.579,93.902C70.157,93.902 70.584,93.564 70.584,93.107C70.584,92.754 70.36,92.507 69.997,92.465L69.997,92.433C70.292,92.371 70.478,92.133 70.478,91.822C70.478,91.416 70.093,91.114 69.577,91.114C69.025,91.114 68.668,91.417 68.644,91.905L69.088,91.905C69.106,91.655 69.289,91.5 69.563,91.5C69.841,91.5 70.019,91.653 70.019,91.889C70.019,92.126 69.833,92.29 69.563,92.29L69.239,92.29L69.239,92.658L69.572,92.658C69.9,92.658 70.1,92.818 70.1,93.078C70.1,93.328 69.887,93.503 69.583,93.503C69.277,93.503 69.068,93.346 69.047,93.1L68.593,93.1C68.617,93.586 69.007,93.902 69.579,93.902ZM71.968,93.902C72.603,93.902 72.981,93.387 72.981,92.509C72.981,91.627 72.598,91.114 71.968,91.114C71.337,91.114 70.954,91.627 70.954,92.505C70.954,93.387 71.331,93.902 71.968,93.902ZM71.968,93.508C71.631,93.508 71.434,93.159 71.434,92.505C71.434,91.857 71.635,91.509 71.968,91.509C72.301,91.509 72.5,91.855 72.5,92.505C72.5,93.159 72.305,93.508 71.968,93.508ZM74.339,93.902C74.917,93.902 75.344,93.564 75.344,93.107C75.344,92.754 75.119,92.507 74.757,92.465L74.757,92.433C75.051,92.371 75.237,92.133 75.237,91.822C75.237,91.416 74.852,91.114 74.337,91.114C73.785,91.114 73.428,91.417 73.404,91.905L73.847,91.905C73.866,91.655 74.048,91.5 74.322,91.5C74.6,91.5 74.779,91.653 74.779,91.889C74.779,92.126 74.593,92.29 74.322,92.29L73.998,92.29L73.998,92.658L74.331,92.658C74.659,92.658 74.86,92.818 74.86,93.078C74.86,93.328 74.646,93.503 74.342,93.503C74.037,93.503 73.827,93.346 73.807,93.1L73.352,93.1C73.376,93.586 73.766,93.902 74.339,93.902ZM76.288,93.836L76.288,92.989L76.571,92.663L77.411,93.836L77.99,93.836L76.908,92.338L77.911,91.18L77.366,91.18L76.319,92.402L76.288,92.402L76.288,91.18L75.813,91.18L75.813,93.836L76.288,93.836ZM79.15,93.902C79.794,93.902 80.193,93.58 80.193,93.063C80.193,92.658 79.967,92.433 79.428,92.312L79.122,92.242C78.793,92.167 78.658,92.062 78.658,91.883C78.658,91.657 78.861,91.509 79.166,91.509C79.457,91.509 79.663,91.657 79.696,91.89L80.151,91.89C80.129,91.434 79.726,91.114 79.168,91.114C78.574,91.114 78.18,91.434 78.18,91.916C78.18,92.312 78.406,92.551 78.888,92.66L79.233,92.739C79.573,92.818 79.718,92.93 79.718,93.122C79.718,93.345 79.492,93.505 79.179,93.505C78.842,93.505 78.607,93.352 78.577,93.114L78.113,93.114C78.137,93.597 78.54,93.902 79.15,93.902ZM81.603,93.9C82.181,93.9 82.59,93.514 82.59,92.967C82.59,92.457 82.22,92.084 81.715,92.084C81.402,92.084 81.152,92.229 81.027,92.481L80.996,92.481C80.996,91.874 81.226,91.511 81.614,91.511C81.842,91.511 82.019,91.636 82.078,91.837L82.553,91.837C82.474,91.401 82.102,91.114 81.618,91.114C80.94,91.114 80.541,91.644 80.541,92.536C80.541,92.875 80.605,93.159 80.729,93.376C80.905,93.716 81.213,93.9 81.603,93.9ZM81.598,93.505C81.301,93.505 81.075,93.276 81.075,92.975C81.075,92.678 81.297,92.461 81.601,92.461C81.905,92.461 82.124,92.678 82.124,92.982C82.124,93.278 81.896,93.505 81.598,93.505ZM83.939,93.9C84.614,93.9 85.015,93.372 85.015,92.478C85.015,92.141 84.951,91.857 84.828,91.638C84.649,91.298 84.342,91.114 83.953,91.114C83.375,91.114 82.967,91.502 82.967,92.047C82.967,92.559 83.335,92.93 83.841,92.93C84.152,92.93 84.404,92.785 84.529,92.533L84.561,92.533L84.561,92.533C84.561,93.14 84.331,93.503 83.942,93.503C83.714,93.503 83.537,93.378 83.477,93.177L83.004,93.177C83.083,93.613 83.453,93.9 83.939,93.9ZM83.955,92.553C83.65,92.553 83.432,92.336 83.432,92.032C83.432,91.736 83.661,91.509 83.957,91.509C84.253,91.509 84.482,91.739 84.482,92.04C84.482,92.336 84.259,92.553 83.955,92.553Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#FFFFFF"
-        android:fillType="nonZero"
-        android:pathData="M64.658,105.773L64.658,103.117L64.185,103.117L63.491,103.603L63.491,104.06L64.152,103.596L64.183,103.596L64.183,105.773L64.658,105.773ZM66.508,105.84C67.216,105.84 67.669,105.4 67.669,104.709L67.669,104.376L66.566,104.376L66.566,104.748L67.205,104.748L67.203,104.803C67.196,105.17 66.92,105.416 66.515,105.416C66.042,105.416 65.745,105.044 65.745,104.441C65.745,103.844 66.036,103.474 66.5,103.474C66.841,103.474 67.078,103.642 67.174,103.944L67.647,103.944C67.562,103.401 67.113,103.051 66.5,103.051C65.744,103.051 65.26,103.594 65.26,104.444C65.26,105.306 65.738,105.84 66.508,105.84ZM69.044,105.84C69.688,105.84 70.087,105.518 70.087,105C70.087,104.595 69.861,104.371 69.322,104.249L69.016,104.179C68.687,104.104 68.552,103.999 68.552,103.82C68.552,103.594 68.755,103.447 69.06,103.447C69.351,103.447 69.557,103.594 69.59,103.828L70.045,103.828C70.023,103.371 69.62,103.051 69.062,103.051C68.468,103.051 68.074,103.371 68.074,103.854C68.074,104.249 68.3,104.489 68.782,104.597L69.127,104.676C69.467,104.755 69.612,104.868 69.612,105.059C69.612,105.282 69.386,105.442 69.073,105.442C68.736,105.442 68.501,105.289 68.471,105.052L68.007,105.052C68.031,105.534 68.434,105.84 69.044,105.84ZM71.094,105.773L72.23,103.522L72.23,103.117L70.382,103.117L70.382,103.517L71.751,103.517L71.751,103.546L70.597,105.773L71.094,105.773ZM73.549,105.84C74.184,105.84 74.561,105.324 74.561,104.446C74.561,103.565 74.179,103.051 73.549,103.051C72.918,103.051 72.535,103.565 72.535,104.443C72.535,105.324 72.912,105.84 73.549,105.84ZM73.549,105.446C73.212,105.446 73.015,105.096 73.015,104.443C73.015,103.795 73.216,103.447 73.549,103.447C73.882,103.447 74.081,103.793 74.081,104.443C74.081,105.096 73.886,105.446 73.549,105.446ZM75.953,105.84C76.597,105.84 76.996,105.518 76.996,105C76.996,104.595 76.77,104.371 76.231,104.249L75.925,104.179C75.596,104.104 75.461,103.999 75.461,103.82C75.461,103.594 75.664,103.447 75.969,103.447C76.26,103.447 76.466,103.594 76.499,103.828L76.954,103.828C76.932,103.371 76.529,103.051 75.971,103.051C75.377,103.051 74.983,103.371 74.983,103.854C74.983,104.249 75.209,104.489 75.691,104.597L76.036,104.676C76.376,104.755 76.521,104.868 76.521,105.059C76.521,105.282 76.295,105.442 75.982,105.442C75.645,105.442 75.41,105.289 75.38,105.052L74.916,105.052C74.94,105.534 75.343,105.84 75.953,105.84ZM78.575,105.84C79.284,105.84 79.737,105.4 79.737,104.709L79.737,104.376L78.634,104.376L78.634,104.748L79.273,104.748L79.271,104.803C79.264,105.17 78.988,105.416 78.583,105.416C78.11,105.416 77.813,105.044 77.813,104.441C77.813,103.844 78.104,103.474 78.568,103.474C78.909,103.474 79.146,103.642 79.242,103.944L79.715,103.944C79.63,103.401 79.181,103.051 78.568,103.051C77.812,103.051 77.327,103.594 77.327,104.444C77.327,105.306 77.806,105.84 78.575,105.84ZM81.104,105.84C81.693,105.84 82.089,105.46 82.089,104.906C82.089,104.386 81.732,104.016 81.228,104.016C80.972,104.016 80.784,104.106 80.666,104.264L80.635,104.264L80.699,103.519L81.931,103.519L81.931,103.117L80.331,103.117L80.193,104.645L80.624,104.645C80.721,104.481 80.893,104.384 81.112,104.384C81.417,104.384 81.631,104.599 81.631,104.917C81.631,105.234 81.419,105.444 81.108,105.444C80.834,105.444 80.626,105.282 80.596,105.037L80.151,105.037C80.173,105.505 80.554,105.84 81.104,105.84ZM83.488,105.84C84.101,105.84 84.52,105.523 84.52,105.061C84.52,104.719 84.292,104.45 83.946,104.386L83.946,104.354C84.231,104.282 84.412,104.056 84.412,103.771C84.412,103.351 84.029,103.051 83.489,103.051C82.95,103.051 82.565,103.351 82.565,103.771C82.565,104.054 82.749,104.284 83.033,104.354L83.033,104.386C82.685,104.459 82.459,104.726 82.459,105.063C82.459,105.523 82.878,105.84 83.488,105.84ZM83.489,104.211C83.219,104.211 83.033,104.051 83.033,103.817C83.033,103.579 83.217,103.415 83.489,103.415C83.76,103.415 83.944,103.579 83.944,103.817C83.944,104.051 83.758,104.211 83.489,104.211ZM83.489,105.47C83.169,105.47 82.948,105.287 82.948,105.022C82.948,104.757 83.169,104.575 83.489,104.575C83.808,104.575 84.029,104.757 84.029,105.022C84.029,105.287 83.81,105.47 83.489,105.47Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#FFFFFF"
-        android:fillType="nonZero"
-        android:pathData="M64.155,117.868L65.291,115.617L65.291,115.212L63.443,115.212L63.443,115.611L64.813,115.611L64.813,115.641L63.658,117.868L64.155,117.868ZM67.454,117.868L67.454,117.457L66.209,117.457L66.209,116.714L67.386,116.714L67.386,116.327L66.209,116.327L66.209,115.622L67.454,115.622L67.454,115.212L65.734,115.212L65.734,117.868L67.454,117.868ZM69.23,117.868L70.148,115.212L69.642,115.212L68.979,117.314L68.948,117.314L68.28,115.212L67.755,115.212L68.683,117.868L69.23,117.868ZM71.576,117.934C72.351,117.934 72.83,117.395 72.83,116.539C72.83,115.681 72.347,115.145 71.576,115.145C70.805,115.145 70.317,115.681 70.317,116.539C70.317,117.397 70.796,117.934 71.576,117.934ZM71.576,117.513C71.096,117.513 70.803,117.132 70.803,116.539C70.803,115.944 71.103,115.567 71.576,115.567C72.047,115.567 72.344,115.944 72.344,116.539C72.344,117.132 72.049,117.513 71.576,117.513ZM74.919,117.868L74.919,117.373L75.277,117.373L75.277,116.971L74.919,116.971L74.919,115.212L74.249,115.212C73.779,115.919 73.406,116.509 73.166,116.949L73.166,117.373L74.464,117.373L74.464,117.868L74.919,117.868ZM74.471,116.982L73.606,116.982L73.606,116.955C73.915,116.41 74.191,115.974 74.446,115.598L74.471,115.598L74.471,116.982ZM76.693,117.932C77.271,117.932 77.679,117.546 77.679,116.999C77.679,116.489 77.309,116.115 76.805,116.115C76.492,116.115 76.242,116.261 76.117,116.513L76.085,116.513C76.085,115.906 76.315,115.543 76.704,115.543C76.932,115.543 77.109,115.668 77.168,115.869L77.642,115.869C77.563,115.433 77.192,115.145 76.707,115.145C76.03,115.145 75.631,115.676 75.631,116.568C75.631,116.907 75.695,117.19 75.818,117.408C75.995,117.748 76.302,117.932 76.693,117.932ZM76.687,117.536C76.391,117.536 76.164,117.308 76.164,117.006C76.164,116.71 76.387,116.493 76.691,116.493C76.995,116.493 77.214,116.71 77.214,117.014C77.214,117.31 76.985,117.536 76.687,117.536ZM79.286,117.868L79.286,115.622L80.105,115.622L80.105,115.212L77.994,115.212L77.994,115.622L78.811,115.622L78.811,117.868L79.286,117.868ZM82.306,117.868L82.306,117.465L81.113,117.465L81.113,117.433L81.669,116.876C82.12,116.43 82.266,116.195 82.266,115.909C82.266,115.466 81.886,115.145 81.362,115.145C80.817,115.145 80.436,115.492 80.436,115.988L80.436,115.996L80.881,115.996L80.881,115.988C80.881,115.718 81.069,115.536 81.347,115.536C81.609,115.536 81.8,115.705 81.8,115.939C81.8,116.127 81.71,116.265 81.347,116.633L80.462,117.538L80.462,117.868L82.306,117.868ZM83.701,117.934C84.29,117.934 84.686,117.555 84.686,117.001C84.686,116.48 84.329,116.11 83.824,116.11C83.569,116.11 83.381,116.2 83.263,116.358L83.232,116.358L83.296,115.613L84.528,115.613L84.528,115.212L82.928,115.212L82.79,116.739L83.221,116.739C83.318,116.576 83.489,116.478 83.708,116.478C84.014,116.478 84.228,116.693 84.228,117.012C84.228,117.328 84.016,117.538 83.705,117.538C83.431,117.538 83.223,117.376 83.193,117.132L82.748,117.132C82.77,117.599 83.151,117.934 83.701,117.934Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E7EAEF"
-        android:fillType="evenOdd"
-        android:pathData="M74.501,104.057C77.826,104.057 80.522,101.362 80.522,98.036C80.522,94.711 77.826,92.016 74.501,92.016C71.176,92.016 68.48,94.711 68.48,98.036C68.48,101.362 71.176,104.057 74.501,104.057"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <group>
-        <clip-path android:pathData="M68.48,98.037C68.48,101.362 71.176,104.058 74.501,104.058L74.501,104.058C77.826,104.058 80.522,101.362 80.522,98.037L80.522,98.037C80.522,94.712 77.826,92.016 74.501,92.016L74.501,92.016C71.176,92.016 68.48,94.712 68.48,98.037L68.48,98.037Z" />
-        <path
-            android:fillColor="#E7EAEF"
-            android:fillType="evenOdd"
-            android:pathData="M61.941,147.52l29.905,0l0,-64.755l-29.905,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M68.48,98.037C68.48,101.362 71.176,104.058 74.501,104.058L74.501,104.058C77.826,104.058 80.522,101.362 80.522,98.037L80.522,98.037C80.522,94.711 77.826,92.016 74.501,92.016L74.501,92.016C71.176,92.016 68.48,94.711 68.48,98.037L68.48,98.037Z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M68.081,104.456l12.839,0l0,-12.839l-12.839,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <path
-        android:fillColor="#657887"
-        android:fillType="evenOdd"
-        android:pathData="M74.349,93.415C73.933,93.665 72.593,94.412 71.249,94.51C71.086,94.522 70.96,94.655 70.96,94.815L70.96,99.599C70.96,100.335 71.35,101.017 71.989,101.401C73.022,102.021 74.155,102.608 74.421,102.745C74.458,102.763 74.502,102.763 74.538,102.745C74.805,102.608 75.938,102.021 76.971,101.401C77.61,101.017 77.999,100.335 77.999,99.599L77.999,94.815C77.999,94.655 77.873,94.522 77.71,94.51C76.366,94.412 75.026,93.665 74.611,93.415C74.571,93.391 74.525,93.379 74.48,93.379C74.434,93.379 74.389,93.391 74.349,93.415"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <group>
-        <clip-path android:pathData="M74.348,93.415C73.933,93.665 72.593,94.411 71.249,94.51L71.249,94.51C71.086,94.522 70.96,94.655 70.96,94.815L70.96,94.815L70.96,99.599C70.96,100.334 71.35,101.017 71.989,101.4L71.989,101.4C73.022,102.021 74.155,102.608 74.421,102.744L74.421,102.744C74.458,102.763 74.502,102.763 74.538,102.744L74.538,102.744C74.805,102.608 75.938,102.021 76.971,101.4L76.971,101.4C77.61,101.017 77.999,100.334 77.999,99.599L77.999,99.599L77.999,94.815C77.999,94.655 77.873,94.522 77.71,94.51L77.71,94.51C76.366,94.411 75.027,93.665 74.611,93.415L74.611,93.415C74.571,93.39 74.525,93.378 74.48,93.378L74.48,93.378C74.434,93.378 74.389,93.39 74.348,93.415L74.348,93.415Z" />
-        <path
-            android:fillColor="#657887"
-            android:fillType="evenOdd"
-            android:pathData="M56.498,182.23l43.444,0l0,-94.071l-43.444,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M74.348,93.415C73.933,93.665 72.593,94.411 71.249,94.51L71.249,94.51C71.086,94.522 70.96,94.655 70.96,94.815L70.96,94.815L70.96,99.599C70.96,100.334 71.35,101.017 71.989,101.4L71.989,101.4C73.022,102.021 74.155,102.608 74.421,102.744L74.421,102.744C74.458,102.763 74.502,102.763 74.538,102.744L74.538,102.744C74.805,102.608 75.938,102.021 76.971,101.4L76.971,101.4C77.609,101.017 77.999,100.334 77.999,99.599L77.999,99.599L77.999,94.815C77.999,94.655 77.873,94.522 77.71,94.51L77.71,94.51C76.366,94.411 75.027,93.665 74.611,93.415L74.611,93.415C74.571,93.391 74.525,93.378 74.48,93.378L74.48,93.378C74.434,93.378 74.389,93.391 74.348,93.415L74.348,93.415Z" />
-        <path
-            android:fillColor="#657887"
-            android:fillType="evenOdd"
-            android:pathData="M70.897,102.784l7.183,0l0,-9.5l-7.183,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M74.348,93.415C73.933,93.665 72.593,94.411 71.249,94.51L71.249,94.51C71.086,94.522 70.96,94.655 70.96,94.815L70.96,94.815L70.96,99.599C70.96,100.334 71.35,101.017 71.989,101.4L71.989,101.4C73.022,102.021 74.155,102.608 74.421,102.744L74.421,102.744C74.458,102.763 74.502,102.763 74.538,102.744L74.538,102.744C74.805,102.608 75.938,102.021 76.971,101.4L76.971,101.4C77.609,101.017 77.999,100.334 77.999,99.599L77.999,99.599L77.999,94.815C77.999,94.655 77.873,94.522 77.71,94.51L77.71,94.51C76.366,94.411 75.027,93.665 74.611,93.415L74.611,93.415C74.571,93.391 74.525,93.378 74.48,93.378L74.48,93.378C74.434,93.378 74.389,93.391 74.348,93.415L74.348,93.415Z" />
-        <path
-            android:fillColor="#657887"
-            android:fillType="evenOdd"
-            android:pathData="M71.249,94.51C71.087,94.522 70.96,94.655 70.96,94.815L70.96,99.6C70.96,100.335 71.35,101.017 71.989,101.401C73.022,102.021 74.155,102.608 74.421,102.745C74.458,102.763 74.502,102.763 74.538,102.745C74.805,102.608 75.938,102.021 76.971,101.401C77.61,101.017 77.999,100.335 77.999,99.6L77.999,94.815C77.999,94.655 77.873,94.522 77.71,94.51C76.366,94.412 75.026,93.665 74.611,93.415C74.571,93.391 74.525,93.379 74.48,93.379C74.434,93.379 74.389,93.391 74.349,93.415C73.933,93.665 72.593,94.412 71.249,94.51"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M74.467,93.379C74.426,93.381 74.385,93.393 74.349,93.415L74.349,93.415C74.284,93.453 74.198,93.504 74.093,93.562L74.093,93.562C73.519,93.88 72.385,94.427 71.249,94.51L71.249,94.51C71.086,94.522 70.96,94.655 70.96,94.815L70.96,94.815L70.96,99.599C70.96,100.334 71.35,101.017 71.989,101.4L71.989,101.4C73.022,102.021 74.155,102.607 74.421,102.744L74.421,102.744C74.44,102.754 74.46,102.758 74.48,102.758L74.48,102.758C74.5,102.758 74.52,102.754 74.538,102.744L74.538,102.744C74.805,102.607 75.938,102.021 76.971,101.4L76.971,101.4C77.609,101.017 77.999,100.334 77.999,99.599L77.999,99.599L77.999,94.815C77.999,94.811 77.999,94.807 77.999,94.804L77.999,94.804C77.993,94.649 77.869,94.522 77.71,94.51L77.71,94.51C76.366,94.411 75.027,93.665 74.611,93.415L74.611,93.415C74.571,93.391 74.525,93.378 74.48,93.378L74.48,93.378C74.475,93.378 74.471,93.378 74.467,93.379L74.467,93.379Z" />
-        <path
-            android:fillColor="#657887"
-            android:fillType="evenOdd"
-            android:pathData="M70.897,102.784l7.183,0l0,-9.5l-7.183,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M74.467,93.379C74.426,93.381 74.385,93.393 74.349,93.415L74.349,93.415C74.284,93.453 74.198,93.504 74.093,93.562L74.093,93.562C73.518,93.88 72.386,94.427 71.249,94.51L71.249,94.51C71.086,94.522 70.96,94.655 70.96,94.815L70.96,94.815L70.96,99.599C70.96,100.334 71.35,101.017 71.989,101.4L71.989,101.4C73.022,102.021 74.155,102.607 74.421,102.744L74.421,102.744C74.44,102.754 74.46,102.758 74.48,102.758L74.48,102.758C74.5,102.758 74.52,102.754 74.538,102.744L74.538,102.744C74.805,102.607 75.938,102.021 76.971,101.4L76.971,101.4C77.609,101.017 77.999,100.334 77.999,99.599L77.999,99.599L77.999,94.815C77.999,94.811 77.999,94.807 77.999,94.804L77.999,94.804C77.993,94.649 77.869,94.522 77.71,94.51L77.71,94.51C76.366,94.411 75.027,93.665 74.611,93.415L74.611,93.415C74.571,93.391 74.525,93.378 74.48,93.378L74.48,93.378C74.475,93.378 74.471,93.378 74.467,93.379L74.467,93.379Z" />
-        <path
-            android:fillColor="#657887"
-            android:fillType="evenOdd"
-            android:pathData="M70.381,103.338l8.197,0l0,-10.538l-8.197,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M73.505,96.276C73.362,96.51 73.272,96.801 73.256,97.118L73.256,97.118L73.256,97.118L73.041,97.118C72.756,97.118 72.525,97.355 72.525,97.647L72.525,97.647L72.525,99.457L72.525,99.464C72.529,99.753 72.759,99.986 73.041,99.986L73.041,99.986L75.78,99.986C75.791,99.986 75.802,99.986 75.813,99.985L75.813,99.985C76.083,99.968 76.296,99.738 76.296,99.457L76.296,99.457L76.296,97.647C76.296,97.355 76.065,97.118 75.78,97.118L75.78,97.118L75.565,97.118C75.527,96.33 75.024,95.704 74.411,95.704L74.411,95.704C74.044,95.704 73.717,95.927 73.505,96.276L73.505,96.276ZM74.411,96.213C74.747,96.213 75.034,96.619 75.067,97.118L75.067,97.118L73.755,97.118C73.787,96.619 74.074,96.213 74.411,96.213L74.411,96.213Z" />
-        <path
-            android:fillColor="#FFFFFF"
-            android:fillType="evenOdd"
-            android:pathData="M71.945,100.566l4.93,0l0,-5.441l-4.93,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <path
-        android:fillColor="#657887"
-        android:fillType="evenOdd"
-        android:pathData="M73.883,98.294C73.883,98.475 73.987,98.632 74.143,98.717L74.143,99.256C74.143,99.327 74.204,99.384 74.279,99.384L74.526,99.384C74.601,99.384 74.663,99.327 74.663,99.256L74.663,98.717C74.818,98.632 74.922,98.475 74.922,98.294C74.922,98.024 74.69,97.805 74.403,97.805C74.115,97.805 73.883,98.024 73.883,98.294"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <group>
-        <clip-path android:pathData="M73.882,98.294C73.882,98.475 73.987,98.632 74.142,98.717L74.142,98.717L74.142,99.256C74.142,99.327 74.203,99.384 74.279,99.384L74.279,99.384L74.525,99.384C74.601,99.384 74.662,99.327 74.662,99.256L74.662,99.256L74.662,98.717C74.817,98.632 74.922,98.475 74.922,98.294L74.922,98.294C74.922,98.024 74.689,97.805 74.402,97.805L74.402,97.805C74.115,97.805 73.882,98.024 73.882,98.294L73.882,98.294Z" />
-        <path
-            android:fillColor="#657887"
-            android:fillType="evenOdd"
-            android:pathData="M56.498,182.23l43.444,0l0,-94.071l-43.444,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M73.882,98.294C73.882,98.475 73.987,98.632 74.143,98.717L74.143,98.717L74.143,99.256C74.143,99.327 74.203,99.384 74.279,99.384L74.279,99.384L74.525,99.384C74.601,99.384 74.662,99.327 74.662,99.256L74.662,99.256L74.662,98.717C74.817,98.632 74.922,98.475 74.922,98.294L74.922,98.294C74.922,98.024 74.689,97.805 74.402,97.805L74.402,97.805C74.115,97.805 73.882,98.024 73.882,98.294L73.882,98.294Z" />
-        <path
-            android:fillColor="#657887"
-            android:fillType="evenOdd"
-            android:pathData="M73.793,99.425l1.159,0l0,-1.622l-1.159,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M73.882,98.294C73.882,98.475 73.987,98.632 74.143,98.717L74.143,98.717L74.143,99.256C74.143,99.327 74.203,99.384 74.279,99.384L74.279,99.384L74.525,99.384C74.601,99.384 74.662,99.327 74.662,99.256L74.662,99.256L74.662,98.717C74.817,98.632 74.922,98.475 74.922,98.294L74.922,98.294C74.922,98.024 74.689,97.805 74.402,97.805L74.402,97.805C74.115,97.805 73.882,98.024 73.882,98.294L73.882,98.294Z" />
-        <path
-            android:fillColor="#657887"
-            android:fillType="evenOdd"
-            android:pathData="M73.883,98.294C73.883,98.475 73.987,98.632 74.143,98.717L74.143,99.256C74.143,99.327 74.204,99.384 74.279,99.384L74.526,99.384C74.601,99.384 74.663,99.327 74.663,99.256L74.663,98.717C74.818,98.632 74.922,98.475 74.922,98.294C74.922,98.024 74.69,97.805 74.403,97.805C74.115,97.805 73.883,98.024 73.883,98.294"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M74.2,97.844C74.013,97.918 73.882,98.091 73.882,98.294L73.882,98.294C73.882,98.299 73.882,98.305 73.883,98.311L73.883,98.311C73.889,98.485 73.992,98.635 74.143,98.717L74.143,98.717L74.143,99.256C74.143,99.327 74.203,99.384 74.279,99.384L74.279,99.384L74.525,99.384C74.6,99.384 74.66,99.328 74.662,99.259L74.662,99.259L74.662,99.256L74.662,98.717C74.816,98.633 74.921,98.477 74.922,98.298L74.922,98.298L74.922,98.294C74.922,98.024 74.689,97.805 74.402,97.805L74.402,97.805C74.33,97.805 74.262,97.819 74.2,97.844L74.2,97.844Z" />
-        <path
-            android:fillColor="#657887"
-            android:fillType="evenOdd"
-            android:pathData="M73.793,99.425l1.159,0l0,-1.622l-1.159,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M74.2,97.844C74.013,97.918 73.882,98.091 73.882,98.294L73.882,98.294C73.882,98.299 73.883,98.305 73.883,98.311L73.883,98.311C73.889,98.485 73.992,98.635 74.143,98.717L74.143,98.717L74.143,99.256C74.143,99.327 74.203,99.384 74.279,99.384L74.279,99.384L74.525,99.384C74.6,99.384 74.66,99.328 74.662,99.259L74.662,99.259L74.662,99.256L74.662,98.717C74.816,98.633 74.92,98.477 74.922,98.298L74.922,98.298L74.922,98.294C74.922,98.024 74.689,97.805 74.402,97.805L74.402,97.805C74.331,97.805 74.262,97.819 74.2,97.844L74.2,97.844Z" />
-        <path
-            android:fillColor="#657887"
-            android:fillType="evenOdd"
-            android:pathData="M73.304,99.964l2.198,0l0,-2.737l-2.198,0z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <path
-        android:fillColor="#E8F5FF"
-        android:fillType="evenOdd"
-        android:pathData="M289.22,93.976C289.212,103.498 281.486,111.209 271.965,111.2C262.443,111.192 254.732,103.466 254.74,93.945C254.749,84.423 262.475,76.712 271.996,76.72C281.517,76.729 289.229,84.455 289.22,93.976"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M268.293,101.065C268.226,100.796 268.159,100.516 268.094,100.23C263.77,100.926 261.976,105 262.716,108.496C263.059,108.715 263.408,108.926 263.766,109.121C262.649,105.899 264.159,101.73 268.293,101.065"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M275.465,104.207L274.624,104.195C275.686,106.407 275.386,109.266 273.726,111.113C274.078,111.078 274.426,111.028 274.772,110.972C276.105,109.025 276.337,106.392 275.465,104.207"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M271.648,102.58C271.094,102.584 270.579,102.601 270.144,102.635C270.305,103.488 270.236,104.149 269.685,104.082C269.666,104.086 269.647,104.087 269.629,104.086C269.713,104.107 269.807,104.121 269.917,104.124L274.624,104.195L275.465,104.207L277.343,104.235L277.343,104.108L277.997,104.109L277.478,102.886C276.089,102.827 273.448,102.983 271.648,102.58"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M268.86,102.972C268.845,103.002 268.838,103.034 268.848,103.069C268.992,103.449 269.073,103.867 269.491,104.041C269.281,103.914 269.069,103.528 268.86,102.972"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#3E6883"
-        android:fillType="evenOdd"
-        android:pathData="M274.63,99.897C273.424,101.037 270.956,102.195 269.891,101.562C270.146,102.078 270.803,102.391 271.648,102.58C273.448,102.983 276.089,102.827 277.478,102.886L276.174,99.814C275.812,99.817 275.269,99.852 274.63,99.897"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#3E6883"
-        android:fillType="evenOdd"
-        android:pathData="M278.899,100.59C278.449,100.503 277.751,100.26 276.933,99.996L280.308,107.948L280.689,108.837C281.209,108.532 281.713,108.202 282.197,107.846L280.64,102.207C280.64,102.207 280.148,100.985 278.899,100.59"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M271.335,89.785L271.546,89.183C270.928,88.98 270.514,88.837 270.202,88.579C270.2,88.58 270.197,88.58 270.195,88.581C270.022,88.901 269.766,89.374 269.635,89.616C269.807,89.52 269.98,89.467 270.15,89.471C270.581,89.463 270.974,89.577 271.335,89.785"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M272.524,85.515C272.422,85.482 272.316,85.539 272.278,85.639C272.069,86.188 271.389,86.7 271.167,86.739C270.863,85.939 270.079,86.257 270.35,87.081C270.444,87.369 270.954,87.79 270.871,88.009C270.798,88.202 270.542,88.467 270.202,88.579C270.514,88.837 270.928,88.98 271.546,89.183C271.797,89.266 272.081,89.359 272.408,89.475C273.308,89.795 274.362,87.347 273.862,85.879C273.788,85.661 273.7,85.463 273.602,85.284C273.39,85.537 273.025,85.676 272.524,85.515"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#663014"
-        android:fillType="evenOdd"
-        android:pathData="M270.871,88.009C270.954,87.79 270.444,87.369 270.35,87.081C270.079,86.257 270.862,85.939 271.167,86.739C271.389,86.7 272.069,86.188 272.278,85.639C272.316,85.539 272.422,85.482 272.524,85.515C273.025,85.676 273.389,85.537 273.602,85.284C274.015,84.791 273.849,83.863 272.974,83.863C272.728,83.568 270.253,82.071 268.731,84.334C268.284,84.998 268.452,86.574 269.067,87.711C269.085,87.745 269.106,87.777 269.129,87.807C269.356,88.11 269.764,88.639 269.915,88.634C270.013,88.631 270.107,88.61 270.195,88.581C270.197,88.58 270.2,88.58 270.202,88.579C270.542,88.467 270.797,88.202 270.871,88.009"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#C66A61"
-        android:fillType="evenOdd"
-        android:pathData="M275.183,98.871C275.032,98.179 274.871,97.444 274.691,96.7L273.96,96.724C273.242,96.833 272.745,96.247 272.49,95.982C272.49,95.982 269.535,92.918 269.536,92.918C268.795,91.7 270.485,89.699 271.713,90.916L273.99,94.155C273.354,92.177 272.52,90.464 271.335,89.785C270.974,89.577 270.581,89.463 270.15,89.471C269.98,89.467 269.807,89.52 269.635,89.616C268.642,90.173 267.698,92.224 267.89,93.808C267.907,93.946 267.932,94.107 267.963,94.283C268.394,95.553 268.822,97.277 269.188,98.822C270.722,98.58 273.478,98.789 275.183,98.871"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#C66A61"
-        android:fillType="evenOdd"
-        android:pathData="M269.891,101.562C270.956,102.195 273.424,101.037 274.63,99.897C273.044,100.008 270.879,100.178 269.477,100.047C269.605,100.593 269.722,101.084 269.823,101.483C269.828,101.499 269.833,101.517 269.838,101.531C269.855,101.543 269.874,101.552 269.891,101.562"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M279.976,94.657C280.011,94.64 280.046,94.633 280.08,94.631C280.183,93.942 280.285,93.256 280.285,93.256C280.406,92.832 279.972,93.025 279.763,93.014L279.62,93.031C279.471,93.049 279.439,93.088 279.416,93.236L279.152,94.91L279.384,94.91L279.976,94.657Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#FFC1AF"
-        android:fillType="evenOdd"
-        android:pathData="M278.629,96.151C278.887,96.19 279.65,96.666 279.887,96.4L280.454,95.921C280.814,95.589 280.496,94.603 280.08,94.631C280.046,94.633 280.011,94.64 279.976,94.657L279.384,94.91L279.152,94.91L278.775,94.91L278.615,96.038L278.629,96.151Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#C66A61"
-        android:fillType="evenOdd"
-        android:pathData="M269.536,92.918C269.535,92.918 272.49,95.982 272.49,95.982C272.745,96.247 273.242,96.833 273.96,96.724L274.691,96.7L278.539,96.576L278.616,96.038L278.774,94.909L278.815,94.621L274.279,94.566L273.99,94.155L271.713,90.915C270.485,89.698 268.795,91.7 269.536,92.918"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M269.188,98.822C269.29,99.249 269.386,99.661 269.477,100.047C270.879,100.178 273.044,100.008 274.63,99.897C275.269,99.852 275.812,99.816 276.174,99.814L276.132,99.715L276.71,99.47L276.858,99.818C277.391,99.814 278.04,99.895 278.047,99.367C277.961,98.742 277.137,98.939 276.567,98.871C276.363,98.915 275.855,98.903 275.183,98.871C273.478,98.79 270.722,98.58 269.188,98.822"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M268.86,102.972C269.069,103.528 269.281,103.914 269.491,104.041C269.537,104.068 269.583,104.084 269.629,104.086C269.647,104.087 269.666,104.086 269.685,104.082C270.236,104.149 270.305,103.488 270.144,102.635C270.131,102.567 270.117,102.498 270.102,102.427C270.032,102.27 269.937,101.935 269.823,101.483C269.722,101.084 269.605,100.593 269.477,100.047C269.386,99.661 269.29,99.249 269.188,98.822C268.822,97.277 268.394,95.553 267.963,94.283C267.619,93.269 267.274,92.544 266.957,92.436C266.907,92.403 266.363,92.005 266.556,92.874C266.807,93.341 267.393,97.174 268.094,100.23C268.159,100.516 268.226,100.796 268.293,101.065C268.477,101.801 268.667,102.458 268.86,102.972"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M277.997,104.109L277.343,104.108L277.343,104.235L277.337,110.113C277.574,110.064 277.819,110.058 278.058,110.095C278.079,110.087 278.1,110.078 278.122,110.07L278.127,104.416L277.997,104.109Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M268.4,107.182C268.384,108.216 270.01,108.218 269.995,107.183C270.012,106.148 268.386,106.147 268.4,107.182"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M277.337,110.113C276.981,110.187 276.646,110.358 276.392,110.628C276.959,110.478 277.515,110.3 278.058,110.095C277.819,110.058 277.574,110.064 277.337,110.113"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#6A7F90"
-        android:fillType="evenOdd"
-        android:pathData="M276.933,99.996L276.858,99.818L276.71,99.47L276.132,99.715L276.174,99.814L277.478,102.886L277.997,104.109L278.127,104.416L280.137,109.152C280.323,109.051 280.505,108.945 280.687,108.839L280.308,107.948L276.933,99.996Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E8F5FF"
-        android:fillType="evenOdd"
-        android:pathData="M359.536,93.608C359.536,103.13 351.817,110.848 342.296,110.848C332.774,110.848 325.056,103.13 325.056,93.608C325.056,84.087 332.774,76.368 342.296,76.368C351.817,76.368 359.536,84.087 359.536,93.608"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M340.525,85.889C340.448,85.431 340.34,84.963 340.268,84.49C340.262,84.495 340.256,84.498 340.251,84.505C340.356,84.37 339.859,86.089 340.561,86.342C340.572,86.346 340.58,86.346 340.59,86.349C340.567,86.215 340.548,86.079 340.532,85.942C340.53,85.924 340.528,85.907 340.525,85.889"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M344.875,85.168C344.873,85.193 344.87,85.217 344.868,85.242C344.849,85.636 344.815,86.033 344.747,86.411C344.76,86.407 344.772,86.405 344.787,86.4C345.313,86.211 345.169,84.655 345.097,84.563C345.07,84.528 345.035,84.518 344.997,84.525C344.964,84.707 344.927,84.886 344.889,85.06C344.881,85.096 344.879,85.132 344.875,85.168"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#8C8C99"
-        android:fillType="evenOdd"
-        android:pathData="M338.231,104.503C338.23,104.493 338.23,104.483 338.23,104.472C338.204,105.925 338.276,108.025 338.405,110.402C339.656,110.691 340.957,110.848 342.296,110.848C342.579,110.848 342.859,110.84 343.139,110.827C343.145,110.729 343.151,110.632 343.157,110.535C343.163,110.439 343.302,110.433 343.315,110.528C343.315,110.528 343.326,110.629 343.346,110.813C344.934,110.718 346.462,110.406 347.906,109.91C347.838,107.443 347.694,105.391 347.448,104.169C346.781,105.673 338.55,105.675 338.231,104.503"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M349.768,103.384L349.141,103.477C349.024,103.49 348.933,103.441 348.859,103.364C348.715,103.939 348.589,104.582 348.753,105.27C348.844,105.776 349.602,106.604 350.143,105.981C350.62,105.184 350.445,104.006 350.041,103.232C349.974,103.313 349.88,103.372 349.768,103.384"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#C66A61"
-        android:fillType="evenOdd"
-        android:pathData="M347.448,104.169C347.462,104.136 347.478,104.103 347.486,104.068C347.665,103.194 347.34,98.847 346.828,96.098C347.372,98.445 348.376,102.479 348.72,103.158C348.759,103.235 348.804,103.307 348.858,103.364C348.933,103.441 349.024,103.49 349.141,103.477L349.768,103.384C349.88,103.372 349.974,103.313 350.041,103.231C350.096,103.164 350.133,103.082 350.136,102.99C350.204,101.333 349.932,99.168 349.17,95.793C348.877,94.496 347.812,90.24 345.029,88.595C344.652,88.373 344.273,88.221 343.897,88.122C343.89,88.127 343.885,88.133 343.879,88.139L343.917,88.457C343.911,88.999 343.135,89.553 342.657,89.547C342.115,89.601 341.652,89.157 341.657,88.549C341.657,88.549 341.659,88.32 341.66,88.275C341.609,88.242 341.56,88.207 341.513,88.17C340.608,88.432 339.806,88.932 339.211,89.478C338.342,90.274 337.191,92.073 336.025,93.215C334.54,95 333.188,96 331.055,97.216L331.325,99.102C333.464,98.535 335.228,97.399 336.489,96.446C337.267,95.816 337.304,95.74 338.34,94.704C338.666,94.378 337.906,96.659 338.229,104.472C338.23,104.483 338.23,104.493 338.231,104.503C338.55,105.675 346.781,105.673 347.448,104.169"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M342.496,88.601C342.165,88.538 341.891,88.425 341.66,88.275C341.659,88.32 341.657,88.548 341.657,88.548C341.652,89.157 342.115,89.601 342.657,89.547C343.135,89.553 343.911,88.999 343.917,88.457L343.879,88.139C343.615,88.358 343.281,88.519 342.856,88.6C342.738,88.622 342.615,88.623 342.496,88.601"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M344.87,85.21C344.869,85.22 344.869,85.231 344.868,85.242C344.87,85.217 344.873,85.193 344.875,85.168C344.874,85.182 344.871,85.195 344.87,85.21"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M343.344,86.772C343.219,86.723 342.809,86.709 342.673,86.548C342.528,86.702 342.112,86.654 341.984,86.687C341.931,86.701 341.857,86.829 341.784,86.989C341.964,87.314 342.202,87.557 342.731,87.548C343.132,87.541 343.37,87.362 343.549,87.105C343.472,86.933 343.396,86.792 343.344,86.772"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M342.694,86.111C342.858,86.106 343.143,86.016 343.526,86.221C343.625,86.285 343.718,86.457 343.789,86.666C343.869,86.494 343.946,86.313 344.038,86.139C344.073,86.074 344.116,86.014 344.167,85.96C344.225,85.897 344.281,85.834 344.334,85.767C344.429,85.648 344.524,85.274 344.546,85.123C344.764,83.599 344.934,82.087 342.798,82.408C342.686,82.425 342.572,82.421 342.462,82.396C340.598,81.972 340.517,83.49 340.735,85.232C340.776,85.556 341.023,85.798 341.263,86.05C341.301,86.09 341.337,86.131 341.367,86.177C341.45,86.306 341.518,86.44 341.581,86.573C341.793,86.24 342.19,86.044 342.694,86.111"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#DFDFDF"
-        android:fillType="evenOdd"
-        android:pathData="M341.581,86.573C341.518,86.44 341.45,86.306 341.367,86.177C341.337,86.131 341.301,86.09 341.263,86.05C341.023,85.798 340.776,85.556 340.735,85.232C340.517,83.49 340.598,81.972 342.461,82.396C342.572,82.421 342.686,82.425 342.798,82.408C344.934,82.087 344.764,83.599 344.546,85.123C344.524,85.274 344.429,85.648 344.334,85.767C344.281,85.834 344.225,85.897 344.167,85.96C344.116,86.014 344.073,86.074 344.038,86.139C343.946,86.313 343.869,86.494 343.789,86.666C343.93,87.078 343.987,87.638 343.831,87.835C343.831,87.835 343.689,87.417 343.549,87.105C343.37,87.362 343.132,87.542 342.731,87.548C342.202,87.557 341.964,87.314 341.784,86.988C341.647,87.285 341.512,87.691 341.512,87.691C341.35,87.267 341.393,86.867 341.581,86.573M342.496,88.601C342.615,88.623 342.737,88.623 342.856,88.6C343.281,88.519 343.615,88.358 343.879,88.139C343.885,88.133 343.89,88.127 343.897,88.122C344.383,87.707 344.623,87.091 344.746,86.411C344.815,86.033 344.849,85.636 344.868,85.242C344.869,85.231 344.869,85.22 344.87,85.209C344.871,85.195 344.874,85.182 344.875,85.168C344.879,85.132 344.882,85.096 344.889,85.06C344.927,84.886 344.964,84.707 344.997,84.525C345.081,84.062 345.138,83.58 345.093,83.098L345.098,83.103C345.245,81.964 344.523,81.392 344.069,81.323C343.912,81.3 343.76,81.251 343.632,81.158C343.345,80.95 342.936,80.913 342.635,81.034C342.486,81.095 342.323,81.12 342.165,81.093C341.888,81.046 341.689,81.113 341.492,81.274C341.399,81.351 341.29,81.406 341.174,81.438C340.763,81.55 340.132,81.973 340.206,83.119C340.209,83.165 340.209,83.212 340.205,83.258C340.169,83.672 340.206,84.083 340.268,84.49C340.34,84.963 340.448,85.431 340.525,85.889C340.528,85.907 340.53,85.924 340.532,85.942C340.548,86.079 340.567,86.215 340.59,86.349C340.716,87.08 340.973,87.743 341.513,88.17C341.56,88.207 341.609,88.242 341.66,88.275C341.891,88.425 342.165,88.538 342.496,88.601"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#DFDFDF"
-        android:fillType="evenOdd"
-        android:pathData="M341.784,86.988C341.857,86.829 341.931,86.701 341.984,86.687C342.112,86.654 342.527,86.702 342.673,86.547C342.809,86.709 343.22,86.723 343.344,86.772C343.396,86.792 343.472,86.933 343.549,87.105C343.689,87.417 343.831,87.835 343.831,87.835C343.987,87.638 343.93,87.078 343.789,86.666C343.718,86.457 343.625,86.285 343.526,86.221C343.143,86.016 342.858,86.106 342.694,86.111C342.19,86.043 341.793,86.24 341.581,86.573C341.393,86.867 341.35,87.267 341.512,87.691C341.512,87.691 341.647,87.284 341.784,86.988"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M331.012,96.92C330.983,96.729 330.92,96.681 330.606,96.677L330.303,96.673C329.859,96.713 328.962,96.514 329.162,97.058C329.162,97.058 329.219,97.457 329.295,97.987C329.398,97.981 329.381,98.453 329.604,98.491C330.331,98.529 330.907,99.576 330.379,100.074C330.192,100.224 329.884,100.213 329.599,100.109C329.645,100.434 329.676,100.65 329.676,100.65C329.677,101.119 330.774,101.047 331.174,101.037C331.415,100.999 331.595,100.965 331.565,100.774L331.326,99.102L331.055,97.216L331.012,96.92Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M330.379,100.074C330.907,99.576 330.331,98.53 329.604,98.491C329.381,98.453 329.398,97.981 329.295,97.987C329.284,97.988 329.273,97.992 329.259,98.003C328.968,98.257 328.802,99.459 329.097,99.785C329.223,99.925 329.406,100.038 329.599,100.109C329.884,100.213 330.192,100.224 330.379,100.074"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E8F5FF"
-        android:fillType="evenOdd"
-        android:pathData="M301.938,136.097C301.929,145.619 294.203,153.33 284.682,153.322C275.161,153.313 267.449,145.587 267.458,136.066C267.466,126.544 275.192,118.833 284.714,118.841C294.235,118.85 301.947,126.576 301.938,136.097"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#CB8E75"
-        android:fillType="evenOdd"
-        android:pathData="M290.62,141.634C291.602,143.052 292.628,144.485 293.49,145.507C293.64,144.859 293.819,144.128 293.991,143.664C293.845,143.427 293.715,143.221 293.67,143.138C293.224,142.335 292.708,141.442 292.189,140.56C291.754,141.377 291.054,141.575 290.62,141.634"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#8C8C99"
-        android:fillType="evenOdd"
-        android:pathData="M287.868,147.226C286.314,147.94 281.643,148.285 279.552,147.27C279.388,147.191 279.283,147.031 279.264,146.852C279.256,147.1 279.249,147.368 279.243,147.652C279.301,147.727 279.356,147.797 279.404,147.858C280.351,147.694 281.729,148.414 281.57,149.344C281.232,150.26 279.987,150.186 279.223,149.645C279.222,150.503 279.228,151.441 279.239,152.434C280.667,152.91 282.176,153.208 283.742,153.294C283.83,152.538 283.883,152.088 283.883,152.088C283.893,151.996 283.914,152.208 283.931,152.299C283.995,152.634 284.056,152.97 284.115,153.307C284.303,153.313 284.492,153.321 284.682,153.322C285.945,153.323 287.176,153.184 288.362,152.927C288.336,151.037 288.282,149.014 288.196,146.864C288.141,147.022 288.025,147.154 287.868,147.226"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M286.672,126.276C286.818,126.467 286.917,126.709 286.948,127.009C286.959,126.758 286.942,126.527 286.903,126.314C286.884,126.364 286.872,126.394 286.872,126.394C286.807,126.351 286.739,126.314 286.672,126.276"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M284.006,125.862C284.035,125.877 284.047,125.895 284.036,125.918C283.784,125.956 283.618,126.056 283.506,126.178C283.894,125.975 284.312,125.833 284.718,125.761C284.476,125.768 284.237,125.802 284.006,125.862"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M282.845,130.024C282.799,129.935 282.559,129.649 282.709,129.499C282.724,129.484 282.735,129.465 282.743,129.445C282.676,129.514 282.581,129.505 282.479,129.45C282.691,129.804 282.91,130.201 283.197,130.532C283.198,130.523 283.2,130.514 283.202,130.505C283.052,130.325 282.93,130.156 282.845,130.024"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M282.473,127.96C282.487,127.969 282.501,127.981 282.514,127.996C282.513,127.993 282.513,127.991 282.512,127.989C282.433,127.891 282.327,127.785 282.184,127.606C282.019,127.894 281.895,127.877 281.807,128.249C281.675,127.852 281.575,127.496 281.516,127.168C281.543,127.553 281.656,127.974 281.873,128.427C281.852,128.043 282.034,127.731 282.473,127.96"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#CB8E75"
-        android:fillType="evenOdd"
-        android:pathData="M282.743,129.445C282.744,129.442 282.745,129.438 282.746,129.434C282.649,128.96 282.588,128.42 282.514,127.996C282.5,127.981 282.487,127.969 282.473,127.96C282.034,127.731 281.852,128.043 281.873,128.427C281.882,128.585 281.924,128.755 281.999,128.905C282.098,129.114 282.299,129.353 282.479,129.45C282.581,129.505 282.676,129.514 282.743,129.445"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M293.147,146.873C293.095,147.014 293.177,147.082 293.265,147.159C293.25,147.266 294.189,146.993 294.607,146.88C294.213,146.804 293.986,146.401 294.439,145.619C294.604,145.429 294.871,145.299 295.13,145.255C295.328,145.221 295.441,144.864 295.556,144.821C295.764,144.061 295.94,143.362 295.986,143.301C296.047,143.258 295.897,142.99 295.737,142.974L294.332,143.202C294.229,143.146 294.112,143.34 293.991,143.664C293.819,144.128 293.641,144.859 293.49,145.507C293.327,146.212 293.198,146.819 293.147,146.873"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#CB8E75"
-        android:fillType="evenOdd"
-        android:pathData="M295.13,145.255C294.871,145.299 294.604,145.428 294.439,145.618C293.986,146.401 294.213,146.804 294.607,146.881C295.257,147.007 296.361,146.248 295.623,144.834C295.6,144.814 295.578,144.812 295.556,144.821C295.441,144.865 295.328,145.221 295.13,145.255"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#CB8E75"
-        android:fillType="evenOdd"
-        android:pathData="M281.57,149.344C281.729,148.414 280.351,147.694 279.404,147.858C279.356,147.797 279.301,147.727 279.243,147.652C278.894,147.204 278.373,146.534 277.893,145.908C277.488,145.383 277.317,144.803 277.311,144.197C276.88,144.336 275.951,144.064 275.473,143.677C275.413,145.272 276.27,146.704 278.619,148.754C278.664,149.109 278.902,149.417 279.223,149.645C279.987,150.186 281.232,150.26 281.57,149.344"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#B1DAEF"
-        android:fillType="evenOdd"
-        android:pathData="M277.311,144.197C277.371,144.177 277.426,144.153 277.464,144.116C278.287,143.324 279.24,139.905 279.24,139.905L279.257,146.799C279.257,146.817 279.262,146.834 279.264,146.852C279.283,147.031 279.388,147.191 279.552,147.27C281.643,148.285 286.313,147.94 287.868,147.226C288.025,147.154 288.142,147.022 288.196,146.864C288.215,146.807 288.228,146.748 288.23,146.685L288.296,144.577C288.367,142.496 288.309,140.81 288.365,138.551L289.857,141.272C289.962,141.482 290.309,141.664 290.42,141.655C290.477,141.651 290.545,141.644 290.62,141.634C291.054,141.575 291.754,141.377 292.189,140.56C292.253,140.44 292.312,140.308 292.363,140.158C292.485,139.8 289.446,134.688 287.516,132.917C286.952,132.331 286.178,132.127 285.329,132.045C285.325,132.174 285.322,132.252 285.322,132.252C285.306,132.829 284.768,133.221 284.212,133.14C283.703,133.122 282.899,132.564 282.917,132.055C282.917,132.055 282.919,132.044 282.923,132.027C281.727,132.334 280.745,132.674 280.008,133.096C279.833,133.176 279.659,133.292 279.487,133.441C279.122,133.721 278.846,134.036 278.666,134.395C277.02,136.788 275.667,141.517 275.191,143.115C275.134,143.308 275.259,143.503 275.473,143.677C275.951,144.064 276.88,144.336 277.311,144.197"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#CB8E75"
-        android:fillType="evenOdd"
-        android:pathData="M284.212,133.14C284.768,133.221 285.306,132.829 285.322,132.252C285.322,132.252 285.325,132.174 285.329,132.045C285.332,131.973 285.335,131.886 285.339,131.786C284.527,131.849 283.705,131.111 283.202,130.505C283.2,130.514 283.198,130.523 283.197,130.532C283.077,131.185 282.949,131.883 282.922,132.027C282.919,132.044 282.917,132.054 282.917,132.054C282.899,132.564 283.703,133.122 284.212,133.14"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#CB8E75"
-        android:fillType="evenOdd"
-        android:pathData="M284.719,125.761C284.312,125.833 283.895,125.975 283.506,126.178C283.246,126.461 283.29,126.864 283.289,126.884C282.914,127.582 282.909,127.945 282.997,128.451L283.005,128.451C283.013,128.509 283.02,128.564 283.027,128.617C283.05,128.738 283.077,128.87 283.103,129.016C283.198,129.357 283.375,129.6 283.813,129.817C284.008,129.948 284.252,129.881 284.397,129.71C284.615,129.439 285.531,129.61 285.824,129.575C286.342,129.546 286.37,130.44 286.71,129.587C286.637,129.81 286.559,130.061 286.47,130.311C286.952,129.198 287.055,127.714 286.952,127.028C286.951,127.021 286.949,127.016 286.948,127.009C286.917,126.709 286.818,126.467 286.672,126.276C286.053,125.918 285.373,125.741 284.719,125.761"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#CB8E75"
-        android:fillType="evenOdd"
-        android:pathData="M282.73,128.935C282.716,128.336 282.665,128.178 282.512,127.989C282.513,127.991 282.513,127.993 282.514,127.996C282.588,128.42 282.649,128.959 282.746,129.434C282.789,129.308 282.735,129.097 282.73,128.935"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#CB8E75"
-        android:fillType="evenOdd"
-        android:pathData="M285.887,130.277C285.921,130.157 286.004,129.908 285.801,129.899L284.755,129.883C284.575,129.877 284.564,130.096 284.608,130.218C284.734,130.781 285.743,130.868 285.887,130.277"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M284.755,129.883L285.801,129.899C286.004,129.908 285.921,130.157 285.887,130.277C285.743,130.868 284.734,130.781 284.608,130.218C284.564,130.096 284.575,129.877 284.755,129.883M282.184,127.606C282.327,127.786 282.433,127.891 282.512,127.989C282.665,128.178 282.717,128.336 282.73,128.935C282.735,129.097 282.789,129.308 282.746,129.434C282.745,129.438 282.744,129.442 282.743,129.445C282.735,129.465 282.724,129.484 282.709,129.499C282.559,129.649 282.799,129.935 282.845,130.024C282.93,130.156 283.052,130.325 283.202,130.505C283.705,131.111 284.527,131.849 285.339,131.786C285.342,131.786 285.346,131.786 285.349,131.786C285.882,131.74 286.218,131.027 286.47,130.311C286.559,130.061 286.637,129.81 286.71,129.587C286.37,130.441 286.342,129.546 285.824,129.575C285.531,129.609 284.615,129.439 284.397,129.71C284.252,129.882 284.008,129.948 283.813,129.817C283.375,129.6 283.198,129.358 283.103,129.016C283.077,128.87 283.05,128.738 283.027,128.617C283.02,128.564 283.012,128.509 283.005,128.452L282.997,128.452C282.909,127.945 282.914,127.582 283.289,126.884C283.29,126.864 283.246,126.461 283.506,126.178C283.618,126.056 283.784,125.956 284.036,125.918C284.047,125.895 284.035,125.877 284.006,125.862C284.237,125.802 284.476,125.768 284.719,125.761C285.373,125.741 286.053,125.918 286.672,126.276C286.739,126.315 286.807,126.351 286.872,126.394C286.872,126.394 286.884,126.364 286.903,126.315C287.043,125.943 287.586,124.341 286.68,123.923C286.097,123.655 285.232,123.612 284.602,123.927C283.944,124.256 283.445,124.032 282.91,124.39C281.61,125.276 281.318,126.058 281.516,127.168C281.575,127.496 281.675,127.852 281.807,128.249C281.895,127.877 282.019,127.894 282.184,127.606"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E8F5FF"
-        android:fillType="evenOdd"
-        android:pathData="M324.496,69.396C324.487,78.917 316.762,86.629 307.24,86.62C297.719,86.611 290.007,78.886 290.016,69.364C290.025,59.843 297.75,52.131 307.272,52.14C316.793,52.149 324.505,59.874 324.496,69.396"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M309.718,73.56C310.206,73.911 310.791,74.313 311.105,74.46C311.518,74.652 312.579,74.918 313.178,75.061C313.395,74.739 313.675,74.314 313.956,73.914C313.262,73.589 312.147,73.053 311.706,72.758C311.18,72.407 310.087,71.432 309.403,70.808C309.607,71.645 309.732,72.578 309.718,73.56"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#B96161"
-        android:fillType="evenOdd"
-        android:pathData="M303.656,86.241C304.812,86.487 306.011,86.619 307.24,86.62C307.249,86.62 307.257,86.619 307.266,86.619C305.963,84.314 304.424,81.399 303.685,79.285L303.656,86.241Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#C66A61"
-        android:fillType="evenOdd"
-        android:pathData="M304.404,76.723L304.419,76.655L304.411,76.655L303.667,79.233C303.673,79.25 303.679,79.268 303.685,79.285C304.424,81.399 305.962,84.314 307.266,86.619C308.605,86.619 309.906,86.461 311.158,86.171C310.013,81.026 309.154,76.719 309.154,76.719L304.404,76.723Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M308.642,61.908C308.624,61.713 308.589,61.5 308.524,61.287C308.326,60.752 307.954,60.622 307.954,60.622C307.708,61.751 306.716,61.832 306.463,61.834L306.416,61.943C306.747,65.009 305.834,64.758 305.305,66.623C305.294,66.664 305.283,66.701 305.272,66.739L305.267,66.767L305.342,66.824C306.237,66.859 306.754,67.62 307.225,67.09C307.281,67.027 307.367,67.027 307.471,67.078L307.108,64.51C307.108,64.51 308.702,64.581 308.665,62.357C308.665,62.353 308.665,62.348 308.665,62.344C308.644,62.359 308.63,62.369 308.63,62.369C308.646,62.199 308.648,62.047 308.642,61.908"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M304.411,76.655L304.446,76.533L304.606,75.817C304.331,75.879 302.914,76.155 302.598,75.296L302.208,80.071C302.156,80.666 300.13,81.779 301.639,82.838C302.854,83.692 303.216,80.795 303.216,80.795L303.667,79.233L304.411,76.655Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#B1DAEF"
-        android:fillType="evenOdd"
-        android:pathData="M304.606,75.817L304.446,76.533L304.419,76.655L304.404,76.723L309.154,76.719C309.541,75.648 309.704,74.578 309.718,73.56C309.732,72.578 309.607,71.646 309.403,70.809C308.91,68.783 307.967,67.32 307.471,67.078C307.367,67.027 307.281,67.027 307.225,67.09C306.754,67.62 306.237,66.859 305.342,66.824C305.311,66.823 305.279,66.823 305.247,66.823C304.869,68.083 304.801,67.53 304.297,67.567C303.407,69.453 302.694,74.559 302.605,75.219C302.599,75.265 302.595,75.29 302.595,75.29C302.596,75.292 302.598,75.294 302.599,75.296C302.914,76.155 304.331,75.879 304.606,75.817"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#663014"
-        android:fillType="evenOdd"
-        android:pathData="M305.247,66.823C305.255,66.796 305.263,66.768 305.272,66.739C305.283,66.701 305.294,66.664 305.305,66.623C305.834,64.758 306.747,65.009 306.415,61.943C306.412,61.906 306.408,61.871 306.404,61.833C306.404,61.833 306.426,61.835 306.463,61.834C306.716,61.832 307.708,61.75 307.954,60.622C307.954,60.622 308.326,60.752 308.524,61.287C308.586,61.452 308.63,61.657 308.642,61.908C308.648,62.047 308.646,62.199 308.63,62.369C308.63,62.369 308.644,62.359 308.665,62.344C308.85,62.207 309.737,61.438 309.052,59.664C309.052,59.664 308.883,58.819 307.7,58.847C307.7,58.847 305.812,57.156 304.037,58.593C302.262,60.03 303.474,61.467 303.474,61.467C303.474,61.467 301.107,63.608 301.924,66.511C301.924,66.511 302.797,68.398 303.812,67.75C304.01,67.623 304.168,67.576 304.297,67.567C304.801,67.53 304.869,68.083 305.247,66.823"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M312.789,75.589C312.696,75.697 312.746,75.785 312.797,75.883C312.734,75.997 314.271,76.233 314.308,76.261C314.382,76.331 314.663,76.003 315.001,75.547C314.971,75.433 315.042,75.214 315.159,74.971C315.31,74.659 315.424,74.525 315.661,74.438C315.722,74.415 315.759,74.42 315.777,74.445C316.157,73.889 316.475,73.414 316.53,73.378C316.599,73.362 316.556,73.072 316.419,73.003C316.419,73.003 315.093,72.728 315.093,72.728C314.953,72.566 314.455,73.201 313.956,73.914C313.675,74.314 313.395,74.739 313.178,75.061C312.977,75.359 312.831,75.569 312.789,75.589"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M315.661,74.438C315.424,74.525 315.311,74.659 315.159,74.971C315.042,75.214 314.971,75.433 315.001,75.547C315.01,75.58 315.026,75.605 315.053,75.618C315.175,75.677 315.244,75.515 315.423,75.263C315.582,75.039 315.858,74.553 315.777,74.445C315.759,74.42 315.722,74.415 315.661,74.438"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#E8F5FF"
-        android:fillType="evenOdd"
-        android:pathData="M346.623,136.515C346.623,146.037 338.904,153.755 329.383,153.755C319.862,153.755 312.143,146.037 312.143,136.515C312.143,126.994 319.862,119.275 329.383,119.275C338.904,119.275 346.623,126.994 346.623,136.515"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M325.07,138.853L325.013,139.131L323.538,146.405C323.538,146.405 322.44,147.979 323.515,147.976C324.59,147.973 324.338,146.54 324.338,146.54L326.427,139.354C326.415,139.353 326.403,139.354 326.391,139.349L325.07,138.853Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#C66A61"
-        android:fillType="evenOdd"
-        android:pathData="M331.849,144.434L326.041,144.533C326.033,144.533 326.027,144.529 326.019,144.528L326.006,144.636L326.573,153.524C327.309,153.644 328.06,153.717 328.823,153.741L329.027,147.125L329.432,153.754C330.175,153.752 330.905,153.699 331.623,153.606L331.861,144.432C331.857,144.432 331.853,144.434 331.849,144.434"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#CBAB7D"
-        android:fillType="evenOdd"
-        android:pathData="M328.251,135.248C328.342,135.363 328.471,135.502 328.623,135.608C328.472,135.496 328.342,135.357 328.251,135.248"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#CBAB7D"
-        android:fillType="evenOdd"
-        android:pathData="M326.62,135.809L328.012,135.084C328.056,135.065 328.105,135.075 328.14,135.106C328.123,135.082 328.113,135.068 328.113,135.068L328.275,134.108C328.216,134.094 328.158,134.078 328.098,134.069C327.78,134.024 327.015,133.79 326.658,132.604C326.658,132.604 326.103,131.796 326.535,131.064C326.967,130.333 328.429,130.842 329.254,129.182C329.254,129.182 330.443,131.094 331.233,131.111C332.023,131.129 331.159,133.714 329.977,133.996C329.977,133.996 329.895,134.027 329.763,134.064L329.847,135.043C329.835,135.076 329.823,135.104 329.811,135.134C329.847,135.104 329.899,135.097 329.942,135.121L331.482,135.892C331.497,135.9 331.732,136.062 331.981,136.339C332.195,136.577 332.37,136.846 332.455,137.153L332.694,138.009C335.725,138.171 336.055,137.186 335.926,136.494C335.861,136.144 335.619,135.85 335.292,135.709C335.277,135.702 335.262,135.696 335.248,135.69C334.573,135.391 334.38,134.53 334.852,133.963C335.078,133.692 335.113,133.49 335.107,133.377C335.104,133.316 335.121,133.255 335.112,133.194C335.028,132.632 334.026,131.988 333.239,131.56C332.851,131.35 332.627,130.928 332.666,130.489C332.921,127.654 330.727,126.738 329.972,126.53C329.855,126.498 329.723,126.444 329.599,126.439C329.258,126.426 328.785,126.125 327.008,127.088C325.12,128.111 325.283,130.482 325.427,131.401C325.46,131.61 325.549,131.807 325.689,131.966C326.016,132.337 326.606,133.225 326.084,134.39C325.61,135.45 325.841,135.899 326.036,136.077C326.078,136.115 326.112,136.159 326.146,136.204C326.308,136.022 326.483,135.857 326.62,135.809"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M329.722,133.587L329.763,134.064C329.895,134.027 329.977,133.997 329.977,133.997C331.159,133.714 332.023,131.129 331.233,131.111C330.443,131.094 329.254,129.182 329.254,129.182C328.43,130.842 326.967,130.333 326.535,131.064C326.103,131.796 326.658,132.604 326.658,132.604C327.015,133.79 327.78,134.024 328.098,134.069C328.158,134.078 328.216,134.094 328.275,134.108L328.354,133.641C329.013,134.009 329.722,133.587 329.722,133.587"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#B1DAEF"
-        android:fillType="evenOdd"
-        android:pathData="M331.849,144.434C331.853,144.434 331.857,144.432 331.861,144.432C331.93,144.424 331.979,144.36 331.964,144.29L331.581,142.215L329.43,141.482C329.43,141.482 329.383,141.488 329.308,141.493L329.334,141.788C329.345,141.923 329.245,142.033 329.11,142.033L328.078,142.033C327.943,142.033 327.824,141.923 327.812,141.788L327.593,139.289C327.581,139.154 327.682,139.044 327.817,139.044L328.848,139.044C328.984,139.044 329.103,139.154 329.115,139.289L329.232,140.632C329.416,140.747 329.544,140.844 329.544,140.844L331.408,141.277L331.38,141.13L331.38,141.13C331.354,141.023 331.331,140.845 331.33,140.734L331.122,138.883C331.113,138.759 331.099,138.666 331.165,138.771L331.236,139.146C331.27,139.201 331.342,139.219 331.397,139.186L331.42,139.173L331.42,139.171L332.672,138.434L332.672,138.438L332.715,138.413C332.763,138.385 332.785,138.327 332.768,138.273L332.694,138.009L332.455,137.153C332.37,136.846 332.195,136.577 331.981,136.339C331.732,136.062 331.497,135.9 331.482,135.892L329.942,135.121C329.899,135.097 329.847,135.104 329.811,135.134C329.468,135.984 328.986,135.876 328.623,135.608C328.471,135.502 328.342,135.363 328.251,135.248C328.201,135.188 328.163,135.138 328.14,135.106C328.105,135.075 328.056,135.065 328.012,135.084L326.62,135.809C326.483,135.857 326.308,136.022 326.146,136.204C325.9,136.481 325.684,136.799 325.677,136.816L324.989,138.69C324.962,138.752 324.993,138.824 325.056,138.848L325.07,138.853L326.391,139.349C326.403,139.354 326.415,139.353 326.427,139.354C326.488,139.357 326.545,139.314 326.551,139.249L326.577,138.978C326.59,138.837 326.656,138.827 326.675,138.967L326.631,140.417C326.576,140.882 326.474,141.657 326.44,141.987L325.925,144.382C325.906,144.451 325.952,144.515 326.019,144.528C326.027,144.529 326.033,144.533 326.041,144.533L331.849,144.434Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M327.909,140.965C327.799,139.873 328.728,140.317 329.232,140.632L329.115,139.289C329.103,139.153 328.984,139.044 328.848,139.044L327.817,139.044C327.682,139.044 327.581,139.153 327.593,139.289L327.812,141.788C327.824,141.923 327.943,142.033 328.078,142.033L329.11,142.033C329.245,142.033 329.345,141.923 329.334,141.788L329.308,141.493C328.958,141.52 327.967,141.545 327.909,140.965"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M331.42,139.171L331.42,139.172L331.928,141.398L331.408,141.278L329.544,140.844C329.544,140.844 329.416,140.747 329.232,140.632C328.728,140.317 327.799,139.873 327.909,140.965C327.967,141.545 328.958,141.52 329.308,141.493C329.383,141.488 329.43,141.482 329.43,141.482L331.581,142.215L332.508,142.531C332.854,142.651 333.207,142.367 333.164,142.003L332.716,138.76L332.672,138.438L332.672,138.434L331.42,139.171Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#F6B893"
-        android:fillType="evenOdd"
-        android:pathData="M329.763,134.064L329.722,133.587C329.722,133.587 329.013,134.009 328.354,133.641L328.275,134.108L328.113,135.068C328.113,135.068 328.123,135.082 328.14,135.106C328.163,135.138 328.201,135.188 328.251,135.248C328.342,135.357 328.472,135.496 328.623,135.608C328.986,135.876 329.467,135.984 329.811,135.134C329.823,135.104 329.835,135.076 329.847,135.043L329.763,134.064Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#BF0F2D"
-        android:fillType="evenOdd"
-        android:pathData="M316.649,106.235C316.649,111.441 312.428,115.662 307.222,115.662C302.015,115.662 297.794,111.441 297.794,106.235C297.794,101.028 302.015,96.807 307.222,96.807C312.428,96.807 316.649,101.028 316.649,106.235"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#FFFFFF"
-        android:fillType="evenOdd"
-        android:pathData="M307.139,99.622C306.59,99.622 306.136,100.075 306.136,100.625L306.136,101.095C305.486,101.247 304.918,101.549 304.481,101.989C303.828,102.648 303.463,103.582 303.463,104.656L303.463,107.263C303.463,107.877 303.127,108.655 302.781,109.232L302.182,110.131C302.114,110.234 302.108,110.366 302.165,110.474C302.224,110.583 302.338,110.651 302.46,110.651L305.468,110.651C305.468,111.568 306.221,112.321 307.139,112.321C308.057,112.321 308.81,111.568 308.81,110.651L311.818,110.651C311.94,110.651 312.054,110.583 312.113,110.474C312.17,110.366 312.164,110.234 312.096,110.131L311.499,109.236L311.498,109.234C311.148,108.651 310.815,107.922 310.815,107.309L310.815,104.702C310.815,102.908 309.747,101.519 308.142,101.106L308.142,100.625C308.142,100.075 307.689,99.622 307.139,99.622"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <group>
-        <clip-path android:pathData="M112.815,95.876l4.354,0l0,4.354l-4.354,0z" />
-        <path
-            android:fillColor="#657887"
-            android:fillType="evenOdd"
-            android:pathData="M117.168,98.053C117.168,99.255 116.194,100.23 114.992,100.23C113.789,100.23 112.815,99.255 112.815,98.053C112.815,96.851 113.789,95.876 114.992,95.876C116.194,95.876 117.168,96.851 117.168,98.053"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <path
-        android:fillColor="#748692"
-        android:fillType="evenOdd"
-        android:pathData="M239.249,98.053C239.249,99.255 238.274,100.23 237.072,100.23C235.87,100.23 234.895,99.255 234.895,98.053C234.895,96.851 235.87,95.876 237.072,95.876C238.274,95.876 239.249,96.851 239.249,98.053"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <group>
-        <clip-path android:pathData="M219.869,95.876l4.352,0l0,4.354l-4.352,0z" />
-        <path
-            android:fillColor="#657887"
-            android:fillType="evenOdd"
-            android:pathData="M224.223,98.053C224.223,99.255 223.248,100.23 222.046,100.23C220.843,100.23 219.869,99.255 219.869,98.053C219.869,96.851 220.843,95.876 222.046,95.876C223.248,95.876 224.223,96.851 224.223,98.053"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <path
-        android:fillColor="#FFFFFF"
-        android:fillType="evenOdd"
-        android:pathData="M63.606,105.361L33.608,105.361C29.67,105.361 26.475,108.504 26.475,112.38L26.475,183.915C26.475,187.79 29.67,190.934 33.608,190.934L63.606,190.934C67.546,190.934 70.738,187.79 70.738,183.915L70.738,112.38C70.738,108.504 67.546,105.361 63.606,105.361"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#4A4A4A"
-        android:fillType="evenOdd"
-        android:pathData="M63.563,105.442C66.26,105.442 68.455,107.647 68.455,110.358L68.455,185.346C68.455,188.058 66.26,190.262 63.563,190.262L32.765,190.262C30.067,190.262 27.873,188.058 27.873,185.346L27.873,110.358C27.873,107.647 30.067,105.442 32.765,105.442L63.563,105.442ZM63.563,103L32.765,103C28.722,103 25.443,106.293 25.443,110.358L25.443,185.346C25.443,189.41 28.722,192.705 32.765,192.705L63.563,192.705C67.608,192.705 70.885,189.41 70.885,185.346L70.885,110.358C70.885,106.293 67.608,103 63.563,103L63.563,103Z"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <path
-        android:fillColor="#EFEFEF"
-        android:fillType="evenOdd"
-        android:pathData="M64.548,160.246L31.486,160.246C31,160.246 30.607,159.854 30.607,159.371L30.607,133.383C30.607,132.9 31,132.508 31.486,132.508L64.548,132.508C65.033,132.508 65.427,132.9 65.427,133.383L65.427,159.371C65.427,159.854 65.033,160.246 64.548,160.246L37.938,134.499"
-        android:strokeWidth="1"
-        android:strokeColor="#00000000" />
-    <group>
-        <clip-path android:pathData="M64.548,160.246L31.486,160.246C31,160.246 30.607,159.854 30.607,159.371L30.607,133.383C30.607,132.9 31,132.508 31.486,132.508L64.548,132.508C65.033,132.508 65.427,132.9 65.427,133.383L65.427,159.371C65.427,159.854 65.033,160.246 64.548,160.246L37.938,134.499" />
-        <path
-            android:fillColor="#BF0F2D"
-            android:fillType="evenOdd"
-            android:pathData="M33.483,160.246L30.681,160.246C30.64,160.246 30.607,159.854 30.607,159.371L30.607,133.383C30.607,132.9 30.64,132.508 30.681,132.508L33.483,132.508C33.524,132.508 33.557,132.9 33.557,133.383L33.557,159.371C33.557,159.854 33.524,160.246 33.483,160.246"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-    <group>
-        <clip-path android:pathData="M64.548,160.246L31.486,160.246C31,160.246 30.607,159.854 30.607,159.371L30.607,133.383C30.607,132.9 31,132.508 31.486,132.508L64.548,132.508C65.033,132.508 65.427,132.9 65.427,133.383L65.427,159.371C65.427,159.854 65.033,160.246 64.548,160.246L37.938,134.499" />
-        <path
-            android:fillColor="#C01633"
-            android:fillType="evenOdd"
-            android:pathData="M47.914,138.41L47.914,139.545L48.482,139.545L48.482,140.148C47.34,140.261 46.309,140.7 45.467,141.389L45.041,140.963L45.432,140.573L44.633,139.775L43.038,141.371L43.836,142.169L44.226,141.779L44.651,142.205C43.962,143.047 43.523,144.078 43.41,145.219L42.807,145.219L42.807,144.652L41.672,144.652L41.672,146.922L42.807,146.922L42.807,146.354L43.41,146.354C43.523,147.505 43.971,148.542 44.669,149.387L44.226,149.795L43.836,149.404L43.038,150.202L44.633,151.799L45.432,151L45.041,150.61L45.467,150.167C46.312,150.861 47.338,151.313 48.482,151.426L48.482,152.029L47.914,152.029L47.914,153.164L50.184,153.164L50.184,152.029L49.617,152.029L49.617,151.426C50.76,151.313 51.787,150.861 52.631,150.167L52.649,150.167L53.057,150.61L52.667,151L53.465,151.799L55.061,150.202L54.263,149.404L53.873,149.795L53.429,149.387C53.432,149.382 53.427,149.373 53.429,149.369C54.123,148.524 54.575,147.498 54.688,146.354L55.291,146.354L55.291,146.922L56.426,146.922L56.426,144.652L55.291,144.652L55.291,145.219L54.688,145.219C54.575,144.078 54.136,143.047 53.447,142.205L53.873,141.779L54.263,142.169L55.061,141.371L53.465,139.775L52.667,140.573L53.057,140.963L52.631,141.389C51.789,140.7 50.758,140.261 49.617,140.148L49.617,139.545L50.184,139.545L50.184,138.41L47.914,138.41ZM49.049,141.247C51.563,141.247 53.589,143.273 53.589,145.787C53.589,148.301 51.563,150.327 49.049,150.327C46.535,150.327 44.509,148.301 44.509,145.787C44.509,143.273 46.535,141.247 49.049,141.247L49.049,141.247ZM47.63,142.471C47.161,142.471 46.779,142.852 46.779,143.322C46.779,143.792 47.161,144.173 47.63,144.173C48.1,144.173 48.482,143.792 48.482,143.322C48.482,142.852 48.1,142.471 47.63,142.471L47.63,142.471ZM50.468,142.471C49.998,142.471 49.617,142.852 49.617,143.322C49.617,143.792 49.998,144.173 50.468,144.173C50.938,144.173 51.319,143.792 51.319,143.322C51.319,142.852 50.938,142.471 50.468,142.471L50.468,142.471ZM46.212,144.936C45.742,144.936 45.361,145.317 45.361,145.787C45.361,146.257 45.742,146.638 46.212,146.638C46.682,146.638 47.063,146.257 47.063,145.787C47.063,145.317 46.682,144.936 46.212,144.936L46.212,144.936ZM49.049,144.936C48.579,144.936 48.198,145.317 48.198,145.787C48.198,146.257 48.579,146.638 49.049,146.638C49.519,146.638 49.9,146.257 49.9,145.787C49.9,145.317 49.519,144.936 49.049,144.936L49.049,144.936ZM51.887,144.936C51.416,144.936 51.035,145.317 51.035,145.787C51.035,146.257 51.416,146.638 51.887,146.638C52.356,146.638 52.738,146.257 52.738,145.787C52.738,145.317 52.356,144.936 51.887,144.936L51.887,144.936ZM47.63,147.401C47.161,147.401 46.779,147.782 46.779,148.252C46.779,148.722 47.161,149.103 47.63,149.103C48.1,149.103 48.482,148.722 48.482,148.252C48.482,147.782 48.1,147.401 47.63,147.401L47.63,147.401ZM50.468,147.401C49.998,147.401 49.617,147.782 49.617,148.252C49.617,148.722 49.998,149.103 50.468,149.103C50.938,149.103 51.319,148.722 51.319,148.252C51.319,147.782 50.938,147.401 50.468,147.401L50.468,147.401Z"
-            android:strokeWidth="1"
-            android:strokeColor="#00000000" />
-    </group>
-</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/rectangle.xml b/Corona-Warn-App/src/main/res/drawable/rectangle.xml
index 008626e4dd00765ad9a8b3e3113276c796c1fa0b..bacee7d14ef48e25a498fcf6c690e130225ac088 100644
--- a/Corona-Warn-App/src/main/res/drawable/rectangle.xml
+++ b/Corona-Warn-App/src/main/res/drawable/rectangle.xml
@@ -2,7 +2,7 @@
 <selector xmlns:android="http://schemas.android.com/apk/res/android">
     <item>
         <shape android:shape="rectangle">
-            <solid android:color="@color/colorLight" />
+            <solid android:color="@color/colorSurface1" />
         </shape>
     </item>
 </selector>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/drawable/splash_screen.xml b/Corona-Warn-App/src/main/res/drawable/splash_screen.xml
index 353d82c48201a8272f22e2115a0d8bb55b03cd8f..ac1ae9a8e85c9ae9562f6f81e6d037102f8c907b 100644
--- a/Corona-Warn-App/src/main/res/drawable/splash_screen.xml
+++ b/Corona-Warn-App/src/main/res/drawable/splash_screen.xml
@@ -2,7 +2,7 @@
 <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
 
     <!-- background with solid color -->
-    <item android:drawable="@color/appTheme" />
+    <item android:drawable="@color/colorBackground" />
 
     <!-- logo -->
     <item
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_information.xml b/Corona-Warn-App/src/main/res/layout/fragment_information.xml
index 5c8d871ef9284aae09b3ec5d5b39c57426848484..da08ae6e6ea78c7906618762bfef64f31a23aad0 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_information.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_information.xml
@@ -111,7 +111,7 @@
 
                 <TextView
                     android:id="@+id/information_version"
-                    style="@style/textMultiline"
+                    style="@style/body2Medium"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     android:layout_marginTop="@dimen/spacing_small"
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_information_about.xml b/Corona-Warn-App/src/main/res/layout/fragment_information_about.xml
index 707b00daa06e77937dc352153247ad5ef0053293..4cbf10f9eb3d22deffc4c43a9877985158b5e78b 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_information_about.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_information_about.xml
@@ -38,7 +38,7 @@
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     app:headline="@{@string/information_about_headline}"
-                    app:illustration="@{@drawable/ic_information_illustration_about}"
+                    app:illustration="@{@drawable/ic_illustration_together}"
                     app:illustrationDescription="@{@string/information_about_illustration_description}"
                     app:layout_constraintEnd_toEndOf="parent"
                     app:layout_constraintStart_toStartOf="parent"
@@ -46,7 +46,7 @@
 
                 <TextView
                     android:id="@+id/information_about_body_emphasized"
-                    style="@style/textMultiline"
+                    style="@style/subtitle"
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     android:layout_marginTop="@dimen/spacing_small"
@@ -57,7 +57,7 @@
 
                 <TextView
                     android:id="@+id/information_about_body"
-                    style="@style/textMultiline"
+                    style="@style/subtitle"
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     android:layout_marginTop="@dimen/spacing_small"
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_information_contact.xml b/Corona-Warn-App/src/main/res/layout/fragment_information_contact.xml
index 8e84d3badd74f2bc5d0add8a2347ee7dfb318f50..c11640c3c59c0484c59af41225c390932f279ef2 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_information_contact.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_information_contact.xml
@@ -57,7 +57,7 @@
 
                 <TextView
                     android:id="@+id/information_contact_subtitle_phone"
-                    style="@style/textLargeEmphasized"
+                    style="@style/headline6"
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     android:layout_marginTop="@dimen/spacing_small"
@@ -78,6 +78,7 @@
 
                 <TextView
                     android:id="@+id/information_contact_body_phone"
+                    style="@style/body2"
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     android:text="@string/information_contact_body_phone"
@@ -87,6 +88,7 @@
 
                 <TextView
                     android:id="@+id/information_contact_body_open"
+                    style="@style/body2"
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     android:layout_marginTop="@dimen/spacing_normal"
@@ -97,6 +99,7 @@
 
                 <TextView
                     android:id="@+id/information_contact_body_other"
+                    style="@style/body2"
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     android:layout_marginTop="@dimen/spacing_normal"
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_information_privacy.xml b/Corona-Warn-App/src/main/res/layout/fragment_information_privacy.xml
index 5dc93cced5bcc8234dba2fc896bd249d58e80dbe..6855a0a6cdfde2f45458be8cd49c37e7ba7fb132 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_information_privacy.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_information_privacy.xml
@@ -38,7 +38,7 @@
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     app:headline="@{@string/information_privacy_headline}"
-                    app:illustration="@{@drawable/ic_information_illustration_privacy}"
+                    app:illustration="@{@drawable/ic_illustration_privacy}"
                     app:illustrationDescription="@{@string/information_privacy_illustration_description}"
                     app:layout_constraintEnd_toEndOf="parent"
                     app:layout_constraintStart_toStartOf="parent"
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_main.xml b/Corona-Warn-App/src/main/res/layout/fragment_main.xml
index c1c6d292abdb9cbbb7a1f485fb5098ee935908b5..eaa120b82ef7ceb7416512cf285fc42cc590fdd5 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_main.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_main.xml
@@ -92,7 +92,7 @@
 
                 <TextView
                     android:id="@+id/main_tracing_headline"
-                    style="@style/textLargeEmphasized"
+                    style="@style/bodyButton"
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     android:text="@{FormatterSettingsHelper.formatTracingDescription(tracingViewModel.isTracingEnabled(), settingsViewModel.isBluetoothEnabled(), settingsViewModel.isConnectionEnabled())}"
@@ -119,8 +119,8 @@
                 layout="@layout/include_divider"
                 android:layout_width="0dp"
                 android:layout_height="@dimen/card_divider"
-                app:layout_constraintEnd_toStartOf="@+id/guideline_end"
-                app:layout_constraintStart_toStartOf="@+id/guideline_start"
+                app:layout_constraintEnd_toStartOf="parent"
+                app:layout_constraintStart_toStartOf="parent"
                 app:layout_constraintTop_toBottomOf="@+id/main_tracing" />
 
             <include
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_main_overview.xml b/Corona-Warn-App/src/main/res/layout/fragment_main_overview.xml
index 4bc3d8aef383c86ed2f4186a6e96c8001951f63b..ea311e0253aaa1a30c0f121772cce202e2b62e08 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_main_overview.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_main_overview.xml
@@ -23,7 +23,7 @@
             android:layout_width="0dp"
             android:layout_height="0dp"
             android:fillViewport="true"
-            app:layout_constraintBottom_toBottomOf="@+id/guideline_bottom"
+            app:layout_constraintBottom_toBottomOf="parent"
             app:layout_constraintEnd_toEndOf="parent"
             app:layout_constraintStart_toStartOf="parent"
             app:layout_constraintTop_toBottomOf="@+id/main_overview_header">
@@ -80,7 +80,7 @@
                     app:layout_constraintTop_toBottomOf="@+id/main_overview_risk">
 
                     <TextView
-                        style="@style/textLargeEmphasized"
+                        style="@style/headline6"
                         android:layout_width="0dp"
                         android:layout_height="wrap_content"
                         android:layout_marginStart="@dimen/guideline_body_title"
@@ -96,9 +96,9 @@
                     layout="@layout/include_row"
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
-                    android:layout_marginTop="@dimen/spacing_normal"
+                    android:layout_marginTop="@dimen/spacing_small"
                     app:iconStart="@{@drawable/ic_main_overview_circle}"
-                    app:iconTint="@{@color/colorRiskCardIncreasedRisk}"
+                    app:iconTint="@{@color/colorSemanticHighRisk}"
                     app:layout_constraintEnd_toEndOf="parent"
                     app:layout_constraintStart_toStartOf="parent"
                     app:layout_constraintTop_toBottomOf="@+id/main_overview_risk_subtitle"
@@ -110,7 +110,7 @@
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     app:iconStart="@{@drawable/ic_main_overview_circle}"
-                    app:iconTint="@{@color/colorRiskCardLowRisk}"
+                    app:iconTint="@{@color/colorSemanticLowRisk}"
                     app:layout_constraintEnd_toEndOf="parent"
                     app:layout_constraintStart_toStartOf="parent"
                     app:layout_constraintTop_toBottomOf="@+id/main_overview_risk_increased_risk"
@@ -122,7 +122,7 @@
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     app:iconStart="@{@drawable/ic_main_overview_circle}"
-                    app:iconTint="@{@color/colorRiskCardUnknownRisk}"
+                    app:iconTint="@{@color/colorSemanticNeutralRisk}"
                     app:layout_constraintEnd_toEndOf="parent"
                     app:layout_constraintStart_toStartOf="parent"
                     app:layout_constraintTop_toBottomOf="@+id/main_overview_risk_low_risk"
@@ -152,93 +152,101 @@
                     app:layout_constraintTop_toBottomOf="@id/main_overview_test" />
 
                 <androidx.constraintlayout.widget.ConstraintLayout
-                    android:id="@+id/main_overview_glossary_headline"
-                    style="@style/row"
-                    android:layout_width="0dp"
+                    android:layout_width="match_parent"
                     android:layout_height="wrap_content"
-                    android:layout_marginTop="@dimen/spacing_small"
-                    app:layout_constraintEnd_toEndOf="parent"
-                    app:layout_constraintStart_toStartOf="parent"
+                    android:background="@color/colorSurface2"
                     app:layout_constraintTop_toBottomOf="@+id/main_overview_divider">
 
-                    <TextView
-                        style="@style/textLargeEmphasized"
+                    <androidx.constraintlayout.widget.ConstraintLayout
+                        android:id="@+id/main_overview_glossary_headline"
+                        style="@style/row"
                         android:layout_width="0dp"
                         android:layout_height="wrap_content"
-                        android:layout_marginStart="@dimen/guideline_body_title"
-                        android:text="@string/main_overview_headline_glossary"
+                        android:paddingTop="@dimen/spacing_small"
                         app:layout_constraintEnd_toEndOf="parent"
                         app:layout_constraintStart_toStartOf="parent"
-                        app:layout_constraintTop_toTopOf="parent" />
-
-                </androidx.constraintlayout.widget.ConstraintLayout>
+                        app:layout_constraintTop_toTopOf="parent">
+
+                        <TextView
+                            style="@style/headline5"
+                            android:layout_width="0dp"
+                            android:layout_height="wrap_content"
+                            android:layout_marginStart="@dimen/guideline_body_title"
+                            android:text="@string/main_overview_headline_glossary"
+                            app:layout_constraintEnd_toEndOf="parent"
+                            app:layout_constraintStart_toStartOf="parent"
+                            app:layout_constraintTop_toTopOf="parent" />
+
+                    </androidx.constraintlayout.widget.ConstraintLayout>
+
+                    <include
+                        android:id="@+id/main_overview_glossary_tracing"
+                        layout="@layout/include_main_overview_glossary"
+                        android:layout_width="0dp"
+                        android:layout_height="wrap_content"
+                        app:body="@{@string/main_overview_body_glossary_tracing}"
+                        app:layout_constraintEnd_toEndOf="parent"
+                        app:layout_constraintStart_toStartOf="parent"
+                        app:layout_constraintTop_toBottomOf="@+id/main_overview_glossary_headline"
+                        app:subtitle="@{@string/main_overview_subtitle_glossary_tracing}" />
 
-                <include
-                    android:id="@+id/main_overview_glossary_tracing"
-                    layout="@layout/include_main_overview_glossary"
-                    android:layout_width="0dp"
-                    android:layout_height="wrap_content"
-                    app:body="@{@string/main_overview_body_glossary_tracing}"
-                    app:layout_constraintEnd_toEndOf="parent"
-                    app:layout_constraintStart_toStartOf="parent"
-                    app:layout_constraintTop_toBottomOf="@+id/main_overview_glossary_headline"
-                    app:subtitle="@{@string/main_overview_subtitle_glossary_tracing}" />
+                    <include
+                        android:id="@+id/main_overview_glossary_calculation"
+                        layout="@layout/include_main_overview_glossary"
+                        android:layout_width="0dp"
+                        android:layout_height="wrap_content"
+                        app:body="@{@string/main_overview_body_glossary_calculation}"
+                        app:layout_constraintEnd_toEndOf="parent"
+                        app:layout_constraintStart_toStartOf="parent"
+                        app:layout_constraintTop_toBottomOf="@+id/main_overview_glossary_tracing"
+                        app:subtitle="@{@string/main_overview_subtitle_glossary_calculation}" />
 
-                <include
-                    android:id="@+id/main_overview_glossary_calculation"
-                    layout="@layout/include_main_overview_glossary"
-                    android:layout_width="0dp"
-                    android:layout_height="wrap_content"
-                    app:body="@{@string/main_overview_body_glossary_calculation}"
-                    app:layout_constraintEnd_toEndOf="parent"
-                    app:layout_constraintStart_toStartOf="parent"
-                    app:layout_constraintTop_toBottomOf="@+id/main_overview_glossary_tracing"
-                    app:subtitle="@{@string/main_overview_subtitle_glossary_calculation}" />
+                    <include
+                        android:id="@+id/main_overview_glossary_contact"
+                        layout="@layout/include_main_overview_glossary"
+                        android:layout_width="0dp"
+                        android:layout_height="wrap_content"
+                        app:body="@{@string/main_overview_body_glossary_contact}"
+                        app:layout_constraintEnd_toEndOf="parent"
+                        app:layout_constraintStart_toStartOf="parent"
+                        app:layout_constraintTop_toBottomOf="@+id/main_overview_glossary_calculation"
+                        app:subtitle="@{@string/main_overview_subtitle_glossary_contact}" />
 
-                <include
-                    android:id="@+id/main_overview_glossary_contact"
-                    layout="@layout/include_main_overview_glossary"
-                    android:layout_width="0dp"
-                    android:layout_height="wrap_content"
-                    app:body="@{@string/main_overview_body_glossary_contact}"
-                    app:layout_constraintEnd_toEndOf="parent"
-                    app:layout_constraintStart_toStartOf="parent"
-                    app:layout_constraintTop_toBottomOf="@+id/main_overview_glossary_calculation"
-                    app:subtitle="@{@string/main_overview_subtitle_glossary_contact}" />
+                    <include
+                        android:id="@+id/main_overview_glossary_notification"
+                        layout="@layout/include_main_overview_glossary"
+                        android:layout_width="0dp"
+                        android:layout_height="wrap_content"
+                        app:body="@{@string/main_overview_body_glossary_notification}"
+                        app:layout_constraintEnd_toEndOf="parent"
+                        app:layout_constraintStart_toStartOf="parent"
+                        app:layout_constraintTop_toBottomOf="@+id/main_overview_glossary_contact"
+                        app:subtitle="@{@string/main_overview_subtitle_glossary_notification}" />
 
-                <include
-                    android:id="@+id/main_overview_glossary_notification"
-                    layout="@layout/include_main_overview_glossary"
-                    android:layout_width="0dp"
-                    android:layout_height="wrap_content"
-                    app:body="@{@string/main_overview_body_glossary_notification}"
-                    app:layout_constraintEnd_toEndOf="parent"
-                    app:layout_constraintStart_toStartOf="parent"
-                    app:layout_constraintTop_toBottomOf="@+id/main_overview_glossary_contact"
-                    app:subtitle="@{@string/main_overview_subtitle_glossary_notification}" />
+                    <include
+                        android:id="@+id/main_overview_glossary_keys"
+                        layout="@layout/include_main_overview_glossary"
+                        android:layout_width="0dp"
+                        android:layout_height="wrap_content"
+                        app:body="@{@string/main_overview_body_glossary_keys}"
+                        app:layout_constraintBottom_toBottomOf="@+id/guideline_bottom"
+                        app:layout_constraintEnd_toEndOf="parent"
+                        app:layout_constraintStart_toStartOf="parent"
+                        app:layout_constraintTop_toBottomOf="@+id/main_overview_glossary_notification"
+                        app:subtitle="@{@string/main_overview_subtitle_glossary_keys}" />
 
-                <include
-                    android:id="@+id/main_overview_glossary_keys"
-                    layout="@layout/include_main_overview_glossary"
-                    android:layout_width="0dp"
-                    android:layout_height="wrap_content"
-                    app:body="@{@string/main_overview_body_glossary_keys}"
-                    app:layout_constraintEnd_toEndOf="parent"
-                    app:layout_constraintStart_toStartOf="parent"
-                    app:layout_constraintTop_toBottomOf="@+id/main_overview_glossary_notification"
-                    app:subtitle="@{@string/main_overview_subtitle_glossary_keys}" />
+                    <androidx.constraintlayout.widget.Guideline
+                        android:id="@+id/guideline_bottom"
+                        android:layout_width="wrap_content"
+                        android:layout_height="wrap_content"
+                        android:orientation="horizontal"
+                        app:layout_constraintGuide_end="@dimen/guideline_bottom" />
+                </androidx.constraintlayout.widget.ConstraintLayout>
 
             </androidx.constraintlayout.widget.ConstraintLayout>
 
         </ScrollView>
 
-        <androidx.constraintlayout.widget.Guideline
-            android:id="@+id/guideline_bottom"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:orientation="horizontal"
-            app:layout_constraintGuide_end="@dimen/guideline_bottom" />
-
     </androidx.constraintlayout.widget.ConstraintLayout>
 
 </layout>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_onboarding.xml b/Corona-Warn-App/src/main/res/layout/fragment_onboarding.xml
index 3fe9aefa85f4aa7a884c91677f0cd3828671c51c..7227d5efb6837cb93bc09188e7e56c76e5dff5c7 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_onboarding.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_onboarding.xml
@@ -17,7 +17,7 @@
             app:body="@{@string/onboarding_body}"
             app:bodyEmphasized="@{@string/onboarding_body_emphasized}"
             app:headline="@{@string/onboarding_headline}"
-            app:illustration="@{@drawable/ic_onboarding_illustration_together}"
+            app:illustration="@{@drawable/ic_illustration_together}"
             app:illustrationDescription="@{@string/onboarding_illustration_description}"
             app:layout_constraintBottom_toTopOf="@+id/onboarding_button_next"
             app:layout_constraintEnd_toEndOf="parent"
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_onboarding_notifications.xml b/Corona-Warn-App/src/main/res/layout/fragment_onboarding_notifications.xml
index 4fac97a464b3057433f47bd57f0d8310687f60fc..da7e8378d455515e451ba4b17146f776320331bc 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_onboarding_notifications.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_onboarding_notifications.xml
@@ -23,7 +23,7 @@
             android:layout_marginBottom="@dimen/spacing_normal"
             app:body="@{@string/onboarding_notifications_body}"
             app:headline="@{@string/onboarding_notifications_headline}"
-            app:illustration="@{@drawable/ic_onboarding_illustration_notification}"
+            app:illustration="@{@drawable/ic_illustration_notification_on}"
             app:illustrationDescription="@{@string/onboarding_notifications_illustration_description}"
             app:layout_constraintBottom_toTopOf="@+id/onboarding_button_next"
             app:layout_constraintEnd_toEndOf="parent"
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_onboarding_privacy.xml b/Corona-Warn-App/src/main/res/layout/fragment_onboarding_privacy.xml
index d210d80596e4cfda57692a716621ddf268d8d963..a2fb4eba8255abc292e1efb58fb805e3c4ceea1b 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_onboarding_privacy.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_onboarding_privacy.xml
@@ -24,7 +24,7 @@
             app:body="@{@string/onboarding_privacy_body}"
             app:bodyEmphasized="@{@string/onboarding_privacy_body_emphasized}"
             app:headline="@{@string/onboarding_privacy_headline}"
-            app:illustration="@{@drawable/ic_onboarding_illustration_privacy}"
+            app:illustration="@{@drawable/ic_illustration_privacy}"
             app:illustrationDescription="@{@string/onboarding_privacy_illustration_description}"
             app:layout_constraintBottom_toTopOf="@+id/onboarding_button_next"
             app:layout_constraintEnd_toEndOf="parent"
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_onboarding_test.xml b/Corona-Warn-App/src/main/res/layout/fragment_onboarding_test.xml
index ccf9f02b0baacc81f7ba8fc4c0c60bd4a4c193be..ec7bb4e9e2f5c85da6b30edef86e4af12c88eb9e 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_onboarding_test.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_onboarding_test.xml
@@ -23,7 +23,7 @@
             android:layout_marginBottom="@dimen/spacing_normal"
             app:body="@{@string/onboarding_test_body}"
             app:headline="@{@string/onboarding_test_headline}"
-            app:illustration="@{@drawable/ic_onboarding_illustration_test}"
+            app:illustration="@{@drawable/ic_illustration_test}"
             app:illustrationDescription="@{@string/onboarding_test_illustration_description}"
             app:layout_constraintBottom_toTopOf="@+id/onboarding_button_next"
             app:layout_constraintEnd_toEndOf="parent"
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_onboarding_tracing.xml b/Corona-Warn-App/src/main/res/layout/fragment_onboarding_tracing.xml
index b2186938007e5c289f08ef0e0204b9b3dc357d0e..1f1cd1f7e50a09068db7aa2d2f1dc27c70075951 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_onboarding_tracing.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_onboarding_tracing.xml
@@ -24,7 +24,7 @@
             app:body="@{@string/onboarding_tracing_body}"
             app:bodyEmphasized="@{@string/onboarding_tracing_body_emphasized}"
             app:headline="@{@string/onboarding_tracing_headline}"
-            app:illustration="@{@drawable/ic_onboarding_illustration_tracing}"
+            app:illustration="@{@drawable/ic_illustration_tracing_on}"
             app:illustrationDescription="@{@string/onboarding_tracing_illustration_description}"
             app:layout_constraintBottom_toTopOf="@+id/onboarding_button_next"
             app:layout_constraintEnd_toEndOf="parent"
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_risk_details.xml b/Corona-Warn-App/src/main/res/layout/fragment_risk_details.xml
index c49ac7f35212ba7c3875734f30febc73bfa34513..72b5d8ce5652d703f3fbf04fab7e3e3b43312b8d 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_risk_details.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_risk_details.xml
@@ -53,7 +53,7 @@
 
                 <TextView
                     android:id="@+id/risk_details_behavior_headline"
-                    style="@style/textLargeEmphasized"
+                    style="@style/headline5"
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     android:layout_marginTop="@dimen/spacing_normal"
@@ -64,7 +64,7 @@
 
                 <TextView
                     android:id="@+id/risk_details_behavior_subtitle"
-                    style="@style/textMultiline"
+                    style="@style/body2"
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     android:layout_marginTop="@dimen/spacing_tiny"
@@ -109,18 +109,16 @@
 
                 <androidx.constraintlayout.widget.ConstraintLayout
                     android:id="@+id/risk_details_body"
+                    style="@style/greyBodyBackground"
                     android:layout_width="match_parent"
                     android:layout_height="wrap_content"
-                    android:layout_marginTop="@dimen/spacing_large"
-                    android:background="@color/colorGreyLight"
-                    android:padding="@dimen/spacing_normal"
                     app:layout_constraintEnd_toEndOf="parent"
                     app:layout_constraintStart_toStartOf="parent"
                     app:layout_constraintTop_toBottomOf="@id/risk_details_behavior_wrapper">
 
                     <TextView
                         android:id="@+id/risk_details_information_headline"
-                        style="@style/textLargeEmphasized"
+                        style="@style/headline5"
                         android:layout_width="match_parent"
                         android:layout_height="wrap_content"
                         android:text="@string/risk_details_headline_infection_risk"
@@ -130,18 +128,18 @@
 
                     <TextView
                         android:id="@+id/risk_details_information_subtitle"
-                        style="@style/textMultiline"
+                        style="@style/body2"
                         android:layout_width="match_parent"
                         android:layout_height="wrap_content"
                         android:layout_marginTop="@dimen/spacing_tiny"
-                        android:text="@{FormatterRiskHelper.formatRiskDetailsRiskLevelSubtitle(tracingViewModel.riskLevel)}"
+                        android:text="@string/risk_details_subtitle_infection_risk"
                         app:layout_constraintEnd_toEndOf="parent"
                         app:layout_constraintStart_toStartOf="parent"
                         app:layout_constraintTop_toBottomOf="@+id/risk_details_information_headline" />
 
                     <TextView
                         android:id="@+id/risk_details_information_body"
-                        style="@style/textMultiline"
+                        style="@style/body2"
                         android:layout_width="match_parent"
                         android:layout_height="wrap_content"
                         android:layout_marginTop="@dimen/spacing_small"
@@ -153,7 +151,7 @@
 
                     <TextView
                         android:id="@+id/risk_details_information_body_notice"
-                        style="@style/textMultiline"
+                        style="@style/body2"
                         android:layout_width="match_parent"
                         android:layout_height="wrap_content"
                         android:layout_marginTop="@dimen/spacing_small"
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_settings.xml b/Corona-Warn-App/src/main/res/layout/fragment_settings.xml
index 677f97666dcc200d60321584251722a3ae349f5c..6810f17bb7747502c0e47209e6970b04303316ca 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_settings.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_settings.xml
@@ -1,7 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <layout xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:app="http://schemas.android.com/apk/res-auto"
-    xmlns:tools="http://schemas.android.com/tools">
+    xmlns:app="http://schemas.android.com/apk/res-auto">
 
     <data>
 
@@ -54,8 +53,8 @@
                     android:layout_height="wrap_content"
                     android:layout_marginTop="@dimen/spacing_normal"
                     app:body="@{@string/settings_tracing_body_description}"
-                    app:color="@{FormatterSettingsHelper.formatIconColor(tracingViewModel.isTracingEnabled())}"
-                    app:icon="@{@drawable/ic_settings_tracing_active}"
+                    app:color="@{FormatterSettingsHelper.formatSettingsTracingIconColor(tracingViewModel.isTracingEnabled(), settingsViewModel.isBluetoothEnabled(), settingsViewModel.isConnectionEnabled())}"
+                    app:icon="@{FormatterSettingsHelper.formatSettingsTracingIcon(tracingViewModel.isTracingEnabled(), settingsViewModel.isBluetoothEnabled(), settingsViewModel.isConnectionEnabled())}"
                     app:layout_constraintEnd_toEndOf="parent"
                     app:layout_constraintStart_toStartOf="parent"
                     app:layout_constraintTop_toTopOf="parent"
@@ -70,8 +69,8 @@
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     app:body="@{@string/settings_notifications_body_description}"
-                    app:color="@{FormatterSettingsHelper.formatIconColor(settingsViewModel.isNotificationsEnabled(), settingsViewModel.isNotificationsRiskEnabled(), settingsViewModel.isNotificationsTestEnabled())}"
-                    app:icon="@{@drawable/ic_settings_notification}"
+                    app:color="@{FormatterSettingsHelper.formatNotificationIconColor(settingsViewModel.isNotificationsEnabled(), settingsViewModel.isNotificationsRiskEnabled(), settingsViewModel.isNotificationsTestEnabled())}"
+                    app:icon="@{FormatterSettingsHelper.formatNotificationIcon(settingsViewModel.isNotificationsEnabled(), settingsViewModel.isNotificationsRiskEnabled(), settingsViewModel.isNotificationsTestEnabled())}"
                     app:layout_constraintEnd_toEndOf="parent"
                     app:layout_constraintStart_toStartOf="parent"
                     app:layout_constraintTop_toBottomOf="@+id/settings_tracing"
@@ -99,7 +98,7 @@
 
                         <TextView
                             android:id="@+id/settings_reset_subtitle"
-                            style="@style/textDanger"
+                            style="@style/subtitleSemanticRed"
                             android:layout_width="0dp"
                             android:layout_height="wrap_content"
                             android:text="@string/settings_reset_button_positive"
@@ -109,6 +108,7 @@
 
                         <TextView
                             android:id="@+id/settings_reset_body"
+                            style="@style/body2Medium"
                             android:layout_width="0dp"
                             android:layout_height="wrap_content"
                             android:text="@string/settings_reset_body_description"
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_settings_reset.xml b/Corona-Warn-App/src/main/res/layout/fragment_settings_reset.xml
index 0c76491c61d580da937cf98638b5670ffa4f8f10..b0ed452fa6920e0a505c6252a2cf84ee37b6e502 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_settings_reset.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_settings_reset.xml
@@ -22,6 +22,7 @@
             style="@style/fadingScrollView"
             android:layout_width="0dp"
             android:layout_height="0dp"
+            android:layout_marginBottom="@dimen/spacing_normal"
             android:fillViewport="true"
             app:layout_constraintBottom_toTopOf="@+id/settings_reset_button_delete"
             app:layout_constraintEnd_toEndOf="parent"
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_settings_tracing.xml b/Corona-Warn-App/src/main/res/layout/fragment_settings_tracing.xml
index 5859c7b3e4e125ae913184e6fd38a3601bc5fd64..7d2d230a84920ceb97e1d1801dde2862ebb7f052 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_settings_tracing.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_settings_tracing.xml
@@ -124,7 +124,7 @@
 
                         <TextView
                             android:id="@+id/settings_tracing_status_tracing_body"
-                            style="@style/textMultiline"
+                            style="@style/body2Medium"
                             android:layout_width="@dimen/match_constraint"
                             android:layout_height="wrap_content"
                             android:layout_marginEnd="@dimen/spacing_small"
@@ -150,12 +150,10 @@
 
 
                 <androidx.constraintlayout.widget.ConstraintLayout
+                    style="@style/greyBodyBackground"
                     android:id="@+id/risk_details_body"
                     android:layout_width="match_parent"
                     android:layout_height="wrap_content"
-                    android:layout_marginTop="@dimen/spacing_normal"
-                    android:background="@color/colorGreyLight"
-                    android:padding="@dimen/spacing_normal"
                     app:layout_constraintBottom_toBottomOf="parent"
                     app:layout_constraintEnd_toEndOf="parent"
                     app:layout_constraintStart_toStartOf="parent"
@@ -163,7 +161,7 @@
 
                     <TextView
                         android:id="@+id/settings_tracing_body"
-                        style="@style/textMultiline"
+                        style="@style/body1"
                         android:layout_width="@dimen/match_constraint"
                         android:layout_height="wrap_content"
                         android:text="@string/settings_tracing_body_text"
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_submission_contact.xml b/Corona-Warn-App/src/main/res/layout/fragment_submission_contact.xml
index cf0aed7d129ca5836a6cbb3cbc8ae01467f5c488..1c0e6016e7ba3f955421794e4e192b8c7ab3f2f4 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_submission_contact.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_submission_contact.xml
@@ -64,7 +64,7 @@
                 android:orientation="horizontal"
                 app:layout_constraintGuide_end="@dimen/guideline_action_large" />
 
-            <include layout="@layout/merge_guidelines_common" />
+            <include layout="@layout/merge_guidelines_side" />
 
         </androidx.constraintlayout.widget.ConstraintLayout>
 
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_submission_dialog.xml b/Corona-Warn-App/src/main/res/layout/fragment_submission_dialog.xml
deleted file mode 100644
index 3c53847b3fb334478fc79ec7384d5731ea171020..0000000000000000000000000000000000000000
--- a/Corona-Warn-App/src/main/res/layout/fragment_submission_dialog.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:layout_width="wrap_content"
-    android:layout_height="wrap_content"
-    android:layout_gravity="center"
-    android:orientation="vertical"
-    android:padding="@dimen/spacing_normal">
-
-    <TextView
-        android:id="@+id/submission_verification_success_headline"
-        style="@style/textTitleCentered"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:layout_gravity="center"
-        android:text="@string/submission_result_dialog_headline"
-        android:textAlignment="center" />
-
-    <TextView
-        android:id="@+id/submission_verification_success_body"
-        style="@style/textMultilineCentered"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:layout_gravity="center"
-        android:layout_marginTop="@dimen/spacing_small"
-        android:text="@string/submission_result_dialog_body" />
-
-    <Button
-        android:id="@+id/submission_verification_success_button"
-        style="@style/buttonPrimary"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:layout_gravity="center"
-        android:layout_marginTop="@dimen/spacing_normal"
-        android:text="@string/submission_result_button_dialog_close" />
-
-</LinearLayout>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_submission_dispatcher.xml b/Corona-Warn-App/src/main/res/layout/fragment_submission_dispatcher.xml
index c34516634469e6e6c94f653d6b9505ab437c53b8..d4f5b84bc7f706febbb032ca3afbd2fcabbfb512 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_submission_dispatcher.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_submission_dispatcher.xml
@@ -26,7 +26,7 @@
 
             <TextView
                 android:id="@+id/submission_dispatcher_text"
-                style="@style/textMultiline"
+                style="@style/subtitle"
                 android:layout_width="@dimen/match_constraint"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_normal"
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_submission_done.xml b/Corona-Warn-App/src/main/res/layout/fragment_submission_done.xml
index 2f825aaac59f9e5337b4d025bf2a41edc049371a..02d9686e2ff2eb0f094e30aef23fef23be0eb468 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_submission_done.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_submission_done.xml
@@ -36,7 +36,7 @@
 
             <TextView
                 android:id="@+id/submission_done_headline"
-                style="@style/textHeadline"
+                style="@style/headline4"
                 android:layout_width="@dimen/match_constraint"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_normal"
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_submission_qr_code_scan.xml b/Corona-Warn-App/src/main/res/layout/fragment_submission_qr_code_scan.xml
index ae1053e307cded9831f98a823a37294175b29ea1..817eb12f8ef18a3914fe1a0b204424c934dc5e47 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_submission_qr_code_scan.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_submission_qr_code_scan.xml
@@ -48,8 +48,8 @@
             android:layout_height="wrap_content"
             app:icon="@{@drawable/ic_close}"
             app:layout_constraintBottom_toTopOf="@+id/submission_qr_code_scan_guideline_top"
-            app:layout_constraintEnd_toStartOf="@+id/submission_qr_code_scan_guideline_start"
-            app:layout_constraintStart_toStartOf="@+id/submission_qr_code_scan_guideline_start"
+            app:layout_constraintEnd_toStartOf="@+id/guideline_start"
+            app:layout_constraintStart_toStartOf="@+id/guideline_start"
             app:layout_constraintTop_toTopOf="@+id/submission_qr_code_scan_guideline_top" />
 
         <ToggleButton
@@ -57,22 +57,14 @@
             android:layout_width="@dimen/icon_size"
             android:layout_height="@dimen/icon_size"
             android:background="@drawable/ic_registration_qr_code_scan_torch_toggle"
-            android:backgroundTint="@color/iconColor"
+            android:backgroundTint="@color/colorTextPrimary3"
             android:textOff=""
             android:textOn=""
             app:layout_constraintBottom_toTopOf="@+id/submission_qr_code_scan_guideline_top"
-            app:layout_constraintEnd_toStartOf="@+id/submission_qr_code_scan_guideline_end"
-            app:layout_constraintStart_toStartOf="@+id/submission_qr_code_scan_guideline_end"
+            app:layout_constraintEnd_toStartOf="@+id/guideline_end"
+            app:layout_constraintStart_toStartOf="@+id/guideline_end"
             app:layout_constraintTop_toTopOf="@+id/submission_qr_code_scan_guideline_top" />
 
-
-        <androidx.constraintlayout.widget.Guideline
-            android:id="@+id/submission_qr_code_scan_guideline_start"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:orientation="vertical"
-            app:layout_constraintGuide_begin="@dimen/guideline_start" />
-
         <androidx.constraintlayout.widget.Guideline
             android:id="@+id/submission_qr_code_scan_guideline_top"
             android:layout_width="wrap_content"
@@ -80,11 +72,7 @@
             android:orientation="horizontal"
             app:layout_constraintGuide_begin="@dimen/spacing_normal" />
 
-        <androidx.constraintlayout.widget.Guideline
-            android:id="@+id/submission_qr_code_scan_guideline_end"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:orientation="vertical"
-            app:layout_constraintGuide_end="@dimen/guideline_end" />
+        <include layout="@layout/merge_guidelines_side" />
+
     </androidx.constraintlayout.widget.ConstraintLayout>
 </layout>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_submission_tan.xml b/Corona-Warn-App/src/main/res/layout/fragment_submission_tan.xml
index 4e370763061db10f049508de92573e29e63db0ec..c940d7044756bbc18ba88d9b6393936436795151 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_submission_tan.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_submission_tan.xml
@@ -36,7 +36,7 @@
 
             <TextView
                 android:id="@+id/submission_tan_body"
-                style="@style/textMultiline"
+                style="@style/subtitle"
                 android:layout_width="@dimen/match_constraint"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_small"
@@ -74,7 +74,7 @@
                 android:orientation="horizontal"
                 app:layout_constraintGuide_end="@dimen/guideline_action" />
 
-            <include layout="@layout/merge_guidelines_common" />
+            <include layout="@layout/merge_guidelines_side" />
 
         </androidx.constraintlayout.widget.ConstraintLayout>
 
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_submission_test_result.xml b/Corona-Warn-App/src/main/res/layout/fragment_submission_test_result.xml
index 7b89e45a3c6741e61c4a2913abc9b219b4178ec7..3db21c4784a6f2f63500dcb1c75683fa63d7b190 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_submission_test_result.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_submission_test_result.xml
@@ -17,7 +17,7 @@
 
         <include
             android:id="@+id/submission_test_result_header"
-            layout="@layout/include_information_details_header"
+            layout="@layout/include_header"
             android:layout_width="@dimen/match_constraint"
             android:layout_height="wrap_content"
             app:icon="@{@drawable/ic_close}"
@@ -32,104 +32,31 @@
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:visibility="@{FormatterSubmissionHelper.formatTestResultSpinnerVisible(submissionViewModel.uiStateState)}"
-            app:layout_constraintBottom_toBottomOf="@+id/submission_test_result_button_container"
-            app:layout_constraintEnd_toStartOf="@+id/submission_test_result_guideline_end"
-            app:layout_constraintStart_toStartOf="@+id/submission_test_result_guideline_start"
-            app:layout_constraintTop_toTopOf="@+id/submission_test_result_guideline_top" />
+            app:layout_constraintBottom_toBottomOf="parent"
+            app:layout_constraintEnd_toEndOf="parent"
+            app:layout_constraintStart_toStartOf="parent"
+            app:layout_constraintTop_toTopOf="parent" />
 
-        <ScrollView
-            style="@style/fadingScrollView"
+        <include
+            android:id="@+id/include"
+            layout="@layout/include_submission_test_result"
             android:layout_width="@dimen/match_constraint"
             android:layout_height="@dimen/match_constraint"
-            android:layout_marginBottom="@dimen/spacing_normal"
-            android:fillViewport="true"
             android:visibility="@{FormatterSubmissionHelper.formatTestResultVisible(submissionViewModel.uiStateState)}"
             app:layout_constraintBottom_toTopOf="@+id/submission_test_result_button_container"
             app:layout_constraintEnd_toEndOf="parent"
             app:layout_constraintStart_toStartOf="parent"
-            app:layout_constraintTop_toTopOf="@+id/submission_test_result_guideline_body">
-
-            <androidx.constraintlayout.widget.ConstraintLayout
-                android:layout_width="match_parent"
-                android:layout_height="wrap_content">
-
-                <include
-                    android:id="@+id/submission_test_result_card"
-                    layout="@layout/include_test_result_card"
-                    android:layout_width="@dimen/match_constraint"
-                    android:layout_height="wrap_content"
-                    app:layout_constraintEnd_toEndOf="@+id/guideline_end"
-                    app:layout_constraintStart_toStartOf="@+id/guideline_start"
-                    app:layout_constraintTop_toTopOf="parent"
-                    app:registerDate="@{submissionViewModel.testResultReceivedDate}"
-                    app:deviceUIState="@{submissionViewModel.deviceUiState}" />
-
-                <TextView
-                    android:id="@+id/submission_test_result_subtitle"
-                    style="@style/textSubTitle"
-                    android:layout_width="@dimen/match_constraint"
-                    android:layout_height="wrap_content"
-                    android:layout_marginTop="@dimen/spacing_normal"
-                    android:text="@string/submission_test_result_subtitle"
-                    app:layout_constraintEnd_toEndOf="@+id/guideline_end"
-                    app:layout_constraintStart_toStartOf="@+id/guideline_start"
-                    app:layout_constraintTop_toBottomOf="@+id/submission_test_result_card" />
-
-                <include
-                    android:id="@+id/submission_test_result_pending_steps"
-                    layout="@layout/include_test_result_pending_steps"
-                    android:layout_width="@dimen/match_constraint"
-                    android:layout_height="wrap_content"
-                    android:layout_marginTop="@dimen/spacing_normal"
-                    android:visibility="@{FormatterSubmissionHelper.formatTestResultPendingStepsVisible(submissionViewModel.deviceUiState)}"
-                    app:layout_constraintEnd_toEndOf="@+id/guideline_end"
-                    app:layout_constraintStart_toStartOf="@+id/guideline_start"
-                    app:layout_constraintTop_toBottomOf="@+id/submission_test_result_subtitle" />
-
-                <include
-                    android:id="@+id/submission_test_result_negative_steps"
-                    layout="@layout/include_test_result_negative_steps"
-                    android:layout_width="@dimen/match_constraint"
-                    android:layout_height="wrap_content"
-                    android:layout_marginTop="@dimen/spacing_normal"
-                    android:visibility="@{FormatterSubmissionHelper.formatTestResultNegativeStepsVisible(submissionViewModel.deviceUiState)}"
-                    app:layout_constraintEnd_toEndOf="@+id/guideline_end"
-                    app:layout_constraintStart_toStartOf="@+id/guideline_start"
-                    app:layout_constraintTop_toBottomOf="@+id/submission_test_result_subtitle" />
-
-                <include
-                    android:id="@+id/submission_test_result_positive_steps"
-                    layout="@layout/include_test_result_positive_steps"
-                    android:layout_width="@dimen/match_constraint"
-                    android:layout_height="wrap_content"
-                    android:layout_marginTop="@dimen/spacing_normal"
-                    android:visibility="@{FormatterSubmissionHelper.formatTestResultPositiveStepsVisible(submissionViewModel.deviceUiState)}"
-                    app:layout_constraintEnd_toEndOf="@+id/guideline_end"
-                    app:layout_constraintStart_toStartOf="@+id/guideline_start"
-                    app:layout_constraintTop_toBottomOf="@+id/submission_test_result_subtitle" />
-
-                <include
-                    android:id="@+id/submission_test_result_invalid_steps"
-                    layout="@layout/include_test_result_invalid_steps"
-                    android:layout_width="@dimen/match_constraint"
-                    android:layout_height="wrap_content"
-                    android:layout_marginTop="@dimen/spacing_normal"
-                    android:visibility="@{FormatterSubmissionHelper.formatTestResultInvalidStepsVisible(submissionViewModel.deviceUiState)}"
-                    app:layout_constraintEnd_toEndOf="@+id/guideline_end"
-                    app:layout_constraintStart_toStartOf="@+id/guideline_start"
-                    app:layout_constraintTop_toBottomOf="@+id/submission_test_result_subtitle" />
-
-                <include layout="@layout/merge_guidelines_common" />
-
-            </androidx.constraintlayout.widget.ConstraintLayout>
-        </ScrollView>
+            app:layout_constraintTop_toBottomOf="@+id/submission_test_result_header"
+            app:submissionViewModel="@{submissionViewModel}" />
 
         <androidx.constraintlayout.widget.ConstraintLayout
             android:id="@+id/submission_test_result_button_container"
             android:layout_width="match_parent"
             android:layout_height="wrap_content"
             android:visibility="@{FormatterSubmissionHelper.formatTestResultVisible(submissionViewModel.uiStateState)}"
-            app:layout_constraintBottom_toBottomOf="@id/submission_test_result_guideline_bottom">
+            app:layout_constraintBottom_toBottomOf="parent"
+            app:layout_constraintEnd_toEndOf="parent"
+            app:layout_constraintStart_toStartOf="parent">
 
             <Button
                 android:id="@+id/submission_test_result_button_pending_refresh"
@@ -185,7 +112,7 @@
 
             <Button
                 android:id="@+id/submission_test_result_button_negative_remove_test"
-                style="@style/buttonLight"
+                style="@style/buttonPrimary"
                 android:layout_width="@dimen/match_constraint"
                 android:layout_height="wrap_content"
                 android:layout_marginHorizontal="@dimen/spacing_normal"
@@ -198,40 +125,7 @@
 
         </androidx.constraintlayout.widget.ConstraintLayout>
 
-        <androidx.constraintlayout.widget.Guideline
-            android:id="@+id/submission_test_result_guideline_start"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:orientation="vertical"
-            app:layout_constraintGuide_begin="@dimen/guideline_start" />
-
-        <androidx.constraintlayout.widget.Guideline
-            android:id="@+id/submission_test_result_guideline_top"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:orientation="horizontal"
-            app:layout_constraintGuide_begin="@dimen/guideline_top" />
-
-        <androidx.constraintlayout.widget.Guideline
-            android:id="@+id/submission_test_result_guideline_body"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:orientation="horizontal"
-            app:layout_constraintGuide_begin="@dimen/submission_test_result_guideline_body" />
-
-        <androidx.constraintlayout.widget.Guideline
-            android:id="@+id/submission_test_result_guideline_bottom"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:orientation="horizontal"
-            app:layout_constraintGuide_end="@dimen/guideline_bottom" />
-
-        <androidx.constraintlayout.widget.Guideline
-            android:id="@+id/submission_test_result_guideline_end"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:orientation="vertical"
-            app:layout_constraintGuide_end="@dimen/guideline_end" />
+        <include layout="@layout/merge_guidelines_side" />
 
     </androidx.constraintlayout.widget.ConstraintLayout>
 </layout>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_test_for_a_p_i.xml b/Corona-Warn-App/src/main/res/layout/fragment_test_for_a_p_i.xml
index bd05b3126b41cce0b062ec6ce969910c1c6a1938..cc7c16873f98655ef88ac4b78f0d86d3a7f93338 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_test_for_a_p_i.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_test_for_a_p_i.xml
@@ -35,7 +35,7 @@
 
             <TextView
                 android:id="@+id/label_exposure_summary"
-                style="@style/textTitle"
+                style="@style/headline6"
                 android:layout_width="match_parent"
                 android:layout_height="wrap_content"
                 android:text="@string/test_api_exposure_summary_headline" />
@@ -96,7 +96,7 @@
 
             <TextView
                 android:id="@+id/label_my_keys"
-                style="@style/textTitle"
+                style="@style/headline6"
                 android:layout_width="match_parent"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_normal"
@@ -117,7 +117,7 @@
 
             <TextView
                 android:id="@+id/label_other_keys"
-                style="@style/textTitle"
+                style="@style/headline6"
                 android:layout_width="match_parent"
                 android:layout_height="wrap_content"
                 android:text="@string/test_api_body_other_keys" />
diff --git a/Corona-Warn-App/src/main/res/layout/fragment_test_risk_level_calculation.xml b/Corona-Warn-App/src/main/res/layout/fragment_test_risk_level_calculation.xml
index c55150b3d93842a252e4781d733bab44b96f69fd..8e030a1f9ee440c87b4ed1605e37827f3e8207fd 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_test_risk_level_calculation.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_test_risk_level_calculation.xml
@@ -33,7 +33,7 @@
             android:orientation="vertical">
 
             <TextView
-                style="@style/textTitle"
+                style="@style/headline6"
                 android:layout_width="match_parent"
                 android:layout_height="wrap_content"
                 android:text="Preview (no interaction possible)" />
@@ -103,7 +103,7 @@
 
             <TextView
                 android:id="@+id/label_exposure_summary_title"
-                style="@style/textSubTitle"
+                style="@style/headline6"
                 android:layout_width="match_parent"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_normal"
@@ -117,7 +117,7 @@
 
             <TextView
                 android:id="@+id/label_risk_score_title"
-                style="@style/textSubTitle"
+                style="@style/headline6"
                 android:layout_width="match_parent"
                 android:layout_height="wrap_content"
                 android:text="Risk Score" />
@@ -130,7 +130,7 @@
 
             <TextView
                 android:id="@+id/label_backend_parameters_title"
-                style="@style/textSubTitle"
+                style="@style/headline6"
                 android:layout_width="match_parent"
                 android:layout_height="wrap_content"
                 android:text="Backend Parameters" />
@@ -143,7 +143,7 @@
 
             <TextView
                 android:id="@+id/label_formula_title"
-                style="@style/textSubTitle"
+                style="@style/headline6"
                 android:layout_width="match_parent"
                 android:layout_height="wrap_content"
                 android:text="Used Formula" />
@@ -154,9 +154,22 @@
                 android:layout_height="wrap_content"
                 android:text="-" />
 
+            <TextView
+                android:id="@+id/label_exposure_info_title"
+                style="@style/headline6"
+                android:layout_width="match_parent"
+                android:layout_height="wrap_content"
+                android:text="Exposure Information" />
+
+            <TextView
+                android:id="@+id/label_exposure_info"
+                android:layout_width="match_parent"
+                android:layout_height="wrap_content"
+                android:text="-" />
+
             <TextView
                 android:id="@+id/label_full_config_title"
-                style="@style/textSubTitle"
+                style="@style/headline6"
                 android:layout_width="match_parent"
                 android:layout_height="wrap_content"
                 android:text="Full Backend Configuration" />
diff --git a/Corona-Warn-App/src/main/res/layout/include_button_icon.xml b/Corona-Warn-App/src/main/res/layout/include_button_icon.xml
index 430f639c7907b8fdd6a03a655178f6d0c063f0c1..4bdf45b4d27ca08c927f169c26b0471d1960f299 100644
--- a/Corona-Warn-App/src/main/res/layout/include_button_icon.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_button_icon.xml
@@ -8,7 +8,6 @@
             name="icon"
             type="android.graphics.drawable.Drawable" />
 
-
     </data>
 
     <androidx.constraintlayout.widget.ConstraintLayout
diff --git a/Corona-Warn-App/src/main/res/layout/include_dispatcher_card.xml b/Corona-Warn-App/src/main/res/layout/include_dispatcher_card.xml
index 1acf04a23de389a5924dc7a9b3d24bdfac6e8911..99b7cac0cbf5bb4de5cb9192852d10522a772c61 100644
--- a/Corona-Warn-App/src/main/res/layout/include_dispatcher_card.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_dispatcher_card.xml
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <layout xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:app="http://schemas.android.com/apk/res-auto">
+    xmlns:app="http://schemas.android.com/apk/res-auto"
+    xmlns:tools="http://schemas.android.com/tools">
 
     <data>
 
@@ -27,7 +28,7 @@
 
         <TextView
             android:id="@+id/dispatcher_card_title"
-            style="@style/textTitle"
+            style="@style/headline6"
             android:layout_width="@dimen/match_constraint"
             android:layout_height="wrap_content"
             android:layout_marginStart="@dimen/spacing_normal"
@@ -36,7 +37,8 @@
             android:text="@{headline}"
             app:layout_constraintEnd_toStartOf="@+id/dispatcher_card_icon"
             app:layout_constraintStart_toStartOf="parent"
-            app:layout_constraintTop_toTopOf="parent" />
+            app:layout_constraintTop_toTopOf="parent"
+            tools:text="@string/submission_dispatcher_card_qr" />
 
         <include
             android:id="@+id/dispatcher_card_icon"
@@ -51,7 +53,7 @@
 
         <TextView
             android:id="@+id/submission_dispatcher_card_text"
-            style="@style/textMultiline"
+            style="@style/subtitle"
             android:layout_width="@dimen/match_constraint"
             android:layout_height="wrap_content"
             android:layout_marginStart="@dimen/spacing_normal"
@@ -61,7 +63,8 @@
             app:layout_constraintBottom_toBottomOf="parent"
             app:layout_constraintEnd_toStartOf="@+id/dispatcher_card_illustration"
             app:layout_constraintStart_toStartOf="parent"
-            app:layout_constraintTop_toBottomOf="@+id/dispatcher_card_title" />
+            app:layout_constraintTop_toBottomOf="@+id/dispatcher_card_title"
+            tools:text="@string/submission_dispatcher_qr_card_text" />
 
         <ImageView
             android:id="@+id/dispatcher_card_illustration"
@@ -72,7 +75,8 @@
             android:src="@{illustration}"
             app:layout_constraintBottom_toBottomOf="parent"
             app:layout_constraintEnd_toEndOf="parent"
-            app:layout_constraintTop_toBottomOf="@+id/dispatcher_card_icon" />
+            app:layout_constraintTop_toBottomOf="@+id/dispatcher_card_icon"
+            tools:src="@drawable/ic_submission_illustration_qr_code_card" />
 
     </androidx.constraintlayout.widget.ConstraintLayout>
 
diff --git a/Corona-Warn-App/src/main/res/layout/include_divider.xml b/Corona-Warn-App/src/main/res/layout/include_divider.xml
index 4816dc247c5b47a43cc593fb9f6425f3f5e5ddea..04ae33d52d8aa29f546aaabf4e1355adc2bc1d19 100644
--- a/Corona-Warn-App/src/main/res/layout/include_divider.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_divider.xml
@@ -10,10 +10,10 @@
         app:layout_constraintTop_toTopOf="parent">
 
         <View
-            android:id="@+id/dividerColor"
+            android:id="@+id/colorHairline"
             android:layout_width="match_parent"
             android:layout_height="@dimen/card_divider"
-            android:background="@color/dividerColor"
+            android:background="@color/colorHairline"
             app:layout_constraintEnd_toEndOf="parent"
             app:layout_constraintStart_toStartOf="parent"
             app:layout_constraintTop_toTopOf="parent" />
diff --git a/Corona-Warn-App/src/main/res/layout/include_further_info.xml b/Corona-Warn-App/src/main/res/layout/include_further_info.xml
index 993da849e5398a61d5e58e42ca40726e5377e7ae..ca9c5f42b14175d0cc0857b6d275fe34a2d1b276 100644
--- a/Corona-Warn-App/src/main/res/layout/include_further_info.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_further_info.xml
@@ -12,7 +12,7 @@
 
         <TextView
             android:id="@+id/further_info_title"
-            style="@style/textTitleLarger"
+            style="@style/headline5"
             android:layout_width="@dimen/match_constraint"
             android:layout_height="wrap_content"
             android:text="@string/submission_done_further_info_title"
@@ -22,7 +22,7 @@
 
         <TextView
             android:id="@+id/further_info_text"
-            style="@style/textMultiline"
+            style="@style/subtitle"
             android:layout_width="@dimen/match_constraint"
             android:layout_height="wrap_content"
             android:layout_marginStart="@dimen/spacing_normal"
diff --git a/Corona-Warn-App/src/main/res/layout/include_header.xml b/Corona-Warn-App/src/main/res/layout/include_header.xml
index 9c5112d53c487581afdfedcc09db41e0d165d42d..6e9a9fe879ab364aa50b8a4b0d91d0d7d351fcf2 100644
--- a/Corona-Warn-App/src/main/res/layout/include_header.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_header.xml
@@ -30,7 +30,7 @@
 
         <TextView
             android:id="@+id/header_title"
-            style="@style/textTitle"
+            style="@style/headline6"
             android:layout_width="0dp"
             android:layout_height="wrap_content"
             android:layout_marginStart="@dimen/guideline_body_title"
diff --git a/Corona-Warn-App/src/main/res/layout/include_information_details.xml b/Corona-Warn-App/src/main/res/layout/include_information_details.xml
index 51369af74de9f34fc419eafd6b02f8b669a94f8c..d7d78c3bc3a4a5038eb034191a8cfd4dbc5142f2 100644
--- a/Corona-Warn-App/src/main/res/layout/include_information_details.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_information_details.xml
@@ -37,11 +37,11 @@
             app:layout_constraintEnd_toEndOf="parent"
             app:layout_constraintStart_toStartOf="parent"
             app:layout_constraintTop_toTopOf="parent"
-            tools:src="@drawable/ic_settings_illustration_tracing_on" />
+            tools:src="@drawable/ic_illustration_tracing_on" />
 
         <TextView
             android:id="@+id/information_details_header_headline"
-            style="@style/textTitle"
+            style="@style/headline6"
             android:layout_width="0dp"
             android:layout_height="wrap_content"
             android:text="@{headline}"
@@ -53,7 +53,7 @@
 
         <TextView
             android:id="@+id/information_details_header_body"
-            style="@style/textMultiline"
+            style="@style/subtitle"
             android:layout_width="0dp"
             android:layout_height="wrap_content"
             android:layout_marginTop="@dimen/spacing_tiny"
diff --git a/Corona-Warn-App/src/main/res/layout/include_main_card.xml b/Corona-Warn-App/src/main/res/layout/include_main_card.xml
index e91c385620a02f2ba22e711b1028eff628d643c3..5783ed4523a11655db9614f7704eb85b2fbbfe9d 100644
--- a/Corona-Warn-App/src/main/res/layout/include_main_card.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_main_card.xml
@@ -68,7 +68,7 @@
 
             <TextView
                 android:id="@+id/main_card_header_headline"
-                style="@style/textLargeEmphasized"
+                style="@style/headline5"
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:layout_marginEnd="@dimen/spacing_small"
@@ -86,10 +86,10 @@
                 android:importantForAccessibility="no"
                 android:src="@{iconEnd}"
                 android:visibility="@{FormatterHelper.formatVisibilityIcon(iconEnd)}"
-                app:layout_constraintBottom_toBottomOf="parent"
+                app:layout_constraintBottom_toBottomOf="@+id/main_card_header_headline"
                 app:layout_constraintEnd_toEndOf="parent"
                 app:layout_constraintStart_toEndOf="@+id/main_card_header_headline"
-                app:layout_constraintTop_toTopOf="parent" />
+                app:layout_constraintTop_toTopOf="@+id/main_card_header_headline" />
         </androidx.constraintlayout.widget.ConstraintLayout>
 
         <androidx.constraintlayout.widget.ConstraintLayout
@@ -103,6 +103,7 @@
 
             <TextView
                 android:id="@+id/main_card_content_body"
+                style="@style/subtitleMedium"
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_tiny"
diff --git a/Corona-Warn-App/src/main/res/layout/include_main_overview_glossary.xml b/Corona-Warn-App/src/main/res/layout/include_main_overview_glossary.xml
index 9f8203e2e2c649868625060d9768300fd99403c4..034ca86550058683bbefd6711a5f8d94c0637d1e 100644
--- a/Corona-Warn-App/src/main/res/layout/include_main_overview_glossary.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_main_overview_glossary.xml
@@ -29,7 +29,7 @@
 
             <TextView
                 android:id="@+id/main_overview_glossary_subtitle"
-                style="@style/textLargeEmphasized"
+                style="@style/headline6"
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:text="@{subtitle}"
@@ -39,7 +39,7 @@
 
             <TextView
                 android:id="@+id/main_overview_glossary_body"
-                style="@style/textMultiline"
+                style="@style/subtitle"
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_small"
diff --git a/Corona-Warn-App/src/main/res/layout/include_main_overview_segment.xml b/Corona-Warn-App/src/main/res/layout/include_main_overview_segment.xml
index 58ad4f38207bfcb4f9444d88ecf6490b25547231..25644c52e5182575a2a066fbd613c20e1ee9fc82 100644
--- a/Corona-Warn-App/src/main/res/layout/include_main_overview_segment.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_main_overview_segment.xml
@@ -42,7 +42,7 @@
 
             <TextView
                 android:id="@+id/main_overview_segment_subtitle"
-                style="@style/textLargeEmphasized"
+                style="@style/headline5"
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:text="@{subtitle}"
@@ -52,7 +52,7 @@
 
             <TextView
                 android:id="@+id/main_overview_segment_body"
-                style="@style/textMultiline"
+                style="@style/subtitle"
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_small"
diff --git a/Corona-Warn-App/src/main/res/layout/include_navigation_row.xml b/Corona-Warn-App/src/main/res/layout/include_navigation_row.xml
index 79826222250f19c7c6870a8bd545d5ead45abd32..0092de70be966880ba68f3672b156e30f1fbb05e 100644
--- a/Corona-Warn-App/src/main/res/layout/include_navigation_row.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_navigation_row.xml
@@ -51,7 +51,7 @@
 
             <TextView
                 android:id="@+id/navigation_row_subtitle"
-                style="@style/textLink"
+                style="@style/headline5Tint"
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:text="@{subtitle}"
diff --git a/Corona-Warn-App/src/main/res/layout/include_onboarding.xml b/Corona-Warn-App/src/main/res/layout/include_onboarding.xml
index aecd930e41354adaa3d184411ff09f77079caa87..60fc4d1b3dc0ab7d12a90109936a0a6bbb5bc5cc 100644
--- a/Corona-Warn-App/src/main/res/layout/include_onboarding.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_onboarding.xml
@@ -50,11 +50,11 @@
                 app:layout_constraintEnd_toEndOf="parent"
                 app:layout_constraintStart_toStartOf="parent"
                 app:layout_constraintTop_toTopOf="parent"
-                tools:src="@drawable/ic_onboarding_illustration_together" />
+                tools:src="@drawable/ic_illustration_together" />
 
             <TextView
                 android:id="@+id/onboarding_headline"
-                style="@style/textTitle"
+                style="@style/headline4"
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_normal"
@@ -66,7 +66,7 @@
 
             <TextView
                 android:id="@+id/onboarding_subtitle"
-                style="@style/textMultiline"
+                style="@style/subtitle"
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_small"
@@ -78,7 +78,7 @@
 
             <TextView
                 android:id="@+id/onboarding_body"
-                style="@style/textMultiline"
+                style="@style/subtitle"
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_normal"
@@ -90,7 +90,7 @@
 
             <TextView
                 android:id="@+id/onboarding_body_emphasized"
-                style="@style/textMultiline"
+                style="@style/subtitle"
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_normal"
diff --git a/Corona-Warn-App/src/main/res/layout/include_privacy_card.xml b/Corona-Warn-App/src/main/res/layout/include_privacy_card.xml
index 843f6b476ed02f161b9f12ccc1adb8604ad2e2fa..fa592e659e4314b1f4202221ed48729c6dc3c015 100644
--- a/Corona-Warn-App/src/main/res/layout/include_privacy_card.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_privacy_card.xml
@@ -12,7 +12,7 @@
 
         <TextView
             android:id="@+id/privacy_card_title"
-            style="@style/textTitle"
+            style="@style/headline6"
             android:layout_width="@dimen/match_constraint"
             android:layout_height="wrap_content"
             android:text="@string/submission_positive_other_warning_privacy_title"
@@ -22,7 +22,7 @@
 
         <TextView
             android:id="@+id/privacy_card_text"
-            style="@style/textMultiline"
+            style="@style/subtitle"
             android:layout_width="@dimen/match_constraint"
             android:layout_height="wrap_content"
             android:layout_marginTop="@dimen/spacing_normal"
diff --git a/Corona-Warn-App/src/main/res/layout/include_risk_card.xml b/Corona-Warn-App/src/main/res/layout/include_risk_card.xml
index 6c7e4acf01323c113ae031e718140b69ca1e743b..4155aa9faab68e50281e7ac53832543e7d98ae02 100644
--- a/Corona-Warn-App/src/main/res/layout/include_risk_card.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_risk_card.xml
@@ -57,12 +57,13 @@
                 android:layout_height="wrap_content"
                 android:layout_marginStart="@dimen/spacing_small"
                 android:indeterminate="true"
-                android:indeterminateTint="@color/stableBackgroundColor"
+                android:indeterminateTint="@color/colorStableLight"
                 app:layout_constraintBottom_toBottomOf="parent"
                 app:layout_constraintStart_toStartOf="parent"
                 app:layout_constraintTop_toTopOf="parent" />
 
             <TextView
+                style="@style/subtitle"
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:layout_marginStart="@dimen/spacing_small"
@@ -85,6 +86,7 @@
 
             <TextView
                 android:id="@+id/risk_card_body"
+                style="@style/subtitle"
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_normal"
@@ -102,8 +104,8 @@
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_normal"
-                android:visibility="@{FormatterHelper.formatVisibilityText(FormatterRiskHelper.formatRiskSavedRisk(tracingViewModel.riskLevel, tracingViewModel.savedRiskLevel))}"
-                app:body="@{FormatterRiskHelper.formatRiskSavedRisk(tracingViewModel.riskLevel, tracingViewModel.savedRiskLevel)}"
+                android:visibility="@{FormatterHelper.formatVisibilityText(FormatterRiskHelper.formatRiskSavedRisk(tracingViewModel.riskLevel, tracingViewModel.riskLevelScoreLastSuccessfulCalculated))}"
+                app:body="@{FormatterRiskHelper.formatRiskSavedRisk(tracingViewModel.riskLevel, tracingViewModel.riskLevelScoreLastSuccessfulCalculated)}"
                 app:icon="@{@drawable/ic_risk_card_saved_risk}"
                 app:layout_constraintEnd_toEndOf="parent"
                 app:layout_constraintStart_toStartOf="parent"
@@ -162,7 +164,7 @@
                     <de.rki.coronawarnapp.ui.view.CircleProgress
                         android:layout_width="23dp"
                         android:layout_height="23dp"
-                        app:circleColor="@color/stableLightTransparent"
+                        app:circleColor="@color/colorStableMedium"
                         app:disableText="true"
                         app:layout_constraintBottom_toBottomOf="parent"
                         app:layout_constraintEnd_toEndOf="parent"
@@ -170,13 +172,13 @@
                         app:layout_constraintTop_toTopOf="parent"
                         app:circleWidth="5"
                         app:progress="@{tracingViewModel.activeTracingDaysInRetentionPeriod}"
-                        app:progressColor="@color/stableIconColor" />
+                        app:progressColor="@color/colorStableLight" />
 
                 </androidx.constraintlayout.widget.ConstraintLayout>
 
                 <TextView
                     android:id="@+id/risk_card_row_saved_days_body"
-                    style="@style/cardText"
+                    style="@style/subtitle"
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     android:layout_marginStart="@dimen/spacing_small"
@@ -195,8 +197,8 @@
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_small"
-                android:visibility="@{FormatterHelper.formatVisibilityText(FormatterRiskHelper.formatTimeFetched(tracingViewModel.riskLevel, tracingViewModel.savedRiskLevel, tracingViewModel.lastTimeDiagnosisKeysFetched))}"
-                app:body="@{FormatterRiskHelper.formatTimeFetched(tracingViewModel.riskLevel, tracingViewModel.savedRiskLevel, tracingViewModel.lastTimeDiagnosisKeysFetched)}"
+                android:visibility="@{FormatterHelper.formatVisibilityText(FormatterRiskHelper.formatTimeFetched(tracingViewModel.riskLevel, tracingViewModel.riskLevelScoreLastSuccessfulCalculated, tracingViewModel.lastTimeDiagnosisKeysFetched))}"
+                app:body="@{FormatterRiskHelper.formatTimeFetched(tracingViewModel.riskLevel, tracingViewModel.riskLevelScoreLastSuccessfulCalculated, tracingViewModel.lastTimeDiagnosisKeysFetched)}"
                 app:icon="@{@drawable/ic_risk_card_time_fetched}"
                 app:layout_constraintEnd_toEndOf="parent"
                 app:layout_constraintStart_toStartOf="parent"
@@ -224,6 +226,7 @@
                     app:layout_constraintTop_toTopOf="parent" />
 
                 <TextView
+                    style="@style/body2"
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     android:layout_marginTop="@dimen/spacing_small"
diff --git a/Corona-Warn-App/src/main/res/layout/include_risk_card_header.xml b/Corona-Warn-App/src/main/res/layout/include_risk_card_header.xml
index dbf30e558a1e75581206394ada4b0f9d10ee598c..ee0b7536a9eb58119714b7397015ccfb443d4eb5 100644
--- a/Corona-Warn-App/src/main/res/layout/include_risk_card_header.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_risk_card_header.xml
@@ -50,7 +50,7 @@
 
         <TextView
             android:id="@+id/risk_card_header_headline"
-            style="@style/cardHeadline"
+            style="@style/headline5"
             android:layout_width="0dp"
             android:layout_height="wrap_content"
             android:layout_marginEnd="@dimen/spacing_normal"
diff --git a/Corona-Warn-App/src/main/res/layout/include_risk_card_row.xml b/Corona-Warn-App/src/main/res/layout/include_risk_card_row.xml
index 86b08d0cf417ce2a41e03abc8aa34aab5b3a5d4e..5182c4d51e8bb5a754db454a7a92cda6a9729ca3 100644
--- a/Corona-Warn-App/src/main/res/layout/include_risk_card_row.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_risk_card_row.xml
@@ -39,7 +39,7 @@
 
         <TextView
             android:id="@+id/risk_card_row_body"
-            style="@style/cardText"
+            style="@style/subtitle"
             android:layout_width="0dp"
             android:layout_height="wrap_content"
             android:layout_marginStart="@dimen/spacing_small"
diff --git a/Corona-Warn-App/src/main/res/layout/include_risk_details_behavior_increased_risk.xml b/Corona-Warn-App/src/main/res/layout/include_risk_details_behavior_increased_risk.xml
index 7085f890b1c0411aeadf0083a353785a119cab70..32fe7197cf62d3fdf4901937c10477980d8eb3a9 100644
--- a/Corona-Warn-App/src/main/res/layout/include_risk_details_behavior_increased_risk.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_risk_details_behavior_increased_risk.xml
@@ -50,7 +50,7 @@
             android:layout_height="wrap_content"
             android:layout_marginTop="@dimen/spacing_small"
             app:body="@{@string/risk_details_behavior_body_contact_doctor}"
-            app:icon="@{@drawable/ic_risk_details_stethoscope}"
+            app:icon="@{@drawable/ic_risk_details_contact}"
             app:layout_constraintEnd_toEndOf="parent"
             app:layout_constraintStart_toStartOf="parent"
             app:layout_constraintTop_toBottomOf="@id/risk_details_behavior_stay_away"
@@ -68,7 +68,7 @@
 
             <TextView
                 android:id="@+id/risk_details_behavior_bullet_point_1"
-                style="@style/textMultiline"
+                style="@style/subtitle"
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:text="@string/risk_details_behavior_increased_body_1"
@@ -78,7 +78,7 @@
 
             <TextView
                 android:id="@+id/risk_details_behavior_bullet_point_2"
-                style="@style/textMultiline"
+                style="@style/subtitle"
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_tiny"
@@ -89,7 +89,7 @@
 
             <TextView
                 android:id="@+id/risk_details_behavior_bullet_point_3"
-                style="@style/textMultiline"
+                style="@style/subtitle"
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_tiny"
diff --git a/Corona-Warn-App/src/main/res/layout/include_risk_details_behavior_row.xml b/Corona-Warn-App/src/main/res/layout/include_risk_details_behavior_row.xml
index a49d6b9dadf75dcc52522cdf5205dfda527d4379..82bfcf512a4176334a8a3cb165d13b17b75c10a1 100644
--- a/Corona-Warn-App/src/main/res/layout/include_risk_details_behavior_row.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_risk_details_behavior_row.xml
@@ -24,22 +24,32 @@
         android:layout_width="match_parent"
         android:layout_height="wrap_content">
 
-        <ImageView
+        <androidx.constraintlayout.widget.ConstraintLayout
             android:id="@+id/risk_details_behavior_icon"
-            style="@style/icon"
-            android:layout_width="@dimen/icon_size_risk_details_behavior"
-            android:layout_height="@dimen/icon_size_risk_details_behavior"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
             android:background="@drawable/circle"
             android:backgroundTint="@{FormatterRiskHelper.formatBehaviorIconBackground(riskLevel)}"
-            android:importantForAccessibility="no"
-            android:src="@{icon}"
-            android:tint="@{FormatterRiskHelper.formatBehaviorIcon(riskLevel)}"
             app:layout_constraintBottom_toBottomOf="parent"
             app:layout_constraintStart_toStartOf="parent"
-            app:layout_constraintTop_toTopOf="parent" />
+            app:layout_constraintTop_toTopOf="parent">
+
+            <ImageView
+                style="@style/icon"
+                android:layout_width="@dimen/icon_size_risk_details_behavior"
+                android:layout_height="@dimen/icon_size_risk_details_behavior"
+                android:importantForAccessibility="no"
+                android:src="@{icon}"
+                android:tint="@{FormatterRiskHelper.formatBehaviorIcon(riskLevel)}"
+                android:layout_margin="@dimen/icon_margin_risk_details_behavior"
+                app:layout_constraintBottom_toBottomOf="parent"
+                app:layout_constraintEnd_toEndOf="parent"
+                app:layout_constraintStart_toStartOf="parent"
+                app:layout_constraintTop_toTopOf="parent" />
+        </androidx.constraintlayout.widget.ConstraintLayout>
 
         <TextView
-            style="@style/textMultiline"
+            style="@style/subtitle"
             android:layout_width="0dp"
             android:layout_height="wrap_content"
             android:layout_marginStart="@dimen/spacing_normal"
diff --git a/Corona-Warn-App/src/main/res/layout/include_row.xml b/Corona-Warn-App/src/main/res/layout/include_row.xml
index 2141885a816fc573fd054846137720c72e8a42c8..8de928fde488e8b11f2d44695253d15231578a62 100644
--- a/Corona-Warn-App/src/main/res/layout/include_row.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_row.xml
@@ -64,7 +64,7 @@
 
             <TextView
                 android:id="@+id/main_row_item_headline"
-                style="@style/textMultiline"
+                style="@style/subtitle"
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:text="@{title}"
diff --git a/Corona-Warn-App/src/main/res/layout/include_setting_row.xml b/Corona-Warn-App/src/main/res/layout/include_setting_row.xml
index 303bc36e88017eb7124aeb3ca29f0e1bdc4a3e64..42d3408f15d278881522970ed586bd45e6574ca9 100644
--- a/Corona-Warn-App/src/main/res/layout/include_setting_row.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_setting_row.xml
@@ -72,7 +72,7 @@
 
                 <TextView
                     android:id="@+id/settings_row_header_subtitle"
-                    style="@style/textLargeEmphasized"
+                    style="@style/subtitle"
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     android:text="@{subtitle}"
@@ -81,6 +81,7 @@
                     app:layout_constraintTop_toTopOf="parent" />
 
                 <TextView
+                    style="@style/body2Medium"
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     android:paddingTop="@dimen/spacing_mega_tiny"
@@ -93,6 +94,7 @@
 
             <TextView
                 android:id="@+id/settings_row_body"
+                style="@style/body2Medium"
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:paddingTop="@dimen/spacing_tiny"
diff --git a/Corona-Warn-App/src/main/res/layout/include_settings_switch_row.xml b/Corona-Warn-App/src/main/res/layout/include_settings_switch_row.xml
index f332d875ca7b850880c2677e1d477dd72a391277..1b8527107cbdad6a0e14a60936190d4bcde98542 100644
--- a/Corona-Warn-App/src/main/res/layout/include_settings_switch_row.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_settings_switch_row.xml
@@ -26,10 +26,6 @@
             name="statusText"
             type="String" />
 
-        <variable
-            name="body"
-            type="String" />
-
         <variable
             name="showDivider"
             type="Boolean" />
@@ -61,7 +57,7 @@
 
                 <TextView
                     android:id="@+id/settings_switch_row_header_subtitle"
-                    style="@style/textLargeEmphasized"
+                    style="@style/subtitle"
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     android:text="@{subtitle}"
@@ -71,6 +67,7 @@
 
                 <TextView
                     android:id="@+id/settings_switch_row_header_body"
+                    style="@style/body2Medium"
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     android:layout_marginTop="@dimen/spacing_mega_tiny"
@@ -105,26 +102,6 @@
             app:layout_constraintStart_toStartOf="@id/guideline_start"
             app:layout_constraintTop_toBottomOf="@+id/settings_switch_row" />
 
-        <androidx.constraintlayout.widget.ConstraintLayout
-            style="@style/row"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:visibility="@{FormatterHelper.formatVisibilityText(body)}"
-            app:layout_constraintEnd_toEndOf="parent"
-            app:layout_constraintStart_toStartOf="parent"
-            app:layout_constraintTop_toBottomOf="@+id/divider">
-
-            <TextView
-                android:layout_width="0dp"
-                android:layout_height="wrap_content"
-                android:layout_marginTop="@dimen/spacing_mega_tiny"
-                android:text="@{body}"
-                app:layout_constraintBottom_toBottomOf="parent"
-                app:layout_constraintEnd_toEndOf="parent"
-                app:layout_constraintStart_toStartOf="parent"
-                app:layout_constraintTop_toTopOf="parent" />
-        </androidx.constraintlayout.widget.ConstraintLayout>
-
         <androidx.constraintlayout.widget.Guideline
             android:id="@+id/guideline_start"
             android:layout_width="wrap_content"
diff --git a/Corona-Warn-App/src/main/res/layout/include_step_entry_simple_body.xml b/Corona-Warn-App/src/main/res/layout/include_step_entry_simple_body.xml
index 37b841fb07d730da89d63011ba747d3e96588c87..f1b938eca4dbfe08adb6740deacff6a13ce1e1dd 100644
--- a/Corona-Warn-App/src/main/res/layout/include_step_entry_simple_body.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_step_entry_simple_body.xml
@@ -7,7 +7,7 @@
 
     <TextView
         android:id="@+id/simple_step_entry_title"
-        style="@style/textTitle"
+        style="@style/headline6"
         android:layout_width="@dimen/match_constraint"
         android:layout_height="wrap_content"
         app:layout_constraintEnd_toEndOf="parent"
@@ -17,6 +17,7 @@
 
     <TextView
         android:id="@+id/simple_step_entry_body"
+        style="@style/subtitle"
         android:layout_width="@dimen/match_constraint"
         android:layout_height="wrap_content"
         android:layout_marginTop="@dimen/spacing_small"
diff --git a/Corona-Warn-App/src/main/res/layout/include_submission_contact.xml b/Corona-Warn-App/src/main/res/layout/include_submission_contact.xml
index 41d9b1a6bb33400587b06fc1d7c10d2436b5c3f2..6173a827915d96f3ad1cdacdead3e90c5885c996 100644
--- a/Corona-Warn-App/src/main/res/layout/include_submission_contact.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_submission_contact.xml
@@ -22,7 +22,7 @@
 
             <TextView
                 android:id="@+id/submission_contact_body"
-                style="@style/textMultiline"
+                style="@style/subtitle"
                 android:layout_width="@dimen/match_constraint"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_small"
@@ -33,7 +33,7 @@
 
             <TextView
                 android:id="@+id/submission_contact_headline"
-                style="@style/textTitle"
+                style="@style/headline5"
                 android:layout_width="@dimen/match_constraint"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_normal"
@@ -60,6 +60,7 @@
 
                     <TextView
                         android:id="@+id/submission_contact_step_1_body"
+                        style="@style/subtitle"
                         android:layout_width="@dimen/match_constraint"
                         android:layout_height="wrap_content"
                         android:layout_marginTop="@dimen/button_icon_margin"
@@ -71,18 +72,19 @@
 
                     <TextView
                         android:id="@+id/submission_contact_step_1_number"
-                        style="@style/textTitle"
+                        style="@style/headline5"
                         android:layout_width="@dimen/match_constraint"
                         android:layout_height="wrap_content"
                         android:layout_marginTop="@dimen/spacing_small"
                         android:text="@string/submission_contact_number"
-                        android:textColor="@color/textColorBlue"
+                        android:textColor="@color/colorTextTint"
                         app:layout_constraintEnd_toEndOf="parent"
                         app:layout_constraintStart_toStartOf="parent"
                         app:layout_constraintTop_toBottomOf="@id/submission_contact_step_1_body" />
 
                     <TextView
                         android:id="@+id/submission_contact_operating_hours_body"
+                        style="@style/body2"
                         android:layout_width="@dimen/match_constraint"
                         android:layout_height="wrap_content"
                         android:layout_marginTop="@dimen/spacing_small"
@@ -106,13 +108,14 @@
                 app:step_entry_icon="@drawable/ic_step_2">
 
                 <TextView
+                    style="@style/subtitle"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     android:text="@string/submission_contact_step_2_body" />
 
             </de.rki.coronawarnapp.ui.view.StepEntry>
 
-            <include layout="@layout/merge_guidelines_common" />
+            <include layout="@layout/merge_guidelines_side" />
 
         </androidx.constraintlayout.widget.ConstraintLayout>
 
diff --git a/Corona-Warn-App/src/main/res/layout/include_submission_done_card.xml b/Corona-Warn-App/src/main/res/layout/include_submission_done_card.xml
index fa69c4a3f311924e8e2451df9722de98152ff9b0..680fec8f67ce9f5b02c980ef20a64fe6bd9f282f 100644
--- a/Corona-Warn-App/src/main/res/layout/include_submission_done_card.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_submission_done_card.xml
@@ -8,7 +8,7 @@
 
         <TextView
             android:id="@+id/submission_done_card_title"
-            style="@style/textTitleLarger"
+            style="@style/headline5"
             android:layout_width="@dimen/match_constraint"
             android:layout_height="wrap_content"
             android:layout_marginStart="@dimen/spacing_normal"
@@ -48,6 +48,7 @@
             layout="@layout/include_submission_done_content"
             android:layout_width="@dimen/match_constraint"
             android:layout_height="wrap_content"
+            android:layout_marginTop="@dimen/spacing_normal"
             app:layout_constraintEnd_toEndOf="parent"
             app:layout_constraintStart_toStartOf="parent"
             app:layout_constraintTop_toBottomOf="@id/submission_done_card_illustration" />
diff --git a/Corona-Warn-App/src/main/res/layout/include_submission_done_content.xml b/Corona-Warn-App/src/main/res/layout/include_submission_done_content.xml
index a93ed5b0b1fc545a0b612af8a27021bcb17955d4..9946498cf8b0360480b729d83c7ea9301da3dec5 100644
--- a/Corona-Warn-App/src/main/res/layout/include_submission_done_content.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_submission_done_content.xml
@@ -13,7 +13,7 @@
 
         <TextView
             android:id="@+id/submission_done_text"
-            style="@style/textMultiline"
+            style="@style/subtitle"
             android:layout_width="@dimen/match_constraint"
             android:layout_height="wrap_content"
             android:text="@string/submission_done_body"
@@ -23,7 +23,7 @@
 
         <TextView
             android:id="@+id/submission_done_subtitle"
-            style="@style/textTitleLarger"
+            style="@style/headline5"
             android:layout_width="@dimen/match_constraint"
             android:layout_height="wrap_content"
             android:layout_marginTop="@dimen/spacing_normal"
@@ -33,13 +33,13 @@
             app:layout_constraintTop_toBottomOf="@+id/submission_done_text" />
 
         <include
-            android:id="@+id/submission_done_contact"
+            android:id="@+id/submission_done_contagious"
             layout="@layout/include_risk_details_behavior_row"
             android:layout_width="@dimen/match_constraint"
             android:layout_height="wrap_content"
             android:layout_marginTop="@dimen/spacing_normal"
-            app:body="@{@string/submission_done_contact}"
-            app:icon="@{@drawable/ic_risk_details_contact}"
+            app:body="@{@string/submission_done_contagious}"
+            app:icon="@{@drawable/ic_risk_card_contact}"
             app:layout_constraintEnd_toEndOf="@+id/guideline_end"
             app:layout_constraintStart_toStartOf="@+id/guideline_start"
             app:layout_constraintTop_toBottomOf="@+id/submission_done_subtitle"
@@ -55,7 +55,7 @@
             app:icon="@{@drawable/ic_risk_details_home}"
             app:layout_constraintEnd_toEndOf="@+id/guideline_end"
             app:layout_constraintStart_toStartOf="@+id/guideline_start"
-            app:layout_constraintTop_toBottomOf="@+id/submission_done_contact"
+            app:layout_constraintTop_toBottomOf="@+id/submission_done_contagious"
             app:riskLevel="@{RiskLevelConstants.INCREASED_RISK}" />
 
         <include
diff --git a/Corona-Warn-App/src/main/res/layout/include_submission_intro.xml b/Corona-Warn-App/src/main/res/layout/include_submission_intro.xml
index af6624e0114bde576dec6bd5d8e41fa01cf5be60..55360a3e72455ecd7611a83afddab585ca310582 100644
--- a/Corona-Warn-App/src/main/res/layout/include_submission_intro.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_submission_intro.xml
@@ -16,16 +16,17 @@
                 android:layout_width="@dimen/match_constraint"
                 android:layout_height="wrap_content"
                 android:importantForAccessibility="no"
-                android:src="@drawable/ic_submission_illustration_intro_a"
+                android:src="@drawable/ic_illustration_test"
                 app:layout_constraintEnd_toEndOf="parent"
                 app:layout_constraintStart_toStartOf="parent"
                 app:layout_constraintTop_toTopOf="parent" />
 
             <TextView
                 android:id="@+id/submission_intro_headline"
-                style="@style/textHeadline"
+                style="@style/headline4"
                 android:layout_width="@dimen/match_constraint"
                 android:layout_height="wrap_content"
+                android:layout_marginTop="@dimen/spacing_normal"
                 android:text="@string/submission_intro_headline"
                 app:layout_constraintEnd_toEndOf="@id/guideline_end"
                 app:layout_constraintStart_toStartOf="@id/guideline_start"
@@ -33,7 +34,7 @@
 
             <TextView
                 android:id="@+id/submission_intro_text"
-                style="@style/textMultiline"
+                style="@style/subtitle"
                 android:layout_width="@dimen/match_constraint"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_normal"
@@ -44,7 +45,7 @@
 
             <TextView
                 android:id="@+id/submission_intro_text_enum"
-                style="@style/textMultiline"
+                style="@style/subtitle"
                 android:layout_width="@dimen/match_constraint"
                 android:layout_height="wrap_content"
                 android:layout_marginStart="@dimen/spacing_normal"
diff --git a/Corona-Warn-App/src/main/res/layout/include_submission_positive_other_warning.xml b/Corona-Warn-App/src/main/res/layout/include_submission_positive_other_warning.xml
index 9b839fb34bb60cd22686b4d8777af2d9d83f7cae..9faffe421e6141197b0e53db8740c2ff28b44b44 100644
--- a/Corona-Warn-App/src/main/res/layout/include_submission_positive_other_warning.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_submission_positive_other_warning.xml
@@ -24,9 +24,10 @@
 
             <TextView
                 android:id="@+id/submission_positive_other_warning_headline"
-                style="@style/textTitleLarger"
+                style="@style/headline5"
                 android:layout_width="@dimen/match_constraint"
                 android:layout_height="wrap_content"
+                android:layout_marginTop="@dimen/spacing_normal"
                 android:text="@string/submission_positive_other_warning_headline"
                 app:layout_constraintEnd_toEndOf="@id/guideline_end"
                 app:layout_constraintStart_toStartOf="@id/guideline_start"
@@ -34,7 +35,7 @@
 
             <TextView
                 android:id="@+id/submission_positive_other_warning_text"
-                style="@style/textMultiline"
+                style="@style/subtitle"
                 android:layout_width="@dimen/match_constraint"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_normal"
diff --git a/Corona-Warn-App/src/main/res/layout/include_submission_status_card_content.xml b/Corona-Warn-App/src/main/res/layout/include_submission_status_card_content.xml
index d865fc4c82881333e4ce227de95b47b4a063abab..4a9eec4551092f6fd4288f17319c55c0401e67de 100644
--- a/Corona-Warn-App/src/main/res/layout/include_submission_status_card_content.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_submission_status_card_content.xml
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <layout xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:app="http://schemas.android.com/apk/res-auto">
+    xmlns:app="http://schemas.android.com/apk/res-auto"
+    xmlns:tools="http://schemas.android.com/tools">
 
     <data>
 
@@ -19,56 +20,69 @@
 
         <TextView
             android:id="@+id/submission_status_card_content_title"
-            style="@style/textTitleLarger"
+            style="@style/headline5"
             android:layout_width="@dimen/match_constraint"
             android:layout_height="wrap_content"
+            android:layout_marginEnd="@dimen/spacing_tiny"
             android:text="@{FormatterSubmissionHelper.formatSubmissionStatusCardContentTitleText(deviceUIState)}"
-            app:layout_constraintEnd_toStartOf="@+id/submission_status_card_unregistered_icon"
+            app:layout_constraintEnd_toStartOf="@+id/submission_status_card_content_icon"
             app:layout_constraintStart_toStartOf="parent"
-            app:layout_constraintTop_toTopOf="parent" />
+            app:layout_constraintTop_toTopOf="parent"
+            tools:text="@string/submission_status_card_title_available" />
 
         <TextView
             android:id="@+id/submission_status_card_content_subtitle"
-            style="@style/textSubTitle"
+            style="@style/subtitleMedium"
             android:layout_width="@dimen/match_constraint"
             android:layout_height="wrap_content"
-            android:layout_marginVertical="@dimen/spacing_tiny"
-            android:text="@{FormatterSubmissionHelper.formatTestResultStatusText(deviceUIState)}"
-            android:textColor="@{FormatterSubmissionHelper.formatTestResultStatusColor(deviceUIState)}"
+            android:layout_marginTop="@dimen/spacing_normal"
+            android:layout_marginEnd="@dimen/spacing_tiny"
+            android:text="@{FormatterSubmissionHelper.formatSubmissionStatusCardSubtitleText(deviceUIState)}"
+            android:textColor="@{FormatterSubmissionHelper.formatSubmissionStatusCardSubtitleColor(deviceUIState)}"
             android:visibility="@{FormatterSubmissionHelper.formatSubmissionStatusCardContentStatusTextVisible(deviceUIState)}"
-            app:layout_constraintBottom_toTopOf="@+id/submission_status_card_content_body"
-            app:layout_constraintEnd_toStartOf="@+id/submission_status_card_unregistered_icon"
-            app:layout_constraintStart_toStartOf="@+id/submission_status_card_content_title"
-            app:layout_constraintTop_toBottomOf="@+id/submission_status_card_content_title" />
+            app:layout_constraintEnd_toStartOf="@+id/submission_status_card_content_icon"
+            app:layout_constraintStart_toStartOf="parent"
+            app:layout_constraintTop_toBottomOf="@+id/submission_status_card_content_title"
+            tools:text="@string/test_result_card_status_positive" />
 
         <TextView
             android:id="@+id/submission_status_card_content_body"
-            style="@style/textMultiline"
+            style="@style/subtitle"
             android:layout_width="@dimen/match_constraint"
-            android:layout_marginBottom="@dimen/spacing_normal"
             android:layout_height="wrap_content"
+            android:layout_marginTop="@dimen/spacing_tiny"
+            android:layout_marginEnd="@dimen/spacing_tiny"
             android:text="@{FormatterSubmissionHelper.formatSubmissionStatusCardContentBodyText(deviceUIState)}"
-            app:layout_constraintBottom_toTopOf="@+id/submission_status_card_content_button"
-            app:layout_constraintEnd_toStartOf="@+id/submission_status_card_unregistered_icon"
-            app:layout_constraintStart_toStartOf="@+id/submission_status_card_content_title" />
+            app:layout_constraintEnd_toStartOf="@+id/submission_status_card_content_icon"
+            app:layout_constraintStart_toStartOf="parent"
+            app:layout_constraintTop_toBottomOf="@id/submission_status_card_content_subtitle"
+            tools:text="@string/submission_status_card_body_negative" />
+
+        <androidx.constraintlayout.widget.Barrier
+            android:id="@+id/submission_status_card_content_barrier"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            app:barrierDirection="bottom"
+            app:constraint_referenced_ids="submission_status_card_content_body,submission_status_card_content_icon" />
 
         <Button
             android:id="@+id/submission_status_card_content_button"
+            style="@style/buttonPrimary"
             android:layout_width="@dimen/match_constraint"
             android:layout_height="wrap_content"
-            style="@style/buttonPrimary"
             android:layout_marginTop="@dimen/spacing_normal"
-            android:text="@{FormatterSubmissionHelper.formatSubmissionStatusCardContentButtonText(deviceUIState)}"
+            android:text="@string/submission_status_card_button_show_results"
             app:layout_constraintEnd_toEndOf="parent"
             app:layout_constraintStart_toStartOf="parent"
-            app:layout_constraintTop_toBottomOf="@+id/submission_status_card_unregistered_icon" />
+            app:layout_constraintTop_toBottomOf="@+id/submission_status_card_content_barrier" />
 
         <ImageView
-            android:id="@+id/submission_status_card_unregistered_icon"
+            android:id="@+id/submission_status_card_content_icon"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
-            app:layout_constraintEnd_toEndOf="parent"
             android:background="@{FormatterSubmissionHelper.formatSubmissionStatusCardContentIcon(deviceUIState)}"
-            app:layout_constraintTop_toTopOf="@+id/submission_status_card_content_title" />
+            app:layout_constraintEnd_toEndOf="parent"
+            app:layout_constraintTop_toTopOf="parent"
+            tools:src="@drawable/ic_main_illustration_negative" />
     </androidx.constraintlayout.widget.ConstraintLayout>
 </layout>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/layout/include_submission_status_card_fetching.xml b/Corona-Warn-App/src/main/res/layout/include_submission_status_card_fetching.xml
index f1318cf35f7d4aa00b87faeef9a5e01d6ff4c40e..3a60545b633e8732001ba19e10314861727f4ca6 100644
--- a/Corona-Warn-App/src/main/res/layout/include_submission_status_card_fetching.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_submission_status_card_fetching.xml
@@ -10,7 +10,7 @@
 
         <TextView
             android:id="@+id/submission_status_card_fetching_title"
-            style="@style/textTitleLarger"
+            style="@style/headline5"
             android:layout_width="@dimen/match_constraint"
             android:layout_height="wrap_content"
             android:text="@string/submission_status_card_title_fetching"
@@ -30,7 +30,7 @@
 
         <TextView
             android:id="@+id/submission_status_card_fetching_body"
-            style="@style/textMultiline"
+            style="@style/subtitle"
             android:layout_height="wrap_content"
             android:layout_marginStart="@dimen/spacing_normal"
             android:layout_width="@dimen/match_constraint"
diff --git a/Corona-Warn-App/src/main/res/layout/include_submission_status_card_positive.xml b/Corona-Warn-App/src/main/res/layout/include_submission_status_card_positive.xml
index ee1cbe905dbf90f8cde192149f0adfafe99a6a5c..1f6527c6f622a63117abb506d048c76d3de4cf8e 100644
--- a/Corona-Warn-App/src/main/res/layout/include_submission_status_card_positive.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_submission_status_card_positive.xml
@@ -30,61 +30,69 @@
 
             <TextView
                 android:id="@+id/submission_status_card_positive_title"
-                style="@style/textTitleLarger"
+                style="@style/headline5"
                 android:layout_width="@dimen/match_constraint"
                 android:layout_height="wrap_content"
-                android:text="@string/submission_status_card_positive_result_title"
+                android:text="@string/submission_status_card_title_positive"
                 app:layout_constraintEnd_toEndOf="parent"
                 app:layout_constraintStart_toStartOf="parent"
                 app:layout_constraintTop_toTopOf="parent" />
 
             <include
                 android:id="@+id/submission_status_card_positive_result_card"
-                layout="@layout/include_test_result_card"
+                layout="@layout/include_test_result_card_positive"
                 android:layout_width="match_parent"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_normal"
                 app:layout_constraintEnd_toEndOf="parent"
                 app:layout_constraintStart_toStartOf="parent"
-                app:layout_constraintTop_toBottomOf="@+id/submission_status_card_positive_title"
-                app:registerDate="@{registerDate}"
-                app:deviceUIState="@{DeviceUIState.PAIRED_POSITIVE}" />
+                app:layout_constraintTop_toBottomOf="@+id/submission_status_card_positive_title" />
+
+            <include
+                android:id="@+id/divider"
+                layout="@layout/include_divider"
+                android:layout_width="0dp"
+                android:layout_height="wrap_content"
+                android:layout_marginTop="@dimen/spacing_normal"
+                app:layout_constraintEnd_toEndOf="parent"
+                app:layout_constraintStart_toStartOf="parent"
+                app:layout_constraintTop_toBottomOf="@+id/submission_status_card_positive_result_card" />
 
             <TextView
                 android:id="@+id/submission_status_card_positive_result_subtitle"
-                style="@style/textSubTitle"
+                style="@style/headline5"
                 android:layout_width="@dimen/match_constraint"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_normal"
                 android:text="@string/submission_status_card_positive_result_subtitle"
                 app:layout_constraintEnd_toEndOf="parent"
                 app:layout_constraintStart_toStartOf="parent"
-                app:layout_constraintTop_toBottomOf="@+id/submission_status_card_positive_result_card" />
+                app:layout_constraintTop_toBottomOf="@+id/divider" />
 
             <include
-                android:id="@+id/submission_status_card_positive_result_contagious"
+                android:id="@+id/submission_status_card_positive_result_contact"
                 layout="@layout/include_risk_details_behavior_row"
                 android:layout_width="@dimen/match_constraint"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_normal"
-                app:body="@{@string/submission_status_card_positive_result_contagious}"
-                app:icon="@{@drawable/ic_risk_card_contact_increased}"
+                app:body="@{@string/submission_status_card_positive_result_contact}"
+                app:icon="@{@drawable/ic_risk_details_contact}"
                 app:layout_constraintEnd_toEndOf="parent"
                 app:layout_constraintStart_toStartOf="parent"
                 app:layout_constraintTop_toBottomOf="@+id/submission_status_card_positive_result_subtitle"
                 app:riskLevel="@{RiskLevelConstants.INCREASED_RISK}" />
 
             <include
-                android:id="@+id/submission_status_card_positive_result_isolate"
+                android:id="@+id/submission_status_card_positive_result_contagious"
                 layout="@layout/include_risk_details_behavior_row"
                 android:layout_width="@dimen/match_constraint"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_normal"
-                app:body="@{@string/submission_status_card_positive_result_isolate}"
+                app:body="@{@string/submission_status_card_positive_result_contagious}"
                 app:icon="@{@drawable/ic_risk_details_home}"
                 app:layout_constraintEnd_toEndOf="parent"
                 app:layout_constraintStart_toStartOf="parent"
-                app:layout_constraintTop_toBottomOf="@+id/submission_status_card_positive_result_contagious"
+                app:layout_constraintTop_toBottomOf="@+id/submission_status_card_positive_result_contact"
                 app:riskLevel="@{RiskLevelConstants.INCREASED_RISK}" />
 
             <include
@@ -97,7 +105,7 @@
                 app:icon="@{@drawable/ic_risk_details_share}"
                 app:layout_constraintEnd_toEndOf="parent"
                 app:layout_constraintStart_toStartOf="parent"
-                app:layout_constraintTop_toBottomOf="@+id/submission_status_card_positive_result_isolate"
+                app:layout_constraintTop_toBottomOf="@+id/submission_status_card_positive_result_contagious"
                 app:riskLevel="@{RiskLevelConstants.INCREASED_RISK}" />
 
             <Button
@@ -106,7 +114,7 @@
                 android:layout_width="@dimen/match_constraint"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/spacing_normal"
-                android:text="@string/submission_status_card_positive_result_show_button"
+                android:text="@string/submission_test_result_positive_continue_button"
                 app:layout_constraintEnd_toEndOf="parent"
                 app:layout_constraintStart_toStartOf="parent"
                 app:layout_constraintTop_toBottomOf="@+id/submission_status_card_positive_result_share" />
diff --git a/Corona-Warn-App/src/main/res/layout/include_submission_status_card_unregistered.xml b/Corona-Warn-App/src/main/res/layout/include_submission_status_card_unregistered.xml
index 275dda56f682daf33b3e09f659f93dff14e2020a..27465e371f13281c8dd7bc28bd6c2b49e10f1525 100644
--- a/Corona-Warn-App/src/main/res/layout/include_submission_status_card_unregistered.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_submission_status_card_unregistered.xml
@@ -10,7 +10,7 @@
 
         <TextView
             android:id="@+id/submission_status_card_unregistered_title"
-            style="@style/textTitleLarger"
+            style="@style/headline5"
             android:layout_width="@dimen/match_constraint"
             android:layout_height="wrap_content"
             android:layout_marginEnd="@dimen/spacing_small"
@@ -22,7 +22,7 @@
 
         <TextView
             android:id="@+id/submission_status_card_unregistered_body"
-            style="@style/textMultiline"
+            style="@style/subtitle"
             android:layout_width="@dimen/match_constraint"
             android:layout_height="wrap_content"
             android:layout_marginTop="@dimen/spacing_normal"
diff --git a/Corona-Warn-App/src/main/res/layout/include_submission_test_result.xml b/Corona-Warn-App/src/main/res/layout/include_submission_test_result.xml
new file mode 100644
index 0000000000000000000000000000000000000000..f28092392eed69dc5be4c94f37d616048e01bffe
--- /dev/null
+++ b/Corona-Warn-App/src/main/res/layout/include_submission_test_result.xml
@@ -0,0 +1,95 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layout xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:app="http://schemas.android.com/apk/res-auto">
+
+    <data>
+
+        <import type="de.rki.coronawarnapp.util.formatter.FormatterSubmissionHelper" />
+
+        <variable
+            name="submissionViewModel"
+            type="de.rki.coronawarnapp.ui.viewmodel.SubmissionViewModel" />
+    </data>
+
+
+    <ScrollView
+        style="@style/fadingScrollView"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent">
+
+        <androidx.constraintlayout.widget.ConstraintLayout
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content">
+
+            <include
+                android:id="@+id/submission_test_result_card"
+                layout="@layout/include_test_result_card"
+                android:layout_width="@dimen/match_constraint"
+                android:layout_height="wrap_content"
+                android:layout_marginTop="@dimen/spacing_small"
+                app:deviceUIState="@{submissionViewModel.deviceUiState}"
+                app:layout_constraintEnd_toEndOf="@+id/guideline_end"
+                app:layout_constraintStart_toStartOf="@+id/guideline_start"
+                app:layout_constraintTop_toTopOf="parent"
+                app:registerDate="@{submissionViewModel.testResultReceivedDate}" />
+
+            <TextView
+                android:id="@+id/submission_test_result_subtitle"
+                style="@style/headline5"
+                android:layout_width="@dimen/match_constraint"
+                android:layout_height="wrap_content"
+                android:layout_marginTop="@dimen/spacing_normal"
+                android:text="@string/submission_test_result_subtitle"
+                app:layout_constraintEnd_toEndOf="@+id/guideline_end"
+                app:layout_constraintStart_toStartOf="@+id/guideline_start"
+                app:layout_constraintTop_toBottomOf="@+id/submission_test_result_card" />
+
+            <include
+                android:id="@+id/submission_test_result_pending_steps"
+                layout="@layout/include_test_result_pending_steps"
+                android:layout_width="@dimen/match_constraint"
+                android:layout_height="wrap_content"
+                android:layout_marginTop="@dimen/spacing_normal"
+                android:visibility="@{FormatterSubmissionHelper.formatTestResultPendingStepsVisible(submissionViewModel.deviceUiState)}"
+                app:layout_constraintEnd_toEndOf="@+id/guideline_end"
+                app:layout_constraintStart_toStartOf="@+id/guideline_start"
+                app:layout_constraintTop_toBottomOf="@+id/submission_test_result_subtitle" />
+
+            <include
+                android:id="@+id/submission_test_result_negative_steps"
+                layout="@layout/include_test_result_negative_steps"
+                android:layout_width="@dimen/match_constraint"
+                android:layout_height="wrap_content"
+                android:layout_marginTop="@dimen/spacing_normal"
+                android:visibility="@{FormatterSubmissionHelper.formatTestResultNegativeStepsVisible(submissionViewModel.deviceUiState)}"
+                app:layout_constraintEnd_toEndOf="@+id/guideline_end"
+                app:layout_constraintStart_toStartOf="@+id/guideline_start"
+                app:layout_constraintTop_toBottomOf="@+id/submission_test_result_subtitle" />
+
+            <include
+                android:id="@+id/submission_test_result_positive_steps"
+                layout="@layout/include_test_result_positive_steps"
+                android:layout_width="@dimen/match_constraint"
+                android:layout_height="wrap_content"
+                android:layout_marginTop="@dimen/spacing_normal"
+                android:visibility="@{FormatterSubmissionHelper.formatTestResultPositiveStepsVisible(submissionViewModel.deviceUiState)}"
+                app:layout_constraintEnd_toEndOf="@+id/guideline_end"
+                app:layout_constraintStart_toStartOf="@+id/guideline_start"
+                app:layout_constraintTop_toBottomOf="@+id/submission_test_result_subtitle" />
+
+            <include
+                android:id="@+id/submission_test_result_invalid_steps"
+                layout="@layout/include_test_result_invalid_steps"
+                android:layout_width="@dimen/match_constraint"
+                android:layout_height="wrap_content"
+                android:layout_marginTop="@dimen/spacing_normal"
+                android:visibility="@{FormatterSubmissionHelper.formatTestResultInvalidStepsVisible(submissionViewModel.deviceUiState)}"
+                app:layout_constraintEnd_toEndOf="@+id/guideline_end"
+                app:layout_constraintStart_toStartOf="@+id/guideline_start"
+                app:layout_constraintTop_toBottomOf="@+id/submission_test_result_subtitle" />
+
+            <include layout="@layout/merge_guidelines_side" />
+
+        </androidx.constraintlayout.widget.ConstraintLayout>
+    </ScrollView>
+</layout>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/layout/include_test_result_card.xml b/Corona-Warn-App/src/main/res/layout/include_test_result_card.xml
index 4bf8e10242f33c9f3fc91249971396d24b6a889a..ef96da3c6c78e720043dee63e49bd127ee985d4a 100644
--- a/Corona-Warn-App/src/main/res/layout/include_test_result_card.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_test_result_card.xml
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <layout xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:app="http://schemas.android.com/apk/res-auto">
+    xmlns:app="http://schemas.android.com/apk/res-auto"
+    xmlns:tools="http://schemas.android.com/tools">
 
     <data>
         <import type="de.rki.coronawarnapp.util.formatter.FormatterSubmissionHelper" />
@@ -16,88 +17,53 @@
     <androidx.constraintlayout.widget.ConstraintLayout
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
-        android:background="@color/colorGreyLight">
+        android:background="@color/colorSurface2"
+        android:padding="@dimen/card_padding">
 
-        <androidx.constraintlayout.widget.ConstraintLayout
-            android:layout_width="match_parent"
-            android:layout_height="@dimen/test_result_card_body_height"
-            android:layout_margin="@dimen/card_padding"
-            app:layout_constraintBottom_toBottomOf="parent"
-            app:layout_constraintEnd_toEndOf="parent"
+        <TextView
+            android:id="@+id/test_result_card_headline"
+            style="@style/body2"
+            android:layout_width="@dimen/match_constraint"
+            android:layout_height="wrap_content"
+            android:layout_marginEnd="@dimen/spacing_tiny"
+            android:text="@string/test_result_card_headline"
+            app:layout_constraintEnd_toStartOf="@id/test_result_card_status_icon"
             app:layout_constraintStart_toStartOf="parent"
-            app:layout_constraintTop_toTopOf="parent">
-
-            <ImageView
-                android:id="@+id/test_result_card_status_icon"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                app:layout_constraintBottom_toBottomOf="parent"
-                android:background="@{FormatterSubmissionHelper.formatTestStatusIcon(deviceUIState)}"
-                app:layout_constraintEnd_toEndOf="parent" />
-
-            <TextView
-                android:id="@+id/test_result_card_headline"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:text="@string/test_result_card_headline"
-                style="@style/textMultiline"
-                app:layout_constraintStart_toStartOf="parent"
-                app:layout_constraintTop_toTopOf="parent" />
-
-            <TextView
-                android:id="@+id/test_result_card_virus_name"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                style="@style/testResultCardLargeText"
-                android:text="@string/test_result_card_virus_name_text"
-                android:visibility="@{FormatterSubmissionHelper.formatTestResultVirusNameTextVisible(deviceUIState)}"
-                app:layout_constraintStart_toStartOf="parent"
-                app:layout_constraintTop_toBottomOf="@+id/test_result_card_headline" />
+            app:layout_constraintTop_toTopOf="parent" />
 
-            <TextView
-                android:id="@+id/test_result_card_invalid_status_text"
-                style="@style/testResultCardLargeText"
-                android:layout_height="wrap_content"
-                android:layout_width="@dimen/match_constraint"
-                android:text="@string/test_result_card_status_invalid"
-                android:layout_marginEnd="@dimen/spacing_large"
-                android:visibility="@{FormatterSubmissionHelper.formatTestResultInvalidStatusTextVisible(deviceUIState)}"
-                app:layout_constraintEnd_toStartOf="@+id/test_result_card_status_icon"
-                app:layout_constraintStart_toStartOf="parent"
-                app:layout_constraintTop_toBottomOf="@+id/test_result_card_headline" />
-
-            <TextView
-                android:id="@+id/test_result_card_pending_status_text"
-                style="@style/testResultCardLargeText"
-                android:layout_width="@dimen/match_constraint"
-                android:layout_height="wrap_content"
-                android:layout_marginEnd="@dimen/spacing_large"
-                android:text="@string/test_result_card_status_pending"
-                android:visibility="@{FormatterSubmissionHelper.formatTestResultPendingStatusTextVisible(deviceUIState)}"
-                app:layout_constraintEnd_toStartOf="@+id/test_result_card_status_icon"
-                app:layout_constraintStart_toStartOf="parent"
-                app:layout_constraintTop_toBottomOf="@+id/test_result_card_headline" />
+        <TextView
+            android:id="@+id/test_result_card_content"
+            style="@style/headline5"
+            android:layout_width="@dimen/match_constraint"
+            android:layout_height="wrap_content"
+            android:layout_marginEnd="@dimen/spacing_tiny"
+            android:text="@{FormatterSubmissionHelper.formatTestResultCardContent(deviceUIState)}"
+            app:layout_constraintEnd_toStartOf="@id/test_result_card_status_icon"
+            app:layout_constraintStart_toStartOf="parent"
+            app:layout_constraintTop_toBottomOf="@id/test_result_card_headline"
+            tools:text="SARS-CoV-2 Negativ" />
 
-            <TextView
-                android:id="@+id/test_result_card_status_text"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                style="@style/testResultCardLargeText"
-                android:text="@{FormatterSubmissionHelper.formatTestResultStatusText(deviceUIState)}"
-                android:textColor="@{FormatterSubmissionHelper.formatTestResultStatusColor(deviceUIState)}"
-                android:visibility="@{FormatterSubmissionHelper.formatTestResultStatusTextVisible(deviceUIState)}"
-                app:layout_constraintStart_toStartOf="parent"
-                app:layout_constraintTop_toBottomOf="@+id/test_result_card_virus_name" />
+        <ImageView
+            android:id="@+id/test_result_card_status_icon"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:background="@{FormatterSubmissionHelper.formatTestStatusIcon(deviceUIState)}"
+            app:layout_constraintEnd_toEndOf="parent"
+            app:layout_constraintTop_toTopOf="parent"
+            tools:src="@drawable/ic_main_illustration_negative" />
 
-            <TextView
-                android:id="@+id/test_result_card_registered_at_text"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:text="@{FormatterSubmissionHelper.formatTestResultRegisteredAtText(registerDate)}"
-                style="@style/textMultiline"
-                app:layout_constraintBottom_toBottomOf="parent"
-                app:layout_constraintStart_toStartOf="parent" />
-        </androidx.constraintlayout.widget.ConstraintLayout>
+        <TextView
+            android:id="@+id/test_result_card_registered_at_text"
+            style="@style/body2"
+            android:layout_width="@dimen/match_constraint"
+            android:layout_height="wrap_content"
+            android:layout_marginTop="@dimen/spacing_normal"
+            android:layout_marginEnd="@dimen/spacing_tiny"
+            android:text="@{FormatterSubmissionHelper.formatTestResultRegisteredAtText(registerDate)}"
+            app:layout_constraintEnd_toStartOf="@id/test_result_card_status_icon"
+            app:layout_constraintStart_toStartOf="parent"
+            app:layout_constraintTop_toBottomOf="@id/test_result_card_content"
+            tools:text="@string/test_result_card_registered_at_text" />
 
     </androidx.constraintlayout.widget.ConstraintLayout>
 </layout>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/layout/include_test_result_card_positive.xml b/Corona-Warn-App/src/main/res/layout/include_test_result_card_positive.xml
new file mode 100644
index 0000000000000000000000000000000000000000..86fb1d367f36b6a6585e9e3f2c8ca70e57f8c80d
--- /dev/null
+++ b/Corona-Warn-App/src/main/res/layout/include_test_result_card_positive.xml
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layout xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:app="http://schemas.android.com/apk/res-auto"
+    xmlns:tools="http://schemas.android.com/tools">
+
+    <androidx.constraintlayout.widget.ConstraintLayout
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content">
+
+        <TextView
+            android:id="@+id/test_result_card_positive_title"
+            style="@style/headline6"
+            android:layout_width="@dimen/match_constraint"
+            android:layout_height="wrap_content"
+            android:layout_marginEnd="@dimen/spacing_tiny"
+            android:text="@string/submission_test_result_card_positive_title"
+            app:layout_constraintEnd_toStartOf="@id/test_result_card_positive_icon"
+            app:layout_constraintStart_toStartOf="parent"
+            app:layout_constraintTop_toTopOf="parent" />
+
+        <ImageView
+            android:id="@+id/test_result_card_positive_icon"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:background="@drawable/ic_test_result_illustration_positive"
+            app:layout_constraintEnd_toEndOf="parent"
+            app:layout_constraintTop_toTopOf="parent"
+            tools:src="@drawable/ic_test_result_illustration_positive" />
+
+        <TextView
+            android:id="@+id/test_result_card_positive_body"
+            style="@style/body2"
+            android:layout_width="@dimen/match_constraint"
+            android:layout_height="wrap_content"
+            android:layout_marginTop="@dimen/spacing_normal"
+            android:layout_marginEnd="@dimen/spacing_tiny"
+            android:text="@string/submission_test_result_card_positive_body"
+            app:layout_constraintEnd_toStartOf="@id/test_result_card_positive_icon"
+            app:layout_constraintStart_toStartOf="parent"
+            app:layout_constraintTop_toBottomOf="@id/test_result_card_positive_title" />
+
+    </androidx.constraintlayout.widget.ConstraintLayout>
+</layout>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/layout/include_tracing_status_card.xml b/Corona-Warn-App/src/main/res/layout/include_tracing_status_card.xml
index 13f9ddcf6f5961a6d0babd1a645d4fa447a157e4..2523df6dfe468e90fb211da42ac66d5816012562 100644
--- a/Corona-Warn-App/src/main/res/layout/include_tracing_status_card.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_tracing_status_card.xml
@@ -47,7 +47,7 @@
 
             <TextView
                 android:id="@+id/tracing_status_card_header_headline"
-                style="@style/textLargeEmphasized"
+                style="@style/headline6"
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:layout_marginEnd="@dimen/spacing_small"
@@ -59,7 +59,6 @@
 
             <ImageView
                 android:id="@+id/tracing_status_card_header_icon"
-                style="@style/iconTracingStatus"
                 android:layout_width="@dimen/icon_size_main_card_end"
                 android:layout_height="@dimen/icon_size_main_card_end"
                 android:importantForAccessibility="no"
@@ -73,6 +72,7 @@
 
         <TextView
             android:id="@+id/tracing_status_card_body"
+            style="@style/subtitle"
             android:layout_width="@dimen/match_constraint"
             android:layout_height="wrap_content"
             android:layout_marginTop="@dimen/spacing_tiny"
diff --git a/Corona-Warn-App/src/main/res/layout/merge_guidelines_common.xml b/Corona-Warn-App/src/main/res/layout/merge_guidelines_common.xml
deleted file mode 100644
index 4ddf477443ecbcfe7c9c579b23c29976f9e383a8..0000000000000000000000000000000000000000
--- a/Corona-Warn-App/src/main/res/layout/merge_guidelines_common.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layout>
-
-    <merge xmlns:android="http://schemas.android.com/apk/res/android"
-        xmlns:app="http://schemas.android.com/apk/res-auto">
-
-        <androidx.constraintlayout.widget.Guideline
-            android:id="@+id/guideline_top"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:orientation="horizontal"
-            app:layout_constraintGuide_begin="@dimen/guideline_top" />
-
-        <androidx.constraintlayout.widget.Guideline
-            android:id="@+id/guideline_start"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:orientation="vertical"
-            app:layout_constraintGuide_begin="@dimen/guideline_start" />
-
-        <androidx.constraintlayout.widget.Guideline
-            android:id="@+id/guideline_end"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:orientation="vertical"
-            app:layout_constraintGuide_end="@dimen/guideline_end" />
-
-    </merge>
-
-</layout>
diff --git a/Corona-Warn-App/src/main/res/layout/view_circle_progress.xml b/Corona-Warn-App/src/main/res/layout/view_circle_progress.xml
index d530834bfdf2d1ff098c99dda184adc83bceb621..d8440ecb3aa742f0bf27223988f09ac6a89b5caf 100644
--- a/Corona-Warn-App/src/main/res/layout/view_circle_progress.xml
+++ b/Corona-Warn-App/src/main/res/layout/view_circle_progress.xml
@@ -7,6 +7,7 @@
 
             <TextView
                 android:id="@+id/circle_progress_body"
+                style="@style/body2Medium"
                 android:layout_width="wrap_content"
                 android:layout_height="wrap_content"
                 app:layout_constraintBottom_toBottomOf="parent"
@@ -20,7 +21,7 @@
                 android:layout_height="wrap_content"
                 android:contentDescription="Sie haben alle tage erfasst"
                 android:src="@drawable/ic_risk_card_saved_days"
-                android:tint="@color/colorPrimary"
+                android:tint="@color/colorAccentTintIcon"
                 app:layout_constraintBottom_toBottomOf="parent"
                 app:layout_constraintEnd_toEndOf="parent"
                 app:layout_constraintStart_toStartOf="parent"
diff --git a/Corona-Warn-App/src/main/res/layout/view_step_entry.xml b/Corona-Warn-App/src/main/res/layout/view_step_entry.xml
index bcde333ba9cd008322bad8be87fb41f63a123b07..ffaaca906aab9c234ff17e92dfded7e547111243 100644
--- a/Corona-Warn-App/src/main/res/layout/view_step_entry.xml
+++ b/Corona-Warn-App/src/main/res/layout/view_step_entry.xml
@@ -38,7 +38,7 @@
             android:id="@+id/step_entry_line"
             android:layout_width="@dimen/test_result_step_progress_line_width"
             android:layout_height="@dimen/match_constraint"
-            android:background="@color/colorGreyLight"
+            android:background="@color/colorSurface2"
             app:layout_constraintBottom_toBottomOf="@+id/step_entry_placeholder"
             app:layout_constraintEnd_toEndOf="@id/step_entry_icon"
             app:layout_constraintStart_toStartOf="@id/step_entry_icon"
diff --git a/Corona-Warn-App/src/main/res/navigation/nav_graph.xml b/Corona-Warn-App/src/main/res/navigation/nav_graph.xml
index 6ae74c712247c2da218d09b2a5839ae8d55d201a..e0b293bc802d037cc8ebb189da1553815a767e56 100644
--- a/Corona-Warn-App/src/main/res/navigation/nav_graph.xml
+++ b/Corona-Warn-App/src/main/res/navigation/nav_graph.xml
@@ -160,17 +160,6 @@
         tools:layout="@layout/fragment_information_technical" />
 
     <!-- Submission -->
-    <dialog
-        android:id="@+id/submissionSuccessDialogFragment"
-        android:name="de.rki.coronawarnapp.ui.submission.SubmissionSuccessDialogFragment"
-        android:label="SubmissionSuccessDialogFragment">
-        <action
-            android:id="@+id/action_submissionSuccessDialogFragment_to_mainFragment"
-            app:destination="@id/mainFragment"
-            app:popUpTo="@+id/mainFragment"
-            app:popUpToInclusive="true" />
-    </dialog>
-
     <fragment
         android:id="@+id/testForAPIFragment"
         android:name="de.rki.coronawarnapp.TestForAPIFragment"
@@ -223,9 +212,6 @@
         android:name="de.rki.coronawarnapp.ui.submission.SubmissionTestResultFragment"
         android:label="fragment_submission_result"
         tools:layout="@layout/fragment_submission_test_result">
-        <action
-            android:id="@+id/action_submissionResultFragment_to_submissionSuccessDialogFragment"
-            app:destination="@id/submissionSuccessDialogFragment" />
         <action
             android:id="@+id/action_submissionResultFragment_to_mainFragment"
             app:destination="@id/mainFragment"
diff --git a/Corona-Warn-App/src/main/res/values-night/colors.xml b/Corona-Warn-App/src/main/res/values-night/colors.xml
index 6a95e8dcce64d4ef75ceb2f34543982e4bf55833..aa86c95574cd0fbfc80a6d6fdca97aeb377ebe52 100644
--- a/Corona-Warn-App/src/main/res/values-night/colors.xml
+++ b/Corona-Warn-App/src/main/res/values-night/colors.xml
@@ -9,6 +9,7 @@
     <!-- Backgrounds and Separators -->
     <color name="colorBackground">#000000</color>
     <color name="colorSurface1">#232324</color>
+    <color name="colorSurface1Pressed">#39393A</color>
     <color name="colorSurface2">#434445</color>
     <color name="colorHairline">#4DFFFFFF</color>
 
@@ -22,64 +23,22 @@
     <color name="colorTextSemanticNeutral">#B8C8D9</color>
     <color name="colorTextTint">#83D2F2</color>
 
-    <!-- Accent -->
-    <color name="colorAccentTintButton">#007FAD</color>
-    <color name="colorAccentTintIcon">#83D2F2</color>
-
     <!-- Semantic -->
     <color name="colorSemanticHighRisk">#C4314A</color>
+    <color name="colorSemanticHighRiskPressed">#CA465C</color>
     <color name="colorSemanticLowRisk">#378250</color>
+    <color name="colorSemanticLowRiskPressed">#378250</color>
     <color name="colorSemanticNeutralRisk">#5D6E80</color>
+    <color name="colorSemanticNeutralRiskPressed">#556675</color>
+    <color name="colorSemanticUnknownRisk">#232324</color>
+    <color name="colorSemanticUnknownRiskPressed">#39393A</color>
 
-    <!-- TODO: Add variables when colors are final to reduce maintenance -->
-
-    <!-- App Color -->
-    <color name="appTheme">#000000</color>
+    <!-- Accent -->
+    <color name="colorAccentTintButton">#007FAD</color>
+    <color name="colorAccentTintButtonPressed">#1B4865</color>
+    <color name="colorAccentTintIcon">#83D2F2</color>
 
-    <!-- Primary Colors -->
-    <color name="colorPrimary">#2C79A9</color>
-    <color name="colorPrimaryDark">#1B4865</color>
+    <!-- Misc -->
     <color name="colorTransparent">#00FFFFFF</color>
 
-    <!-- Risk Card Colors -->
-    <color name="colorRiskCardIncreasedRiskPressed">#A30C26</color>
-    <color name="colorRiskCardLowRiskPressed">#27713F</color>
-    <color name="colorRiskCardNoCalculationPossible">@color/colorLight</color>
-    <color name="colorRiskCardNoCalculationPossiblePressed">@color/colorGreyLight</color>
-    <color name="colorRiskCardOutdatedRisk">#657888</color>
-    <color name="colorRiskCardOutdatedRiskPressed">#556673</color>
-    <color name="colorRiskCardUnknownRisk">#657888</color>
-    <color name="colorRiskCardUnknownRiskPressed">#556673</color>
-    <color name="riskCardGrey">#F5F5F5</color>
-
-    <!-- Light Colors -->
-    <color name="colorLight">#212121</color>
-    <color name="colorGrey">#434343</color>
-    <color name="colorGreyLight">#565656</color>
-
-    <!-- Text Colors -->
-    <color name="textColorPrimary">#ffffff</color>
-    <color name="textColorSecondary">#DFD8D8</color>
-    <color name="textColorLight">#ffffff</color>
-    <color name="textColorBlue">#2C79A9</color>
-    <color name="textColorGrey">#D3D3D3</color>
-
-    <!-- Visual Elements-->
-    <color name="dividerColor">#0D000000</color>
-    <color name="iconColor">#ffffff</color>
-
-    <!-- Stable Colors TODO: can be removed after testing -->
-    <color name="stableBackgroundColor">#ffffff</color>
-    <color name="stableHighlightColor">#C3C3C3</color>
-    <color name="stableTextColor">#000000</color>
-    <color name="stableIconColor">#ffffff</color>
-
-    <!-- Tracing Icon -->
-    <color name="tracingIconActive">#80CDEC</color>
-    <color name="tracingIconInactive">#DE4355</color>
-
-    <!-- Settings Icon -->
-    <color name="settingsIconActive">#2C79A9</color>
-    <color name="settingsIconInactive">#C3C3C3</color>
-
 </resources>
diff --git a/Corona-Warn-App/src/main/res/values/colors.xml b/Corona-Warn-App/src/main/res/values/colors.xml
index 87d18f60c8a14c251972cfc1a6c8af10c553b3e8..8996a7170adbdb1d970a9be70c01317fd6bbcdb5 100644
--- a/Corona-Warn-App/src/main/res/values/colors.xml
+++ b/Corona-Warn-App/src/main/res/values/colors.xml
@@ -9,6 +9,7 @@
     <!-- Backgrounds and Separators -->
     <color name="colorBackground">#FFFFFF</color>
     <color name="colorSurface1">#FFFFFF</color>
+    <color name="colorSurface1Pressed">#E7E8E8</color>
     <color name="colorSurface2">#F5F5F5</color>
     <color name="colorHairline">#3317191A</color>
 
@@ -21,73 +22,32 @@
     <color name="colorTextSemanticGreen">#2E854B</color>
     <color name="colorTextSemanticNeutral">#5D6E80</color>
     <color name="colorTextTint">#007FAD</color>
-
-    <!-- Accent -->
-    <color name="colorAccentTintButton">#007FAD</color>
-    <color name="colorAccentTintIcon">#007FAD</color>
+    <color name="colorTextLight">#FFFFFF</color>
 
     <!-- Semantic -->
     <color name="colorSemanticHighRisk">#C00F2D</color>
+    <color name="colorSemanticHighRiskPressed">#AE102B</color>
     <color name="colorSemanticLowRisk">#2E854B</color>
+    <color name="colorSemanticLowRiskPressed">#2B7A46</color>
     <color name="colorSemanticNeutralRisk">#5D6E80</color>
+    <color name="colorSemanticNeutralRiskPressed">#556675</color>
+    <color name="colorSemanticUnknownRisk">#FFFFFF</color>
+    <color name="colorSemanticUnknownRiskPressed">#E7E8E8</color>
 
-    <!-- TODO: Add variables when colors are final to reduce maintenance -->
-
-    <!-- App Color -->
-    <color name="appTheme">#ffffff</color>
+    <!-- Accent -->
+    <color name="colorAccentTintButton">#007FAD</color>
+    <color name="colorAccentTintButtonPressed">#02759E</color>
+    <color name="colorAccentTintIcon">#007FAD</color>
 
-    <!-- Primary Colors -->
-    <color name="colorPrimary">#2C79A9</color>
-    <color name="colorPrimaryDark">#1B4865</color>
+    <!-- Misc -->
     <color name="colorTransparent">#00FFFFFF</color>
 
-    <!-- Risk Card Colors -->
-    <color name="colorRiskCardIncreasedRisk">@color/colorSemanticHighRisk</color>
-    <color name="colorRiskCardIncreasedRiskPressed">#A30C26</color>
-    <color name="colorRiskCardLowRisk">@color/colorSemanticLowRisk</color>
-    <color name="colorRiskCardLowRiskPressed">#27713F</color>
-    <color name="colorRiskCardNoCalculationPossible">@color/colorLight</color>
-    <color name="colorRiskCardNoCalculationPossiblePressed">@color/colorGreyLight</color>
-    <color name="colorRiskCardOutdatedRisk">#657888</color>
-    <color name="colorRiskCardOutdatedRiskPressed">#556673</color>
-    <color name="colorRiskCardUnknownRisk">#657888</color>
-    <color name="colorRiskCardUnknownRiskPressed">#556673</color>
-    <color name="riskCardGrey">#F5F5F5</color>
-
-    <!-- Light/Grey Colors -->
-    <color name="colorLight">#ffffff</color>
-    <color name="colorGrey">#747576</color>
-    <color name="colorGreyLight">#F5F5F5</color>
-    <color name="colorGreyDisabled">#9917191A</color>
-
-    <!-- OLD Text Colors -->
-    <color name="textColorPrimary">#000000</color>
-    <color name="textColorSecondary">#333333</color>
-    <color name="textColorLight">#ffffff</color>
-    <color name="textColorBlue">#2C79A9</color>
-    <color name="textColorGrey">#747576</color>
-
-    <!-- Visual Elements -->
-    <color name="dividerColor">#0D000000</color>
-    <color name="iconColor">@color/colorGrey</color>
-
-    <!-- Stable Colors -->
-    <color name="stableBackgroundColor">#ffffff</color>
-    <color name="stableHighlightColor">#C3C3C3</color>
-    <color name="stableTextColor">#000000</color>
-    <color name="stableIconColor">#ffffff</color>
-    <color name="stableLightTransparent">#33FFFFFF</color>
-
-    <!-- Tracing Icon -->
-    <color name="tracingIconActive">#007FAD</color>
-    <color name="tracingIconInactive">#C00F2D</color>
-
-    <!-- Settings Icon -->
-    <color name="settingsIconActive">#2C79A9</color>
-    <color name="settingsIconInactive">#C3C3C3</color>
-
     <!-- Tan Input -->
     <color name="tanInputBackground">#1A17191A</color>
 
+    <!-- Stable Colors -->
+    <color name="colorStableDark">#000000</color>
+    <color name="colorStableMedium">#4D17191A</color>
+    <color name="colorStableLight">#FFFFFF</color>
 
 </resources>
diff --git a/Corona-Warn-App/src/main/res/values/dimens.xml b/Corona-Warn-App/src/main/res/values/dimens.xml
index 141c37f5ef19bd94a32cd72e2a047749c7a274d0..b7a0fb6555c2954b45c92a3b42292553d75d0347 100644
--- a/Corona-Warn-App/src/main/res/values/dimens.xml
+++ b/Corona-Warn-App/src/main/res/values/dimens.xml
@@ -59,7 +59,8 @@
     <dimen name="icon_size_main_card_end">35dp</dimen>
     <dimen name="icon_size_button">40dp</dimen>
     <dimen name="icon_size_settings">40dp</dimen>
-    <dimen name="icon_size_risk_details_behavior">35dp</dimen>
+    <dimen name="icon_size_risk_details_behavior">25dp</dimen>
+    <dimen name="icon_margin_risk_details_behavior">8dp</dimen>
     <dimen name="match_constraint">0dp</dimen>
 
     <!-- todo illustration sizes -->
@@ -80,8 +81,8 @@
     <!-- Submission Tan Input -->
     <dimen name="submission_tan_input_edittext_size">1dp</dimen>
     <dimen name="submission_tan_input_digit_radius">2dp</dimen>
-    <dimen name="submission_tan_input_digit_width">36dp</dimen>
-    <dimen name="submission_tan_input_digit_height">50dp</dimen>
+    <dimen name="submission_tan_input_digit_width">24dp</dimen>
+    <dimen name="submission_tan_input_digit_height">32dp</dimen>
 
     <!-- Submission QR Code Scan -->
     <dimen name="submission_scan_qr_code_viewfinder_size">240dp</dimen>
diff --git a/Corona-Warn-App/src/main/res/values/strings.xml b/Corona-Warn-App/src/main/res/values/strings.xml
index 15c559b77e70a80004c808fbb2f16b80ce971f73..0add622529cc819a528466e4e4aecf3db38d8e2b 100644
--- a/Corona-Warn-App/src/main/res/values/strings.xml
+++ b/Corona-Warn-App/src/main/res/values/strings.xml
@@ -150,6 +150,14 @@
     <string name="notification_headline">Corona-Warn App</string>
     <string name="notification_body">Es gibt Neuigkeiten von Ihrer Corona-Warn-App</string>
 
+    <!-- ####################################
+              App Auto Update
+    ###################################### -->
+
+    <string name="update_dialog_title">Update verfügbar</string>
+    <string name="update_dialog_message">Bitte die app updaten</string>
+    <string name="update_dialog_button">Update</string>
+
     <!-- ####################################
                   Risk Card
     ###################################### -->
@@ -654,6 +662,10 @@
     <string name="submission_test_result_dialog_tracing_required_message">Bitte aktivieren Sie die Risiko-Ermittlung um andere zu warnen.</string>
     <!-- XBUT: tracing required : OK button -->
     <string name="submission_test_result_dialog_tracing_required_button">OK</string>
+    <!-- XHED: Title for test result card positive -->
+    <string name="submission_test_result_card_positive_title">SARS-CoV-2 Positiv</string>
+    <!-- YTXT: Body text for test result card positive -->
+    <string name="submission_test_result_card_positive_body">Das Virus SARS-CoV-2 wurde bei Ihnen nachgewiesen.</string>
 
     <!-- Submission Tan -->
     <!-- XHED: Page title for TAN submission pge -->
@@ -691,8 +703,8 @@
     <!-- YTXT: Body text for QR code dispatcher option -->
     <string name="submission_dispatcher_qr_card_text">Registrieren Sie Ihren Test, indem Sie den QR-Code ihres Test-Dokument scannen</string>
     <!-- XHED: Dialog headline for dispatcher QR prviacy dialog  -->
-    <string name="submission_dispatcher_qr_privacy_dialog_headline">Datenschutz</string>
-    <string name="submission_dispatcher_qr_privacy_dialog_body">@string/lorem_ipsum</string>
+    <string name="submission_dispatcher_qr_privacy_dialog_headline">Einwilligungserklärung</string>
+    <string name="submission_dispatcher_qr_privacy_dialog_body">Durch Antippen von „Erlauben“ willigen Sie ein, dass die App den Status Ihres Corona-Virus-Tests abfragen und in der App anzeigen darf. Diese Funktion steht Ihnen zur Verfügung, wenn Sie einen QR-Code erhalten und eingewilligt haben, dass Ihr Testergebnis an das Serversystem der App übermittelt werden darf. Sobald das Testlabor Ihr Testergebnis auf dem Server hinterlegt hat, können Sie das Ergebnis in der App sehen. Falls Sie Mitteilungen aktiviert haben, werden Sie auch außerhalb der App über den Eingang des Testergebnis informiert. Das Testergebnis selbst wird aus Datenschutzgründen jedoch nur in der App angezeigt. Sie können diese Einwilligung jederzeit widerrufen, indem Sie die Testregistrierung in der App löschen. Durch den Widerruf der Einwilligung wird die Rechtmäßigkeit der bis zum Widerruf erfolgten Verarbeitung nicht berührt. Weitere Informationen finden Sie unter dem Menüpunkt „Datenschutzinformation“.</string>
     <!-- XBUT: submission(dispatcher QR Dialog) - positive button (right) -->
     <string name="submission_dispatcher_qr_privacy_dialog_button_positive">Erlauben</string>
     <!-- XBUT: submission(dispatcher QR Dialog) - negative button (left) -->
@@ -716,7 +728,7 @@
     <!-- XHED: Title for the privacy card-->
     <string name="submission_positive_other_warning_privacy_title">Datenschutz</string>
     <!-- YTXT: Body text for the privacy card-->
-    <string name="submission_positive_other_warning_privacy_body">Ich willige hiermit ein, dass mein positiver Corona-Befund an das Tracing Backend übermittelt und dazu genutzt wird, andere App Nutzer auf ein mögliches Infektionsrisiko hinzuweisen. Dabei werden die auf meinem Gerät gespeicherten Temporary Exposure Keys an das Tracing Backend übermittelt und dort anderen Nutzern der App zur Verfügung gestellt. Ich kann meine Einwilligung jederzeit mit Wirkung für die Zukunft widerrufen. Ein Widerruf lässt die Rechtmäßigkeit der Verarbeitung bis zum Widerruf unberührt.\n\nWeitere Informationen finden Sie in unserer Datenschutzhinweisen.</string>
+    <string name="submission_positive_other_warning_privacy_body">Durch Antippen von „Weiter“ willigen Sie ein, dass die App Ihr positives Testergebnis zusammen mit Ihren Zufalls-IDs der letzten 14 Tage an das Serversystem der App übermittelt, damit andere App-Nutzer mit aktivierter Risiko-Ermittlung automatisch informiert werden können, dass sie möglicherweise einem Infektionsrisiko ausgesetzt waren. Die übermittelten Zufalls-IDs enthalten keine Angaben, die Rückschlüsse auf Ihre Identität oder Ihre Person zulassen.\n\nDie Übermittlung Ihres Testergebnisses per App ist freiwillig. Wenn Sie Ihr Testergebnis nicht übermitteln, entstehen Ihnen keine Nachteile. Da weder nachvollzogen noch kontrolliert werden kann, ob und wie Sie die App verwenden, erfährt außer Ihnen niemand, ob Sie eine Infektion übermittelt haben.\n\nSie können Ihre Einwilligung jederzeit widerrufen, indem Sie die App löschen. Durch den Widerruf der Einwilligung wird die Rechtmäßigkeit der aufgrund der Einwilligung bis zum Widerruf erfolgten Verarbeitung nicht berührt. Weitere Informationen finden Sie unter dem Menüpunkt „Datenschutzinformation“.</string>
     <!-- XBUT: other warning continue button -->
     <string name="submission_positive_other_warning_button">Weiter</string>
     <!-- XHED: Dialog title for positive other warning dialog  -->
@@ -743,9 +755,7 @@
     <!-- YTXT: text after submission: contagious -->
     <string name="submission_done_contagious">Sie sind ansteckend.</string>
     <!-- YTXT: text after submission: isolate -->
-    <string name="submission_done_isolate">Bitte isolieren Sie sich von anderen Personen.</string>
-    <!-- YTXT: text after submission: contact -->
-    <string name="submission_done_contact">Das Gesundheitsamt wird sich in den nächsten Tagen telefonisch oder schriftlich bei Ihnen melden.</string>
+    <string name="submission_done_isolate">Isolieren Sie sich von anderen Personen.</string>
     <!-- XHED: Title for further info -->
     <string name="submission_done_further_info_title">Weitere Infos:</string>
     <!-- YTXT: Content for further info -->
@@ -785,22 +795,28 @@
     <string name="submission_status_card_title_pending">Ergebnis liegt noch nicht vor</string>
     <!-- XHED: Page title for the various submission status: available -->
     <string name="submission_status_card_title_available">Ihr Ergebnis liegt vor</string>
+    <!-- XHED: Page title for the various submission status: positive -->
+    <string name="submission_status_card_title_positive">Befund Positiv</string>
+    <!-- XHED: Subtitle for the submission status card: invalid -->
+    <string name="submission_status_card_subtitle_invalid">Fehlerhafter Test</string>
+    <!-- XHED: Subtitle for the submission status card: negative -->
+    <string name="submission_status_card_subtitle_negative">Befund Negativ</string>
     <!-- YTXT: Body text for submission status: fetching -->
     <string name="submission_status_card_body_fetching">Das Ergebnis wird aktualisiert</string>
     <!-- YTXT: Body text for submission status: unregistered -->
-    <string name="submission_status_card_body_unregistered">Helfen Sie mit, die Infektionskette zu durchbrechen und warnen Sie Andere.</string>
+    <string name="submission_status_card_body_unregistered">Helfen Sie, die Ausbreitung des Virus zu verlangsamen.</string>
     <!-- YTXT: Body text for submission status: pending -->
-    <string name="submission_status_card_body_pending">Die Auswertung dauert zwischen 1–3 Tagen.</string>
+    <string name="submission_status_card_body_pending">Die Auswertung Ihres Tests ist noch nicht abgeschlossen.</string>
     <!-- YTXT: Body text for submission status: invalid -->
-    <string name="submission_status_card_body_invalid">Ihr test könnte nicht ausgewertet werden.</string>
+    <string name="submission_status_card_body_invalid">Ihr Test konnte nicht ausgewertet werden.</string>
     <!-- YTXT: Body text for submission status: positive -->
     <string name="submission_status_card_body_positive">Sie wurden positiv auf SARS-CoV-2 getestet.</string>
     <!-- YTXT: Body text for submission status: negative -->
-    <string name="submission_status_card_body_negative">Sie wurden negativ auf SARS-CoV-2 getestet.</string>
+    <string name="submission_status_card_body_negative">Das Virus SARS-CoV-2 konnte bei Ihnen nicht nachgewiesen werden.</string>
     <!-- XBUT: submission status card unregistered button -->
     <string name="submission_status_card_button_unregistered">Informieren &amp; mitmachen</string>
     <!-- XBUT: submission status card show results button -->
-    <string name="submission_status_card_button_show_results">Ergebnis anzeigen</string>
+    <string name="submission_status_card_button_show_results">Test anzeigen</string>
     <!-- XBUT: submission status card show details button -->
     <string name="submission_status_card_button_show_details">Details anzeigen</string>
     <!-- XHED: submission status card positive result title -->
@@ -810,9 +826,9 @@
     <!-- XBUT: submission status card show positive result button -->
     <string name="submission_status_card_positive_result_show_button">Test-Ergebnis anzeigen</string>
     <!-- YTXT: text for contagious card -->
-    <string name="submission_status_card_positive_result_contagious">@string/submission_done_contagious</string>
-    <!-- YTXT: text for isolate card -->
-    <string name="submission_status_card_positive_result_isolate">@string/submission_done_isolate</string>
+    <string name="submission_status_card_positive_result_contagious">Sie sind ansteckend. Isolieren Sie sich von anderen Personen.</string>
+    <!-- YTXT: text for contact card -->
+    <string name="submission_status_card_positive_result_contact">Das Gesundheitsamt wird sich in den nächsten Tagen telefonisch oder schriftlich bei Ihnen melden.</string>
     <!-- YTXT: text for share result card-->
     <string name="submission_status_card_positive_result_share">Teilen Sie Ihre Zufallskennungen, damit andere gewarnt werden können.</string>
 
@@ -821,7 +837,7 @@
     <!-- YTXT: virus name text -->
     <string name="test_result_card_virus_name_text">SARS-CoV-2</string>
     <!-- YTXT: registered at text -->
-    <string name="test_result_card_registered_at_text">Registriert am %tF</string>
+    <string name="test_result_card_registered_at_text">Registriert am %s</string>
     <!-- YTXT: negative status text -->
     <string name="test_result_card_status_negative">Negativ</string>
     <!-- YTXT: positive status text -->
diff --git a/Corona-Warn-App/src/main/res/values/styles.xml b/Corona-Warn-App/src/main/res/values/styles.xml
index d8808c8a6b833642a077117152541687c9f832b2..dc8e56d9e10b342dc430526ab75abbf1301f15a9 100644
--- a/Corona-Warn-App/src/main/res/values/styles.xml
+++ b/Corona-Warn-App/src/main/res/values/styles.xml
@@ -1,9 +1,9 @@
 <resources xmlns:android="http://schemas.android.com/apk/res/android">
 
     <style name="AppTheme" parent="Theme.AppCompat.DayNight">
-        <item name="colorPrimary">@color/colorPrimary</item>
-        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
-        <item name="android:windowBackground">@color/appTheme</item>
+        <item name="colorPrimary">@color/colorBrandSecondary</item>
+        <item name="colorPrimaryDark">@color/colorAccentTintButtonPressed</item>
+        <item name="android:windowBackground">@color/colorBackground</item>
     </style>
 
     <style name="AppTheme.NoActionBar">
@@ -24,7 +24,7 @@
     <style name="AppTheme.Main" parent="AppTheme.NoActionBar" />
 
     <style name="actionBar" parent="@style/ThemeOverlay.MaterialComponents.ActionBar">
-        <item name="android:background">@color/colorLight</item>
+        <item name="android:background">@color/colorSurface1</item>
     </style>
 
     <!-- ####################################
@@ -53,6 +53,7 @@
 
     <style name="buttonLight" parent="@style/button">
         <item name="android:backgroundTint">@color/button_light</item>
+        <item name="android:stateListAnimator">@null</item>
     </style>
 
     <style name="buttonIcon">
@@ -61,7 +62,7 @@
     </style>
 
     <style name="buttonTracing">
-        <item name="android:textColor">@color/textColorPrimary</item>
+        <item name="android:textColor">@color/colorTextPrimary1</item>
         <item name="android:background">@drawable/rectangle</item>
         <item name="android:backgroundTint">@color/button_main_tracing</item>
         <item name="android:paddingStart">@dimen/button_padding_start_end</item>
@@ -71,7 +72,7 @@
     </style>
 
     <style name="switchBase" parent="@style/Widget.AppCompat.CompoundButton.Switch">
-        <item name="android:colorControlActivated">@color/colorPrimary</item>
+        <item name="android:colorControlActivated">@color/colorAccentTintIcon</item>
     </style>
 
     <!-- ####################################
@@ -85,13 +86,7 @@
         <item name="android:elevation">@dimen/elevation_weak</item>
         <item name="android:textAllCaps">false</item>
         <item name="android:background">@drawable/row</item>
-        <item name="android:textColor">@color/textColorPrimary</item>
-    </style>
-
-    <style name="rowDanger" parent="row">
-        <item name="android:textColor">@color/colorTextSemanticRed</item>
-        <item name="android:background">@drawable/row</item>
-        <item name="android:backgroundTint">@color/button_light</item>
+        <item name="android:textColor">@color/colorTextPrimary1</item>
     </style>
 
     <!-- ####################################
@@ -107,24 +102,7 @@
     <style name="cardTracing">
         <item name="android:padding">@dimen/card_padding</item>
         <item name="android:background">@drawable/card</item>
-        <item name="android:backgroundTint">@color/colorGreyLight</item>
-    </style>
-    <!-- todo unify padding with main card - tbr -->
-
-    <style name="cardHeadline" parent="@style/Widget.AppCompat.TextView">
-        <item name="android:textSize">@dimen/font_larger</item>
-        <item name="android:textColor">@color/textColorLight</item>
-        <item name="android:textStyle">bold</item>
-    </style>
-
-    <style name="cardText" parent="@style/Widget.AppCompat.TextView">
-        <item name="android:textSize">@dimen/font_normal</item>
-        <item name="android:textColor">@color/textColorLight</item>
-    </style>
-
-    <style name="cardTextDispatcher" parent="@style/Widget.AppCompat.TextView">
-        <item name="android:textSize">@dimen/font_normal</item>
-        <item name="android:textColor">@color/textColorSecondary</item>
+        <item name="android:backgroundTint">@color/colorSurface2</item>
     </style>
 
     <style name="cardGrey">
@@ -133,6 +111,18 @@
     </style>
 
 
+    <!-- ####################################
+            Grey Body Background
+    ###################################### -->
+    <style name="greyBodyBackground">
+        <item name="android:layout_marginTop">@dimen/spacing_large</item>
+        <item name="android:background">@color/colorSurface2</item>
+        <item name="android:paddingStart">@dimen/guideline_start</item>
+        <item name="android:paddingTop">@dimen/spacing_normal</item>
+        <item name="android:paddingEnd">@dimen/guideline_end</item>
+        <item name="android:paddingBottom">@dimen/spacing_normal</item>
+    </style>
+
     <!-- ####################################
                    Text
     ###################################### -->
@@ -145,6 +135,10 @@
         <item name="android:textColor">@color/colorTextPrimary1</item>
     </style>
 
+    <style name="headline5Tint" parent="@style/headline5">
+        <item name="android:textColor">@color/colorTextTint</item>
+    </style>
+
     <style name="headline6" parent="@style/TextAppearance.MaterialComponents.Headline6">
         <item name="android:textColor">@color/colorTextPrimary1</item>
         <item name="android:textStyle">bold</item>
@@ -154,6 +148,10 @@
         <item name="android:textColor">@color/colorTextPrimary1</item>
     </style>
 
+    <style name="subtitleSemanticRed" parent="@style/subtitle">
+        <item name="android:textColor">@color/colorTextSemanticRed</item>
+    </style>
+
     <style name="subtitleMedium" parent="@style/TextAppearance.MaterialComponents.Subtitle1">
         <item name="android:textColor">@color/colorTextPrimary2</item>
     </style>
@@ -174,77 +172,19 @@
         <item name="android:textColor">@color/colorTextPrimary1</item>
     </style>
 
-
-    <!-- ####################################
-                    OLD Text
-                    TODO: DELETE
-    ###################################### -->
-    <style name="textTitle" parent="@style/TextAppearance.AppCompat.Headline">
-        <item name="android:textSize">@dimen/font_title</item>
-        <item name="android:textColor">@color/colorTextPrimary1</item>
-        <item name="android:fontFamily">sans-serif-medium</item>
-    </style>
-
-    <style name="textTitleLarger">
-        <item name="android:textSize">@dimen/font_larger</item>
-        <item name="android:textColor">@color/colorTextPrimary1</item>
-        <item name="android:fontFamily">sans-serif</item>
-    </style>
-
-    <style name="textHeadline" parent="textTitleLarger">
-        <item name="android:textSize">@dimen/font_largest</item>
-    </style>
-
-    <style name="textSubTitle" parent="textTitle" />
-
-    <style name="textTitleCentered" parent="textTitle">
-        <item name="android:textAlignment">center</item>
-    </style>
-
-    <style name="textMultiline" parent="@style/TextAppearance.AppCompat.Body1">
-        <item name="android:textColor">@color/colorTextPrimary1</item>
-        <item name="android:textSize">@dimen/font_normal</item>
-        <item name="android:fontFamily">sans-serif</item>
-        <item name="android:lineSpacingExtra">@dimen/font_line_spacing_extra</item>
-    </style>
-
-    <style name="textLargeEmphasized" parent="@style/TextAppearance.AppCompat.Headline">
-        <item name="android:textSize">@dimen/font_large</item>
-        <item name="android:textColor">@color/textColorPrimary</item>
-        <item name="android:textStyle">bold</item>
-    </style>
-
-    <style name="textMultilineEmphasized" parent="@style/textMultiline">
-        <item name="android:textStyle">bold</item>
-    </style>
-
-    <style name="textMultilineCentered" parent="@style/textMultiline">
-        <item name="android:textAlignment">center</item>
-    </style>
-
-    <style name="textDanger">
-        <item name="android:textSize">@dimen/font_normal</item>
-        <item name="android:textColor">@color/colorTextSemanticRed</item>
-    </style>
-
-    <style name="textLink" parent="@style/textMultilineEmphasized">
-        <item name="android:textColor">@color/textColorBlue</item>
-        <item name="android:textSize">@dimen/font_large</item>
-    </style>
-
     <!-- ####################################
               Icons
     ###################################### -->
     <style name="icon">
-        <item name="android:tint">@color/iconColor</item>
+        <item name="android:tint">@color/colorTextPrimary1</item>
     </style>
 
     <style name="iconStable">
-        <item name="android:tint">@color/stableIconColor</item>
+        <item name="android:tint">@color/colorStableLight</item>
     </style>
 
     <style name="iconTracingStatus">
-        <item name="android:tint">@color/colorPrimary</item>
+        <item name="android:tint">@color/colorAccentTintIcon</item>
     </style>
 
     <!-- ####################################
@@ -265,7 +205,7 @@
 
     <style name="fadingScrollView">
         <item name="android:requiresFadingEdge">vertical</item>
-        <item name="android:fadingEdgeLength">150dp</item>
+        <item name="android:fadingEdgeLength">50dp</item>
     </style>
 
 
@@ -273,7 +213,7 @@
               Submission
     ###################################### -->
 
-    <style name="tanInputDigit" parent="textTitle">
+    <style name="tanInputDigit" parent="headline6">
         <item name="android:layout_width">@dimen/submission_tan_input_digit_width</item>
         <item name="android:layout_height">@dimen/submission_tan_input_digit_height</item>
         <item name="android:background">@drawable/tan_input_digit</item>
@@ -291,7 +231,7 @@
 
     <style name="testResultCardLargeText">
         <item name="android:textSize">@dimen/font_larger</item>
-        <item name="android:textColor">@color/textColorPrimary</item>
+        <item name="android:textColor">@color/colorTextPrimary1</item>
     </style>
 
     <!-- ####################################
@@ -299,7 +239,7 @@
     ###################################### -->
     <style name="registrationQRCodeScanBody">
         <item name="android:textAlignment">center</item>
-        <item name="android:textColor">@color/colorLight</item>
+        <item name="android:textColor">@color/colorTextLight</item>
         <item name="android:textSize">14sp</item>
     </style>
 </resources>
diff --git a/Corona-Warn-App/src/test/java/de/rki/coronawarnapp/transaction/RiskLevelTransactionTest.kt b/Corona-Warn-App/src/test/java/de/rki/coronawarnapp/transaction/RiskLevelTransactionTest.kt
index db67511c30dbcf80eafd6701fef7667b3dfe5065..e38eecbc249dcaf85442458bc03919307b6b9eff 100644
--- a/Corona-Warn-App/src/test/java/de/rki/coronawarnapp/transaction/RiskLevelTransactionTest.kt
+++ b/Corona-Warn-App/src/test/java/de/rki/coronawarnapp/transaction/RiskLevelTransactionTest.kt
@@ -15,6 +15,7 @@ import de.rki.coronawarnapp.server.protocols.ApplicationConfigurationOuterClass.
 import de.rki.coronawarnapp.server.protocols.ApplicationConfigurationOuterClass.RiskScoreClassification
 import de.rki.coronawarnapp.service.applicationconfiguration.ApplicationConfigurationService
 import de.rki.coronawarnapp.storage.ExposureSummaryRepository
+import de.rki.coronawarnapp.storage.LocalData
 import de.rki.coronawarnapp.storage.RiskLevelRepository
 import io.mockk.MockKAnnotations
 import io.mockk.Runs
@@ -42,6 +43,8 @@ class RiskLevelTransactionTest {
 
         mockkObject(InternalExposureNotificationClient)
         mockkObject(ApplicationConfigurationService)
+        mockkObject(LocalData)
+        every { LocalData.lastSuccessfullyCalculatedRiskLevel() } returns UNDETERMINED
         mockkObject(RiskLevelRepository)
         mockkObject(RiskLevelTransaction)
         mockkObject(TimeVariables)
diff --git a/Corona-Warn-App/src/test/java/de/rki/coronawarnapp/update/VersionComparatorTest.kt b/Corona-Warn-App/src/test/java/de/rki/coronawarnapp/update/VersionComparatorTest.kt
new file mode 100644
index 0000000000000000000000000000000000000000..421e73c5ad404152e5a23cc0408f688aad8d7ffc
--- /dev/null
+++ b/Corona-Warn-App/src/test/java/de/rki/coronawarnapp/update/VersionComparatorTest.kt
@@ -0,0 +1,51 @@
+package de.rki.coronawarnapp.update
+
+import org.hamcrest.MatcherAssert.assertThat
+import org.hamcrest.Matchers.`is`
+import org.junit.Test
+
+class VerificationServiceTest {
+
+    @Test
+    fun testVersionMajorOlder() {
+        val result = VersionComparator.isVersionOlder("1.0.0", "2.0.0")
+        assertThat(result, `is`(true))
+    }
+
+    @Test
+    fun testVersionMinorOlder() {
+        val result = VersionComparator.isVersionOlder("1.0.0", "1.1.0")
+        assertThat(result, `is`(true))
+    }
+
+    @Test
+    fun testVersionPatchOlder() {
+        val result = VersionComparator.isVersionOlder("1.0.1", "1.0.2")
+        assertThat(result, `is`(true))
+    }
+
+    @Test
+    fun testVersionMajorNewer() {
+        val result = VersionComparator.isVersionOlder("2.0.0", "1.0.0")
+        assertThat(result, `is`(false))
+    }
+
+    @Test
+    fun testVersionMinorNewer() {
+        val result = VersionComparator.isVersionOlder("1.2.0", "1.1.0")
+        assertThat(result, `is`(false))
+    }
+
+    @Test
+    fun testVersionPatchNewer() {
+        val result = VersionComparator.isVersionOlder("1.0.3", "1.0.2")
+        assertThat(result, `is`(false))
+    }
+
+    @Test
+    fun testSameVersion() {
+        val result = VersionComparator.isVersionOlder("1.0.1", "1.0.1")
+        assertThat(result, `is`(false))
+    }
+
+}
\ No newline at end of file