.
This commit is contained in:
@@ -5,7 +5,8 @@
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
||||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||||
<uses-permission android:name="android.permission.READ_CONTACTS" /> <!-- permissions for app blocking -->
|
||||
<uses-permission android:name="android.permission.READ_CONTACTS" /><!-- permissions for app blocking -->
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.PACKAGE_USAGE_STATS"
|
||||
tools:ignore="ProtectedPermissions" />
|
||||
@@ -143,6 +144,9 @@
|
||||
<activity android:name=".appblocking.FUAActivity" />
|
||||
<activity android:name=".appblocking.BlockApp" />
|
||||
|
||||
<meta-data android:name="com.onesignal.NotificationServiceExtension"
|
||||
android:value="com.ssb.simplitend.apputils.NotificationService" />
|
||||
|
||||
<service
|
||||
android:name=".appblocking.TopAppDetectionService"
|
||||
android:exported="false"
|
||||
|
||||
@@ -10,6 +10,9 @@ import android.os.Bundle;
|
||||
import android.provider.Settings;
|
||||
import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
import android.view.View;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.TextView;
|
||||
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
import androidx.appcompat.widget.SwitchCompat;
|
||||
@@ -33,6 +36,8 @@ public class FUAActivity extends AppCompatActivity {
|
||||
MySharedPref mySharedPref;
|
||||
List<AppList> whiteList;
|
||||
|
||||
LinearLayout no_fua;
|
||||
|
||||
List<AppList> installed_app_list;
|
||||
|
||||
@Override
|
||||
@@ -44,6 +49,7 @@ public class FUAActivity extends AppCompatActivity {
|
||||
rvApps = (RecyclerView) findViewById(R.id.rvApps);
|
||||
rvWhiteApps = (RecyclerView) findViewById(R.id.rv_white_apps);
|
||||
mySharedPref = new MySharedPref(FUAActivity.this);
|
||||
no_fua = findViewById(R.id.no_fua);
|
||||
|
||||
if (!isAccessibilityAppBlockingEnabled()) {
|
||||
openAccessibilityDialog();
|
||||
@@ -55,6 +61,14 @@ public class FUAActivity extends AppCompatActivity {
|
||||
whiteList = getWhiteListApps();
|
||||
Collections.sort(whiteList, (o1, o2) -> o1.getName().compareToIgnoreCase(o2.getName()));
|
||||
|
||||
if (whiteList.size() > 0) {
|
||||
no_fua.setVisibility(View.GONE);
|
||||
rvWhiteApps.setVisibility(View.VISIBLE);
|
||||
} else {
|
||||
no_fua.setVisibility(View.VISIBLE);
|
||||
rvWhiteApps.setVisibility(View.GONE);
|
||||
}
|
||||
|
||||
adapter = new MyAppsAdapter(FUAActivity.this, getInstalledApps(), false, appList -> {
|
||||
if (!isContainsWhiteList(appList)) {
|
||||
whiteList.add(appList);
|
||||
@@ -63,6 +77,14 @@ public class FUAActivity extends AppCompatActivity {
|
||||
whiteList.remove(getPosition(appList));
|
||||
}
|
||||
|
||||
if (whiteList.size() > 0) {
|
||||
no_fua.setVisibility(View.GONE);
|
||||
rvWhiteApps.setVisibility(View.VISIBLE);
|
||||
} else {
|
||||
no_fua.setVisibility(View.VISIBLE);
|
||||
rvWhiteApps.setVisibility(View.GONE);
|
||||
}
|
||||
|
||||
whiteListAdapter.notifyDataSetChanged();
|
||||
});
|
||||
|
||||
|
||||
@@ -12,6 +12,7 @@ import android.util.Log;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.inputmethod.InputMethodManager;
|
||||
import android.widget.Toast;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.RawRes;
|
||||
@@ -20,6 +21,7 @@ import com.bumptech.glide.Glide;
|
||||
import com.google.android.material.bottomsheet.BottomSheetDialog;
|
||||
import com.ssb.simplitend.R;
|
||||
import com.ssb.simplitend.appblocking.MySharedPref;
|
||||
import com.ssb.simplitend.databinding.BottomSheetAlertBinding;
|
||||
import com.ssb.simplitend.databinding.DecisionBottomsheetBinding;
|
||||
import com.ssb.simplitend.databinding.DoneBottomsheetBinding;
|
||||
|
||||
@@ -38,6 +40,8 @@ public abstract class AppUtil {
|
||||
public static final String IMAGE_BASE_URL = "https://simplitend.betadelivery.com/storage/upload/";
|
||||
private static final String TAG = "AppUtil";
|
||||
|
||||
public static final String NOTIFICATION_ACTION = "com.simplitend.NOTIFICATION_ACTION";
|
||||
|
||||
// fields
|
||||
public static final String PATIENT_DETAILS = "user_details";
|
||||
public static final String CAREGIVER_DETAILS = "caregiver_details";
|
||||
@@ -285,16 +289,97 @@ public abstract class AppUtil {
|
||||
setWantSecurityFlag(context, NOT_ASKED_CG_SECURITY);
|
||||
}
|
||||
|
||||
public static void dialPhone(Activity activity, String phone_number) {
|
||||
public static void dialPhone(Context activity, String phone_number) {
|
||||
Intent intent = new Intent(Intent.ACTION_DIAL, Uri.fromParts("tel",
|
||||
phone_number, null));
|
||||
if (activity != null) activity.startActivity(intent);
|
||||
}
|
||||
|
||||
public static void messageNumber(Activity activity, String phone_number){
|
||||
public static void messageNumber(Context activity, String phone_number){
|
||||
Uri uri = Uri.parse("smsto:" + phone_number);
|
||||
Intent intent = new Intent(Intent.ACTION_SENDTO, uri);
|
||||
// intent.putExtra("sms_body", "The SMS text");
|
||||
if (activity != null) activity.startActivity(intent);
|
||||
}
|
||||
|
||||
public static void showBottomAlert(Context context, String content_type, Intent intent) throws Exception {
|
||||
BottomSheetDialog bsd = new BottomSheetDialog(context, R.style.BottomSheetDialog);
|
||||
BottomSheetAlertBinding binding = BottomSheetAlertBinding.inflate(LayoutInflater.from(context));
|
||||
bsd.setContentView(binding.getRoot());
|
||||
|
||||
String title = intent.getStringExtra(NotificationService.NOTIFICATION_TITLE_KEY);
|
||||
String body = intent.getStringExtra(NotificationService.NOTIFICATION_BODY_KEY);
|
||||
|
||||
switch (content_type){
|
||||
case Constants.PATIENT_OUT_OF_GEOFENCE:
|
||||
|
||||
setupBottomSheet(binding,
|
||||
R.drawable.img_medication_time,
|
||||
title, "Current location of patient",
|
||||
"Unknown", "Call patient",
|
||||
v -> {
|
||||
CaregiverDataCache.getCaregiverData(context,(careGiverData -> {
|
||||
if (careGiverData == null || careGiverData.patientDetails == null){
|
||||
Toast.makeText(context, "Couldn't load data", Toast.LENGTH_SHORT).show();
|
||||
return;
|
||||
}
|
||||
|
||||
AppUtil.dialPhone(context, careGiverData.patientDetails.phone_number);
|
||||
}), true);
|
||||
});
|
||||
|
||||
bsd.show();
|
||||
break;
|
||||
case Constants.ACTIVITY_TIME:
|
||||
setupBottomSheet(binding,
|
||||
R.drawable.img_activity_time,
|
||||
title, body,
|
||||
null, "Text patient",
|
||||
v -> {
|
||||
CaregiverDataCache.getCaregiverData(context,(careGiverData -> {
|
||||
if (careGiverData == null || careGiverData.patientDetails == null){
|
||||
Toast.makeText(context, "Couldn't load data", Toast.LENGTH_SHORT).show();
|
||||
return;
|
||||
}
|
||||
|
||||
AppUtil.messageNumber(context, careGiverData.patientDetails.phone_number);
|
||||
}), true);
|
||||
});
|
||||
|
||||
bsd.show();
|
||||
break;
|
||||
case Constants.MEDICINE_TIME:
|
||||
setupBottomSheet(binding,
|
||||
R.drawable.img_medication_time,
|
||||
title, body,
|
||||
null, "Text patient",
|
||||
v -> {
|
||||
CaregiverDataCache.getCaregiverData(context,(careGiverData -> {
|
||||
if (careGiverData == null || careGiverData.patientDetails == null){
|
||||
Toast.makeText(context, "Couldn't load data", Toast.LENGTH_SHORT).show();
|
||||
return;
|
||||
}
|
||||
|
||||
AppUtil.messageNumber(context, careGiverData.patientDetails.phone_number);
|
||||
}), true);
|
||||
});
|
||||
|
||||
bsd.show();
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private static void setupBottomSheet(BottomSheetAlertBinding binding,
|
||||
int img_res,
|
||||
String title, String description_title,
|
||||
String description, String btn_text,
|
||||
View.OnClickListener btn_clickListener) {
|
||||
binding.image.setImageResource(img_res);
|
||||
binding.title.setText(title);
|
||||
binding.descriptionTitle.setText(description_title);
|
||||
binding.description.setText(description);
|
||||
binding.btn.setText(btn_text);
|
||||
binding.btn.setOnClickListener(btn_clickListener);
|
||||
}
|
||||
}
|
||||
|
||||
10
app/src/main/java/com/ssb/simplitend/apputils/Constants.java
Normal file
10
app/src/main/java/com/ssb/simplitend/apputils/Constants.java
Normal file
@@ -0,0 +1,10 @@
|
||||
package com.ssb.simplitend.apputils;
|
||||
|
||||
public abstract class Constants {
|
||||
public static final String NEW_SUBSCRIPTION = "new_subscription";
|
||||
public static final String ACTIVITY_TIME = "activity_time";
|
||||
public static final String MEDICINE_TIME = "medicine_time";
|
||||
public static final String GEOFENCING_RADIUS_UPDATED = "geofencing_radius_updated";
|
||||
public static final String HOME_LOCATION_UPDATED = "home_location_updated";
|
||||
public static final String PATIENT_OUT_OF_GEOFENCE = "patient_outof_geofence";
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
package com.ssb.simplitend.apputils;
|
||||
|
||||
import android.content.Intent;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
|
||||
import com.onesignal.notifications.INotificationReceivedEvent;
|
||||
import com.onesignal.notifications.INotificationServiceExtension;
|
||||
|
||||
import org.json.JSONException;
|
||||
import org.json.JSONObject;
|
||||
|
||||
public class NotificationService implements INotificationServiceExtension {
|
||||
|
||||
public static final String CONTENT_TYPE_KEY = "content_type_key";
|
||||
public static final String NOTIFICATION_BODY_KEY = "notification_body_key";
|
||||
public static final String NOTIFICATION_TITLE_KEY = "notification_title_key";
|
||||
|
||||
@Override
|
||||
public void onNotificationReceived(@NonNull INotificationReceivedEvent iNotificationReceivedEvent) {
|
||||
JSONObject extras = iNotificationReceivedEvent.getNotification().getAdditionalData();
|
||||
String content_type = null;
|
||||
if (extras != null){
|
||||
try {
|
||||
content_type = extras.getString("content_type");
|
||||
} catch (JSONException e) {
|
||||
// do nothing
|
||||
}
|
||||
}
|
||||
|
||||
Intent intent = new Intent(AppUtil.NOTIFICATION_ACTION);
|
||||
intent.putExtra(CONTENT_TYPE_KEY, content_type);
|
||||
intent.putExtra(NOTIFICATION_BODY_KEY, iNotificationReceivedEvent.getNotification().getBody());
|
||||
intent.putExtra(NOTIFICATION_TITLE_KEY, iNotificationReceivedEvent.getNotification().getTitle());
|
||||
|
||||
iNotificationReceivedEvent.getContext().sendBroadcast(intent);
|
||||
}
|
||||
}
|
||||
@@ -17,11 +17,5 @@ public class SimpliTendApp extends Application {
|
||||
|
||||
// OneSignal Initialization
|
||||
OneSignal.initWithContext(this, getString(R.string.ONE_SIGNAL_APP_ID));
|
||||
|
||||
// handling notification when app is in foreground.
|
||||
// OneSignal.getNotifications().addForegroundLifecycleListener(iNotificationWillDisplayEvent -> {
|
||||
// Toast.makeText(this, "Notifies : " + iNotificationWillDisplayEvent.getNotification().getBody(), Toast.LENGTH_SHORT).show();
|
||||
// });
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,10 +1,17 @@
|
||||
package com.ssb.simplitend.caregiverdashboard.activities;
|
||||
|
||||
import static com.ssb.simplitend.apputils.NotificationService.CONTENT_TYPE_KEY;
|
||||
|
||||
import android.content.BroadcastReceiver;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.content.IntentFilter;
|
||||
import android.os.Build;
|
||||
import android.os.Bundle;
|
||||
import android.view.View;
|
||||
import android.widget.Toast;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
import androidx.appcompat.content.res.AppCompatResources;
|
||||
import androidx.fragment.app.Fragment;
|
||||
@@ -13,9 +20,12 @@ import androidx.lifecycle.ViewModelProvider;
|
||||
import com.bumptech.glide.Glide;
|
||||
import com.onesignal.Continue;
|
||||
import com.onesignal.OneSignal;
|
||||
import com.onesignal.notifications.INotificationLifecycleListener;
|
||||
import com.onesignal.notifications.INotificationWillDisplayEvent;
|
||||
import com.ssb.simplitend.R;
|
||||
import com.ssb.simplitend.apputils.AppUtil;
|
||||
import com.ssb.simplitend.apputils.CaregiverDataCache;
|
||||
import com.ssb.simplitend.apputils.Constants;
|
||||
import com.ssb.simplitend.articles.ArticlesActivity;
|
||||
import com.ssb.simplitend.caregiverdashboard.fragments.CgDashBoardFragment;
|
||||
import com.ssb.simplitend.caregiverdashboard.fragments.MyPatientFragment;
|
||||
@@ -31,6 +41,9 @@ import com.ssb.simplitend.welcome.welcomecg.mvvm.CareGiverData;
|
||||
import com.yarolegovich.slidingrootnav.SlidingRootNavBuilder;
|
||||
import com.yarolegovich.slidingrootnav.callback.DragStateListener;
|
||||
|
||||
import org.json.JSONException;
|
||||
import org.json.JSONObject;
|
||||
|
||||
public class CaregiverDashActivity extends AppCompatActivity implements
|
||||
DragStateListener,
|
||||
HomeBottomNav.OnBottomNavItemSelectListener {
|
||||
@@ -38,11 +51,11 @@ public class CaregiverDashActivity extends AppCompatActivity implements
|
||||
// view binding
|
||||
protected CaregiverDashboardActivityBinding binding;
|
||||
private CaregiverDashboardMenuBinding menuBinding;
|
||||
|
||||
protected CaregiverMainViewModel viewModel;
|
||||
|
||||
private CareGiverData careGiverData;
|
||||
|
||||
private BroadcastReceiver notification_receiver;
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
@@ -59,6 +72,19 @@ public class CaregiverDashActivity extends AppCompatActivity implements
|
||||
watchSubscription();
|
||||
}, true);
|
||||
|
||||
// NOTIFICATION RECEIVER
|
||||
notification_receiver = new BroadcastReceiver() {
|
||||
@Override
|
||||
public void onReceive(Context context, Intent intent) {
|
||||
String content_type = intent.getStringExtra(CONTENT_TYPE_KEY);
|
||||
try {
|
||||
AppUtil.showBottomAlert(CaregiverDashActivity.this, content_type, intent);
|
||||
}catch (Exception e){
|
||||
// do nothing
|
||||
}
|
||||
}
|
||||
};
|
||||
registerReceiver(notification_receiver, new IntentFilter(AppUtil.NOTIFICATION_ACTION));
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -74,18 +100,24 @@ public class CaregiverDashActivity extends AppCompatActivity implements
|
||||
@Override
|
||||
public void onBackPressed() {
|
||||
Fragment fragment = getSupportFragmentManager().findFragmentByTag("chat");
|
||||
if (fragment != null){
|
||||
if (fragment instanceof ChatFragment){
|
||||
if (fragment != null) {
|
||||
if (fragment instanceof ChatFragment) {
|
||||
binding.bottomNav.selectMenuItem(MenuItem.DASHBOARD);
|
||||
onBottomNavItemSelected(MenuItem.DASHBOARD);
|
||||
}else{
|
||||
} else {
|
||||
super.onBackPressed();
|
||||
}
|
||||
}else{
|
||||
} else {
|
||||
super.onBackPressed();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onDestroy() {
|
||||
super.onDestroy();
|
||||
unregisterReceiver(notification_receiver);
|
||||
}
|
||||
|
||||
private void initViews() {
|
||||
|
||||
// viewmodel
|
||||
@@ -105,21 +137,21 @@ public class CaregiverDashActivity extends AppCompatActivity implements
|
||||
.inject();
|
||||
|
||||
binding.bottomNav.setItemSelectListener(this);
|
||||
|
||||
|
||||
}
|
||||
|
||||
private void clickEvents() {
|
||||
|
||||
// menu click events
|
||||
menuBinding.close.setOnClickListener(v -> {
|
||||
if (viewModel.slidingRootNav.isMenuOpened()){
|
||||
if (viewModel.slidingRootNav.isMenuOpened()) {
|
||||
viewModel.slidingRootNav.closeMenu(true);
|
||||
}
|
||||
});
|
||||
|
||||
// content click events
|
||||
binding.tint.setOnClickListener(v -> {
|
||||
if (viewModel.slidingRootNav.isMenuOpened()){
|
||||
if (viewModel.slidingRootNav.isMenuOpened()) {
|
||||
viewModel.slidingRootNav.closeMenu(true);
|
||||
binding.tint.setVisibility(View.GONE);
|
||||
}
|
||||
@@ -152,9 +184,9 @@ public class CaregiverDashActivity extends AppCompatActivity implements
|
||||
|
||||
}
|
||||
|
||||
private void watchSubscription(){
|
||||
if (careGiverData != null){
|
||||
if (careGiverData.isCaregiverTakeSubscription != 1){
|
||||
private void watchSubscription() {
|
||||
if (careGiverData != null) {
|
||||
if (careGiverData.isCaregiverTakeSubscription != 1) {
|
||||
// user has not subscribed yet
|
||||
Intent intent = new Intent(this, CgSubscriptionActivity.class);
|
||||
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
|
||||
@@ -167,14 +199,13 @@ public class CaregiverDashActivity extends AppCompatActivity implements
|
||||
// initializing dashboard fragment
|
||||
replaceFragment(new CgDashBoardFragment(), "dashboard");
|
||||
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU){
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
|
||||
// requestPermission will show the native Android notification permission prompt.
|
||||
OneSignal.getNotifications().requestPermission(true, Continue.with(r -> {
|
||||
if (r.isSuccess()) {
|
||||
if (r.getData() != null) {
|
||||
// `requestPermission` completed successfully and the user has accepted permission
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
// `requestPermission` completed successfully but the user has rejected permission
|
||||
}
|
||||
}
|
||||
@@ -183,12 +214,12 @@ public class CaregiverDashActivity extends AppCompatActivity implements
|
||||
}
|
||||
|
||||
private void setLayoutDetails() {
|
||||
if (careGiverData == null || careGiverData.patientDetails == null){
|
||||
if (careGiverData == null || careGiverData.patientDetails == null) {
|
||||
return;
|
||||
}
|
||||
|
||||
menuBinding.name.setText(careGiverData.first_name);
|
||||
if (careGiverData.profile_photo != null){
|
||||
if (careGiverData.profile_photo != null) {
|
||||
Glide.with(this)
|
||||
.load(AppUtil.IMAGE_BASE_URL + careGiverData.profile_photo)
|
||||
.placeholder(android.R.color.darker_gray)
|
||||
@@ -202,9 +233,9 @@ public class CaregiverDashActivity extends AppCompatActivity implements
|
||||
if (fragment instanceof CgDashBoardFragment) {
|
||||
|
||||
String first_name = "";
|
||||
if (careGiverData != null && careGiverData.first_name != null){
|
||||
if (careGiverData != null && careGiverData.first_name != null) {
|
||||
String[] name = careGiverData.first_name.split(" ");
|
||||
if (name.length > 0){
|
||||
if (name.length > 0) {
|
||||
first_name = name[0];
|
||||
}
|
||||
}
|
||||
@@ -215,7 +246,7 @@ public class CaregiverDashActivity extends AppCompatActivity implements
|
||||
|
||||
}
|
||||
|
||||
private void replaceFragment(Fragment fragment, String tag){
|
||||
private void replaceFragment(Fragment fragment, String tag) {
|
||||
getSupportFragmentManager().beginTransaction()
|
||||
.replace(R.id.fcv_cg_home, fragment, tag)
|
||||
.commitAllowingStateLoss();
|
||||
@@ -229,10 +260,10 @@ public class CaregiverDashActivity extends AppCompatActivity implements
|
||||
|
||||
@Override
|
||||
public void onDragEnd(boolean isMenuOpened) {
|
||||
if (isMenuOpened){
|
||||
if (isMenuOpened) {
|
||||
binding.getRoot().setRadius(30);
|
||||
binding.tint.setVisibility(View.VISIBLE);
|
||||
}else{
|
||||
} else {
|
||||
binding.getRoot().setRadius(0);
|
||||
binding.tint.setVisibility(View.GONE);
|
||||
}
|
||||
@@ -240,7 +271,7 @@ public class CaregiverDashActivity extends AppCompatActivity implements
|
||||
|
||||
@Override
|
||||
public void onBottomNavItemSelected(MenuItem selectedItem) {
|
||||
if (selectedItem == MenuItem.DASHBOARD){
|
||||
if (selectedItem == MenuItem.DASHBOARD) {
|
||||
replaceFragment(new CgDashBoardFragment(), "dashboard");
|
||||
|
||||
// setting up toolbar accordingly
|
||||
@@ -251,16 +282,16 @@ public class CaregiverDashActivity extends AppCompatActivity implements
|
||||
binding.toolbar.setNavigationIconTint(getResources().getColor(R.color.black));
|
||||
|
||||
String first_name = "";
|
||||
if (careGiverData != null && careGiverData.first_name != null){
|
||||
if (careGiverData != null && careGiverData.first_name != null) {
|
||||
String[] name = careGiverData.first_name.split(" ");
|
||||
if (name.length > 0){
|
||||
if (name.length > 0) {
|
||||
first_name = name[0];
|
||||
}
|
||||
}
|
||||
|
||||
binding.toolbar.setTitle("Welcome " + first_name);
|
||||
|
||||
}else if (selectedItem == MenuItem.MY_PATIENT){
|
||||
} else if (selectedItem == MenuItem.MY_PATIENT) {
|
||||
replaceFragment(new MyPatientFragment(), "my_patient");
|
||||
|
||||
// setting up toolbar accordingly
|
||||
@@ -270,7 +301,7 @@ public class CaregiverDashActivity extends AppCompatActivity implements
|
||||
binding.toolbar.setTitle(null);
|
||||
binding.toolbar.setNavigationIcon(AppCompatResources.getDrawable(this, R.drawable.ic_menu));
|
||||
binding.toolbar.setNavigationIconTint(getResources().getColor(R.color.white));
|
||||
}else if (selectedItem == MenuItem.CHATS){
|
||||
} else if (selectedItem == MenuItem.CHATS) {
|
||||
replaceFragment(new ChatFragment(), "chat");
|
||||
|
||||
binding.toolbar.setVisibility(View.GONE);
|
||||
|
||||
@@ -1,11 +1,15 @@
|
||||
package com.ssb.simplitend.caregiverdashboard.fragments;
|
||||
|
||||
import static com.ssb.simplitend.apputils.NotificationService.CONTENT_TYPE_KEY;
|
||||
import static com.ssb.simplitend.articles.ArticleShowerActivity.ARTICLE_TITLE;
|
||||
import static com.ssb.simplitend.articles.ArticleShowerActivity.ARTICLE_URL_KEY;
|
||||
import static com.ssb.simplitend.cg_geofencing.CgGeoFencingActivity.GEOFENCE_DETAILS_KEY;
|
||||
|
||||
import android.app.ProgressDialog;
|
||||
import android.content.BroadcastReceiver;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.content.IntentFilter;
|
||||
import android.os.Bundle;
|
||||
import android.util.Log;
|
||||
import android.view.LayoutInflater;
|
||||
@@ -69,6 +73,8 @@ public class CgDashBoardFragment extends Fragment implements
|
||||
private PatientData patientData;
|
||||
private ProgressDialog progressDialog;
|
||||
private GoogleMap mGoogleMap;
|
||||
|
||||
private BroadcastReceiver notification_receiver;
|
||||
|
||||
public CgDashBoardFragment(){
|
||||
// required empty
|
||||
@@ -84,11 +90,27 @@ public class CgDashBoardFragment extends Fragment implements
|
||||
|
||||
progressDialog = new ProgressDialog(requireContext());
|
||||
|
||||
notification_receiver = new BroadcastReceiver() {
|
||||
@Override
|
||||
public void onReceive(Context context, Intent intent) {
|
||||
String content_type = intent.getStringExtra(CONTENT_TYPE_KEY);
|
||||
|
||||
loadReminders();
|
||||
loadActivities();
|
||||
// if (Constants.ACTIVITY_TIME.equals(content_type)){
|
||||
// loadArticles();
|
||||
// }else if (Constants.MEDICINE_TIME.equals(content_type)){
|
||||
// loadReminders();
|
||||
// }
|
||||
}
|
||||
};
|
||||
|
||||
CaregiverDataCache.getCaregiverData(requireActivity(), (careGiverData1 -> {
|
||||
this.careGiverData = careGiverData1;
|
||||
|
||||
loadReminders();
|
||||
loadActivities();
|
||||
requireContext().registerReceiver(notification_receiver, new IntentFilter(AppUtil.NOTIFICATION_ACTION));
|
||||
}), true);
|
||||
|
||||
initViews();
|
||||
@@ -112,6 +134,12 @@ public class CgDashBoardFragment extends Fragment implements
|
||||
}), true);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDestroyView() {
|
||||
super.onDestroyView();
|
||||
requireContext().unregisterReceiver(notification_receiver);
|
||||
}
|
||||
|
||||
private void loadActivities() {
|
||||
if (careGiverData == null) return;
|
||||
|
||||
@@ -181,6 +209,24 @@ public class CgDashBoardFragment extends Fragment implements
|
||||
Intent intent = new Intent(requireActivity(), ArticlesActivity.class);
|
||||
startActivity(intent);
|
||||
});
|
||||
|
||||
binding.refreshBtn.setOnClickListener(v -> {
|
||||
binding.refreshBtn.setVisibility(View.GONE);
|
||||
binding.refreshProgress.setVisibility(View.VISIBLE);
|
||||
|
||||
viewModel.ongoingActivityText = getString(R.string.loading);
|
||||
viewModel.upcomingActivityText = getString(R.string.loading);
|
||||
viewModel.upcomingReminderText = getString(R.string.loading);
|
||||
viewModel.dailyReminderText = getString(R.string.loading);
|
||||
|
||||
binding.upcomingActivity.setText(viewModel.upcomingActivityText);
|
||||
binding.onGoingActivity.setText(viewModel.ongoingActivityText);
|
||||
binding.nearestReminder.setText(viewModel.upcomingReminderText);
|
||||
binding.dailyReminder.setText(viewModel.dailyReminderText);
|
||||
|
||||
loadReminders();
|
||||
loadActivities();
|
||||
});
|
||||
}
|
||||
|
||||
public void setArticleDetails(ArticleResult articleResult){
|
||||
@@ -341,6 +387,9 @@ public class CgDashBoardFragment extends Fragment implements
|
||||
|
||||
@Override
|
||||
public void onFetchRemindersListFailed(Throwable t, String message) {
|
||||
binding.refreshProgress.setVisibility(View.GONE);
|
||||
binding.refreshBtn.setVisibility(View.VISIBLE);
|
||||
|
||||
binding.nearestReminder.setText(R.string.couldnt_load_data);
|
||||
binding.dailyReminder.setText(R.string.couldnt_load_data);
|
||||
|
||||
@@ -352,6 +401,9 @@ public class CgDashBoardFragment extends Fragment implements
|
||||
public void nearestReminder(NearestReminder nearestReminder) {
|
||||
Log.d("aditya", "nearestReminder: " + nearestReminder);
|
||||
|
||||
binding.refreshProgress.setVisibility(View.GONE);
|
||||
binding.refreshBtn.setVisibility(View.VISIBLE);
|
||||
|
||||
try {
|
||||
// daily routine setting
|
||||
String daily_r_txt;
|
||||
@@ -442,6 +494,9 @@ public class CgDashBoardFragment extends Fragment implements
|
||||
|
||||
@Override
|
||||
public void onRoutinesFetchedFailed(Throwable t, String message) {
|
||||
binding.refreshProgress.setVisibility(View.GONE);
|
||||
binding.refreshBtn.setVisibility(View.VISIBLE);
|
||||
|
||||
binding.upcomingActivity.setText(R.string.couldnt_load_data);
|
||||
binding.onGoingActivity.setText(R.string.couldnt_load_data);
|
||||
|
||||
@@ -451,6 +506,9 @@ public class CgDashBoardFragment extends Fragment implements
|
||||
|
||||
@Override
|
||||
public void nearestActivity(NearestActivity nearestActivity) {
|
||||
binding.refreshProgress.setVisibility(View.GONE);
|
||||
binding.refreshBtn.setVisibility(View.VISIBLE);
|
||||
|
||||
if (nearestActivity.ongoing_activity_name != null){
|
||||
binding.onGoingActivity.setText(nearestActivity.ongoing_activity_name);
|
||||
}else{
|
||||
|
||||
@@ -21,6 +21,7 @@ import androidx.recyclerview.widget.GridLayoutManager;
|
||||
import com.google.android.material.bottomsheet.BottomSheetDialog;
|
||||
import com.ssb.simplitend.R;
|
||||
import com.ssb.simplitend.apputils.AppUtil;
|
||||
import com.ssb.simplitend.apputils.PatientDataCache;
|
||||
import com.ssb.simplitend.databinding.AddContactFragmentBinding;
|
||||
import com.ssb.simplitend.databinding.DoneBottomsheetBinding;
|
||||
import com.ssb.simplitend.welcome.welcomepatient.fragments.contacts.mvvm.AddContactAdapter;
|
||||
@@ -127,6 +128,8 @@ public class AddContactFragment extends Fragment implements WelcomeContracts.Con
|
||||
contactList.add(response.contact_data);
|
||||
}
|
||||
|
||||
PatientDataCache.setContactList(new ArrayList<>(contactList));
|
||||
|
||||
for (int i = contactList.size(); i<10; i++){
|
||||
contactList.add(new ContactData(-1));
|
||||
}
|
||||
|
||||
@@ -7,10 +7,8 @@ import static com.ssb.simplitend.welcome.welcomepatient.fragments.register.ReAct
|
||||
import static com.ssb.simplitend.welcome.welcomepatient.fragments.register.ReActivateFragment.TOKEN_KEY;
|
||||
|
||||
import android.app.AlertDialog;
|
||||
import android.content.DialogInterface;
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
import android.util.Log;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
@@ -24,9 +22,9 @@ import androidx.navigation.Navigation;
|
||||
|
||||
import com.ssb.simplitend.R;
|
||||
import com.ssb.simplitend.apputils.AppUtil;
|
||||
import com.ssb.simplitend.apputils.CaregiverDataCache;
|
||||
import com.ssb.simplitend.apputils.PatientDataCache;
|
||||
import com.ssb.simplitend.apputils.RetrofitHelper;
|
||||
import com.ssb.simplitend.apputils.CaregiverDataCache;
|
||||
import com.ssb.simplitend.caregiverdashboard.activities.CaregiverDashActivity;
|
||||
import com.ssb.simplitend.caregiverdashboard.activities.deactivateacc.AccountPresenter;
|
||||
import com.ssb.simplitend.databinding.SplashFragmentBinding;
|
||||
|
||||
BIN
app/src/main/res/drawable/ic_refresh.png
Normal file
BIN
app/src/main/res/drawable/ic_refresh.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.9 KiB |
691
app/src/main/res/drawable/img_activity_time.xml
Normal file
691
app/src/main/res/drawable/img_activity_time.xml
Normal file
@@ -0,0 +1,691 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="176.64dp"
|
||||
android:height="184dp"
|
||||
android:viewportWidth="176.64"
|
||||
android:viewportHeight="184">
|
||||
<path
|
||||
android:pathData="M38.19,139.3a11.7,11.7 0,0 0,-5 -1.72,3.42 3.42,0 0,0 -2.37,0.42 0.47,0.47 0,0 0,-0.24 0.42,0.51 0.51,0 0,0 0.23,0.3 7.18,7.18 0,0 0,7.38 0.56"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M38.05,139.17a24.35,24.35 0,0 1,-3.23 -2.84,8.18 8.18,0 0,1 -2.02,-3.75 1.51,1.51 0,0 1,0.16 -1.27,12.59 12.59,0 0,1 5.09,7.84"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M38.13,139.29a11.72,11.72 0,0 1,0.06 -4.22,5.74 5.74,0 0,1 2.26,-3.5 4.99,4.99 0,0 1,-0.06 3.32,16.25 16.25,0 0,1 -2.24,4.72"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M40.67,143.72a7.43,7.43 0,0 0,-4.01 2.03,7.6 7.6,0 0,0 -2.29,3.94 5.41,5.41 0,0 0,3.7 -2.34c0.93,-1.19 1.56,-2.49 2.58,-3.6"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M41.2,144.53a9.88,9.88 0,0 1,1.14 -9.36,11.91 11.91,0 0,1 -1.14,9.36"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M44.54,148.42a7.14,7.14 0,0 0,-6.84 3.94c-0.08,0.17 -0.16,0.38 -0.05,0.54a0.51,0.51 0,0 0,0.45 0.14,5.99 5.99,0 0,0 3.53,-1.82 35.02,35.02 0,0 1,2.93 -2.79"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M44.41,148.2a12.74,12.74 0,0 1,-0.13 -7.12,3.47 3.47,0 0,1 1.52,-2.31 0.31,0.31 0,0 1,0.23 -0.04,0.3 0.3,0 0,1 0.15,0.17 4.27,4.27 0,0 1,0.36 2.04,12.67 12.67,0 0,1 -0.32,2.07 11.26,11.26 0,0 1,-1.1 3.71,7.93 7.93,0 0,0 -0.42,0.81c-0.13,0.27 -0.13,0.37 -0.25,0.59"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M53.21,149.52a9.17,9.17 0,0 1,1.61 -7.54c0.11,-0.15 0.27,-0.31 0.46,-0.29 0.29,0.03 0.36,0.42 0.35,0.7a13.63,13.63 0,0 1,-2.41 7.13"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M54,150.06a10.98,10.98 0,0 0,9 -1.83,7.31 7.31,0 0,0 -4.87,-0.6 6.94,6.94 0,0 0,-4.13 2.43"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M54.66,148.41a10.41,10.41 0,0 1,8.17 -4.72,5.04 5.04,0 0,1 -2.67,2.96 14.73,14.73 0,0 1,-3.92 1.14,2.79 2.79,0 0,0 -1.58,0.63"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M53.39,140.45a23.67,23.67 0,0 0,1.04 -4.78,7.97 7.97,0 0,0 -0.95,-4.73 10.4,10.4 0,0 0,-0.14 9.68"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M58.67,137.79a12.78,12.78 0,0 1,9.44 -6.42A10.52,10.52 0,0 1,58.67 137.79"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M57.51,138.34c2.76,0.42 5.11,2.18 7.68,3.25a3.48,3.48 0,0 0,1.74 0.33,1.36 1.36,0 0,0 0.85,-2.41 3.67,3.67 0,0 0,-1.27 -0.76,14 14,0 0,0 -8.77,-0.49"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M55.92,140.27a3.16,3.16 0,0 1,1.33 0.92,14.43 14.43,0 0,0 5.83,2.99c0.22,0.05 0.51,0.08 0.63,-0.12s-0.03,-0.39 -0.15,-0.55a8.02,8.02 0,0 0,-3.52 -2.39,8.93 8.93,0 0,0 -4.11,-0.98"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M54.13,128.69a11.03,11.03 0,0 0,8.45 2.88,0.6 0.6,0 0,0 0.39,-0.14c0.21,-0.23 -0.04,-0.59 -0.29,-0.78a9.73,9.73 0,0 0,-8.55 -1.96"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M56.25,127.92a11.78,11.78 0,0 1,10.56 -1.74,8.35 8.35,0 0,1 -5.03,2.21 15.94,15.94 0,0 1,-5.52 -0.47"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M55.42,122.57c-0.25,-2.48 -0.08,-4.44 -0.26,-6.93a0.54,0.54 0,0 0,-0.24 -0.51c-0.26,-0.1 -0.48,0.22 -0.56,0.49a7.96,7.96 0,0 0,1.06 6.9"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M55.24,122.85a14.63,14.63 0,0 0,4.11 -3.99,5.48 5.48,0 0,0 1.31,-3.8 3.92,3.92 0,0 0,-2.96 1.47,8.23 8.23,0 0,0 -1.51,3.04c-0.33,1.09 -0.56,2.21 -0.95,3.29"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M59.26,121.73a33.15,33.15 0,0 0,10.14 -5.96,5.18 5.18,0 0,0 -3.8,0.29 11.97,11.97 0,0 0,-6.36 5.65"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M56.36,124.19a20.51,20.51 0,0 0,5.62 0.03,23.93 23.93,0 0,0 5.24,-1.74 0.61,0.61 0,0 0,0.35 -0.27,0.42 0.42,0 0,0 -0.13,-0.45 1.07,1.07 0,0 0,-0.45 -0.21,9.71 9.71,0 0,0 -5.66,0.34 26.33,26.33 0,0 0,-4.97 2.31"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M45.76,128.79a9.94,9.94 0,0 1,-0.09 -8.22,6.25 6.25,0 0,1 0.73,4.09c-0.14,1.41 -0.57,2.85 -0.6,4.26"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M40.7,126.22a11.47,11.47 0,0 0,-8.52 3.63,7.96 7.96,0 0,0 4.64,-0.87 23.6,23.6 0,0 0,4 -2.68"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M37.38,125.08a11.92,11.92 0,0 0,-4.55 0.14,5.45 5.45,0 0,0 -3.47,2.96 8.2,8.2 0,0 0,4.26 -0.8,25.04 25.04,0 0,0 3.75,-2.28"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M42.34,125.15a14.27,14.27 0,0 0,-4.47 -2.23,4.84 4.84,0 0,0 -4.64,1.13 8.51,8.51 0,0 0,4.45 0.85,15.25 15.25,0 0,1 4.84,0.49"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M42.33,125.22a10.38,10.38 0,0 1,-2.34 -9.78,14.91 14.91,0 0,1 2.34,9.78"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M48.88,118.58c0.45,-1.05 0.77,-2.15 1.17,-3.22a9.29,9.29 0,0 1,1.69 -2.96,4.41 4.41,0 0,1 2.96,-1.53 11.95,11.95 0,0 1,-5.75 7.74"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M47.71,119.96a15.35,15.35 0,0 0,-2.62 -3.19,4.38 4.38,0 0,0 -3.57,-0.94 8.31,8.31 0,0 0,6.19 4.13"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M47.94,118.66a17.78,17.78 0,0 1,-1.18 -3.8,5.97 5.97,0 0,1 0.6,-3.89 8.82,8.82 0,0 1,0.65 7.74"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M48.89,110.97a8.34,8.34 0,0 1,5.43 -5.1,1.99 1.99,0 0,1 0.95,-0.14 0.85,0.85 0,0 1,0.7 0.59c0.09,0.42 -0.26,0.79 -0.58,1.07a18.43,18.43 0,0 1,-6.5 3.59"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M48.92,108.97a17.76,17.76 0,0 1,0.71 -4.7,5.95 5.95,0 0,1 2.96,-3.57 7,7 0,0 1,-1.31 4.58,21.01 21.01,0 0,0 -2.39,4.22"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M48.9,110.05c-0.62,-1.79 -0.68,-4.07 -1.75,-5.63 -0.75,-1.09 -1.96,-1.84 -2.6,-2.99a4.58,4.58 0,0 0,0.15 3.38,9.83 9.83,0 0,0 1.99,2.85c0.79,0.85 1.47,1.49 2.21,2.38"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M48.9,162.71c-0.05,0 -0.09,-11.96 -0.09,-26.72s0.03,-26.72 0.08,-26.72 0.09,11.96 0.09,26.72S48.94,162.71 48.9,162.71Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M59.34,126.97a2.31,2.31 0,0 1,-0.45 0.17l-1.24,0.42c-1.04,0.35 -2.48,0.87 -4.03,1.51a15.23,15.23 0,0 0,-3.82 1.92,2.83 2.83,0 0,0 -0.77,1.01c-0.12,0.28 -0.14,0.46 -0.16,0.45a0.42,0.42 0,0 1,0 -0.13,1.72 1.72,0 0,1 0.09,-0.35 2.71,2.71 0,0 1,0.75 -1.09,6.82 6.82,0 0,1 1.66,-1.03c0.66,-0.31 1.4,-0.63 2.18,-0.95 1.56,-0.64 3.01,-1.14 4.06,-1.46 0.53,-0.17 0.96,-0.29 1.27,-0.37A2.24,2.24 0,0 1,59.34 126.97Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M62.76,118.56a0.72,0.72 0,0 1,-0.12 0.14c-0.11,0.09 -0.23,0.21 -0.38,0.36l-1.44,1.3 -4.77,4.25c-1.86,1.66 -3.47,3.24 -4.59,4.43 -0.56,0.6 -1,1.09 -1.3,1.44l-0.35,0.39c-0.08,0.09 -0.13,0.14 -0.13,0.13a0.88,0.88 0,0 1,0.1 -0.15c0.08,-0.1 0.18,-0.24 0.32,-0.42 0.28,-0.36 0.71,-0.85 1.27,-1.47a59.1,59.1 0,0 1,4.56 -4.48c1.87,-1.65 3.57,-3.14 4.81,-4.22l1.47,-1.27 0.42,-0.34A0.61,0.61 0,0 1,62.76 118.56Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M54.05,126.3c-0.05,-0.02 0.34,-0.92 0.73,-2.06s0.57,-2.11 0.63,-2.09a7.26,7.26 0,0 1,-0.46 2.14,14.78 14.78,0 0,1 -0.58,1.44A2.11,2.11 0,0 1,54.05 126.3Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M48.92,133.52a2.11,2.11 0,0 1,-0.29 -0.33l-0.74,-0.94c-0.62,-0.8 -1.47,-1.9 -2.43,-3.1s-1.84,-2.29 -2.47,-3.07l-0.74,-0.95a2.09,2.09 0,0 1,-0.26 -0.35,2.81 2.81,0 0,1 0.31,0.31c0.19,0.21 0.46,0.51 0.79,0.9 0.66,0.76 1.55,1.83 2.51,3.04s1.8,2.32 2.39,3.14c0.3,0.42 0.54,0.74 0.69,0.98A1.89,1.89 0,0 1,48.92 133.52Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M46.62,130.59a4.25,4.25 0,0 1,-0.96 -1.8,5.23 5.23,0 0,1 -0.22,-1.81h0.08c-0.04,0.14 -0.06,0.21 -0.08,0.21s0,-0.08 0,-0.22h0.08a8.16,8.16 0,0 0,0.3 1.76A13.88,13.88 0,0 0,46.62 130.59Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M43.69,126.87a3.16,3.16 0,0 0,-0.67 -0.39,4.49 4.49,0 0,0 -1.86,-0.15 11.35,11.35 0,0 0,-1.88 0.3,5.38 5.38,0 0,1 -0.77,0.19 2.63,2.63 0,0 1,0.74 -0.3,8.82 8.82,0 0,1 1.9,-0.36 4.07,4.07 0,0 1,1.92 0.21A1.2,1.2 0,0 1,43.69 126.87Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M42.99,125.99c0,0.03 -0.39,-0.16 -1.03,-0.38a10.3,10.3 0,0 0,-5.18 -0.39c-0.66,0.12 -1.06,0.24 -1.07,0.22a0.85,0.85 0,0 1,0.27 -0.12,6.34 6.34,0 0,1 0.77,-0.22 9.21,9.21 0,0 1,5.24 0.4,7.02 7.02,0 0,1 0.74,0.33C42.91,125.9 43,125.96 42.99,125.99Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M48.89,122.17a21.75,21.75 0,0 1,-0.75 -2.6,21 21,0 0,1 -0.58,-2.64A43.07,43.07 0,0 1,48.89 122.17Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M48.94,122.16a12.57,12.57 0,0 0,-0.85 -1.56,6.76 6.76,0 0,0 -1.23,-1.27 1.13,1.13 0,0 1,0.47 0.24,3.8 3.8,0 0,1 0.91,0.93A3.42,3.42 0,0 1,48.94 122.16Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M48.93,156.33c-0.02,0 -0.05,-0.29 -0.19,-0.79a11.22,11.22 0,0 0,-0.8 -2.07,28.66 28.66,0 0,0 -4.22,-5.97c-0.95,-1.08 -1.87,-2.11 -2.64,-3.08a21.53,21.53 0,0 1,-1.89 -2.73,13.41 13.41,0 0,1 -0.96,-2.02c-0.08,-0.25 -0.15,-0.45 -0.19,-0.58a1.2,1.2 0,0 1,-0.05 -0.2s0.11,0.27 0.3,0.76a15.2,15.2 0,0 0,1 1.99,22.8 22.8,0 0,0 1.91,2.69c0.78,0.97 1.69,1.98 2.65,3.07a27.22,27.22 0,0 1,4.22 6.03,10.28 10.28,0 0,1 0.76,2.11 5.73,5.73 0,0 1,0.11 0.6A1.14,1.14 0,0 1,48.93 156.33Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M58.34,145.66a3.74,3.74 0,0 1,-0.49 0.28,10.51 10.51,0 0,0 -1.27,0.85 14.36,14.36 0,0 0,-1.69 1.54c-0.59,0.63 -1.2,1.35 -1.82,2.11 -1.24,1.56 -2.41,2.96 -3.1,4.05 -0.35,0.55 -0.61,1 -0.78,1.33a4.68,4.68 0,0 1,-0.27 0.5,0.34 0.34,0 0,1 0.05,-0.14c0.05,-0.09 0.08,-0.22 0.17,-0.39a13.25,13.25 0,0 1,0.74 -1.37,45.46 45.46,0 0,1 3.07,-4.09 25.97,25.97 0,0 1,1.85 -2.11,13.55 13.55,0 0,1 1.73,-1.52 8.7,8.7 0,0 1,1.33 -0.81c0.16,-0.08 0.3,-0.14 0.38,-0.17a0.45,0.45 0,0 1,0.12 -0.05Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M58.51,149.12a7.67,7.67 0,0 1,-1.05 0.15,13.7 13.7,0 0,0 -2.48,0.49 7.5,7.5 0,0 0,-2.22 1.17c-0.51,0.39 -0.76,0.72 -0.78,0.7a0.84,0.84 0,0 1,0.16 -0.24,3.8 3.8,0 0,1 0.55,-0.56 6.76,6.76 0,0 1,2.25 -1.24,11.1 11.1,0 0,1 2.53,-0.44A5.49,5.49 0,0 1,58.51 149.12Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M52.29,151.25c-0.05,-0.03 0.42,-0.75 0.79,-1.72s0.42,-1.84 0.49,-1.82a1.65,1.65 0,0 1,-0.02 0.56,5.85 5.85,0 0,1 -0.3,1.32 6.18,6.18 0,0 1,-0.61 1.21C52.44,151.1 52.31,151.26 52.29,151.25Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M61.39,136.36a1.14,1.14 0,0 1,-0.17 0.09l-0.49,0.22c-0.22,0.09 -0.48,0.21 -0.77,0.36s-0.64,0.31 -1,0.53l-0.57,0.32c-0.2,0.11 -0.39,0.25 -0.6,0.38 -0.42,0.26 -0.85,0.57 -1.29,0.89a24.97,24.97 0,0 0,-2.7 2.37,24.49 24.49,0 0,0 -2.28,2.78c-0.3,0.46 -0.6,0.9 -0.85,1.33 -0.12,0.21 -0.25,0.42 -0.36,0.61l-0.3,0.58c-0.2,0.37 -0.35,0.72 -0.49,1.02s-0.25,0.57 -0.34,0.78l-0.21,0.5a1.01,1.01 0,0 1,-0.08 0.17,0.52 0.52,0 0,1 0.05,-0.18c0.05,-0.12 0.11,-0.3 0.17,-0.51s0.18,-0.49 0.31,-0.8 0.27,-0.66 0.47,-1.03c0.09,-0.19 0.19,-0.38 0.3,-0.59s0.23,-0.42 0.35,-0.63c0.24,-0.42 0.53,-0.87 0.85,-1.34a21.43,21.43 0,0 1,5.02 -5.19c0.46,-0.32 0.88,-0.63 1.31,-0.88 0.21,-0.13 0.42,-0.26 0.61,-0.38l0.58,-0.32c0.37,-0.21 0.72,-0.36 1.02,-0.5s0.57,-0.26 0.79,-0.34l0.51,-0.19A0.8,0.8 0,0 1,61.39 136.36Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M53.91,141.37a1.2,1.2 0,0 1,0.42 -0.61,2.61 2.61,0 0,1 1.66,-0.63 4.51,4.51 0,0 1,1.74 0.34,2.53 2.53,0 0,1 0.66,0.32 3.61,3.61 0,0 1,-0.7 -0.2,5.18 5.18,0 0,0 -1.69,-0.28 2.74,2.74 0,0 0,-1.58 0.55A5.53,5.53 0,0 0,53.91 141.37Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M52.79,142.53a6.1,6.1 0,0 0,0.47 -1.53,6.36 6.36,0 0,0 -0.11,-1.6 1,1 0,0 1,0.19 0.42,3.15 3.15,0 0,1 0.08,1.17 3.01,3.01 0,0 1,-0.35 1.12C52.94,142.4 52.81,142.54 52.79,142.53Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M40.65,158.04a39.7,39.7 0,0 0,3.75 13.94h9.22a39.99,39.99 0,0 0,3.53 -13.94Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M55.65,165.44c0,0.05 -3.03,0.09 -6.78,0.09s-6.76,-0.04 -6.76,-0.09 3.03,-0.08 6.76,-0.08S55.65,165.4 55.65,165.44Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M55.44,167.1c0,0.05 -2.84,0.09 -6.33,0.09s-6.36,-0.04 -6.36,-0.09 2.85,-0.09 6.36,-0.09S55.44,167.05 55.44,167.1Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M44.55,161.05a25.43,25.43 0,0 1,0 4.24,26.7 26.7,0 0,1 0,-4.24Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M49.48,161.05a28.64,28.64 0,0 1,0 4.4A27.29,27.29 0,0 1,49.48 161.05Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M54.09,161.01a28.4,28.4 0,0 1,0 4.49A29.81,29.81 0,0 1,54.09 161.01Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M56.86,161.05c0,0.05 -3.56,0.08 -7.95,0.08s-7.95,-0.04 -7.95,-0.08 3.56,-0.09 7.95,-0.09S56.86,161 56.86,161.05Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M129.08,7.41h43.65v72.25h-43.65z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M127.63,7.41h43.65v72.25h-43.65z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M129.49,8.88h39.93v69.32h-39.93z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M137.09,17.88h24.56v51.31h-24.56z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M137.09,50.93c-0.06,-4.79 4.25,-9.47 9,-10.14 2.26,-0.32 4.69,0.11 6.8,-0.74 3.78,-1.55 4.97,-6.56 8.77,-8.05l0.17,37.08L137.09,69.09Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M74.21,0.01h30.87v32.18h-30.87z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M72.13,0.01h30.87v32.18h-30.87z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M103.01,32.2L72.12,32.2L72.12,0h30.89ZM72.14,32.2h30.85L102.99,0.02L72.14,0.02Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M76.28,4.34h22.57v23.53h-22.57z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M76.33,28.02a3.86,3.86 0,0 1,-0.56 0.65c-0.36,0.38 -0.87,0.9 -1.44,1.46s-1.09,1.06 -1.47,1.41a3.88,3.88 0,0 1,-0.65 0.55,3.27 3.27,0 0,1 0.55,-0.65c0.36,-0.38 0.87,-0.9 1.44,-1.46s1.09,-1.06 1.48,-1.41a3.47,3.47 0,0 1,0.65 -0.54Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M98.81,27.96a3.86,3.86 0,0 1,0.65 0.56c0.38,0.36 0.9,0.87 1.45,1.44s1.06,1.09 1.41,1.47a3.45,3.45 0,0 1,0.54 0.65,3.89 3.89,0 0,1 -0.64,-0.56c-0.38,-0.36 -0.9,-0.87 -1.46,-1.44s-1.06,-1.09 -1.41,-1.48A3.31,3.31 0,0 1,98.81 27.96Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M98.74,4.4a3.86,3.86 0,0 1,0.56 -0.65c0.36,-0.38 0.87,-0.9 1.44,-1.45s1.09,-1.06 1.47,-1.41a3.7,3.7 0,0 1,0.67 -0.54,3.72 3.72,0 0,1 -0.55,0.64c-0.36,0.38 -0.85,0.9 -1.44,1.46s-1.09,1.06 -1.48,1.41a3.47,3.47 0,0 1,-0.67 0.54Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M76.27,4.45a3.62,3.62 0,0 1,-0.65 -0.56c-0.38,-0.36 -0.9,-0.85 -1.46,-1.44s-1.06,-1.09 -1.41,-1.47a3.7,3.7 0,0 1,-0.54 -0.65,3.72 3.72,0 0,1 0.64,0.55c0.38,0.36 0.9,0.87 1.46,1.44s1.06,1.09 1.41,1.47A3.47,3.47 0,0 1,76.27 4.45Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M98.79,27.86L98.79,26.15c0,-1.12 0,-2.74 -0.02,-4.79 0,-4.12 -0.03,-9.99 -0.05,-17.02l0.09,0.08L76.3,4.43l0.1,-0.1L76.4,27.85l-0.08,-0.08 16.3,0.04h0.05l-16.35,0.04L76.24,27.85L76.24,4.14h22.7v0.09c-0.02,7.05 -0.03,12.94 -0.05,17.07 0,2.05 0,3.66 -0.02,4.78v1.58a0.96,0.96 0,0 1,-0.08 0.2Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M83.8,12.34h7.53v7.53h-7.53z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M52.08,12.47L52.08,44.58L5.96,44.58L4.3,12.69Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M4.3,44.51l0,-31.82l46.12,-0l0,31.82z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M50.64,44.72L4.08,44.72L4.08,12.47L50.64,12.47ZM4.52,44.3L50.2,44.3L50.2,12.91L4.52,12.91Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M9.29,16.64h36.13v23.91h-36.13z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M45.42,16.64L42.75,16.64l-7.45,0.03 -26,0.05 0.11,-0.11v23.91h0l-0.11,-0.11 36.13,0.02 -0.09,0.09c0,-7.28 0.03,-13.24 0.05,-17.4 0,-2.08 0,-3.7 0.02,-4.81v4.79c0,4.17 0.03,10.14 0.05,17.46v0.09h-0.09l-36.13,0.03L9.11,40.67v-0.11h0L9.11,16.54h0.11l26.08,0.05 7.42,0.03h2.47Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M4.3,12.6a3.8,3.8 0,0 1,0.79 0.54c0.47,0.34 1.12,0.85 1.81,1.38S8.19,15.57 8.62,15.97a3.8,3.8 0,0 1,0.66 0.68A31.86,31.86 0,0 1,6.74 14.67,24.87 24.87,0 0,1 4.3,12.6Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M50.28,12.69A22.01,22.01 0,0 1,47.85 14.75a21.78,21.78 0,0 1,-2.57 1.89,23.15 23.15,0 0,1 2.43,-2.07 22.38,22.38 0,0 1,2.57 -1.89Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M50.24,44.41l-5.14,-4.17"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M45.1,40.24a24.49,24.49 0,0 1,2.64 1.99,23.51 23.51,0 0,1 2.5,2.17 24.65,24.65 0,0 1,-2.64 -2,23.59 23.59,0 0,1 -2.5,-2.17Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M4.3,44.4a21.29,21.29 0,0 1,2.4 -2.04,21.59 21.59,0 0,1 2.53,-1.87 22.9,22.9 0,0 1,-2.4 2.04,22.2 22.2,0 0,1 -2.53,1.87Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M16.63,32.1l0,-8.01l22.73,-0l0,8.01z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M174.6,171.4c0,0.06 -39.09,0.11 -87.29,0.11s-87.3,-0.04 -87.3,-0.11 39.08,-0.11 87.3,-0.11S174.6,171.35 174.6,171.4Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M136.57,42.71l-2.34,1.17a10.01,10.01 0,1 1,0.75 -3.5h0Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M136.57,42.72l-0.11,-0.15c-0.08,-0.11 -0.18,-0.25 -0.31,-0.44 -0.28,-0.4 -0.68,-0.97 -1.19,-1.69h0.06a0.04,0.04 0,0 1,-0.05 0.03,0.04 0.04,0 0,1 -0.03,-0.04 9.96,9.96 0,0 0,-1.02 -4.67,10.13 10.13,0 0,0 -1.82,-2.57 9.95,9.95 0,0 0,-2.92 -2.06,10.14 10.14,0 0,0 -3.84,-0.9 9.64,9.64 0,0 0,-4.19 0.77,10.14 10.14,0 0,0 -3.65,2.68 9.71,9.71 0,0 0,-2.11 4.22,10.23 10.23,0 0,0 -0.25,2.42c0.03,0.42 0.05,0.81 0.11,1.2l0.11,0.59 0.05,0.29 0.08,0.28a10.14,10.14 0,0 0,2.19 4.02,9.69 9.69,0 0,0 3.51,2.48 10.08,10.08 0,0 0,3.9 0.79,9.94 9.94,0 0,0 3.54,-0.66l0.76,-0.35c0.25,-0.11 0.48,-0.26 0.71,-0.39a8.9,8.9 0,0 0,1.27 -0.87,9.97 9.97,0 0,0 2.85,-3.83h0l1.74,-0.85 0.46,-0.22 0.16,-0.08 -0.14,0.08 -0.42,0.23 -1.73,0.9h0a9.95,9.95 0,0 1,-2.84 3.88,9.2 9.2,0 0,1 -1.27,0.89c-0.23,0.13 -0.47,0.27 -0.72,0.4l-0.77,0.35a10.09,10.09 0,0 1,-3.59 0.68,10.33 10.33,0 0,1 -3.96,-0.79 9.81,9.81 0,0 1,-3.58 -2.53,10.2 10.2,0 0,1 -2.24,-4.08l-0.08,-0.29 -0.06,-0.3c-0.03,-0.2 -0.07,-0.4 -0.11,-0.6 -0.06,-0.4 -0.08,-0.81 -0.11,-1.23a10.21,10.21 0,0 1,0.25 -2.47,9.85 9.85,0 0,1 2.16,-4.32 10.31,10.31 0,0 1,3.72 -2.72,9.85 9.85,0 0,1 4.26,-0.77 10.26,10.26 0,0 1,3.9 0.93,10.02 10.02,0 0,1 2.96,2.11 10.31,10.31 0,0 1,1.83 2.61,9.98 9.98,0 0,1 0.98,4.72L134.95,40.41a0.04,0.04 0,0 1,0.05 -0.03h0.02c0.5,0.76 0.9,1.34 1.17,1.75l0.29,0.45A1.38,1.38 0,0 1,136.57 42.72Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M120.64,40.4l1.25,-1.34 2.57,2.13 4.74,-4.88 1.25,1.25 -6.09,6.13Z"
|
||||
android:fillColor="#005f9a"/>
|
||||
<path
|
||||
android:pathData="M128.75,74.05l-7.05,-6.93 -4.14,4.01s5.74,8.31 7.4,10.98a9.69,9.69 0,0 0,2.96 3.01,1.96 1.96,0 0,0 2.22,-0.08 14.08,14.08 0,0 0,3.05 -2.9c1.44,-2.01 5.22,-8.83 5.22,-8.83l-5.36,-5.65Z"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M128.97,77.86a6.7,6.7 0,0 0,0.08 -2.07,6.54 6.54,0 0,0 -0.38,-2.04c-0.05,0 0.12,0.92 0.21,2.05S128.91,77.86 128.97,77.86Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M145.04,35.49a7.94,7.94 0,0 1,7.6 -7.63h0.42c4.45,0.08 6.87,3.89 6.67,8.34l-0.56,17.89 -7.03,2.68 -2.71,-2.5c0,-1.27 0,-3.84 -0.03,-3.84s-4.29,-0.51 -4.53,-4.77C144.76,43.6 144.87,39.34 145.04,35.49Z"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M149.4,50.41a10.32,10.32 0,0 0,5.49 -1.87,5.31 5.31,0 0,1 -5.49,3.05Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M146.61,39.32a0.61,0.61 0,0 0,0.61 0.59,0.58 0.58,0 0,0 0.6,-0.59 0.61,0.61 0,0 0,-0.61 -0.59,0.59 0.59,0 0,0 -0.61,0.59Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M146.02,37.33c0.08,0.08 0.52,-0.28 1.18,-0.31s1.15,0.28 1.22,0.2 -0.05,-0.18 -0.27,-0.32a1.65,1.65 0,0 0,-0.98 -0.26,1.57 1.57,0 0,0 -0.93,0.35C146.04,37.15 145.98,37.3 146.02,37.33Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M152.2,39.17a0.61,0.61 0,0 0,0.61 0.59,0.58 0.58,0 0,0 0.6,-0.57 0.6,0.6 0,0 0,-0.61 -0.59,0.59 0.59,0 0,0 -0.61,0.57Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M152.47,37.21c0.08,0.08 0.53,-0.28 1.18,-0.31s1.15,0.28 1.22,0.2 -0.05,-0.18 -0.26,-0.32a1.69,1.69 0,0 0,-0.98 -0.26,1.57 1.57,0 0,0 -0.94,0.35C152.47,37.04 152.41,37.21 152.47,37.21Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M150.3,42.35a4.74,4.74 0,0 0,-1.07 -0.15c-0.17,0 -0.33,-0.03 -0.36,-0.15a0.85,0.85 0,0 1,0.09 -0.5c0.14,-0.42 0.29,-0.85 0.44,-1.29a22.62,22.62 0,0 0,0.98 -3.38,22.28 22.28,0 0,0 -1.25,3.29l-0.42,1.3a1,1 0,0 0,-0.06 0.66,0.42 0.42,0 0,0 0.29,0.23 1.22,1.22 0,0 0,0.29 0.03A4.1,4.1 0,0 0,150.3 42.35Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M152.15,35.18c0.1,0.16 0.73,-0.04 1.5,-0.09s1.42,0.05 1.5,-0.13c0.03,-0.08 -0.11,-0.23 -0.38,-0.35a2.53,2.53 0,0 0,-1.16 -0.18,2.47 2.47,0 0,0 -1.12,0.35C152.22,34.94 152.11,35.09 152.15,35.18Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M145.91,35.41c0.14,0.14 0.67,-0.03 1.31,-0.05s1.19,0.07 1.31,-0.09c0.05,-0.08 -0.03,-0.22 -0.27,-0.36a2.11,2.11 0,0 0,-1.07 -0.22,2.02 2.02,0 0,0 -1.04,0.33C145.92,35.18 145.85,35.34 145.91,35.41Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M159.52,39.35c0.07,-0.03 2.89,-0.99 2.92,1.93a2.19,2.19 0,0 1,-2.92 2.26C159.51,43.46 159.52,39.35 159.52,39.35Z"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M160.4,42.43a1.23,1.23 0,0 0,0.14 0.08,0.52 0.52,0 0,0 0.38,0 1.27,1.27 0,0 0,0.57 -1.14,1.73 1.73,0 0,0 -0.15,-0.73 0.61,0.61 0,0 0,-0.39 -0.39,0.26 0.26,0 0,0 -0.3,0.14c-0.04,0.08 0,0.14 -0.03,0.14s-0.06,-0.05 -0.04,-0.17a0.3,0.3 0,0 1,0.11 -0.18,0.38 0.38,0 0,1 0.28,-0.08 0.71,0.71 0,0 1,0.54 0.45,1.78 1.78,0 0,1 0.18,0.81 1.32,1.32 0,0 1,-0.73 1.27,0.55 0.55,0 0,1 -0.47,-0.07C160.41,42.5 160.39,42.43 160.4,42.43Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M152.36,42.76c-0.1,0 -0.1,0.67 -0.68,1.14s-1.29,0.4 -1.29,0.49 0.16,0.13 0.46,0.14a1.66,1.66 0,0 0,1.08 -0.37,1.44 1.44,0 0,0 0.52,-0.95C152.47,42.92 152.41,42.76 152.36,42.76Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M139.14,31.64a0.71,0.71 0,0 1,0.32 -0.42,2.11 2.11,0 0,1 1.09,-0.19 6.16,6.16 0,0 0,2.66 -0.7,2.99 2.99,0 0,1 -0.79,-0.55 1.83,1.83 0,0 1,-0.55 -1.82,0.4 0.4,0 0,1 0.22,-0.28c0.19,-0.06 0.36,0.12 0.49,0.27a1.58,1.58 0,0 0,1.49 0.61,2.6 2.6,0 0,0 1.11,-0.34l0.03,-0.04 0.42,-0.46h0a9.63,9.63 0,0 1,2.99 -2.27,9.89 9.89,0 0,1 5.29,-0.48 4.01,4.01 0,0 1,3.06 3.08,3.08 3.08,0 0,1 3.1,-0.32h0.03a3.87,3.87 0,0 1,2.14 2.73c0.02,0.06 0.03,0.13 0.05,0.19A4.45,4.45 0,0 0,163.87 32.14c0.11,0.06 0.24,0.14 0.25,0.27a0.37,0.37 0,0 1,-0.19 0.3,2.29 2.29,0 0,1 -0.91,0.39 5.03,5.03 0,0 0,0.38 0.79c0.13,0.22 0.29,0.47 0.18,0.7a0.48,0.48 0,0 1,-0.5 0.22,1.41 1.41,0 0,1 -0.53,-0.23c0.13,0.3 0.26,0.6 0.39,0.9a2.69,2.69 0,0 1,-1.23 -0.07c-0.23,1.08 -0.38,3.08 -0.65,3.8a4.51,4.51 0,0 0,-1.36 0.08c-0.5,0.17 -0.3,1.07 -0.96,0.82 -0.34,-0.13 -0.85,-1.39 -0.98,-1.73a16.71,16.71 0,0 1,-0.8 -7.05,5.31 5.31,0 0,0 -1.67,-1.17l0.05,0.04a4.76,4.76 0,0 0,-3.68 -0.22c-0.87,0.42 -1.38,1.36 -2.03,2.11a6.12,6.12 0,0 1,-4.49 2.24c-0.15,1.29 -0.18,3.38 -0.23,4.6l-1.05,-2.39h0a4.52,4.52 0,0 1,-0.22 -0.42l-0.03,-0.04h0a6.51,6.51 0,0 0,-0.35 -0.68h0a0.75,0.75 0,0 1,-1.11 -0.99,1.76 1.76,0 0,1 0.36,-0.37 1.18,1.18 0,0 1,-1.13 0.31,0.93 0.93,0 0,1 -0.67,-0.92 0.79,0.79 0,0 1,0.47 -0.64,2.66 2.66,0 0,1 -1.52,-0.32C139.34,32.3 139.04,32.03 139.14,31.64Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M155.67,28.6a3.52,3.52 0,0 1,0.42 0.38,3.09 3.09,0 0,1 0.67,1.41 5.36,5.36 0,0 1,0.12 1.09c0,0.39 -0.02,0.81 -0.05,1.27a11.81,11.81 0,0 0,0 1.4,4.94 4.94,0 0,0 0.1,0.74 1.52,1.52 0,0 0,0.31 0.71,0.64 0.64,0 0,0 0.6,0.19 0.97,0.97 0,0 0,0.54 -0.31,2.2 2.2,0 0,0 0.4,-1.09h-0.09a3.5,3.5 0,0 0,0.53 0.89,1.27 1.27,0 0,0 0.85,0.42 0.81,0.81 0,0 0,0.42 -0.08,0.73 0.73,0 0,0 0.3,-0.3 0.76,0.76 0,0 0,0.09 -0.38,0.53 0.53,0 0,0 -0.14,-0.33l-0.05,0.04a2.7,2.7 0,0 0,0.93 0.68,2.57 2.57,0 0,0 0.29,0.11 0.38,0.38 0,0 0,0.1 0l-0.1,-0.04c-0.06,-0.03 -0.16,-0.06 -0.27,-0.12a2.75,2.75 0,0 1,-0.9 -0.69l-0.05,0.04a0.55,0.55 0,0 1,0.04 0.63,0.68 0.68,0 0,1 -0.27,0.27 0.74,0.74 0,0 1,-0.4 0.07,1.2 1.2,0 0,1 -0.78,-0.42 3.58,3.58 0,0 1,-0.51 -0.87l-0.06,-0.14 -0.03,0.15a2.11,2.11 0,0 1,-0.38 1.04,0.84 0.84,0 0,1 -0.48,0.28 0.55,0.55 0,0 1,-0.51 -0.17,1.44 1.44,0 0,1 -0.29,-0.67 4.8,4.8 0,0 1,-0.1 -0.72,10.85 10.85,0 0,1 0,-1.39c0,-0.45 0.05,-0.87 0.04,-1.27a5.42,5.42 0,0 0,-0.14 -1.1,3.05 3.05,0 0,0 -0.71,-1.42A1.77,1.77 0,0 0,155.67 28.6Z"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M142.5,32.9l0.03,0.03 0.11,0.08a1.77,1.77 0,0 0,0.18 0.11c0.08,0.04 0.16,0.09 0.26,0.13a3.73,3.73 0,0 0,1.83 0.31,4.82 4.82,0 0,0 2.57,-0.98 8.48,8.48 0,0 0,2.19 -2.58c0.3,-0.52 0.55,-1.05 0.82,-1.55a5.63,5.63 0,0 1,0.94 -1.31,2.9 2.9,0 0,1 1.22,-0.76 2.05,2.05 0,0 1,0.65 -0.08,2.25 2.25,0 0,1 0.6,0.11 2.47,2.47 0,0 1,0.9 0.53,2.43 2.43,0 0,1 0.49,0.62 3.05,3.05 0,0 1,0.23 0.64,0.36 0.36,0 0,0 0,-0.05 0.32,0.32 0,0 0,-0.02 -0.13,2.21 2.21,0 0,0 -0.17,-0.48 2.42,2.42 0,0 0,-0.49 -0.64,2.47 2.47,0 0,0 -0.91,-0.55 2.58,2.58 0,0 0,-0.62 -0.11,2.18 2.18,0 0,0 -0.67,0.08 3.02,3.02 0,0 0,-1.27 0.78,5.67 5.67,0 0,0 -0.96,1.33c-0.28,0.49 -0.52,1.03 -0.85,1.54a8.34,8.34 0,0 1,-2.15 2.56,4.83 4.83,0 0,1 -2.53,0.99A3.88,3.88 0,0 1,143.07 33.23,6.01 6.01,0 0,1 142.5,32.9Z"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M142.09,31.03a1.37,1.37 0,0 0,0.16 0.11,3.06 3.06,0 0,0 0.46,0.22 4.38,4.38 0,0 0,0.72 0.23,5.07 5.07,0 0,0 0.92,0.11 4.88,4.88 0,0 0,0.93 -0.08,3.94 3.94,0 0,0 0.73,-0.2 3.08,3.08 0,0 0,0.46 -0.2,0.7 0.7,0 0,0 0.16,-0.1s-0.25,0.11 -0.65,0.24a5.44,5.44 0,0 1,-0.73 0.17,5.52 5.52,0 0,1 -0.9,0.06 5.32,5.32 0,0 1,-0.9 -0.1,4.94 4.94,0 0,1 -0.71,-0.2C142.33,31.15 142.1,31.01 142.09,31.03Z"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M145.38,160.45l0.47,8.58s-8.56,3.36 -8.63,4.95l16.66,-0.31 -0.18,-13.39Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M150.98,168.21a0.68,0.68 0,0 1,0.49 0.77,0.66 0.66,0 0,1 -0.76,0.49 0.71,0.71 0,0 1,-0.51 -0.81,0.68 0.68,0 0,1 0.85,-0.42"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M153.9,173.67l-0.04,-1.27 -16,0.73s-0.74,0.34 -0.64,0.85Z"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M145.92,169.06c0,0.08 0.42,0.11 0.81,0.36s0.63,0.59 0.7,0.56 -0.06,-0.5 -0.55,-0.8S145.9,168.98 145.92,169.06Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M144.02,169.81c0,0.08 0.34,0.21 0.62,0.55s0.37,0.7 0.45,0.7 0.13,-0.47 -0.23,-0.88S144.02,169.73 144.02,169.81Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M142.98,171.94c0.08,0 0.18,-0.39 -0.03,-0.85s-0.6,-0.61 -0.64,-0.55 0.21,0.3 0.38,0.67S142.89,171.94 142.98,171.94Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M145.69,166.98c0.03,0.08 0.42,-0.04 0.87,-0.02s0.82,0.16 0.85,0.09 -0.31,-0.35 -0.85,-0.37S145.64,166.92 145.69,166.98Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M162.79,158.89l0.9,10.35 -1.65,8.39a1.07,1.07 0,0 0,0.91 1.27h0a1.06,1.06 0,0 0,0.92 -0.33c1.49,-1.62 6.92,-7.6 6.81,-8.36 -0.13,-0.87 -0.23,-10.98 -0.23,-10.98Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M162.95,178.9l7.67,-9.39 0.03,0.42a1.27,1.27 0,0 1,-0.19 0.96c-0.61,0.81 -2.46,3.14 -6.57,7.66a1.06,1.06 0,0 1,-0.95 0.34Z"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M165.03,174.22a3.32,3.32 0,0 0,-0.96 -0.75,3.18 3.18,0 0,0 -1.21,-0.15c0,-0.03 0.11,-0.11 0.35,-0.17a1.69,1.69 0,0 1,1.69 0.7C165.03,174.05 165.06,174.21 165.03,174.22Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M164.38,175.65a8.98,8.98 0,0 0,-0.94 -0.38,8.5 8.5,0 0,0 -1.02,-0.06 1.18,1.18 0,0 1,1.07 -0.16C164.11,175.18 164.43,175.62 164.38,175.65Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M166.29,172.35a10.09,10.09 0,0 0,-1.42 -0.7,11.12 11.12,0 0,0 -1.56,-0.26A2.9,2.9 0,0 1,166.29 172.35Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M166.28,169.18c0,0.06 -0.61,-0.14 -1.36,-0.12s-1.33,0.24 -1.36,0.18a2.05,2.05 0,0 1,1.35 -0.42A2.03,2.03 0,0 1,166.28 169.18Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M166.09,166.13a3.38,3.38 0,0 0,-2.77 0.27,0.82 0.82,0 0,1 0.32,-0.31 2.24,2.24 0,0 1,1.01 -0.35,2.27 2.27,0 0,1 1.06,0.14C165.98,165.99 166.11,166.11 166.09,166.13Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M164.66,165.39a0.93,0.93 0,0 1,-0.04 -0.39,2.74 2.74,0 0,1 0.25,-1.05 1.23,1.23 0,0 1,0.48 -0.61,0.42 0.42,0 0,1 0.49,0.07 0.69,0.69 0,0 1,0.19 0.46,1.5 1.5,0 0,1 -1.23,1.47 1.74,1.74 0,0 1,-1.77 -0.8,0.58 0.58,0 0,1 -0.06,-0.5 0.42,0.42 0,0 1,0.42 -0.25,1.53 1.53,0 0,1 0.7,0.31 3.1,3.1 0,0 1,0.76 0.76,0.93 0.93,0 0,1 0.18,0.35 4.89,4.89 0,0 0,-1.03 -0.97,1.43 1.43,0 0,0 -0.62,-0.26 0.22,0.22 0,0 0,-0.23 0.14,0.42 0.42,0 0,0 0.06,0.32 1.56,1.56 0,0 0,1.54 0.68,1.3 1.3,0 0,0 1.06,-1.24 0.52,0.52 0,0 0,-0.12 -0.32,0.23 0.23,0 0,0 -0.27,-0.04 1.09,1.09 0,0 0,-0.42 0.51A4.07,4.07 0,0 0,164.66 165.39Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M138.11,94.34a17.45,17.45 0,0 0,-2.39 9.74c0.16,2.08 7.46,63 7.46,63l12.44,0.1 -4.25,-57.51 0.78,0.17s4.01,20.86 4.43,24.6c0.38,3.38 4.51,32.57 4.51,32.57l10.52,0.12 -1.99,-33.66L167.93,102.08l-3.97,-9.82Z"
|
||||
android:fillColor="#005f9a"/>
|
||||
<path
|
||||
android:pathData="M164.51,54.23l-5.44,-1.84 -9.98,0.46L144.53,55.02l7.09,14.5 4.67,-0.68Z"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M129.08,72.27s7.62,-15 8.23,-15.63c2.29,-2.39 11.63,-3.97 11.63,-3.97l4.45,4.3 6.16,-4.56s10.16,2.34 10.63,3.66 -3.42,24.34 -3.42,24.34 1.63,12.99 1.5,18.8l1.45,6.02 -35.01,0.09s0.8,-11.82 2.11,-22.54l0.8,-9.48 -0.52,6.2Z"
|
||||
android:fillColor="#005f9a"/>
|
||||
<path
|
||||
android:pathData="M139.35,58.84a1.42,1.42 0,0 0,-0.05 0.22c-0.03,0.17 -0.07,0.38 -0.11,0.64 -0.09,0.56 -0.21,1.36 -0.35,2.35 -0.28,1.99 -0.64,4.75 -0.97,7.8s-0.58,5.82 -0.74,7.82c-0.07,0.98 -0.14,1.79 -0.18,2.37 0,0.26 -0.03,0.48 -0.04,0.65a1.57,1.57 0,0 0,0 0.23,0.8 0.8,0 0,0 0.04,-0.22c0,-0.17 0.04,-0.38 0.07,-0.64 0.06,-0.59 0.14,-1.39 0.24,-2.37 0.19,-2 0.46,-4.77 0.79,-7.82s0.66,-5.8 0.91,-7.8c0.12,-0.98 0.22,-1.78 0.3,-2.36 0.03,-0.26 0.05,-0.47 0.08,-0.64A0.77,0.77 0,0 0,139.35 58.84Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M167.16,54.68l1.69,0.49a6.47,6.47 0,0 1,4.64 4.97l3.15,17.68 -9.98,3.62 -3.41,-2.68Z"
|
||||
android:fillColor="#005f9a"/>
|
||||
<path
|
||||
android:pathData="M134.89,101.66h0.08l0.24,0.04 0.91,0.16c0.79,0.13 1.95,0.3 3.38,0.42a15.45,15.45 0,0 0,2.34 0,4.61 4.61,0 0,0 0.63,-0.09c0.11,-0.02 0.22,-0.04 0.32,-0.06l0.31,-0.11c0.42,-0.11 0.65,-0.55 0.85,-0.97a7.6,7.6 0,0 0,0.42 -1.38c0.11,-0.48 0.2,-0.98 0.27,-1.49 0.15,-1.02 0.24,-2.09 0.31,-3.18 0.14,-2.39 0.16,-4.67 0.13,-6.68l0.08,0.08 -6.66,-0.14 -1.89,-0.05 -0.5,-0.02h2.39l6.65,0.07h0.08v0.08c0.05,2.02 0.03,4.3 -0.11,6.69 -0.07,1.1 -0.17,2.17 -0.31,3.2 -0.07,0.51 -0.16,1.02 -0.27,1.5a7.72,7.72 0,0 1,-0.42 1.41,3.08 3.08,0 0,1 -0.35,0.63 2.15,2.15 0,0 1,-0.26 0.26,1.2 1.2,0 0,1 -0.32,0.16l-0.33,0.11c-0.11,0.03 -0.22,0.05 -0.33,0.07a4.85,4.85 0,0 1,-0.65 0.09,15.55 15.55,0 0,1 -2.36,0 32.51,32.51 0,0 1,-3.38 -0.46c-0.4,-0.08 -0.7,-0.14 -0.91,-0.19l-0.23,-0.05Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M145.05,90.65c0,0.05 -2.11,0.09 -4.74,0.09s-4.74,-0.05 -4.74,-0.09 2.11,-0.09 4.74,-0.09S145.05,90.59 145.05,90.65Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M165.87,105.21c0,0.05 -6.87,0.09 -15.33,0.09s-15.34,-0.04 -15.34,-0.09 6.86,-0.09 15.34,-0.09S165.87,105.16 165.87,105.21Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M157.62,69.47L163,69.47A0.77,0.77 0,0 1,163.77 70.24L163.77,73.64A0.77,0.77 0,0 1,163 74.4L157.62,74.4A0.77,0.77 0,0 1,156.85 73.64L156.85,70.24A0.77,0.77 0,0 1,157.62 69.47z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M157.17,74.4a0.25,0.25 0,0 1,-0.23 -0.06,0.35 0.35,0 0,1 -0.13,-0.27v-0.39c0,-0.62 0,-1.46 -0.03,-2.48v-1.25a1.02,1.02 0,0 1,0 -0.25,0.42 0.42,0 0,1 0.44,-0.32h6.24a0.45,0.45 0,0 1,0.35 0.17,0.49 0.49,0 0,1 0.09,0.35v4.17a0.43,0.43 0,0 1,-0.38 0.45L160.58,74.53l-2.48,-0.03h-0.68a0.84,0.84 0,0 1,-0.23 -0.03,1.45 1.45,0 0,1 0.23,-0.02h0.68l2.48,-0.03h2.9a0.24,0.24 0,0 0,0.15 -0.08,0.22 0.22,0 0,0 0.05,-0.17L163.69,69.9a0.3,0.3 0,0 0,-0.04 -0.22,0.25 0.25,0 0,0 -0.17,-0.08h-6.24a0.3,0.3 0,0 0,-0.17 0.04c-0.1,0.07 -0.11,0.17 -0.1,0.34v1.25c0,1.02 -0.03,1.86 -0.03,2.48v0.39a0.31,0.31 0,0 0,0.09 0.24A0.42,0.42 0,0 0,157.17 74.4Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M157.99,72.08a0.76,0.76 0,1 0,0.76 -0.76A0.76,0.76 0,0 0,157.99 72.08Z"
|
||||
android:fillColor="#005f9a"/>
|
||||
<path
|
||||
android:pathData="M162.58,72.32L160.24,72.32A0.24,0.24 0,0 1,160 72.08L160,72.08A0.24,0.24 0,0 1,160.24 71.84L162.58,71.84A0.24,0.24 0,0 1,162.83 72.08L162.83,72.08A0.24,0.24 0,0 1,162.58 72.32z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M160.85,70.25 L161.58,68.28L159.04,68.28l0.62,1.96h1.2"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M148.42,67.86a0.84,0.84 0,0 0,0.08 0.18l0.25,0.48c0.22,0.42 0.55,1.01 0.99,1.73s0.99,1.56 1.64,2.46 1.41,1.86 2.26,2.82 1.71,1.83 2.53,2.59 1.58,1.41 2.24,1.93 1.21,0.93 1.6,1.19l0.45,0.3a0.66,0.66 0,0 0,0.16 0.09,0.81 0.81,0 0,0 -0.14,-0.12l-0.42,-0.33c-0.38,-0.28 -0.91,-0.7 -1.56,-1.23s-1.4,-1.19 -2.2,-1.95 -1.65,-1.64 -2.5,-2.59 -1.6,-1.91 -2.26,-2.8 -1.22,-1.72 -1.66,-2.43 -0.8,-1.29 -1.03,-1.69l-0.28,-0.47A1.11,1.11 0,0 0,148.42 67.86Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M158.57,90.53a1.27,1.27 0,0 0,-0.16 -0.19l-0.48,-0.52c-0.21,-0.22 -0.47,-0.5 -0.76,-0.85s-0.63,-0.69 -0.98,-1.11c-0.72,-0.85 -1.55,-1.85 -2.44,-3s-1.8,-2.46 -2.71,-3.87 -1.69,-2.8 -2.4,-4.07 -1.27,-2.45 -1.72,-3.45c-0.24,-0.49 -0.42,-0.95 -0.61,-1.36s-0.32,-0.74 -0.44,-1.03 -0.2,-0.49 -0.28,-0.65a0.81,0.81 0,0 0,-0.11 -0.22,1.82 1.82,0 0,0 0.08,0.24l0.25,0.66c0.11,0.29 0.24,0.64 0.42,1.04s0.35,0.87 0.58,1.37c0.44,1.01 1.02,2.19 1.69,3.48s1.49,2.67 2.4,4.09 1.85,2.71 2.73,3.87 1.74,2.16 2.47,2.98c0.36,0.42 0.71,0.78 1,1.09s0.56,0.59 0.78,0.81l0.51,0.5a1.44,1.44 0,0 0,0.18 0.18Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M169.24,61.65c-0.05,0 -0.64,4.49 -1.32,10.03s-1.19,10.04 -1.14,10.05 0.64,-4.49 1.31,-10.02S169.29,61.66 169.24,61.65Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M167.74,117.33a0.57,0.57 0,0 0,0.93 0.04,11.89 11.89,0 0,0 0.47,-2.53l0.55,-3.11 -0.1,5.91s0.06,0.56 0.51,0.58 0.74,-0.63 0.74,-0.63l0.65,-6.1a20.57,20.57 0,0 0,0 3.57c0.3,0.24 0.58,0.16 0.68,-0.1a32.77,32.77 0,0 0,0.5 -3.59l0.28,-5.82 0.3,-2.8 -5.43,-0.35 -0.24,1.66a21.67,21.67 0,0 0,-2.62 2.26c-0.47,0.64 -1.64,2.93 -2.51,3.6a0.65,0.65 0,0 0,1.04 0.44,7.43 7.43,0 0,0 2.27,-1.97c0.37,-0.56 0.75,-0.23 0.77,0.26s-0.4,3.78 -0.4,3.78 -1.03,3.66 -0.75,4.07a0.67,0.67 0,0 0,1.05 0.05c0.14,-0.19 1.3,-3.26 1.3,-3.26"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M173.46,78.9s0.37,11.54 0.42,13.35c0.06,2.81 -0.72,11.06 -0.72,11.06l-5.58,0.8 -0.19,-23.02Z"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M121.75,59.38c0.39,-0.95 -0.25,-1.45 -0.87,-1.23a2.31,2.31 0,0 0,-0.87 0.69,9.04 9.04,0 0,0 -1.14,2.56c-0.3,0.57 -0.55,0.81 -0.89,0.6s-4.7,-2.45 -4.03,0.52c0,0 -1.09,0.07 -1.31,0.8a1.38,1.38 0,0 0,0.23 1.27s-1.42,0.06 -0.7,1.92c0,0 -1.3,0.6 -0.07,1.94a2.98,2.98 0,0 0,1.05 1.32c0.63,0.31 4.43,2.11 4.95,2.48l1.93,2.51 3.65,-5.65L121.83,67.26a7.57,7.57 0,0 1,-0.88 -3.43,14.03 14.03,0 0,1 0.42,-3.07C121.53,60.24 121.59,59.76 121.75,59.38Z"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M115.63,61.59a6.5,6.5 0,0 1,0.92 0.77c0.28,0.26 0.6,0.54 0.96,0.9a0.94,0.94 0,0 1,0.3 0.78,0.9 0.9,0 0,1 -0.6,0.68 1.34,1.34 0,0 1,-0.88 -0.03,2.81 2.81,0 0,1 -0.69,-0.42 9.83,9.83 0,0 1,-0.98 -0.87,4.48 4.48,0 0,1 -0.77,-0.93c0.03,-0.02 0.34,0.32 0.88,0.82a12.24,12.24 0,0 0,1 0.82,2.65 2.65,0 0,0 0.64,0.36 1.14,1.14 0,0 0,0.74 0.03,0.68 0.68,0 0,0 0.45,-0.5 0.74,0.74 0,0 0,-0.23 -0.61c-0.33,-0.35 -0.66,-0.66 -0.91,-0.92a6.56,6.56 0,0 1,-0.81 -0.87Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M116.69,64.74c0,-0.03 0.42,0.16 0.59,0.79a1.04,1.04 0,0 1,0 0.52,0.7 0.7,0 0,1 -0.39,0.49 0.99,0.99 0,0 1,-0.68 0,6.79 6.79,0 0,1 -0.63,-0.25 10.52,10.52 0,0 1,-2.05 -1.16,3.38 3.38,0 0,1 -0.74,-0.63 25.71,25.71 0,0 0,2.88 1.59c0.42,0.17 0.85,0.39 1.14,0.27a0.51,0.51 0,0 0,0.29 -0.35,0.95 0.95,0 0,0 0,-0.45 1.8,1.8 0,0 0,-0.41 -0.81Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M116.01,66.43c0.03,-0.02 0.24,0.26 0.21,0.79a0.93,0.93 0,0 1,-0.13 0.42,0.68 0.68,0 0,1 -0.42,0.31 1.22,1.22 0,0 1,-0.55 -0.04c-0.18,-0.05 -0.35,-0.1 -0.54,-0.17a6.61,6.61 0,0 1,-2.41 -1.31c0.04,-0.05 1.06,0.63 2.48,1.1a2.56,2.56 0,0 0,0.98 0.22,0.6 0.6,0 0,0 0.44,-0.55A2.29,2.29 0,0 0,116.01 66.43Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M114.3,67.57a1,1 0,0 1,0.48 0.46,0.84 0.84,0 0,1 0.04,0.75 0.67,0.67 0,0 1,-0.33 0.34,0.85 0.85,0 0,1 -0.5,0.04 4.9,4.9 0,0 1,-2 -0.95c0.03,-0.06 0.9,0.42 2.04,0.73a0.49,0.49 0,0 0,0.6 -0.25,0.69 0.69,0 0,0 0,-0.6C114.49,67.76 114.27,67.6 114.3,67.57Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M117.89,67.76a4.22,4.22 0,0 1,-0.42 -2.11,4.12 4.12,0 0,1 0.49,-2.11 17.98,17.98 0,0 0,-0.27 2.11A18.55,18.55 0,0 0,117.89 67.76Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M31.92,67.9s6.55,0.4 9.11,4.95 4.15,18.75 4.15,18.75l5.15,0.77s-2.53,9.87 -6.72,10.07S38.99,100.41 38.99,100.41l-7.26,-29.47Z"
|
||||
android:fillColor="#aee0ff"/>
|
||||
<path
|
||||
android:pathData="M53.08,95.44s0.93,1.06 -0.74,1.5c0,0 -0.25,1.52 -1.38,0.95a2.99,2.99 0,0 1,-1.69 0.32,11.82 11.82,0 0,1 -1.91,-1.11l-1.2,-2.2 6.04,-0.31Z"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M49.85,93.01s-5.54,0.22 -5.19,1.32 10.22,1.36 14.21,1.16c5.55,-0.29 9.41,-1.38 9.76,-2.48s-2.96,-3.36 -17.67,-1.45Z"
|
||||
android:fillColor="#ae7461"/>
|
||||
<path
|
||||
android:pathData="M52.17,93.21s-0.16,-1.78 -0.88,-2.11a3.85,3.85 0,0 0,-2.96 0.65,14.97 14.97,0 0,0 -1.47,1.55l2.96,-0.29a1.69,1.69 0,0 0,1.45 0.75C52.36,93.78 52.17,93.21 52.17,93.21Z"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M68.27,92.25a0.8,0.8 0,0 1,0 0.25,0.97 0.97,0 0,1 -0.3,0.64 6.19,6.19 0,0 1,-2.42 0.92,37.92 37.92,0 0,1 -8.45,1.09 53.78,53.78 0,0 1,-8.51 -0.55c-1.08,-0.15 -1.95,-0.3 -2.53,-0.42l-0.69,-0.14a0.89,0.89 0,0 1,-0.24 -0.06,1.33 1.33,0 0,1 0.25,0l0.69,0.1c0.6,0.09 1.48,0.22 2.56,0.35a60.39,60.39 0,0 0,8.48 0.48,40.72 40.72,0 0,0 8.42,-1.02 6.18,6.18 0,0 0,2.39 -0.85,0.97 0.97,0 0,0 0.32,-0.59A1.98,1.98 0,0 1,68.27 92.25Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M56.38,92.24c0,0.27 -0.68,0.49 -1.52,0.49s-1.52,-0.22 -1.52,-0.49 0.68,-0.49 1.52,-0.49S56.38,91.97 56.38,92.24Z"
|
||||
android:fillColor="#ff725e"/>
|
||||
<path
|
||||
android:pathData="M60.86,91.94c0,0.27 -0.68,0.49 -1.52,0.49s-1.52,-0.22 -1.52,-0.49 0.68,-0.5 1.52,-0.5S60.86,91.66 60.86,91.94Z"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M65.34,92.11c0,0.27 -0.68,0.49 -1.52,0.49s-1.52,-0.22 -1.52,-0.49 0.68,-0.49 1.52,-0.49S65.34,91.84 65.34,92.11Z"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M61.13,93.92c0,0.28 -0.68,0.49 -1.52,0.49s-1.52,-0.22 -1.52,-0.49 0.68,-0.49 1.52,-0.49S61.13,93.65 61.13,93.92Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M55.98,94.03c0,0.27 -0.68,0.49 -1.52,0.49s-1.52,-0.22 -1.52,-0.49 0.68,-0.49 1.52,-0.49S55.98,93.78 55.98,94.03Z"
|
||||
android:fillColor="#ff725e"/>
|
||||
<path
|
||||
android:pathData="M41.62,101.09L9,101.09c-1.52,1.29 -3.91,7.34 -2.53,21.5l2.17,48.5 12.3,-0.09 4.78,-48.12 1.34,48.21 12.54,0.32 3.82,-50.93a53.3,53.3 0,0 0,-0.74 -13.66Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M37.18,165.99l-0.3,8.02s8.02,2.99 8.12,4.48l-15.54,-0.03 -0.04,-12.49Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M32.08,173.3a0.63,0.63 0,0 0,-0.42 0.72,0.61 0.61,0 0,0 0.71,0.44 0.67,0.67 0,0 0,0.47 -0.77,0.64 0.64,0 0,0 -0.79,-0.38"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M29.46,178.43l0.05,-1.27 14.88,0.5s0.69,0.3 0.61,0.79Z"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M37.13,173.9c0,0.08 -0.38,0.11 -0.76,0.35s-0.57,0.56 -0.64,0.53 0.04,-0.47 0.5,-0.75S37.15,173.84 37.13,173.9Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M38.76,174.58c0,0.08 -0.31,0.2 -0.57,0.52s-0.33,0.66 -0.42,0.66 -0.12,-0.42 0.2,-0.85S38.76,174.51 38.76,174.58Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M39.68,176.55c-0.07,0 -0.17,-0.36 0.02,-0.78s0.55,-0.58 0.58,-0.52 -0.19,0.29 -0.34,0.63S39.76,176.55 39.68,176.55Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M36.99,172.07c-0.03,0.07 -0.38,-0.03 -0.81,0s-0.76,0.17 -0.8,0.1 0.28,-0.33 0.79,-0.36S37.03,172.01 36.99,172.07Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M17.8,165.14l0.22,9.82 2.42,7.7a1.01,1.01 0,0 1,-0.73 1.27h0a1,1 0,0 1,-0.9 -0.22c-1.56,-1.37 -7.28,-6.44 -7.26,-7.15 0.03,-0.85 -0.91,-10.35 -0.91,-10.35Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M19.7,183.94l-8.18,-8.02v0.42a1.53,1.53 0,0 0,0.42 0.97c0.66,0.7 2.51,2.61 6.84,6.44a1,1 0,0 0,0.93 0.22Z"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M13.39,172.65a0.61,0.61 0,0 1,0.2 0.79,0.58 0.58,0 0,1 -0.78,0.21 0.64,0.64 0,0 1,-0.21 -0.85,0.61 0.61,0 0,1 0.85,-0.13"
|
||||
android:strokeAlpha="0.6"
|
||||
android:fillColor="#fff"
|
||||
android:fillAlpha="0.6"/>
|
||||
<path
|
||||
android:pathData="M17.26,179.75c0.06,0.03 0.26,-0.5 0.85,-0.8a2.98,2.98 0,0 1,1.12 -0.27c0,-0.03 -0.12,-0.1 -0.35,-0.12a1.55,1.55 0,0 0,-0.87 0.19,1.57 1.57,0 0,0 -0.63,0.63C17.25,179.6 17.24,179.75 17.26,179.75Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M18.02,181.04c0.05,0.04 0.35,-0.29 0.85,-0.46a7.86,7.86 0,0 1,0.95 -0.17,1.12 1.12,0 0,0 -1.03,-0.04C18.23,180.57 17.97,181.01 18.02,181.04Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M15.89,178.13a10.86,10.86 0,0 1,1.27 -0.8,10.38 10.38,0 0,1 1.44,-0.42 2.75,2.75 0,0 0,-2.71 1.2Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M15.57,175.15c0.03,0.05 0.56,-0.19 1.27,-0.25s1.27,0.09 1.27,0.03a2.5,2.5 0,0 0,-2.53 0.22Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M15.44,172.27a4.78,4.78 0,0 1,1.31 -0.3,5.11 5.11,0 0,1 1.32,0.27c0,-0.02 -0.1,-0.14 -0.33,-0.26a2.14,2.14 0,0 0,-0.99 -0.22,2.2 2.2,0 0,0 -0.98,0.24C15.54,172.13 15.42,172.25 15.44,172.27Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M36.06,56.54c-0.66,-1.52 -2.65,-1.99 -3.6,-3.34l-20.16,1.58a16.39,16.39 0,0 0,-1.99 2.78,4.32 4.32,0 0,0 -0.31,2.99 2.63,2.63 0,0 0,2.18 1.9,2.41 2.41,0 0,0 1.96,2.42 4.87,4.87 0,0 0,3.28 -0.67,11.75 11.75,0 0,0 4.36,1.27 4.16,4.16 0,0 0,3.86 -1.96,13.29 13.29,0 0,0 3.76,1.05 4.5,4.5 0,0 0,3.6 -1.18,2.76 2.76,0 0,0 0.27,-3.56 2.4,2.4 0,0 0,2.79 -3.29Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M32.41,48.66a5.49,5.49 0,0 0,-0.14 -5.18L29.56,59.38a3.44,3.44 0,0 0,3.65 -4.32,5.55 5.55,0 0,0 1.49,-3.58A2.86,2.86 0,0 0,32.41 48.66Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M32.62,46.45a5.06,5.06 0,0 0,-1.94 -5.51,7.8 7.8,0 0,0 -5.98,-1.14c-1.62,0.3 -3.32,1.12 -3.88,2.67a5.24,5.24 0,0 0,-4.41 0.38,3.96 3.96,0 0,0 -1.79,3.38 5.16,5.16 0,0 0,-2.31 8.55c-1.45,1.72 -0.8,5.03 0.63,6.76s3.38,2.05 5.6,2.42a13.07,13.07 0,0 0,8.94 -1.41,10.14 10.14,0 0,0 4.5,-11.4 6.06,6.06 0,0 1,-0.39 -1.98A10.98,10.98 0,0 1,32.62 46.45Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M24.05,73.08a5.07,5.07 0,0 1,-5.64 -4.32L16.04,52.32c-0.78,-4.4 1.14,-8.52 5.55,-9.17l0.42,-0.03a7.98,7.98 0,0 1,8.56 6.63c0.65,3.8 1.33,8.02 1.48,10.1 0.32,4.27 -3.88,5.32 -3.88,5.32s0.12,0.98 0.28,2.23a5.07,5.07 0,0 1,-4.41 5.69Z"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M28.18,65.16a10.01,10.01 0,0 1,-5.7 -1.1,5.32 5.32,0 0,0 5.85,2.33Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M24.43,58.67a0.93,0.93 0,0 1,1.65 0.42,0.95 0.95,0 0,1 -0.48,0.92 1.19,1.19 0,0 1,-0.74 0.11,0.9 0.9,0 0,1 -0.51,-0.24 0.85,0.85 0,0 1,-0.16 -0.77,1.23 1.23,0 0,1 0.34,-0.58"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M29.31,54.2a0.61,0.61 0,0 1,-0.53 0.67,0.59 0.59,0 0,1 -0.68,-0.49 0.61,0.61 0,0 1,0.53 -0.67,0.59 0.59,0 0,1 0.68,0.49Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M29.88,51.92c-0.07,0.08 -0.56,-0.22 -1.22,-0.16s-1.11,0.42 -1.19,0.36 0.03,-0.18 0.22,-0.35a1.69,1.69 0,0 1,0.94 -0.38,1.6 1.6,0 0,1 0.98,0.22C29.83,51.74 29.91,51.88 29.88,51.92Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M23.62,54.69a0.61,0.61 0,0 1,-0.53 0.65,0.59 0.59,0 0,1 -0.68,-0.49 0.61,0.61 0,0 1,0.53 -0.67,0.59 0.59,0 0,1 0.68,0.51Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M23.58,52.64c-0.07,0.08 -0.56,-0.22 -1.22,-0.16s-1.11,0.42 -1.19,0.36 0.03,-0.18 0.22,-0.35a1.69,1.69 0,0 1,0.94 -0.38,1.6 1.6,0 0,1 0.98,0.22C23.53,52.46 23.61,52.6 23.58,52.64Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M26.24,57.31a4.39,4.39 0,0 1,1.05 -0.29c0.17,-0.03 0.32,-0.08 0.34,-0.2a0.85,0.85 0,0 0,-0.16 -0.49L26.86,55.1a23.13,23.13 0,0 1,-1.41 -3.23,22.16 22.16,0 0,1 1.67,3.12c0.21,0.42 0.42,0.85 0.59,1.24a0.97,0.97 0,0 1,0.15 0.65,0.42 0.42,0 0,1 -0.25,0.27 1.18,1.18 0,0 1,-0.28 0.07A4.34,4.34 0,0 1,26.24 57.31Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M23.73,50.15c-0.06,0.18 -0.72,0.11 -1.5,0.21s-1.39,0.32 -1.5,0.17c-0.05,-0.08 0.06,-0.25 0.31,-0.42a2.44,2.44 0,0 1,1.11 -0.42,2.49 2.49,0 0,1 1.17,0.12C23.62,49.93 23.76,50.07 23.73,50.15Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M29.17,49.86c-0.12,0.14 -0.57,-0.03 -1.12,-0.07s-1.01,0.05 -1.11,-0.11c-0.04,-0.08 0.04,-0.22 0.25,-0.35a1.62,1.62 0,0 1,1.79 0.14C29.17,49.61 29.23,49.77 29.17,49.86Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M16.68,55.52c-0.08,-0.03 -3.01,-0.6 -2.66,2.31a2.2,2.2 0,0 0,3.2 1.87C17.21,59.61 16.68,55.52 16.68,55.52Z"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M16.22,58.7a1.4,1.4 0,0 1,-0.13 0.09,0.51 0.51,0 0,1 -0.38,0.05 1.27,1.27 0,0 1,-0.71 -1.06,1.66 1.66,0 0,1 0.05,-0.74 0.59,0.59 0,0 1,0.34 -0.42,0.25 0.25,0 0,1 0.31,0.1c0.05,0.08 0.04,0.14 0.05,0.14s0.05,-0.05 0,-0.17a0.32,0.32 0,0 0,-0.14 -0.17,0.38 0.38,0 0,0 -0.29,-0.04 0.72,0.72 0,0 0,-0.48 0.51,1.69 1.69,0 0,0 -0.08,0.85 1.32,1.32 0,0 0,0.89 1.16,0.53 0.53,0 0,0 0.45,-0.13A0.31,0.31 0,0 0,16.22 58.7Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M23.91,58.63c0.06,-0.08 0.62,0.23 1.36,0.4s1.38,0.14 1.4,0.25 -0.65,0.3 -1.48,0.1S23.85,58.7 23.91,58.63Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M23.25,59.65c0,0.02 -0.08,0.02 -0.19,-0.04a0.63,0.63 0,0 1,-0.27 -0.38,0.62 0.62,0 0,1 0.08,-0.47c0.07,-0.1 0.14,-0.13 0.16,-0.12a1.1,1.1 0,0 0,-0.06 0.55C23.03,59.48 23.27,59.61 23.25,59.65Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M21.56,54.9c0,0.05 -0.22,0.16 -0.52,0.14s-0.52,-0.16 -0.5,-0.2 0.24,0 0.51,0S21.54,54.85 21.56,54.9Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M21.73,55.13c0,0.05 -0.19,0.1 -0.42,0.21s-0.36,0.23 -0.42,0.19 0.07,-0.23 0.32,-0.35S21.73,55.09 21.73,55.13Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M30.85,53.56c0.04,0.03 -0.05,0.2 -0.27,0.3s-0.42,0.04 -0.4,0a1.42,1.42 0,0 1,0.32 -0.16C30.68,53.62 30.81,53.52 30.85,53.56Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M30.94,54.19c0,0.05 -0.17,0.1 -0.38,0.09s-0.38,-0.08 -0.37,-0.14 0.18,-0.05 0.38,-0.04S30.94,54.14 30.94,54.19Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M22.9,59.88c0,0.05 -0.25,0 -0.36,-0.26s-0.03,-0.47 0,-0.45 0.05,0.19 0.15,0.37S22.92,59.83 22.9,59.88Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M20.58,67.2a1.1,1.1 0,0 0,0.05 -0.65,0.7 0.7,0 0,0 -0.15,-0.28 1.51,1.51 0,0 0,-0.3 -0.25,0.57 0.57,0 0,1 -0.18,-0.9 0.78,0.78 0,0 0,0.16 -0.39,0.47 0.47,0 0,0 -0.19,-0.31c-0.1,-0.09 -0.22,-0.17 -0.31,-0.27a0.59,0.59 0,0 1,-0.17 -0.35,0.69 0.69,0 0,1 0.21,-0.49c0.08,-0.09 0.14,-0.13 0.15,-0.12s-0.03,0.06 -0.09,0.17a0.65,0.65 0,0 0,-0.14 0.42c0,0.19 0.23,0.32 0.46,0.51a0.63,0.63 0,0 1,0.26 0.42,0.84 0.84,0 0,1 -0.17,0.49 0.54,0.54 0,0 0,-0.11 0.38,0.56 0.56,0 0,0 0.24,0.29 1.53,1.53 0,0 1,0.31 0.28,0.89 0.89,0 0,1 0.1,0.87C20.64,67.17 20.59,67.21 20.58,67.2Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M21.75,67.03a1.2,1.2 0,0 0,-0.13 -0.51c-0.08,-0.15 -0.19,-0.31 -0.3,-0.52a1.12,1.12 0,0 1,-0.13 -0.36,0.71 0.71,0 0,1 0.07,-0.42c0.06,-0.12 0.1,-0.22 0.07,-0.3a0.48,0.48 0,0 0,-0.19 -0.22,2.09 2.09,0 0,1 -0.26,-0.22 0.55,0.55 0,0 1,-0.14 -0.28,0.58 0.58,0 0,1 0.1,-0.42c0.07,-0.08 0.12,-0.1 0.13,-0.09s-0.03,0.05 -0.07,0.13a0.57,0.57 0,0 0,-0.03 0.36c0.03,0.16 0.17,0.26 0.37,0.39a0.64,0.64 0,0 1,0.27 0.3,0.54 0.54,0 0,1 -0.08,0.42 0.7,0.7 0,0 0,0.04 0.64c0.1,0.2 0.21,0.38 0.27,0.54a0.84,0.84 0,0 1,0.07 0.42C21.79,66.98 21.76,67.03 21.75,67.03Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M30.94,47.41a5.41,5.41 0,0 0,-3.03 -3.19,12.69 12.69,0 0,0 -4.86,-1.4 11.46,11.46 0,0 0,-4.64 1.29,8.16 8.16,0 0,0 -3.3,4.68c-0.56,1.78 0.22,3.73 0.53,5.57l0.47,1.76a1.08,1.08 0,0 0,1.6 0.33,2.96 2.96,0 0,0 0.95,-1.6 19.92,19.92 0,0 0,1.16 -8.6,15.36 15.36,0 0,0 4.52,2.03 2.32,2.32 0,0 0,1.16 0.09,0.89 0.89,0 0,0 0.7,-0.82 7.47,7.47 0,0 0,2.34 1.9,2.04 2.04,0 0,0 1.8,0.22 1.44,1.44 0,0 0,0.71 -1,2.53 2.53,0 0,0 -0.12,-1.26Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M11.11,52.19c0,-0.03 0.62,0 1.6,-0.14a8.22,8.22 0,0 0,1.69 -0.47,9.48 9.48,0 0,0 1.86,-1.02 9,9 0,0 0,2.58 -2.82c0.5,-0.85 0.68,-1.46 0.72,-1.44a2.19,2.19 0,0 1,-0.12 0.42,7.89 7.89,0 0,1 -0.49,1.09A8.55,8.55 0,0 1,16.35 50.72a9.36,9.36 0,0 1,-1.9 1.03,7.6 7.6,0 0,1 -1.69,0.42 6.68,6.68 0,0 1,-1.19 0.06A1.64,1.64 0,0 1,11.11 52.19Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M11.55,53.51c0,-0.03 0.59,-0.05 1.52,-0.28a9.63,9.63 0,0 0,1.58 -0.53,10.06 10.06,0 0,0 4.4,-3.61c0.54,-0.79 0.77,-1.34 0.8,-1.32a2,2 0,0 1,-0.15 0.39,3.45 3.45,0 0,1 -0.22,0.44c-0.09,0.17 -0.19,0.36 -0.32,0.56a9.76,9.76 0,0 1,-1.04 1.34,10.8 10.8,0 0,1 -1.58,1.36 10.56,10.56 0,0 1,-1.82 0.99,8.75 8.75,0 0,1 -1.62,0.5c-0.24,0.06 -0.46,0.08 -0.64,0.11a4,4 0,0 1,-0.49 0.05A1.76,1.76 0,0 1,11.55 53.51Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M29.67,49.23a1.3,1.3 0,0 0,0.3 -0.05,1.5 1.5,0 0,0 0.71,-0.42 1.27,1.27 0,0 0,0.34 -1.18,1.4 1.4,0 0,0 -1.13,-1.06L29.78,46.52l0.04,-0.1a3.38,3.38 0,0 0,-0.66 -3.47,4.3 4.3,0 0,0 -2.69,-1.34 5.55,5.55 0,0 0,-2.48 0.28,8.33 8.33,0 0,0 -1.55,0.73c-0.35,0.21 -0.53,0.34 -0.54,0.33s0.04,-0.04 0.12,-0.11a4.12,4.12 0,0 1,0.38 -0.28,7.06 7.06,0 0,1 1.54,-0.79 5.51,5.51 0,0 1,2.53 -0.32,4.41 4.41,0 0,1 2.8,1.38 3.51,3.51 0,0 1,0.67 3.65l-0.06,-0.11a1.54,1.54 0,0 1,1.23 1.18,1.38 1.38,0 0,1 -0.4,1.27 1.43,1.43 0,0 1,-0.77 0.42,0.98 0.98,0 0,1 -0.23,0A0.3,0.3 0,0 1,29.67 49.23Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M9.35,86.27l0.63,4.55s-4.03,11.16 -2.46,12.79c4.26,4.42 34.57,2.37 34.57,2.37s2.05,1.05 -1.34,-12.22c-0.85,-3.3 0.51,-6.11 -0.31,-9.43 -2.05,-8.32 -7.36,-15.36 -8.52,-16.43l-3.46,-0.5s-0.44,5.94 -10.49,0.02l-8.12,2.41Z"
|
||||
android:fillColor="#aee0ff"/>
|
||||
<path
|
||||
android:pathData="M19.83,98.62a1.19,1.19 0,0 1,-0.33 -0.04c-0.21,-0.04 -0.51,-0.11 -0.88,-0.2a22.14,22.14 0,0 1,-5.51 -2.27c-0.33,-0.19 -0.59,-0.36 -0.77,-0.48s-0.27,-0.19 -0.26,-0.2 0.42,0.22 1.09,0.57 1.61,0.82 2.68,1.27 2.07,0.77 2.8,0.99a12.01,12.01 0,0 1,1.18 0.37Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M36.1,58.24"
|
||||
android:strokeWidth="0.05"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#4e585d"/>
|
||||
<path
|
||||
android:pathData="M43.04,105.32a3.05,3.05 0,0 1,-0.07 -0.32c-0.04,-0.23 -0.1,-0.54 -0.17,-0.93 -0.14,-0.85 -0.34,-1.99 -0.58,-3.42L41.36,95.58a9.84,9.84 0,0 0,-0.32 -1.44c-0.14,-0.48 -0.32,-0.97 -0.45,-1.49a9.56,9.56 0,0 1,-0.11 -3.28c0.6,-4.42 0.03,-8.57 -1.43,-11.11a18.92,18.92 0,0 0,-1.89 -2.88l-0.6,-0.72a1.69,1.69 0,0 1,-0.2 -0.27,1.6 1.6,0 0,1 0.24,0.24l0.63,0.7a17.36,17.36 0,0 1,1.96 2.87,14.7 14.7,0 0,1 0.96,2.2 14.16,14.16 0,0 1,0.6 2.69c0.05,0.49 0.09,0.98 0.11,1.49s0.08,1.01 0.08,1.55c0,1.06 -0.14,2.15 -0.23,3.26a9.54,9.54 0,0 0,0.1 3.2c0.13,0.5 0.3,0.99 0.44,1.48a9.81,9.81 0,0 1,0.32 1.47c0.3,1.9 0.57,3.62 0.79,5.07s0.39,2.6 0.51,3.43c0.05,0.39 0.1,0.7 0.13,0.93a1.49,1.49 0,0 1,0.03 0.33Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M33.53,73.73a0.45,0.45 0,0 0,0 0.89h15.12v-0.89Z"
|
||||
android:fillColor="#6f4439"/>
|
||||
<path
|
||||
android:pathData="M32.8,78.96s1.27,-3.45 1.75,-4.82c0.22,-0.64 3.36,-2.29 4.14,-2.29a21.1,21.1 0,0 1,4.02 1.62,0.81 0.81,0 0,1 -0.85,0.74l1.77,1.2s0.05,1.15 -0.74,0.91l0.34,0.93s-0.1,0.42 -0.64,0.25c0,0 0.1,0.42 -0.69,0.64a13.02,13.02 0,0 1,-2.6 0.1l-0.42,0.74s-0.69,2.36 -1.42,2.96 -3.13,2.05 -3.13,2.05 -2.89,-4.22 -2.84,-4.14A9.81,9.81 0,0 0,32.8 78.96Z"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M41.87,74.2a3.52,3.52 0,0 1,-0.74 -0.27c-0.23,-0.1 -0.49,-0.22 -0.79,-0.33 -0.15,-0.06 -0.31,-0.11 -0.47,-0.16a1.09,1.09 0,0 0,-0.5 0c-0.73,0.11 -1.39,0.27 -1.87,0.38a7.12,7.12 0,0 1,-0.78 0.17,7.61 7.61,0 0,1 2.61,-0.76 1.29,1.29 0,0 1,0.58 0.03,4.41 4.41,0 0,1 0.49,0.18c0.3,0.13 0.57,0.26 0.79,0.38A2.53,2.53 0,0 1,41.87 74.2Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M42.91,76.31a3.8,3.8 0,0 1,-0.66 -0.47c-0.2,-0.15 -0.42,-0.33 -0.7,-0.51a4.28,4.28 0,0 0,-0.9 -0.52,2.35 2.35,0 0,0 -1.01,-0.03c-0.32,0.04 -0.61,0.11 -0.85,0.16a3.34,3.34 0,0 1,-0.8 0.15,2.76 2.76,0 0,1 0.76,-0.3 6.97,6.97 0,0 1,0.85 -0.21,2.33 2.33,0 0,1 1.12,0.02 3.87,3.87 0,0 1,0.95 0.56,8.44 8.44,0 0,1 0.68,0.56A2.66,2.66 0,0 1,42.91 76.31Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M42.61,77.49a9.75,9.75 0,0 1,-1.82 -0.96l-0.2,-0.12h0.08a8.14,8.14 0,0 1,-1.78 0.36,8.2 8.2,0 0,1 1.73,-0.57h0.04l0.04,0.03 0.2,0.12A9.45,9.45 0,0 1,42.61 77.49Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M9.85,69.83c-4.04,2.01 -4.07,4.3 -4.34,6.02a11.4,11.4 0,0 0,-0.11 2.09,15.29 15.29,0 0,0 3.03,8.62c2.34,3.19 5.76,8.73 8.65,9.05 2.19,0.24 3.84,-0.35 6.76,-1.98s11.87,-8.47 11.87,-8.47l-4.53,-5.81 -11.64,6.02a97.72,97.72 0,0 0,-5.27 -11.23"
|
||||
android:fillColor="#aee0ff"/>
|
||||
<path
|
||||
android:pathData="M14.25,74.15s0.04,0.06 0.11,0.18l0.32,0.55c0.28,0.49 0.68,1.21 1.17,2.17 0.97,1.9 2.3,4.72 3.74,8.3l-0.11,-0.04 11.63,-6.04 0.07,-0.04 0.05,0.07 4.54,5.8 0.06,0.08 -0.08,0.07c-2.63,2 -5.44,4.1 -8.4,6.19 -1.23,0.85 -2.44,1.71 -3.72,2.42a16.02,16.02 0,0 1,-3.96 1.71,7.25 7.25,0 0,1 -2.11,0.19 4.31,4.31 0,0 1,-0.52 -0.05l-0.52,-0.11a4.58,4.58 0,0 1,-0.94 -0.44,8.5 8.5,0 0,1 -1.59,-1.27c-0.24,-0.23 -0.47,-0.47 -0.69,-0.71s-0.42,-0.49 -0.65,-0.74c-1.69,-1.99 -3.01,-4.07 -4.37,-5.91a15.63,15.63 0,0 1,-2.61 -5.84,13.63 13.63,0 0,1 -0.14,-5.28 7.85,7.85 0,0 1,0.54 -2.11,5.57 5.57,0 0,1 1.01,-1.52 8.91,8.91 0,0 1,2.01 -1.53c0.25,-0.14 0.45,-0.24 0.58,-0.3l0.2,-0.1 -0.19,0.11c-0.13,0.08 -0.32,0.18 -0.57,0.32A8.97,8.97 0,0 0,7.12 71.82a5.49,5.49 0,0 0,-0.98 1.51,7.78 7.78,0 0,0 -0.51,2.09 13.58,13.58 0,0 0,0.17 5.23,15.63 15.63,0 0,0 2.62,5.76c1.36,1.86 2.71,3.92 4.38,5.91 0.21,0.25 0.42,0.49 0.64,0.73s0.45,0.48 0.68,0.7a8.6,8.6 0,0 0,1.55 1.23,4.72 4.72,0 0,0 0.9,0.42l0.49,0.11c0.17,0 0.34,0.04 0.51,0.04a7.02,7.02 0,0 0,2.05 -0.18,16.2 16.2,0 0,0 3.91,-1.69c1.27,-0.7 2.47,-1.56 3.7,-2.42 2.96,-2.08 5.76,-4.18 8.4,-6.17v0.15L31.07,79.42l0.13,0.03 -11.65,6 -0.08,0.04 -0.03,-0.08c-1.42,-3.59 -2.72,-6.41 -3.65,-8.32 -0.48,-0.96 -0.85,-1.69 -1.13,-2.18l-0.32,-0.56C14.28,74.22 14.25,74.15 14.25,74.15Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M18.26,90.4a6.99,6.99 0,0 1,0.26 -2.62,6.8 6.8,0 0,1 1.03,-2.42c0.06,0.03 -0.47,1.08 -0.81,2.47S18.33,90.4 18.26,90.4Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M48.65,73.73l1.82,-0.12v1.08l-1.82,-0.07Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M52.34,73.61a2.57,2.57 0,0 0,-1.87 0v1.08c1.38,1.24 2.73,-0.05 3.08,-0.07S53.23,74.02 52.34,73.61Z"
|
||||
android:fillColor="#005f9a"/>
|
||||
<path
|
||||
android:pathData="M74.16,105.12L74.16,105.12A2.07,2.07 47.69,0 1,76.32 103.16L98.43,104.2A2.07,2.07 47.69,0 1,100.4 106.36L100.4,106.36A2.07,2.07 47.69,0 1,98.24 108.32L76.13,107.28A2.07,2.07 47.69,0 1,74.16 105.12z"
|
||||
android:fillColor="#ae7461"/>
|
||||
<path
|
||||
android:pathData="M98.34,108.32a3.03,3.03 0,0 0,0.57 -0.08,1.95 1.95,0 0,0 1.23,-1.01 2.32,2.32 0,0 0,0.21 -1.15,1.91 1.91,0 0,0 -0.55,-1.25 1.95,1.95 0,0 0,-1.45 -0.57l-1.85,-0.08 -20.27,-0.92a1.86,1.86 0,0 0,-1.93 1.63,1.67 1.67,0 0,1 -0.03,0.35 1.8,1.8 0,0 0,0 0.34,1.87 1.87,0 0,0 1.21,1.49 1.99,1.99 0,0 0,0.65 0.11l0.69,0.03 1.36,0.06 2.63,0.13 9.12,0.45 6.14,0.32 1.69,0.1 0.42,0.03h0.15a0.52,0.52 0,0 1,-0.15 0L97.76,108.3l-1.69,-0.05 -6.15,-0.25 -9.12,-0.42 -2.63,-0.12 -1.36,-0.06 -0.69,-0.03a2.23,2.23 0,0 1,-0.71 -0.13,2.07 2.07,0 0,1 -1.11,-0.95 2.02,2.02 0,0 1,-0.24 -0.71,2.87 2.87,0 0,1 0,-0.38 1.87,1.87 0,0 1,0.03 -0.37,2.08 2.08,0 0,1 2.15,-1.82l20.27,0.98 1.85,0.09a2.11,2.11 0,0 1,1.53 0.62,2.04 2.04,0 0,1 0.57,1.33 2.38,2.38 0,0 1,-0.24 1.2,1.99 1.99,0 0,1 -1.3,1.02A1.5,1.5 0,0 1,98.34 108.32Z"
|
||||
android:fillColor="#6f4439"/>
|
||||
<path
|
||||
android:pathData="M107.89,104.44 L59.33,102.03l2.63,-53.11 48.43,4.93Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M104.63,100.25l-36.3,-1.8 2.2,-44.41 36.19,3.78Z"
|
||||
android:strokeAlpha="0.3"
|
||||
android:fillAlpha="0.3"/>
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M63.81,102.25 L59.33,102.03l2.63,-53.11 4.52,0.46Z"
|
||||
android:strokeAlpha="0.3"
|
||||
android:fillAlpha="0.3"/>
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M102.95,100.17l2.04,-41.08 -34.54,-3.43 0.08,-1.62 36.19,3.78 -2.1,42.44Z"
|
||||
android:strokeAlpha="0.3"
|
||||
android:fillAlpha="0.3"/>
|
||||
<path
|
||||
android:pathData="M88.44,177.66h0a2.11,2.11 0,0 1,-2.13 -2.11L86.31,45.42a2.11,2.11 0,0 1,2.44 -2.11h0a2.11,2.11 0,0 1,1.83 2.11L90.58,175.54a2.11,2.11 0,0 1,-2.13 2.12Z"
|
||||
android:fillColor="#ae7461"/>
|
||||
<path
|
||||
android:pathData="M88.44,177.66a2.19,2.19 0,0 0,0.69 -0.13,2.02 2.02,0 0,0 0.74,-0.44 2.09,2.09 0,0 0,0.61 -1,2.29 2.29,0 0,0 0.07,-0.71v-7.25c0,-6.93 0,-16.95 -0.03,-29.32s0,-27.12 -0.03,-43.5v-49.7a2.08,2.08 0,0 0,-0.53 -1.55,2.02 2.02,0 0,0 -2.98,0 2.06,2.06 0,0 0,-0.54 1.55v49.73c0,16.37 0,31.11 -0.03,43.5s-0.03,22.38 -0.03,29.32v7.25a2.29,2.29 0,0 0,0.07 0.71,2.09 2.09,0 0,0 0.61,1 2.05,2.05 0,0 0,0.74 0.44,2.21 2.21,0 0,0 0.69,0.13h-0.18a2.03,2.03 0,0 1,-0.52 -0.11,2.14 2.14,0 0,1 -1.38,-1.46 2.36,2.36 0,0 1,-0.08 -0.72v-7.25c0,-6.93 -0.02,-16.94 -0.03,-29.32s0,-27.12 -0.03,-43.5L86.28,45.6a2.3,2.3 0,0 1,0.59 -1.69,2.26 2.26,0 0,1 3.31,0 2.29,2.29 0,0 1,0.58 1.69v49.72c0,16.36 0,31.11 -0.02,43.5s-0.03,22.38 -0.04,29.32v7.25a2.36,2.36 0,0 1,-0.08 0.72,2.11 2.11,0 0,1 -0.63,1.02 2.06,2.06 0,0 1,-0.75 0.42,2.03 2.03,0 0,1 -0.52,0.11A2.17,2.17 0,0 1,88.44 177.66Z"
|
||||
android:fillColor="#6f4439"/>
|
||||
<path
|
||||
android:pathData="M94.58,77.53l7.53,97.41a2.05,2.05 0,0 0,2.06 1.88h0a2.05,2.05 0,0 0,2.06 -2.17L99.47,77.18a2.05,2.05 0,0 0,-2.2 -1.89l-0.78,0.05a2.04,2.04 0,0 0,-1.91 2.18Z"
|
||||
android:fillColor="#ae7461"/>
|
||||
<path
|
||||
android:pathData="M94.58,77.53v-0.14a1.69,1.69 0,0 1,0.03 -0.42,2.04 2.04,0 0,1 0.85,-1.3 2.14,2.14 0,0 1,1.11 -0.37,4.41 4.41,0 0,1 1.41,0 2.11,2.11 0,0 1,1.29 0.99,2.07 2.07,0 0,1 0.26,0.88c0.03,0.31 0.05,0.63 0.07,0.96 0.37,5.28 0.91,12.91 1.58,22.34 1.31,18.87 3.13,44.94 5.14,73.72a6.1,6.1 0,0 1,0.03 0.69,2.05 2.05,0 0,1 -0.16,0.69 2.18,2.18 0,0 1,-3.54 0.69,2.11 2.11,0 0,1 -0.62,-1.24c-0.04,-0.45 -0.07,-0.89 -0.11,-1.33q-0.1,-1.32 -0.2,-2.63 -0.42,-5.26 -0.8,-10.35c-0.52,-6.79 -1.03,-13.33 -1.5,-19.57 -0.95,-12.47 -1.82,-23.69 -2.53,-33.12s-1.29,-17.06 -1.69,-22.33c-0.19,-2.63 -0.35,-4.68 -0.45,-6.07 -0.05,-0.69 -0.09,-1.22 -0.11,-1.58s-0.03,-0.54 -0.03,-0.54a3.94,3.94 0,0 0,0.05 0.54c0.05,0.35 0.07,0.89 0.13,1.58 0.11,1.39 0.28,3.44 0.49,6.07 0.42,5.28 1.02,12.9 1.76,22.33s1.61,20.65 2.59,33.12c0.48,6.23 0.99,12.78 1.52,19.56q0.4,5.09 0.8,10.35 0.1,1.31 0.21,2.63c0.03,0.42 0.06,0.89 0.11,1.32a1.88,1.88 0,0 0,0.55 1.11,1.98 1.98,0 0,0 2.34,0.31 1.93,1.93 0,0 0,0.85 -0.93,1.8 1.8,0 0,0 0.14,-0.62 5.88,5.88 0,0 0,-0.03 -0.66c-1.98,-28.79 -3.78,-54.85 -5.07,-73.73 -0.64,-9.43 -1.16,-17.07 -1.52,-22.35a4.26,4.26 0,0 0,-0.31 -1.81,2.01 2.01,0 0,0 -1.24,-0.97 4.41,4.41 0,0 0,-1.39 -0.03,2.07 2.07,0 0,0 -1.09,0.35 1.99,1.99 0,0 0,-0.85 1.27A3,3 0,0 0,94.58 77.53Z"
|
||||
android:fillColor="#6f4439"/>
|
||||
<path
|
||||
android:pathData="M83.22,77.21l-9.66,98.51a2.06,2.06 0,0 1,-2.11 1.86h0a2.06,2.06 0,0 1,-2.01 -2.24l8.87,-98.59a2.06,2.06 0,0 1,2.24 -1.87l0.78,0.07a2.06,2.06 0,0 1,1.89 2.25Z"
|
||||
android:fillColor="#ae7461"/>
|
||||
<path
|
||||
android:pathData="M83.22,77.21a3.06,3.06 0,0 0,-0.03 -0.54,2.01 2.01,0 0,0 -0.85,-1.31 2.04,2.04 0,0 0,-1.09 -0.38,3.94 3.94,0 0,0 -1.41,0 2.02,2.02 0,0 0,-1.25 0.98,4.82 4.82,0 0,0 -0.33,1.83l-2,22.6c-1.69,19.08 -4.07,45.44 -6.68,74.54a5.3,5.3 0,0 0,-0.04 0.67,1.9 1.9,0 0,0 0.13,0.63 1.95,1.95 0,0 0,3.75 -0.46c0.04,-0.45 0.09,-0.89 0.13,-1.34q0.13,-1.34 0.26,-2.66 0.52,-5.31 1.03,-10.46c0.67,-6.86 1.32,-13.48 1.94,-19.78 1.25,-12.6 2.37,-23.95 3.31,-33.48l2.25,-22.57c0.27,-2.66 0.48,-4.73 0.62,-6.14 0.07,-0.7 0.13,-1.23 0.17,-1.6s0.06,-0.55 0.06,-0.55a5.23,5.23 0,0 1,-0.04 0.55c-0.04,0.36 -0.08,0.9 -0.15,1.6 -0.13,1.41 -0.33,3.47 -0.58,6.14 -0.51,5.33 -1.27,13.04 -2.18,22.58S78.22,128.95 76.99,141.55c-0.62,6.3 -1.27,12.92 -1.93,19.78l-1.02,10.46c-0.09,0.89 -0.17,1.77 -0.26,2.66 -0.05,0.45 -0.09,0.9 -0.14,1.34a2.17,2.17 0,0 1,-4.17 0.53,2.11 2.11,0 0,1 -0.15,-0.7 5.28,5.28 0,0 1,0.04 -0.7c2.63,-29.11 5.02,-55.46 6.76,-74.54 0.87,-9.53 1.58,-17.25 2.07,-22.59 0.03,-0.33 0.06,-0.66 0.09,-0.97a2.11,2.11 0,0 1,1.55 -1.9,4.06 4.06,0 0,1 1.43,0 2.09,2.09 0,0 1,1.93 1.74,1.87 1.87,0 0,1 0.02,0.42Z"
|
||||
android:fillColor="#6f4439"/>
|
||||
<path
|
||||
android:pathData="M75.53,88.05L75.53,88.05A2.07,2.07 49.46,0 1,77.75 86.15L99.82,87.88A2.07,2.07 49.46,0 1,101.71 90.09L101.71,90.09A2.07,2.07 49.46,0 1,99.49 91.99L77.43,90.27A2.07,2.07 49.46,0 1,75.53 88.05z"
|
||||
android:fillColor="#ae7461"/>
|
||||
<path
|
||||
android:pathData="M99.59,91.99a2.75,2.75 0,0 0,0.57 -0.06,1.96 1.96,0 0,0 1.27,-0.97 2.34,2.34 0,0 0,0.24 -1.15,1.92 1.92,0 0,0 -0.51,-1.27 1.97,1.97 0,0 0,-1.43 -0.62l-1.85,-0.14 -20.24,-1.55a1.85,1.85 0,0 0,-1.3 0.4,1.87 1.87,0 0,0 -0.68,1.16c0,0.11 -0.03,0.23 -0.03,0.35a2.31,2.31 0,0 0,0 0.34,1.8 1.8,0 0,0 0.19,0.64 1.84,1.84 0,0 0,0.97 0.88,2.07 2.07,0 0,0 0.65,0.14l0.69,0.05 1.36,0.11 2.63,0.21 9.1,0.73 6.13,0.51 1.66,0.15 0.42,0.05h0.15a0.65,0.65 0,0 1,-0.15 0L99,91.97l-1.67,-0.11 -6.14,-0.44 -9.1,-0.69 -2.63,-0.2 -1.36,-0.11 -0.69,-0.05a2.23,2.23 0,0 1,-0.71 -0.14,2.11 2.11,0 0,1 -1.3,-1.69 2.84,2.84 0,0 1,0 -0.38,2.93 2.93,0 0,1 0.04,-0.37 2.08,2.08 0,0 1,2.21 -1.75l20.24,1.61 1.85,0.15a2.11,2.11 0,0 1,1.51 0.67,2.03 2.03,0 0,1 0.53,1.35 2.4,2.4 0,0 1,-0.27 1.19,1.99 1.99,0 0,1 -1.33,0.98A1.56,1.56 0,0 1,99.59 91.99Z"
|
||||
android:fillColor="#6f4439"/>
|
||||
<path
|
||||
android:pathData="M63.84,102.45a0.69,0.69 0,0 1,0 -0.14v-0.4c0,-0.37 0.03,-0.89 0.06,-1.55 0.06,-1.36 0.14,-3.3 0.25,-5.69 0.23,-4.81 0.55,-11.44 0.9,-18.76s0.72,-13.94 0.97,-18.77c0.14,-2.39 0.25,-4.33 0.32,-5.68 0.04,-0.66 0.07,-1.18 0.1,-1.55l0.03,-0.4v-0.14a0.42,0.42 0,0 1,0 0.14v0.4c0,0.37 -0.03,0.89 -0.05,1.55 -0.06,1.36 -0.14,3.29 -0.25,5.69 -0.23,4.81 -0.55,11.44 -0.91,18.76s-0.72,13.94 -0.97,18.76c-0.13,2.39 -0.24,4.33 -0.32,5.69 -0.04,0.66 -0.08,1.18 -0.1,1.55a3.77,3.77 0,0 1,-0.03 0.4,0.71 0.71,0 0,1 0,0.14Z"
|
||||
android:fillColor="#263238"/>
|
||||
</vector>
|
||||
381
app/src/main/res/drawable/img_medication_time.xml
Normal file
381
app/src/main/res/drawable/img_medication_time.xml
Normal file
@@ -0,0 +1,381 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="200dp"
|
||||
android:height="200dp"
|
||||
android:viewportWidth="200"
|
||||
android:viewportHeight="200">
|
||||
<path
|
||||
android:pathData="M26.88,169.43v-9.11a1.09,1.09 0,0 1,1.09 -1.09h0.4a1.09,1.09 0,0 1,1.09 1.09v0.43L36.22,160.74v2.32L29.54,163.05v6.37Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M21.56,170.84L34.86,170.84A2.29,2.29 0,0 1,37.15 173.13L37.15,197.48A2.29,2.29 0,0 1,34.86 199.76L21.56,199.76A2.29,2.29 0,0 1,19.27 197.48L19.27,173.13A2.29,2.29 0,0 1,21.56 170.84z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M24.51,167.17h7.83a0.49,0.49 0,0 1,0.47 0.49v3.18L24.01,170.84L24.01,167.66a0.49,0.49 0,0 1,0.5 -0.49Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M28.21,175.35h7.75v19.14h-7.75z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M32.81,170.77a18.36,18.36 0,0 1,-4.51 0.28,18.42 18.42,0 0,1 -4.51,-0.28 18.39,18.39 0,0 1,4.51 -0.28C30.8,170.49 32.81,170.59 32.81,170.77Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M20.37,189.87a126.67,126.67 0,0 1,0 -16.87,126.68 126.68,0 0,1 0,16.87Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M8.81,187.76h19.41v12.03h-19.41z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M27.98,192.19c0,0.13 -4.25,0.23 -9.48,0.23s-9.48,-0.11 -9.48,-0.23 4.22,-0.24 9.48,-0.24A94.07,94.07 0,0 1,27.98 192.19Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M15.44,194.3h12.54v3.1h-12.54z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M122.42,0h77.58v112.45h-77.58z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M118.53,0h77.58v112.45h-77.58z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M128.17,12.18h58.3v88.09h-58.3z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M186.48,100.28v-1.68c0,-1.11 0,-2.73 -0.02,-4.83 0,-4.22 -0.03,-10.38 -0.05,-18.15 0,-15.53 -0.06,-37.53 -0.09,-63.44l0.19,0.19h-58.3l0.21,-0.21c0,33.23 -0.03,63.87 -0.04,88.1l-0.17,-0.17 42.44,0.09 11.72,0.04h0.07l-11.69,0.04 -42.54,0.09h-0.17v-0.17c0,-24.22 -0.03,-54.86 -0.04,-88.1L127.98,11.88h58.71v0.2c-0.04,25.95 -0.08,48 -0.1,63.56 0,7.75 -0.04,13.89 -0.05,18.1v6.02A2.04,2.04 0,0 1,186.48 100.28Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M196.34,0.01a14.1,14.1 0,0 1,-1.36 2.01c-0.9,1.21 -2.18,2.85 -3.64,4.62s-2.81,3.34 -3.84,4.46a13.47,13.47 0,0 1,-1.71 1.74,14.43 14.43,0 0,1 1.48,-1.93l3.75,-4.54 3.75,-4.53a13.86,13.86 0,0 1,1.57 -1.82Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M186.77,95.89a72.08,72.08 0,0 0,10.17 12.7"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M196.94,108.59a11.57,11.57 0,0 1,-1.78 -1.61,57.03 57.03,0 0,1 -7.22,-9.01 11.31,11.31 0,0 1,-1.18 -2.09,16.58 16.58,0 0,1 1.43,1.92c0.85,1.2 2.06,2.85 3.46,4.6s2.74,3.28 3.73,4.39A17.19,17.19 0,0 1,196.94 108.59Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M121.05,108.27l10.16,-12.54"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M131.21,95.74a76.3,76.3 0,0 1,-4.92 6.4,80.08 80.08,0 0,1 -5.24,6.14 77.18,77.18 0,0 1,4.92 -6.4A80.06,80.06 0,0 1,131.21 95.74Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M121.08,0a69.25,69.25 0,0 1,4.93 5.9,72.73 72.73,0 0,1 4.6,6.16 73.35,73.35 0,0 1,-4.93 -5.9A70.67,70.67 0,0 1,121.08 0Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M128.38,25.45c4.04,-4.36 11.67,-6.33 17.15,-4.01a14.97,14.97 0,0 1,8.88 14.2c5.55,0.94 9.84,5.93 11.12,11.41s0.04,11.28 -2.17,16.46a31.66,31.66 0,0 0,-2.39 6.44,7.36 7.36,0 0,0 1.5,6.45c1.88,1.97 4.93,2.16 7.46,3.19 3.7,1.51 6.36,4.94 7.83,8.66s1.92,7.75 2.34,11.72L128.68,99.97Z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M131.34,87.26c-0.06,-0.05 11.25,-12.7 25.24,-28.26S181.97,30.88 182.03,30.92s-11.25,12.7 -25.25,28.26S131.39,87.31 131.34,87.26Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M176.64,29.63c0.06,0.05 -7.07,7.97 -15.9,17.71s-16.05,17.58 -16.1,17.56 7.07,-7.97 15.9,-17.71S176.59,29.58 176.64,29.63Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M173.38,51.19a2.15,2.15 0,0 1,-0.27 0.3l-0.81,0.82 -3,3.01c-2.53,2.55 -5.98,6.09 -9.7,10.12s-7.01,7.73 -9.37,10.44l-2.77,3.21q-0.47,0.54 -0.76,0.87a2.21,2.21 0,0 1,-0.28 0.29,2.58 2.58,0 0,1 0.24,-0.32c0.18,-0.23 0.42,-0.53 0.72,-0.9 0.63,-0.78 1.56,-1.9 2.71,-3.28 2.32,-2.74 5.58,-6.48 9.3,-10.5s7.21,-7.55 9.77,-10.07c1.28,-1.26 2.34,-2.27 3.06,-2.95l0.85,-0.79A2.08,2.08 0,0 1,173.38 51.19Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M46.94,23.87h-1.43v-2.91a1.59,1.59 0,0 0,-1.41 -1.71L33.16,19.25a1.58,1.58 0,0 0,-1.41 1.71v2.91L30.3,23.87v-2.91a3.07,3.07 0,0 1,2.85 -3.25h10.93a3.07,3.07 0,0 1,2.85 3.25Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M20.51,23.87L58.82,23.87A9.13,9.13 0,0 1,67.95 33L67.95,55.22A9.13,9.13 0,0 1,58.82 64.35L20.51,64.35A9.13,9.13 0,0 1,11.38 55.22L11.38,33A9.13,9.13 0,0 1,20.51 23.87z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M36.77,34.43h3.39v16.27h-3.39z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M31,44.23l0,-3.63l15.2,-0l0,3.63z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M52.41,43.66a2.05,2.05 0,0 1,-0.02 -0.22c0,-0.16 -0.02,-0.37 -0.04,-0.64a2.76,2.76 0,0 0,-0.03 -0.47c-0.03,-0.17 -0.06,-0.36 -0.08,-0.57a10.73,10.73 0,0 0,-0.27 -1.41,13.33 13.33,0 0,0 -1.41,-3.59 13.12,13.12 0,0 0,-3.2 -3.82,12.14 12.14,0 0,0 -5.29,-2.51 11.86,11.86 0,0 0,-6.59 0.59,12.96 12.96,0 0,0 -1.64,0.77 12.82,12.82 0,0 0,-1.54 1.06,14.15 14.15,0 0,0 -1.41,1.29 15.5,15.5 0,0 0,-1.23 1.56,13.39 13.39,0 0,0 -1.79,3.7 14.19,14.19 0,0 0,0 8.47,13.36 13.36,0 0,0 1.79,3.7 15.47,15.47 0,0 0,1.23 1.56,14.73 14.73,0 0,0 1.41,1.29 12.82,12.82 0,0 0,1.54 1.06,12.96 12.96,0 0,0 1.64,0.77 11.86,11.86 0,0 0,6.59 0.59,12.14 12.14,0 0,0 5.29,-2.51 13.12,13.12 0,0 0,3.2 -3.82,13.33 13.33,0 0,0 1.41,-3.59 10.73,10.73 0,0 0,0.27 -1.41c0.03,-0.21 0.07,-0.39 0.08,-0.57s0,-0.33 0.03,-0.47c0,-0.27 0.03,-0.47 0.04,-0.64a2.05,2.05 0,0 1,0.02 -0.22,1.57 1.57,0 0,1 0,0.22v1.12a5.58,5.58 0,0 1,-0.07 0.57,10.59 10.59,0 0,1 -0.25,1.41 13.66,13.66 0,0 1,-4.6 7.54,12.32 12.32,0 0,1 -5.37,2.58 12,12 0,0 1,-6.72 -0.58,12.76 12.76,0 0,1 -1.67,-0.76 12.96,12.96 0,0 1,-1.57 -1.08,14.23 14.23,0 0,1 -1.46,-1.32 16.14,16.14 0,0 1,-1.26 -1.59,13.52 13.52,0 0,1 -1.83,-3.78 14.47,14.47 0,0 1,0 -8.65,13.55 13.55,0 0,1 1.83,-3.75 15.6,15.6 0,0 1,1.24 -1.6,14.73 14.73,0 0,1 1.46,-1.32 12.79,12.79 0,0 1,1.59 -1.09,13.44 13.44,0 0,1 1.67,-0.78 12.04,12.04 0,0 1,6.7 -0.56,12.37 12.37,0 0,1 5.37,2.58 13.66,13.66 0,0 1,4.6 7.54,10.77 10.77,0 0,1 0.25,1.41c0,0.21 0.06,0.39 0.07,0.57v1.12a1.57,1.57 0,0 1,0.03 0.22Z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M0,58.6h83.97v7.97h-83.97z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M66.38,63.64h3.59v8.83h-3.59z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M9.59,63.7h3.59v8.83h-3.59z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M56.17,34.99L56.17,30.51h-2.94v4.47L50.27,34.99L50.27,60.58h8.65L58.91,34.99Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M65.63,34.99L65.63,30.51h-2.94v4.47L59.74,34.99L59.74,60.58h8.65L68.38,34.99Z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M3.54,42.56h15.53v16.63h-15.53z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M19,46.82a75.05,75.05 0,0 1,-7.66 0.2,74.92 74.92,0 0,1 -7.66,-0.2 75.91,75.91 0,0 1,7.66 -0.19C15.56,46.63 19,46.72 19,46.82Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M11.89,48.88h0.16a1.27,1.27 0,0 1,0.41 0.21,2.4 2.4,0 0,1 0.85,1.53 3.7,3.7 0,0 1,-0.4 2.62,2.34 2.34,0 0,1 -1.22,1 2.74,2.74 0,0 1,-1.61 0,2.96 2.96,0 0,1 -2.14,-2.24 2.77,2.77 0,0 1,0.73 -2.52,2.34 2.34,0 0,1 1.55,-0.67 1.01,1.01 0,0 1,0.6 0.1c0,0.04 -0.22,0 -0.59,0.05a2.38,2.38 0,0 0,-1.41 0.72,2.5 2.5,0 0,0 -0.58,2.23 2.62,2.62 0,0 0,1.93 1.93,2.43 2.43,0 0,0 1.41,0.03 1.98,1.98 0,0 0,1.05 -0.82,3.48 3.48,0 0,0 0.42,-2.34 2.41,2.41 0,0 0,-0.68 -1.46C12.1,48.98 11.89,48.92 11.89,48.88Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M196.63,199.88c0,0.07 -42.81,0.12 -95.6,0.12s-95.6,-0.05 -95.6,-0.12 42.79,-0.12 95.6,-0.12S196.63,199.82 196.63,199.88Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M133.28,61l6.28,-0.37a20.24,20.24 0,1 0,-4.34 -5.82h0Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M133.28,61s0.03,-0.13 0.11,-0.39 0.2,-0.67 0.36,-1.18c0.32,-1.06 0.8,-2.62 1.41,-4.64l0.03,-0.09 0.06,0.07h0l-0.09,0.06a20.28,20.28 0,0 1,-2.14 -9.71,19.87 19.87,0 0,1 0.35,-3.13 22.96,22.96 0,0 1,0.94 -3.24,20.19 20.19,0 0,1 10.17,-11.22 20.47,20.47 0,0 1,8.48 -2.05,20.21 20.21,0 0,1 9.06,1.96 19.9,19.9 0,0 1,7.5 6.12c0.24,0.34 0.5,0.67 0.74,1.01s0.43,0.71 0.64,1.07l0.32,0.53 0.27,0.56c0.18,0.38 0.36,0.75 0.53,1.12s0.29,0.77 0.43,1.15a10.15,10.15 0,0 1,0.38 1.16,18.28 18.28,0 0,1 0.52,2.37 20.31,20.31 0,0 1,-18.67 23.53,21.86 21.86,0 0,1 -3.38,-0.04 25.77,25.77 0,0 1,-3.1 -0.56,20.11 20.11,0 0,1 -8.67,-4.78h0.04l-4.69,0.24 -1.2,0.06h-0.39l0.42,-0.03 1.2,-0.08 4.66,-0.3h0a20.15,20.15 0,0 0,8.66 4.71,27.48 27.48,0 0,0 3.08,0.54 22.13,22.13 0,0 0,3.35 0.03,20.05 20.05,0 0,0 18.45,-23.3 17.67,17.67 0,0 0,-0.51 -2.34,11.35 11.35,0 0,0 -0.38,-1.15c-0.14,-0.38 -0.27,-0.76 -0.43,-1.13s-0.35,-0.74 -0.52,-1.11l-0.27,-0.55 -0.32,-0.53L170.04,34.68c-0.23,-0.34 -0.47,-0.67 -0.73,-1a20.09,20.09 0,0 0,-34.84 5.12,22.67 22.67,0 0,0 -0.94,3.21 19.57,19.57 0,0 0,-0.36 3.1A20.3,20.3 0,0 0,135.24 54.77l0.17,0.34 -0.25,-0.29h0l0.09,-0.02 -1.46,4.58 -0.38,1.19Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M143.74,47.15l2.62,-2.62 5.05,4.49 9.91,-9.54 2.43,2.62 -12.71,11.96Z"
|
||||
android:fillColor="#005f9a"/>
|
||||
<path
|
||||
android:pathData="M128.03,123.5s3.31,9.73 21.22,29.33c6.6,7.23 12.19,7.7 16.56,4.41 7.33,-5.53 -0.66,-17.37 -0.66,-17.37L141.25,107.46a11.5,11.5 0,0 0,-7.69 -4.86Z"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M71.55,121.73 L64.24,105.19s-10.56,3.31 -12.85,16.84c-1.77,10.47 0.53,46.16 0.53,46.16l12.84,11.19c5.13,-12.19 5.77,-35.44 5.77,-35.44Z"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M139.65,199.88l-10.01,-30.06 5.73,-36.5 -0.62,-32.8 -21.9,-4.18 -26.07,0.9 -22.53,7.7 4.56,26.08L71.16,170.4 65.68,199.88Z"
|
||||
android:fillColor="#005f9a"/>
|
||||
<path
|
||||
android:pathData="M50.23,128.9l20.41,10.31 -1.78,-33.48s-12.38,3.95 -15.44,12.1S50.23,128.9 50.23,128.9Z"
|
||||
android:fillColor="#005f9a"/>
|
||||
<path
|
||||
android:pathData="M134.3,134.91l3.45,5.3 7.09,-9.87 -5.73,-24.7a8.47,8.47 0,0 0,-6.75 -2.73Z"
|
||||
android:fillColor="#005f9a"/>
|
||||
<path
|
||||
android:pathData="M136.49,111.56a1.71,1.71 0,0 1,0.03 0.35c0,0.25 0,0.58 0.03,1 0,0.86 0.04,2.11 0.03,3.66 0,3.09 -0.14,7.37 -0.47,12.07s-0.86,8.95 -1.3,12.01c-0.22,1.53 -0.42,2.77 -0.57,3.62 -0.08,0.41 -0.13,0.74 -0.18,0.98a1.66,1.66 0,0 1,-0.08 0.34,2.62 2.62,0 0,1 0.03,-0.33c0.03,-0.25 0.08,-0.58 0.13,-0.99 0.12,-0.88 0.29,-2.11 0.47,-3.63 0.4,-3.06 0.88,-7.31 1.23,-12.01s0.5,-8.97 0.56,-12.05c0,-1.53 0.04,-2.77 0.05,-3.66v-1A2.04,2.04 0,0 1,136.49 111.56Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M65.25,126.15c0.07,-0.02 1.15,2.81 2.42,6.38s2.25,6.44 2.19,6.46 -1.15,-2.84 -2.42,-6.38S65.18,126.17 65.25,126.15Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M116.74,173.55c0,0.07 -6.71,0.62 -15,1.24s-15,1.07 -15,1 6.71,-0.63 15,-1.25S116.73,173.48 116.74,173.55Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M111.98,157.04a4.97,4.97 0,0 1,-0.66 0.5c-0.43,0.31 -1.07,0.75 -1.88,1.27 -1.58,1.05 -3.81,2.46 -6.33,3.91s-4.85,2.68 -6.56,3.52c-0.85,0.42 -1.55,0.75 -2.03,0.98a6.37,6.37 0,0 1,-0.76 0.32,4.68 4.68,0 0,1 0.72,-0.41l2,-1.04c1.68,-0.88 4,-2.13 6.51,-3.58s4.75,-2.81 6.36,-3.85l1.9,-1.2A5.23,5.23 0,0 1,111.98 157.04Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M126.88,137.5s-0.04,-0.09 -0.11,-0.26l-0.3,-0.79c-0.26,-0.7 -0.64,-1.72 -1.13,-3.02l-1.77,-4.79c-0.35,-0.94 -0.71,-1.93 -1.11,-2.99a22.49,22.49 0,0 0,-1.38 -3.28,6.86 6.86,0 0,0 -1.12,-1.53 3.66,3.66 0,0 0,-1.66 -1,3.21 3.21,0 0,0 -0.99,-0.12 3.49,3.49 0,0 0,-1 0.22,4.6 4.6,0 0,0 -1.73,1.2 5.74,5.74 0,0 0,-1.15 1.88,8.04 8.04,0 0,0 -0.42,2.24 31.47,31.47 0,0 0,0.34 4.8,11.53 11.53,0 0,1 -0.38,5.08 5.19,5.19 0,0 1,-1.48 2.2,5.32 5.32,0 0,1 -2.45,1.16 6.42,6.42 0,0 1,-5.27 -1.28,5.69 5.69,0 0,1 -1.63,-2.34 12.08,12.08 0,0 1,-0.69 -2.79,22.84 22.84,0 0,0 -1.03,-5.52 6.46,6.46 0,0 0,-1.44 -2.28,3.88 3.88,0 0,0 -1.08,-0.76 4.06,4.06 0,0 0,-0.61 -0.24,6.17 6.17,0 0,0 -0.64,-0.12 4.09,4.09 0,0 0,-2.48 0.62,6.49 6.49,0 0,0 -1.84,1.79 7.69,7.69 0,0 0,-1.09 2.27,9.94 9.94,0 0,0 -0.34,2.46c-0.05,1.65 0.16,3.25 0.26,4.82a22.83,22.83 0,0 1,0.06 2.34,8.3 8.3,0 0,1 -0.33,2.24 6.05,6.05 0,0 1,-2.45 3.46,3.1 3.1,0 0,1 -1.98,0.43 3.46,3.46 0,0 1,-1.78 -0.78,9.84 9.84,0 0,1 -2.17,-2.85c-0.56,-0.98 -1.04,-1.93 -1.47,-2.81a35.75,35.75 0,0 1,-1.81 -4.78c-0.41,-1.35 -0.64,-2.41 -0.79,-3.13 -0.08,-0.36 -0.12,-0.64 -0.15,-0.82s-0.04,-0.28 -0.04,-0.28 0.03,0.09 0.07,0.28 0.09,0.47 0.17,0.82c0.16,0.72 0.41,1.78 0.83,3.12a36.78,36.78 0,0 0,1.85 4.75c0.42,0.9 0.91,1.84 1.48,2.81a9.76,9.76 0,0 0,2.15 2.79,3.28 3.28,0 0,0 1.7,0.74 2.94,2.94 0,0 0,1.88 -0.41,5.86 5.86,0 0,0 2.34,-3.37 8.02,8.02 0,0 0,0.32 -2.19,22.5 22.5,0 0,0 -0.07,-2.31c-0.11,-1.56 -0.31,-3.17 -0.27,-4.84a10.26,10.26 0,0 1,0.34 -2.51,7.89 7.89,0 0,1 1.12,-2.34 6.84,6.84 0,0 1,1.9 -1.88,4.36 4.36,0 0,1 2.63,-0.66 5.85,5.85 0,0 1,0.68 0.13,4.32 4.32,0 0,1 0.66,0.25 4.05,4.05 0,0 1,1.14 0.81,6.7 6.7,0 0,1 1.5,2.37 23.04,23.04 0,0 1,1.04 5.58,12.18 12.18,0 0,0 0.67,2.73 5.53,5.53 0,0 0,1.56 2.23,6.19 6.19,0 0,0 5.07,1.24 5.16,5.16 0,0 0,2.34 -1.11,5.04 5.04,0 0,0 1.41,-2.1 11.36,11.36 0,0 0,0.38 -4.98,31 31,0 0,1 -0.33,-4.84 8.24,8.24 0,0 1,0.44 -2.3,5.91 5.91,0 0,1 1.19,-1.93 4.76,4.76 0,0 1,1.81 -1.24,3.28 3.28,0 0,1 2.11,-0.1 3.82,3.82 0,0 1,1.73 1.06,7.12 7.12,0 0,1 1.14,1.57 22.81,22.81 0,0 1,1.38 3.31c0.38,1.06 0.75,2.06 1.09,2.99l1.73,4.8c0.47,1.31 0.83,2.34 1.08,3.04 0.12,0.34 0.21,0.6 0.28,0.79Z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M75.59,28.56c-5.34,-0.19 -10.68,2.53 -13.12,6.68a11.25,11.25 0,0 0,1.5 13.17,4.29 4.29,0 0,0 -1.96,6.48 5.78,5.78 0,0 0,7.65 0.62c-1.25,2.34 0.13,5.31 2.65,6.63a9.98,9.98 0,0 0,8.44 -0.05,15.04 15.04,0 0,0 6.15,-5.41l1.12,-20.52C86,31.84 80.93,28.74 75.59,28.56Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M73.68,59.2a7.18,7.18 0,0 1,0.33 -9.37c-1.43,-1.63 -1.03,-4.22 0.3,-5.94a14.48,14.48 0,0 1,5.32 -3.7c0.94,-4.94 6.43,-8.59 11.48,-7.58 2.47,-3.83 8,-4.61 12.49,-3.49a12.14,12.14 0,0 0,3.33 0.59,18.34 18.34,0 0,0 2.45,-0.42c4.5,-0.75 9.11,2.21 11.02,6.26a8.05,8.05 0,0 0,1.03 1.88,11.24 11.24,0 0,0 2.3,1.66 7.03,7.03 0,0 1,2.96 5.12c0.14,1.71 -0.36,3.55 0.44,5.09a24.52,24.52 0,0 1,1.41 2.17c0.94,2.34 -1.67,4.83 -1.08,7.25 0.12,0.5 0.37,0.94 0.52,1.44a4.26,4.26 0,0 1,-0.16 3.05,6.12 6.12,0 0,0 -0.9,2.22 6.8,6.8 0,0 0,0.43 1.77c0.36,1.45 -2.67,7.19 -3.93,8.03l-38.6,1.68a7.13,7.13 0,0 1,-5.8 -5.87,2.51 2.51,0 0,0 -0.41,-1.37 3.07,3.07 0,0 0,-1.08 -0.63c-2.54,-1.22 -2.95,-4.54 -2.79,-7.29a3.4,3.4 0,0 0,-0.07 -1.15A4.22,4.22 0,0 0,73.68 59.2Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M84.74,58.87a20.11,20.11 0,0 1,10.33 -17.97,25.94 25.94,0 0,1 9.78,-2.67 15.99,15.99 0,0 1,9.18 1.57c2.15,0.42 10.2,7.12 10.88,14.67 0.75,8.39 1.34,18.66 0.47,24.95 -1.74,12.65 -12.73,14.53 -12.73,14.53l-0.07,8.21h0c-6.14,9.21 -18.56,9.73 -25.8,1.35v-0.03Z"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M107,76.66a2.45,2.45 0,0 1,0.75 -1.59,2.63 2.63,0 0,1 3.12,-0.42c1,0.56 1.21,1.64 1.13,2.87h0c-0.47,0.75 -0.81,1.5 -1.71,1.64 -0.14,0 -0.28,0.04 -0.42,0.05a2.89,2.89 0,0 1,-1.96 -0.59A2.44,2.44 0,0 1,107 76.66Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M120.46,64.25a1.63,1.63 0,0 1,-1.56 1.67,1.57 1.57,0 0,1 -1.74,-1.41 1.63,1.63 0,0 1,1.56 -1.67,1.57 1.57,0 0,1 1.74,1.41Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M122.07,59.36c-0.2,0.22 -1.48,-0.66 -3.26,-0.61s-3.07,0.94 -3.28,0.74c-0.1,-0.09 0.1,-0.47 0.66,-0.9a4.57,4.57 0,0 1,2.61 -0.85,4.45 4.45,0 0,1 2.61,0.75C121.98,58.89 122.17,59.27 122.07,59.36Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M111.98,72.34a12.33,12.33 0,0 1,2.88 -0.58c0.47,-0.06 0.89,-0.16 0.94,-0.47a2.67,2.67 0,0 0,-0.34 -1.31l-1.43,-3.35c-1.99,-4.77 -3.44,-8.7 -3.24,-8.77s1.97,3.75 3.96,8.5c0.47,1.18 0.94,2.3 1.37,3.37a2.5,2.5 0,0 1,0.28 1.74,1.13 1.13,0 0,1 -0.73,0.67 3.19,3.19 0,0 1,-0.77 0.12A11.45,11.45 0,0 1,111.98 72.34Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M112.7,91.94a33.74,33.74 0,0 1,-17.47 -4.09s4.41,8.94 17.31,7.46Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M120.73,52.46c-0.29,0.43 -1.66,0.18 -3.25,0.35s-2.9,0.61 -3.28,0.23c-0.16,-0.18 0,-0.6 0.54,-1.04a5.16,5.16 0,0 1,5.25 -0.47C120.62,51.84 120.85,52.23 120.73,52.46Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M101.5,65.01a1.64,1.64 0,0 0,1.7 1.53,1.57 1.57,0 0,0 1.61,-1.56 1.64,1.64 0,0 0,-1.7 -1.53,1.57 1.57,0 0,0 -1.62,1.56Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M97.7,60.63c0.22,0.2 1.41,-0.78 3.19,-0.89s3.14,0.68 3.32,0.47c0.09,-0.1 -0.14,-0.47 -0.74,-0.83a4.64,4.64 0,0 0,-2.68 -0.63,4.45 4.45,0 0,0 -2.53,0.97C97.75,60.15 97.59,60.54 97.7,60.63Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M97.45,53.81c0.38,0.38 1.72,-0.12 3.37,-0.24s3.07,0.08 3.37,-0.35c0.13,-0.21 -0.12,-0.59 -0.75,-0.94a5.23,5.23 0,0 0,-2.78 -0.47,5.09 5.09,0 0,0 -2.64,0.94C97.45,53.21 97.29,53.63 97.45,53.81Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M87.14,69.48c-0.02,-0.94 -1.19,-3.13 -2.15,-3.25 -2.55,-0.33 -7.11,0 -7,6.27 0.16,8.6 8.97,6.67 8.98,6.42S87.21,72.73 87.14,69.48Z"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M84.47,75.78c-0.04,-0.03 -0.15,0.11 -0.41,0.23a1.58,1.58 0,0 1,-1.15 0.04c-0.94,-0.32 -1.75,-1.74 -1.82,-3.28a4.84,4.84 0,0 1,0.39 -2.15,1.74 1.74,0 0,1 1.13,-1.17 0.78,0.78 0,0 1,0.94 0.39c0.12,0.23 0.07,0.41 0.12,0.42s0.19,-0.14 0.11,-0.5a0.94,0.94 0,0 0,-0.36 -0.53,1.2 1.2,0 0,0 -0.85,-0.21 2.15,2.15 0,0 0,-1.58 1.36,4.95 4.95,0 0,0 -0.47,2.4c0.09,1.73 1.03,3.34 2.31,3.67a1.69,1.69 0,0 0,1.41 -0.25C84.46,75.99 84.5,75.79 84.47,75.78Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M126.87,54.53c-1.81,-1.04 -2.98,-2.49 -2.92,-4.54 -1.17,0.37 -2.4,-1.08 -3.12,-2.06s-1.57,-1.46 -1.55,-2.66a1.3,1.3 0,0 0,-0.11 -0.7,1.52 1.52,0 0,0 -0.98,-0.52 5.83,5.83 0,0 1,-3.99 -3.9,12.73 12.73,0 0,1 -6.01,1.12 4.84,4.84 0,0 1,-8.08 -0.14,4.27 4.27,0 0,1 -2.81,2.13 13.01,13.01 0,0 1,-3.65 0.29,4.91 4.91,0 0,1 -3.18,5.65c-0.31,0.1 -0.67,0.21 -0.81,0.5s0.03,0.65 0.16,0.94a3.87,3.87 0,0 1,-2.54 5.01,2.85 2.85,0 0,1 -0.15,4.54c-0.32,0.2 -0.73,0.43 -0.67,0.79a0.79,0.79 0,0 0,0.2 0.36,5.57 5.57,0 0,1 1.46,2.81 2.08,2.08 0,0 1,-1.69 2.34A2.71,2.71 0,0 1,87.63 68.34c0.03,0.77 -0.73,1.52 -1.44,1.27 -0.31,-0.11 -4.72,-0.84 -4.92,-1.09 -2.58,-3.24 0.47,-6.96 0.6,-11.06a26.2,26.2 0,0 1,3.51 -11.72,19.29 19.29,0 0,1 3.02,-4.22 26.51,26.51 0,0 1,4.75 -3.59,24.48 24.48,0 0,1 6.98,-3.46c4.72,-1.21 9.7,0.35 14.19,2.24a20.77,20.77 0,0 1,4.86 2.63,18.38 18.38,0 0,1 4.17,5.04 22.52,22.52 0,0 1,3.41 8.72"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M128.52,51.48a3.28,3.28 0,0 0,-0.5 -0.91c-0.19,-0.28 -0.47,-0.61 -0.73,-1.03a3.95,3.95 0,0 1,-0.53 -1.59,11.8 11.8,0 0,1 0,-2.13 9.22,9.22 0,0 0,-0.14 -2.55,7.09 7.09,0 0,0 -2.34,-3.87 10.95,10.95 0,0 0,-1.41 -0.98,5.4 5.4,0 0,1 -1.37,-1.09 6.97,6.97 0,0 1,-0.88 -1.59,11.2 11.2,0 0,0 -2.23,-3.28 11.55,11.55 0,0 0,-3.48 -2.47,10.86 10.86,0 0,0 -2.14,-0.72 10.06,10.06 0,0 0,-2.32 -0.2,11.31 11.31,0 0,0 -1.19,0.13c-0.39,0.07 -0.78,0.16 -1.17,0.23a5.76,5.76 0,0 1,-2.34 0.07c-0.79,-0.13 -1.58,-0.39 -2.39,-0.57a15.74,15.74 0,0 0,-5.09 -0.32,13.56 13.56,0 0,0 -2.57,0.53 8.67,8.67 0,0 0,-4.35 2.97l-0.32,0.43 0.14,-0.06a10.04,10.04 0,0 0,-7.58 1.7,9.56 9.56,0 0,0 -4.09,5.99l0.07,-0.09a28.86,28.86 0,0 0,-3.05 1.67,9.25 9.25,0 0,0 -2.46,2.26 5.86,5.86 0,0 0,-1.06 3,4 4,0 0,0 0.94,2.88v-0.14a7.03,7.03 0,0 0,-1.91 4.47,7.16 7.16,0 0,0 1.03,4.25 7.32,7.32 0,0 0,0.61 0.83,6.86 6.86,0 0,1 0.63,0.75 1.82,1.82 0,0 1,0.34 0.83,5.16 5.16,0 0,1 0,0.89 13.7,13.7 0,0 0,0.18 3.28,6.78 6.78,0 0,0 0.94,2.46 4.34,4.34 0,0 0,1.41 1.36c0.47,0.28 0.87,0.38 1.09,0.53a1.54,1.54 0,0 1,0.33 0.25,1.03 1.03,0 0,0 -0.31,-0.28c-0.22,-0.16 -0.63,-0.28 -1.08,-0.56a4.27,4.27 0,0 1,-1.36 -1.35,6.7 6.7,0 0,1 -0.9,-2.43 14,14 0,0 1,-0.16 -3.23,4.99 4.99,0 0,0 0,-0.94 1.94,1.94 0,0 0,-0.36 -0.91,9.84 9.84,0 0,0 -0.63,-0.77 6.43,6.43 0,0 1,-0.59 -0.81,6.95 6.95,0 0,1 -0.98,-4.14 6.81,6.81 0,0 1,1.88 -4.33l0.07,-0.07 -0.06,-0.08a3.75,3.75 0,0 1,-0.86 -2.73,5.62 5.62,0 0,1 1.03,-2.87 8.95,8.95 0,0 1,2.4 -2.2,28.15 28.15,0 0,1 3.02,-1.65h0.06v-0.06a9.32,9.32 0,0 1,3.99 -5.83,9.81 9.81,0 0,1 7.34,-1.64h0.08l0.05,-0.08c0.1,-0.14 0.21,-0.28 0.3,-0.42a8.44,8.44 0,0 1,4.22 -2.88,13.34 13.34,0 0,1 2.52,-0.52 15.36,15.36 0,0 1,5 0.31c0.81,0.17 1.59,0.43 2.41,0.56a6.06,6.06 0,0 0,1.24 0.09,7.36 7.36,0 0,0 1.21,-0.16c0.39,-0.08 0.78,-0.17 1.16,-0.24a7.35,7.35 0,0 1,1.15 -0.12,9.3 9.3,0 0,1 2.26,0.19 10.47,10.47 0,0 1,2.11 0.69,11.45 11.45,0 0,1 3.42,2.42 10.91,10.91 0,0 1,2.2 3.2,7.17 7.17,0 0,0 0.91,1.64A5.57,5.57 0,0 0,122.73 38.58a11.16,11.16 0,0 1,1.41 0.94,7.03 7.03,0 0,1 1.09,1.15 6.91,6.91 0,0 1,1.22 2.62,9.13 9.13,0 0,1 0.16,2.51 11.89,11.89 0,0 0,0.04 2.15,3.95 3.95,0 0,0 0.57,1.62c0.27,0.43 0.55,0.75 0.75,1.02a5.46,5.46 0,0 1,0.42 0.65,2.49 2.49,0 0,0 0.13,0.25Z"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M95.19,30.62s0.23,-0.14 0.65,-0.35a5.98,5.98 0,0 1,1.91 -0.6,5.62 5.62,0 0,1 5.62,2.59 4.64,4.64 0,0 1,0.47 0.94,1.06 1.06,0 0,1 -0.04,0.9l-0.21,0.3 0.35,-0.11a3.75,3.75 0,0 1,2.73 0.24,3.49 3.49,0 0,1 1.54,1.55 3.67,3.67 0,0 1,0.38 1.41v0.53a0.43,0.43 0,0 1,0.04 -0.14,3.19 3.19,0 0,0 0.03,-0.4 3.46,3.46 0,0 0,-0.32 -1.48,3.56 3.56,0 0,0 -1.58,-1.67 3.91,3.91 0,0 0,-2.91 -0.29l0.15,0.19a1.28,1.28 0,0 0,0.08 -1.12,5 5,0 0,0 -0.49,-1.02 5.85,5.85 0,0 0,-2.84 -2.34,5.75 5.75,0 0,0 -3.02,-0.3 5.62,5.62 0,0 0,-1.93 0.69,4.16 4.16,0 0,0 -0.47,0.31A0.73,0.73 0,0 0,95.19 30.62Z"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M81.17,40.87a1.36,1.36 0,0 0,0.32 0.3,5.52 5.52,0 0,0 1.01,0.65 4.38,4.38 0,0 0,1.77 0.47,3.22 3.22,0 0,0 2.17,-0.7l-0.2,-0.03 0.27,0.35c0.1,0.11 0.21,0.22 0.31,0.33a5.36,5.36 0,0 0,2.23 1.27,5.48 5.48,0 0,0 2.1,0.2 4.95,4.95 0,0 0,1.38 -0.34,1.83 1.83,0 0,0 0.47,-0.25 7.97,7.97 0,0 1,-1.85 0.41,5.72 5.72,0 0,1 -2.02,-0.24 5.33,5.33 0,0 1,-2.12 -1.23c-0.1,-0.11 -0.2,-0.21 -0.3,-0.31l-0.25,-0.32 -0.09,-0.12 -0.1,0.09a3.01,3.01 0,0 1,-1.99 0.67,4.35 4.35,0 0,1 -1.7,-0.39C81.67,41.24 81.2,40.83 81.17,40.87Z"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M76.74,48.97a0.74,0.74 0,0 0,0.02 0.16,1.41 1.41,0 0,0 0.21,0.41 2.34,2.34 0,0 0,1.44 0.88,4.59 4.59,0 0,0 2.51,-0.33 14.3,14.3 0,0 0,1.37 -0.57,2.34 2.34,0 0,0 1.19,-1.12c0,-0.05 0.04,-0.09 0.05,-0.14l-0.21,0.07a10.31,10.31 0,0 0,2.66 1.46,4.66 4.66,0 0,0 2.48,0.18 3.28,3.28 0,0 0,1.5 -0.72,1.84 1.84,0 0,0 0.31,-0.33c0.06,-0.08 0.09,-0.13 0.08,-0.13s-0.16,0.15 -0.47,0.38a3.47,3.47 0,0 1,-1.48 0.62,4.57 4.57,0 0,1 -2.34,-0.23 10.52,10.52 0,0 1,-2.58 -1.45l-0.14,-0.1 -0.06,0.17 -0.04,0.12a2.16,2.16 0,0 1,-1.06 0.98,14.19 14.19,0 0,1 -1.34,0.57 4.47,4.47 0,0 1,-2.38 0.38,2.34 2.34,0 0,1 -1.41,-0.76A3.46,3.46 0,0 1,76.74 48.97Z"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M106.67,75.05c0.21,-0.14 1.09,1.28 2.95,1.57s3.32,-0.77 3.45,-0.58c0.08,0.08 -0.18,0.47 -0.82,0.88a4.32,4.32 0,0 1,-2.84 0.57,3.69 3.69,0 0,1 -2.38,-1.36C106.62,75.55 106.57,75.1 106.67,75.05Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M122.16,73.68a0.94,0.94 0,1 1,-0.94 -0.91A0.94,0.94 0,0 1,122.16 73.68Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M121.82,73.67a0.58,0.58 0,1 1,-0.58 -0.57A0.58,0.58 0,0 1,121.82 73.67Z"
|
||||
android:fillColor="#ff725e"/>
|
||||
<path
|
||||
android:pathData="M97.14,70.43a0.94,0.94 0,1 1,-0.94 -0.91A0.94,0.94 0,0 1,97.14 70.43Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M96.79,70.42a0.58,0.58 0,1 1,-0.58 -0.56,0.57 0.57,0 0,1 0.58,0.56Z"
|
||||
android:fillColor="#ff725e"/>
|
||||
<path
|
||||
android:pathData="M119.59,76.1a0.57,0.57 0,1 1,-0.57 -0.55A0.57,0.57 0,0 1,119.59 76.1Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M119.37,76.1a0.35,0.35 0,1 1,-0.35 -0.34,0.34 0.34,0 0,1 0.35,0.34Z"
|
||||
android:fillColor="#ff725e"/>
|
||||
<path
|
||||
android:pathData="M111.98,54.51a0.57,0.57 0,1 1,-0.57 -0.55,0.56 0.56,0 0,1 0.57,0.55Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M111.78,54.51a0.35,0.35 0,1 1,-0.35 -0.34A0.35,0.35 0,0 1,111.78 54.51Z"
|
||||
android:fillColor="#ff725e"/>
|
||||
<path
|
||||
android:pathData="M65.52,112.23L65.98,88.49A5.48,5.48 46.13,0 1,71.57 83.12L80.28,83.29A5.48,5.48 46.13,0 1,85.65 88.88L85.18,112.62A5.48,5.48 46.13,0 1,79.59 117.99L70.89,117.82A5.48,5.48 46.13,0 1,65.52 112.23z"
|
||||
android:fillColor="#fff"/>
|
||||
<path
|
||||
android:pathData="M82.5,118.05a3.21,3.21 0,0 0,1.03 -0.22,2.62 2.62,0 0,0 1,-0.76 2.56,2.56 0,0 0,0.55 -1.6c0.04,-2.65 0.1,-6.47 0.18,-11.18s0.19,-10.34 0.3,-16.58L85.56,86.53a4.5,4.5 0,0 0,-0.05 -1.16,2.46 2.46,0 0,0 -1.43,-1.71 2.81,2.81 0,0 0,-1.16 -0.2l-1.25,-0.03 -2.52,-0.05 -10.51,-0.2a2.45,2.45 0,0 0,-2.14 1.18,2.4 2.4,0 0,0 -0.36,1.2l-0.03,1.32c-0.04,1.75 -0.07,3.48 -0.1,5.18 -0.07,3.4 -0.14,6.67 -0.2,9.79s-0.13,6.09 -0.19,8.86q-0.04,2.08 -0.08,4.02a4.75,4.75 0,0 0,0.03 0.94,2.48 2.48,0 0,0 0.33,0.83 2.53,2.53 0,0 0,1.35 1.06,2.64 2.64,0 0,0 0.83,0.12h0.85l1.64,0.04 3,0.07 4.81,0.11 3.04,0.08 0.79,0.03a2.32,2.32 0,0 1,0.27 0h-1.06l-3.04,-0.04 -4.81,-0.07 -3,-0.05 -1.64,-0.03h-0.85a2.92,2.92 0,0 1,-0.89 -0.13,2.71 2.71,0 0,1 -1.45,-1.13 2.57,2.57 0,0 1,-0.35 -0.9,4.54 4.54,0 0,1 -0.04,-0.98c0.02,-1.28 0.05,-2.62 0.07,-4.01 0.05,-2.78 0.11,-5.74 0.16,-8.86s0.12,-6.4 0.19,-9.79c0.03,-1.7 0.07,-3.43 0.1,-5.16l0.03,-1.32a2.68,2.68 0,0 1,0.39 -1.32,2.7 2.7,0 0,1 2.34,-1.3l10.51,0.21 2.52,0.05h1.25a3.1,3.1 0,0 1,1.25 0.22,2.69 2.69,0 0,1 1.57,1.88 5.08,5.08 0,0 1,0.06 1.21c0,0.39 0,0.79 -0.02,1.18 -0.14,6.24 -0.25,11.86 -0.36,16.58s-0.2,8.53 -0.26,11.18a2.65,2.65 0,0 1,-0.59 1.65,2.53 2.53,0 0,1 -1.81,0.94Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M68.91,88.4a2.69,2.69 0,1 0,0.83 -1.91A2.7,2.7 0,0 0,68.91 88.4Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M68.91,88.4v-0.17a2.11,2.11 0,0 1,0.07 -0.49,2.65 2.65,0 0,1 1,-1.52 2.8,2.8 0,1 1,2.54 4.9,2.78 2.78,0 0,1 -2.63,-0.47 2.69,2.69 0,0 1,-0.94 -1.56,1.92 1.92,0 0,1 -0.04,-0.5v-0.17a2.62,2.62 0,0 0,0.12 0.65,2.68 2.68,0 0,0 0.96,1.45 2.59,2.59 0,1 0,0.08 -4.15,2.72 2.72,0 0,0 -1.02,1.41C68.94,88.16 68.94,88.41 68.91,88.4Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M73.39,88.48A1.78,1.78 0,1 1,71.65 86.67,1.78 1.78,0 0,1 73.39,88.48Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M68.75,96.35a2.7,2.7 0,1 0,2.75 -2.64A2.7,2.7 0,0 0,68.75 96.35Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M68.75,96.35a0.68,0.68 0,0 1,0 -0.17,2.05 2.05,0 0,1 0.06,-0.47 2.7,2.7 0,0 1,1.01 -1.52,2.8 2.8,0 0,1 3.88,3.95 2.76,2.76 0,0 1,-1.33 0.94,2.78 2.78,0 0,1 -2.63,-0.47 2.65,2.65 0,0 1,-0.94 -1.56,2.21 2.21,0 0,1 -0.05,-0.5 0.65,0.65 0,0 1,0 -0.17c0.03,0 0,0.24 0.12,0.65a2.71,2.71 0,0 0,0.96 1.45,2.59 2.59,0 1,0 0.08,-4.15 2.67,2.67 0,0 0,-1.02 1.41C68.77,96.11 68.78,96.35 68.75,96.35Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M73.23,96.43a1.78,1.78 0,1 1,-1.75 -1.81,1.78 1.78,0 0,1 1.75,1.81Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M77.18,96.51a2.69,2.69 0,1 0,0.83 -1.89A2.7,2.7 0,0 0,77.18 96.51Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M77.18,96.51v-0.17a2.11,2.11 0,0 1,0.07 -0.5,2.69 2.69,0 0,1 1.01,-1.52 2.77,2.77 0,0 1,2.65 -0.38,2.8 2.8,0 1,1 -2.74,4.8 2.69,2.69 0,0 1,-0.94 -1.56,2.43 2.43,0 0,1 -0.04,-0.5v-0.17a2.61,2.61 0,0 0,0.12 0.65,2.66 2.66,0 0,0 0.94,1.44 2.59,2.59 0,1 0,0.08 -4.15,2.68 2.68,0 0,0 -1.01,1.41C77.2,96.25 77.2,96.51 77.18,96.51Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M81.66,96.59a1.78,1.78 0,1 1,-0.5 -1.27A1.78,1.78 0,0 1,81.66 96.59Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M68.59,104.29a2.69,2.69 0,1 0,0.83 -1.89A2.7,2.7 0,0 0,68.59 104.29Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M68.59,104.29a0.47,0.47 0,0 1,0 -0.18,2.11 2.11,0 0,1 0.07,-0.49 2.66,2.66 0,0 1,1 -1.52,2.8 2.8,0 1,1 2.54,4.9 2.78,2.78 0,0 1,-2.63 -0.47,2.69 2.69,0 0,1 -0.94,-1.56 1.92,1.92 0,0 1,-0.04 -0.5v-0.17a2.58,2.58 0,0 0,0.12 0.65,2.68 2.68,0 0,0 0.96,1.45 2.59,2.59 0,1 0,0.08 -4.15,2.72 2.72,0 0,0 -1.02,1.41C68.61,104.06 68.61,104.29 68.59,104.29Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M73.08,104.38a1.78,1.78 0,1 1,-1.75 -1.81A1.78,1.78 0,0 1,73.08 104.38Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M77.02,104.46a2.69,2.69 0,1 0,0.83 -1.89A2.7,2.7 0,0 0,77.02 104.46Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M77.02,104.46v-0.17a2.12,2.12 0,0 1,0.07 -0.5,2.68 2.68,0 0,1 1,-1.52 2.8,2.8 0,1 1,-0.08 4.42,2.69 2.69,0 0,1 -0.94,-1.56 1.9,1.9 0,0 1,-0.04 -0.5v-0.17a2.61,2.61 0,0 0,0.12 0.65,2.68 2.68,0 0,0 0.94,1.45 2.59,2.59 0,1 0,0.08 -4.15,2.71 2.71,0 0,0 -1.02,1.41C77.04,104.22 77.04,104.46 77.02,104.46Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M81.52,104.54a1.78,1.78 0,1 1,-0.5 -1.27,1.78 1.78,0 0,1 0.5,1.27Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M68.43,112.25a2.7,2.7 0,1 0,2.75 -2.65A2.7,2.7 0,0 0,68.43 112.25Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M68.43,112.24a0.78,0.78 0,0 1,0 -0.18,2.05 2.05,0 0,1 0.06,-0.47 2.7,2.7 0,0 1,1.01 -1.52,2.8 2.8,0 0,1 3.88,3.95 2.76,2.76 0,0 1,-1.33 0.94,2.78 2.78,0 0,1 -2.63,-0.47 2.65,2.65 0,0 1,-0.94 -1.56,2.21 2.21,0 0,1 -0.05,-0.5 0.55,0.55 0,0 1,0 -0.17c0.03,0 0,0.24 0.12,0.65a2.74,2.74 0,0 0,0.96 1.45,2.59 2.59,0 1,0 0.08,-4.15 2.67,2.67 0,0 0,-1.02 1.41C68.45,112 68.45,112.24 68.43,112.24Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M72.91,112.33a1.78,1.78 0,1 1,-1.74 -1.81,1.78 1.78,0 0,1 1.74,1.81Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M76.83,112.4a2.7,2.7 0,1 0,2.75 -2.64A2.7,2.7 0,0 0,76.83 112.4Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M76.83,112.4v-0.17a1.88,1.88 0,0 1,0.06 -0.5,2.69 2.69,0 0,1 1.01,-1.52 2.79,2.79 0,1 1,-0.09 4.42,2.65 2.65,0 0,1 -0.94,-1.56 2.19,2.19 0,0 1,-0.05 -0.5v-0.17a2.66,2.66 0,0 0,0.12 0.65,2.7 2.7,0 0,0 0.96,1.45 2.59,2.59 0,1 0,0.08 -4.15,2.68 2.68,0 0,0 -1.01,1.41C76.88,112.17 76.88,112.4 76.83,112.4Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M81.33,112.5a1.78,1.78 0,1 1,-0.5 -1.27A1.78,1.78 0,0 1,81.33 112.5Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M73.62,108.33l-2.53,-5.16 -4.26,-3.88a10.76,10.76 0,0 0,-2.44 -1.88c-0.85,-0.3 -9.03,2.28 -9.03,2.28a3.47,3.47 0,0 0,-3.09 2.02,4.02 4.02,0 0,0 -1.41,5.16l0.2,3.94 1.31,13.59 -1.03,6.46s5.33,-3.07 7.89,-4.47 4.24,-5.84 4.24,-5.84c2.66,-2.04 3.59,-7.29 3.59,-7.29a3.04,3.04 0,0 0,1.34 -3.17c0.94,-0.6 0.75,-2.47 0.75,-2.47a4.06,4.06 0,0 0,4.08 1.51,0.55 0.55,0 0,0 0.39,-0.81Z"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M55.12,107.76a1.98,1.98 0,0 1,0.39 -0.02l1.13,-0.05c0.98,-0.05 2.38,-0.17 4.12,-0.38l0.67,-0.08a3.04,3.04 0,0 1,0.72 -0.03,2.16 2.16,0 0,1 1.38,0.69l2.1,2.53c0.18,0.22 0.37,0.47 0.55,0.69a2.01,2.01 0,0 1,0.14 0.19,0.64 0.64,0 0,1 0.07,0.13l0.03,0.12a2.57,2.57 0,0 1,0.08 0.47,3.78 3.78,0 0,1 -0.43,1.88 14.66,14.66 0,0 1,-0.99 1.66,2.85 2.85,0 0,1 -0.68,0.77 1.09,1.09 0,0 1,-1.09 0.12,1.2 1.2,0 0,1 -0.6,-0.65 1.76,1.76 0,0 1,-0.09 -0.85,4.04 4.04,0 0,1 0.6,-1.47l0.04,0.19a8.8,8.8 0,0 1,-2.12 -2.2l0.2,0.04a3.22,3.22 0,0 1,-2.98 0.33l0.14,-0.21a1.32,1.32 0,0 1,-0.85 2.22l0.03,-0.22a5.19,5.19 0,0 1,2.52 1.85,5 5,0 0,1 0.91,2.2 4.91,4.91 0,0 1,0 1.52c-0.03,0.17 -0.06,0.3 -0.08,0.39s-0.04,0.13 -0.05,0.13a6.05,6.05 0,0 0,0 -2.01,4.96 4.96,0 0,0 -0.94,-2.11 5.01,5.01 0,0 0,-2.45 -1.74l-0.53,-0.17 0.56,-0.05a1.12,1.12 0,0 0,0.9 -0.66,1.1 1.1,0 0,0 -0.22,-1.15l-0.41,-0.43 0.55,0.22a2.96,2.96 0,0 0,2.72 -0.32l0.12,-0.08 0.08,0.11a8.66,8.66 0,0 0,2.06 2.12l0.11,0.08 -0.07,0.11a3.75,3.75 0,0 0,-0.57 1.36,1.11 1.11,0 0,0 0.52,1.2 0.78,0.78 0,0 0,0.8 -0.09,2.55 2.55,0 0,0 0.6,-0.69 14.41,14.41 0,0 0,0.98 -1.63,3.49 3.49,0 0,0 0.41,-1.71 2.1,2.1 0,0 0,-0.07 -0.42v-0.1a0.33,0.33 0,0 0,-0.04 -0.07,1.34 1.34,0 0,0 -0.12,-0.18c-0.17,-0.23 -0.36,-0.47 -0.53,-0.68 -0.73,-0.89 -1.41,-1.74 -2.07,-2.54a1.97,1.97 0,0 0,-1.22 -0.63,3.28 3.28,0 0,0 -0.68,0.02l-0.67,0.07c-1.74,0.18 -3.15,0.28 -4.13,0.29h-1.13A1.88,1.88 0,0 1,55.12 107.76Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M68.31,110.7a10.1,10.1 0,0 1,-0.81 -2.06,12.19 12.19,0 0,0 -0.94,-2.17 4.51,4.51 0,0 0,-2.03 -1.93,6.21 6.21,0 0,0 -2.81,-0.26l-2.39,0.16c-0.68,0.04 -1.23,0.07 -1.61,0.08a2.17,2.17 0,0 1,-0.6 0,2.59 2.59,0 0,1 0.59,-0.1c0.38,-0.05 0.94,-0.11 1.61,-0.17l2.38,-0.22a6.29,6.29 0,0 1,2.96 0.26,4.69 4.69,0 0,1 2.14,2.06 10.86,10.86 0,0 1,0.9 2.24c0.18,0.6 0.33,1.12 0.47,1.55A3.22,3.22 0,0 1,68.31 110.7Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M69.18,108.52c-0.05,0 -0.18,-0.99 -0.72,-2.51a15.18,15.18 0,0 0,-1.2 -2.55,11.18 11.18,0 0,0 -0.94,-1.37 2.21,2.21 0,0 0,-1.41 -0.86,10.23 10.23,0 0,0 -1.78,-0.04c-0.58,0 -1.14,0.04 -1.67,0.07 -1.06,0.07 -2.03,0.16 -2.81,0.24s-1.45,0.18 -1.9,0.23a3.01,3.01 0,0 1,-0.7 0.07,3.28 3.28,0 0,1 0.68,-0.18c0.44,-0.09 1.09,-0.21 1.88,-0.33s1.77,-0.22 2.84,-0.3c0.54,-0.04 1.1,-0.07 1.69,-0.09a10.46,10.46 0,0 1,1.83 0.03,2.3 2.3,0 0,1 0.9,0.34 3.06,3.06 0,0 1,0.69 0.63,11.24 11.24,0 0,1 0.94,1.41 14.03,14.03 0,0 1,1.16 2.62,12.81 12.81,0 0,1 0.47,1.88 2.75,2.75 0,0 1,0.06 0.71Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M52.36,121.69s-4.09,25.17 -4.76,32.34c-0.86,9.3 -2.47,15.65 0.14,21.99 2.25,5.48 8.21,9.25 13.66,6.95s7.36,-17.68 7.36,-17.68l-6.59,-44.81Z"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M66.34,165.59v-0.11a2.22,2.22 0,0 1,0.07 -0.33c0.06,-0.29 0.18,-0.7 0.27,-1.26a25.56,25.56 0,0 0,0.47 -4.69,46.69 46.69,0 0,0 -0.56,-6.97c-0.37,-2.61 -0.89,-5.46 -1.33,-8.48 -0.9,-6.03 -1.79,-11.47 -2.34,-15.43 -0.28,-1.98 -0.47,-3.58 -0.6,-4.69 -0.06,-0.54 -0.1,-0.96 -0.13,-1.28a1.16,1.16 0,0 0,-0.03 -0.33,0.38 0.38,0 0,1 0,-0.12 0.55,0.55 0,0 1,0.02 0.11,3.29 3.29,0 0,0 0.05,0.33c0.04,0.31 0.1,0.74 0.18,1.27 0.15,1.11 0.38,2.71 0.67,4.69 0.59,3.95 1.51,9.37 2.41,15.41 0.44,3.01 0.94,5.87 1.31,8.49a44.6,44.6 0,0 1,0.51 7,24.1 24.1,0 0,1 -0.54,4.69c-0.1,0.55 -0.24,0.96 -0.31,1.25l-0.09,0.32C66.36,165.56 66.35,165.6 66.34,165.59Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M148.13,96.09s15.35,30.72 19.13,40.54 2.49,15.65 0.28,18.61 -12.8,-0.81 -13.26,-1.05c-2.02,-1.1 -6.19,-9.87 -6.19,-9.87l-10.31,-45.5Z"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M149.25,145.07a0.69,0.69 0,0 1,-0.05 -0.11l-0.13,-0.33c-0.11,-0.32 -0.27,-0.75 -0.47,-1.3 -0.42,-1.13 -0.94,-2.79 -1.57,-4.84 -1.25,-4.11 -2.77,-9.84 -4.3,-16.22s-2.78,-12.19 -3.65,-16.4c-0.44,-2.1 -0.77,-3.81 -1,-4.99l-0.25,-1.36c-0.02,-0.14 -0.04,-0.26 -0.06,-0.36a0.4,0.4 0,0 1,0 -0.12,0.36 0.36,0 0,1 0.04,0.12 1.98,1.98 0,0 0,0.08 0.35c0.08,0.33 0.17,0.78 0.3,1.35l1.07,4.97c0.91,4.19 2.19,9.99 3.72,16.36s3.01,12.11 4.22,16.23c0.61,2.06 1.11,3.72 1.5,4.86 0.18,0.56 0.32,1 0.43,1.32l0.1,0.34a0.41,0.41 0,0 1,0.02 0.14Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M128.89,76.22s-0.7,0.34 -0.5,1.5 2.34,5.32 2.51,6.2 0.64,6.96 1.44,8.6 1.19,-1.76 1.19,-1.76l3.12,-5.45 0.63,-1.61s-1.41,1.07 -2.51,-1.22a31.26,31.26 0,0 0,-2.42 -5.21C131.23,75.67 130,75.44 128.89,76.22Z"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M134.67,78.05a4.72,4.72 0,0 1,-1.03 -0.09,13.27 13.27,0 0,1 -2.46,-0.52 8.39,8.39 0,0 1,-2.27 -1.09,2.08 2.08,0 0,1 -0.53,-0.56 0.52,0.52 0,0 1,-0.1 -0.27,2.81 2.81,0 0,0 0.74,0.69 10.84,10.84 0,0 0,2.24 1,21.16 21.16,0 0,0 2.41,0.58A4,4 0,0 1,134.67 78.05Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M126.51,73.76a2.42,2.42 0,1 0,2.42 -2.42A2.42,2.42 0,0 0,126.51 73.76Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M126.51,73.76v-0.16a1.74,1.74 0,0 1,0.05 -0.47,2.4 2.4,0 0,1 0.87,-1.41 2.5,2.5 0,0 1,2.38 -0.38,2.47 2.47,0 0,1 1.18,0.88 2.51,2.51 0,0 1,0 3,2.47 2.47,0 0,1 -1.18,0.88 2.5,2.5 0,0 1,-2.38 -0.38,2.4 2.4,0 0,1 -0.87,-1.41 1.74,1.74 0,0 1,-0.05 -0.44q0,-0.16 0,-0.16a2.01,2.01 0,0 0,0.12 0.58,2.34 2.34,0 0,0 0.89,1.27 2.31,2.31 0,1 0,0 -3.7,2.37 2.37,0 0,0 -0.89,1.27A2.7,2.7 0,0 0,126.51 73.76Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M130.51,73.74a1.6,1.6 0,1 1,-1.6 -1.6A1.6,1.6 0,0 1,130.51 73.74Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M127.4,75.07a1.41,1.41 0,0 1,1.02 -1.13c0.88,-0.18 9.17,0.66 10.12,0.81s3.18,0.33 3.18,0.33a3.73,3.73 0,0 1,4.02 2.48l0.94,2.16s2.67,0.14 2.77,2.67 0.33,3.98 0.33,3.98 3.16,0.97 3.01,2.61a19.23,19.23 0,0 1,-1.44 4.47l-2.46,4.51a7.25,7.25 0,0 1,-6.8 4.06h-2.81s-6.67,-7.43 -7.14,-10.72 3.75,-5.3 3.75,-5.3l3.75,-3.83 0.08,-3.28s-7.99,-0.91 -9.67,-1.61S127.31,76.15 127.4,75.07Z"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M147.69,89.95a5.16,5.16 0,0 0,0.27 3.09"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M147.96,93.04a2.66,2.66 0,0 1,-0.5 -1.51,2.71 2.71,0 0,1 0.22,-1.58c0.07,0 -0.06,0.71 0,1.56S148.03,93.01 147.96,93.04Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M141.59,75.24s-4.93,0.58 -6.29,1.26c-0.14,0.07 -3.39,3.83 -3.39,3.83a2.03,2.03 0,0 0,2.65 1.1,3.81 3.81,0 0,0 2.46,-1.94l4.57,-0.16 1.06,2.1"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M142.66,81.43a3.35,3.35 0,0 1,-0.31 -0.53l-0.81,-1.54 0.07,0.04 -4.57,0.2 0.1,-0.07a3.83,3.83 0,0 1,-1.96 1.79,3.67 3.67,0 0,1 -1.41,0.37 1.99,1.99 0,0 1,-1.41 -0.55,2.27 2.27,0 0,1 -0.54,-0.77l-0.03,-0.07 0.05,-0.06c1.06,-1.22 2.07,-2.37 3,-3.4 0.12,-0.13 0.23,-0.25 0.36,-0.38s0.17,-0.09 0.25,-0.14a2.47,2.47 0,0 1,0.24 -0.09,8.37 8.37,0 0,1 0.94,-0.26c0.6,-0.14 1.17,-0.25 1.68,-0.33 1.03,-0.17 1.88,-0.28 2.44,-0.34 0.29,-0.03 0.51,-0.05 0.66,-0.06a0.66,0.66 0,0 1,0.23 0,1.13 1.13,0 0,1 -0.22,0.05l-0.66,0.11c-0.57,0.09 -1.41,0.22 -2.42,0.41 -0.51,0.09 -1.06,0.21 -1.65,0.36a7.34,7.34 0,0 0,-0.9 0.27,2.24 2.24,0 0,0 -0.22,0.09c-0.06,0.03 -0.17,0.06 -0.19,0.1 -0.11,0.11 -0.22,0.24 -0.34,0.37 -0.94,1.04 -1.92,2.19 -2.98,3.41v-0.12a2.13,2.13 0,0 0,0.47 0.68,1.72 1.72,0 0,0 1.25,0.47 3.47,3.47 0,0 0,1.31 -0.34,3.7 3.7,0 0,0 1.88,-1.65l0.03,-0.07h0.07l4.57,-0.13h0.05v0.04c0.31,0.65 0.56,1.17 0.75,1.57A4.58,4.58 0,0 1,142.66 81.43Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M146.83,79.93l-5.89,-0.33a2.55,2.55 0,0 0,-1.88 0.69l-3.18,3a1.63,1.63 0,0 0,2.07 1.36,9.62 9.62,0 0,0 3.41,-1.65s3.15,0.65 3.25,0.65a16.5,16.5 0,0 1,0.68 2.04"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M145.28,85.69a2.23,2.23 0,0 1,-0.14 -0.37c-0.09,-0.27 -0.21,-0.62 -0.35,-1.05 -0.04,-0.11 -0.08,-0.23 -0.13,-0.35a1.41,1.41 0,0 0,-0.08 -0.18c-0.02,-0.06 -0.02,-0.04 0,-0.03h-0.1l-0.94,-0.17 -2.22,-0.42h0.08a9.95,9.95 0,0 1,-2.76 1.49,5.36 5.36,0 0,1 -0.84,0.22 1.84,1.84 0,0 1,-0.91 -0.04,1.55 1.55,0 0,1 -0.78,-0.55 2.21,2.21 0,0 1,-0.38 -0.89v-0.06l0.05,-0.05 0.09,-0.12 1.79,-1.69 0.85,-0.8a6.36,6.36 0,0 1,0.87 -0.75,2.62 2.62,0 0,1 1.04,-0.37 5.31,5.31 0,0 1,1.03 0l1.81,0.11 2.61,0.19 0.71,0.06a1.04,1.04 0,0 1,0.24 0.04,0.78 0.78,0 0,1 -0.25,0h-0.71l-2.62,-0.11 -1.81,-0.08a5.32,5.32 0,0 0,-0.98 0,2.55 2.55,0 0,0 -0.94,0.35 6.4,6.4 0,0 0,-0.82 0.72l-0.85,0.81 -1.79,1.69 -0.09,0.08 0.04,-0.11a1.55,1.55 0,0 0,0.99 1.24,2.72 2.72,0 0,0 1.61,-0.16 9.98,9.98 0,0 0,2.7 -1.41l0.04,-0.03h0.05l2.19,0.47 0.91,0.19 0.1,0.02h0.03a0.16,0.16 0,0 1,0.07 0.04c0.03,0.04 0.02,0.04 0.04,0.07s0.06,0.13 0.08,0.19l0.12,0.36c0.14,0.47 0.24,0.82 0.3,1.07A2.04,2.04 0,0 1,145.28 85.69Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M151.39,86.94a21,21 0,0 0,-3.42 -1.44c-0.48,0.03 -5.62,1.9 -5.62,1.9s1.02,2.08 2.51,1.88A14.15,14.15 0,0 0,147.56 88.64l2.11,2.07"
|
||||
android:fillColor="#ffbf9d"/>
|
||||
<path
|
||||
android:pathData="M149.68,90.71a4.17,4.17 0,0 1,-0.6 -0.51l-1.57,-1.49h0.09a13.63,13.63 0,0 1,-2.7 0.68,1.76 1.76,0 0,1 -0.83,-0.09 2.65,2.65 0,0 1,-0.74 -0.44,4.82 4.82,0 0,1 -1.08,-1.41l-0.07,-0.12 0.13,-0.05 0.27,-0.1c1.22,-0.44 2.38,-0.85 3.44,-1.2 0.53,-0.18 1.04,-0.35 1.52,-0.47a2.86,2.86 0,0 1,0.37 -0.09,0.9 0.9,0 0,1 0.38,0.06 6.16,6.16 0,0 1,0.63 0.24c0.78,0.33 1.41,0.65 1.81,0.86a4.41,4.41 0,0 1,0.64 0.37,3.61 3.61,0 0,1 -0.68,-0.28c-0.43,-0.19 -1.05,-0.47 -1.84,-0.79 -0.2,-0.08 -0.4,-0.16 -0.62,-0.22a0.84,0.84 0,0 0,-0.31 -0.05,1.45 1.45,0 0,0 -0.34,0.09c-0.47,0.14 -0.98,0.32 -1.5,0.5l-3.43,1.22 -0.27,0.1 0.07,-0.17a4.73,4.73 0,0 0,1.02 1.33,2.47 2.47,0 0,0 0.67,0.41 1.61,1.61 0,0 0,0.73 0.08,14.22 14.22,0 0,0 2.67,-0.61h0.06l0.04,0.04 1.52,1.55A5.55,5.55 0,0 1,149.68 90.71Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M137.24,85.43a0.57,0.57 0,0 0,-0.3 0.05,1.28 1.28,0 0,0 -0.54,0.61 27.82,27.82 0,0 0,-1.05 2.69,28.25 28.25,0 0,0 -0.76,2.79 8.51,8.51 0,0 1,-0.28 1.17,4.6 4.6,0 0,1 0.11,-1.2 18.28,18.28 0,0 1,0.7 -2.81,17.74 17.74,0 0,1 1.13,-2.69 1.28,1.28 0,0 1,0.66 -0.62C137.13,85.34 137.24,85.43 137.24,85.43Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
<path
|
||||
android:pathData="M133.72,78.28a5.3,5.3 0,0 1,-1.01 -0.13c-0.62,-0.1 -1.48,-0.23 -2.41,-0.47a5.82,5.82 0,0 1,-2.26 -1.01,1.88 1.88,0 0,1 -0.66,-0.78c0.03,-0.03 0.26,0.3 0.76,0.65a6.56,6.56 0,0 0,2.22 0.9c0.94,0.22 1.78,0.38 2.38,0.53a3.42,3.42 0,0 1,0.98 0.31Z"
|
||||
android:fillColor="#ff9a6c"/>
|
||||
</vector>
|
||||
745
app/src/main/res/drawable/img_out_of_geo.xml
Normal file
745
app/src/main/res/drawable/img_out_of_geo.xml
Normal file
@@ -0,0 +1,745 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="196dp"
|
||||
android:height="180dp"
|
||||
android:viewportWidth="196"
|
||||
android:viewportHeight="180">
|
||||
<path
|
||||
android:pathData="M29.45,120.4h31v58.83h-31z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M45.35,120.4h14.53v58.83h-14.53z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M35.96,126.73h2.79v6.77h-2.79z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M35.96,152.44h2.79v6.77h-2.79z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M45.92,136.09c0,0.06 -3.69,0.1 -8.23,0.1s-8.23,-0.05 -8.23,-0.1 3.69,-0.11 8.23,-0.11S45.92,136.03 45.92,136.09Z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M35.96,139.86h2.79v6.77h-2.79z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M45.92,148.72c0,0.05 -3.69,0.1 -8.23,0.1s-8.23,-0.05 -8.23,-0.1 3.69,-0.11 8.23,-0.11S45.92,148.66 45.92,148.72Z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M48.44,126.73h2.79v6.77h-2.79z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M54.4,126.73h2.79v6.77h-2.79z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M48.44,139.36h2.79v6.77h-2.79z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M54.4,139.36h2.79v6.77h-2.79z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M48.44,151.64h2.79v6.77h-2.79z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M54.4,151.64h2.79v6.77h-2.79z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M27.12,119.95h35.66v1.47h-35.66z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M60.67,121.56c0,0.06 -6.93,0.1 -15.47,0.1s-15.47,-0.05 -15.47,-0.1 6.93,-0.1 15.47,-0.1S60.67,121.5 60.67,121.56Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M9.08,142.47h27.75v36.6h-27.75z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M23.82,142.47h13.01v36.6h-13.01z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M14.9,147.42h2.5v6.06h-2.5z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M14.9,171.15h2.5v6.06h-2.5z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M23.82,155.86c0,0.07 -3.3,0.12 -7.37,0.12s-7.37,-0.05 -7.37,-0.12 3.3,-0.13 7.37,-0.13S23.82,155.8 23.82,155.86Z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M14.9,159.38h2.5v6.06h-2.5z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M23.82,167.82c0,0.07 -3.3,0.13 -7.37,0.13s-7.37,-0.06 -7.37,-0.13 3.3,-0.12 7.37,-0.12S23.82,167.75 23.82,167.82Z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M26.59,147.42h2.5v6.06h-2.5z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M32,147.42h2.5v6.06h-2.5z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M26.59,158.92h2.5v6.06h-2.5z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M32,158.92h2.5v6.06h-2.5z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M26.59,170.43h2.5v6.06h-2.5z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M32,170.43h2.5v6.06h-2.5z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M7,141.8h31.92v1.32h-31.92z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M37.03,143.24c0,0.07 -6.2,0.12 -13.85,0.12s-13.85,-0.05 -13.85,-0.12 6.2,-0.13 13.85,-0.13S37.03,143.17 37.03,143.24Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M23.75,7.74s-4.42,1.35 -0.34,10.81a122.14,122.14 0,0 0,7.02 14.25s0.69,2.18 -1.13,2.4 -5.73,-0.68 -6.67,1.47c-0.98,2.22 0.53,4.48 3.76,6.58s10.13,6.98 10.76,7.42 1.18,1.47 -0.03,1.8 -10.16,0.7 -9.75,4.93 10.36,8.63 11.45,9.13 1.31,0.99 1.18,1.59 -3.15,0.45 -5.69,0.63 -5.45,0.88 -5.01,3.3 6.16,7.83 20.73,10.24l6.83,0.68 4.12,-5.51c8.07,-12.38 7.93,-20.25 6.45,-22.21s-3.95,-0.28 -5.82,1.46 -3.78,4.08 -4.31,3.77 -0.74,-0.82 -0.37,-1.95 3.84,-11.45 1,-14.61 -9.13,3.2 -10.21,3.87 -1.45,-0.45 -1.35,-1.2 1.16,-9.14 1.8,-12.95 0,-6.44 -2.32,-7.21c-2.22,-0.75 -4.2,2.73 -5.58,3.93s-2.53,-0.79 -2.53,-0.79a118.09,118.09 0,0 0,-5.77 -14.8c-4.24,-9.39 -8.32,-7.01 -8.32,-7.01"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M57.13,84.61c-3.09,-6.93 -8.38,-19.33 -12.98,-29.96S35.39,34.42 32.33,27.48l-3.6,-8.22c-0.42,-0.96 -0.76,-1.72 -0.98,-2.25l-0.25,-0.59 -0.08,-0.2a1.62,1.62 0,0 1,0.1 0.19c0.07,0.14 0.16,0.33 0.27,0.58l1.02,2.22c0.9,1.93 2.14,4.73 3.69,8.19 3.09,6.93 7.28,16.53 11.88,27.15s9.86,23.04 12.92,29.98"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M28.05,37.62a2.17,2.17 0,0 1,0.45 0.17c0.3,0.12 0.72,0.3 1.24,0.53 1.04,0.45 2.46,1.14 4.02,1.91l3.98,2 1.21,0.6a2.02,2.02 0,0 1,0.45 0.24,2.28 2.28,0 0,1 -0.45,-0.16c-0.3,-0.12 -0.72,-0.3 -1.24,-0.54 -1.04,-0.47 -2.45,-1.17 -4.01,-1.94l-3.99,-1.97 -1.21,-0.59A2.32,2.32 0,0 1,28.05 37.62Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M39.45,43.17c-0.05,-0.03 1.21,-3.02 2.82,-6.69s2.96,-6.63 3.02,-6.61 -1.21,3.02 -2.83,6.69S39.51,43.21 39.45,43.17Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M45.68,59.07a2.57,2.57 0,0 1,0.31 -0.41l0.9,-1.05c0.75,-0.9 1.77,-2.13 2.85,-3.54s2.02,-2.7 2.7,-3.65l0.79,-1.13a2.86,2.86 0,0 1,0.31 -0.4,2.03 2.03,0 0,1 -0.24,0.45c-0.17,0.28 -0.42,0.68 -0.74,1.17 -0.64,0.97 -1.56,2.29 -2.64,3.7s-2.13,2.64 -2.9,3.51c-0.39,0.45 -0.71,0.78 -0.94,1.01a2.25,2.25 0,0 1,-0.4 0.35Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M34.5,56.81a1.8,1.8 0,0 1,0.45 0.04l1.26,0.19c1.06,0.17 2.53,0.41 4.14,0.69s3.08,0.55 4.14,0.75l1.25,0.25a1.65,1.65 0,0 1,0.45 0.12,2.02 2.02,0 0,1 -0.45,-0.04l-1.26,-0.19c-1.06,-0.16 -2.53,-0.41 -4.15,-0.69s-3.08,-0.55 -4.13,-0.75l-1.25,-0.25a2.07,2.07 0,0 1,-0.46 -0.12Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M37.76,71.91a3.57,3.57 0,0 1,0.6 0.06l1.62,0.23c1.35,0.2 3.24,0.5 5.32,0.84s3.95,0.66 5.31,0.9l1.6,0.3a3.24,3.24 0,0 1,0.58 0.14,3.6 3.6,0 0,1 -0.6,-0.06l-1.62,-0.23c-1.35,-0.2 -3.24,-0.5 -5.32,-0.84s-3.95,-0.66 -5.31,-0.9l-1.6,-0.3a2.81,2.81 0,0 1,-0.58 -0.14Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M52.25,74.34a4.45,4.45 0,0 1,0.38 -0.52l1.07,-1.38c0.9,-1.16 2.14,-2.78 3.47,-4.6s2.48,-3.5 3.31,-4.72c0.4,-0.59 0.73,-1.07 0.98,-1.45a4.14,4.14 0,0 1,0.38 -0.52,4.16 4.16,0 0,1 -0.31,0.56c-0.21,0.36 -0.53,0.86 -0.93,1.48 -0.8,1.24 -1.93,2.94 -3.26,4.76s-2.59,3.42 -3.52,4.57c-0.45,0.57 -0.86,1.03 -1.13,1.35a3.65,3.65 0,0 1,-0.44 0.46Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M152.99,101.31c-9.13,-6.38 -11.2,-18.21 -10.84,-28.84 0.06,-1.77 -0.14,-3.65 0.71,-5.21s2.82,-2.62 4.41,-1.88c1.32,0.62 1.9,2.16 2.63,3.42a10.36,10.36 0,0 0,4.17 3.98,3.95 3.95,0 0,0 3.64,0.33c1.53,-0.84 1.71,-2.96 1.7,-4.73q-0.03,-4.96 -0.06,-9.88a17.32,17.32 0,0 1,0.53 -5.24,5.44 5.44,0 0,1 3.45,-3.7 3.32,3.32 0,0 1,4.11 2.23,17.01 17.01,0 0,1 0.05,2.2 1.86,1.86 0,0 0,1.09 1.75,2.14 2.14,0 0,0 1.94,-0.81 23.62,23.62 0,0 0,4.22 -6.37,32.41 32.41,0 0,1 3.93,-6.57 9.55,9.55 0,0 1,6.47 -3.63,5.71 5.71,0 0,1 5.86,3.9c0.63,2.48 -0.81,5.01 -2.39,7.03a39.52,39.52 0,0 1,-8.21 7.82,3.24 3.24,0 0,0 -1.37,1.48c-0.38,1.18 0.73,2.35 1.9,2.73a18.74,18.74 0,0 0,4.12 0.45,3.95 3.95,0 0,1 3.39,2.07c0.73,1.8 -0.78,3.7 -2.25,4.96a33.76,33.76 0,0 1,-10 5.77,11.56 11.56,0 0,0 -3.71,1.8 3.27,3.27 0,0 0,-1.05 3.74,3.31 3.31,0 0,0 3.6,1.39 24.12,24.12 0,0 0,3.88 -1.48c2.43,-0.9 5.56,-0.75 7.12,1.35a5.64,5.64 0,0 1,0.6 4.96,12.73 12.73,0 0,1 -2.68,4.37 33.96,33.96 0,0 1,-14.5 10.19c-5.63,1.95 -10.85,2.48 -16.45,0.45"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M152.85,109.12a77.74,77.74 0,0 1,2.89 -14.54,157.26 157.26,0 0,1 6.28,-17.04c0.63,-1.48 1.26,-2.94 1.88,-4.38s1.24,-2.87 1.92,-4.22a80.18,80.18 0,0 1,4.39 -7.57c1.51,-2.34 3.04,-4.51 4.47,-6.52s2.82,-3.86 4.15,-5.49a63.31,63.31 0,0 1,6.84 -7.23c0.87,-0.78 1.57,-1.35 2.05,-1.77l0.55,-0.45a1.13,1.13 0,0 1,0.19 -0.14,1.35 1.35,0 0,1 -0.17,0.17l-0.53,0.45c-0.45,0.41 -1.14,1.01 -2,1.8a67.15,67.15 0,0 0,-6.76 7.29c-1.31,1.64 -2.68,3.49 -4.11,5.51s-2.94,4.19 -4.44,6.53a79.88,79.88 0,0 0,-4.36 7.55c-0.68,1.35 -1.28,2.76 -1.91,4.2s-1.24,2.9 -1.88,4.38a161.95,161.95 0,0 0,-6.31 17,78.74 78.74,0 0,0 -2.92,14.51"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M165.91,69.01a3.66,3.66 0,0 1,-0.17 -0.76c-0.09,-0.49 -0.2,-1.2 -0.33,-2.08 -0.25,-1.76 -0.51,-4.2 -0.79,-6.89s-0.58,-5.12 -0.85,-6.88c-0.14,-0.87 -0.25,-1.58 -0.34,-2.07a3.42,3.42 0,0 1,-0.1 -0.77,3.68 3.68,0 0,1 0.22,0.74c0.13,0.48 0.28,1.18 0.45,2.06 0.33,1.74 0.67,4.18 0.95,6.88s0.51,5.06 0.7,6.9c0.09,0.83 0.16,1.53 0.22,2.09A3.45,3.45 0,0 1,165.91 69.01Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M188.62,64.59a5.01,5.01 0,0 1,-0.9 0.11c-0.58,0.05 -1.42,0.12 -2.46,0.24 -2.08,0.22 -4.96,0.63 -8.08,1.23s-5.96,1.26 -7.98,1.8c-1.01,0.26 -1.83,0.5 -2.39,0.65a5.25,5.25 0,0 1,-0.9 0.22,4.63 4.63,0 0,1 0.85,-0.34c0.55,-0.19 1.35,-0.45 2.37,-0.75 2.01,-0.6 4.84,-1.3 7.98,-1.9a80.04,80.04 0,0 1,8.11 -1.14c1.04,-0.09 1.9,-0.13 2.48,-0.14A4.21,4.21 0,0 1,188.62 64.59Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M156.52,93.89a1.86,1.86 0,0 1,-0.16 -0.28l-0.39,-0.82c-0.33,-0.72 -0.79,-1.77 -1.35,-3.06 -1.1,-2.6 -2.5,-6.25 -3.99,-10.28s-2.86,-7.69 -3.9,-10.31l-1.24,-3.1 -0.33,-0.84a1.29,1.29 0,0 1,-0.09 -0.31,1.17 1.17,0 0,1 0.15,0.28c0.11,0.22 0.23,0.49 0.39,0.82 0.33,0.72 0.79,1.76 1.35,3.06 1.1,2.6 2.5,6.24 3.99,10.28s2.86,7.69 3.9,10.31l1.24,3.1c0.14,0.34 0.24,0.62 0.33,0.85a1.43,1.43 0,0 1,0.09 0.3Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M186.2,83.97a1.17,1.17 0,0 1,-0.3 0.12l-0.88,0.29 -3.23,1.05c-2.73,0.9 -6.48,2.15 -10.63,3.56s-7.92,2.64 -10.67,3.46c-1.37,0.41 -2.49,0.74 -3.27,0.95l-0.9,0.23a1.05,1.05 0,0 1,-0.31 0.06,1.42 1.42,0 0,1 0.3,-0.12l0.87,-0.29 3.23,-1.05c2.73,-0.9 6.48,-2.15 10.63,-3.56s7.92,-2.64 10.67,-3.46c1.37,-0.41 2.49,-0.74 3.26,-0.95l0.9,-0.23A1.03,1.03 0,0 1,186.2 83.97Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M196,179.88c0,0.06 -43.88,0.12 -98,0.12s-98,-0.05 -98,-0.12 43.87,-0.12 98,-0.12S196,179.82 196,179.88Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M54.78,112.77c7.16,-7.21 7.08,-18.21 5.02,-27.72 -0.35,-1.59 -0.48,-3.31 -1.49,-4.57s-2.96,-1.9 -4.27,-0.96c-1.09,0.77 -1.35,2.25 -1.8,3.51a9.46,9.46 0,0 1,-3.1 4.26,3.63 3.63,0 0,1 -3.22,0.9c-1.52,-0.51 -2.03,-2.38 -2.31,-3.97q-0.77,-4.45 -1.56,-8.89a14.68,14.68 0,0 0,-1.35 -4.63,5.03 5.03,0 0,0 -3.7,-2.77 3.04,3.04 0,0 0,-3.34 2.68A15.06,15.06 0,0 0,33.96 72.59a1.7,1.7 0,0 1,-0.69 1.75,1.97 1.97,0 0,1 -1.88,-0.41 21.23,21.23 0,0 1,-4.84 -5.03,29.31 29.31,0 0,0 -4.61,-5.26 8.74,8.74 0,0 0,-6.41 -2.21,5.23 5.23,0 0,0 -4.64,4.47c-0.17,2.33 1.55,4.38 3.3,5.93a35.93,35.93 0,0 0,8.66 5.69,2.96 2.96,0 0,1 1.48,1.1c0.54,1 -0.28,2.23 -1.26,2.77a18.68,18.68 0,0 1,-3.63 1.09,3.61 3.61,0 0,0 -2.7,2.42c-0.36,1.74 1.31,3.19 2.85,4.06a30.87,30.87 0,0 0,9.91 3.55,10.43 10.43,0 0,1 3.64,1.01 2.99,2.99 0,0 1,1.55 3.2,3.04 3.04,0 0,1 -3.03,1.84 19.81,19.81 0,0 1,-3.73 -0.7c-2.33,-0.42 -5.13,0.24 -6.18,2.38a5.16,5.16 0,0 0,0.28 4.55,11.77 11.77,0 0,0 3.13,3.48A31.02,31.02 0,0 0,39.89 115.07c5.38,0.83 10.16,0.45 14.87,-2.3"
|
||||
android:fillColor="#cde4fe"/>
|
||||
<path
|
||||
android:pathData="M56.19,119.84a70.65,70.65 0,0 0,-4.98 -12.62,144.81 144.81,0 0,0 -8.44,-14.3l-2.4,-3.63c-0.79,-1.19 -1.58,-2.38 -2.42,-3.48a72.55,72.55 0,0 0,-5.19 -6.1c-1.74,-1.86 -3.46,-3.55 -5.09,-5.13s-3.15,-3.02 -4.64,-4.26a56.69,56.69 0,0 0,-7.34 -5.38c-0.9,-0.57 -1.64,-0.98 -2.13,-1.26l-0.56,-0.31a0.98,0.98 0,0 0,-0.2 -0.09,1.35 1.35,0 0,0 0.19,0.12l0.55,0.34c0.49,0.29 1.2,0.72 2.1,1.3a60.49,60.49 0,0 1,7.26 5.44c1.45,1.26 2.98,2.7 4.6,4.28s3.33,3.29 5.06,5.15a72.6,72.6 0,0 1,5.16 6.07c0.83,1.1 1.61,2.25 2.4,3.47s1.59,2.41 2.41,3.63a148.33,148.33 0,0 1,8.44 14.25,72.19 72.19,0 0,1 5.01,12.56"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M37.86,85.82a2.96,2.96 0,0 0,0.03 -0.7c0,-0.45 0,-1.11 -0.05,-1.92 -0.06,-1.62 -0.23,-3.86 -0.42,-6.31s-0.32,-4.7 -0.36,-6.31c0,-0.81 -0.03,-1.46 -0.04,-1.91a2.84,2.84 0,0 0,-0.04 -0.71,3.6 3.6,0 0,0 -0.08,0.7c-0.04,0.45 -0.05,1.11 -0.06,1.92 0,1.63 0.08,3.87 0.28,6.34s0.37,4.63 0.5,6.31c0.06,0.76 0.1,1.4 0.14,1.91a3.03,3.03 0,0 0,0.09 0.68Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M16.74,85.72a4.96,4.96 0,0 0,0.83 -0.05c0.53,-0.05 1.3,-0.13 2.25,-0.19 1.91,-0.14 4.55,-0.24 7.47,-0.22s5.56,0.15 7.47,0.31c0.95,0.07 1.73,0.14 2.25,0.19a3.99,3.99 0,0 0,0.83 0.05,4.96 4.96,0 0,0 -0.82,-0.17c-0.53,-0.08 -1.3,-0.19 -2.25,-0.29 -1.91,-0.21 -4.56,-0.37 -7.49,-0.4a73,73 0,0 0,-7.49 0.31c-0.95,0.09 -1.73,0.19 -2.25,0.28a3.99,3.99 0,0 0,-0.81 0.17Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M50.89,106.89a1.35,1.35 0,0 0,0.09 -0.28l0.22,-0.8c0.18,-0.7 0.42,-1.72 0.7,-2.97 0.56,-2.52 1.22,-6.03 1.9,-9.91s1.31,-7.38 1.8,-9.91c0.25,-1.23 0.45,-2.25 0.61,-2.99 0.06,-0.32 0.12,-0.6 0.16,-0.82a1.25,1.25 0,0 0,0.04 -0.29,1.62 1.62,0 0,0 -0.09,0.28l-0.22,0.8c-0.19,0.7 -0.42,1.71 -0.7,2.97 -0.56,2.52 -1.22,6.03 -1.9,9.91s-1.31,7.39 -1.8,9.91c-0.25,1.23 -0.45,2.25 -0.61,2.99 -0.07,0.33 -0.12,0.6 -0.16,0.82A1.27,1.27 0,0 0,50.89 106.89Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M22.16,103.09a1.42,1.42 0,0 0,0.29 0.06l0.84,0.12 3.08,0.41c2.6,0.35 6.18,0.87 10.14,1.45s7.55,1.08 10.16,1.35c1.3,0.15 2.36,0.26 3.09,0.32l0.84,0.06a1.15,1.15 0,0 0,0.3 0,0.99 0.99,0 0,0 -0.29,-0.06l-0.84,-0.12 -3.08,-0.41c-2.6,-0.35 -6.18,-0.87 -10.14,-1.46s-7.55,-1.08 -10.16,-1.35c-1.31,-0.15 -2.36,-0.26 -3.09,-0.32l-0.84,-0.06a0.84,0.84 0,0 0,-0.3 0Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M136.79,31.08a5.02,5.02 0,0 0,1.73 -4.73,6.67 6.67,0 0,0 -2.87,-4.27 2.82,2.82 0,0 0,-2.29 -0.6,2.13 2.13,0 0,0 -1.39,1.67 4.31,4.31 0,0 0,0.26 2.25c0.85,2.47 2.13,4.7 4.56,5.68"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M139.07,35.3a11.74,11.74 0,0 1,10.36 -2.7c0.92,0.21 1.96,0.7 2.11,1.64s-0.69,1.73 -1.5,2.2a10.02,10.02 0,0 1,-11.09 -0.9"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M152.3,15.78a5.86,5.86 0,0 0,-4.54 0.78,10.33 10.33,0 0,0 -3.24,3.39 18.29,18.29 0,0 0,-2.28 9.1c3.38,-0.14 6.28,-2.8 7.66,-4.24 2.19,-2.28 4.75,-7.73 2.4,-9.01"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M133.94,39.92a11.71,11.71 0,0 0,0.84 -1.27,21.41 21.41,0 0,0 1.91,-5.44 10.81,10.81 0,0 0,-0.42 -5.74,7.13 7.13,0 0,0 -0.82,-1.55c-0.24,-0.34 -0.4,-0.5 -0.42,-0.49a14.96,14.96 0,0 1,1.01 2.13,11.33 11.33,0 0,1 0.31,5.59 25.05,25.05 0,0 1,-1.8 5.41"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M133.94,39.95l1.76,-2.25c1.49,-1.92 3.54,-4.58 5.86,-7.48s4.44,-5.5 5.98,-7.38l1.83,-2.23a5.92,5.92 0,0 0,0.63 -0.85,6.58 6.58,0 0,0 -0.74,0.74c-0.45,0.5 -1.11,1.24 -1.91,2.16 -1.6,1.83 -3.75,4.41 -6.07,7.31s-4.34,5.58 -5.78,7.55c-0.72,0.98 -1.29,1.8 -1.68,2.34"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M147.33,34.59a2.16,2.16 0,0 0,-0.59 -0.18,4.96 4.96,0 0,0 -0.71,-0.14 8.65,8.65 0,0 0,-0.95 -0.1,12.68 12.68,0 0,0 -2.49,0.09 13.16,13.16 0,0 0,-5.65 2.18,12.42 12.42,0 0,0 -1.9,1.61 8.27,8.27 0,0 0,-0.63 0.72,4.47 4.47,0 0,0 -0.45,0.58c-0.22,0.33 -0.19,0.48 -0.17,0.5a20.89,20.89 0,0 1,1.4 -1.62,13.66 13.66,0 0,1 1.91,-1.52A15.46,15.46 0,0 1,139.74 35.36a15.25,15.25 0,0 1,2.88 -0.77,13.87 13.87,0 0,1 2.43,-0.17C146.46,34.45 147.32,34.65 147.33,34.59Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M120,179.82l-60.32,-0.28A13.2,13.2 0,0 1,46.6 166.2L47.25,13.24A13.21,13.21 0,0 1,60.45 0l60.32,0.28a13.2,13.2 0,0 1,13.07 13.35l-0.66,152.97A13.21,13.21 0,0 1,120 179.82Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M129.07,139.72a1.33,1.33 0,1 1,-1.33 -1.33A1.33,1.33 0,0 1,129.07 139.72Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M127.74,142.61a9.13,9.13 0,0 1,0 -2.92A9.13,9.13 0,0 1,127.74 142.61Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M121.99,5.4 L109.92,5.35a2.97,2.97 0,0 0,-2.94 3v2.15a2.97,2.97 0,0 1,-2.94 2.99l-23.52,-0.11a2.97,2.97 0,0 1,-2.91 -3.03L77.6,8.22a2.97,2.97 0,0 0,-2.91 -3.03h-4.24l-10.57,-0.07a9.57,9.57 0,0 0,-6.73 2.71,9.26 9.26,0 0,0 -2.81,6.6L49.7,164.15a9.25,9.25 0,0 0,2.75 6.62,9.57 9.57,0 0,0 6.71,2.76l62.1,0.28a9.42,9.42 0,0 0,9.53 -9.31l0.64,-149.73A9.42,9.42 0,0 0,121.99 5.4Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M53.83,123.75c0.53,-0.4 26.5,-11.84 26.5,-11.84L49.99,96.78l-0.1,24.38Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M55.41,96.79l22.13,-11.25L53.76,72.36l-3.67,0.92 -0.09,21.33Z"
|
||||
android:fillColor="#e8505b"/>
|
||||
<path
|
||||
android:pathData="M55.41,96.79l22.13,-11.25L53.76,72.36l-3.67,0.92 -0.09,21.33Z"
|
||||
android:fillColor="#d7e9fc"/>
|
||||
<path
|
||||
android:pathData="M50.9,72.16 L119.11,40.29 51.52,18.21Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M50.1,152.27l31.17,-16 46.4,27.3 -11.05,9.69h-39.6l-26.92,-16.45Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M87.41,134.54l38.55,22.85 4.3,-0.49L130.25,134.93L109.13,123.75Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M93.74,113.61 L130.09,134.05L130.09,107.32l-13.15,-5.63Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M54.93,124.77l21.32,11.7 25.87,-13.4L81.57,112.62Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M86.93,85.35l30.2,14.97 14.01,-7.16 0.09,-10.03 -20.4,-9.9Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M56.04,98.17l30.2,14.97 14.01,-7.16 0.09,-10.03 -20.4,-9.9Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M60.23,71.77l24.61,12.33 22.95,-12.33L84.01,60.92Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M107.79,149.83a3.04,3.04 0,0 1,-0.45 -0.22l-1.27,-0.72 -4.89,-2.83 -18.1,-10.61 -0.37,-0.22 0.39,-0.2 23.74,-12.07v0.55l-17.73,-9.46 -0.56,-0.3 0.56,-0.3 24.62,-12.92v0.63l-2.94,-1.49 -55.15,-27.98 -0.52,-0.26L55.66,71.17l29.29,-13.97L93.06,53.37l2.14,-0.98 0.55,-0.24a0.98,0.98 0,0 1,0.19 -0.07,0.73 0.73,0 0,1 -0.18,0.11l-0.53,0.28 -2.11,1.1 -8.06,3.97 -29.16,14.18v-0.53l55.21,27.86 2.94,1.49 0.61,0.31 -0.6,0.31 -24.64,12.9v-0.6l17.7,9.5 0.52,0.28 -0.53,0.27 -23.82,11.95v-0.42l17.99,10.81 4.82,2.93 1.24,0.77a2.56,2.56 0,0 1,0.44 0.27Z"
|
||||
android:fillColor="#1b6dc1"/>
|
||||
<path
|
||||
android:pathData="M102.5,38.85c0,-4.51 -4.72,-7.34 -9.54,-5.09a5.47,5.47 0,0 0,-2.53 2.43c-1.21,2.35 -0.68,5.03 0.42,7.26l3.75,9.5a1.61,1.61 0,0 0,3.01 0l3.67,-9.55A11.79,11.79 0,0 0,102.5 38.85ZM97.99,42.76c-3.24,1.88 -6.52,-1.6 -4.74,-5.03a2.7,2.7 0,0 1,1.03 -1.09c3.24,-1.88 6.52,1.6 4.74,5.03a2.7,2.7 0,0 1,-1.04 1.09Z"
|
||||
android:fillColor="#1b6dc1"/>
|
||||
<path
|
||||
android:pathData="M95.31,87.23l-0.11,-5.31 13.84,6.7v5.52Z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M109.04,88.64l17.19,-8.54v5.94l-17.19,8.11Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M95.2,82.04 L112.07,73.61l14.16,6.59 -17.19,8.54Z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M97.01,84.25v2.57l1.35,0.61v-2.46Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M99.17,85.18v2.58l1.35,0.61v-2.46Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M51.77,54.32L51.77,47.4l16.38,7.93v6.53Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M68.15,55.37l20.35,-10.11v7.04l-20.35,9.6Z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M51.77,47.56l19.96,-9.98 16.77,7.8 -20.35,10.11Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M53.91,50.12v3.05l1.6,0.72L55.51,50.98Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M56.47,51.24L56.47,54.29l1.6,0.73v-2.92Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M101.15,111.02v5.44l5.86,2.88v-5.62Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M114.44,110.16l-7.46,3.57v5.62l7.46,-4.16Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M101.14,111.1l7.39,-3.58 5.9,2.72 -7.46,3.57Z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M103.22,114.92v2.57l1.35,0.61v-2.46Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M53.99,108.25v5.44l5.84,2.88v-5.62Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M67.29,107.39l-7.46,3.57v5.62l7.46,-4.16Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M53.99,108.33l7.39,-3.58 5.9,2.72 -7.46,3.57Z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M56.06,112.15v2.57l1.35,0.61v-2.46Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M78.19,72.91v5.45l5.84,2.88L84.03,75.61Z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M91.49,72.06l-7.46,3.56v5.62l7.46,-4.16Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M78.19,72.99l7.39,-3.58 5.91,2.72 -7.46,3.56Z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M80.27,76.79v2.57l1.35,0.61L81.62,77.51Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M71.71,118.8v5.45l5.84,2.88v-5.62Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M85,117.94l-7.46,3.57L77.54,127.13l7.46,-4.16Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M71.71,118.88l7.39,-3.58 5.9,2.71 -7.46,3.57Z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M73.78,122.7v2.58l1.35,0.61v-2.46Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M95.8,131.66v6.83l12.29,7.24v-7.05Z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M117.46,133.64l-9.35,5.04v7.05l9.35,-5.22Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M95.8,131.77l9.27,-4.49 12.39,6.47 -9.35,5.04Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M100.45,138v3.23l1.69,1.02v-3.19Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M66.21,145.12v6.83l12.3,7.25v-7.05Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M93.19,144.19 L78.51,152.15v7.05l14.72,-8.16Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M66.21,145.59l15.53,-7.52 11.5,6.61L78.51,152.62Z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M70.86,151.43v3.23l1.69,1.02v-3.19Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M112.78,120.14v27.27l7.68,3.97L120.46,123.77Z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M118.45,117.9l-5.67,2.61 7.68,3.63 5.16,-2.91Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M120.46,123.77L120.46,151.38l4.67,-2.51 0.49,-28.01Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M80.33,98.48v27.27l7.67,3.97L88,102.1Z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M86,96.17l-5.67,2.61 7.67,3.63 5.17,-2.91Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M88,102.1L88,129.71l4.67,-2.3 0.5,-28.22Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M83.81,149.36v6.83l12.31,7.25v-7.05Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M105.47,151.35l-9.35,5.04v7.05l9.35,-5.22Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M83.81,149.36l9.38,-5.17 12.27,7.16 -9.35,5.04Z"
|
||||
android:fillColor="#f5f5f5"/>
|
||||
<path
|
||||
android:pathData="M88.46,155.68v3.23l1.7,1.02v-3.19Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M86.21,59.91"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M111.17,70.01l-22.4,-10.1 31.2,-15.88L130.21,59.3Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M131.11,79.02l0.16,-17.48 -17.37,9.89Z"
|
||||
android:fillColor="#1b6dc1"/>
|
||||
<path
|
||||
android:pathData="M117.92,96.08a1.33,1.33 0,1 1,-1.33 -1.35,1.35 1.35,0 0,1 1.33,1.35Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M116.59,98.98a9.13,9.13 0,0 1,0 -2.91A9.13,9.13 0,0 1,116.59 98.98Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M81.66,92.88a1.35,1.35 0,1 1,-1.35 -1.35,1.33 1.33,0 0,1 1.35,1.35Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M80.33,95.79a9.13,9.13 0,0 1,0 -2.91A9.13,9.13 0,0 1,80.33 95.79Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M63.9,111.14a1.33,1.33 0,1 1,-1.33 -1.33,1.33 1.33,0 0,1 1.33,1.33Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M62.58,114.03a9.13,9.13 0,0 1,0 -2.92A9.13,9.13 0,0 1,62.58 114.03Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M65.22,97.05a1.33,1.33 0,1 1,-0.4 -0.95A1.33,1.33 0,0 1,65.22 97.05Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M63.89,99.94a9.13,9.13 0,0 1,0 -2.91A9.13,9.13 0,0 1,63.89 99.94Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M98.03,95.76a1.35,1.35 0,1 1,-1.33 -1.33,1.33 1.33,0 0,1 1.33,1.33Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M96.7,98.64a9.13,9.13 0,0 1,0 -2.92A9.13,9.13 0,0 1,96.7 98.64Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M119.02,105.55a1.33,1.33 0,1 1,-1.33 -1.33A1.33,1.33 0,0 1,119.02 105.55Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M117.69,108.44a9.13,9.13 0,0 1,0 -2.92A9.13,9.13 0,0 1,117.69 108.44Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M119.87,113.24a1.33,1.33 0,1 1,-1.33 -1.33A1.33,1.33 0,0 1,119.87 113.24Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M118.54,116.14a9.13,9.13 0,0 1,0 -2.91A9.13,9.13 0,0 1,118.54 116.14Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M82.6,129.21a1.33,1.33 0,1 1,-0.4 -0.95A1.33,1.33 0,0 1,82.6 129.21Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M81.27,132.1a9.13,9.13 0,0 1,0 -2.91A9.13,9.13 0,0 1,81.27 132.1Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M124.94,151.59m-1.33,0a1.33,1.33 0,1 1,2.66 0a1.33,1.33 0,1 1,-2.66 0"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M124.94,154.5a9.13,9.13 0,0 1,0 -2.91A9.13,9.13 0,0 1,124.94 154.5Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M100.88,166.13a1.35,1.35 0,1 1,-1.33 -1.33A1.33,1.33 0,0 1,100.88 166.13Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M99.53,169.04a9.13,9.13 0,0 1,0 -2.91A9.13,9.13 0,0 1,99.53 169.04Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M90.63,162.11a1.33,1.33 0,1 1,-1.33 -1.33,1.33 1.33,0 0,1 1.33,1.33Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M89.31,165.03a9.13,9.13 0,0 1,0 -2.92A8.8,8.8 0,0 1,89.31 165.03Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M114.11,159.2a1.35,1.35 0,1 1,-1.35 -1.35,1.33 1.33,0 0,1 1.35,1.35Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M112.78,162.11a9.13,9.13 0,0 1,0 -2.91A9.13,9.13 0,0 1,112.78 162.11Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M92.77,134.31m-1.33,0a1.33,1.33 0,1 1,2.66 0a1.33,1.33 0,1 1,-2.66 0"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M92.77,137.2a9.13,9.13 0,0 1,0 -2.91A9.13,9.13 0,0 1,92.77 137.2Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M97.45,121.54a1.33,1.33 0,1 1,-1.33 -1.33,1.33 1.33,0 0,1 1.33,1.33Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M96.12,124.43a9.13,9.13 0,0 1,0 -2.91,9.13 9.13,0 0,1 0,2.91Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M65.22,122.98a1.33,1.33 0,1 1,-0.4 -0.95A1.33,1.33 0,0 1,65.22 122.98Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M63.89,125.87a9.13,9.13 0,0 1,0 -2.91A9.13,9.13 0,0 1,63.89 125.87Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M126.61,111.14a1.33,1.33 0,1 1,-1.33 -1.33,1.33 1.33,0 0,1 1.33,1.33Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M125.28,114.03a9.13,9.13 0,0 1,0 -2.92A9.13,9.13 0,0 1,125.28 114.03Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M123.04,91.57a1.33,1.33 0,1 1,-1.33 -1.33A1.33,1.33 0,0 1,123.04 91.57Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M121.71,94.46a9.13,9.13 0,0 1,0 -2.91A9.13,9.13 0,0 1,121.71 94.46Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M94.79,74.27m-1.33,0a1.33,1.33 0,1 1,2.66 0a1.33,1.33 0,1 1,-2.66 0"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M94.8,77.16a8.8,8.8 0,0 1,0 -2.91A9.13,9.13 0,0 1,94.8 77.16Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M70.71,98.95a1.33,1.33 0,1 1,-0.4 -0.95A1.33,1.33 0,0 1,70.71 98.95Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M69.38,101.84a9.13,9.13 0,0 1,0 -2.91A8.8,8.8 0,0 1,69.38 101.84Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M86.33,64.94a1.35,1.35 0,1 1,-1.35 -1.35,1.33 1.33,0 0,1 1.35,1.35Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M85,67.85a9.13,9.13 0,0 1,0 -2.91,9.13 9.13,0 0,1 0,2.91Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M113.44,62.06a1.33,1.33 0,1 1,-0.38 -0.95A1.33,1.33 0,0 1,113.44 62.06Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M112.11,64.96a9.13,9.13 0,0 1,0 -2.92A9.13,9.13 0,0 1,112.11 64.96Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M120.93,60.86a1.35,1.35 0,1 1,-1.33 -1.35,1.33 1.33,0 0,1 1.33,1.35Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M119.6,63.76a9.13,9.13 0,0 1,0 -2.91A9.13,9.13 0,0 1,119.6 63.76Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M117.92,51.21a1.33,1.33 0,1 1,-1.33 -1.33A1.35,1.35 0,0 1,117.92 51.21Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M116.59,54.1a9.13,9.13 0,0 1,0 -2.91,9.13 9.13,0 0,1 0,2.91Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M76.18,73.44a1.33,1.33 0,1 1,-0.4 -0.95,1.33 1.33,0 0,1 0.4,0.95Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M74.85,76.34a9.13,9.13 0,0 1,0 -2.91,9.13 9.13,0 0,1 0,2.91Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M107.07,61.07a1.35,1.35 0,1 1,-1.33 -1.33A1.33,1.33 0,0 1,107.07 61.07Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M105.74,63.96a9.13,9.13 0,0 1,0 -2.91,9.13 9.13,0 0,1 0,2.91Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M69.75,32.09a1.35,1.35 0,1 1,-1.33 -1.33A1.33,1.33 0,0 1,69.75 32.09Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M68.44,35a9.1,9.1 0,0 1,0 -2.91,9.1 9.1,0 0,1 0,2.91Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M85,38.77a1.33,1.33 0,1 1,-1.33 -1.33A1.33,1.33 0,0 1,85 38.77Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M83.67,41.66a9.13,9.13 0,0 1,0 -2.91,9.13 9.13,0 0,1 0,2.91Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M60.77,61.39a1.35,1.35 0,1 1,-1.35 -1.35,1.33 1.33,0 0,1 1.35,1.35Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M59.42,64.3a9.13,9.13 0,0 1,0 -2.91A9.13,9.13 0,0 1,59.42 64.3Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M62.09,40.08a1.35,1.35 0,1 1,-1.33 -1.33A1.33,1.33 0,0 1,62.09 40.08Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M60.78,42.97a9.13,9.13 0,0 1,0 -2.91,9.13 9.13,0 0,1 0,2.91Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M119.29,101.07l10.96,-5.81 -0.05,10.48Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M73.78,137.52 L49.77,149.91L49.77,126.8l2.66,-1.19Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M109.64,149.36a1.53,1.53 0,1 1,-1.53 -1.53A1.53,1.53 0,0 1,109.64 149.36Z"
|
||||
android:fillColor="#1b6dc1"/>
|
||||
<path
|
||||
android:pathData="M123.66,42.13l7.65,2.33v12.05Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M131.38,26.77l-0.05,-13.15a9.49,9.49 0,0 0,-9.35 -8.21L109.92,5.36a3,3 0,0 0,-2.94 3.05v2.18a3,3 0,0 1,-2.94 3.04L80.52,13.53a3,3 0,0 1,-2.91 -3.08L77.61,8.27a3,3 0,0 0,-2.91 -3.08h-4.24l-10.57,-0.07a9.46,9.46 0,0 0,-6.42 2.49c-1.06,2.04 -2.22,4.96 -1.68,7.16l79.55,25.9Z"
|
||||
android:fillColor="#e8505b"/>
|
||||
<path
|
||||
android:pathData="M131.38,26.77l-0.05,-13.15a9.49,9.49 0,0 0,-9.35 -8.21L109.92,5.36a3,3 0,0 0,-2.94 3.05v2.18a3,3 0,0 1,-2.94 3.04L80.52,13.53a3,3 0,0 1,-2.91 -3.08L77.61,8.27a3,3 0,0 0,-2.91 -3.08h-4.24l-10.57,-0.07a9.46,9.46 0,0 0,-6.42 2.49c-1.06,2.04 -2.22,4.96 -1.68,7.16l79.55,25.9Z"
|
||||
android:fillColor="#f5faff"/>
|
||||
<path
|
||||
android:pathData="M121.99,5.4h0.32a7.43,7.43 0,0 1,0.96 0.08,8.99 8.99,0 0,1 3.56,1.22 9.16,9.16 0,0 1,2.16 1.75,9.35 9.35,0 0,1 1.8,2.8 9.54,9.54 0,0 1,0.69 3.79v4.4c-0.05,12.44 -0.11,30.43 -0.19,52.67s-0.19,48.71 -0.31,78.11q0,5.51 -0.05,11.16v2.83a9.81,9.81 0,0 1,-0.38 2.84,9.23 9.23,0 0,1 -1.22,2.62 10.02,10.02 0,0 1,-1.98 2.14,9.68 9.68,0 0,1 -5.48,2.07c-0.5,0.03 -1,0.02 -1.49,0.02h-4.47l-12.09,-0.05 -24.84,-0.12 -12.69,-0.06 -6.41,-0.05a10.16,10.16 0,0 1,-6.16 -1.7,9.52 9.52,0 0,1 -3.75,-5.12 9.99,9.99 0,0 1,-0.38 -3.15L49.58,160.51q0.03,-6.28 0.05,-12.48 0.05,-12.41 0.1,-24.4c0.07,-16 0.14,-31.43 0.21,-46.14s0.13,-28.67 0.19,-41.75q0.05,-9.81 0.09,-18.92L50.22,14.56c0,-0.38 0.04,-0.76 0.06,-1.13a5.45,5.45 0,0 1,0.2 -1.11,9.48 9.48,0 0,1 2.01,-3.94 9.7,9.7 0,0 1,7.75 -3.34l8.27,0.04L74.44,5.08a3.06,3.06 0,0 1,1.86 0.52,3.11 3.11,0 0,1 1.19,1.53 5.05,5.05 0,0 1,0.19 1.84L77.67,9.86a6.48,6.48 0,0 0,0 0.89,2.94 2.94,0 0,0 0.71,1.57 2.78,2.78 0,0 0,1.45 0.89,3.25 3.25,0 0,0 0.86,0.09h4.3l12.51,0.07 5.52,0.03h1.29a2.81,2.81 0,0 0,1.17 -0.4,2.97 2.97,0 0,0 1.35,-1.88 5.32,5.32 0,0 0,0.08 -1.13L106.91,8.86a5.81,5.81 0,0 1,0.05 -1.09,3.01 3.01,0 0,1 0.36,-1 2.95,2.95 0,0 1,1.52 -1.33,4.84 4.84,0 0,1 1.88,-0.19l6.16,0.04 3.79,0.03h-9.94a4.65,4.65 0,0 0,-1.86 0.19,2.9 2.9,0 0,0 -1.48,1.28 3.04,3.04 0,0 0,-0.35 0.98,5.99 5.99,0 0,0 -0.05,1.07v1.12a4.99,4.99 0,0 1,-0.08 1.15,3.04 3.04,0 0,1 -1.38,1.94 2.9,2.9 0,0 1,-1.2 0.42c-0.45,0.04 -0.87,0 -1.31,0h-5.52l-12.51,-0.05h-4.3a3.41,3.41 0,0 1,-0.9 -0.09,2.97 2.97,0 0,1 -1.5,-0.88 3.08,3.08 0,0 1,-0.74 -1.64,6.83 6.83,0 0,1 -0.03,-0.91v-0.89a4.8,4.8 0,0 0,-0.18 -1.77,2.95 2.95,0 0,0 -1.1,-1.43 2.89,2.89 0,0 0,-1.77 -0.49h-5.93l-8.28,-0.03a9.54,9.54 0,0 0,-7.6 3.2,9.34 9.34,0 0,0 -1.97,3.87c-0.09,0.35 -0.13,0.73 -0.19,1.09a6.51,6.51 0,0 0,-0.05 1.11v2.26q-0.04,9.1 -0.08,18.92c-0.05,13.08 -0.11,27.03 -0.17,41.75s-0.13,30.13 -0.19,46.14q-0.05,12 -0.12,24.41 0,6.2 -0.05,12.48v3.15a9.78,9.78 0,0 0,0.37 3.1A9.31,9.31 0,0 0,53.86 171.76a9.92,9.92 0,0 0,6.02 1.64l6.41,0.03 12.69,0.06 24.81,0.12 12.09,0.06h4.47c0.5,0 0.99,0 1.48,-0.02a9.46,9.46 0,0 0,5.35 -2.02,9.81 9.81,0 0,0 1.94,-2.1 9.09,9.09 0,0 0,1.19 -2.56,9.52 9.52,0 0,0 0.37,-2.78v-2.83q0.03,-5.65 0.05,-11.16c0.14,-29.4 0.26,-55.87 0.36,-78.11s0.2,-40.23 0.27,-52.67q0,-2.33 0.02,-4.4a9.41,9.41 0,0 0,-0.68 -3.76,9.48 9.48,0 0,0 -7.44,-5.76 7.07,7.07 0,0 0,-0.96 -0.09A2.09,2.09 0,0 1,121.99 5.4Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M148.74,92.08c6.67,0.17 13.42,0.34 19.87,2.06s12.69,5.12 16.51,10.59c4.22,6.02 5.06,13.72 5.47,21.05a234.92,234.92 0,0 1,-0.57 36.54c-0.6,6.15 -2.79,11.86 -8.5,14.2 -6.88,2.82 -16.12,0 -16.12,0"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M166.64,175.05h1l2.85,-0.02a32.31,32.31 0,0 0,4.51 -0.23c0.45,-0.07 0.9,-0.12 1.35,-0.24l0.69,-0.15c0.23,-0.06 0.45,-0.14 0.71,-0.21 0.48,-0.13 0.95,-0.33 1.44,-0.51a13.77,13.77 0,0 0,1.44 -0.71,10.43 10.43,0 0,0 2.7,-2.14 8.14,8.14 0,0 0,1.76 -3.24,38.69 38.69,0 0,0 1.01,-8.22c0.09,-2.92 0.06,-6 0.09,-9.19s0.03,-6.48 0.05,-9.86 0.05,-6.68 -0.06,-9.87a67.05,67.05 0,0 0,-0.87 -9.13,34.39 34.39,0 0,0 -5.59,-14.34 31.99,31.99 0,0 0,-3.98 -4.43c-1.28,-1.2 -2.44,-2.19 -3.38,-2.98l-2.19,-1.83 -0.56,-0.48a2.17,2.17 0,0 1,-0.19 -0.17s0.07,0.05 0.2,0.15l0.58,0.45 2.22,1.8c0.95,0.78 2.12,1.76 3.42,2.96a31.62,31.62 0,0 1,4.03 4.43,34.52 34.52,0 0,1 5.67,14.42 66.78,66.78 0,0 1,0.87 9.16c0.12,3.19 0.08,6.49 0.07,9.87s-0.03,6.68 -0.05,9.87 0,6.26 -0.1,9.19a38.94,38.94 0,0 1,-1.04 8.26,8.33 8.33,0 0,1 -1.8,3.31 10.64,10.64 0,0 1,-2.73 2.17,14.5 14.5,0 0,1 -1.46,0.72c-0.5,0.18 -0.98,0.38 -1.47,0.5l-0.71,0.2 -0.7,0.15c-0.45,0.11 -0.9,0.16 -1.35,0.23a31.26,31.26 0,0 1,-4.51 0.19h-3.6Z"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M186.3,142.03a6.66,6.66 0,0 1,2.34 -0.42,6.79 6.79,0 0,1 2.37,0.2c0,0.07 -1.06,-0.03 -2.36,0.04S186.31,142.1 186.3,142.03Z"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M157.46,92.43h0.68c0.45,0 1.11,0 1.96,0.08a30.22,30.22 0,0 1,7.03 1.5l1.1,0.41 0.57,0.21 0.56,0.25 1.16,0.53c0.4,0.18 0.77,0.4 1.17,0.61a32.01,32.01 0,0 1,4.78 3.12,32.9 32.9,0 0,1 4.6,4.32 24.19,24.19 0,0 1,3.72 5.66,39.21 39.21,0 0,1 3.33,12.62 93.27,93.27 0,0 1,0.45 10.66c0,3.04 0,5.49 0.06,7.19 0.03,0.84 0.05,1.49 0.06,1.96v0.5a1.04,1.04 0,0 1,0 0.18,0.74 0.74,0 0,1 0,-0.17 2.86,2.86 0,0 0,-0.04 -0.51c-0.03,-0.45 -0.06,-1.1 -0.1,-1.95 -0.07,-1.7 -0.1,-4.16 -0.14,-7.21a104.74,104.74 0,0 0,-0.52 -10.64,39.31 39.31,0 0,0 -3.32,-12.53 23.81,23.81 0,0 0,-3.68 -5.61,32.26 32.26,0 0,0 -4.56,-4.3 31.73,31.73 0,0 0,-4.74 -3.12c-0.39,-0.21 -0.77,-0.45 -1.16,-0.61l-1.15,-0.53 -0.56,-0.26 -0.56,-0.21 -1.09,-0.41a31.48,31.48 0,0 0,-6.99 -1.56c-0.84,-0.07 -1.5,-0.09 -1.95,-0.12l-0.51,-0.03a0.75,0.75 0,0 1,-0.17 -0.01Z"
|
||||
android:fillColor="#e0e0e0"/>
|
||||
<path
|
||||
android:pathData="M153.29,92.41s1.64,-4.32 7.46,-3.5c0,0 2.6,-0.14 3.07,1.3 0,0 -5.43,-1.35 -7.74,2.41Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M169.89,97.68h-3.41s-0.66,-9.01 -8.94,-8.67C157.55,89.02 167.83,85.56 169.89,97.68Z"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M186.35,147.54l4.89,0.68 -0.49,1.74 -4.57,-0.35Z"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M186.65,149.11a3.99,3.99 0,0 1,0.57 -0.88l0.07,-0.09 0.08,0.09 0.69,0.83 -0.16,-0.02 0.49,-0.36 0.51,-0.37 0.09,-0.07 0.07,0.09 0.63,0.9 -0.13,-0.02a4.17,4.17 0,0 1,0.9 -0.52,3.8 3.8,0 0,1 -0.77,0.67l-0.09,0.03 -0.05,-0.07 -0.67,-0.86 0.16,0.02 -0.5,0.37 -0.49,0.36 -0.09,0.07 -0.07,-0.09 -0.65,-0.86h0.14a3.97,3.97 0,0 1,-0.72 0.77Z"
|
||||
android:fillColor="#e8505b"/>
|
||||
<path
|
||||
android:pathData="M115.23,179.75a15.54,15.54 0,0 1,-0.76 -4.39c0.19,-1.31 1.94,-2.49 1.94,-2.49l-1.9,-49.41s-0.24,-21.63 11.19,-28.33l6.83,-1.72 16.84,-1c0.55,0.18 20.34,7.62 23.06,10.53l-8.53,43.58s1.04,12.87 2.07,22.13c0.21,1.89 1.63,11.24 1.63,11.24Z"
|
||||
android:fillColor="#005f9a"/>
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M165.65,165.74c-0.16,1.2 -0.62,2.66 -1.77,3.04a7.54,7.54 0,0 1,-3.6 0.05c-4.22,-0.75 -8.11,-2.73 -11.92,-4.69 -7.12,-3.66 -14.32,-7.36 -20.47,-12.5 -0.87,-0.72 -1.8,-1.84 -1.26,-2.84 0.6,-1.13 2.29,-0.75 3.45,-0.21 12.09,5.57 23.49,11.58 35.57,17.16"
|
||||
android:strokeAlpha="0.3"
|
||||
android:fillAlpha="0.3"/>
|
||||
<path
|
||||
android:pathData="M123.14,96.48s-7.54,2.51 -9.98,9.5c-2.7,7.72 -4.48,22.69 -4.48,22.69l7.44,0.94Z"
|
||||
android:fillColor="#005f9a"/>
|
||||
<path
|
||||
android:pathData="M172.42,102.94a42.14,42.14 0,0 1,6.01 11.78c1.96,6.46 3.09,25.18 3.09,25.18l-20.28,-0.28 -1.08,-16.48S158.13,95.66 172.42,102.94Z"
|
||||
android:fillColor="#005f9a"/>
|
||||
<path
|
||||
android:pathData="M111.35,112.71a2.4,2.4 0,0 1,0.56 -0.53,2.75 2.75,0 0,1 2.13,-0.41 19.03,19.03 0,0 1,3.19 1.4,3.6 3.6,0 0,0 2.09,0.26 5.6,5.6 0,0 0,2.06 -1.21,5.68 5.68,0 0,1 1.13,-0.71 1.8,1.8 0,0 1,1.4 -0.06,2.36 2.36,0 0,1 1.09,0.97c0.28,0.41 0.5,0.85 0.8,1.24a2.22,2.22 0,0 0,1.14 0.9,2.7 2.7,0 0,0 1.5,0 5.78,5.78 0,0 0,1.47 -0.63c0.45,-0.28 0.9,-0.61 1.4,-0.9a6.66,6.66 0,0 1,1.57 -0.76,2.98 2.98,0 0,1 1.8,0 4.72,4.72 0,0 1,1.56 0.95c0.45,0.39 0.9,0.82 1.37,1.2a3.48,3.48 0,0 0,1.6 0.78,3.29 3.29,0 0,0 1.8,-0.19 29,29 0,0 0,3.36 -1.87,6.23 6.23,0 0,1 1.83,-0.73 3.65,3.65 0,0 1,1.96 0.15c1.23,0.48 2.14,1.41 3.23,1.93a3.88,3.88 0,0 0,0.84 0.3,3.36 3.36,0 0,0 0.87,0.06 4.9,4.9 0,0 0,1.68 -0.48,31.72 31.72,0 0,1 3.15,-1.52 3.42,3.42 0,0 1,1.7 -0.15,3.19 3.19,0 0,1 1.48,0.76 8.11,8.11 0,0 0,2.42 1.86,2.81 2.81,0 0,0 1.42,0.04 10.47,10.47 0,0 0,1.35 -0.41,4.89 4.89,0 0,1 2.66,-0.42 2.78,2.78 0,0 1,1.14 0.56c0.33,0.25 0.62,0.53 0.9,0.78a4.87,4.87 0,0 0,0.9 0.65,2.89 2.89,0 0,0 0.97,0.31 4.06,4.06 0,0 0,1.84 -0.19,5.52 5.52,0 0,0 1.4,-0.72 12.28,12.28 0,0 0,1.66 -1.44l0.41,-0.41a0.77,0.77 0,0 1,0.14 -0.13s-0.04,0.05 -0.13,0.15l-0.39,0.42a11.81,11.81 0,0 1,-1.64 1.48,5.57 5.57,0 0,1 -1.41,0.74 4.15,4.15 0,0 1,-1.9 0.21,3 3,0 0,1 -1.02,-0.32 5.18,5.18 0,0 1,-0.9 -0.66,4.64 4.64,0 0,0 -1.99,-1.3 4.93,4.93 0,0 0,-2.56 0.43,10.9 10.9,0 0,1 -1.38,0.42 3.03,3.03 0,0 1,-1.51 -0.04,3.7 3.7,0 0,1 -1.35,-0.82c-0.4,-0.35 -0.76,-0.73 -1.17,-1.07a2.92,2.92 0,0 0,-1.39 -0.71,3.23 3.23,0 0,0 -1.6,0.15 34.55,34.55 0,0 0,-3.11 1.52,5.02 5.02,0 0,1 -1.75,0.5 3.63,3.63 0,0 1,-0.94 -0.06,4.2 4.2,0 0,1 -0.9,-0.31c-1.14,-0.55 -2.05,-1.47 -3.21,-1.91a3.39,3.39 0,0 0,-1.83 -0.14,6.2 6.2,0 0,0 -1.77,0.71 27.43,27.43 0,0 1,-3.39 1.89,3.6 3.6,0 0,1 -1.92,0.19 3.73,3.73 0,0 1,-1.7 -0.83c-0.98,-0.76 -1.76,-1.75 -2.87,-2.12a2.75,2.75 0,0 0,-1.66 0,6.44 6.44,0 0,0 -1.51,0.74c-0.48,0.29 -0.93,0.63 -1.41,0.9a6.01,6.01 0,0 1,-1.52 0.65,2.92 2.92,0 0,1 -1.62,0 2.43,2.43 0,0 1,-1.24 -0.96c-0.3,-0.41 -0.53,-0.86 -0.79,-1.26a2.25,2.25 0,0 0,-1 -0.9,1.62 1.62,0 0,0 -1.27,0.05 5.29,5.29 0,0 0,-1.1 0.68,5.98 5.98,0 0,1 -2.13,1.22 3.74,3.74 0,0 1,-2.17 -0.28c-1.27,-0.5 -2.21,-1.27 -3.15,-1.43a2.74,2.74 0,0 0,-2.09 0.36A5.28,5.28 0,0 0,111.35 112.71Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M108.96,124.89a1.09,1.09 0,0 1,0.2 0l0.59,0.06a5.04,5.04 0,0 0,2.22 -0.06c0.48,-0.1 1.01,-0.2 1.6,-0.3s1.21,-0.24 1.91,-0.32a5.29,5.29 0,0 1,2.25 0.16c0.77,0.22 1.51,0.62 2.33,0.9a4.51,4.51 0,0 0,2.65 0.08c0.9,-0.22 1.8,-0.64 2.8,-0.98a5.27,5.27 0,0 1,3.15 -0.31c1.09,0.31 1.97,1.11 3.06,1.38a2.45,2.45 0,0 0,0.83 0.06,3.87 3.87,0 0,0 0.83,-0.2c0.55,-0.19 1.08,-0.45 1.66,-0.67a2.65,2.65 0,0 1,1.87 -0.06,6.67 6.67,0 0,1 1.58,1.04 3.78,3.78 0,0 0,0.78 0.47,2.13 2.13,0 0,0 0.9,0.17 4.78,4.78 0,0 0,1.8 -0.54,10.65 10.65,0 0,1 1.84,-0.74 3,3 0,0 1,1.02 -0.07,2.86 2.86,0 0,1 0.98,0.32 17.12,17.12 0,0 1,1.65 1.13,4.01 4.01,0 0,0 0.84,0.45 2.16,2.16 0,0 0,0.45 0.13l0.23,0.04h0.23a5.13,5.13 0,0 0,1.84 -0.38c0.6,-0.22 1.18,-0.47 1.8,-0.65a3.57,3.57 0,0 1,1.9 -0.14,3.51 3.51,0 0,1 1.6,0.96 12.35,12.35 0,0 0,1.32 1.19,2.46 2.46,0 0,0 1.59,0.45 4.32,4.32 0,0 0,1.59 -0.48c0.5,-0.24 0.97,-0.53 1.46,-0.79a5.38,5.38 0,0 1,3.06 -0.9,5.9 5.9,0 0,1 2.7,1.27 15.51,15.51 0,0 0,2.25 1.52,6.61 6.61,0 0,0 2.36,0.64 8.4,8.4 0,0 0,2.19 -0.17,7.83 7.83,0 0,0 3.15,-1.54 7.21,7.21 0,0 0,1.47 -1.68c0.13,-0.22 0.21,-0.4 0.28,-0.51a1.58,1.58 0,0 1,0.1 -0.18,1.1 1.1,0 0,1 -0.08,0.19c-0.06,0.12 -0.14,0.3 -0.26,0.53A6.8,6.8 0,0 1,178.08 128.07a7.86,7.86 0,0 1,-3.18 1.6,8.24 8.24,0 0,1 -2.23,0.19 6.67,6.67 0,0 1,-2.42 -0.64,15.18 15.18,0 0,1 -2.29,-1.52 5.76,5.76 0,0 0,-2.62 -1.22,5.09 5.09,0 0,0 -2.95,0.87c-0.47,0.27 -0.95,0.55 -1.46,0.8a4.53,4.53 0,0 1,-1.66 0.51,2.7 2.7,0 0,1 -1.72,-0.49 11.86,11.86 0,0 1,-1.35 -1.21,3.28 3.28,0 0,0 -1.5,-0.9 3.36,3.36 0,0 0,-1.78 0.14c-0.6,0.18 -1.18,0.45 -1.78,0.65a5.28,5.28 0,0 1,-1.92 0.4h-0.26l-0.25,-0.05a2.04,2.04 0,0 1,-0.49 -0.14,4.3 4.3,0 0,1 -0.9,-0.48 18,18 0,0 0,-1.63 -1.12,2.58 2.58,0 0,0 -0.9,-0.29 2.89,2.89 0,0 0,-0.94 0.06,10.73 10.73,0 0,0 -1.8,0.72 5.07,5.07 0,0 1,-1.88 0.56,2.51 2.51,0 0,1 -0.98,-0.19 4.06,4.06 0,0 1,-0.83 -0.5,6.94 6.94,0 0,0 -1.52,-1.02 2.45,2.45 0,0 0,-1.72 0.06c-0.56,0.19 -1.1,0.47 -1.66,0.67a3.94,3.94 0,0 1,-0.9 0.21,2.76 2.76,0 0,1 -0.9,-0.06c-1.17,-0.3 -2.04,-1.1 -3.07,-1.39a5.09,5.09 0,0 0,-3.06 0.29,29.51 29.51,0 0,1 -2.82,0.97 4.65,4.65 0,0 1,-2.74 -0.1c-0.84,-0.28 -1.57,-0.68 -2.32,-0.9a5.14,5.14 0,0 0,-2.17 -0.17c-0.69,0.07 -1.32,0.21 -1.91,0.31s-1.12,0.18 -1.6,0.28c-0.24,0.05 -0.45,0.1 -0.69,0.13a2.55,2.55 0,0 1,-0.61 0c-0.37,-0.04 -0.69,-0.09 -0.95,-0.12l-0.58,-0.08a1.03,1.03 0,0 1,-0.19 -0.01Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M116.46,135.51h0.14l0.39,0.04c0.34,0.04 0.85,0.1 1.5,0.2 1.3,0.18 3.15,0.56 5.5,0.76a19.2,19.2 0,0 0,3.82 -0.07,9.07 9.07,0 0,1 2.16,0 3.86,3.86 0,0 1,1.1 0.32,5.49 5.49,0 0,1 0.98,0.64 6.86,6.86 0,0 0,1.95 1.27,2.04 2.04,0 0,0 1.15,0 7.95,7.95 0,0 0,1.14 -0.45,4.46 4.46,0 0,1 1.24,-0.41 1.94,1.94 0,0 1,1.32 0.28c0.78,0.47 1.29,1.26 2.08,1.6a3.81,3.81 0,0 0,2.51 -0.11,9.82 9.82,0 0,1 2.53,-0.59 2.84,2.84 0,0 1,1.27 0.27,4.54 4.54,0 0,1 1.04,0.7 8.93,8.93 0,0 0,1.86 1.43,2.83 2.83,0 0,0 2.14,0c0.69,-0.22 1.33,-0.55 2.02,-0.71a2.96,2.96 0,0 1,2.01 0.15,1.63 1.63,0 0,1 0.69,0.69 6.24,6.24 0,0 1,0.31 0.86,1.91 1.91,0 0,0 0.39,0.72 1.58,1.58 0,0 0,0.64 0.42,2.38 2.38,0 0,0 1.43,0 2.56,2.56 0,0 0,1.07 -0.66,4.46 4.46,0 0,0 0.65,-0.86 9.45,9.45 0,0 0,0.63 -1.35c0.06,-0.15 0.11,-0.27 0.14,-0.37a0.52,0.52 0,0 1,0.06 -0.12,0.6 0.6,0 0,1 -0.04,0.13l-0.12,0.37a8.42,8.42 0,0 1,-0.6 1.39,4.22 4.22,0 0,1 -0.65,0.9 2.7,2.7 0,0 1,-1.11 0.71,2.51 2.51,0 0,1 -1.51,0.02 1.71,1.71 0,0 1,-0.72 -0.45,2.08 2.08,0 0,1 -0.45,-0.77 6.53,6.53 0,0 0,-0.31 -0.83,1.48 1.48,0 0,0 -0.62,-0.62 2.78,2.78 0,0 0,-1.89 -0.12c-0.66,0.15 -1.3,0.49 -2.01,0.72a4.17,4.17 0,0 1,-1.12 0.22,2.63 2.63,0 0,1 -1.17,-0.22 9.1,9.1 0,0 1,-1.91 -1.46,4.74 4.74,0 0,0 -0.99,-0.67 2.7,2.7 0,0 0,-1.17 -0.24,9.76 9.76,0 0,0 -2.47,0.58 6.88,6.88 0,0 1,-1.31 0.29,2.7 2.7,0 0,1 -1.35,-0.19c-0.88,-0.38 -1.39,-1.18 -2.11,-1.61a1.7,1.7 0,0 0,-1.17 -0.25,4.22 4.22,0 0,0 -1.17,0.39 7.95,7.95 0,0 1,-1.18 0.48,2.25 2.25,0 0,1 -1.27,0 6.59,6.59 0,0 1,-2.02 -1.32,5.09 5.09,0 0,0 -0.94,-0.62 3.67,3.67 0,0 0,-1.04 -0.31,8.92 8.92,0 0,0 -2.11,0 19.4,19.4 0,0 1,-3.85 0.04c-2.35,-0.22 -4.2,-0.63 -5.5,-0.83l-1.49,-0.25 -0.39,-0.06Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M115.83,165.57l0.14,-0.05 0.39,-0.14c0.35,-0.12 0.86,-0.31 1.52,-0.52a11.67,11.67 0,0 1,2.49 -0.58,3.6 3.6,0 0,1 1.59,0.27 7.48,7.48 0,0 0,1.69 0.48,3.65 3.65,0 0,0 1.85,-0.41 10.51,10.51 0,0 1,1.99 -0.8,4.88 4.88,0 0,1 2.3,0.14c0.76,0.2 1.51,0.5 2.3,0.74a5,5 0,0 0,2.45 0.21,15.44 15.44,0 0,0 2.45,-0.95 4.1,4.1 0,0 1,1.35 -0.32,2.45 2.45,0 0,1 1.38,0.37c0.82,0.49 1.41,1.29 2.28,1.61a2.25,2.25 0,0 0,1.33 0.03,8.14 8.14,0 0,0 1.29,-0.49 9.48,9.48 0,0 1,1.3 -0.51,2.45 2.45,0 0,1 1.41,-0.03 2.77,2.77 0,0 1,1.14 0.76c0.31,0.32 0.6,0.65 0.9,0.92a2.51,2.51 0,0 0,2.29 0.48c0.8,-0.16 1.55,-0.45 2.31,-0.67a4.69,4.69 0,0 1,1.17 -0.18,2.16 2.16,0 0,1 1.12,0.28 2.25,2.25 0,0 1,0.82 0.76c0.21,0.3 0.37,0.61 0.54,0.9a2.53,2.53 0,0 0,1.31 1.31,2.25 2.25,0 0,0 1.67,-0.18 3.83,3.83 0,0 0,1.23 -0.94,11.59 11.59,0 0,0 1.3,-2.16 9.02,9.02 0,0 1,0.85 -1.37,3.1 3.1,0 0,1 0.38,-0.41s-0.13,0.14 -0.34,0.45a9.69,9.69 0,0 0,-0.81 1.38,11.36 11.36,0 0,1 -1.28,2.21 3.95,3.95 0,0 1,-1.27 0.99,2.37 2.37,0 0,1 -1.8,0.19 2.7,2.7 0,0 1,-1.41 -1.37,3.61 3.61,0 0,0 -1.29,-1.58 3.03,3.03 0,0 0,-2.14 -0.07c-0.74,0.19 -1.5,0.51 -2.32,0.68a3.32,3.32 0,0 1,-1.28 0.05,2.7 2.7,0 0,1 -0.64,-0.19 2.74,2.74 0,0 1,-0.56 -0.37c-0.34,-0.29 -0.62,-0.63 -0.93,-0.93a2.49,2.49 0,0 0,-1.05 -0.7,2.25 2.25,0 0,0 -1.27,0.03 9.61,9.61 0,0 0,-1.27 0.5,7.57 7.57,0 0,1 -1.33,0.5 2.5,2.5 0,0 1,-1.47 -0.04,15.42 15.42,0 0,1 -2.32,-1.63 2.22,2.22 0,0 0,-1.25 -0.33,3.85 3.85,0 0,0 -1.28,0.3 15.35,15.35 0,0 1,-2.48 0.95,5.21 5.21,0 0,1 -2.55,-0.22c-0.8,-0.24 -1.55,-0.54 -2.29,-0.74a4.73,4.73 0,0 0,-2.2 -0.14,10.59 10.59,0 0,0 -1.96,0.77 3.81,3.81 0,0 1,-1.94 0.41,7.33 7.33,0 0,1 -1.72,-0.5 3.55,3.55 0,0 0,-1.53 -0.28,12.04 12.04,0 0,0 -2.47,0.54l-1.53,0.48 -0.41,0.11A0.45,0.45 0,0 1,115.83 165.57Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M141.15,154.4a1.47,1.47 0,0 1,-0.26 0.17,5.92 5.92,0 0,1 -0.79,0.36 6.52,6.52 0,0 1,-3.18 0.33,6.7 6.7,0 0,1 -1.04,-0.24c-0.36,-0.11 -0.71,-0.28 -1.07,-0.43a2.51,2.51 0,0 0,-1.14 -0.23,2.42 2.42,0 0,0 -1.14,0.49c-0.36,0.25 -0.7,0.55 -1.11,0.81a2.7,2.7 0,0 1,-0.68 0.3,1.74 1.74,0 0,1 -0.37,0.05 1.35,1.35 0,0 1,-0.38 0,8.87 8.87,0 0,1 -2.74,-1.26 2.43,2.43 0,0 0,-1.39 -0.36l-0.17,0.02a1.13,1.13 0,0 0,-0.16 0.05,1.18 1.18,0 0,0 -0.31,0.14 2.82,2.82 0,0 0,-0.53 0.45,9.07 9.07,0 0,1 -0.99,1.05 1.46,1.46 0,0 1,-0.67 0.31,1.23 1.23,0 0,1 -0.72,-0.1 2.7,2.7 0,0 1,-0.95 -0.95,9.06 9.06,0 0,0 -0.72,-0.98 2.51,2.51 0,0 0,-1.91 -0.76,2.83 2.83,0 0,0 -1.62,0.65 3.89,3.89 0,0 0,-0.94 0.99,2.04 2.04,0 0,0 -0.37,1.08 0.87,0.87 0,0 1,0 -0.3,2 2,0 0,1 0.3,-0.82 3.86,3.86 0,0 1,0.94 -1.02,3 3,0 0,1 1.69,-0.72 2.67,2.67 0,0 1,2.07 0.8,9.7 9.7,0 0,1 0.73,0.99 2.51,2.51 0,0 0,0.87 0.87,1.08 1.08,0 0,0 1.17,-0.19 10.14,10.14 0,0 0,0.96 -1.03,2.94 2.94,0 0,1 0.57,-0.5 1.64,1.64 0,0 1,0.36 -0.17l0.19,-0.06 0.2,-0.03a2.7,2.7 0,0 1,1.52 0.38,9.19 9.19,0 0,0 2.66,1.25 1.94,1.94 0,0 0,1.29 -0.31c0.39,-0.23 0.74,-0.53 1.11,-0.79a2.22,2.22 0,0 1,2.48 -0.26c0.37,0.16 0.71,0.32 1.05,0.45a6.94,6.94 0,0 0,1.01 0.25,6.7 6.7,0 0,0 3.12,-0.25C140.78,154.61 141.13,154.38 141.15,154.4Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M116.27,177.61a0.54,0.54 0,0 1,0.14 0.04l0.17,0.05 0.23,0.04a2.82,2.82 0,0 0,1.51 -0.37,11.41 11.41,0 0,1 2.32,-1.01 2.63,2.63 0,0 1,0.78 -0.04,2.54 2.54,0 0,1 0.79,0.26 11.79,11.79 0,0 1,1.45 1.02,2.59 2.59,0 0,0 1.73,0.61 6.2,6.2 0,0 0,1.93 -0.7,4.61 4.61,0 0,1 1.07,-0.36 3.2,3.2 0,0 1,1.17 0.03c0.78,0.14 1.52,0.48 2.29,0.69a4.81,4.81 0,0 0,2.43 0.04,17.34 17.34,0 0,0 2.46,-0.82 11.37,11.37 0,0 1,2.62 -0.76,4.96 4.96,0 0,1 2.78,0.45c0.87,0.38 1.67,0.87 2.51,1.2a3.89,3.89 0,0 0,2.57 0.24c1.68,-0.48 2.91,-1.84 4.51,-2.37a3.69,3.69 0,0 1,2.41 0,8.41 8.41,0 0,1 2.01,1.04c0.61,0.4 1.18,0.81 1.76,1.14a6.46,6.46 0,0 0,1.77 0.71,6.67 6.67,0 0,0 3.26,-0.14 6.76,6.76 0,0 0,2.21 -1.13,6.87 6.87,0 0,0 1.44,-1.56 0.7,0.7 0,0 1,-0.07 0.13l-0.22,0.35a5.99,5.99 0,0 1,-1.1 1.16,6.84 6.84,0 0,1 -2.23,1.15 6.26,6.26 0,0 1,-5.16 -0.54c-0.6,-0.33 -1.17,-0.74 -1.77,-1.13a8.15,8.15 0,0 0,-1.97 -1.01,3.46 3.46,0 0,0 -2.28,0 9.77,9.77 0,0 0,-2.17 1.18A8.66,8.66 0,0 1,147.29 178.41a4.17,4.17 0,0 1,-2.7 -0.24c-0.87,-0.35 -1.66,-0.84 -2.52,-1.21a4.74,4.74 0,0 0,-2.66 -0.42,11.19 11.19,0 0,0 -2.57,0.74 17.09,17.09 0,0 1,-2.5 0.82,5.07 5.07,0 0,1 -2.53,-0.05c-0.8,-0.22 -1.52,-0.55 -2.25,-0.69a2.92,2.92 0,0 0,-1.1 -0.03,4.28 4.28,0 0,0 -1.03,0.33 6.35,6.35 0,0 1,-2 0.7,2.74 2.74,0 0,1 -1.84,-0.66 12.02,12.02 0,0 0,-1.42 -1.02,2.45 2.45,0 0,0 -0.74,-0.26 2.49,2.49 0,0 0,-0.74 0.03,11.81 11.81,0 0,0 -2.3,0.97 2.79,2.79 0,0 1,-1.55 0.33,0.87 0.87,0 0,1 -0.24,-0.05l-0.16,-0.07a0.64,0.64 0,0 1,-0.17 -0.03Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:pathData="M117.39,100.13a3.09,3.09 0,0 0,0.45 0.41,3.68 3.68,0 0,0 1.55,0.68 9.05,9.05 0,0 0,2.7 0.05c0.53,-0.04 1.1,-0.09 1.7,-0.09a5.28,5.28 0,0 1,1.89 0.34,17.65 17.65,0 0,1 1.87,0.98 6.49,6.49 0,0 0,1 0.45,4.32 4.32,0 0,0 1.11,0.18 11.13,11.13 0,0 0,2.39 -0.27,8.84 8.84,0 0,1 2.6,-0.2 6.35,6.35 0,0 1,2.53 1.05,6.91 6.91,0 0,0 2.52,1.12 3.99,3.99 0,0 0,1.4 -0.09,8.76 8.76,0 0,0 1.35,-0.51 17.25,17.25 0,0 1,2.79 -1.19,4.02 4.02,0 0,1 1.55,-0.09 4.46,4.46 0,0 1,1.44 0.54c0.88,0.5 1.63,1.14 2.49,1.53a4.61,4.61 0,0 0,2.7 0.33,16.54 16.54,0 0,0 2.61,-0.68 14.62,14.62 0,0 1,2.53 -0.61,6.93 6.93,0 0,1 2.45,0.15 30.78,30.78 0,0 1,4.11 1.52,6.91 6.91,0 0,0 3.49,0.55 8.28,8.28 0,0 0,2.61 -0.66,5.07 5.07,0 0,0 1.85,-1.35 2.85,2.85 0,0 1,-0.39 0.45,4.84 4.84,0 0,1 -1.42,0.97 8.41,8.41 0,0 1,-2.64 0.7,7.81 7.81,0 0,1 -1.71,0 7.01,7.01 0,0 1,-1.85 -0.51,30.63 30.63,0 0,0 -4.1,-1.48 6.67,6.67 0,0 0,-2.38 -0.14,15.28 15.28,0 0,0 -2.49,0.61 17.24,17.24 0,0 1,-2.64 0.69,4.9 4.9,0 0,1 -2.83,-0.35c-0.9,-0.41 -1.65,-1.06 -2.51,-1.54a4.23,4.23 0,0 0,-1.35 -0.51,3.72 3.72,0 0,0 -1.46,0.09 16.8,16.8 0,0 0,-2.75 1.18,9.07 9.07,0 0,1 -1.41,0.52 4.14,4.14 0,0 1,-1.49 0.09,7.03 7.03,0 0,1 -2.61,-1.16 6.16,6.16 0,0 0,-2.44 -1.02c-1.74,-0.19 -3.37,0.53 -4.96,0.45a4.37,4.37 0,0 1,-1.16 -0.2,6.31 6.31,0 0,1 -1.03,-0.45 18,18 0,0 0,-1.84 -0.98,7.84 7.84,0 0,0 -3.53,-0.28 8.94,8.94 0,0 1,-2.73 -0.09,3.61 3.61,0 0,1 -1.56,-0.73A2.12,2.12 0,0 1,117.39 100.13Z"
|
||||
android:fillColor="#fafafa"/>
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M151.19,105.31l6.36,4.4c-2.02,5.01 -0.15,11.98 1.6,17.67 0.68,2.22 2.94,4.51 2.83,6.84s1.83,6.26 -0.41,6.84a5.26,5.26 0,0 1,-4.34 -1.03,12.13 12.13,0 0,1 -2.96,-3.51C149.8,129.3 147.71,115.48 151.19,105.31Z"
|
||||
android:strokeAlpha="0.3"
|
||||
android:fillAlpha="0.3"/>
|
||||
<path
|
||||
android:pathData="M117.69,173.77a0.82,0.82 0,0 1,0.24 0.03l0.69,0.13 2.51,0.48c2.12,0.4 5.07,0.9 8.33,1.35s6.23,0.77 8.38,0.96l2.55,0.22 0.69,0.07a0.86,0.86 0,0 1,0.24 0.04,1.03 1.03,0 0,1 -0.24,0l-0.69,-0.02c-0.61,-0.03 -1.48,-0.08 -2.56,-0.15 -2.15,-0.16 -5.13,-0.45 -8.4,-0.9s-6.21,-1 -8.33,-1.44c-1.06,-0.22 -1.91,-0.41 -2.5,-0.55l-0.68,-0.17A1.05,1.05 0,0 1,117.69 173.77Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M127.6,172.6a3.71,3.71 0,0 1,0.37 0.08c0.24,0.05 0.6,0.17 1.06,0.26a21.81,21.81 0,0 0,3.98 0.51,22.37 22.37,0 0,0 5.91,-0.55 21.36,21.36 0,0 0,12.12 -7.57,22.67 22.67,0 0,0 4.38,-8.87c0.12,-0.45 0.17,-0.82 0.23,-1.07a1.89,1.89 0,0 1,0.09 -0.37,2.38 2.38,0 0,1 -0.05,0.38c-0.05,0.25 -0.08,0.62 -0.19,1.08a20.73,20.73 0,0 1,-1.22 3.84,22.24 22.24,0 0,1 -3.07,5.14 21.82,21.82 0,0 1,-18.2 8.14,20.45 20.45,0 0,1 -3.99,-0.59c-0.45,-0.1 -0.82,-0.23 -1.05,-0.3a1.78,1.78 0,0 1,-0.36 -0.13Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M131.59,93.39a1.44,1.44 0,0 1,0 0.33v0.93a13.43,13.43 0,0 0,0.34 3.38,6.12 6.12,0 0,0 0.97,2.1 6.02,6.02 0,0 0,2.01 1.71,10.11 10.11,0 0,0 2.79,1 13.02,13.02 0,0 0,3.15 0.31,11.59 11.59,0 0,0 5.86,-1.65 9.25,9.25 0,0 0,3.36 -3.64,8.21 8.21,0 0,0 0.87,-3.25c0.03,-0.8 -0.05,-1.24 -0.02,-1.25a2.33,2.33 0,0 1,0.06 0.32,6.52 6.52,0 0,1 0.06,0.93 7.96,7.96 0,0 1,-0.82 3.32,9.3 9.3,0 0,1 -3.4,3.76 11.72,11.72 0,0 1,-5.96 1.7,13.24 13.24,0 0,1 -3.22,-0.31 10.28,10.28 0,0 1,-2.84 -1.03,6.13 6.13,0 0,1 -2.07,-1.8 6.23,6.23 0,0 1,-0.98 -2.17,12.82 12.82,0 0,1 -0.28,-3.42c0,-0.41 0.04,-0.72 0.05,-0.93A1.44,1.44 0,0 1,131.59 93.39Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M128.83,94.17s-10.96,0.42 -13.57,11.36c-3.02,12.69 -1.19,26.66 2.6,33.67l0.18,-12.47a57.32,57.32 0,0 1,6.1 -24.91Z"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M115.95,130.16a2.1,2.1 0,0 1,-0.03 -0.38c0,-0.27 0,-0.63 -0.04,-1.1a15.78,15.78 0,0 1,0 -1.74c0.03,-0.68 0,-1.45 0.08,-2.3q0.04,-0.64 0.08,-1.35c0.03,-0.45 0.09,-0.94 0.14,-1.44 0.09,-1 0.25,-2.06 0.4,-3.15a67.48,67.48 0,0 1,1.56 -7.16,66.32 66.32,0 0,1 2.41,-6.92c0.45,-1.04 0.87,-2.02 1.32,-2.92 0.22,-0.45 0.42,-0.9 0.63,-1.3s0.43,-0.81 0.63,-1.18c0.39,-0.76 0.8,-1.41 1.14,-2s0.65,-1.08 0.9,-1.48l0.6,-0.9a2.04,2.04 0,0 1,0.22 -0.31,2.9 2.9,0 0,1 -0.19,0.34l-0.56,0.92c-0.25,0.41 -0.55,0.9 -0.88,1.5s-0.73,1.25 -1.1,2.01l-0.61,1.18c-0.21,0.41 -0.41,0.86 -0.62,1.31 -0.45,0.9 -0.85,1.88 -1.29,2.91a62.91,62.91 0,0 0,-3.96 14.04c-0.16,1.11 -0.33,2.16 -0.42,3.15 -0.05,0.5 -0.11,0.98 -0.15,1.44s-0.07,0.9 -0.09,1.33c-0.08,0.85 -0.09,1.62 -0.11,2.29s-0.04,1.26 -0.04,1.74v1.1A2.25,2.25 0,0 1,115.95 130.16Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M120.96,96.95a1.36,1.36 0,0 1,-0.13 0.29c-0.11,0.21 -0.24,0.48 -0.42,0.82 -0.37,0.7 -0.88,1.74 -1.47,3.04 -0.28,0.66 -0.61,1.35 -0.9,2.15 -0.15,0.39 -0.32,0.79 -0.45,1.21s-0.3,0.86 -0.45,1.3a50.96,50.96 0,0 0,-1.59 5.92,56.68 56.68,0 0,0 -1.01,11.08c0,1.43 0.04,2.58 0.08,3.38 0,0.38 0.03,0.69 0.03,0.92a1.25,1.25 0,0 1,0 0.32,1.99 1.99,0 0,1 -0.04,-0.32c0,-0.23 -0.05,-0.54 -0.08,-0.9 -0.07,-0.8 -0.12,-1.96 -0.15,-3.38a53.23,53.23 0,0 1,0.95 -11.13,48.52 48.52,0 0,1 1.58,-5.96c0.16,-0.45 0.31,-0.88 0.45,-1.3s0.33,-0.82 0.48,-1.21c0.3,-0.78 0.64,-1.49 0.94,-2.14 0.61,-1.29 1.14,-2.33 1.54,-3.02l0.45,-0.8A1.72,1.72 0,0 1,120.96 96.95Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M164.26,98.39s-7.37,20.04 -1.94,36.95l0.3,5.98s-4.16,-0.28 -7.3,-6.21 -4.16,-12.06 -5.22,-20.89 3.77,-20.07 3.77,-20.07S162.45,96.05 164.26,98.39Z"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M162.81,140.84a0.48,0.48 0,0 1,-0.11 -0.05l-0.31,-0.17a6.18,6.18 0,0 1,-1.05 -0.84,9.88 9.88,0 0,1 -2.33,-4.33 25.11,25.11 0,0 1,-0.72 -3.34c-0.21,-1.21 -0.38,-2.51 -0.54,-3.88a69.14,69.14 0,0 1,-0.39 -8.97,68.1 68.1,0 0,1 0.78,-8.94 54.28,54.28 0,0 1,1.53 -7.17,21.54 21.54,0 0,1 1.89,-4.57 11.83,11.83 0,0 1,0.72 -1.14l0.2,-0.28 0.08,-0.09a0.2,0.2 0,0 1,-0.05 0.11l-0.19,0.29c-0.16,0.26 -0.4,0.64 -0.68,1.16a23.08,23.08 0,0 0,-1.8 4.57,57.18 57.18,0 0,0 -1.48,7.16 71.13,71.13 0,0 0,-0.77 8.93,72.25 72.25,0 0,0 0.37,8.94c0.15,1.35 0.31,2.67 0.51,3.88a27.44,27.44 0,0 0,0.7 3.35,10.03 10.03,0 0,0 2.25,4.31A8.27,8.27 0,0 0,162.81 140.84Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M162.55,140.64a0.38,0.38 0,0 1,-0.12 -0.04l-0.35,-0.14a7.92,7.92 0,0 1,-1.24 -0.75,13.24 13.24,0 0,1 -3.36,-4.1 43.3,43.3 0,0 1,-3.22 -7.21,45.28 45.28,0 0,1 -2.13,-9.41 46.71,46.71 0,0 1,-0.12 -9.65,44.61 44.61,0 0,1 1.42,-7.76c0.32,-1.08 0.59,-2.06 0.9,-2.89s0.55,-1.56 0.82,-2.13 0.45,-1 0.59,-1.32c0.07,-0.14 0.12,-0.25 0.16,-0.34a0.71,0.71 0,0 1,0.06 -0.11,0.42 0.42,0 0,1 -0.04,0.12l-0.14,0.35c-0.13,0.32 -0.31,0.77 -0.55,1.35s-0.49,1.31 -0.79,2.14 -0.57,1.8 -0.88,2.89a45.24,45.24 0,0 0,-1.35 7.73,46.97 46.97,0 0,0 0.14,9.61 46.3,46.3 0,0 0,2.07 9.36,44.99 44.99,0 0,0 3.15,7.18 13.61,13.61 0,0 0,3.27 4.11,8.88 8.88,0 0,0 1.2,0.78l0.34,0.16Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M159.04,105.98l4.77,1.26 -0.69,1.67 -4.49,-0.9Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M159.15,107.58a3.87,3.87 0,0 1,0.67 -0.8l0.08,-0.09 0.06,0.1c0.19,0.29 0.38,0.59 0.58,0.9l-0.15,-0.04 0.53,-0.3c0.19,-0.1 0.37,-0.21 0.55,-0.3l0.1,-0.06 0.05,0.1 0.52,0.95 -0.12,-0.03a4,4 0,0 1,0.94 -0.41,3.86 3.86,0 0,1 -0.85,0.57l-0.08,0.05 -0.05,-0.08c-0.18,-0.29 -0.37,-0.6 -0.56,-0.93l0.16,0.05 -0.55,0.31 -0.53,0.3 -0.1,0.05 -0.05,-0.09 -0.54,-0.93h0.14A4.39,4.39 0,0 1,159.15 107.58Z"
|
||||
android:fillColor="#e8505b"/>
|
||||
<path
|
||||
android:pathData="M119.92,134.62l-5.2,-9.59L98.9,125.02l-0.5,0.95 13.39,22.26 15.16,0.73Z"
|
||||
android:fillColor="#455a64"/>
|
||||
<path
|
||||
android:pathData="M180.23,139.91v16.77a10.2,10.2 0,0 1,-3.75 7.89h0a10.19,10.19 0,0 1,-10.29 1.54L129.28,149.75l3.6,-12.31 29.7,9.79 -0.03,-7.63Z"
|
||||
android:fillColor="#ffbe9d"/>
|
||||
<path
|
||||
android:pathData="M119.42,135.57l-5.2,-9.59L98.4,125.98l12.89,23.21 15.16,0.73Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M134.35,138.76l-2.5,-3.1a8.68,8.68 0,0 0,-6.76 -3.23h-2.19l-1.48,1.66s-10.7,0.45 -11.09,1.8v0.68l9.15,0.61s-7.78,-0.02 -8.25,0 -2.17,-0.13 -2.14,0.78c0.03,0.75 0.9,1.35 2.25,1.54 0.55,0.08 7.3,0.67 7.3,0.67l-7.42,-0.07c-0.83,0 -0.73,1.35 -0.23,1.5 0.39,0.13 9.91,2.91 9.91,2.91a5.8,5.8 0,0 1,-2.9 0.98c-1.3,-0.09 -3.54,-1.77 -4.01,-0.98s-0.37,1.26 -0.09,1.44a33.3,33.3 0,0 0,4.38 2.05c1.03,0.28 9.4,1.6 9.4,1.6l3.02,0.49Z"
|
||||
android:fillColor="#ffbe9d"/>
|
||||
<path
|
||||
android:pathData="M100.61,129.72s-1.65,0.58 -0.82,2.7a18.19,18.19 0,0 0,3.36 5.32,1.94 1.94,0 0,0 0.66,1.9s-1.17,0.29 -0.45,2.25a2.23,2.23 0,0 0,1.39 2.93s-0.59,1.68 1.54,2.49a5.01,5.01 0,0 0,4.17 -0.59Z"
|
||||
android:fillColor="#ffbe9d"/>
|
||||
<path
|
||||
android:pathData="M103.97,137.57c1.5,0.41 3.15,0.73 4.55,1.26 0.45,0.17 0.9,0.18 1.22,0.56a1.05,1.05 0,0 1,0.03 1.35,1.46 1.46,0 0,1 -1.23,0.25 21.63,21.63 0,0 1,-4.66 -1.29"
|
||||
android:fillColor="#ffbe9d"/>
|
||||
<path
|
||||
android:pathData="M104.57,140.08c1.5,0.41 3.15,0.73 4.54,1.26 0.45,0.17 0.9,0.18 1.22,0.56a1.05,1.05 0,0 1,0.03 1.35,1.48 1.48,0 0,1 -1.23,0.25 21.89,21.89 0,0 1,-4.66 -1.31"
|
||||
android:fillColor="#ffbe9d"/>
|
||||
<path
|
||||
android:pathData="M105.42,142.67c1.5,0.41 3.15,0.73 4.55,1.25 0.45,0.18 0.9,0.19 1.21,0.57a1.04,1.04 0,0 1,0.03 1.35,1.45 1.45,0 0,1 -1.22,0.24 21.63,21.63 0,0 1,-4.66 -1.3"
|
||||
android:fillColor="#ffbe9d"/>
|
||||
<path
|
||||
android:pathData="M103.97,139.75c0,-0.06 1.09,0.31 2.42,0.68s2.43,0.61 2.42,0.67a8.9,8.9 0,0 1,-2.48 -0.45A9.28,9.28 0,0 1,103.97 139.75Z"
|
||||
android:fillColor="#eb996e"/>
|
||||
<path
|
||||
android:pathData="M103.68,141.96a27.7,27.7 0,0 1,2.75 0.78c1.51,0.45 2.75,0.76 2.74,0.82A19.68,19.68 0,0 1,103.68 141.96Z"
|
||||
android:fillColor="#eb996e"/>
|
||||
<path
|
||||
android:pathData="M104.66,144.81a14.87,14.87 0,0 1,2.58 0.52,15.37 15.37,0 0,1 2.53,0.75 14.81,14.81 0,0 1,-2.58 -0.52A14.55,14.55 0,0 1,104.66 144.81Z"
|
||||
android:fillColor="#eb996e"/>
|
||||
<path
|
||||
android:pathData="M102.71,137.27c0,-0.07 1.35,0.38 3.03,0.82s3.06,0.69 3.05,0.76a3.69,3.69 0,0 1,-0.9 -0.08,21.78 21.78,0 0,1 -2.18,-0.45 20.72,20.72 0,0 1,-2.13 -0.66,3.46 3.46,0 0,1 -0.87,-0.38Z"
|
||||
android:fillColor="#eb996e"/>
|
||||
<path
|
||||
android:pathData="M117.77,134.23a59.38,59.38 0,0 1,7.53 -0.05,61.61 61.61,0 0,1 -7.53,0.05Z"
|
||||
android:fillColor="#eb996e"/>
|
||||
<path
|
||||
android:pathData="M106.43,130.03a0.79,0.79 0,1 0,-0.29 -0.53A0.79,0.79 0,0 0,106.43 130.03Z"
|
||||
android:fillColor="#ebebeb"/>
|
||||
<path
|
||||
android:pathData="M160.65,146.79a0.94,0.94 0,0 1,0.37 0.04,7.14 7.14,0 0,1 0.97,0.24 11.12,11.12 0,0 1,5.35 3.71,7.58 7.58,0 0,1 0.57,0.82c0.12,0.2 0.18,0.31 0.17,0.32s-0.32,-0.41 -0.87,-1.04a12.73,12.73 0,0 0,-5.27 -3.66C161.15,146.95 160.64,146.83 160.65,146.79Z"
|
||||
android:fillColor="#eb996e"/>
|
||||
<path
|
||||
android:pathData="M140.52,102.38h0a9.03,9.03 0,0 1,-8.3 -9.46c0.17,-3.42 0.35,-6.51 0.35,-6.51s-7.34,-1.14 -7.43,-8.48 1.18,-24.2 1.18,-24.2h0a25.51,25.51 0,0 1,25.63 3.23l1.09,0.83 -2.78,36.27a9.04,9.04 0,0 1,-9.73 8.32Z"
|
||||
android:fillColor="#ffbe9d"/>
|
||||
<path
|
||||
android:pathData="M132.55,86.31a17.06,17.06 0,0 0,9.57 -2.7s-2.25,5.28 -9.59,4.62Z"
|
||||
android:fillColor="#eb996e"/>
|
||||
<path
|
||||
android:pathData="M128.12,65.23a1.04,1.04 0,0 0,1.01 1.06,1 1,0 0,0 1.08,-0.95 1.05,1.05 0,0 0,-1.01 -1.06,1 1,0 0,0 -1.08,0.95Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M127.7,64.06c0.13,0.14 0.9,-0.45 2.05,-0.45s1.96,0.57 2.08,0.45c0.06,-0.06 -0.07,-0.31 -0.45,-0.57a2.9,2.9 0,0 0,-1.66 -0.51,2.78 2.78,0 0,0 -1.63,0.53C127.75,63.74 127.63,63.99 127.7,64.06Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M138.75,65.5a1.05,1.05 0,0 0,1.01 1.06,1 1,0 0,0 1.08,-0.95 1.05,1.05 0,0 0,-1.01 -1.06,1 1,0 0,0 -1.08,0.95Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M138.78,64.27c0.13,0.14 0.93,-0.45 2.06,-0.45s1.95,0.57 2.08,0.45c0.06,-0.06 -0.07,-0.31 -0.45,-0.57a2.87,2.87 0,0 0,-1.66 -0.51,2.77 2.77,0 0,0 -1.64,0.53C138.83,63.96 138.72,64.2 138.78,64.27Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M134.69,72.63a7.64,7.64 0,0 0,-1.83 -0.33c-0.29,-0.03 -0.56,-0.09 -0.61,-0.28a1.48,1.48 0,0 1,0.19 -0.86l0.85,-2.19a37.69,37.69 0,0 0,1.91 -5.74,37.88 37.88,0 0,0 -2.37,5.57q-0.42,1.15 -0.82,2.21a1.69,1.69 0,0 0,-0.15 1.13,0.71 0.71,0 0,0 0.47,0.42 1.88,1.88 0,0 0,0.49 0.07A7.37,7.37 0,0 0,134.69 72.63Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M138.01,73.41c-0.19,0 -0.19,1.21 -1.24,2.08s-2.35,0.74 -2.36,0.9c0,0.08 0.29,0.24 0.84,0.25a3.04,3.04 0,0 0,1.97 -0.69,2.64 2.64,0 0,0 0.95,-1.75C138.21,73.7 138.09,73.4 138.01,73.41Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M138.49,59.85c0.11,0.31 1.24,0.16 2.56,0.32s2.39,0.52 2.57,0.24c0.08,-0.13 -0.11,-0.42 -0.54,-0.72a4.27,4.27 0,0 0,-1.9 -0.67,4.35 4.35,0 0,0 -2.01,0.23C138.68,59.46 138.44,59.7 138.49,59.85Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M128.11,60.79c0.2,0.26 0.97,0 1.91,0s1.73,0.17 1.91,-0.1c0.08,-0.13 -0.05,-0.39 -0.39,-0.63a2.74,2.74 0,0 0,-3.07 0.09C128.13,60.4 128.02,60.67 128.11,60.79Z"
|
||||
android:fillColor="#263238"/>
|
||||
<path
|
||||
android:pathData="M152.12,65.39c0.12,-0.05 5.04,-1.49 4.88,3.53s-5.16,3.82 -5.17,3.68S152.12,65.39 152.12,65.39Z"
|
||||
android:fillColor="#ffbe9d"/>
|
||||
<path
|
||||
android:pathData="M153.43,70.74c0.02,0 0.09,0.06 0.23,0.14a0.86,0.86 0,0 0,0.65 0.04,2.16 2.16,0 0,0 1.06,-1.91 2.85,2.85 0,0 0,-0.21 -1.26,1.01 1.01,0 0,0 -0.63,-0.69 0.45,0.45 0,0 0,-0.52 0.22c-0.07,0.14 -0.05,0.24 -0.07,0.25s-0.1,-0.09 -0.06,-0.29a0.59,0.59 0,0 1,0.21 -0.31,0.67 0.67,0 0,1 0.49,-0.11 1.24,1.24 0,0 1,0.9 0.81,2.96 2.96,0 0,1 0.26,1.41 2.26,2.26 0,0 1,-1.35 2.13,0.95 0.95,0 0,1 -0.8,-0.16C153.43,70.87 153.41,70.75 153.43,70.74Z"
|
||||
android:fillColor="#eb996e"/>
|
||||
<path
|
||||
android:pathData="M123.5,47.39a7.76,7.76 0,0 1,12.05 -2.32,7.6 7.6,0 0,1 12.49,-1.62c1.41,1.6 2.14,3.76 3.79,5.11 1.42,1.16 3.36,1.55 4.8,2.7a5.54,5.54 0,0 1,-1.98 9.66,5.95 5.95,0 0,1 -2.93,8.08l-0.73,-0.3a10.44,10.44 0,0 1,-1.5 -11.53,2.62 2.62,0 0,1 -0.27,0 5.86,5.86 0,0 1,-7.63 -1.74,6.52 6.52,0 0,1 -6.99,0.29 2.7,2.7 0,0 0,-1.05 -0.48,2.51 2.51,0 0,0 -1.32,0.39 6.17,6.17 0,0 1,-3.55 0.72,3.42 3.42,0 0,1 -2.67,-1.91 0.56,0.56 0,0 1,-0.09 0,3.94 3.94,0 0,1 -2.94,-2.84A5.89,5.89 0,0 1,123.5 47.39Z"
|
||||
android:fillColor="#263238"/>
|
||||
</vector>
|
||||
@@ -38,7 +38,7 @@
|
||||
android:layout_height="match_parent"
|
||||
android:layout_below="@id/title"
|
||||
android:layout_above="@id/done_btn"
|
||||
android:layout_marginTop="15dp"
|
||||
android:layout_marginTop="5dp"
|
||||
android:layout_marginHorizontal="15dp"
|
||||
>
|
||||
|
||||
@@ -50,13 +50,51 @@
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/no_fua"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="5"
|
||||
android:orientation="vertical"
|
||||
|
||||
android:layout_marginTop="15dp"
|
||||
android:layout_marginHorizontal="15dp"
|
||||
android:gravity="center"
|
||||
>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/_40sdp"
|
||||
android:layout_height="@dimen/_40sdp"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:contentDescription="@string/apps"
|
||||
android:src="@drawable/img_apps"
|
||||
android:layout_marginBottom="15dp"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
|
||||
android:text="@string/no_frequently_used_apps"
|
||||
android:fontFamily="@font/nunito_regular"
|
||||
android:textColor="@color/black"
|
||||
android:textSize="16sp"
|
||||
android:textAlignment="center"
|
||||
|
||||
/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rv_white_apps"
|
||||
android:visibility="gone"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="5"
|
||||
android:layout_marginVertical="5dp"
|
||||
android:nestedScrollingEnabled="false"
|
||||
android:scrollbars="vertical"
|
||||
android:fadeScrollbars="false"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/tv_white_list" />
|
||||
@@ -91,6 +129,8 @@
|
||||
android:layout_weight="5"
|
||||
android:layout_marginVertical="5dp"
|
||||
android:nestedScrollingEnabled="true"
|
||||
android:scrollbars="vertical"
|
||||
android:fadeScrollbars="false"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
@@ -104,11 +144,11 @@
|
||||
android:id="@+id/done_btn"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginVertical="25dp"
|
||||
android:layout_marginBottom="15dp"
|
||||
android:layout_marginHorizontal="15dp"
|
||||
android:backgroundTint="@color/color_primary"
|
||||
android:layout_marginTop="50dp"
|
||||
android:text="Done"
|
||||
android:layout_marginTop="5dp"
|
||||
android:text="@string/done"
|
||||
android:textColor="@color/white"
|
||||
android:textAppearance="@style/TextAppearance.Material3.TitleMedium"
|
||||
android:textAllCaps="false"
|
||||
|
||||
102
app/src/main/res/layout/bottom_sheet_alert.xml
Normal file
102
app/src/main/res/layout/bottom_sheet_alert.xml
Normal file
@@ -0,0 +1,102 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:background="@drawable/top_round_corner"
|
||||
android:padding="15dp"
|
||||
android:orientation="vertical"
|
||||
android:gravity="center_horizontal"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1dp"
|
||||
android:background="@color/black"
|
||||
android:layout_marginHorizontal="100dp"/>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/image"
|
||||
android:layout_width="@dimen/_120sdp"
|
||||
android:layout_height="@dimen/_120sdp"
|
||||
android:contentDescription="@string/illustration"
|
||||
android:layout_marginVertical="25dp"
|
||||
android:scaleType="fitXY"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
|
||||
tools:text="Raj Shinde has gone out of the geofence"
|
||||
android:fontFamily="@font/nunito_semibold"
|
||||
android:textColor="@color/black"
|
||||
android:textSize="@dimen/_16ssp"
|
||||
android:textAlignment="center"
|
||||
|
||||
/>
|
||||
|
||||
<com.google.android.material.card.MaterialCardView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:cardBackgroundColor="#F4F9FF"
|
||||
app:strokeColor="#C9E0FB"
|
||||
app:strokeWidth="1dp"
|
||||
app:cardCornerRadius="5dp"
|
||||
android:layout_marginTop="15dp"
|
||||
>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:gravity="center"
|
||||
android:layout_margin="15dp">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/description_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
|
||||
tools:text="His current location"
|
||||
android:fontFamily="@font/nunito_medium"
|
||||
android:textColor="@color/black"
|
||||
android:textSize="@dimen/_14ssp"
|
||||
android:textAlignment="center"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/description"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
|
||||
tools:text="Continental Divide, Estes Park"
|
||||
android:fontFamily="@font/nunito_regular"
|
||||
android:textColor="@color/black"
|
||||
android:textSize="@dimen/_12ssp"
|
||||
android:textAlignment="center"
|
||||
android:layout_marginTop="5dp"
|
||||
/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</com.google.android.material.card.MaterialCardView>
|
||||
|
||||
<com.google.android.material.button.MaterialButton
|
||||
android:id="@+id/btn"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
|
||||
tools:text="Call patient"
|
||||
android:fontFamily="@font/nunito_bold"
|
||||
android:textColor="@color/white"
|
||||
android:textAllCaps="false"
|
||||
|
||||
android:paddingVertical="10dp"
|
||||
android:layout_marginTop="15dp"
|
||||
app:cornerRadius="5dp"
|
||||
|
||||
/>
|
||||
|
||||
</LinearLayout>
|
||||
@@ -80,19 +80,50 @@
|
||||
android:layout_marginVertical="10dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/patient_name"
|
||||
android:layout_width="wrap_content"
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
>
|
||||
|
||||
android:text="@string/none"
|
||||
android:fontFamily="@font/nunito_semibold"
|
||||
android:textColor="@color/black"
|
||||
android:textSize="@dimen/_16ssp"
|
||||
<TextView
|
||||
android:id="@+id/patient_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
|
||||
android:maxLines="1"
|
||||
android:ellipsize="end"
|
||||
/>
|
||||
android:text="@string/none"
|
||||
android:fontFamily="@font/nunito_semibold"
|
||||
android:textColor="@color/black"
|
||||
android:textSize="@dimen/_16ssp"
|
||||
|
||||
android:maxLines="1"
|
||||
android:ellipsize="end"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/refresh_btn"
|
||||
android:layout_width="20dp"
|
||||
android:layout_height="20dp"
|
||||
android:src="@drawable/ic_refresh"
|
||||
android:contentDescription="@string/refresh"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:visibility="visible"
|
||||
/>
|
||||
|
||||
<ProgressBar
|
||||
android:id="@+id/refresh_progress"
|
||||
android:visibility="gone"
|
||||
android:layout_width="20dp"
|
||||
android:layout_height="20dp"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:indeterminateTint="@color/color_primary_dark"
|
||||
android:indeterminate="true"
|
||||
/>
|
||||
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
|
||||
@@ -420,5 +420,8 @@
|
||||
<string name="call_and_message_your_loved_ones">Call and message your loved ones</string>
|
||||
<string name="select_number_to_cal_or_message">Select number to cal or message</string>
|
||||
<string name="call">Call</string>
|
||||
<string name="no_frequently_used_apps">No frequently used apps added\nPlease select an app from below list to unlock.</string>
|
||||
<string name="refresh">refresh</string>
|
||||
<string name="illustration">illustration</string>
|
||||
|
||||
</resources>
|
||||
Reference in New Issue
Block a user