From 45f71cdcc160341189f8b929ebcac2cb2a1c1506 Mon Sep 17 00:00:00 2001 From: Koitharu Date: Wed, 29 Jun 2022 16:04:54 +0300 Subject: [PATCH 1/2] Empty status vector images --- app/build.gradle | 8 +-- .../ui/list/FavouritesListViewModel.kt | 2 +- .../history/ui/HistoryListViewModel.kt | 2 +- .../kotatsu/local/ui/LocalListViewModel.kt | 2 +- .../remotelist/ui/RemoteListViewModel.kt | 2 +- .../kotatsu/search/ui/SearchViewModel.kt | 2 +- .../search/ui/multi/MultiSearchViewModel.kt | 2 +- .../suggestions/ui/SuggestionsViewModel.kt | 2 +- .../kotatsu/tracker/ui/FeedViewModel.kt | 2 +- .../main/res/drawable/ic_empty_favourites.xml | 49 +++++++++++++ app/src/main/res/drawable/ic_empty_feed.xml | 58 +++++++++++++++ .../main/res/drawable/ic_empty_history.xml | 31 ++++++++ app/src/main/res/drawable/ic_empty_local.xml | 71 +++++++++++++++++++ app/src/main/res/drawable/ic_empty_search.xml | 46 ++++++++++++ .../res/drawable/ic_empty_suggestions.xml | 58 +++++++++++++++ app/src/main/res/layout/item_empty_state.xml | 9 +-- 16 files changed, 330 insertions(+), 16 deletions(-) create mode 100644 app/src/main/res/drawable/ic_empty_favourites.xml create mode 100644 app/src/main/res/drawable/ic_empty_feed.xml create mode 100644 app/src/main/res/drawable/ic_empty_history.xml create mode 100644 app/src/main/res/drawable/ic_empty_local.xml create mode 100644 app/src/main/res/drawable/ic_empty_search.xml create mode 100644 app/src/main/res/drawable/ic_empty_suggestions.xml diff --git a/app/build.gradle b/app/build.gradle index ad1ec0511..f9e93e974 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -77,7 +77,7 @@ dependencies { exclude group: 'org.json', module: 'json' } - implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.2' + implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.3' implementation 'androidx.core:core-ktx:1.8.0' implementation 'androidx.activity:activity-ktx:1.5.0-rc01' @@ -103,7 +103,7 @@ dependencies { implementation 'com.squareup.okhttp3:okhttp:4.10.0' implementation 'com.squareup.okhttp3:okhttp-dnsoverhttps:4.9.3' - implementation 'com.squareup.okio:okio:3.1.0' + implementation 'com.squareup.okio:okio:3.2.0' implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl:4.3.2' implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl-viewbinding:4.3.2' @@ -120,14 +120,14 @@ dependencies { debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.9.1' testImplementation 'junit:junit:4.13.2' - testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.2' + testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.3' androidTestImplementation 'androidx.test:runner:1.4.0' androidTestImplementation 'androidx.test:rules:1.4.0' androidTestImplementation 'androidx.test:core-ktx:1.4.0' androidTestImplementation 'androidx.test.ext:junit-ktx:1.1.3' - androidTestImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.2' + androidTestImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.3' androidTestImplementation 'io.insert-koin:koin-test:3.2.0' androidTestImplementation 'io.insert-koin:koin-test-junit4:3.2.0' diff --git a/app/src/main/java/org/koitharu/kotatsu/favourites/ui/list/FavouritesListViewModel.kt b/app/src/main/java/org/koitharu/kotatsu/favourites/ui/list/FavouritesListViewModel.kt index c2e8c00a1..23ff17a2e 100644 --- a/app/src/main/java/org/koitharu/kotatsu/favourites/ui/list/FavouritesListViewModel.kt +++ b/app/src/main/java/org/koitharu/kotatsu/favourites/ui/list/FavouritesListViewModel.kt @@ -47,7 +47,7 @@ class FavouritesListViewModel( when { list.isEmpty() -> listOf( EmptyState( - icon = R.drawable.ic_heart_outline, + icon = R.drawable.ic_empty_favourites, textPrimary = R.string.text_empty_holder_primary, textSecondary = if (categoryId == NO_ID) { R.string.you_have_not_favourites_yet diff --git a/app/src/main/java/org/koitharu/kotatsu/history/ui/HistoryListViewModel.kt b/app/src/main/java/org/koitharu/kotatsu/history/ui/HistoryListViewModel.kt index 1768c2a5f..c5c6ef75e 100644 --- a/app/src/main/java/org/koitharu/kotatsu/history/ui/HistoryListViewModel.kt +++ b/app/src/main/java/org/koitharu/kotatsu/history/ui/HistoryListViewModel.kt @@ -48,7 +48,7 @@ class HistoryListViewModel( when { list.isEmpty() -> listOf( EmptyState( - icon = R.drawable.ic_history, + icon = R.drawable.ic_empty_history, textPrimary = R.string.text_history_holder_primary, textSecondary = R.string.text_history_holder_secondary, actionStringRes = 0, diff --git a/app/src/main/java/org/koitharu/kotatsu/local/ui/LocalListViewModel.kt b/app/src/main/java/org/koitharu/kotatsu/local/ui/LocalListViewModel.kt index 375e03997..e8490f9d9 100644 --- a/app/src/main/java/org/koitharu/kotatsu/local/ui/LocalListViewModel.kt +++ b/app/src/main/java/org/koitharu/kotatsu/local/ui/LocalListViewModel.kt @@ -49,7 +49,7 @@ class LocalListViewModel( list == null -> listOf(LoadingState) list.isEmpty() -> listOf( EmptyState( - icon = R.drawable.ic_storage, + icon = R.drawable.ic_empty_local, textPrimary = R.string.text_local_holder_primary, textSecondary = R.string.text_local_holder_secondary, actionStringRes = R.string._import, diff --git a/app/src/main/java/org/koitharu/kotatsu/remotelist/ui/RemoteListViewModel.kt b/app/src/main/java/org/koitharu/kotatsu/remotelist/ui/RemoteListViewModel.kt index b57f0b30b..092194b96 100644 --- a/app/src/main/java/org/koitharu/kotatsu/remotelist/ui/RemoteListViewModel.kt +++ b/app/src/main/java/org/koitharu/kotatsu/remotelist/ui/RemoteListViewModel.kt @@ -151,7 +151,7 @@ class RemoteListViewModel( } private fun createEmptyState(filterState: FilterState) = EmptyState( - icon = R.drawable.ic_book_cross, + icon = R.drawable.ic_empty_search, textPrimary = R.string.nothing_found, textSecondary = 0, actionStringRes = if (filterState.tags.isEmpty()) 0 else R.string.reset_filter, diff --git a/app/src/main/java/org/koitharu/kotatsu/search/ui/SearchViewModel.kt b/app/src/main/java/org/koitharu/kotatsu/search/ui/SearchViewModel.kt index e20c3bb12..9615e84a6 100644 --- a/app/src/main/java/org/koitharu/kotatsu/search/ui/SearchViewModel.kt +++ b/app/src/main/java/org/koitharu/kotatsu/search/ui/SearchViewModel.kt @@ -35,7 +35,7 @@ class SearchViewModel( list == null -> listOf(LoadingState) list.isEmpty() -> listOf( EmptyState( - icon = R.drawable.ic_book_search, + icon = R.drawable.ic_empty_search, textPrimary = R.string.nothing_found, textSecondary = R.string.text_search_holder_secondary, actionStringRes = 0, diff --git a/app/src/main/java/org/koitharu/kotatsu/search/ui/multi/MultiSearchViewModel.kt b/app/src/main/java/org/koitharu/kotatsu/search/ui/multi/MultiSearchViewModel.kt index adea07898..1a07e3dec 100644 --- a/app/src/main/java/org/koitharu/kotatsu/search/ui/multi/MultiSearchViewModel.kt +++ b/app/src/main/java/org/koitharu/kotatsu/search/ui/multi/MultiSearchViewModel.kt @@ -42,7 +42,7 @@ class MultiSearchViewModel( loading -> LoadingState error != null -> error.toErrorState(canRetry = true) else -> EmptyState( - icon = R.drawable.ic_book_search, + icon = R.drawable.ic_empty_search, textPrimary = R.string.nothing_found, textSecondary = R.string.text_search_holder_secondary, actionStringRes = 0, diff --git a/app/src/main/java/org/koitharu/kotatsu/suggestions/ui/SuggestionsViewModel.kt b/app/src/main/java/org/koitharu/kotatsu/suggestions/ui/SuggestionsViewModel.kt index 832922ea3..42f0c093a 100644 --- a/app/src/main/java/org/koitharu/kotatsu/suggestions/ui/SuggestionsViewModel.kt +++ b/app/src/main/java/org/koitharu/kotatsu/suggestions/ui/SuggestionsViewModel.kt @@ -27,7 +27,7 @@ class SuggestionsViewModel( when { list.isEmpty() -> listOf( EmptyState( - icon = R.drawable.ic_book_cross, + icon = R.drawable.ic_empty_suggestions, textPrimary = R.string.nothing_found, textSecondary = R.string.text_suggestion_holder, actionStringRes = 0, diff --git a/app/src/main/java/org/koitharu/kotatsu/tracker/ui/FeedViewModel.kt b/app/src/main/java/org/koitharu/kotatsu/tracker/ui/FeedViewModel.kt index 3cb415143..11ae7f6fa 100644 --- a/app/src/main/java/org/koitharu/kotatsu/tracker/ui/FeedViewModel.kt +++ b/app/src/main/java/org/koitharu/kotatsu/tracker/ui/FeedViewModel.kt @@ -39,7 +39,7 @@ class FeedViewModel( add(header) add( EmptyState( - icon = R.drawable.ic_feed, + icon = R.drawable.ic_empty_feed, textPrimary = R.string.text_empty_holder_primary, textSecondary = R.string.text_feed_holder, actionStringRes = 0, diff --git a/app/src/main/res/drawable/ic_empty_favourites.xml b/app/src/main/res/drawable/ic_empty_favourites.xml new file mode 100644 index 000000000..a886c3d63 --- /dev/null +++ b/app/src/main/res/drawable/ic_empty_favourites.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/drawable/ic_empty_feed.xml b/app/src/main/res/drawable/ic_empty_feed.xml new file mode 100644 index 000000000..1df74d5ed --- /dev/null +++ b/app/src/main/res/drawable/ic_empty_feed.xml @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/drawable/ic_empty_history.xml b/app/src/main/res/drawable/ic_empty_history.xml new file mode 100644 index 000000000..f0c6fdee1 --- /dev/null +++ b/app/src/main/res/drawable/ic_empty_history.xml @@ -0,0 +1,31 @@ + + + + + + + + + + diff --git a/app/src/main/res/drawable/ic_empty_local.xml b/app/src/main/res/drawable/ic_empty_local.xml new file mode 100644 index 000000000..f578a6ce8 --- /dev/null +++ b/app/src/main/res/drawable/ic_empty_local.xml @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/drawable/ic_empty_search.xml b/app/src/main/res/drawable/ic_empty_search.xml new file mode 100644 index 000000000..37fa1c487 --- /dev/null +++ b/app/src/main/res/drawable/ic_empty_search.xml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + diff --git a/app/src/main/res/drawable/ic_empty_suggestions.xml b/app/src/main/res/drawable/ic_empty_suggestions.xml new file mode 100644 index 000000000..84025ea16 --- /dev/null +++ b/app/src/main/res/drawable/ic_empty_suggestions.xml @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/layout/item_empty_state.xml b/app/src/main/res/layout/item_empty_state.xml index 880e8902d..d89b79276 100644 --- a/app/src/main/res/layout/item_empty_state.xml +++ b/app/src/main/res/layout/item_empty_state.xml @@ -12,10 +12,11 @@ + android:layout_width="192dp" + android:layout_height="192dp" + android:contentDescription="@null" + android:scaleType="fitCenter" + tools:src="@drawable/ic_empty_favourites" /> Date: Thu, 30 Jun 2022 09:03:34 +0300 Subject: [PATCH 2/2] Update empty favourites image --- .../main/res/drawable/ic_empty_favourites.xml | 98 +++++++++++++------ 1 file changed, 70 insertions(+), 28 deletions(-) diff --git a/app/src/main/res/drawable/ic_empty_favourites.xml b/app/src/main/res/drawable/ic_empty_favourites.xml index a886c3d63..ccfc51361 100644 --- a/app/src/main/res/drawable/ic_empty_favourites.xml +++ b/app/src/main/res/drawable/ic_empty_favourites.xml @@ -2,48 +2,90 @@ xmlns:android="http://schemas.android.com/apk/res/android" android:width="192dp" android:height="192dp" - android:viewportWidth="512" - android:viewportHeight="512"> + android:viewportWidth="682.67" + android:viewportHeight="682.67"> + android:fillColor="#e6e6e6" + android:pathData="m224.2,675.67c3.13,-3.85 8.51,-10 11.95,-13.67 9.34,-9.96 22.65,-32.42 25.28,-42.67 0.56,-2.2 2.63,-7.83 4.59,-12.51 4.24,-10.12 3.82,-16.64 -1.78,-28.16l-3.57,-7.33 -0.37,20.31 -0.37,20.31 -7.63,5.12c-19.43,13.03 -29.37,18.07 -32.2,16.33 -1.24,-0.77 -2.11,-12.38 -3.31,-44.22 -0.97,-25.76 -2.22,-44.25 -3.1,-45.84 -0.81,-1.47 -6.47,-6.16 -12.58,-10.44 -12.87,-9 -20.73,-18.67 -39.68,-48.79 -13.84,-22 -14.54,-22.05 -5.76,-0.39 6.19,15.27 6.65,15.95 20.48,30.41 18.86,19.72 20.04,22.67 15.94,39.59 -3.42,14.09 -15.08,44.75 -18.73,49.25l-2.46,3.04 -0.86,-3.39c-0.47,-1.87 -1.27,-9.67 -1.78,-17.33l-0.92,-13.94 -5.3,8.67c-7.87,12.86 -7.61,33.3 0.85,67.91 3.06,12.51 3.2,12.11 -5.81,16.86 -3.55,1.87 -3.62,1.83 -4.99,-3.1 -0.76,-2.75 -1.4,-5.6 -1.4,-6.33 -0.05,-4.73 -3.04,-11.33 -5.13,-11.33 -5.7,0 -7.34,9.59 -3.7,21.68 2.08,6.93 1.3,7.6 -8.82,7.64 -4.87,0.02 -5.1,-0.21 -10.01,-9.98l-5.03,-10 -6.29,10.49c-6.72,11.22 -10.54,14.61 -17.79,15.78 -4.47,0.72 -4.56,0.64 -4.73,-4.1 -0.53,-15.46 0.46,-50.93 1.32,-47.24l0.84,3.6 9,-3.93c4.95,-2.16 13.05,-5.68 18,-7.81 6.08,-2.62 9.97,-5.28 12,-8.2l3,-4.32v4.91c0,5.92 3.04,7.71 6.76,3.99 2.13,-2.13 2.68,-5.39 3.44,-20.47 0.82,-16.23 1.27,-18.63 4.74,-25.23l3.84,-7.29 -2.75,-2.75c-2.2,-2.2 -4.83,-2.84 -13.08,-3.22 -13.48,-0.61 -15.47,0.91 -19.53,14.97l-3.01,10.43 -4.87,-4.28c-5.27,-4.62 -6.31,-9.49 -3.2,-14.99 6.09,-10.8 35.64,-15.79 46.4,-7.84 3.55,2.62 4.75,2.89 7.48,1.64 1.79,-0.81 4.99,-1.48 7.11,-1.48 5.37,0 5.87,-1.69 1.64,-5.62 -5.59,-5.2 -9.72,-7.45 -17.17,-9.36l-6.85,-1.75 8.65,-13.17 8.65,-13.17 -6.03,-12.8c-21.47,-45.55 -23.35,-49.06 -23.43,-43.69 -0.12,7.43 -2.84,5.58 -5.71,-3.87 -1.45,-4.77 -2.26,-11.08 -2.05,-15.9l0.34,-8 5.72,-1.2c3.93,-0.83 6.56,-2.39 8.42,-5 3.8,-5.33 8.54,-4.95 18.04,1.43 4.8,3.22 8.12,4.69 8.65,3.83 0.48,-0.77 1.45,-1.04 2.16,-0.6 2.56,1.58 3.26,-26.8 0.98,-39.79 -2.09,-11.92 -2.08,-12.02 0.78,-14.33 3.23,-2.62 10.09,-3.14 10.87,-0.82 0.35,1.04 1.8,0.84 4.71,-0.67 5.66,-2.93 11.07,-2.74 21.92,0.75 6.38,2.05 9.52,2.51 10.5,1.52 3.71,-3.71 -14.46,-16.23 -30.3,-20.89 -7.31,-2.15 -8.45,-1.88 -8.45,1.95 0,1.37 -0.72,2.13 -1.67,1.78 -0.92,-0.35 -3.77,0.69 -6.33,2.3 -3.62,2.27 -4.14,3.04 -2.33,3.43 3,0.65 2.94,2.7 -0.24,7.52l-2.56,3.88 -0.91,-4.84c-0.96,-5.1 -0.07,-8.41 7.73,-28.92 3.95,-10.38 5.34,-12.37 16.56,-23.67 15.94,-16.05 17.71,-15.92 22.91,1.67 5.13,17.34 17.47,39.74 34.99,63.5 3.58,4.86 6.51,9.72 6.51,10.81 0,2.43 9.3,14.84 10.34,13.8 0.41,-0.41 1.62,-0.02 2.69,0.86 1.69,1.4 1.81,-0.58 0.96,-15.34 -1.06,-18.46 -0.92,-19.04 3.19,-12.62 1.98,3.09 2.78,3.64 2.8,1.93 0.01,-1.56 3.12,1.13 8.84,7.67 4.85,5.54 8.95,10.07 9.1,10.07 0.16,0 -0.3,-3.61 -1.01,-8.03 -0.71,-4.42 -0.94,-8.39 -0.5,-8.82 1.49,-1.49 13.37,-2.28 12.47,-0.83 -0.55,0.89 3.69,1.58 12.13,1.95 12.09,0.53 13.75,0.96 24.09,6.22 10.8,5.49 11.13,5.57 11.86,2.79 0.61,-2.34 1.44,-2.73 4.56,-2.1 3.56,0.71 3.81,0.48 3.82,-3.54l0,-4.3 3.99,6c5.17,7.78 5.1,8.38 -2.08,19.1 -8.83,13.17 -14.11,17.68 -34.48,29.49 -21.8,12.64 -21.87,12.72 -11.18,12.87 4.63,0.06 11.26,0.51 14.74,1l6.33,0.88 -8.55,9.88c-10.33,11.95 -7.47,10.33 -34.28,19.38 -17.56,5.93 -25.08,7.77 -36.76,8.99l-14.69,1.54 5.13,6.77c2.82,3.73 6.74,11.21 8.72,16.63l3.59,9.85 -4.91,3.94c-5.29,4.24 -5.65,5.64 -3.49,13.41l1.41,5.06 10.92,-10.28c17.39,-16.37 39.97,-34.04 41.41,-32.4 0.79,0.91 -2.31,15.89 -3.3,15.89 -0.5,0 -1.28,-1.51 -1.75,-3.36 -0.99,-3.92 -3,-3.28 -9.9,3.16 -4.29,4.01 -5.84,10.72 -2.55,11.02 3.91,0.36 7.12,-0.58 10.16,-2.97 4.15,-3.26 4.13,-3.3 2.64,6.08 -2.16,13.62 -1.97,13.68 11.99,3.74 6.85,-4.88 17.05,-13 22.67,-18.04 13.53,-12.15 16.19,-13.45 25.7,-12.59 12.84,1.16 32.5,14.55 37.82,25.75 2.35,4.96 2.3,25.76 -0.14,58.28l-0.78,10.4 -7.52,-7.16c-15.64,-14.9 -43.46,-33.69 -63.95,-43.2 -14.86,-6.9 -13.54,-6.81 -17.24,-1.1 -3.83,5.91 -4.05,5.42 3.33,7.27 19.16,4.78 54.7,28.84 77.53,52.5 5.7,5.91 5.82,6.19 4.1,10.32 -1.82,4.39 -7.85,7.92 -13.52,7.92 -2.81,0 -2.73,-0.24 1.32,-4.43l4.3,-4.43 -7.7,-7.28c-15.39,-14.56 -49.13,-35.68 -62.58,-39.19 -8.84,-2.3 -11.06,-1.07 -17.38,9.68 -4.27,7.25 -3.86,8.08 7.13,14.63 13.41,7.98 24.73,16.55 43.97,33.26 9.44,8.2 17.7,14.89 18.37,14.88 2.76,-0.06 3.3,4.5 1.88,15.7 -1.37,10.79 -1.93,12.3 -6.24,16.85l-4.73,5L299.61,682.67 241.1,682.67l8.26,-9c8.54,-9.31 14.01,-18.14 12.62,-20.38 -1.81,-2.93 -4.98,-0.72 -14.01,9.71 -10.66,12.33 -20.12,19.55 -25.71,19.62l-3.75,0.05 5.69,-7zM365.53,669.05c-8.92,-16.63 -54.02,-54.77 -73.02,-61.75 -8.37,-3.07 -9.18,-4.18 -11.83,-16.07 -2.8,-12.57 -4.08,-12.5 -5.16,0.3 -2.53,29.95 1.77,45.93 8.47,31.49 2.49,-5.35 3.51,-5.37 12.27,-0.21 16.52,9.71 33.05,22.54 48.85,37.91 16.62,16.17 16.91,16.38 19.46,13.89 2.2,-2.15 2.34,-2.99 0.95,-5.57zM273.27,551.15c11.97,-13.1 5.74,-19.47 -7.6,-7.76 -7.87,6.91 -8.18,7.84 -4.1,12.19 3.89,4.14 3.86,4.15 11.7,-4.43zM267.82,469.7c6.19,-4.58 9.98,-13.15 10.09,-22.8L278,438.3 268.67,436.04c-11.72,-2.85 -17.54,-5.35 -22.84,-9.82l-4.17,-3.52 -3.8,2.98c-2.66,2.09 -5.61,2.98 -9.83,2.98h-6.03l0.25,7.55c0.42,12.72 2.58,18.12 10.34,25.88 10.83,10.83 26.33,14.18 35.23,7.6zM570.67,629.25c0,-0.78 1.21,-4.23 2.69,-7.67 1.48,-3.44 4.71,-14.2 7.18,-23.92l4.49,-17.67 -9.01,9.23c-8.35,8.55 -19.89,16.11 -24.58,16.11 -2.48,0 -2.93,-2.91 -4.69,-30.67 -2.81,-44.32 -12.92,-62.54 -37.76,-68.06 -9.55,-2.12 -9.18,-2.51 3.15,-3.3 24.86,-1.6 32.48,-2.2 33.15,-2.6 0.39,-0.23 3.72,-0.81 7.38,-1.29 3.67,-0.47 7.57,-1.1 8.67,-1.4 1.1,-0.3 4.32,-0.88 7.16,-1.3 2.84,-0.42 5.59,-1.03 6.11,-1.35 0.53,-0.33 2.92,-0.94 5.32,-1.36 4.46,-0.79 15.19,-4.94 27.78,-10.76 3.87,-1.79 7.47,-3.26 8,-3.26 0.53,-0 2.46,-0.79 4.3,-1.74 11.4,-5.92 9.46,-2.71 -3.7,6.12 -9.3,6.24 -14.57,11.12 -13.35,12.35 0.39,0.39 4.84,0.06 9.88,-0.73 5.04,-0.79 10.97,-1.73 13.17,-2.08 2.2,-0.35 5.5,-0.91 7.33,-1.25 1.83,-0.34 5.13,-0.92 7.33,-1.28 2.2,-0.36 6.7,-1.17 10,-1.79 11.06,-2.08 23.5,-1.93 27.9,0.35 6.84,3.54 5.63,7.03 -8.94,25.86 -7.17,9.27 -15.12,19.63 -17.67,23.01 -2.54,3.38 -9.35,11.95 -15.14,19.04 -5.78,7.09 -10.23,13.17 -9.88,13.52 0.35,0.35 7.11,-5.5 15.03,-13 15.13,-14.34 16.22,-14.3 8.52,0.28 -11.38,21.58 -35.12,46.59 -58.19,61.3 -15.79,10.07 -21.64,12.58 -21.64,9.28zM90.42,613.67c0.91,-8.25 11.61,-16.1 24.25,-17.8 3.3,-0.44 8.55,-1.27 11.67,-1.84L132,592.99v6.67,6.67l-6.4,0.61c-3.55,0.34 -11.76,3.09 -18.46,6.17 -15.48,7.13 -17.46,7.2 -16.73,0.56zM342.12,377.96c-13.24,-10.22 -24.66,-15.69 -34.23,-16.38 -7.71,-0.56 -10.61,1.04 -5.55,3.07 1.8,0.72 0.65,1.7 -5,4.28 -5.42,2.47 -6.74,3.57 -5.07,4.21 2.09,0.8 2.08,1.11 -0.24,4.18 -3.47,4.59 -3.71,3.96 -5.46,-13.9 -3.72,-38.05 -1.71,-47.9 14.39,-70.67l7.49,-10.59 11.64,34.7c12.33,36.75 16.06,45.36 25.82,59.61 3.34,4.88 5.93,8.82 5.76,8.75 -0.18,-0.07 -4.47,-3.33 -9.54,-7.24zM409.38,345.42c-1.26,-2.36 -2.3,-2.7 -6.03,-2 -6.15,1.15 -7.5,0.08 -5.85,-4.64 1.22,-3.51 1.76,-3.78 6.43,-3.15 3.94,0.53 5.71,0.07 7.77,-1.99l2.68,-2.68 2.74,3.71c1.66,2.24 4.74,4.18 7.81,4.9 8.01,1.89 8.14,7.27 0.17,7.14 -3.17,-0.05 -7.66,0.28 -9.98,0.73 -3.43,0.67 -4.5,0.3 -5.74,-2.02zM409.65,320.77c-4.63,-4.24 -4.98,-5.1 -4.98,-12.12 0,-10.3 4.49,-14.6 14.26,-13.66 8.22,0.79 11.24,3.6 13.18,12.29 3.52,15.73 -10.7,24.26 -22.46,13.48zM377.33,240.15c-3.09,-0.85 -3.38,-1.65 -4,-10.86l-0.67,-9.93 -10.43,-7.16c-15.9,-10.92 -16.4,-16.11 -1.96,-20.44 8.16,-2.45 9.24,-6.29 3.85,-13.79 -6.35,-8.84 -5.41,-10.64 5.57,-10.64 7.51,0 8.97,-0.37 8.97,-2.24 -0,-2.32 5.9,-7.73 8.51,-7.81 0.82,-0.02 5.05,-6.03 9.42,-13.35 9.47,-15.88 15.1,-23.01 17.48,-22.1 1.03,0.39 5.5,-3.79 10.84,-10.12 19.61,-23.28 33.51,-36.42 35.95,-33.98 0.33,0.33 -0.99,2.93 -2.94,5.76 -6.89,10.02 -48.98,100.04 -53.25,113.9l-1,3.26 3.5,-3.23 3.5,-3.23v3.5c0,8.33 -4.29,35.21 -6.05,37.9 -3.18,4.86 -17.52,7.25 -27.28,4.55zM149.25,207.53c-5.05,-2.54 -5.93,-7.87 -2.45,-14.84 1.65,-3.31 3.5,-6.02 4.1,-6.02 2.71,0 0.64,-2.92 -4.24,-6 -6.9,-4.36 -6.73,-5.54 1.37,-9.11l6.7,-2.96 -5.37,-5.24c-7.77,-7.59 -6.91,-13.57 2.06,-14.25l3.91,-0.3 -0.42,-36.74c-0.41,-35.64 0.33,-46.87 3.09,-46.89 0.73,-0.01 1.8,2.27 2.37,5.07 5.07,24.71 20.23,74.6 26.25,86.36 1.49,2.91 2.7,6.28 2.7,7.5 0,1.22 0.87,4.69 1.94,7.71l1.94,5.49 -8.94,7.18c-4.92,3.95 -10.44,8.8 -12.27,10.8 -4.01,4.36 -15.84,13.2 -18.1,13.53 -0.89,0.13 -2.98,-0.45 -4.65,-1.29z" + android:strokeWidth="1.33333" /> + android:fillColor="?colorPrimary" + android:pathData="m368.28,157.03c-10.53,-4.95 -11.21,-5.54 -14.35,-12.39 -9.4,-20.56 -8.35,-32.96 3.09,-36.39 9.96,-2.99 19.41,-0.26 23.11,6.67 1.11,2.07 2.24,2.48 4.98,1.81 11.53,-2.82 24.48,-1.69 27.11,2.37 0.49,0.76 -1.01,3.61 -3.33,6.33 -2.33,2.72 -7.83,10.99 -12.23,18.38 -4.4,7.39 -8.67,13.45 -9.49,13.48 -0.82,0.02 -2.92,1.14 -4.67,2.49 -3.14,2.42 -3.32,2.38 -14.24,-2.75z" + android:strokeWidth="1.33333" /> + android:fillColor="?colorPrimary" + android:pathData="m123.38,191.71c-20.43,-4.34 -20.28,-38.03 0.15,-35.23 4.01,0.55 5.81,0.31 5.81,-0.77 0,-3.33 7.12,-9.05 11.25,-9.03 5.79,0.03 8.15,1.71 5.48,3.93 -3.34,2.78 -2.39,7.22 2.6,12.05 5.92,5.74 5.88,6 -1.33,9.2 -7.04,3.11 -7.46,4.77 -2.01,7.87 2.2,1.25 4,2.78 4,3.4 0.02,2.16 -8.29,8.87 -11.13,9 -1.57,0.07 -4.36,0.26 -6.19,0.42 -1.83,0.16 -5.71,-0.22 -8.62,-0.84z" + android:strokeWidth="1.33333" /> + android:fillColor="?colorPrimary" + android:pathData="m477.71,216.44c-8.68,-26.71 -8.58,-37.45 0.43,-45.9 7.78,-7.3 25.88,-2.86 29.75,7.29 0.67,1.76 2.61,2.64 6.6,3 11.59,1.04 16.45,6.1 16.6,17.28 0.13,10.01 -5.1,17.91 -15.09,22.78 -4.77,2.32 -8.88,4.01 -9.14,3.75 -0.26,-0.26 -1.93,0.08 -3.7,0.76 -3.36,1.28 -6.47,1.93 -15.72,3.32l-5.47,0.82z" + android:strokeWidth="1.33333" /> + + + + + - + android:pathData="m447.88,668.14c-22.96,-7.34 -28.62,-17.39 -31.98,-56.71 -3.62,-42.4 6.38,-62.45 35.32,-70.8 9.92,-2.86 14.52,-7.1 13.31,-12.26 -4.02,-17.14 -13.25,-30.04 -22.77,-31.83 -4.22,-0.79 -1.19,-1.68 20.3,-5.94 13.9,-2.76 26.91,-5.65 28.93,-6.44 2.02,-0.78 3.67,-1.16 3.67,-0.85 0,0.32 2.47,-0.3 5.49,-1.36 4.91,-1.73 5.32,-1.72 3.81,0.09 -0.93,1.12 -1.93,1.79 -2.22,1.49 -0.3,-0.3 -6.06,1.97 -12.81,5.04 -30.69,13.95 -31.36,17.05 -3.6,16.53 44.31,-0.82 57.93,14.61 61.42,69.57 1.76,27.76 2.21,30.67 4.69,30.67 4.18,0 15.39,-6.94 22.64,-14.02 6.05,-5.91 7.4,-6.75 6.76,-4.19 -0.44,1.76 -1.44,7.92 -2.23,13.7 -0.78,5.78 -3.01,14.6 -4.94,19.6 -2.62,6.8 -3.1,9.35 -1.89,10.1 2.16,1.33 -29.64,16.49 -41.78,19.92 -5.13,1.45 -15.93,4.21 -23.98,6.14 -24.28,5.81 -22.65,7.26 4.65,4.15 38.03,-4.34 51.16,-3.72 25.32,1.18 -40.34,7.66 -75.77,10.16 -88.11,6.21zM298.67,543.75c0,-3.93 4.98,-34.53 6.16,-37.88 0.49,-1.39 2.08,-3.49 3.53,-4.65 2.14,-1.73 2.36,-2.63 1.16,-4.87 -2.79,-5.21 4.92,-20.11 18.53,-35.82l7.95,-9.18 -6.33,-0.88c-3.48,-0.49 -10.12,-0.94 -14.74,-1 -10.69,-0.15 -10.61,-0.23 11.18,-12.87 20.37,-11.81 25.64,-16.32 34.48,-29.49 7.01,-10.45 7.18,-11.51 2.95,-17.79 -6.84,-10.14 -22.86,-37.27 -28.33,-47.98 -9.17,-17.95 -10.34,-24.91 -10.45,-61.79l-0.09,-31.79 -5.18,5.79c-13.33,14.93 -24.45,33.15 -29.54,48.4 -5.92,17.76 -5.93,56.51 -0.02,87.52 0.97,5.07 1.59,9.22 1.4,9.22 -0.2,0 -4.2,-4.39 -8.9,-9.76 -4.7,-5.37 -9.21,-9.54 -10.03,-9.26 -0.82,0.27 -1.93,-0.23 -2.48,-1.11 -0.63,-1.02 -0.43,-1.26 0.54,-0.66 2.31,1.43 2.19,0.97 -7.62,-29.21l-9.1,-28 -1.03,18.43c-0.57,10.13 -0.63,25.73 -0.15,34.67l0.89,16.24 -2.76,-3.33c-21.73,-26.2 -38.8,-60.91 -42.79,-87.01l-1.79,-11.68 -7.98,7.68c-7.73,7.44 -8.07,6.5 -0.61,-1.65 2.75,-3 4.34,-7.13 6.39,-16.53 1.5,-6.89 5.37,-19.04 8.6,-27 3.23,-7.96 5.63,-14.47 5.32,-14.47 -2.98,0 -25.82,40.63 -32.03,56.98 -7.06,18.58 -12.4,33.69 -11.92,33.69 0.28,0 2.43,-3 4.78,-6.67 5.06,-7.89 6.42,-8.68 2.84,-1.67 -3.43,6.73 -16.09,39.6 -17,44.14 -0.4,1.99 0.2,7.2 1.32,11.57 5.4,20.98 6,53.38 1,53.38 -1.88,0 -2.1,-1.89 -1.71,-15.05 0.38,-12.72 -0.07,-17.06 -2.91,-28.05 -5.66,-21.89 -5.21,-21.68 -10.34,-4.99l-4.5,14.65 -1.39,-6.54 -1.39,-6.54 -7.11,8.54c-8.65,10.39 -8.93,10.51 -10.03,4.6 -1.15,-6.11 -0.49,-6.27 -19.64,4.74 -19.05,10.96 -26.46,14.86 -26.46,13.93 0,-0.36 1.65,-1.51 3.67,-2.56 9.02,-4.67 28.89,-26.6 31.45,-34.72 2.78,-8.83 10.96,-40.89 11.95,-46.85 0.36,-2.16 1.99,-9.51 3.63,-16.32 1.64,-6.81 2.75,-12.58 2.47,-12.83C134.23,299.21 122.3,298.66 108,298.24 93.7,297.82 80.2,297.13 78,296.71c-2.2,-0.42 -5.8,-1.1 -8,-1.5 -6.67,-1.22 -24.11,-7.18 -26.81,-9.16 -2.83,-2.08 0.15,-3.86 9.02,-5.43 3.84,-0.68 16.39,-5.44 23.76,-9.02 6.47,-3.14 25.34,-16.49 39.98,-28.27 5.46,-4.4 11.56,-9.2 13.55,-10.67 6.83,-5.03 48.38,-40.38 58.97,-50.16l6.66,-6.16 -2.29,-4.82c-5.16,-10.87 -6.42,-15.97 -4.27,-17.17 1.09,-0.61 4.09,-3.34 6.65,-6.05l4.66,-4.94 3.92,2.32c5.27,3.12 5.37,3.09 14.68,-3.12 7.08,-4.73 7.96,-5.77 6.77,-8 -1.13,-2.1 -0.92,-2.56 1.12,-2.56 2.65,0 5.73,3.11 14.21,14.35 3.34,4.43 6.03,6.78 7.33,6.41 1.95,-0.55 18.77,-3.87 27.39,-5.4 6.7,-1.19 22.4,-0.87 27.18,0.55 3.83,1.14 5.14,0.9 8.58,-1.55 2.43,-1.73 5.68,-2.77 8.1,-2.58 4.85,0.37 7.23,3.25 3.5,4.22 -2.38,0.62 -2.23,1.21 2.01,8 2.52,4.03 6.4,12.73 8.63,19.33 6.03,17.86 6.93,18.21 5.89,2.33 -1.14,-17.37 -0.26,-17.52 13.57,-2.33 9.59,10.54 13.88,13.56 13.88,9.78 0,-0.86 0.35,-1.21 0.77,-0.78 1.77,1.77 -2.31,5.98 -7.23,7.45 -14.37,4.31 -13.85,9.51 2.03,20.42l10.43,7.16 0.67,9.93c0.62,9.21 0.91,10 4,10.86 9.76,2.7 24.1,0.31 27.28,-4.55 1.78,-2.72 6.05,-29.61 6.05,-38.12 0,-6.79 11.38,-9.62 12.69,-3.15 2.49,12.34 7.29,16.33 13.58,11.3 9.33,-7.46 9.54,-7.54 12.43,-4.93 2.59,2.34 2.63,2.27 2.67,-4.82 0.03,-5.48 0.36,-6.65 1.38,-4.91 1.38,2.37 2.4,11.97 3.01,28.43 0.3,8.05 0.96,10.31 4.63,15.73 2.35,3.49 4.28,6.65 4.28,7.03 0,0.38 1.69,3.2 3.75,6.27 2.06,3.07 5.93,10.07 8.58,15.57 21.67,44.8 19.65,71.77 -7.8,104.48l-8.8,10.48 5.46,5.57c7.01,7.14 7.09,6.96 -3.83,8.04 -7.9,0.78 -9.55,1.39 -11,4.06 -0.94,1.73 -4.85,7.75 -8.7,13.37 -3.85,5.62 -7,10.46 -7,10.75 0,0.29 -2.36,4.39 -5.25,9.1 -7.07,11.55 -9.51,20.28 -10.11,36.14 -0.88,23.43 4.57,36.72 22.2,54.08 8.95,8.81 8.65,9.21 -7.07,9.24l-8.89,0.02 -12.13,-12.93c-8.79,-9.36 -12.54,-14.42 -13.6,-18.33 -1.44,-5.29 -0.92,-21.44 0.85,-26.74 0.49,-1.47 -2.2,2.73 -5.98,9.33 -12.74,22.23 -16.33,22.16 -11.34,-0.24 1.11,-5 2.32,-10.43 2.69,-12.08 1.84,-8.26 -6.99,-0.26 -24.65,22.33 -14.08,18.01 -10.83,14.83 -37.81,37.03 -15.92,13.1 -26.26,19.42 -26.26,16.05zM417.82,400 L416.95,390.67h7.83,7.83l-14.35,-8.54c-17.94,-10.67 -25,-16.01 -40.94,-30.96 -24.34,-22.83 -25.6,-23.53 -24.4,-13.5 2.23,18.56 10.33,44.92 19.25,62.67 4.84,9.64 4.9,9.61 3.37,-1.7 -1.59,-11.71 -1.57,-11.73 8.1,-5.96 6.3,3.75 33.11,16.62 34.69,16.65 0.19,0 -0.05,-4.19 -0.52,-9.33zM425.17,346.71c5.58,0.09 5.81,-0.05 5.17,-3.36 -0.56,-2.92 0.02,-3.74 3.72,-5.29 5.94,-2.48 7.52,-5.75 5.68,-11.74 -1.27,-4.14 -1.09,-5.22 1.36,-8.34 7.32,-9.31 4.63,-20.47 -5.44,-22.59 -3.03,-0.64 -3.67,-1.48 -3.67,-4.83 0,-5.73 -1.95,-8.71 -6.84,-10.41 -9.49,-3.31 -15.43,-1.62 -16.62,4.74 -0.68,3.63 -1.33,4.41 -3.04,3.65 -11.52,-5.14 -22.59,10.6 -14.83,21.1 2.54,3.43 2.78,4.55 1.44,6.69 -2.14,3.43 -0.69,9.45 3.46,14.39 2.89,3.44 3.16,4.52 1.97,7.94 -1.69,4.85 -0.38,5.93 5.81,4.77 3.73,-0.7 4.77,-0.36 6.03,2 1.24,2.32 2.31,2.69 5.74,2.02 2.32,-0.46 6.84,-0.78 10.05,-0.73zM284.73,308.67c2.65,-9.62 3.63,-16.12 3.51,-23.33 -0.33,-19.91 -1.91,-57.44 -2.4,-56.95 -0.99,0.99 -5.72,35.24 -6.61,47.78 -0.78,11.09 0.34,47.43 1.43,46.25 0.21,-0.23 2.04,-6.42 4.06,-13.75zM128.74,529.67c-0.45,-5.68 -1.47,-14.97 -2.27,-20.64 -0.81,-5.73 -1.05,-14.63 -0.54,-20.02 0.51,-5.48 0.35,-11.19 -0.37,-13.1 -1.38,-3.62 -0.13,-7.31 3.44,-10.17 1.09,-0.88 2.31,-4.45 2.71,-7.95l0.72,-6.36 8.54,17.95c4.7,9.87 11.25,23.71 14.57,30.74l6.03,12.79 -8.87,13.54 -8.87,13.54h-7.12,-7.12zM348.67,161.33c-7.06,-7.1 -11.62,-10.67 -13.64,-10.67 -1.67,0 -3.03,-0.56 -3.03,-1.25 0,-0.68 1.35,-1.03 3,-0.77 1.65,0.26 6.5,0.86 10.79,1.32 8.62,0.94 10.82,1.64 23.88,7.62 7.04,3.23 9,4.75 9,6.99 0,2.69 -0.52,2.83 -8.65,2.31 -7.85,-0.5 -8.75,-0.29 -9.7,2.27 -0.95,2.57 -1.98,1.88 -11.65,-7.85z" + android:strokeWidth="1.33333" /> + android:pathData="m69.07,248.48c-10.59,-4.39 -11.48,-18.34 -1.48,-23.15 2.29,-1.1 5.75,-3.6 7.7,-5.56 11.22,-11.29 24.29,-3.14 22.87,14.25 -0.91,11.11 -1.54,12.19 -8.5,14.56 -7.61,2.59 -14.18,2.56 -20.59,-0.1z" + android:strokeWidth="1.33333" /> + android:pathData="m440.87,478.87c-7.18,-15.55 -5.06,-28.28 5.62,-33.73 5.38,-2.75 8.61,-1.93 13.96,3.55 2.87,2.94 6.05,4.62 9.96,5.28 6.87,1.15 12.25,5.44 12.58,10.03 0.98,13.71 -7.93,20.53 -29.02,22.22l-9.36,0.75z" + android:strokeWidth="1.33333" /> + android:fillColor="#909090" + android:pathData="m422.84,665c-3.59,-21.94 -3.63,-21.43 1.03,-14.08 7.48,11.8 24.12,19.74 41.34,19.74 16.42,0 79.28,-9.1 84.1,-12.18 2.39,-1.52 -13.86,-0.58 -38.65,2.25 -27.3,3.11 -28.93,1.66 -4.65,-4.15 8.06,-1.93 18.85,-4.7 23.98,-6.15 12.78,-3.62 46.58,-19.89 62.23,-29.97 14.67,-9.44 21.07,-12.95 21.98,-12.05 0.76,0.76 -1.82,15.55 -3.98,22.81 -3.17,10.67 -22.23,27.12 -53.25,45.95l-9.02,5.48h-61.11,-61.11zM416.14,527.89c-3.22,-0.63 -9.82,-3.05 -14.67,-5.37 -4.85,-2.32 -10.45,-4.13 -12.46,-4.02 -2.01,0.11 -4.73,-0.86 -6.06,-2.15 -5.33,-5.21 -14.28,-8.9 -23.35,-9.62l-9.06,-0.73 11.56,-14.67c18.43,-23.39 27.12,-31.3 25.27,-23 -0.37,1.65 -1.58,7.09 -2.69,12.08 -4.99,22.4 -1.4,22.48 11.34,0.24 3.78,-6.6 6.47,-10.79 5.98,-9.33 -1.77,5.29 -2.29,21.45 -0.85,26.74 1.06,3.91 4.82,8.97 13.6,18.33 12.62,13.45 12.65,13.7 1.38,11.49zM104.67,426.63c-23.17,-1.09 -36.45,-2.53 -37.39,-4.05 -0.69,-1.12 0.01,-1.57 14.87,-9.44 5.05,-2.68 16.59,-9.13 25.64,-14.33 19.15,-11.02 18.49,-10.86 19.64,-4.74 1.11,5.92 1.39,5.79 10.03,-4.6l7.11,-8.54 1.39,6.54 1.39,6.54 4.5,-14.65c5.12,-16.64 4.68,-16.84 10.22,4.47 2.42,9.32 3.25,15.96 3.25,26.22 0,18.76 -0.05,18.83 -8.45,13.31 -10.63,-6.99 -12.55,-7.06 -20.94,-0.76 -3.96,2.98 -8.12,5.32 -9.24,5.2 -1.12,-0.12 -11.04,-0.64 -22.04,-1.16zM404.83,403.38c-7.24,-3.27 -16.77,-8.09 -21.17,-10.71 -9.67,-5.76 -9.69,-5.75 -8.1,5.96 1.53,11.31 1.48,11.34 -3.37,1.7 -8.92,-17.75 -17.02,-44.1 -19.25,-62.67 -1.21,-10.02 0.06,-9.32 24.4,13.5 15.94,14.95 23,20.29 40.94,30.96l14.35,8.54h-7.83,-7.83l0.87,9.33c0.48,5.13 0.71,9.33 0.52,9.33 -0.19,-0 -6.27,-2.68 -13.51,-5.95zM258.11,399.7c-4.95,-6.89 -7.13,-31.04 -5.45,-60.37l1.07,-18.67 9.1,28c10.47,32.21 10.36,31.65 5.42,26.92 -5.44,-5.21 -5.48,-5.11 -5.89,12.98l-0.37,16.56zM177.88,314.33c8.67,-23.78 11.4,-30.47 16.87,-41.36 5.15,-10.25 21.84,-36.98 23.08,-36.98 0.31,0 -2.09,6.51 -5.32,14.47 -3.23,7.96 -7.1,20.11 -8.6,27 -2.05,9.4 -3.64,13.53 -6.39,16.53 -7.57,8.27 -7.07,9.04 0.89,1.38 8.22,-7.92 8.26,-7.94 8.17,-4 -0.07,2.97 -0.33,3.36 -1.04,1.56 -0.79,-1.99 -2.66,-0.59 -11.2,8.39 -5.64,5.93 -9.62,10.39 -8.85,9.92 0.77,-0.48 0.44,1 -0.74,3.28 -1.18,2.28 -2.45,4.15 -2.82,4.15 -0.37,0 -0.04,-1.2 0.75,-2.67 2.73,-5.1 0.25,-2.62 -4,4 -5.87,9.15 -5.96,8.52 -0.79,-5.67zM279.3,305.91c-1.24,-21.48 3.21,-74.2 6.54,-77.53 0.49,-0.49 2.06,37.04 2.4,56.95 0.14,8.38 -5.2,34.52 -7.57,37.08 -0.21,0.23 -0.82,-7.2 -1.36,-16.5zM336.28,183.67c-1.42,-3.85 -3.58,-10 -4.79,-13.67 -1.22,-3.67 -4.27,-9.97 -6.78,-14 -5.23,-8.39 -4.68,-9.02 5.81,-6.63 13.29,3.03 44.87,37.3 34.37,37.3 -0.98,0 -6.43,-5.1 -12.1,-11.33 -13.79,-15.14 -14.72,-15.01 -13.51,2 1.08,15.2 0.63,16.15 -2.99,6.33z" + android:strokeWidth="1.33333" /> + android:fillColor="#737373" + android:pathData="m147.7,677.65c-6.55,-9.89 -9.43,-27.67 -5.12,-31.57 3.71,-3.36 4.94,-1.9 7.36,8.73 1.18,5.2 3.93,13.37 6.1,18.17 4.81,10.61 4.86,9.69 -0.53,9.69 -3.71,0 -5.06,-0.87 -7.81,-5.02zM230.9,679.96c2.69,-1.42 8.39,-6.6 12.67,-11.5 14.76,-16.95 17.77,-19.38 17.77,-14.39 0,3.97 -4.47,10.67 -13.09,19.6 -8.52,8.83 -8.81,9 -15.46,8.94l-6.78,-0.06 4.9,-2.59zM363.7,678.31c5.71,-5.9 9.43,-29.65 5.03,-32.18 -1.39,-0.8 -7.32,-5.66 -13.19,-10.79 -25.71,-22.51 -32.35,-27.66 -48.21,-37.37 -12.86,-7.88 -13.02,-8.08 -10.37,-13.22 5.53,-10.73 8.43,-13.1 14.94,-12.21 11.39,1.56 43.32,20.48 63.88,37.86 8.81,7.44 9.42,8.94 5.03,12.39 -5.01,3.94 -4.61,6.68 0.85,5.71 5.92,-1.05 10.56,-4.56 12.59,-9.53l1.7,-4.16 -16.31,-14.88c-23.22,-21.19 -53.99,-40.67 -68.53,-43.39 -5.17,-0.97 -5.43,-2.07 -1.73,-7.27l2.71,-3.81 12.96,6.01c20.75,9.62 43.67,24.9 63.24,42.16 10.86,9.58 9.92,11.72 11.56,-26.13 1.39,-32.15 1.12,-33.72 -7.49,-42.55l-6.35,-6.51 4.67,0.65c2.57,0.36 8.01,2.2 12.1,4.11 4.09,1.9 10.62,4.07 14.52,4.81 7.6,1.44 34.72,1.87 34.72,0.55 0,-0.44 -3.03,-3.52 -6.72,-6.84 -7.6,-6.83 -19.42,-22.66 -17.99,-24.09 1.83,-1.82 16.03,-0.79 20.33,1.48 5,2.64 10,10.6 13.89,22.13 3.72,11.02 2.81,13.98 -5.17,16.8 -17.54,6.2 -23.06,9.09 -28.35,14.82 -15.01,16.28 -17.02,43.3 -7.4,99.16 2.59,15.03 4.72,28.08 4.73,29 0.01,1.29 -7.45,1.67 -32.91,1.67h-32.93zM175.77,675.95c-6.44,-3.76 -12.59,-23.38 -17.03,-54.39 -3.49,-24.35 -3.44,-27.1 0.59,-35.14 6.77,-13.49 6.96,-13.46 8.04,1.14 0.53,7.21 1.54,14.61 2.24,16.44l1.27,3.33 3.14,-3.92c6.24,-7.78 20.51,-48.72 20.92,-60.04 0.11,-3.12 -0.97,-7.76 -2.59,-11.04 -2.31,-4.71 -2.16,-8.32 0.19,-4.52 0.39,0.63 4.87,3.96 9.95,7.4 5.42,3.67 9.82,7.74 10.64,9.85 0.77,1.98 2.02,21.95 2.76,44.38 0.74,22.43 1.76,41.84 2.26,43.14 1.61,4.21 9.32,1.42 27.02,-9.78 9.24,-5.84 16.95,-10.47 17.15,-10.27 2.78,2.78 -14.87,35.5 -25.54,47.36 -12.18,13.53 -17.55,15.45 -21.74,7.77 -2.1,-3.83 -2.37,-8.35 -2.4,-39.25 -0.02,-19.2 -0.47,-35.35 -1,-35.89 -0.53,-0.53 -0.97,0.03 -0.97,1.25 0,1.22 -0.6,2.22 -1.33,2.22 -0.73,0 -1.26,0.45 -1.18,1 0.09,0.55 0.01,1.45 -0.17,2 -0.18,0.55 -0.47,1.6 -0.66,2.33 -0.18,0.73 -0.46,1.48 -0.61,1.67 -0.15,0.18 -0.43,1.53 -0.62,3 -0.79,6.1 -16.02,52.74 -20.14,61.67 -4.42,9.59 -5.9,10.79 -10.19,8.28zM343.97,659.49c-17.67,-17.33 -25.31,-23.37 -45.41,-35.87 -12.1,-7.53 -12.59,-7.58 -14.55,-1.62 -2.19,6.64 -5.78,6.22 -7.92,-0.91 -1.17,-3.92 -1.39,-9.57 -0.71,-19 1.31,-18.35 2.52,-21.05 4.65,-10.37 1.73,8.69 5.41,14.95 8.77,14.95 14.84,0 81.26,57.84 76.54,66.66 -2.41,4.51 -3.17,4.02 -21.37,-13.83zM92,624.89c0,-4.24 0.53,-5.78 2,-5.78 1.1,0 7.25,-2.46 13.67,-5.46 14.75,-6.9 23,-8.49 23,-4.44 0,2.88 -4.31,8.12 -6.68,8.12 -0.74,0 -7.99,3 -16.12,6.67 -8.13,3.67 -15.02,6.67 -15.32,6.67 -0.3,0 -0.55,-2.6 -0.55,-5.78zM134.14,615.22c-0.45,-1.16 -0.82,-5.21 -0.83,-9 -0.04,-13.51 -1.38,-14.59 -14.11,-11.39 -7.19,1.81 -7.87,1.31 -6.12,-4.42 0.75,-2.43 2.35,-9.09 3.57,-14.8 3.5,-16.44 11.18,-21.3 26.78,-16.93 7.88,2.21 8.41,3.93 3.79,12.38 -3.49,6.39 -3.83,8.26 -4.32,24.26 -0.3,9.53 -1.09,18.38 -1.77,19.67 -1.53,2.91 -5.91,3.05 -6.99,0.22zM108.75,555.74c3.36,-10.59 8.44,-13.75 24.5,-15.25 11.66,-1.08 22.53,1.31 30.32,6.67 8.38,5.78 8.36,6.6 -0.27,8.61 -6.81,1.58 -7.73,1.51 -11.77,-0.99 -8.8,-5.44 -29.44,-4.42 -39.13,1.93 -4.04,2.64 -4.74,2.46 -3.65,-0.98zM250.96,539.72c-1.16,-5.47 -1,-5.95 3.76,-11.05l4.98,-5.33 -2.33,-6.68c-3.12,-8.96 -7.2,-16.78 -11.27,-21.61l-3.35,-3.99 12.98,-0.72c11.55,-0.64 41.42,-8.88 59.83,-16.51 2.45,-1.02 -5.29,12.6 -7.84,13.78 -2.14,0.99 -2.13,1.38 0.11,6.39l2.38,5.33 -10.11,6.5c-10.13,6.51 -27.78,20.6 -32.78,26.16 -1.47,1.63 -5.48,5.32 -8.91,8.2l-6.24,5.24 -1.21,-5.72zM269.95,453.24c-13.29,-10.7 -25.81,-13.13 -37.39,-7.25 -3.61,1.83 -6.68,3.33 -6.83,3.33 -0.85,0.02 -3.05,-10.76 -3.06,-14.99l-0.01,-5h5.82c3.84,0 7,-0.93 9.28,-2.72l3.46,-2.72 6.74,4.64c6.19,4.26 13.88,7.17 25.03,9.46 4.23,0.87 4.33,1.06 4.24,7.79 -0.16,11.55 -1.06,12.48 -7.29,7.47zM350.31,380.67c-10.37,-13.06 -17.71,-29.11 -29.1,-63.67 -5.86,-17.78 -10.94,-33.14 -11.28,-34.14 -0.98,-2.85 -3.69,0.06 -12.79,13.69 -4.45,6.67 -8.33,12.38 -8.62,12.69 -1.43,1.51 4.94,-14.88 8.51,-21.9 4.55,-8.95 14.89,-23.92 22.1,-31.99l4.76,-5.33 0.1,28.67c0.16,43.91 2.02,50.79 23.27,85.83 7.42,12.24 10.13,17.91 9.83,20.54 -0.4,3.48 -0.68,3.3 -6.77,-4.37zM418.67,336c-1.47,-1.47 -2.67,-3.68 -2.67,-4.92 0,-1.76 -0.87,-1.42 -3.99,1.57 -8.18,7.83 -21,-1.09 -19.63,-13.65 0.43,-3.95 -0.17,-7.26 -2,-10.95 -6.16,-12.45 2.52,-22.36 16.28,-18.6 1.43,0.39 2.12,-0.7 2.42,-3.78 1.1,-11.4 19.35,-8.26 22.29,3.84 1.22,5.02 1.95,5.85 5.85,6.65 7.88,1.61 9.58,12.32 3.39,21.26 -2.93,4.22 -3.18,5.35 -1.83,8.31 3.44,7.55 -1.64,12.95 -12.18,12.95 -3.49,0 -6.17,-0.9 -7.94,-2.67zM424.53,325.39c8.61,-3.27 11.51,-13.29 6.75,-23.33 -6.58,-13.86 -27.94,-8.86 -27.94,6.53 0,11.43 11.44,20.5 21.19,16.79zM426.98,205c-0.74,-0.92 -1.76,-3.77 -2.26,-6.33 -2.19,-11.1 -3.34,-11.57 -13.13,-5.36 -3.44,2.18 -6.26,3.74 -6.26,3.46 0,-1.38 33.86,-76.59 39.97,-88.77 8.25,-16.45 17.28,-32 18.6,-32 5.43,0 8.44,12.3 5.63,23.01 -1.23,4.7 -5.91,24.26 -7.56,31.66 -2.8,12.49 -6.01,29.07 -6.64,34.23 -0.43,3.54 -1.05,8.38 -1.38,10.76 -0.33,2.38 -0.93,7.48 -1.33,11.33 -1.26,11.99 -1.56,12.71 -5.04,12.05 -2.25,-0.43 -4.23,0.56 -7.02,3.51 -4.14,4.39 -11.01,5.63 -13.57,2.45zM177.53,130.33c-15.43,-47.15 -19.01,-63.89 -14.63,-68.57 4.76,-5.08 9.43,-1.53 21.38,16.23 4.44,6.6 10.55,15.3 13.58,19.34 3.02,4.03 6.56,8.83 7.86,10.67 1.3,1.83 4.16,5.73 6.37,8.67 15.59,20.73 15.6,20.79 2.58,27.87l-6.6,3.59 -4,-2.96 -4,-2.96 -5.8,6.22c-3.19,3.42 -6.47,6.22 -7.29,6.22 -0.82,0 -5.08,-10.95 -9.46,-24.33z" + android:strokeWidth="1.33333" /> + android:fillColor="#565656" + android:pathData="m93.33,681.33c0,-0.73 1.17,-1.33 2.61,-1.33 3.77,0 12.35,-8.76 17.42,-17.8l4.38,-7.8 4.8,9.04c5.93,11.17 7.56,12.28 15.06,10.28 6.26,-1.67 7.25,-1.23 10.81,4.84l2.41,4.1h-28.74c-18.27,0 -28.74,-0.49 -28.74,-1.33zM156.95,675.07 L153.51,667.47 159.75,663.89 165.99,660.32 168.96,666.49c3.12,6.5 7.37,10.84 10.61,10.84 3.16,0 10.21,-17.25 20.17,-49.33 10.11,-32.56 11.96,-37.76 12.34,-34.67 0.13,1.1 0.32,17.3 0.42,36 0.21,41.4 2,47.13 12.93,41.29 3.93,-2.11 3.01,0.12 -2.66,6.38l-5.13,5.67L189.01,682.67 160.38,682.67ZM336.17,387.66c-10.19,-4.99 -12.11,-5.48 -22,-5.56 -7.6,-0.07 -11.27,-0.65 -12.29,-1.96 -1.4,-1.79 -4.24,-1.6 -10.75,0.73 -1.74,0.62 -1.3,-0.36 1.52,-3.39 3.03,-3.25 3.56,-4.53 2.23,-5.35 -1.22,-0.75 -0.1,-1.74 3.69,-3.26 6.08,-2.43 6.46,-3.13 3.11,-5.68 -3.74,-2.84 6.24,-2.38 14.98,0.69 7.53,2.65 25.93,14.14 34.02,21.25 4.3,3.78 4.43,4.1 1.67,4.15 -1.75,0.03 -3,0.89 -3,2.05 0,2.7 -0.36,2.59 -13.16,-3.68zM204.67,371.06c-10.44,-3.22 -10.81,-3.24 -17.28,-1.02 -4.59,1.57 -6.77,1.81 -7.11,0.78 -0.7,-2.09 -5.04,-1.85 -9.64,0.53l-3.9,2.02 2.7,-4.58c2.49,-4.22 2.53,-4.68 0.47,-5.83 -2.59,-1.45 2.04,-5.63 6.23,-5.63 1.22,0 2.55,-1.28 2.96,-2.85 0.97,-3.71 5.25,-2.92 19.26,3.55 10.26,4.74 18.97,11.58 18.97,14.89 0,2.11 0.47,2.18 -12.67,-1.87z" + android:strokeWidth="1.33333" /> + android:fillColor="#ffffff" + android:pathData="m177.78,327.84c-0.01,-1.11 3.63,-8.62 4.64,-9.57 1.32,-1.24 3.43,-5.11 3.59,-6.62 0.12,-1.11 1.01,-2.16 9.16,-10.79 3.2,-3.39 6.63,-6.72 7.62,-7.41l1.8,-1.25 0.63,0.95c0.35,0.52 0.87,0.95 1.16,0.95 0.34,0 0.64,0.91 0.82,2.44 0.16,1.34 0.76,4.8 1.33,7.68 0.58,2.89 0.97,5.32 0.89,5.41 -0.09,0.09 -0.51,-0.62 -0.94,-1.57 -0.97,-2.14 -2.87,-3.79 -4.37,-3.79 -1.9,0.01 -5.2,2.25 -10.5,7.13 -4.78,4.41 -12.15,12.1 -14.68,15.33 -0.64,0.81 -1.16,1.31 -1.17,1.11z" + android:strokeWidth="0.423776" /> + android:fillColor="#ffffff" + android:pathData="m265.71,406.34c-0.7,-0.43 -1.49,-0.7 -1.76,-0.6 -0.27,0.1 -0.79,-0.04 -1.15,-0.32 -0.59,-0.45 -0.62,-2.06 -0.26,-14.83 0.39,-13.99 0.77,-17.68 1.81,-17.66 0.28,0 0.98,0.37 1.55,0.8 0.99,0.76 1.03,0.96 0.92,5.18 -0.06,2.41 0.12,9.44 0.42,15.63 0.33,6.98 0.39,11.5 0.14,11.91 -0.35,0.6 -0.52,0.59 -1.66,-0.11z" + android:strokeWidth="0.423776" /> + android:fillColor="#ffffff" + android:pathData="m262.04,555.6c-3.04,-3.13 -3.36,-4.17 -1.91,-6.35 1.35,-2.04 7.5,-7.34 10.99,-9.47 8.16,-4.99 10.87,-1.39 5.27,6.99 -2.32,3.48 -10.01,11.36 -11.08,11.35 -0.45,-0 -1.93,-1.13 -3.27,-2.51z" + android:strokeWidth="0.423776" /> + + +