This commit is contained in:
14Sandee
2024-01-02 15:40:52 +05:30
parent 5611a29b71
commit 64f22a1369
5 changed files with 524 additions and 26 deletions

View File

@@ -1,6 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="deploymentTargetDropDown">
<targetSelectedWithDropDown>
<Target>
<type value="QUICK_BOOT_TARGET" />
<deviceKey>
<Key>
<type value="VIRTUAL_DEVICE_PATH" />
<value value="$USER_HOME$/.android/avd/Pixel_7_Pro_API_33.avd" />
</Key>
</deviceKey>
</Target>
</targetSelectedWithDropDown>
<timeTargetWasSelectedWithDropDown value="2024-01-02T07:08:29.550235Z" />
<targetsSelectedWithDialog>
<Target>
<type value="QUICK_BOOT_TARGET" />

View File

@@ -392,6 +392,7 @@ public abstract class AppUtil {
public static final String IS_CALL_BLOCKING_ENABLED = "is_call_blocking_enabled";
public static final String IS_BATTERY_LOW_NOTIFICATION_SENT = "battery_low_notification_sent";
public static final String IS_BATTERY_LOW_NOTIFICATION_SHOWN = "battery_low_notification_shown";
public static void savePatientData(String token, int patient_uid, Context context, boolean isLoggedIn) {
SharedPreferences sp = context.getSharedPreferences(PATIENT_DETAILS, Context.MODE_PRIVATE);
@@ -436,6 +437,20 @@ public abstract class AppUtil {
return sp.getBoolean(IS_BATTERY_LOW_NOTIFICATION_SENT, false);
}
public static void setBatteryLowNotificationShown(Context context, boolean sent){
SharedPreferences sp = context.getSharedPreferences(PATIENT_DETAILS, Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sp.edit();
editor.putBoolean(IS_BATTERY_LOW_NOTIFICATION_SHOWN, sent);
editor.apply();
}
public static boolean isBatteryLowNotificationShown(Context context){
SharedPreferences sp = context.getSharedPreferences(PATIENT_DETAILS, Context.MODE_PRIVATE);
return sp.getBoolean(IS_BATTERY_LOW_NOTIFICATION_SHOWN, false);
}
public static void patientSignOut(Context context) {
clearAllNotifications(context);
clearAllChatNotificationsCount(context);

View File

@@ -13,6 +13,7 @@ import static com.app.simplitend.apputils.Constants.REMINDER_EXTRA_KEY;
import static com.app.simplitend.apputils.NotificationService.CONTENT_TYPE_KEY;
import static com.app.simplitend.apputils.NotificationService.NOTIFICATION_CONTENT_ID_KEY;
import static com.app.simplitend.apputils.NotificationService.NOTIFICATION_SENIOR_ADDRESS_KEY;
import static com.app.simplitend.locationupdates.LocationService.EXTRA_BATTERY_PERCENTAGE;
import android.content.Context;
import android.content.Intent;
@@ -169,10 +170,12 @@ public class BottomNotificationActivity extends AppCompatActivity {
switch (content_type) {
case Constants.BATTERY_LOW:
int percentage = intent.getIntExtra(NOTIFICATION_CONTENT_ID_KEY, -1);
setUpCgBottomSheet(binding,
R.drawable.img_out_of_geo,
title, "Battery remaining",
"25%", "Text senior", view -> {
R.drawable.ic_battery_low,
patient_name + "'s phone low battery reminder", "Phone battery remaining",
"" + (percentage>=0?percentage+"%":"Unknown"), "Text senior", view -> {
bsd.dismiss();
finish();
Intent chatsIntent = new Intent(this, ChatsActivity.class);
@@ -453,6 +456,20 @@ public class BottomNotificationActivity extends AppCompatActivity {
String body = intent.getStringExtra(NotificationService.NOTIFICATION_BODY_KEY);
switch (content_type) {
case Constants.BATTERY_LOW:
int percentage = intent.getIntExtra(EXTRA_BATTERY_PERCENTAGE, -1);
setUpSeniorBottomSheet(binding,
R.drawable.ic_battery_low,
"" + (percentage>=0?percentage+"% phone battery remaining":"Phone battery low"), "Connect to charger soon",
null, "Close", view -> {
bsd.dismiss();
finish();
});
bsd.show();
break;
case Constants.ACTIVITY_TIME:
if (!getCgNotificationPref(context, ACTIVITY_NOTIFICATIONS)) {

View File

@@ -1,6 +1,7 @@
package com.app.simplitend.locationupdates;
import static android.content.Intent.ACTION_BATTERY_CHANGED;
import static com.app.simplitend.apputils.NotificationService.CONTENT_TYPE_KEY;
import static com.app.simplitend.patientgeofencing.GeoFenceHelper.GEOFENCE_TAG;
import static com.app.simplitend.patientgeofencing.PatientLocationUpdatesReceiver.LOCATION_EXTRA_KEY;
import static com.app.simplitend.patientgeofencing.PatientLocationUpdatesReceiver.LOCATION_REQUEST_TAG;
@@ -20,10 +21,13 @@ import android.util.Log;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.core.app.NotificationCompat;
import androidx.core.app.NotificationManagerCompat;
import com.app.simplitend.BuildConfig;
import com.app.simplitend.R;
import com.app.simplitend.apputils.AppUtil;
import com.app.simplitend.apputils.BottomNotificationActivity;
import com.app.simplitend.apputils.Constants;
import com.app.simplitend.apputils.RetrofitHelper;
import com.app.simplitend.caregiverdashboard.mvvm.NotificationApiService;
import com.app.simplitend.chats.SocketHelper;
@@ -53,6 +57,8 @@ public class LocationService extends Service implements LocationClient.DefaultLo
public static final int LOCATION_INTERVAL_BASE_TIME = 25 * 1000;
private static final int LOCATION_UPDATES_NOTIFICATION_ID = 112;
private static final int SENIOR_BATTERY_LOW_NOTIFICATION_ID = 2102;
public static final String EXTRA_BATTERY_PERCENTAGE = "extra_battery_percentage";
private DefaultLocationClient locationClient;
@@ -78,33 +84,13 @@ public class LocationService extends Service implements LocationClient.DefaultLo
if (batteryPct <= 25){
if (AppUtil.isBatteryLowNotificationSent(context)) return;
notifyPatientAboutBatteryLow(context, batteryPct);
int[] chatsCred = AppUtil.getPatientGeofenceChatCred(context);
notifyCaregiver(context, batteryPct);
Map<String, String> body = new HashMap<>();
body.put("battery_perentage", batteryPct + "");
body.put("caregiver_xid", chatsCred[1] + "");
NotificationApiService apiService = RetrofitHelper.getRetrofit().create(NotificationApiService.class);
apiService.notifyBatteryLow(body, "Bearer " + AppUtil.getPatientToken(context))
.enqueue(new Callback<CallResponse<Object>>() {
@Override
public void onResponse(Call<CallResponse<Object>> call, Response<CallResponse<Object>> response) {
if (response.code() == 200){
AppUtil.setBatteryLowNotificationSent(context, true);
}else{
AppUtil.setBatteryLowNotificationSent(context, false);
}
}
@Override
public void onFailure(Call<CallResponse<Object>> call, Throwable t) {
AppUtil.setBatteryLowNotificationSent(context, false);
}
});
}else{
AppUtil.setBatteryLowNotificationSent(context, false);
AppUtil.setBatteryLowNotificationShown(context, false);
}
}
}
@@ -117,6 +103,57 @@ public class LocationService extends Service implements LocationClient.DefaultLo
}
}
private void notifyPatientAboutBatteryLow(Context context, float batteryPct) {
if (AppUtil.isBatteryLowNotificationShown(context)) return;
Notification notification = new Notification.Builder(context, LOCATION_NOTIFICATION_CHANNEL_ID)
.setContentTitle(batteryPct + "% phone battery remaining")
.setContentText("Connect to charger soon")
.setSmallIcon(R.mipmap.ic_launcher_round)
.setOnlyAlertOnce(true)
.setPriority(Notification.PRIORITY_HIGH)
.build();
NotificationManagerCompat.from(context).notify(SENIOR_BATTERY_LOW_NOTIFICATION_ID, notification);
AppUtil.setBatteryLowNotificationShown(context, true);
// showing bottom sheet
Intent intent = new Intent(this, BottomNotificationActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra(EXTRA_BATTERY_PERCENTAGE, (int) batteryPct);
intent.putExtra(CONTENT_TYPE_KEY, Constants.BATTERY_LOW);
startActivity(intent);
}
private void notifyCaregiver(Context context, float batteryPct) {
if (AppUtil.isBatteryLowNotificationSent(context)) return;
int[] chatsCred = AppUtil.getPatientGeofenceChatCred(context);
Map<String, String> body = new HashMap<>();
body.put("battery_perentage", batteryPct + "");
body.put("caregiver_xid", chatsCred[1] + "");
NotificationApiService apiService = RetrofitHelper.getRetrofit().create(NotificationApiService.class);
apiService.notifyBatteryLow(body, "Bearer " + AppUtil.getPatientToken(context))
.enqueue(new Callback<CallResponse<Object>>() {
@Override
public void onResponse(Call<CallResponse<Object>> call, Response<CallResponse<Object>> response) {
if (response.code() == 200){
AppUtil.setBatteryLowNotificationSent(context, true);
}else{
AppUtil.setBatteryLowNotificationSent(context, false);
}
}
@Override
public void onFailure(Call<CallResponse<Object>> call, Throwable t) {
AppUtil.setBatteryLowNotificationSent(context, false);
}
});
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
if (intent != null && intent.getAction() != null) {

View File

@@ -0,0 +1,417 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="242dp"
android:height="250dp"
android:viewportWidth="242"
android:viewportHeight="250">
<path
android:pathData="M26.2,229.43v20.57h63.25L89.45,229.43Z"
android:fillColor="#f5f5f5"/>
<path
android:pathData="M23.54,223.68v5.75h68.12v-5.75L23.54,223.68Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M57.51,250h31.85L89.36,229.43h2.21v-5.75L56.18,223.68v5.22Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M35.04,232.75h12.83v3.09h-12.83z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M33.39,239.71h16.47v6.54h-16.47z"
android:fillColor="#fff"/>
<path
android:pathData="M35.93,203.14v20.57L99.18,223.71L99.18,203.14Z"
android:fillColor="#f5f5f5"/>
<path
android:pathData="M33.28,197.84v5.75h68.12v-5.75L33.28,197.84Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M67.23,223.71h31.84L99.07,203.14h2.21v-5.75L65.89,197.39L65.89,202.6Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M44.71,206.81h12.83v3.1h-12.83z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M43.06,213.42h16.47v6.54h-16.47z"
android:fillColor="#fff"/>
<path
android:pathData="M11.49,83.41h26.87v7.11h-26.87z"
android:fillColor="#f5f5f5"/>
<path
android:pathData="M27.01,96.9v-1.89c0,-1.23 0,-2.99 -0.04,-5.22l0.08,0.08 -26.87,0.05 0.14,-0.13h0v7.11l-0.13,-0.14 19.15,0.06 5.65,0.04h1.93a0.74,0.74 0,0 1,0.14 0h-0.51l-1.52,0.08 -5.62,0.04 -19.25,0.06L0,97.04v-7.24h0l0.14,-0.14 26.87,0.05h0.08v0.09c0,2.24 -0.03,4.03 -0.04,5.26v1.73a0.47,0.47 0,0 1,-0.04 0.11Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M176.67,206.66h26.87v7.11h-26.87z"
android:fillColor="#f5f5f5"/>
<path
android:pathData="M192.2,220.91a1.18,1.18 0,0 1,0 -0.13v-1.76c0,-1.23 0,-2.99 -0.04,-5.22l0.08,0.08 -26.87,0.05 0.14,-0.14h0v7.1l-0.13,-0.13 19.15,0.06 5.65,0.04h0.07l-5.62,0.04 -19.25,0.06h-0.13L165.24,213.73h0l0.14,-0.13 26.87,0.05h0.08L192.33,213.73c0,2.25 -0.03,4.03 -0.04,5.27L192.29,220.73A0.28,0.28 0,0 1,192.2 220.91Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M114.64,48.6v-1.89c0,-1.23 -0.03,-2.99 -0.05,-5.22l0.08,0.09 -26.87,0.05 0.14,-0.14h0v7.11l-0.13,-0.14 19.15,0.06 5.66,0.04h1.93a0.4,0.4 0,0 1,0.14 0h-2.01l-5.62,0.04 -19.25,0.06h-0.13L87.67,41.5h0l0.14,-0.13 26.87,0.05h0.09v0.08c0,2.25 -0.03,4.03 -0.04,5.27v1.73A0.47,0.47 0,0 1,114.64 48.6Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M118.27,41.49a0.61,0.61 0,0 1,0 -0.13v-1.8c0,-1.25 -0.03,-3.01 -0.05,-5.18l0.1,0.1 -16.19,0.02 0.14,-0.14h0v7.1l-0.13,-0.13 11.55,0.06 3.36,0.04h1.23a1.81,1.81 0,0 1,-0.29 0h-0.88l-3.31,0.04 -11.64,0.06h-0.13L102.02,34.39h0c-0.03,0.03 0.26,-0.26 0.14,-0.13l16.15,0.04h0.1v0.09c0,2.21 -0.04,3.97 -0.05,5.24v1.4C118.35,41.37 118.27,41.5 118.27,41.49Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M238.18,118.99a1.14,1.14 0,0 1,0 -0.13L238.18,117.1c0,-1.23 0,-2.99 -0.04,-5.22l0.08,0.08 -26.87,0.05 0.14,-0.14h0v7.12l-0.13,-0.13 19.15,0.06 5.65,0.04h0.07l-5.62,0.03 -19.25,0.06h-0.13v-7.24h0l0.14,-0.14 26.87,0.05h0.08v0.08c0,2.25 -0.03,4.03 -0.04,5.26v1.73A0.21,0.21 0,0 1,238.18 118.99Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M241.83,111.95a0.75,0.75 0,0 1,0 -0.13v-1.81c0,-1.24 -0.03,-3 -0.05,-5.17l0.1,0.1 -16.15,0.04c-0.12,0.12 0.17,-0.17 0.13,-0.14h0v7.1l-0.13,-0.13 11.55,0.06 3.36,0.03h1.23a1.8,1.8 0,0 1,-0.29 0h-0.88l-3.31,0.04 -11.64,0.06h-0.13v-7.23h0l0.14,-0.14 16.15,0.04h0.1v0.1c0,2.21 -0.04,3.97 -0.05,5.23v1.4A1.05,1.05 0,0 1,241.83 111.95Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M0.46,249.79L233.73,249.79"
android:fillColor="#ff725e"/>
<path
android:pathData="M233.73,249.79c0,0.08 -52.22,0.14 -116.63,0.14s-116.64,-0.07 -116.64,-0.14 52.21,-0.14 116.64,-0.14S233.73,249.71 233.73,249.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M180.61,0h54.54v71.11h-54.54z"
android:fillColor="#455a64"/>
<path
android:pathData="M235.13,0a0.92,0.92 0,0 1,-0.15 0.19l-0.47,0.55 -1.84,2.04v0.03h-0.03c-4.74,0.05 -14.06,0.08 -24.75,0.08s-20.02,-0.03 -24.76,-0.08h-0.03v-0.03l-1.84,-2.04 -0.47,-0.55a0.92,0.92 0,0 1,-0.15 -0.19,0.88 0.88,0 0,1 0.18,0.17l0.5,0.5 1.89,1.99h-0.05c4.74,-0.05 14.06,-0.08 24.76,-0.08s20.01,0.03 24.75,0.08h-0.05l1.89,-1.99 0.5,-0.5a0.89,0.89 0,0 1,0.13 -0.17Z"
android:fillColor="#263238"/>
<path
android:pathData="M180.61,71.12a0.92,0.92 0,0 1,0.15 -0.19l0.47,-0.55 1.84,-2.04h0.03c4.74,-0.05 14.06,-0.08 24.75,-0.08s20.01,0.03 24.76,0.08h0.03l1.88,2.07 0.47,0.55a0.92,0.92 0,0 1,0.15 0.19,0.88 0.88,0 0,1 -0.18,-0.17l-0.5,-0.5 -1.89,-1.99h0.05c-4.74,0.05 -14.06,0.08 -24.76,0.08s-20.01,-0.03 -24.75,-0.08h0.05l-1.89,1.99 -0.5,0.5a0.88,0.88 0,0 1,-0.18 0.13Z"
android:fillColor="#263238"/>
<path
android:pathData="M183.12,2.71h49.51v65.7h-49.51z"
android:fillColor="#fff"/>
<path
android:pathData="M190.87,49.2a7.82,7.82 0,0 1,5.68 -1.77c2.03,0.05 4.05,0.49 6.08,0.46 3.25,-0.04 6.49,-1.26 9.69,-0.7a7.97,7.97 0,0 0,3.08 0.32c0.89,-0.19 1.66,-0.81 2.51,-1.07 2.26,-0.68 4.8,1.1 6.97,0.18v14.67h-34Z"
android:fillColor="#1b6dc1"/>
<path
android:pathData="M191.56,49.79c-0.09,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S191.64,49.79 191.56,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M193.1,49.79c-0.09,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S193.19,49.79 193.1,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M194.65,49.79c-0.08,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S194.74,49.79 194.65,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M196.2,49.79c-0.09,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S196.29,49.79 196.2,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M197.75,49.79c-0.09,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S197.84,49.79 197.75,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M199.3,49.79c-0.08,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S199.38,49.79 199.3,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M200.85,49.79c-0.09,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S200.94,49.79 200.85,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M202.39,49.79c-0.09,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S202.48,49.79 202.39,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M203.94,49.79c-0.08,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S204.03,49.79 203.94,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M205.49,49.79c-0.09,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S205.58,49.79 205.49,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M207.04,49.79c-0.09,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S207.13,49.79 207.04,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M208.59,49.79c-0.08,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S208.67,49.79 208.59,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M210.14,49.79c-0.09,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S210.23,49.79 210.14,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M211.68,49.79c-0.09,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S211.77,49.79 211.68,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M213.24,49.79c-0.09,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S213.32,49.79 213.24,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M214.78,49.79c-0.09,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S214.87,49.79 214.78,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M216.35,49.79c-0.09,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S216.42,49.79 216.35,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M217.88,49.79c-0.09,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S217.97,49.79 217.88,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M219.43,49.79c-0.09,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S219.52,49.79 219.43,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M220.98,49.79c-0.09,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S221.07,49.79 220.98,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M222.53,49.79c-0.09,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S222.61,49.79 222.53,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M224.09,49.79c-0.09,0 -0.16,-8.69 -0.16,-19.4s0.07,-19.41 0.16,-19.41 0.16,8.69 0.16,19.41S224.16,49.79 224.09,49.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M210.83,92.37L216.95,92.37A3.07,3.07 0,0 1,220.01 95.44L220.01,101.5A3.07,3.07 0,0 1,216.95 104.57L210.83,104.57A3.07,3.07 0,0 1,207.76 101.5L207.76,95.44A3.07,3.07 0,0 1,210.83 92.37z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M209.45,104.57a1.26,1.26 0,0 1,-0.47 -0.03,1.72 1.72,0 0,1 -1.06,-0.81 1.8,1.8 0,0 1,-0.24 -0.96L207.69,94.49a2.84,2.84 0,0 1,0.09 -0.99,1.83 1.83,0 0,1 1.62,-1.23h8.96a1.91,1.91 0,0 1,1.18 0.43,1.88 1.88,0 0,1 0.63,1.07 9.48,9.48 0,0 1,0.03 1.18v7.43a3.8,3.8 0,0 1,-0.07 0.99,1.78 1.78,0 0,1 -0.51,0.85 1.82,1.82 0,0 1,-0.84 0.44,4.14 4.14,0 0,1 -0.89,0.04h-1.66l-4.93,-0.04h-1.34a2.57,2.57 0,0 1,-0.47 -0.03,4.43 4.43,0 0,1 0.47,-0.03l1.34,-0.03 4.93,-0.04L217.88,104.51a3.8,3.8 0,0 0,0.84 -0.04,1.56 1.56,0 0,0 0.74,-0.39 1.53,1.53 0,0 0,0.44 -0.74,3.54 3.54,0 0,0 0.05,-0.92v-7.43a10.64,10.64 0,0 0,-0.03 -1.1,1.56 1.56,0 0,0 -1.53,-1.26h-8.94a1.57,1.57 0,0 0,-1.4 1.05,2.6 2.6,0 0,0 -0.09,0.91v7.15a4.35,4.35 0,0 0,0.18 2.06,1.7 1.7,0 0,0 0.98,0.81A1.14,1.14 0,0 1,209.45 104.57Z"
android:fillColor="#263238"/>
<path
android:pathData="M209.72,98.47a4.16,4.16 0,1 0,1.23 -2.94A4.18,4.18 0,0 0,209.72 98.47Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M209.72,98.48a0.84,0.84 0,0 1,0 -0.26,3.05 3.05,0 0,1 0.09,-0.77 4.13,4.13 0,0 1,1.51 -2.36,4.28 4.28,0 1,1 0,6.78 4.16,4.16 0,0 1,-1.51 -2.36,3.08 3.08,0 0,1 -0.09,-0.77 0.84,0.84 0,0 1,0 -0.26,8.04 8.04,0 0,0 0.18,1 4.19,4.19 0,0 0,1.53 2.21,4.02 4.02,0 0,0 1.72,0.74 4.09,4.09 0,0 0,2.12 -0.18,4.03 4.03,0 0,0 0,-7.57 4.15,4.15 0,0 0,-2.12 -0.19,4.09 4.09,0 0,0 -1.72,0.75 4.19,4.19 0,0 0,-1.53 2.21A4.3,4.3 0,0 0,209.72 98.48Z"
android:fillColor="#263238"/>
<path
android:pathData="M215.52,98.49m-0.88,0a0.88,0.88 0,1 1,1.76 0a0.88,0.88 0,1 1,-1.76 0"
android:fillColor="#263238"/>
<path
android:pathData="M212.39,98.49m-0.88,0a0.88,0.88 0,1 1,1.76 0a0.88,0.88 0,1 1,-1.76 0"
android:fillColor="#263238"/>
<path
android:pathData="M33.5,11.05L89.7,11.05A14.8,14.8 0,0 1,104.5 25.85L104.5,167.26A14.8,14.8 0,0 1,89.7 182.06L33.5,182.06A14.8,14.8 0,0 1,18.7 167.26L18.7,25.85A14.8,14.8 0,0 1,33.5 11.05z"
android:fillColor="#263238"/>
<path
android:pathData="M103.15,25.81L103.15,167.3A13.4,13.4 0,0 1,89.75 180.7L33.45,180.7A13.4,13.4 0,0 1,20.05 167.3L20.05,25.81A13.4,13.4 0,0 1,33.45 12.41L89.75,12.41A13.4,13.4 0,0 1,103.15 25.81z"
android:fillColor="#263238"/>
<path
android:pathData="M55.44,17.8a0.96,0.96 0,1 1,0 -1.92L67.71,15.88a0.96,0.96 0,0 1,0 1.92Z"
android:fillColor="#455a64"/>
<path
android:pathData="M48.86,17.8a0.96,0.96 0,1 1,0.68 -0.29A0.96,0.96 0,0 1,48.86 17.8Z"
android:fillColor="#263238"/>
<path
android:pathData="M52.37,17.8a0.96,0.96 0,1 1,0.68 -0.29A0.96,0.96 0,0 1,52.37 17.8Z"
android:fillColor="#455a64"/>
<path
android:pathData="M74.34,17.8a0.96,0.96 0,1 1,0.68 -0.29A0.96,0.96 0,0 1,74.34 17.8Z"
android:fillColor="#455a64"/>
<path
android:pathData="M70.83,17.8a0.96,0.96 0,1 1,0.68 -0.29A0.96,0.96 0,0 1,70.83 17.8Z"
android:fillColor="#263238"/>
<path
android:pathData="M93.84,13.57L81.79,13.57a4.29,4.29 0,0 0,-4.11 3.12l-0.18,0.7a4.6,4.6 0,0 1,-4.42 3.31L50.13,20.7A4.59,4.59 0,0 1,45.71 17.38l-0.2,-0.71A4.3,4.3 0,0 0,41.39 13.56L30.47,13.56A8.52,8.52 0,0 0,21.99 22.11L21.99,170.39a8.01,8.01 0,0 0,8.01 8.04h64.02a7.25,7.25 0,0 0,7.22 -7.28L101.24,20.99a7.4,7.4 0,0 0,-7.4 -7.42Z"
android:fillColor="#f5f5f5"/>
<path
android:pathData="M104.59,67.87L104.5,67.87L104.5,48.22L104.59,48.22a0.47,0.47 0,0 1,0.47 0.47L105.06,67.4A0.47,0.47 0,0 1,104.59 67.87Z"
android:fillColor="#455a64"/>
<path
android:pathData="M18.6,60.33h0.1v12.44h-0.1a0.49,0.49 0,0 1,-0.49 -0.49L18.11,60.82A0.49,0.49 0,0 1,18.6 60.33Z"
android:fillColor="#263238"/>
<path
android:pathData="M18.6,44.08h0.1L18.7,56.52h-0.1a0.49,0.49 0,0 1,-0.49 -0.49L18.11,44.56A0.49,0.49 0,0 1,18.6 44.08Z"
android:fillColor="#263238"/>
<path
android:pathData="M18.62,31.87h0.08v5.79L18.62,37.66a0.42,0.42 0,0 1,-0.42 -0.42L18.2,32.27a0.42,0.42 0,0 1,0.42 -0.4Z"
android:fillColor="#263238"/>
<path
android:pathData="M44.08,136.69h0.83v2.76h1.73v0.65L44.08,140.1Z"
android:fillColor="#263238"/>
<path
android:pathData="M47.71,139.95a1.75,1.75 0,0 1,0 -3.09,2.02 2.02,0 0,1 0.97,-0.23 2,2 0,0 1,0.97 0.23,1.75 1.75,0 0,1 0.68,0.63 1.71,1.71 0,0 1,0.25 0.91,1.69 1.69,0 0,1 -0.25,0.91 1.75,1.75 0,0 1,-0.68 0.63,2 2,0 0,1 -0.97,0.23A2.02,2.02 0,0 1,47.71 139.95ZM49.23,139.37a1,1 0,0 0,0.39 -0.39,1.16 1.16,0 0,0 0.14,-0.55 1.11,1.11 0,0 0,-0.14 -0.55,1.02 1.02,0 0,0 -0.39,-0.39 1.17,1.17 0,0 0,-1.1 0,1.02 1.02,0 0,0 -0.39,0.39 1.1,1.1 0,0 0,-0.14 0.55,1.16 1.16,0 0,0 0.14,0.55 1,1 0,0 0,0.39 0.39,1.13 1.13,0 0,0 1.1,0Z"
android:fillColor="#263238"/>
<path
android:pathData="M56.29,136.69 L55.16,140.12h-0.86l-0.76,-2.32 -0.78,2.32h-0.86L50.76,136.69h0.83l0.78,2.41L53.19,136.69h0.74l0.79,2.43 0.81,-2.43Z"
android:fillColor="#263238"/>
<path
android:pathData="M61.22,138.65a0.85,0.85 0,0 1,0.17 0.55,0.78 0.78,0 0,1 -0.35,0.69 1.79,1.79 0,0 1,-1.03 0.24h-1.79L58.21,136.69h1.69a1.66,1.66 0,0 1,0.97 0.24,0.76 0.76,0 0,1 0.34,0.65 0.84,0.84 0,0 1,-0.12 0.44,0.83 0.83,0 0,1 -0.34,0.31A0.96,0.96 0,0 1,61.22 138.65ZM59.01,137.29v0.81h0.82a0.76,0.76 0,0 0,0.45 -0.1,0.34 0.34,0 0,0 0.16,-0.3 0.33,0.33 0,0 0,-0.16 -0.3,0.76 0.76,0 0,0 -0.45,-0.1ZM60.41,139.42a0.34,0.34 0,0 0,0.16 -0.31c0,-0.29 -0.21,-0.43 -0.63,-0.43h-0.93v0.85h0.93A0.85,0.85 0,0 0,60.41 139.42Z"
android:fillColor="#263238"/>
<path
android:pathData="M64.27,139.39h-1.61l-0.31,0.74L61.54,140.13l1.54,-3.43h0.79l1.55,3.43h-0.84ZM64.02,138.79 L63.46,137.48 62.91,138.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M66.32,137.34h-1.1L65.22,136.69h3.02v0.65h-1.1v2.76h-0.8Z"
android:fillColor="#263238"/>
<path
android:pathData="M69.42,137.34h-1.1L68.32,136.69L71.34,136.69v0.65h-1.1v2.76h-0.8Z"
android:fillColor="#263238"/>
<path
android:pathData="M74.44,139.49v0.63L71.76,140.13L71.76,136.69h2.61v0.63h-1.82v0.75h1.63L74.19,138.69h-1.6v0.8Z"
android:fillColor="#263238"/>
<path
android:pathData="M77.28,140.12l-0.67,-0.96h-0.74v0.96h-0.8L75.08,136.69h1.5a1.86,1.86 0,0 1,0.8 0.16,1.1 1.1,0 0,1 0.71,1.1 1.13,1.13 0,0 1,-0.19 0.66,1.19 1.19,0 0,1 -0.52,0.43l0.78,1.1ZM77.08,137.49a0.86,0.86 0,0 0,-0.55 -0.16h-0.65v1.2h0.65a0.83,0.83 0,0 0,0.55 -0.16,0.61 0.61,0 0,0 0,-0.88Z"
android:fillColor="#263238"/>
<path
android:pathData="M80.32,138.9v1.22h-0.8L79.52,138.9L78.18,136.69h0.85l0.92,1.52 0.92,-1.52h0.78Z"
android:fillColor="#263238"/>
<path
android:pathData="M77.82,128.96L47.44,128.96a4.04,4.04 0,0 1,-4.03 -4.03L43.41,67.48a4.04,4.04 0,0 1,4.03 -4.03h30.38a4.04,4.04 0,0 1,4.04 4.03L81.86,124.93A4.04,4.04 0,0 1,77.82 128.96ZM47.44,63.99a3.49,3.49 0,0 0,-3.48 3.48v57.45a3.49,3.49 0,0 0,3.48 3.48h30.38a3.49,3.49 0,0 0,3.49 -3.48L81.31,67.47a3.49,3.49 0,0 0,-3.49 -3.48Z"
android:fillColor="#263238"/>
<path
android:pathData="M55.35,58.05h14.54a1.71,1.71 0,0 1,1.71 1.71v3.93L53.64,63.69L53.64,59.76A1.71,1.71 0,0 1,55.35 58.05Z"
android:fillColor="#263238"/>
<path
android:pathData="M45.77,116.87h33.7v6.87a2.61,2.61 0,0 1,-2.61 2.61L48.38,126.34a2.61,2.61 0,0 1,-2.61 -2.61Z"
android:fillColor="#1b6dc1"/>
<path
android:pathData="M60.32,92.7a1.88,1.88 0,0 1,0.55 1.38,2.03 2.03,0 0,1 -1.2,1.88 3.31,3.31 0,0 1,-1.46 0.29,4.73 4.73,0 0,1 -1.45,-0.23 3.14,3.14 0,0 1,-1.14 -0.63l0.46,-0.8a2.64,2.64 0,0 0,0.93 0.55,3.44 3.44,0 0,0 1.2,0.21 1.96,1.96 0,0 0,1.23 -0.34,1.1 1.1,0 0,0 0.44,-0.92 1.06,1.06 0,0 0,-0.44 -0.91,2.18 2.18,0 0,0 -1.31,-0.33h-0.55v-0.71l1.77,-2.21h-3.39L55.95,89.08h4.65v0.66l-1.88,2.32a2.52,2.52 0,0 1,1.6 0.65Z"
android:fillColor="#263238"/>
<path
android:pathData="M62.03,92.35a2.36,2.36 0,0 1,0 -2.8,1.59 1.59,0 0,1 2.37,0 2.42,2.42 0,0 1,0 2.81,1.57 1.57,0 0,1 -2.37,0ZM63.94,91.95a2.06,2.06 0,0 0,0 -2,0.91 0.91,0 0,0 -1.45,0 2,2 0,0 0,0 1.99,0.91 0.91,0 0,0 1.45,0ZM67.47,89.08h0.78l-4.82,7.09h-0.77ZM66.5,95.71a2.42,2.42 0,0 1,0 -2.81,1.47 1.47,0 0,1 1.19,-0.55 1.49,1.49 0,0 1,1.19 0.55,2.38 2.38,0 0,1 0,2.8 1.59,1.59 0,0 1,-2.38 0ZM68.4,95.3a2,2 0,0 0,0 -1.99,0.85 0.85,0 0,0 -0.72,-0.37 0.86,0.86 0,0 0,-0.73 0.36,2.06 2.06,0 0,0 0,2 0.86,0.86 0,0 0,0.73 0.36,0.85 0.85,0 0,0 0.72,-0.37Z"
android:fillColor="#263238"/>
<path
android:pathData="M136.45,23.45a2.89,2.89 0,0 1,3.12 -1.23,3.94 3.94,0 0,1 4.85,0.49 3.58,3.58 0,0 1,3.47 0.22,3.63 3.63,0 0,1 1.59,3.1A3.01,3.01 0,0 1,152.41 27.85a3.05,3.05 0,0 1,-0.78 3.38,2.85 2.85,0 0,1 -1.66,5.41l-13.27,-9.83A2.93,2.93 0,0 1,136.45 23.45Z"
android:fillColor="#263238"/>
<path
android:pathData="M150.37,37.06a12.02,12.02 0,0 0,-11.02 -12.04l-0.62,-0.05c-6.71,-0.16 -9.32,5.86 -9.3,12.6l-1.46,24.97h0l9.85,10.08 3.71,-6.63 1.32,-6.63s6.5,-0.48 7.11,-6.93C150.27,49.37 150.36,42.91 150.37,37.06Z"
android:fillColor="#ffbf9d"/>
<path
android:pathData="M142.92,59.41A15.54,15.54 0,0 1,134.7 56.24s1.35,4.97 7.8,4.92Z"
android:fillColor="#ff9a6c"/>
<path
android:pathData="M148.01,42.89a0.92,0.92 0,0 1,-0.96 0.86,0.88 0.88,0 0,1 -0.87,-0.91 0.92,0.92 0,0 1,0.96 -0.86,0.88 0.88,0 0,1 0.88,0.91Z"
android:fillColor="#263238"/>
<path
android:pathData="M148.77,40.44c-0.12,0.11 -0.77,-0.46 -1.76,-0.55s-1.75,0.36 -1.85,0.23 0.08,-0.26 0.42,-0.47a2.49,2.49 0,0 1,1.49 -0.33,2.43 2.43,0 0,1 1.39,0.55C148.75,40.16 148.83,40.39 148.77,40.44Z"
android:fillColor="#263238"/>
<path
android:pathData="M139.53,42.62a0.92,0.92 0,0 1,-0.96 0.86,0.88 0.88,0 0,1 -0.88,-0.91 0.93,0.93 0,0 1,0.96 -0.86,0.89 0.89,0 0,1 0.88,0.91Z"
android:fillColor="#263238"/>
<path
android:pathData="M139.35,39.53c-0.12,0.11 -0.77,-0.46 -1.76,-0.55s-1.75,0.35 -1.85,0.23 0.08,-0.26 0.42,-0.47a2.49,2.49 0,0 1,1.49 -0.33,2.36 2.36,0 0,1 1.39,0.55C139.32,39.25 139.41,39.47 139.35,39.53Z"
android:fillColor="#263238"/>
<path
android:pathData="M141.99,47.15a6.11,6.11 0,0 1,1.62 -0.16c0.25,0 0.5,-0.04 0.55,-0.2a1.27,1.27 0,0 0,-0.1 -0.77c-0.19,-0.63 -0.38,-1.29 -0.59,-1.99a32.77,32.77 0,0 1,-1.26 -5.18,31.07 31.07,0 0,1 1.66,5.07c0.19,0.7 0.38,1.36 0.55,2a1.48,1.48 0,0 1,0.04 1,0.62 0.62,0 0,1 -0.44,0.34 1.48,1.48 0,0 1,-0.43 0A6.63,6.63 0,0 1,141.99 47.15Z"
android:fillColor="#263238"/>
<path
android:pathData="M139.03,47.59c0.16,0 0.08,1.1 0.93,1.92s2.01,0.82 2,0.97 -0.27,0.19 -0.76,0.17a2.68,2.68 0,0 1,-1.66 -0.75,2.36 2.36,0 0,1 -0.71,-1.61C138.82,47.84 138.96,47.58 139.03,47.59Z"
android:fillColor="#263238"/>
<path
android:pathData="M139.59,36.71c-0.14,0.25 -0.97,-0.05 -2,-0.12s-1.91,0.08 -1.99,-0.19c-0.04,-0.13 0.16,-0.35 0.55,-0.55a3.12,3.12 0,0 1,1.56 -0.28,2.98 2.98,0 0,1 1.48,0.51C139.51,36.33 139.67,36.57 139.59,36.71Z"
android:fillColor="#263238"/>
<path
android:pathData="M148.77,37.7c-0.18,0.23 -0.86,0 -1.66,0s-1.51,0.15 -1.66,-0.08c-0.07,-0.12 0.04,-0.34 0.34,-0.55a2.41,2.41 0,0 1,2.7 0.08C148.75,37.36 148.85,37.59 148.77,37.7Z"
android:fillColor="#263238"/>
<path
android:pathData="M149.99,34.05s-1.36,-4.18 -3.22,-5.29c-2.25,-1.33 -3.47,1.18 -5.66,0.37s-4.33,-2.09 -6.76,-0.55c-2.66,1.7 -1.6,3.13 -1.98,5.98 -1.58,11.56 -3.96,14.67 -4.11,9.15 0,-0.6 -1.63,-1.22 -1.66,-3.77 -0.05,-3.31 0.16,-7.31 1.08,-9.58A9.21,9.21 0,0 1,131.79 25.85c3.35,-2.1 7.68,-1.8 10.6,-1.26S150.68,29.01 149.99,34.05Z"
android:fillColor="#263238"/>
<path
android:pathData="M129.49,43.64a1.76,1.76 0,0 0,-1.74 -1.85c-1.21,0 -2.6,0.59 -2.72,3.09 -0.22,4.42 4.24,3.73 4.25,3.6S129.42,45.49 129.49,43.64Z"
android:fillColor="#ffbf9d"/>
<path
android:pathData="M128.41,46.78a1.47,1.47 0,0 1,-0.21 0.1,0.77 0.77,0 0,1 -0.55,0 1.9,1.9 0,0 1,-0.79 -1.76,2.5 2.5,0 0,1 0.27,-1.1 0.88,0.88 0,0 1,0.6 -0.55,0.39 0.39,0 0,1 0.44,0.23c0.05,0.13 0,0.21 0.04,0.22s0.1,-0.07 0.07,-0.25a0.49,0.49 0,0 0,-0.16 -0.29,0.55 0.55,0 0,0 -0.41,-0.13 1.1,1.1 0,0 0,-0.86 0.65,2.71 2.71,0 0,0 -0.33,1.22 2.03,2.03 0,0 0,1.02 1.97,0.82 0.82,0 0,0 0.71,-0.08C128.4,46.89 128.43,46.79 128.41,46.78Z"
android:fillColor="#ff9a6c"/>
<path
android:pathData="M129.47,35.05A4.25,4.25 0,0 0,131.25 36.07a1.44,1.44 0,0 0,1.66 -0.88c0.08,-0.3 0.03,-0.66 0.25,-0.88s0.7,-0.14 1.06,-0.07a2.82,2.82 0,0 0,3.08 -1.78,1.17 1.17,0 0,0 1.56,0.28 6.14,6.14 0,0 0,1.3 -1.19,1.83 1.83,0 0,1 1.57,-0.63 4.2,4.2 0,0 0,0.94 0.29c0.58,0 0.92,-0.66 1.05,-1.23s0.26,-1.24 0.77,-1.51a2.19,2.19 0,0 1,1.57 0.08c0.52,0.12 1.22,0.05 1.4,-0.45a1.05,1.05 0,0 0,-0.13 -0.82,2.85 2.85,0 0,0 -3.25,-1.38 3.87,3.87 0,0 0,-7.02 -1.34,3.92 3.92,0 0,0 -6.37,0.92 2.9,2.9 0,0 0,-3.04 0.77,2.94 2.94,0 0,0 -0.5,3.12 2.76,2.76 0,0 0,-1.66 2.04c-0.09,0.91 0.72,1.89 1.62,1.72a1.58,1.58 0,0 0,2.59 1.8"
android:fillColor="#263238"/>
<path
android:pathData="M126.8,33.09a1.03,1.03 0,0 0,0.2 0.87,1.44 1.44,0 0,0 0.84,0.6 1.52,1.52 0,0 0,1.28 -0.26l-0.19,-0.04a4.42,4.42 0,0 0,0.79 1.18,2.51 2.51,0 0,0 0.76,0.55 1.72,1.72 0,0 0,0.9 0.18,1.74 1.74,0 0,0 1.33,-0.62 2.71,2.71 0,0 0,0.43 -0.89c0.06,-0.23 0.08,-0.35 0.06,-0.35a1.25,1.25 0,0 0,-0.16 0.32,3.19 3.19,0 0,1 -0.47,0.81 1.79,1.79 0,0 1,-2.64 -0.16,4.5 4.5,0 0,1 -0.75,-1.1L129.11,34.03l-0.12,0.09a1.35,1.35 0,0 1,-1.1 0.25,1.25 1.25,0 0,1 -0.76,-0.49 2.13,2.13 0,0 1,-0.33 -0.79Z"
android:fillColor="#455a64"/>
<path
android:pathData="M135.92,23.69a2.24,2.24 0,0 1,0.3 0.14,1.59 1.59,0 0,1 0.63,0.64l0.05,0.09 0.07,-0.08a5.52,5.52 0,0 1,2.27 -1.55,4.16 4.16,0 0,1 1.76,-0.24 3.55,3.55 0,0 1,1.82 0.69,3.63 3.63,0 0,1 1.02,1.14 3.08,3.08 0,0 1,0.38 1.37v0.14h0.14a2.45,2.45 0,0 1,1.81 0.38,2.41 2.41,0 0,1 0.91,1.15 3.24,3.24 0,0 1,0.17 1.33,0.95 0.95,0 0,0 0.08,-0.36 2.35,2.35 0,0 0,-0.12 -1.02,2.48 2.48,0 0,0 -0.93,-1.27 2.67,2.67 0,0 0,-1.96 -0.44l0.14,0.12a3.26,3.26 0,0 0,-0.39 -1.49,3.83 3.83,0 0,0 -1.1,-1.23 3.74,3.74 0,0 0,-1.94 -0.73,4.42 4.42,0 0,0 -1.86,0.28 5.36,5.36 0,0 0,-2.29 1.66h0.11a1.52,1.52 0,0 0,-0.72 -0.64A0.64,0.64 0,0 0,135.92 23.69Z"
android:fillColor="#455a64"/>
<path
android:pathData="M139.23,222.98l-3.87,13.98s12.4,8.79 11.91,11.45l-26.4,-6.85 5.2,-22.04Z"
android:fillColor="#455a64"/>
<path
android:pathData="M127.46,233.65a1.11,1.11 0,0 0,-0.03 2.21,1.19 1.19,0 0,0 1.1,-1.15c-0.05,-0.55 -0.66,-1.15 -1.19,-1.02"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M120.85,241.56l0.61,-2.21 25.09,7.39s1.05,0.83 0.71,1.66Z"
android:strokeAlpha="0.6"
android:fillColor="#fff"
android:fillAlpha="0.6"/>
<path
android:pathData="M135.8,236.93c-0.04,0.13 -0.7,0.03 -1.44,0.29s-1.21,0.74 -1.32,0.65 0.27,-0.81 1.17,-1.1S135.86,236.82 135.8,236.93Z"
android:fillColor="#263238"/>
<path
android:pathData="M138.28,238.84c0,0.14 -0.61,0.22 -1.19,0.67s-0.85,1.02 -0.97,0.98 -0.03,-0.82 0.7,-1.36S138.31,238.71 138.28,238.84Z"
android:fillColor="#263238"/>
<path
android:pathData="M139.03,242.68c-0.13,0 -0.14,-0.72 0.37,-1.36s1.18,-0.78 1.21,-0.65 -0.44,0.42 -0.85,0.96S139.16,242.7 139.03,242.68Z"
android:fillColor="#263238"/>
<path
android:pathData="M136.35,233.64c-0.08,0.1 -0.63,-0.23 -1.37,-0.37s-1.36,-0.04 -1.4,-0.18 0.62,-0.47 1.49,-0.29S136.44,233.56 136.35,233.64Z"
android:fillColor="#263238"/>
<path
android:pathData="M129.97,226.27l-0.61,14.54s14.04,5.52 14.18,8.23l-27.22,-0.22 0.05,-22.69Z"
android:fillColor="#455a64"/>
<path
android:pathData="M120.95,239.51a1.15,1.15 0,0 0,-0.78 1.31,1.07 1.07,0 0,0 1.24,0.81 1.22,1.22 0,0 0,0.82 -1.39,1.1 1.1,0 0,0 -1.38,-0.7"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M116.32,248.81l0.09,-2.29 26.06,1.07s1.21,0.55 1.07,1.44Z"
android:strokeAlpha="0.6"
android:fillColor="#fff"
android:fillAlpha="0.6"/>
<path
android:pathData="M129.8,240.67c0,0.14 -0.67,0.19 -1.33,0.63s-1.01,1.01 -1.13,0.96 0.08,-0.85 0.88,-1.36S129.83,240.54 129.8,240.67Z"
android:fillColor="#263238"/>
<path
android:pathData="M132.65,241.91c0,0.13 -0.55,0.37 -1,0.94s-0.59,1.19 -0.72,1.19 -0.21,-0.79 0.37,-1.5S132.65,241.78 132.65,241.91Z"
android:fillColor="#263238"/>
<path
android:pathData="M134.24,245.47c-0.12,0.03 -0.3,-0.66 0.04,-1.41s0.97,-1.05 1.03,-0.93 -0.33,0.52 -0.61,1.14S134.38,245.46 134.24,245.47Z"
android:fillColor="#263238"/>
<path
android:pathData="M129.59,237.34c-0.05,0.12 -0.66,-0.07 -1.41,-0.03s-1.34,0.29 -1.41,0.17 0.5,-0.61 1.38,-0.65S129.65,237.23 129.59,237.34Z"
android:fillColor="#263238"/>
<path
android:pathData="M129.93,237.17a23.97,23.97 0,0 1,0.04 3.5l-0.11,-0.17c1.59,0.63 3.71,1.48 5.95,2.57a31.9,31.9 0,0 1,6.03 3.6,6.45 6.45,0 0,1 1.49,1.58c0.28,0.45 0.25,0.8 0.2,0.78a2.07,2.07 0,0 0,-0.35 -0.68,7.7 7.7,0 0,0 -1.54,-1.41 38.58,38.58 0,0 0,-6.03 -3.44c-2.21,-1.1 -4.32,-1.97 -5.88,-2.67l-0.12,-0.05v-0.12a24.37,24.37 0,0 1,0.31 -3.49Z"
android:fillColor="#263238"/>
<path
android:pathData="M117.5,120.2l-2.65,19.29 2.72,40.67s-1.66,19.73 -2.71,30.86c-0.89,9.67 0.55,26.51 0.55,26.51h15.73l5.63,-56.17 3.5,-35.03 6.08,-15.94C141.1,129.71 129.06,124.81 117.5,120.2Z"
android:fillColor="#263238"/>
<path
android:pathData="M153.01,126.1l0.26,61.5 -15.92,42.48 -0.74,2.56 -9.4,-2.36 6.99,-100.52Z"
android:fillColor="#263238"/>
<path
android:pathData="M142.16,138.78a1.76,1.76 0,0 1,0 0.25v0.75c0,0.68 -0.05,1.66 -0.1,2.89 -0.07,2.51 -0.26,6.15 -0.55,10.63 -0.55,8.97 -1.66,21.35 -3.31,34.98s-3.5,25.92 -4.81,34.84c-0.67,4.42 -1.23,8.03 -1.61,10.53 -0.19,1.23 -0.34,2.21 -0.45,2.86 -0.05,0.31 -0.09,0.55 -0.13,0.75a0.92,0.92 0,0 1,-0.05 0.25,2.19 2.19,0 0,1 0,-0.26 6.77,6.77 0,0 1,0.09 -0.75c0.09,-0.67 0.22,-1.66 0.39,-2.87 0.35,-2.51 0.86,-6.11 1.49,-10.55 1.26,-8.91 3.05,-21.22 4.7,-34.85s2.79,-26 3.42,-34.96c0.31,-4.48 0.55,-8.11 0.66,-10.62 0.07,-1.24 0.13,-2.21 0.17,-2.89 0,-0.32 0.04,-0.55 0.05,-0.75A0.99,0.99 0,0 1,142.16 138.78Z"
android:fillColor="#455a64"/>
<path
android:pathData="M160.54,88.44l3.87,-2.55s2.08,-4.42 3.54,-4.97 7.29,-2.76 7.29,-2.76 0.83,1.57 -1.25,2.76a42.49,42.49 0,0 0,-3.87 2.48s0.32,4.46 -2.59,5.73l-5.68,2.47Z"
android:fillColor="#ffbf9d"/>
<path
android:pathData="M175.57,91.37a7.13,7.13 0,0 1,-3.47 1.55,46.56 46.56,0 0,1 -6.63,0c-0.15,0.05 -2.53,2.16 -2.53,2.16l-1.35,-5.19 9.73,-6.4 7.01,2.62 -1.75,2.99 -2.45,-0.46 -0.59,1.61Z"
android:fillColor="#ffbf9d"/>
<path
android:pathData="M162.97,85.63l1.77,9.71 -14.81,8.04 -0.61,-13.42Z"
android:fillColor="#f5faff"/>
<path
android:pathData="M144.89,68.55c0.28,0.66 4.15,13 5.45,19.37 1.05,5.15 2.81,37.31 2.81,37.31L153.15,132.4c-9.06,3.44 -22.29,1.48 -36.39,-1.62L115.36,126.7s2.65,-17.06 1.54,-23.89 -0.95,-21.75 -0.39,-28.58c0.44,-5.45 8.1,-11.32 10.93,-13.58l0.72,-1.72 13.91,3.96 0.35,2.07Z"
android:fillColor="#f5faff"/>
<path
android:pathData="M194.37,100.29L188.44,100.29a1.53,1.53 0,0 1,-1.53 -1.53l-0,-0.24a1.53,1.53 0,0 1,1.53 -1.53L194.37,96.99L194.37,100.29Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M179.38,85.55l5.36,-6.15a0.41,0.41 0,0 0,-0.04 -0.55l-5.14,-4.34a0.4,0.4 0,0 0,-0.55 0.04l-10.62,12.1a0.4,0.4 0,0 0,0.04 0.55l5.02,4.39a0.4,0.4 0,0 0,0.55 -0.03l5.39,-6.02"
android:fillColor="#455a64"/>
<path
android:pathData="M171.38,89.72c-0.16,0.15 -1.83,1.8 -1.83,1.8l-1.23,-1.18 1.76,-1.76Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M197.62,98.94L194.36,98.94L194.36,97.88L197.62,97.88a0.49,0.49 0,0 1,0.5 0.5L198.12,98.46A0.49,0.49 0,0 1,197.62 98.94Z"
android:fillColor="#263238"/>
<path
android:pathData="M173.5,102.62l4.39,-0.87s3.31,-3.91 5.41,-4.3a18.84,18.84 0,0 0,4.78 -1.96s1.24,0.06 1.17,1.19c-0.04,0.67 -0.63,0.95 -1.03,1.35l-2.56,1.56s5.23,-0.68 5.85,0.2 0.18,1.66 -1.04,1.96a18.5,18.5 0,0 1,-2.5 0.47s1.66,1.98 0.32,3.05c0,0 0.1,1.86 -1.46,2.25a3.2,3.2 0,0 1,-2.88 1.86,15.88 15.88,0 0,1 -4.34,-0.29c-1.46,-0.43 -5.23,1.26 -5.23,1.26Z"
android:fillColor="#ffbf9d"/>
<path
android:fillColor="#FF000000"
android:pathData="M121.59,82.91s3.11,25.12 15.58,32.96c3.42,2.15 15.58,2.21 15.58,2.21v-7.73Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M130.07,65.89c5.03,0.74 8.74,12.85 8.74,12.85l9.25,21.04s18.31,1.56 21.95,1.56a36.44,36.44 0,0 0,5.06 -0.85l0.14,0.26c1.87,3.42 1.66,9.94 1.66,9.94a127.97,127.97 0,0 1,-14.16 3.25c-7.18,0.99 -22.87,-0.51 -25.78,-3.35s-18.52,-31.49 -18.31,-36.25"
android:fillColor="#f5faff"/>
<path
android:pathData="M118.62,74.39a3.69,3.69 0,0 0,0.03 0.41,7.73 7.73,0 0,0 0.24,1.17 36.3,36.3 0,0 0,1.57 4.34c1.55,3.69 4.08,8.91 7.47,15.23 1.7,3.16 3.6,6.6 5.78,10.19q0.82,1.35 1.71,2.71c0.3,0.45 0.61,0.91 0.94,1.34a4.42,4.42 0,0 0,1.14 1.15,11.82 11.82,0 0,0 3.11,1.28c1.1,0.31 2.25,0.55 3.41,0.78a70.82,70.82 0,0 0,7.18 0.92,72.91 72.91,0 0,0 7.57,0.23 35.33,35.33 0,0 0,3.87 -0.29c1.29,-0.18 2.59,-0.42 3.87,-0.69 2.6,-0.55 5.23,-1.19 7.87,-1.89l2.4,-0.67 -0.1,0.14a35.5,35.5 0,0 0,-0.31 -5.27,14.09 14.09,0 0,0 -1.48,-4.89l0.13,0.08c-0.55,0.09 -1.18,0.25 -1.77,0.38s-1.19,0.24 -1.79,0.33a16.44,16.44 0,0 1,-3.61 0.06c-2.36,-0.13 -4.68,-0.29 -6.94,-0.46q-6.79,-0.51 -12.91,-1.04L147.92,99.92l-0.03,-0.07 -9.21,-21.06h0c-1.57,-4.83 -3.46,-8.46 -5.23,-10.56a7.47,7.47 0,0 0,-2.4 -1.98,5.55 5.55,0 0,0 -1.02,-0.34l0.27,0.04a3.61,3.61 0,0 1,0.77 0.25,7.3 7.3,0 0,1 2.45,1.96c1.81,2.1 3.73,5.72 5.33,10.57h0l9.33,21 -0.1,-0.07c4.07,0.34 8.39,0.69 12.91,1.02 2.27,0.17 4.58,0.33 6.94,0.45a16.58,16.58 0,0 0,3.55 -0.06c0.59,-0.09 1.18,-0.2 1.78,-0.33s1.15,-0.28 1.82,-0.39h0.07l0.05,0.09a14.26,14.26 0,0 1,1.51 4.97,35.35 35.35,0 0,1 0.31,5.31v0.1h-0.1l-2.41,0.67c-2.64,0.71 -5.27,1.36 -7.88,1.89 -1.3,0.26 -2.61,0.51 -3.91,0.69a36.02,36.02 0,0 1,-3.9 0.29,74.98 74.98,0 0,1 -7.6,-0.23 71.55,71.55 0,0 1,-7.23 -0.93c-1.17,-0.22 -2.32,-0.47 -3.43,-0.79a11.99,11.99 0,0 1,-3.18 -1.32,4.68 4.68,0 0,1 -1.2,-1.2c-0.34,-0.45 -0.65,-0.91 -0.95,-1.36 -0.6,-0.91 -1.17,-1.82 -1.71,-2.72 -2.18,-3.61 -4.07,-7.06 -5.76,-10.22 -3.37,-6.33 -5.87,-11.57 -7.4,-15.29a34.36,34.36 0,0 1,-1.52 -4.36,7.18 7.18,0 0,1 -0.21,-1.18C118.62,74.53 118.62,74.39 118.62,74.39Z"
android:fillColor="#263238"/>
<path
android:pathData="M172.81,108.38L172.35,108.38a7.82,7.82 0,0 1,-7.05 -5.47,6.78 6.78,0 0,1 1.2,-5.73 4.82,4.82 0,0 1,-0.31 -3.46,7.48 7.48,0 0,1 3.02,-3.89l0.24,0.34a7.08,7.08 0,0 0,-2.86 3.67,4.38 4.38,0 0,0 0.2,2.99 5.74,5.74 0,0 1,2.44 -1.68c1.17,-0.39 2.65,-0.22 3.12,0.88a2,2 0,0 1,-0.26 1.87,2.84 2.84,0 0,1 -1.98,1.18 3.42,3.42 0,0 1,-2.63 -0.68,3.51 3.51,0 0,1 -0.74,-0.82 6.34,6.34 0,0 0,-1.02 5.24,7.41 7.41,0 0,0 6.67,5.16 9.32,9.32 0,0 0,7.78 -3.87c0.35,-0.48 0.66,-1 0.97,-1.51a13.69,13.69 0,0 1,1.66 -2.33c1.06,-1.14 2.82,-2 4.36,-1.34l-0.17,0.38c-1.35,-0.58 -2.93,0.21 -3.9,1.24a13.65,13.65 0,0 0,-1.58 2.25c-0.31,0.51 -0.63,1.04 -0.99,1.54a9.68,9.68 0,0 1,-7.7 4.04ZM167.01,97.2a3.26,3.26 0,0 0,0.73 0.85,2.99 2.99,0 0,0 2.32,0.6 2.42,2.42 0,0 0,1.7 -1,1.6 1.6,0 0,0 0.23,-1.47c-0.35,-0.84 -1.6,-0.99 -2.6,-0.65A5.38,5.38 0,0 0,167.01 97.2Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M183.68,79.01l-10.13,11.33 -4.41,-3.72L179.17,75.25Z"
android:fillColor="#263238"/>
<path
android:pathData="M178.51,85.3c0.16,0 1.54,0.25 1.86,0.7s0,1.8 -0.93,1.85a2.81,2.81 0,0 1,-2.4 -0.92C176.68,86.32 176.81,85.14 178.51,85.3Z"
android:fillColor="#ffbf9d"/>
<path
android:pathData="M173.65,88.24a1.02,1.02 0,0 1,1 -1.07c1.36,-0.05 4.35,-0.08 4.8,0.69 0.58,0.99 0.26,1.66 -0.8,1.75s-3.93,-0.1 -4.67,-0.75A0.9,0.9 0,0 1,173.65 88.24Z"
android:fillColor="#ffbf9d"/>
<path
android:pathData="M173.36,88.81s0.1,-0.5 1.54,0.22 3.19,0.87 2.76,1.66a1.76,1.76 0,0 1,-2.55 0.8C173.92,90.85 172.16,90.4 173.36,88.81Z"
android:fillColor="#ffbf9d"/>
<path
android:pathData="M149.95,85.37c0.08,0 0.49,3.31 0.91,7.39s0.71,7.43 0.62,7.43 -0.49,-3.31 -0.91,-7.39S149.87,85.38 149.95,85.37Z"
android:fillColor="#263238"/>
<path
android:pathData="M144.28,105.12a8.2,8.2 0,0 1,1.41 -3.06,8.32 8.32,0 0,1 2.33,-2.44c0.06,0.07 -1.06,1.08 -2.09,2.6S144.36,105.16 144.28,105.12Z"
android:fillColor="#263238"/>
<path
android:pathData="M127.43,61.15a2.3,2.3 0,0 1,0.6 0.14l1.59,0.49 5.2,1.66c2.04,0.65 3.87,1.21 5.23,1.61l1.59,0.49a2.57,2.57 0,0 1,0.55 0.21,2.21 2.21,0 0,1 -0.6,-0.1c-0.38,-0.08 -0.93,-0.22 -1.61,-0.4 -1.35,-0.35 -3.21,-0.88 -5.25,-1.53s-3.87,-1.28 -5.19,-1.75c-0.66,-0.24 -1.19,-0.44 -1.56,-0.55A2.76,2.76 0,0 1,127.43 61.15Z"
android:fillColor="#263238"/>
</vector>