first commit

This commit is contained in:
riafara 2024-06-12 10:52:59 +07:00
commit 5cc49f56ef
216 changed files with 14409 additions and 0 deletions

15
.gitignore vendored Normal file
View File

@ -0,0 +1,15 @@
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties

3
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
# Default ignored files
/shelf/
/workspace.xml

6
.idea/compiler.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<bytecodeTargetLevel target="11" />
</component>
</project>

19
.idea/gradle.xml Normal file
View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GradleMigrationSettings" migrationVersion="1" />
<component name="GradleSettings">
<option name="linkedExternalProjectsSettings">
<GradleProjectSettings>
<option name="testRunner" value="GRADLE" />
<option name="distributionType" value="DEFAULT_WRAPPED" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="modules">
<set>
<option value="$PROJECT_DIR$" />
<option value="$PROJECT_DIR$/app" />
</set>
</option>
</GradleProjectSettings>
</option>
</component>
</project>

10
.idea/misc.xml Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="ProjectRootManager" version="2" languageLevel="JDK_11" default="true" project-jdk-name="Android Studio default JDK" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" />
</component>
<component name="ProjectType">
<option name="id" value="Android" />
</component>
</project>

1
app/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/build

55
app/build.gradle Normal file
View File

@ -0,0 +1,55 @@
plugins {
id 'com.android.application'
id 'com.google.gms.google-services'
}
android {
namespace 'com.example.punyaria'
compileSdk 34
defaultConfig {
applicationId "com.example.punyaria"
minSdk 23
targetSdk 33
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.11.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'com.google.android.gms:play-services-maps:18.2.0'
implementation 'com.google.firebase:firebase-database:20.3.1'
implementation 'com.google.firebase:firebase-auth:22.3.1'
implementation 'com.google.firebase:firebase-storage:20.3.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
// Dependency untuk navigation component
implementation "androidx.navigation:navigation-fragment-ktx:2.3.5"
implementation "androidx.navigation:navigation-ui-ktx:2.3.5"
// Dependency untuk material design
implementation "com.google.android.material:material:1.4.0"
//gambar profile
implementation 'com.github.bumptech.glide:glide:4.12.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
implementation 'jp.wasabeef:glide-transformations:4.3.0'
}

29
app/google-services.json Normal file
View File

@ -0,0 +1,29 @@
{
"project_info": {
"project_number": "216399312868",
"project_id": "j-counseling",
"storage_bucket": "j-counseling.appspot.com"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:216399312868:android:ad24e60d480dee74b2b9f1",
"android_client_info": {
"package_name": "com.example.punyaria"
}
},
"oauth_client": [],
"api_key": [
{
"current_key": "AIzaSyCNrG7yFIqUbG6uroh6SVVqD7a8jabTL-0"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": []
}
}
}
],
"configuration_version": "1"
}

21
app/proguard-rules.pro vendored Normal file
View File

@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

View File

@ -0,0 +1,26 @@
package com.example.punyaria;
import android.content.Context;
import androidx.test.platform.app.InstrumentationRegistry;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
assertEquals("com.example.punyaria", appContext.getPackageName());
}
}

View File

@ -0,0 +1,106 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/Theme.PunyaRia"
tools:targetApi="34">
<activity
android:name=".AnakBerhadapanHukum"
android:exported="false" />
<activity
android:name=".PerdaganganManusia"
android:exported="false" />
<activity
android:name=".Penelantaran"
android:exported="false" />
<activity
android:name=".KekerasanSeksual"
android:exported="false" />
<activity
android:name=".KekerasanPsikis"
android:exported="false" />
<activity
android:name=".KekerasanFisik"
android:exported="false" />
<activity
android:name=".DataWellnessActivity"
android:exported="false" />
<activity
android:name=".DataUserActivity"
android:exported="false" />
<activity
android:name=".UWellnessActivity"
android:exported="false" />
<activity
android:name=".UserActivity"
android:exported="false" />
<activity
android:name=".RiwayatWellnessActivity"
android:exported="false" />
<activity
android:name=".AdminActivity"
android:exported="false" />
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="AIzaSyCc_3uYzxzKuhDfOAPi4UvJvksUyj-HVmI" />
<activity
android:name=".ResetPasswordActivity"
android:exported="false" />
<activity
android:name=".KonselingActivity"
android:exported="false" />
<activity
android:name=".HotlineActivity"
android:exported="false" />
<activity
android:name=".ChatActivity"
android:exported="false" />
<activity
android:name=".TentangActivity"
android:exported="false" />
<activity
android:name=".FaqActivity"
android:exported="false" />
<activity
android:name=".GantiPasswordActivity"
android:exported="false" />
<activity
android:name=".DataDiriActivity"
android:exported="false" />
<activity
android:name=".ForgotPasswordActivity"
android:exported="false" />
<activity
android:name=".RegisterActivity"
android:exported="false" />
<activity
android:name=".LoginActivity"
android:exported="false" />
<activity
android:name=".SplashScreenActivity"
android:exported="true"> <!-- Anda mungkin tidak perlu exported="true" tergantung pada kebutuhan aplikasi Anda -->
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".MainActivity" />
</application>
</manifest>

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

View File

@ -0,0 +1,47 @@
package com.example.punyaria;
import android.os.Bundle;
import android.view.MenuItem;
import androidx.appcompat.app.AppCompatActivity;
import androidx.navigation.NavController;
import androidx.navigation.Navigation;
import androidx.navigation.ui.NavigationUI;
import com.google.android.material.bottomnavigation.BottomNavigationView;
public class AdminActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_admin);
getSupportActionBar().hide();
// Inisialisasi NavController
NavController navController = Navigation.findNavController(this, R.id.nav_host_fragment);
// Menghubungkan BottomNavigationView dengan NavController
BottomNavigationView bottomNav = findViewById(R.id.bottom_navigation);
NavigationUI.setupWithNavController(bottomNav, navController);
// Atur listener untuk menangani perubahan item yang dipilih
bottomNav.setOnNavigationItemSelectedListener(new BottomNavigationView.OnNavigationItemSelectedListener() {
@Override
public boolean onNavigationItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.navigation_home:
navController.navigate(R.id.berandaFragment);
return true;
case R.id.navigation_history:
navController.navigate(R.id.riwayatFragment);
return true;
case R.id.navigation_account:
navController.navigate(R.id.akunFragment);
return true;
}
return false;
}
});
}
}

View File

@ -0,0 +1,98 @@
package com.example.punyaria;
import android.content.Intent;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;
import androidx.fragment.app.Fragment;
/**
* A simple {@link Fragment} subclass.
* Use the {@link AdminFragment#newInstance} factory method to
* create an instance of this fragment.
*/
public class AdminFragment extends Fragment {
// TODO: Rename parameter arguments, choose names that match
// the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
private static final String ARG_PARAM1 = "param1";
private static final String ARG_PARAM2 = "param2";
// TODO: Rename and change types of parameters
private String mParam1;
private String mParam2;
public AdminFragment() {
// Required empty public constructor
}
/**
* Use this factory method to create a new instance of
* this fragment using the provided parameters.
*
* @param param1 Parameter 1.
* @param param2 Parameter 2.
* @return A new instance of fragment AdminFragment.
*/
// TODO: Rename and change types and number of parameters
public static AdminFragment newInstance(String param1, String param2) {
AdminFragment fragment = new AdminFragment();
Bundle args = new Bundle();
args.putString(ARG_PARAM1, param1);
args.putString(ARG_PARAM2, param2);
fragment.setArguments(args);
return fragment;
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (getArguments() != null) {
mParam1 = getArguments().getString(ARG_PARAM1);
mParam2 = getArguments().getString(ARG_PARAM2);
}
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View view = inflater.inflate(R.layout.fragment_admin, container, false);
TextView user = view.findViewById(R.id.user);
TextView wellness = view.findViewById(R.id.wellness);
Button buttonAdmin = view.findViewById(R.id.buttonAdmin);
user.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(getActivity(), UserActivity.class);
startActivity(intent);
}
});
wellness.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(getActivity(), UWellnessActivity.class);
startActivity(intent);
}
});
buttonAdmin.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Ketika tombol ditekan, buka UserActivity
Intent intent = new Intent(getActivity(), DataDiriActivity.class);
startActivity(intent);
}
});
return view;
}
}

View File

@ -0,0 +1,251 @@
package com.example.punyaria;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.SharedPreferences;
import android.net.Uri;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AlertDialog;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.content.res.ResourcesCompat;
import androidx.fragment.app.Fragment;
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.resource.bitmap.CircleCrop;
import com.google.android.gms.tasks.OnFailureListener;
import com.google.android.gms.tasks.OnSuccessListener;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;
import jp.wasabeef.glide.transformations.CropCircleTransformation;
public class AkunFragment extends Fragment {
private ListView menuListView;
private Button logoutButton;
private TextView textUsername;
private SharedPreferences sharedPreferences;
public AkunFragment() {
// Required empty public constructor
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View view = inflater.inflate(R.layout.fragment_akun, container, false);
// Set judul ActionBar
((AppCompatActivity) requireActivity()).getSupportActionBar().setTitle("Akun");
// Inisialisasi elemen UI
ImageView imageProfile = view.findViewById(R.id.image_profile);
textUsername = view.findViewById(R.id.text_username);
menuListView = view.findViewById(R.id.menu_list);
logoutButton = view.findViewById(R.id.btn_logout);
// Inisialisasi shared preferences
sharedPreferences = requireActivity().getSharedPreferences("loginPrefs", AppCompatActivity.MODE_PRIVATE);
// Ambil username dari shared preferences
String username = sharedPreferences.getString("username", "Guest");
// Tampilkan username pada textUsername
textUsername.setText(username);
// Set foto profil dari Firebase Storage jika tersedia
setProfileImageFromFirebase(imageProfile, username);
// Daftar menu
String[] menuItems = {"Data Diri", "Ganti Password", "Frequently Asked Questions", "Tentang Kami"};
// Buat ArrayAdapter untuk ListView
ArrayAdapter<String> adapter = new ArrayAdapter<String>(requireContext(),
R.layout.list_item_menu, R.id.menu_text, menuItems) {
@NonNull
@Override
public View getView(int position, @Nullable View convertView, @NonNull ViewGroup parent) {
View view = super.getView(position, convertView, parent);
ImageView icon = view.findViewById(R.id.image_icon);
// Set icon dynamically based on position or any other condition
switch (position) {
case 0:
icon.setImageResource(R.drawable.ic_akun);
break;
case 1:
icon.setImageResource(R.drawable.ic_setting);
break;
case 2:
icon.setImageResource(R.drawable.ic_faq);
break;
case 3:
icon.setImageResource(R.drawable.ic_info);
break;
}
return view;
}
};
// Set adapter ke ListView
menuListView.setAdapter(adapter);
// Tangani klik item di ListView
menuListView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
// Aksi yang akan dilakukan sesuai dengan item yang diklik
switch (position) {
case 0:
// Data Diri
Intent dataDiriIntent = new Intent(requireContext(), DataDiriActivity.class);
dataDiriIntent.putExtra("username", username); // Meneruskan username ke DataDiriActivity
startActivity(dataDiriIntent);
break;
case 1:
// Ganti Password
Intent gantiPasswordIntent = new Intent(requireContext(), GantiPasswordActivity.class);
gantiPasswordIntent.putExtra("username", username); // Meneruskan username ke GantiPasswordActivity
startActivity(gantiPasswordIntent);
break;
case 2:
// FAQ
startActivity(new Intent(requireContext(), FaqActivity.class));
break;
case 3:
// Tentang Kami
startActivity(new Intent(requireContext(), TentangActivity.class));
break;
}
}
});
// Tangani klik tombol logout
logoutButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Tampilkan dialog konfirmasi logout
showLogoutConfirmationDialog();
}
});
// Periksa apakah profil telah diperbarui dari DataDiriActivity
if (getActivity() != null) {
Intent intent = getActivity().getIntent();
if (intent != null && intent.getBooleanExtra("profileUpdated", false)) {
// Panggil kembali setProfileImageFromFirebase untuk memperbarui gambar profil
setProfileImageFromFirebase(imageProfile, username);
}
}
return view;
}
// Method untuk menampilkan dialog konfirmasi logout
private void showLogoutConfirmationDialog() {
AlertDialog.Builder builder = new AlertDialog.Builder(requireContext());
// Inflate layout custom dialog
View view = getLayoutInflater().inflate(R.layout.dialog_logout_confirmation, null);
TextView titleTextView = view.findViewById(R.id.dialog_title);
TextView messageTextView = view.findViewById(R.id.dialog_message);
titleTextView.setTextColor(getResources().getColor(R.color.grey)); // Warna judul
messageTextView.setTextColor(getResources().getColor(R.color.grey)); // Warna teks pesan
messageTextView.setTypeface(ResourcesCompat.getFont(requireContext(), R.font.poppins_regular)); // Gaya font
builder.setView(view);
builder.setPositiveButton("Ya", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// Logout
performLogout();
}
});
builder.setNegativeButton("Tidak", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// Batalkan operasi logout
dialog.dismiss();
}
});
AlertDialog dialog = builder.create();
dialog.show();
}
// Method untuk melakukan logout
private void performLogout() {
// Hapus data login dari SharedPreferences
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.remove("isLoggedIn");
editor.remove("username");
editor.apply();
// Kembali ke LoginActivity
Intent intent = new Intent(requireContext(), LoginActivity.class);
startActivity(intent);
requireActivity().finish();
}
// Method untuk menampilkan gambar profil dari Firebase Storage
// Method untuk menampilkan gambar profil dari Firebase Storage
private void setProfileImageFromFirebase(ImageView imageView, String username) {
DatabaseReference userRef = FirebaseDatabase.getInstance().getReference().child("users").child(username);
userRef.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
if (dataSnapshot.exists()) {
User user = dataSnapshot.getValue(User.class);
if (user != null) {
String imageUrl = user.getProfileImageUrl();
if (imageUrl != null && !imageUrl.isEmpty()) {
// Tampilkan gambar menggunakan Glide
Glide.with(requireContext()) // Ganti getApplicationContext() dengan requireContext()
.load(imageUrl)
.transform(new CircleCrop())
.placeholder(R.drawable.ic_profil)
.error(R.drawable.ic_profil)
.into(imageView);
} else {
// Jika tidak ada gambar profil yang tersedia, tampilkan gambar default di sini
// Misalnya:
imageView.setImageResource(R.drawable.ic_profile);
}
}
}
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
// Tangani kesalahan saat mengambil data dari Firebase Database
Toast.makeText(requireContext(), "Gagal memuat foto profil: " + databaseError.getMessage(), Toast.LENGTH_SHORT).show();
}
});
}
}

View File

@ -0,0 +1,124 @@
package com.example.punyaria;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;
import java.util.ArrayList;
import java.util.Collections;
public class AllRiwayatFragment extends Fragment {
private SharedPreferences sharedPreferences;
private ListView listViewKonseling;
private ArrayAdapter<String> adapter;
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_all_riwayat, container, false);
listViewKonseling = view.findViewById(R.id.listViewKonseling);
sharedPreferences = getActivity().getSharedPreferences("loginPrefs", getActivity().MODE_PRIVATE);
loadData();
return view;
}
@Override
public void onResume() {
super.onResume();
loadData(); // Muat ulang data setiap kali fragment menjadi aktif
}
private void loadData() {
DatabaseReference databaseRef = FirebaseDatabase.getInstance().getReference("konseling");
databaseRef.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
ArrayList<String> konselingList = new ArrayList<>();
final ArrayList<String> konselingIDs = new ArrayList<>();
final ArrayList<String> konselingStatuses = new ArrayList<>(); // Tambahkan list untuk menyimpan status
for (DataSnapshot snapshot : dataSnapshot.getChildren()) {
Konseling konseling = snapshot.getValue(Konseling.class);
if (konseling != null) {
String konselingInfo = "Konseli: " + konseling.getUsername() + "\n"
+ "Keluhan: " + konseling.getKeluhan() + "\n"
+ "Tanggal: " + konseling.getDate();
konselingList.add(konselingInfo);
konselingIDs.add(snapshot.getKey());
konselingStatuses.add(konseling.getStatus()); // Simpan status
}
}
Collections.reverse(konselingList);
Collections.reverse(konselingIDs);
Collections.reverse(konselingStatuses); // Balik urutan status
adapter = new ArrayAdapter<String>(getContext(), R.layout.list_riwayat, konselingList) {
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View view = super.getView(position, convertView, parent);
TextView textView = view.findViewById(R.id.textViewListItemRiwayat);
// Ubah drawable berdasarkan status
String status = konselingStatuses.get(position);
if ("ended".equals(status)) {
textView.setCompoundDrawablesWithIntrinsicBounds(R.drawable.message_off, 0, 0, 0);
} else {
textView.setCompoundDrawablesWithIntrinsicBounds(R.drawable.message, 0, 0, 0);
}
return view;
}
};
listViewKonseling.setAdapter(adapter);
listViewKonseling.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
String konselingID = konselingIDs.get(position);
String konselingStatus = konselingStatuses.get(position);
if ("ended".equals(konselingStatus)) {
Toast.makeText(getContext(), "Sesi konseling telah berakhir", Toast.LENGTH_SHORT).show();
} else {
openChatActivity(konselingID);
}
}
});
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
Toast.makeText(getContext(), "Gagal mengambil data konseling: " + databaseError.getMessage(), Toast.LENGTH_SHORT).show();
}
});
}
private void openChatActivity(String konselingID) {
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString("KONSELING_ID", konselingID);
editor.apply();
Intent intent = new Intent(getActivity(), ChatActivity.class);
startActivity(intent);
}
}

View File

@ -0,0 +1,26 @@
package com.example.punyaria;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import androidx.appcompat.app.AppCompatActivity;
public class AnakBerhadapanHukum extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_abh);
getSupportActionBar().hide();
// Inisialisasi ImageView untuk tombol kembali
ImageView headerImageView = findViewById(R.id.headerImageView);
headerImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
}
}

View File

@ -0,0 +1,177 @@
package com.example.punyaria;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.fragment.app.Fragment;
public class BerandaFragment extends Fragment {
private static final String ARG_PARAM1 = "param1";
private static final String ARG_PARAM2 = "param2";
private String mParam1;
private String mParam2;
public BerandaFragment() {
// Required empty public constructor
}
public static BerandaFragment newInstance(String param1, String param2) {
BerandaFragment fragment = new BerandaFragment();
Bundle args = new Bundle();
args.putString(ARG_PARAM1, param1);
args.putString(ARG_PARAM2, param2);
fragment.setArguments(args);
return fragment;
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (getArguments() != null) {
mParam1 = getArguments().getString(ARG_PARAM1);
mParam2 = getArguments().getString(ARG_PARAM2);
}
}
// Metode ini akan menangani klik pada setiap topik
public void goToKonselingActivity(View view) {
Class<?> targetActivity = null;
switch (view.getId()) {
case R.id.topic1:
targetActivity = KekerasanFisik.class;
break;
case R.id.topic2:
targetActivity = KekerasanPsikis.class;
break;
case R.id.topic3:
targetActivity = KekerasanSeksual.class;
break;
case R.id.topic4:
targetActivity = Penelantaran.class;
break;
case R.id.topic5:
targetActivity = PerdaganganManusia.class;
break;
case R.id.topic6:
targetActivity = AnakBerhadapanHukum.class;
break;
}
if (targetActivity != null) {
Intent intent = new Intent(getActivity(), targetActivity);
startActivity(intent);
}
}
@Override
public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View view = inflater.inflate(R.layout.fragment_beranda, container, false);
// Menambahkan listener untuk setiap topik
TextView topic1 = view.findViewById(R.id.topic1);
TextView topic2 = view.findViewById(R.id.topic2);
TextView topic3 = view.findViewById(R.id.topic3);
TextView topic4 = view.findViewById(R.id.topic4);
TextView topic5 = view.findViewById(R.id.topic5);
TextView topic6 = view.findViewById(R.id.topic6);
topic1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
goToKonselingActivity(v);
}
});
topic2.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
goToKonselingActivity(v);
}
});
topic3.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
goToKonselingActivity(v);
}
});
topic4.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
goToKonselingActivity(v);
}
});
topic5.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
goToKonselingActivity(v);
}
});
topic6.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
goToKonselingActivity(v);
}
});
TextView hotlineTextView = view.findViewById(R.id.text_menu_kontak);
TextView chatTextView = view.findViewById(R.id.text_menu_chat);
TextView laporkanTextView = view.findViewById(R.id.text_menu_laporkan);
hotlineTextView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(getActivity(), HotlineActivity.class);
startActivity(intent);
}
});
chatTextView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(getActivity(), KonselingActivity.class);
startActivity(intent);
}
});
laporkanTextView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Nama paket aplikasi yang akan dibuka
String appPackageName = "com.lindungianakdanperempuan.www";
// Membuat intent untuk membuka aplikasi jika sudah terpasang
Intent appIntent = getActivity().getPackageManager().getLaunchIntentForPackage(appPackageName);
if (appIntent != null) {
// Jika aplikasi sudah terinstal, langsung buka aplikasi
startActivity(appIntent);
} else {
// Jika aplikasi belum terinstal, buka halaman aplikasi di Google Play Store
try {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + appPackageName)));
} catch (android.content.ActivityNotFoundException e) {
// Jika tidak ada aplikasi Play Store yang terpasang, membuka halaman aplikasi di web browser
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=" + appPackageName)));
}
}
}
});
return view;
}
}

View File

@ -0,0 +1,242 @@
package com.example.punyaria;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.SharedPreferences;
import android.graphics.Typeface;
import android.net.Uri;
import android.os.Bundle;
import android.view.Gravity;
import android.view.View;
import android.widget.EditText;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AlertDialog;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.content.ContextCompat;
import androidx.core.content.res.ResourcesCompat;
import com.google.firebase.database.ChildEventListener;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.Locale;
public class ChatActivity extends AppCompatActivity {
private EditText messageInput;
private ImageButton sendButton;
private ImageButton attachmentButton;
private ListView chatListView;
private DatabaseReference databaseRef;
private String username;
private String adminUsername = "uptd_ppajember21"; // Admin's username
private ChatAdapter chatAdapter;
private SharedPreferences sharedPreferences;
private static final int PICK_IMAGE_REQUEST = 1;
private Uri imageUrl; // Tambahkan variabel imageUrl
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_chat);
getSupportActionBar().hide();
// Mendapatkan referensi ImageView untuk header
ImageView headerImageView = findViewById(R.id.headerImageView);
headerImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
Toast.makeText(ChatActivity.this, "Chat tersimpan pada Data Konseling", Toast.LENGTH_SHORT).show();
}
});
// Mendapatkan referensi UI lainnya
messageInput = findViewById(R.id.message_input);
sendButton = findViewById(R.id.send_button);
attachmentButton = findViewById(R.id.attachment_button);
chatListView = findViewById(R.id.chat_listview);
// Mendapatkan username dari sharedPreferences
sharedPreferences = getSharedPreferences("loginPrefs", MODE_PRIVATE);
username = sharedPreferences.getString("username", null);
// Mendapatkan KONSELING_ID dari intent
String konselingID = getKonselingID();
// Membuat DatabaseReference sesuai dengan KONSELING_ID
if (konselingID != null) {
databaseRef = FirebaseDatabase.getInstance().getReference("chats").child(konselingID);
} else {
// Handle the case when KONSELING_ID is not available
// For example, display a message or go back to the previous activity
}
// Inisialisasi adapter untuk ListView chat
ArrayList<ChatMessage> messageList = new ArrayList<>();
chatAdapter = new ChatAdapter(this, messageList, username);
chatListView.setAdapter(chatAdapter);
// Listener untuk tombol kirim pesan
sendButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
sendMessage();
}
});
// Listener untuk tombol lampiran
attachmentButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
openGallery();
}
});
// Listener untuk tombol menu
ImageView rightImageView = findViewById(R.id.rightImageView);
rightImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
showEndSessionDialog();
}
});
// ChildEventListener untuk mendengarkan perubahan pada database
databaseRef.addChildEventListener(new ChildEventListener() {
@Override
public void onChildAdded(@NonNull DataSnapshot dataSnapshot, @Nullable String previousChildName) {
ChatMessage chatMessage = dataSnapshot.getValue(ChatMessage.class);
chatAdapter.add(chatMessage);
chatAdapter.notifyDataSetChanged();
}
@Override
public void onChildChanged(@NonNull DataSnapshot dataSnapshot, @Nullable String previousChildName) {}
@Override
public void onChildRemoved(@NonNull DataSnapshot dataSnapshot) {}
@Override
public void onChildMoved(@NonNull DataSnapshot dataSnapshot, @Nullable String previousChildName) {}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {}
});
}
private void sendMessage() {
String messageText = messageInput.getText().toString().trim();
if (!messageText.isEmpty()) {
String currentDate = getCurrentDateTime();
String konselingID = getIntent().getStringExtra("KONSELING_ID");
// Periksa apakah imageUrl sudah ada sebelum membuat ChatMessage
if (imageUrl != null) {
ChatMessage chatMessage = new ChatMessage(username, messageText, currentDate, konselingID, imageUrl.toString());
databaseRef.push().setValue(chatMessage.toMap());
imageUrl = null; // Setelah pengiriman pesan, reset imageUrl menjadi null
} else {
// Jika tidak ada imageUrl, buat ChatMessage tanpa imageUrl
ChatMessage chatMessage = new ChatMessage(username, messageText, currentDate, konselingID, "");
databaseRef.push().setValue(chatMessage.toMap());
}
messageInput.setText("");
}
}
private void openGallery() {
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select Picture"), PICK_IMAGE_REQUEST);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == PICK_IMAGE_REQUEST && resultCode == RESULT_OK && data != null && data.getData() != null) {
Uri selectedImageUri = data.getData();
uploadImageToDatabase(selectedImageUri);
}
}
private void uploadImageToDatabase(Uri imageUri) {
imageUrl = imageUri; // Tetapkan nilai imageUrl dengan Uri gambar yang dipilih
String currentDate = getCurrentDateTime();
String konselingID = getIntent().getStringExtra("KONSELING_ID");
ChatMessage chatMessage = new ChatMessage(username, "", currentDate, konselingID, imageUrl.toString());
databaseRef.push().setValue(chatMessage.toMap());
}
private void showEndSessionDialog() {
Typeface poppins = ResourcesCompat.getFont(this, R.font.poppins_regular);
int grey = ContextCompat.getColor(this, R.color.grey);
TextView title = new TextView(this);
title.setText("Konfirmasi");
title.setPadding(20, 30, 20, 0);
title.setGravity(Gravity.CENTER);
title.setTextSize(16);
title.setTypeface(poppins, Typeface.BOLD);
title.setTextColor(grey);
TextView message = new TextView(this);
message.setText("Anda ingin mengakhiri sesi konseling ini?");
message.setPadding(20, 20, 20, 30);
message.setGravity(Gravity.CENTER);
message.setTextSize(14);
message.setTypeface(poppins);
message.setTextColor(grey);
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setCustomTitle(title);
builder.setView(message);
builder.setPositiveButton("Ya", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// Perbarui status di Firebase
String konselingID = getKonselingID();
if (konselingID != null) {
DatabaseReference konselingRef = FirebaseDatabase.getInstance().getReference("konseling").child(konselingID);
konselingRef.child("status").setValue("ended");
}
finish();
}
});
builder.setNegativeButton("Tidak", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
builder.create().show();
}
private String getCurrentDateTime() {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.getDefault());
return sdf.format(new Date());
}
private String getKonselingID() {
return sharedPreferences.getString("KONSELING_ID", null);
}
}

View File

@ -0,0 +1,72 @@
package com.example.punyaria;
import android.app.Activity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ImageView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import com.bumptech.glide.Glide;
import java.util.List;
public class ChatAdapter extends ArrayAdapter<ChatMessage> {
private Activity context;
private List<ChatMessage> messages;
private String currentUser;
public ChatAdapter(Activity context, List<ChatMessage> messages, String currentUser) {
super(context, R.layout.chat_message_item, messages);
this.context = context;
this.messages = messages;
this.currentUser = currentUser;
}
@NonNull
@Override
public View getView(int position, @Nullable View convertView, @NonNull ViewGroup parent) {
ChatMessage message = messages.get(position);
LayoutInflater inflater = context.getLayoutInflater();
View listViewItem;
if (message.getUsername().equals(currentUser)) {
// Message sent by the logged-in user
listViewItem = inflater.inflate(R.layout.chat_message_sent, null, true);
TextView textViewMessageSent = listViewItem.findViewById(R.id.text_message_sent);
ImageView imageViewMessageSent = listViewItem.findViewById(R.id.image_message_sent);
if (message.isImage()) {
textViewMessageSent.setVisibility(View.GONE);
imageViewMessageSent.setVisibility(View.VISIBLE);
Glide.with(context).load(message.getImageUrl()).into(imageViewMessageSent);
} else {
imageViewMessageSent.setVisibility(View.GONE);
textViewMessageSent.setVisibility(View.VISIBLE);
textViewMessageSent.setText(message.getMessage());
}
} else {
// Message received from other users
listViewItem = inflater.inflate(R.layout.chat_message_received, null, true);
TextView textViewMessageReceived = listViewItem.findViewById(R.id.text_message_received);
ImageView imageViewMessageReceived = listViewItem.findViewById(R.id.image_message_received);
if (message.isImage()) {
textViewMessageReceived.setVisibility(View.GONE);
imageViewMessageReceived.setVisibility(View.VISIBLE);
Glide.with(context).load(message.getImageUrl()).into(imageViewMessageReceived);
} else {
imageViewMessageReceived.setVisibility(View.GONE);
textViewMessageReceived.setVisibility(View.VISIBLE);
textViewMessageReceived.setText(message.getMessage());
}
}
return listViewItem;
}
}

View File

@ -0,0 +1,87 @@
package com.example.punyaria;
import java.util.HashMap;
import java.util.Map;
public class ChatMessage {
private String username;
private String message;
private String timestamp;
private String konselingID; // Tambahkan variabel konselingID
private String imageUrl; // Tambahkan variabel imageUrl
// Empty constructor required for Firebase
public ChatMessage() {
// Default constructor required for calls to DataSnapshot.getValue(ChatMessage.class)
}
// Constructor with arguments
public ChatMessage(String username, String message, String timestamp, String konselingID, String imageUrl) {
this.username = username;
this.message = message;
this.timestamp = timestamp;
this.konselingID = konselingID; // Inisialisasi konselingID
this.imageUrl = imageUrl; // Inisialisasi imageUrl
}
// Getters and setters
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public String getTimestamp() {
return timestamp;
}
public void setTimestamp(String timestamp) {
this.timestamp = timestamp;
}
// Getter and setter for konselingID
public String getKonselingID() {
return konselingID;
}
public void setKonselingID(String konselingID) {
this.konselingID = konselingID;
}
// Getter and setter for imageUrl
public String getImageUrl() {
return imageUrl;
}
public void setImageUrl(String imageUrl) {
this.imageUrl = imageUrl;
}
// Method to convert ChatMessage object into a Map
public Map<String, Object> toMap() {
HashMap<String, Object> result = new HashMap<>();
result.put("username", username);
result.put("message", message);
result.put("timestamp", timestamp);
result.put("konselingID", konselingID); // Include konselingID in the map
result.put("imageUrl", imageUrl); // Include imageUrl in the map
return result;
}
public boolean isImage() {
// Pemeriksaan apakah pesan adalah pesan gambar
// Misalnya, Anda dapat memeriksa apakah imageUrl tidak kosong
return imageUrl != null && !imageUrl.isEmpty();
}
}

View File

@ -0,0 +1,47 @@
package com.example.punyaria;
import android.content.Context;
import android.util.TypedValue;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import java.util.List;
public class CustomAdapterWellness extends ArrayAdapter<String> {
public CustomAdapterWellness(Context context, int resource, List<String> objects) {
super(context, resource, objects);
}
@NonNull
@Override
public View getView(int position, @Nullable View convertView, @NonNull ViewGroup parent) {
LayoutInflater inflater = LayoutInflater.from(getContext());
View customView = inflater.inflate(R.layout.list_item_wellness, parent, false);
TextView textViewPerasaan = customView.findViewById(R.id.textViewPerasaan);
TextView textViewTanggal = customView.findViewById(R.id.textViewTanggal); // Add this line
TextView textViewKeluhan = customView.findViewById(R.id.textViewKeluhan);
String item = getItem(position);
if (item != null) {
String[] parts = item.split("\n");
if (parts.length >= 3) {
textViewPerasaan.setText(parts[0]);
textViewTanggal.setText(parts[2]); // Set the text for tanggal
textViewKeluhan.setText(parts[1]);
}
}
// Set font size for TextViewTanggal
textViewTanggal.setTextSize(TypedValue.COMPLEX_UNIT_SP, 12);
return customView;
}
}

View File

@ -0,0 +1,107 @@
package com.example.punyaria;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseExpandableListAdapter;
import android.widget.ImageView;
import android.widget.TextView;
import java.util.HashMap;
import java.util.List;
public class CustomExpandableListAdapter extends BaseExpandableListAdapter {
private Context context;
private List<String> listDataHeader;
private HashMap<String, List<String>> listDataChild;
public CustomExpandableListAdapter(Context context, List<String> listDataHeader,
HashMap<String, List<String>> listChildData) {
this.context = context;
this.listDataHeader = listDataHeader;
this.listDataChild = listChildData;
}
@Override
public Object getChild(int groupPosition, int childPosition) {
return this.listDataChild.get(this.listDataHeader.get(groupPosition)).get(childPosition);
}
@Override
public long getChildId(int groupPosition, int childPosition) {
return childPosition;
}
@Override
public View getChildView(int groupPosition, final int childPosition,
boolean isLastChild, View convertView, ViewGroup parent) {
final String childText = (String) getChild(groupPosition, childPosition);
if (convertView == null) {
LayoutInflater inflater = (LayoutInflater) this.context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = inflater.inflate(R.layout.list_item, null);
}
TextView txtListChild = convertView.findViewById(R.id.lblListItem);
txtListChild.setText(childText);
return convertView;
}
@Override
public int getChildrenCount(int groupPosition) {
return this.listDataChild.get(this.listDataHeader.get(groupPosition)).size();
}
@Override
public Object getGroup(int groupPosition) {
return this.listDataHeader.get(groupPosition);
}
@Override
public int getGroupCount() {
return this.listDataHeader.size();
}
@Override
public long getGroupId(int groupPosition) {
return groupPosition;
}
@Override
public View getGroupView(int groupPosition, boolean isExpanded,
View convertView, ViewGroup parent) {
String headerTitle = (String) getGroup(groupPosition);
if (convertView == null) {
LayoutInflater inflater = (LayoutInflater) this.context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = inflater.inflate(R.layout.list_group, null);
}
TextView lblListHeader = convertView.findViewById(R.id.lblListHeader);
lblListHeader.setText(headerTitle);
// Tambahkan logika untuk mengubah ikon
ImageView icon = convertView.findViewById(R.id.icon);
if (isExpanded) {
icon.setImageResource(R.drawable.ic_up);
} else {
icon.setImageResource(R.drawable.ic_down);
}
return convertView;
}
@Override
public boolean hasStableIds() {
return false;
}
@Override
public boolean isChildSelectable(int groupPosition, int childPosition) {
return true;
}
}

View File

@ -0,0 +1,265 @@
package com.example.punyaria;
import android.content.Intent;
import android.content.SharedPreferences;
import android.net.Uri;
import android.os.Bundle;
import android.util.Patterns;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AppCompatActivity;
import androidx.fragment.app.FragmentManager;
import androidx.fragment.app.FragmentTransaction;
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.resource.bitmap.CircleCrop;
import com.google.android.gms.tasks.OnFailureListener;
import com.google.android.gms.tasks.OnSuccessListener;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;
public class DataDiriActivity extends AppCompatActivity {
private ImageView imageProfile;
private static final int PICK_IMAGE_GALLERY = 1;
private EditText editTextUsername, editTextNama, editTextEmail, editTextPhoneNumber, editTextTanggalLahir, editTextJenisKelamin, editTextAddress;
private Button buttonSimpan;
private SharedPreferences sharedPreferences;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_data_diri);
getSupportActionBar().hide();
// Mendapatkan intent dan data yang diperlukan
Intent intent = getIntent();
boolean profileUpdated = intent.getBooleanExtra("profileUpdated", false);
// Jika profil berhasil diperbarui, maka kita akan memulai transaksi fragment ke AkunFragment
if (profileUpdated) {
// Memulai transaksi fragment untuk menampilkan AkunFragment
FragmentManager fragmentManager = getSupportFragmentManager(); // Menggunakan getSupportFragmentManager() karena menggunakan AppCompatActivity
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
fragmentTransaction.replace(R.id.nav_host_fragment, new AkunFragment()); // Ganti R.id.container dengan ID dari container fragment di MainActivity Anda
fragmentTransaction.commit();
}
ImageView headerImageView = findViewById(R.id.headerImageView);
headerImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
imageProfile = findViewById(R.id.image_profile);
TextView textEditPhoto = findViewById(R.id.text_edit_photo);
editTextUsername = findViewById(R.id.editTextUsername);
editTextNama = findViewById(R.id.editTextNama);
editTextEmail = findViewById(R.id.editTextEmail);
editTextPhoneNumber = findViewById(R.id.editTextPhoneNumber);
editTextTanggalLahir = findViewById(R.id.editTextTanggalLahir);
editTextJenisKelamin = findViewById(R.id.editTextJenisKelamin);
editTextAddress = findViewById(R.id.editTextAddress);
buttonSimpan = findViewById(R.id.buttonSimpan);
textEditPhoto.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
showImagePickerDialog();
}
});
String username = getUsername();
DatabaseReference userRef = FirebaseDatabase.getInstance().getReference().child("users").child(username);
userRef.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
if (dataSnapshot.exists()) {
User user = dataSnapshot.getValue(User.class);
if (user != null) {
editTextUsername.setText(user.getUsername());
editTextNama.setText(user.getNama());
editTextEmail.setText(user.getEmail());
editTextPhoneNumber.setText(user.getTelepon());
editTextTanggalLahir.setText(user.getTanggalLahir());
editTextJenisKelamin.setText(user.getJenisKelamin());
editTextAddress.setText(user.getAlamat());
String imageUrl = user.getProfileImageUrl();
if (imageUrl != null && !imageUrl.isEmpty()) {
Glide.with(getApplicationContext())
.load(imageUrl)
.transform(new CircleCrop())
.placeholder(R.drawable.ic_profil)
.error(R.drawable.ic_profil)
.into(imageProfile);
}
}
}
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
Toast.makeText(getApplicationContext(), "Gagal memuat data: " + databaseError.getMessage(), Toast.LENGTH_SHORT).show();
}
});
// Hapus setEnabled(false) untuk editTextPhoneNumber
// editTextPhoneNumber.setEnabled(false);
buttonSimpan.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
simpanData();
}
});
}
private String getUsername() {
SharedPreferences sharedPreferences = getSharedPreferences("loginPrefs", MODE_PRIVATE);
return sharedPreferences.getString("username", null);
}
private void showImagePickerDialog() {
Intent pickIntent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
pickIntent.setType("image/*");
startActivityForResult(pickIntent, PICK_IMAGE_GALLERY);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == RESULT_OK) {
if (requestCode == PICK_IMAGE_GALLERY && data != null) {
Uri selectedImageUri = data.getData();
if (selectedImageUri != null) {
Glide.with(getApplicationContext())
.load(selectedImageUri)
.transform(new CircleCrop())
.placeholder(R.drawable.ic_profil)
.error(R.drawable.ic_profil)
.into(imageProfile);
saveImageToDatabase(selectedImageUri);
}
}
}
}
private void saveImageToDatabase(Uri imageUrl) {
String username = getUsername();
DatabaseReference userRef = FirebaseDatabase.getInstance().getReference().child("users").child(username);
userRef.child("profileImageUrl").setValue(imageUrl.toString())
.addOnSuccessListener(new OnSuccessListener<Void>() {
@Override
public void onSuccess(Void aVoid) {
// Periksa jika username adalah "uptd_ppajember21"
String username = getUsername(); // Mendapatkan username
if (username != null && username.equals("uptd_ppajember21")) {
// Jika username adalah "uptd_ppajember21", arahkan pengguna ke AdminActivity
Toast.makeText(getApplicationContext(), "Foto Profil berhasil diperbarui", Toast.LENGTH_SHORT).show();
Intent intent = new Intent(getApplicationContext(), AdminActivity.class);
startActivity(intent);
} else {
// Jika bukan, arahkan pengguna ke MainActivity
Toast.makeText(getApplicationContext(), "Foto Profil berhasil diperbarui", Toast.LENGTH_SHORT).show();
Intent intent = new Intent(getApplicationContext(), MainActivity.class);
intent.putExtra("selectedFragment", R.id.navigation_account); // ID navigasi untuk BerandaFragment
startActivity(intent);
}
finish(); // Selesaikan aktivitas saat ini
}
})
.addOnFailureListener(new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception e) {
Toast.makeText(getApplicationContext(), "Gagal memperbarui foto profil: " + e.getMessage(), Toast.LENGTH_SHORT).show();
}
});
}
private void simpanData() {
final String username = editTextUsername.getText().toString().trim();
final String nama = editTextNama.getText().toString().trim();
final String email = editTextEmail.getText().toString().trim();
final String telepon = editTextPhoneNumber.getText().toString().trim();
final String tanggalLahir = editTextTanggalLahir.getText().toString().trim();
final String jenisKelamin = editTextJenisKelamin.getText().toString().trim();
final String alamat = editTextAddress.getText().toString().trim();
// Validasi nomor telepon
if (!telepon.isEmpty() && !telepon.matches("\\d{10,15}")) {
Toast.makeText(getApplicationContext(), "Nomor telepon harus terdiri dari 10-15 digit angka", Toast.LENGTH_SHORT).show();
return;
}
// Validasi email
if (!email.isEmpty() && !Patterns.EMAIL_ADDRESS.matcher(email).matches()) {
Toast.makeText(getApplicationContext(), "Email tidak valid", Toast.LENGTH_SHORT).show();
return;
}
// Cek apakah nomor telepon sudah terdaftar
DatabaseReference usersRef = FirebaseDatabase.getInstance().getReference().child("users");
usersRef.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
boolean phoneExists = false;
for (DataSnapshot snapshot : dataSnapshot.getChildren()) {
User user = snapshot.getValue(User.class);
if (user != null && telepon.equals(user.getTelepon()) && !username.equals(user.getUsername())) {
phoneExists = true;
break;
}
}
if (phoneExists) {
Toast.makeText(getApplicationContext(), "Nomor Telepon sudah terdaftar dengan akun lain", Toast.LENGTH_SHORT).show();
} else {
// Simpan data ke Firebase
DatabaseReference userRef = FirebaseDatabase.getInstance().getReference().child("users").child(username);
// Set data ke Firebase, tetap menyimpan nilai kosong jika input kosong
userRef.child("nama").setValue(nama.isEmpty() ? "" : nama);
userRef.child("email").setValue(email.isEmpty() ? "" : email);
userRef.child("telepon").setValue(telepon.isEmpty() ? "" : telepon);
userRef.child("tanggalLahir").setValue(tanggalLahir.isEmpty() ? "" : tanggalLahir);
userRef.child("jenisKelamin").setValue(jenisKelamin.isEmpty() ? "" : jenisKelamin);
userRef.child("alamat").setValue(alamat.isEmpty() ? "" : alamat);
// Success message
Toast.makeText(getApplicationContext(), "Data berhasil disimpan", Toast.LENGTH_SHORT).show();
// Update gambar profil di AkunFragment setelah data berhasil disimpan
Intent resultIntent = new Intent();
resultIntent.putExtra("profileUpdated", true);
setResult(RESULT_OK, resultIntent);
finish();
}
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
Toast.makeText(getApplicationContext(), "Gagal menyimpan data " + databaseError.getMessage(), Toast.LENGTH_SHORT).show();
}
});
}
}

View File

@ -0,0 +1,98 @@
package com.example.punyaria;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.Toast;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.resource.bitmap.CircleCrop;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;
public class DataUserActivity extends AppCompatActivity {
private DatabaseReference databaseReference;
private EditText editTextUsername, editTextNama, editTextEmail, editTextPhoneNumber, editTextTanggalLahir, editTextJenisKelamin, editTextAddress;
private SharedPreferences sharedPreferences;
private ImageView profileImageView; // Tambahkan ImageView untuk menampilkan gambar profil
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_data_user);
getSupportActionBar().hide();
// Inisialisasi ImageView untuk tombol kembali
ImageView headerImageView = findViewById(R.id.headerImageView);
headerImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
// Inisialisasi SharedPreferences
sharedPreferences = getSharedPreferences("userData", MODE_PRIVATE);
// Inisialisasi EditText
editTextUsername = findViewById(R.id.editTextUsername);
editTextNama = findViewById(R.id.editTextNama);
editTextEmail = findViewById(R.id.editTextEmail);
editTextPhoneNumber = findViewById(R.id.editTextPhoneNumber);
editTextTanggalLahir = findViewById(R.id.editTextTanggalLahir);
editTextJenisKelamin = findViewById(R.id.editTextJenisKelamin);
editTextAddress = findViewById(R.id.editTextAddress);
profileImageView = findViewById(R.id.image_profile); // Inisialisasi ImageView
// Menerima data username dari SharedPreferences
String username = sharedPreferences.getString("selectedUsername", "");
// Referensi database
databaseReference = FirebaseDatabase.getInstance().getReference().child("users").child(username);
// Mendapatkan data dari database
databaseReference.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
// Mendapatkan data pengguna
User user = dataSnapshot.getValue(User.class);
if (user != null) {
// Menampilkan data pengguna di EditText
editTextUsername.setText(user.getUsername());
editTextNama.setText(user.getNama());
editTextEmail.setText(user.getEmail());
editTextPhoneNumber.setText(user.getTelepon());
editTextTanggalLahir.setText(user.getTanggalLahir());
editTextJenisKelamin.setText(user.getJenisKelamin());
editTextAddress.setText(user.getAlamat());
// Memuat gambar profil jika URL gambar profil tidak kosong
String imageUrl = user.getProfileImageUrl();
if (imageUrl != null && !imageUrl.isEmpty()) {
Glide.with(getApplicationContext())
.load(imageUrl)
.transform(new CircleCrop())
.placeholder(R.drawable.ic_profil)
.error(R.drawable.ic_profil)
.into(profileImageView);
}
}
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
// Menangani kesalahan
Toast.makeText(getApplicationContext(), "Gagal memuat data: " + databaseError.getMessage(), Toast.LENGTH_SHORT).show();
}
});
}
}

View File

@ -0,0 +1,86 @@
package com.example.punyaria;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import android.widget.ListView;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;
import java.util.ArrayList;
import java.util.List;
public class DataWellnessActivity extends AppCompatActivity {
private DatabaseReference wellnessDatabaseRef;
private ListView listView;
private CustomAdapterWellness adapter;
private List<String> wellnessHistory;
private SharedPreferences sharedPreferences;
private String selectedUsername;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getSupportActionBar().hide();
setContentView(R.layout.activity_data_wellness);
// Initialize SharedPreferences
sharedPreferences = getSharedPreferences("userData", MODE_PRIVATE);
// Mendapatkan username yang dipilih dari SharedPreferences
selectedUsername = sharedPreferences.getString("selectedUsername", "");
// Inisialisasi ImageView untuk tombol kembali
ImageView headerImageView = findViewById(R.id.headerImageView);
headerImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
// Inisialisasi referensi database wellness
wellnessDatabaseRef = FirebaseDatabase.getInstance().getReference().child("wellness");
// Inisialisasi ListView
listView = findViewById(R.id.listViewWellness);
// Inisialisasi daftar riwayat wellness
wellnessHistory = new ArrayList<>();
// Inisialisasi adapter kustom untuk ListView
adapter = new CustomAdapterWellness(this, R.layout.list_item_wellness, wellnessHistory);
// Set adapter ke ListView
listView.setAdapter(adapter);
// Ambil dan tampilkan riwayat wellness sesuai dengan username yang dipilih dari Firebase
wellnessDatabaseRef.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
wellnessHistory.clear();
for (DataSnapshot snapshot : dataSnapshot.getChildren()) {
WellnessData wellnessData = snapshot.getValue(WellnessData.class);
if (wellnessData != null && wellnessData.getUsername().equals(selectedUsername)) {
String history = "Perasaan " + wellnessData.getPerasaan() + "\n" + wellnessData.getKeluhan() + "\n" + wellnessData.getTanggal();
wellnessHistory.add(0, history); // Tambahkan ke indeks 0
}
}
adapter.notifyDataSetChanged();
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
// Handle database error
}
});
}
}

View File

@ -0,0 +1,92 @@
package com.example.punyaria;
import android.os.Bundle;
import android.view.View;
import android.widget.ExpandableListView;
import android.widget.ImageView;
import androidx.appcompat.app.AppCompatActivity;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
public class FaqActivity extends AppCompatActivity {
ExpandableListView expandableListView;
CustomExpandableListAdapter expandableListAdapter;
List<String> listDataHeader;
HashMap<String, List<String>> listDataChild;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_faq);
getSupportActionBar().hide();
// Inisialisasi ExpandableListView
expandableListView = findViewById(R.id.listViewFAQ);
// Persiapkan data daftar pertanyaan dan jawaban
prepareListData();
// Buat adapter ExpandableListView
expandableListAdapter = new CustomExpandableListAdapter(this, listDataHeader, listDataChild);
// Atur adapter ke ExpandableListView
expandableListView.setAdapter(expandableListAdapter);
// Mengatur listener untuk panah kembali
ImageView headerImageView = findViewById(R.id.headerImageView);
headerImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
}
// Mengisi data daftar pertanyaan dan jawaban
private void prepareListData() {
listDataHeader = new ArrayList<>();
listDataChild = new HashMap<>();
// Menambahkan pertanyaan
listDataHeader.add("Apa itu J-Konseling?");
listDataHeader.add("Siapa yang dapat mengakses J-Konseling?");
listDataHeader.add("Apakah konseling tersedia secara gratis?");
listDataHeader.add("Bagaimana keamanan & privasi data konseli?");
listDataHeader.add("Bagaimana proses konseling dilakukan?");
listDataHeader.add("Bagaimana cara menangani situasi darurat atau kasus yang membutuhkan tanggapan cepat?");
// Tambahkan pertanyaan lainnya sesuai kebutuhan
// Menambahkan jawaban
List<String> jawaban1 = new ArrayList<>();
jawaban1.add("Aplikasi J-Konseling berfungsi untuk memberikan layanan konseling dan dukungan kepada korban kekerasan perempuan dan anak di Kabupaten Jember secara online, sehingga mereka dapat mengakses bantuan dan dukungan yang mereka butuhkan dengan lebih mudah dan cepat.");
List<String> jawaban2 = new ArrayList<>();
jawaban2.add("J-Konseling dapat diakses oleh korban kekerasan perempuan dan anak di Kabupaten Jember, serta oleh orang-orang yang memberikan dukungan kepada mereka, seperti keluarga atau teman dekat.");
List<String> jawaban3 = new ArrayList<>();
jawaban3.add("J-Konseling tersedia secara gratis untuk diunduh dan digunakan oleh siapa pun.");
List<String> jawaban4 = new ArrayList<>();
jawaban4.add("Semua informasi yang dibagikan selama sesi konseling akan dijaga kerahasiaannya sesuai dengan standar etika konseling dan keamanan data yang berlaku.");
List<String> jawaban5 = new ArrayList<>();
jawaban5.add("Proses konseling dilakukan melalui obrolan (chat) online dengan konselor yang terlatih dan berpengalaman dalam bidang kekerasan perempuan dan anak.");
List<String> jawaban6 = new ArrayList<>();
jawaban6.add("Untuk situasi darurat, anda dapat menghubungi hotline yang tersedia di dalam aplikasi. Tim kami akan segera memberikan respons dan bantuan yang diperlukan.");
// Tambahkan jawaban ke masing-masing pertanyaan
listDataChild.put(listDataHeader.get(0), jawaban1);
listDataChild.put(listDataHeader.get(1), jawaban2);
listDataChild.put(listDataHeader.get(2), jawaban3);
listDataChild.put(listDataHeader.get(3), jawaban4);
listDataChild.put(listDataHeader.get(4), jawaban5);
listDataChild.put(listDataHeader.get(5), jawaban6);
// Tambahkan jawaban lainnya sesuai kebutuhan
}
}

View File

@ -0,0 +1,168 @@
package com.example.punyaria;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.text.Layout;
import android.text.Spannable;
import android.text.SpannableString;
import android.text.TextUtils;
import android.text.style.AlignmentSpan;
import android.text.style.ForegroundColorSpan;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.NumberPicker;
import android.widget.Toast;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;
import java.util.Calendar;
public class ForgotPasswordActivity extends AppCompatActivity {
private Button buttonLanjutkan;
private EditText editTextUsername, editTextUmur;
private DatabaseReference usersRef;
private int selectedDay, selectedMonth, selectedYear;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_forgot_password);
getSupportActionBar().hide();
ImageView headerImageView = findViewById(R.id.headerImageView);
headerImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
// Inisialisasi button
buttonLanjutkan = findViewById(R.id.buttonLanjutkan);
editTextUsername = findViewById(R.id.editTextUsername);
editTextUmur = findViewById(R.id.editTextUmur);
// Mendapatkan referensi ke tabel "users" di Firebase Database
usersRef = FirebaseDatabase.getInstance().getReference().child("users");
// Menambahkan listener klik pada tombol
buttonLanjutkan.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Mendapatkan username dan tanggal lahir dari input pengguna
String username = editTextUsername.getText().toString().trim();
String tanggalLahir = editTextUmur.getText().toString().trim();
// Memastikan kedua input tidak kosong
if (TextUtils.isEmpty(username) || TextUtils.isEmpty(tanggalLahir)) {
Toast.makeText(ForgotPasswordActivity.this, "Isi semua field", Toast.LENGTH_SHORT).show();
return;
}
// Simpan username ke SharedPreferences
SharedPreferences sharedPreferences = getSharedPreferences("MyPrefs", Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString("username", username);
editor.apply();
// Mengecek apakah username ada di database
usersRef.child(username).addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
if (dataSnapshot.exists()) {
// Username ditemukan, sekarang periksa tanggal lahir
String tanggalLahirDatabase = dataSnapshot.child("tanggalLahir").getValue(String.class);
if (tanggalLahir.equals(tanggalLahirDatabase)) {
// Tanggal lahir cocok, lanjut ke ResetPasswordActivity
Intent intent = new Intent(ForgotPasswordActivity.this, ResetPasswordActivity.class);
startActivity(intent);
} else {
Toast.makeText(ForgotPasswordActivity.this, "Tanggal lahir salah", Toast.LENGTH_SHORT).show();
}
} else {
// Username tidak ditemukan di database
Toast.makeText(ForgotPasswordActivity.this, "Username tidak ditemukan", Toast.LENGTH_SHORT).show();
}
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
// Error handling
Toast.makeText(ForgotPasswordActivity.this, "Gagal memproses data: " + databaseError.getMessage(), Toast.LENGTH_SHORT).show();
}
});
}
});
// Menambahkan listener klik pada editTextTanggalLahir
editTextUmur.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
showDatePickerDialog(ForgotPasswordActivity.this);
}
});
}
private void showDatePickerDialog(Context context) {
final View dialogView = LayoutInflater.from(context).inflate(R.layout.dialog_date_picker, null);
final NumberPicker dayPicker = dialogView.findViewById(R.id.dayPicker);
final NumberPicker monthPicker = dialogView.findViewById(R.id.monthPicker);
final NumberPicker yearPicker = dialogView.findViewById(R.id.yearPicker);
// Initialize day picker
dayPicker.setMinValue(1);
dayPicker.setMaxValue(31);
// Initialize month picker
monthPicker.setMinValue(1);
monthPicker.setMaxValue(12);
// Initialize year picker
int currentYear = Calendar.getInstance().get(Calendar.YEAR);
yearPicker.setMinValue(currentYear - 100); // Adjust as needed
yearPicker.setMaxValue(currentYear);
// Set initial values
dayPicker.setValue(selectedDay);
monthPicker.setValue(selectedMonth);
yearPicker.setValue(selectedYear);
// Create a SpannableString to set title color and alignment
String title = "Tanggal Lahir";
SpannableString spannableString = new SpannableString(title);
// Set color
spannableString.setSpan(new ForegroundColorSpan(getResources().getColor(R.color.grey)), 0, title.length(), 0);
// Set alignment
spannableString.setSpan(new AlignmentSpan.Standard(Layout.Alignment.ALIGN_CENTER), 0, title.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(context);
alertDialogBuilder.setView(dialogView)
.setTitle(spannableString)
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
selectedDay = dayPicker.getValue();
selectedMonth = monthPicker.getValue();
selectedYear = yearPicker.getValue();
editTextUmur.setText(String.format("%02d/%02d/%04d", selectedDay, selectedMonth, selectedYear));
}
})
.setNegativeButton("Batal", null)
.show();
}
}

View File

@ -0,0 +1,170 @@
package com.example.punyaria;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.text.TextUtils;
import android.text.method.HideReturnsTransformationMethod;
import android.text.method.PasswordTransformationMethod;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.Toast;
import androidx.appcompat.app.AppCompatActivity;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
public class GantiPasswordActivity extends AppCompatActivity {
private EditText editTextPasswordAktif, editTextPasswordBaru, editTextKpasswordBaru;
private Button buttonSimpan;
private ImageView imageViewAPasswordVisibility;
private ImageView imageViewPasswordVisibility;
private ImageView imageViewKPasswordVisibility;
// Tambahkan shared preferences
private SharedPreferences sharedPreferences;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getSupportActionBar().hide();
setContentView(R.layout.activity_ganti_password);
editTextPasswordAktif = findViewById(R.id.editTextPasswordAktif);
editTextPasswordBaru = findViewById(R.id.editTextPasswordBaru);
editTextKpasswordBaru = findViewById(R.id.editTextKpasswordBaru);
imageViewAPasswordVisibility = findViewById(R.id.imageViewAPasswordVisibility);
imageViewPasswordVisibility = findViewById(R.id.imageViewPasswordVisibility);
imageViewKPasswordVisibility = findViewById(R.id.imageViewKPasswordVisibility);
buttonSimpan = findViewById(R.id.buttonSimpan);
// Atur onClickListener untuk imageView editTextPasswordAktif
imageViewAPasswordVisibility.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Ganti ikon dan visibility password
togglePasswordVisibility(editTextPasswordAktif, imageViewAPasswordVisibility);
}
});
// Atur onClickListener untuk imageView editTextPasswordBaru
imageViewPasswordVisibility.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Ganti ikon dan visibility password
togglePasswordVisibility(editTextPasswordBaru, imageViewPasswordVisibility);
}
});
// Atur onClickListener untuk imageView editTextKPasswordBaru
imageViewKPasswordVisibility.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Ganti ikon dan visibility password
togglePasswordVisibility(editTextKpasswordBaru, imageViewKPasswordVisibility);
}
});
// Inisialisasi shared preferences
sharedPreferences = getSharedPreferences("loginPrefs", MODE_PRIVATE);
// Menambahkan listener klik pada tombol Simpan
buttonSimpan.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
simpanPasswordBaru();
}
});
ImageView headerImageView = findViewById(R.id.headerImageView);
headerImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
}
private void simpanPasswordBaru() {
String passwordAktif = editTextPasswordAktif.getText().toString().trim();
String passwordBaru = editTextPasswordBaru.getText().toString().trim();
String kPasswordBaru = editTextKpasswordBaru.getText().toString().trim();
if (TextUtils.isEmpty(passwordAktif) || TextUtils.isEmpty(passwordBaru) || TextUtils.isEmpty(kPasswordBaru)) {
// Jika ada input yang masih kosong
Toast.makeText(this, "Semua input harus diisi", Toast.LENGTH_SHORT).show();
return;
}
if (!passwordBaru.equals(kPasswordBaru)) {
// Jika password baru tidak cocok dengan konfirmasi password baru
Toast.makeText(this, "Password baru dan konfirmasi password baru tidak cocok", Toast.LENGTH_SHORT).show();
return;
}
if (!passwordBaru.matches("^(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z])(?=.*[+×÷=/_€£¥₩!@#$%^&*()':;,?`~<>{}¡¿])(?=\\S+$).{8,}$")) {
// Jika password tidak memenuhi kriteria
Toast.makeText(getApplicationContext(), "Password harus terdiri dari minimal 8 karakter berisi kombinasi huruf kapital dan kecil, angka, dan simbol", Toast.LENGTH_SHORT).show();
return;
}
// Dapatkan username dari shared preferences
String username = getUsername();
// Perbarui password di Firebase Realtime Database
updatePasswordInDatabase(username, passwordBaru);
// Simpan password baru ke shared preferences
savePasswordBaru(passwordBaru);
// Tampilkan pesan sukses
Toast.makeText(this, "Password berhasil diubah", Toast.LENGTH_SHORT).show();
// Kembali ke halaman sebelumnya atau lakukan tindakan lain sesuai kebutuhan
finish();
}
// Fungsi untuk menyimpan password baru ke shared preferences
private void savePasswordBaru(String passwordBaru) {
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString("password", passwordBaru);
editor.apply();
}
// Fungsi untuk mendapatkan password aktif dari shared preferences
private String getPasswordAktif() {
// Menggunakan key "password" untuk mengambil password dari shared preferences
return sharedPreferences.getString("password", "");
}
// Fungsi untuk mendapatkan username dari shared preferences
private String getUsername() {
// Menggunakan key "username" untuk mengambil username dari shared preferences
return sharedPreferences.getString("username", "");
}
// Fungsi untuk memperbarui password di Firebase Realtime Database
private void updatePasswordInDatabase(String username, String passwordBaru) {
DatabaseReference databaseReference = FirebaseDatabase.getInstance().getReference().child("users").child(username);
databaseReference.child("password").setValue(passwordBaru);
}
private void togglePasswordVisibility(EditText editText, ImageView imageView) {
boolean isPasswordVisible = editText.getTransformationMethod() instanceof PasswordTransformationMethod;
if (isPasswordVisible) {
// Jika password terlihat, sembunyikan dan ganti ikon
editText.setTransformationMethod(HideReturnsTransformationMethod.getInstance());
imageView.setImageResource(R.drawable.ic_visibility_on);
} else {
// Jika password tersembunyi, tampilkan dan ganti ikon
editText.setTransformationMethod(PasswordTransformationMethod.getInstance());
imageView.setImageResource(R.drawable.ic_visibility_off);
}
}
}

View File

@ -0,0 +1,49 @@
package com.example.punyaria;
import android.app.Dialog;
import android.content.Context;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import androidx.annotation.NonNull;
public class GenderDialog extends Dialog {
private Context context;
private GenderDialogListener listener;
public GenderDialog(@NonNull Context context, GenderDialogListener listener) {
super(context);
this.context = context;
this.listener = listener;
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.dialog_gender);
ListView genderListView = findViewById(R.id.genderListView);
String[] genders = {"Laki-laki", "Perempuan"};
ArrayAdapter<String> adapter = new ArrayAdapter<>(context, R.layout.list_item_gender, genders);
genderListView.setAdapter(adapter);
genderListView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
// Ketika item di ListView dipilih, ambil nilai jenis kelamin dan kirimkan ke listener
String selectedGender = genders[position];
listener.onGenderSelected(selectedGender);
dismiss(); // Tutup dialog setelah memilih
}
});
}
// Interface untuk menangani pemilihan jenis kelamin
public interface GenderDialogListener {
void onGenderSelected(String gender);
}
}

View File

@ -0,0 +1,116 @@
package com.example.punyaria;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;
public class HotlineActivity extends AppCompatActivity {
private ListView listView;
private String[] hotlineItems = {"WhatsApp", "Telepon", "Instagram", "Email"};
private String[] hotlineSubItems = {"081138808800", "081138808800", "uptd_ppajember21", "pusatpelayananterpadu@gmail.com"};
private int[] hotlineIcons = {R.drawable.whatsapp, R.drawable.wa, R.drawable.instagram, R.drawable.email}; // Sesuaikan dengan sumber gambar yang benar
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_hotline);
getSupportActionBar().hide();
ImageView headerImageView = findViewById(R.id.headerImageView);
headerImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
listView = findViewById(R.id.hotline);
// Membuat adapter kustom untuk ListView
HotlineAdapter adapter = new HotlineAdapter(hotlineItems, hotlineSubItems, hotlineIcons);
listView.setAdapter(adapter);
// Menangani klik item ListView
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
String selectedItem = hotlineItems[position];
String selectedSubItem = hotlineSubItems[position];
// Membuat intent untuk membuka layanan WhatsApp
if (selectedItem.equals("WhatsApp")) {
String url = "https://api.whatsapp.com/send?phone=" + +62 + selectedSubItem;
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
startActivity(intent);
}
// Membuat intent untuk melakukan panggilan telepon
else if (selectedItem.equals("Telepon")) {
Intent intent = new Intent(Intent.ACTION_DIAL);
intent.setData(Uri.parse("tel:" + selectedSubItem));
startActivity(intent);
}
// Membuat intent untuk membuka aplikasi Instagram
else if (selectedItem.equals("Instagram")) {
String url = "https://www.instagram.com/" + selectedSubItem;
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
startActivity(intent);
}
// Membuat intent untuk membuka aplikasi email
else if (selectedItem.equals("Email")) {
Intent intent = new Intent(Intent.ACTION_SENDTO);
intent.setData(Uri.parse("mailto:"));
intent.putExtra(Intent.EXTRA_EMAIL, new String[]{selectedSubItem});
startActivity(Intent.createChooser(intent, "Choose an Email client :"));
}
// Tambahkan logika lainnya sesuai kebutuhan
else {
Toast.makeText(HotlineActivity.this, "Anda memilih: " + selectedItem, Toast.LENGTH_SHORT).show();
}
}
});
}
// Kelas adapter kustom untuk menampilkan item hotline dengan ikon dan subjudul
private class HotlineAdapter extends ArrayAdapter<String> {
private final String[] items;
private final String[] subItems;
private final int[] icons;
public HotlineAdapter(String[] items, String[] subItems, int[] icons) {
super(HotlineActivity.this, R.layout.list_hotline, items);
this.items = items;
this.subItems = subItems;
this.icons = icons;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = getLayoutInflater();
View rowView = inflater.inflate(R.layout.list_hotline, parent, false);
TextView textViewTitle = rowView.findViewById(R.id.menu_title);
TextView textViewSubTitle = rowView.findViewById(R.id.menu_subtitle);
ImageView imageView = rowView.findViewById(R.id.image_icon);
textViewTitle.setText(items[position]);
textViewSubTitle.setText(subItems[position]);
imageView.setImageResource(icons[position]);
return rowView;
}
}
}

View File

@ -0,0 +1,26 @@
package com.example.punyaria;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import androidx.appcompat.app.AppCompatActivity;
public class KekerasanFisik extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_kekerasan_fisik);
getSupportActionBar().hide();
// Inisialisasi ImageView untuk tombol kembali
ImageView headerImageView = findViewById(R.id.headerImageView);
headerImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
}
}

View File

@ -0,0 +1,26 @@
package com.example.punyaria;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import androidx.appcompat.app.AppCompatActivity;
public class KekerasanPsikis extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_kekerasan_psikis);
getSupportActionBar().hide();
// Inisialisasi ImageView untuk tombol kembali
ImageView headerImageView = findViewById(R.id.headerImageView);
headerImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
}
}

View File

@ -0,0 +1,26 @@
package com.example.punyaria;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import androidx.appcompat.app.AppCompatActivity;
public class KekerasanSeksual extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_kekerasan_seksual);
getSupportActionBar().hide();
// Inisialisasi ImageView untuk tombol kembali
ImageView headerImageView = findViewById(R.id.headerImageView);
headerImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
}
}

View File

@ -0,0 +1,83 @@
package com.example.punyaria;
public class Konseling {
private String username;
private String topik;
private String keluhan;
private String date;
private String konselingID;
private String status; // Tambahkan properti status
public Konseling() {
// Diperlukan konstruktor kosong untuk Firebase
}
public Konseling(String username, String topik, String keluhan, String date) {
this.username = username;
this.topik = topik;
this.keluhan = keluhan;
this.date = date;
this.status = "active"; // Inisialisasi status dengan nilai default
}
// Tambahkan konstruktor dengan status
public Konseling(String username, String topik, String keluhan, String date, String status) {
this.username = username;
this.topik = topik;
this.keluhan = keluhan;
this.date = date;
this.status = status;
}
// Getter dan setter untuk date
public String getDate() {
return date;
}
public void setDate(String date) {
this.date = date;
}
// Getter dan setter untuk username, topik, dan keluhan
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getTopik() {
return topik;
}
public void setTopik(String topik) {
this.topik = topik;
}
public String getKeluhan() {
return keluhan;
}
public void setKeluhan(String keluhan) {
this.keluhan = keluhan;
}
// Getter dan setter untuk konselingID
public String getKonselingID() {
return konselingID;
}
public void setKonselingID(String konselingID) {
this.konselingID = konselingID;
}
// Getter dan setter untuk status
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
}

View File

@ -0,0 +1,181 @@
package com.example.punyaria;
import android.content.Intent;
import android.content.SharedPreferences;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import androidx.appcompat.app.AppCompatActivity;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.HashMap;
import java.util.Locale;
import java.util.Map;
public class KonselingActivity extends AppCompatActivity {
private Button buttonKonseling;
private EditText editTextTopik;
private EditText editTextKeluhan;
private String username; // Menyimpan username pengguna yang sedang login
private Uri imageUrl; // Menyimpan URL gambar yang dipilih
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_konseling);
getSupportActionBar().hide();
ImageView headerImageView = findViewById(R.id.headerImageView);
headerImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
// Inisialisasi button konseling
buttonKonseling = findViewById(R.id.buttonKonseling);
// Inisialisasi EditText topik dan keluhan
editTextTopik = findViewById(R.id.editTextTopik);
editTextKeluhan = findViewById(R.id.editTextKeluhan);
// Menambahkan listener klik pada EditText topik
editTextTopik.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Tampilkan dialog konseling
showKonselingDialog();
}
});
// Menerima informasi topik dari intent
String topic = getIntent().getStringExtra("TOPIC");
// Set text editTextTopik sesuai dengan topik yang dipilih
editTextTopik.setText(topic);
// Menambahkan listener klik pada tombol konseling
buttonKonseling.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Memeriksa apakah topik dan keluhan telah terisi
if (isDataValid()) {
// Simpan data konseling ke Firebase dan lanjutkan ke ChatActivity
String konselingID = saveKonselingData();
sendAutomaticMessage(konselingID);
goToChatActivity(konselingID);
}
}
});
// Mendapatkan username pengguna saat login
username = getUsername();
}
// Method untuk memeriksa apakah topik dan keluhan telah terisi
private boolean isDataValid() {
String topik = editTextTopik.getText().toString();
String keluhan = editTextKeluhan.getText().toString();
if (topik.isEmpty()) {
editTextTopik.setError("Topik harus diisi");
editTextTopik.requestFocus();
return false;
} else if (keluhan.isEmpty()) {
editTextKeluhan.setError("Keluhan harus diisi");
editTextKeluhan.requestFocus();
return false;
}
return true;
}
// Method untuk menyimpan data konseling ke Firebase
private String saveKonselingData() {
// Ambil topik dan keluhan dari EditText
String topik = editTextTopik.getText().toString();
String keluhan = editTextKeluhan.getText().toString();
// Ambil waktu saat ini
String currentDate = getCurrentDateTime();
// Lakukan penyimpanan data ke Firebase
DatabaseReference databaseRef = FirebaseDatabase.getInstance().getReference("konseling");
Konseling konseling = new Konseling(username, topik, keluhan, currentDate);
DatabaseReference newKonselingRef = databaseRef.push();
newKonselingRef.setValue(konseling);
// Mengembalikan ID konseling yang baru disimpan
return newKonselingRef.getKey();
}
// Method untuk mendapatkan waktu saat ini
private String getCurrentDateTime() {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.getDefault());
return sdf.format(new Date());
}
// Method untuk mendapatkan username pengguna
private String getUsername() {
// Implementasikan sesuai dengan cara Anda mendapatkan username pengguna, misalnya dari SharedPreferences, Firebase Authentication, dsb.
// Contoh sederhana:
SharedPreferences sharedPreferences = getSharedPreferences("loginPrefs", MODE_PRIVATE);
return sharedPreferences.getString("username", null);
}
// Method untuk menampilkan KonselingDialog
private void showKonselingDialog() {
KonselingDialog konselingDialog = new KonselingDialog(KonselingActivity.this, new KonselingDialog.KonselingDialogListener() {
@Override
public void onKonselingSelected(String konseling) {
editTextTopik.setText(konseling);
}
});
konselingDialog.show();
}
// Method untuk pindah ke ChatActivity dengan membawa ID konseling
private void goToChatActivity(String konselingID) {
// Simpan KONSELING_ID ke SharedPreferences
SharedPreferences.Editor editor = getSharedPreferences("loginPrefs", MODE_PRIVATE).edit();
editor.putString("KONSELING_ID", konselingID);
editor.apply();
// Buat intent dan mulai aktivitas ChatActivity
Intent intent = new Intent(KonselingActivity.this, ChatActivity.class);
startActivity(intent);
finish(); // Sebaiknya lakukan finish activity agar tidak kembali ke activity ini saat tombol back ditekan dari ChatActivity
}
// Method untuk mengirim pesan otomatis setelah konseling dibuat
private void sendAutomaticMessage(String konselingID) {
// Pesan otomatis
String message = "Saya ingin konseling dengan topik " + editTextTopik.getText().toString() + ", permasalahan yang sedang saya alami yaitu " + editTextKeluhan.getText().toString();
// Ambil waktu saat ini
String currentTime = getCurrentDateTime();
// Simpan pesan otomatis ke Firebase
DatabaseReference chatRef = FirebaseDatabase.getInstance().getReference("chats").child(konselingID);
Map<String, Object> chatMessageMap = new HashMap<>();
chatMessageMap.put("username", username);
chatMessageMap.put("message", message);
chatMessageMap.put("timestamp", currentTime);
chatMessageMap.put("konselingID", konselingID);
chatMessageMap.put("imageUrl", imageUrl != null ? imageUrl.toString() : ""); // Tetapkan imageUrl jika tidak null, jika null, tetapkan ke string kosong
chatRef.push().setValue(chatMessageMap);
}
}

View File

@ -0,0 +1,51 @@
package com.example.punyaria;
import android.app.Dialog;
import android.content.Context;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import androidx.annotation.NonNull;
public class KonselingDialog extends Dialog {
private Context context;
private KonselingDialogListener listener;
public KonselingDialog(@NonNull Context context, KonselingDialogListener listener) {
super(context);
this.context = context;
this.listener = listener;
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.dialog_konseling);
ListView konselingListView = findViewById(R.id.konselingListView);
String[] konselingOptions = {"Kekerasan Fisik", "Kekerasan Psikis", "Kekerasan Seksual", "Penelantaran", "Perdagangan Manusia", "Anak Berhadapan dengan Hukum"};
// Menggunakan kustom layout untuk tata letak item list
ArrayAdapter<String> adapter = new ArrayAdapter<>(context, R.layout.list_item_konseling, konselingOptions);
konselingListView.setAdapter(adapter);
konselingListView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
// Ketika item di ListView dipilih, ambil nilai konseling dan kirimkan ke listener
String selectedKonseling = konselingOptions[position];
listener.onKonselingSelected(selectedKonseling);
dismiss(); // Tutup dialog setelah memilih
}
});
}
// Interface untuk menangani pemilihan konseling
public interface KonselingDialogListener {
void onKonselingSelected(String konseling);
}
}

View File

@ -0,0 +1,212 @@
package com.example.punyaria;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.content.SharedPreferences;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.text.method.HideReturnsTransformationMethod;
import android.text.method.PasswordTransformationMethod;
import android.view.View;
import android.widget.EditText;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.Toast;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.Query;
import com.google.firebase.database.ValueEventListener;
public class LoginActivity extends AppCompatActivity {
private boolean isPasswordVisible = false;
private EditText passwordEditText, editTextUsername;
private ImageView imageViewPasswordVisibility;
private boolean isPasswordVisible1 = false;
private Button buttonLogin;
// Tambahkan shared preferences
private SharedPreferences sharedPreferences;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getSupportActionBar().hide();
setContentView(R.layout.activity_login);
// Inisialisasi EditText dan ImageView
passwordEditText = findViewById(R.id.editTextPassword);
imageViewPasswordVisibility = findViewById(R.id.imageViewPasswordVisibility);
imageViewPasswordVisibility.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Ganti ikon dan visibility password
togglePasswordVisibility(passwordEditText, imageViewPasswordVisibility, isPasswordVisible1);
isPasswordVisible1 = !isPasswordVisible1; // Update status visibilitas
}
});
// Atur icon pada awalnya
setIconVisibility(imageViewPasswordVisibility, isPasswordVisible1);
editTextUsername = findViewById(R.id.editTextUsername);
// Inisialisasi shared preferences
sharedPreferences = getSharedPreferences("loginPrefs", MODE_PRIVATE);
// Periksa status login saat aplikasi dimulai
if (isLoggedIn()) {
String username = getUsername();
if (username != null) {
loginSuccess(username);
}
}
// Inisialisasi button login
buttonLogin = findViewById(R.id.buttonLogin);
// Menambahkan listener klik pada tombol login
buttonLogin.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String username = editTextUsername.getText().toString().trim();
String password = passwordEditText.getText().toString().trim();
if (username.isEmpty() || password.isEmpty()) {
// Jika ada data yang masih kosong
Toast.makeText(getApplicationContext(), "Username atau password tidak boleh kosong", Toast.LENGTH_SHORT).show();
} else {
// Proses login
DatabaseReference usersRef = FirebaseDatabase.getInstance().getReference().child("users").child(username);
usersRef.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
if (dataSnapshot.exists()) {
// Pengguna ditemukan berdasarkan username
User user = dataSnapshot.getValue(User.class);
if (user != null && user.getPassword().equals(password)) {
// Login berhasil
loginSuccess(username);
} else {
// Password salah
Toast.makeText(getApplicationContext(), "Username atau password salah", Toast.LENGTH_SHORT).show();
}
} else {
// Pengguna tidak ditemukan berdasarkan username, coba mencari berdasarkan nomor telepon
DatabaseReference usersByPhoneRef = FirebaseDatabase.getInstance().getReference().child("users");
Query query = usersByPhoneRef.orderByChild("telepon").equalTo(username);
query.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot snapshot) {
if (snapshot.exists()) {
for (DataSnapshot userSnapshot : snapshot.getChildren()) {
User user = userSnapshot.getValue(User.class);
if (user != null && user.getPassword().equals(password)) {
// Login berhasil
loginSuccess(user.getUsername());
return;
}
}
// Password salah
Toast.makeText(getApplicationContext(), "Username atau password salah", Toast.LENGTH_SHORT).show();
} else {
// Pengguna tidak ditemukan berdasarkan nomor telepon
Toast.makeText(getApplicationContext(), "Username atau nomor telepon tidak ditemukan", Toast.LENGTH_SHORT).show();
}
}
@Override
public void onCancelled(@NonNull DatabaseError error) {
// Error handling
Toast.makeText(getApplicationContext(), "Gagal memproses data: " + error.getMessage(), Toast.LENGTH_SHORT).show();
}
});
}
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
// Error handling
Toast.makeText(getApplicationContext(), "Gagal memproses data: " + databaseError.getMessage(), Toast.LENGTH_SHORT).show();
}
});
}
}
});
}
// Method untuk login berhasil
private void loginSuccess(String username) {
if (username.equals("uptd_ppajember21")) {
Intent intent = new Intent(LoginActivity.this, AdminActivity.class);
startActivity(intent);
} else {
Intent intent = new Intent(LoginActivity.this, MainActivity.class);
startActivity(intent);
}
saveLoginStatus(true);
saveUsername(username);
finish();
}
// Fungsi untuk menyimpan status login ke shared preferences
private void saveLoginStatus(boolean isLoggedIn) {
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putBoolean("isLoggedIn", isLoggedIn);
editor.apply();
}
// Fungsi untuk menyimpan username ke shared preferences
private void saveUsername(String username) {
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString("username", username);
editor.apply();
}
// Fungsi untuk memeriksa status login dari shared preferences
private boolean isLoggedIn() {
return sharedPreferences.getBoolean("isLoggedIn", false);
}
// Fungsi untuk mendapatkan username dari shared preferences
private String getUsername() {
return sharedPreferences.getString("username", null);
}
public void goToRegister(View view) {
Intent intent = new Intent(this, RegisterActivity.class);
startActivity(intent);
}
public void goToForgotPassword(View view) {
Intent intent = new Intent(this, ForgotPasswordActivity.class);
startActivity(intent);
}
private void togglePasswordVisibility(EditText editText, ImageView imageView, boolean isPasswordVisible) {
if (isPasswordVisible) {
// Jika password terlihat, sembunyikan dan ganti ikon
editText.setTransformationMethod(PasswordTransformationMethod.getInstance());
} else {
// Jika password tersembunyi, tampilkan dan ganti ikon
editText.setTransformationMethod(HideReturnsTransformationMethod.getInstance());
}
// Update icon
setIconVisibility(imageView, !isPasswordVisible);
}
private void setIconVisibility(ImageView imageView, boolean isVisible) {
if (isVisible) {
imageView.setImageResource(R.drawable.ic_visibility_on);
} else {
imageView.setImageResource(R.drawable.ic_visibility_off);
}
}
}

View File

@ -0,0 +1,50 @@
package com.example.punyaria;
import androidx.appcompat.app.AppCompatActivity;
import androidx.navigation.NavController;
import androidx.navigation.Navigation;
import androidx.navigation.ui.NavigationUI;
import android.os.Bundle;
import android.view.MenuItem;
import com.google.android.material.bottomnavigation.BottomNavigationView;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getSupportActionBar().hide();
setContentView(R.layout.activity_main);
// Inisialisasi NavController
NavController navController = Navigation.findNavController(this, R.id.nav_host_fragment);
// Menghubungkan BottomNavigationView dengan NavController
BottomNavigationView bottomNav = findViewById(R.id.bottom_navigation);
NavigationUI.setupWithNavController(bottomNav, navController);
// Atur listener untuk menangani perubahan item yang dipilih
bottomNav.setOnNavigationItemSelectedListener(new BottomNavigationView.OnNavigationItemSelectedListener() {
@Override
public boolean onNavigationItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.navigation_home:
navController.navigate(R.id.berandaFragment);
return true;
case R.id.navigation_history:
navController.navigate(R.id.riwayatFragment);
return true;
case R.id.navigation_wellness:
navController.navigate(R.id.wellnessFragment);
return true;
case R.id.navigation_account:
navController.navigate(R.id.akunFragment);
return true;
}
return false;
}
});
}
}

View File

@ -0,0 +1,26 @@
package com.example.punyaria;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import androidx.appcompat.app.AppCompatActivity;
public class Penelantaran extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_penelantaran);
getSupportActionBar().hide();
// Inisialisasi ImageView untuk tombol kembali
ImageView headerImageView = findViewById(R.id.headerImageView);
headerImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
}
}

View File

@ -0,0 +1,26 @@
package com.example.punyaria;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import androidx.appcompat.app.AppCompatActivity;
public class PerdaganganManusia extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_perdagangan_manusia);
getSupportActionBar().hide();
// Inisialisasi ImageView untuk tombol kembali
ImageView headerImageView = findViewById(R.id.headerImageView);
headerImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
}
}

View File

@ -0,0 +1,280 @@
package com.example.punyaria;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.text.Layout;
import android.text.Spannable;
import android.text.SpannableString;
import android.text.method.HideReturnsTransformationMethod;
import android.text.method.PasswordTransformationMethod;
import android.text.style.AlignmentSpan;
import android.text.style.ForegroundColorSpan;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.NumberPicker;
import android.widget.Toast;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;
import java.util.Calendar;
public class RegisterActivity extends AppCompatActivity {
private boolean isPasswordVisible = false;
private EditText editTextUsername, editTextPhoneNumber, editTextAddress;
private EditText passwordEditText;
private EditText kPasswordEditText; // Tambahkan EditText untuk konfirmasi password
private ImageView imageViewPasswordVisibility;
private ImageView imageViewKPasswordVisibility;
private boolean isPasswordVisible1 = false;
private boolean isPasswordVisible2 = false;
private EditText editTextUmur; // Tambahkan EditText untuk tanggal lahir
private EditText editTextJenisKelamin; // Tambahkan EditText untuk jenis kelamin
private int selectedDay, selectedMonth, selectedYear;
private Button buttonRegister;
private DatabaseReference database;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_register);
getSupportActionBar().hide();
ImageView headerImageView = findViewById(R.id.headerImageView);
headerImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
// Inisialisasi EditText dan ImageView
passwordEditText = findViewById(R.id.editTextPassword);
imageViewPasswordVisibility = findViewById(R.id.imageViewPasswordVisibility);
kPasswordEditText = findViewById(R.id.editTextKPassword);
imageViewKPasswordVisibility = findViewById(R.id.imageViewKPasswordVisibility);
// Atur onClickListener untuk imageView editTextPasswordBaru
imageViewPasswordVisibility.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Ganti ikon dan visibility password
togglePasswordVisibility(passwordEditText, imageViewPasswordVisibility, isPasswordVisible1);
isPasswordVisible1 = !isPasswordVisible1; // Update status visibilitas
}
});
// Atur onClickListener untuk imageView editTextKPasswordBaru
imageViewKPasswordVisibility.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Ganti ikon dan visibility password
togglePasswordVisibility(kPasswordEditText, imageViewKPasswordVisibility, isPasswordVisible2);
isPasswordVisible2 = !isPasswordVisible2; // Update status visibilitas
}
});
// Atur icon pada awalnya
setIconVisibility(imageViewPasswordVisibility, isPasswordVisible1);
setIconVisibility(imageViewKPasswordVisibility, isPasswordVisible2);
editTextUsername = findViewById(R.id.editTextUsername);
editTextPhoneNumber = findViewById(R.id.editTextPhoneNumber);
editTextAddress = findViewById(R.id.editTextAddress);
editTextUmur = findViewById(R.id.editTextUmur);
editTextJenisKelamin = findViewById(R.id.editTextJenisKelamin);
database = FirebaseDatabase.getInstance().getReferenceFromUrl("https://j-counseling-default-rtdb.firebaseio.com/");
// Menambahkan listener klik pada EditText jenis kelamin
editTextJenisKelamin.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
showGenderOptionsDialog();
}
});
// Menambahkan listener klik pada tombol register
buttonRegister = findViewById(R.id.buttonRegister);
buttonRegister.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String username = editTextUsername.getText().toString().trim();
String telepon = editTextPhoneNumber.getText().toString().trim();
String tanggalLahir = editTextUmur.getText().toString().trim();
String jenisKelamin = editTextJenisKelamin.getText().toString().trim();
String alamat = editTextAddress.getText().toString().trim();
String password = passwordEditText.getText().toString().trim();
String kPassword = kPasswordEditText.getText().toString().trim();
if (username.isEmpty() || telepon.isEmpty() || tanggalLahir.isEmpty() || jenisKelamin.isEmpty() || alamat.isEmpty() || password.isEmpty() || kPassword.isEmpty()) {
// Jika ada data yang masih kosong
Toast.makeText(getApplicationContext(), "Ada data yang masih kosong", Toast.LENGTH_SHORT).show();
}else if (!telepon.matches("\\d{10,15}")) {
// Jika nomor telepon tidak memenuhi kriteria
Toast.makeText(getApplicationContext(), "Nomor Telepon minimal terdiri dari 10 digit angka", Toast.LENGTH_SHORT).show();
}else if (!password.matches("^(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z])(?=.*[+×÷=/_€£¥₩!@#$%^&*()':;,?`~<>{}¡¿])(?=\\S+$).{8,}$")) {
// Jika password tidak memenuhi kriteria
Toast.makeText(getApplicationContext(), "Password harus terdiri dari minimal 8 karakter berisi kombinasi huruf kapital dan kecil, angka, dan simbol", Toast.LENGTH_SHORT).show();
} else if (!password.equals(kPassword)) {
// Jika password tidak sesuai dengan konfirmasi password
Toast.makeText(getApplicationContext(), "Password tidak cocok", Toast.LENGTH_SHORT).show();
} else if (username.contains(".") || username.contains("#") || username.contains("$") || username.contains("[") || username.contains("]")) {
Toast.makeText(getApplicationContext(), "Username tidak boleh mengandung '.', '#', '$', '[', atau ']'", Toast.LENGTH_SHORT).show();
} else {
// Semua data telah terisi, simpan ke dalam tabel user
DatabaseReference usersRef = FirebaseDatabase.getInstance().getReference().child("users");
usersRef.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
boolean phoneExists = false;
for (DataSnapshot snapshot : dataSnapshot.getChildren()) {
User existingUser = snapshot.getValue(User.class);
if (existingUser != null && existingUser.getTelepon().equals(telepon)) {
phoneExists = true;
break;
}
}
if (phoneExists) {
Toast.makeText(getApplicationContext(), "Nomor telepon telah terdaftar", Toast.LENGTH_SHORT).show();
} else if (dataSnapshot.hasChild(username)) {
Toast.makeText(getApplicationContext(), "Username telah terdaftar", Toast.LENGTH_SHORT).show();
} else {
// Simpan data ke dalam tabel user
User newUser = new User(username, telepon, tanggalLahir, jenisKelamin, alamat, password);
usersRef.child(username).setValue(newUser);
Toast.makeText(getApplicationContext(), "Registrasi berhasil", Toast.LENGTH_SHORT).show();
// Pindahkan pengguna ke halaman login
Intent intent = new Intent(RegisterActivity.this, LoginActivity.class);
startActivity(intent);
finish(); // Optional, untuk menutup activity saat ini
}
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
// Error handling
Toast.makeText(getApplicationContext(), "Gagal memproses data: " + databaseError.getMessage(), Toast.LENGTH_SHORT).show();
}
});
}
}
});
// Menambahkan listener klik pada EditText tanggal lahir untuk menampilkan DatePickerDialog
editTextUmur.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
showDatePickerDialog(RegisterActivity.this);
}
});
}
// Method untuk menampilkan DatePickerDialog
private void showDatePickerDialog(Context context) {
final View dialogView = LayoutInflater.from(context).inflate(R.layout.dialog_date_picker, null);
final NumberPicker dayPicker = dialogView.findViewById(R.id.dayPicker);
final NumberPicker monthPicker = dialogView.findViewById(R.id.monthPicker);
final NumberPicker yearPicker = dialogView.findViewById(R.id.yearPicker);
// Initialize day picker
dayPicker.setMinValue(1);
dayPicker.setMaxValue(31);
// Initialize month picker
monthPicker.setMinValue(1);
monthPicker.setMaxValue(12);
// Initialize year picker
int currentYear = Calendar.getInstance().get(Calendar.YEAR);
yearPicker.setMinValue(currentYear - 100); // Adjust as needed
yearPicker.setMaxValue(currentYear);
// Set initial values
dayPicker.setValue(selectedDay);
monthPicker.setValue(selectedMonth);
yearPicker.setValue(selectedYear);
// Create a SpannableString to set title color and alignment
String title = "Tanggal Lahir";
SpannableString spannableString = new SpannableString(title);
// Set color
spannableString.setSpan(new ForegroundColorSpan(getResources().getColor(R.color.grey)), 0, title.length(), 0);
// Set alignment
spannableString.setSpan(new AlignmentSpan.Standard(Layout.Alignment.ALIGN_CENTER), 0, title.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(context);
alertDialogBuilder.setView(dialogView)
.setTitle(spannableString)
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
selectedDay = dayPicker.getValue();
selectedMonth = monthPicker.getValue();
selectedYear = yearPicker.getValue();
editTextUmur.setText(String.format("%02d/%02d/%04d", selectedDay, selectedMonth, selectedYear));
}
})
.setNegativeButton("Batal", null)
.show();
}
// Method untuk menampilkan dialog pilihan jenis kelamin
private void showGenderOptionsDialog() {
// Membuat instance dari GenderDialog
GenderDialog genderDialog = new GenderDialog(RegisterActivity.this, new GenderDialog.GenderDialogListener() {
@Override
public void onGenderSelected(String gender) {
// Ketika jenis kelamin dipilih, atur teks pada EditText jenis kelamin
editTextJenisKelamin.setText(gender);
}
});
// Menampilkan dialog
genderDialog.show();
}
private void togglePasswordVisibility(EditText editText, ImageView imageView, boolean isPasswordVisible) {
if (isPasswordVisible) {
// Jika password terlihat, sembunyikan dan ganti ikon
editText.setTransformationMethod(PasswordTransformationMethod.getInstance());
} else {
// Jika password tersembunyi, tampilkan dan ganti ikon
editText.setTransformationMethod(HideReturnsTransformationMethod.getInstance());
}
// Update icon
setIconVisibility(imageView, !isPasswordVisible);
}
private void setIconVisibility(ImageView imageView, boolean isVisible) {
if (isVisible) {
imageView.setImageResource(R.drawable.ic_visibility_on);
} else {
imageView.setImageResource(R.drawable.ic_visibility_off);
}
}
}

View File

@ -0,0 +1,169 @@
package com.example.punyaria;
import android.content.Intent;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.Toast;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;
public class ResetPasswordActivity extends AppCompatActivity {
private EditText editTextPasswordBaru;
private EditText editTextKPasswordBaru;
private Button buttonSimpan;
private ImageView imageViewPasswordVisibility;
private ImageView imageViewKPasswordVisibility;
private DatabaseReference usersRef;
private boolean isPasswordVisible1 = false; // Untuk editTextPasswordBaru
private boolean isPasswordVisible2 = false; // Untuk editTextKPasswordBaru
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_reset_password);
getSupportActionBar().hide();
ImageView headerImageView = findViewById(R.id.headerImageView);
headerImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
// Inisialisasi EditText, Button, dan ImageView
editTextPasswordBaru = findViewById(R.id.editTextPasswordBaru);
editTextKPasswordBaru = findViewById(R.id.editTextKPasswordBaru);
buttonSimpan = findViewById(R.id.buttonSimpan);
imageViewPasswordVisibility = findViewById(R.id.imageViewPasswordVisibility);
imageViewKPasswordVisibility = findViewById(R.id.imageViewKPasswordVisibility);
// Mendapatkan referensi ke tabel "users" di Firebase Database
usersRef = FirebaseDatabase.getInstance().getReference().child("users");
// Atur onClickListener untuk imageView editTextPasswordBaru
imageViewPasswordVisibility.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Ganti ikon dan visibility password
togglePasswordVisibility(editTextPasswordBaru, imageViewPasswordVisibility, isPasswordVisible1);
isPasswordVisible1 = !isPasswordVisible1; // Update status visibilitas
}
});
// Atur onClickListener untuk imageView editTextKPasswordBaru
imageViewKPasswordVisibility.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Ganti ikon dan visibility password
togglePasswordVisibility(editTextKPasswordBaru, imageViewKPasswordVisibility, isPasswordVisible2);
isPasswordVisible2 = !isPasswordVisible2; // Update status visibilitas
}
});
// Atur icon pada awalnya
setIconVisibility(imageViewPasswordVisibility, isPasswordVisible1);
setIconVisibility(imageViewKPasswordVisibility, isPasswordVisible2);
// Menambahkan listener klik pada buttonSimpan
buttonSimpan.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String passwordBaru = editTextPasswordBaru.getText().toString().trim();
String kPasswordBaru = editTextKPasswordBaru.getText().toString().trim();
// Memastikan kedua input tidak kosong
if (TextUtils.isEmpty(passwordBaru) || TextUtils.isEmpty(kPasswordBaru)) {
Toast.makeText(ResetPasswordActivity.this, "Isi semua field", Toast.LENGTH_SHORT).show();
return;
}
// Memastikan kedua password baru sesuai
if (!passwordBaru.equals(kPasswordBaru)) {
Toast.makeText(ResetPasswordActivity.this, "Password tidak sesuai", Toast.LENGTH_SHORT).show();
return;
}
// Memastikan password baru memenuhi kriteria
if (!isValidPassword(passwordBaru)) {
Toast.makeText(ResetPasswordActivity.this, "Password harus terdiri dari minimal 8 karakter berisi kombinasi huruf kapital dan kecil, angka, dan simbol", Toast.LENGTH_SHORT).show();
return;
}
// Memperbarui password di database
updatePassword(passwordBaru);
}
});
}
// Method untuk memperbarui password di database
private void updatePassword(final String newPassword) {
// Mendapatkan username dari SharedPreferences
String username = getSharedPreferences("MyPrefs", MODE_PRIVATE).getString("username", "");
// Memperbarui password di database
usersRef.child(username).addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
dataSnapshot.getRef().child("password").setValue(newPassword);
Toast.makeText(ResetPasswordActivity.this, "Password berhasil diperbarui", Toast.LENGTH_SHORT).show();
// Setelah berhasil, masuk ke LoginActivity
Intent intent = new Intent(ResetPasswordActivity.this, LoginActivity.class);
startActivity(intent);
// Hapus halaman ResetPasswordActivity dari tumpukan activity
finish();
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
// Error handling
Toast.makeText(ResetPasswordActivity.this, "Gagal memperbarui password: " + databaseError.getMessage(), Toast.LENGTH_SHORT).show();
}
});
}
// Method untuk memeriksa apakah password baru memenuhi kriteria
private boolean isValidPassword(String password) {
// Pola untuk memeriksa password
String passwordPattern = "^(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z])(?=.*[+×÷=/_€£¥₩!@#$%^&*()':;,?`~<>{}¡¿])(?=\\S+$).{8,}$";
return password.matches(passwordPattern);
}
// Method untuk mengubah visibilitas password
private void togglePasswordVisibility(EditText editText, ImageView imageView, boolean isPasswordVisible) {
if (isPasswordVisible) {
// Jika password terlihat, sembunyikan dan ganti ikon
editText.setTransformationMethod(android.text.method.PasswordTransformationMethod.getInstance());
} else {
// Jika password tersembunyi, tampilkan dan ganti ikon
editText.setTransformationMethod(android.text.method.HideReturnsTransformationMethod.getInstance());
}
// Update icon
setIconVisibility(imageView, !isPasswordVisible);
}
// Method untuk mengatur ikon visibilitas password
private void setIconVisibility(ImageView imageView, boolean isVisible) {
if (isVisible) {
imageView.setImageResource(R.drawable.ic_visibility_on);
} else {
imageView.setImageResource(R.drawable.ic_visibility_off);
}
}
}

View File

@ -0,0 +1,131 @@
package com.example.punyaria;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.Query;
import com.google.firebase.database.ValueEventListener;
import java.util.ArrayList;
import java.util.Collections;
public class RiwayatFragment extends Fragment {
private SharedPreferences sharedPreferences;
private ListView listViewKonseling;
private ArrayAdapter<String> adapter;
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_riwayat, container, false);
listViewKonseling = view.findViewById(R.id.listViewKonseling);
sharedPreferences = getActivity().getSharedPreferences("loginPrefs", getActivity().MODE_PRIVATE);
loadData();
return view;
}
@Override
public void onResume() {
super.onResume();
loadData(); // Muat ulang data setiap kali fragment menjadi aktif
}
private void loadData() {
String username = getUsername();
DatabaseReference databaseRef = FirebaseDatabase.getInstance().getReference("konseling");
Query query = databaseRef.orderByChild("username").equalTo(username);
query.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
ArrayList<String> konselingList = new ArrayList<>();
final ArrayList<String> konselingIDs = new ArrayList<>();
final ArrayList<String> konselingStatuses = new ArrayList<>(); // Tambahkan list untuk menyimpan status
for (DataSnapshot snapshot : dataSnapshot.getChildren()) {
Konseling konseling = snapshot.getValue(Konseling.class);
if (konseling != null) {
String konselingInfo = "Topik: " + konseling.getTopik() + "\n"
+ "Keluhan: " + konseling.getKeluhan() + "\n"
+ "Tanggal: " + konseling.getDate();
konselingList.add(konselingInfo);
konselingIDs.add(snapshot.getKey());
konselingStatuses.add(konseling.getStatus()); // Simpan status
}
}
Collections.reverse(konselingList);
Collections.reverse(konselingIDs);
Collections.reverse(konselingStatuses); // Balik urutan status
adapter = new ArrayAdapter<String>(getContext(), R.layout.list_riwayat, konselingList) {
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View view = super.getView(position, convertView, parent);
TextView textView = view.findViewById(R.id.textViewListItemRiwayat);
// Ubah drawable berdasarkan status
String status = konselingStatuses.get(position);
if ("ended".equals(status)) {
textView.setCompoundDrawablesWithIntrinsicBounds(R.drawable.message_off, 0, 0, 0);
} else {
textView.setCompoundDrawablesWithIntrinsicBounds(R.drawable.message, 0, 0, 0);
}
return view;
}
};
listViewKonseling.setAdapter(adapter);
listViewKonseling.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
String konselingID = konselingIDs.get(position);
String konselingStatus = konselingStatuses.get(position);
if ("ended".equals(konselingStatus)) {
Toast.makeText(getContext(), "Sesi konseling telah berakhir", Toast.LENGTH_SHORT).show();
} else {
openChatActivity(konselingID);
}
}
});
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
Toast.makeText(getContext(), "Gagal mengambil data konseling: " + databaseError.getMessage(), Toast.LENGTH_SHORT).show();
}
});
}
private String getUsername() {
return sharedPreferences.getString("username", null);
}
private void openChatActivity(String konselingID) {
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString("KONSELING_ID", konselingID);
editor.apply();
Intent intent = new Intent(getActivity(), ChatActivity.class);
startActivity(intent);
}
}

View File

@ -0,0 +1,89 @@
package com.example.punyaria;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import android.widget.ListView;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;
import java.util.ArrayList;
import java.util.List;
public class RiwayatWellnessActivity extends AppCompatActivity {
private DatabaseReference wellnessRef;
private ListView listView;
private CustomAdapterWellness adapter;
private List<String> wellnessHistory;
private String loggedInUsername;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getSupportActionBar().hide();
setContentView(R.layout.activity_riwayat_wellness);
// Inisialisasi ImageView untuk tombol kembali
ImageView headerImageView = findViewById(R.id.headerImageView);
headerImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
// Inisialisasi referensi database wellness
wellnessRef = FirebaseDatabase.getInstance().getReference().child("wellness");
// Inisialisasi ListView
listView = findViewById(R.id.listViewWellness);
// Inisialisasi daftar riwayat wellness
wellnessHistory = new ArrayList<>();
// Inisialisasi adapter kustom untuk ListView
adapter = new CustomAdapterWellness(this, R.layout.list_item_wellness, wellnessHistory);
// Set adapter ke ListView
listView.setAdapter(adapter);
// Mendapatkan username pengguna yang sedang login
loggedInUsername = getUsername();
// Ambil dan tampilkan riwayat wellness sesuai dengan username pengguna yang sedang login dari Firebase
wellnessRef.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
wellnessHistory.clear();
for (DataSnapshot snapshot : dataSnapshot.getChildren()) {
WellnessData wellnessData = snapshot.getValue(WellnessData.class);
if (wellnessData != null && wellnessData.getUsername().equals(loggedInUsername)) {
String history = "Perasaan " + wellnessData.getPerasaan() + "\n" + wellnessData.getKeluhan() + "\n" + wellnessData.getTanggal();
wellnessHistory.add(0, history); // Tambahkan ke indeks 0
}
}
adapter.notifyDataSetChanged();
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
// Handle database error
}
});
}
private String getUsername() {
// Mendapatkan username dari Shared Preferences
return getSharedPreferences("loginPrefs", MODE_PRIVATE)
.getString("username", null);
}
}

View File

@ -0,0 +1,38 @@
package com.example.punyaria;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Handler;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.ImageView;
import android.os.Bundle;
public class SplashScreenActivity extends AppCompatActivity {
private static int SPLASH_TIMEOUT = 2000; // Waktu delay splash screen dalam milidetik
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getSupportActionBar().hide();
setContentView(R.layout.activity_splash_screen);
// Inisialisasi ImageView dan animasi
ImageView logoCenter = findViewById(R.id.logoImageViewCenter);
Animation animation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.translate_up);
// Mulai animasi
logoCenter.startAnimation(animation);
// Handler untuk delay sebelum memulai MainActivity
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent mainIntent = new Intent(SplashScreenActivity.this, LoginActivity.class);
startActivity(mainIntent);
finish();
}
}, SPLASH_TIMEOUT);
}
}

View File

@ -0,0 +1,70 @@
package com.example.punyaria;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapView;
import com.google.android.gms.maps.OnMapReadyCallback;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.MarkerOptions;
public class TentangActivity extends AppCompatActivity implements OnMapReadyCallback {
private MapView mMapView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_tentang);
getSupportActionBar().hide();
// Inisialisasi ImageView untuk tombol kembali
ImageView headerImageView = findViewById(R.id.headerImageView);
headerImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
// Inisialisasi MapView
mMapView = findViewById(R.id.mapView);
mMapView.onCreate(savedInstanceState);
mMapView.getMapAsync(this);
}
@Override
public void onMapReady(GoogleMap googleMap) {
// Lokasi UPTD PPA
LatLng uptdPpaLocation = new LatLng(-8.172659346151285, 113.70254822028704 );
googleMap.addMarker(new MarkerOptions().position(uptdPpaLocation).title("UPTD PPA"));
googleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(uptdPpaLocation, 15));
}
@Override
protected void onResume() {
super.onResume();
mMapView.onResume();
}
@Override
protected void onPause() {
super.onPause();
mMapView.onPause();
}
@Override
protected void onDestroy() {
super.onDestroy();
mMapView.onDestroy();
}
@Override
public void onLowMemory() {
super.onLowMemory();
mMapView.onLowMemory();
}
}

View File

@ -0,0 +1,101 @@
package com.example.punyaria;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.ImageView;
import android.widget.ListView;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;
import java.util.ArrayList;
import java.util.List;
public class UWellnessActivity extends AppCompatActivity {
private ListView listViewUsernames;
private ArrayAdapter<String> adapter;
private DatabaseReference databaseReference;
private SharedPreferences sharedPreferences;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_uwellness);
getSupportActionBar().hide();
// Initialize SharedPreferences
sharedPreferences = getSharedPreferences("userData", MODE_PRIVATE);
ImageView headerImageView = findViewById(R.id.headerImageView);
headerImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
listViewUsernames = findViewById(R.id.listViewUser);
listViewUsernames.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
// Mendapatkan username dari item yang diklik
String selectedUsername = (String) parent.getItemAtPosition(position);
// Menyimpan username yang dipilih dalam SharedPreferences
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString("selectedUsername", selectedUsername);
editor.apply();
// Membuat Intent untuk membuka DataWellnessActivity
Intent intent = new Intent(UWellnessActivity.this, DataWellnessActivity.class);
// Memulai activity baru
startActivity(intent);
}
});
// Inisialisasi ArrayList untuk menyimpan daftar username
final List<String> usernames = new ArrayList<>();
// Inisialisasi adapter untuk ListView
adapter = new ArrayAdapter<>(this, R.layout.list_item_user, R.id.textViewUsername, usernames);
listViewUsernames.setAdapter(adapter);
// Referensi database
databaseReference = FirebaseDatabase.getInstance().getReference().child("users");
// Mendapatkan data dari database
databaseReference.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
// Membersihkan list sebelum menambahkan data baru
usernames.clear();
// Menambahkan semua username ke list kecuali "uptd_ppajember21"
for (DataSnapshot snapshot : dataSnapshot.getChildren()) {
String username = snapshot.child("username").getValue(String.class);
if (!"uptd_ppajember21".equals(username)) {
usernames.add(username);
}
}
// Memberitahu adapter bahwa data telah berubah
adapter.notifyDataSetChanged();
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
// Menangani kesalahan
}
});
}
}

View File

@ -0,0 +1,67 @@
package com.example.punyaria;
public class User {
private String username;
private String nama;
private String telepon;
private String tanggalLahir;
private String jenisKelamin;
private String alamat;
private String password;
private String email;
private String profileImageUrl;
public User() {
// Diperlukan untuk Firebase
}
public User(String username, String telepon, String tanggalLahir, String jenisKelamin, String alamat, String password) {
this.username = username;
this.telepon = telepon;
this.tanggalLahir = tanggalLahir;
this.jenisKelamin = jenisKelamin;
this.alamat = alamat;
this.password = password;
}
public String getUsername() {
return username;
}
public String getNama() {
return nama;
}
public String getTelepon() {
return telepon;
}
public String getTanggalLahir() {
return tanggalLahir;
}
public String getJenisKelamin() {
return jenisKelamin;
}
public String getAlamat() {
return alamat;
}
public String getEmail() {
return email;
}
public String getPassword() {
return password;
}
public String getProfileImageUrl() {
return profileImageUrl;
}
public void setProfileImageUrl(String profileImageUrl) {
this.profileImageUrl = profileImageUrl;
}
}

View File

@ -0,0 +1,101 @@
package com.example.punyaria;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.ImageView;
import android.widget.ListView;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;
import java.util.ArrayList;
import java.util.List;
public class UserActivity extends AppCompatActivity {
private ListView listViewUsernames;
private ArrayAdapter<String> adapter;
private DatabaseReference databaseReference;
private SharedPreferences sharedPreferences;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_user);
getSupportActionBar().hide();
// Initialize SharedPreferences
sharedPreferences = getSharedPreferences("userData", MODE_PRIVATE);
ImageView headerImageView = findViewById(R.id.headerImageView);
headerImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
listViewUsernames = findViewById(R.id.listViewUser);
listViewUsernames.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
// Mendapatkan username dari item yang diklik
String selectedUsername = (String) parent.getItemAtPosition(position);
// Menyimpan username yang dipilih dalam SharedPreferences
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString("selectedUsername", selectedUsername);
editor.apply();
// Membuat Intent untuk membuka DataUserActivity
Intent intent = new Intent(UserActivity.this, DataUserActivity.class);
// Memulai activity baru
startActivity(intent);
}
});
// Inisialisasi ArrayList untuk menyimpan daftar username
final List<String> usernames = new ArrayList<>();
// Inisialisasi adapter untuk ListView
adapter = new ArrayAdapter<>(this, R.layout.list_item_user, R.id.textViewUsername, usernames);
listViewUsernames.setAdapter(adapter);
// Referensi database
databaseReference = FirebaseDatabase.getInstance().getReference().child("users");
// Mendapatkan data dari database
databaseReference.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
// Membersihkan list sebelum menambahkan data baru
usernames.clear();
// Menambahkan semua username ke list kecuali "uptd_ppajember21"
for (DataSnapshot snapshot : dataSnapshot.getChildren()) {
String username = snapshot.child("username").getValue(String.class);
if (!"uptd_ppajember21".equals(username)) {
usernames.add(username);
}
}
// Memberitahu adapter bahwa data telah berubah
adapter.notifyDataSetChanged();
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
// Menangani kesalahan
}
});
}
}

View File

@ -0,0 +1,52 @@
package com.example.punyaria;
public class WellnessData {
private String username;
private String perasaan;
private String tanggal;
private String keluhan; // Menyimpan keluhan
public WellnessData() {
// Diperlukan oleh Firebase
}
public WellnessData(String username, String perasaan, String tanggal, String keluhan) {
this.username = username;
this.perasaan = perasaan;
this.tanggal = tanggal;
this.keluhan = keluhan; // Menginisialisasi keluhan
}
// Buat getter dan setter sesuai kebutuhan
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPerasaan() {
return perasaan;
}
public void setPerasaan(String perasaan) {
this.perasaan = perasaan;
}
public String getTanggal() {
return tanggal;
}
public void setTanggal(String tanggal) {
this.tanggal = tanggal;
}
public String getKeluhan() {
return keluhan;
}
public void setKeluhan(String keluhan) {
this.keluhan = keluhan;
}
}

View File

@ -0,0 +1,191 @@
package com.example.punyaria;
import android.content.Intent;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.EditText;
import android.widget.LinearLayout;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AppCompatActivity;
import androidx.fragment.app.Fragment;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.List;
import java.util.Locale;
public class WellnessFragment extends Fragment {
private DatabaseReference wellnessRef;
private ListView listView;
private CustomAdapterWellness adapter;
private List<String> wellnessHistory;
private String perasaanSelected = ""; // menyimpan perasaan yang dipilih
private String keluhan = ""; // menyimpan keluhan yang dimasukkan
public WellnessFragment() {
// Required empty public constructor
}
public static WellnessFragment newInstance() {
return new WellnessFragment();
}
// Metode untuk navigasi ke RiwayatWellnessActivity
private void goToRiwayatWellness() {
Intent intent = new Intent(getActivity(), RiwayatWellnessActivity.class);
startActivity(intent);
}
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Inisialisasi referensi database wellness
wellnessRef = FirebaseDatabase.getInstance().getReference().child("wellness");
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_wellness, container, false);
TextView textView = view.findViewById(R.id.text_capt3);
textView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
goToRiwayatWellness();
}
});
// Inisialisasi ListView
listView = view.findViewById(R.id.listViewWellness);
// Inisialisasi daftar riwayat wellness
wellnessHistory = new ArrayList<>();
// Inisialisasi adapter kustom untuk ListView dengan layout kustom
adapter = new CustomAdapterWellness(getContext(), R.layout.list_item_wellness, wellnessHistory);
// Set adapter ke ListView
listView.setAdapter(adapter);
LinearLayout layoutEmoji = view.findViewById(R.id.layoutEmoji);
EditText editTextKeluhan = view.findViewById(R.id.editTextKeluhan);
// Tambahkan listener pada setiap emoji untuk memasukkan perasaan
layoutEmoji.findViewById(R.id.menu_marah).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
perasaanSelected = "Marah";
}
});
layoutEmoji.findViewById(R.id.menu_kecewa).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
perasaanSelected = "Kecewa";
}
});
layoutEmoji.findViewById(R.id.menu_sedih).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
perasaanSelected = "Sedih";
}
});
layoutEmoji.findViewById(R.id.menu_senang).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
perasaanSelected = "Senang";
}
});
// Tambahkan listener untuk tombol Kirim
Button buttonWellness = view.findViewById(R.id.buttonWellness);
buttonWellness.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Ambil nilai keluhan
keluhan = editTextKeluhan.getText().toString();
// Cek jika perasaan sudah dipilih
if (perasaanSelected.isEmpty()) {
// Tampilkan toast jika emoji belum dipilih
Toast.makeText(getContext(), "Silakan pilih emoji terlebih dahulu", Toast.LENGTH_SHORT).show();
}
// Cek jika keluhan tidak kosong
else if (keluhan.isEmpty()) {
// Tampilkan toast jika catatan belum diisi
Toast.makeText(getContext(), "Silakan isi catatan terlebih dahulu", Toast.LENGTH_SHORT).show();
}
// Jika perasaan dipilih dan keluhan diisi
else {
// Simpan data perasaan dan keluhan ke database Firebase
saveWellnessData(perasaanSelected, keluhan);
// Reset nilai perasaanSelected dan keluhan setelah disimpan
perasaanSelected = "";
keluhan = "";
// Kosongkan input keluhan
editTextKeluhan.setText("");
// Menampilkan toast setelah data berhasil disimpan
Toast.makeText(getContext(), "Data wellness berhasil disimpan", Toast.LENGTH_SHORT).show();
}
}
});
wellnessRef.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
wellnessHistory.clear();
String loggedInUsername = getUsername(); // Mendapatkan username pengguna yang sedang login
for (DataSnapshot snapshot : dataSnapshot.getChildren()) {
WellnessData wellnessData = snapshot.getValue(WellnessData.class);
if (wellnessData != null && wellnessData.getUsername().equals(loggedInUsername)) {
String history = "Perasaan " + wellnessData.getPerasaan() + "\n" + wellnessData.getKeluhan() + "\n" + wellnessData.getTanggal();
wellnessHistory.add(0, history); // Tambahkan ke indeks 0
}
}
adapter.notifyDataSetChanged();
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
// Handle database error
}
});
return view;
}
private void saveWellnessData(String perasaan, String keluhan) {
// Mendapatkan tanggal dan waktu saat ini dalam format yang diinginkan
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.getDefault());
String currentDate = dateFormat.format(Calendar.getInstance().getTime());
// Simpan data perasaan dan keluhan ke database Firebase
wellnessRef.push().setValue(new WellnessData(getUsername(), perasaan, currentDate, keluhan));
}
private String getUsername() {
// Mendapatkan username dari Shared Preferences
return getActivity().getSharedPreferences("loginPrefs", AppCompatActivity.MODE_PRIVATE)
.getString("username", null);
}
}

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
android:fromAlpha="0.0"
android:toAlpha="1.0"
android:duration="2000" />

View File

@ -0,0 +1,30 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z">
<aapt:attr name="android:fillColor">
<gradient
android:endX="85.84757"
android:endY="92.4963"
android:startX="42.9492"
android:startY="49.59793"
android:type="linear">
<item
android:color="#44000000"
android:offset="0.0" />
<item
android:color="#00000000"
android:offset="1.0" />
</gradient>
</aapt:attr>
</path>
<path
android:fillColor="#FFFFFF"
android:fillType="nonZero"
android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
</vector>

View File

@ -0,0 +1,923 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="100dp"
android:height="100dp"
android:viewportWidth="500"
android:viewportHeight="500">
<path
android:pathData="M0,382.4h500v0.25h-500z"
android:fillColor="#ebebeb"/>
<path
android:pathData="M416.78,398.49h33.12v0.25h-33.12z"
android:fillColor="#ebebeb"/>
<path
android:pathData="M322.53,401.21h8.69v0.25h-8.69z"
android:fillColor="#ebebeb"/>
<path
android:pathData="M396.59,389.21h19.19v0.25h-19.19z"
android:fillColor="#ebebeb"/>
<path
android:pathData="M52.46,390.89h43.19v0.25h-43.19z"
android:fillColor="#ebebeb"/>
<path
android:pathData="M104.56,390.89h6.33v0.25h-6.33z"
android:fillColor="#ebebeb"/>
<path
android:pathData="M131.47,395.11h93.68v0.25h-93.68z"
android:fillColor="#ebebeb"/>
<path
android:pathData="M237,337.8H43.91a5.71,5.71 0,0 1,-5.7 -5.71V60.66A5.71,5.71 0,0 1,43.91 55H237a5.71,5.71 0,0 1,5.71 5.71V332.09A5.71,5.71 0,0 1,237 337.8ZM43.91,55.2a5.46,5.46 0,0 0,-5.45 5.46V332.09a5.46,5.46 0,0 0,5.45 5.46H237a5.47,5.47 0,0 0,5.46 -5.46V60.66A5.47,5.47 0,0 0,237 55.2Z"
android:fillColor="#ebebeb"/>
<path
android:pathData="M453.31,337.8H260.21a5.72,5.72 0,0 1,-5.71 -5.71V60.66A5.72,5.72 0,0 1,260.21 55h193.1A5.71,5.71 0,0 1,459 60.66V332.09A5.71,5.71 0,0 1,453.31 337.8ZM260.21,55.2a5.47,5.47 0,0 0,-5.46 5.46V332.09a5.47,5.47 0,0 0,5.46 5.46h193.1a5.47,5.47 0,0 0,5.46 -5.46V60.66a5.47,5.47 0,0 0,-5.46 -5.46Z"
android:fillColor="#ebebeb"/>
<path
android:pathData="M350.92,65.82h65.31v12.7h-65.31z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M355.65,78.52h55.84v6.51h-55.84z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M361.45,85.03h44.23v290.78h-44.23z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M366.87,85.03h33.41v290.78h-33.41z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M376.76,85.03h13.63v290.78h-13.63z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M416.22,395.03l-65.31,-0l-0,-12.7l65.31,-0z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M411.49,382.33l-55.84,-0l-0,-6.52l55.84,-0z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M83.78,65.82h65.31v12.7h-65.31z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M88.51,78.52h55.84v6.51h-55.84z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M94.31,85.03h44.23v290.78h-44.23z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M99.73,85.03h33.41v290.78h-33.41z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M109.62,85.03h13.63v290.78h-13.63z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M149.08,395.03l-65.31,-0l-0,-12.7l65.31,-0z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M144.35,382.33l-55.84,-0l-0,-6.52l55.84,-0z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M56.11,416.24a193.89,11.32 0,1 0,387.78 0a193.89,11.32 0,1 0,-387.78 0z"
android:fillColor="#f5f5f5"/>
<path
android:pathData="M290,125.52s-5.72,-1.61 -21.07,0.61c0,0 0.43,24.86 3,37.34a59.83,59.83 0,0 0,17.4 -0.94S286.39,134.51 290,125.52Z"
android:fillColor="#fff"/>
<path
android:fillColor="#FF000000"
android:pathData="M290,125.52s-5.72,-1.61 -21.07,0.61c0,0 0.43,24.86 3,37.34a59.83,59.83 0,0 0,17.4 -0.94S286.39,134.51 290,125.52Z"
android:strokeAlpha="0.1"
android:fillAlpha="0.1"/>
<path
android:pathData="M272.89,182.15l-3.8,-15.25s-4.18,-2.51 -4.53,-5.3 4.09,-10.56 4.95,-10.55 6.47,4.2 6.46,5.44 -1.12,7.86 -1.12,7.86l7.63,14.79Z"
android:fillColor="#e2877b"/>
<path
android:pathData="M270.52,176.47l-2.19,-5.13l10.79,-6.27l3.36,5.7l-11.96,5.7z"
android:fillColor="#0298E1"/>
<path
android:pathData="M270.52,176.47l-2.19,-5.13l10.79,-6.27l3.36,5.7l-11.96,5.7z"
android:strokeAlpha="0.8"
android:fillColor="#fff"
android:fillAlpha="0.8"/>
<path
android:pathData="M319.75,158.5c-6.48,4.3 -20.87,25.24 -24.43,24.93 -4.6,-0.39 -12.23,-15.82 -12.23,-15.82l-14.16,8.53s16.58,33.48 25.83,31.37 26.78,-27.79 28,-31.57S327.79,153.16 319.75,158.5Z"
android:fillColor="#263238"/>
<path
android:fillColor="#FF000000"
android:pathData="M319.75,158.5c-6.48,4.3 -20.87,25.24 -24.43,24.93 -4.6,-0.39 -12.23,-15.82 -12.23,-15.82l-14.16,8.53s16.58,33.48 25.83,31.37 26.78,-27.79 28,-31.57S327.79,153.16 319.75,158.5Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M317.53,407.61l-8.11,0.86l-1.52,-17.5l8.11,-0.86l1.52,17.5z"
android:fillColor="#e2877b"/>
<path
android:pathData="M358.01,407.02l-7.86,0l-0.65,-18.21l7.87,0l0.64,18.21z"
android:fillColor="#e2877b"/>
<path
android:pathData="M349.06,406.11h9.55a0.68,0.68 0,0 1,0.67 0.54l1.55,7a1.18,1.18 0,0 1,-1.15 1.4c-3.09,-0.05 -5.34,-0.24 -9.22,-0.24 -2.39,0 -9.6,0.25 -12.9,0.25s-3.73,-3.26 -2.38,-3.56c6.06,-1.32 10.62,-3.15 12.56,-4.89A1.89,1.89 0,0 1,349.06 406.11Z"
android:fillColor="#263238"/>
<path
android:pathData="M346.46,407.49a2.38,2.38 0,0 1,-1.51 -0.4,1.12 1.12,0 0,1 -0.39,-1 0.57,0.57 0,0 1,0.32 -0.52c0.87,-0.45 3.41,1.11 3.69,1.29a0.16,0.16 0,0 1,0.09 0.18,0.19 0.19,0 0,1 -0.14,0.16A9.47,9.47 0,0 1,346.46 407.49ZM345.29,405.86a0.4,0.4 0,0 0,-0.24 0.05c-0.05,0 -0.11,0.07 -0.12,0.22a0.77,0.77 0,0 0,0.25 0.67,3.82 3.82,0 0,0 2.8,0.14A7.5,7.5 0,0 0,345.29 405.86Z"
android:fillColor="#0298E1"/>
<path
android:pathData="M348.47,407.21h-0.09c-0.81,-0.44 -2.38,-2.17 -2.22,-3a0.61,0.61 0,0 1,0.6 -0.49,1 1,0 0,1 0.79,0.24c0.91,0.74 1.1,3 1.11,3.11a0.2,0.2 0,0 1,-0.09 0.17A0.19,0.19 0,0 1,348.47 407.21ZM346.89,404h-0.09c-0.24,0 -0.26,0.14 -0.27,0.19 -0.1,0.51 0.9,1.82 1.71,2.43a4.38,4.38 0,0 0,-0.93 -2.46A0.65,0.65 0,0 0,346.89 404Z"
android:fillColor="#0298E1"/>
<path
android:pathData="M308.56,405.86h9.55a0.68,0.68 0,0 1,0.67 0.54l1.55,7a1.18,1.18 0,0 1,-1.15 1.4c-3.09,-0.05 -5.34,-0.24 -9.22,-0.24 -2.39,0 -9.6,0.25 -12.9,0.25s-3.73,-3.26 -2.38,-3.56c6.06,-1.32 10.62,-3.15 12.56,-4.89A1.89,1.89 0,0 1,308.56 405.86Z"
android:fillColor="#263238"/>
<path
android:pathData="M306,407.24a2.38,2.38 0,0 1,-1.51 -0.4,1.12 1.12,0 0,1 -0.39,-1 0.57,0.57 0,0 1,0.32 -0.52c0.87,-0.45 3.41,1.11 3.69,1.29a0.16,0.16 0,0 1,0.09 0.18,0.19 0.19,0 0,1 -0.14,0.16A9.47,9.47 0,0 1,306 407.24ZM304.83,405.61a0.4,0.4 0,0 0,-0.24 0.05c-0.05,0 -0.11,0.07 -0.12,0.22a0.77,0.77 0,0 0,0.25 0.67,3.82 3.82,0 0,0 2.8,0.14A7.5,7.5 0,0 0,304.79 405.61Z"
android:fillColor="#0298E1"/>
<path
android:pathData="M308,407h-0.09c-0.81,-0.44 -2.38,-2.17 -2.22,-3a0.61,0.61 0,0 1,0.6 -0.49,1 1,0 0,1 0.79,0.24c0.91,0.74 1.1,3 1.11,3.11a0.2,0.2 0,0 1,-0.09 0.17A0.19,0.19 0,0 1,308 407ZM306.42,403.81h-0.09c-0.24,0 -0.26,0.14 -0.27,0.19 -0.1,0.51 0.9,1.82 1.71,2.43a4.38,4.38 0,0 0,-0.93 -2.46A0.65,0.65 0,0 0,306.39 403.77Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M357.37,388.82l-7.87,0l0.34,9.39l7.87,0l-0.34,-9.39z"
android:strokeAlpha="0.2"
android:fillAlpha="0.2"/>
<path
android:pathData="M354.13,229.08H312.4c-4,21.66 -15.84,104.92 -6.93,173.22l14.13,-1.75s-1.86,-97.27 10.61,-130.79c1.44,17.94 3.14,37 4.62,47.18 3.63,25 11.74,84.22 11.74,84.22H361s-3.28,-56.88 -4.64,-81.45C354.82,293 354.18,234.56 354.13,229.08Z"
android:fillColor="#263238"/>
<path
android:fillColor="#FF000000"
android:pathData="M354.13,229.08H312.4c-4,21.66 -15.84,104.92 -6.93,173.22l14.13,-1.75s-1.86,-97.27 10.61,-130.79c1.44,17.94 3.14,37 4.62,47.18 3.63,25 11.74,84.22 11.74,84.22H361s-3.28,-56.88 -4.64,-81.45C354.82,293 354.18,234.56 354.13,229.08Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M310.72,239.16s12.3,2.84 20.87,0l-0.77,-6.67 -19.95,0Z"
android:strokeAlpha="0.4"
android:fillAlpha="0.4"/>
<path
android:pathData="M316.91,240.13a49.54,49.54 0,0 0,7.92 0.22V232.5l-7.92,0Z"
android:strokeAlpha="0.1"
android:fillColor="#fff"
android:fillAlpha="0.1"/>
<path
android:fillColor="#FF000000"
android:pathData="M330.21,269.76a111.8,111.8 0,0 0,-4.66 18.05c-1.17,-16 3.5,-32.9 3.5,-32.9Z"
android:strokeAlpha="0.2"
android:fillAlpha="0.2"/>
<path
android:pathData="M348.63,134s-0.31,7.66 -6.28,5.86S343.36,131.29 348.63,134Z"
android:fillColor="#263238"/>
<path
android:pathData="M330.82,153.16a8,8 0,0 0,2.75 -8.41l10.8,-8.71s-1.4,10.69 1.21,16.35c0,0 -6.52,6.61 -11.49,5.1S330.82,153.16 330.82,153.16Z"
android:fillColor="#e2877b"/>
<path
android:fillColor="#FF000000"
android:pathData="M341.94,141.26l-4.27,0.18 -4.1,3.31a8.61,8.61 0,0 1,-0.05 4.43C340.06,148.13 341.94,141.26 341.94,141.26Z"
android:strokeAlpha="0.2"
android:fillAlpha="0.2"/>
<path
android:pathData="M341.66,160.88l-8.94,-3.39 -7.51,0.56s-7.94,18.1 -10.88,36.79a297.83,297.83 0,0 0,-3 39.26c0.27,-0.06 11,2.29 20.95,-1.09 0,0 -6.63,-28 -3,-40.83s12.34,-31.3 12.34,-31.3"
android:fillColor="#0298E1"/>
<path
android:pathData="M341.66,160.88l-8.94,-3.39 -7.51,0.56s-7.94,18.1 -10.88,36.79a297.83,297.83 0,0 0,-3 39.26c0.27,-0.06 11,2.29 20.95,-1.09 0,0 -6.63,-28 -3,-40.83s12.34,-31.3 12.34,-31.3"
android:strokeAlpha="0.8"
android:fillColor="#fff"
android:fillAlpha="0.8"/>
<path
android:fillColor="#FF000000"
android:pathData="M329.22,157.75l0.54,4.92s-6.65,12.93 -9,21.58 -4.29,34.88 -4.29,34.88l4.16,7.15 3.82,-7.15s-1,-21 2.06,-35.16 4.75,-20.52 4.75,-20.52l4.6,-3.33 -3.12,-2.63Z"
android:strokeAlpha="0.4"
android:fillAlpha="0.4"/>
<path
android:pathData="M330.82,153.16l3.08,3.06l11.67,-3.83l-8.7,12.88l-4.31,-6.92l-7.02,1.99l5.28,-7.18z"
android:fillColor="#fff"/>
<path
android:pathData="M330.82,153.16s-16.07,3.51 -19.5,18 -5.45,77.77 -5.95,82.87 9.57,5.73 9.57,5.73 -0.54,-32.73 0.28,-41.42c0.3,-3.14 0.76,-13.74 2.18,-22C319.91,181.72 324.27,162.92 330.82,153.16Z"
android:fillColor="#263238"/>
<path
android:pathData="M327.49,154.33c-2.18,1.92 -7.39,6 -10,10.31l4.06,2.15L316,170.32s0.46,15.59 1.82,23.76c2.56,-14.22 6.8,-31.65 13,-40.92C330.82,153.16 329.5,153.53 327.49,154.33Z"
android:fillColor="#263238"/>
<path
android:pathData="M327.49,154.33c-2.18,1.92 -7.39,6 -10,10.31l4.06,2.15L316,170.32s0.46,15.59 1.82,23.76c2.56,-14.22 6.8,-31.65 13,-40.92C330.82,153.16 329.5,153.53 327.49,154.33Z"
android:strokeAlpha="0.1"
android:fillColor="#fff"
android:fillAlpha="0.1"/>
<path
android:pathData="M318.51,119.6s-0.56,5.88 4,7.19c0,0 2.61,-6.57 -0.56,-7.19S318.51,119.6 318.51,119.6Z"
android:fillColor="#263238"/>
<path
android:pathData="M322.46,136.16c0.73,4.16 3.85,12.88 12.68,10.22s9.2,-9.63 9.35,-11.64 -1.73,-17.61 -7.37,-19.1 -12.5,0.35 -14.66,3.58S322.46,136.16 322.46,136.16Z"
android:fillColor="#e2877b"/>
<path
android:pathData="M344,129.71c0.14,0.18 -5.84,3.76 -5.65,-8.61 0,0 -4.33,1.84 -5.33,-3.07 0,0 -18.1,6.24 -16.3,-0.8 2.41,-9.4 17.05,-10.11 23.36,-5.19 0,0 3.13,-3.51 6.08,0.27 3.53,4.52 3.47,16.77 3.47,16.77Z"
android:fillColor="#263238"/>
<path
android:fillColor="#FF000000"
android:pathData="M348.5,128.12c-2.12,-3.33 -11.59,0.16 -13.43,0.88l-0.06,-0.47a1.3,1.3 0,0 0,-0.52 -0.86,1.26 1.26,0 0,0 -1,-0.19l-3.89,0.84a1.25,1.25 0,0 0,-1 1.42c0,0.12 0.05,0.27 0.07,0.4a2,2 0,0 0,-1.89 0.27l0,-0.32a1.27,1.27 0,0 0,-0.5 -0.83,1.22 1.22,0 0,0 -0.93,-0.23l-3.27,0.49a1.25,1.25 0,0 0,-1.06 1.34c0.06,0.71 0.13,1.34 0.2,1.85a1.25,1.25 0,0 0,0.5 0.82,1.21 1.21,0 0,0 0.74,0.24h0.18l3.33,-0.49a1.25,1.25 0,0 0,1.06 -1.42l-0.12,-0.86a1.54,1.54 0,0 1,1.9 -0.24c0.05,0.27 0.1,0.55 0.15,0.81a1.26,1.26 0,0 0,0.53 0.8,1.24 1.24,0 0,0 0.69,0.21 1.09,1.09 0,0 0,0.26 0l3.82,-0.78a1.26,1.26 0,0 0,1 -1.4l-0.12,-0.85c1.42,-0.55 11,-4.16 12.94,-1.12a0.25,0.25 0,0 0,0.35 0.07A0.24,0.24 0,0 0,348.5 128.12ZM325.91,132.78 L322.58,133.26a0.78,0.78 0,0 1,-0.56 -0.13,0.74 0.74,0 0,1 -0.29,-0.49c-0.07,-0.5 -0.14,-1.12 -0.2,-1.83a0.75,0.75 0,0 1,0.64 -0.8l3.27,-0.49h0.11a0.82,0.82 0,0 1,0.45 0.14,0.76 0.76,0 0,1 0.29,0.5l0.26,1.77A0.76,0.76 0,0 1,325.91 132.78ZM334.17,131.27 L330.35,132.05a0.76,0.76 0,0 1,-0.57 -0.11,0.74 0.74,0 0,1 -0.32,-0.47c-0.11,-0.61 -0.23,-1.28 -0.31,-1.81a0.74,0.74 0,0 1,0.58 -0.85l3.88,-0.84a0.47,0.47 0,0 1,0.16 0,0.73 0.73,0 0,1 0.43,0.13 0.76,0.76 0,0 1,0.32 0.52l0.24,1.83A0.75,0.75 0,0 1,334.17 131.27Z"/>
<path
android:pathData="M332.65,129.78c0.15,0.61 -0.13,1.18 -0.55,1.25s-0.82,-0.38 -0.93,-1 0.14,-1.19 0.55,-1.26S332.54,129.15 332.65,129.78Z"
android:fillColor="#263238"/>
<path
android:pathData="M324.89,131c0.15,0.62 -0.14,1.19 -0.55,1.26s-0.82,-0.39 -0.93,-1 0.14,-1.18 0.55,-1.25S324.79,130.39 324.89,131Z"
android:fillColor="#263238"/>
<path
android:pathData="M327.88,130.91a22.24,22.24 0,0 1,-2.07 5.86,3.65 3.65,0 0,0 3.1,0Z"
android:fillColor="#dc5753"/>
<path
android:pathData="M334,126.06a0.36,0.36 0,0 1,-0.36 0.14,3 3,0 0,0 -2.59,0.72 0.38,0.38 0,1 1,-0.55 -0.51h0a3.72,3.72 0,0 1,3.26 -0.94,0.39 0.39,0 0,1 0.32,0.42h0A0.46,0.46 0,0 1,334 126.06Z"
android:fillColor="#263238"/>
<path
android:pathData="M330.48,139.88h0a5.74,5.74 0,0 0,4.63 -2.52,0.2 0.2,0 0,0 -0.07,-0.27 0.19,0.19 0,0 0,-0.26 0v0a5.46,5.46 0,0 1,-4.31 2.32,0.18 0.18,0 0,0 -0.19,0.19v0a0.19,0.19 0,0 0,0.19 0.19Z"
android:fillColor="#263238"/>
<path
android:pathData="M322.22,127.18a0.32,0.32 0,0 1,0 -0.62h0a3.7,3.7 0,0 1,3.39 0.26,0.37 0.37,0 0,1 0.09,0.52h0a0.39,0.39 0,0 1,-0.52 0.09h0a3,3 0,0 0,-2.69 -0.17A0.37,0.37 0,0 1,322.22 127.18Z"
android:fillColor="#263238"/>
<path
android:pathData="M345.58,152.39s10.69,6.24 16.21,8.58 -2.85,40.43 -3.06,47 5.76,51.7 5.76,51.7 -17,4.43 -30.93,1.12c0,0 -9.84,-37.54 -8.63,-57.21C326.1,184.64 331.78,166 345.58,152.39Z"
android:fillColor="#263238"/>
<path
android:pathData="M350,154.91c-2.53,-1.43 -4.37,-2.52 -4.37,-2.52 -13.35,13.16 -19.08,31 -20.5,49.31 5.78,-14.11 19.25,-27 19.25,-27l-4.16,-6.09 7.63,-0.6A51.46,51.46 0,0 1,350 154.91Z"
android:fillColor="#263238"/>
<path
android:pathData="M350,154.91c-2.53,-1.43 -4.37,-2.52 -4.37,-2.52 -13.35,13.16 -19.08,31 -20.5,49.31 5.78,-14.11 19.25,-27 19.25,-27l-4.16,-6.09 7.63,-0.6A51.46,51.46 0,0 1,350 154.91Z"
android:strokeAlpha="0.1"
android:fillColor="#fff"
android:fillAlpha="0.1"/>
<path
android:pathData="M345.38,177.31a0.34,0.34 0,0 0,-0.36 -0.3l-24,2v1.68h-2.53l3.22,38.83c0,0.18 0.13,0.18 0.14,0.31l0.26,0 0.21,-0.3 0.8,-0.07 0.26,0.26 25.05,-2.11a0.33,0.33 0,0 0,0.31 -0.35Z"
android:fillColor="#0298E1"/>
<path
android:pathData="M319.42,216.9a3.25,3.25 0,0 0,2.39 3c-0.17,-2.05 -0.41,-4 -0.41,-4s-2.19,-29.79 -2.76,-36.62a2.73,2.73 0,0 0,-2.18 2.55c0.08,0.93 0.24,2.82 0.24,2.82S318.79,209.48 319.42,216.9Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M319.42,216.9a3.25,3.25 0,0 0,2.39 3c-0.17,-2.05 -0.41,-4 -0.41,-4s-2.19,-29.79 -2.76,-36.62a2.73,2.73 0,0 0,-2.18 2.55c0.08,0.93 0.24,2.82 0.24,2.82S318.79,209.48 319.42,216.9Z"
android:strokeAlpha="0.2"
android:fillAlpha="0.2"/>
<path
android:pathData="M321.82,219l25.88,-2.1 -1.5,-4.44 -24.75,2.09a2.1,2.1 0,0 0,-1.08 2.33A2.51,2.51 0,0 0,321.82 219Z"
android:fillColor="#0298E1"/>
<path
android:pathData="M321.82,219l25.88,-2.1 -1.5,-4.44 -24.75,2.09a2.1,2.1 0,0 0,-1.08 2.33A2.51,2.51 0,0 0,321.82 219Z"
android:strokeAlpha="0.6"
android:fillColor="#fff"
android:fillAlpha="0.6"/>
<path
android:pathData="M347.24,212.52l-24.44,2.06 -0.19,-0.13 -0.76,0.07 -0.16,0.15 -0.32,0a0.07,0.07 0,0 1,-0.07 -0.06l-3,-35.31s0,-0.07 0.06,-0.07l0.37,0 0.15,0.27 0.76,-0.06 0.18,-0.3 24.42,-2.06a0.09,0.09 0,0 1,0.07 0.06l3,35.31A0.07,0.07 0,0 1,347.24 212.52Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M341.64,197.13l-17.17,1.44 -1.22,-14.46 17.17,-1.45ZM325.28,197.49 L340.66,196.2 339.61,183.74L324.23,185Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M316.91,187.11a3.26,3.26 0,0 1,1.88 -2.26c0,0.27 0,0.38 0.09,1.12a4.47,4.47 0,0 0,-1.85 2.6Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M318.76,209.14a3.28,3.28 0,0 1,1.88 -2.27c0,0.27 0.05,0.39 0.1,1.13a4.41,4.41 0,0 0,-1.85 2.6Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M318.9,179.53l0.76,-0.06l2.95,35.02l-0.76,0.06z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M327.42,202.5l12.05,-1.01l0.14,1.66l-12.05,1.01z"
android:fillColor="#0298E1"/>
<path
android:pathData="M330.38,205.91l6.74,-0.57l0.14,1.66l-6.74,0.57z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M321.78,216.49l23.14,-2s-7.05,0.46 -15.77,1.2C325.45,216.05 321.78,216.49 321.78,216.49Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M321.85,217.39l23.2,-2.16 -15.83,1.33C325.52,216.87 321.85,217.39 321.85,217.39Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M321.92,218.2 L345.23,216l-15.94,1.35C325.59,217.68 321.92,218.2 321.92,218.2Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M326.52,215.22l0.38,4.55 -1.63,-1.53L323.91,220s-0.09,-1.12 -0.38,-4.6C324.43,215.32 325.79,215.28 326.52,215.22Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M326.52,215.22l0.38,4.55 -1.63,-1.53L323.91,220s-0.09,-1.12 -0.38,-4.6C324.43,215.32 325.79,215.28 326.52,215.22Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M321.71,215.63l23.41,-1.84s-7.32,0.34 -16,1.08C325.38,215.18 321.71,215.63 321.71,215.63Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M347.31,212.51l-1.37,0.12a2.9,2.9 0,0 0,-0.08 2.18,2.56 2.56,0 0,0 1.81,2Z"
android:fillColor="#0298E1"/>
<path
android:pathData="M340.46,214.8l-14.28,-6.6s-4.58,1.69 -7,0.22 -5.68,-9.8 -5.13,-10.47 7.33,-2.41 8.28,-1.63 5.43,5.8 5.43,5.8l16.31,3.32Z"
android:fillColor="#e2877b"/>
<path
android:pathData="M336.47,200.91l-5.72,-0.34l0.61,12.87l6.08,1.02l-0.97,-13.55z"
android:fillColor="#fff"/>
<path
android:pathData="M336.47,200.91l-5.72,-0.34l0.61,12.87l6.08,1.02l-0.97,-13.55z"
android:fillColor="#0298E1"/>
<path
android:pathData="M336.47,200.91l-5.72,-0.34l0.61,12.87l6.08,1.02l-0.97,-13.55z"
android:strokeAlpha="0.8"
android:fillColor="#fff"
android:fillAlpha="0.8"/>
<path
android:pathData="M357.88,159.68c9.55,1 13.39,15.41 14.72,22.61 1.3,7 4.84,28.89 -3.21,34.8s-33.57,-0.57 -33.57,-0.57L334.46,199s13.71,3.09 19.63,0.79c5,-1.93 2.67,-19.76 2.15,-23C355.5,172.24 353.39,159.2 357.88,159.68Z"
android:fillColor="#263238"/>
<path
android:fillColor="#FF000000"
android:pathData="M357.88,159.68c9.55,1 13.39,15.41 14.72,22.61 1.3,7 4.84,28.89 -3.21,34.8s-33.57,-0.57 -33.57,-0.57L334.46,199s13.71,3.09 19.63,0.79c5,-1.93 2.67,-19.76 2.15,-23C355.5,172.24 353.39,159.2 357.88,159.68Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M342.1,130.67s1.58,-4.37 5.62,-4.39c3.24,0 3.71,4.05 2.23,6.85 -1.13,2.15 -4.84,4.84 -7.2,2S342.1,130.67 342.1,130.67Z"
android:fillColor="#e2877b"/>
<path
android:pathData="M145.38,329.06l-0.36,15.57l-1.64,70.43l-5.41,0l-1.63,-70.43l-0.36,-15.57l9.4,0z"
android:fillColor="#457bfb"/>
<path
android:pathData="M145.38,329.06l-0.36,15.57l-1.64,70.43l-5.41,0l-1.63,-70.43l-0.36,-15.57l9.4,0z"
android:strokeAlpha="0.4"
android:fillColor="#fff"
android:fillAlpha="0.4"/>
<path
android:fillColor="#FF000000"
android:pathData="M145.38,329.06l-0.36,16l-8.68,0l-0.36,-16l9.4,0z"
android:strokeAlpha="0.2"
android:fillAlpha="0.2"/>
<path
android:pathData="M174.76,414.81l-5,-84.65l-8.17,0l7,84.65l6.17,0z"
android:fillColor="#457bfb"/>
<path
android:pathData="M168.57,414.81l6.18,0l-4.54,-77.05l-0.45,-7.7l-8.17,0l0.63,7.7l6.35,77.05z"
android:strokeAlpha="0.5"
android:fillColor="#fff"
android:fillAlpha="0.5"/>
<path
android:fillColor="#FF000000"
android:pathData="M161.59,330.06l0.63,8l7.99,0l-0.45,-8l-8.17,0z"
android:strokeAlpha="0.2"
android:fillAlpha="0.2"/>
<path
android:pathData="M112.77,414.81l6.99,-84.65l-8.17,0l-4.99,84.65l6.17,0z"
android:fillColor="#457bfb"/>
<path
android:pathData="M112.78,414.81l6.35,-77.05l0.63,-7.7l-8.17,0l-0.45,7.7l-4.54,77.05l6.18,0z"
android:strokeAlpha="0.5"
android:fillColor="#fff"
android:fillAlpha="0.5"/>
<path
android:fillColor="#FF000000"
android:pathData="M119.76,330.06l-0.63,8l-7.99,0l0.45,-8l8.17,0z"
android:strokeAlpha="0.2"
android:fillAlpha="0.2"/>
<path
android:fillColor="#FF000000"
android:pathData="M112.22,321.39h56.92a5,5 0,0 1,5 5v6.69a0,0 0,0 1,0 0H107.22a0,0 0,0 1,0 0v-6.69A5,5 0,0 1,112.22 321.39Z"/>
<path
android:pathData="M106.02,327.24L175.33,327.24A2.01,2.01 0,0 1,177.34 329.25L177.34,331.07A2.01,2.01 0,0 1,175.33 333.08L106.02,333.08A2.01,2.01 0,0 1,104.01 331.07L104.01,329.25A2.01,2.01 0,0 1,106.02 327.24z"
android:fillColor="#457bfb"/>
<path
android:pathData="M106.02,327.24L175.33,327.24A2.01,2.01 0,0 1,177.34 329.25L177.34,331.07A2.01,2.01 0,0 1,175.33 333.08L106.02,333.08A2.01,2.01 0,0 1,104.01 331.07L104.01,329.25A2.01,2.01 0,0 1,106.02 327.24z"
android:strokeAlpha="0.6"
android:fillColor="#fff"
android:fillAlpha="0.6"/>
<path
android:pathData="M176.88,245.66s20.14,20.9 21.36,22 8.73,3.52 9.84,4.48 -0.76,8 -1.5,9.35 -11.36,-4.45 -12,-5.4a21.21,21.21 0,0 1,-1.5 -3.68l-22.86,-19.2Z"
android:fillColor="#e9b076"/>
<path
android:pathData="M159.91,225.43s0.06,0.81 0.22,2.15 0.4,3.36 0.76,5.6c0.87,5.45 2.39,12.46 4.83,16.7a9.32,9.32 0,0 0,2.41 2.91c3.2,2.38 17.33,17.93 17.33,17.93l7.51,-9.55L183,248.55s-6.58,-37.17 -16.61,-40.07C162.05,207.22 159.91,225.43 159.91,225.43Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M159.91,225.43s0.06,0.81 0.22,2.15 0.4,3.36 0.76,5.6c0.87,5.45 2.39,12.46 4.83,16.7a9.32,9.32 0,0 0,2.41 2.91c3.2,2.38 17.33,17.93 17.33,17.93l7.51,-9.55L183,248.55s-6.58,-37.17 -16.61,-40.07C162.05,207.22 159.91,225.43 159.91,225.43Z"
android:strokeAlpha="0.6"
android:fillAlpha="0.6"/>
<path
android:pathData="M169.02,407.84l7.97,-1.1l1.1,-18.93l-7.95,1.1l-1.12,18.93z"
android:fillColor="#e9b076"/>
<path
android:fillColor="#FF000000"
android:pathData="M170.14,388.91l7.95,-1.09l-0.63,10.82l-7.95,0.7l0.63,-10.43z"
android:strokeAlpha="0.2"
android:fillAlpha="0.2"/>
<path
android:pathData="M169.34,296.52l-1.94,-12.18 -44.66,-2.67S118,307 121.64,313.76c6.51,12.05 41.62,6 51.89,7.15C167.39,346 168,395.09 168,395.09l14.67,1.12s11.29,-52.87 13.57,-78C197.77,301.26 183.72,301.68 169.34,296.52Z"
android:fillColor="#0298E1"/>
<path
android:pathData="M166.27,395.78l17.63,1.16l1.51,-7.55l-19.37,-0.9l0.23,7.29z"
android:fillColor="#457bfb"/>
<path
android:pathData="M187.4,400.77l8.02,0.59l5.02,-18.3l-8.01,-0.57l-5.03,18.28z"
android:fillColor="#e9b076"/>
<path
android:pathData="M196.53,401.71s0,0.05 0,0.07a0.09,0.09 0,0 0,0.07 0,10 10,0 0,0 2,0.85 2.15,2.15 0,0 0,1.56 0,1 1,0 0,0 0.51,-0.94 0.72,0.72 0,0 0,-0.27 -0.63,3.24 3.24,0 0,0 -2.25,-0.06 2.92,2.92 0,0 0,1.18 -1.63,0.71 0.71,0 0,0 -0.48,-0.73 0.92,0.92 0,0 0,-0.81 0c-1,0.53 -1.35,2.77 -1.38,2.89h0l-0.14,0S196.51,401.69 196.53,401.71ZM197.13,401.27 L196.95,401.32c0.19,-0.74 0.59,-1.95 1.18,-2.26a0.53,0.53 0,0 1,0.43 -0.06l0.08,0c0.25,0.11 0.28,0.25 0.27,0.36C198.84,399.93 197.92,400.83 197.13,401.27ZM197.13,401.68c1.06,-0.32 2.53,-0.61 3,-0.27a0.36,0.36 0,0 1,0.13 0.31,0.71 0.71,0 0,1 -0.31,0.61C199.5,402.58 198.47,402.34 197.16,401.68Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M192.43,382.49l8.01,0.58l-2.87,10.46l-7.92,-0.97l2.78,-10.07z"
android:strokeAlpha="0.2"
android:fillAlpha="0.2"/>
<path
android:pathData="M203.16,392.24 L189,388.09s8.43,-47.58 17,-64.08c-0.64,-0.21 -1.49,-0.48 -2.54,-0.79 -1.89,-0.57 -4.4,-1.28 -7.35,-2.1C175.61,315.43 134,304.76 134,304.76L153,287s75.68,11.54 77.25,31.48C231,328.1 203.16,392.24 203.16,392.24Z"
android:fillColor="#0298E1"/>
<path
android:pathData="M187.22,388.4l17,4.81l3.05,-7.07l-18.76,-4.92l-1.29,7.18z"
android:fillColor="#457bfb"/>
<path
android:fillColor="#FF000000"
android:pathData="M203.48,323.22c-1.89,-0.57 -4.4,-1.28 -7.35,-2.1 0.59,-4.84 0.6,-10.39 -1.73,-13.22 -4.63,-5.64 -16.54,-8.95 -23.32,-10.15 -5.67,-1 -24.72,-3 -24.72,-3s24.72,-2.37 50,5C208.84,303.41 206.41,315.62 203.48,323.22Z"
android:strokeAlpha="0.2"
android:fillAlpha="0.2"/>
<path
android:pathData="M120.26,294.4c-3,-2.29 -0.12,-23.59 -1.65,-44.55 -2.33,-31.89 2.68,-42.28 5,-43.28a57.44,57.44 0,0 1,10.45 -1.15,165.88 165.88,0 0,1 19.31,0.41 86,86 0,0 1,13 2.65s10.53,33.5 3.8,81.75Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M120.26,294.4c-3,-2.29 -0.12,-23.59 -1.65,-44.55 -2.33,-31.89 2.68,-42.28 5,-43.28a57.44,57.44 0,0 1,10.45 -1.15,165.88 165.88,0 0,1 19.31,0.41 86,86 0,0 1,13 2.65s10.53,33.5 3.8,81.75Z"
android:strokeAlpha="0.5"
android:fillAlpha="0.5"/>
<path
android:pathData="M136.47,183.77c1.08,6.23 2.05,17.64 -2.38,21.7a19.92,19.92 0,0 0,14 6.35c8,0.35 5.3,-5.94 5.3,-5.94 -6.89,-1.8 -6.6,-6.94 -5.29,-11.74Z"
android:fillColor="#e2877b"/>
<path
android:fillColor="#FF000000"
android:pathData="M141.21,188l6.89,6.15a19.59,19.59 0,0 0,-0.67 3.41c-2.64,-0.44 -6.21,-3.42 -6.43,-6.2A9.06,9.06 0,0 1,141.21 188Z"
android:strokeAlpha="0.2"
android:fillAlpha="0.2"/>
<path
android:pathData="M158.81,175.46s6.33,1.34 7.2,-2.61 -0.7,-4.63 1.18,-6.53 0.67,-8.39 -4.18,-7.11 -7.39,-5.39 -11.41,-4.48 -4.64,3.71 -7.17,4.37 -7.55,-2.61 -10.77,-0.67 -0.74,6.1 -1.83,7.69 -3.75,5.64 0,11.58c3.44,5.44 -0.84,8.17 -3.06,7.66a0.5,0.5 0,0 0,-0.63 0.52c0.06,0.63 0.43,1.52 1.94,2.08 2.52,0.94 3,-0.43 3.58,0.29s1.84,3.09 6,0.66S145.85,171.11 158.81,175.46Z"
android:fillColor="#263238"/>
<path
android:pathData="M158.9,184.44c-0.72,4.16 -3.84,12.88 -12.67,10.22S137,185 136.88,183s1.72,-17.62 7.37,-19.1 12.5,0.35 14.65,3.57S158.9,184.44 158.9,184.44Z"
android:fillColor="#e2877b"/>
<path
android:pathData="M148.71,178.06c-0.15,0.61 0.14,1.19 0.55,1.26s0.83,-0.39 0.94,-1 -0.15,-1.19 -0.55,-1.25S148.82,177.43 148.71,178.06Z"
android:fillColor="#263238"/>
<path
android:pathData="M155.69,179.27c-0.15,0.61 0.14,1.19 0.55,1.25s0.82,-0.38 0.93,-1 -0.14,-1.19 -0.55,-1.26S155.79,178.68 155.69,179.27Z"
android:fillColor="#263238"/>
<path
android:pathData="M153.48,179.19a23,23 0,0 0,2.07 5.86,3.69 3.69,0 0,1 -3.1,0Z"
android:fillColor="#dc5753"/>
<path
android:pathData="M151.41,174.15a0.41,0.41 0,0 0,-0.39 0,3 3,0 0,1 -2.66,0.4 0.37,0.37 0,0 0,-0.49 0.19,0.37 0.37,0 0,0 0.2,0.49h0a3.69,3.69 0,0 0,3.36 -0.46,0.38 0.38,0 0,0 0.12,-0.51h0A0.8,0.8 0,0 0,151.41 174.15Z"
android:fillColor="#263238"/>
<path
android:pathData="M147.9,187.78h0a5.73,5.73 0,0 1,5.21 0.78,0.19 0.19,0 0,1 0,0.28 0.2,0.2 0,0 1,-0.27 0h0a5.42,5.42 0,0 0,-4.84 -0.7,0.21 0.21,0 0,1 -0.25,-0.12v0a0.18,0.18 0,0 1,0.11 -0.24Z"
android:fillColor="#263238"/>
<path
android:pathData="M156.62,174.59a0.41,0.41 0,0 0,-0.22 0,0.37 0.37,0 0,0 -0.21,0.48h0a3.71,3.71 0,0 0,2.52 2.28,0.38 0.38,0 0,0 0.44,-0.29h0a0.38,0.38 0,0 0,-0.29 -0.44h0a3,3 0,0 1,-2 -1.84A0.41,0.41 0,0 0,156.62 174.59Z"
android:fillColor="#263238"/>
<path
android:pathData="M163.1,167.15c1.84,2.17 -4.14,5.23 -6.47,3.57 -2,-1.44 -4.18,-3.1 -6.82,-1.52s-2.89,0.2 -4.71,0.2 0.72,3.9 -1.79,5.62c-1.44,1 -3.51,1.49 -2.86,3.24s-0.32,4.19 -2.82,3.74c0,0 2.34,-0.66 0.88,-3.05s-2.72,-1 -2.72,-1 0.7,-13.17 7,-15.59S160.06,163.57 163.1,167.15Z"
android:fillColor="#263238"/>
<path
android:pathData="M139.26,179s-1.58,-4.37 -5.61,-4.38c-3.25,0 -3.71,4 -2.24,6.85 1.14,2.15 4.65,4.66 7.2,2C140.12,181.88 139.26,179 139.26,179Z"
android:fillColor="#e2877b"/>
<path
android:pathData="M150.71,256.29s27.68,8.73 29.27,9.1 9.35,-1.09 10.78,-0.77 3.17,7.39 3.16,8.93 -12.11,1.51 -13.12,1a21,21 0,0 1,-3.09 -2.52l-29.25,-5.94Z"
android:fillColor="#e9b076"/>
<path
android:pathData="M123.64,206.57c-15.58,1.43 -4.06,46.69 2.26,53.21s28,8.86 28,8.86l2.75,-12.17s-16.31,-4.35 -19.2,-6.23 -4.92,-20.65 -6.64,-29.78A25.91,25.91 0,0 0,123.64 206.57Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M123.64,206.57c-15.58,1.43 -4.06,46.69 2.26,53.21s28,8.86 28,8.86l2.75,-12.17s-16.31,-4.35 -19.2,-6.23 -4.92,-20.65 -6.64,-29.78A25.91,25.91 0,0 0,123.64 206.57Z"
android:strokeAlpha="0.6"
android:fillAlpha="0.6"/>
<path
android:pathData="M166.27,395.78l17.63,1.16l1.51,-7.55l-19.37,-0.9l0.23,7.29z"
android:strokeAlpha="0.2"
android:fillColor="#fff"
android:fillAlpha="0.2"/>
<path
android:pathData="M187.22,388.4l17,4.81l3.05,-7.07l-18.76,-4.92l-1.29,7.18z"
android:strokeAlpha="0.2"
android:fillColor="#fff"
android:fillAlpha="0.2"/>
<path
android:pathData="M196.21,400.54l-8.69,-2.42a0.57,0.57 0,0 0,-0.72 0.36h0l-2.34,6.76a1.42,1.42 0,0 0,1 1.75c3,0.79 4.53,1 8.36,2.06 2.35,0.65 6.93,2.15 10.28,2.53s3.63,-2.94 2.25,-3.39c-3.28,-1.1 -7.2,-4.52 -8.91,-6.84A2.23,2.23 0,0 0,196.21 400.54Z"
android:fillColor="#263238"/>
<path
android:pathData="M177.78,406.77a1,1 0,0 1,0.17 0s0.18,0 0.2,0.07 0,0.05 0,0.06h0.06a10.85,10.85 0,0 0,2.1 0.42,2.22 2.22,0 0,0 1.53,-0.3 1,1 0,0 0,0.29 -1,0.72 0.72,0 0,0 -0.41,-0.56 3.25,3.25 0,0 0,-2.22 0.41,2.91 2.91,0 0,0 0.79,-1.84 0.76,0.76 0,0 0,-0.68 -0.6,1.19 1.19,0 0,0 -0.9,0.2c-0.83,0.73 -1,3 -1,3.14h0ZM178.64,406.3 L178.48,406.39a4,4 0,0 1,0.68 -2.46,0.56 0.56,0 0,1 0.41,-0.14h0.09c0.26,0.05 0.33,0.19 0.33,0.29A3.72,3.72 0,0 1,178.64 406.3ZM178.76,406.7c1,-0.54 2.34,-1.12 2.86,-0.89a0.36,0.36 0,0 1,0.19 0.28,0.71 0.71,0 0,1 -0.18,0.66C181.23,407.09 180.18,407.07 178.76,406.7Z"
android:fillColor="#0298E1"/>
<path
android:pathData="M177.59,405.78l-9,-0.56a0.59,0.59 0,0 0,-0.63 0.51h0l-0.88,7.1a1.42,1.42 0,0 0,1.31 1.5c3.14,0.15 4.65,0.06 8.61,0.28 2.43,0.14 7.22,0.66 10.58,0.33s2.94,-3.63 1.49,-3.79c-3.43,-0.39 -8,-2.91 -10.13,-4.83A2.25,2.25 0,0 0,177.59 405.78Z"
android:fillColor="#263238"/>
<path
android:pathData="M155.06,221.73l12.43,-1.16l0.63,3.23l-12.3,1.72l-0.76,-3.79z"
android:strokeAlpha="0.3"
android:fillColor="#fff"
android:fillAlpha="0.3"/>
<path
android:pathData="M83.12,258H214.21a0,0 0,0 1,0 0v5.51a2.16,2.16 0,0 1,-2.16 2.16H85.29a2.16,2.16 0,0 1,-2.16 -2.16V258A0,0 0,0 1,83.12 258Z"
android:fillColor="#263238"/>
<path
android:pathData="M83.12,258H214.21a0,0 0,0 1,0 0v5.51a2.16,2.16 0,0 1,-2.16 2.16H85.29a2.16,2.16 0,0 1,-2.16 -2.16V258A0,0 0,0 1,83.12 258Z"
android:strokeAlpha="0.3"
android:fillColor="#fff"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M83.12,257.97h131.08v3.84h-131.08z"
android:strokeAlpha="0.2"
android:fillAlpha="0.2"/>
<path
android:pathData="M218,259H79.33a2.16,2.16 0,0 1,-2.17 -2.16h0a2.17,2.17 0,0 1,2.17 -2.16H218a2.16,2.16 0,0 1,2.16 2.16h0A2.15,2.15 0,0 1,218 259Z"
android:fillColor="#263238"/>
<path
android:pathData="M218,259H79.33a2.16,2.16 0,0 1,-2.17 -2.16h0a2.17,2.17 0,0 1,2.17 -2.16H218a2.16,2.16 0,0 1,2.16 2.16h0A2.15,2.15 0,0 1,218 259Z"
android:strokeAlpha="0.3"
android:fillColor="#fff"
android:fillAlpha="0.3"/>
<path
android:pathData="M143.04,415.06l-56.69,-0l-0,-149.41l56.69,-0z"
android:fillColor="#263238"/>
<path
android:pathData="M143.04,415.06l-56.69,-0l-0,-149.41l56.69,-0z"
android:strokeAlpha="0.2"
android:fillColor="#fff"
android:fillAlpha="0.2"/>
<path
android:pathData="M143.04,265.65h116.54v149.41h-116.54z"
android:fillColor="#263238"/>
<path
android:pathData="M143.04,265.65h116.54v149.41h-116.54z"
android:strokeAlpha="0.39"
android:fillColor="#fff"
android:fillAlpha="0.39"/>
<path
android:pathData="M140.66,258H261.74a0,0 0,0 1,0 0v5.51a2.16,2.16 0,0 1,-2.16 2.16H142.82a2.16,2.16 0,0 1,-2.16 -2.16V258A0,0 0,0 1,140.66 258Z"
android:fillColor="#263238"/>
<path
android:pathData="M140.66,258H261.74a0,0 0,0 1,0 0v5.51a2.16,2.16 0,0 1,-2.16 2.16H142.82a2.16,2.16 0,0 1,-2.16 -2.16V258A0,0 0,0 1,140.66 258Z"
android:strokeAlpha="0.6"
android:fillColor="#fff"
android:fillAlpha="0.6"/>
<path
android:fillColor="#FF000000"
android:pathData="M140.66,257.97h121.08v3.84h-121.08z"
android:strokeAlpha="0.2"
android:fillAlpha="0.2"/>
<path
android:pathData="M265.54,259H136.86a2.16,2.16 0,0 1,-2.16 -2.16h0a2.16,2.16 0,0 1,2.16 -2.16H265.54a2.16,2.16 0,0 1,2.16 2.16h0A2.16,2.16 0,0 1,265.54 259Z"
android:fillColor="#263238"/>
<path
android:pathData="M265.54,259H136.86a2.16,2.16 0,0 1,-2.16 -2.16h0a2.16,2.16 0,0 1,2.16 -2.16H265.54a2.16,2.16 0,0 1,2.16 2.16h0A2.16,2.16 0,0 1,265.54 259Z"
android:strokeAlpha="0.6"
android:fillColor="#fff"
android:fillAlpha="0.6"/>
<path
android:pathData="M237.74,398.38L164.66,398.38L164.66,277.74h73.08ZM171.11,391.93h60.18L231.29,284.19L171.11,284.19Z"
android:strokeAlpha="0.3"
android:fillColor="#fff"
android:fillAlpha="0.3"/>
<path
android:pathData="M182.39,297.92h37.62v80.28h-37.62z"
android:strokeAlpha="0.3"
android:fillColor="#fff"
android:fillAlpha="0.3"/>
<path
android:pathData="M207.74,203.92L251.34,203.92A3.84,3.84 0,0 1,255.18 207.76L255.18,238.34A3.84,3.84 0,0 1,251.34 242.18L207.74,242.18A3.84,3.84 0,0 1,203.9 238.34L203.9,207.76A3.84,3.84 0,0 1,207.74 203.92z"
android:fillColor="#0298E1"/>
<path
android:pathData="M248.46,219.18s14.28,10.27 31.91,-3.56c0,0 -16,22.83 -37.26,11.88Z"
android:fillColor="#0298E1"
android:fillType="evenOdd"/>
<path
android:pathData="M251.19,207.91l-0,30.26l-43.28,0l-0,-30.26z"
android:strokeAlpha="0.39"
android:fillColor="#fff"
android:fillAlpha="0.39"/>
<path
android:pathData="M228.84,235.56a12.62,12.62 0,0 0,-3.66 -2.25,9.5 9.5,0 0,1 -6.36,-8.22 7.78,7.78 0,0 1,0.77 -4.21c0.31,-0.62 0.72,-1.16 1.07,-1.75a3.57,3.57 0,0 0,0 -3.63c-0.12,-0.19 -0.27,-0.38 -0.38,-0.58a1.38,1.38 0,0 1,0 -1.45,1.87 1.87,0 0,1 0.29,-0.34l1.17,-1.14a1.91,1.91 0,0 1,0.41 -0.33,1.46 1.46,0 0,1 1.22,-0.11c0.14,0 0.27,0.13 0.42,0.18a5.09,5.09 0,0 0,5.24 -1.26,0.69 0.69,0 0,1 1,0 5,5 0,0 0,5.26 1.28c0.15,-0.06 0.28,-0.13 0.42,-0.18a1.46,1.46 0,0 1,1.22 0.11,1.91 1.91,0 0,1 0.41,0.33l1.17,1.14a1.87,1.87 0,0 1,0.29 0.34,1.38 1.38,0 0,1 0,1.45c-0.11,0.2 -0.26,0.39 -0.38,0.58a3.57,3.57 0,0 0,0 3.63c0.34,0.59 0.76,1.13 1.06,1.75a7.78,7.78 0,0 1,0.77 4.21,9.5 9.5,0 0,1 -6.36,8.22 12.89,12.89 0,0 0,-3.63 2.22,1 1,0 0,1 -1.43,0Z"
android:fillColor="#0298E1"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="M228.84,235.56a12.62,12.62 0,0 0,-3.66 -2.25,9.5 9.5,0 0,1 -6.36,-8.22 7.78,7.78 0,0 1,0.77 -4.21c0.31,-0.62 0.72,-1.16 1.07,-1.75a3.57,3.57 0,0 0,0 -3.63c-0.12,-0.19 -0.27,-0.38 -0.38,-0.58a1.38,1.38 0,0 1,0 -1.45,1.87 1.87,0 0,1 0.29,-0.34l1.17,-1.14a1.91,1.91 0,0 1,0.41 -0.33,1.46 1.46,0 0,1 1.22,-0.11c0.14,0 0.27,0.13 0.42,0.18a5.09,5.09 0,0 0,5.24 -1.26,0.69 0.69,0 0,1 1,0 5,5 0,0 0,5.26 1.28c0.15,-0.06 0.28,-0.13 0.42,-0.18a1.46,1.46 0,0 1,1.22 0.11,1.91 1.91,0 0,1 0.41,0.33l1.17,1.14a1.87,1.87 0,0 1,0.29 0.34,1.38 1.38,0 0,1 0,1.45c-0.11,0.2 -0.26,0.39 -0.38,0.58a3.57,3.57 0,0 0,0 3.63c0.34,0.59 0.76,1.13 1.06,1.75a7.78,7.78 0,0 1,0.77 4.21,9.5 9.5,0 0,1 -6.36,8.22 12.89,12.89 0,0 0,-3.63 2.22,1 1,0 0,1 -1.43,0Z"
android:strokeAlpha="0.3"
android:fillType="evenOdd"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M229.54,232a15.88,15.88 0,0 1,1.46 -0.84c0.81,-0.42 1.67,-0.74 2.48,-1.16a6.71,6.71 0,0 0,2.45 -2.06,5.87 5.87,0 0,0 0.83,-1.66 6,6 0,0 0,0.23 -2.85,6.52 6.52,0 0,0 -1,-2.15 7.92,7.92 0,0 1,-1.23 -3,6.73 6.73,0 0,1 0.34,-3.3 8.27,8.27 0,0 1,-1 0.12,8.52 8.52,0 0,1 -4.59,-1.09 8.86,8.86 0,0 1,-1.48 0.65A8.57,8.57 0,0 1,224 215a6.7,6.7 0,0 1,0.23 3.84,8.34 8.34,0 0,1 -1.09,2.36 6.18,6.18 0,0 0,-1.06 2.67,6.1 6.1,0 0,0 0.71,3.45 6.34,6.34 0,0 0,1.71 2,10 10,0 0,0 1.79,1c0.6,0.27 1.21,0.56 1.84,0.88s1,0.53 1.44,0.83Z"
android:strokeAlpha="0.3"
android:fillType="evenOdd"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M231.55,232.21c-0.24,0.12 -0.47,0.25 -0.7,0.39a2.56,2.56 0,0 1,-2.62 0c-0.23,-0.13 -0.45,-0.26 -0.69,-0.38 -0.56,-0.29 -1.18,-0.58 -1.79,-0.86a10.53,10.53 0,0 1,-2 -1.11,7.4 7.4,0 0,1 -2,-2.38 4.83,4.83 0,0 1,-0.27 -0.56,7.33 7.33,0 0,1 -0.57,-3.52 7.41,7.41 0,0 1,1.22 -3.15,7.58 7.58,0 0,0 1,-2 5.49,5.49 0,0 0,-0.1 -2.9,5.41 5.41,0 0,0 -0.44,-1h0l-0.21,-0.38 0.71,-0.69 0.34,0.11a7.12,7.12 0,0 0,4.33 -0.08,7.59 7.59,0 0,0 0.83,-0.34 2.51,2.51 0,0 1,2.14 0,7.19 7.19,0 0,0 3.42,0.69 7.79,7.79 0,0 0,2 -0.41l0.7,0.69a8.44,8.44 0,0 0,-0.65 1.4,5.62 5.62,0 0,0 -0.19,2.48 6.64,6.64 0,0 0,1.08 2.58,7.46 7.46,0 0,1 1.12,2.54 7.1,7.1 0,0 1,-0.26 3.39,7.4 7.4,0 0,1 -1,2 8.08,8.08 0,0 1,-2.88 2.43c-0.81,0.41 -1.67,0.73 -2.48,1.15Z"
android:strokeAlpha="0.5"
android:fillType="evenOdd"
android:fillAlpha="0.5"/>
<path
android:pathData="M229.54,219.53a4.32,4.32 0,1 1,-4.32 4.32,4.32 4.32,0 0,1 4.32,-4.32Z"
android:fillColor="#0298E1"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="M229.54,219.53a4.32,4.32 0,1 1,-4.32 4.32,4.32 4.32,0 0,1 4.32,-4.32Z"
android:strokeAlpha="0.5"
android:fillType="evenOdd"
android:fillAlpha="0.5"/>
<path
android:pathData="M404.65,185.7L454.38,185.7A4.38,4.38 0,0 1,458.76 190.08L458.76,224.96A4.38,4.38 0,0 1,454.38 229.34L404.65,229.34A4.38,4.38 0,0 1,400.27 224.96L400.27,190.08A4.38,4.38 0,0 1,404.65 185.7z"
android:fillColor="#0298E1"/>
<path
android:pathData="M408.21,201.59s-9.81,14.6 -31.16,7.77c0,0 22.95,15.83 39.07,-1.83Z"
android:fillColor="#0298E1"
android:fillType="evenOdd"/>
<path
android:pathData="M454.77,190.07L454.77,224.95A0.38,0.38 0,0 1,454.39 225.33L404.65,225.33A0.38,0.38 0,0 1,404.27 224.95L404.27,190.07A0.38,0.38 0,0 1,404.65 189.69L454.39,189.69A0.38,0.38 0,0 1,454.77 190.07z"
android:strokeAlpha="0.39"
android:fillColor="#fff"
android:fillAlpha="0.39"/>
<path
android:pathData="M413.24,220.48h0a3.42,3.42 0,0 1,-2.48 -2.37l0,-0.15 15.16,-15.16 2.52,2.52Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M413.24,220.48h0a3.42,3.42 0,0 1,-2.48 -2.37l0,-0.15 15.16,-15.16 2.52,2.52Z"
android:strokeAlpha="0.5"
android:fillAlpha="0.5"/>
<path
android:pathData="M427.03,200.99l3.18,3.18l-3.06,3.06l-3.18,-3.18z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M427.03,200.99l3.18,3.18l-3.06,3.06l-3.18,-3.18z"
android:strokeAlpha="0.7"
android:fillAlpha="0.7"/>
<path
android:pathData="M427.6,194.02l9.57,9.57l-5.06,5.06l-9.57,-9.57z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M427.6,194.02l9.57,9.57l-5.06,5.06l-9.57,-9.57z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M427.42,192.63L428.92,194.13A1,1 0,0 1,428.92 195.54L424.08,200.38A1,1 0,0 1,422.67 200.38L421.17,198.88A1,1 0,0 1,421.17 197.47L426,192.63A1,1 0,0 1,427.42 192.63z"
android:fillColor="#0298E1"/>
<path
android:pathData="M437.06,202.28L438.56,203.78A1,1 0,0 1,438.56 205.2L433.72,210.03A1,1 0,0 1,432.31 210.03L430.81,208.54A1,1 0,0 1,430.81 207.12L435.65,202.28A1,1 0,0 1,437.06 202.28z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M427.42,192.63L428.92,194.13A1,1 0,0 1,428.92 195.54L424.08,200.38A1,1 0,0 1,422.67 200.38L421.17,198.88A1,1 0,0 1,421.17 197.47L426,192.63A1,1 0,0 1,427.42 192.63z"
android:strokeAlpha="0.5"
android:fillAlpha="0.5"/>
<path
android:fillColor="#FF000000"
android:pathData="M437.06,202.28L438.56,203.78A1,1 0,0 1,438.56 205.2L433.72,210.03A1,1 0,0 1,432.31 210.03L430.81,208.54A1,1 0,0 1,430.81 207.12L435.65,202.28A1,1 0,0 1,437.06 202.28z"
android:strokeAlpha="0.5"
android:fillAlpha="0.5"/>
<path
android:pathData="M430.18,213.12H443a1.24,1.24 0,0 1,1.24 1.24V218a0,0 0,0 1,0 0H428.94a0,0 0,0 1,0 0v-3.66A1.24,1.24 0,0 1,430.18 213.12Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M430.18,213.12H443a1.24,1.24 0,0 1,1.24 1.24V218a0,0 0,0 1,0 0H428.94a0,0 0,0 1,0 0v-3.66A1.24,1.24 0,0 1,430.18 213.12Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M444.54,217.8H428.62a1.32,1.32 0,0 0,-1.32 1.31h0a1.32,1.32 0,0 0,1.32 1.32h15.92a1.32,1.32 0,0 0,1.32 -1.32h0A1.32,1.32 0,0 0,444.54 217.8Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M444.54,217.8H428.62a1.32,1.32 0,0 0,-1.32 1.31h0a1.32,1.32 0,0 0,1.32 1.32h15.92a1.32,1.32 0,0 0,1.32 -1.32h0A1.32,1.32 0,0 0,444.54 217.8Z"
android:strokeAlpha="0.5"
android:fillAlpha="0.5"/>
<path
android:pathData="M169.59,88.65L236.8,88.65A5.92,5.92 0,0 1,242.72 94.57L242.72,141.7A5.92,5.92 0,0 1,236.8 147.62L169.59,147.62A5.92,5.92 0,0 1,163.67 141.7L163.67,94.57A5.92,5.92 0,0 1,169.59 88.65z"
android:fillColor="#0298E1"/>
<path
android:pathData="M230.79,136.52S229.15,154 250,162.25c0,0 -27.79,-2.26 -29.1,-26.13Z"
android:fillColor="#0298E1"
android:fillType="evenOdd"/>
<path
android:pathData="M238.72,94.57L238.72,141.7A1.92,1.92 0,0 1,236.8 143.62L169.59,143.62A1.92,1.92 0,0 1,167.67 141.7L167.67,94.57A1.92,1.92 0,0 1,169.59 92.65L236.8,92.65A1.92,1.92 0,0 1,238.72 94.57z"
android:strokeAlpha="0.39"
android:fillColor="#fff"
android:fillAlpha="0.39"/>
<path
android:pathData="M194.7,119.28a6.08,6.08 0,0 1,-11.35 0Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M194.7,119.28a6.08,6.08 0,0 1,-11.35 0Z"
android:strokeAlpha="0.5"
android:fillAlpha="0.5"/>
<path
android:pathData="M194.7,118.48a0.21,0.21 0,0 1,-0.18 -0.11L189,107.88l-5.5,10.49a0.21,0.21 0,0 1,-0.28 0.09,0.21 0.21,0 0,1 -0.09,-0.28l5.68,-10.83a0.22,0.22 0,0 1,0.37 0l5.68,10.83a0.21,0.21 0,0 1,-0.09 0.28Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M194.7,118.48a0.21,0.21 0,0 1,-0.18 -0.11L189,107.88l-5.5,10.49a0.21,0.21 0,0 1,-0.28 0.09,0.21 0.21,0 0,1 -0.09,-0.28l5.68,-10.83a0.22,0.22 0,0 1,0.37 0l5.68,10.83a0.21,0.21 0,0 1,-0.09 0.28Z"
android:strokeAlpha="0.7"
android:fillAlpha="0.7"/>
<path
android:pathData="M189,119a0.2,0.2 0,0 1,-0.21 -0.2V107.44a0.2,0.2 0,0 1,0.21 -0.2,0.2 0.2,0 0,1 0.2,0.2v11.34A0.2,0.2 0,0 1,189 119Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M189,119a0.2,0.2 0,0 1,-0.21 -0.2V107.44a0.2,0.2 0,0 1,0.21 -0.2,0.2 0.2,0 0,1 0.2,0.2v11.34A0.2,0.2 0,0 1,189 119Z"
android:strokeAlpha="0.7"
android:fillAlpha="0.7"/>
<path
android:pathData="M182.54,118.27h12.98v1.01h-12.98z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M182.54,118.27h12.98v1.01h-12.98z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M222.8,119.28a6.09,6.09 0,0 1,-11.36 0Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M222.8,119.28a6.09,6.09 0,0 1,-11.36 0Z"
android:strokeAlpha="0.5"
android:fillAlpha="0.5"/>
<path
android:pathData="M222.8,118.48a0.19,0.19 0,0 1,-0.18 -0.11l-5.5,-10.49 -5.5,10.49a0.2,0.2 0,1 1,-0.36 -0.19l5.68,-10.83a0.21,0.21 0,0 1,0.36 0L223,118.18a0.21,0.21 0,0 1,-0.09 0.28Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M222.8,118.48a0.19,0.19 0,0 1,-0.18 -0.11l-5.5,-10.49 -5.5,10.49a0.2,0.2 0,1 1,-0.36 -0.19l5.68,-10.83a0.21,0.21 0,0 1,0.36 0L223,118.18a0.21,0.21 0,0 1,-0.09 0.28Z"
android:strokeAlpha="0.7"
android:fillAlpha="0.7"/>
<path
android:pathData="M217.12,119a0.21,0.21 0,0 1,-0.21 -0.2V107.44a0.21,0.21 0,0 1,0.21 -0.2,0.2 0.2,0 0,1 0.2,0.2v11.34A0.2,0.2 0,0 1,217.12 119Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M217.12,119a0.21,0.21 0,0 1,-0.21 -0.2V107.44a0.21,0.21 0,0 1,0.21 -0.2,0.2 0.2,0 0,1 0.2,0.2v11.34A0.2,0.2 0,0 1,217.12 119Z"
android:strokeAlpha="0.7"
android:fillAlpha="0.7"/>
<path
android:pathData="M210.63,118.27h12.98v1.01h-12.98z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M210.63,118.27h12.98v1.01h-12.98z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M203,104v2.09c-2.12,0 -4.52,1.2 -6.43,2.26a7.51,7.51 0,0 1,-4.08 0.9,11.15 11.15,0 0,1 -4.72,-1.91v-1.17a8.78,8.78 0,0 0,4.63 1.62,7.48 7.48,0 0,0 4.17,-1.54A13.9,13.9 0,0 1,203 104Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M203,104v2.09c-2.12,0 -4.52,1.2 -6.43,2.26a7.51,7.51 0,0 1,-4.08 0.9,11.15 11.15,0 0,1 -4.72,-1.91v-1.17a8.78,8.78 0,0 0,4.63 1.62,7.48 7.48,0 0,0 4.17,-1.54A13.9,13.9 0,0 1,203 104Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M189,106.63a1.2,1.2 0,1 1,-1.2 -1.2A1.19,1.19 0,0 1,189 106.63Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M189,106.63a1.2,1.2 0,1 1,-1.2 -1.2A1.19,1.19 0,0 1,189 106.63Z"
android:strokeAlpha="0.5"
android:fillAlpha="0.5"/>
<path
android:pathData="M203,104v2.09c2.12,0 4.52,1.2 6.44,2.26a7.49,7.49 0,0 0,4.08 0.9,11.25 11.25,0 0,0 4.72,-1.91v-1.17a8.84,8.84 0,0 1,-4.64 1.62,7.45 7.45,0 0,1 -4.16,-1.54A14,14 0,0 0,203 104Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M203,104v2.09c2.12,0 4.52,1.2 6.44,2.26a7.49,7.49 0,0 0,4.08 0.9,11.25 11.25,0 0,0 4.72,-1.91v-1.17a8.84,8.84 0,0 1,-4.64 1.62,7.45 7.45,0 0,1 -4.16,-1.54A14,14 0,0 0,203 104Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M217.12,106.63a1.19,1.19 0,1 0,1.19 -1.2A1.19,1.19 0,0 0,217.12 106.63Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M217.12,106.63a1.19,1.19 0,1 0,1.19 -1.2A1.19,1.19 0,0 0,217.12 106.63Z"
android:strokeAlpha="0.5"
android:fillAlpha="0.5"/>
<path
android:pathData="M201.5,100.36h3.03v31h-3.03z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M201.5,100.36h3.03v31h-3.03z"
android:strokeAlpha="0.7"
android:fillAlpha="0.7"/>
<path
android:pathData="M205.58,105.42a2.57,2.57 0,1 1,-2.57 -2.57A2.56,2.56 0,0 1,205.58 105.42Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M205.58,105.42a2.57,2.57 0,1 1,-2.57 -2.57A2.56,2.56 0,0 1,205.58 105.42Z"
android:strokeAlpha="0.5"
android:fillAlpha="0.5"/>
<path
android:pathData="M205,98.55a2,2 0,1 1,-2 -2A2,2 0,0 1,205 98.55Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M205,98.55a2,2 0,1 1,-2 -2A2,2 0,0 1,205 98.55Z"
android:strokeAlpha="0.5"
android:fillAlpha="0.5"/>
<path
android:pathData="M211.32,136H194.7v-3.63a1,1 0,0 1,1 -1h14.62a1,1 0,0 1,1 1Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M211.32,136H194.7v-3.63a1,1 0,0 1,1 -1h14.62a1,1 0,0 1,1 1Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M216.37,139.43H189.66a1.72,1.72 0,0 1,-1.72 -1.72h0a1.72,1.72 0,0 1,1.72 -1.72h26.71a1.72,1.72 0,0 1,1.72 1.72h0A1.72,1.72 0,0 1,216.37 139.43Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M216.37,139.43H189.66a1.72,1.72 0,0 1,-1.72 -1.72h0a1.72,1.72 0,0 1,1.72 -1.72h26.71a1.72,1.72 0,0 1,1.72 1.72h0A1.72,1.72 0,0 1,216.37 139.43Z"
android:strokeAlpha="0.5"
android:fillAlpha="0.5"/>
<path
android:pathData="M194.7,132.55h16.62v1.13h-16.62z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M194.7,132.55h16.62v1.13h-16.62z"
android:strokeAlpha="0.5"
android:fillAlpha="0.5"/>
<path
android:pathData="M205.29,100.51a0.84,0.84 0,0 1,-0.83 0.84h-2.89a0.85,0.85 0,0 1,-0.84 -0.84h0a0.84,0.84 0,0 1,0.84 -0.83h2.89a0.83,0.83 0,0 1,0.83 0.83Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M205.29,100.51a0.84,0.84 0,0 1,-0.83 0.84h-2.89a0.85,0.85 0,0 1,-0.84 -0.84h0a0.84,0.84 0,0 1,0.84 -0.83h2.89a0.83,0.83 0,0 1,0.83 0.83Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M381.86,88.65L439.77,88.65A5.1,5.1 0,0 1,444.87 93.75L444.87,134.36A5.1,5.1 0,0 1,439.77 139.46L381.86,139.46A5.1,5.1 0,0 1,376.76 134.36L376.76,93.75A5.1,5.1 0,0 1,381.86 88.65z"
android:fillColor="#0298E1"/>
<path
android:pathData="M390.38,132s1.65,17.52 -19.21,25.73c0,0 27.79,-2.26 29.1,-26.13Z"
android:fillColor="#0298E1"
android:fillType="evenOdd"/>
<path
android:pathData="M440.87,93.76L440.87,134.37A1.1,1.1 0,0 1,439.77 135.47L381.86,135.47A1.1,1.1 0,0 1,380.76 134.37L380.76,93.76A1.1,1.1 0,0 1,381.86 92.66L439.77,92.66A1.1,1.1 0,0 1,440.87 93.76z"
android:strokeAlpha="0.39"
android:fillColor="#fff"
android:fillAlpha="0.39"/>
<path
android:pathData="M422.4,97h0a2.49,2.49 0,0 1,2.49 2.5v1.2h-6.81Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M422.4,97h0a2.49,2.49 0,0 1,2.49 2.5v1.2h-6.81Z"
android:strokeAlpha="0.7"
android:fillAlpha="0.7"/>
<path
android:pathData="M423.49,130c4.91,-9.74 -4.92,-24.07 -1.09,-33H401.53a3.82,3.82 0,0 0,-3.8 3.5c-0.81,9.07 6.62,21.55 1.58,30.12h23.07A1.23,1.23 0,0 0,423.49 130Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M423.49,130c4.91,-9.74 -4.92,-24.07 -1.09,-33H401.53a3.82,3.82 0,0 0,-3.8 3.5c-0.81,9.07 6.62,21.55 1.58,30.12h23.07A1.23,1.23 0,0 0,423.49 130Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M399.31,130.63h0a2.19,2.19 0,0 1,-2.19 -2.19v-0.82h23.19v0.82a2.19,2.19 0,0 0,2.19 2.19H399.31Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M399.31,130.63h0a2.19,2.19 0,0 1,-2.19 -2.19v-0.82h23.19v0.82a2.19,2.19 0,0 0,2.19 2.19H399.31Z"
android:strokeAlpha="0.5"
android:fillAlpha="0.5"/>
<path
android:fillColor="#FF000000"
android:pathData="M400.94,101.65h16.43v1.37h-16.43z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M401.71,106.49h16.43v1.37h-16.43z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M402.6,110.15h16.43v1.37h-16.43z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M403.48,113.82h16.43v1.37h-16.43z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M418.08,122.22m-2.53,0a2.53,2.53 0,1 1,5.06 0a2.53,2.53 0,1 1,-5.06 0"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:autoMirrored="true" android:height="28dp"
android:tint="@color/white" android:viewportHeight="24"
android:viewportWidth="24" android:width="28dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M15.41,16.59L10.83,12l4.58,-4.59L14,6l-6,6 6,6 1.41,-1.41z"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:autoMirrored="true" android:height="32dp"
android:tint="@color/splash" android:viewportHeight="24"
android:viewportWidth="24" android:width="32dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM6,9h12v2L6,11L6,9zM14,14L6,14v-2h8v2zM18,8L6,8L6,6h12v2z"/>
</vector>

View File

@ -0,0 +1,8 @@
<!-- bg_chat_left.xml -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#ebebeb" />
<corners android:topRightRadius="20dp"
android:bottomRightRadius="20dp"
android:bottomLeftRadius="20dp" />
</shape>

View File

@ -0,0 +1,8 @@
<!-- bg_chat_right.xml -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#b1dff6" />
<corners android:topLeftRadius="20dp"
android:bottomLeftRadius="20dp"
android:bottomRightRadius="20dp" />
</shape>

View File

@ -0,0 +1,4 @@
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="@color/splash" android:state_checked="true"/>
<item android:alpha="4" android:color="@color/grey"/>
</selector>

View File

@ -0,0 +1,4 @@
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="@color/splash" android:state_checked="true"/>
<item android:alpha="4" android:color="@color/grey"/>
</selector>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<!-- Border settings -->
<stroke android:color="#e6f5fc" android:width="1dp"/>
<!-- Radius for corners -->
<corners android:radius="8dp"/>
<!-- Background color -->
<solid android:color="#e6f5fc"/>
</shape>

View File

@ -0,0 +1,746 @@
<vector android:height="300dp" android:viewportHeight="500"
android:viewportWidth="750" android:width="450dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#e0e0e0" android:pathData="M51.68,67.96h84.65v122.7h-84.65z"/>
<path android:fillColor="#f5f5f5" android:pathData="M47.44,67.96h84.65v122.7h-84.65z"/>
<path android:fillColor="#fff" android:pathData="M57.96,81.25h63.62v96.12h-63.62z"/>
<path android:fillColor="#e0e0e0" android:pathData="M121.58,177.37s0,-0.16 0,-0.47l0,-1.36c0,-1.21 0,-3 0,-5.28 0,-4.6 0,-11.32 -0.06,-19.8 0,-17 -0.06,-40.95 -0.1,-69.21l0.21,0.21L58,81.48h0l0.23,-0.23c0,36.26 0,69.69 0,96.12l-0.18,-0.19 46.31,0.1 12.79,0.05 3.36,0 1.16,0 -1.12,0 -3.33,0 -12.75,0.05L58,177.55h-0.18v-0.18c0,-26.43 0,-59.86 -0.05,-96.12V81H58l63.61,0h0.21v0.21c0,28.32 -0.08,52.37 -0.1,69.35 0,8.46 0,15.16 -0.06,19.75 0,2.28 0,4 0,5.23 0,0.59 0,1 0,1.34S121.58,177.37 121.58,177.37Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M132.33,68a13.76,13.76 0,0 1,-1.51 2.19c-1,1.32 -2.37,3.1 -4,5s-3.08,3.65 -4.18,4.86a15,15 0,0 1,-1.86 1.9,15.35 15.35,0 0,1 1.61,-2.11l4.08,-4.94 4.07,-5A16.53,16.53 0,0 1,132.33 68Z"/>
<path android:fillColor="#fff" android:pathData="M121.9,177.06A78.92,78.92 0,0 0,133 190.94"/>
<path android:fillColor="#e0e0e0" android:pathData="M133,190.94a13.41,13.41 0,0 1,-1.94 -1.76,62.84 62.84,0 0,1 -4.18,-4.73 60.85,60.85 0,0 1,-3.69 -5.12,13.38 13.38,0 0,1 -1.29,-2.27 16.22,16.22 0,0 1,1.56 2.09c0.94,1.31 2.25,3.1 3.78,5s3,3.58 4.06,4.78A17.26,17.26 0,0 1,133 190.94Z"/>
<path android:fillColor="#fff" android:pathData="M47.43,190.56l11.09,-13.68"/>
<path android:fillColor="#e0e0e0" android:pathData="M58.52,176.88a82.74,82.74 0,0 1,-5.36 7,85.38 85.38,0 0,1 -5.73,6.7 82.7,82.7 0,0 1,5.37 -7A85,85 0,0 1,58.52 176.88Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M47.44,68a77,77 0,0 1,5.39 6.43,76.39 76.39,0 0,1 5,6.72 77,77 0,0 1,-5.39 -6.43A76.39,76.39 0,0 1,47.44 68Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M80.46,100.76h21.3v60.48h-21.3z"/>
<path android:fillColor="#e0e0e0" android:pathData="M314.86,49l0,78.04l-112.09,0l-4.04,-77.49l116.13,-0.55z"/>
<path android:fillColor="#fff" android:pathData="M198.73,126.88l0,-77.33l112.08,-0l0,77.33z"/>
<path android:fillColor="#e0e0e0" android:pathData="M311.35,127.41L198.2,127.41L198.2,49L311.35,49ZM199.27,126.34h111L310.27,50.08h-111Z"/>
<path android:fillColor="#fff" android:pathData="M210.87,59.16h87.8v58.11h-87.8z"/>
<path android:fillColor="#e0e0e0" android:pathData="M298.68,59.16h-0.44l-1.24,0 -4.83,0 -18.09,0.07 -63.21,0.12 0.26,-0.25c0,17.75 0,37.42 0,58.1h0l-0.28,-0.28 87.81,0.06 -0.22,0.22c0.05,-17.69 0.09,-32.19 0.11,-42.28 0,-5 0.05,-9 0.06,-11.7 0,-1.33 0,-2.36 0,-3.07s0,-1.06 0,-1.06 0,0.33 0,1 0,1.71 0,3c0,2.69 0,6.61 0,11.64 0,10.13 0.07,24.68 0.12,42.42v0.22h-0.22l-87.81,0.06h-0.27v-0.28h0c0,-20.68 0,-40.35 0,-58.1V58.9h0.25l63.38,0.13 18,0.07 4.77,0h1.22Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M198.73,49.33a9.38,9.38 0,0 1,1.93 1.25c1.15,0.83 2.71,2 4.39,3.35s3.17,2.63 4.22,3.58a9,9 0,0 1,1.6 1.65c-0.1,0.11 -2.8,-2.11 -6.16,-4.8A61.37,61.37 0,0 1,198.73 49.33Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M310.82,49.55a55,55 0,0 1,-5.9 5,55.43 55.43,0 0,1 -6.24,4.59 52.67,52.67 0,0 1,5.9 -5A53,53 0,0 1,310.82 49.55Z"/>
<path android:fillColor="#fff" android:pathData="M310.73,126.89l-12.5,-10.13"/>
<path android:fillColor="#e0e0e0" android:pathData="M298.23,116.76a57.7,57.7 0,0 1,6.42 4.85,59 59,0 0,1 6.08,5.28A58.3,58.3 0,0 1,304.3 122,58.18 58.18,0 0,1 298.23,116.76Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M198.73,126.88a53.22,53.22 0,0 1,5.84 -5,52.55 52.55,0 0,1 6.18,-4.54 53.22,53.22 0,0 1,-5.84 5A51.61,51.61 0,0 1,198.73 126.88Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M228.7,96.72l0,-19.46l55.25,-0l0,19.46z"/>
<path android:fillColor="#ebebeb" android:pathData="M708.73,187.16A15.51,15.51 0,0 0,718 172.81c0,-8.58 -6.45,-15.55 -14.48,-15.59s-14.58,6.88 -14.62,15.45a15.51,15.51 0,0 0,9.28 14.49c-22.4,3.37 -21.38,27.71 -21.38,27.71l53,0.24S730.93,190.51 708.73,187.16Z"/>
<path android:fillColor="#ebebeb" android:pathData="M348.35,131.1a8.79,8.79 0,0 0,1.22 -9.59,8.26 8.26,0 1,0 -14.91,7 8.78,8.78 0,0 0,8.27 5.15c-10.62,7.18 -4.17,19.38 -4.17,19.38l27.13,-12.78S360.51,127.4 348.35,131.1Z"/>
<path android:fillColor="#f5f5f5" android:pathData="M57.18,246.9a8.8,8.8 0,0 0,5.12 -8.2A8.53,8.53 0,0 0,54 230a8.53,8.53 0,0 0,-8.15 8.87A8.78,8.78 0,0 0,51.19 247c-12.65,2.09 -11.88,15.86 -11.88,15.86l30,-0.29S69.78,248.62 57.18,246.9Z"/>
<path android:fillColor="#f5f5f5" android:pathData="M663.83,112.05a7,7 0,0 0,4.08 -6.54,6.58 6.58,0 1,0 -13.13,0.13 7,7 0,0 0,4.28 6.47c-10.08,1.67 -9.46,12.65 -9.46,12.65l23.89,-0.24S673.87,113.41 663.83,112.05Z"/>
<path android:fillColor="#f5f5f5" android:pathData="M372.84,74.44a2.93,2.93 0,0 0,1.71 -2.73,2.76 2.76,0 1,0 -5.5,0.05 2.94,2.94 0,0 0,1.79 2.71c-4.21,0.7 -3.95,5.29 -3.95,5.29l10,-0.1S377,75 372.84,74.44Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M537.28,36.36l9.67,-0.05l0.26,48.12l-9.67,0.05z"/>
<path android:fillColor="#ebebeb" android:pathData="M453.5,36.57l25.05,-0.14l0.14,26.57l-25.05,0.14z"/>
<path android:fillColor="#f5f5f5" android:pathData="M478.43,36.43l25.05,-0.14l0.14,26.57l-25.05,0.14z"/>
<path android:fillColor="#e0e0e0" android:pathData="M453.54,43.93c16.64,0.14 33.33,0 50,-0.23a0.27,0.27 0,0 0,0 -0.53q-25,-0.15 -50,0.3a0.23,0.23 0,0 0,0 0.46Z"/>
<path android:fillColor="#ebebeb" android:pathData="M437.88,62.8l45.5,-0.25l0.12,21.65l-45.5,0.25z"/>
<path android:fillColor="#f5f5f5" android:pathData="M483.17,62.55l45.5,-0.25l0.12,21.65l-45.5,0.25z"/>
<path android:fillColor="#e0e0e0" android:pathData="M437.92,68.85c30.23,0.34 60.56,0 90.79,-0.45a0.27,0.27 0,0 0,0 -0.53c-30.23,-0.16 -60.56,-0.15 -90.79,0.52a0.23,0.23 0,0 0,0 0.46Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M420.9,84.48h176.29v7.76h-176.29z"/>
<path android:fillColor="#e0e0e0" android:pathData="M449.76,88.21h7.16v26.47h-7.16z"/>
<path android:fillColor="#e0e0e0" android:pathData="M556.6,88.21h7.16v26.47h-7.16z"/>
<path android:fillColor="#ebebeb" android:pathData="M546.72,18.41l9.67,-0.05l0.36,66.19l-9.67,0.05z"/>
<path android:fillColor="#f5f5f5" android:pathData="M556.48,30.77l15.03,-0.08l0.29,53.64l-15.03,0.08z"/>
<path android:fillColor="#e0e0e0" android:pathData="M571.41,41a55.33,55.33 0,0 1,-7.52 0.26,55.12 55.12,0 0,1 -7.51,-0.26 108.74,108.74 0,0 1,15 0Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M571.41,38.79a55.33,55.33 0,0 1,-7.52 0.26,55.12 55.12,0 0,1 -7.51,-0.26 108.74,108.74 0,0 1,15 0Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M571.41,76.27a108.74,108.74 0,0 1,-15 0,108.74 108.74,0 0,1 15,0Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M571.41,74a55.33,55.33 0,0 1,-7.52 0.26,55.12 55.12,0 0,1 -7.51,-0.26 108.74,108.74 0,0 1,15 0Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M564.13,69.1c-0.14,0 -0.26,-5.41 -0.26,-12.08s0.12,-12.09 0.26,-12.09 0.26,5.41 0.26,12.09S564.28,69.1 564.13,69.1Z"/>
<path android:fillColor="#ebebeb" android:pathData="M571.57,43.88h16.36v40.49h-16.36z"/>
<path android:fillColor="#e0e0e0" android:pathData="M551.42,29.69m-2.78,0a2.78,2.78 0,1 1,5.56 0a2.78,2.78 0,1 1,-5.56 0"/>
<path android:fillColor="#e0e0e0" android:pathData="M550.56,37.33h1.72v39.37h-1.72z"/>
<path android:fillColor="#f5f5f5" android:pathData="M678.86,463.86c-20.29,-6.36 -30.87,-26.72 -36.33,-46.31 -0.92,-3.26 -2.35,-6.56 -1.71,-9.89s3.62,-6.39 6.95,-5.94c2.76,0.37 4.69,2.83 6.76,4.72a19.79,19.79 0,0 0,9.88 4.84c2.39,0.42 5.15,0.27 6.83,-1.49 2.3,-2.42 1.41,-6.38 0.37,-9.59l-5.79,-17.95c-1,-3.21 -2.08,-6.49 -2.05,-9.86s1.35,-6.91 4.14,-8.73 7.13,-1.26 8.77,1.69a30,30 0,0 1,1.36 4c0.51,1.31 1.6,2.59 3,2.56s2.4,-1.34 3.06,-2.59c2.3,-4.3 3.23,-9.19 4,-14s1.49,-9.73 3.38,-14.22 5.17,-8.62 9.7,-10.34 10.33,-0.42 12.92,3.73 1.41,9.61 -0.31,14.19a75.16,75.16 0,0 1,-10.45 19,6.24 6.24,0 0,0 -1.65,3.48c0,2.36 2.69,3.85 5,3.89 2.65,0 5.17,-1 7.77,-1.53s5.67,-0.25 7.37,1.82c2.35,2.87 0.69,7.19 -1.3,10.3a64.6,64.6 0,0 1,-14.88 16.26c-2.1,1.62 -4.35,3.16 -5.73,5.43s-1.62,5.52 0.25,7.42 5.06,1.69 7.39,0.45 4.13,-3.29 6.21,-4.93c3.89,-3.06 9.7,-4.56 13.73,-1.64 2.66,1.93 3.93,5.37 3.93,8.66a24.58,24.58 0,0 1,-2.36 9.49,64.88 64.88,0 0,1 -20.55,26.91c-9.13,6.8 -18.33,10.76 -29.7,10.25"/>
<path android:fillColor="#e0e0e0" android:pathData="M682.3,464c-1.72,-7.9 -2.06,-3.22 -2.27,-13.89a302.55,302.55 0,0 1,1.63 -34.65q0.47,-4.59 0.9,-9.06c0.3,-3 0.6,-5.92 1.07,-8.79a150,150 0,0 1,3.64 -16.31c1.41,-5.13 2.94,-9.95 4.39,-14.45s2.92,-8.65 4.4,-12.39a119.29,119.29 0,0 1,8.3 -17.1c1.13,-1.94 2.06,-3.41 2.7,-4.4 0.32,-0.47 0.56,-0.84 0.74,-1.12a2.2,2.2 0,0 1,0.27 -0.37,2.44 2.44,0 0,1 -0.21,0.4l-0.69,1.16c-0.61,1 -1.5,2.5 -2.6,4.45a126.14,126.14 0,0 0,-8.1 17.14c-1.45,3.74 -2.87,7.9 -4.32,12.4s-2.94,9.31 -4.33,14.44a153,153 0,0 0,-3.59 16.25c-0.46,2.85 -0.76,5.78 -1.06,8.76s-0.59,6 -0.89,9.05a309.15,309.15 0,0 0,-1.68 34.58c0.18,10.64 0.47,5.93 2.13,13.81"/>
<path android:fillColor="#e0e0e0" android:pathData="M683.79,397.57a7.5,7.5 0,0 1,-0.75 -1.28c-0.45,-0.83 -1.06,-2.06 -1.79,-3.59 -1.47,-3.06 -3.35,-7.36 -5.4,-12.1s-4,-9 -5.51,-12c-0.75,-1.51 -1.37,-2.73 -1.81,-3.57a6.84,6.84 0,0 1,-0.62 -1.34,6.48 6.48,0 0,1 0.83,1.22c0.51,0.8 1.19,2 2,3.49 1.61,3 3.62,7.23 5.68,12l5.24,12.16 1.61,3.68A6.45,6.45 0,0 1,683.79 397.57Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M722.71,376.77a10.67,10.67 0,0 1,-1.59 0.72c-1,0.43 -2.53,1 -4.35,1.86 -3.66,1.6 -8.64,4 -14,6.88s-10.12,5.72 -13.5,7.86c-1.7,1.06 -3,2 -4,2.57a9.76,9.76 0,0 1,-1.49 0.91,8.75 8.75,0 0,1 1.35,-1.11c0.9,-0.68 2.21,-1.63 3.88,-2.74 3.33,-2.25 8.06,-5.14 13.44,-8a151.09,151.09 0,0 1,14.14 -6.74c1.85,-0.77 3.37,-1.32 4.43,-1.68A8.76,8.76 0,0 1,722.71 376.77Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M680.3,449.21s-0.17,-0.12 -0.45,-0.41l-1.18,-1.27c-1,-1.11 -2.45,-2.76 -4.2,-4.81 -3.49,-4.11 -8.13,-9.93 -13.17,-16.43s-9.63,-12.36 -13,-16.54l-4,-4.93 -1.1,-1.35a2.53,2.53 0,0 1,-0.35 -0.5,2.33 2.33,0 0,1 0.45,0.42l1.18,1.27c1,1.11 2.45,2.75 4.19,4.81 3.5,4.11 8.14,9.93 13.18,16.43s9.63,12.36 13,16.54l4,4.93 1.1,1.35A3.19,3.19 0,0 1,680.3 449.21Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M729.66,414.14a2.9,2.9 0,0 1,-0.48 0.4l-1.42,1 -5.29,3.77c-4.46,3.18 -10.57,7.65 -17.31,12.59s-12.9,9.36 -17.43,12.45c-2.26,1.54 -4.11,2.78 -5.4,3.6l-1.49,0.94a2.26,2.26 0,0 1,-0.54 0.29,2.33 2.33,0 0,1 0.47,-0.39c0.38,-0.28 0.85,-0.63 1.43,-1l5.28,-3.77c4.46,-3.18 10.57,-7.64 17.31,-12.59s12.9,-9.35 17.43,-12.44c2.26,-1.55 4.11,-2.78 5.4,-3.61l1.49,-0.94A2,2 0,0 1,729.66 414.14Z"/>
<path android:fillColor="#263238" android:pathData="M67.78,439.07a2.23,2.23 0,0 0,-0.18 -0.43L67,437.42a29.93,29.93 0,0 1,-1.68 -4.89c-1.12,-4.35 -1.51,-11 0.14,-18.89A103.54,103.54 0,0 1,69 401c1.49,-4.5 3.21,-9.28 4.62,-14.45a55.64,55.64 0,0 0,2.27 -16.61c-0.21,-5.87 -1.95,-11.74 -3.86,-17.57S68.14,340.76 67.54,335a26.35,26.35 0,0 1,3.18 -16c2.53,-4.66 5.71,-8.65 8.1,-12.79a44.66,44.66 0,0 0,4.87 -12.29,45.87 45.87,0 0,0 0.31,-19 35.29,35.29 0,0 0,-2 -6.73,2.51 2.51,0 0,0 0.12,0.45l0.4,1.29a48.82,48.82 0,0 1,1.23 5,46.14 46.14,0 0,1 -0.49,18.9A44,44 0,0 1,78.38 306c-2.37,4.08 -5.57,8.06 -8.16,12.78A27,27 0,0 0,67 335.07c0.6,5.84 2.59,11.6 4.49,17.43s3.63,11.64 3.85,17.42a55.51,55.51 0,0 1,-2.22 16.44c-1.39,5.14 -3.09,9.92 -4.55,14.43a99.51,99.51 0,0 0,-3.45 12.77c-1.6,7.95 -1.15,14.66 0.05,19a27.71,27.71 0,0 0,1.8 4.88c0.27,0.51 0.47,0.91 0.63,1.2A2.48,2.48 0,0 0,67.78 439.07Z"/>
<path android:fillColor="#0298E1" android:pathData="M75.58,310.31s4.84,-15.48 -3.84,-24.54a0.54,0.54 0,0 0,-0.92 0.26C70.35,288.59 69.77,296.38 75.58,310.31Z"/>
<path android:fillColor="#263238" android:pathData="M72.68,290.92a14.65,14.65 0,0 0,0.33 2.86c0.31,2 0.69,4.28 1.1,6.83s0.77,4.86 1.08,6.83a15.46,15.46 0,0 0,0.52 2.82,11.86 11.86,0 0,0 -0.09,-2.88c-0.16,-1.77 -0.47,-4.2 -0.91,-6.87s-0.9,-5.08 -1.28,-6.81A13.4,13.4 0,0 0,72.68 290.92Z"/>
<path android:fillColor="#0298E1" android:pathData="M69.89,346.82s-3,-15.95 -14.87,-19.9a0.54,0.54 0,0 0,-0.69 0.67C55.12,330.06 58.25,337.22 69.89,346.82Z"/>
<path android:fillColor="#263238" android:pathData="M58.26,331a14.89,14.89 0,0 0,1.63 2.37l4.17,5.52 4.15,5.53A16.9,16.9 0,0 0,70 346.72a11.47,11.47 0,0 0,-1.42 -2.51c-1,-1.48 -2.38,-3.49 -4,-5.64s-3.17,-4.07 -4.32,-5.42A12.48,12.48 0,0 0,58.26 331Z"/>
<path android:fillColor="#0298E1" android:pathData="M73.11,386.82s1.8,-16.11 -8.45,-23.35a0.53,0.53 0,0 0,-0.85 0.43C63.84,366.5 64.76,374.25 73.11,386.82Z"/>
<path android:fillColor="#263238" android:pathData="M66.57,368.35a13.76,13.76 0,0 0,0.86 2.74l2.39,6.49c0.88,2.43 1.68,4.63 2.37,6.5a14.68,14.68 0,0 0,1 2.67,12.12 12.12,0 0,0 -0.64,-2.81c-0.49,-1.7 -1.26,-4 -2.2,-6.57s-1.86,-4.81 -2.56,-6.44A12.68,12.68 0,0 0,66.57 368.35Z"/>
<path android:fillColor="#0298E1" android:pathData="M64.14,427.06s1.22,-16.17 -9.29,-23a0.53,0.53 0,0 0,-0.83 0.47C54.14,407.08 55.34,414.8 64.14,427.06Z"/>
<path android:fillColor="#263238" android:pathData="M56.94,408.83a13.38,13.38 0,0 0,1 2.71c0.75,1.85 1.64,4 2.62,6.4l2.59,6.41A17.39,17.39 0,0 0,64.25 427a11.61,11.61 0,0 0,-0.73 -2.79c-0.56,-1.68 -1.41,-4 -2.44,-6.49s-2,-4.74 -2.79,-6.34A14,14 0,0 0,56.94 408.83Z"/>
<path android:fillColor="#0298E1" android:pathData="M82.54,296.71s14.37,-7.51 14.66,-20.06a0.54,0.54 0,0 0,-0.84 -0.46C94.22,277.67 88.3,282.76 82.54,296.71Z"/>
<path android:fillColor="#263238" android:pathData="M94.21,281a14.71,14.71 0,0 0,-1.79 2.25l-4,5.61 -4.07,5.59a16.06,16.06 0,0 0,-1.64 2.35,11.34 11.34,0 0,0 2,-2.09c1.14,-1.36 2.64,-3.3 4.22,-5.5s3,-4.22 3.91,-5.72A12.79,12.79 0,0 0,94.21 281Z"/>
<path android:fillColor="#0298E1" android:pathData="M67.1,330S81.91,323.33 83,310.82a0.54,0.54 0,0 0,-0.81 -0.51C79.92,311.66 73.7,316.38 67.1,330Z"/>
<path android:fillColor="#263238" android:pathData="M79.71,315a13.54,13.54 0,0 0,-1.93 2.13l-4.38,5.35L69,327.76A15.13,15.13 0,0 0,67.22 330a11.93,11.93 0,0 0,2.1 -2c1.22,-1.29 2.84,-3.14 4.55,-5.24s3.2,-4 4.25,-5.46A13.83,13.83 0,0 0,79.71 315Z"/>
<path android:fillColor="#0298E1" android:pathData="M75.62,367S85.78,354.4 81,342.79a0.54,0.54 0,0 0,-1 -0.09C78.7,344.91 75.31,351.94 75.62,367Z"/>
<path android:fillColor="#263238" android:pathData="M80,347.93a14.75,14.75 0,0 0,-0.74 2.78c-0.43,2 -0.92,4.23 -1.47,6.76s-1.06,4.8 -1.49,6.75a16.59,16.59 0,0 0,-0.56 2.82,11.57 11.57,0 0,0 1,-2.71c0.49,-1.71 1.09,-4.09 1.66,-6.73s1,-5.06 1.3,-6.81A13.23,13.23 0,0 0,80 347.93Z"/>
<path android:fillColor="#0298E1" android:pathData="M65.55,410.67s14.69,-6.86 15.53,-19.39a0.54,0.54 0,0 0,-0.82 -0.5C78.06,392.16 71.92,397 65.55,410.67Z"/>
<path android:fillColor="#263238" android:pathData="M77.9,395.46A14.67,14.67 0,0 0,76 397.62L71.72,403l-4.31,5.41a16.76,16.76 0,0 0,-1.74 2.28,11.31 11.31,0 0,0 2.07,-2c1.19,-1.31 2.78,-3.18 4.46,-5.31s3.13,-4.09 4.16,-5.54A12.89,12.89 0,0 0,77.9 395.46Z"/>
<path android:fillColor="#263238" android:pathData="M36.28,346.91a1.35,1.35 0,0 0,0 0.35c0,0.29 0,0.63 0,1 0,1 0.1,2.29 0.17,3.93 0.19,3.46 0.46,8.28 0.77,14h0v0c1,5.87 4,12.37 8,18.69 3,4.65 6,8.88 8.7,12.82a89.48,89.48 0,0 1,6.51 10.77,45.66 45.66,0 0,1 3,7.91c0.26,1 0.46,1.72 0.57,2.24a4,4 0,0 0,0.21 0.78,4 4,0 0,0 -0.09,-0.8c-0.07,-0.53 -0.23,-1.3 -0.46,-2.28a41.44,41.44 0,0 0,-2.89 -8,85.47 85.47,0 0,0 -6.44,-10.91c-2.65,-4 -5.72,-8.19 -8.65,-12.82 -4,-6.29 -7,-12.69 -8,-18.47v0c-0.4,-5.76 -0.74,-10.57 -1,-14 -0.14,-1.63 -0.24,-2.95 -0.32,-3.92 0,-0.41 -0.08,-0.75 -0.1,-1S36.3,346.91 36.28,346.91Z"/>
<path android:fillColor="#0298E1" android:pathData="M45,383.79s-6.22,-15 1.61,-24.79a0.54,0.54 0,0 1,0.94 0.18C48.27,361.69 49.55,369.39 45,383.79Z"/>
<path android:fillColor="#263238" android:pathData="M46.17,364.22a12.44,12.44 0,0 0,-0.5 2.84c-0.22,1.76 -0.46,4.2 -0.66,6.9s-0.28,5.15 -0.28,6.92a11.88,11.88 0,0 0,0.17 2.88,15.77 15.77,0 0,0 0.26,-2.86c0.13,-2 0.29,-4.32 0.46,-6.9s0.34,-4.91 0.48,-6.9A14.87,14.87 0,0 0,46.17 364.22Z"/>
<path android:fillAlpha="0.3" android:fillColor="#FF000000"
android:pathData="M45,383.79s-6.22,-15 1.61,-24.79a0.54,0.54 0,0 1,0.94 0.18C48.27,361.69 49.55,369.39 45,383.79Z" android:strokeAlpha="0.3"/>
<path android:fillColor="#0298E1" android:pathData="M64.31,419.89s-5,-15.44 3.6,-24.58a0.54,0.54 0,0 1,0.93 0.26C69.33,398.12 70,405.9 64.31,419.89Z"/>
<path android:fillColor="#263238" android:pathData="M67,400.48a12.73,12.73 0,0 0,-0.72 2.78c-0.36,1.74 -0.81,4.14 -1.22,6.82s-0.7,5.11 -0.84,6.88a12,12 0,0 0,-0.06 2.88,14.83 14.83,0 0,0 0.48,-2.83c0.3,-2 0.64,-4.28 1,-6.84s0.74,-4.87 1,-6.84A13.85,13.85 0,0 0,67 400.48Z"/>
<path android:fillAlpha="0.3" android:fillColor="#FF000000"
android:pathData="M64.31,419.89s-5,-15.44 3.6,-24.58a0.54,0.54 0,0 1,0.93 0.26C69.33,398.12 70,405.9 64.31,419.89Z" android:strokeAlpha="0.3"/>
<path android:fillColor="#0298E1" android:pathData="M37.11,365.49s-13.29,-9.3 -11.95,-21.78a0.53,0.53 0,0 1,0.89 -0.35C28,345.1 33.19,350.91 37.11,365.49Z"/>
<path android:fillAlpha="0.3" android:fillColor="#FF000000"
android:pathData="M37.11,365.49s-13.29,-9.3 -11.95,-21.78a0.53,0.53 0,0 1,0.89 -0.35C28,345.1 33.19,350.91 37.11,365.49Z" android:strokeAlpha="0.3"/>
<path android:fillColor="#263238" android:pathData="M27.57,348.37a12.44,12.44 0,0 0,1.1 2.65c0.76,1.61 1.86,3.8 3.14,6.18s2.53,4.5 3.48,6A12.31,12.31 0,0 0,37 365.53,15.46 15.46,0 0,0 35.66,363c-1,-1.75 -2.08,-3.8 -3.31,-6.07s-2.35,-4.33 -3.3,-6.08A14.34,14.34 0,0 0,27.57 348.37Z"/>
<path android:fillColor="#0298E1" android:pathData="M59,404.59s-16,-2.5 -20.32,-14.3a0.53,0.53 0,0 1,0.64 -0.7C41.77,390.3 49,393.22 59,404.59Z"/>
<path android:fillAlpha="0.3" android:fillColor="#FF000000"
android:pathData="M59,404.59s-16,-2.5 -20.32,-14.3a0.53,0.53 0,0 1,0.64 -0.7C41.77,390.3 49,393.22 59,404.59Z" android:strokeAlpha="0.3"/>
<path android:fillColor="#263238" android:pathData="M42.84,393.42a13.37,13.37 0,0 0,2.16 1.9c1.39,1.1 3.34,2.58 5.54,4.15s4.25,2.93 5.76,3.86a12,12 0,0 0,2.55 1.35A15.71,15.71 0,0 0,56.54 403l-5.65,-4 -5.63,-4A14.11,14.11 0,0 0,42.84 393.42Z"/>
<path android:fillColor="#455a64" android:pathData="M77.91,434.08l-4.6,30.15l-18.35,-0.03l-6.19,-30.12l29.14,0z"/>
<path android:fillColor="#263238" android:pathData="M61.15,443.76a5.13,5.13 0,0 0,0.86 -2.52,2.78 2.78,0 0,0 -1.25,-2.6 3,3 0,0 0,-3.08 0.26,4.46 4.46,0 0,0 -1.75,2.77 12.61,12.61 0,0 0,0.51 6.88,7.72 7.72,0 0,0 2.13,3 5.93,5.93 0,0 0,3.53 1.47A6.52,6.52 0,0 0,65.78 452a11.23,11.23 0,0 0,2.74 -2.48,6 6,0 0,0 1.39,-3.31A3.85,3.85 0,0 0,68.6 443a3,3 0,0 0,-3.25 -0.19,3.5 3.5,0 0,0 -1.88,2.45 4.73,4.73 0,0 0,2.33 4.78,6.53 6.53,0 0,0 4.43,0.64 10.41,10.41 0,0 0,3.16 -1.24,15.37 15.37,0 0,0 1.76,-1.2 3.91,3.91 0,0 0,0.57 -0.48,6.42 6.42,0 0,0 -0.63,0.4 20.65,20.65 0,0 1,-1.8 1.11,10.29 10.29,0 0,1 -3.11,1.13 6.21,6.21 0,0 1,-4.2 -0.67,4.36 4.36,0 0,1 -2.1,-4.39 3.05,3.05 0,0 1,1.67 -2.14,2.54 2.54,0 0,1 2.77,0.17 3.38,3.38 0,0 1,1.11 2.8,5.57 5.57,0 0,1 -1.3,3 10.54,10.54 0,0 1,-2.62 2.35,5.89 5.89,0 0,1 -3.38,1 5.42,5.42 0,0 1,-3.23 -1.35,7.12 7.12,0 0,1 -2,-2.84 10.74,10.74 0,0 1,-0.72 -3.33,11.32 11.32,0 0,1 0.2,-3.26 4,4 0,0 1,1.55 -2.51,2.51 2.51,0 0,1 2.62,-0.26 2.33,2.33 0,0 1,1.07 2.21,4.74 4.74,0 0,1 -0.76,2.34 6.91,6.91 0,0 1,-3.42 2.57,7.57 7.57,0 0,1 -3.27,0.39 8.51,8.51 0,0 1,-2.71 -0.81,0.5 0.5,0 0,0 0.15,0.11c0.11,0.06 0.27,0.17 0.49,0.28a6.92,6.92 0,0 0,2 0.61,7.52 7.52,0 0,0 3.38,-0.32 7,7 0,0 0,3.62 -2.63"/>
<path android:fillColor="#0298E1" android:pathData="M684.79,437.16c-1.33,1.89 -3.9,1.27 -5.1,0.11a9.64,9.64 0,0 1,-2.15 -4.42c-1,-3.65 -2.11,-7.48 -1.33,-11.19a6.17,6.17 0,0 1,1.43 -3,3.25 3.25,0 0,1 3.07,-1c1.3,0.34 2.11,1.61 2.69,2.82A26.7,26.7 0,0 1,686 431.86a9.29,9.29 0,0 1,-1.25 5.3"/>
<path android:fillAlpha="0.2" android:fillColor="#FF000000"
android:pathData="M684.79,437.16c-1.33,1.89 -3.9,1.27 -5.1,0.11a9.64,9.64 0,0 1,-2.15 -4.42c-1,-3.65 -2.11,-7.48 -1.33,-11.19a6.17,6.17 0,0 1,1.43 -3,3.25 3.25,0 0,1 3.07,-1c1.3,0.34 2.11,1.61 2.69,2.82A26.7,26.7 0,0 1,686 431.86a9.29,9.29 0,0 1,-1.25 5.3" android:strokeAlpha="0.2"/>
<path android:fillColor="#0298E1" android:pathData="M679.82,446.74a11.43,11.43 0,0 0,-7.12 -0.86,5.91 5.91,0 0,0 -3.52,1.57 2.53,2.53 0,0 0,0 3.51,3.34 3.34,0 0,0 2.22,0.56c1.88,0 4,-0.35 5.47,0.78 0.86,0.65 1.43,1.72 2.46,2a2.43,2.43 0,0 0,2.67 -1.19,4.15 4.15,0 0,0 0.3,-3.06A4.67,4.67 0,0 0,679.82 446.74Z"/>
<path android:fillColor="#0298E1" android:pathData="M688.42,439.88a6.92,6.92 0,0 1,-1.07 -6.34,12.15 12.15,0 0,1 3.76,-5.44 20.28,20.28 0,0 1,6.71 -4,7.2 7.2,0 0,1 3,-0.51 3.18,3.18 0,0 1,2.53 1.53c0.71,1.35 0,3 -0.7,4.32a50.56,50.56 0,0 1,-4.42 6.72,11.86 11.86,0 0,1 -4.85,4.16c-2,0.77 -4.11,0.68 -5.18,-0.72"/>
<path android:fillColor="#263238" android:pathData="M684.88,465.7a3.49,3.49 0,0 1,-0.12 -0.86c-0.06,-0.63 -0.14,-1.41 -0.23,-2.35a32.87,32.87 0,0 0,-0.53 -3.44,26.24 26.24,0 0,0 -1.25,-4.06 15,15 0,0 0,-2.07 -3.67,7.73 7.73,0 0,0 -2.63,-2.18 7.15,7.15 0,0 0,-2.2 -0.69,3.74 3.74,0 0,1 -0.86,-0.13 5.33,5.33 0,0 1,0.87 0,6.72 6.72,0 0,1 2.3,0.6 7.75,7.75 0,0 1,2.77 2.2,14.61 14.61,0 0,1 2.15,3.75 24.53,24.53 0,0 1,1.24 4.13,29.68 29.68,0 0,1 0.46,3.48c0.07,1 0.1,1.8 0.11,2.36A4.18,4.18 0,0 1,684.88 465.7Z"/>
<path android:fillColor="#263238" android:pathData="M684.71,463.89a2.87,2.87 0,0 1,0 -0.39v-1.15c0,-1 0,-2.42 -0.05,-4.19 -0.08,-3.53 -0.39,-8.42 -1,-13.79s-1.37,-10.2 -2.09,-13.66c-0.17,-0.87 -0.34,-1.65 -0.5,-2.34s-0.28,-1.27 -0.41,-1.75l-0.27,-1.11a2.67,2.67 0,0 1,-0.07 -0.4,2 2,0 0,1 0.14,0.38c0.09,0.29 0.2,0.65 0.33,1.09s0.3,1.06 0.47,1.75 0.37,1.46 0.55,2.33A128.17,128.17 0,0 1,684 444.33c0.59,5.38 0.85,10.28 0.87,13.83 0,1.77 0,3.21 -0.06,4.2 0,0.46 -0.05,0.84 -0.07,1.14S684.73,463.89 684.71,463.89Z"/>
<path android:fillColor="#263238" android:pathData="M684.69,454.45a8.35,8.35 0,0 1,0 -1.19c0,-0.77 0.15,-1.88 0.36,-3.23a43.28,43.28 0,0 1,1.05 -4.71,42.46 42.46,0 0,1 2,-5.56 29.63,29.63 0,0 1,5.78 -9,13.81 13.81,0 0,1 1.36,-1.26c0.2,-0.18 0.39,-0.35 0.58,-0.49l0.52,-0.36a7.22,7.22 0,0 1,1 -0.65,35.38 35.38,0 0,0 -3.29,2.94 31.19,31.19 0,0 0,-5.63 9,44.09 44.09,0 0,0 -2,5.51 47.17,47.17 0,0 0,-1.12 4.66c-0.24,1.34 -0.39,2.44 -0.47,3.2A6.49,6.49 0,0 1,684.69 454.45Z"/>
<path android:fillColor="#ffbe9d" android:pathData="M103,197.74l-5.87,14.85 -3.5,-33.89A11.86,11.86 0,0 1,95 172.46a12.36,12.36 0,0 1,1.56 -2.4,13.2 13.2,0 0,1 2.65,-2.38c1,-0.52 0.82,-1.93 -0.15,-2.06s-3.65,1.25 -5.8,4S91,167 90.91,165s-0.6,-8.18 -1.23,-8.62c-0.93,-0.66 -1.82,0.23 -1.7,2.23s0.06,8 -1,8 -1.28,-10.18 -1.28,-10.18 0.3,-2.2 -0.92,-2.22c-2.2,0 -1.15,10.76 -1,11.78 0.09,0.71 -1.06,0.77 -1.12,0s0,-10.18 -2.24,-10.24c-1.72,-0.05 0.78,8.89 -0.3,10.86s-1.21,-7 -2.85,-7c-0.62,0 -1.07,0.1 -0.27,5.21 0.44,2.75 2.16,6.74 2.6,12.1l0.12,1.39c0,6.66 0.22,31.8 6,47.21a12.38,12.38 0,0 0,21.73 2.66,115.53 115.53,0 0,0 12.32,-22.81Z"/>
<path android:fillColor="#eb996e" android:pathData="M82.92,174.25c0,0.05 0.34,0.05 0.87,0.25a3.17,3.17 0,0 1,1.66 1.43l0.2,0.38 0.13,-0.41a5.08,5.08 0,0 1,0.84 -1.61,6 6,0 0,1 2.86,-2c0.87,-0.29 1.46,-0.26 1.46,-0.33a2.69,2.69 0,0 0,-1.54 0.07,5.56 5.56,0 0,0 -3.08,2 5.23,5.23 0,0 0,-0.89 1.74l0.33,0a3.14,3.14 0,0 0,-1.91 -1.47A1.48,1.48 0,0 0,82.92 174.25Z"/>
<path android:fillColor="#263238" android:pathData="M96,233.9s0,-0.19 -0.14,-0.51a2.86,2.86 0,0 0,-1 -1.14c-0.52,-0.4 -1.25,-0.77 -2,-1.39A4.65,4.65 0,0 1,91.42 228a8.51,8.51 0,0 1,0.43 -3.87c0.42,-1.35 1.07,-2.7 1.52,-4.19a9.59,9.59 0,0 0,0.44 -2.34,5.39 5.39,0 0,0 -0.36,-2.41 11.39,11.39 0,0 0,-3.34 -4,16.49 16.49,0 0,1 -1.91,-1.92A6.42,6.42 0,0 1,87 207a9.64,9.64 0,0 1,0.32 -4.94c0.41,-1.52 0.9,-2.93 1.17,-4.29a12,12 0,0 0,0.14 -3.84,12.35 12.35,0 0,0 -2.79,-6.44l-0.25,-0.31c-0.06,-0.07 -0.09,-0.11 -0.08,-0.11a9.29,9.29 0,0 1,1.32 1.59,12.41 12.41,0 0,1 2,5.25 11.75,11.75 0,0 1,-0.11 3.9c-0.27,1.39 -0.75,2.81 -1.15,4.32a9.37,9.37 0,0 0,-0.3 4.8,6 6,0 0,0 1.17,2.25A15.87,15.87 0,0 0,90.29 211c0.67,0.6 1.35,1.2 2,1.85a7.3,7.3 0,0 1,1.45 2.21,5.78 5.78,0 0,1 0.37,2.52 10.41,10.41 0,0 1,-0.46 2.4c-0.47,1.51 -1.12,2.86 -1.54,4.19a8.31,8.31 0,0 0,-0.46 3.78A4.51,4.51 0,0 0,93 230.74c0.7,0.62 1.43,1 2,1.43a2.76,2.76 0,0 1,1 1.2,1.57 1.57,0 0,1 0.08,0.39C96,233.85 96,233.9 96,233.9Z"/>
<path android:fillColor="#263238" android:pathData="M88.33,191.53a8,8 0,0 0,2 -1.07,6.41 6.41,0 0,0 1.6,-1.81 6,6 0,0 0,0.84 -2.81l0.18,0.13h0l0,0 -0.1,0 -0.18,0.06c-0.12,0 -0.24,0.11 -0.36,0.16a5.25,5.25 0,0 0,-0.66 0.36,6.27 6.27,0 0,0 -1.12,0.89 6.83,6.83 0,0 0,-1.4 2,9.28 9.28,0 0,0 -0.64,2.16 1.68,1.68 0,0 1,0 -0.61,5.72 5.72,0 0,1 0.44,-1.63 6.73,6.73 0,0 1,1.4 -2.08,7.31 7.31,0 0,1 1.16,-0.94 6.47,6.47 0,0 1,0.69 -0.38c0.12,0 0.24,-0.12 0.37,-0.16l0.19,-0.07 0.1,0h0.09l0.18,0.13a6.06,6.06 0,0 1,-0.9 2.94,6.22 6.22,0 0,1 -1.7,1.84 5.58,5.58 0,0 1,-1.49 0.77A2.34,2.34 0,0 1,88.33 191.53Z"/>
<path android:fillColor="#263238" android:pathData="M91.88,187.1A24.93,24.93 0,0 1,90 189.41a26.23,26.23 0,0 1,-1.91 2.29,11.46 11.46,0 0,1 1.71,-2.46A11.62,11.62 0,0 1,91.88 187.1Z"/>
<path android:fillColor="#263238" android:pathData="M90.81,211.43a8.58,8.58 0,0 0,1.82 -1.34,6.33 6.33,0 0,0 1.33,-2 6,6 0,0 0,0.43 -2.91l0.19,0.11h0l0,0 -0.09,0 -0.17,0.1a2.23,2.23 0,0 0,-0.33 0.2,5.32 5.32,0 0,0 -0.61,0.45 6.81,6.81 0,0 0,-1 1,6.74 6.74,0 0,0 -1.11,2.16 10.32,10.32 0,0 0,-0.33 2.23,2.7 2.7,0 0,1 -0.07,-0.61 5.81,5.81 0,0 1,0.22 -1.67A6.57,6.57 0,0 1,92.12 207a6.44,6.44 0,0 1,1 -1.09,7.47 7.47,0 0,1 0.63,-0.48 4.05,4.05 0,0 1,0.35 -0.21l0.18,-0.1 0.09,-0.05 0,0h0l0.19,0.1a6.05,6.05 0,0 1,-0.47 3,6.35 6.35,0 0,1 -1.43,2.06 5.58,5.58 0,0 1,-1.37 1A2.27,2.27 0,0 1,90.81 211.43Z"/>
<path android:fillColor="#263238" android:pathData="M93.7,206.54a29.58,29.58 0,0 1,-1.54 2.56,29.7 29.7,0 0,1 -1.57,2.53A11.35,11.35 0,0 1,91.93 209,11.65 11.65,0 0,1 93.7,206.54Z"/>
<path android:fillColor="#263238" android:pathData="M92.49,223a8.93,8.93 0,0 0,2.21 -0.43,6.32 6.32,0 0,0 2.07,-1.25 6,6 0,0 0,1.64 -2.44l0.13,0.18h-0.39c-0.13,0 -0.25,0 -0.38,0a6.22,6.22 0,0 0,-0.75 0.15,6.79 6.79,0 0,0 -3.26,2 10,10 0,0 0,-1.26 1.88,2.1 2.1,0 0,1 0.2,-0.58 5.61,5.61 0,0 1,0.92 -1.42,6.63 6.63,0 0,1 1.95,-1.57A6.94,6.94 0,0 1,97 219a6.17,6.17 0,0 1,0.77 -0.15,2.73 2.73,0 0,1 0.4,-0.05h0.41l0.13,0.18a6,6 0,0 1,-1.73 2.53,6.27 6.27,0 0,1 -2.17,1.25 5.65,5.65 0,0 1,-1.67 0.29A2.13,2.13 0,0 1,92.49 223Z"/>
<path android:fillColor="#263238" android:pathData="M97.2,219.78a29,29 0,0 1,-2.49 1.64c-1.38,0.89 -2.46,1.67 -2.51,1.61a11.15,11.15 0,0 1,2.36 -1.84A11.59,11.59 0,0 1,97.2 219.78Z"/>
<path android:fillColor="#263238" android:pathData="M87.51,201.66a8.72,8.72 0,0 0,2.21 -0.44A6.36,6.36 0,0 0,91.79 200a5.93,5.93 0,0 0,1.63 -2.44l0.13,0.18h-0.39c-0.13,0 -0.26,0 -0.38,0a5.85,5.85 0,0 0,-0.75 0.15,6.81 6.81,0 0,0 -1.33,0.52 7,7 0,0 0,-1.93 1.48,10.23 10.23,0 0,0 -1.25,1.88 2.81,2.81 0,0 1,0.2 -0.59,6.22 6.22,0 0,1 0.91,-1.42 6.63,6.63 0,0 1,2 -1.57,6.52 6.52,0 0,1 1.38,-0.55 4.9,4.9 0,0 1,0.78 -0.16,2.57 2.57,0 0,1 0.4,-0.05h0.41c0,0.08 -0.13,-0.18 0.13,0.18a6.27,6.27 0,0 1,-3.89 3.79,5.35 5.35,0 0,1 -1.66,0.3A2.78,2.78 0,0 1,87.51 201.66Z"/>
<path android:fillColor="#263238" android:pathData="M92.21,198.47c0,0.07 -1.12,0.75 -2.49,1.65a28,28 0,0 1,-2.5 1.62,11.64 11.64,0 0,1 2.35,-1.84A11.94,11.94 0,0 1,92.21 198.47Z"/>
<path android:fillColor="#263238" android:pathData="M88.74,196.71a8.72,8.72 0,0 0,-1 -2,6.12 6.12,0 0,0 -1.8,-1.62 5.93,5.93 0,0 0,-2.8 -0.87l0.13,-0.17h0v0l0,0.05 0,0.09 0.06,0.18c0,0.13 0.11,0.24 0.15,0.36a7.12,7.12 0,0 0,0.36 0.67,6.3 6.3,0 0,0 0.88,1.13 7,7 0,0 0,2 1.42,9.47 9.47,0 0,0 2.16,0.66 2.1,2.1 0,0 1,-0.62 0,6.31 6.31,0 0,1 -1.62,-0.46 7,7 0,0 1,-3 -2.59,6.6 6.6,0 0,1 -0.37,-0.7c-0.05,-0.12 -0.12,-0.24 -0.16,-0.37l-0.07,-0.19 0,-0.1 0,0v0h0l0.14,-0.18a6,6 0,0 1,2.92 0.93,6.34 6.34,0 0,1 1.83,1.71 5.7,5.7 0,0 1,0.76 1.51A2.62,2.62 0,0 1,88.74 196.71Z"/>
<path android:fillColor="#263238" android:pathData="M84.35,193.12c0.05,-0.05 1,0.85 2.29,1.91A25.75,25.75 0,0 1,88.9 197a17.51,17.51 0,0 1,-4.55 -3.85Z"/>
<path android:fillColor="#263238" android:pathData="M93.79,217.56A8.65,8.65 0,0 0,92.15 216a6.63,6.63 0,0 0,-2.23 -0.94,6.15 6.15,0 0,0 -2.94,0.1c0.14,-0.42 0,-0.11 0.07,-0.2h0v0l0,0 0.07,0.08 0.12,0.15c0.08,0.1 0.17,0.19 0.26,0.29a5.27,5.27 0,0 0,0.55 0.51,6.64 6.64,0 0,0 1.2,0.78 6.87,6.87 0,0 0,2.33 0.7,9.25 9.25,0 0,0 2.25,-0.09 1.65,1.65 0,0 1,-0.59 0.18,5.86 5.86,0 0,1 -1.68,0.1 6.78,6.78 0,0 1,-2.42 -0.66,7.18 7.18,0 0,1 -1.26,-0.8 7.28,7.28 0,0 1,-0.58 -0.54,3.71 3.71,0 0,1 -0.27,-0.29L87,215.3l-0.06,-0.08 0,0 0,0v0h0c0,-0.1 -0.08,0.21 0.06,-0.22a6.07,6.07 0,0 1,3.07 -0.08,6.3 6.3,0 0,1 2.29,1A5.43,5.43 0,0 1,93.47 217,2.09 2.09,0 0,1 93.79,217.56Z"/>
<path android:fillColor="#263238" android:pathData="M88.47,215.61c0,-0.07 1.25,0.47 2.79,1A29.35,29.35 0,0 1,94 217.75a11.72,11.72 0,0 1,-2.87 -0.83A10.86,10.86 0,0 1,88.47 215.61Z"/>
<path android:fillColor="#263238" android:pathData="M91.57,227.92a8.23,8.23 0,0 0,-0.85 -2.08,6.29 6.29,0 0,0 -1.64,-1.79 6.08,6.08 0,0 0,-2.71 -1.13c0.3,-0.32 0.09,-0.08 0.15,-0.16h0v0l0,0.05 0,0.09 0.05,0.19c0,0.13 0.08,0.25 0.11,0.37a7.33,7.33 0,0 0,0.29 0.7,7 7,0 0,0 0.77,1.21 6.75,6.75 0,0 0,1.82 1.6,9.25 9.25,0 0,0 2.09,0.86 2,2 0,0 1,-0.61 -0.08,5.86 5.86,0 0,1 -1.57,-0.61 6.77,6.77 0,0 1,-1.92 -1.61,6.11 6.11,0 0,1 -0.81,-1.25 5.16,5.16 0,0 1,-0.31 -0.73c0,-0.13 -0.09,-0.25 -0.12,-0.39l0,-0.19 0,-0.1v-0.08h0c0.06,-0.07 -0.16,0.16 0.15,-0.17a6.12,6.12 0,0 1,2.82 1.2,6.29 6.29,0 0,1 1.65,1.89 5.33,5.33 0,0 1,0.62 1.57A2.15,2.15 0,0 1,91.57 227.92Z"/>
<path android:fillColor="#263238" android:pathData="M87.54,223.93a29.34,29.34 0,0 1,2.1 2.12,27.07 27.07,0 0,1 2.07,2.14 17.34,17.34 0,0 1,-4.17 -4.26Z"/>
<path android:fillColor="#263238" android:pathData="M87.58,208.29a8.12,8.12 0,0 0,-1 -2,6.54 6.54,0 0,0 -1.8,-1.62 6,6 0,0 0,-2.81 -0.87c0.27,-0.35 0.08,-0.09 0.14,-0.17h0v0l0,0.05 0,0.09 0.07,0.19c0,0.12 0.1,0.23 0.15,0.35a6,6 0,0 0,0.35 0.67,6.79 6.79,0 0,0 0.88,1.13 6.7,6.7 0,0 0,2 1.42,8.88 8.88,0 0,0 2.15,0.66 1.68,1.68 0,0 1,-0.61 0,6.1 6.1,0 0,1 -1.62,-0.46 7,7 0,0 1,-2.07 -1.42,6.43 6.43,0 0,1 -0.92,-1.17 5.21,5.21 0,0 1,-0.38 -0.7c0,-0.12 -0.11,-0.24 -0.16,-0.37l-0.06,-0.19 0,-0.1 0,-0.05v0h0c0.06,-0.08 -0.14,0.17 0.13,-0.18a6,6 0,0 1,2.93 0.93,6.31 6.31,0 0,1 1.82,1.72 5.38,5.38 0,0 1,0.76 1.5A1.71,1.71 0,0 1,87.58 208.29Z"/>
<path android:fillColor="#263238" android:pathData="M83.19,204.7a26,26 0,0 1,2.29 1.9c1.25,1.06 2.31,1.88 2.27,1.94a11.49,11.49 0,0 1,-2.44 -1.73A12.3,12.3 0,0 1,83.19 204.7Z"/>
<path android:fillColor="#0298E1" android:pathData="M85.08,198.21a1.36,1.36 0,1 1,-0.14 0"/>
<path android:fillColor="#0298E1" android:pathData="M96.41,225.67a1.32,1.32 0,1 1,-1.51 1.21,1.37 1.37,0 0,1 1.37,-1.23"/>
<path android:fillColor="#ffbe9d" android:pathData="M206.28,235a14.78,14.78 0,0 0,0.34 -19.48l-23.06,-27.29 -10.7,19.9c0.42,0.3 19.95,20 19.95,20L179,244.66a11.09,11.09 0,0 0,-2.06 10.5L179.38,266l12.89,-5.46 -0.83,-1.33L183,259l-0.46,-2h0Z"/>
<path android:fillColor="#eb996e" android:pathData="M196.34,224.31c0.11,0.1 -0.67,1.06 -1.75,2.09a10.37,10.37 0,0 1,-2.05 1.77c-0.12,-0.09 0.6,-1.11 1.69,-2.15A8.19,8.19 0,0 1,196.34 224.31Z"/>
<path android:fillColor="#0298E1" android:pathData="M172.14,459.85l0.15,-10.59 -19.84,-0.41 -0.38,15.49 1.23,0.11c5.46,0.42 27.83,1.74 31.51,0.7C188.91,464 172.14,459.85 172.14,459.85Z"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M159.26,464.34a6.8,6.8 0,0 0,-2.44 -4.28,6.7 6.7,0 0,0 -4.61,-1.54l-0.12,5.54Z" android:strokeAlpha="0.4"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M180.33,462.17s5.87,1.83 5.11,2.79 -23.4,0.47 -33.37,-0.62l0,-0.44 26.41,0.79S179.17,462.2 180.33,462.17Z" android:strokeAlpha="0.4"/>
<path android:fillColor="#263238" android:pathData="M151.8,463.88a1.26,1.26 0,0 0,0.34 0.05l1,0.08 3.6,0.23c3,0.17 7.25,0.36 11.9,0.46s8.86,0.11 11.91,0.07l3.61,-0.08 1,0 0.34,0a1.3,1.3 0,0 0,-0.34 0h-4.59c-3.05,0 -7.26,0 -11.91,-0.14s-8.85,-0.26 -11.89,-0.39l-3.61,-0.16 -1,0Z"/>
<path android:fillColor="#263238" android:pathData="M178.51,465a8.09,8.09 0,0 1,0.71 -1.71,8.36 8.36,0 0,1 1.26,-1.35 2.65,2.65 0,0 0,-1.46 1.22A2.68,2.68 0,0 0,178.51 465Z"/>
<path android:fillColor="#263238" android:pathData="M172.72,461.9c0.06,0 0.34,-0.29 0.64,-0.74s0.5,-0.85 0.44,-0.88 -0.34,0.29 -0.64,0.74A2.19,2.19 0,0 0,172.72 461.9Z"/>
<path android:fillColor="#263238" android:pathData="M171.13,461c0.05,0.05 0.36,-0.15 0.71,-0.45s0.6,-0.58 0.55,-0.63 -0.36,0.15 -0.71,0.45S171.09,461 171.13,461Z"/>
<path android:fillColor="#263238" android:pathData="M170.16,459.13a2.52,2.52 0,0 0,1 0.15,2.23 2.23,0 0,0 1,-0.09 2.52,2.52 0,0 0,-1 -0.15A2.23,2.23 0,0 0,170.16 459.13Z"/>
<path android:fillColor="#263238" android:pathData="M169.84,457.8a1.92,1.92 0,0 0,1.14 0.36,2 2,0 0,0 1.2,-0.13 6.57,6.57 0,0 0,-1.17 -0.11A5.87,5.87 0,0 0,169.84 457.8Z"/>
<path android:fillColor="#263238" android:pathData="M173.43,460.19a3.55,3.55 0,0 0,1.28 0,7.39 7.39,0 0,0 1.36,-0.27 4.08,4.08 0,0 0,0.78 -0.31,0.7 0.7,0 0,0 0.33,-0.38 0.51,0.51 0,0 0,-0.19 -0.52,2.33 2.33,0 0,0 -2.9,0.62 2.3,2.3 0,0 0,-0.44 0.85,0.88 0.88,0 0,0 0,0.34 3.9,3.9 0,0 1,0.61 -1.08,2.28 2.28,0 0,1 1.1,-0.68 2,2 0,0 1,1.52 0.14c0.2,0.15 0.11,0.39 -0.11,0.52a4.62,4.62 0,0 1,-0.73 0.29,9.12 9.12,0 0,1 -1.32,0.31C173.92,460.16 173.43,460.15 173.43,460.19Z"/>
<path android:fillColor="#263238" android:pathData="M173.76,460.26a1.29,1.29 0,0 0,0.17 -0.88,2.26 2.26,0 0,0 -0.33,-0.94 1.26,1.26 0,0 0,-1 -0.67,0.51 0.51,0 0,0 -0.41,0.58 1.44,1.44 0,0 0,0.21 0.57,3.67 3.67,0 0,0 0.58,0.78 2.09,2.09 0,0 0,0.72 0.54s-0.25,-0.24 -0.59,-0.65a4.39,4.39 0,0 1,-0.52 -0.78c-0.17,-0.27 -0.28,-0.75 0.05,-0.81s0.63,0.3 0.82,0.56a2.13,2.13 0,0 1,0.35 0.84A5,5 0,0 1,173.76 460.26Z"/>
<path android:fillColor="#263238" android:pathData="M152.32,458.46c0,0.05 0.57,0 1.46,0.09a6.2,6.2 0,0 1,5.11 4.25c0.28,0.86 0.3,1.43 0.35,1.42a1.55,1.55 0,0 0,0 -0.4,5.3 5.3,0 0,0 -0.2,-1.07 6,6 0,0 0,-5.25 -4.37,5.56 5.56,0 0,0 -1.09,0A1.35,1.35 0,0 0,152.32 458.46Z"/>
<path android:fillColor="#263238" android:pathData="M154.55,450.25a34.49,34.49 0,0 0,-0.26 4.07,38.64 38.64,0 0,0 0,4.08 31.9,31.9 0,0 0,0.26 -4.07A33.18,33.18 0,0 0,154.55 450.25Z"/>
<path android:fillColor="#263238" android:pathData="M161.8,462.46a16.31,16.31 0,0 0,5.8 0.18c0,-0.07 -1.3,0 -2.9,-0.07S161.81,462.39 161.8,462.46Z"/>
<path android:fillColor="#263238" android:pathData="M157.91,462.37c0,0.05 0.1,0.28 0.23,0.58s0.19,0.56 0.26,0.56 0.11,-0.31 0,-0.66S158,462.32 157.91,462.37Z"/>
<path android:fillColor="#263238" android:pathData="M156.49,460.51c-0.05,0.05 0.07,0.26 0.27,0.47s0.41,0.35 0.45,0.3 -0.07,-0.25 -0.27,-0.46S156.54,460.47 156.49,460.51Z"/>
<path android:fillColor="#263238" android:pathData="M154.41,459.64c0,0.06 0.28,0.07 0.56,0.18s0.5,0.26 0.55,0.22 -0.1,-0.32 -0.46,-0.45S154.39,459.57 154.41,459.64Z"/>
<path android:fillColor="#263238" android:pathData="M152.92,459.21c0,0.06 0.09,0.17 0.25,0.23s0.32,0.08 0.35,0 -0.09,-0.16 -0.25,-0.23S153,459.15 152.92,459.21Z"/>
<path android:fillColor="#0298E1" android:pathData="M144.7,456.91l-2,7.9s-13.34,16.59 -17.33,15.69c-2.62,-0.6 0.7,-4.93 5.91,-17.64l1.15,-5.27Z"/>
<path android:fillColor="#263238" android:pathData="M124.84,478a1.66,1.66 0,0 0,0.68 0.68,2.39 2.39,0 0,0 2.49,-0.3 72,72 0,0 0,6.59 -6c2.45,-2.47 4.52,-4.85 6,-6.61l1.71,-2.1 0.46,-0.57c0.11,-0.13 0.17,-0.2 0.18,-0.19a1.1,1.1 0,0 1,-0.13 0.22l-0.43,0.6c-0.37,0.52 -0.93,1.26 -1.64,2.16a85.28,85.28 0,0 1,-5.95 6.67,63 63,0 0,1 -6.67,6 3.11,3.11 0,0 1,-1.49 0.5,2.09 2.09,0 0,1 -1.15,-0.27 1.53,1.53 0,0 1,-0.53 -0.52A0.68,0.68 0,0 1,124.84 478Z"/>
<path android:fillColor="#263238" android:pathData="M126.79,472.61a2.07,2.07 0,0 1,1.08 -0.1,5.45 5.45,0 0,1 2.43,0.9 4.41,4.41 0,0 1,1.74 1.92,2.09 2.09,0 0,1 0.25,1.05s-0.12,-0.4 -0.41,-1a4.87,4.87 0,0 0,-1.72 -1.79,6.34 6.34,0 0,0 -2.32,-0.93C127.21,472.58 126.8,472.66 126.79,472.61Z"/>
<path android:fillColor="#263238" android:pathData="M139.17,468.91s-0.07,-0.13 -0.15,-0.38a7,7 0,0 1,-0.24 -1.1,6 6,0 0,1 0.68,-3.6 5.6,5.6 0,0 1,2.69 -2.5,4.28 4.28,0 0,1 1.08,-0.3 1.17,1.17 0,0 1,0.41 0,11.1 11.1,0 0,0 -1.42,0.49 5.81,5.81 0,0 0,-2.53 2.45,6.17 6.17,0 0,0 -0.73,3.47C139.05,468.34 139.22,468.9 139.17,468.91Z"/>
<path android:fillColor="#263238" android:pathData="M143.85,458.24c0.06,0 -0.25,1.13 -0.52,2.53a8.58,8.58 0,0 1,-0.74 2.48c-0.06,0 0.22,-1.13 0.48,-2.54A8.11,8.11 0,0 1,143.85 458.24Z"/>
<path android:fillColor="#263238" android:pathData="M131,464a2.71,2.71 0,0 1,1.66 0,2.89 2.89,0 0,1 1.49,0.75c0,0.07 -0.68,-0.29 -1.55,-0.5S131,464.05 131,464Z"/>
<path android:fillColor="#263238" android:pathData="M130.68,465.33a2,2 0,0 1,1.41 0,1.93 1.93,0 0,1 1.21,0.71c0,0.06 -0.56,-0.28 -1.28,-0.46S130.69,465.41 130.68,465.33Z"/>
<path android:fillColor="#263238" android:pathData="M129.61,467a1.65,1.65 0,0 1,1.46 -0.17,1.69 1.69,0 0,1 1.21,0.83 7.58,7.58 0,0 0,-1.27 -0.58A6.31,6.31 0,0 0,129.61 467Z"/>
<path android:fillColor="#263238" android:pathData="M131.88,463.42s0.6,-0.15 1.54,-0.49a13.1,13.1 0,0 0,1.58 -0.73,9.23 9.23,0 0,0 0.87,-0.53c0.27,-0.19 0.56,-0.47 0.55,-0.77s-0.37,-0.47 -0.66,-0.4a2,2 0,0 0,-0.81 0.51c-0.49,0.44 -0.91,0.86 -1.25,1.23 -0.68,0.72 -1.06,1.21 -1.09,1.19s0.06,-0.15 0.22,-0.38 0.41,-0.55 0.74,-0.94a13.89,13.89 0,0 1,1.22 -1.27,2.12 2.12,0 0,1 0.91,-0.59 0.77,0.77 0,0 1,1 0.64,1.3 1.3,0 0,1 -0.67,1q-0.45,0.3 -0.9,0.54a9.85,9.85 0,0 1,-1.63 0.68,9.65 9.65,0 0,1 -1.16,0.29A1.24,1.24 0,0 1,131.88 463.42Z"/>
<path android:fillColor="#263238" android:pathData="M132.57,463.27a12.27,12.27 0,0 1,-0.22 -1.45,6.36 6.36,0 0,0 -0.41,-1.51 3.25,3.25 0,0 0,-0.47 -0.77c-0.19,-0.23 -0.48,-0.42 -0.72,-0.29s-0.28,0.48 -0.25,0.78a4.12,4.12 0,0 0,0.23 0.87,5.4 5.4,0 0,0 0.82,1.33c0.59,0.68 1,1 1,1s-0.14,0 -0.34,-0.2a6.22,6.22 0,0 1,-0.82 -0.72,4.86 4.86,0 0,1 -0.9,-1.36 3.69,3.69 0,0 1,-0.26 -0.94,1 1,0 0,1 0.38,-1 0.89,0.89 0,0 1,1 0.36,3.28 3.28,0 0,1 0.49,0.84 5.49,5.49 0,0 1,0.37 1.58,9.73 9.73,0 0,1 0.06,1.08A1.21,1.21 0,0 1,132.57 463.27Z"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M142.65,464.81l1,-3.8s-3.19,0.53 -4.07,2.89a9.93,9.93 0,0 0,-0.71 4.06l-7.07,7.31s-1.66,-3.43 -4.82,-2.68c0,0 -2.59,5.39 -2.54,6.75s1.63,1.23 2.2,1a28,28 0,0 0,6.3 -4.76C136.67,471.85 140.82,467.11 142.65,464.81Z" android:strokeAlpha="0.4"/>
<path android:fillColor="#0298E1" android:pathData="M128.93,137.93a2.07,2.07 0,0 1,-2.71 2.68c-1.42,-0.58 -1.75,-2.44 -1.6,-4s0.53,-3.17 -0.21,-4.51a10.21,10.21 0,0 0,-2.55 -2.39,6.6 6.6,0 0,1 -2.28,-5.45 5.54,5.54 0,0 1,3.46 -4.66c1.95,-0.73 4.47,-0.31 5.85,-1.88 1,-1.14 0.92,-2.86 1.65,-4.18 1.15,-2 3.86,-2.58 6.21,-2.45s4.76,0.68 7,-0.07c1.86,-0.62 3.31,-2.07 5,-3a10.28,10.28 0,0 1,14.47 13c-0.6,1.4 -1.71,5.41 -6.06,5.71"/>
<path android:fillColor="#ffbe9d" android:pathData="M126.92,121.72l0.27,3.12L131,171.51c0.44,5.42 5.45,9.35 11.25,8.83h0c5.85,-0.52 10.31,-5.38 10,-10.87 -0.38,-5.75 -0.66,-11.81 -0.66,-11.81s7.32,-1.74 8.2,-11.51c0.43,-4.86 -0.35,-12.72 -1.19,-19.14a10.22,10.22 0,0 0,-11.91 -8.74Z"/>
<path android:fillColor="#263238" android:pathData="M155.69,132.36a1.23,1.23 0,0 1,-1.11 1.33,1.17 1.17,0 0,1 -1.35,-1 1.23,1.23 0,0 1,1.1 -1.33A1.2,1.2 0,0 1,155.69 132.36Z"/>
<path android:fillColor="#263238" android:pathData="M157.13,131.23c-0.15,0.17 -1.13,-0.46 -2.47,-0.36s-2.26,0.82 -2.42,0.67 0.06,-0.37 0.47,-0.71a3.41,3.41 0,0 1,3.9 -0.25C157,130.87 157.2,131.15 157.13,131.23Z"/>
<path android:fillColor="#263238" android:pathData="M142.35,133.42a1.24,1.24 0,0 1,-1.11 1.33,1.2 1.2,0 0,1 -1.36,-1 1.25,1.25 0,0 1,1.11 -1.33A1.19,1.19 0,0 1,142.35 133.42Z"/>
<path android:fillColor="#263238" android:pathData="M144,132.37c-0.14,0.18 -1.13,-0.45 -2.46,-0.36s-2.27,0.83 -2.42,0.67 0.06,-0.37 0.46,-0.7a3.47,3.47 0,0 1,1.93 -0.75,3.24 3.24,0 0,1 2,0.5C143.94,132 144.1,132.3 144,132.37Z"/>
<path android:fillColor="#263238" android:pathData="M149.55,141.94a8.43,8.43 0,0 1,2.14 -0.54c0.34,-0.06 0.65,-0.15 0.7,-0.39a1.77,1.77 0,0 0,-0.3 -1l-1.19,-2.53a43.24,43.24 0,0 1,-2.72 -6.63,45.94 45.94,0 0,1 3.25,6.4l1.14,2.54a2,2 0,0 1,0.27 1.33,0.83 0.83,0 0,1 -0.52,0.53 2,2 0,0 1,-0.58 0.12A9,9 0,0 1,149.55 141.94Z"/>
<path android:fillColor="#eb996e" android:pathData="M151.55,157.66a24.71,24.71 0,0 1,-13.19 -2.57s3.69,6.41 13.3,4.84Z"/>
<path android:fillColor="#0298E1" android:pathData="M144,127.12c-0.11,0.37 -1.45,0.29 -3,0.59s-2.79,0.81 -3,0.5c-0.11,-0.15 0.09,-0.51 0.58,-0.9a5.12,5.12 0,0 1,2.2 -0.94,5.22 5.22,0 0,1 2.39,0.12C143.76,126.68 144.06,127 144,127.12Z"/>
<path android:fillColor="#0298E1" android:pathData="M156.37,127.4c-0.21,0.32 -1.15,0.07 -2.26,0.13s-2,0.34 -2.26,0c-0.11,-0.15 0,-0.46 0.41,-0.77a3.08,3.08 0,0 1,1.8 -0.63,3.25 3.25,0 0,1 1.85,0.49C156.32,127 156.47,127.25 156.37,127.4Z"/>
<path android:fillColor="#0298E1" android:pathData="M158.59,122.7s-4.76,2.93 -11.6,0.33c-4.48,-1.71 -9.57,-2.25 -10.58,-1.28s-0.8,5.39 -4.91,7.1c0,0 1.13,8.37 -2.24,8.4s-4,-16.87 -4,-16.87l9.23,-1.13 8.77,-2.58 8.54,0.35 6.7,1.13Z"/>
<path android:fillColor="#0298E1" android:pathData="M124.84,118c0,-0.12 0.72,-0.47 1.67,-0.2s1.43,1 1.31,1 -0.65,-0.34 -1.45,-0.56S124.88,118.14 124.84,118Z"/>
<path android:fillColor="#0298E1" android:pathData="M127.44,115a10.88,10.88 0,0 1,0.42 2.12c0.25,1.13 0.8,1.93 0.69,2s-0.9,-0.64 -1.18,-1.9A3.26,3.26 0,0 1,127.44 115Z"/>
<path android:fillColor="#ffbe9d" android:pathData="M129.21,133.77c-0.14,-0.05 -5.71,-1.53 -5.39,4.11s5.93,4.15 5.93,4S129.21,133.77 129.21,133.77Z"/>
<path android:fillColor="#eb996e" android:pathData="M127.9,139.83s-0.09,0.08 -0.26,0.17a1,1 0,0 1,-0.73 0.05,2.41 2.41,0 0,1 -1.25,-2.11 3.17,3.17 0,0 1,0.19 -1.43,1.13 1.13,0 0,1 0.7,-0.79 0.49,0.49 0,0 1,0.59 0.23c0.09,0.15 0.06,0.27 0.09,0.28s0.11,-0.1 0.06,-0.33a0.66,0.66 0,0 0,-0.25 -0.35,0.77 0.77,0 0,0 -0.55,-0.11 1.38,1.38 0,0 0,-1 0.94,3.3 3.3,0 0,0 -0.25,1.59 2.55,2.55 0,0 0,1.57 2.35,1.07 1.07,0 0,0 0.89,-0.2C127.9,140 127.92,139.84 127.9,139.83Z"/>
<path android:fillColor="#fff" android:pathData="M152.7,106.68h0.12a2.38,2.38 0,0 1,0.37 0,4 4,0 0,1 1.3,0.49 4.73,4.73 0,0 1,1.59 1.55,4.14 4.14,0 0,1 0.63,2.85 4.67,4.67 0,0 1,-1.83 3,4.31 4.31,0 0,1 -1.84,0.8 3.53,3.53 0,0 1,-2.11 -0.33,2.32 2.32,0 0,1 -1.37,-1.76 2.08,2.08 0,0 1,0.22 -1.17,3 3,0 0,1 0.78,-0.92 5,5 0,0 1,2.24 -0.92,8.57 8.57,0 0,1 2.48,0 6.89,6.89 0,0 1,4.3 2.15,5.69 5.69,0 0,1 1.56,4.19 6.27,6.27 0,0 1,-1.63 3.73,8 8,0 0,1 -2.88,2.08 13,13 0,0 1,-5 0.9c-0.61,0 -1.08,0 -1.39,0l-0.37,0c-0.08,0 -0.12,0 -0.12,0h0.49c0.32,0 0.79,0 1.39,0a13.16,13.16 0,0 0,5 -1,7.74 7.74,0 0,0 2.79,-2 6.07,6.07 0,0 0,1.55 -3.59,5.52 5.52,0 0,0 -1.5,-4 6.71,6.71 0,0 0,-4.15 -2.06,6.28 6.28,0 0,0 -4.51,0.91 1.9,1.9 0,0 0,0.31 3.41,3.3 3.3,0 0,0 2,0.32 4.33,4.33 0,0 0,1.74 -0.75,4.56 4.56,0 0,0 1.79,-2.87 4,4 0,0 0,-0.58 -2.74,4.59 4.59,0 0,0 -1.51,-1.53A5.17,5.17 0,0 0,152.7 106.68Z"/>
<path android:fillColor="#fff" android:pathData="M151.05,146a2.87,2.87 0,0 1,-3.17 2.11,3.32 3.32,0 0,1 -2.3,-3.48Z"/>
<path android:fillColor="#0298E1" android:pathData="M144.34,143.43c-0.06,-0.05 0.14,-0.36 0.43,-0.7s0.57,-0.57 0.63,-0.52 -0.14,0.36 -0.43,0.7S144.4,143.48 144.34,143.43Z"/>
<path android:fillColor="#0298E1" android:pathData="M145.55,143.73c-0.06,0 0.09,-0.36 0.34,-0.69s0.5,-0.57 0.56,-0.53 -0.09,0.35 -0.34,0.69S145.61,143.77 145.55,143.73Z"/>
<path android:fillColor="#0298E1" android:pathData="M146.63,144.31c-0.07,0 0,-0.42 0.21,-0.85s0.5,-0.73 0.56,-0.68 -0.11,0.38 -0.31,0.8S146.7,144.33 146.63,144.31Z"/>
<path android:fillColor="#0298E1" android:pathData="M148,144.27c-0.08,0 -0.06,-0.37 0,-0.78s0.23,-0.74 0.31,-0.72 0.05,0.37 0,0.78S148.07,144.29 148,144.27Z"/>
<path android:fillColor="#0298E1" android:pathData="M149.11,144.79c-0.08,0 -0.06,-0.41 0,-0.88s0.23,-0.85 0.3,-0.84 0.06,0.42 0,0.89S149.18,144.81 149.11,144.79Z"/>
<path android:fillColor="#0298E1" android:pathData="M150.46,144.82c-0.08,0 -0.12,-0.33 -0.1,-0.72s0.09,-0.72 0.16,-0.71 0.13,0.32 0.11,0.72S150.53,144.82 150.46,144.82Z"/>
<path android:fillColor="#0298E1" android:pathData="M151.58,145.29c-0.08,0 -0.13,-0.45 -0.2,-1s-0.12,-1 0,-1 0.25,0.41 0.32,1A1.71,1.71 0,0 1,151.58 145.29Z"/>
<path android:fillColor="#0298E1" android:pathData="M152.66,144.89c-0.08,0 -0.18,-0.31 -0.24,-0.72s0,-0.74 0,-0.75 0.18,0.31 0.24,0.71S152.73,144.88 152.66,144.89Z"/>
<path android:fillColor="#0298E1" android:pathData="M153.84,144.75c-0.07,0 -0.17,-0.21 -0.22,-0.49s0,-0.53 0,-0.54 0.18,0.21 0.23,0.49S153.92,144.74 153.84,144.75Z"/>
<path android:fillColor="#eb996e" android:pathData="M152.19,151.15s-0.26,-0.11 -0.67,-0.27a3.92,3.92 0,0 0,-1.67 -0.23,3.77 3.77,0 0,0 -1.59,0.52c-0.38,0.22 -0.59,0.41 -0.62,0.38s0.14,-0.26 0.51,-0.54a3.38,3.38 0,0 1,1.68 -0.64,3.33 3.33,0 0,1 1.76,0.34C152,150.92 152.21,151.13 152.19,151.15Z"/>
<path android:fillColor="#455a64" android:pathData="M181.05,264l-23.41,-2.24h0L124,258.38l2.45,203L153,463.62s0,-6.12 0.07,-10.13l19.16,3.73s20.69,-57.9 27.72,-84.08C205.76,351.31 181.05,264 181.05,264ZM153.25,425.38c0.41,-47.42 1.4,-128.06 2.29,-137.91 0,0 17.25,71.35 17.32,77C172.9,367.82 161.89,400.38 153.25,425.37Z"/>
<path android:fillColor="#455a64" android:pathData="M151.54,419.28a7.08,7.08 0,0 1,0.07 1.61c0,1.15 0,2.62 0,4.38 0,3.81 0,8.87 -0.07,14.45s0.09,10.64 0.12,14.45c0,1.76 0,3.23 0,4.38a8.54,8.54 0,0 1,-0.06 1.61,8.44 8.44,0 0,1 -0.17,-1.6c-0.08,-1 -0.15,-2.53 -0.23,-4.38 -0.15,-3.7 -0.28,-8.81 -0.29,-14.46s0.1,-10.76 0.24,-14.46c0.07,-1.85 0.14,-3.34 0.21,-4.37A9.21,9.21 0,0 1,151.54 419.28Z"/>
<path android:fillColor="#263238" android:pathData="M152.07,463.54c-0.15,0 0.46,-40.46 1.35,-90.34s1.73,-90.34 1.87,-90.34 -0.46,40.45 -1.35,90.35S152.21,463.54 152.07,463.54Z"/>
<path android:fillColor="#263238" android:pathData="M180,371.21a9.92,9.92 0,0 1,-7.13 -6.79,22.88 22.88,0 0,0 3,4A23.18,23.18 0,0 0,180 371.21Z"/>
<path android:fillColor="#263238" android:pathData="M182.32,367.83a8.56,8.56 0,0 1,-5.36 -0.32,8.75 8.75,0 0,1 -4.45,-3 21.79,21.79 0,0 0,4.61 2.52A20.87,20.87 0,0 0,182.32 367.83Z"/>
<path android:fillColor="#263238" android:pathData="M193.87,197.32l-17,-18.89h0a34.22,34.22 0,0 0,-13 -8.84c-2.51,-1 -8.59,-1.24 -11.69,-1.44l-0.22,-0.05c-6.72,1.93 -14.63,1 -21.26,-1.24h0c-1.93,0.93 -15.33,-0.5 -25.33,16.52l-7.49,19.89 18.38,9.52 0.37,14.25 3.58,43.37L185,268.27l-7.4,-37 -4.45,-21.84 5.71,5.2Z"/>
<path android:fillColor="#fafafa" android:pathData="M176.73,178.54h-1.82a25,25 0,0 0,-5.17 0.63,20.47 20.47,0 0,0 -7.41,3.47 33,33 0,0 0,-7.41 8,17.61 17.61,0 0,0 -2.62,5.7 9.2,9.2 0,0 0,0.72 6.57,6.89 6.89,0 0,0 5.71,3.79 5.55,5.55 0,0 0,3.43 -1.24,7.88 7.88,0 0,0 2.73,-7 10.12,10.12 0,0 0,-1.35 -3.82,17.24 17.24,0 0,0 -6,-5.83A23.08,23.08 0,0 0,126 196.12a15.21,15.21 0,0 0,-2.47 8,9.63 9.63,0 0,0 0.9,3.94 7.34,7.34 0,0 0,2.64 2.86,7.86 7.86,0 0,0 3.63,1.2 5.43,5.43 0,0 0,3.53 -0.91,5.2 5.2,0 0,0 2,-2.91 7.62,7.62 0,0 0,0.08 -3.52,14 14,0 0,0 -2.92,-6.08 22.7,22.7 0,0 0,-4.49 -4.44,26.59 26.59,0 0,0 -9.78,-4.64 25.79,25.79 0,0 0,-8.19 -0.7,11.26 11.26,0 0,0 -1.59,0.16c-0.49,0.08 -1,0.12 -1.39,0.22 -0.85,0.21 -1.58,0.34 -2.15,0.52l-1.29,0.41 -0.45,0.13s0.14,-0.07 0.43,-0.18l1.28,-0.46c0.57,-0.2 1.3,-0.35 2.15,-0.57 0.43,-0.11 0.9,-0.16 1.4,-0.24a12.48,12.48 0,0 1,1.6 -0.2,25.69 25.69,0 0,1 8.26,0.63 26.74,26.74 0,0 1,9.94 4.62,22.59 22.59,0 0,1 4.58,4.49 14.28,14.28 0,0 1,3 6.25,7.94 7.94,0 0,1 -0.07,3.72 5.61,5.61 0,0 1,-2.17 3.16,5.85 5.85,0 0,1 -3.82,1 8.44,8.44 0,0 1,-3.86 -1.26,7.85 7.85,0 0,1 -2.82,-3.06 10,10 0,0 1,-1 -4.14,15.68 15.68,0 0,1 2.54,-8.27 23.54,23.54 0,0 1,32.2 -7.49,17.63 17.63,0 0,1 6.21,6 10.45,10.45 0,0 1,1.4 4,8.12 8.12,0 0,1 -0.54,4.12 8,8 0,0 1,-2.38 3.29,6 6,0 0,1 -3.73,1.32 6.22,6.22 0,0 1,-3.63 -1.23,8.37 8.37,0 0,1 -2.44,-2.8 9.52,9.52 0,0 1,-0.74 -6.87,17.81 17.81,0 0,1 2.71,-5.82 33,33 0,0 1,7.54 -8,20.43 20.43,0 0,1 7.53,-3.44 24.26,24.26 0,0 1,5.22 -0.54l1.36,0.07A3.15,3.15 0,0 1,176.73 178.54Z"/>
<path android:fillColor="#fafafa" android:pathData="M177.51,231.5a1.76,1.76 0,0 1,-0.19 0.23l-0.6,0.66a26.41,26.41 0,0 1,-2.51 2.34,28.46 28.46,0 0,1 -4.56,3 27.73,27.73 0,0 1,-6.73 2.53,30 30,0 0,1 -8.68,0.81 27.56,27.56 0,0 1,-9.74 -2.3,18.64 18.64,0 0,1 -8.49,-7 11.56,11.56 0,0 1,-1.73 -5.63,10.17 10.17,0 0,1 1.47,-5.88 7.82,7.82 0,0 1,2.14 -2.26,8 8,0 0,1 2.83,-1.18 7.76,7.76 0,0 1,5.79 1,6.16 6.16,0 0,1 2.66,5 8.87,8.87 0,0 1,-1.59 5.22,11.93 11.93,0 0,1 -3.88,3.46 21.78,21.78 0,0 1,-4.49 1.91,29.14 29.14,0 0,1 -8.6,1.45 17.88,17.88 0,0 1,-7.06 -1.34,14.65 14.65,0 0,1 -4.53,-3 12.17,12.17 0,0 1,-2.08 -2.73,6.65 6.65,0 0,1 -0.49,-1.09 14,14 0,0 0,2.71 3.67,14.55 14.55,0 0,0 4.5,2.87 17.76,17.76 0,0 0,7 1.24,28.76 28.76,0 0,0 8.47,-1.49 21.6,21.6 0,0 0,4.39 -1.9,11.55 11.55,0 0,0 3.71,-3.33 8.39,8.39 0,0 0,1.49 -4.94,5.6 5.6,0 0,0 -2.45,-4.56 7.32,7.32 0,0 0,-10 2.24,9.7 9.7,0 0,0 -1.39,5.59 11,11 0,0 0,1.65 5.39,18.27 18.27,0 0,0 8.25,6.83 27.41,27.41 0,0 0,9.56 2.3,30.09 30.09,0 0,0 8.57,-0.74 28.19,28.19 0,0 0,6.69 -2.43,29.18 29.18,0 0,0 4.56,-2.85 27.24,27.24 0,0 0,2.56 -2.25l0.64,-0.62C177.42,231.56 177.5,231.49 177.51,231.5Z"/>
<path android:fillColor="#fafafa" android:pathData="M182.68,253a0.75,0.75 0,0 1,-0.25 -0.06l-0.7,-0.21c-0.61,-0.22 -1.52,-0.47 -2.7,-0.78a36.51,36.51 0,0 0,-10.25 -1A35.08,35.08 0,0 0,154.15 255a11.55,11.55 0,0 0,-3.43 2.64,4.62 4.62,0 0,0 -1.06,4.09 4.3,4.3 0,0 0,7.28 2.06,4.12 4.12,0 0,0 1.13,-2 5.5,5.5 0,0 0,0 -2.32,7 7,0 0,0 -2.38,-3.88 12,12 0,0 0,-4 -2.12,34 34,0 0,0 -4.28,-1.08 56.88,56.88 0,0 0,-15.24 -0.94A60,60 0,0 0,122 253c-1.18,0.31 -2.1,0.56 -2.72,0.75l-0.7,0.2 -0.25,0.05a1.17,1.17 0,0 1,0.23 -0.1l0.69,-0.25c0.61,-0.22 1.52,-0.5 2.7,-0.84A55.16,55.16 0,0 1,132.17 251a56.15,56.15 0,0 1,15.36 0.84,34 34,0 0,1 4.35,1.07 12.54,12.54 0,0 1,4.15 2.21,7.39 7.39,0 0,1 2.55,4.16 5.93,5.93 0,0 1,0 2.55,4.68 4.68,0 0,1 -1.27,2.27 5,5 0,0 1,-4.83 1.24,4.94 4.94,0 0,1 -3.31,-3.54 5.08,5.08 0,0 1,1.17 -4.54,11.85 11.85,0 0,1 3.58,-2.74 35.24,35.24 0,0 1,25.16 -2.74,28 28,0 0,1 2.69,0.87l0.68,0.26Z"/>
<path android:fillColor="#fafafa" android:pathData="M189.62,192.93a1.57,1.57 0,0 1,-0.1 0.46,7.59 7.59,0 0,1 -0.52,1.22 8.79,8.79 0,0 1,-3.37 3.5,9 9,0 0,1 -7.12,0.73 5.86,5.86 0,0 1,-1.92 -1,3.27 3.27,0 0,1 -1.26,-1.92 2.38,2.38 0,0 1,0.88 -2.23,3 3,0 0,1 2.36,-0.66 5,5 0,0 1,3.58 2.92,7.51 7.51,0 0,1 0.57,4.29 9.79,9.79 0,0 1,-1.33 3.68,13.62 13.62,0 0,1 -2.16,2.6 26.28,26.28 0,0 1,-3.88 2.95c-0.48,0.31 -0.86,0.54 -1.12,0.69a1.84,1.84 0,0 1,-0.42 0.21,12.69 12.69,0 0,1 1.43,-1.07 30,30 0,0 0,3.73 -3,10.53 10.53,0 0,0 3.28,-6.08 7.19,7.19 0,0 0,-0.56 -4,4.5 4.5,0 0,0 -3.19,-2.62 2.44,2.44 0,0 0,-2 0.54,1.83 1.83,0 0,0 -0.7,1.75 2.78,2.78 0,0 0,1.06 1.62,5.52 5.52,0 0,0 1.75,0.91 8.7,8.7 0,0 0,6.8 -0.59,9.07 9.07,0 0,0 3.38,-3.28C189.4,193.53 189.57,192.92 189.62,192.93Z"/>
<path android:fillColor="#fafafa" android:pathData="M129.76,169.14a1.78,1.78 0,0 1,-0.09 0.75,7.82 7.82,0 0,1 -0.77,1.92 8.6,8.6 0,0 1,-12 3.24,7.55 7.55,0 0,1 -1.63,-1.27c-0.34,-0.36 -0.49,-0.58 -0.46,-0.6a21.83,21.83 0,0 0,2.27 1.54,8.57 8.57,0 0,0 11.45,-3.1A21,21 0,0 0,129.76 169.14Z"/>
<path android:fillColor="#0298E1" android:pathData="M206.38,234.5c3.29,-10.95 9.05,-30.23 11.83,-40.59 4,-15 27.7,-20.64 27.7,-20.64l21.22,-1a11.39,11.39 0,0 1,2.94 -0.17c9.71,0.48 16.72,9.57 15.23,19.18l-3.17,20.51 0.69,39.57L235.93,247s4,-13.43 4.18,-17.57 -3.62,-12.88 -3.62,-12.88l-6.1,20.1Z"/>
<path android:fillColor="#0298E1" android:pathData="M283.34,180.43l13.99,31.27l-15.38,16.04l1.39,-47.31z"/>
<path android:fillColor="#263238" android:pathData="M279.78,184.86a11.82,11.82 0,0 1,0.68 1.66l0.33,0.9 0.32,1.1a27.7,27.7 0,0 1,0.69 2.7c0.11,0.51 0.22,1 0.34,1.59s0.17,1.14 0.27,1.74c0.21,1.2 0.3,2.5 0.45,3.86 0.21,2.72 0.3,5.73 0.26,8.88 -0.09,6.3 -0.46,12 -0.55,16.1 -0.05,2.06 -0.08,3.72 -0.07,4.88a13.25,13.25 0,0 1,-0.05 1.79,10.91 10.91,0 0,1 -0.15,-1.79c-0.07,-1.15 -0.1,-2.82 -0.09,-4.89 0,-4.12 0.3,-9.82 0.39,-16.1 0,-3.14 0,-6.12 -0.22,-8.83 -0.14,-1.35 -0.21,-2.65 -0.4,-3.84 -0.08,-0.59 -0.16,-1.17 -0.24,-1.73s-0.2,-1.07 -0.3,-1.58c-0.17,-1 -0.41,-1.91 -0.61,-2.7l-0.28,-1.11 -0.29,-0.91A12.42,12.42 0,0 1,279.78 184.86Z"/>
<path android:fillColor="#263238" android:pathData="M241,200.49a76.82,76.82 0,0 1,-2.27 8.63,76 76,0 0,1 -2.77,8.48A76.82,76.82 0,0 1,238.2 209,78.55 78.55,0 0,1 241,200.49Z"/>
<path android:fillColor="#fafafa" android:pathData="M279.63,175.46a8.58,8.58 0,0 1,0.39 2.88,13.42 13.42,0 0,1 -2.52,7.46 17,17 0,0 1,-3.82 4,19.2 19.2,0 0,1 -5.66,2.8 34.83,34.83 0,0 1,-14.34 0.87c-5.09,-0.62 -9.83,-1.69 -14.2,-2.22a37.72,37.72 0,0 0,-11.63 0.07,22 22,0 0,0 -7.36,2.63c-1.6,0.94 -2.37,1.65 -2.41,1.6a4.35,4.35 0,0 1,0.56 -0.51,6.08 6.08,0 0,1 0.71,-0.56 11.32,11.32 0,0 1,1 -0.71,21.59 21.59,0 0,1 7.4,-2.81 37.26,37.26 0,0 1,11.75 -0.19c4.41,0.51 9.16,1.57 14.21,2.18a34.7,34.7 0,0 0,14.14 -0.81,18.79 18.79,0 0,0 5.54,-2.69 16.42,16.42 0,0 0,3.77 -3.83,13.5 13.5,0 0,0 2.62,-7.26A18.48,18.48 0,0 0,279.63 175.46Z"/>
<path android:fillColor="#fafafa" android:pathData="M216.51,206.45c-0.13,-0.09 1.45,-2.26 3,-5.14s2.6,-5.36 2.75,-5.31a19.5,19.5 0,0 1,-2.29 5.56A19.3,19.3 0,0 1,216.51 206.45Z"/>
<path android:fillColor="#fafafa" android:pathData="M224.28,207.89a39,39 0,0 1,2.25 -6,41.08 41.08,0 0,1 2.74,-5.86A40.53,40.53 0,0 1,227 202,40.61 40.61,0 0,1 224.28,207.89Z"/>
<path android:fillColor="#fafafa" android:pathData="M232.54,207.32a31.87,31.87 0,0 1,1.66 -5.43,32.26 32.26,0 0,1 2.15,-5.25 29.83,29.83 0,0 1,-1.66 5.43A30.27,30.27 0,0 1,232.54 207.32Z"/>
<path android:fillColor="#fafafa" android:pathData="M249.3,209s0,0.1 0,0.3l-0.15,0c0,-0.76 0.14,-3.15 0.43,-6a36.81,36.81 0,0 1,0.9 -6.22,38.94 38.94,0 0,1 -0.38,6.28c-0.29,2.82 -0.61,5.2 -0.8,5.93l-0.15,0C249.23,209.07 249.27,209 249.3,209Z"/>
<path android:fillColor="#fafafa" android:pathData="M258.29,208.35s0,0.13 -0.1,0.33l-0.13,0.27 0,-0.32c-0.06,-0.77 0,-3 -0.16,-5.62 -0.17,-3.28 -0.55,-5.92 -0.39,-5.94a21.2,21.2 0,0 1,0.91 5.92,29.22 29.22,0 0,1 -0.19,5.65l-0.15,0C258.19,208.41 258.27,208.34 258.29,208.35Z"/>
<path android:fillColor="#fafafa" android:pathData="M268.4,207.08a30.16,30.16 0,0 1,-1.5 -5.38,29.54 29.54,0 0,1 -1,-5.51 30.44,30.44 0,0 1,1.5 5.39A30.54,30.54 0,0 1,268.4 207.08Z"/>
<path android:fillColor="#fafafa" android:pathData="M275.35,202.83c-0.15,0 -0.47,-2 -1.15,-4.52s-1.43,-4.42 -1.29,-4.48a13.18,13.18 0,0 1,1.8 4.35A12.79,12.79 0,0 1,275.35 202.83Z"/>
<path android:fillColor="#fafafa" android:pathData="M279.87,198.35a42.08,42.08 0,0 0,-1 -4.44,42.51 42.51,0 0,0 -2,-4.1 10.5,10.5 0,0 1,3 8.54Z"/>
<path android:fillColor="#fafafa" android:pathData="M280.6,206.08a1.61,1.61 0,0 1,-0.21 0.39c-0.16,0.24 -0.38,0.61 -0.72,1.05a26.46,26.46 0,0 1,-3.05 3.51,30.65 30.65,0 0,1 -28.44,8.07 28.19,28.19 0,0 1,-4.44 -1.38c-0.51,-0.2 -0.89,-0.4 -1.15,-0.52s-0.4,-0.2 -0.39,-0.22a12.1,12.1 0,0 1,1.61 0.55,34.46 34.46,0 0,0 4.45,1.21 31.42,31.42 0,0 0,28.11 -8,33.37 33.37,0 0,0 3.14,-3.38A13.18,13.18 0,0 1,280.6 206.08Z"/>
<path android:fillColor="#fafafa" android:pathData="M233.42,183.63c-0.06,0 0.23,-0.61 1.15,-0.66a1.77,1.77 0,0 1,1.41 0.59,1.79 1.79,0 0,1 -1.48,2.84 1.77,1.77 0,0 1,-1.29 -0.82c-0.48,-0.78 -0.16,-1.37 -0.12,-1.32s-0.05,0.53 0.42,1.11a1.46,1.46 0,0 0,1 0.55,1.35 1.35,0 0,0 1.08,-2.06 1.48,1.48 0,0 0,-1 -0.52C233.83,183.28 233.48,183.7 233.42,183.63Z"/>
<path android:fillColor="#fafafa" android:pathData="M246.71,185.68c0,0.08 -0.57,0.17 -0.91,0.91a1.54,1.54 0,0 0,0 1.28,1.41 1.41,0 0,0 2.49,-0.23 1.59,1.59 0,0 0,-0.27 -1.26c-0.48,-0.66 -1.09,-0.63 -1.07,-0.72s0.13,-0.09 0.39,0a1.58,1.58 0,0 1,1 0.54,1.83 1.83,0 0,1 0.45,1.6 1.85,1.85 0,0 1,-3.38 0.33,1.87 1.87,0 0,1 0.13,-1.66 1.64,1.64 0,0 1,0.84 -0.72C246.56,185.62 246.71,185.65 246.71,185.68Z"/>
<path android:fillColor="#fafafa" android:pathData="M262.22,186.59c-0.05,-0.05 0.58,-0.27 1.24,0.34a1.66,1.66 0,0 1,0.53 1.39,1.69 1.69,0 0,1 -3,0.69 1.67,1.67 0,0 1,-0.13 -1.49c0.33,-0.83 1,-0.9 1,-0.84s-0.45,0.26 -0.62,1a1.37,1.37 0,0 0,0.17 1.1,1.25 1.25,0 0,0 2.14,-0.49 1.36,1.36 0,0 0,-0.33 -1.07C262.74,186.63 262.21,186.68 262.22,186.59Z"/>
<path android:fillColor="#fafafa" android:pathData="M273.76,179.25c0,-0.05 0.66,0 1.26,0.77a2,2 0,0 1,-1.1 3.15,1.89 1.89,0 0,1 -1.95,-0.73 1.57,1.57 0,0 1,-0.08 -1.7,1.54 1.54,0 0,1 0.88,-0.72c0.26,-0.07 0.41,0 0.41,0s-0.61,0.12 -1,0.88a1.18,1.18 0,0 0,0.14 1.24,1.44 1.44,0 0,0 1.43,0.52 1.59,1.59 0,0 0,1.1 -1.12,1.71 1.71,0 0,0 -0.18,-1.33C274.29,179.51 273.72,179.33 273.76,179.25Z"/>
<path android:fillColor="#fafafa" android:pathData="M217.77,223c-0.05,0 0.47,-0.35 1.21,0a1.67,1.67 0,0 1,0.82 1.14,1.68 1.68,0 0,1 -2.46,1.65 1.71,1.71 0,0 1,-0.74 -1.18c-0.09,-0.84 0.39,-1.2 0.41,-1.14s-0.21,0.43 0,1.07a1.43,1.43 0,0 0,0.63 0.84,1.24 1.24,0 0,0 1.73,-1.17 1.35,1.35 0,0 0,-0.54 -0.9C218.25,223 217.78,223.11 217.77,223Z"/>
<path android:fillColor="#fafafa" android:pathData="M227.26,223.75c0,-0.05 0.58,-0.28 1.26,0.31a1.71,1.71 0,0 1,0.58 1.37,1.73 1.73,0 0,1 -3,0.92 1.73,1.73 0,0 1,-0.3 -1.46c0.23,-0.87 0.87,-1 0.86,-1s-0.41,0.32 -0.49,1a1.38,1.38 0,0 0,0.3 1.08,1.29 1.29,0 0,0 2.13,-0.65 1.42,1.42 0,0 0,-0.36 -1.07C227.78,223.78 227.26,223.83 227.26,223.75Z"/>
<path android:fillColor="#fafafa" android:pathData="M246.92,226.4s0,-0.15 0.22,-0.29a1.21,1.21 0,0 1,1 -0.14,1.28 1.28,0 0,1 1,1.16 1.61,1.61 0,0 1,-1 1.57,1.79 1.79,0 0,1 -1.8,-0.32 1.81,1.81 0,0 1,-0.62 -1.34c0,-0.86 0.41,-1.25 0.44,-1.21a6.81,6.81 0,0 0,-0.08 1.18,1.5 1.5,0 0,0 0.57,1 1.34,1.34 0,0 0,1.3 0.22,1.19 1.19,0 0,0 0.67,-1.07 0.9,0.9 0,0 0,-0.6 -0.83A1.48,1.48 0,0 0,246.92 226.4Z"/>
<path android:fillColor="#fafafa" android:pathData="M258.31,225.12s0,-0.18 0.21,-0.37a1.17,1.17 0,0 1,1.15 -0.19,1.38 1.38,0 0,1 0.85,1.51 1.9,1.9 0,0 1,-1.41 1.57,2.39 2.39,0 0,1 -2.08,-0.32 1.46,1.46 0,0 1,-0.57 -0.8,1 1,0 0,1 0.13,-0.87 1.11,1.11 0,0 1,1.05 -0.53c0.29,0.07 0.37,0.24 0.35,0.25s-0.15,-0.06 -0.37,-0.05a0.92,0.92 0,0 0,-0.71 0.52,0.84 0.84,0 0,0 0.4,1.09 2,2 0,0 0,1.65 0.21,1.46 1.46,0 0,0 1.09,-1.13 1,1 0,0 0,-0.51 -1.11,1.06 1.06,0 0,0 -0.9,0C258.43,225 258.35,225.14 258.31,225.12Z"/>
<path android:fillColor="#fafafa" android:pathData="M267.06,223.63s0,-0.17 0.22,-0.34a1.16,1.16 0,0 1,1.11 -0.11,1.38 1.38,0 0,1 0.65,0.47 1.27,1.27 0,0 1,0.24 0.93,2 2,0 0,1 -1.26,1.59 2.11,2.11 0,0 1,-2 -0.22,1.37 1.37,0 0,1 -0.53,-0.79 1.22,1.22 0,0 1,1.06 -1.44c0.28,0 0.39,0.14 0.37,0.16s-0.15,0 -0.35,0a1,1 0,0 0,-0.62 0.58,0.83 0.83,0 0,0 0.35,1.06 1.67,1.67 0,0 0,1.53 0.13,1.62 1.62,0 0,0 1,-1.17 0.92,0.92 0,0 0,-0.55 -1,1 1,0 0,0 -0.87,-0.06C267.19,223.55 267.1,223.66 267.06,223.63Z"/>
<path android:fillColor="#fafafa" android:pathData="M276.77,219.1c0,0.09 -0.64,0.1 -1.09,0.87a1.64,1.64 0,0 0,-0.16 1.38,1.36 1.36,0 0,0 1.38,0.79 1.38,1.38 0,0 0,1.32 -0.89,1.65 1.65,0 0,0 -0.27,-1.37c-0.52,-0.73 -1.18,-0.69 -1.16,-0.78s0.14,-0.09 0.43,0a1.74,1.74 0,0 1,1 0.6,2 2,0 0,1 0.44,1.73 2,2 0,0 1,-3.61 0.14,2 2,0 0,1 0.3,-1.75 1.69,1.69 0,0 1,1 -0.68C276.62,219 276.77,219.08 276.77,219.1Z"/>
<path android:fillColor="#fafafa" android:pathData="M288.75,207s0.45,-0.53 1.45,-0.4a1.81,1.81 0,0 1,1.4 1,1.85 1.85,0 0,1 -0.29,2.09 1.7,1.7 0,0 1,-2.11 0.16,1.31 1.31,0 0,1 -0.55,-0.83 1.36,1.36 0,0 1,0.11 -0.84,1.31 1.31,0 0,1 0.87,-0.76c0.28,-0.06 0.42,0 0.42,0s-0.15,0.05 -0.35,0.15a1.19,1.19 0,0 0,-0.6 0.71,0.91 0.91,0 0,0 0.37,1.13 1.22,1.22 0,0 0,1.47 -0.13,1.42 1.42,0 0,0 0.23,-1.52 1.51,1.51 0,0 0,-1 -0.84A3.68,3.68 0,0 0,288.75 207Z"/>
<path android:fillAlpha="0.3" android:fillColor="#FF000000"
android:pathData="M236.34,216.4a21.89,21.89 0,0 0,2.39 5c0.22,0.36 0.61,0.76 1,0.6a0.9,0.9 0,0 0,0.43 -0.57,22.46 22.46,0 0,0 0.13,-16.08 30.52,30.52 0,0 0,-4 11" android:strokeAlpha="0.3"/>
<path android:fillColor="#0298E1" android:pathData="M273.81,458.86l0.06,-11 -20.65,-0.25L253,463.71l1.28,0.1c5.7,0.39 29,1.56 32.8,0.45C291.31,463 273.81,458.86 273.81,458.86Z"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M260.45,463.64a7.12,7.12 0,0 0,-2.58 -4.43,7 7,0 0,0 -4.81,-1.56l-0.07,5.77Z" android:strokeAlpha="0.4"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M282.36,461.2s6.13,1.85 5.35,2.85 -24.36,0.71 -34.75,-0.34l0,-0.46 27.5,0.59S281.15,461.24 282.36,461.2Z" android:strokeAlpha="0.4"/>
<path android:fillColor="#263238" android:pathData="M252.68,463.24l0.35,0 1,0.07 3.75,0.21c3.17,0.16 7.55,0.31 12.39,0.38s9.22,0 12.4,0l3.75,-0.11 1,-0.05a1.65,1.65 0,0 0,0.36 0,1.48 1.48,0 0,0 -0.36,0h-1l-3.76,0c-3.17,0 -7.55,0 -12.39,0s-9.21,-0.19 -12.38,-0.3l-3.76,-0.13 -1,0Z"/>
<path android:fillColor="#263238" android:pathData="M280.49,464.16a7.66,7.66 0,0 1,0.72 -1.78,8.69 8.69,0 0,1 1.3,-1.43 2.84,2.84 0,0 0,-1.51 1.29A2.77,2.77 0,0 0,280.49 464.16Z"/>
<path android:fillColor="#263238" android:pathData="M274.43,461c0.06,0 0.36,-0.31 0.67,-0.78s0.51,-0.89 0.45,-0.93 -0.36,0.32 -0.66,0.79A2.32,2.32 0,0 0,274.43 461Z"/>
<path android:fillColor="#263238" android:pathData="M272.77,460.08c0.05,0.06 0.38,-0.16 0.74,-0.47s0.61,-0.61 0.57,-0.67 -0.38,0.16 -0.74,0.48S272.73,460 272.77,460.08Z"/>
<path android:fillColor="#263238" android:pathData="M271.74,458.12a2.37,2.37 0,0 0,1.08 0.15,2.32 2.32,0 0,0 1.08,-0.1 2.55,2.55 0,0 0,-1.08 -0.15A2.49,2.49 0,0 0,271.74 458.12Z"/>
<path android:fillColor="#263238" android:pathData="M271.4,456.74a2,2 0,0 0,1.19 0.37,2.21 2.21,0 0,0 1.25,-0.15 6.69,6.69 0,0 0,-1.22 -0.1A6.4,6.4 0,0 0,271.4 456.74Z"/>
<path android:fillColor="#263238" android:pathData="M275.16,459.2a4.37,4.37 0,0 0,1.33 0,8.36 8.36,0 0,0 1.41,-0.3 3.78,3.78 0,0 0,0.81 -0.32,0.74 0.74,0 0,0 0.34,-0.41 0.51,0.51 0,0 0,-0.2 -0.53,2.41 2.41,0 0,0 -3,0.67 2.35,2.35 0,0 0,-0.45 0.88,1 1,0 0,0 0,0.36 4,4 0,0 1,0.62 -1.12,2.4 2.4,0 0,1 1.14,-0.73 2.07,2.07 0,0 1,1.58 0.13c0.21,0.16 0.13,0.41 -0.11,0.54a3.82,3.82 0,0 1,-0.75 0.31,9.08 9.08,0 0,1 -1.37,0.34C275.66,459.16 275.16,459.16 275.16,459.2Z"/>
<path android:fillColor="#263238" android:pathData="M275.5,459.27a1.32,1.32 0,0 0,0.17 -0.92,2.33 2.33,0 0,0 -0.35,-1 1.37,1.37 0,0 0,-1.1 -0.69,0.54 0.54,0 0,0 -0.42,0.61 1.59,1.59 0,0 0,0.22 0.6,3.91 3.91,0 0,0 0.62,0.81c0.41,0.41 0.73,0.57 0.75,0.54s-0.26,-0.24 -0.62,-0.66a4.21,4.21 0,0 1,-0.55 -0.81c-0.18,-0.28 -0.29,-0.78 0,-0.84s0.67,0.31 0.87,0.57a2.34,2.34 0,0 1,0.36 0.87A4,4 0,0 1,275.5 459.27Z"/>
<path android:fillColor="#263238" android:pathData="M253.17,457.59c0,0.05 0.59,0 1.52,0.07a6.63,6.63 0,0 1,3.31 1.42,6.72 6.72,0 0,1 2.05,3c0.3,0.89 0.32,1.49 0.37,1.48s0,-0.15 0,-0.41a5.83,5.83 0,0 0,-0.21 -1.12,6.31 6.31,0 0,0 -5.51,-4.5 5.81,5.81 0,0 0,-1.13 0A1.58,1.58 0,0 0,253.17 457.59Z"/>
<path android:fillColor="#263238" android:pathData="M255.42,449a36,36 0,0 0,-0.23 4.23,36.82 36.82,0 0,0 0,4.25 69.28,69.28 0,0 0,0.22 -8.48Z"/>
<path android:fillColor="#263238" android:pathData="M263.07,461.66a11.3,11.3 0,0 0,3 0.34,12.06 12.06,0 0,0 3,-0.2c0,-0.08 -1.36,0 -3,-0.05S263.08,461.59 263.07,461.66Z"/>
<path android:fillColor="#263238" android:pathData="M259,461.6c0,0.06 0.1,0.29 0.24,0.6s0.2,0.59 0.28,0.59 0.11,-0.33 -0.05,-0.69S259.07,461.56 259,461.6Z"/>
<path android:fillColor="#263238" android:pathData="M257.53,459.69c0,0.05 0.08,0.26 0.29,0.48s0.42,0.36 0.47,0.31 -0.08,-0.26 -0.29,-0.48S257.58,459.64 257.53,459.69Z"/>
<path android:fillColor="#263238" android:pathData="M255.36,458.79c0,0.07 0.28,0.07 0.59,0.18s0.51,0.28 0.57,0.23 -0.12,-0.33 -0.49,-0.46S255.34,458.73 255.36,458.79Z"/>
<path android:fillColor="#263238" android:pathData="M253.81,458.36c0,0.07 0.09,0.18 0.26,0.24s0.33,0.08 0.35,0 -0.09,-0.17 -0.26,-0.24S253.83,458.3 253.81,458.36Z"/>
<path android:fillColor="#0298E1" android:pathData="M216.92,458.71l2.81,-10.66 -19.93,-5.4 -4.29,15.55 1.22,0.42c5.42,1.79 27.67,8.75 31.65,8.63C232.82,467.12 216.92,458.71 216.92,458.71Z"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M202.78,460a7.17,7.17 0,0 0,-1.39 -4.94,7 7,0 0,0 -4.26,-2.71l-1.52,5.57Z" android:strokeAlpha="0.4"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M224.61,463.11s5.47,3.32 4.46,4.1 -23.76,-5.4 -33.56,-9l0.16,-0.44 26.48,7.44S223.43,462.85 224.61,463.11Z" android:strokeAlpha="0.4"/>
<path android:fillColor="#263238" android:pathData="M195.36,457.67l0.33,0.13 1,0.32 3.58,1.14c3,0.95 7.23,2.19 11.9,3.46s8.93,2.34 12,3.06l3.67,0.83 1,0.21a1.56,1.56 0,0 0,0.35 0.06l-0.34,-0.11 -1,-0.25 -3.64,-0.91c-3.08,-0.77 -7.32,-1.86 -12,-3.13s-8.88,-2.49 -11.92,-3.39l-3.6,-1.06 -1,-0.28Z"/>
<path android:fillColor="#263238" android:pathData="M222.06,465.51A8.53,8.53 0,0 1,223.2 464a9.09,9.09 0,0 1,1.62 -1,2.81 2.81,0 0,0 -1.79,0.87A2.71,2.71 0,0 0,222.06 465.51Z"/>
<path android:fillColor="#263238" android:pathData="M217,460.93c0,0.05 0.42,-0.22 0.83,-0.6s0.72,-0.72 0.67,-0.77 -0.42,0.21 -0.84,0.59S216.94,460.88 217,460.93Z"/>
<path android:fillColor="#263238" android:pathData="M215.61,459.64c0,0.06 0.4,-0.07 0.83,-0.28s0.74,-0.44 0.71,-0.5 -0.4,0.06 -0.83,0.28S215.57,459.58 215.61,459.64Z"/>
<path android:fillColor="#263238" android:pathData="M215.1,457.48c0,0.07 0.43,0.25 1,0.41a2.46,2.46 0,0 0,1.07 0.18c0,-0.07 -0.43,-0.25 -1,-0.42A2.37,2.37 0,0 0,215.1 457.48Z"/>
<path android:fillColor="#263238" android:pathData="M215.11,456.06a2.06,2.06 0,0 0,1.07 0.65,2.13 2.13,0 0,0 1.24,0.17 6.25,6.25 0,0 0,-1.16 -0.41A6.38,6.38 0,0 0,215.11 456.06Z"/>
<path android:fillColor="#263238" android:pathData="M218.14,459.37a3.66,3.66 0,0 0,1.28 0.34,7.19 7.19,0 0,0 1.44,0.07 3.4,3.4 0,0 0,0.87 -0.11,0.75 0.75,0 0,0 0.43,-0.31 0.52,0.52 0,0 0,-0.06 -0.56,2.43 2.43,0 0,0 -3.09,-0.1 2.19,2.19 0,0 0,-0.65 0.74,0.85 0.85,0 0,0 -0.13,0.33 3.88,3.88 0,0 1,0.88 -0.93,2.41 2.41,0 0,1 1.29,-0.41 2,2 0,0 1,1.5 0.51c0.16,0.21 0,0.43 -0.25,0.5a3.51,3.51 0,0 1,-0.8 0.11,9.31 9.31,0 0,1 -1.41,0C218.64,459.47 218.15,459.33 218.14,459.37Z"/>
<path android:fillColor="#263238" android:pathData="M218.45,459.53a1.36,1.36 0,0 0,0.39 -0.85,2.1 2.1,0 0,0 -0.1,-1 1.29,1.29 0,0 0,-0.88 -0.94,0.52 0.52,0 0,0 -0.56,0.48 1.43,1.43 0,0 0,0.06 0.63,4.15 4.15,0 0,0 0.4,0.94 1.92,1.92 0,0 0,0.59 0.72s-0.19,-0.3 -0.44,-0.8a4.27,4.27 0,0 1,-0.32 -0.92c-0.11,-0.32 -0.1,-0.83 0.24,-0.81s0.57,0.47 0.7,0.78a2.27,2.27 0,0 1,0.13 0.93A4.6,4.6 0,0 1,218.45 459.53Z"/>
<path android:fillColor="#263238" android:pathData="M197.25,452.32c0,0.05 0.58,0.11 1.45,0.46a6.42,6.42 0,0 1,4.09 5.58c0.07,0.93 0,1.51 0,1.52a0.92,0.92 0,0 0,0.11 -0.4,5.57 5.57,0 0,0 0.08,-1.13 6.29,6.29 0,0 0,-4.2 -5.74,5.25 5.25,0 0,0 -1.11,-0.27A1.6,1.6 0,0 0,197.25 452.32Z"/>
<path android:fillColor="#263238" android:pathData="M201.56,444.59a38.1,38.1 0,0 0,-1.28 4.05,35.77 35.77,0 0,0 -1,4.11 37.42,37.42 0,0 0,1.28 -4A35.62,35.62 0,0 0,201.56 444.59Z"/>
<path android:fillColor="#263238" android:pathData="M205.82,458.74a11.35,11.35 0,0 0,2.83 1.08,11.93 11.93,0 0,0 3,0.56c0,-0.07 -1.31,-0.35 -2.91,-0.8S205.85,458.67 205.82,458.74Z"/>
<path android:fillColor="#263238" android:pathData="M201.92,457.67c-0.07,0 0,0.31 0.08,0.64s0.05,0.62 0.12,0.64 0.19,-0.29 0.13,-0.68S202,457.64 201.92,457.67Z"/>
<path android:fillColor="#263238" android:pathData="M200.94,455.44c-0.06,0 0,0.28 0.16,0.54s0.32,0.46 0.38,0.42 0,-0.27 -0.16,-0.54S201,455.41 200.94,455.44Z"/>
<path android:fillColor="#263238" android:pathData="M199.06,454c0,0.07 0.26,0.14 0.53,0.33s0.43,0.39 0.5,0.36 0,-0.35 -0.36,-0.57S199.06,454 199.06,454Z"/>
<path android:fillColor="#263238" android:pathData="M197.67,453.23c0,0.06 0.05,0.19 0.19,0.3s0.3,0.15 0.35,0.1 -0.05,-0.19 -0.2,-0.3S197.71,453.18 197.67,453.23Z"/>
<path android:fillColor="#b77153" android:pathData="M292.12,200.4l5.63,15.15L302,181.34a12.09,12.09 0,0 0,-1.25 -6.35,12.37 12.37,0 0,0 -1.52,-2.45 13.24,13.24 0,0 0,-2.63 -2.47c-1,-0.55 -0.79,-2 0.2,-2.08s3.66,1.34 5.78,4.23 2.33,-2.67 2.45,-4.7 0.77,-8.25 1.42,-8.69c0.95,-0.65 1.84,0.27 1.68,2.29s-0.23,8.11 0.83,8.15S310.47,159 310.47,159s-0.25,-2.22 1,-2.22c2.23,0 0.94,10.91 0.79,11.94 -0.11,0.72 1.05,0.8 1.12,0s0.22,-10.3 2.49,-10.31c1.74,0 -1,9 0.08,11s1.37,-7 3,-7c0.62,0 1.08,0.12 0.16,5.28 -0.5,2.78 -2.33,6.77 -2.89,12.18l-0.15,1.41c-0.1,6.74 -0.9,32.16 -7,47.63A12.53,12.53 0,0 1,287 231.16a117.34,117.34 0,0 1,-12 -23.34Z"/>
<path android:fillColor="#995037" android:pathData="M312.92,177.07c0,0.05 -0.35,0 -0.89,0.23a3.16,3.16 0,0 0,-1.71 1.41l-0.21,0.38 -0.12,-0.42a5.29,5.29 0,0 0,-0.83 -1.64,5.91 5.91,0 0,0 -2.84,-2.1c-0.88,-0.31 -1.47,-0.29 -1.47,-0.37a2.9,2.9 0,0 1,1.55 0.11,5.68 5.68,0 0,1 3.08,2.13 5.22,5.22 0,0 1,0.86 1.78l-0.34,0a3.17,3.17 0,0 1,2 -1.45A1.54,1.54 0,0 1,312.92 177.07Z"/>
<path android:fillColor="#263238" android:pathData="M274.19,160.27a7.76,7.76 0,0 0,9.15 -11.73c4.42,-1.12 7.18,-6.23 6.29,-10.7s-4.9,-8 -9.36,-8.94a9.89,9.89 0,0 0,-5.18 0.13,6.3 6.3,0 0,0 -3.86,3.31"/>
<path android:fillColor="#0298E1" android:pathData="M273.57,150.25c0,0.05 -0.58,0.15 -1.51,0.64a6.73,6.73 0,0 0,-3 3.19,6.51 6.51,0 0,0 0.5,6.23 6,6 0,0 0,1.23 1.4,6.2 6.2,0 0,0 1.65,1 6.57,6.57 0,0 0,4 0.37A6.46,6.46 0,0 0,280 161a6.7,6.7 0,0 0,1.55 -3.45,6.52 6.52,0 0,0 -2.26,-5.82 6.71,6.71 0,0 0,-4.05 -1.59c-1,0 -1.63,0.13 -1.64,0.08a2.13,2.13 0,0 1,0.41 -0.11,5.22 5.22,0 0,1 1.23,-0.13 6.72,6.72 0,0 1,4.23 1.52,6.78 6.78,0 0,1 2.45,6.1 6.32,6.32 0,0 1,-0.52 1.91,6.41 6.41,0 0,1 -1.09,1.75 6.83,6.83 0,0 1,-8 1.82,6.78 6.78,0 0,1 -3,-2.6 6.76,6.76 0,0 1,-0.44 -6.55,6.65 6.65,0 0,1 3.15,-3.21 5.42,5.42 0,0 1,1.16 -0.42Z"/>
<path android:fillColor="#263238" android:pathData="M276.92,138.08A7.6,7.6 0,0 0,280.49 124a9.43,9.43 0,0 0,-14.08 -11,12.53 12.53,0 0,0 -23.16,3.71 12.1,12.1 0,0 0,-15.53 16.42,9.38 9.38,0 0,0 1.59,18.69 8.27,8.27 0,0 0,12.54 9.28,9 9,0 0,0 16.27,-1.87"/>
<path android:fillColor="#b77153" android:pathData="M267.62,174.33c0.16,-3.76 0.36,-7.17 0.36,-7.17s8.41,-1.06 8.78,-9.65 -0.5,-28.35 -0.5,-28.35l-15.48,-7.43 -13.62,12.2 1.39,40.14c0.37,5.68 3.42,10.52 9.11,10.26h0A10.46,10.46 0,0 0,267.62 174.33Z"/>
<path android:fillColor="#263238" android:pathData="M256,122.21a11.35,11.35 0,0 0,0.16 13.12,6.58 6.58,0 0,0 5.2,2.9c2.06,-0.07 4.06,-2 3.62,-4a4.27,4.27 0,1 0,8.17 0.14,7.71 7.71,0 0,0 1,2.63 2.6,2.6 0,0 0,2.37 1.25c1.29,-0.17 2,-1.56 2.34,-2.83a11.66,11.66 0,0 0,-3.31 -10.7,14.06 14.06,0 0,0 -10.72,-3.76 17.92,17.92 0,0 0,-10.54 4.6"/>
<path android:fillColor="#263238" android:pathData="M257.13,125.24a20,20 0,0 1,1.72 7.7,10.3 10.3,0 0,1 -2.78,7.23 7,7 0,0 1,-7.3 1.75,8.13 8.13,0 0,1 -1.06,6.85 5.21,5.21 0,0 1,-6.37 1.68c-1.9,-1 -2.72,-3.34 -3,-5.49a17.56,17.56 0,0 1,19.11 -19.6"/>
<path android:fillColor="#b77153" android:pathData="M247.77,146.26a3,3 0,0 0,-3.63 0.8,4.93 4.93,0 0,0 4.75,8.19"/>
<path android:fillColor="#995037" android:pathData="M247.38,152.65s-0.38,0.09 -1,-0.09a2.55,2.55 0,0 1,-1.73 -1.61,1.84 1.84,0 0,1 0.07,-1.37 2,2 0,0 1,0.73 -0.83c0.53,-0.34 0.94,-0.32 0.94,-0.27s-0.34,0.15 -0.77,0.51a1.7,1.7 0,0 0,-0.58 1.84,2.55 2.55,0 0,0 1.44,1.46C247,152.52 247.39,152.58 247.38,152.65Z"/>
<path android:fillColor="#0298E1" android:pathData="M253.2,160.41s0,-0.6 -0.26,-1.62a6.62,6.62 0,0 0,-2.38 -3.64,6.5 6.5,0 0,0 -2.73,-1.26 6.64,6.64 0,0 0,-3.43 0.23,6.55 6.55,0 0,0 -3.06,2.22 6.5,6.5 0,0 0,-0.15 7.68,6.2 6.2,0 0,0 1.35,1.4 6.13,6.13 0,0 0,1.62 0.93,6.58 6.58,0 0,0 3.42,0.36 6.4,6.4 0,0 0,2.78 -1.15,6.71 6.71,0 0,0 2.52,-3.54c0.29,-1 0.27,-1.62 0.32,-1.61a2.75,2.75 0,0 1,0 0.43,5.3 5.3,0 0,1 -0.18,1.22 6.66,6.66 0,0 1,-2.5 3.74,6.8 6.8,0 0,1 -2.89,1.25 6.87,6.87 0,0 1,-3.61 -0.35,6.87 6.87,0 0,1 -3.17,-2.45 6.84,6.84 0,0 1,0.16 -8.16,6.9 6.9,0 0,1 3.26,-2.33 6.82,6.82 0,0 1,3.62 -0.2,6.79 6.79,0 0,1 5.2,5.19 5.84,5.84 0,0 1,0.12 1.23A2.06,2.06 0,0 1,253.2 160.41Z"/>
<path android:fillColor="#455a64" android:pathData="M275.82,121.31s0.07,0 0.21,0.06a1.65,1.65 0,0 1,0.54 0.34,2.51 2.51,0 0,1 0.69,2.26 3.22,3.22 0,0 1,-2.67 2.37,6.68 6.68,0 0,1 -4.53,-1.09l-1.6,-0.92 1.75,0.58a1.89,1.89 0,0 1,1.19 1.35,2.46 2.46,0 0,1 -0.25,1.85 2.58,2.58 0,0 1,-1.57 1.11,3.63 3.63,0 0,1 -2,0 6.67,6.67 0,0 1,-3.36 -2.91l-1.12,-1.63 1.42,1.38a3.08,3.08 0,0 1,0.76 2.92,3.18 3.18,0 0,1 -1.71,2.17 4.15,4.15 0,0 1,-4.4 -0.53,5.28 5.28,0 0,1 -1.67,-2.48 5,5 0,0 1,-0.18 -0.78,1.18 1.18,0 0,1 0,-0.28s0.08,0.37 0.33,1a5.32,5.32 0,0 0,1.7 2.33,3.89 3.89,0 0,0 4.08,0.43 2.9,2.9 0,0 0,1.51 -2,2.72 2.72,0 0,0 -0.68,-2.54l0.31,-0.26a6.35,6.35 0,0 0,3.15 2.74,2.72 2.72,0 0,0 3.07,-0.89 1.84,1.84 0,0 0,-0.72 -2.63l0.16,-0.35a6.41,6.41 0,0 0,4.28 1.1,3 3,0 0,0 2.51,-2.1 2.43,2.43 0,0 0,-0.56 -2.12A3.24,3.24 0,0 0,275.82 121.31Z"/>
<path android:fillColor="#455a64" android:pathData="M255.23,135.12s0,0.06 -0.1,0.15a3.63,3.63 0,0 1,-0.36 0.38,5 5,0 0,1 -4.85,1.08 5.21,5.21 0,0 1,-3.07 -2.65l0.32,-0.05a5,5 0,1 1,-8.41 -4.39l0.27,0.29a5.16,5.16 0,0 1,-3.25 1.18,5.58 5.58,0 0,1 -3.05,-0.83 4.57,4.57 0,0 1,-1.82 -2.15,5.39 5.39,0 0,1 0.88,-5.53 3.21,3.21 0,0 1,1 -0.78,10.46 10.46,0 0,0 -0.84,0.87 5.33,5.33 0,0 0,-1.13 3.07,5.13 5.13,0 0,0 0.41,2.25 4.37,4.37 0,0 0,1.73 2,5.3 5.3,0 0,0 2.87,0.74 4.7,4.7 0,0 0,3 -1.1l0.27,0.29a4.78,4.78 0,0 0,-1 5.2,4.71 4.71,0 0,0 5.16,2.62 4.78,4.78 0,0 0,3.61 -3.76l0.09,-0.54 0.24,0.49a4.92,4.92 0,0 0,2.84 2.54,4.8 4.8,0 0,0 3,0 5.15,5.15 0,0 0,1.72 -0.91C255.05,135.29 255.21,135.1 255.23,135.12Z"/>
<path android:fillColor="#455a64" android:pathData="M239.9,148.86a1.72,1.72 0,0 1,-0.67 0.4,4.52 4.52,0 0,1 -5.08,-1.1 4.78,4.78 0,0 1,-1.17 -4l0.36,0.16a7.93,7.93 0,0 1,-2.9 2.37,6.26 6.26,0 0,1 -2.82,0.6 5.84,5.84 0,0 1,-2.59 -0.71,4.57 4.57,0 0,1 -2.46,-3.66 4.37,4.37 0,0 1,0.79 -2.9,4.05 4.05,0 0,1 0.58,-0.59 0.9,0.9 0,0 1,0.24 -0.15s-0.3,0.26 -0.69,0.83a4.41,4.41 0,0 0,-0.63 2.78,4.31 4.31,0 0,0 2.35,3.36 5.6,5.6 0,0 0,5 0.07,7.66 7.66,0 0,0 2.76,-2.24l0.5,-0.65 -0.14,0.81a4.43,4.43 0,0 0,1 3.66,4.32 4.32,0 0,0 2.72,1.42 4.91,4.91 0,0 0,2.07 -0.21C239.65,149 239.89,148.84 239.9,148.86Z"/>
<path android:fillColor="#455a64" android:pathData="M283.66,132.12a2.51,2.51 0,0 1,0.18 1.43,5.28 5.28,0 0,1 -1.41,3.17 5.2,5.2 0,0 1,-3.11 1.55,2.57 2.57,0 0,1 -1.43,-0.1c0,-0.07 0.55,0 1.38,-0.18a5.31,5.31 0,0 0,4.28 -4.47C283.68,132.67 283.6,132.13 283.66,132.12Z"/>
<path android:fillColor="#455a64" android:pathData="M288.39,140.21a1.26,1.26 0,0 1,0.2 0.59,3.45 3.45,0 0,1 -0.16,1.7 2.62,2.62 0,0 1,-1.87 1.71,2.67 2.67,0 0,1 -1.57,-0.13 2.17,2.17 0,0 1,-1.23 -1.19l0.39,-0.13a2.61,2.61 0,0 1,0.1 0.75,3.1 3.1,0 0,1 -1.94,2.76 2.55,2.55 0,0 1,-1.54 0.06,2.89 2.89,0 0,1 -1.16,-0.64 2.83,2.83 0,0 1,-0.94 -1.62,1.2 1.2,0 0,1 0,-0.68s0,0.24 0.13,0.65a2.86,2.86 0,0 0,1 1.43,2.39 2.39,0 0,0 2.37,0.44 2.71,2.71 0,0 0,1.66 -2.4,2.62 2.62,0 0,0 -0.07,-0.64l0.38,-0.13a2.09,2.09 0,0 0,2.34 1.11,2.36 2.36,0 0,0 1.69,-1.46 3.54,3.54 0,0 0,0.26 -1.57A3.89,3.89 0,0 1,288.39 140.21Z"/>
<path android:fillColor="#263238" android:pathData="M264.1,152.55s0.09,0.18 0,0.44a1.84,1.84 0,0 1,-1.53 1.27c-0.27,0 -0.43,0 -0.43,-0.1s0.6,-0.17 1.12,-0.62S264,152.53 264.1,152.55Z"/>
<path android:fillColor="#263238" android:pathData="M275,143.82a1.24,1.24 0,0 1,-1.2 1.26,1.19 1.19,0 0,1 -1.29,-1.13 1.26,1.26 0,0 1,1.2 -1.26A1.19,1.19 0,0 1,275 143.82Z"/>
<path android:fillColor="#263238" android:pathData="M276.54,142.69c-0.16,0.16 -1.1,-0.54 -2.45,-0.54s-2.33,0.68 -2.48,0.51 0.09,-0.36 0.52,-0.68a3.45,3.45 0,0 1,2 -0.61,3.29 3.29,0 0,1 1.95,0.63C276.47,142.32 276.61,142.61 276.54,142.69Z"/>
<path android:fillColor="#263238" android:pathData="M262,143.82a1.26,1.26 0,0 1,-1.21 1.26,1.19 1.19,0 0,1 -1.28,-1.13 1.24,1.24 0,0 1,1.2 -1.26A1.19,1.19 0,0 1,262 143.82Z"/>
<path android:fillColor="#263238" android:pathData="M263.31,142.69c-0.16,0.16 -1.11,-0.54 -2.45,-0.54s-2.33,0.68 -2.48,0.51 0.08,-0.36 0.52,-0.68a3.45,3.45 0,0 1,2 -0.61,3.32 3.32,0 0,1 1.95,0.63C263.24,142.32 263.38,142.61 263.31,142.69Z"/>
<path android:fillColor="#263238" android:pathData="M267.91,152.8a9.21,9.21 0,0 1,2.19 -0.39c0.34,0 0.66,-0.1 0.72,-0.34a1.73,1.73 0,0 0,-0.23 -1l-1,-2.61a45.75,45.75 0,0 1,-2.29 -6.85,45.14 45.14,0 0,1 2.83,6.65l1,2.63a2,2 0,0 1,0.17 1.35,0.87 0.87,0 0,1 -0.56,0.5 2.17,2.17 0,0 1,-0.58 0.08A8.65,8.65 0,0 1,267.91 152.8Z"/>
<path android:fillColor="#995037" android:pathData="M267.33,157.42a1.18,1.18 0,0 0,-1.31 -1.77,1 1,0 0,0 -0.71,-1.07 1.48,1.48 0,0 0,-1.33 0.23,2.07 2.07,0 0,0 -0.68,2.41 2.28,2.28 0,0 0,2.16 1.34,2.5 2.5,0 0,0 2.1,-1.47"/>
<path android:fillColor="#263238" android:pathData="M264,153.73c0.22,0 0.22,1.45 1.47,2.49s2.81,0.88 2.82,1.08 -0.35,0.28 -1,0.3a3.63,3.63 0,0 1,-2.35 -0.82,3.16 3.16,0 0,1 -1.14,-2.08C263.69,154.09 263.85,153.73 264,153.73Z"/>
<path android:fillColor="#263238" android:pathData="M264.48,140.33c-0.13,0.37 -1.47,0.19 -3.05,0.38s-2.86,0.62 -3.07,0.29c-0.09,-0.15 0.13,-0.5 0.65,-0.85a5.33,5.33 0,0 1,4.66 -0.52C264.25,139.87 264.54,140.16 264.48,140.33Z"/>
<path android:fillColor="#263238" android:pathData="M276.35,140.09c-0.24,0.3 -1.16,0 -2.28,0s-2.06,0.21 -2.27,-0.11c-0.1,-0.16 0.05,-0.46 0.46,-0.75a3.1,3.1 0,0 1,1.85 -0.5,3.15 3.15,0 0,1 1.82,0.61C276.33,139.62 276.46,139.94 276.35,140.09Z"/>
<path android:fillColor="#995037" android:pathData="M268,167.16a20.51,20.51 0,0 1,-11.14 -3.65s2.62,6.26 11,5.76Z"/>
<path android:fillColor="#fafafa" android:pathData="M211.89,450.69s0,-0.19 0.08,-0.54l0.27,-1.59c0.26,-1.42 0.63,-3.47 1.11,-6.11 1,-5.3 2.42,-13 4.25,-22.41 3.65,-18.92 8.91,-45 15.12,-73.74s12.22,-54.67 16.72,-73.4c2.24,-9.37 4.09,-16.94 5.4,-22.16l1.51,-6c0.18,-0.67 0.31,-1.19 0.41,-1.56a5.19,5.19 0,0 1,0.16 -0.53s0,0.19 -0.11,0.54 -0.2,0.9 -0.35,1.58l-1.42,6c-1.25,5.27 -3,12.85 -5.25,22.21 -4.4,18.75 -10.34,44.69 -16.56,73.42s-11.53,54.8 -15.27,73.7c-1.86,9.43 -3.36,17.07 -4.41,22.38l-1.2,6.09 -0.33,1.58A4.9,4.9 0,0 1,211.89 450.69Z"/>
<path android:fillColor="#fafafa" android:pathData="M248.82,240.78c0.15,0 -9.37,46.71 -21.24,104.26S206,449.23 205.82,449.2s9.37,-46.7 21.25,-104.27S248.68,240.75 248.82,240.78Z"/>
<path android:fillColor="#fafafa" android:pathData="M245,240.29l-0.24,0.51c-0.17,0.34 -0.41,0.83 -0.73,1.45l-1.2,2.36 -0.78,1.51 -0.79,1.75c-0.57,1.24 -1.19,2.62 -1.88,4.12s-1.28,3.2 -2,5c-1.39,3.61 -2.84,7.77 -4.23,12.42a260,260 0,0 0,-7.34 33.34c-2.05,12.7 -3.67,26.76 -5.64,41.48 -4,29.46 -9.09,55.89 -13.32,74.9 -2.11,9.5 -4,17.16 -5.29,22.44L200,447.63c-0.19,0.68 -0.33,1.2 -0.43,1.57a5,5 0,0 1,-0.16 0.54s0,-0.19 0.11,-0.55l0.37,-1.59c0.34,-1.41 0.84,-3.46 1.47,-6.09 1.26,-5.29 3.06,-13 5.12,-22.47 4.14,-19 9.19,-45.45 13.16,-74.89 2,-14.71 3.61,-28.77 5.68,-41.48a256.7,256.7 0,0 1,7.46 -33.37c1.42,-4.66 2.9,-8.82 4.31,-12.42q1.11,-2.69 2.06,-5l1.91,-4.11c0.29,-0.61 0.57,-1.19 0.82,-1.74s0.55,-1 0.8,-1.5l1.25,-2.34 0.78,-1.43A5.45,5.45 0,0 1,245 240.29Z"/>
<path android:fillColor="#fafafa" android:pathData="M266.74,240.39s0,0.18 0,0.55 0,0.93 0,1.63c0,1.45 0,3.56 0,6.26s-0.05,6 -0.15,9.91 -0.15,8.25 -0.32,13.11c-0.26,9.72 -0.74,21.29 -1.35,34.13s-1.43,26.95 -2.36,41.75c-3.94,59 -7,104.35 -7.17,107.21 0,0 0,-0.19 0,-0.56s0,-0.92 0.07,-1.62c0.07,-1.45 0.17,-3.56 0.31,-6.25 0.28,-5.43 0.74,-13.29 1.33,-23 1.26,-19.42 3,-46.22 4.93,-75.82 0.93,-14.8 1.74,-28.91 2.4,-41.74s1.15,-24.4 1.46,-34.12c0.19,-4.86 0.29,-9.25 0.4,-13.11s0.19,-7.18 0.24,-9.9 0.11,-4.81 0.14,-6.26c0,-0.7 0,-1.24 0,-1.63S266.74,240.39 266.74,240.39Z"/>
<path android:fillColor="#fafafa" android:pathData="M265.64,454.72s0,-0.18 0,-0.55 0,-0.92 0.06,-1.61c0.07,-1.44 0.16,-3.52 0.29,-6.2 0.24,-5.4 0.6,-13.18 1,-22.79 0.84,-19.25 1.85,-45.84 2.86,-75.22s1.84,-56 2.47,-75.25c0.31,-9.61 0.56,-17.4 0.74,-22.81 0.09,-2.67 0.16,-4.76 0.21,-6.19 0,-0.7 0.06,-1.23 0.07,-1.62s0.05,-0.55 0.05,-0.55 0,0.19 0,0.55l0,1.62c0,1.44 -0.07,3.52 -0.12,6.2 -0.14,5.41 -0.33,13.19 -0.57,22.81 -0.52,19.26 -1.3,45.87 -2.32,75.26s-2.08,56 -3,75.22c-0.47,9.62 -0.87,17.41 -1.2,22.79 -0.17,2.67 -0.3,4.75 -0.39,6.19 0,0.69 -0.08,1.22 -0.11,1.61S265.64,454.72 265.64,454.72Z"/>
<path android:fillColor="#fafafa" android:pathData="M272.82,453.43s0,-0.19 0,-0.55 0,-0.91 0.06,-1.6c0.06,-1.43 0.15,-3.5 0.26,-6.16 0.25,-5.36 0.62,-13.09 1.07,-22.63 0.94,-19.12 2.26,-45.52 3.85,-74.67 0.8,-14.58 1.56,-28.48 2.46,-41.09 0.27,-6.31 0.17,-12.32 0.09,-17.94s-0.24,-10.86 -0.39,-15.64c-0.31,-9.57 -0.63,-17.3 -0.85,-22.65 -0.1,-2.65 -0.19,-4.72 -0.25,-6.15 0,-0.69 0,-1.22 -0.05,-1.6s0,-0.55 0,-0.55 0,0.18 0.06,0.54 0.06,0.92 0.11,1.6c0.08,1.43 0.2,3.5 0.35,6.15 0.28,5.35 0.65,13.08 1,22.64 0.17,4.78 0.34,10 0.45,15.65s0.22,11.64 0,18c-0.88,12.63 -1.62,26.52 -2.42,41.1 -1.56,29.14 -3,55.53 -4,74.66 -0.52,9.53 -0.94,17.26 -1.24,22.62 -0.15,2.66 -0.28,4.73 -0.36,6.16 0,0.68 -0.08,1.21 -0.11,1.59S272.82,453.43 272.82,453.43Z"/>
<path android:fillColor="#b77153" android:pathData="M209.88,287.84c-0.22,0.76 -0.46,1.65 -0.7,2.72a8.11,8.11 0,0 0,-0.12 2.78,12.46 12.46,0 0,0 0.78,3.38c0.48,1 -0.45,2 -1.32,1.56s-2.25,-3 -2.37,-6.49 -3.39,0.88 -4.61,2.44 -5.22,6.18 -6,6.18c-1.14,0 -1.35,-1.21 -0.1,-2.73s4.7,-6.36 3.85,-7 -6.94,7.39 -6.94,7.39 -1,1.92 -2,1.26c-1.82,-1.2 5.3,-9.22 6,-10 0.48,-0.52 -0.42,-1.21 -0.91,-0.62s-5.91,8.11 -7.77,6.9c-1.43,-0.92 5.79,-6.65 6.05,-8.83s-5,4.9 -6.36,4c-0.5,-0.35 -0.82,-0.68 2.81,-4.3 1.75,-1.76 8.52,-7.1 8.52,-7.1l13.72,-47.94h18Z"/>
<path android:fillColor="#0298E1" android:pathData="M206.38,234.5c3.29,-10.95 9.05,-30.23 11.83,-40.59 4,-15 27.7,-20.64 27.7,-20.64l21.22,-1a11.39,11.39 0,0 1,2.94 -0.17c9.71,0.48 16.72,9.57 15.23,19.18l-3.17,20.51 0.69,39.57L235.93,247s4,-13.43 4.18,-17.57 -3.62,-12.88 -3.62,-12.88l-6.1,20.1Z"/>
<path android:fillColor="#0298E1" android:pathData="M283.34,180.43l13.99,31.27l-15.38,16.04l1.39,-47.31z"/>
<path android:fillColor="#263238" android:pathData="M279.78,184.86a11.82,11.82 0,0 1,0.68 1.66l0.33,0.9 0.32,1.1a27.7,27.7 0,0 1,0.69 2.7c0.11,0.51 0.22,1 0.34,1.59s0.17,1.14 0.27,1.74c0.21,1.2 0.3,2.5 0.45,3.86 0.21,2.72 0.3,5.73 0.26,8.88 -0.09,6.3 -0.46,12 -0.55,16.1 -0.05,2.06 -0.08,3.72 -0.07,4.88a13.25,13.25 0,0 1,-0.05 1.79,10.91 10.91,0 0,1 -0.15,-1.79c-0.07,-1.15 -0.1,-2.82 -0.09,-4.89 0,-4.12 0.3,-9.82 0.39,-16.1 0,-3.14 0,-6.12 -0.22,-8.83 -0.14,-1.35 -0.21,-2.65 -0.4,-3.84 -0.08,-0.59 -0.16,-1.17 -0.24,-1.73s-0.2,-1.07 -0.3,-1.58c-0.17,-1 -0.41,-1.91 -0.61,-2.7l-0.28,-1.11 -0.29,-0.91A12.42,12.42 0,0 1,279.78 184.86Z"/>
<path android:fillColor="#263238" android:pathData="M241,200.49a76.82,76.82 0,0 1,-2.27 8.63,76 76,0 0,1 -2.77,8.48A76.82,76.82 0,0 1,238.2 209,78.55 78.55,0 0,1 241,200.49Z"/>
<path android:fillColor="#fafafa" android:pathData="M279.63,175.46a8.58,8.58 0,0 1,0.39 2.88,13.42 13.42,0 0,1 -2.52,7.46 17,17 0,0 1,-3.82 4,19.2 19.2,0 0,1 -5.66,2.8 34.83,34.83 0,0 1,-14.34 0.87c-5.09,-0.62 -9.83,-1.69 -14.2,-2.22a37.72,37.72 0,0 0,-11.63 0.07,22 22,0 0,0 -7.36,2.63c-1.6,0.94 -2.37,1.65 -2.41,1.6a4.35,4.35 0,0 1,0.56 -0.51,6.08 6.08,0 0,1 0.71,-0.56 11.32,11.32 0,0 1,1 -0.71,21.59 21.59,0 0,1 7.4,-2.81 37.26,37.26 0,0 1,11.75 -0.19c4.41,0.51 9.16,1.57 14.21,2.18a34.7,34.7 0,0 0,14.14 -0.81,18.79 18.79,0 0,0 5.54,-2.69 16.42,16.42 0,0 0,3.77 -3.83,13.5 13.5,0 0,0 2.62,-7.26A18.48,18.48 0,0 0,279.63 175.46Z"/>
<path android:fillColor="#fafafa" android:pathData="M216.51,206.45c-0.13,-0.09 1.45,-2.26 3,-5.14s2.6,-5.36 2.75,-5.31a19.5,19.5 0,0 1,-2.29 5.56A19.3,19.3 0,0 1,216.51 206.45Z"/>
<path android:fillColor="#fafafa" android:pathData="M224.28,207.89a39,39 0,0 1,2.25 -6,41.08 41.08,0 0,1 2.74,-5.86A40.53,40.53 0,0 1,227 202,40.61 40.61,0 0,1 224.28,207.89Z"/>
<path android:fillColor="#fafafa" android:pathData="M232.54,207.32a31.87,31.87 0,0 1,1.66 -5.43,32.26 32.26,0 0,1 2.15,-5.25 29.83,29.83 0,0 1,-1.66 5.43A30.27,30.27 0,0 1,232.54 207.32Z"/>
<path android:fillColor="#fafafa" android:pathData="M249.3,209s0,0.1 0,0.3l-0.15,0c0,-0.76 0.14,-3.15 0.43,-6a36.81,36.81 0,0 1,0.9 -6.22,38.94 38.94,0 0,1 -0.38,6.28c-0.29,2.82 -0.61,5.2 -0.8,5.93l-0.15,0C249.23,209.07 249.27,209 249.3,209Z"/>
<path android:fillColor="#fafafa" android:pathData="M258.29,208.35s0,0.13 -0.1,0.33l-0.13,0.27 0,-0.32c-0.06,-0.77 0,-3 -0.16,-5.62 -0.17,-3.28 -0.55,-5.92 -0.39,-5.94a21.2,21.2 0,0 1,0.91 5.92,29.22 29.22,0 0,1 -0.19,5.65l-0.15,0C258.19,208.41 258.27,208.34 258.29,208.35Z"/>
<path android:fillColor="#fafafa" android:pathData="M268.4,207.08a30.16,30.16 0,0 1,-1.5 -5.38,29.54 29.54,0 0,1 -1,-5.51 30.44,30.44 0,0 1,1.5 5.39A30.54,30.54 0,0 1,268.4 207.08Z"/>
<path android:fillColor="#fafafa" android:pathData="M275.35,202.83c-0.15,0 -0.47,-2 -1.15,-4.52s-1.43,-4.42 -1.29,-4.48a13.18,13.18 0,0 1,1.8 4.35A12.79,12.79 0,0 1,275.35 202.83Z"/>
<path android:fillColor="#fafafa" android:pathData="M279.87,198.35a42.08,42.08 0,0 0,-1 -4.44,42.51 42.51,0 0,0 -2,-4.1 10.5,10.5 0,0 1,3 8.54Z"/>
<path android:fillColor="#fafafa" android:pathData="M280.6,206.08a1.61,1.61 0,0 1,-0.21 0.39c-0.16,0.24 -0.38,0.61 -0.72,1.05a26.46,26.46 0,0 1,-3.05 3.51,30.65 30.65,0 0,1 -28.44,8.07 28.19,28.19 0,0 1,-4.44 -1.38c-0.51,-0.2 -0.89,-0.4 -1.15,-0.52s-0.4,-0.2 -0.39,-0.22a12.1,12.1 0,0 1,1.61 0.55,34.46 34.46,0 0,0 4.45,1.21 31.42,31.42 0,0 0,28.11 -8,33.37 33.37,0 0,0 3.14,-3.38A13.18,13.18 0,0 1,280.6 206.08Z"/>
<path android:fillColor="#fafafa" android:pathData="M233.42,183.63c-0.06,0 0.23,-0.61 1.15,-0.66a1.77,1.77 0,0 1,1.41 0.59,1.79 1.79,0 0,1 -1.48,2.84 1.77,1.77 0,0 1,-1.29 -0.82c-0.48,-0.78 -0.16,-1.37 -0.12,-1.32s-0.05,0.53 0.42,1.11a1.46,1.46 0,0 0,1 0.55,1.35 1.35,0 0,0 1.08,-2.06 1.48,1.48 0,0 0,-1 -0.52C233.83,183.28 233.48,183.7 233.42,183.63Z"/>
<path android:fillColor="#fafafa" android:pathData="M246.71,185.68c0,0.08 -0.57,0.17 -0.91,0.91a1.54,1.54 0,0 0,0 1.28,1.41 1.41,0 0,0 2.49,-0.23 1.59,1.59 0,0 0,-0.27 -1.26c-0.48,-0.66 -1.09,-0.63 -1.07,-0.72s0.13,-0.09 0.39,0a1.58,1.58 0,0 1,1 0.54,1.83 1.83,0 0,1 0.45,1.6 1.85,1.85 0,0 1,-3.38 0.33,1.87 1.87,0 0,1 0.13,-1.66 1.64,1.64 0,0 1,0.84 -0.72C246.56,185.62 246.71,185.65 246.71,185.68Z"/>
<path android:fillColor="#fafafa" android:pathData="M262.22,186.59c-0.05,-0.05 0.58,-0.27 1.24,0.34a1.66,1.66 0,0 1,0.53 1.39,1.69 1.69,0 0,1 -3,0.69 1.67,1.67 0,0 1,-0.13 -1.49c0.33,-0.83 1,-0.9 1,-0.84s-0.45,0.26 -0.62,1a1.37,1.37 0,0 0,0.17 1.1,1.25 1.25,0 0,0 2.14,-0.49 1.36,1.36 0,0 0,-0.33 -1.07C262.74,186.63 262.21,186.68 262.22,186.59Z"/>
<path android:fillColor="#fafafa" android:pathData="M273.76,179.25c0,-0.05 0.66,0 1.26,0.77a2,2 0,0 1,-1.1 3.15,1.89 1.89,0 0,1 -1.95,-0.73 1.57,1.57 0,0 1,-0.08 -1.7,1.54 1.54,0 0,1 0.88,-0.72c0.26,-0.07 0.41,0 0.41,0s-0.61,0.12 -1,0.88a1.18,1.18 0,0 0,0.14 1.24,1.44 1.44,0 0,0 1.43,0.52 1.59,1.59 0,0 0,1.1 -1.12,1.71 1.71,0 0,0 -0.18,-1.33C274.29,179.51 273.72,179.33 273.76,179.25Z"/>
<path android:fillColor="#fafafa" android:pathData="M217.77,223c-0.05,0 0.47,-0.35 1.21,0a1.67,1.67 0,0 1,0.82 1.14,1.68 1.68,0 0,1 -2.46,1.65 1.71,1.71 0,0 1,-0.74 -1.18c-0.09,-0.84 0.39,-1.2 0.41,-1.14s-0.21,0.43 0,1.07a1.43,1.43 0,0 0,0.63 0.84,1.24 1.24,0 0,0 1.73,-1.17 1.35,1.35 0,0 0,-0.54 -0.9C218.25,223 217.78,223.11 217.77,223Z"/>
<path android:fillColor="#fafafa" android:pathData="M227.26,223.75c0,-0.05 0.58,-0.28 1.26,0.31a1.71,1.71 0,0 1,0.58 1.37,1.73 1.73,0 0,1 -3,0.92 1.73,1.73 0,0 1,-0.3 -1.46c0.23,-0.87 0.87,-1 0.86,-1s-0.41,0.32 -0.49,1a1.38,1.38 0,0 0,0.3 1.08,1.29 1.29,0 0,0 2.13,-0.65 1.42,1.42 0,0 0,-0.36 -1.07C227.78,223.78 227.26,223.83 227.26,223.75Z"/>
<path android:fillColor="#fafafa" android:pathData="M246.92,226.4s0,-0.15 0.22,-0.29a1.21,1.21 0,0 1,1 -0.14,1.28 1.28,0 0,1 1,1.16 1.61,1.61 0,0 1,-1 1.57,1.79 1.79,0 0,1 -1.8,-0.32 1.81,1.81 0,0 1,-0.62 -1.34c0,-0.86 0.41,-1.25 0.44,-1.21a6.81,6.81 0,0 0,-0.08 1.18,1.5 1.5,0 0,0 0.57,1 1.34,1.34 0,0 0,1.3 0.22,1.19 1.19,0 0,0 0.67,-1.07 0.9,0.9 0,0 0,-0.6 -0.83A1.48,1.48 0,0 0,246.92 226.4Z"/>
<path android:fillColor="#fafafa" android:pathData="M258.31,225.12s0,-0.18 0.21,-0.37a1.17,1.17 0,0 1,1.15 -0.19,1.38 1.38,0 0,1 0.85,1.51 1.9,1.9 0,0 1,-1.41 1.57,2.39 2.39,0 0,1 -2.08,-0.32 1.46,1.46 0,0 1,-0.57 -0.8,1 1,0 0,1 0.13,-0.87 1.11,1.11 0,0 1,1.05 -0.53c0.29,0.07 0.37,0.24 0.35,0.25s-0.15,-0.06 -0.37,-0.05a0.92,0.92 0,0 0,-0.71 0.52,0.84 0.84,0 0,0 0.4,1.09 2,2 0,0 0,1.65 0.21,1.46 1.46,0 0,0 1.09,-1.13 1,1 0,0 0,-0.51 -1.11,1.06 1.06,0 0,0 -0.9,0C258.43,225 258.35,225.14 258.31,225.12Z"/>
<path android:fillColor="#fafafa" android:pathData="M267.06,223.63s0,-0.17 0.22,-0.34a1.16,1.16 0,0 1,1.11 -0.11,1.38 1.38,0 0,1 0.65,0.47 1.27,1.27 0,0 1,0.24 0.93,2 2,0 0,1 -1.26,1.59 2.11,2.11 0,0 1,-2 -0.22,1.37 1.37,0 0,1 -0.53,-0.79 1.22,1.22 0,0 1,1.06 -1.44c0.28,0 0.39,0.14 0.37,0.16s-0.15,0 -0.35,0a1,1 0,0 0,-0.62 0.58,0.83 0.83,0 0,0 0.35,1.06 1.67,1.67 0,0 0,1.53 0.13,1.62 1.62,0 0,0 1,-1.17 0.92,0.92 0,0 0,-0.55 -1,1 1,0 0,0 -0.87,-0.06C267.19,223.55 267.1,223.66 267.06,223.63Z"/>
<path android:fillColor="#fafafa" android:pathData="M276.77,219.1c0,0.09 -0.64,0.1 -1.09,0.87a1.64,1.64 0,0 0,-0.16 1.38,1.36 1.36,0 0,0 1.38,0.79 1.38,1.38 0,0 0,1.32 -0.89,1.65 1.65,0 0,0 -0.27,-1.37c-0.52,-0.73 -1.18,-0.69 -1.16,-0.78s0.14,-0.09 0.43,0a1.74,1.74 0,0 1,1 0.6,2 2,0 0,1 0.44,1.73 2,2 0,0 1,-3.61 0.14,2 2,0 0,1 0.3,-1.75 1.69,1.69 0,0 1,1 -0.68C276.62,219 276.77,219.08 276.77,219.1Z"/>
<path android:fillColor="#fafafa" android:pathData="M288.75,207s0.45,-0.53 1.45,-0.4a1.81,1.81 0,0 1,1.4 1,1.85 1.85,0 0,1 -0.29,2.09 1.7,1.7 0,0 1,-2.11 0.16,1.31 1.31,0 0,1 -0.55,-0.83 1.36,1.36 0,0 1,0.11 -0.84,1.31 1.31,0 0,1 0.87,-0.76c0.28,-0.06 0.42,0 0.42,0s-0.15,0.05 -0.35,0.15a1.19,1.19 0,0 0,-0.6 0.71,0.91 0.91,0 0,0 0.37,1.13 1.22,1.22 0,0 0,1.47 -0.13,1.42 1.42,0 0,0 0.23,-1.52 1.51,1.51 0,0 0,-1 -0.84A3.68,3.68 0,0 0,288.75 207Z"/>
<path android:fillAlpha="0.3" android:fillColor="#FF000000"
android:pathData="M236.34,216.4a21.89,21.89 0,0 0,2.39 5c0.22,0.36 0.61,0.76 1,0.6a0.9,0.9 0,0 0,0.43 -0.57,22.46 22.46,0 0,0 0.13,-16.08 30.52,30.52 0,0 0,-4 11" android:strokeAlpha="0.3"/>
<path android:fillColor="#0298E1" android:pathData="M273.81,458.86l0.06,-11 -20.65,-0.25L253,463.71l1.28,0.1c5.7,0.39 29,1.56 32.8,0.45C291.31,463 273.81,458.86 273.81,458.86Z"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M260.45,463.64a7.12,7.12 0,0 0,-2.58 -4.43,7 7,0 0,0 -4.81,-1.56l-0.07,5.77Z" android:strokeAlpha="0.4"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M282.36,461.2s6.13,1.85 5.35,2.85 -24.36,0.71 -34.75,-0.34l0,-0.46 27.5,0.59S281.15,461.24 282.36,461.2Z" android:strokeAlpha="0.4"/>
<path android:fillColor="#263238" android:pathData="M252.68,463.24l0.35,0 1,0.07 3.75,0.21c3.17,0.16 7.55,0.31 12.39,0.38s9.22,0 12.4,0l3.75,-0.11 1,-0.05a1.65,1.65 0,0 0,0.36 0,1.48 1.48,0 0,0 -0.36,0h-1l-3.76,0c-3.17,0 -7.55,0 -12.39,0s-9.21,-0.19 -12.38,-0.3l-3.76,-0.13 -1,0Z"/>
<path android:fillColor="#263238" android:pathData="M280.49,464.16a7.66,7.66 0,0 1,0.72 -1.78,8.69 8.69,0 0,1 1.3,-1.43 2.84,2.84 0,0 0,-1.51 1.29A2.77,2.77 0,0 0,280.49 464.16Z"/>
<path android:fillColor="#263238" android:pathData="M274.43,461c0.06,0 0.36,-0.31 0.67,-0.78s0.51,-0.89 0.45,-0.93 -0.36,0.32 -0.66,0.79A2.32,2.32 0,0 0,274.43 461Z"/>
<path android:fillColor="#263238" android:pathData="M272.77,460.08c0.05,0.06 0.38,-0.16 0.74,-0.47s0.61,-0.61 0.57,-0.67 -0.38,0.16 -0.74,0.48S272.73,460 272.77,460.08Z"/>
<path android:fillColor="#263238" android:pathData="M271.74,458.12a2.37,2.37 0,0 0,1.08 0.15,2.32 2.32,0 0,0 1.08,-0.1 2.55,2.55 0,0 0,-1.08 -0.15A2.49,2.49 0,0 0,271.74 458.12Z"/>
<path android:fillColor="#263238" android:pathData="M271.4,456.74a2,2 0,0 0,1.19 0.37,2.21 2.21,0 0,0 1.25,-0.15 6.69,6.69 0,0 0,-1.22 -0.1A6.4,6.4 0,0 0,271.4 456.74Z"/>
<path android:fillColor="#263238" android:pathData="M275.16,459.2a4.37,4.37 0,0 0,1.33 0,8.36 8.36,0 0,0 1.41,-0.3 3.78,3.78 0,0 0,0.81 -0.32,0.74 0.74,0 0,0 0.34,-0.41 0.51,0.51 0,0 0,-0.2 -0.53,2.41 2.41,0 0,0 -3,0.67 2.35,2.35 0,0 0,-0.45 0.88,1 1,0 0,0 0,0.36 4,4 0,0 1,0.62 -1.12,2.4 2.4,0 0,1 1.14,-0.73 2.07,2.07 0,0 1,1.58 0.13c0.21,0.16 0.13,0.41 -0.11,0.54a3.82,3.82 0,0 1,-0.75 0.31,9.08 9.08,0 0,1 -1.37,0.34C275.66,459.16 275.16,459.16 275.16,459.2Z"/>
<path android:fillColor="#263238" android:pathData="M275.5,459.27a1.32,1.32 0,0 0,0.17 -0.92,2.33 2.33,0 0,0 -0.35,-1 1.37,1.37 0,0 0,-1.1 -0.69,0.54 0.54,0 0,0 -0.42,0.61 1.59,1.59 0,0 0,0.22 0.6,3.91 3.91,0 0,0 0.62,0.81c0.41,0.41 0.73,0.57 0.75,0.54s-0.26,-0.24 -0.62,-0.66a4.21,4.21 0,0 1,-0.55 -0.81c-0.18,-0.28 -0.29,-0.78 0,-0.84s0.67,0.31 0.87,0.57a2.34,2.34 0,0 1,0.36 0.87A4,4 0,0 1,275.5 459.27Z"/>
<path android:fillColor="#263238" android:pathData="M253.17,457.59c0,0.05 0.59,0 1.52,0.07a6.63,6.63 0,0 1,3.31 1.42,6.72 6.72,0 0,1 2.05,3c0.3,0.89 0.32,1.49 0.37,1.48s0,-0.15 0,-0.41a5.83,5.83 0,0 0,-0.21 -1.12,6.31 6.31,0 0,0 -5.51,-4.5 5.81,5.81 0,0 0,-1.13 0A1.58,1.58 0,0 0,253.17 457.59Z"/>
<path android:fillColor="#263238" android:pathData="M255.42,449a36,36 0,0 0,-0.23 4.23,36.82 36.82,0 0,0 0,4.25 69.28,69.28 0,0 0,0.22 -8.48Z"/>
<path android:fillColor="#263238" android:pathData="M263.07,461.66a11.3,11.3 0,0 0,3 0.34,12.06 12.06,0 0,0 3,-0.2c0,-0.08 -1.36,0 -3,-0.05S263.08,461.59 263.07,461.66Z"/>
<path android:fillColor="#263238" android:pathData="M259,461.6c0,0.06 0.1,0.29 0.24,0.6s0.2,0.59 0.28,0.59 0.11,-0.33 -0.05,-0.69S259.07,461.56 259,461.6Z"/>
<path android:fillColor="#263238" android:pathData="M257.53,459.69c0,0.05 0.08,0.26 0.29,0.48s0.42,0.36 0.47,0.31 -0.08,-0.26 -0.29,-0.48S257.58,459.64 257.53,459.69Z"/>
<path android:fillColor="#263238" android:pathData="M255.36,458.79c0,0.07 0.28,0.07 0.59,0.18s0.51,0.28 0.57,0.23 -0.12,-0.33 -0.49,-0.46S255.34,458.73 255.36,458.79Z"/>
<path android:fillColor="#263238" android:pathData="M253.81,458.36c0,0.07 0.09,0.18 0.26,0.24s0.33,0.08 0.35,0 -0.09,-0.17 -0.26,-0.24S253.83,458.3 253.81,458.36Z"/>
<path android:fillColor="#0298E1" android:pathData="M216.92,458.71l2.81,-10.66 -19.93,-5.4 -4.29,15.55 1.22,0.42c5.42,1.79 27.67,8.75 31.65,8.63C232.82,467.12 216.92,458.71 216.92,458.71Z"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M202.78,460a7.17,7.17 0,0 0,-1.39 -4.94,7 7,0 0,0 -4.26,-2.71l-1.52,5.57Z" android:strokeAlpha="0.4"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M224.61,463.11s5.47,3.32 4.46,4.1 -23.76,-5.4 -33.56,-9l0.16,-0.44 26.48,7.44S223.43,462.85 224.61,463.11Z" android:strokeAlpha="0.4"/>
<path android:fillColor="#263238" android:pathData="M195.36,457.67l0.33,0.13 1,0.32 3.58,1.14c3,0.95 7.23,2.19 11.9,3.46s8.93,2.34 12,3.06l3.67,0.83 1,0.21a1.56,1.56 0,0 0,0.35 0.06l-0.34,-0.11 -1,-0.25 -3.64,-0.91c-3.08,-0.77 -7.32,-1.86 -12,-3.13s-8.88,-2.49 -11.92,-3.39l-3.6,-1.06 -1,-0.28Z"/>
<path android:fillColor="#263238" android:pathData="M222.06,465.51A8.53,8.53 0,0 1,223.2 464a9.09,9.09 0,0 1,1.62 -1,2.81 2.81,0 0,0 -1.79,0.87A2.71,2.71 0,0 0,222.06 465.51Z"/>
<path android:fillColor="#263238" android:pathData="M217,460.93c0,0.05 0.42,-0.22 0.83,-0.6s0.72,-0.72 0.67,-0.77 -0.42,0.21 -0.84,0.59S216.94,460.88 217,460.93Z"/>
<path android:fillColor="#263238" android:pathData="M215.61,459.64c0,0.06 0.4,-0.07 0.83,-0.28s0.74,-0.44 0.71,-0.5 -0.4,0.06 -0.83,0.28S215.57,459.58 215.61,459.64Z"/>
<path android:fillColor="#263238" android:pathData="M215.1,457.48c0,0.07 0.43,0.25 1,0.41a2.46,2.46 0,0 0,1.07 0.18c0,-0.07 -0.43,-0.25 -1,-0.42A2.37,2.37 0,0 0,215.1 457.48Z"/>
<path android:fillColor="#263238" android:pathData="M215.11,456.06a2.06,2.06 0,0 0,1.07 0.65,2.13 2.13,0 0,0 1.24,0.17 6.25,6.25 0,0 0,-1.16 -0.41A6.38,6.38 0,0 0,215.11 456.06Z"/>
<path android:fillColor="#263238" android:pathData="M218.14,459.37a3.66,3.66 0,0 0,1.28 0.34,7.19 7.19,0 0,0 1.44,0.07 3.4,3.4 0,0 0,0.87 -0.11,0.75 0.75,0 0,0 0.43,-0.31 0.52,0.52 0,0 0,-0.06 -0.56,2.43 2.43,0 0,0 -3.09,-0.1 2.19,2.19 0,0 0,-0.65 0.74,0.85 0.85,0 0,0 -0.13,0.33 3.88,3.88 0,0 1,0.88 -0.93,2.41 2.41,0 0,1 1.29,-0.41 2,2 0,0 1,1.5 0.51c0.16,0.21 0,0.43 -0.25,0.5a3.51,3.51 0,0 1,-0.8 0.11,9.31 9.31,0 0,1 -1.41,0C218.64,459.47 218.15,459.33 218.14,459.37Z"/>
<path android:fillColor="#263238" android:pathData="M218.45,459.53a1.36,1.36 0,0 0,0.39 -0.85,2.1 2.1,0 0,0 -0.1,-1 1.29,1.29 0,0 0,-0.88 -0.94,0.52 0.52,0 0,0 -0.56,0.48 1.43,1.43 0,0 0,0.06 0.63,4.15 4.15,0 0,0 0.4,0.94 1.92,1.92 0,0 0,0.59 0.72s-0.19,-0.3 -0.44,-0.8a4.27,4.27 0,0 1,-0.32 -0.92c-0.11,-0.32 -0.1,-0.83 0.24,-0.81s0.57,0.47 0.7,0.78a2.27,2.27 0,0 1,0.13 0.93A4.6,4.6 0,0 1,218.45 459.53Z"/>
<path android:fillColor="#263238" android:pathData="M197.25,452.32c0,0.05 0.58,0.11 1.45,0.46a6.42,6.42 0,0 1,4.09 5.58c0.07,0.93 0,1.51 0,1.52a0.92,0.92 0,0 0,0.11 -0.4,5.57 5.57,0 0,0 0.08,-1.13 6.29,6.29 0,0 0,-4.2 -5.74,5.25 5.25,0 0,0 -1.11,-0.27A1.6,1.6 0,0 0,197.25 452.32Z"/>
<path android:fillColor="#263238" android:pathData="M201.56,444.59a38.1,38.1 0,0 0,-1.28 4.05,35.77 35.77,0 0,0 -1,4.11 37.42,37.42 0,0 0,1.28 -4A35.62,35.62 0,0 0,201.56 444.59Z"/>
<path android:fillColor="#263238" android:pathData="M205.82,458.74a11.35,11.35 0,0 0,2.83 1.08,11.93 11.93,0 0,0 3,0.56c0,-0.07 -1.31,-0.35 -2.91,-0.8S205.85,458.67 205.82,458.74Z"/>
<path android:fillColor="#263238" android:pathData="M201.92,457.67c-0.07,0 0,0.31 0.08,0.64s0.05,0.62 0.12,0.64 0.19,-0.29 0.13,-0.68S202,457.64 201.92,457.67Z"/>
<path android:fillColor="#263238" android:pathData="M200.94,455.44c-0.06,0 0,0.28 0.16,0.54s0.32,0.46 0.38,0.42 0,-0.27 -0.16,-0.54S201,455.41 200.94,455.44Z"/>
<path android:fillColor="#263238" android:pathData="M199.06,454c0,0.07 0.26,0.14 0.53,0.33s0.43,0.39 0.5,0.36 0,-0.35 -0.36,-0.57S199.06,454 199.06,454Z"/>
<path android:fillColor="#263238" android:pathData="M197.67,453.23c0,0.06 0.05,0.19 0.19,0.3s0.3,0.15 0.35,0.1 -0.05,-0.19 -0.2,-0.3S197.71,453.18 197.67,453.23Z"/>
<path android:fillColor="#263238" android:pathData="M274.19,160.27a7.76,7.76 0,0 0,9.15 -11.73c4.42,-1.12 7.18,-6.23 6.29,-10.7s-4.9,-8 -9.36,-8.94a9.89,9.89 0,0 0,-5.18 0.13,6.3 6.3,0 0,0 -3.86,3.31"/>
<path android:fillColor="#0298E1" android:pathData="M273.57,150.25c0,0.05 -0.58,0.15 -1.51,0.64a6.73,6.73 0,0 0,-3 3.19,6.51 6.51,0 0,0 0.5,6.23 6,6 0,0 0,1.23 1.4,6.2 6.2,0 0,0 1.65,1 6.57,6.57 0,0 0,4 0.37A6.46,6.46 0,0 0,280 161a6.7,6.7 0,0 0,1.55 -3.45,6.52 6.52,0 0,0 -2.26,-5.82 6.71,6.71 0,0 0,-4.05 -1.59c-1,0 -1.63,0.13 -1.64,0.08a2.13,2.13 0,0 1,0.41 -0.11,5.22 5.22,0 0,1 1.23,-0.13 6.72,6.72 0,0 1,4.23 1.52,6.78 6.78,0 0,1 2.45,6.1 6.32,6.32 0,0 1,-0.52 1.91,6.41 6.41,0 0,1 -1.09,1.75 6.83,6.83 0,0 1,-8 1.82,6.78 6.78,0 0,1 -3,-2.6 6.76,6.76 0,0 1,-0.44 -6.55,6.65 6.65,0 0,1 3.15,-3.21 5.42,5.42 0,0 1,1.16 -0.42Z"/>
<path android:fillColor="#263238" android:pathData="M276.92,138.08A7.6,7.6 0,0 0,280.49 124a9.43,9.43 0,0 0,-14.08 -11,12.53 12.53,0 0,0 -23.16,3.71 12.1,12.1 0,0 0,-15.53 16.42,9.38 9.38,0 0,0 1.59,18.69 8.27,8.27 0,0 0,12.54 9.28,9 9,0 0,0 16.27,-1.87"/>
<path android:fillColor="#b77153" android:pathData="M267.62,174.33c0.16,-3.76 0.36,-7.17 0.36,-7.17s8.41,-1.06 8.78,-9.65 -0.5,-28.35 -0.5,-28.35l-15.48,-7.43 -13.62,12.2 1.39,40.14c0.37,5.68 3.42,10.52 9.11,10.26h0A10.46,10.46 0,0 0,267.62 174.33Z"/>
<path android:fillColor="#263238" android:pathData="M256,122.21a11.35,11.35 0,0 0,0.16 13.12,6.58 6.58,0 0,0 5.2,2.9c2.06,-0.07 4.06,-2 3.62,-4a4.27,4.27 0,1 0,8.17 0.14,7.71 7.71,0 0,0 1,2.63 2.6,2.6 0,0 0,2.37 1.25c1.29,-0.17 2,-1.56 2.34,-2.83a11.66,11.66 0,0 0,-3.31 -10.7,14.06 14.06,0 0,0 -10.72,-3.76 17.92,17.92 0,0 0,-10.54 4.6"/>
<path android:fillColor="#263238" android:pathData="M257.13,125.24a20,20 0,0 1,1.72 7.7,10.3 10.3,0 0,1 -2.78,7.23 7,7 0,0 1,-7.3 1.75,8.13 8.13,0 0,1 -1.06,6.85 5.21,5.21 0,0 1,-6.37 1.68c-1.9,-1 -2.72,-3.34 -3,-5.49a17.56,17.56 0,0 1,19.11 -19.6"/>
<path android:fillColor="#b77153" android:pathData="M247.77,146.26a3,3 0,0 0,-3.63 0.8,4.93 4.93,0 0,0 4.75,8.19"/>
<path android:fillColor="#995037" android:pathData="M247.38,152.65s-0.38,0.09 -1,-0.09a2.55,2.55 0,0 1,-1.73 -1.61,1.84 1.84,0 0,1 0.07,-1.37 2,2 0,0 1,0.73 -0.83c0.53,-0.34 0.94,-0.32 0.94,-0.27s-0.34,0.15 -0.77,0.51a1.7,1.7 0,0 0,-0.58 1.84,2.55 2.55,0 0,0 1.44,1.46C247,152.52 247.39,152.58 247.38,152.65Z"/>
<path android:fillColor="#0298E1" android:pathData="M253.2,160.41s0,-0.6 -0.26,-1.62a6.62,6.62 0,0 0,-2.38 -3.64,6.5 6.5,0 0,0 -2.73,-1.26 6.64,6.64 0,0 0,-3.43 0.23,6.55 6.55,0 0,0 -3.06,2.22 6.5,6.5 0,0 0,-0.15 7.68,6.2 6.2,0 0,0 1.35,1.4 6.13,6.13 0,0 0,1.62 0.93,6.58 6.58,0 0,0 3.42,0.36 6.4,6.4 0,0 0,2.78 -1.15,6.71 6.71,0 0,0 2.52,-3.54c0.29,-1 0.27,-1.62 0.32,-1.61a2.75,2.75 0,0 1,0 0.43,5.3 5.3,0 0,1 -0.18,1.22 6.66,6.66 0,0 1,-2.5 3.74,6.8 6.8,0 0,1 -2.89,1.25 6.87,6.87 0,0 1,-3.61 -0.35,6.87 6.87,0 0,1 -3.17,-2.45 6.84,6.84 0,0 1,0.16 -8.16,6.9 6.9,0 0,1 3.26,-2.33 6.82,6.82 0,0 1,3.62 -0.2,6.79 6.79,0 0,1 5.2,5.19 5.84,5.84 0,0 1,0.12 1.23A2.06,2.06 0,0 1,253.2 160.41Z"/>
<path android:fillColor="#455a64" android:pathData="M275.82,121.31s0.07,0 0.21,0.06a1.65,1.65 0,0 1,0.54 0.34,2.51 2.51,0 0,1 0.69,2.26 3.22,3.22 0,0 1,-2.67 2.37,6.68 6.68,0 0,1 -4.53,-1.09l-1.6,-0.92 1.75,0.58a1.89,1.89 0,0 1,1.19 1.35,2.46 2.46,0 0,1 -0.25,1.85 2.58,2.58 0,0 1,-1.57 1.11,3.63 3.63,0 0,1 -2,0 6.67,6.67 0,0 1,-3.36 -2.91l-1.12,-1.63 1.42,1.38a3.08,3.08 0,0 1,0.76 2.92,3.18 3.18,0 0,1 -1.71,2.17 4.15,4.15 0,0 1,-4.4 -0.53,5.28 5.28,0 0,1 -1.67,-2.48 5,5 0,0 1,-0.18 -0.78,1.18 1.18,0 0,1 0,-0.28s0.08,0.37 0.33,1a5.32,5.32 0,0 0,1.7 2.33,3.89 3.89,0 0,0 4.08,0.43 2.9,2.9 0,0 0,1.51 -2,2.72 2.72,0 0,0 -0.68,-2.54l0.31,-0.26a6.35,6.35 0,0 0,3.15 2.74,2.72 2.72,0 0,0 3.07,-0.89 1.84,1.84 0,0 0,-0.72 -2.63l0.16,-0.35a6.41,6.41 0,0 0,4.28 1.1,3 3,0 0,0 2.51,-2.1 2.43,2.43 0,0 0,-0.56 -2.12A3.24,3.24 0,0 0,275.82 121.31Z"/>
<path android:fillColor="#455a64" android:pathData="M255.23,135.12s0,0.06 -0.1,0.15a3.63,3.63 0,0 1,-0.36 0.38,5 5,0 0,1 -4.85,1.08 5.21,5.21 0,0 1,-3.07 -2.65l0.32,-0.05a5,5 0,1 1,-8.41 -4.39l0.27,0.29a5.16,5.16 0,0 1,-3.25 1.18,5.58 5.58,0 0,1 -3.05,-0.83 4.57,4.57 0,0 1,-1.82 -2.15,5.39 5.39,0 0,1 0.88,-5.53 3.21,3.21 0,0 1,1 -0.78,10.46 10.46,0 0,0 -0.84,0.87 5.33,5.33 0,0 0,-1.13 3.07,5.13 5.13,0 0,0 0.41,2.25 4.37,4.37 0,0 0,1.73 2,5.3 5.3,0 0,0 2.87,0.74 4.7,4.7 0,0 0,3 -1.1l0.27,0.29a4.78,4.78 0,0 0,-1 5.2,4.71 4.71,0 0,0 5.16,2.62 4.78,4.78 0,0 0,3.61 -3.76l0.09,-0.54 0.24,0.49a4.92,4.92 0,0 0,2.84 2.54,4.8 4.8,0 0,0 3,0 5.15,5.15 0,0 0,1.72 -0.91C255.05,135.29 255.21,135.1 255.23,135.12Z"/>
<path android:fillColor="#455a64" android:pathData="M239.9,148.86a1.72,1.72 0,0 1,-0.67 0.4,4.52 4.52,0 0,1 -5.08,-1.1 4.78,4.78 0,0 1,-1.17 -4l0.36,0.16a7.93,7.93 0,0 1,-2.9 2.37,6.26 6.26,0 0,1 -2.82,0.6 5.84,5.84 0,0 1,-2.59 -0.71,4.57 4.57,0 0,1 -2.46,-3.66 4.37,4.37 0,0 1,0.79 -2.9,4.05 4.05,0 0,1 0.58,-0.59 0.9,0.9 0,0 1,0.24 -0.15s-0.3,0.26 -0.69,0.83a4.41,4.41 0,0 0,-0.63 2.78,4.31 4.31,0 0,0 2.35,3.36 5.6,5.6 0,0 0,5 0.07,7.66 7.66,0 0,0 2.76,-2.24l0.5,-0.65 -0.14,0.81a4.43,4.43 0,0 0,1 3.66,4.32 4.32,0 0,0 2.72,1.42 4.91,4.91 0,0 0,2.07 -0.21C239.65,149 239.89,148.84 239.9,148.86Z"/>
<path android:fillColor="#455a64" android:pathData="M283.66,132.12a2.51,2.51 0,0 1,0.18 1.43,5.28 5.28,0 0,1 -1.41,3.17 5.2,5.2 0,0 1,-3.11 1.55,2.57 2.57,0 0,1 -1.43,-0.1c0,-0.07 0.55,0 1.38,-0.18a5.31,5.31 0,0 0,4.28 -4.47C283.68,132.67 283.6,132.13 283.66,132.12Z"/>
<path android:fillColor="#455a64" android:pathData="M288.39,140.21a1.26,1.26 0,0 1,0.2 0.59,3.45 3.45,0 0,1 -0.16,1.7 2.62,2.62 0,0 1,-1.87 1.71,2.67 2.67,0 0,1 -1.57,-0.13 2.17,2.17 0,0 1,-1.23 -1.19l0.39,-0.13a2.61,2.61 0,0 1,0.1 0.75,3.1 3.1,0 0,1 -1.94,2.76 2.55,2.55 0,0 1,-1.54 0.06,2.89 2.89,0 0,1 -1.16,-0.64 2.83,2.83 0,0 1,-0.94 -1.62,1.2 1.2,0 0,1 0,-0.68s0,0.24 0.13,0.65a2.86,2.86 0,0 0,1 1.43,2.39 2.39,0 0,0 2.37,0.44 2.71,2.71 0,0 0,1.66 -2.4,2.62 2.62,0 0,0 -0.07,-0.64l0.38,-0.13a2.09,2.09 0,0 0,2.34 1.11,2.36 2.36,0 0,0 1.69,-1.46 3.54,3.54 0,0 0,0.26 -1.57A3.89,3.89 0,0 1,288.39 140.21Z"/>
<path android:fillColor="#263238" android:pathData="M264.1,152.55s0.09,0.18 0,0.44a1.84,1.84 0,0 1,-1.53 1.27c-0.27,0 -0.43,0 -0.43,-0.1s0.6,-0.17 1.12,-0.62S264,152.53 264.1,152.55Z"/>
<path android:fillColor="#263238" android:pathData="M275,143.82a1.24,1.24 0,0 1,-1.2 1.26,1.19 1.19,0 0,1 -1.29,-1.13 1.26,1.26 0,0 1,1.2 -1.26A1.19,1.19 0,0 1,275 143.82Z"/>
<path android:fillColor="#263238" android:pathData="M276.54,142.69c-0.16,0.16 -1.1,-0.54 -2.45,-0.54s-2.33,0.68 -2.48,0.51 0.09,-0.36 0.52,-0.68a3.45,3.45 0,0 1,2 -0.61,3.29 3.29,0 0,1 1.95,0.63C276.47,142.32 276.61,142.61 276.54,142.69Z"/>
<path android:fillColor="#263238" android:pathData="M262,143.82a1.26,1.26 0,0 1,-1.21 1.26,1.19 1.19,0 0,1 -1.28,-1.13 1.24,1.24 0,0 1,1.2 -1.26A1.19,1.19 0,0 1,262 143.82Z"/>
<path android:fillColor="#263238" android:pathData="M263.31,142.69c-0.16,0.16 -1.11,-0.54 -2.45,-0.54s-2.33,0.68 -2.48,0.51 0.08,-0.36 0.52,-0.68a3.45,3.45 0,0 1,2 -0.61,3.32 3.32,0 0,1 1.95,0.63C263.24,142.32 263.38,142.61 263.31,142.69Z"/>
<path android:fillColor="#263238" android:pathData="M267.91,152.8a9.21,9.21 0,0 1,2.19 -0.39c0.34,0 0.66,-0.1 0.72,-0.34a1.73,1.73 0,0 0,-0.23 -1l-1,-2.61a45.75,45.75 0,0 1,-2.29 -6.85,45.14 45.14,0 0,1 2.83,6.65l1,2.63a2,2 0,0 1,0.17 1.35,0.87 0.87,0 0,1 -0.56,0.5 2.17,2.17 0,0 1,-0.58 0.08A8.65,8.65 0,0 1,267.91 152.8Z"/>
<path android:fillColor="#995037" android:pathData="M267.33,157.42a1.18,1.18 0,0 0,-1.31 -1.77,1 1,0 0,0 -0.71,-1.07 1.48,1.48 0,0 0,-1.33 0.23,2.07 2.07,0 0,0 -0.68,2.41 2.28,2.28 0,0 0,2.16 1.34,2.5 2.5,0 0,0 2.1,-1.47"/>
<path android:fillColor="#263238" android:pathData="M264,153.73c0.22,0 0.22,1.45 1.47,2.49s2.81,0.88 2.82,1.08 -0.35,0.28 -1,0.3a3.63,3.63 0,0 1,-2.35 -0.82,3.16 3.16,0 0,1 -1.14,-2.08C263.69,154.09 263.85,153.73 264,153.73Z"/>
<path android:fillColor="#263238" android:pathData="M264.48,140.33c-0.13,0.37 -1.47,0.19 -3.05,0.38s-2.86,0.62 -3.07,0.29c-0.09,-0.15 0.13,-0.5 0.65,-0.85a5.33,5.33 0,0 1,4.66 -0.52C264.25,139.87 264.54,140.16 264.48,140.33Z"/>
<path android:fillColor="#263238" android:pathData="M276.35,140.09c-0.24,0.3 -1.16,0 -2.28,0s-2.06,0.21 -2.27,-0.11c-0.1,-0.16 0.05,-0.46 0.46,-0.75a3.1,3.1 0,0 1,1.85 -0.5,3.15 3.15,0 0,1 1.82,0.61C276.33,139.62 276.46,139.94 276.35,140.09Z"/>
<path android:fillColor="#995037" android:pathData="M268,167.16a20.51,20.51 0,0 1,-11.14 -3.65s2.62,6.26 11,5.76Z"/>
<path android:fillColor="#263238" android:pathData="M289,264.18c-1.91,-4.88 -6.93,-21.84 -6.93,-21.84l-44.86,-2.1s-11.17,17.64 -12.78,24.39 -29.23,184.83 -29.23,184.83l23.94,4.77 38.73,-174.42L249.57,456l27.48,-0.73C277.85,442.56 290.84,268.87 289,264.18Z"/>
<path android:fillColor="#fafafa" android:pathData="M211.89,450.69s0,-0.19 0.08,-0.54l0.27,-1.59c0.26,-1.42 0.63,-3.47 1.11,-6.11 1,-5.3 2.42,-13 4.25,-22.41 3.65,-18.92 8.91,-45 15.12,-73.74s12.22,-54.67 16.72,-73.4c2.24,-9.37 4.09,-16.94 5.4,-22.16l1.51,-6c0.18,-0.67 0.31,-1.19 0.41,-1.56a5.19,5.19 0,0 1,0.16 -0.53s0,0.19 -0.11,0.54 -0.2,0.9 -0.35,1.58l-1.42,6c-1.25,5.27 -3,12.85 -5.25,22.21 -4.4,18.75 -10.34,44.69 -16.56,73.42s-11.53,54.8 -15.27,73.7c-1.86,9.43 -3.36,17.07 -4.41,22.38l-1.2,6.09 -0.33,1.58A4.9,4.9 0,0 1,211.89 450.69Z"/>
<path android:fillColor="#fafafa" android:pathData="M248.82,240.78c0.15,0 -9.37,46.71 -21.24,104.26S206,449.23 205.82,449.2s9.37,-46.7 21.25,-104.27S248.68,240.75 248.82,240.78Z"/>
<path android:fillColor="#fafafa" android:pathData="M245,240.29l-0.24,0.51c-0.17,0.34 -0.41,0.83 -0.73,1.45l-1.2,2.36 -0.78,1.51 -0.79,1.75c-0.57,1.24 -1.19,2.62 -1.88,4.12s-1.28,3.2 -2,5c-1.39,3.61 -2.84,7.77 -4.23,12.42a260,260 0,0 0,-7.34 33.34c-2.05,12.7 -3.67,26.76 -5.64,41.48 -4,29.46 -9.09,55.89 -13.32,74.9 -2.11,9.5 -4,17.16 -5.29,22.44L200,447.63c-0.19,0.68 -0.33,1.2 -0.43,1.57a5,5 0,0 1,-0.16 0.54s0,-0.19 0.11,-0.55l0.37,-1.59c0.34,-1.41 0.84,-3.46 1.47,-6.09 1.26,-5.29 3.06,-13 5.12,-22.47 4.14,-19 9.19,-45.45 13.16,-74.89 2,-14.71 3.61,-28.77 5.68,-41.48a256.7,256.7 0,0 1,7.46 -33.37c1.42,-4.66 2.9,-8.82 4.31,-12.42q1.11,-2.69 2.06,-5l1.91,-4.11c0.29,-0.61 0.57,-1.19 0.82,-1.74s0.55,-1 0.8,-1.5l1.25,-2.34 0.78,-1.43A5.45,5.45 0,0 1,245 240.29Z"/>
<path android:fillColor="#fafafa" android:pathData="M266.74,240.39s0,0.18 0,0.55 0,0.93 0,1.63c0,1.45 0,3.56 0,6.26s-0.05,6 -0.15,9.91 -0.15,8.25 -0.32,13.11c-0.26,9.72 -0.74,21.29 -1.35,34.13s-1.43,26.95 -2.36,41.75c-3.94,59 -7,104.35 -7.17,107.21 0,0 0,-0.19 0,-0.56s0,-0.92 0.07,-1.62c0.07,-1.45 0.17,-3.56 0.31,-6.25 0.28,-5.43 0.74,-13.29 1.33,-23 1.26,-19.42 3,-46.22 4.93,-75.82 0.93,-14.8 1.74,-28.91 2.4,-41.74s1.15,-24.4 1.46,-34.12c0.19,-4.86 0.29,-9.25 0.4,-13.11s0.19,-7.18 0.24,-9.9 0.11,-4.81 0.14,-6.26c0,-0.7 0,-1.24 0,-1.63S266.74,240.39 266.74,240.39Z"/>
<path android:fillColor="#fafafa" android:pathData="M265.64,454.72s0,-0.18 0,-0.55 0,-0.92 0.06,-1.61c0.07,-1.44 0.16,-3.52 0.29,-6.2 0.24,-5.4 0.6,-13.18 1,-22.79 0.84,-19.25 1.85,-45.84 2.86,-75.22s1.84,-56 2.47,-75.25c0.31,-9.61 0.56,-17.4 0.74,-22.81 0.09,-2.67 0.16,-4.76 0.21,-6.19 0,-0.7 0.06,-1.23 0.07,-1.62s0.05,-0.55 0.05,-0.55 0,0.19 0,0.55l0,1.62c0,1.44 -0.07,3.52 -0.12,6.2 -0.14,5.41 -0.33,13.19 -0.57,22.81 -0.52,19.26 -1.3,45.87 -2.32,75.26s-2.08,56 -3,75.22c-0.47,9.62 -0.87,17.41 -1.2,22.79 -0.17,2.67 -0.3,4.75 -0.39,6.19 0,0.69 -0.08,1.22 -0.11,1.61S265.64,454.72 265.64,454.72Z"/>
<path android:fillColor="#fafafa" android:pathData="M272.82,453.43s0,-0.19 0,-0.55 0,-0.91 0.06,-1.6c0.06,-1.43 0.15,-3.5 0.26,-6.16 0.25,-5.36 0.62,-13.09 1.07,-22.63 0.94,-19.12 2.26,-45.52 3.85,-74.67 0.8,-14.58 1.56,-28.48 2.46,-41.09 0.27,-6.31 0.17,-12.32 0.09,-17.94s-0.24,-10.86 -0.39,-15.64c-0.31,-9.57 -0.63,-17.3 -0.85,-22.65 -0.1,-2.65 -0.19,-4.72 -0.25,-6.15 0,-0.69 0,-1.22 -0.05,-1.6s0,-0.55 0,-0.55 0,0.18 0.06,0.54 0.06,0.92 0.11,1.6c0.08,1.43 0.2,3.5 0.35,6.15 0.28,5.35 0.65,13.08 1,22.64 0.17,4.78 0.34,10 0.45,15.65s0.22,11.64 0,18c-0.88,12.63 -1.62,26.52 -2.42,41.1 -1.56,29.14 -3,55.53 -4,74.66 -0.52,9.53 -0.94,17.26 -1.24,22.62 -0.15,2.66 -0.28,4.73 -0.36,6.16 0,0.68 -0.08,1.21 -0.11,1.59S272.82,453.43 272.82,453.43Z"/>
<path android:fillColor="#eb996e" android:pathData="M381.84,226.81c0.75,-2.31 10.53,0.35 11.37,0.52s1.12,-1.05 0.35,-1.16c-1.11,-0.15 -12.7,-2.06 -12,-4.34 0.4,-1.26 2.6,-0.34 2.6,-0.34s10.71,2.59 11,1.5 -5.93,-2.83 -8.07,-3.27 -2.78,-1.61 -1.81,-2.39c0.66,-0.53 7.26,0.64 9.37,1.12s7.88,1.9 5.61,-1.11 -2.89,-6.19 -2.46,-7.16a1.18,1.18 0,0 1,2.19 0.42,13.79 13.79,0 0,0 1.68,3.42 9,9 0,0 0,2.05 2.3c0.92,0.73 1.73,1.32 2.44,1.8 5.24,0.49 24.57,0.47 37.67,-3.75 3.14,-1 17.09,-26.14 17.09,-26.14h0l16.91,11.25L466.12,220c-10.54,22.92 -63.67,13 -63.67,13V233a112.39,112.39 0,0 1,-12.15 -0.09c-5.59,-0.58 -5.54,-1.08 -5.36,-1.72 0.48,-1.72 9.86,0.65 8.14,-1S381.26,228.59 381.84,226.81Z"/>
<path android:fillColor="#ffbe9d" android:pathData="M422.06,338.1c-0.29,1.81 -11.29,121.36 -11.29,121.36l-16,0.18 5.62,-131.14Z"/>
<path android:fillColor="#0298E1" android:pathData="M394.32,460.61l-0.09,-1.69 17,-1.1 0.37,5.54 -1,0.13c-4.66,0.55 -23.73,2.52 -26.91,1.85C380.12,464.59 394.32,460.61 394.32,460.61Z"/>
<path android:fillAlpha="0.3" android:fillColor="#FF000000"
android:pathData="M405.47,463.64a5.47,5.47 0,0 1,1.95 -3.5,6 6,0 0,1 3.89,-1.41l0.28,4.4Z" android:strokeAlpha="0.3"/>
<path android:fillAlpha="0.3" android:fillColor="#FF000000"
android:pathData="M387.4,462.78s-5,1.7 -4.28,2.43 20,-0.58 28.5,-1.85l-0.05,-0.35L389,464.71S388.39,462.76 387.4,462.78Z" android:strokeAlpha="0.3"/>
<path android:fillColor="#263238" android:pathData="M411.84,463l-0.29,0 -0.83,0.1 -3.08,0.33c-2.59,0.27 -6.18,0.58 -10.15,0.86s-7.57,0.44 -10.18,0.53l-3.08,0.09h-1.14l0.3,0 0.83,0 3.09,-0.15c2.6,-0.13 6.2,-0.32 10.17,-0.59s7.55,-0.57 10.15,-0.8l3.08,-0.27 0.83,-0.07Z"/>
<path android:fillColor="#263238" android:pathData="M389,465a5.87,5.87 0,0 0,-0.66 -1.33,6.26 6.26,0 0,0 -1.12,-1 2.22,2.22 0,0 1,1.29 0.92A1.94,1.94 0,0 1,389 465Z"/>
<path android:fillColor="#263238" android:pathData="M393.89,462.26s-0.3,-0.22 -0.57,-0.57 -0.45,-0.65 -0.41,-0.68 0.31,0.22 0.58,0.57S393.94,462.23 393.89,462.26Z"/>
<path android:fillColor="#263238" android:pathData="M395.22,461.49s-0.31,-0.1 -0.62,-0.33 -0.53,-0.44 -0.49,-0.48 0.31,0.11 0.62,0.33S395.26,461.45 395.22,461.49Z"/>
<path android:fillColor="#263238" android:pathData="M396,460a2.18,2.18 0,0 1,-0.87 0.16,1.92 1.92,0 0,1 -0.89,0 2.18,2.18 0,0 1,0.87 -0.16A1.92,1.92 0,0 1,396 460Z"/>
<path android:fillColor="#263238" android:pathData="M396.23,458.88a1.94,1.94 0,0 1,-1 0.33,1.82 1.82,0 0,1 -1,-0.06 7.43,7.43 0,0 1,1 -0.13A6,6 0,0 1,396.23 458.88Z"/>
<path android:fillColor="#263238" android:pathData="M393.23,460.92a3.37,3.37 0,0 1,-1.09 0.07,6 6,0 0,1 -1.17,-0.16 2.78,2.78 0,0 1,-0.68 -0.21,0.55 0.55,0 0,1 -0.29,-0.29 0.38,0.38 0,0 1,0.14 -0.42,2.08 2.08,0 0,1 2.5,0.38 1.78,1.78 0,0 1,0.4 0.65,0.69 0.69,0 0,1 0,0.27 2.92,2.92 0,0 0,-0.56 -0.83,2 2,0 0,0 -1,-0.5 1.81,1.81 0,0 0,-1.29 0.17c-0.17,0.13 -0.09,0.32 0.11,0.41a4.21,4.21 0,0 0,0.63 0.2,10.22 10.22,0 0,0 1.14,0.2C392.81,460.92 393.23,460.89 393.23,460.92Z"/>
<path android:fillColor="#263238" android:pathData="M393,461a0.94,0.94 0,0 1,-0.17 -0.69,1.62 1.62,0 0,1 0.25,-0.76 1.11,1.11 0,0 1,0.88 -0.58,0.4 0.4,0 0,1 0.36,0.45 1,1 0,0 1,-0.16 0.46,3.11 3.11,0 0,1 -0.47,0.65 1.52,1.52 0,0 1,-0.6 0.45s0.21,-0.2 0.49,-0.54a3,3 0,0 0,0.41 -0.64c0.14,-0.22 0.22,-0.61 -0.06,-0.64s-0.53,0.27 -0.69,0.48a1.7,1.7 0,0 0,-0.26 0.68A3.84,3.84 0,0 0,393 461Z"/>
<path android:fillColor="#263238" android:pathData="M411.22,458.69s-0.49,0 -1.25,0.13a5.73,5.73 0,0 0,-2.66 1.23,5.09 5.09,0 0,0 -1.57,2.36c-0.21,0.69 -0.21,1.14 -0.25,1.14a1.14,1.14 0,0 1,0 -0.32,4.48 4.48,0 0,1 0.13,-0.86 4.92,4.92 0,0 1,1.57 -2.46,5.47 5.47,0 0,1 2.78,-1.23 5.39,5.39 0,0 1,0.93 0A1.38,1.38 0,0 1,411.22 458.69Z"/>
<path android:fillColor="#263238" android:pathData="M403.24,462.25a14.71,14.71 0,0 1,-4.94 0.38c0,-0.05 1.11,-0.07 2.47,-0.17S403.23,462.2 403.24,462.25Z"/>
<path android:fillColor="#263238" android:pathData="M406.56,462c0.05,0 -0.07,0.23 -0.17,0.47s-0.15,0.46 -0.21,0.46 -0.1,-0.24 0,-0.52S406.52,462 406.56,462Z"/>
<path android:fillColor="#263238" android:pathData="M407.72,460.49s-0.05,0.21 -0.22,0.38 -0.33,0.3 -0.38,0.26 0.06,-0.2 0.23,-0.38S407.68,460.46 407.72,460.49Z"/>
<path android:fillColor="#263238" android:pathData="M409.47,459.71c0,0.05 -0.23,0.07 -0.48,0.16s-0.41,0.24 -0.46,0.2 0.08,-0.26 0.39,-0.37S409.48,459.66 409.47,459.71Z"/>
<path android:fillColor="#263238" android:pathData="M410.72,459.31c0,0.05 -0.06,0.13 -0.2,0.19s-0.27,0.08 -0.29,0 0.07,-0.14 0.2,-0.2S410.7,459.26 410.72,459.31Z"/>
<path android:fillColor="#ffbe9d" android:pathData="M446.78,340.87C446.86,342.7 458.13,456 458.13,456l-15.66,3.47L423.41,345.1Z"/>
<path android:fillColor="#0298E1" android:pathData="M441.76,461l-0.35,-1.64 16.64,-3.72 1.23,5.42 -1,0.29c-4.52,1.27 -23.05,6.14 -26.3,6C428.34,467.15 441.76,461 441.76,461Z"/>
<path android:fillAlpha="0.3" android:fillColor="#FF000000"
android:pathData="M453.24,462.32a5.49,5.49 0,0 1,1.39 -3.76,6.09 6.09,0 0,1 3.63,-2l0.95,4.31Z" android:strokeAlpha="0.3"/>
<path android:fillAlpha="0.3" android:fillColor="#FF000000"
android:pathData="M435.25,464.25s-4.64,2.44 -3.85,3.05 19.69,-3.65 27.88,-6.21l-0.11,-0.34 -22,5.16S436.23,464.07 435.25,464.25Z" android:strokeAlpha="0.3"/>
<path android:fillColor="#263238" android:pathData="M459.43,460.68a1.09,1.09 0,0 1,-0.28 0.09l-0.8,0.24 -3,0.8c-2.52,0.65 -6,1.52 -9.9,2.4s-7.41,1.61 -10,2.1l-3,0.56 -0.83,0.14 -0.29,0 0.29,-0.08 0.82,-0.17 3,-0.62c2.56,-0.53 6.08,-1.28 10,-2.15s7.38,-1.73 9.91,-2.36l3,-0.74 0.81,-0.19A2.11,2.11 0,0 1,459.43 460.68Z"/>
<path android:fillColor="#263238" android:pathData="M437.21,466.14a6.1,6.1 0,0 0,-0.85 -1.21,7.13 7.13,0 0,0 -1.27,-0.84 2.31,2.31 0,0 1,1.42 0.71A1.93,1.93 0,0 1,437.21 466.14Z"/>
<path android:fillColor="#263238" android:pathData="M441.59,462.73s-0.33,-0.17 -0.65,-0.47 -0.55,-0.57 -0.51,-0.61 0.33,0.17 0.65,0.47S441.63,462.7 441.59,462.73Z"/>
<path android:fillColor="#263238" android:pathData="M442.78,461.77c0,0.05 -0.32,-0.06 -0.66,-0.23s-0.59,-0.35 -0.56,-0.4 0.33,0.06 0.66,0.23S442.81,461.72 442.78,461.77Z"/>
<path android:fillColor="#263238" android:pathData="M443.31,460.12c0,0.06 -0.36,0.19 -0.84,0.3a1.87,1.87 0,0 1,-0.89 0.11,2.25 2.25,0 0,1 0.85,-0.29A2.1,2.1 0,0 1,443.31 460.12Z"/>
<path android:fillColor="#263238" android:pathData="M443.37,459a1.68,1.68 0,0 1,-0.9 0.48,1.83 1.83,0 0,1 -1,0.1 7.46,7.46 0,0 1,1 -0.28A6.79,6.79 0,0 1,443.37 459Z"/>
<path android:fillColor="#263238" android:pathData="M440.73,461.52a3.27,3.27 0,0 1,-1.07 0.23,6.42 6.42,0 0,1 -1.18,0 3,3 0,0 1,-0.7 -0.1,0.54 0.54,0 0,1 -0.33,-0.25 0.38,0.38 0,0 1,0.07 -0.43,2.08 2.08,0 0,1 2.53,0 1.71,1.71 0,0 1,0.49 0.58,0.59 0.59,0 0,1 0.09,0.26 2.7,2.7 0,0 0,-0.67 -0.73,1.94 1.94,0 0,0 -1,-0.35 1.82,1.82 0,0 0,-1.25 0.37c-0.15,0.15 0,0.32 0.17,0.38a3.53,3.53 0,0 0,0.65 0.11,9.26 9.26,0 0,0 1.16,0C440.32,461.58 440.72,461.49 440.73,461.52Z"/>
<path android:fillColor="#263238" android:pathData="M440.47,461.63a0.94,0.94 0,0 1,-0.28 -0.66,1.66 1.66,0 0,1 0.13,-0.79 1.13,1.13 0,0 1,0.77 -0.71,0.4 0.4,0 0,1 0.43,0.39 1.08,1.08 0,0 1,-0.08 0.48,3.13 3.13,0 0,1 -0.37,0.71c-0.27,0.38 -0.5,0.56 -0.52,0.54s0.17,-0.22 0.4,-0.6a3.85,3.85 0,0 0,0.31 -0.7c0.1,-0.24 0.12,-0.64 -0.16,-0.62s-0.49,0.34 -0.61,0.57a1.55,1.55 0,0 0,-0.15 0.72A2.7,2.7 0,0 0,440.47 461.63Z"/>
<path android:fillColor="#263238" android:pathData="M458.16,456.54s-0.48,0.07 -1.21,0.32a5.73,5.73 0,0 0,-2.45 1.62,5.13 5.13,0 0,0 -1.18,2.57c-0.11,0.72 0,1.17 -0.07,1.18a1.07,1.07 0,0 1,-0.07 -0.31,3.63 3.63,0 0,1 0,-0.88 4.77,4.77 0,0 1,1.17 -2.67,5.49 5.49,0 0,1 2.55,-1.64 5.18,5.18 0,0 1,0.92 -0.19A1,1 0,0 1,458.16 456.54Z"/>
<path android:fillColor="#263238" android:pathData="M450.83,461.29a11.17,11.17 0,0 1,-2.37 0.77,10 10,0 0,1 -2.46,0.36c0,-0.05 1.09,-0.23 2.42,-0.55S450.81,461.24 450.83,461.29Z"/>
<path android:fillColor="#263238" android:pathData="M454.07,460.55c0.05,0 0,0.23 -0.1,0.49s-0.07,0.47 -0.13,0.48 -0.14,-0.22 -0.07,-0.52S454,460.52 454.07,460.55Z"/>
<path android:fillColor="#263238" android:pathData="M455,458.86s0,0.21 -0.16,0.41 -0.28,0.34 -0.33,0.31 0,-0.21 0.16,-0.41S454.93,458.83 455,458.86Z"/>
<path android:fillColor="#263238" android:pathData="M456.59,457.81c0,0.06 -0.22,0.11 -0.45,0.24s-0.37,0.3 -0.42,0.27 0,-0.27 0.32,-0.43S456.59,457.76 456.59,457.81Z"/>
<path android:fillColor="#263238" android:pathData="M457.77,457.23s0,0.14 -0.18,0.22 -0.25,0.11 -0.28,0.07 0.05,-0.14 0.17,-0.22S457.74,457.18 457.77,457.23Z"/>
<path android:fillColor="#ffbe9d" android:pathData="M536.36,203c-1.6,-1.83 -9.54,4.46 -10.25,4.95s-1.44,-0.53 -0.77,-0.93c1,-0.58 10.86,-6.89 9.31,-8.71 -0.87,-1 -2.52,0.71 -2.52,0.71s-8.84,6.59 -9.54,5.71 4.34,-4.93 6.14,-6.18 1.92,-2.57 0.72,-2.91c-0.82,-0.23 -6.42,3.45 -8.18,4.72s-6.49,4.84 -5.58,1.18 0.22,-6.82 -0.56,-7.55 -2.07,0.1 -1.85,1.25a14.05,14.05 0,0 1,-0.2 3.8,9.13 9.13,0 0,1 -1,2.93c-0.56,1 -1.07,1.89 -1.53,2.61 -4.63,2.52 -19.13,9.79 -32.84,11.08a10.92,10.92 0,0 1,-9.29 -3.12l-7.26,-8.66 -14,10.69s4.37,5.43 10.46,12.77c15.93,19.2 62.27,-10.5 62.27,-10.5l0,-0.05A112.54,112.54 0,0 0,531 211.92c4.91,-2.73 4.67,-3.18 4.25,-3.69 -1.11,-1.39 -8.81,4.48 -7.89,2.26S537.59,204.4 536.36,203Z"/>
<path android:fillColor="#ffbe9d" android:pathData="M335.79,264.13c-0.22,-2.15 8.7,-3.49 9.44,-3.66s0.53,-1.26 -0.14,-1.07c-0.95,0.27 -11.07,2.88 -11.3,0.77 -0.13,-1.17 2,-1.21 2,-1.21s9.64,-1.74 9.5,-2.73 -5.84,-0.18 -7.74,0.24 -2.84,-0.32 -2.33,-1.3c0.35,-0.67 6.14,-2.08 8,-2.45s7.09,-1.28 4.16,-2.92 -4.57,-4 -4.57,-4.94a1.05,1.05 0,0 1,1.94 -0.44,12.13 12.13,0 0,0 2.59,2.18 8.4,8.4 0,0 0,2.49 1.14c1,0.26 1.88,0.45 2.63,0.59 4.44,-1.48 20.16,-8.43 29.32,-16.56 2.18,-1.94 4.53,-27.4 4.53,-27.4h0l17.79,3.09 -2.18,20.94c-0.35,22.42 -47.14,33.41 -47.14,33.41l0,-0.05a101.79,101.79 0,0 1,-9.92 4.29c-4.76,1.52 -4.9,1.1 -5,0.52 -0.22,-1.57 8.27,-3 6.26,-3.76S336,265.78 335.79,264.13Z"/>
<path android:fillColor="#0298E1" android:pathData="M401.9,175.22l-0.36,0.16c-2,0.9 -11.63,5.94 -16.6,21.43l-5.57,17.33 17.74,-0.38"/>
<path android:fillColor="#0298E1" android:pathData="M388.63,201.82a33,33 0,0 0,-0.91 7.68,18.29 18.29,0 0,0 5.16,11.1l0.07,0.08 5.51,29.59L443.7,244l-4.87,-9.63 2.94,-23.56 3.87,5.16 16.51,-12.34 -4.67,-9.36c-1.92,-4 -4.62,-8.76 -7.47,-11.79a26.52,26.52 0,0 0,-15.31 -7.81c-4.16,-0.65 -8.18,-0.9 -8.18,-0.9l-17.91,1.39c-0.84,0.19 2.23,-0.06 -6.71,0.1l-13.27,26.6"/>
<path android:fillColor="#263238" android:pathData="M395,223.79a4.34,4.34 0,0 1,-0.87 -0.77,19.66 19.66,0 0,1 -2,-2.42 22.65,22.65 0,0 1,-3 -19.89,19.18 19.18,0 0,1 1.18,-2.91 4,4 0,0 1,0.6 -1c0.09,0 -0.69,1.49 -1.39,4a23.82,23.82 0,0 0,3 19.55C393.86,222.57 395,223.72 395,223.79Z"/>
<path android:fillColor="#263238" android:pathData="M429.3,223.09a2.54,2.54 0,0 1,-0.81 0.25,13.57 13.57,0 0,1 -2.31,0.27 15.91,15.91 0,0 1,-13.33 -6.52,13.71 13.71,0 0,1 -1.21,-2 2.64,2.64 0,0 1,-0.3 -0.8c0.09,-0.05 0.63,1 1.83,2.53a16.94,16.94 0,0 0,13 6.36C428.1,223.23 429.29,223 429.3,223.09Z"/>
<path android:fillColor="#263238" android:pathData="M440.07,176.21c0,0.06 -0.54,0.09 -1.47,0.38a9.11,9.11 0,0 0,-3.47 2.12,11.38 11.38,0 0,0 -3.05,5.17 15.3,15.3 0,0 0,0 7.37,30.25 30.25,0 0,0 2.69,7c1,2.06 2.11,3.88 3,5.43s1.49,2.83 1.89,3.74a6.34,6.34 0,0 1,0.55 1.44,11.13 11.13,0 0,1 -0.75,-1.34c-0.46,-0.87 -1.15,-2.12 -2,-3.64s-2,-3.31 -3.09,-5.39a29.92,29.92 0,0 1,-2.77 -7.12,15.56 15.56,0 0,1 0,-7.65 11.59,11.59 0,0 1,3.28 -5.32,8.65 8.65,0 0,1 3.69,-2 5.88,5.88 0,0 1,1.13 -0.18C439.94,176.19 440.07,176.19 440.07,176.21Z"/>
<path android:fillColor="#0298E1" android:pathData="M471.06,399.47s-6.84,13.31 -24.71,6.85c0,0 -17.49,9.5 -34.22,-1.14 0,0 -21.66,2.9 -33.44,-2.8l15.15,-130.71 4.38,-27 42,-4.9s10.89,8.24 17.93,47.43c5.6,31.14 9.13,77.3 9.13,77.3Z"/>
<path android:fillColor="#263238" android:pathData="M438.89,236.11a1.35,1.35 0,0 1,-0.11 0.44,7.48 7.48,0 0,1 -0.49,1.23 12.79,12.79 0,0 1,-2.92 3.89,21.84 21.84,0 0,1 -6.12,3.81 43.67,43.67 0,0 1,-8.43 2.55,58.71 58.71,0 0,1 -15.93,1.13c-2.05,-0.14 -3.69,-0.38 -4.82,-0.56l-1.29,-0.24a1.6,1.6 0,0 1,-0.45 -0.13,13.12 13.12,0 0,1 1.77,0.17c1.13,0.11 2.77,0.3 4.81,0.39a63.37,63.37 0,0 0,15.8 -1.27,46.74 46.74,0 0,0 8.36,-2.48 22.52,22.52 0,0 0,6.06 -3.65,13.52 13.52,0 0,0 3,-3.7 9.76,9.76 0,0 0,0.57 -1.17A1.55,1.55 0,0 1,438.89 236.11Z"/>
<path android:fillColor="#fafafa" android:pathData="M438.88,249.75a0.57,0.57 0,0 1,0.13 0.2c0.1,0.17 0.21,0.37 0.34,0.62a9.42,9.42 0,0 1,0.74 2.6,15 15,0 0,1 -2.49,9.48 33.2,33.2 0,0 1,-4.37 5.28,76.58 76.58,0 0,0 -5.31,5.73 25.94,25.94 0,0 0,-4.07 7.51c-1,2.81 -1.76,5.82 -2.54,8.91a62.94,62.94 0,0 1,-2.76 8.91,30 30,0 0,1 -4.5,7.45 31.09,31.09 0,0 1,-5.72 5.41,32.62 32.62,0 0,1 -6,3.39 28.2,28.2 0,0 1,-9.63 2.23c-0.58,0 -1.1,0 -1.55,0l-1.14,-0.07 -0.7,-0.05a0.92,0.92 0,0 1,-0.24 0l0.24,0h0.7l1.14,0c0.44,0 1,-0.06 1.54,-0.09a29.09,29.09 0,0 0,9.5 -2.35,33.75 33.75,0 0,0 5.85,-3.4 31.36,31.36 0,0 0,5.61 -5.37,29.83 29.83,0 0,0 4.39,-7.34 65.16,65.16 0,0 0,2.74 -8.84,88.21 88.21,0 0,1 2.56,-9 26.53,26.53 0,0 1,4.17 -7.64,77.5 77.5,0 0,1 5.38,-5.73 32.33,32.33 0,0 0,4.36 -5.18,14.86 14.86,0 0,0 2.6,-9.26A10.62,10.62 0,0 0,438.88 249.75Z"/>
<path android:fillColor="#fafafa" android:pathData="M469.24,383.55a9.17,9.17 0,0 0,-1.77 -1.59,9.65 9.65,0 0,0 -6.25,-1.27 18.06,18.06 0,0 0,-4.34 1.17c-1.51,0.59 -3.08,1.36 -4.76,2.12a24.47,24.47 0,0 1,-5.51 1.87,12.34 12.34,0 0,1 -3.11,0.2 10.37,10.37 0,0 1,-3.12 -0.74,14.08 14.08,0 0,1 -5,-3.8 38.45,38.45 0,0 1,-3.42 -4.69c-1,-1.56 -1.88,-3.06 -2.85,-4.36a23.63,23.63 0,0 0,-3 -3.4,11.57 11.57,0 0,0 -5.61,-3.13 16.63,16.63 0,0 0,-2.39 -0.19,2.56 2.56,0 0,1 0.62,-0.09 4.61,4.61 0,0 1,0.77 0,5.94 5.94,0 0,1 1,0.1 11.46,11.46 0,0 1,5.82 3.06,24.1 24.1,0 0,1 3.07,3.41c1,1.31 1.91,2.82 2.91,4.36a37.25,37.25 0,0 0,3.39 4.61,13.66 13.66,0 0,0 4.81,3.66 9.92,9.92 0,0 0,3 0.71,12.32 12.32,0 0,0 3,-0.19 24.57,24.57 0,0 0,5.41 -1.81c1.67,-0.74 3.26,-1.5 4.8,-2.08a17.44,17.44 0,0 1,4.45 -1.13,9.63 9.63,0 0,1 6.4,1.46A6.5,6.5 0,0 1,468.9 383,2.46 2.46,0 0,1 469.24,383.55Z"/>
<path android:fillColor="#fafafa" android:pathData="M463,327.16a5.35,5.35 0,0 1,-1 0.7,11.26 11.26,0 0,1 -1.27,0.72 17.07,17.07 0,0 1,-1.74 0.81,17.78 17.78,0 0,1 -2.19,0.8 26.18,26.18 0,0 1,-2.59 0.69,30.6 30.6,0 0,1 -6.1,0.58 29.86,29.86 0,0 1,-6.09 -0.78,25.1 25.1,0 0,1 -2.56,-0.77 19.59,19.59 0,0 1,-2.17 -0.87c-0.66,-0.27 -1.21,-0.61 -1.71,-0.87a11.08,11.08 0,0 1,-1.24 -0.76,5.28 5.28,0 0,1 -1,-0.73c0.05,-0.09 1.5,0.92 4.09,2a22.78,22.78 0,0 0,2.15 0.8c0.78,0.28 1.64,0.48 2.54,0.71a31.37,31.37 0,0 0,6 0.73,32.2 32.2,0 0,0 6,-0.53c0.9,-0.21 1.77,-0.37 2.56,-0.63a21.37,21.37 0,0 0,2.18 -0.73C461.5,328 463,327.07 463,327.16Z"/>
<path android:fillColor="#fafafa" android:pathData="M457.13,279.84a5.48,5.48 0,0 1,-1.77 1.74,10.12 10.12,0 0,1 -5.71,1.8 10,10 0,0 1,-5.7 -1.81,5.48 5.48,0 0,1 -1.77,-1.74c0.06,-0.06 0.7,0.65 2,1.43a10.3,10.3 0,0 0,11 0C456.43,280.48 457.07,279.77 457.13,279.84Z"/>
<path android:fillColor="#263238" android:pathData="M437.14,239.77s0.08,0.16 0.2,0.47l0.54,1.38c0.46,1.24 1.14,3 2,5.33s1.92,5.16 3.15,8.44 2.74,7.06 3.17,11.52a15.72,15.72 0,0 1,-0.88 6.91,45 45,0 0,1 -3.48,6.7A19,19 0,0 0,439 287.9a21.08,21.08 0,0 0,0.92 8.34c0.77,2.81 1.82,5.62 2.56,8.62a22.8,22.8 0,0 1,0.7 4.62,15.94 15.94,0 0,1 -0.06,2.39c0,0.4 -0.14,0.79 -0.21,1.19a6,6 0,0 1,-0.29 1.18,15.3 15.3,0 0,1 -2.14,4.37 32.34,32.34 0,0 1,-3.1 3.82c-2.21,2.44 -4.66,4.73 -6.51,7.52a15.76,15.76 0,0 0,-2.08 4.46,16.5 16.5,0 0,0 -0.44,4.85c0.13,3.26 0.81,6.46 0.73,9.69A18.62,18.62 0,0 1,420 364.29c-2.57,1.52 -5.4,2.18 -7.93,3.24a10.53,10.53 0,0 0,-5.94 4.92c-1.14,2.3 -1.44,4.83 -2,7.19a26.78,26.78 0,0 1,-2.37 6.55,28.52 28.52,0 0,1 -15.56,13.47 28.91,28.91 0,0 1,-3.17 0.92c-0.94,0.16 -1.73,0.31 -2.38,0.38l-1.48,0.11 -0.5,0 0.5,-0.07 1.47,-0.16c0.64,-0.09 1.43,-0.26 2.36,-0.43a32,32 0,0 0,3.13 -1,28.26 28.26,0 0,0 7.78,-4.38 27.93,27.93 0,0 0,7.52 -9.07,26.5 26.5,0 0,0 2.31,-6.47c0.51,-2.33 0.79,-4.89 2,-7.29a9.22,9.22 0,0 1,2.54 -3.13,14.86 14.86,0 0,1 3.61,-2c2.57,-1.09 5.38,-1.75 7.87,-3.23a18.15,18.15 0,0 0,8.82 -14.94c0.08,-3.15 -0.6,-6.34 -0.74,-9.66a17,17 0,0 1,0.46 -5,16 16,0 0,1 2.15,-4.62 66.86,66.86 0,0 1,6.56 -7.58,31 31,0 0,0 3.05,-3.76 14.49,14.49 0,0 0,2.08 -4.23,5.66 5.66,0 0,0 0.28,-1.13 11.05,11.05 0,0 0,0.2 -1.15,16.21 16.21,0 0,0 0.07,-2.31A22.24,22.24 0,0 0,442 305c-0.72,-3 -1.76,-5.77 -2.53,-8.6a21.33,21.33 0,0 1,-0.92 -8.53,19.56 19.56,0 0,1 2.93,-7.54 46.37,46.37 0,0 0,3.48 -6.62,15.36 15.36,0 0,0 0.88,-6.74c-0.39,-4.39 -1.91,-8.15 -3.08,-11.45L439.7,247c-0.83,-2.32 -1.48,-4.12 -1.92,-5.37l-0.49,-1.4C437.18,239.94 437.14,239.77 437.14,239.77Z"/>
<path android:fillAlpha="0.2" android:fillColor="#FF000000"
android:pathData="M380.84,401c5,1.42 10,2.85 15.21,2.69s10.54,-2.17 13.51,-6.39c3.09,-4.38 3.31,-10.6 7.31,-14.17 2.82,-2.51 6.82,-3.05 10.42,-4.18a30.67,30.67 0,0 0,20.81 -25.31c1,-9.55 -2.46,-19.68 1.1,-28.6 1.91,-4.76 5.69,-8.72 6.83,-13.72 1.84,-8.15 -3.79,-15.92 -9.09,-22.38 -1.36,-1.66 -6.89,-5.49 -6.89,-5.49s-1.83,6.06 -1.67,8.66c0.43,7.06 5.8,13.93 4.32,20.84 -1.66,7.76 -11,12.72 -13.49,20.26 -2.63,8.05 2.28,17.85 -4.82,27.05 -3.56,4.62 -13.72,6 -17.44,10.46 -2.43,2.91 -2.85,8.88 -4,12.48 -3.66,11.12 -9.81,14.9 -21.2,17.62" android:strokeAlpha="0.2"/>
<path android:fillColor="#fafafa" android:pathData="M438.36,204.92a2.17,2.17 0,0 1,-0.14 0.56c-0.07,0.2 -0.14,0.42 -0.21,0.67l-0.38,0.88a15,15 0,0 1,-3.66 4.89,16 16,0 0,1 -8.14,3.9 14.83,14.83 0,0 1,-5.38 -0.14,28.32 28.32,0 0,1 -5.47,-1.82c-3.61,-1.59 -6.9,-3.37 -10.17,-4.2a15.72,15.72 0,0 0,-4.71 -0.57,10.36 10.36,0 0,0 -4,0.95 8.85,8.85 0,0 0,-4.31 4,12.05 12.05,0 0,0 -0.68,2.11 5.22,5.22 0,0 1,0.49 -2.19A8.9,8.9 0,0 1,396 209.7a10.77,10.77 0,0 1,4.12 -1,16.18 16.18,0 0,1 4.85,0.53c3.35,0.83 6.69,2.62 10.25,4.19a28.26,28.26 0,0 0,5.37 1.8,14.83 14.83,0 0,0 5.21,0.17 15.81,15.81 0,0 0,8 -3.71,15.36 15.36,0 0,0 3.72,-4.69c0.16,-0.32 0.3,-0.6 0.42,-0.86l0.26,-0.65A2.24,2.24 0,0 1,438.36 204.92Z"/>
<path android:fillColor="#fafafa" android:pathData="M438,235.6c0,0.05 -0.5,-0.39 -1.53,-0.86a7.93,7.93 0,0 0,-1.95 -0.59,10.41 10.41,0 0,0 -2.7,-0.05 17,17 0,0 0,-6.65 2.27c-2.34,1.3 -4.75,3.06 -7.62,4.38a15,15 0,0 1,-8.71 1.18,25.65 25.65,0 0,1 -6.86,-2.17c-1.87,-0.85 -3.31,-1.66 -4.3,-2.23 -0.5,-0.28 -0.88,-0.51 -1.13,-0.67a1.56,1.56 0,0 1,-0.38 -0.27,13.28 13.28,0 0,1 1.61,0.76c1,0.51 2.48,1.27 4.35,2.07a26.66,26.66 0,0 0,6.78 2,14.68 14.68,0 0,0 8.43,-1.19c2.8,-1.28 5.22,-3 7.6,-4.32a16.9,16.9 0,0 1,6.85 -2.22,10.31 10.31,0 0,1 2.78,0.14 7.65,7.65 0,0 1,2 0.69,6.1 6.1,0 0,1 1.11,0.72C437.94,235.48 438.06,235.59 438,235.6Z"/>
<path android:fillColor="#fafafa" android:pathData="M450.46,182.77a3.65,3.65 0,0 1,0.07 1,13 13,0 0,1 -0.35,2.77 14.59,14.59 0,0 1,-13.13 11.32,12.56 12.56,0 0,1 -2.79,-0.07 3.36,3.36 0,0 1,-1 -0.22,30.61 30.61,0 0,0 3.75,-0.08 14.89,14.89 0,0 0,12.81 -11A33.1,33.1 0,0 0,450.46 182.77Z"/>
<path android:fillColor="#fafafa" android:pathData="M423.1,188.63a1.92,1.92 0,0 1,-0.17 0.37,8.75 8.75,0 0,1 -0.61,1 13.6,13.6 0,0 1,-3 3.1,15.71 15.71,0 0,1 -5.75,2.74 16.22,16.22 0,0 1,-3.76 0.42,14.18 14.18,0 0,1 -4,-0.65 43.55,43.55 0,0 1,-7 -3.37,19.54 19.54,0 0,0 -5.84,-2.17 9.64,9.64 0,0 0,-4.17 0.14c-1,0.27 -1.44,0.56 -1.46,0.52s0.1,-0.1 0.33,-0.23a5.34,5.34 0,0 1,1.07 -0.48,9.11 9.11,0 0,1 4.28,-0.31 18.56,18.56 0,0 1,6 2.11,47.68 47.68,0 0,0 7,3.3 14.39,14.39 0,0 0,7.51 0.25,15.85 15.85,0 0,0 5.64,-2.57A18.53,18.53 0,0 0,423.1 188.63Z"/>
<path android:fillColor="#263238" android:pathData="M436.31,239.87a3.67,3.67 0,0 1,-0.91 -0.34,25.13 25.13,0 0,1 -2.34,-1.24 27.37,27.37 0,0 1,-3.23 -2.24c-0.58,-0.47 -1.16,-1 -1.76,-1.54a1.6,1.6 0,0 1,-0.53 -1.3,1.35 1.35,0 0,1 1,-1 2.83,2.83 0,0 1,1.35 -0.08,7.88 7.88,0 0,1 1.23,0.26 8.86,8.86 0,0 1,2.14 1,8.75 8.75,0 0,1 2.67,2.94 7.1,7.1 0,0 1,0.85 2.53,2.28 2.28,0 0,1 0,1 10.58,10.58 0,0 0,-1.19 -3.32A8.8,8.8 0,0 0,433 233.8a8.65,8.65 0,0 0,-2 -1,4.39 4.39,0 0,0 -2.29,-0.18c-0.36,0.11 -0.64,0.33 -0.67,0.62a1.08,1.08 0,0 0,0.38 0.87c0.54,0.54 1.14,1.05 1.69,1.52a35.92,35.92 0,0 0,3.12 2.3C435.11,239.19 436.35,239.79 436.31,239.87Z"/>
<path android:fillColor="#263238" android:pathData="M436.63,240.78a3.31,3.31 0,0 1,-0.28 -0.93,21.93 21.93,0 0,1 -0.45,-2.61 27.94,27.94 0,0 1,-0.16 -3.94c0,-0.74 0.06,-1.51 0.15,-2.32a4.53,4.53 0,0 1,0.3 -1.26,2 2,0 0,1 1,-1 1.38,1.38 0,0 1,1.46 0.1,2 2,0 0,1 0.67,1.2 11.38,11.38 0,0 1,0.13 2.37,12.7 12.7,0 0,1 -0.81,3.88 11.63,11.63 0,0 1,-1.22 2.36,2.9 2.9,0 0,1 -0.62,0.76 24.7,24.7 0,0 0,1.49 -3.25,13.37 13.37,0 0,0 0.68,-3.77 11.4,11.4 0,0 0,-0.15 -2.24,1.55 1.55,0 0,0 -0.48,-0.9 0.87,0.87 0,0 0,-0.92 0,2.16 2.16,0 0,0 -1,1.88c-0.09,0.79 -0.15,1.55 -0.19,2.28a34.35,34.35 0,0 0,0.06 3.88C436.44,239.41 436.72,240.76 436.63,240.78Z"/>
<path android:fillAlpha="0.2" android:fillColor="#FF000000"
android:pathData="M412.35,214.27a28.62,28.62 0,0 0,0.49 8.37,9.6 9.6,0 0,0 4.93,6.47 7.09,7.09 0,0 0,9.91 -5.26,15.74 15.74,0 0,1 -15.55,-7.28" android:strokeAlpha="0.2"/>
<path android:fillColor="#263238" android:pathData="M404,123.54c-2.06,-2.16 -5.7,-2.32 -8.26,-0.77a10.08,10.08 0,0 0,-4.44 7.44c-0.23,1.86 -0.09,3.85 -1,5.48s-3,2.67 -4.36,4.15a7.37,7.37 0,0 0,-0.95 8.39c0.81,1.42 2.17,2.83 1.78,4.42s-2.46,2.29 -3.66,3.54c-1.8,1.84 -1.52,4.82 -1,7.34 0.24,1.14 0.6,2.4 1.62,2.94a4.52,4.52 0,0 0,2.73 0.15c5.77,-0.81 11.62,0.41 17.44,0.72s12.16,-0.47 16.4,-4.48"/>
<path android:fillColor="#ffbe9d" android:pathData="M425.5,134.7l0.56,46.89A10.62,10.62 0,0 1,415.44 192h0a10.62,10.62 0,0 1,-10.61 -10.62v-15s-7.47,-1.24 -9,-11c-0.77,-4.85 -0.53,-12.8 -0.12,-19.3 0.37,-5.85 4.2,-13.21 12,-13.18C407.69,122.94 424.69,121.7 425.5,134.7Z"/>
<path android:fillColor="#263238" android:pathData="M398.65,142.6a1.25,1.25 0,0 0,1.2 1.27,1.2 1.2,0 0,0 1.29,-1.13 1.25,1.25 0,0 0,-1.2 -1.26A1.19,1.19 0,0 0,398.65 142.6Z"/>
<path android:fillColor="#263238" android:pathData="M397.13,141.47c0.16,0.17 1.1,-0.54 2.45,-0.53s2.33,0.68 2.48,0.51 -0.09,-0.37 -0.52,-0.68a3.37,3.37 0,0 0,-2 -0.61,3.22 3.22,0 0,0 -1.95,0.63C397.2,141.1 397.06,141.4 397.13,141.47Z"/>
<path android:fillColor="#263238" android:pathData="M411.66,142.6a1.27,1.27 0,0 0,1.21 1.27,1.2 1.2,0 0,0 1.28,-1.13 1.23,1.23 0,0 0,-1.2 -1.26A1.19,1.19 0,0 0,411.66 142.6Z"/>
<path android:fillColor="#263238" android:pathData="M410.36,141.47c0.16,0.17 1.11,-0.54 2.45,-0.53s2.33,0.68 2.48,0.51 -0.08,-0.37 -0.52,-0.68a3.37,3.37 0,0 0,-2 -0.61,3.25 3.25,0 0,0 -2,0.63C410.43,141.1 410.29,141.4 410.36,141.47Z"/>
<path android:fillColor="#263238" android:pathData="M405.76,151.59a8.62,8.62 0,0 0,-2.19 -0.39c-0.34,0 -0.66,-0.11 -0.72,-0.34a1.73,1.73 0,0 1,0.23 -1c0.32,-0.83 0.66,-1.7 1,-2.62a45.86,45.86 0,0 0,2.29 -6.84,44.7 44.7,0 0,0 -2.83,6.64l-1,2.64a1.94,1.94 0,0 0,-0.17 1.34,0.86 0.86,0 0,0 0.56,0.51 2.67,2.67 0,0 0,0.58 0.08A8.65,8.65 0,0 0,405.76 151.59Z"/>
<path android:fillColor="#eb996e" android:pathData="M404.83,166.41a24.86,24.86 0,0 0,13.06 -3.48s-3.17,6.69 -12.93,5.78Z"/>
<path android:fillColor="#eb996e" android:pathData="M406.34,156.21a1.18,1.18 0,0 1,1.31 -1.77,1.06 1.06,0 0,1 0.71,-1.08 1.52,1.52 0,0 1,1.33 0.24,2.06 2.06,0 0,1 0.68,2.41 2.28,2.28 0,0 1,-2.16 1.34,2.51 2.51,0 0,1 -2.1,-1.48"/>
<path android:fillColor="#263238" android:pathData="M409.72,152.52c-0.22,0 -0.22,1.45 -1.47,2.49s-2.81,0.87 -2.82,1.08 0.35,0.28 1,0.3a3.69,3.69 0,0 0,2.35 -0.82,3.18 3.18,0 0,0 1.14,-2.08C410,152.88 409.82,152.51 409.72,152.52Z"/>
<path android:fillColor="#263238" android:pathData="M409.19,139.12c0.13,0.36 1.47,0.19 3.05,0.38s2.86,0.62 3.07,0.29c0.09,-0.15 -0.13,-0.5 -0.64,-0.85a5.17,5.17 0,0 0,-2.28 -0.8,5.24 5.24,0 0,0 -2.39,0.28C409.42,138.66 409.13,138.94 409.19,139.12Z"/>
<path android:fillColor="#263238" android:pathData="M397.32,138.88c0.24,0.3 1.16,0 2.28,0s2.06,0.2 2.27,-0.12c0.1,-0.15 -0.05,-0.46 -0.46,-0.75a3.25,3.25 0,0 0,-1.85 -0.5,3.15 3.15,0 0,0 -1.82,0.62C397.34,138.41 397.21,138.73 397.32,138.88Z"/>
<path android:fillColor="#263238" android:pathData="M418.53,152.52c-0.07,1.29 -0.08,2.42 0,3.39a8.71,8.71 0,0 0,4.52 7.46,15.68 15.68,0 0,0 6.73,2.13 20.38,20.38 0,0 0,7.55 -1.51q6.27,-2.16 12.3,-4.9a2.85,2.85 0,0 0,1.52 -1.17,2.91 2.91,0 0,0 -0.09,-2.09c-0.57,-1.86 -1.13,-3.72 -1.7,-5.58a12.41,12.41 0,0 0,-1.24 -3.09,4.32 4.32,0 0,0 -2.55,-2 23.83,23.83 0,0 1,-2.69 -0.36,3.61 3.61,0 0,1 -2,-2.09 17.29,17.29 0,0 1,-0.74 -2.85c-0.46,-2.06 -1.44,-4.23 -3.36,-5.11 -1.09,-0.5 -2.35,-0.51 -3.47,-1a7.46,7.46 0,0 1,-3.46 -3.57,49.06 49.06,0 0,0 -2.33,-4.5 6.41,6.41 0,0 0,-2.87 -2.44,10 10,0 0,0 -2,-1.45c-3.23,-1.78 -7.13,-1.67 -10.81,-1.51s-11.73,-3.23 -12.25,6.22a3,3 0,0 1,4.77 0.41,5.46 5.46,0 0,1 0.8,4.06c-0.27,1.58 -0.47,3.34 0.39,4.7a4.68,4.68 0,0 0,4.33 1.87,13.66 13.66,0 0,0 4.69,-1.52s1.19,6.19 5.3,7.68Z"/>
<path android:fillColor="#263238" android:pathData="M414.29,146.35a0.3,0.3 0,0 1,-0.37 0.17,0.29 0.29,0 0,1 -0.15,-0.37 0.28,0.28 0,0 1,0.36 -0.17A0.28,0.28 0,0 1,414.29 146.35Z"/>
<path android:fillColor="#263238" android:pathData="M423.12,124a6.12,6.12 0,0 1,0.68 -6.49,6.84 6.84,0 0,1 6.13,-2.45 4.77,4.77 0,0 1,3.25 1.66,4.9 4.9,0 0,1 0.45,4.59 6.7,6.7 0,0 1,-5.58 4.5,5.33 5.33,0 0,1 -5.57,-4.11"/>
<path android:fillColor="#0298E1" android:pathData="M428.12,127.19a11.16,11.16 0,0 0,-1.94 -3.57,11.5 11.5,0 0,0 -3.37,-2.29c0,-0.06 0.51,0 1.24,0.22a6.35,6.35 0,0 1,2.51 1.72,6.44 6.44,0 0,1 1.47,2.66A2.21,2.21 0,0 1,428.12 127.19Z"/>
<path android:fillColor="#455a64" android:pathData="M427.59,125a1.15,1.15 0,0 1,0.1 0.37,5.51 5.51,0 0,1 0.05,1.09 6.94,6.94 0,0 1,-1.44 3.7c-2,2.84 -7.32,4.55 -12.18,2.43a5.72,5.72 0,0 1,-2.75 -2.63,24 24,0 0,1 -1.07,-3.32 7.27,7.27 0,0 0,-3.51 -4.29,7.84 7.84,0 0,0 -3.69,-1c-0.92,0 -1.43,0.13 -1.44,0.08a1.3,1.3 0,0 1,0.36 -0.12,5.19 5.19,0 0,1 1.07,-0.16 7.76,7.76 0,0 1,7.67 5.33,23.63 23.63,0 0,0 1.07,3.24 5.3,5.3 0,0 0,2.52 2.4,9.53 9.53,0 0,0 3.48,0.86 11.61,11.61 0,0 0,3.36 -0.22,8.28 8.28,0 0,0 4.82,-2.84 7.07,7.07 0,0 0,1.53 -3.49C427.64,125.54 427.54,125 427.59,125Z"/>
<path android:fillColor="#eb996e" android:pathData="M546.11,186.77l9.58,12.06 -6.26,-32.26a11.57,11.57 0,0 0,-3 -5.37,12.36 12.36,0 0,0 -2.11,-1.78A12.6,12.6 0,0 0,541.2 158c-1,-0.21 -1.3,-1.55 -0.44,-1.94s3.72,0.12 6.49,2.11 1.32,-3.11 0.83,-5 -1.74,-7.71 -1.28,-8.3c0.67,-0.87 1.75,-0.29 2.2,1.58s2.18,7.41 3.16,7.13 -1.67,-9.75 -1.67,-9.75 -0.89,-1.94 0.23,-2.3c2,-0.66 4.07,9.6 4.24,10.58 0.12,0.68 1.2,0.41 1,-0.31s-2.85,-9.4 -0.8,-10.08c1.57,-0.53 1.77,8.42 3.33,9.93s-0.85,-6.78 0.67,-7.23c0.57,-0.16 1,-0.2 1.71,4.74 0.37,2.66 -0.11,6.82 1,11.89l0.28,1.32c1.91,6.14 8.7,29.4 7.73,45.23a11.94,11.94 0,0 1,-19.32 8.54,111.64 111.64,0 0,1 -17.75,-17.6Z"/>
<path android:fillColor="#d1734a" android:pathData="M558.05,159.48s-0.3,0.14 -0.73,0.47a3,3 0,0 0,-1.14 1.79l-0.08,0.4 -0.23,-0.34a5,5 0,0 0,-1.23 -1.25,5.67 5.67,0 0,0 -3.2,-1.05c-0.88,0 -1.42,0.17 -1.44,0.1a2.76,2.76 0,0 1,1.44 -0.37,5.48 5.48,0 0,1 3.42,1 5.05,5.05 0,0 1,1.3 1.36l-0.31,0.06a3,3 0,0 1,1.35 -1.89C557.7,159.48 558,159.45 558.05,159.48Z"/>
<path android:fillColor="#eb996e" android:pathData="M516.92,128.81l-3.53,40.95 -20.5,-1.64c-0.13,-2.4 0,-11.66 0,-11.66s-8.53,-1.33 -8.64,-9.86c-0.05,-4.14 0.54,-12.7 1.17,-20.42a15.78,15.78 0,0 1,16.65 -14.49h0A15.78,15.78 0,0 1,516.92 128.81Z"/>
<path android:fillColor="#d1734a" android:pathData="M492.91,156.34A19.85,19.85 0,0 0,504 153.18s-2.63,6.14 -11.14,5.37Z"/>
<path android:fillColor="#263238" android:pathData="M488.46,131.85a1.22,1.22 0,0 0,1.18 1.23,1.15 1.15,0 0,0 1.25,-1.1 1.22,1.22 0,0 0,-1.17 -1.23A1.17,1.17 0,0 0,488.46 131.85Z"/>
<path android:fillColor="#263238" android:pathData="M487.28,130.48c0.15,0.16 1.07,-0.52 2.38,-0.52s2.28,0.66 2.42,0.5 -0.09,-0.36 -0.5,-0.66a3.36,3.36 0,0 0,-1.94 -0.6,3.27 3.27,0 0,0 -1.9,0.62C487.34,130.12 487.2,130.41 487.28,130.48Z"/>
<path android:fillColor="#263238" android:pathData="M501.6,132.16a1.22,1.22 0,0 0,1.18 1.23,1.16 1.16,0 0,0 1.25,-1.1 1.22,1.22 0,0 0,-1.17 -1.23A1.17,1.17 0,0 0,501.6 132.16Z"/>
<path android:fillColor="#263238" android:pathData="M500.17,130.73c0.15,0.16 1.07,-0.53 2.38,-0.52s2.27,0.66 2.42,0.5 -0.09,-0.36 -0.51,-0.67a3.3,3.3 0,0 0,-1.93 -0.59,3.17 3.17,0 0,0 -1.9,0.61C500.23,130.37 500.09,130.66 500.17,130.73Z"/>
<path android:fillColor="#263238" android:pathData="M495.41,140.45a9.3,9.3 0,0 0,-2.13 -0.38c-0.34,0 -0.65,-0.1 -0.71,-0.33a1.72,1.72 0,0 1,0.22 -1c0.32,-0.81 0.65,-1.65 1,-2.54a44.69,44.69 0,0 0,2.23 -6.67,43.29 43.29,0 0,0 -2.76,6.47c-0.33,0.9 -0.64,1.75 -0.95,2.57a2,2 0,0 0,-0.17 1.31,0.86 0.86,0 0,0 0.55,0.49 2.59,2.59 0,0 0,0.57 0.08A8.82,8.82 0,0 0,495.41 140.45Z"/>
<path android:fillColor="#263238" android:pathData="M499.27,141.36c-0.22,0 -0.22,1.41 -1.44,2.42s-2.73,0.85 -2.74,1.05 0.34,0.28 1,0.29a3.55,3.55 0,0 0,2.29 -0.79,3.11 3.11,0 0,0 1.11,-2C499.52,141.7 499.36,141.35 499.27,141.36Z"/>
<path android:fillColor="#263238" android:pathData="M499.83,125.59c0.13,0.36 1.44,0.19 3,0.37s2.79,0.61 3,0.29c0.09,-0.15 -0.13,-0.49 -0.63,-0.84a5,5 0,0 0,-2.21 -0.77,5.12 5.12,0 0,0 -2.33,0.27C500.06,125.14 499.77,125.42 499.83,125.59Z"/>
<path android:fillColor="#263238" android:pathData="M487.76,126.69c0.23,0.3 1.13,0 2.22,0s2,0.2 2.22,-0.11c0.09,-0.15 -0.05,-0.45 -0.46,-0.73a3.06,3.06 0,0 0,-1.8 -0.49,3.15 3.15,0 0,0 -1.77,0.6C487.79,126.24 487.66,126.54 487.76,126.69Z"/>
<path android:fillColor="#263238" android:pathData="M507.66,119.45l0,0a6.71,6.71 0,0 1,2.49 4.34l0,0.17c0.33,2.44 0.27,4.91 0.63,7.34a11,11 0,0 0,3 6.58c0.74,0.69 2,1.16 2.66,0.35a2.1,2.1 0,0 0,0.3 -1.11c0.46,-5.88 2.06,-11.09 2.05,-17.23a5.19,5.19 0,0 0,-2.15 -4.22c-1.29,-0.92 -2.86,-1.88 -4.29,-1.2s-3.28,3.35 -4.39,4.49"/>
<path android:fillColor="#eb996e" android:pathData="M514.05,132.67c0.14,-0.06 5.86,-1.73 5.67,4.1s-6,4.44 -6,4.27S514.05,132.67 514.05,132.67Z"/>
<path android:fillColor="#d1734a" android:pathData="M515.57,138.89s0.1,0.08 0.27,0.16a1,1 0,0 0,0.75 0,2.51 2.51,0 0,0 1.24,-2.22 3.28,3.28 0,0 0,-0.24 -1.46,1.17 1.17,0 0,0 -0.74,-0.81 0.53,0.53 0,0 0,-0.61 0.26c-0.08,0.16 0,0.28 -0.08,0.29s-0.12,-0.1 -0.06,-0.34a0.61,0.61 0,0 1,0.24 -0.36,0.75 0.75,0 0,1 0.56,-0.13 1.43,1.43 0,0 1,1 0.94,3.6 3.6,0 0,1 0.3,1.63 2.66,2.66 0,0 1,-1.57 2.48,1.07 1.07,0 0,1 -0.92,-0.19C515.57,139 515.55,138.9 515.57,138.89Z"/>
<path android:fillColor="#263238" android:pathData="M512.62,115.41c1.44,-2.33 -2.5,-5.68 -5.38,-6.59s-6.67,0.5 -9.53,1.45c-1.81,0.6 -3.61,1.43 -5.51,1.36a12.93,12.93 0,0 1,-3.7 -0.95,9.47 9.47,0 0,0 -3.73,-0.73 3.49,3.49 0,0 0,-3.07 1.94,2.21 2.21,0 0,0 1.47,3 2.86,2.86 0,1 0,-0.76 5.31c-0.83,-0.63 -2.1,0.41 -2,1.44a3,3 0,0 0,2 2.21,10.9 10.9,0 0,0 7.79,-0.12c2.52,-0.85 4.85,-2.17 7.35,-3.08s6.67,-2.54 9.18,-1.66c1.84,0.66 3.13,2.88 4.17,2.39a3.6,3.6 0,0 0,1.85 -2.63,10.3 10.3,0 0,0 -0.12,-3.32"/>
<path android:fillColor="#455a64" android:pathData="M482.47,114.71s0.3,0.43 0.93,1.11a8,8 0,0 0,3.24 2.09,7.41 7.41,0 0,0 5.56,-0.23c2,-0.89 3.68,-2.66 5.63,-4.34a12.11,12.11 0,0 1,6.56 -3.15,6.72 6.72,0 0,1 5.58,1.93 5.11,5.11 0,0 1,1.32 3.77A3.91,3.91 0,0 1,511 117c-0.11,0.22 -0.17,0.34 -0.19,0.33a9.14,9.14 0,0 0,0.22 -1.42,5.06 5.06,0 0,0 -1.4,-3.48 6.38,6.38 0,0 0,-5.23 -1.68,11.76 11.76,0 0,0 -6.23,3.06c-1.92,1.64 -3.67,3.46 -5.79,4.39a7.94,7.94 0,0 1,-9.19 -2.2,5.27 5.27,0 0,1 -0.61,-0.91C482.5,114.84 482.45,114.72 482.47,114.71Z"/>
<path android:fillColor="#455a64" android:pathData="M515.53,132.42s-0.25,-0.16 -0.47,-0.63a3.88,3.88 0,0 1,-0.29 -2.11c0.13,-1.88 1.79,-3.9 2,-6.49a5.87,5.87 0,0 0,-0.64 -3.49,4.5 4.5,0 0,0 -2.17,-1.87 3.84,3.84 0,0 0,-2 -0.26c-0.47,0.07 -0.72,0.18 -0.74,0.13a1.49,1.49 0,0 1,0.7 -0.35,3.61 3.61,0 0,1 2.13,0.1 4.66,4.66 0,0 1,2.48 2,6.15 6.15,0 0,1 0.77,3.81 10.74,10.74 0,0 1,-1.13 3.68,11.35 11.35,0 0,0 -1.05,2.81A4.65,4.65 0,0 0,515.53 132.42Z"/>
<path android:fillColor="#0298E1" android:pathData="M482.64,459.81l-0.06,-11 20.65,-0.25 0.26,16.13 -1.28,0.1c-5.69,0.38 -29,1.56 -32.8,0.45C465.15,464 482.64,459.81 482.64,459.81Z"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M496,464.59a7.15,7.15 0,0 1,2.58 -4.44,7 7,0 0,1 4.81,-1.56l0.07,5.78Z" android:strokeAlpha="0.4"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M474.1,462.15S468,464 468.75,465s24.36,0.7 34.74,-0.34l0,-0.46 -27.5,0.58S475.3,462.18 474.1,462.15Z" android:strokeAlpha="0.4"/>
<path android:fillColor="#263238" android:pathData="M503.78,464.18a1.41,1.41 0,0 1,-0.35 0.05l-1,0.07 -3.75,0.21c-3.17,0.15 -7.55,0.31 -12.39,0.37s-9.23,0 -12.4,0l-3.76,-0.11 -1,0a2,2 0,0 1,-0.35 0h1.38l3.75,0c3.17,0 7.55,0 12.39,0s9.22,-0.19 12.39,-0.3l3.75,-0.13 1,0Z"/>
<path android:fillColor="#263238" android:pathData="M476,465.1a8.85,8.85 0,0 0,-0.73 -1.78A9.09,9.09 0,0 0,474 461.9a2.84,2.84 0,0 1,1.51 1.29A2.81,2.81 0,0 1,476 465.1Z"/>
<path android:fillColor="#263238" android:pathData="M482,461.94c-0.06,0 -0.35,-0.32 -0.66,-0.79s-0.51,-0.88 -0.45,-0.92 0.35,0.31 0.66,0.78S482.08,461.9 482,461.94Z"/>
<path android:fillColor="#263238" android:pathData="M483.68,461c0,0.05 -0.37,-0.16 -0.73,-0.48s-0.62,-0.61 -0.57,-0.66 0.37,0.16 0.73,0.47S483.73,461 483.68,461Z"/>
<path android:fillColor="#263238" android:pathData="M484.71,459.07a4.68,4.68 0,0 1,-2.15 0.05,4.68 4.68,0 0,1 2.15,-0.05Z"/>
<path android:fillColor="#263238" android:pathData="M485.06,457.69a2.15,2.15 0,0 1,-1.2 0.36,2 2,0 0,1 -1.24,-0.15 7.94,7.94 0,0 1,1.22 -0.1A6.81,6.81 0,0 1,485.06 457.69Z"/>
<path android:fillColor="#263238" android:pathData="M481.3,460.14a3.71,3.71 0,0 1,-1.33 0,7.46 7.46,0 0,1 -1.42,-0.29 3.84,3.84 0,0 1,-0.81 -0.33,0.67 0.67,0 0,1 -0.33,-0.4 0.52,0.52 0,0 1,0.19 -0.54,2.44 2.44,0 0,1 3,0.68 2.24,2.24 0,0 1,0.44 0.88c0.06,0.22 0.06,0.35 0,0.36a3.29,3.29 0,0 0,-0.62 -1.13,2.36 2.36,0 0,0 -1.14,-0.72 2.07,2.07 0,0 0,-1.58 0.13c-0.21,0.16 -0.12,0.4 0.11,0.54a4.09,4.09 0,0 0,0.75 0.31A11.31,11.31 0,0 0,480 460C480.79,460.11 481.3,460.1 481.3,460.14Z"/>
<path android:fillColor="#263238" android:pathData="M481,460.21a1.4,1.4 0,0 1,-0.16 -0.92,2.17 2.17,0 0,1 0.35,-1 1.32,1.32 0,0 1,1.1 -0.69,0.52 0.52,0 0,1 0.41,0.61 1.35,1.35 0,0 1,-0.22 0.59,3.71 3.71,0 0,1 -0.61,0.81 2.08,2.08 0,0 1,-0.75 0.55s0.26,-0.24 0.62,-0.67a4.44,4.44 0,0 0,0.54 -0.8c0.18,-0.28 0.3,-0.79 0,-0.84s-0.67,0.3 -0.87,0.57a2,2 0,0 0,-0.36 0.87A5.56,5.56 0,0 0,481 460.21Z"/>
<path android:fillColor="#263238" android:pathData="M503.29,458.54s-0.6,-0.05 -1.53,0.07a6.44,6.44 0,0 0,-5.35 4.38c-0.31,0.89 -0.33,1.48 -0.38,1.48a1.51,1.51 0,0 1,0 -0.42,5.89 5.89,0 0,1 0.21,-1.11 6.44,6.44 0,0 1,2.05 -3.11,6.5 6.5,0 0,1 3.45,-1.4 5.1,5.1 0,0 1,1.14 0A1,1 0,0 1,503.29 458.54Z"/>
<path android:fillColor="#263238" android:pathData="M501,450a36.51,36.51 0,0 1,0.23 4.24,35.53 35.53,0 0,1 0,4.25 36.51,36.51 0,0 1,-0.23 -4.24A35.39,35.39 0,0 1,501 450Z"/>
<path android:fillColor="#263238" android:pathData="M493.38,462.61a12.13,12.13 0,0 1,-3 0.34,11.19 11.19,0 0,1 -3,-0.21c0,-0.07 1.35,0 3,0S493.37,462.54 493.38,462.61Z"/>
<path android:fillColor="#263238" android:pathData="M497.43,462.55c0.05,0.05 -0.11,0.29 -0.24,0.6s-0.21,0.59 -0.28,0.58 -0.11,-0.32 0,-0.68S497.38,462.5 497.43,462.55Z"/>
<path android:fillColor="#263238" android:pathData="M498.93,460.63c0.05,0.05 -0.08,0.27 -0.29,0.49s-0.42,0.36 -0.47,0.31 0.08,-0.27 0.29,-0.49S498.88,460.59 498.93,460.63Z"/>
<path android:fillColor="#263238" android:pathData="M501.1,459.74c0,0.07 -0.29,0.07 -0.59,0.18s-0.52,0.27 -0.57,0.23 0.11,-0.33 0.49,-0.47S501.12,459.67 501.1,459.74Z"/>
<path android:fillColor="#263238" android:pathData="M502.65,459.31c0,0.06 -0.09,0.17 -0.26,0.24s-0.33,0.07 -0.36,0 0.09,-0.17 0.26,-0.24S502.62,459.25 502.65,459.31Z"/>
<path android:fillColor="#0298E1" android:pathData="M543.72,461.22l-1.66,-10.89 20.4,-3.24L565.05,463l-1.25,0.28c-5.58,1.2 -28.45,5.74 -32.39,5.19C527,467.88 543.72,461.22 543.72,461.22Z"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M557.63,464a7.19,7.19 0,0 1,1.91 -4.76,6.94 6.94,0 0,1 4.53,-2.24l0.91,5.7Z" android:strokeAlpha="0.4"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M535.6,464.78s-5.79,2.71 -4.88,3.59 24.2,-2.83 34.33,-5.36l-0.1,-0.45 -27.13,4.56S536.8,464.64 535.6,464.78Z" android:strokeAlpha="0.4"/>
<path android:fillColor="#263238" android:pathData="M565.26,462.49a1.56,1.56 0,0 1,-0.34 0.1l-1,0.22 -3.68,0.75c-3.11,0.61 -7.42,1.4 -12.2,2.16s-9.13,1.37 -12.27,1.76l-3.74,0.43 -1,0.11a1.39,1.39 0,0 1,-0.36 0L531,468l1,-0.15 3.72,-0.52c3.14,-0.43 7.48,-1.06 12.26,-1.82s9.09,-1.53 12.21,-2.1l3.69,-0.67 1,-0.17Z"/>
<path android:fillColor="#263238" android:pathData="M537.88,467.43a8.64,8.64 0,0 0,-1 -1.66,8.18 8.18,0 0,0 -1.49,-1.21 2.73,2.73 0,0 1,1.68 1.05A2.84,2.84 0,0 1,537.88 467.43Z"/>
<path android:fillColor="#263238" android:pathData="M543.41,463.42c0,0.05 -0.4,-0.26 -0.77,-0.68s-0.63,-0.8 -0.58,-0.85 0.4,0.26 0.77,0.68S543.46,463.37 543.41,463.42Z"/>
<path android:fillColor="#263238" android:pathData="M544.92,462.28c0,0.06 -0.39,-0.1 -0.79,-0.36s-0.7,-0.52 -0.66,-0.58 0.39,0.11 0.79,0.37S545,462.23 544.92,462.28Z"/>
<path android:fillColor="#263238" android:pathData="M545.66,460.19a2.4,2.4 0,0 1,-1 0.31,2.63 2.63,0 0,1 -1.09,0.06 2.4,2.4 0,0 1,1 -0.31A2.45,2.45 0,0 1,545.66 460.19Z"/>
<path android:fillColor="#263238" android:pathData="M545.8,458.78a2.1,2.1 0,0 1,-1.13 0.53,2 2,0 0,1 -1.25,0 7.44,7.44 0,0 1,1.19 -0.27A6.29,6.29 0,0 1,545.8 458.78Z"/>
<path android:fillColor="#263238" android:pathData="M542.43,461.75a3.63,3.63 0,0 1,-1.31 0.2,7.47 7.47,0 0,1 -1.44,-0.08 4.15,4.15 0,0 1,-0.85 -0.2,0.72 0.72,0 0,1 -0.39,-0.36 0.52,0.52 0,0 1,0.11 -0.56,2.46 2.46,0 0,1 3.09,0.23 2.36,2.36 0,0 1,0.56 0.81c0.09,0.22 0.11,0.34 0.09,0.35a3.6,3.6 0,0 0,-0.77 -1,2.3 2.3,0 0,0 -1.24,-0.55 2,2 0,0 0,-1.54 0.35c-0.18,0.19 -0.06,0.42 0.19,0.52a3.52,3.52 0,0 0,0.79 0.2,9.72 9.72,0 0,0 1.4,0.14C541.93,461.79 542.43,461.71 542.43,461.75Z"/>
<path android:fillColor="#263238" android:pathData="M542.11,461.87a1.27,1.27 0,0 1,-0.3 -0.89,2.19 2.19,0 0,1 0.2,-1 1.32,1.32 0,0 1,1 -0.84,0.53 0.53,0 0,1 0.5,0.54 1.49,1.49 0,0 1,-0.13 0.62,3.86 3.86,0 0,1 -0.49,0.89c-0.35,0.47 -0.65,0.67 -0.67,0.65s0.23,-0.28 0.52,-0.75a4.15,4.15 0,0 0,0.42 -0.87c0.14,-0.31 0.18,-0.82 -0.15,-0.83s-0.62,0.4 -0.78,0.69a2.07,2.07 0,0 0,-0.23 0.91A4.26,4.26 0,0 0,542.11 461.87Z"/>
<path android:fillColor="#263238" android:pathData="M564,457s-0.59,0 -1.5,0.29a6.47,6.47 0,0 0,-4.66 5.11c-0.17,0.93 -0.11,1.52 -0.16,1.52a1.51,1.51 0,0 1,-0.06 -0.41,5.87 5.87,0 0,1 0,-1.14 6.4,6.4 0,0 1,1.59 -3.37,6.33 6.33,0 0,1 3.21,-1.88 5.15,5.15 0,0 1,1.12 -0.15A1.18,1.18 0,0 1,564 457Z"/>
<path android:fillColor="#263238" android:pathData="M560.49,448.83a35.35,35.35 0,0 1,0.85 4.16,34.18 34.18,0 0,1 0.59,4.2 39.55,39.55 0,0 1,-0.84 -4.16A35.54,35.54 0,0 1,560.49 448.83Z"/>
<path android:fillColor="#263238" android:pathData="M554.75,462.44a12,12 0,0 1,-2.93 0.77,12.25 12.25,0 0,1 -3,0.24c0,-0.07 1.34,-0.21 3,-0.49S554.73,462.37 554.75,462.44Z"/>
<path android:fillColor="#263238" android:pathData="M558.74,461.8c0.06,0 -0.06,0.3 -0.15,0.63s-0.12,0.61 -0.19,0.61 -0.15,-0.3 0,-0.68S558.69,461.76 558.74,461.8Z"/>
<path android:fillColor="#263238" android:pathData="M560,459.68c0.06,0 0,0.28 -0.22,0.52s-0.36,0.42 -0.42,0.38 0,-0.27 0.22,-0.52S559.89,459.64 560,459.68Z"/>
<path android:fillColor="#263238" android:pathData="M562,458.48c0,0.08 -0.27,0.12 -0.56,0.27s-0.47,0.35 -0.53,0.31 0.06,-0.35 0.42,-0.53S562,458.42 562,458.48Z"/>
<path android:fillColor="#263238" android:pathData="M563.44,457.84c0,0.05 -0.07,0.18 -0.22,0.27s-0.32,0.12 -0.35,0.06 0.06,-0.18 0.22,-0.28S563.41,457.78 563.44,457.84Z"/>
<path android:fillColor="#263238" android:pathData="M533.13,261.02l33.51,195.03l-26.43,3.21l-37.52,-173.96l3.12,171.46l-25.3,0l-10.01,-197.44l62.63,1.7z"/>
<path android:fillColor="#455a64" android:pathData="M529.57,201.14l1.3,30.11 4.83,34.36H470.35s-0.14,-8.11 0.46,-19.37c0.83,-15.83 1.63,-38.44 1.63,-38.44l-3,5.75a110.93,110.93 0,0 1,-8.53 -9.76l0.93,-0.79L455,189.78l12.46,-14.09a36.42,36.42 0,0 1,11.63 -8.82c2.29,-1.08 3.17,-1.14 8.32,-1.84 2.42,-0.33 4.26,-0.49 5.46,-0.64a35.08,35.08 0,0 0,21.17 0h0c0.83,0 1.63,0.1 2.41,0.19l5.18,1.21a30.58,30.58 0,0 1,15.64 9.15L551.1,190l-14.88,16.55Z"/>
<path android:fillColor="#263238" android:pathData="M472.34,216.32a31.54,31.54 0,0 0,0.41 -4.54c0.19,-2.81 0.45,-6.68 0.8,-10.95s0.73,-8.14 1,-10.94a32.61,32.61 0,0 0,0.33 -4.55,25.41 25.41,0 0,0 -0.85,4.49c-0.4,2.78 -0.87,6.65 -1.22,10.94s-0.53,8.17 -0.58,11A24.7,24.7 0,0 0,472.34 216.32Z"/>
<path android:fillColor="#263238" android:pathData="M528.5,189.06a12.1,12.1 0,0 0,-0.17 3.13c0,1.94 0.12,4.6 0.34,7.54s0.51,5.6 0.78,7.51a13,13 0,0 0,0.63 3.07,14.17 14.17,0 0,0 -0.11,-3.13c-0.17,-2.21 -0.36,-4.72 -0.57,-7.5s-0.39,-5.3 -0.55,-7.51A14.79,14.79 0,0 0,528.5 189.06Z"/>
<path android:fillColor="#263238" android:pathData="M520.45,207.08a29.37,29.37 0,0 0,-0.66 -4.34,16.74 16.74,0 0,0 -2,-4.71 17.72,17.72 0,0 0,-4.52 -5,17.52 17.52,0 0,0 -7.45,-3.29 17.82,17.82 0,0 0,-9.27 0.78,16.83 16.83,0 0,0 -4.46,2.41 16.51,16.51 0,0 0,-3.72 3.74,17.54 17.54,0 0,0 0,20.84 20.06,20.06 0,0 0,1.72 2.05,21.17 21.17,0 0,0 2,1.7 16.51,16.51 0,0 0,4.46 2.4,17.59 17.59,0 0,0 16.72,-2.5 17.57,17.57 0,0 0,4.52 -5,16.78 16.78,0 0,0 2,-4.72 29.17,29.17 0,0 0,0.66 -4.34,1.29 1.29,0 0,1 0,0.29c0,0.23 0,0.51 0,0.86a8.32,8.32 0,0 1,-0.11 1.38,14.31 14.31,0 0,1 -0.34,1.86 16.9,16.9 0,0 1,-2 4.82,18 18,0 0,1 -12.13,8.57 18,18 0,0 1,-9.52 -0.76,17 17,0 0,1 -4.59,-2.45 20.06,20.06 0,0 1,-2.06 -1.75,19 19,0 0,1 -1.78,-2.1 18,18 0,0 1,0 -21.44,22.42 22.42,0 0,1 1.78,-2.1 18.78,18.78 0,0 1,2.06 -1.74,17.29 17.29,0 0,1 4.59,-2.46 18.09,18.09 0,0 1,9.51 -0.75A17.92,17.92 0,0 1,518 197.88a17,17 0,0 1,2 4.81,14.44 14.44,0 0,1 0.34,1.87 8.24,8.24 0,0 1,0.11 1.38c0,0.35 0,0.63 0,0.85A1.23,1.23 0,0 1,520.45 207.08Z"/>
<path android:fillColor="#fafafa" android:pathData="M515.27,207.08a24.57,24.57 0,0 0,-0.5 -3.07,12.7 12.7,0 0,0 -4.63,-6.88 12.5,12.5 0,0 0,-11.82 -1.75,11.9 11.9,0 0,0 -3.15,1.7 11.61,11.61 0,0 0,-2.63 2.65,12.39 12.39,0 0,0 0,14.71 12.47,12.47 0,0 0,5.78 4.35,12.59 12.59,0 0,0 6.55,0.56 12.45,12.45 0,0 0,5.27 -2.32,12.59 12.59,0 0,0 4.63,-6.87 24.22,24.22 0,0 0,0.5 -3.08,6.39 6.39,0 0,1 0,0.82 5.4,5.4 0,0 1,-0.08 1,9.8 9.8,0 0,1 -0.23,1.33 12.69,12.69 0,0 1,-4.61 7.12,12.84 12.84,0 0,1 -12.2,1.91 12.44,12.44 0,0 1,-3.29 -1.75,12.12 12.12,0 0,1 -2.74,-2.75 12.85,12.85 0,0 1,0 -15.31,12.8 12.8,0 0,1 6,-4.5 12.85,12.85 0,0 1,6.79 -0.53A12.78,12.78 0,0 1,515 204a9.8,9.8 0,0 1,0.23 1.33,5.27 5.27,0 0,1 0.08,1A6.16,6.16 0,0 1,515.27 207.08Z"/>
<path android:fillColor="#263238" android:pathData="M510.48,207.08c-0.06,0 0,-0.7 -0.35,-1.9a7.84,7.84 0,0 0,-2.89 -4.24,7.68 7.68,0 0,0 -7.29,-1.06 7.59,7.59 0,0 0,-3.55 2.68,7.62 7.62,0 0,0 0,9.05 7.59,7.59 0,0 0,3.55 2.68,7.74 7.74,0 0,0 4,0.35 7.58,7.58 0,0 0,3.25 -1.41,7.84 7.84,0 0,0 2.89,-4.24c0.32,-1.2 0.29,-1.91 0.35,-1.91a2,2 0,0 1,0 0.51,6 6,0 0,1 -0.17,1.45 8,8 0,0 1,-6.27 6,8.09 8.09,0 0,1 -4.27,-0.33 8,8 0,0 1,-3.8 -2.83,8.08 8.08,0 0,1 0,-9.65 7.94,7.94 0,0 1,3.8 -2.83,8.09 8.09,0 0,1 4.27,-0.33 8,8 0,0 1,6.27 6,6 6,0 0,1 0.17,1.45A1.91,1.91 0,0 1,510.48 207.08Z"/>
<path android:fillColor="#0298E1" android:pathData="M316.64,460.45l0.07,-7.59 14.22,0V464l-0.88,0.05c-3.93,0.21 -20,0.77 -22.59,0C304.55,463.13 316.64,460.45 316.64,460.45Z"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M325.78,463.88a4.94,4.94 0,0 1,1.83 -3,4.8 4.8,0 0,1 3.32,-1v4Z" android:strokeAlpha="0.4"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M310.73,462s-4.23,1.2 -3.71,1.9 16.76,0.74 23.92,0.14l0,-0.32L312,463.8S311.56,462 310.73,462Z" android:strokeAlpha="0.4"/>
<path android:fillColor="#263238" android:pathData="M331.14,463.68l-0.24,0 -0.71,0 -2.58,0.1c-2.18,0.08 -5.2,0.14 -8.53,0.13s-6.35,-0.08 -8.53,-0.16l-2.59,-0.11 -0.7,0 -0.24,0h1l2.58,0.06c2.18,0.05 5.2,0.1 8.53,0.11s6.34,0 8.53,-0.08l2.58,-0.05h0.95Z"/>
<path android:fillColor="#263238" android:pathData="M312,464a5.57,5.57 0,0 0,-0.48 -1.23,5.74 5.74,0 0,0 -0.88,-1 1.85,1.85 0,0 1,1 0.9A1.94,1.94 0,0 1,312 464Z"/>
<path android:fillColor="#263238" android:pathData="M316.19,461.9s-0.24,-0.21 -0.45,-0.54 -0.34,-0.61 -0.3,-0.64 0.24,0.22 0.45,0.55S316.23,461.88 316.19,461.9Z"/>
<path android:fillColor="#263238" android:pathData="M317.34,461.3s-0.26,-0.12 -0.5,-0.34 -0.42,-0.42 -0.38,-0.46 0.25,0.11 0.5,0.34S317.37,461.26 317.34,461.3Z"/>
<path android:fillColor="#263238" android:pathData="M318.07,460a1.59,1.59 0,0 1,-0.74 0.09,1.52 1.52,0 0,1 -0.74,-0.08 1.59,1.59 0,0 1,0.74 -0.09A1.67,1.67 0,0 1,318.07 460Z"/>
<path android:fillColor="#263238" android:pathData="M318.32,459c0,0.05 -0.34,0.21 -0.82,0.24a1.48,1.48 0,0 1,-0.86 -0.11,4.86 4.86,0 0,1 0.84,-0.06A6.13,6.13 0,0 1,318.32 459Z"/>
<path android:fillColor="#263238" android:pathData="M315.71,460.66a2.74,2.74 0,0 1,-0.91 0,6.33 6.33,0 0,1 -1,-0.22 3.08,3.08 0,0 1,-0.55 -0.23,0.53 0.53,0 0,1 -0.23,-0.29 0.37,0.37 0,0 1,0.14 -0.36,1.69 1.69,0 0,1 2.37,1.1 0.6,0.6 0,0 1,0 0.25,2.5 2.5,0 0,0 -0.41,-0.78 1.64,1.64 0,0 0,-0.78 -0.51,1.43 1.43,0 0,0 -1.09,0.07c-0.15,0.11 -0.09,0.28 0.07,0.38a4.61,4.61 0,0 0,0.51 0.22,5.42 5.42,0 0,0 0.94,0.24C315.36,460.63 315.71,460.64 315.71,460.66Z"/>
<path android:fillColor="#263238" android:pathData="M315.47,460.71a1,1 0,0 1,-0.1 -0.64,1.47 1.47,0 0,1 0.25,-0.66 0.92,0.92 0,0 1,0.76 -0.47,0.37 0.37,0 0,1 0.28,0.43 1.11,1.11 0,0 1,-0.15 0.4,2.66 2.66,0 0,1 -0.44,0.56 1.27,1.27 0,0 1,-0.52 0.36s0.18,-0.16 0.43,-0.45a2.78,2.78 0,0 0,0.39 -0.55c0.12,-0.19 0.21,-0.53 0,-0.58s-0.46,0.21 -0.6,0.39a1.37,1.37 0,0 0,-0.26 0.59A3.67,3.67 0,0 0,315.47 460.71Z"/>
<path android:fillColor="#263238" android:pathData="M330.86,459.79s-0.41,0 -1.05,0a4.46,4.46 0,0 0,-2.29 0.93,4.65 4.65,0 0,0 -1.44,2c-0.22,0.61 -0.24,1 -0.27,1a0.74,0.74 0,0 1,0 -0.29,3.89 3.89,0 0,1 0.15,-0.77 4.44,4.44 0,0 1,1.45 -2.11,4.36 4.36,0 0,1 2.39,-0.93 3.58,3.58 0,0 1,0.78 0A0.77,0.77 0,0 1,330.86 459.79Z"/>
<path android:fillColor="#263238" android:pathData="M329.4,453.87a24.61,24.61 0,0 1,0.12 2.92,25.24 25.24,0 0,1 -0.06,2.92 23.36,23.36 0,0 1,-0.11 -2.92A24.2,24.2 0,0 1,329.4 453.87Z"/>
<path android:fillColor="#263238" android:pathData="M324,462.49a8.51,8.51 0,0 1,-2.08 0.2,8.25 8.25,0 0,1 -2.07,-0.17s0.93,0 2.07,0S324,462.44 324,462.49Z"/>
<path android:fillColor="#263238" android:pathData="M326.79,462.49s-0.08,0.2 -0.18,0.41 -0.14,0.4 -0.19,0.4 -0.08,-0.23 0,-0.47S326.75,462.46 326.79,462.49Z"/>
<path android:fillColor="#263238" android:pathData="M327.84,461.19s-0.06,0.18 -0.21,0.33 -0.29,0.24 -0.33,0.21 0.06,-0.18 0.21,-0.33S327.8,461.15 327.84,461.19Z"/>
<path android:fillColor="#263238" android:pathData="M329.34,460.6s-0.2,0 -0.41,0.11 -0.35,0.19 -0.39,0.16 0.08,-0.23 0.34,-0.32S329.36,460.55 329.34,460.6Z"/>
<path android:fillColor="#263238" android:pathData="M330.41,460.32s-0.06,0.11 -0.18,0.16 -0.23,0 -0.24,0 0.06,-0.12 0.18,-0.16S330.4,460.27 330.41,460.32Z"/>
<path android:fillColor="#263238" android:pathData="M331.14,457.68l6.38,-58.43l10.9,-35.57l-25.13,-9.6l-5.3,41.42l-1.54,61.29l14.69,0.89z"/>
<path android:fillColor="#0298E1" android:pathData="M358.5,460.63l-0.43,-7.58 14.18,-0.91 0.76,11.08 -0.88,0.11c-3.9,0.47 -19.86,2.11 -22.53,1.48C346.62,464.11 358.5,460.63 358.5,460.63Z"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M367.86,463.44a4.91,4.91 0,0 1,4.86 -4.39l0.26,4Z" android:strokeAlpha="0.4"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M352.71,462.54s-4.15,1.49 -3.57,2.15 16.76,-0.38 23.87,-1.47l-0.05,-0.31 -18.88,1.38S353.54,462.52 352.71,462.54Z" android:strokeAlpha="0.4"/>
<path android:fillColor="#263238" android:pathData="M373.19,462.88l-0.25,0 -0.69,0.09 -2.57,0.28c-2.18,0.22 -5.18,0.48 -8.51,0.7s-6.34,0.35 -8.52,0.41l-2.59,0.06h-0.94l0.24,0 0.7,0 2.58,-0.12c2.19,-0.1 5.2,-0.25 8.52,-0.46s6.33,-0.46 8.5,-0.65l2.58,-0.22 0.7,-0.06Z"/>
<path android:fillColor="#263238" android:pathData="M354.1,464.51a3.76,3.76 0,0 0,-1.5 -2.13,1.87 1.87,0 0,1 1.08,0.83A1.91,1.91 0,0 1,354.1 464.51Z"/>
<path android:fillColor="#263238" android:pathData="M358.15,462.11s-0.26,-0.2 -0.48,-0.51a1.63,1.63 0,0 1,-0.35 -0.62s0.26,0.2 0.49,0.52S358.19,462.09 358.15,462.11Z"/>
<path android:fillColor="#263238" android:pathData="M359.26,461.43s-0.26,-0.1 -0.52,-0.3 -0.45,-0.4 -0.42,-0.44 0.27,0.1 0.52,0.31S359.29,461.39 359.26,461.43Z"/>
<path android:fillColor="#263238" android:pathData="M359.9,460.05a1.87,1.87 0,0 1,-0.74 0.14,1.62 1.62,0 0,1 -0.74,0c0,-0.05 0.32,-0.11 0.73,-0.14A1.68,1.68 0,0 1,359.9 460.05Z"/>
<path android:fillColor="#263238" android:pathData="M360.09,459.09a1.53,1.53 0,0 1,-0.81 0.29,1.37 1.37,0 0,1 -0.86,-0.06 4,4 0,0 1,0.83 -0.11A4.34,4.34 0,0 1,360.09 459.09Z"/>
<path android:fillColor="#263238" android:pathData="M357.59,460.91a2.74,2.74 0,0 1,-0.91 0,5.82 5.82,0 0,1 -1,-0.15 2.93,2.93 0,0 1,-0.57 -0.19,0.53 0.53,0 0,1 -0.24,-0.27A0.35,0.35 0,0 1,355 460a1.69,1.69 0,0 1,2.1 0.36,1.77 1.77,0 0,1 0.34,0.59 0.62,0.62 0,0 1,0 0.24,2.82 2.82,0 0,0 -0.47,-0.75 1.67,1.67 0,0 0,-0.81 -0.45,1.41 1.41,0 0,0 -1.08,0.14c-0.14,0.12 -0.07,0.28 0.1,0.37a2.92,2.92 0,0 0,0.52 0.19,6.88 6.88,0 0,0 1,0.18C357.24,460.9 357.59,460.88 357.59,460.91Z"/>
<path android:fillColor="#263238" android:pathData="M357.35,461a0.93,0.93 0,0 1,-0.14 -0.63,1.62 1.62,0 0,1 0.2,-0.68 0.91,0.91 0,0 1,0.73 -0.51,0.35 0.35,0 0,1 0.31,0.4 0.94,0.94 0,0 1,-0.13 0.42,2.69 2.69,0 0,1 -0.39,0.57 1.49,1.49 0,0 1,-0.5 0.41s0.17,-0.18 0.4,-0.48a3.3,3.3 0,0 0,0.35 -0.57c0.11,-0.21 0.18,-0.56 -0.05,-0.58s-0.45,0.23 -0.58,0.42a1.51,1.51 0,0 0,-0.22 0.61A3.23,3.23 0,0 0,357.35 461Z"/>
<path android:fillColor="#263238" android:pathData="M372.65,459s-0.41,0 -1,0.1a4.45,4.45 0,0 0,-3.52 3.21c-0.18,0.62 -0.17,1 -0.21,1a1,1 0,0 1,0 -0.29,4.19 4.19,0 0,1 0.11,-0.78 4.33,4.33 0,0 1,1.3 -2.2,4.46 4.46,0 0,1 2.32,-1.09 4.51,4.51 0,0 1,0.78 0A1,1 0,0 1,372.65 459Z"/>
<path android:fillColor="#263238" android:pathData="M370.79,453.21a24.61,24.61 0,0 1,0.32 2.91,24 24,0 0,1 0.13,2.92 29.24,29.24 0,0 1,-0.31 -2.91A28.45,28.45 0,0 1,370.79 453.21Z"/>
<path android:fillColor="#263238" android:pathData="M366,462.17a7.51,7.51 0,0 1,-2.06 0.34,8.19 8.19,0 0,1 -2.08,0c0,-0.05 0.93,-0.06 2.07,-0.14S366,462.12 366,462.17Z"/>
<path android:fillColor="#263238" android:pathData="M368.76,462s-0.06,0.2 -0.14,0.42 -0.12,0.41 -0.17,0.41 -0.09,-0.22 0,-0.47S368.73,462 368.76,462Z"/>
<path android:fillColor="#263238" android:pathData="M369.73,460.62s-0.05,0.18 -0.19,0.34 -0.27,0.26 -0.31,0.23 0,-0.19 0.18,-0.34S369.69,460.58 369.73,460.62Z"/>
<path android:fillColor="#263238" android:pathData="M371.19,459.92c0,0.05 -0.2,0.06 -0.4,0.15s-0.35,0.21 -0.39,0.18 0.07,-0.24 0.32,-0.34S371.2,459.88 371.19,459.92Z"/>
<path android:fillColor="#263238" android:pathData="M372.24,459.57c0,0.05 -0.06,0.12 -0.18,0.18s-0.22,0.06 -0.24,0 0.06,-0.13 0.17,-0.18S372.22,459.53 372.24,459.57Z"/>
<path android:fillColor="#263238" android:pathData="M373.01,456.12l-5.15,-57.45l3.33,-37.06l-26.57,-4.22l3.35,41.63l9.86,58.66l15.18,-1.56z"/>
<path android:fillColor="#fafafa" android:pathData="M323.09,449.2c-0.12,0.08 -0.86,-0.78 -1.64,-1.93a6.1,6.1 0,0 1,-1.21 -2.22c0.12,-0.08 0.85,0.78 1.64,1.93A6.58,6.58 0,0 1,323.09 449.2Z"/>
<path android:fillColor="#fafafa" android:pathData="M329.73,437.76c0.09,0.12 -0.62,0.86 -1.59,1.67s-1.83,1.38 -1.92,1.27 0.62,-0.86 1.59,-1.67S329.64,437.65 329.73,437.76Z"/>
<path android:fillColor="#fafafa" android:pathData="M323.61,434.57a5.78,5.78 0,0 1,-0.63 -2.31,5.46 5.46,0 0,1 -0.1,-2.39 5.62,5.62 0,0 1,0.62 2.31A5.75,5.75 0,0 1,323.61 434.57Z"/>
<path android:fillColor="#fafafa" android:pathData="M329.16,427.6a8.12,8.12 0,0 1,-2 -2.11,8.4 8.4,0 0,1 -1.54,-2.42c0.12,-0.09 1,0.85 1.95,2.1A8,8 0,0 1,329.16 427.6Z"/>
<path android:fillColor="#fafafa" android:pathData="M323.06,416.27c0.08,0.11 -0.71,0.83 -1.77,1.6a5.77,5.77 0,0 1,-2.07 1.19c-0.08,-0.12 0.71,-0.84 1.77,-1.61S323,416.15 323.06,416.27Z"/>
<path android:fillColor="#fafafa" android:pathData="M332,414.52a17,17 0,0 1,0 -5.92,17 17,0 0,1 0,5.92Z"/>
<path android:fillColor="#fafafa" android:pathData="M328.48,453.58a6.51,6.51 0,0 1,0.1 -2.57,6.26 6.26,0 0,1 0.61,-2.49 6.51,6.51 0,0 1,-0.1 2.57A6.26,6.26 0,0 1,328.48 453.58Z"/>
<path android:fillColor="#fafafa" android:pathData="M326.89,408.94a9,9 0,0 1,-2.36 -1.9,9.25 9.25,0 0,1 -2,-2.28 17.55,17.55 0,0 1,4.36 4.18Z"/>
<path android:fillColor="#fafafa" android:pathData="M325.54,396.1a14.77,14.77 0,0 1,-4.55 3.11c-0.09,-0.12 0.87,-0.91 2.12,-1.77A7.5,7.5 0,0 1,325.54 396.1Z"/>
<path android:fillColor="#fafafa" android:pathData="M331.81,397.78a8.72,8.72 0,0 1,-0.71 -3.54,8.62 8.62,0 0,1 0.31,-3.6 24.64,24.64 0,0 1,0.21 3.57A24.2,24.2 0,0 1,331.81 397.78Z"/>
<path android:fillColor="#fafafa" android:pathData="M327.94,388.74a8.92,8.92 0,0 1,-2.92 0.76,9.11 9.11,0 0,1 -3,0.24 8.92,8.92 0,0 1,2.92 -0.76A9.11,9.11 0,0 1,327.94 388.74Z"/>
<path android:fillColor="#fafafa" android:pathData="M336.83,384.36a7.86,7.86 0,0 1,0 -4,7.86 7.86,0 0,1 0,4Z"/>
<path android:fillColor="#fafafa" android:pathData="M354.44,394.29c-0.09,0.1 -0.9,-0.59 -1.46,-1.76a3.4,3.4 0,0 1,-0.47 -2.24c0.15,0 0.41,0.93 0.94,2S354.56,394.19 354.44,394.29Z"/>
<path android:fillColor="#fafafa" android:pathData="M356.88,400.23c0.08,0.12 -0.68,0.73 -1.69,1.35s-1.9,1 -2,0.91 0.68,-0.73 1.69,-1.35S356.8,400.1 356.88,400.23Z"/>
<path android:fillColor="#fafafa" android:pathData="M354.57,413.82a4.48,4.48 0,0 1,-0.08 -2.11,4.42 4.42,0 0,1 0.43,-2.07 4.48,4.48 0,0 1,0.08 2.11A4.42,4.42 0,0 1,354.57 413.82Z"/>
<path android:fillColor="#fafafa" android:pathData="M362.2,415.74a8.32,8.32 0,0 1,-0.24 -2.88,8.12 8.12,0 0,1 0.29,-2.87 8.32,8.32 0,0 1,0.24 2.88A8.07,8.07 0,0 1,362.2 415.74Z"/>
<path android:fillColor="#fafafa" android:pathData="M360.87,423.08c-0.13,0.08 -0.73,-0.67 -1.57,-1.49s-1.61,-1.39 -1.53,-1.52 1,0.28 1.89,1.15S361,423 360.87,423.08Z"/>
<path android:fillColor="#fafafa" android:pathData="M365.24,427.94a7.52,7.52 0,0 1,-2.31 1.62,7.74 7.74,0 0,1 -2.57,1.17 15.33,15.33 0,0 1,4.88 -2.79Z"/>
<path android:fillColor="#fafafa" android:pathData="M367.7,426.9a3.33,3.33 0,0 1,-0.3 -2.13,3.38 3.38,0 0,1 0.61,-2.06c0.15,0 0,1 -0.09,2.1A7.13,7.13 0,0 1,367.7 426.9Z"/>
<path android:fillColor="#fafafa" android:pathData="M365.39,443.12c-0.14,0 -0.34,-0.59 -0.43,-1.36s-0.07,-1.41 0.07,-1.43 0.34,0.59 0.44,1.36S365.54,443.1 365.39,443.12Z"/>
<path android:fillColor="#fafafa" android:pathData="M359.5,440.85a6.43,6.43 0,0 1,-0.86 -2.38,6.28 6.28,0 0,1 -0.36,-2.51 12,12 0,0 1,1.22 4.89Z"/>
<path android:fillColor="#fafafa" android:pathData="M364,450.28c0.07,0.12 -0.6,0.58 -1.57,0.77s-1.76,0 -1.74,-0.1 0.75,-0.23 1.64,-0.41S364,450.14 364,450.28Z"/>
<path android:fillColor="#fafafa" android:pathData="M364,437.19c-0.12,-0.09 0.46,-1 1.27,-2.08s1.58,-1.85 1.69,-1.76 -0.46,1 -1.27,2.08S364.14,437.27 364,437.19Z"/>
<path android:fillColor="#fafafa" android:pathData="M368.59,451.83a8.73,8.73 0,0 1,-0.17 -3,8.4 8.4,0 0,1 0.35,-2.95 17,17 0,0 1,-0.18 5.92Z"/>
<path android:fillColor="#fafafa" android:pathData="M363,400.23a11,11 0,0 1,1.22 -6.45,19.62 19.62,0 0,1 -0.59,3.23A19.88,19.88 0,0 1,363 400.23Z"/>
<path android:fillColor="#fafafa" android:pathData="M360.89,389.58c0,0.14 -0.85,0.25 -1.77,-0.23s-1.33,-1.25 -1.21,-1.32 0.65,0.45 1.45,0.85S360.9,389.43 360.89,389.58Z"/>
<path android:fillColor="#fafafa" android:pathData="M366,380.35a4.05,4.05 0,0 1,-1 2.34c-0.85,1.16 -1.86,1.78 -1.94,1.67s0.72,-0.88 1.52,-2S365.8,380.3 366,380.35Z"/>
<path android:fillColor="#fafafa" android:pathData="M367.34,372c0.14,0 0.05,0.92 -0.2,2s-0.57,1.88 -0.71,1.85 -0.05,-0.92 0.2,-2S367.2,372 367.34,372Z"/>
<path android:fillColor="#0298E1" android:pathData="M365.22,322.9a68.56,68.56 0,0 1,19.87 38c0.56,3.46 0.83,7.13 -0.48,10.38s-4.61,5.94 -8.09,5.48c-5.26,-0.69 -7.41,-7.34 -12,-9.94 -0.6,5 -1.8,10.16 -4.93,14.12s-8.62,6.41 -13.38,4.73c-5.44,-1.91 -7.93,-8.06 -9.77,-13.52a13.33,13.33 0,0 1,-6 10.59,10.33 10.33,0 0,1 -11.8,-0.64c-3.2,-2.75 -3.95,-8.1 -1.25,-11.34a18.64,18.64 0,0 1,-5.39 3.84,6.3 6.3,0 0,1 -6.3,-0.61c-2.36,-2 -2.19,-5.59 -1.71,-8.62 1.27,-8.05 3.36,-16.15 7.81,-23s10.58,-18.33 18.68,-19.12"/>
<path android:fillColor="#ffbe9d" android:pathData="M379.29,280.71l8.1,59.13l-11.85,3.42l-6.78,-44.33l-0.57,-8.21l11.1,-10.01z"/>
<path android:fillColor="#ffbe9d" android:pathData="M318.39,269.9a14.8,14.8 0,0 1,-11.86 -9.42l-7.86,-21.19 -11.89,3.86 10.38,31.6a14.77,14.77 0,0 0,10.68 9.34l15.69,3.48L326.24,271Z"/>
<path android:fillColor="#ffbe9d" android:pathData="M287,243.55h0l-0.2,-0.39a95.42,95.42 0,0 1,-4.34 -9.74c-1.38,-4.2 -1,-4.34 -0.49,-4.43 1.38,-0.24 2.71,7.29 3.36,5.49s-2.69,-9 -1.23,-9.2c1.89,-0.25 3.14,7.66 3.29,8.33s1.15,2 1,1.39c-0.25,-0.84 -2.65,-11.35 -0.79,-11.62 1,-0.15 1.08,1.75 1.08,1.75s1.6,8.56 2.47,8.4 0.12,-5.22 -0.26,-6.9 0.26,-2.55 1.13,-2.12c0.59,0.29 1.88,5.42 2.21,7.1s1.18,6.29 2.61,3.63a0.75,0.75 0,0 1,0.07 -0.12c1.33,-2.66 3.23,-4.26 4.1,-4.35a1,1 0,0 1,0.84 1.64,1.06 1.06,0 0,1 -0.27,0.33c-0.06,0 -0.11,0.11 -0.17,0.16a15,15 0,0 0,-1.65 2.56,7.82 7.82,0 0,0 -0.87,2.57c-0.16,1 -0.26,1.95 -0.32,2.71"/>
<path android:fillColor="#0298E1" android:pathData="M361.18,267.44s20.26,0.61 22.45,26.14l-14.82,2.17 -4,31.16 -34.12,-1.46 -1.18,-34.81 -1.21,-3.79c-2.82,-8.76 3,-18.21 12.21,-19 0.33,0 0.65,0 1,-0.05l18.3,-0.38"/>
<path android:fillColor="#0298E1" android:pathData="M339.18,268.05s-17.65,2.21 -24.63,0.51L312,288.35c0.36,0.67 10.74,1.61 19.16,2.29s8.41,-20.18 8.41,-20.18Z"/>
<path android:fillColor="#ffbe9d" android:pathData="M387.39,339.84h0l0.16,0.42a99,99 0,0 1,3.34 10.29c0.94,4.39 0.55,4.49 0,4.52 -1.42,0.1 -2,-7.64 -2.8,-5.89s1.75,9.37 0.26,9.41c-1.94,0.06 -2.35,-8.07 -2.44,-8.75s-1.07,-0.56 -1,0.05c0.16,0.88 1.59,10.17 -0.32,10.24 -1,0 -0.9,-1.87 -0.9,-1.87s-0.7,-8.81 -1.6,-8.75 -0.67,5.26 -0.47,7 -0.53,2.54 -1.37,2c-0.57,-0.36 -1.31,-5.67 -1.47,-7.4s-0.52,-6.47 -2.24,-3.94l-0.09,0.11c-1.62,2.54 -3.72,4 -4.6,4a1,1 0,0 1,-0.68 -1.75,1.35 1.35,0 0,1 0.32,-0.31l0.18,-0.13a15.36,15.36 0,0 0,1.94 -2.41,8 8,0 0,0 1.15,-2.5c0.28,-1 0.47,-1.94 0.62,-2.71"/>
<path android:fillColor="#263238" android:pathData="M381.16,247.07a10.55,10.55 0,0 0,-5.16 -9.32c-2.22,-1.27 -5,-1.74 -6.66,-3.67 -2.21,-2.51 -1.75,-6.46 -3.34,-9.41L363.32,222a7.35,7.35 0,0 0,-7.33 0.07,8.64 8.64,0 0,0 -12.79,-2.25c-1,0.83 -1.93,1.91 -3.17,2.33 -1.69,0.57 -3.49,-0.2 -5.26,-0.42a8.66,8.66 0,0 0,-9.23 7.75c-0.11,1.59 0.23,3.18 0.27,4.78a5.81,5.81 0,0 1,-1.42 4.43c-1.67,1.59 -4.42,1.26 -6.32,2.57a5.2,5.2 0,0 0,-1.92 5.16,7.54 7.54,0 0,0 3.22,4.66 10,10 0,0 0,-0.34 13,9.7 9.7,0 0,0 12.74,1.39c0.81,-0.62 1.71,-1.42 2.71,-1.19 0.83,0.19 1.33,1 1.84,1.73A8.78,8.78 0,0 0,351.67 264a3.39,3.39 0,0 0,0.61 2.9,7.67 7.67,0 0,0 2.81,2.12 19.9,19.9 0,0 0,10.46 2.36,12.59 12.59,0 0,0 9.29,-5 9.56,9.56 0,0 0,0.54 -10.35A10.53,10.53 0,0 0,381.16 247.07Z"/>
<path android:fillColor="#ffbe9d" android:pathData="M359.17,229.64v2.82l0.72,36.63c0,4.9 -3.09,7.07 -8.48,7.05h0c-5.44,0 -8.78,-1.49 -8.89,-6.44 -0.11,-5.2 -0.33,-5.87 -0.33,-5.87s-6.89,-1 -8.48,-9.71c-0.79,-4.34 -0.7,-11.46 -0.43,-17.29a9.38,9.38 0,0 1,10.28 -8.78Z"/>
<path android:fillColor="#263238" android:pathData="M336.56,242.65a1.11,1.11 0,0 0,1.09 1.09,1.06 1.06,0 0,0 1.13,-1 1.11,1.11 0,0 0,-1.09 -1.09A1.06,1.06 0,0 0,336.56 242.65Z"/>
<path android:fillColor="#263238" android:pathData="M335.37,241.64c0.14,0.14 1,-0.49 2.17,-0.51s2.08,0.56 2.21,0.41 -0.08,-0.32 -0.47,-0.59a3.1,3.1 0,0 0,-1.77 -0.5,2.89 2.89,0 0,0 -1.72,0.58C335.42,241.31 335.3,241.58 335.37,241.64Z"/>
<path android:fillColor="#263238" android:pathData="M348.51,242.65a1.11,1.11 0,0 0,1.09 1.09,1.06 1.06,0 0,0 1.13,-1 1.11,1.11 0,0 0,-1.09 -1.09A1.06,1.06 0,0 0,348.51 242.65Z"/>
<path android:fillColor="#263238" android:pathData="M347.13,241.65c0.14,0.14 1,-0.49 2.16,-0.5s2.09,0.55 2.21,0.41 -0.08,-0.32 -0.47,-0.59a3.07,3.07 0,0 0,-3.49 0.07C347.18,241.33 347.06,241.59 347.13,241.65Z"/>
<path android:fillColor="#263238" android:pathData="M343.1,249.92a7.77,7.77 0,0 0,-1.84 -0.29c-0.28,0 -0.56,-0.07 -0.61,-0.27a1.46,1.46 0,0 1,0.18 -0.84l0.81,-2.18a36.3,36.3 0,0 0,1.8 -5.69,37.72 37.72,0 0,0 -2.26,5.53l-0.77,2.19a1.57,1.57 0,0 0,-0.13 1.12,0.72 0.72,0 0,0 0.48,0.41 1.7,1.7 0,0 0,0.48 0A6.62,6.62 0,0 0,343.1 249.92Z"/>
<path android:fillColor="#263238" android:pathData="M334.62,239.12c0.21,0.41 1.47,0.2 2.93,0.33s2.67,0.48 2.95,0.1c0.12,-0.18 -0.06,-0.56 -0.56,-0.94a4.34,4.34 0,0 0,-2.27 -0.8,4.41 4.41,0 0,0 -2.36,0.45C334.76,238.57 334.53,238.92 334.62,239.12Z"/>
<path android:fillColor="#263238" android:pathData="M347.13,237.7c0.22,0.42 1.48,0.2 2.94,0.33s2.67,0.49 2.94,0.11c0.12,-0.19 -0.06,-0.57 -0.55,-0.95a4.58,4.58 0,0 0,-4.63 -0.34C347.28,237.15 347,237.5 347.13,237.7Z"/>
<path android:fillColor="#fff" android:pathData="M343.08,252.67a3.59,3.59 0,0 0,3 -2.28c0.07,-0.19 0.16,-0.42 0.37,-0.43a0.42,0.42 0,0 1,0.34 0.23,2.38 2.38,0 0,1 -0.6,3.25 2.43,2.43 0,0 1,-3.27 -0.68"/>
<path android:fillColor="#263238" android:pathData="M363.25,268.26c-2.49,0.11 -7,-18.27 -6.64,-23.57 0.18,-2.72 -0.35,-5.16 0.45,-7.5 -3.72,-1.71 -6.88,-2.46 -6.26,-6.48 -1,3.39 -2.89,4 -6.14,5.52s-9.66,0.12 -13.19,0.64c-0.72,0.11 1.62,-2.24 1.1,-2.73a2,2 0,0 1,-0.36 -2,9 9,0 0,1 4,-5.36 23.34,23.34 0,0 1,6.38 -2.63c3.24,-0.94 6.62,-1.73 10,-1.3a27.94,27.94 0,0 1,6.77 2.09c2.18,0.88 4.46,1.84 5.89,3.69 1.68,2.18 1.83,5.16 1.48,7.88s-1.11,5.41 -1,8.15c0.55,3.44 -0.18,-0.47 -0.27,-0.71"/>
<path android:fillColor="#455a64" android:pathData="M333.14,235.89l0.05,-0.01l-0.07,-0.3l-0.06,0.01l0.08,0.3z"/>
<path android:fillColor="#eb996e" android:pathData="M347.51,246.48a0.31,0.31 0,0 0,0.1 -0.42,0.28 0.28,0 1,0 -0.1,0.42Z"/>
<path android:fillColor="#eb996e" android:pathData="M350.32,246.54a0.3,0.3 0,0 0,0.35 -0.23,0.28 0.28,0 1,0 -0.54,-0.14A0.29,0.29 0,0 0,350.32 246.54Z"/>
<path android:fillColor="#eb996e" android:pathData="M352.46,246.64a0.3,0.3 0,0 0,0.42 -0.08,0.29 0.29,0 0,0 0,-0.42 0.33,0.33 0,0 0,-0.42 0.5Z"/>
<path android:fillColor="#eb996e" android:pathData="M349.86,248.55a0.3,0.3 0,0 0,0 -0.42,0.32 0.32,0 0,0 -0.43,0 0.31,0.31 0,0 0,0 0.43A0.31,0.31 0,0 0,349.86 248.55Z"/>
<path android:fillColor="#eb996e" android:pathData="M351.18,248.69a0.32,0.32 0,0 0,0.44 -0.06,0.32 0.32,0 0,0 0,-0.44 0.31,0.31 0,0 0,-0.43 0.07A0.3,0.3 0,0 0,351.18 248.69Z"/>
<path android:fillColor="#eb996e" android:pathData="M335.18,246.71a0.43,0.43 0,0 0,0 -0.41,0.45 0.45,0 0,0 -0.34,-0.23c-0.15,0 -0.28,0.23 -0.15,0.49S335.11,246.84 335.18,246.71Z"/>
<path android:fillColor="#eb996e" android:pathData="M337.31,246.67a0.28,0.28 0,0 0,0.16 -0.53,0.29 0.29,0 0,0 -0.35,0.18A0.28,0.28 0,0 0,337.31 246.67Z"/>
<path android:fillColor="#eb996e" android:pathData="M339.37,246.89a0.27,0.27 0,0 0,0.38 -0.06,0.26 0.26,0 0,0 -0.08,-0.37 0.27,0.27 0,0 0,-0.38 0.06A0.27,0.27 0,0 0,339.37 246.89Z"/>
<path android:fillColor="#eb996e" android:pathData="M336.33,249a0.4,0.4 0,0 0,-0.13 -0.39,0.42 0.42,0 0,0 -0.4,-0.11c-0.15,0 -0.19,0.31 0,0.51S336.3,249.17 336.33,249Z"/>
<path android:fillColor="#eb996e" android:pathData="M337.94,249a0.33,0.33 0,0 0,0.4 -0.2,0.32 0.32,0 0,0 -0.11,-0.43 0.33,0.33 0,0 0,-0.4 0.2A0.31,0.31 0,0 0,337.94 249Z"/>
<path android:fillColor="#eb996e" android:pathData="M342.61,263.83a24.82,24.82 0,0 0,11.83 -3.68s-2.85,6.83 -11.74,6.15Z"/>
<path android:fillColor="#fafafa" android:pathData="M330.89,277.37a1.41,1.41 0,0 0,-1.76 -0.82l-0.23,0.07a1.41,1.41 0,1 0,2 1.85A1.4,1.4 0,0 0,330.89 277.37Z"/>
<path android:fillColor="#fafafa" android:pathData="M337.58,291.64a1.42,1.42 0,0 0,-1.77 -0.83l-0.22,0.07a1.41,1.41 0,1 0,2 1.85A1.42,1.42 0,0 0,337.58 291.64Z"/>
<path android:fillColor="#fafafa" android:pathData="M345.43,283a1.4,1.4 0,0 0,-1.76 -0.82l-0.22,0.07a1.41,1.41 0,1 0,2 1.85A1.44,1.44 0,0 0,345.43 283Z"/>
<path android:fillColor="#fafafa" android:pathData="M318.73,286.08a1.41,1.41 0,0 0,-1.76 -0.82l-0.22,0.07a1.41,1.41 0,1 0,2 1.85A1.44,1.44 0,0 0,318.73 286.08Z"/>
<path android:fillColor="#fafafa" android:pathData="M359.06,275.39a1.42,1.42 0,0 0,-1.77 -0.83l-0.22,0.07a1.41,1.41 0,1 0,2 1.85A1.46,1.46 0,0 0,359.06 275.39Z"/>
<path android:fillColor="#fafafa" android:pathData="M355.61,290.75a1.41,1.41 0,0 0,-1.76 -0.83l-0.23,0.07a1.41,1.41 0,1 0,2 1.85A1.42,1.42 0,0 0,355.61 290.75Z"/>
<path android:fillColor="#fafafa" android:pathData="M334.07,310.23a1.42,1.42 0,0 0,-1.76 -0.83l-0.23,0.07a1.41,1.41 0,1 0,2 1.85A1.42,1.42 0,0 0,334.07 310.23Z"/>
<path android:fillColor="#fafafa" android:pathData="M366.1,283.49a1.41,1.41 0,0 0,-1.76 -0.83l-0.23,0.07a1.41,1.41 0,1 0,2 1.85A1.42,1.42 0,0 0,366.1 283.49Z"/>
<path android:fillColor="#fafafa" android:pathData="M344.15,302.53a1.41,1.41 0,0 0,-1.76 -0.83l-0.22,0.07a1.41,1.41 0,1 0,2 1.85A1.42,1.42 0,0 0,344.15 302.53Z"/>
<path android:fillColor="#fafafa" android:pathData="M352.82,311.15a1.41,1.41 0,0 0,-1.76 -0.83l-0.23,0.07a1.41,1.41 0,1 0,2 1.85A1.42,1.42 0,0 0,352.82 311.15Z"/>
<path android:fillColor="#fafafa" android:pathData="M373.15,274a1.43,1.43 0,0 0,-1.77 -0.83l-0.22,0.07a1.41,1.41 0,1 0,2 1.85A1.37,1.37 0,0 0,373.15 274Z"/>
<path android:fillColor="#fafafa" android:pathData="M375.5,289.85a1.4,1.4 0,0 0,-1.76 -0.82l-0.22,0.07a1.41,1.41 0,1 0,2 1.85A1.44,1.44 0,0 0,375.5 289.85Z"/>
<path android:fillColor="#fafafa" android:pathData="M361.73,302.53a1.41,1.41 0,0 0,-1.76 -0.83l-0.23,0.07a1.41,1.41 0,1 0,2 1.85A1.42,1.42 0,0 0,361.73 302.53Z"/>
<path android:fillColor="#fafafa" android:pathData="M362.71,320a1.42,1.42 0,0 0,-1.77 -0.83l-0.22,0.07a1.43,1.43 0,1 0,2 0.76Z"/>
<path android:fillColor="#fafafa" android:pathData="M343.79,321.32a1.42,1.42 0,0 0,-1.77 -0.83l-0.22,0.07a1.43,1.43 0,1 0,2 0.76Z"/>
<path android:fillColor="#263238" android:pathData="M353,329.22a7.7,7.7 0,0 1,0.91 1.13,35.68 35.68,0 0,1 2.21,3.29 51.08,51.08 0,0 1,2.73 5.21,50.41 50.41,0 0,1 4,13.81 46.89,46.89 0,0 1,0.49 5.86,38.24 38.24,0 0,1 -0.08,4 6.83,6.83 0,0 1,-0.17 1.44,9.12 9.12,0 0,1 0,-1.45c0,-0.93 0,-2.28 -0.09,-3.94a57.42,57.42 0,0 0,-0.59 -5.81,55 55,0 0,0 -4,-13.68c-0.9,-2 -1.79,-3.78 -2.62,-5.22s-1.53,-2.59 -2.05,-3.37A7.85,7.85 0,0 1,353 329.22Z"/>
<path android:fillColor="#263238" android:pathData="M330.61,322.62c0,-0.1 1.83,0.85 4.87,1.95a37.25,37.25 0,0 0,5.46 1.5,35.45 35.45,0 0,0 6.89,0.62 44.77,44.77 0,0 0,12.4 -2.15c1.54,-0.48 2.79,-0.9 3.64,-1.22a7.57,7.57 0,0 1,1.35 -0.42,7.62 7.62,0 0,1 -1.28,0.61c-0.83,0.37 -2.06,0.85 -3.6,1.38a41.33,41.33 0,0 1,-12.5 2.32,33.31 33.31,0 0,1 -7,-0.67 33.82,33.82 0,0 1,-5.5 -1.62,32.11 32.11,0 0,1 -3.52,-1.6A7.27,7.27 0,0 1,330.61 322.62Z"/>
<path android:fillColor="#263238" android:pathData="M338.87,350.11a2.87,2.87 0,0 1,-0.15 -0.9c-0.07,-0.57 -0.12,-1.41 -0.15,-2.45a52.43,52.43 0,0 1,2.05 -16.07c0.29,-1 0.55,-1.8 0.76,-2.34a3.14,3.14 0,0 1,0.37 -0.83,31.31 31.31,0 0,1 -0.78,3.27 70,70 0,0 0,-2 16A30.72,30.72 0,0 1,338.87 350.11Z"/>
<path android:fillColor="#263238" android:pathData="M315.8,365.17a11,11 0,0 1,0.23 -1.75c0.19,-1.12 0.48,-2.74 0.87,-4.74a89.47,89.47 0,0 1,4.29 -15.31,43.29 43.29,0 0,1 8.3,-13.55 28.62,28.62 0,0 1,3.56 -3.26c0.44,-0.36 0.82,-0.6 1.06,-0.77a1.82,1.82 0,0 1,0.4 -0.24,12.35 12.35,0 0,1 -1.33,1.16 34.2,34.2 0,0 0,-3.42 3.36,45.55 45.55,0 0,0 -8.08,13.49 99,99 0,0 0,-4.41 15.2c-0.43,1.92 -0.77,3.51 -1,4.7A11.45,11.45 0,0 1,315.8 365.17Z"/>
<path android:fillAlpha="0.2" android:fillColor="#FF000000"
android:pathData="M353.9,327.91a30,30 0,0 1,13.55 29.86c-0.18,1 -0.56,2.21 -1.56,2.48a2,2 0,0 1,-2.11 -1.06,6.28 6.28,0 0,1 -0.61,-2.46 53.37,53.37 0,0 0,-9.61 -24.88,5.39 5.39,0 0,1 -1.31,-2.78c0,-1 0.87,-2.18 1.88,-1.93" android:strokeAlpha="0.2"/>
<path android:fillColor="#e0e0e0" android:pathData="M587.37,134.35c-7.88,1.76 -7.94,12.78 -6.32,18.77 0.77,2.85 2.2,5.82 1.19,8.59 -0.72,2 -2.56,3.38 -3.09,5.4 -0.64,2.45 0.83,4.89 2,7.13s-2.62,16.73 -4.23,18.68c4.72,0.38 15.77,-0.55 20.47,-1.14s7.75,-12.44 11.27,-15.61"/>
<path android:fillColor="#0298E1" android:pathData="M634.51,462.81l-1.26,-10.64 19.92,-2.49 2,15.55 -1.22,0.24c-5.46,1 -27.83,4.65 -31.64,4C618.06,468.73 634.51,462.81 634.51,462.81Z"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M647.93,466a7,7 0,0 1,2 -4.57,6.78 6.78,0 0,1 4.47,-2l0.7,5.57Z" android:strokeAlpha="0.4"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M626.51,466s-5.72,2.45 -4.86,3.33 23.6,-2 33.52,-4.1l-0.08,-0.44 -26.5,3.55S627.67,465.9 626.51,466Z" android:strokeAlpha="0.4"/>
<path android:fillColor="#263238" android:pathData="M655.4,464.74a1.49,1.49 0,0 1,-0.34 0.08l-1,0.18 -3.6,0.61c-3,0.5 -7.25,1.12 -11.92,1.71s-8.91,1 -12,1.3l-3.64,0.31 -1,0.06h-0.35l0.34,-0.06 1,-0.11 3.63,-0.38c3.07,-0.32 7.3,-0.78 12,-1.37s8.88,-1.19 11.93,-1.64l3.61,-0.53 1,-0.14A1.54,1.54 0,0 1,655.4 464.74Z"/>
<path android:fillColor="#263238" android:pathData="M628.63,468.65a5.34,5.34 0,0 0,-2.3 -2.88,3.23 3.23,0 0,1 2.3,2.88Z"/>
<path android:fillColor="#263238" android:pathData="M634.14,464.93c-0.06,0 -0.38,-0.26 -0.73,-0.68s-0.59,-0.8 -0.53,-0.84 0.37,0.26 0.72,0.68S634.19,464.89 634.14,464.93Z"/>
<path android:fillColor="#263238" android:pathData="M635.64,463.88c0,0.05 -0.38,-0.12 -0.76,-0.38s-0.66,-0.53 -0.62,-0.58 0.38,0.11 0.76,0.38S635.68,463.82 635.64,463.88Z"/>
<path android:fillColor="#263238" android:pathData="M636.43,461.87a2.37,2.37 0,0 1,-1 0.26,2.25 2.25,0 0,1 -1,0 2.53,2.53 0,0 1,1 -0.26A2.3,2.3 0,0 1,636.43 461.87Z"/>
<path android:fillColor="#263238" android:pathData="M636.61,460.5a2,2 0,0 1,-1.12 0.48,1.92 1.92,0 0,1 -1.21,0 6.17,6.17 0,0 1,1.16 -0.23A7.46,7.46 0,0 1,636.61 460.5Z"/>
<path android:fillColor="#263238" android:pathData="M633.24,463.28a3.83,3.83 0,0 1,-1.28 0.15,7.43 7.43,0 0,1 -1.4,-0.13 4,4 0,0 1,-0.82 -0.22,0.72 0.72,0 0,1 -0.37,-0.36 0.53,0.53 0,0 1,0.13 -0.54,2.37 2.37,0 0,1 3,0.33 2.32,2.32 0,0 1,0.53 0.8c0.08,0.21 0.09,0.34 0.07,0.34a3.6,3.6 0,0 0,-0.72 -1,2.26 2.26,0 0,0 -1.18,-0.57 2,2 0,0 0,-1.51 0.29c-0.18,0.18 -0.08,0.41 0.17,0.51a3.71,3.71 0,0 0,0.76 0.22,8.37 8.37,0 0,0 1.36,0.18C632.75,463.3 633.24,463.24 633.24,463.28Z"/>
<path android:fillColor="#263238" android:pathData="M632.92,463.38a1.2,1.2 0,0 1,-0.26 -0.87,2.27 2.27,0 0,1 0.23,-1 1.28,1.28 0,0 1,1 -0.78,0.51 0.51,0 0,1 0.47,0.54 1.56,1.56 0,0 1,-0.15 0.6,3.74 3.74,0 0,1 -0.51,0.85 1.87,1.87 0,0 1,-0.67 0.61s0.23,-0.26 0.53,-0.71a4.67,4.67 0,0 0,0.44 -0.84c0.14,-0.29 0.2,-0.79 -0.12,-0.81s-0.62,0.37 -0.78,0.65a2.09,2.09 0,0 0,-0.26 0.88A4.51,4.51 0,0 0,632.92 463.38Z"/>
<path android:fillColor="#263238" android:pathData="M654.31,459.34c0,0.05 -0.58,0 -1.47,0.24a6.27,6.27 0,0 0,-4.69 4.81c-0.2,0.89 -0.16,1.47 -0.2,1.47s0,-0.14 -0.05,-0.4a5.3,5.3 0,0 1,0.08 -1.1,6.1 6.1,0 0,1 4.83,-4.95 5.75,5.75 0,0 1,1.1 -0.11A1.6,1.6 0,0 1,654.31 459.34Z"/>
<path android:fillColor="#263238" android:pathData="M651.21,451.31a36.91,36.91 0,0 1,0.68 4.07,38.45 38.45,0 0,1 0.45,4.1 33,33 0,0 1,-0.69 -4.07A33.92,33.92 0,0 1,651.21 451.31Z"/>
<path android:fillColor="#263238" android:pathData="M645.18,464.35a16.5,16.5 0,0 1,-5.81 0.78c0,-0.07 1.31,-0.15 2.91,-0.37S645.17,464.28 645.18,464.35Z"/>
<path android:fillColor="#263238" android:pathData="M649.09,463.85s-0.08,0.29 -0.17,0.61 -0.14,0.59 -0.21,0.59 -0.14,-0.3 0,-0.66S649,463.81 649.09,463.85Z"/>
<path android:fillColor="#263238" android:pathData="M650.33,461.84s-0.05,0.26 -0.23,0.5 -0.37,0.39 -0.42,0.35 0.05,-0.27 0.23,-0.5S650.27,461.8 650.33,461.84Z"/>
<path android:fillColor="#263238" android:pathData="M652.33,460.74c0,0.07 -0.27,0.1 -0.55,0.24s-0.47,0.32 -0.53,0.28 0.07,-0.33 0.42,-0.5S652.34,460.67 652.33,460.74Z"/>
<path android:fillColor="#263238" android:pathData="M653.78,460.16c0,0.06 -0.07,0.17 -0.23,0.26s-0.31,0.1 -0.34,0 0.07,-0.17 0.23,-0.26S653.75,460.1 653.78,460.16Z"/>
<path android:fillColor="#0298E1" android:pathData="M584.69,460.28l-0.06,-10.72 20.08,-0.24L605,465l-1.24,0.1c-5.54,0.37 -28.17,1.51 -31.89,0.44C567.69,464.32 584.69,460.28 584.69,460.28Z"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M597.68,464.92a7,7 0,0 1,2.51 -4.31,6.74 6.74,0 0,1 4.67,-1.51l0.08,5.61Z" android:strokeAlpha="0.4"/>
<path android:fillAlpha="0.4" android:fillColor="#FF000000"
android:pathData="M576.39,462.55s-6,1.8 -5.2,2.77S594.86,466 605,465l0,-0.44 -26.73,0.56S577.56,462.59 576.39,462.55Z" android:strokeAlpha="0.4"/>
<path android:fillColor="#263238" android:pathData="M605.24,464.53a2,2 0,0 1,-0.35 0l-1,0.07 -3.64,0.21c-3.08,0.15 -7.34,0.3 -12,0.36s-9,0 -12.05,0l-3.65,-0.1 -1,-0.05 -0.34,0a1.3,1.3 0,0 1,0.34 0h1l3.65,0c3.08,0 7.34,0 12,0s9,-0.19 12,-0.29l3.65,-0.13 1,0Z"/>
<path android:fillColor="#263238" android:pathData="M578.2,465.43a8.05,8.05 0,0 0,-0.7 -1.74,8.35 8.35,0 0,0 -1.26,-1.38 3.22,3.22 0,0 1,2 3.12Z"/>
<path android:fillColor="#263238" android:pathData="M584.09,462.35c-0.06,0 -0.35,-0.31 -0.64,-0.77s-0.5,-0.85 -0.44,-0.89 0.34,0.3 0.64,0.76A2.2,2.2 0,0 1,584.09 462.35Z"/>
<path android:fillColor="#263238" android:pathData="M585.7,461.47s-0.36,-0.16 -0.71,-0.47 -0.6,-0.59 -0.55,-0.64 0.36,0.15 0.71,0.46S585.75,461.41 585.7,461.47Z"/>
<path android:fillColor="#263238" android:pathData="M586.71,459.56a2.34,2.34 0,0 1,-1.05 0.14,2.26 2.26,0 0,1 -1,-0.09 2.4,2.4 0,0 1,1 -0.15A2.43,2.43 0,0 1,586.71 459.56Z"/>
<path android:fillColor="#263238" android:pathData="M587,458.22a2.06,2.06 0,0 1,-1.16 0.35,2.12 2.12,0 0,1 -1.21,-0.14 6.3,6.3 0,0 1,1.19 -0.1A6.38,6.38 0,0 1,587 458.22Z"/>
<path android:fillColor="#263238" android:pathData="M583.38,460.6a3.46,3.46 0,0 1,-1.29 0,7.76 7.76,0 0,1 -1.37,-0.28 3.64,3.64 0,0 1,-0.79 -0.32,0.72 0.72,0 0,1 -0.33,-0.39 0.52,0.52 0,0 1,0.19 -0.52,2.37 2.37,0 0,1 2.94,0.65 2.44,2.44 0,0 1,0.43 0.86,0.92 0.92,0 0,1 0,0.35 3.83,3.83 0,0 0,-0.61 -1.1,2.36 2.36,0 0,0 -1.11,-0.7 2,2 0,0 0,-1.53 0.12c-0.21,0.16 -0.12,0.4 0.11,0.53a3.12,3.12 0,0 0,0.73 0.3,8.55 8.55,0 0,0 1.33,0.33C582.89,460.57 583.38,460.56 583.38,460.6Z"/>
<path android:fillColor="#263238" android:pathData="M583.05,460.67a1.25,1.25 0,0 1,-0.16 -0.89,2.15 2.15,0 0,1 0.34,-0.95 1.29,1.29 0,0 1,1.07 -0.67,0.5 0.5,0 0,1 0.4,0.59 1.43,1.43 0,0 1,-0.21 0.58,4.07 4.07,0 0,1 -0.6,0.79 2,2 0,0 1,-0.73 0.53s0.25,-0.24 0.6,-0.65a3.78,3.78 0,0 0,0.53 -0.78c0.18,-0.27 0.29,-0.77 0,-0.82s-0.65,0.3 -0.84,0.56a2.16,2.16 0,0 0,-0.36 0.84A4.59,4.59 0,0 0,583.05 460.67Z"/>
<path android:fillColor="#263238" android:pathData="M604.76,459s-0.58,0 -1.48,0.07a6.54,6.54 0,0 0,-3.22 1.38,6.46 6.46,0 0,0 -2,2.88c-0.29,0.87 -0.31,1.44 -0.36,1.44a1.66,1.66 0,0 1,0 -0.41,5.53 5.53,0 0,1 0.21,-1.08 6.09,6.09 0,0 1,5.35 -4.38,4.73 4.73,0 0,1 1.1,0A1.38,1.38 0,0 1,604.76 459Z"/>
<path android:fillColor="#263238" android:pathData="M602.57,450.72a34.16,34.16 0,0 1,0.23 4.12,33.31 33.31,0 0,1 0,4.12 33.08,33.08 0,0 1,-0.22 -4.12A34.66,34.66 0,0 1,602.57 450.72Z"/>
<path android:fillColor="#263238" android:pathData="M595.13,463a11.86,11.86 0,0 1,-2.93 0.33,11.3 11.3,0 0,1 -2.93,-0.2c0,-0.07 1.31,0 2.93,-0.05S595.12,462.93 595.13,463Z"/>
<path android:fillColor="#263238" android:pathData="M599.06,462.94c0.05,0.05 -0.1,0.28 -0.23,0.59s-0.2,0.57 -0.27,0.56 -0.11,-0.31 0.05,-0.66S599,462.9 599.06,462.94Z"/>
<path android:fillColor="#263238" android:pathData="M600.52,461.08c0.05,0.05 -0.08,0.26 -0.28,0.47s-0.41,0.35 -0.46,0.3 0.08,-0.26 0.28,-0.47S600.47,461 600.52,461.08Z"/>
<path android:fillColor="#263238" android:pathData="M602.63,460.21c0,0.07 -0.28,0.07 -0.57,0.18s-0.5,0.26 -0.56,0.22 0.11,-0.33 0.48,-0.45S602.65,460.15 602.63,460.21Z"/>
<path android:fillColor="#263238" android:pathData="M604.14,459.79c0,0.07 -0.09,0.17 -0.26,0.24s-0.32,0.07 -0.34,0 0.09,-0.16 0.25,-0.23S604.11,459.73 604.14,459.79Z"/>
<path android:fillColor="#ffbe9d" android:pathData="M566.24,207.85l-5.47,14.72 -4.14,-33.26a11.61,11.61 0,0 1,1.22 -6.16,12.22 12.22,0 0,1 1.48,-2.39 13.06,13.06 0,0 1,2.55 -2.4,1.07 1.07,0 0,0 -0.19,-2c-1,-0.1 -3.56,1.3 -5.62,4.11s-2.26,-2.6 -2.38,-4.56 -0.75,-8 -1.38,-8.46c-0.93,-0.63 -1.79,0.27 -1.63,2.23s0.22,7.88 -0.81,7.92 -1.47,-10 -1.47,-10 0.25,-2.17 -0.95,-2.17c-2.17,0 -0.91,10.6 -0.77,11.61 0.1,0.7 -1,0.78 -1.09,0s-0.22,-10 -2.42,-10c-1.69,0 1,8.73 -0.08,10.69s-1.33,-6.85 -2.94,-6.79c-0.6,0 -1,0.12 -0.15,5.13 0.48,2.7 2.26,6.58 2.8,11.84l0.15,1.36c0.1,6.56 0.87,31.27 6.83,46.31a12.18,12.18 0,0 0,21.43 2.17,113.84 113.84,0 0,0 11.64,-22.69Z"/>
<path android:fillColor="#0298E1" android:pathData="M557.76,190.22l2.55,29.49L574.48,189l8.37,26.88a113.44,113.44 0,0 1,-11.64 22.68c-5.4,8.14 -18.65,8.6 -22.25,-0.48 -6,-15 -5.91,-41.43 -6,-48l-0.15,-1.36Z"/>
<path android:fillColor="#eb996e" android:pathData="M546,185.16c0,0.05 0.34,0.05 0.86,0.23a3.07,3.07 0,0 1,1.67 1.37l0.2,0.37 0.12,-0.41a5.11,5.11 0,0 1,0.8 -1.6,5.81 5.81,0 0,1 2.77,-2c0.85,-0.31 1.43,-0.29 1.42,-0.36a2.75,2.75 0,0 0,-1.5 0.1,5.6 5.6,0 0,0 -3,2.07 5.19,5.19 0,0 0,-0.83 1.73l0.32,0a3.09,3.09 0,0 0,-1.9 -1.41A1.57,1.57 0,0 0,546 185.16Z"/>
<path android:fillColor="#ffbe9d" android:pathData="M646.18,292.84c0.22,0.74 0.45,1.6 0.68,2.64a7.91,7.91 0,0 1,0.11 2.7,11.82 11.82,0 0,1 -0.75,3.29c-0.47,0.93 0.44,1.95 1.28,1.52s2.19,-3 2.3,-6.31 3.3,0.86 4.49,2.37 5.07,6 5.83,6c1.1,0 1.31,-1.18 0.09,-2.66s-4.57,-6.18 -3.74,-6.76 6.75,7.19 6.75,7.19 1,1.86 2,1.21c1.77,-1.16 -5.15,-9 -5.83,-9.68 -0.47,-0.51 0.41,-1.18 0.89,-0.61s5.73,7.89 7.54,6.71c1.39,-0.89 -5.63,-6.46 -5.87,-8.58s4.89,4.76 6.18,3.85c0.48,-0.34 0.79,-0.66 -2.73,-4.19 -1.71,-1.71 -8.28,-6.89 -8.28,-6.89l-13.34,-46.6H626.24Z"/>
<path android:fillColor="#0298E1" android:pathData="M656.41,282.26c-3.2,-10.64 -15.62,-70.66 -18.32,-80.72 -3.92,-14.57 -26.93,-20.07 -26.93,-20.07l-20.63,-1a11.12,11.12 0,0 0,-2.86 -0.16c-9.44,0.47 -16.25,9.3 -14.81,18.64l-0.8,4.93a93.76,93.76 0,0 0,1.86 39l1.51,5.73 43.61,-2s3.7,-4.5 3.49,-8.52 -2.22,-14.56 -2.22,-14.56L643,286.57Z"/>
<path android:fillColor="#263238" android:pathData="M616.35,184.27A11.22,11.22 0,0 1,617.8 187a14.51,14.51 0,0 1,0.82 8.33,11.25 11.25,0 0,1 -8.37,8.67 8.92,8.92 0,0 1,-3.68 0.07,8.39 8.39,0 0,1 -3.48,-1.61 8.73,8.73 0,0 1,-3.48 -7.05c0,-0.3 0.07,-0.6 0.1,-0.9l0.21,-0.86 0.51,0.1a6.8,6.8 0,0 1,-1.49 3.67,8.57 8.57,0 0,1 -3,2.34 8.07,8.07 0,0 1,-3.62 0.75,7.72 7.72,0 0,1 -3.4,-0.95 9.82,9.82 0,0 1,-4.26 -4.79,10.14 10.14,0 0,1 -0.69,-5.53 12.74,12.74 0,0 1,3.71 -7,9.93 9.93,0 0,1 2.32,-1.79 25.56,25.56 0,0 0,-2.18 1.93,13 13,0 0,0 -3.5,6.95 9.75,9.75 0,0 0,0.73 5.31,9.42 9.42,0 0,0 4.09,4.54 7.31,7.31 0,0 0,3.2 0.87,7.52 7.52,0 0,0 3.39,-0.71 8.07,8.07 0,0 0,2.84 -2.2,6.32 6.32,0 0,0 1.37,-3.39l0.51,0.1c-0.06,0.26 -0.13,0.52 -0.2,0.79l-0.09,0.84a8.22,8.22 0,0 0,3.27 6.61,7.79 7.79,0 0,0 3.27,1.53 8.32,8.32 0,0 0,3.48 -0.05,10.66 10.66,0 0,0 5.53,-3.27 10.82,10.82 0,0 0,2.58 -5,14.56 14.56,0 0,0 -0.65,-8.18C616.93,185.21 616.29,184.3 616.35,184.27Z"/>
<path android:fillColor="#263238" android:pathData="M568.7,269.84c1.86,-4.74 6.73,-21.23 6.73,-21.23l43.61,-2s10.86,17.15 12.42,23.71 26.64,187.1 26.64,187.1l-27.86,0.87 -27.31,-143L607,455.55l-29.77,-0.71C576.46,442.44 566.92,274.4 568.7,269.84Z"/>
<path android:fillColor="#455a64" android:pathData="M614.36,262.9c0.11,0 0.15,1.58 0.89,4a18.54,18.54 0,0 0,13.62 12.72c2.44,0.57 4,0.5 4,0.6a3.86,3.86 0,0 1,-1.1 0.08,16.44 16.44,0 0,1 -3,-0.32 18,18 0,0 1,-13.9 -13,15.2 15.2,0 0,1 -0.52,-3A4.32,4.32 0,0 1,614.36 262.9Z"/>
<path android:fillColor="#455a64" android:pathData="M568.84,280.86c0,-0.09 1,-0.45 2.51,-1.35a18.48,18.48 0,0 0,2.49 -1.78,20.47 20.47,0 0,0 2.57,-2.72 20.14,20.14 0,0 0,2 -3.18,18.26 18.26,0 0,0 1.1,-2.86c0.47,-1.68 0.56,-2.78 0.65,-2.77s0,0.28 0,0.78a12.06,12.06 0,0 1,-0.32 2.08,15.58 15.58,0 0,1 -1,3 17.87,17.87 0,0 1,-2 3.3,18.09 18.09,0 0,1 -2.68,2.76 14.57,14.57 0,0 1,-2.61 1.74,11.23 11.23,0 0,1 -1.93,0.84A2.21,2.21 0,0 1,568.84 280.86Z"/>
<path android:fillColor="#455a64" android:pathData="M607,266s0,0.16 0.1,0.49 0.13,0.83 0.23,1.45c0.21,1.3 0.5,3.18 0.87,5.59 0.75,4.84 1.83,11.86 3.25,20.52 2.79,17.33 6.88,41.22 11.88,67.52 2.52,13.15 5,25.66 7.41,37s4.65,21.56 6.66,30.09l1.42,6.1 1.32,5.42c0.83,3.39 1.53,6.31 2.15,8.68s1.07,4.2 1.39,5.48c0.15,0.61 0.26,1.08 0.35,1.42s0.1,0.5 0.1,0.5 -0.06,-0.16 -0.15,-0.48 -0.23,-0.81 -0.4,-1.42c-0.35,-1.27 -0.85,-3.1 -1.48,-5.45s-1.39,-5.28 -2.24,-8.66c-0.42,-1.69 -0.88,-3.5 -1.36,-5.41s-0.95,-4 -1.46,-6.09c-2.06,-8.53 -4.33,-18.73 -6.77,-30.08s-4.93,-23.86 -7.45,-37c-5,-26.31 -9,-50.22 -11.74,-67.56 -1.37,-8.67 -2.39,-15.7 -3.08,-20.56 -0.33,-2.41 -0.59,-4.29 -0.77,-5.59 -0.08,-0.63 -0.14,-1.11 -0.19,-1.46A4.66,4.66 0,0 1,607 266Z"/>
<path android:fillColor="#455a64" android:pathData="M589.62,455.14s0,-0.16 0,-0.46 -0.05,-0.78 -0.08,-1.36c-0.07,-1.21 -0.17,-3 -0.3,-5.2 -0.24,-4.55 -0.59,-11.08 -1,-19.14 -0.23,-4 -0.49,-8.47 -0.76,-13.22s-0.59,-9.82 -1.11,-15.14c-1,-10.65 -2.13,-22.36 -3.1,-34.67s-1.68,-24.07 -2,-34.77 -0.36,-20.35 -0.13,-28.44c0.07,-4.05 0.3,-7.71 0.43,-10.92s0.37,-6 0.56,-8.23 0.37,-4 0.48,-5.19c0.06,-0.57 0.1,-1 0.14,-1.35s0.06,-0.46 0.06,-0.46a4.15,4.15 0,0 1,0 0.47q0,0.48 -0.09,1.35c-0.08,1.21 -0.21,3 -0.38,5.2s-0.28,5 -0.47,8.23 -0.3,6.86 -0.35,10.91c-0.18,8.08 -0.15,17.72 0.24,28.41s1.1,22.43 2.07,34.74 2.07,24 3.06,34.68c0.5,5.33 0.77,10.41 1.06,15.16s0.48,9.18 0.7,13.22c0.36,8.07 0.66,14.6 0.87,19.15 0.08,2.24 0.15,4 0.19,5.21 0,0.57 0,1 0,1.35S589.62,455.14 589.62,455.14Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M584.19,150.6c-5.07,-12.53 2.31,-20.07 7.07,-22.75 2.84,-1.6 6.19,-1.91 9.42,-2a33.89,33.89 0,0 1,9.48 1,16.82 16.82,0 0,1 8.14,4.81c3.79,4.27 4.57,10.53 4.11,16.3a46.33,46.33 0,0 1,-6 19.36,4.8 4.8,0 0,1 -1.69,1.95 1.72,1.72 0,0 1,-2.28 -0.44"/>
<path android:fillColor="#ffbe9d" android:pathData="M601.34,193.6c5.47,0.44 10.35,-4.3 11.1,-12.92l3.8,-43.82 -0.27,3a3.46,3.46 0,0 0,-3 -3.61l-17,-2a10.52,10.52 0,0 0,-11.59 9.76c-0.52,6.67 -0.91,14.83 -0.22,19.82 1.39,10 8.88,11.37 8.88,11.37l-0.73,7.26a10,10 0,0 0,9 11.1Z"/>
<path android:fillColor="#263238" android:pathData="M594.25,158.9a8.58,8.58 0,0 0,-2.19 -0.43c-0.35,0 -0.68,-0.11 -0.73,-0.35a1.79,1.79 0,0 1,0.25 -1.05c0.34,-0.85 0.69,-1.74 1.07,-2.68a47.25,47.25 0,0 0,2.41 -7,48.88 48.88,0 0,0 -3,6.8q-0.54,1.41 -1,2.7a2.11,2.11 0,0 0,-0.21 1.38,0.85 0.85,0 0,0 0.56,0.52 2.29,2.29 0,0 0,0.59 0.09A9.29,9.29 0,0 0,594.25 158.9Z"/>
<path android:fillColor="#eb996e" android:pathData="M593,175.24a24.65,24.65 0,0 0,13.2 -3.45s-3.64,6.89 -13.44,5.86Z"/>
<path android:fillColor="#eb996e" android:pathData="M594.76,162.23a2.45,2.45 0,0 1,2.21 -0.9,2.2 2.2,0 0,1 1.52,0.85 1.47,1.47 0,0 1,0.08 1.65,1.61 1.61,0 0,1 -1.78,0.44 4.92,4.92 0,0 1,-1.72 -1.07,1.49 1.49,0 0,1 -0.38,-0.41 0.49,0.49 0,0 1,0 -0.51"/>
<path android:fillColor="#263238" android:pathData="M598.21,159.89c-0.22,0 -0.24,1.48 -1.52,2.54s-2.84,0.87 -2.85,1.08 0.34,0.3 1,0.32a3.65,3.65 0,0 0,2.38 -0.82,3.31 3.31,0 0,0 1.19,-2.13C598.47,160.25 598.32,159.88 598.21,159.89Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M598.77,146.26c0.12,0.38 1.48,0.22 3.06,0.43s2.86,0.66 3.08,0.32c0.1,-0.16 -0.12,-0.51 -0.63,-0.88a5.25,5.25 0,0 0,-4.68 -0.57C599,145.79 598.71,146.09 598.77,146.26Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M586.6,144.31c0.23,0.32 1.17,0 2.29,0s2.07,0.23 2.29,-0.1c0.1,-0.16 0,-0.47 -0.45,-0.77a3.24,3.24 0,0 0,-3.7 0.08C586.63,143.84 586.5,144.16 586.6,144.31Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M592.36,127.26c9.61,-5.34 19.74,-1.4 27.27,6.58 1.66,1.76 3.15,3.83 5.34,4.82 2.36,1.08 5.54,0.94 6.92,3.18 1.61,2.62 -0.7,6.25 0.45,9.11 1.06,2.63 4.56,3.42 5.82,6 1,2 0.3,4.39 -0.23,6.57s-0.76,4.8 0.82,6.34l-20.61,7.68a5.17,5.17 0,0 1,-2.88 0.28c-2.89,-0.62 -3,-3.37 -2.73,-5.64 0.24,-1.69 0.64,-3.49 0,-5 -0.79,-1.85 -2.89,-2.86 -3.6,-4.74 -1.25,-3.32 2.48,-6.71 2.11,-10.26a7.71,7.71 0,0 0,-3.88 -5.73c-2,-0.92 -5,-1.35 -6.37,-2 -4.52,-2.15 -8.76,-5.25 -10.73,-10.3a5.51,5.51 0,0 1,2.33 -6.78Z"/>
<path android:fillColor="#eb996e" android:pathData="M599.73,153.11c0.1,-0.12 0.91,0.46 2.06,0.39a8.81,8.81 0,0 0,2 -0.54s-0.09,0.28 -0.44,0.54a2.78,2.78 0,0 1,-1.57 0.52,2.82 2.82,0 0,1 -1.6,-0.4C599.84,153.39 599.69,153.16 599.73,153.11Z"/>
<path android:fillColor="#eb996e" android:pathData="M586.25,152.46a5.6,5.6 0,0 0,2.28 0.28c1.25,-0.23 1.92,-1.18 2,-1.08s0,0.32 -0.34,0.68a2.87,2.87 0,0 1,-1.6 0.92,2.8 2.8,0 0,1 -1.83,-0.27C586.38,152.76 586.2,152.51 586.25,152.46Z"/>
<path android:fillColor="#eb996e" android:pathData="M597.89,159.13c0,-0.13 0.43,-0.35 1,-0.09s0.64,0.77 0.5,0.82 -0.38,-0.19 -0.73,-0.35S597.93,159.28 597.89,159.13Z"/>
<path android:fillColor="#eb996e" android:pathData="M593,163.23c0.13,0.08 0.16,0.26 0.2,0.43a0.77,0.77 0,0 1,0 0.48c-0.07,0.12 -0.42,0 -0.49,-0.38S592.89,163.14 593,163.23Z"/>
<path android:fillColor="#eb996e" android:pathData="M597.13,167.05c-0.14,0 0.13,-1.1 1.19,-1.86s2.17,-0.67 2.14,-0.53 -0.93,0.28 -1.84,1S597.27,167.12 597.13,167.05Z"/>
<path android:fillColor="#eb996e" android:pathData="M600.58,160.8c-0.08,0 0,-0.46 -0.37,-1a1.91,1.91 0,0 0,-0.81 -0.75,8.31 8.31,0 0,1 -1.42,-0.67 2.37,2.37 0,0 1,-0.79 -2.75c0.3,-0.73 0.76,-1 0.79,-0.91s-0.27,0.38 -0.44,1a2.13,2.13 0,0 0,0.75 2.23c0.38,0.28 0.89,0.4 1.33,0.66a2,2 0,0 1,0.91 1C600.83,160.34 600.63,160.83 600.58,160.8Z"/>
<path android:fillColor="#263238" android:pathData="M587.8,150.49a1.23,1.23 0,0 0,1.08 1.33,1.18 1.18,0 0,0 1.33,-1 1.22,1.22 0,0 0,-1.08 -1.33A1.19,1.19 0,0 0,587.8 150.49Z"/>
<path android:fillColor="#263238" android:pathData="M586.41,149.27c0.14,0.17 1.11,-0.46 2.41,-0.37s2.22,0.81 2.37,0.66 -0.06,-0.37 -0.45,-0.71a3.32,3.32 0,0 0,-1.88 -0.73,3.23 3.23,0 0,0 -1.94,0.5C586.5,148.91 586.34,149.2 586.41,149.27Z"/>
<path android:fillColor="#263238" android:pathData="M600.43,151.3a1.23,1.23 0,0 0,1.08 1.33,1.18 1.18,0 0,0 1.33,-1 1.22,1.22 0,0 0,-1.08 -1.33A1.18,1.18 0,0 0,600.43 151.3Z"/>
<path android:fillColor="#263238" android:pathData="M599.25,150.1c0.14,0.17 1.11,-0.47 2.41,-0.38s2.22,0.82 2.37,0.66 0,-0.37 -0.45,-0.7a3.28,3.28 0,0 0,-3.82 -0.23C599.34,149.74 599.18,150 599.25,150.1Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M612.43,173.19c-0.2,3.77 1.67,4.72 1.08,6.59 -0.4,1.27 -1.29,2.33 -1.64,3.61 -0.62,2.29 0.61,4.6 1.55,6.76s1.5,4.95 -0.1,6.68a41.34,41.34 0,0 0,12.66 0.24l0.84,-3.34c0.11,1.72 1.9,2.91 3.59,2.94a10.4,10.4 0,0 0,4.78 -1.56,10 10,0 0,1 4.8,-1.49c0.14,-0.78 0.29,-1.55 0.43,-2.32a7,7 0,0 0,5.6 1,21.51 21.51,0 0,0 5.46,-2.21 13.32,13.32 0,0 1,-5.38 -9.93c-0.09,-1.61 0.1,-3.3 -0.51,-4.79 -0.94,-2.26 -3.39,-3.33 -5.35,-4.75s-3.63,-4.17 -2.25,-6.2"/>
<path android:fillColor="#fafafa" android:pathData="M637.33,170.13a2.67,2.67 0,0 1,-0.53 -0.51,5.62 5.62,0 0,1 -1,-1.85 12.09,12.09 0,0 1,-0.53 -3.29c-0.06,-1.31 0.06,-2.78 -0.08,-4.38a6.79,6.79 0,0 0,-1.89 -4.67c-1.36,-1.28 -3.54,-1.6 -5.22,-3.15a6,6 0,0 1,-1.58 -3,23.37 23.37,0 0,1 -0.43,-3.46 14.48,14.48 0,0 0,-0.58 -3.45,6.74 6.74,0 0,0 -1.94,-2.91c-1.81,-1.65 -4.12,-2.47 -6.23,-3.51a15.68,15.68 0,0 1,-3 -1.83,28.22 28.22,0 0,1 -2.46,-2.25 23.93,23.93 0,0 0,-4.57 -4,14.58 14.58,0 0,0 -4.9,-1.78 17.78,17.78 0,0 0,-7.57 0.36c-1.75,0.48 -2.65,1 -2.67,0.9a3,3 0,0 1,0.64 -0.35,14.64 14.64,0 0,1 2,-0.74 17.21,17.21 0,0 1,7.69 -0.53,14.62 14.62,0 0,1 5.06,1.77 24.31,24.31 0,0 1,4.69 4,30.29 30.29,0 0,0 2.43,2.2 15.47,15.47 0,0 0,2.89 1.76c2.06,1 4.44,1.85 6.35,3.58a7.2,7.2 0,0 1,2.08 3.14,15 15,0 0,1 0.6,3.57 23.87,23.87 0,0 0,0.4 3.38,5.5 5.5,0 0,0 1.43,2.78c1.5,1.43 3.7,1.79 5.18,3.17a5.65,5.65 0,0 1,1.51 2.4,10 10,0 0,1 0.46,2.56c0.12,1.64 0,3.12 0,4.4a12.07,12.07 0,0 0,0.44 3.24A6.77,6.77 0,0 0,637.33 170.13Z"/>
<path android:fillColor="#fff" android:pathData="M633.9,160.47a4.13,4.13 0,0 0,-0.9 -2,6.62 6.62,0 0,0 -2,-1.58c-0.89,-0.49 -2,-0.89 -3.14,-1.59a7,7 0,0 1,-2.72 -3.34,22.27 22.27,0 0,1 -1.23,-4.76 15.54,15.54 0,0 0,-1.6 -5,6.16 6.16,0 0,0 -1.84,-2 12.61,12.61 0,0 0,-2.57 -1.29c-0.91,-0.36 -1.84,-0.69 -2.73,-1.13a11.84,11.84 0,0 1,-2.43 -1.59,47.53 47.53,0 0,1 -3.81,-3.86 16.32,16.32 0,0 0,-3.66 -3.1,12.86 12.86,0 0,0 -3.9,-1.48 28.07,28.07 0,0 0,-6.09 -0.47l-1.67,0a2,2 0,0 1,-0.59 0,3.93 3.93,0 0,1 0.58,-0.08c0.38,0 1,-0.09 1.67,-0.13a26.14,26.14 0,0 1,6.18 0.32,13.28 13.28,0 0,1 4,1.46 16.8,16.8 0,0 1,3.79 3.15,52 52,0 0,0 3.78,3.8 11.46,11.46 0,0 0,2.34 1.52c0.85,0.41 1.77,0.74 2.7,1.11a12.4,12.4 0,0 1,2.67 1.35,6.69 6.69,0 0,1 2,2.16 15.88,15.88 0,0 1,1.63 5.21,22.57 22.57,0 0,0 1.16,4.68A6.6,6.6 0,0 0,628 155c1.07,0.69 2.18,1.12 3.08,1.64a6.67,6.67 0,0 1,2.07 1.71,3.69 3.69,0 0,1 0.71,1.54 2,2 0,0 1,0 0.44C633.91,160.42 633.91,160.47 633.9,160.47Z"/>
<path android:fillColor="#fafafa" android:pathData="M634.44,194.15a3.78,3.78 0,0 1,-0.91 0.07,5.39 5.39,0 0,1 -2.51,-0.72 5.51,5.51 0,0 1,-2.53 -3.24,5.79 5.79,0 0,1 -0.18,-2.61 12,12 0,0 1,0.92 -2.77,12 12,0 0,0 1,-2.95 3.68,3.68 0,0 0,-0.94 -3,17.36 17.36,0 0,0 -2.83,-2.27 8.21,8.21 0,0 1,-2.61 -3,8.34 8.34,0 0,1 -0.91,-4.08 15.61,15.61 0,0 1,1 -4.21,8.34 8.34,0 0,0 0.41,-2.08 3.45,3.45 0,0 0,-0.52 -2,6.27 6.27,0 0,0 -3.68,-2.19 12.93,12.93 0,0 1,-4.32 -1.65,4.31 4.31,0 0,1 -1.44,-1.86 6,6 0,0 1,-0.39 -2.24c0,-1.49 0.24,-2.9 0.18,-4.27a5.7,5.7 0,0 0,-1.37 -3.61c-1.67,-2 -4.15,-2.92 -6.38,-3.63 -1.13,-0.36 -2.23,-0.7 -3.27,-1.12a20,20 0,0 1,-2.85 -1.45,19.73 19.73,0 0,1 -6.63,-6.86 13.24,13.24 0,0 1,-1.43 -3.21,1.22 1.22,0 0,1 0.11,0.21l0.27,0.61a21.84,21.84 0,0 0,1.23 2.29A20,20 0,0 0,600.5 139a20.86,20.86 0,0 0,2.8 1.39c1,0.4 2.11,0.73 3.25,1.08a24.78,24.78 0,0 1,3.47 1.32,9.58 9.58,0 0,1 3.15,2.41 6.21,6.21 0,0 1,1.5 3.9c0.07,1.44 -0.19,2.86 -0.17,4.28a4.3,4.3 0,0 0,1.63 3.69,12.3 12.3,0 0,0 4.15,1.57 6.73,6.73 0,0 1,4 2.41,3.94 3.94,0 0,1 0.59,2.28 8.84,8.84 0,0 1,-0.43 2.21,14.51 14.51,0 0,0 -1,4.08 7.79,7.79 0,0 0,3.3 6.68,17.69 17.69,0 0,1 2.88,2.35 4.11,4.11 0,0 1,1 3.34,11.65 11.65,0 0,1 -1,3.05 12.7,12.7 0,0 0,-0.93 2.67,5.53 5.53,0 0,0 0.14,2.48 5.28,5.28 0,0 0,2.35 3.14,5.64 5.64,0 0,0 2.41,0.8C634.12,194.16 634.43,194.12 634.44,194.15Z"/>
<path android:fillColor="#263238" android:pathData="M597.41,212.34s0.12,-0.11 0.37,-0.11a1.53,1.53 0,0 1,1 0.38,1.78 1.78,0 0,1 0.63,1.46 1.77,1.77 0,0 1,-3.17 0.71,1.79 1.79,0 0,1 -0.05,-1.59 1.57,1.57 0,0 1,0.72 -0.76c0.23,-0.11 0.38,-0.09 0.38,-0.06s-0.51,0.22 -0.75,1a1.44,1.44 0,0 0,0.11 1.19,1.23 1.23,0 0,0 1.3,0.45 1.2,1.2 0,0 0,1 -1,1.47 1.47,0 0,0 -0.4,-1.13A2.14,2.14 0,0 0,597.41 212.34Z"/>
<path android:fillColor="#263238" android:pathData="M595.49,231.33c0,-0.05 0.45,0 1,0.36a1.46,1.46 0,0 1,0.61 1.12,1.23 1.23,0 0,1 -0.22,0.78 1,1 0,0 1,-0.82 0.43,1.39 1.39,0 0,1 -1.24,-1 1.72,1.72 0,0 1,0.19 -1.25c0.35,-0.6 0.71,-0.82 0.76,-0.78s-0.21,0.38 -0.43,0.94a1.46,1.46 0,0 0,-0.06 1,1 1,0 0,0 0.79,0.62c0.33,0 0.56,-0.33 0.55,-0.68a1.15,1.15 0,0 0,-0.37 -0.84C595.85,231.56 595.45,231.41 595.49,231.33Z"/>
<path android:fillColor="#263238" android:pathData="M622,228.19a11.29,11.29 0,0 1,-1 -2.24c-0.54,-1.41 -1.23,-3.38 -1.94,-5.58s-1.29,-4.2 -1.68,-5.66a11.49,11.49 0,0 1,-0.53 -2.39,11.57 11.57,0 0,1 0.88,2.29c0.53,1.61 1.15,3.51 1.83,5.6s1.28,4 1.79,5.62A12.13,12.13 0,0 1,622 228.19Z"/>
<path android:fillColor="#263238" android:pathData="M574.49,242.15a1.83,1.83 0,0 1,-0.19 -0.45c-0.13,-0.35 -0.27,-0.78 -0.45,-1.3s-0.43,-1.26 -0.64,-2.08 -0.51,-1.75 -0.72,-2.79a64.18,64.18 0,0 1,-1.29 -7.41,68.92 68.92,0 0,1 -0.39,-9.19 66.07,66.07 0,0 1,1 -9.16c0.28,-1.39 0.52,-2.71 0.86,-3.93s0.64,-2.34 1,-3.36 0.67,-1.92 1,-2.72 0.58,-1.47 0.83,-2l0.58,-1.25a1.89,1.89 0,0 1,0.23 -0.42,1.69 1.69,0 0,1 -0.13,0.46c-0.14,0.35 -0.3,0.77 -0.49,1.28s-0.49,1.23 -0.75,2 -0.61,1.7 -0.88,2.73 -0.63,2.14 -0.91,3.36 -0.54,2.52 -0.81,3.9a70.58,70.58 0,0 0,-0.91 9.09,71.89 71.89,0 0,0 0.35,9.13 68.46,68.46 0,0 0,1.17 7.38c0.19,1 0.45,2 0.64,2.8s0.38,1.52 0.55,2.1l0.36,1.32A2.64,2.64 0,0 1,574.49 242.15Z"/>
<path android:fillColor="#263238" android:pathData="M558.57,229.56a3.42,3.42 0,0 1,-0.55 -1.51,9.69 9.69,0 0,1 0,-3.89 9.87,9.87 0,0 1,1.48 -3.59c0.57,-0.82 1,-1.23 1.09,-1.19a13.13,13.13 0,0 0,-2 10.18Z"/>
<path android:fillColor="#fafafa" android:pathData="M655.28,280.22a90.14,90.14 0,0 1,-13.39 3.19,46.47 46.47,0 0,1 6.64,-1.84A44.66,44.66 0,0 1,655.28 280.22Z"/>
<path android:fillColor="#fafafa" android:pathData="M655.3,277.59a52.69,52.69 0,0 1,-7.09 2A52.11,52.11 0,0 1,641 281a51.87,51.87 0,0 1,7.09 -1.94A53.14,53.14 0,0 1,655.3 277.59Z"/>
<path android:fillColor="#fafafa" android:pathData="M618.06,221.37c0,0.14 -10.5,0.17 -23.45,0.07s-23.44,-0.3 -23.44,-0.45 10.5,-0.17 23.45,-0.07S618.06,221.22 618.06,221.37Z"/>
<path android:fillColor="#fafafa" android:pathData="M619.76,223c0,0.14 -10.81,0.45 -24.14,0.69s-24.16,0.3 -24.16,0.16 10.8,-0.45 24.15,-0.69S619.76,222.89 619.76,223Z"/>
<path android:fillColor="#263238" android:pathData="M596.58,248a3.3,3.3 0,0 1,-0.52 -0.22,5.89 5.89,0 0,1 -1.3,-1 10.15,10.15 0,0 1,-2.46 -5.39,27.9 27.9,0 0,1 -0.43,-4.1c-0.09,-1.47 -0.12,-3 -0.13,-4.71a83.13,83.13 0,0 1,0.7 -10.78,86 86,0 0,1 4.69,-19c0.9,-2.35 1.71,-4.21 2.31,-5.48 0.29,-0.58 0.52,-1.06 0.71,-1.45a2.45,2.45 0,0 1,0.28 -0.49,2.19 2.19,0 0,1 -0.19,0.54l-0.62,1.48c-0.54,1.29 -1.29,3.17 -2.14,5.53a92.5,92.5 0,0 0,-4.53 19,90.07 90.07,0 0,0 -0.73,10.71c0,1.65 0,3.22 0.08,4.69a30.34,30.34 0,0 0,0.36 4,10.29 10.29,0 0,0 2.25,5.32A9.13,9.13 0,0 0,596.58 248Z"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:height="37dp" android:tint="@color/grey"
android:viewportHeight="24" android:viewportWidth="24"
android:width="32dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M22,6c0,-1.1 -0.9,-2 -2,-2L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6zM20,6l-8,5 -8,-5h16zM20,18L4,18L4,8l8,5 8,-5v10z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="35dp" android:viewportHeight="24"
android:viewportWidth="24" android:width="35dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@color/splash" android:pathData="M12,4a4,4 0,0 1,4 4a4,4 0,0 1,-4 4a4,4 0,0 1,-4 -4a4,4 0,0 1,4 -4m0,2a2,2 0,0 0,-2 2a2,2 0,0 0,2 2a2,2 0,0 0,2 -2a2,2 0,0 0,-2 -2m0,7c2.67,0 8,1.33 8,4v3H4v-3c0,-2.67 5.33,-4 8,-4m0,1.9c-2.97,0 -6.1,1.46 -6.1,2.1v1.1h12.2V17c0,-0.64 -3.13,-2.1 -6.1,-2.1"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="32dp" android:viewportHeight="24"
android:viewportWidth="24" android:width="32dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@color/splash" android:pathData="M12,21q-0.45,0 -0.862,-0.162t-0.738,-0.488l-6.7,-6.725q-0.875,-0.875 -1.287,-2T2,9.275Q2,6.7 3.675,4.85T7.85,3q1.2,0 2.263,0.475T12,4.8q0.8,-0.85 1.863,-1.325T16.125,3q2.5,0 4.188,1.85T22,9.25q0,1.225 -0.425,2.35t-1.275,2l-6.725,6.75q-0.325,0.325 -0.725,0.488T12,21m1,-13q0.25,0 0.475,0.125t0.35,0.325l1.7,2.55h4.15q0.175,-0.425 0.263,-0.862t0.087,-0.888q-0.05,-1.725 -1.15,-2.963t-2.75,-1.237q-0.775,0 -1.487,0.3t-1.238,0.875l-0.675,0.725q-0.125,0.15 -0.325,0.238t-0.4,0.087t-0.4,-0.087t-0.35,-0.238l-0.675,-0.725q-0.525,-0.575 -1.225,-0.9T7.85,5Q6.2,5 5.1,6.263T4,9.25q0,0.45 0.075,0.888t0.25,0.862H9q0.25,0 0.475,0.125t0.35,0.325l0.875,1.3l1.35,-4.05q0.1,-0.3 0.362,-0.5T13,8m0.3,3.25l-1.35,4.05q-0.1,0.3 -0.375,0.5t-0.6,0.2q-0.25,0 -0.475,-0.125t-0.35,-0.325L8.45,13H5.9l5.925,5.925q0.05,0.05 0.088,0.063T12,19t0.088,-0.012t0.087,-0.063l5.9,-5.925H15q-0.25,0 -0.475,-0.125t-0.375,-0.325z"/>
</vector>

View File

@ -0,0 +1,191 @@
<vector android:height="300dp" android:viewportHeight="500"
android:viewportWidth="500" android:width="300dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#ebebeb" android:pathData="M84,400l-10.63,-7.32s-6.14,8.93 -15.52,2.71a10.45,10.45 0,0 1,-4.55 -11.22,11.56 11.56,0 0,1 6.68,-8.09c3.84,-1.73 9.65,-1.71 15.95,4.48l16.48,-24 -10.51,-7.23 -9.65,14s-17.36,-6.33 -28.54,9.91c-10.69,15.54 0.76,28.74 6.73,32.84C55,409.29 71.25,418.88 84,400Z"/>
<path android:fillColor="#ebebeb" android:pathData="M95.78,351.68l-10.66,-7.33l6.85,-9.96l10.66,7.33z"/>
<path android:fillColor="#ebebeb" android:pathData="M129.26,429.39l5.64,-1.49a5,5 0,0 1,3.65 -6.12,4.71 4.71,0 0,1 5.19,1.75 5.22,5.22 0,0 1,0.81 4.67c-0.54,1.83 -2.26,3.82 -6.24,4.15l3.35,12.73 5.58,-1.47 -2,-7.46a11.27,11.27 0,0 0,5 -12.71c-2.18,-8.25 -10.09,-8.22 -13.25,-7.38C134.62,416.7 126.53,419.46 129.26,429.39Z"/>
<path android:fillColor="#ebebeb" android:pathData="M142.36,447.69l5.67,-1.49l1.4,5.29l-5.67,1.49z"/>
<path android:fillColor="#f5f5f5" android:pathData="M223,73.07a37.14,37.14 0,0 1,9.14 -4l1.88,-9 15.29,-0.27 2.2,9a37.18,37.18 0,0 1,9.28 3.65l7.73,-5.07 11,10.62 -4.79,7.9a37.79,37.79 0,0 1,4 9.15l9.05,1.88 0.26,15.29 -9,2.2a37.57,37.57 0,0 1,-3.65 9.28l5.06,7.73 -10.62,11 -7.9,-4.79a37.21,37.21 0,0 1,-9.15 4l-1.88,9.06 -15.29,0.26 -2.2,-9a36.8,36.8 0,0 1,-9.28 -3.65l-7.73,5.07 -11,-10.62 4.79,-7.9a37.21,37.21 0,0 1,-4 -9.15l-9,-1.88 -0.27,-15.29 9,-2.2A37.18,37.18 0,0 1,209.54 87l-5.07,-7.73 10.62,-11L223,73.07ZM231.15,93.44A16.4,16.4 0,1 0,254.34 93,16.41 16.41,0 0,0 231.15,93.44Z"/>
<path android:fillColor="#ebebeb" android:pathData="M159,41.19a21.73,21.73 0,0 1,5.27 -2.28l1.08,-5.22 8.81,-0.15 1.27,5.17a21.34,21.34 0,0 1,5.34 2.1l4.45,-2.92L191.52,44l-2.76,4.55a21.54,21.54 0,0 1,2.29 5.27l5.21,1.08 0.15,8.81L191.24,65a21.19,21.19 0,0 1,-2.1 5.34l2.92,4.45 -6.12,6.34 -4.55,-2.76a21.54,21.54 0,0 1,-5.27 2.29L175,85.86l-8.81,0.16L165,80.85a21.76,21.76 0,0 1,-5.34 -2.11l-4.45,2.92 -6.34,-6.12L151.59,71a21.31,21.31 0,0 1,-2.29 -5.26l-5.21,-1.09 -0.16,-8.81 5.18,-1.26a21.26,21.26 0,0 1,2.1 -5.35l-2.92,-4.45 6.12,-6.33L159,41.19ZM163.69,52.93A9.45,9.45 0,1 0,177 52.69,9.45 9.45,0 0,0 163.65,52.93Z"/>
<path android:fillColor="#ebebeb" android:pathData="M440.07,204.71a21.69,21.69 0,0 1,5.26 -2.29l1.09,-5.21 8.8,-0.15 1.27,5.17a21.26,21.26 0,0 1,5.35 2.1l4.45,-2.92 6.33,6.12 -2.76,4.55a21.54,21.54 0,0 1,2.29 5.27l5.22,1.08 0.15,8.81 -5.17,1.27a22.13,22.13 0,0 1,-2.1 5.34l2.91,4.45 -6.11,6.34 -4.55,-2.76a21.54,21.54 0,0 1,-5.27 2.29l-1.09,5.21 -8.8,0.16 -1.27,-5.18a21.19,21.19 0,0 1,-5.34 -2.1l-4.46,2.92 -6.33,-6.12 2.76,-4.55a21.38,21.38 0,0 1,-2.29 -5.27l-5.21,-1.08 -0.16,-8.81 5.17,-1.27a22.13,22.13 0,0 1,2.1 -5.34l-2.91,-4.45 6.11,-6.34 4.56,2.76ZM444.76,216.44a9.45,9.45 0,1 0,13.36 -0.23A9.46,9.46 0,0 0,444.76 216.44Z"/>
<path android:fillColor="#455a64" android:pathData="M417.66,464.58l-142,-0.08a30.94,30.94 0,0 1,-30.92 -30.94l0.07,-356a31,31 0,0 1,31 -30.93l142,0.09a30.94,30.94 0,0 1,30.92 30.94l-0.07,356A30.92,30.92 0,0 1,417.66 464.58Z"/>
<path android:fillColor="#fff" android:pathData="M417.61,59.27l-27.53,0a6.85,6.85 0,0 0,-6.69 7v5a6.85,6.85 0,0 1,-6.69 7l-53.67,0a6.85,6.85 0,0 1,-6.68 -7v-5a6.85,6.85 0,0 0,-6.69 -7H275.88A21.66,21.66 0,0 0,254.2 80.85l-0.07,347.52A21.67,21.67 0,0 0,275.79 450l141.73,0.08a21.67,21.67 0,0 0,21.68 -21.66l0.06,-347.52A21.66,21.66 0,0 0,417.61 59.27Z"/>
<path android:fillColor="#ebebeb" android:pathData="M439.25,132.31V80.54a21.66,21.66 0,0 0,-21.64 -21.27l-27.53,0a6.84,6.84 0,0 0,-6.69 7v5a6.85,6.85 0,0 1,-6.69 7l-53.67,0a6.85,6.85 0,0 1,-6.68 -7v-5a6.85,6.85 0,0 0,-6.69 -7H275.88A21.66,21.66 0,0 0,254.2 80.85v51.62H439.25Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M269.51,180.15a22.43,22.38 0,1 0,44.86 0a22.43,22.38 0,1 0,-44.86 0z"/>
<path android:fillColor="#455a64" android:pathData="M281.46,185.75l5.88,-0.5 14.34,2.42 1.69,10.79 -0.24,1.26a22.56,22.56 0,0 1,-21.26 0.49l-0.41,-14.46"/>
<path android:fillColor="#455a64" android:pathData="M298.61,187.5a7.66,7.66 0,0 1,7.44 3.27,42.81 42.81,0 0,1 2.67,4.23c-2.34,2.54 -4.24,4.47 -7.48,5.6Z"/>
<path android:fillColor="#455a64" android:pathData="M281.46,185.75s-3.88,0.48 -5.38,3.79 -1.85,4.34 -1.85,4.34c2,2.42 4.56,5.28 7.69,6.35 0,0 0.71,-8.34 0.8,-10.69C282.83,187 282.93,185.68 281.46,185.75Z"/>
<path android:fillColor="#263238" android:pathData="M285,164.55a10.61,10.61 0,0 1,8.22 -4.08,11.46 11.46,0 0,1 4,0.72 5.85,5.85 0,0 1,3.36 2.22,9.74 9.74,0 0,1 1.94,4.5 27.75,27.75 0,0 1,0.24 5.07,9.3 9.3,0 0,1 -1.59,4.77l-4.31,0.74a26.84,26.84 0,0 1,-7.11 -0.38,9.13 9.13,0 0,1 -5.82,-3.82C282.2,171.48 282.92,167.11 285,164.55Z"/>
<path android:fillColor="#263238" android:pathData="M280.84,177a3.23,3.23 0,0 1,1.46 -2.42,2.32 2.32,0 0,1 2.72,0.24l0.68,0.8a2.78,2.78 0,0 1,1.6 2.8,3 3,0 0,1 -2.12,2.49 3.37,3.37 0,0 1,-3.21 -0.77A3.78,3.78 0,0 1,280.84 177Z"/>
<path android:fillColor="#455a64" android:pathData="M281.69,179.94a1.47,1.47 0,0 1,-0.23 -0.85,3.94 3.94,0 0,1 1,-1.94 5.8,5.8 0,0 1,1.73 -1.38c0.5,-0.27 0.85,-0.37 0.84,-0.4a2.22,2.22 0,0 0,-0.91 0.27,5 5,0 0,0 -1.82,1.38 4.68,4.68 0,0 0,-0.7 1,2.45 2.45,0 0,0 -0.28,1 1.23,1.23 0,0 0,0.19 0.68C281.6,179.9 281.69,180 281.69,179.94Z"/>
<path android:fillColor="#ffbe9d" android:pathData="M296.82,186.73s0,-4 0,-4 3.51,-0.39 4.49,-4.89a48.22,48.22 0,0 0,0.54 -9c0,-2.73 -2.35,-6.45 -5.73,-6.46l-1.5,-0.18 -5.75,2.28a1.61,1.61 0,0 0,-1.52 1.54l-0.17,19.21 2.63,3.69a3.88,3.88 0,0 0,7 -2.23Z"/>
<path android:fillColor="#eb996e" android:pathData="M294.53,176.8a0.92,0.92 0,0 1,0.33 -0.59,1 1,0 0,1 1.19,-0.07 1.33,1.33 0,0 1,0.5 1.23h0a1.22,1.22 0,0 1,-0.86 0.5h-0.16a1,1 0,0 1,-0.72 -0.28A1,1 0,0 1,294.53 176.8Z"/>
<path android:fillColor="#263238" android:pathData="M299.76,172a0.58,0.58 0,0 1,-0.59 0.56,0.57 0.57,0 0,1 -0.58,-0.56 0.59,0.59 0,0 1,0.6 -0.56A0.56,0.56 0,0 1,299.76 172Z"/>
<path android:fillColor="#263238" android:pathData="M300.72,170.56c-0.08,0.07 -0.51,-0.28 -1.13,-0.31s-1.11,0.26 -1.17,0.18 0.05,-0.17 0.26,-0.31a1.65,1.65 0,0 1,0.94 -0.23,1.49 1.49,0 0,1 0.89,0.34C300.69,170.39 300.75,170.53 300.72,170.56Z"/>
<path android:fillColor="#263238" android:pathData="M296.77,175.3a4.54,4.54 0,0 1,1 -0.12c0.16,0 0.32,0 0.35,-0.14a0.82,0.82 0,0 0,-0.08 -0.48l-0.41,-1.24a21.29,21.29 0,0 1,-0.89 -3.25,21.06 21.06,0 0,1 1.15,3.17c0.14,0.43 0.26,0.85 0.39,1.25a1,1 0,0 1,0.05 0.63,0.47 0.47,0 0,1 -0.28,0.22 1.32,1.32 0,0 1,-0.27 0A3.74,3.74 0,0 1,296.77 175.3Z"/>
<path android:fillColor="#eb996e" android:pathData="M296.8,182.74a11.57,11.57 0,0 1,-6 -2s1.45,3.23 6,3.06Z"/>
<path android:fillColor="#263238" android:pathData="M294.9,175.64c0.11,0 0.07,0.68 0.63,1.19s1.28,0.48 1.28,0.57 -0.17,0.13 -0.47,0.12a1.74,1.74 0,0 1,-1.08 -0.44,1.5 1.5,0 0,1 -0.48,-1C294.77,175.79 294.86,175.63 294.9,175.64Z"/>
<path android:fillColor="#263238" android:pathData="M300.59,168.2c-0.11,0.15 -0.59,0 -1.15,0s-1,0.14 -1.15,0 0,-0.22 0.22,-0.36a1.76,1.76 0,0 1,0.92 -0.27,1.69 1.69,0 0,1 0.93,0.25C300.57,168 300.64,168.13 300.59,168.2Z"/>
<path android:fillColor="#263238" android:pathData="M292.88,172a0.59,0.59 0,0 0,0.56 0.6,0.56 0.56,0 0,0 0.61,-0.52 0.59,0.59 0,0 0,-0.56 -0.59A0.55,0.55 0,0 0,292.88 172Z"/>
<path android:fillColor="#263238" android:pathData="M292.12,170.34c0.07,0.08 0.52,-0.24 1.15,-0.23s1.08,0.33 1.15,0.26 0,-0.17 -0.24,-0.32a1.55,1.55 0,0 0,-0.92 -0.3,1.51 1.51,0 0,0 -0.91,0.27C292.15,170.17 292.08,170.3 292.12,170.34Z"/>
<path android:fillColor="#263238" android:pathData="M291.76,169c0.12,0.15 0.61,0 1.19,0s1.07,0.12 1.19,0 0,-0.22 -0.24,-0.36a1.9,1.9 0,0 0,-1.92 0C291.77,168.78 291.7,168.92 291.76,169Z"/>
<path android:fillColor="#ffbe9d" android:pathData="M288.11,173.69c0,-0.34 -0.32,-1.16 -0.66,-1.23 -0.88,-0.19 -2.49,-0.2 -2.63,2.06 -0.19,3.09 3,2.64 3,2.55S288.05,174.85 288.11,173.69Z"/>
<path android:fillColor="#eb996e" android:pathData="M287,175.89s-0.05,0 -0.15,0.07a0.51,0.51 0,0 1,-0.4 0,1.34 1.34,0 0,1 -0.55,-1.24 1.86,1.86 0,0 1,0.2 -0.76,0.64 0.64,0 0,1 0.43,-0.39 0.27,0.27 0,0 1,0.31 0.17,0.53 0.53,0 0,1 0,0.15s0.07,0 0.05,-0.17a0.34,0.34 0,0 0,-0.11 -0.2,0.36 0.36,0 0,0 -0.29,-0.1 0.75,0.75 0,0 0,-0.59 0.44,1.83 1.83,0 0,0 -0.24,0.85 1.4,1.4 0,0 0,0.7 1.39,0.61 0.61,0 0,0 0.5,-0.05C287,176 287,175.9 287,175.89Z"/>
<path android:fillColor="#263238" android:pathData="M287.33,172.47l0.78,0.81c3.4,-3.24 10.05,-11.37 9.68,-10.89a10,10 0,0 0,-4.86 -0.52c-2.53,0.43 -7.32,1.69 -7.25,4.66A15.58,15.58 0,0 0,287.33 172.47Z"/>
<path android:fillColor="#455a64" android:pathData="M282.83,171.79s0,-0.07 0,-0.18a3.94,3.94 0,0 1,0.21 -0.49,4.46 4.46,0 0,1 1.3,-1.45 8.58,8.58 0,0 1,2.61 -1.26c1,-0.33 2.2,-0.59 3.35,-1.08a15.64,15.64 0,0 0,5.22 -3.6,17.08 17.08,0 0,0 1.25,-1.48l0.31,-0.43a0.71,0.71 0,0 1,0.12 -0.14l-0.09,0.16c-0.07,0.1 -0.16,0.26 -0.29,0.45a14.82,14.82 0,0 1,-1.22 1.52,15.2 15.2,0 0,1 -2.16,1.92 14.83,14.83 0,0 1,-3.08 1.74,31.67 31.67,0 0,1 -3.37,1.08 8.6,8.6 0,0 0,-2.58 1.21,4.54 4.54,0 0,0 -1.31,1.39A4.69,4.69 0,0 0,282.83 171.79Z"/>
<path android:fillColor="#455a64" android:pathData="M283.73,172.27a1.63,1.63 0,0 1,0.12 -0.67,3.16 3.16,0 0,1 1.16,-1.46 7,7 0,0 1,2.59 -1,14.85 14.85,0 0,0 3.21,-1 13.47,13.47 0,0 0,2.86 -1.76,14.52 14.52,0 0,0 2,-1.93 13.52,13.52 0,0 0,1.09 -1.5c0.11,-0.17 0.2,-0.32 0.26,-0.43a0.84,0.84 0,0 1,0.11 -0.15,0.91 0.91,0 0,1 -0.08,0.16l-0.24,0.45a10.55,10.55 0,0 1,-1.06 1.54,12.83 12.83,0 0,1 -2,2 13.65,13.65 0,0 1,-2.89 1.8,14.72 14.72,0 0,1 -3.25,1 7.31,7.31 0,0 0,-2.55 1,3.14 3.14,0 0,0 -1.17,1.39A3.32,3.32 0,0 0,283.73 172.27Z"/>
<path android:fillColor="#263238" android:pathData="M281.92,200.21a39.88,39.88 0,0 1,0 -5.92,43.86 43.86,0 0,1 0,5.92Z"/>
<path android:fillColor="#263238" android:pathData="M303.14,199.79a6.39,6.39 0,0 1,0 -1,11.62 11.62,0 0,0 -0.09,-2.5 12.1,12.1 0,0 0,-0.72 -2.41,5.61 5.61,0 0,1 -0.36,-1 5,5 0,0 1,0.49 0.93,9.61 9.61,0 0,1 0.79,2.43 9.14,9.14 0,0 1,0 2.55A4,4 0,0 1,303.14 199.79Z"/>
<path android:fillColor="#ebebeb" android:pathData="M411.08,208.57H334.63a6.88,6.88 0,0 1,-6.87 -6.87V169.6l-8.43,-7.48h91.75A6.87,6.87 0,0 1,418 169V201.7A6.88,6.88 0,0 1,411.08 208.57Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M405.84,213.77a65,65 0,0 1,-8.16 0.26,64.92 64.92,0 0,1 -8.15,-0.26 64.92,64.92 0,0 1,8.15 -0.26A65,65 0,0 1,405.84 213.77Z"/>
<path android:fillColor="#0298E1" android:pathData="M409.21,214.41a0.25,0.25 0,0 1,-0.18 -0.08l-1.58,-1.65a0.25,0.25 0,0 1,0 -0.35,0.24 0.24,0 0,1 0.35,0l1.4,1.46 3.07,-3.12a0.24,0.24 0,0 1,0.35 0,0.25 0.25,0 0,1 0,0.35l-3.25,3.31A0.29,0.29 0,0 1,409.21 214.41Z"/>
<path android:fillColor="#0298E1" android:pathData="M411.46,214.36h-0.29a0.25,0.25 0,0 1,-0.25 -0.25,0.28 0.28,0 0,1 0.26,-0.25h0.18l3.17,-3.23a0.25,0.25 0,0 1,0.36 0,0.25 0.25,0 0,1 0,0.35l-3.25,3.3A0.23,0.23 0,0 1,411.46 214.36Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M405.84,339.44a65,65 0,0 1,-8.16 0.26,64.92 64.92,0 0,1 -8.15,-0.26 64.92,64.92 0,0 1,8.15 -0.26A65,65 0,0 1,405.84 339.44Z"/>
<path android:fillColor="#0298E1" android:pathData="M409.21,340.08h0A0.25,0.25 0,0 1,409 340l-1.58,-1.65a0.25,0.25 0,1 1,0.36 -0.34l1.4,1.46 3.07,-3.12a0.24,0.24 0,0 1,0.35 0,0.25 0.25,0 0,1 0,0.35L409.39,340A0.29,0.29 0,0 1,409.21 340.08Z"/>
<path android:fillColor="#0298E1" android:pathData="M411.46,340h-0.29a0.26,0.26 0,0 1,-0.25 -0.26,0.24 0.24,0 0,1 0.26,-0.24h0.18l3.17,-3.23a0.25,0.25 0,0 1,0.36 0,0.25 0.25,0 0,1 0,0.35l-3.25,3.3A0.23,0.23 0,0 1,411.46 340Z"/>
<path android:fillColor="#fff" android:pathData="M410.1,171.31c0,0.14 -16.69,0.26 -37.28,0.26s-37.27,-0.12 -37.27,-0.26 16.68,-0.26 37.27,-0.26S410.1,171.16 410.1,171.31Z"/>
<path android:fillColor="#fff" android:pathData="M410.1,176.78c0,0.15 -16.69,0.26 -37.28,0.26s-37.27,-0.11 -37.27,-0.26 16.68,-0.26 37.27,-0.26S410.1,176.64 410.1,176.78Z"/>
<path android:fillColor="#fff" android:pathData="M410.1,182.26c0,0.14 -16.69,0.26 -37.28,0.26s-37.27,-0.12 -37.27,-0.26 16.68,-0.26 37.27,-0.26S410.1,182.12 410.1,182.26Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M269.51,319.72a22.43,22.38 0,1 0,44.86 0a22.43,22.38 0,1 0,-44.86 0z"/>
<path android:fillColor="#455a64" android:pathData="M281.46,325.32l5.88,-0.5 14.34,2.42L303.37,338l-0.24,1.25a22.53,22.53 0,0 1,-21.26 0.49l-0.41,-14.45"/>
<path android:fillColor="#455a64" android:pathData="M298.61,327.06a7.68,7.68 0,0 1,7.44 3.27,42.08 42.08,0 0,1 2.67,4.24c-2.34,2.54 -4.24,4.47 -7.48,5.59Z"/>
<path android:fillColor="#455a64" android:pathData="M281.46,325.32s-3.88,0.47 -5.38,3.78 -1.85,4.35 -1.85,4.35c2,2.41 4.56,5.27 7.69,6.34 0,0 0.71,-8.33 0.8,-10.69C282.83,326.52 282.93,325.24 281.46,325.32Z"/>
<path android:fillColor="#263238" android:pathData="M285,304.12a10.58,10.58 0,0 1,8.22 -4.08,11.25 11.25,0 0,1 4,0.71 5.94,5.94 0,0 1,3.36 2.22,9.79 9.79,0 0,1 1.94,4.5 27.9,27.9 0,0 1,0.24 5.08,9.23 9.23,0 0,1 -1.59,4.76l-4.31,0.75a27.27,27.27 0,0 1,-7.11 -0.38,9.13 9.13,0 0,1 -5.82,-3.82C282.2,311 282.92,306.67 285,304.12Z"/>
<path android:fillColor="#263238" android:pathData="M280.84,316.61a3.21,3.21 0,0 1,1.46 -2.42,2.31 2.31,0 0,1 2.72,0.23l0.68,0.81a2.77,2.77 0,0 1,1.6 2.8,3.06 3.06,0 0,1 -2.12,2.49 3.38,3.38 0,0 1,-3.21 -0.78A3.76,3.76 0,0 1,280.84 316.61Z"/>
<path android:fillColor="#455a64" android:pathData="M281.69,319.51a1.53,1.53 0,0 1,-0.23 -0.86,3.91 3.91,0 0,1 1,-1.93 5.64,5.64 0,0 1,1.73 -1.38c0.5,-0.27 0.85,-0.37 0.84,-0.41a2.43,2.43 0,0 0,-0.91 0.27,5.21 5.21,0 0,0 -1.82,1.38 5,5 0,0 0,-0.7 1.06,2.41 2.41,0 0,0 -0.28,1 1.25,1.25 0,0 0,0.19 0.68C281.6,319.47 281.69,319.52 281.69,319.51Z"/>
<path android:fillColor="#ffbe9d" android:pathData="M296.84,326.66l0,-4s3.51,-0.39 4.49,-4.88a48.33,48.33 0,0 0,0.54 -9c0,-2.73 -2.35,-6.45 -5.73,-6.46l-1.5,-0.17 -5.75,2.28a1.6,1.6 0,0 0,-1.52 1.54l-0.17,19.2 2.63,3.69a3.88,3.88 0,0 0,7 -2.23Z"/>
<path android:fillColor="#eb996e" android:pathData="M294.53,316.37a0.92,0.92 0,0 1,0.33 -0.59,1 1,0 0,1 1.19,-0.07 1.33,1.33 0,0 1,0.5 1.23h0a1.21,1.21 0,0 1,-0.86 0.49h-0.16a1.1,1.1 0,0 1,-0.72 -0.29A0.93,0.93 0,0 1,294.53 316.37Z"/>
<path android:fillColor="#263238" android:pathData="M299.76,312a0.59,0.59 0,0 1,-1.17 0,0.59 0.59,0 0,1 0.6,-0.56A0.56,0.56 0,0 1,299.76 312Z"/>
<path android:fillColor="#263238" android:pathData="M300.72,310.51c-0.08,0.07 -0.51,-0.28 -1.13,-0.31s-1.11,0.25 -1.17,0.17 0.05,-0.17 0.26,-0.3a1.51,1.51 0,0 1,0.94 -0.23,1.49 1.49,0 0,1 0.89,0.34C300.69,310.34 300.75,310.48 300.72,310.51Z"/>
<path android:fillColor="#263238" android:pathData="M296.77,315.25a4.85,4.85 0,0 1,1 -0.13c0.16,0 0.32,0 0.35,-0.14a0.83,0.83 0,0 0,-0.08 -0.48c-0.13,-0.39 -0.27,-0.8 -0.41,-1.24a21.7,21.7 0,0 1,-0.89 -3.24,20.66 20.66,0 0,1 1.15,3.16c0.14,0.44 0.26,0.85 0.39,1.25a1,1 0,0 1,0.05 0.63,0.41 0.41,0 0,1 -0.28,0.22 0.89,0.89 0,0 1,-0.27 0A3.74,3.74 0,0 1,296.77 315.25Z"/>
<path android:fillColor="#eb996e" android:pathData="M296.8,322.68a11.61,11.61 0,0 1,-6 -1.95s1.45,3.23 6,3.06Z"/>
<path android:fillColor="#263238" android:pathData="M294.9,315.58c0.11,0 0.07,0.68 0.63,1.2s1.28,0.48 1.28,0.57 -0.17,0.12 -0.47,0.12a1.7,1.7 0,0 1,-1.08 -0.45,1.46 1.46,0 0,1 -0.48,-1C294.77,315.74 294.86,315.58 294.9,315.58Z"/>
<path android:fillColor="#263238" android:pathData="M300.59,308.15c-0.11,0.15 -0.59,0 -1.15,0s-1,0.14 -1.15,0 0,-0.22 0.22,-0.36a1.67,1.67 0,0 1,0.92 -0.27,1.61 1.61,0 0,1 0.93,0.25C300.57,307.93 300.64,308.08 300.59,308.15Z"/>
<path android:fillColor="#263238" android:pathData="M292.88,311.92a0.58,0.58 0,0 0,0.56 0.59,0.55 0.55,0 0,0 0.61,-0.51 0.59,0.59 0,0 0,-0.56 -0.6A0.56,0.56 0,0 0,292.88 311.92Z"/>
<path android:fillColor="#263238" android:pathData="M292.12,310.28c0.07,0.08 0.52,-0.24 1.15,-0.22s1.08,0.33 1.15,0.25 0,-0.17 -0.24,-0.32a1.62,1.62 0,0 0,-0.92 -0.3,1.58 1.58,0 0,0 -0.91,0.28C292.15,310.11 292.08,310.25 292.12,310.28Z"/>
<path android:fillColor="#263238" android:pathData="M291.76,308.94c0.12,0.14 0.61,0 1.19,0s1.07,0.11 1.19,0 0,-0.21 -0.24,-0.35a1.9,1.9 0,0 0,-1.92 0C291.77,308.72 291.7,308.87 291.76,308.94Z"/>
<path android:fillColor="#ffbe9d" android:pathData="M288.11,313.25c0,-0.34 -0.32,-1.15 -0.66,-1.22 -0.88,-0.19 -2.49,-0.21 -2.63,2.05 -0.19,3.09 3,2.65 3,2.56S288.05,314.42 288.11,313.25Z"/>
<path android:fillColor="#eb996e" android:pathData="M287,315.46s-0.05,0 -0.15,0.07a0.56,0.56 0,0 1,-0.4 0,1.33 1.33,0 0,1 -0.55,-1.23 1.82,1.82 0,0 1,0.2 -0.76,0.64 0.64,0 0,1 0.43,-0.39 0.28,0.28 0,0 1,0.31 0.16,0.51 0.51,0 0,1 0,0.16s0.07,-0.05 0.05,-0.18a0.37,0.37 0,0 0,-0.11 -0.2,0.39 0.39,0 0,0 -0.29,-0.09 0.73,0.73 0,0 0,-0.59 0.44,1.8 1.8,0 0,0 -0.24,0.85 1.39,1.39 0,0 0,0.7 1.38,0.57 0.57,0 0,0 0.5,0C287,315.53 287,315.46 287,315.46Z"/>
<path android:fillColor="#263238" android:pathData="M287.33,312l0.78,0.82c3.4,-3.25 10.05,-11.38 9.68,-10.89a9.9,9.9 0,0 0,-4.86 -0.53c-2.53,0.43 -7.32,1.69 -7.25,4.67A15.57,15.57 0,0 0,287.33 312Z"/>
<path android:fillColor="#455a64" android:pathData="M282.83,311.35s0,-0.06 0,-0.18a4.73,4.73 0,0 1,0.21 -0.48,4.57 4.57,0 0,1 1.3,-1.46A8.57,8.57 0,0 1,287 308c1,-0.34 2.2,-0.6 3.35,-1.09a15.13,15.13 0,0 0,3.06 -1.71,15.73 15.73,0 0,0 2.16,-1.88c0.56,-0.6 1,-1.12 1.25,-1.48 0.12,-0.18 0.23,-0.32 0.31,-0.43s0.11,-0.15 0.12,-0.14l-0.09,0.16 -0.29,0.44a12.92,12.92 0,0 1,-1.22 1.52,15.21 15.21,0 0,1 -2.16,1.93A14.83,14.83 0,0 1,290.4 307c-1.16,0.49 -2.34,0.75 -3.37,1.08a8.6,8.6 0,0 0,-2.58 1.2,4.56 4.56,0 0,0 -1.31,1.4A6,6 0,0 0,282.83 311.35Z"/>
<path android:fillColor="#455a64" android:pathData="M283.73,311.84a1.68,1.68 0,0 1,0.12 -0.68,3.09 3.09,0 0,1 1.16,-1.45 7,7 0,0 1,2.59 -1,15.42 15.42,0 0,0 3.21,-1 13.47,13.47 0,0 0,2.86 -1.76,13.81 13.81,0 0,0 3.06,-3.43c0.11,-0.18 0.2,-0.32 0.26,-0.44a1,1 0,0 1,0.11 -0.14,0.91 0.91,0 0,1 -0.08,0.16l-0.24,0.45a10.55,10.55 0,0 1,-1.06 1.54,12.83 12.83,0 0,1 -2,2 13.23,13.23 0,0 1,-2.89 1.79,15.33 15.33,0 0,1 -3.25,1 6.93,6.93 0,0 0,-2.55 1,3 3,0 0,0 -1.17,1.39A3.12,3.12 0,0 0,283.73 311.84Z"/>
<path android:fillColor="#263238" android:pathData="M281.92,339.77a39.75,39.75 0,0 1,0 -5.91,43.71 43.71,0 0,1 0,5.91Z"/>
<path android:fillColor="#263238" android:pathData="M303.14,339.36a6.39,6.39 0,0 1,0 -1.05,11.71 11.71,0 0,0 -0.09,-2.51 12.19,12.19 0,0 0,-0.72 -2.4,6 6,0 0,1 -0.36,-1 5,5 0,0 1,0.49 0.93,9.48 9.48,0 0,1 0.79,2.43 9.14,9.14 0,0 1,0 2.55A4.12,4.12 0,0 1,303.14 339.36Z"/>
<path android:fillColor="#ebebeb" android:pathData="M411.08,332.88H334.63a6.88,6.88 0,0 1,-6.87 -6.88V309.16l-8.43,-7.48h91.75a6.88,6.88 0,0 1,6.87 6.87V326A6.88,6.88 0,0 1,411.08 332.88Z"/>
<path android:fillColor="#fff" android:pathData="M410.1,310.87c0,0.15 -16.69,0.26 -37.28,0.26s-37.27,-0.11 -37.27,-0.26 16.68,-0.26 37.27,-0.26S410.1,310.73 410.1,310.87Z"/>
<path android:fillColor="#fff" android:pathData="M410.1,316.35c0,0.14 -16.69,0.26 -37.28,0.26s-37.27,-0.12 -37.27,-0.26 16.68,-0.26 37.27,-0.26S410.1,316.21 410.1,316.35Z"/>
<path android:fillColor="#fff" android:pathData="M410.1,321.83c0,0.14 -16.69,0.26 -37.28,0.26s-37.27,-0.12 -37.27,-0.26 16.68,-0.26 37.27,-0.26S410.1,321.68 410.1,321.83Z"/>
<path android:fillColor="#fff" android:pathData="M410.1,187.74c0,0.14 -16.69,0.26 -37.28,0.26s-37.27,-0.12 -37.27,-0.26 16.68,-0.26 37.27,-0.26S410.1,187.59 410.1,187.74Z"/>
<path android:fillColor="#fff" android:pathData="M410.1,193.21c0,0.15 -16.69,0.26 -37.28,0.26s-37.27,-0.11 -37.27,-0.26 16.68,-0.26 37.27,-0.26S410.1,193.07 410.1,193.21Z"/>
<path android:fillColor="#fff" android:pathData="M410.1,199.79c0,0.15 -16.69,0.26 -37.28,0.26s-37.27,-0.11 -37.27,-0.26 16.68,-0.26 37.27,-0.26S410.1,199.65 410.1,199.79Z"/>
<path android:fillColor="#263238" android:pathData="M336,104.63a4,4 0,0 1,6.91 -2.46l-1.07,1a2.34,2.34 0,0 0,-1.82 -0.85,2.32 2.32,0 0,0 0,4.64 2.32,2.32 0,0 0,1.82 -0.86l1.07,1a4,4 0,0 1,-6.91 -2.45Z"/>
<path android:fillColor="#263238" android:pathData="M349.56,105.06v3.19H348v-2.94c0,-0.9 -0.42,-1.31 -1.13,-1.31s-1.33,0.48 -1.33,1.5v2.75h-1.62v-7.67h1.62v2.69a2.41,2.41 0,0 1,1.77 -0.67A2.18,2.18 0,0 1,349.56 105.06Z"/>
<path android:fillColor="#263238" android:pathData="M355.94,105.08v3.17h-1.51v-0.69a1.82,1.82 0,0 1,-1.7 0.77c-1.3,0 -2.07,-0.72 -2.07,-1.68s0.69,-1.67 2.39,-1.67h1.28c0,-0.69 -0.42,-1.09 -1.28,-1.09a2.71,2.71 0,0 0,-1.61 0.51l-0.58,-1.12a4.24,4.24 0,0 1,2.4 -0.68C355,102.6 355.94,103.39 355.94,105.08ZM354.33,106.49v-0.57h-1.11c-0.75,0 -1,0.28 -1,0.66s0.34,0.67 0.91,0.67A1.19,1.19 0,0 0,354.33 106.49Z"/>
<path android:fillColor="#263238" android:pathData="M361,108a2.3,2.3 0,0 1,-1.32 0.35,1.83 1.83,0 0,1 -2.07,-2v-2.29h-0.86v-1.24h0.86v-1.36h1.61v1.36h1.39v1.24h-1.39v2.27a0.65,0.65 0,0 0,0.69 0.73,1 1,0 0,0 0.65,-0.21Z"/>
<path android:fillColor="#263238" android:pathData="M389.53,115.79c0,0.14 -17,0.26 -38.07,0.26s-38.06,-0.12 -38.06,-0.26 17,-0.27 38.06,-0.27S389.53,115.64 389.53,115.79Z"/>
<path android:fillColor="#263238" android:pathData="M423.26,102.86m-1.77,0a1.77,1.77 0,1 1,3.54 0a1.77,1.77 0,1 1,-3.54 0"/>
<path android:fillColor="#263238" android:pathData="M425,108a1.78,1.78 0,1 1,-1.77 -1.77A1.78,1.78 0,0 1,425 108Z"/>
<path android:fillColor="#263238" android:pathData="M425,113.19a1.78,1.78 0,1 1,-1.77 -1.77A1.77,1.77 0,0 1,425 113.19Z"/>
<path android:fillColor="#263238" android:pathData="M279.32,108.86a0.47,0.47 0,0 1,-0.3 -0.1l-4.69,-3.44a0.52,0.52 0,0 1,-0.21 -0.41,0.49 0.49,0 0,1 0.21,-0.4l4.69,-3.38a0.5,0.5 0,0 1,0.7 0.12,0.5 0.5,0 0,1 -0.11,0.69l-4.14,3 4.14,3a0.51,0.51 0,0 1,0.11 0.7A0.49,0.49 0,0 1,279.32 108.86Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M379.28,254.62a22.43,22.38 0,1 0,44.86 0a22.43,22.38 0,1 0,-44.86 0z"/>
<path android:fillColor="#263238" android:pathData="M407.85,267.85h-11.8a1.52,1.52 0,0 1,-1.52 -1.52h0a1.53,1.53 0,0 1,1.52 -1.53h11.8a1.53,1.53 0,0 1,1.52 1.53h0A1.52,1.52 0,0 1,407.85 267.85Z"/>
<path android:fillColor="#263238" android:pathData="M401.58,240.07h1.04v5.24h-1.04z"/>
<path android:fillColor="#0298E1" android:pathData="M386.81,257.98m-3.04,0a3.04,3.04 0,1 1,6.08 0a3.04,3.04 0,1 1,-6.08 0"/>
<path android:fillColor="#0298E1" android:pathData="M417.55,257.78m-3.04,0a3.04,3.04 0,1 1,6.08 0a3.04,3.04 0,1 1,-6.08 0"/>
<path android:fillColor="#0298E1" android:pathData="M402.55,244.21s12.38,-0.15 14.34,10.58 -8.51,10.92 -11.52,11.12c-1.36,0.09 -4.28,0.1 -6.86,0.06 -5.71,-0.1 -9.74,-1.2 -11.11,-6.5a10,10 0,0 1,-0.31 -1.9C386.73,251.77 390.65,243.93 402.55,244.21Z"/>
<path android:fillColor="#263238" android:pathData="M393.57,260.54l18,0.28a3.42,3.42 0,0 0,3.47 -3.36h0a3.42,3.42 0,0 0,-3.37 -3.46l-18,-0.28a3.41,3.41 0,0 0,-3.47 3.36h0A3.41,3.41 0,0 0,393.57 260.54Z"/>
<path android:fillColor="#fff" android:pathData="M407.83,257.09a1.09,1.09 0,0 0,1.28 0.87,1.1 1.1,0 1,0 -0.42,-2.15A1.09,1.09 0,0 0,407.83 257.09Z"/>
<path android:fillColor="#fff" android:pathData="M395.26,256.89a1.1,1.1 0,1 0,2.15 -0.42,1.1 1.1,0 0,0 -2.15,0.42Z"/>
<path android:fillColor="#0298E1" android:pathData="M403.81,240a1.71,1.71 0,1 1,-1.71 -1.7A1.71,1.71 0,0 1,403.81 240Z"/>
<path android:fillColor="#fff" android:pathData="M404.68,256.59s0.07,0.08 0.11,0.26a1.8,1.8 0,0 1,-0.07 0.76,2.28 2.28,0 0,1 -0.6,1 2.12,2.12 0,0 1,-1.29 0.61,2.15 2.15,0 0,1 -1.38,-0.36 2.42,2.42 0,0 1,-0.77 -0.85,1.82 1.82,0 0,1 -0.2,-0.74c0,-0.18 0,-0.28 0.06,-0.28s0.1,0.38 0.43,0.85a2.51,2.51 0,0 0,0.71 0.65,1.89 1.89,0 0,0 1.11,0.26 1.84,1.84 0,0 0,1 -0.46,2.18 2.18,0 0,0 0.59,-0.77C404.64,257 404.6,256.59 404.68,256.59Z"/>
<path android:fillColor="#263238" android:pathData="M416.87,254.44a1.61,1.61 0,0 1,0.09 0.26,3.12 3.12,0 0,1 0.1,0.32c0,0.12 0.07,0.26 0.1,0.43a9.29,9.29 0,0 1,0.16 1.13,9.47 9.47,0 0,1 0,1.4 9.23,9.23 0,0 1,-0.23 1.38,8 8,0 0,1 -0.36,1.08 4.27,4.27 0,0 1,-0.17 0.41,2.57 2.57,0 0,1 -0.15,0.29l-0.14,0.25a0.86,0.86 0,0 1,0.11 -0.26l0.13,-0.31c0.05,-0.12 0.11,-0.25 0.16,-0.4a8.26,8.26 0,0 0,0.33 -1.08,10.56 10.56,0 0,0 0.23,-1.37 10.89,10.89 0,0 0,0 -1.39,9.74 9.74,0 0,0 -0.14,-1.12A4,4 0,0 0,417 255c0,-0.13 -0.05,-0.23 -0.07,-0.32A0.91,0.91 0,0 1,416.87 254.44Z"/>
<path android:fillColor="#263238" android:pathData="M387.54,254.5a1.36,1.36 0,0 0,-0.1 0.27c0,0.08 -0.06,0.19 -0.1,0.31s-0.07,0.27 -0.1,0.43a8,8 0,0 0,-0.15 1.13,9.39 9.39,0 0,0 0,1.4 8.82,8.82 0,0 0,0.23 1.38,7.73 7.73,0 0,0 0.36,1.09c0.05,0.15 0.12,0.28 0.17,0.4s0.11,0.22 0.15,0.3l0.14,0.24a1.19,1.19 0,0 0,-0.11 -0.26c0,-0.08 -0.08,-0.18 -0.13,-0.3s-0.11,-0.25 -0.16,-0.4a8.45,8.45 0,0 1,-0.33 -1.09,10.28 10.28,0 0,1 -0.23,-1.37 10.76,10.76 0,0 1,0 -1.38,9.94 9.94,0 0,1 0.14,-1.13 3.38,3.38 0,0 1,0.09 -0.42c0,-0.13 0.05,-0.24 0.07,-0.32S387.54,254.5 387.54,254.5Z"/>
<path android:fillColor="#0298E1" android:pathData="M390.21,273.84s3.68,-3.59 11.37,-3.59 11.63,3.59 11.63,3.59A22.26,22.26 0,0 1,390.21 273.84Z"/>
<path android:fillColor="#ebebeb" android:pathData="M279,277.44h76.44a6.86,6.86 0,0 0,6.87 -6.87V248.39l8.43,-7.48H279a6.87,6.87 0,0 0,-6.87 6.87v22.79A6.86,6.86 0,0 0,279 277.44Z"/>
<path android:fillColor="#fff" android:pathData="M352,251.75c0,0.15 -15.74,0.26 -35.16,0.26s-35.16,-0.11 -35.16,-0.26 15.74,-0.26 35.16,-0.26S352,251.61 352,251.75Z"/>
<path android:fillColor="#fff" android:pathData="M352,257.69c0,0.15 -15.74,0.26 -35.16,0.26s-35.16,-0.11 -35.16,-0.26 15.74,-0.26 35.16,-0.26S352,257.55 352,257.69Z"/>
<path android:fillColor="#fff" android:pathData="M352,263.63c0,0.14 -15.74,0.26 -35.16,0.26s-35.16,-0.12 -35.16,-0.26 15.74,-0.26 35.16,-0.26S352,263.49 352,263.63Z"/>
<path android:fillColor="#fff" android:pathData="M352,269.57c0,0.14 -15.74,0.26 -35.16,0.26s-35.16,-0.12 -35.16,-0.26 15.74,-0.26 35.16,-0.26S352,269.42 352,269.57Z"/>
<path android:fillColor="#e0e0e0" android:pathData="M379.28,378.9a22.43,22.38 0,1 0,44.86 0a22.43,22.38 0,1 0,-44.86 0z"/>
<path android:fillColor="#263238" android:pathData="M407.85,392.13h-11.8a1.52,1.52 0,0 1,-1.52 -1.53h0a1.52,1.52 0,0 1,1.52 -1.52h11.8a1.52,1.52 0,0 1,1.52 1.52h0A1.52,1.52 0,0 1,407.85 392.13Z"/>
<path android:fillColor="#263238" android:pathData="M401.58,364.35h1.04v5.24h-1.04z"/>
<path android:fillColor="#0298E1" android:pathData="M386.81,382.26m-3.04,0a3.04,3.04 0,1 1,6.08 0a3.04,3.04 0,1 1,-6.08 0"/>
<path android:fillColor="#0298E1" android:pathData="M417.55,382.05m-3.04,0a3.04,3.04 0,1 1,6.08 0a3.04,3.04 0,1 1,-6.08 0"/>
<path android:fillColor="#0298E1" android:pathData="M402.55,368.49s12.38,-0.15 14.34,10.57 -8.51,10.93 -11.52,11.13c-1.36,0.09 -4.28,0.1 -6.86,0.06 -5.71,-0.1 -9.74,-1.21 -11.11,-6.5a10,10 0,0 1,-0.31 -1.9C386.73,376.05 390.65,368.2 402.55,368.49Z"/>
<path android:fillColor="#263238" android:pathData="M393.57,384.82l18,0.28a3.42,3.42 0,0 0,3.47 -3.36h0a3.42,3.42 0,0 0,-3.37 -3.46l-18,-0.29a3.42,3.42 0,0 0,-3.47 3.36h0A3.42,3.42 0,0 0,393.57 384.82Z"/>
<path android:fillColor="#fff" android:pathData="M407.83,381.37A1.1,1.1 0,0 0,410 381a1.1,1.1 0,1 0,-2.15 0.42Z"/>
<path android:fillColor="#fff" android:pathData="M395.26,381.17a1.1,1.1 0,1 0,0.87 -1.29A1.1,1.1 0,0 0,395.26 381.17Z"/>
<path android:fillColor="#0298E1" android:pathData="M403.81,364.24a1.71,1.71 0,1 1,-1.71 -1.71A1.71,1.71 0,0 1,403.81 364.24Z"/>
<path android:fillColor="#fff" android:pathData="M404.68,380.86s0.07,0.09 0.11,0.27a1.81,1.81 0,0 1,-0.07 0.76,2.34 2.34,0 0,1 -0.6,1 2.12,2.12 0,0 1,-1.29 0.61,2.15 2.15,0 0,1 -1.38,-0.36 2.42,2.42 0,0 1,-0.77 -0.85,1.86 1.86,0 0,1 -0.2,-0.74c0,-0.18 0,-0.28 0.06,-0.28s0.1,0.38 0.43,0.84a2.4,2.4 0,0 0,0.71 0.66,2 2,0 0,0 1.11,0.26 1.84,1.84 0,0 0,1 -0.46,2.37 2.37,0 0,0 0.59,-0.77C404.64,381.26 404.6,380.87 404.68,380.86Z"/>
<path android:fillColor="#263238" android:pathData="M416.87,378.71s0,0.1 0.09,0.27a2.49,2.49 0,0 1,0.1 0.32c0,0.12 0.07,0.26 0.1,0.42a9.9,9.9 0,0 1,0.16 1.13,9.45 9.45,0 0,1 0,1.4 8.82,8.82 0,0 1,-0.23 1.38,7.73 7.73,0 0,1 -0.36,1.09 4,4 0,0 1,-0.17 0.4,2.09 2.09,0 0,1 -0.15,0.3l-0.14,0.24a1.19,1.19 0,0 1,0.11 -0.26c0,-0.08 0.08,-0.18 0.13,-0.3s0.11,-0.25 0.16,-0.4a8,8 0,0 0,0.33 -1.09,10.12 10.12,0 0,0 0.23,-1.36 10.89,10.89 0,0 0,0 -1.39,9.46 9.46,0 0,0 -0.14,-1.12 3.57,3.57 0,0 0,-0.09 -0.43c0,-0.13 -0.05,-0.23 -0.07,-0.32A0.93,0.93 0,0 1,416.87 378.71Z"/>
<path android:fillColor="#263238" android:pathData="M387.54,378.78a1.36,1.36 0,0 0,-0.1 0.27c0,0.08 -0.06,0.19 -0.1,0.31s-0.07,0.27 -0.1,0.43a8,8 0,0 0,-0.15 1.13,9.39 9.39,0 0,0 0,1.4 9,9 0,0 0,0.23 1.38,7.73 7.73,0 0,0 0.36,1.09c0.05,0.15 0.12,0.28 0.17,0.4s0.11,0.22 0.15,0.3l0.14,0.24a1,1 0,0 0,-0.11 -0.26c0,-0.08 -0.08,-0.18 -0.13,-0.3s-0.11,-0.25 -0.16,-0.41a8.26,8.26 0,0 1,-0.33 -1.08,10.28 10.28,0 0,1 -0.23,-1.37 10.76,10.76 0,0 1,0 -1.38,9.94 9.94,0 0,1 0.14,-1.13 3.38,3.38 0,0 1,0.09 -0.42c0,-0.13 0.05,-0.24 0.07,-0.32S387.54,378.78 387.54,378.78Z"/>
<path android:fillColor="#0298E1" android:pathData="M390.21,398.12s3.68,-3.59 11.37,-3.59 11.63,3.59 11.63,3.59A22.26,22.26 0,0 1,390.21 398.12Z"/>
<path android:fillColor="#ebebeb" android:pathData="M279,401.72h76.44a6.86,6.86 0,0 0,6.87 -6.87V372.67l8.43,-7.48H279a6.87,6.87 0,0 0,-6.87 6.87v22.79A6.86,6.86 0,0 0,279 401.72Z"/>
<path android:fillColor="#ebebeb" android:pathData="M279,436.41h76.44a6.87,6.87 0,0 0,6.87 -6.88v-7.35l8.43,-7.48H279a6.87,6.87 0,0 0,-6.87 6.87v8A6.87,6.87 0,0 0,279 436.41Z"/>
<path android:fillColor="#fff" android:pathData="M352,376c0,0.15 -15.74,0.26 -35.16,0.26s-35.16,-0.11 -35.16,-0.26 15.74,-0.26 35.16,-0.26S352,375.89 352,376Z"/>
<path android:fillColor="#fff" android:pathData="M352,382c0,0.14 -15.74,0.26 -35.16,0.26s-35.16,-0.12 -35.16,-0.26 15.74,-0.26 35.16,-0.26S352,381.83 352,382Z"/>
<path android:fillColor="#fff" android:pathData="M352,387.91c0,0.14 -15.74,0.26 -35.16,0.26s-35.16,-0.12 -35.16,-0.26 15.74,-0.26 35.16,-0.26S352,387.76 352,387.91Z"/>
<path android:fillColor="#fff" android:pathData="M352,393.85c0,0.14 -15.74,0.26 -35.16,0.26s-35.16,-0.12 -35.16,-0.26 15.74,-0.26 35.16,-0.26S352,393.7 352,393.85Z"/>
<path android:fillColor="#fff" android:pathData="M352.24,425.87c0,0.14 -15.58,0.26 -34.79,0.26s-34.8,-0.12 -34.8,-0.26 15.58,-0.26 34.8,-0.26S352.24,425.72 352.24,425.87Z"/>
<path android:fillColor="#455a64" android:pathData="M96.44,411.39a10.28,10.28 0,0 1,6.47 4.81,18.34 18.34,0 0,1 2.39,7.87c0.51,5.32 -1.34,11.19 -3.64,16 -5.19,-2.9 -7.6,-9.35 -8.62,-12.7 -1.61,-5.29 -1.31,-15.84 3.4,-16"/>
<path android:fillColor="#455a64" android:pathData="M108.56,447.59a8.77,8.77 0,0 1,1 -8.75,11.62 11.62,0 0,1 7.86,-4.41 4.94,4.94 0,0 1,4 0.87,3.75 3.75,0 0,1 0.84,3.72 7.65,7.65 0,0 1,-2.18 3.3c-3.29,3.18 -7.06,5.65 -11.62,5.27"/>
<path android:fillColor="#263238" android:pathData="M106.32,464.72a5.66,5.66 0,0 1,-0.07 -1.1c0,-0.78 0,-1.79 -0.08,-3a30.59,30.59 0,0 1,1 -9.85,18.82 18.82,0 0,1 5.13,-8.43 12.8,12.8 0,0 1,2.45 -1.77,6.72 6.72,0 0,1 0.73,-0.36 0.75,0.75 0,0 1,0.27 -0.1,20.44 20.44,0 0,0 -3.26,2.43 19.41,19.41 0,0 0,-5 8.34,32.94 32.94,0 0,0 -1.13,9.74c0,1.27 0,2.29 0,3A7.51,7.51 0,0 1,106.32 464.72Z"/>
<path android:fillColor="#263238" android:pathData="M96.92,419.45a2.53,2.53 0,0 1,0.15 0.45q0.15,0.51 0.36,1.32c0.31,1.15 0.74,2.82 1.24,4.89 1,4.14 2.34,9.88 3.66,16.24s2.38,12.16 3.09,16.36c0.35,2.1 0.62,3.8 0.8,5 0.08,0.56 0.14,1 0.19,1.36a2.42,2.42 0,0 1,0 0.48,3.23 3.23,0 0,1 -0.12,-0.47c-0.07,-0.35 -0.15,-0.79 -0.26,-1.35 -0.23,-1.21 -0.54,-2.9 -0.92,-4.95 -0.78,-4.19 -1.88,-10 -3.2,-16.33s-2.6,-12.1 -3.54,-16.25c-0.47,-2 -0.85,-3.71 -1.12,-4.92 -0.12,-0.55 -0.22,-1 -0.29,-1.34A2.12,2.12 0,0 1,96.92 419.45Z"/>
<path android:fillColor="#455a64" android:pathData="M101.66,452.36A20.57,20.57 0,0 0,87.56 440c-1.61,-0.39 -3.61,-0.44 -4.59,0.9s-0.29,3.24 0.62,4.63a17.56,17.56 0,0 0,18 7.33"/>
<path android:fillColor="#263238" android:pathData="M89.32,444.73a6.16,6.16 0,0 1,1 0.21,11.35 11.35,0 0,1 1.17,0.34c0.44,0.16 1,0.3 1.51,0.55s1.16,0.49 1.77,0.83a18.09,18.09 0,0 1,1.94 1.14,22.29 22.29,0 0,1 3.93,3.32 22.69,22.69 0,0 1,3 4.17,20.41 20.41,0 0,1 1,2 18.24,18.24 0,0 1,0.67 1.84c0.2,0.56 0.28,1.1 0.4,1.56a10.85,10.85 0,0 1,0.22 1.2,6 6,0 0,1 0.1,1c-0.09,0 -0.25,-1.46 -1,-3.71a18,18 0,0 0,-0.69 -1.79,20.41 20.41,0 0,0 -1,-2 23.22,23.22 0,0 0,-3 -4.08,24.29 24.29,0 0,0 -3.84,-3.29c-0.66,-0.42 -1.28,-0.83 -1.9,-1.14a17.32,17.32 0,0 0,-1.73 -0.86C90.74,445.14 89.29,444.81 89.32,444.73Z"/>
<path android:fillColor="#fafafa" android:pathData="M121.1,151.7l-3.7,-11.55a40.18,40.18 0,1 0,-9.62 10.7l0,0Z"/>
<path android:fillColor="#263238" android:pathData="M121.1,151.7l-0.84,0 -2.54,-0.13 -10,-0.55a0.11,0.11 0,0 1,-0.11 -0.12,0.14 0.14,0 0,1 0,-0.06l0,0 0.16,0.16a40.07,40.07 0,0 1,-24.31 8.49,45 45,0 0,1 -6.65,-0.53 40.08,40.08 0,0 1,-25.7 -15.33A40.71,40.71 0,0 1,43.9 128a39.65,39.65 0,0 1,0.16 -18.28c0.19,-0.76 0.39,-1.53 0.59,-2.29s0.53,-1.5 0.79,-2.25a22.44,22.44 0,0 1,0.88 -2.23c0.34,-0.72 0.69,-1.44 1,-2.17a17.46,17.46 0,0 1,1.18 -2.11l1.27,-2.08 1.46,-2 0.74,-1c0.25,-0.32 0.54,-0.61 0.81,-0.92A40,40 0,0 1,68.75 81.53,41.2 41.2,0 0,1 87.16,79a40.15,40.15 0,0 1,16.61 5.48,40.28 40.28,0 0,1 18.31,24.1 44.63,44.63 0,0 1,1.24 6.6,52.93 52.93,0 0,1 0.11,6.26 39.91,39.91 0,0 1,-5.94 18.76v-0.09c1.18,3.76 2.08,6.66 2.7,8.64 0.3,1 0.52,1.69 0.68,2.2l0.22,0.74s-0.1,-0.27 -0.27,-0.77l-0.73,-2.21c-0.64,-2 -1.59,-4.82 -2.81,-8.53a0.13,0.13 0,0 1,0 -0.09,39.89 39.89,0 0,0 5.79,-18.67 52,52 0,0 0,-0.14 -6.2,43.7 43.7,0 0,0 -1.25,-6.54A40,40 0,0 0,87.12 79.51,40.7 40.7,0 0,0 68.94,82 39.6,39.6 0,0 0,53.21 93c-0.26,0.31 -0.55,0.59 -0.8,0.91l-0.73,1 -1.44,1.93L49,98.9A17.93,17.93 0,0 0,47.82 101c-0.34,0.71 -0.68,1.43 -1,2.14a21.79,21.79 0,0 0,-0.86 2.2c-0.26,0.74 -0.57,1.47 -0.79,2.22s-0.39,1.51 -0.58,2.26a39.35,39.35 0,0 0,-0.18 18A39.84,39.84 0,0 0,77 158.51a45.64,45.64 0,0 0,6.59 0.55,39.35 39.35,0 0,0 6.15,-0.51 40.12,40.12 0,0 0,18 -7.79,0.11 0.11,0 0,1 0.16,0 0.12,0.12 0,0 1,0 0.14l0,0 -0.08,-0.18 9.88,0.68 2.56,0.18Z"/>
<path android:fillColor="#263238" android:pathData="M71.94,119.14a4.07,4.07 0,1 1,-4.07 -4.07A4.08,4.08 0,0 1,71.94 119.14Z"/>
<path android:fillColor="#263238" android:pathData="M88.24,119.14a4.07,4.07 0,1 1,-4.07 -4.07A4.08,4.08 0,0 1,88.24 119.14Z"/>
<path android:fillColor="#263238" android:pathData="M104.5,117.11a4.07,4.07 0,1 1,-5.57 -1.49A4.07,4.07 0,0 1,104.5 117.11Z"/>
<path android:fillColor="#0298E1" android:pathData="M106.12,299 L64,294.64 46.16,254.15 32.3,257.76S42.54,300.55 54,307.18 104.61,315 104.61,315Z"/>
<path android:fillColor="#263238" android:pathData="M114.55,307.18m-12.41,13.96a18.68,18.68 86.63,1 1,24.82 -27.92a18.68,18.68 86.63,1 1,-24.82 27.92"/>
<path android:fillColor="#263238" android:pathData="M114.55,325.88a18.71,18.71 0,1 1,13.23 -5.48A18.59,18.59 0,0 1,114.55 325.88ZM114.55,288.52A18.66,18.66 0,1 0,127.74 294,18.54 18.54,0 0,0 114.55,288.52Z"/>
<path android:fillColor="#263238" android:pathData="M56.95,296.76m-13.62,3.27a14.01,14.01 121.5,1 1,27.25 -6.54a14.01,14.01 121.5,1 1,-27.25 6.54"/>
<path android:fillColor="#263238" android:pathData="M38.22,249.33m-8.1,8.1a11.45,11.45 90,1 1,16.19 -16.19a11.45,11.45 0,1 1,-16.19 16.19"/>
<path android:fillColor="#263238" android:pathData="M56.07,243.13L46.64,251.09a0,0 0,0 1,-0 0l-3.4,-4.03a0,0 0,0 1,-0 0L52.66,239.1a2.45,2.45 94.82,0 1,3.45 0.29l0.23,0.28A2.45,2.45 94.82,0 1,56.07 243.13Z"/>
<path android:fillColor="#263238" android:pathData="M44.09,228.55l-0,12a0.35,0.35 0,0 1,-0.35 0.35l-4.56,0a0.35,0.35 0,0 1,-0.35 -0.35l-0,-12a2.45,2.45 0,0 1,2.45 -2.45l0.36,0A2.45,2.45 0,0 1,44.09 228.55Z"/>
<path android:fillColor="#263238" android:pathData="M35.6,228.6l2.62,11.71a0.35,0.35 122.39,0 1,-0.27 0.42l-4.45,1a0.35,0.35 122.39,0 1,-0.42 -0.27l-2.62,-11.71a2.45,2.45 122.39,0 1,1.86 -2.93l0.35,-0.08a2.45,2.45 122.39,0 1,2.93 1.86Z"/>
<path android:fillColor="#263238" android:pathData="M26.46,231.53l6,10.39a0.35,0.35 105,0 1,-0.13 0.48l-3.95,2.28a0.35,0.35 105,0 1,-0.48 -0.13l-6,-10.39a2.45,2.45 105,0 1,0.9 -3.35l0.31,-0.18a2.45,2.45 105,0 1,3.35 0.9Z"/>
<path android:fillColor="#0298E1" android:pathData="M301.79,398.53l-12.61,5.36l-36.38,-85.54l12.61,-5.36z"/>
<path android:fillColor="#263238" android:pathData="M252.96,309.09m-12.07,14.25a18.68,18.68 85.27,1 1,24.15 -28.51a18.68,18.68 85.27,1 1,-24.15 28.51"/>
<path android:fillColor="#263238" android:pathData="M253,327.84a18.72,18.72 0,0 1,-17.9 -24.23A18.7,18.7 0,1 1,253 327.84ZM253,290.46a18.66,18.66 0,1 0,17.85 24.16h0a18.67,18.67 0,0 0,-12.33 -23.32A18.77,18.77 0,0 0,252.94 290.46Z"/>
<path android:fillColor="#263238" android:pathData="M277.29,361.19m-3.75,13.5a14.01,14.01 60.53,1 1,7.5 -27a14.01,14.01 60.53,1 1,-7.5 27"/>
<path android:fillColor="#263238" android:pathData="M298.41,404.8m-11.45,0a11.45,11.45 0,1 1,22.9 0a11.45,11.45 0,1 1,-22.9 0"/>
<path android:fillColor="#263238" android:pathData="M283.43,416.33l6.41,-10.52a0,0 0,0 1,0 0l4.5,2.74a0,0 0,0 1,0 0L287.93,419.07a2.45,2.45 76.36,0 1,-3.37 0.82l-0.31,-0.19A2.45,2.45 76.36,0 1,283.43 416.33Z"/>
<path android:fillColor="#263238" android:pathData="M299.4,426.36l-3.8,-11.38a0.35,0.35 116.54,0 1,0.22 -0.44l4.33,-1.44a0.35,0.35 116.54,0 1,0.44 0.22l3.8,11.38A2.45,2.45 116.54,0 1,302.8 427.78l-0.34,0.11A2.45,2.45 116.54,0 1,299.4 426.36Z"/>
<path android:fillColor="#263238" android:pathData="M307.45,423.64l-6.19,-10.28a0.35,0.35 103.93,0 1,0.12 -0.48l3.91,-2.35a0.35,0.35 103.93,0 1,0.48 0.12l6.19,10.28a2.45,2.45 103.93,0 1,-0.83 3.36l-0.31,0.19a2.45,2.45 103.93,0 1,-3.36 -0.83Z"/>
<path android:fillColor="#263238" android:pathData="M315.18,417.97l-8.98,-7.96a0.35,0.35 86.54,0 1,-0.03 -0.49L309.18,406.11a0.35,0.35 86.54,0 1,0.49 -0.03l8.98,7.96a2.45,2.45 86.54,0 1,0.21 3.46l-0.24,0.27A2.45,2.45 86.54,0 1,315.18 417.97Z"/>
<path android:fillColor="#0298E1" android:pathData="M109,287.74s1.35,131.14 74.94,133.7 76.68,-132.76 76.68,-133.7c0,0 -8.69,-19.55 -75.81,-18.79S109,287.74 109,287.74Z"/>
<path android:fillColor="#263238" android:pathData="M212.52,264.66L150.32,264.66A7.35,7.35 0,0 1,142.97 257.31L142.97,256.24A7.35,7.35 0,0 1,150.32 248.89L212.52,248.89A7.35,7.35 0,0 1,219.87 256.24L219.87,257.31A7.35,7.35 0,0 1,212.52 264.66z"/>
<path android:fillColor="#263238" android:pathData="M184.11,148.05l-5.37,-0l-0,-27.15l5.37,-0z"/>
<path android:fillColor="#0298E1" android:pathData="M259.89,213.52m-15.35,3.65a15.78,15.78 121.63,1 1,30.7 -7.3a15.78,15.78 121.63,1 1,-30.7 7.3"/>
<path android:fillColor="#0298E1" android:pathData="M100.6,212.46m-15.39,3.49a15.78,15.78 122.22,1 1,30.78 -6.98a15.78,15.78 122.22,1 1,-30.78 6.98"/>
<path android:fillColor="#0298E1" android:pathData="M178.3,142.16S114.14,141.39 104,197s44.1,56.61 59.71,57.66c7.07,0.48 22.21,0.53 35.57,0.29 29.58,-0.51 50.48,-6.23 57.59,-33.67a51.42,51.42 0,0 0,1.59 -9.83C260.33,181.33 240,140.68 178.3,142.16Z"/>
<path android:fillColor="#263238" android:pathData="M224.84,226.8l-93.21,1.45a17.69,17.69 0,0 1,-18 -17.41h0a17.7,17.7 0,0 1,17.42 -18l93.21,-1.45a17.68,17.68 0,0 1,18 17.41h0A17.69,17.69 0,0 1,224.84 226.8Z"/>
<path android:fillColor="#fff" android:pathData="M151,208.91a5.68,5.68 0,1 1,-4.48 -6.67A5.68,5.68 0,0 1,151 208.91Z"/>
<path android:fillColor="#fff" android:pathData="M216.09,207.87a5.68,5.68 0,1 1,-4.48 -6.66A5.68,5.68 0,0 1,216.09 207.87Z"/>
<path android:fillColor="#263238" android:pathData="M206.72,339.82a25.37,25.37 0,1 1,-23.46 -27.15A25.38,25.38 0,0 1,206.72 339.82Z"/>
<path android:fillColor="#fff" android:pathData="M199.85,339.32a18.49,18.49 0,1 1,-17.09 -19.79A18.48,18.48 0,0 1,199.85 339.32Z"/>
<path android:fillColor="#0298E1" android:pathData="M190.94,342.68a18.38,18.38 0,0 1,-0.17 -3.05c-0.05,-1.91 -0.09,-4.64 -0.09,-8l0.2,0.37 -9.51,-5.55h0.53l-9.6,5.39c-0.26,0.44 0.35,-0.59 0.29,-0.48h0v1.42l0,1.43c0,0.94 0,1.88 -0.05,2.8 0,1.84 -0.07,3.62 -0.1,5.34l-0.26,-0.46 9.4,5.74h-0.42c2.93,-1.58 5.35,-2.84 7,-3.7a19.44,19.44 0,0 1,2.77 -1.3,14.62 14.62,0 0,1 -2.4,1.59c-1.62,1 -4,2.41 -7,4.14l-0.21,0.12 -0.21,-0.12 -9.52,-5.55 -0.26,-0.15v-0.32q0,-2.58 0.06,-5.34c0,-0.92 0,-1.85 0,-2.8l0,-1.42V331.4h0c-0.06,0.11 0.55,-0.91 0.29,-0.48l9.63,-5.34 0.28,-0.15 0.26,0.16 9.39,5.74 0.21,0.13v0.24c-0.11,3.46 -0.22,6.24 -0.32,8.13A15.32,15.32 0,0 1,190.94 342.68Z"/>
<path android:fillColor="#0298E1" android:pathData="M181.43,120.35m-6.26,6.26a8.85,8.85 90,1 1,12.52 -12.52a8.85,8.85 90,1 1,-12.52 12.52"/>
<path android:fillColor="#fff" android:pathData="M167.29,206.29c0.42,0.05 0.21,2 1.45,4.67a11.79,11.79 0,0 0,3 4,9.77 9.77,0 0,0 5.33,2.37 9.9,9.9 0,0 0,5.68 -1.36,11.84 11.84,0 0,0 3.68,-3.35c1.7,-2.37 1.85,-4.36 2.27,-4.33 0.17,0 0.34,0.5 0.34,1.44a8.84,8.84 0,0 1,-1 3.84,11.8 11.8,0 0,1 -4,4.43 10.77,10.77 0,0 1,-13.9 -1.27,11.73 11.73,0 0,1 -3.12,-5.08 8.7,8.7 0,0 1,-0.32 -4C166.87,206.72 167.13,206.26 167.29,206.29Z"/>
<path android:fillColor="#263238" android:pathData="M252.72,232.2c-0.1,0 1.05,-1.8 2.16,-4.95a53.6,53.6 0,0 0,2.6 -12.74,93.84 93.84,0 0,0 0.3,-13c-0.07,-1.67 -0.15,-3 -0.23,-4a7,7 0,0 1,-0.05 -1.46,7.82 7.82,0 0,1 0.25,1.44c0.14,0.93 0.28,2.28 0.4,4a79.05,79.05 0,0 1,-0.15 13.12,49.61 49.61,0 0,1 -2.77,12.82 25.28,25.28 0,0 1,-1.7 3.61A8.25,8.25 0,0 1,252.72 232.2Z"/>
<path android:fillColor="#263238" android:pathData="M104.12,195.14a7.52,7.52 0,0 1,-0.31 1.43c-0.13,0.45 -0.27,1 -0.4,1.66s-0.33,1.38 -0.45,2.21a48.61,48.61 0,0 0,-0.7 5.83,51.27 51.27,0 0,0 0.1,7.18 52.07,52.07 0,0 0,1.16 7.08,48.47 48.47,0 0,0 1.72,5.62c0.27,0.79 0.58,1.48 0.83,2.1s0.49,1.14 0.69,1.56a7.9,7.9 0,0 1,0.56 1.35,8 8,0 0,1 -0.74,-1.26 16.87,16.87 0,0 1,-0.77 -1.54c-0.28,-0.6 -0.62,-1.29 -0.91,-2.08a42.85,42.85 0,0 1,-1.84 -5.63,48.46 48.46,0 0,1 -1.22,-7.16 47.73,47.73 0,0 1,-0.06 -7.25,43.47 43.47,0 0,1 0.82,-5.87c0.15,-0.83 0.36,-1.56 0.53,-2.21s0.33,-1.2 0.48,-1.65A9,9 0,0 1,104.12 195.14Z"/>
<path android:fillColor="#263238" android:pathData="M108.66,287.63l0.38,0.11 1.12,0.38 4.26,1.5 3.08,1.1c1.13,0.38 2.38,0.74 3.71,1.15 2.67,0.79 5.68,1.82 9.1,2.62l5.33,1.37c1.86,0.47 3.82,0.82 5.84,1.26 4,0.92 8.39,1.55 13,2.29a232.19,232.19 0,0 0,30.08 2.15,230.43 230.43,0 0,0 30.08,-2.15c4.58,-0.74 8.94,-1.36 13,-2.29 2,-0.43 4,-0.78 5.84,-1.25l5.34,-1.37c3.41,-0.8 6.42,-1.83 9.09,-2.62 1.33,-0.41 2.58,-0.77 3.71,-1.15l3.08,-1.1 4.26,-1.5 1.12,-0.38a2,2 0,0 1,0.39 -0.11l-0.37,0.16 -1.1,0.43 -4.23,1.59L251.62,291c-1.12,0.39 -2.37,0.76 -3.7,1.19 -2.67,0.82 -5.67,1.87 -9.09,2.7l-5.34,1.4c-1.85,0.48 -3.82,0.84 -5.84,1.29 -4,0.94 -8.4,1.58 -13,2.34a226.13,226.13 0,0 1,-30.15 2.19,227.33 227.33,0 0,1 -30.14,-2.2c-4.59,-0.75 -9,-1.4 -13,-2.34 -2,-0.45 -4,-0.81 -5.84,-1.29l-5.34,-1.4c-3.42,-0.83 -6.42,-1.88 -9.09,-2.7 -1.33,-0.43 -2.57,-0.8 -3.7,-1.19l-3.07,-1.15 -4.23,-1.59 -1.1,-0.43A2,2 0,0 1,108.66 287.63Z"/>
<path android:fillAlpha="0.3" android:fillColor="#FF000000"
android:pathData="M109,287.74s8.69,-18 75.81,-18.79 75.81,18.79 75.81,18.79S192.88,321.13 109,287.74Z" android:strokeAlpha="0.3"/>
<path android:fillColor="#fff" android:pathData="M170.17,146.32a1.22,1.22 0,0 1,-0.23 0l-0.67,0.07c-0.6,0.06 -1.48,0.08 -2.61,0.21a71.11,71.11 0,0 0,-9.47 1.57,67.92 67.92,0 0,0 -40,26.58 70.21,70.21 0,0 0,-10.44 21.3c-0.35,1.08 -0.54,1.94 -0.71,2.51l-0.19,0.66a1,1 0,0 1,-0.08 0.22,0.67 0.67,0 0,1 0,-0.23c0,-0.18 0.08,-0.4 0.14,-0.67 0.14,-0.58 0.29,-1.45 0.61,-2.55a63.44,63.44 0,0 1,3.2 -9.09,68.36 68.36,0 0,1 19,-25.25 68.37,68.37 0,0 1,28.39 -13.84,63 63,0 0,1 9.53,-1.41c1.14,-0.1 2,-0.09 2.62,-0.12h0.68C170.1,146.3 170.17,146.31 170.17,146.32Z"/>
<path android:fillColor="#fff" android:pathData="M107.4,223.3a7.71,7.71 0,0 1,-0.92 -2,28.53 28.53,0 0,1 -1.63,-10.42 7,7 0,0 1,0.26 -2.18c0.16,0 -0.06,3.34 0.58,7.38S107.55,223.24 107.4,223.3Z"/>
<path android:fillColor="#fff" android:pathData="M90.57,218.13s-0.23,-0.16 -0.54,-0.54a9.17,9.17 0,0 1,-1.13 -1.75,11.38 11.38,0 0,1 1.71,-12.9 8.87,8.87 0,0 1,1.55 -1.4,2.16 2.16,0 0,1 0.66,-0.38c0.06,0.08 -0.84,0.69 -1.93,2a11.8,11.8 0,0 0,-1.66 12.5C89.93,217.25 90.64,218.07 90.57,218.13Z"/>
<path android:fillColor="#fff" android:pathData="M182,114.18a13.32,13.32 0,0 0,-2.35 -0.05,6.13 6.13,0 0,0 -5.24,8.16 13.12,13.12 0,0 0,1 2.11s-0.2,-0.12 -0.48,-0.44a5.4,5.4 0,0 1,-0.9 -1.55,6.28 6.28,0 0,1 5.56,-8.65 5.46,5.46 0,0 1,1.78 0.17C181.82,114 182,114.15 182,114.18Z"/>
<path android:fillColor="#fff" android:pathData="M269.16,206c-0.11,0.12 -1.66,-1.37 -4,-2.49s-4.47,-1.45 -4.45,-1.61a9.2,9.2 0,0 1,4.67 1.14A9.06,9.06 0,0 1,269.16 206Z"/>
<path android:fillColor="#fff" android:pathData="M132,381.07a1.25,1.25 0,0 1,-0.12 -0.19l-0.33,-0.59c-0.3,-0.57 -0.7,-1.33 -1.22,-2.3 -0.26,-0.5 -0.54,-1.06 -0.86,-1.66l-0.94,-2c-0.68,-1.45 -1.44,-3.1 -2.19,-5 -0.38,-0.93 -0.78,-1.91 -1.2,-2.92s-0.78,-2.11 -1.19,-3.22c-0.86,-2.21 -1.59,-4.64 -2.44,-7.16 -1.57,-5.1 -3.11,-10.75 -4.46,-16.75s-2.33,-11.79 -3.13,-17.06 -1.32,-10 -1.64,-14.06c-0.19,-2 -0.31,-3.82 -0.41,-5.42s-0.19,-3 -0.22,-4.1 -0.06,-1.95 -0.09,-2.59v-0.67a0.82,0.82 0,0 1,0 -0.23,0.77 0.77,0 0,1 0,0.23l0.06,0.67c0,0.63 0.11,1.5 0.18,2.58s0.17,2.5 0.31,4.09 0.27,3.41 0.49,5.41c0.36,4 1,8.76 1.75,14s1.84,11 3.16,17 2.87,11.64 4.4,16.73c0.85,2.52 1.56,4.94 2.4,7.15 0.4,1.12 0.78,2.19 1.16,3.22l1.16,2.94c0.72,1.87 1.46,3.53 2.12,5l0.9,2c0.29,0.61 0.57,1.17 0.82,1.68l1.12,2.34 0.28,0.61A0.77,0.77 0,0 1,132 381.07Z"/>
<path android:fillColor="#fff" android:pathData="M92.87,299.54a49.89,49.89 0,0 1,-7.31 -0.26,51.9 51.9,0 0,1 -7.27,-0.77 49.89,49.89 0,0 1,7.31 0.26A51.65,51.65 0,0 1,92.87 299.54Z"/>
<path android:fillColor="#fff" android:pathData="M55.25,278.19a54.11,54.11 0,0 1,-3.81 -6.47A54,54 0,0 1,48.1 265a54.59,54.59 0,0 1,3.8 6.48A52.8,52.8 0,0 1,55.25 278.19Z"/>
<path android:fillColor="#fff" android:pathData="M167.5,412.6a5.86,5.86 0,0 1,-1.17 -0.14,26 26,0 0,1 -3.13,-0.76 33.86,33.86 0,0 1,-4.46 -1.71,38 38,0 0,1 -5.06,-2.94 37,37 0,0 1,-4.48 -3.77,32.7 32.7,0 0,1 -3.12,-3.62 23.39,23.39 0,0 1,-1.77 -2.69,5.19 5.19,0 0,1 -0.53,-1.05c0.08,-0.05 0.92,1.4 2.59,3.52a37.29,37.29 0,0 0,3.17 3.5,36.59 36.59,0 0,0 9.41,6.62 39,39 0,0 0,4.36 1.79C165.87,412.21 167.52,412.5 167.5,412.6Z"/>
<path android:fillColor="#fff" android:pathData="M182.84,366.34a4.85,4.85 0,0 1,-0.7 0.07,18.35 18.35,0 0,1 -2,0.06 26.82,26.82 0,0 1,-7.33 -1.19,32.23 32.23,0 0,1 -4.78,-1.92 31.09,31.09 0,0 1,-5 -3.21,26.88 26.88,0 0,1 -10.38,-23.9 30.88,30.88 0,0 1,1.05 -5.82,30.24 30.24,0 0,1 1.85,-4.8 26.61,26.61 0,0 1,4.14 -6.17,17.79 17.79,0 0,1 1.42,-1.44 4.92,4.92 0,0 1,0.53 -0.46s-0.66,0.71 -1.8,2a28.08,28.08 0,0 0,-4 6.2,28.95 28.95,0 0,0 -2.76,10.49 26.69,26.69 0,0 0,10.2 23.49,30.54 30.54,0 0,0 4.86,3.2 31,31 0,0 0,4.69 2,28 28,0 0,0 7.23,1.33C181.87,366.34 182.84,366.28 182.84,366.34Z"/>
<path android:fillColor="#fff" android:pathData="M61.77,287.59c0,0.08 -0.77,-0.29 -2,-0.58a11.16,11.16 0,0 0,-9.46 2.27c-1,0.83 -1.48,1.49 -1.55,1.44A4.62,4.62 0,0 1,50 289a10.35,10.35 0,0 1,9.79 -2.34A4.8,4.8 0,0 1,61.77 287.59Z"/>
<path android:fillColor="#fff" android:pathData="M209.44,188.16c0,0.14 -12.28,0.26 -27.42,0.26s-27.43,-0.12 -27.43,-0.26 12.28,-0.26 27.43,-0.26S209.44,188 209.44,188.16Z"/>
<path android:fillColor="#fff" android:pathData="M162.64,250.69a1.88,1.88 0,0 1,-0.46 0.07l-1.34,0.12c-0.58,0.05 -1.29,0.09 -2.12,0.11s-1.77,0.06 -2.81,0c-2.09,0 -4.57,-0.15 -7.32,-0.44a81.16,81.16 0,0 1,-8.85 -1.53,80.12 80.12,0 0,1 -8.6,-2.58 71.11,71.11 0,0 1,-6.74 -2.87c-1,-0.44 -1.77,-0.9 -2.5,-1.29s-1.35,-0.74 -1.85,-1l-1.15,-0.7a2.09,2.09 0,0 1,-0.38 -0.27s0.16,0 0.43,0.18l1.2,0.61c0.51,0.28 1.14,0.61 1.88,1s1.58,0.79 2.53,1.21c1.88,0.88 4.17,1.82 6.75,2.75a78.88,78.88 0,0 0,17.34 4.08c2.72,0.32 5.19,0.5 7.26,0.55 1,0.06 2,0 2.81,0s1.53,0 2.11,0h1.34A1.43,1.43 0,0 1,162.64 250.69Z"/>
<path android:fillColor="#fff" android:pathData="M242.47,295.75a0.86,0.86 0,0 1,-0.24 0.11l-0.72,0.27 -2.78,1c-1.21,0.44 -2.69,0.95 -4.44,1.46s-3.72,1.17 -5.95,1.73l-3.48,0.92c-1.21,0.31 -2.49,0.57 -3.8,0.88 -2.62,0.63 -5.46,1.13 -8.44,1.7a177.48,177.48 0,0 1,-39.33 2.41c-3,-0.19 -5.91,-0.34 -8.59,-0.65 -1.34,-0.14 -2.64,-0.24 -3.88,-0.41l-3.57,-0.49c-2.28,-0.27 -4.32,-0.68 -6.11,-1s-3.34,-0.62 -4.59,-0.91l-2.88,-0.64 -0.75,-0.18a0.9,0.9 0,0 1,-0.25 -0.08,1.62 1.62,0 0,1 0.27,0l0.75,0.13 2.9,0.55c1.26,0.25 2.8,0.54 4.6,0.81s3.83,0.66 6.11,0.91l3.56,0.45c1.24,0.16 2.54,0.25 3.88,0.38 2.67,0.29 5.55,0.42 8.57,0.6 6.05,0.25 12.7,0.26 19.68,-0.15s13.57,-1.28 19.54,-2.26c3,-0.55 5.82,-1 8.44,-1.64 1.31,-0.3 2.59,-0.55 3.8,-0.85l3.48,-0.89c2.23,-0.53 4.2,-1.15 5.95,-1.65s3.25,-1 4.46,-1.37l2.81,-0.9 0.74,-0.22Z"/>
</vector>

View File

@ -0,0 +1,15 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24"
android:tint="@color/grey">
<path
android:fillColor="@android:color/white"
android:pathData="M12,8m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0,"/>
<path
android:fillColor="#FFFFFF"
android:pathData="M12,7c-2.50,1 3,1 1,0zm0,6c-2.67,0 -8,1.34 -8,4v2h16v-2c0,-2.66 -5.50,-4 -8,-4z"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:autoMirrored="true" android:height="28dp"
android:tint="@color/grey" android:viewportHeight="24"
android:viewportWidth="24" android:width="28dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M8.59,16.59L13.17,12 8.59,7.41 10,6l6,6 -6,6 -1.41,-1.41z"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:height="24dp" android:tint="@color/grey"
android:viewportHeight="24" android:viewportWidth="24"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M2,12.5C2,9.46 4.46,7 7.5,7H18c2.21,0 4,1.79 4,4s-1.79,4 -4,4H9.5C8.12,15 7,13.88 7,12.5S8.12,10 9.5,10H17v2H9.41c-0.55,0 -0.55,1 0,1H18c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2H7.5C5.57,9 4,10.57 4,12.5S5.57,16 7.5,16H17v2H7.5C4.46,18 2,15.54 2,12.5z"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:autoMirrored="true" android:height="24dp"
android:tint="#000000" android:viewportHeight="24"
android:viewportWidth="24" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM6,9h12v2L6,11L6,9zM14,14L6,14v-2h8v2zM18,8L6,8L6,6h12v2z"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:height="20dp" android:tint="#FFFFFF"
android:viewportHeight="24" android:viewportWidth="24"
android:width="20dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M9,11L7,11v2h2v-2zM13,11h-2v2h2v-2zM17,11h-2v2h2v-2zM19,4h-1L18,2h-2v2L8,4L8,2L6,2v2L5,4c-1.11,0 -1.99,0.9 -1.99,2L3,20c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.9,-2 -2,-2zM19,20L5,20L5,9h14v11z"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:height="24dp" android:tint="@color/grey"
android:viewportHeight="24" android:viewportWidth="24"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M7.41,8.59L12,13.17l4.59,-4.58L18,10l-6,6 -6,-6 1.41,-1.41z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="512"
android:viewportWidth="512" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:pathData="M441,58.9L453.1,71c9.4,9.4 9.4,24.6 0,33.9L424,134.1 377.9,88 407,58.9c9.4,-9.4 24.6,-9.4 33.9,0zM209.8,256.2L344,121.9 390.1,168 255.8,302.2c-2.9,2.9 -6.5,5 -10.4,6.1l-58.5,16.7 16.7,-58.5c1.1,-3.9 3.2,-7.5 6.1,-10.4zM373.1,25L175.8,222.2c-8.7,8.7 -15,19.4 -18.3,31.1l-28.6,100c-2.4,8.4 -0.1,17.4 6.1,23.6s15.2,8.5 23.6,6.1l100,-28.6c11.8,-3.4 22.5,-9.7 31.1,-18.3L487,138.9c28.1,-28.1 28.1,-73.7 0,-101.8L474.9,25C446.8,-3.1 401.2,-3.1 373.1,25zM88,64C39.4,64 0,103.4 0,152V424c0,48.6 39.4,88 88,88H360c48.6,0 88,-39.4 88,-88V312c0,-13.3 -10.7,-24 -24,-24s-24,10.7 -24,24V424c0,22.1 -17.9,40 -40,40H88c-22.1,0 -40,-17.9 -40,-40V152c0,-22.1 17.9,-40 40,-40H200c13.3,0 24,-10.7 24,-24s-10.7,-24 -24,-24H88z"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:autoMirrored="true" android:height="24dp"
android:tint="@color/grey" android:viewportHeight="24"
android:viewportWidth="24" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M11,18h2v-2h-2v2zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM12,6c-2.21,0 -4,1.79 -4,4h2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,2 -3,1.75 -3,5h2c0,-2.25 3,-2.5 3,-5 0,-2.21 -1.79,-4 -4,-4z"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:height="24dp" android:tint="#000000"
android:viewportHeight="24" android:viewportWidth="24"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M10,20v-6h4v6h5v-8h3L12,3 2,12h3v8z"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:height="24dp" android:tint="@color/grey"
android:viewportHeight="24" android:viewportWidth="24"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M11,7h2v2h-2zM11,11h2v6h-2zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
</vector>

View File

@ -0,0 +1,6 @@
<vector android:height="20dp" android:tint="#FFFFFF"
android:viewportHeight="24" android:viewportWidth="24"
android:width="20dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
<path android:fillColor="@android:color/white" android:pathData="M12.5,7H11v6l5.25,3.15 0.75,-1.23 -4.5,-2.67z"/>
</vector>

View File

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="utf-8"?>
<vector
android:height="108dp"
android:width="108dp"
android:viewportHeight="108"
android:viewportWidth="108"
xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#3DDC84"
android:pathData="M0,0h108v108h-108z"/>
<path android:fillColor="#00000000" android:pathData="M9,0L9,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,0L19,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M29,0L29,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M39,0L39,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M49,0L49,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M59,0L59,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M69,0L69,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M79,0L79,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M89,0L89,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M99,0L99,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,9L108,9"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,19L108,19"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,29L108,29"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,39L108,39"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,49L108,49"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,59L108,59"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,69L108,69"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,79L108,79"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,89L108,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,99L108,99"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,29L89,29"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,39L89,39"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,49L89,49"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,59L89,59"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,69L89,69"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,79L89,79"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M29,19L29,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M39,19L39,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M49,19L49,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M59,19L59,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M69,19L69,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M79,19L79,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:height="20dp" android:tint="#FFFFFF"
android:viewportHeight="24" android:viewportWidth="24"
android:width="20dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M12,12c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM18,10.2C18,6.57 15.35,4 12,4s-6,2.57 -6,6.2c0,2.34 1.95,5.44 6,9.14 4.05,-3.7 6,-6.8 6,-9.14zM12,2c4.2,0 8,3.22 8,8.2 0,3.32 -2.67,7.25 -8,11.8 -5.33,-4.55 -8,-8.48 -8,-11.8C4,5.22 7.8,2 12,2z"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:height="24dp" android:tint="#FFFFFF"
android:viewportHeight="24" android:viewportWidth="24"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12z"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:height="24dp" android:tint="@color/grey"
android:viewportHeight="24" android:viewportWidth="24"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#AAAAAA" android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,6c1.93,0 3.5,1.57 3.5,3.5S13.93,13 12,13s-3.5,-1.57 -3.5,-3.5S10.07,6 12,6zM12,20c-2.03,0 -4.43,-0.82 -6.14,-2.88C7.55,15.8 9.68,15 12,15s4.45,0.8 6.14,2.12C16.43,19.18 14.03,20 12,20z"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:height="24dp" android:tint="@color/white"
android:viewportHeight="24" android:viewportWidth="24"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#AAAAAA" android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,6c1.93,0 3.5,1.57 3.5,3.5S13.93,13 12,13s-3.5,-1.57 -3.5,-3.5S10.07,6 12,6zM12,20c-2.03,0 -4.43,-0.82 -6.14,-2.88C7.55,15.8 9.68,15 12,15s4.45,0.8 6.14,2.12C16.43,19.18 14.03,20 12,20z"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:height="24dp" android:tint="#000000"
android:viewportHeight="24" android:viewportWidth="24"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM15.29,16.71L11,12.41V7h2v4.59l3.71,3.71L15.29,16.71z"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:height="24dp" android:tint="@color/grey"
android:viewportHeight="24" android:viewportWidth="24"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14z"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:autoMirrored="true" android:height="24dp"
android:tint="@color/grey" android:viewportHeight="24"
android:viewportWidth="24" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M2.01,21L23,12 2.01,3 2,10l15,2 -15,2z"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:height="24dp" android:tint="@color/grey"
android:viewportHeight="24" android:viewportWidth="24"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M19.14,12.94c0.04,-0.3 0.06,-0.61 0.06,-0.94c0,-0.32 -0.02,-0.64 -0.07,-0.94l2.03,-1.58c0.18,-0.14 0.23,-0.41 0.12,-0.61l-1.92,-3.32c-0.12,-0.22 -0.37,-0.29 -0.59,-0.22l-2.39,0.96c-0.5,-0.38 -1.03,-0.7 -1.62,-0.94L14.4,2.81c-0.04,-0.24 -0.24,-0.41 -0.48,-0.41h-3.84c-0.24,0 -0.43,0.17 -0.47,0.41L9.25,5.35C8.66,5.59 8.12,5.92 7.63,6.29L5.24,5.33c-0.22,-0.08 -0.47,0 -0.59,0.22L2.74,8.87C2.62,9.08 2.66,9.34 2.86,9.48l2.03,1.58C4.84,11.36 4.8,11.69 4.8,12s0.02,0.64 0.07,0.94l-2.03,1.58c-0.18,0.14 -0.23,0.41 -0.12,0.61l1.92,3.32c0.12,0.22 0.37,0.29 0.59,0.22l2.39,-0.96c0.5,0.38 1.03,0.7 1.62,0.94l0.36,2.54c0.05,0.24 0.24,0.41 0.48,0.41h3.84c0.24,0 0.44,-0.17 0.47,-0.41l0.36,-2.54c0.59,-0.24 1.13,-0.56 1.62,-0.94l2.39,0.96c0.22,0.08 0.47,0 0.59,-0.22l1.92,-3.32c0.12,-0.22 0.07,-0.47 -0.12,-0.61L19.14,12.94zM12,15.6c-1.98,0 -3.6,-1.62 -3.6,-3.6s1.62,-3.6 3.6,-3.6s3.6,1.62 3.6,3.6S13.98,15.6 12,15.6z"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:height="24dp" android:tint="@color/grey"
android:viewportHeight="24" android:viewportWidth="24"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M7.41,15.41L12,10.83l4.59,4.58L18,14l-6,-6 -6,6z"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:height="24dp" android:tint="#CCCCCC"
android:viewportHeight="24" android:viewportWidth="24"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#CCCCCC" android:pathData="M12,7c2.76,0 5,2.24 5,5 0,0.65 -0.13,1.26 -0.36,1.83l2.92,2.92c1.51,-1.26 2.7,-2.89 3.43,-4.75 -1.73,-4.39 -6,-7.5 -11,-7.5 -1.4,0 -2.74,0.25 -3.98,0.7l2.16,2.16C10.74,7.13 11.35,7 12,7zM2,4.27l2.28,2.28 0.46,0.46C3.08,8.3 1.78,10.02 1,12c1.73,4.39 6,7.5 11,7.5 1.55,0 3.03,-0.3 4.38,-0.84l0.42,0.42L19.73,22 21,20.73 3.27,3 2,4.27zM7.53,9.8l1.55,1.55c-0.05,0.21 -0.08,0.43 -0.08,0.65 0,1.66 1.34,3 3,3 0.22,0 0.44,-0.03 0.65,-0.08l1.55,1.55c-0.67,0.33 -1.41,0.53 -2.2,0.53 -2.76,0 -5,-2.24 -5,-5 0,-0.79 0.2,-1.53 0.53,-2.2zM11.84,9.02l3.15,3.15 0.02,-0.16c0,-1.66 -1.34,-3 -3,-3l-0.17,0.01z"/>
</vector>

View File

@ -0,0 +1,5 @@
<vector android:height="24dp" android:tint="#CCCCCC"
android:viewportHeight="24" android:viewportWidth="24"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#CCCCCC" android:pathData="M12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="22dp" android:viewportHeight="512"
android:viewportWidth="512" android:width="22dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:pathData="M228.3,469.1L47.6,300.4c-4.2,-3.9 -8.2,-8.1 -11.9,-12.4h87c22.6,0 43,-13.6 51.7,-34.5l10.5,-25.2 49.3,109.5c3.8,8.5 12.1,14 21.4,14.1s17.8,-5 22,-13.3L320,253.7l1.7,3.4c9.5,19 28.9,31 50.1,31H476.3c-3.7,4.3 -7.7,8.5 -11.9,12.4L283.7,469.1c-7.5,7 -17.4,10.9 -27.7,10.9s-20.2,-3.9 -27.7,-10.9zM503.7,240h-132c-3,0 -5.8,-1.7 -7.2,-4.4l-23.2,-46.3c-4.1,-8.1 -12.4,-13.3 -21.5,-13.3s-17.4,5.1 -21.5,13.3l-41.4,82.8L205.9,158.2c-3.9,-8.7 -12.7,-14.3 -22.2,-14.1s-18.1,5.9 -21.8,14.8l-31.8,76.3c-1.2,3 -4.2,4.9 -7.4,4.9H16c-2.6,0 -5,0.4 -7.3,1.1C3,225.2 0,208.2 0,190.9v-5.8c0,-69.9 50.5,-129.5 119.4,-141C165,36.5 211.4,51.4 244,84l12,12 12,-12c32.6,-32.6 79,-47.5 124.6,-39.9C461.5,55.6 512,115.2 512,185.1v5.8c0,16.9 -2.8,33.5 -8.3,49.1z"/>
</vector>

View File

@ -0,0 +1,54 @@
<vector android:height="240dp" android:viewportHeight="500"
android:viewportWidth="700" android:width="350dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#DCEDFD" android:pathData="M178.5,275.68c-0,-0.02 -0.02,-0.04 -0.03,-0.06c0.02,-0.03 0.04,-0.04 0.05,-0.07c0.16,-0.39 15.4,-39.51 -0.58,-82.5c-0.08,-0.21 -0.28,-0.35 -0.52,-0.34c-0.23,0.02 -0.42,0.18 -0.47,0.4c-0.09,0.42 -9.08,41.97 0.11,80.41c-2.03,-3.08 -4.55,-5.95 -7.09,-8.69c-1.78,-1.92 -3.58,-3.84 -5.39,-5.74c-0,-0.03 0,-0.05 -0,-0.08c-2.08,-9.67 0.76,-31.11 2.84,-46.77c0.5,-3.81 0.98,-7.41 1.34,-10.43c1.82,-15.56 -1.95,-24.67 -2.11,-25.05c-0.07,-0.17 -0.22,-0.28 -0.4,-0.31c-0.18,-0.03 -0.36,0.05 -0.47,0.19c-0.31,0.39 -7.7,9.79 -9.77,33.26c-1.73,19.7 4.75,41.02 6.91,47.46c-6.93,-7.21 -14.07,-14.26 -21.4,-21.09c0.01,-0.01 0.02,-0.02 0.02,-0.03c0.16,-0.39 15.4,-39.51 -0.58,-82.5c-0.08,-0.21 -0.29,-0.35 -0.52,-0.34c-0.23,0.02 -0.42,0.18 -0.47,0.4c-0.09,0.43 -9.23,42.63 0.33,81.33c-4.35,-4.03 -8.76,-8 -13.22,-11.87c-0.96,-0.83 -1.93,-1.66 -2.9,-2.49c-1.61,-9.84 2.03,-30.95 4.7,-46.4c0.65,-3.79 1.27,-7.36 1.75,-10.38c2.43,-15.48 -0.98,-24.73 -1.12,-25.12c-0.06,-0.17 -0.21,-0.29 -0.39,-0.33c-0.18,-0.03 -0.36,0.03 -0.48,0.17c-0.33,0.38 -8.08,9.48 -11.06,32.85c-2.53,19.84 3.26,41.66 5.11,47.9c-0.76,-0.65 -1.52,-1.31 -2.29,-1.97c-4.35,-3.72 -8.74,-7.47 -13.02,-11.34c0.44,-3.71 4.47,-43.55 -18.91,-80.19c-0.12,-0.19 -0.36,-0.28 -0.58,-0.22c-0.22,0.07 -0.37,0.27 -0.37,0.5c0.01,0.43 0.86,42.6 17.66,77.9c-6.37,-5.88 -12.41,-12.07 -17.64,-18.83c-1.09,-2.69 -17.87,-43.28 -42.11,-58.85c-0.19,-0.13 -0.45,-0.11 -0.62,0.05c-0.17,0.15 -0.22,0.41 -0.12,0.61c0.96,1.96 23.84,48.2 42.13,58.94c4.88,6.3 10.46,12.09 16.34,17.6c-5.7,-3.08 -16.92,-8.48 -29.16,-10.78c-17.39,-3.28 -28.6,-6.44 -28.71,-6.47c-0.2,-0.05 -0.41,0.01 -0.55,0.18c-0.13,0.16 -0.15,0.39 -0.05,0.57c0.07,0.13 7.16,12.7 21.3,16.54c10.54,2.86 28.21,3.22 36.41,3.22c2.22,0 3.73,-0.03 4.24,-0.04c4.3,3.89 8.71,7.66 13.08,11.4c0.98,0.83 1.94,1.67 2.92,2.51c-3.01,0.62 -13.16,2.07 -27.34,-2.86c-17.3,-6.01 -39.54,0.63 -39.76,0.69c-0.24,0.07 -0.39,0.31 -0.36,0.55c0.03,0.25 0.23,0.44 0.48,0.46c7.03,0.5 13.94,3.09 20.61,5.6c7.42,2.79 15.08,5.66 22.95,5.66c0.5,0 1,-0.01 1.5,-0.04c13.86,-0.66 21.44,-7.49 23.05,-9.1c0.88,0.76 1.77,1.51 2.65,2.28c4.36,3.78 8.66,7.65 12.91,11.58c-4.96,-0.73 -19.51,-2.4 -33.8,0.37c-17.38,3.36 -28.96,4.55 -29.08,4.57c-0.21,0.02 -0.38,0.17 -0.44,0.37c-0.06,0.2 0,0.42 0.17,0.55c0.1,0.08 9.55,7.72 22.34,7.72c1.16,0 2.35,-0.06 3.55,-0.2c13.46,-1.52 35.71,-10.66 38.78,-11.95c7.58,7.07 14.98,14.37 22.13,21.85c-3.02,0.75 -13.08,2.56 -27.41,-1.79c-17.52,-5.32 -39.48,2.18 -39.7,2.26c-0.24,0.08 -0.38,0.32 -0.34,0.57c0.04,0.25 0.25,0.43 0.49,0.44c7.05,0.22 14.05,2.54 20.82,4.79c7.11,2.36 14.44,4.78 21.85,4.78c0.93,0 1.87,-0.04 2.8,-0.12c13.38,-1.17 20.67,-7.89 22.52,-9.84c1.75,1.84 3.49,3.69 5.21,5.55c2.76,2.98 5.49,6.11 7.56,9.48c-4.44,-0.68 -19.5,-2.56 -34.28,0.29c-17.38,3.36 -28.96,4.55 -29.08,4.57c-0.21,0.02 -0.38,0.16 -0.44,0.36c-0.06,0.2 0,0.42 0.17,0.55c0.1,0.09 9.55,7.72 22.34,7.72c1.16,0 2.35,-0.06 3.55,-0.2c13.2,-1.49 34.82,-10.3 38.57,-11.86c1.34,2.47 2.29,5.07 2.61,7.85c0.03,0.26 0.25,0.46 0.51,0.46c0.02,0 0.04,-0 0.06,-0c0.28,-0.03 0.49,-0.29 0.45,-0.57c-0.34,-2.97 -1.36,-5.73 -2.79,-8.33C178.48,275.8 178.51,275.74 178.5,275.68z"/>
<path android:fillColor="#F0F3FA" android:pathData="M432.68,108.15c3.73,-0.34 43.53,-4.68 74.52,-35.15c0.17,-0.16 0.2,-0.41 0.09,-0.62c-0.11,-0.2 -0.34,-0.31 -0.57,-0.25c-0.42,0.1 -41.49,9.69 -72.53,33.45c4.43,-7.45 9.23,-14.64 14.75,-21.16c2.34,-1.58 38.61,-26.44 48.82,-53.42c0.08,-0.22 0.01,-0.46 -0.18,-0.6c-0.19,-0.14 -0.44,-0.13 -0.63,0.01c-1.72,1.35 -42.2,33.33 -48.9,53.45c-5.15,6.09 -9.65,12.75 -13.82,19.65c1.83,-6.22 4.78,-18.31 4.49,-30.76c-0.4,-17.69 0.36,-29.32 0.37,-29.43c0.01,-0.21 -0.1,-0.4 -0.28,-0.5c-0.19,-0.09 -0.41,-0.06 -0.57,0.07c-0.11,0.09 -10.94,9.65 -11.76,24.27c-0.61,10.9 2.71,28.26 4.41,36.28c0.46,2.18 0.8,3.65 0.92,4.14c-2.91,5.01 -5.69,10.11 -8.43,15.16c-0.62,1.13 -1.23,2.25 -1.85,3.38c-1.24,-2.81 -4.76,-12.42 -2.88,-27.34c2.28,-18.17 -8.83,-38.55 -8.94,-38.75c-0.12,-0.22 -0.38,-0.32 -0.62,-0.24c-0.24,0.08 -0.38,0.31 -0.35,0.56c0.97,6.99 -0.13,14.28 -1.2,21.33c-1.18,7.84 -2.41,15.93 -0.77,23.63c0.1,0.49 0.22,0.98 0.35,1.47c3.53,13.42 11.78,19.42 13.69,20.66c-0.56,1.02 -1.11,2.05 -1.67,3.06c-2.79,5.05 -5.68,10.06 -8.65,15.03c-0.32,-5 -1.71,-19.58 -7.38,-32.99c-6.9,-16.3 -10.47,-27.39 -10.51,-27.5c-0.06,-0.2 -0.24,-0.34 -0.45,-0.36c-0.21,-0.02 -0.41,0.09 -0.5,0.28c-0.06,0.12 -5.57,10.95 -2.91,23.46c0.24,1.13 0.55,2.28 0.93,3.43c4.28,12.85 17.85,32.71 19.74,35.46c-5.34,8.89 -10.95,17.64 -16.78,26.18c-1.35,-2.77 -5.23,-12.21 -3.94,-27.18c1.57,-18.25 -10.33,-38.17 -10.45,-38.37c-0.13,-0.21 -0.39,-0.3 -0.62,-0.22c-0.23,0.09 -0.37,0.33 -0.33,0.57c1.24,6.94 0.43,14.27 -0.36,21.36c-0.83,7.45 -1.68,15.11 -0.14,22.37c0.19,0.91 0.43,1.82 0.7,2.72c3.92,12.84 12.01,18.58 14.3,19.99c-1.44,2.1 -2.89,4.18 -4.35,6.25c-2.35,3.32 -4.83,6.64 -7.7,9.36c-0.26,-4.48 -1.54,-19.61 -7.41,-33.47c-6.89,-16.3 -10.47,-27.39 -10.51,-27.5c-0.06,-0.2 -0.24,-0.34 -0.45,-0.36c-0.21,-0.02 -0.41,0.09 -0.5,0.28c-0.06,0.12 -5.57,10.95 -2.91,23.46c0.24,1.13 0.55,2.28 0.93,3.43c4.2,12.6 17.31,31.92 19.61,35.26c-2.13,1.82 -4.48,3.3 -7.14,4.19c-0.25,0.08 -0.4,0.34 -0.34,0.6c0,0.02 0.01,0.04 0.02,0.06c0.09,0.27 0.38,0.42 0.65,0.33c2.84,-0.95 5.32,-2.53 7.57,-4.46c0.06,0 0.12,0.02 0.18,0c0.02,-0.01 0.03,-0.03 0.05,-0.04c0.03,0.01 0.05,0.03 0.08,0.04c0.41,0.07 41.84,6.86 80.58,-17.7c0.19,-0.12 0.27,-0.35 0.22,-0.58c-0.06,-0.22 -0.26,-0.37 -0.49,-0.38c-0.43,-0 -42.94,-0.17 -78.64,16.81c2.59,-2.62 4.87,-5.68 7.03,-8.74c1.51,-2.14 3.01,-4.29 4.5,-6.46c0.03,-0.01 0.05,-0.01 0.07,-0.02c9.02,-4.04 30.59,-5.72 46.33,-6.94c3.83,-0.3 7.45,-0.58 10.49,-0.86c15.6,-1.45 23.73,-7.03 24.07,-7.26c0.15,-0.1 0.23,-0.28 0.22,-0.46c-0.01,-0.19 -0.12,-0.34 -0.28,-0.43c-0.44,-0.22 -11.18,-5.5 -34.56,-2.64c-19.63,2.4 -39.14,13.16 -44.99,16.62c5.62,-8.27 11.03,-16.73 16.19,-25.32c0.01,0 0.02,0.01 0.03,0.02c0.41,0.07 41.84,6.86 80.58,-17.7c0.19,-0.12 0.28,-0.35 0.22,-0.58c-0.06,-0.22 -0.26,-0.37 -0.49,-0.37c-0.44,-0 -43.62,-0.17 -79.49,17.22c3.04,-5.1 6.01,-10.23 8.87,-15.4c0.62,-1.11 1.22,-2.24 1.84,-3.36c9.29,-3.62 30.7,-4.44 46.37,-5.04c3.84,-0.15 7.46,-0.28 10.51,-0.45c15.65,-0.84 23.99,-6.09 24.34,-6.31c0.15,-0.1 0.24,-0.27 0.24,-0.45c-0,-0.18 -0.11,-0.35 -0.26,-0.44c-0.44,-0.24 -10.95,-5.93 -34.43,-4c-19.93,1.64 -40.07,11.84 -45.8,14.94c0.48,-0.88 0.97,-1.76 1.45,-2.65C427.02,118.21 429.79,113.14 432.68,108.15z"/>
<path android:fillColor="#DCEDFD" android:pathData="M658.74,304.68c-0.13,-0.16 -0.35,-0.23 -0.55,-0.18c-0.11,0.03 -11.32,3.19 -28.71,6.47c-12.24,2.31 -23.45,7.7 -29.16,10.78c5.88,-5.51 11.46,-11.3 16.34,-17.6c18.29,-10.74 41.17,-56.97 42.13,-58.94c0.1,-0.21 0.05,-0.46 -0.12,-0.61c-0.17,-0.15 -0.43,-0.17 -0.62,-0.05c-24.24,15.57 -41.03,56.17 -42.11,58.85c-5.23,6.76 -11.27,12.94 -17.64,18.83c16.79,-35.29 17.65,-77.47 17.66,-77.9c0,-0.23 -0.15,-0.44 -0.37,-0.5c-0.22,-0.07 -0.46,0.02 -0.58,0.22c-23.38,36.65 -19.35,76.49 -18.91,80.19c-4.28,3.87 -8.67,7.63 -13.02,11.34c-0.77,0.65 -1.52,1.31 -2.29,1.96c1.84,-6.24 7.64,-28.06 5.11,-47.9c-2.98,-23.37 -10.74,-32.47 -11.06,-32.85c-0.12,-0.14 -0.3,-0.2 -0.48,-0.17c-0.18,0.03 -0.33,0.16 -0.39,0.33c-0.15,0.39 -3.55,9.64 -1.12,25.11c0.47,3.01 1.09,6.59 1.75,10.37c2.67,15.45 6.31,36.57 4.7,46.4c-0.97,0.83 -1.94,1.66 -2.9,2.49c-4.46,3.87 -8.87,7.84 -13.22,11.87c9.56,-38.7 0.43,-80.91 0.33,-81.33c-0.05,-0.22 -0.24,-0.39 -0.47,-0.4c-0.22,-0.02 -0.44,0.12 -0.52,0.34c-15.98,43 -0.74,82.11 -0.58,82.5c0,0.01 0.02,0.02 0.02,0.03c-7.33,6.83 -14.48,13.88 -21.4,21.09c2.16,-6.44 8.65,-27.76 6.91,-47.46c-2.07,-23.47 -9.45,-32.87 -9.77,-33.26c-0.11,-0.14 -0.29,-0.21 -0.47,-0.19c-0.18,0.03 -0.33,0.14 -0.4,0.31c-0.16,0.38 -3.93,9.49 -2.11,25.05c0.35,3.03 0.83,6.63 1.34,10.44c2.08,15.66 4.92,37.1 2.83,46.77c-0.01,0.03 0,0.05 -0,0.08c-1.81,1.9 -3.61,3.82 -5.38,5.74c-2.54,2.75 -5.06,5.61 -7.09,8.69c9.19,-38.45 0.2,-79.99 0.11,-80.41c-0.05,-0.22 -0.24,-0.39 -0.47,-0.4c-0.22,-0.02 -0.44,0.12 -0.52,0.34c-15.98,43 -0.74,82.11 -0.58,82.5c0.01,0.03 0.04,0.04 0.05,0.07c-0,0.02 -0.02,0.04 -0.03,0.06c-0.01,0.06 0.02,0.12 0.04,0.17c-1.43,2.6 -2.45,5.36 -2.79,8.33c-0.03,0.28 0.17,0.54 0.46,0.57c0.02,0 0.04,0 0.06,0c0.26,0 0.48,-0.19 0.51,-0.46c0.32,-2.78 1.27,-5.39 2.61,-7.85c3.76,1.56 25.38,10.37 38.57,11.86c1.21,0.14 2.39,0.2 3.55,0.2c12.79,0 22.24,-7.64 22.35,-7.72c0.16,-0.13 0.23,-0.35 0.17,-0.55c-0.06,-0.2 -0.23,-0.34 -0.44,-0.36c-0.12,-0.01 -11.7,-1.21 -29.08,-4.57c-14.78,-2.86 -29.84,-0.97 -34.28,-0.29c2.07,-3.37 4.81,-6.49 7.56,-9.48c1.72,-1.86 3.46,-3.71 5.21,-5.55c1.86,1.95 9.15,8.67 22.52,9.84c0.94,0.08 1.87,0.12 2.8,0.12c7.42,0 14.74,-2.43 21.85,-4.78c6.77,-2.24 13.77,-4.56 20.82,-4.79c0.25,-0.01 0.46,-0.19 0.49,-0.44c0.04,-0.25 -0.11,-0.48 -0.34,-0.57c-0.22,-0.08 -22.18,-7.58 -39.7,-2.26c-14.32,4.35 -24.39,2.54 -27.41,1.79c7.15,-7.48 14.55,-14.78 22.13,-21.85c3.08,1.29 25.32,10.43 38.78,11.95c1.21,0.14 2.39,0.2 3.55,0.2c12.79,0 22.24,-7.64 22.34,-7.72c0.16,-0.13 0.23,-0.35 0.17,-0.55c-0.06,-0.2 -0.23,-0.34 -0.44,-0.36c-0.12,-0.01 -11.7,-1.21 -29.08,-4.57c-14.29,-2.76 -28.84,-1.09 -33.8,-0.37c4.25,-3.93 8.55,-7.8 12.91,-11.58c0.88,-0.76 1.77,-1.52 2.65,-2.28c1.61,1.61 9.19,8.44 23.05,9.1c0.5,0.02 1,0.04 1.5,0.04c7.87,0 15.53,-2.88 22.95,-5.66c6.68,-2.51 13.58,-5.1 20.61,-5.6c0.25,-0.02 0.45,-0.21 0.48,-0.46c0.03,-0.25 -0.13,-0.48 -0.36,-0.55c-0.22,-0.07 -22.46,-6.7 -39.76,-0.7c-14.19,4.93 -24.34,3.48 -27.34,2.86c0.97,-0.83 1.94,-1.67 2.91,-2.5c4.37,-3.73 8.78,-7.51 13.08,-11.4c0.51,0.01 2.02,0.04 4.24,0.04c8.21,0 25.87,-0.36 36.41,-3.22c14.14,-3.84 21.23,-16.41 21.3,-16.54C658.89,305.07 658.87,304.85 658.74,304.68z"/>
<path android:fillColor="#DCEDFD" android:pathData="M138.57,318.34c-9.18,-5.35 -20.67,-11.15 -33.85,-15.98l-24.62,12.65l2.55,-19.26c-9.27,-2.15 -19.08,-3.64 -29.3,-4.1c0,0 -3.87,16.93 -1.52,39.02c4.62,-1.91 11.68,-4.36 17.85,-3.83c0,0 -9.68,11.05 -14.52,22.16c3.23,12.26 8.77,25.05 17.98,36.8c1.69,-6.44 5.2,-17.24 10.9,-22.93c0,0 -2.06,19.51 -0.52,34.18c7.79,7.22 17.39,13.75 29.17,19.14c0.39,-7.31 1.44,-20.04 4.01,-23.2c0,0 2.02,15.98 7.36,27.79c11.12,3.94 23.88,6.97 38.53,8.81V334.71c0,0 -4.08,-3.47 -11.4,-8.44c-18.88,4.1 -30.55,14.07 -30.55,14.07C124.34,330.66 133.77,322.19 138.57,318.34z"/>
<path android:fillColor="#C7E1F8" android:pathData="M159.35,399.6c-16.11,-9.71 -31.17,-20.89 -45,-33.66c-23.46,-21.66 -42.94,-47.1 -61.23,-73.18c-0.8,4.1 -3.29,19.14 -1.29,37.91c4.62,-1.91 11.68,-4.36 17.85,-3.83c0,0 -9.68,11.05 -14.52,22.16c3.23,12.26 8.77,25.05 17.98,36.8c1.69,-6.44 5.2,-17.24 10.9,-22.93c0,0 -2.06,19.51 -0.52,34.18c7.79,7.22 17.39,13.75 29.17,19.14c0.39,-7.31 1.44,-20.04 4.01,-23.2c0,0 2.02,15.98 7.36,27.79c11.12,3.94 23.88,6.97 38.53,8.81V401.52C161.5,400.89 160.42,400.25 159.35,399.6z"/>
<path android:fillColor="#F0F3FA" android:pathData="M318.98,181.97c-2.22,-17.04 -5.82,-31.87 -10.46,-44.78c-13.77,-6.15 -32.38,-8.42 -32.38,-8.42c3.66,-3.01 18.47,-4.29 26.97,-4.79c-6.34,-13.68 -13.99,-24.81 -22.43,-33.84c-17.08,-1.71 -39.77,0.8 -39.77,0.8c6.59,-6.65 19.13,-10.8 26.62,-12.8c-13.73,-10.65 -28.64,-17.03 -42.92,-20.72c-12.9,5.69 -25.71,17.01 -25.71,17.01c-0.65,-7.18 2.17,-15.41 4.36,-20.79c-0.75,-0.08 -1.49,-0.14 -2.23,-0.21c-0.24,-0.02 -0.49,-0.04 -0.73,-0.06c-0.5,-0.04 -1,-0.08 -1.49,-0.12c-0.27,-0.02 -0.54,-0.04 -0.8,-0.05c-0.47,-0.03 -0.93,-0.06 -1.39,-0.09c-0.27,-0.02 -0.53,-0.03 -0.8,-0.05c-0.47,-0.03 -0.94,-0.05 -1.4,-0.07c-0.24,-0.01 -0.49,-0.02 -0.73,-0.03c-0.53,-0.02 -1.06,-0.04 -1.59,-0.05c-0.16,-0 -0.32,-0.01 -0.49,-0.01c-0.69,-0.02 -1.38,-0.03 -2.06,-0.04c-0.09,-0 -0.19,-0 -0.28,-0c-0.58,-0.01 -1.15,-0.01 -1.71,-0.01c-0.21,0 -0.41,0 -0.61,0c-0.46,0 -0.91,0 -1.36,0.01c-0.21,0 -0.43,0 -0.64,0.01c-0.44,0.01 -0.88,0.01 -1.31,0.02c-0.2,0 -0.4,0.01 -0.6,0.01c-0.46,0.01 -0.91,0.03 -1.36,0.04c-0.16,0 -0.32,0.01 -0.48,0.02c-0.59,0.02 -1.17,0.05 -1.75,0.07c-0.01,0 -0.02,0 -0.03,0c-0.6,0.03 -1.2,0.06 -1.78,0.09c-0.1,0.01 -0.2,0.01 -0.29,0.02c-0.47,0.03 -0.93,0.06 -1.39,0.09c-0.15,0.01 -0.29,0.02 -0.44,0.03c-0.4,0.03 -0.8,0.06 -1.2,0.09c-0.15,0.01 -0.3,0.02 -0.45,0.04c-0.39,0.03 -0.77,0.06 -1.15,0.1c-0.13,0.01 -0.27,0.02 -0.4,0.04c-0.41,0.04 -0.82,0.08 -1.22,0.12c-0.09,0.01 -0.17,0.02 -0.25,0.03c-0.98,0.1 -1.9,0.2 -2.78,0.31c-0.09,0.01 -0.17,0.02 -0.25,0.03c-0.34,0.04 -0.68,0.08 -1.01,0.13c-0.11,0.01 -0.22,0.03 -0.33,0.04c-0.29,0.04 -0.58,0.08 -0.85,0.12c-0.12,0.02 -0.24,0.03 -0.36,0.05c-0.26,0.04 -0.52,0.07 -0.77,0.11c-0.11,0.02 -0.22,0.03 -0.32,0.05c-0.28,0.04 -0.55,0.08 -0.81,0.12c-0.06,0.01 -0.13,0.02 -0.19,0.03c-0.32,0.05 -0.63,0.1 -0.92,0.15c-0.09,0.01 -0.17,0.03 -0.25,0.04c-0.2,0.03 -0.4,0.07 -0.58,0.1c-0.11,0.02 -0.21,0.04 -0.32,0.06c-0.15,0.03 -0.29,0.05 -0.43,0.08c-0.12,0.02 -0.23,0.04 -0.34,0.06c-0.1,0.02 -0.2,0.04 -0.3,0.06c-0.12,0.02 -0.23,0.04 -0.34,0.06c-0.07,0.01 -0.13,0.03 -0.19,0.04c-1.07,0.21 -1.65,0.34 -1.65,0.34c0.6,11.88 2.38,23.29 4.93,34.07l22.4,-3.08L170.62,115.33c5.7,15.31 12.51,28.64 18.79,39.3c4.46,-5.6 14.26,-16.62 25.5,-20.99c0,0 -11.54,13.64 -16.2,35.63c5.82,8.49 9.88,13.21 9.88,13.21l77.74,-0.37l0,0L318.98,181.97z"/>
<path android:fillColor="#DCEDFD" android:pathData="M590.91,112.07c0.64,4.2 1.16,10.33 0.28,16.84c0,0 -6.52,-5.95 -16.59,-7.72c-10.1,6.53 -18.46,13.73 -25.36,21.12c3.97,0.95 8.36,2.54 11.8,5.21c0,0 -11.4,1.79 -19.86,4.3c-21.78,28.37 -24.39,56.31 -24.39,56.31l20.38,53.23c9.03,-5.51 17.14,-11.09 24.44,-16.71c0.44,-8.23 -1.09,-19.28 -1.09,-19.28c3.2,3.56 6.45,9.82 8.24,13.55c12.11,-10.11 21.68,-20.27 29.19,-30.26c-0.9,-10.85 -6.28,-20.14 -6.28,-20.14c7.78,2.43 11.63,6.27 13.54,9.55c9.99,-16.07 14.95,-31.41 17.03,-44.93c-4.11,-11.64 -10.4,-16.28 -10.4,-16.28c4.62,-2.94 8.62,-4.35 11.56,-5.03c-0.83,-18.24 -6.09,-29.82 -6.09,-29.82C607.6,104.85 598.84,108.26 590.91,112.07z"/>
<path android:fillColor="#C7E1F8" android:pathData="M611.83,136.85c4.62,-2.94 8.62,-4.35 11.56,-5.03c-0.83,-18.24 -6.09,-29.82 -6.09,-29.82c-0.37,0.11 -0.73,0.22 -1.09,0.33c-7.72,28.86 -23.81,55.8 -42.24,78.84c-14.59,18.24 -31.34,34.52 -48.03,50.84l11.23,29.33c9.03,-5.51 17.14,-11.09 24.44,-16.71c0.44,-8.23 -1.09,-19.28 -1.09,-19.28c3.2,3.56 6.45,9.82 8.24,13.55c12.11,-10.11 21.68,-20.27 29.19,-30.26c-0.9,-10.85 -6.28,-20.14 -6.28,-20.14c7.78,2.43 11.63,6.27 13.54,9.55c9.99,-16.07 14.95,-31.41 17.03,-44.93C618.12,141.49 611.83,136.85 611.83,136.85z"/>
<path android:fillColor="#385AA3" android:pathData="M549.86,430.86H150.03V171.59c0,-5.73 4.65,-10.38 10.38,-10.38h379.07c5.73,0 10.38,4.65 10.38,10.38V430.86z"/>
<path android:fillColor="#304F91" android:pathData="M219.41,161.21h-59.01c-5.73,0 -10.38,4.65 -10.38,10.38v259.27h339.04L219.41,161.21z"/>
<path android:fillColor="#FFFFFF" android:pathData="M529.94,415.37H169.94V188.12c0,-5.16 4.18,-9.35 9.35,-9.35h341.31c5.16,0 9.35,4.18 9.35,9.35V415.37z"/>
<path android:fillColor="#F0F3FA" android:pathData="M265.51,178.77h-86.22c-5.16,0 -9.35,4.18 -9.35,9.35v227.25h332.15L265.51,178.77z"/>
<path android:fillColor="#4972C7" android:pathData="M537.98,465.99H161.91c-19.11,0 -34.61,-15.49 -34.61,-34.61l0,0c0,-1.43 1.16,-2.58 2.58,-2.58h440.12c1.43,0 2.58,1.16 2.58,2.58l0,0C572.59,450.5 557.09,465.99 537.98,465.99z"/>
<path android:fillColor="#547CD1" android:pathData="M570,428.8H367.97l37.19,37.19h132.82c19.11,0 34.61,-15.49 34.61,-34.61C572.59,429.95 571.43,428.8 570,428.8z"/>
<path android:fillColor="#547CD1" android:pathData="M247.71,275.15l-7.99,-8.29v-9.72c0,-2.75 -2.23,-4.98 -4.98,-4.98h-48.09c-2.75,0 -4.98,2.23 -4.98,4.98v16.21c0,2.75 2.23,4.98 4.98,4.98h41.97h6.12h11.62C248.01,278.33 248.86,276.34 247.71,275.15z"/>
<path android:fillColor="#FFFFFF" android:pathData="M200.14,265.33c0,2.58 -2.09,4.67 -4.67,4.67c-2.58,0 -4.67,-2.09 -4.67,-4.67s2.09,-4.67 4.67,-4.67C198.05,260.66 200.14,262.75 200.14,265.33z"/>
<path android:fillColor="#FFFFFF" android:pathData="M215.36,265.17c0,2.58 -2.09,4.67 -4.67,4.67c-2.58,0 -4.67,-2.09 -4.67,-4.67c0,-2.58 2.09,-4.67 4.67,-4.67C213.27,260.5 215.36,262.59 215.36,265.17z"/>
<path android:fillColor="#FFFFFF" android:pathData="M230.58,265.17c0,2.58 -2.09,4.67 -4.67,4.67s-4.67,-2.09 -4.67,-4.67c0,-2.58 2.09,-4.67 4.67,-4.67S230.58,262.59 230.58,265.17z"/>
<path android:fillColor="#547CD1" android:pathData="M490.31,125.36c-0.32,0 -0.63,-0.1 -0.9,-0.29l-39.96,-28.61c-0.06,0.29 -0.11,0.59 -0.11,0.9v41.77c0,2.28 1.85,4.14 4.14,4.14h73.67c2.28,0 4.14,-1.85 4.14,-4.14V97.36c0,-0.62 -0.14,-1.2 -0.39,-1.73l-39.66,29.41C490.96,125.26 490.64,125.36 490.31,125.36z"/>
<path android:fillColor="#547CD1" android:pathData="M528.58,93.5c-0.45,-0.17 -0.93,-0.27 -1.43,-0.27h-73.67c-0.84,0 -1.62,0.25 -2.27,0.68l39.08,27.98L528.58,93.5z"/>
<path android:fillColor="#DCEDFD" android:pathData="M524.77,109.92a16.28,16.28 58.38,1 0,7.54 -31.68a16.28,16.28 58.38,1 0,-7.54 31.68z"/>
<path android:fillColor="#385AA3" android:pathData="M531.6,103.76c0,1.71 -1.38,3.09 -3.09,3.09c-1.71,0 -3.09,-1.38 -3.09,-3.09c0,-1.71 1.38,-3.09 3.09,-3.09C530.22,100.68 531.6,102.06 531.6,103.76z"/>
<path android:fillColor="#385AA3" android:pathData="M527.08,97.84l-1.4,-13.36c-0.16,-1.56 0.97,-2.96 2.53,-3.13c1.56,-0.16 2.96,0.97 3.13,2.53c0.02,0.2 0.02,0.41 0,0.59l-1.4,13.36c-0.08,0.79 -0.79,1.36 -1.58,1.28C527.67,99.05 527.15,98.5 527.08,97.84z"/>
<path android:fillColor="#547CD1" android:pathData="M279.44,185.53l-17.45,-18.09v-51.73c0,-4.54 -3.68,-8.21 -8.21,-8.21h-63.89c-4.54,0 -8.21,3.68 -8.21,8.21v67.19c0,4.54 3.68,8.21 8.21,8.21h55.43l-0.08,0.12h31.78C279.99,191.23 281.5,187.66 279.44,185.53z"/>
<path android:fillColor="#FFFFFF" android:pathData="M217.76,144.48l-2.66,-5.02l6.36,-3.37c1.57,-0.83 2.16,-2.77 1.34,-4.34l-5.59,-10.56c-0.83,-1.57 -2.77,-2.16 -4.34,-1.34l-3.46,1.83c-7.93,4.2 -10.95,14.03 -6.76,21.96l3.65,6.89l3.71,7.01l6.17,11.46c4.2,7.93 14.03,10.95 21.96,6.76l3.46,-1.83c1.57,-0.83 2.16,-2.77 1.34,-4.34l-5.59,-10.56c-0.83,-1.57 -2.77,-2.16 -4.34,-1.34l-6.36,3.37l-5.18,-9.59L217.76,144.48z"/>
<path android:fillColor="#F3AA81" android:pathData="M514.99,314c7.37,-11.55 15.77,-22.44 25.08,-32.5c0.68,-0.73 1.37,-1.48 1.72,-2.41c0.34,-0.93 0.25,-2.1 -0.5,-2.76c-1.19,-1.04 -3.04,-0.22 -4.35,0.66c-3.07,2.06 -5.84,4.04 -8.59,6.51c3.22,-4.89 6.43,-9.78 9.65,-14.68c0.48,-0.74 0.98,-1.49 1.19,-2.35c0.21,-0.86 0.09,-1.85 -0.54,-2.47c-0.62,-0.62 -1.61,-0.75 -2.45,-0.53c-0.85,0.22 -1.59,0.73 -2.29,1.26c-4.41,3.35 -7.91,7.74 -11.36,12.08c3.83,-6.24 7.2,-12.77 10.07,-19.5c0.59,-1.39 1.13,-3.11 0.21,-4.3c-0.68,-0.88 -1.97,-1.11 -3.05,-0.8c-1.07,0.31 -1.96,1.05 -2.76,1.83c-5.13,4.98 -7.8,11.9 -10.33,18.58c1.49,-5.8 2.86,-11.27 3.23,-17.25c0.09,-1.43 -0.04,-3.19 -1.33,-3.81c-0.91,-0.44 -2.05,-0.04 -2.77,0.67c-0.72,0.72 -1.11,1.69 -1.47,2.64c-2.23,5.76 -4.32,11.58 -6.28,17.44c-0.36,1.07 -3.48,12.67 -6.4,8.69c-0.42,-0.58 -0.57,-1.3 -0.71,-2.01c-0.44,-2.3 -0.89,-4.59 -1.33,-6.89c-0.23,-1.18 -0.48,-2.4 -1.22,-3.34c-1.55,-1.98 -3.9,-1.18 -4.32,1.12c-1.92,10.52 3.7,21.07 3.19,31.76C504.15,303.71 510.7,308.27 514.99,314z"/>
<path android:fillColor="#226B9E" android:pathData="M229.88,415.37c0,0 19.84,-82.74 28.8,-104.5c8.96,-21.76 15.03,-33.04 45.92,-42.12c30.89,-9.08 88.5,-6.84 106.74,8.84c18.24,15.68 45.77,83.21 45.77,83.21l39.69,-61.13c0,0 14.4,5.76 20.16,13.76c0,0 -40.01,97.29 -59.85,98.57c-19.84,1.28 -48.01,-61.13 -48.01,-61.13l10.56,64.5H229.88z"/>
<path android:fillColor="#1A5680" android:pathData="M265.51,307.18c1.86,-7.22 4.12,-14.46 7.14,-21.31c-6.03,6.53 -9.67,14.56 -13.97,25c-8.96,21.76 -28.8,104.5 -28.8,104.5h7.98C237.93,415.21 263.14,316.4 265.51,307.18z"/>
<path android:fillColor="#1A5680" android:pathData="M515.54,315.38c-6.82,8.57 -13.64,17.36 -20.01,26.26c-7.05,9.84 -12.41,20.8 -20.73,29.73c-9.24,9.92 -23.1,14.56 -34.19,4.45c-6.37,-5.8 -9.93,-14.44 -14.1,-21.81c-4.8,-8.47 -9.65,-16.91 -14.03,-25.6c-2.39,-4.74 -4.63,-9.56 -6.65,-14.46c-0.03,2.26 -0.02,4.51 0.07,6.75c0.46,11.51 2.73,23.12 5.2,34.41c6.76,14.02 29.33,57.96 46.01,56.88c18.99,-1.23 56.43,-90.36 59.62,-98.03C516.33,314.44 515.93,314.9 515.54,315.38z"/>
<path android:fillColor="#214A6A" android:pathData="M392.01,265.66c-5.39,-2.53 -10.9,-4.81 -16.5,-6.84c-4.34,-1.57 -8.45,-3.92 -13.03,-4.41c-11.13,-1.2 -22.63,-0.03 -33.36,3.08c-11.86,3.44 -22.95,8.07 -34.41,12.95c-3.12,1.33 -6.49,2.87 -8.05,5.89c-2.17,4.2 0.11,9.34 3,13.09c2.85,3.7 6.32,6.91 8.93,10.78c2.61,3.87 4.34,8.71 3.09,13.21c-1.52,5.53 -7.1,9.29 -8.39,14.87c-0.94,4.05 0.56,8.23 2.05,12.11c3.01,7.89 6.01,15.78 9.02,23.68c5.29,13.89 11.19,28.58 23.29,37.22c5.23,3.74 12,6.13 18.12,4.16c5.29,-1.71 9.07,-6.29 12.3,-10.81c9.12,-12.76 16.28,-26.78 22.7,-41.05c2.74,-6.09 5.67,-11.95 8.57,-17.83c2.53,-5.14 1.71,-12.06 -2.57,-16.03c-2.04,-1.89 -4.75,-3.25 -5.87,-5.8c-1.51,-3.46 0.59,-7.33 2.53,-10.57c5.12,-8.6 9.47,-17.65 12.98,-27.02c0.78,-2.09 1.52,-4.42 0.69,-6.48C396.23,267.78 394.05,266.61 392.01,265.66z"/>
<path android:fillColor="#FFFFFF" android:pathData="M324.74,255.81c0,0 -17.04,79.42 -9.88,159.56c0,0 57.9,0 58.21,0s-6.94,-128.14 -2.23,-154.75L324.74,255.81z"/>
<path android:fillColor="#DDE1EB" android:pathData="M327.51,415.37h0.61c-0.06,-1.06 -0.1,-2.12 -0.15,-3.19C327.81,413.24 327.66,414.3 327.51,415.37z"/>
<path android:fillColor="#DDE1EB" android:pathData="M370.84,260.62l-7.75,-0.81c-4.09,25.92 -3.74,52.5 -2.79,78.65c0.63,17.48 1.59,34.92 2,52.41c0.19,8.11 0.24,16.15 1.67,24.15c0.02,0.12 0.04,0.23 0.06,0.34h9.04C373.38,415.37 366.12,287.22 370.84,260.62z"/>
<path android:fillColor="#E6996F" android:pathData="M368.51,218.54c0.25,-0.18 0.51,-0.36 0.76,-0.53c0.96,2.89 0.72,6.02 0.5,9.06c-0.38,5.43 -0.8,10.79 -0.99,16.23c-0.17,5.01 0.8,9.49 1.82,14.44c0.19,0.95 0.39,1.93 0.24,2.89c-0.17,1.09 -0.79,2.07 -1.48,2.93c-5.09,6.33 -14.18,7.63 -22.31,7.37c-6.76,-0.21 -14.13,-1.22 -19.86,-5.11c-3.43,-2.33 -2.28,-3.4 -2.21,-7.04c0.06,-2.7 0.03,-4.92 0.56,-7.65c0.38,-1.98 3.48,-18.52 0.85,-18.48c7.49,-0.12 14.95,-1.47 22.06,-3.83c3.46,-1.15 6.97,-2.51 10.3,-3.91C362.21,223.45 365.4,220.75 368.51,218.54z"/>
<path android:fillColor="#CC835B" android:pathData="M370.6,257.73c-1.01,-4.94 -1.99,-9.42 -1.82,-14.44c0.19,-5.43 0.61,-10.8 0.99,-16.23c0.21,-3.04 0.46,-6.17 -0.5,-9.06c-0.25,0.17 -0.51,0.35 -0.76,0.53c-3.11,2.21 -6.3,4.91 -9.76,6.36c-3.34,1.4 -6.84,2.77 -10.3,3.91c-7.11,2.36 -14.56,3.71 -22.06,3.83c1.69,-0.03 1.02,6.76 0.22,12.16c8.85,4.18 20.33,0.14 27.94,7.61c4.36,4.28 6.35,10.29 7.61,16.33c2.79,-1.14 5.27,-2.81 7.19,-5.19c0.69,-0.86 1.31,-1.84 1.48,-2.93C370.99,259.66 370.8,258.68 370.6,257.73z"/>
<path android:fillColor="#464559" android:pathData="M386.62,142.68c2.79,4.28 4.46,9.84 5.89,14.72c1.34,4.59 2.04,9.37 2.07,14.15c0.02,5.04 0.36,9.92 -0.46,14.94c-1.21,7.37 -4.01,14.41 -8.32,20.52c-4.39,6.23 -10.3,10.7 -15.26,16.4c-1.35,1.55 -3.46,3.93 -5.8,2.55c-1.74,-1.02 -1.55,-3.55 -1.22,-5.54c1.72,-10.11 1.47,-20.54 -0.71,-30.56c-2.1,-9.64 -5.16,-18.82 -6.3,-28.73c-0.71,-6.14 -5.25,-3.53 -9.23,-2.18c-5.17,1.75 -10.83,2.94 -16.16,1.14c-1.77,-0.6 -3.43,-1.51 -5.25,-1.94c-1.91,-0.45 -3.89,-0.35 -5.85,-0.25c-10.82,0.57 -20.26,3.01 -30.71,-1.62c-6.49,-2.87 -10.61,-9.26 -9.09,-16.58c1.55,-7.47 9.2,-12.86 16.75,-12c2.24,0.25 4.47,1 6.71,0.76c2.91,-0.31 3.73,-2.49 5.43,-4.39c1.86,-2.09 4.41,-3.8 6.8,-5.19c5.01,-2.91 10.72,-4.58 16.48,-5.06c13.2,-1.11 29.68,2.61 37.4,14.27c1.04,1.58 1.96,3.3 3.46,4.45c1.31,1 2.95,1.47 4.46,2.14C381.41,136.33 384.42,139.29 386.62,142.68z"/>
<path android:fillColor="#3C3B4D" android:pathData="M384.15,209.18c3.32,-7.69 5.52,-15.65 1.58,-23.33c-2.57,-5.01 -6.35,-7.6 -6.56,-13.56c-0.23,-6.76 0.63,-13.57 -0.92,-20.24c-1.57,-6.78 -6.48,-15.39 -11.83,-19.9c-5.24,-4.41 -12.88,-7.28 -19.43,-8.96c-7.23,-1.85 -14.65,-1.83 -22.05,-1.33c-5.28,0.35 -10.47,1.41 -15.7,2.07c-0.04,0.04 -0.08,0.09 -0.12,0.13c-1.7,1.9 -2.52,4.08 -5.43,4.39c-2.25,0.24 -4.47,-0.51 -6.71,-0.76c-0.79,-0.09 -1.59,-0.1 -2.38,-0.05c-1.43,3.3 -1.18,7.32 2.53,8.59c2.22,0.76 5.02,0.55 7.34,0.52c7.87,-0.1 16.25,-5.07 24.17,-5.04c11.53,0.04 24.59,0.57 33.84,8.45c9.77,8.33 9.14,29.43 8.53,40.94c-0.43,8.11 -2.64,15.55 -6.45,22.28c0.25,5.69 -0.07,11.41 -1.03,17.02c-0.34,1.99 -0.53,4.52 1.22,5.54c2.34,1.38 4.46,-1 5.8,-2.55C374.91,218.39 380,214.33 384.15,209.18z"/>
<path android:fillColor="#F3AA81" android:pathData="M327.25,149.34c-8.15,1.21 -14.28,7.04 -22.27,8.66c-0.13,0.03 -0.28,0.06 -0.34,0.18c-0.06,0.11 -0.04,0.25 -0,0.37c0.86,3.38 1.89,6.57 2.2,10.07c0.6,6.74 0.6,13.67 -0.46,20.37c-1.05,6.64 -2.69,13.32 -2.07,20.1c0.75,8.13 4.9,15.89 11.25,21.02c8.82,7.12 21.14,8.15 31.91,5.77c18.03,-4 28.74,-22.39 27.67,-40.13c-0.03,-0.47 -0.04,-1.01 0.3,-1.34c0.17,-0.17 0.41,-0.25 0.64,-0.32c4.01,-1.33 7.51,-3.12 8.81,-7.52c0.53,-1.77 0.56,-3.78 -0.34,-5.39c-2.86,-5.1 -9.91,-1.36 -11.97,2.36c-0.71,1.28 -0.61,2.24 -2.16,2.69c-2.71,0.79 -3.88,0.58 -4.91,-2.18c-1.24,-3.31 -0.08,-6.2 -0.08,-9.54c0,-3.53 0.44,-6.34 -1.44,-9.33c-0.96,-1.52 -2.27,-2.82 -3.02,-4.45c-0.76,-1.66 -0.89,-3.53 -0.86,-5.36c0.07,-3.22 0.64,-6.43 1.67,-9.48c-2.32,1.93 -4.77,3.79 -7.62,4.77c-4.28,1.48 -8.99,0.84 -13.44,-0.03C336.26,149.76 331.73,148.68 327.25,149.34z"/>
<path android:fillColor="#E6996F" android:pathData="M384.53,181.17c-2.86,-5.1 -9.91,-1.36 -11.97,2.36c-0.71,1.28 -0.61,2.24 -2.16,2.69c-2.71,0.79 -3.88,0.58 -4.91,-2.18c-1.24,-3.31 -0.08,-6.2 -0.08,-9.54c0,-3.53 0.44,-6.34 -1.43,-9.33c-0.96,-1.52 -2.27,-2.82 -3.02,-4.45c-0.76,-1.66 -0.89,-3.53 -0.86,-5.36c0.07,-3.22 0.64,-6.43 1.67,-9.48c-2.32,1.93 -4.77,3.79 -7.62,4.77c-4.28,1.48 -8.99,0.84 -13.44,-0.03c-4.45,-0.87 -8.98,-1.95 -13.47,-1.28c-8.15,1.21 -14.28,7.04 -22.27,8.66c-0.13,0.03 -0.28,0.06 -0.34,0.18c-0.06,0.11 -0.04,0.25 -0,0.37c0.14,0.55 0.29,1.09 0.43,1.63c3.57,-0.32 7.11,-0.85 10.57,-1.82c3.44,-0.96 6.69,-2.43 10.09,-3.52c2.84,-0.91 5.8,-1.6 8.81,-1.51c3.13,0.09 6.13,1.11 9.14,1.86c3.35,0.83 7.95,0.05 9.43,3.89c1.4,3.62 0.77,7.81 1.01,11.6c0.4,6.14 2.45,12.12 3.49,18.17c0.97,5.65 1.28,11.35 0.57,17.05c-1.22,9.87 -5.07,20.12 -12.92,26.6c-2.12,1.76 -4.45,3.15 -6.9,4.29c3.06,-0.05 6.12,-0.27 9.1,-0.94c18.03,-4 28.74,-22.39 27.67,-40.13c-0.03,-0.47 -0.04,-1.01 0.3,-1.34c0.17,-0.17 0.41,-0.25 0.64,-0.32c4.01,-1.33 7.51,-3.12 8.81,-7.52C385.4,184.78 385.44,182.78 384.53,181.17z"/>
<path android:fillColor="#464559" android:pathData="M320.24,161.91c-1.03,-1.69 -4.13,-1.63 -5.68,-0.97c-3.6,1.52 -8.82,5.79 -10,9.66c-0.19,0.64 -0.11,1.41 0.38,1.87c0.5,0.47 1.28,0.5 1.93,0.26c0.64,-0.23 1.17,-0.69 1.71,-1.11c2.39,-1.91 5.03,-3.5 7.85,-4.7c1.11,-0.47 2.27,-0.9 3.13,-1.75C320.42,164.34 320.87,162.94 320.24,161.91z"/>
<path android:fillColor="#464559" android:pathData="M342.67,161.22c1.03,-1.69 4.13,-1.63 5.68,-0.97c3.6,1.52 8.82,5.79 10,9.66c0.19,0.64 0.11,1.41 -0.38,1.87c-0.5,0.47 -1.28,0.5 -1.93,0.26c-0.64,-0.23 -1.17,-0.69 -1.71,-1.11c-2.38,-1.91 -5.03,-3.5 -7.85,-4.7c-1.11,-0.47 -2.27,-0.9 -3.13,-1.75C342.5,163.65 342.05,162.25 342.67,161.22z"/>
<path android:fillColor="#313042" android:pathData="M321.17,178.56c0,1.72 -1.4,3.12 -3.12,3.12c-1.72,0 -3.12,-1.4 -3.12,-3.12c0,-1.72 1.4,-3.12 3.12,-3.12C319.77,175.44 321.17,176.84 321.17,178.56z"/>
<path android:fillColor="#313042" android:pathData="M345.68,178.56c0,1.72 -1.4,3.12 -3.12,3.12s-3.12,-1.4 -3.12,-3.12c0,-1.72 1.4,-3.12 3.12,-3.12S345.68,176.84 345.68,178.56z"/>
<path android:fillColor="#CC835B" android:pathData="M330.44,172.89c0.24,3.58 0.6,7.17 0.74,10.8c0.04,1.82 0.19,3.61 -0.03,5.53c-0.21,1.89 -0.78,3.75 -1.74,5.45c-0.49,0.84 -1.08,1.64 -1.79,2.33c-0.71,0.71 -1.55,1.25 -2.23,1.74c-0.7,0.5 -1.28,1.02 -1.5,1.57c-0.23,0.52 -0.18,1.23 0.1,1.83c0.28,0.61 0.81,1.13 1.44,1.48c0.62,0.34 1.35,0.48 2.12,0.45c1.54,-0.1 3.11,-0.91 4.5,-1.93l0.01,-0.01c0.23,-0.17 0.56,-0.12 0.72,0.11c0.15,0.21 0.13,0.49 -0.04,0.66c-1.29,1.35 -2.95,2.52 -5.02,2.82c-2.06,0.35 -4.45,-0.71 -5.43,-2.76c-0.5,-1.01 -0.62,-2.26 -0.13,-3.4c0.51,-1.12 1.4,-1.79 2.15,-2.33c0.78,-0.55 1.47,-0.99 2.04,-1.55c0.58,-0.56 1.09,-1.21 1.51,-1.93c0.84,-1.43 1.34,-3.08 1.6,-4.76c0.24,-1.66 0.17,-3.48 0.18,-5.27c-0.05,-3.58 -0.2,-7.18 -0.22,-10.8c-0,-0.28 0.23,-0.52 0.51,-0.52C330.19,172.4 330.42,172.62 330.44,172.89z"/>
<path android:fillColor="#FFFFFF" android:pathData="M328.96,212.21c-2.07,0.52 -4.11,1.1 -6.07,1.83c-1.44,0.53 -1.74,0.17 -1.79,1.68c-0.03,0.81 0.76,2.02 1.17,2.68c0.98,1.59 2.44,2.97 4.16,3.73c3.07,1.43 6.9,1.1 9.68,-0.83c1.94,-1.35 3.3,-3.4 3.82,-5.7c0.37,-1.64 0.88,-6.31 -1.78,-5.6C335.16,210.79 332.03,211.44 328.96,212.21z"/>
<path android:fillColor="#E6F5FF" android:pathData="M370.27,193.75a12.21,12.21 0,1 0,17.26 -17.26a12.21,12.21 0,1 0,-17.26 17.26z"/>
<path android:fillColor="#226B9E" android:pathData="M378.91,185.11m-6.34,0a6.34,6.34 0,1 1,12.67 0a6.34,6.34 0,1 1,-12.67 0"/>
<path android:fillColor="#E6F5FF" android:pathData="M378.22,178.37c-1.36,-0.07 -2.44,-1.19 -2.44,-2.56c-0.04,-7.07 -0.08,-14.38 -1.35,-21.36c-1.39,-7.65 -4.11,-13.91 -8.08,-18.62c-3.55,-4.2 -8.07,-7.47 -13.14,-9.6c-5.8,-2.43 -12.13,-3.38 -18.39,-3.42c-9.57,-0.05 -19.14,1.91 -28.2,4.91c-0.99,0.33 -1.96,0.72 -2.95,1.03c-0.22,0.07 -0.45,0.13 -0.66,0.04c-0.25,-0.11 -0.37,-0.4 -0.35,-0.67c0.07,-1.18 1.3,-2.45 2.06,-3.26c2.97,-3.19 7.52,-4.16 11.61,-5.14c5.57,-1.34 11.34,-1.97 17.06,-2.06c6.63,-0.1 13.33,0.7 19.6,2.94c6.71,2.39 12.7,6.45 17.3,11.9c4.56,5.4 7.66,12.48 9.22,21.03c1.35,7.42 1.39,14.96 1.44,22.25c0.01,1.43 -1.14,2.59 -2.57,2.6C378.33,178.38 378.27,178.38 378.22,178.37z"/>
<path android:fillColor="#E6F5FF" android:pathData="M347.91,226c-0.65,0 -1.26,-0.41 -1.47,-1.07c-0.27,-0.81 0.18,-1.69 0.99,-1.95c6.92,-2.26 15.54,-5.07 20.7,-11.26c4.42,-5.3 5.99,-12.6 7.38,-19.03c0.18,-0.84 1.01,-1.37 1.84,-1.19c0.84,0.18 1.37,1 1.19,1.84c-1.46,6.79 -3.12,14.48 -8.03,20.37c-5.74,6.88 -14.82,9.84 -22.12,12.23C348.24,225.98 348.07,226 347.91,226z"/>
<path android:fillColor="#226B9E" android:pathData="M346.51,229.58l-2.65,0.73c-2.46,0.68 -5.01,-0.76 -5.69,-3.22l0,0c-0.68,-2.46 0.76,-5.01 3.22,-5.69l2.65,-0.73c2.46,-0.68 5.01,0.76 5.69,3.22l0,0C350.42,226.35 348.98,228.89 346.51,229.58z"/>
<path android:fillColor="#1A5680" android:pathData="M270.82,415.37l9.57,-61.25l-1.94,61.25z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="32dp" android:viewportHeight="512"
android:viewportWidth="448" android:width="30dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@color/grey" android:pathData="M224.1,141c-63.6,0 -114.9,51.3 -114.9,114.9s51.3,114.9 114.9,114.9S339,319.5 339,255.9 287.7,141 224.1,141zM224.1,330.6c-41.1,0 -74.7,-33.5 -74.7,-74.7s33.5,-74.7 74.7,-74.7 74.7,33.5 74.7,74.7 -33.6,74.7 -74.7,74.7zM370.5,136.3c0,14.9 -12,26.8 -26.8,26.8 -14.9,0 -26.8,-12 -26.8,-26.8s12,-26.8 26.8,-26.8 26.8,12 26.8,26.8zM446.6,163.5c-1.7,-35.9 -9.9,-67.7 -36.2,-93.9 -26.2,-26.2 -58,-34.4 -93.9,-36.2 -37,-2.1 -147.9,-2.1 -184.9,0 -35.8,1.7 -67.6,9.9 -93.9,36.1s-34.4,58 -36.2,93.9c-2.1,37 -2.1,147.9 0,184.9 1.7,35.9 9.9,67.7 36.2,93.9s58,34.4 93.9,36.2c37,2.1 147.9,2.1 184.9,0 35.9,-1.7 67.7,-9.9 93.9,-36.2 26.2,-26.2 34.4,-58 36.2,-93.9 2.1,-37 2.1,-147.8 0,-184.8zM398.8,388c-7.8,19.6 -22.9,34.7 -42.6,42.6 -29.5,11.7 -99.5,9 -132.1,9s-102.7,2.6 -132.1,-9c-19.6,-7.8 -34.7,-22.9 -42.6,-42.6 -11.7,-29.5 -9,-99.5 -9,-132.1s-2.6,-102.7 9,-132.1c7.8,-19.6 22.9,-34.7 42.6,-42.6 29.5,-11.7 99.5,-9 132.1,-9s102.7,-2.6 132.1,9c19.6,7.8 34.7,22.9 42.6,42.6 11.7,29.5 9,99.5 9,132.1s2.7,102.7 -9,132.1z"/>
</vector>

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -0,0 +1,358 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="100dp"
android:height="100dp"
android:viewportWidth="500"
android:viewportHeight="500">
<path
android:pathData="M18.47,363.82a231.53,125.73 0,1 0,463.06 0a231.53,125.73 0,1 0,-463.06 0z"
android:fillColor="#fafafa"/>
<path
android:pathData="M107.25,323.3c5.52,0.54 11.18,1.08 16.56,-0.27 4.13,-1 7.95,-3.16 12.14,-3.92 17.14,-3.1 31.85,18.8 49.13,16.57 6.22,-0.8 14.15,-8 20.31,-12.29 5.76,3 14.65,-4.19 22.41,-9.61 9.41,-6.58 15.58,-12.28 23.82,-17.52a73.91,73.91 0,0 1,13.74 -7.11,32.72 32.72,0 0,1 8.79,-1.68c2.67,-0.19 5.88,-0.42 7.55,-0.73 2.28,-0.43 4.5,-1.08 5.79,-2.45a3.38,3.38 0,0 0,1 -3.48c-0.45,-1.24 -1.91,-1.74 -3.19,-2a50.31,50.31 0,0 0,-17.73 -0.61C261.7,279 256,281 250.36,283c-10.27,3.62 -20,8.63 -30.36,12 -5.11,1.67 -10.79,2.92 -15.76,0.86 -5.65,-2.36 -8.9,-8.39 -14.14,-11.56 -6.18,-3.75 -14,-3 -21.14,-1.78 -13.23,2.18 -26.81,5.46 -37.32,13.78 -4.16,3.29 -7.33,7.91 -12.19,10a66.56,66.56 0,0 0,-15.21 8.67,8 8,0 0,0 -3,3.7C100.06,322.57 104.53,323 107.25,323.3Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M328.19,398c15.95,-9.21 81.91,30.09 81.91,30.09l7.45,-12.9S371.33,378.81 354.79,366C346.24,359.41 334,347.7 327,342.56a101.19,101.19 0,0 0,-25.93 -14.08c63,-27.71 64.92,-59.35 44.62,-82.21 -8.52,-9.59 -30.2,-22 -49.15,-26.75 -4.39,-5.47 -6.45,-8.22 -24.88,-14.24 -11,-3.6 -20.21,-9.41 -30.72,-10.65a56.47,56.47 0,0 0,-26.13 6.49,64.78 64.78,0 0,1 22.29,-0.85c7.39,1.91 11.66,5.13 14,8.43a93.71,93.71 0,0 0,-26.46 -3.76c-12.69,2.11 -16.66,6 -24.06,12.43 0,0 7.89,-4.83 21.33,-5.41a74,74 0,0 1,20.55 4.73s-12.35,0.15 -21.41,1.16c-8.37,2.12 -13.29,7 -17.78,13.44 0,0 5.68,-5.32 18.08,-6.21a231.87,231.87 0,0 1,32.44 5s-6.79,4.38 -12.31,6.09c-9.49,0.46 -12.73,0.28 -21.54,3.49 10.5,-0.43 16.91,3.74 30,1.39 6.12,-1.1 15,-1.56 22.26,-4.31 0,0 20.23,3.53 31.65,9.11 12.35,6 23.15,18.54 24,33 0.71,11.54 -11.88,34.79 -36.49,46.64 -10.43,-2.78 -20.78,-2.88 -29,-2.29 0,0 -3.79,-11.39 -29.15,-8.92 0,0 16.07,5.41 8.81,12.51 0,0 -13.28,3.94 -21.84,8.89a71.54,71.54 0,0 0,-15.39 12.61c-12.3,4.18 -21.67,-5.09 -21.67,-5.09C179,357.84 198.7,360 198.7,360a19.39,19.39 0,0 0,2.19 13.73h0c-29.48,8.8 -68,2.6 -86.46,-3.29 -22,-7 -36.4,-18.24 -40.11,-27.33 -3.44,-8.4 0.27,-20.41 0.27,-20.41 7.53,-2.48 14.91,-6.82 19.37,-9.47 9.6,-5.7 8.55,-12.6 14,-17.81 -9,3.08 -12.62,6.54 -17.63,11.22 -5.14,2.07 -17.63,3.54 -17.63,3.54C74,302.9 78.73,295.53 82.08,290a71,71 0,0 1,23.19 -12.54c-12,-0.61 -26.8,4.73 -32.08,8.65 -5.66,4.21 -10,11.6 -10,11.6 -0.81,-5.12 0.5,-9.37 2.94,-14 9.63,-8.75 24.36,-13 24.36,-13 -13.27,0.91 -26.94,5.05 -34.2,11.58 -6.58,6.82 -9.77,17.37 -9.77,17.37 -1.84,-3.46 -1.9,-7.61 -1.5,-12.28 2.9,-7.91 16.17,-15.74 16.17,-15.74 -11.2,2.15 -22,8.21 -27.87,15.3 -2.85,6 -3.2,14 -3,21.16 0.41,12.62 1.23,14.5 6.68,19.38 -1.27,11.9 8.09,28.69 19,37.41 27.27,21.72 73.11,39.23 149.56,15.34h0c5.31,5.62 13.82,11.39 26.59,17.12 8.9,4 29.18,11.09 40.63,16C295,422.86 358,449.55 358,449.55l22.35,-4.3S312.23,407.17 328.19,398ZM262.85,328s12.28,2.22 5.79,9 -19.27,5.52 -19.27,5.52ZM207,360.23l25.17,-7.78s2.21,7.38 -9.56,11.13S207,360.23 207,360.23ZM312.15,357.87c-10.66,-4.06 -23.85,-5.16 -23.85,-5.16a13.84,13.84 0,0 1,7.06 8.05c-8.09,-2.74 -19,-2.64 -19,-2.64a45.6,45.6 0,0 1,9 9c-5,-1.79 -16.34,-3.27 -16.34,-3.27 3.67,2.71 6.08,9.89 6.08,9.89a121.58,121.58 0,0 1,-17.27 -5.61c2.64,2.57 5.42,12 5.42,12l-14.35,-3.64c0.43,4.82 9.82,12.24 9.82,12.24s-8.13,0.35 -20.17,-4.54 -12,-14.75 -12,-14.75c4.94,5.54 13.15,5.44 13.15,5.44 -4.22,-3.15 -4.14,-8.84 -4.14,-8.84a22,22 0,0 0,13 2.49c-2.83,-3.63 -2.14,-9.13 -2.14,-9.13 2.82,3.51 8.59,3.71 8.59,3.71s-2.08,-4.06 -0.22,-6.77a33.77,33.77 0,0 1,11.46 2.63s-2.21,-6.07 -7.69,-7.14c0,0 11.57,-0.8 18.74,1.45 0,0 0.14,-4.31 -5.29,-8.35 0,0 6.51,-1.27 16.12,2 0,0 0.16,-4.74 -9.43,-7.59 0,0 17.08,0 25.55,6.92S312.14,357.87 312.14,357.87Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M54.02,175.18l2.51,1.5l93.78,-54.4l-2.5,-1.5l-93.79,54.4z"
android:fillColor="#fafafa"/>
<path
android:pathData="M147.81,120.78l-91.28,52.95l0,-77.45l91.28,-52.93l0,77.43z"
android:fillColor="#fff"/>
<path
android:pathData="M102.24,67.13l0,80.39l4.73,-2.73l0,-80.39l-4.73,2.73z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M99.87,65.76l2.37,1.37l0,80.39l-2.37,-1.37l0,-80.39z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M155.05,33.69 L51.8,93.55v91.32L155.05,125ZM150.31,122.28 L56.53,176.68L56.53,96.28l93.78,-54.4Z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M150.31,122.28l-2.5,-1.5l0,-77.43l2.5,-1.47l0,80.4z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M155.05,33.69l-2.55,-1.46l-103.25,59.86l2.55,1.46l103.25,-59.86z"
android:fillColor="#fafafa"/>
<path
android:pathData="M49.25,92.09l2.55,1.46l0,91.32l-2.55,-1.46l0,-91.32z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M102.24,69.86l4.72,-2.73l0,2.73l-4.72,2.73l0,-2.73z"
android:fillColor="#e0e0e0"/>
<path
android:fillColor="#FF000000"
android:pathData="M102.24,72.59l-2.37,-1.37l2.37,-1.36l0,2.73z"
android:strokeAlpha="0.15"
android:fillAlpha="0.15"/>
<path
android:pathData="M377.88,98.53l-1.8,1.08l-37.06,-21.39l1.81,-1.08l37.05,21.39z"
android:fillColor="#fafafa"/>
<path
android:pathData="M340.83,77.14l35.25,20.35l0,-36.92l-35.25,-20.33l0,36.9z"
android:fillColor="#fff"/>
<path
android:pathData="M335.61,80.18l43.88,25.33L379.49,58.61L335.61,33.28ZM339.02,39.18 L376.08,60.57v39L339,78.22Z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M339.02,78.22l1.81,-1.08l0,-36.9l-1.81,-1.06l0,39.04z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M335.62,33.28l1.83,-1.05l43.87,25.33l-1.83,1.05l-43.87,-25.33z"
android:fillColor="#fafafa"/>
<path
android:pathData="M381.32,57.56l-1.83,1.05l0,46.9l1.83,-1.05l0,-46.9z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M368.87,92l-1.41,-15.87 -0.29,-0.16 0,15.06s-4.71,-2.8 -4.86,-2.81c0,0 -0.91,-4 -1.31,-5.33a11.22,11.22 0,0 0,-0.94 -2.55,5.22 5.22,0 0,0 -1.84,-2l-2.54,-1.46c-1.27,-0.74 -2.15,-0.48 -2.68,0.76S351.49,82 351.49,82l-4.93,-2.85L348,68.9l-0.2,-0.2c-0.46,1.5 -1.92,10 -1.92,10l-2.5,-1.44S345.59,64.46 346,63a2.35,2.35 0,0 1,1.09 -1.64c0.7,-0.27 1.91,0.4 2.77,0.91 1.2,0.72 2.4,1.35 3.61,2.09a9.49,9.49 0,0 1,1.37 1.16c0.21,0.2 0.33,0.3 0.42,0.06s0.2,-0.46 0.3,-0.68c0.79,-1.67 2.07,-2 3.84,-1 2,1.1 4.72,2.7 6.68,3.85a8,8 0,0 1,3.64 4.85c0.66,2.32 2,21.07 2,21.07ZM354.54,72.13a5.71,5.71 0,0 0,2.3 4.51c1.36,0.81 2.44,0.07 2.46,-1.69A5.7,5.7 0,0 0,357 70.4C355.62,69.58 354.56,70.32 354.54,72.13Z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M362.34,64.41A7.94,7.94 0,0 1,359 58c0,-2.42 1.55,-3.53 3.37,-2.44A8,8 0,0 1,365.71 62C365.69,64.42 364.18,65.49 362.34,64.41Z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M354.92,59.42c0,2.49 -1.48,3.62 -3.33,2.55a8,8 0,0 1,-3.36 -6.4c0,-2.5 1.49,-3.61 3.38,-2.52S354.91,56.94 354.92,59.42Z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M354.32,81.33v2.26l-0.94,-0.54s0.58,-1.29 0.85,-1.78Z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M359.52,86.6V84.34h0.08c0.27,0.81 0.85,2.78 0.85,2.78Z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M445.11,148.83l-1.81,1.08l-37.05,-21.39l1.8,-1.08l37.06,21.39z"
android:fillColor="#fafafa"/>
<path
android:pathData="M408.05,127.44l35.25,20.34l0,-36.91l-35.25,-20.33l0,36.9z"
android:fillColor="#fff"/>
<path
android:pathData="M402.84,130.48l43.87,25.33v-46.9L402.84,83.58ZM406.24,89.48 L443.3,110.87v39l-37.06,-21.39Z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M406.25,128.52l1.8,-1.08l0,-36.9l-1.81,-1.06l0.01,39.04z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M402.84,83.58l1.83,-1.05l43.87,25.33l-1.83,1.05l-43.87,-25.33z"
android:fillColor="#fafafa"/>
<path
android:pathData="M448.54,107.86l-1.83,1.05l0,46.9l1.83,-1.05l0,-46.9z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M409.43,126.34l32.49,18.76l0,-9.38l-8.12,-18.77l-5.06,4.69l1.82,7.87l-11.22,-24l-9.91,11.44l0,9.39z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M429,107.9a5.3,5.3 0,0 1,2.41 4.16c0,1.53 -1.08,2.15 -2.41,1.39a5.31,5.31 0,0 1,-2.4 -4.17C426.64,107.75 427.71,107.13 429,107.9Z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M341.89,445.77a7.16,7.16 0,0 0,-0.09 3.8c0.36,0.76 2.64,3.28 7.29,4.19s11,0 13.78,-0.17 11.39,0.89 14.14,1.26c4.31,0.58 7.63,-0.36 9.24,-1.92a2.85,2.85 0,0 0,0.64 -2.28,11.24 11.24,0 0,0 -0.45,-3.07Z"
android:fillColor="#37474f"/>
<path
android:pathData="M380.24,397c0.63,8.33 1.42,28.13 2.08,39.12 0.13,2.12 -1.87,2.63 -3.9,3.32 -1.51,0.51 -7.75,0.9 -9.46,-1.66 -1.83,-4.44 -8.06,-29.88 -8.06,-29.88Z"
android:fillColor="#ffbda7"/>
<path
android:pathData="M386.73,447.55c-0.23,-1.51 -0.54,-3 -0.88,-4.52 -0.53,-2.32 -1.15,-4.62 -1.77,-6.91a2.63,2.63 0,0 0,-1.9 -2.27c0.05,0.79 0.09,1.53 0.14,2.24 0.12,2.12 -1.87,2.63 -3.9,3.32a14.67,14.67 0,0 1,-5.15 0.27l-0.23,-0.11a1.92,1.92 0,0 1,-0.93 -1.25,4.71 4.71,0 0,1 -0.09,-1.59 3,3 0,0 0,-0.36 -2.11c-0.52,-0.64 -1.5,-0.67 -2.22,-1a8.09,8.09 0,0 1,-2.25 -1.49,0.56 0.56,0 0,0 -0.32,-0.19 0.48,0.48 0,0 0,-0.32 0.09,2.25 2.25,0 0,0 -0.9,1.32c-0.16,0.52 -0.21,1.07 -0.36,1.6a4.71,4.71 0,0 1,-0.5 1.18,5.55 5.55,0 0,1 -2,1.39 27,27 0,0 1,-8.93 1.77,29.4 29.4,0 0,0 -6.94,1 10.57,10.57 0,0 0,-3.37 1.69A5.18,5.18 0,0 0,341.9 447c0.46,1.94 2.39,3 4.28,3.8a23,23 0,0 0,7 1.43c2.83,0.25 6.73,-0.29 9.56,-0.48a66.27,66.27 0,0 1,10.94 0.68c3.6,0.68 6.07,0.84 9.32,-0.19 1.4,-0.44 3.34,-1.51 3.72,-3.08A4,4 0,0 0,386.73 447.55Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M386.73,447.55c-0.23,-1.51 -0.54,-3 -0.88,-4.52 -0.53,-2.32 -1.15,-4.62 -1.77,-6.91a2.63,2.63 0,0 0,-1.9 -2.27c0.05,0.79 0.09,1.53 0.14,2.24 0.12,2.12 -1.87,2.63 -3.9,3.32a14.67,14.67 0,0 1,-5.15 0.27l-0.23,-0.11a1.92,1.92 0,0 1,-0.93 -1.25,4.71 4.71,0 0,1 -0.09,-1.59 3,3 0,0 0,-0.36 -2.11c-0.52,-0.64 -1.5,-0.67 -2.22,-1a8.09,8.09 0,0 1,-2.25 -1.49,0.56 0.56,0 0,0 -0.32,-0.19 0.48,0.48 0,0 0,-0.32 0.09,2.25 2.25,0 0,0 -0.9,1.32c-0.16,0.52 -0.21,1.07 -0.36,1.6a4.71,4.71 0,0 1,-0.5 1.18,5.55 5.55,0 0,1 -2,1.39 27,27 0,0 1,-8.93 1.77,29.4 29.4,0 0,0 -6.94,1 10.57,10.57 0,0 0,-3.37 1.69A5.18,5.18 0,0 0,341.9 447c0.46,1.94 2.39,3 4.28,3.8a23,23 0,0 0,7 1.43c2.83,0.25 6.73,-0.29 9.56,-0.48a66.27,66.27 0,0 1,10.94 0.68c3.6,0.68 6.07,0.84 9.32,-0.19 1.4,-0.44 3.34,-1.51 3.72,-3.08A4,4 0,0 0,386.73 447.55Z"
android:strokeAlpha="0.35"
android:fillAlpha="0.35"/>
<path
android:pathData="M398.09,411.85c0.05,2.09 0,4 1.08,6.18 1.57,3.15 4.31,4.37 6,5.49a43.52,43.52 0,0 1,4.95 4.59c1.68,1.63 2.13,2.77 4.64,4.41 1.56,1 5.67,1.56 8,0.25 1.84,-1 2.44,-1.76 2,-4.71s-10,-2.92 -10,-2.92Z"
android:fillColor="#37474f"/>
<path
android:pathData="M422.56,419.38c0.83,0.2 1.2,1.63 1.63,4.52 0.34,2.18 1.66,5.28 -1.37,7 -2.44,1.39 -6.61,1.1 -8.57,-0.78 -2.44,-2.34 -4.15,-4.45 -7.57,-7.26 -3,-2.43 -6.79,-3.34 -8.52,-8.68 -0.8,-2.47 0,-5 2.54,-5.91 3.52,-1.27 5.53,-0.44 11.87,2.59C414.73,411.9 421.72,419.18 422.56,419.38Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M422.56,419.38c0.83,0.2 1.2,1.63 1.63,4.52 0.34,2.18 1.66,5.28 -1.37,7 -2.44,1.39 -6.61,1.1 -8.57,-0.78 -2.44,-2.34 -4.15,-4.45 -7.57,-7.26 -3,-2.43 -6.79,-3.34 -8.52,-8.68 -0.8,-2.47 0,-5 2.54,-5.91 3.52,-1.27 5.53,-0.44 11.87,2.59C414.73,411.9 421.72,419.18 422.56,419.38Z"
android:strokeAlpha="0.35"
android:fillAlpha="0.35"/>
<path
android:pathData="M418.89,376.81c2.48,18.43 3.24,26.95 4.12,43.67 -0.06,1.59 -8.08,3.83 -11.2,-0.47 -0.2,-0.32 -17.36,-51.38 -17.36,-51.38Z"
android:fillColor="#ffbda7"/>
<path
android:pathData="M365.32,292.34c0.53,5 -1.45,11.48 -4.69,23.29 -2.88,10.48 -6.86,38.64 -9.17,49.52 -1.45,6.81 -0.35,10.78 2.07,20s12.36,43.95 12.36,43.95a20.55,20.55 0,0 0,16.37 -2c-1.06,-21.62 -1.17,-40.46 -6.3,-53.09l13.47,-39.42s2.57,22.49 3.63,29.31c0.9,5.78 15.67,48.64 15.67,48.64s8.59,3 14,-2c-0.84,-15.49 -1.12,-23.13 -2,-33.47C419.86,367 416.64,362 416.64,362s3.5,-31.21 5.12,-45.88c1.82,-16.46 1.4,-23 -4,-33.81C416.92,282 365.32,292.34 365.32,292.34Z"
android:fillColor="#455a64"/>
<path
android:pathData="M389.43,334.6l6.66,-17.9s9.45,-0.91 15.28,-5.47c0,0 -1.64,6.55 -12.76,9.65l-7.11,16.24 1.56,26.79C391.7,354.11 390.43,345.56 389.43,334.6Z"
android:fillColor="#37474f"/>
<path
android:pathData="M357.74,209.81l7.45,14.15l16.49,-6.58l-6.16,-15.99l-17.78,8.42z"
android:fillColor="#ffbda7"/>
<path
android:pathData="M339.6,193.4s-2.06,7.83 -1.46,8.27 4.05,-0.28 4.05,-0.28Z"
android:fillColor="#f0997a"/>
<path
android:pathData="M344.14,169.1c-7.17,3.86 -8.28,9.08 -5.45,22.81A83.93,83.93 0,0 0,342.74 205c2.44,5.6 4.32,6.81 6.25,7.44 1.6,0.52 8.71,-1.08 11.61,-2.88 3.63,-2.25 11.62,-8 13.92,-15.66 2.7,-9 0.28,-18.18 -5.49,-22.14C355.53,162.48 347.06,167.52 344.14,169.1Z"
android:fillColor="#ffbda7"/>
<path
android:pathData="M349,212.44c1.2,0.38 5.4,-0.1 9.21,-1.75l-1.32,-2.51a22.35,22.35 0,0 1,-4.12 3.11A7.7,7.7 0,0 1,349 212.44Z"
android:fillColor="#f0997a"/>
<path
android:pathData="M343.4,185.94c0.53,-0.1 1.05,-0.22 1.57,-0.33 0,0 1.47,1.71 1.67,1.86a10.12,10.12 0,0 0,2.32 1.12c0.72,0.32 0.56,0.37 0.62,1.26a10.83,10.83 0,0 0,0.46 2.25,3 3,0 0,0 0.85,1.55 1.12,1.12 0,0 0,1.93 -0.61,14.49 14.49,0 0,1 0.8,-3.24 5.43,5.43 0,0 1,2.73 -2.79c4.65,-1.94 7.1,4.16 5.94,7.33 -1.89,5.19 -5.4,3.09 -5.4,3.09s0.92,5.41 8.06,8.67c1.37,0.62 3.37,0.36 4.77,0.07s5.55,-1.35 6.41,-3.18c0.36,-5.39 4.12,-14.43 4.84,-18.92a23,23 0,0 0,0.31 -4.23c0,-1.07 -0.4,-2 -0.53,-3.07a10.87,10.87 0,0 0,-3.1 -6.73,13.63 13.63,0 0,1 -2.29,-2.33 18.06,18.06 0,0 1,-1.3 -3.77,9.74 9.74,0 0,0 -6.11,-5.58 19.63,19.63 0,0 0,-8.46 -0.62c-2.84,0.31 -5.64,0.91 -8.48,1.17a35.05,35.05 0,0 1,-8.8 -0.31c-1,-0.17 -2.28,-0.34 -3,0.4a2.8,2.8 0,0 0,-0.69 1.92,8.8 8.8,0 0,0 1.79,5.77l-9.34,-0.38a3.17,3.17 0,0 0,-1.37 0.15c-1,0.45 -1.23,1.8 -1.12,2.9a10.22,10.22 0,0 0,7.72 8.68c-2,0.51 -2.88,3.09 -2.07,5a6,6 0,0 0,4.85 3.23A14,14 0,0 0,343.4 185.94Z"
android:fillColor="#263238"/>
<path
android:pathData="M420.66,233.07s8.87,13.7 10.54,16.31 3.92,7.72 -3.89,13.92a67.67,67.67 0,0 1,-15 9.09l-8.5,-15.73Z"
android:fillColor="#ffbda7"/>
<path
android:pathData="M392.08,209.78c5.91,-1.2 10.95,0.3 14.92,4.7s16.84,21.24 18.56,23.81c0,0 -0.43,8.37 -11.48,13.09L393.59,229Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M392.08,209.78c5.91,-1.2 10.95,0.3 14.92,4.7s16.84,21.24 18.56,23.81c0,0 -0.43,8.37 -11.48,13.09L393.59,229Z"
android:strokeAlpha="0.15"
android:fillAlpha="0.15"/>
<path
android:pathData="M422.89,234.64l-1,-1.28a1.68,1.68 0,0 1,1.84 0c0.86,0.64 4.45,6.26 5,7.27s1.46,6.11 -3.47,10.75c-3.79,3.56 -9.83,4.55 -11,3.86 -2.27,-1.39 -5.77,-7.82 -6.08,-8.84a3,3 0,0 1,0.57 -2.2l1,1.27s4.09,0.62 8.75,-2.73A9.78,9.78 0,0 0,422.89 234.64Z"
android:fillColor="#0298E1"/>
<path
android:pathData="M422.89,234.64l-1,-1.28a1.68,1.68 0,0 1,1.84 0c0.86,0.64 4.45,6.26 5,7.27s1.46,6.11 -3.47,10.75c-3.79,3.56 -9.83,4.55 -11,3.86 -2.27,-1.39 -5.77,-7.82 -6.08,-8.84a3,3 0,0 1,0.57 -2.2l1,1.27s4.09,0.62 8.75,-2.73A9.78,9.78 0,0 0,422.89 234.64Z"
android:strokeAlpha="0.3"
android:fillColor="#fff"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M421.33,268c-2.65,-23.3 -9.7,-38.1 -13.15,-42.13l-2.11,17.19 2.28,2.49a2.13,2.13 0,0 0,-0.1 1.3,18.74 18.74,0 0,0 1.19,2.39l-5,7 -0.2,1.63 8.09,15A61.58,61.58 0,0 0,421.33 268Z"
android:strokeAlpha="0.15"
android:fillAlpha="0.15"/>
<path
android:pathData="M349.87,225.91 L363,219.3a21.87,21.87 0,0 0,11.45 -0.86c5.47,-2.19 5.26,-6.15 5.26,-6.15S393,208.62 396.05,210s8.52,6.8 12.8,16.94c8.1,19.17 11.23,49 13.48,66.22 -1.16,10.21 -33,22.15 -49,4.38 -2.65,4.13 -7.28,6.15 -9.89,5 0,0 2,-10.07 0.76,-18.65s-8.59,-28.23 -10.38,-36.14Z"
android:fillColor="#0298E1"/>
<path
android:pathData="M298.12,260.65c2.06,-1.56 5.24,-3.4 6.39,-3.53a6.92,6.92 0,0 1,4.41 1.81c1.3,1.15 4.54,3.56 4.34,4.9s-3.53,4.26 -3.53,4.26Z"
android:fillColor="#ffbda7"/>
<path
android:pathData="M306.84,257.62a6.33,6.33 0,0 0,0.59 3c0.56,1.53 1.63,3.91 0.77,4.28 -0.6,-0.12 -5.19,-3 -5.19,-3s1.74,-0.89 1.69,-2.29c0,0 0.37,1.41 -0.16,2l3.15,2.05s-0.84,-2.7 -1.05,-3.92C306.36,258.11 306.84,257.62 306.84,257.62Z"
android:fillColor="#f0997a"/>
<path
android:pathData="M300.55,260.76a1.8,1.8 0,0 0,-0.8 -0.5,2 2,0 0,0 -1.63,0.39 3.13,3.13 0,0 0,-1.13 2,9.48 9.48,0 0,0 0,2.38 17.7,17.7 0,0 0,0.53 3.55c0.15,0.51 0.47,0.95 0.64,1.43a4.42,4.42 0,0 1,0 1.54c0,1.33 0,3 0.75,4 1.06,1.43 7.56,5 9.28,5.65 2.34,0.92 3.81,1.63 7,2.76 5.79,2.07 26,6.7 34.9,6.67 7.49,0 10.13,-0.83 11.06,-8.49 1.46,-12 0.74,-30.81 0.74,-30.81 0.36,-15.88 -6.43,-24.12 -13.38,-24.35 -4.05,7.24 -7.54,9.69 -6.95,17.72 1.15,15.62 1.53,28 1.53,28s-7.9,0.07 -13.16,-0.2 -9.6,-0.31 -12.73,-3.08c-1.08,-1 -1.47,-3.45 -2.69,-5.23 -1.59,-2.32 -3.2,-4.59 -4.76,-6.94a2.23,2.23 0,0 0,-1.23 -1.08c-0.83,-0.18 -1.56,0.66 -1.7,1.49a5.75,5.75 0,0 0,0.45 2.79c0.33,1 0.67,2 1,3 0.16,0.46 0.29,1 -0.06,1.38 -1,1 -2.7,-0.49 -3.53,-1a33.63,33.63 0,0 1,-3.57 -2.61C300.91,261.13 300.74,260.94 300.55,260.76Z"
android:fillColor="#ffbda7"/>
<path
android:pathData="M343.08,272.8c1.54,6.66 5.43,8.67 5.43,8.67s-6.34,1.26 -9.09,-8.66Z"
android:fillColor="#f0997a"/>
<path
android:pathData="M350,225.83c-7.44,3.82 -10.21,8.1 -10.15,15.12 0,5.56 2.37,25.9 2.37,25.9s0.9,3.32 7.12,6.22c6.61,3.09 12.68,-1 13.14,-3.13l0.22,-20.28S365.75,230.5 350,225.83Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M350,225.83c-7.44,3.82 -10.21,8.1 -10.15,15.12 0,5.56 2.37,25.9 2.37,25.9s0.9,3.32 7.12,6.22c6.61,3.09 12.68,-1 13.14,-3.13l0.22,-20.28S365.75,230.5 350,225.83Z"
android:strokeAlpha="0.15"
android:fillAlpha="0.15"/>
<path
android:pathData="M342.09,264.14c-1,0.08 -1.22,0.66 -1.07,3s0.63,5.46 0.63,5.46a12.06,12.06 0,0 0,2.09 6c1.94,2.55 7.64,4 11.27,4.16s7.64,-0.37 8,-3.33c0.48,-3.73 0.38,-9 0.44,-10.31a1.87,1.87 0,0 0,-0.95 -1.82l0,2.05a18.26,18.26 0,0 1,-10.27 1.41c-9.06,-1.61 -10,-4.74 -10,-4.74Z"
android:fillColor="#0298E1"/>
<path
android:pathData="M342.09,264.14c-1,0.08 -1.22,0.66 -1.07,3s0.63,5.46 0.63,5.46a12.06,12.06 0,0 0,2.09 6c1.94,2.55 7.64,4 11.27,4.16s7.64,-0.37 8,-3.33c0.48,-3.73 0.38,-9 0.44,-10.31a1.87,1.87 0,0 0,-0.95 -1.82l0,2.05a18.26,18.26 0,0 1,-10.27 1.41c-9.06,-1.61 -10,-4.74 -10,-4.74Z"
android:strokeAlpha="0.3"
android:fillColor="#fff"
android:fillAlpha="0.3"/>
<path
android:pathData="M357.65,222c0.88,-0.44 3,2.26 10.28,2 3.81,-0.15 11.9,-3.56 14.41,-7.25 2.63,-3.88 1.9,-5.55 1.9,-5.55l-5.66,-4.65c-0.84,-0.69 -1.34,-0.63 -1.34,-0.63l0.53,1.36s0.16,2.14 -4.3,5a17.9,17.9 0,0 1,-12.89 2.94l-0.89,-1.68s-1.25,0 -2.64,3.37c-0.8,1.91 -2.42,6.59 -2.42,6.59Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M357.65,222c0.88,-0.44 3,2.26 10.28,2 3.81,-0.15 11.9,-3.56 14.41,-7.25 2.63,-3.88 1.9,-5.55 1.9,-5.55l-5.66,-4.65c-0.84,-0.69 -1.34,-0.63 -1.34,-0.63l0.53,1.36s0.16,2.14 -4.3,5a17.9,17.9 0,0 1,-12.89 2.94l-0.89,-1.68s-1.25,0 -2.64,3.37c-0.8,1.91 -2.42,6.59 -2.42,6.59Z"
android:strokeAlpha="0.15"
android:fillAlpha="0.15"/>
<path
android:pathData="M334,220.7a0.39,0.39 0,0 1,-0.25 -0.7l9,-7.23a0.39,0.39 0,0 1,0.49 0.61l-9,7.23A0.38,0.38 0,0 1,334 220.7Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M343.67,225.61h-0.08a0.4,0.4 0,0 1,-0.3 -0.47l1.3,-5.93a0.39,0.39 0,0 1,0.47 -0.3,0.4 0.4,0 0,1 0.3,0.47l-1.3,5.93A0.4,0.4 0,0 1,343.67 225.61Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M345.41,217.68h-0.08a0.39,0.39 0,0 1,-0.31 -0.47l0.46,-2.08a0.39,0.39 0,0 1,0.47 -0.3,0.4 0.4,0 0,1 0.3,0.47l-0.46,2.08A0.38,0.38 0,0 1,345.41 217.68Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M328.15,211.51a0.39,0.39 0,0 1,0 -0.78l2.49,-0.25a0.39,0.39 0,0 1,0.08 0.78l-2.5,0.25Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M333.18,211a0.4,0.4 0,0 1,-0.4 -0.36,0.41 0.41,0 0,1 0.36,-0.43l8.34,-0.83a0.39,0.39 0,1 1,0.07 0.78l-8.34,0.84Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M340,221.13a0.38,0.38 0,0 1,-0.22 -0.07,0.4 0.4,0 0,1 -0.1,-0.55l3.58,-5.18a0.39,0.39 0,0 1,0.55 -0.1,0.39 0.39,0 0,1 0.1,0.54L340.31,221A0.4,0.4 0,0 1,340 221.13Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M331.89,216.09a0.39,0.39 0,0 1,-0.14 -0.76l4.86,-2a0.41,0.41 0,0 1,0.52 0.22,0.39 0.39,0 0,1 -0.22,0.51l-4.87,2A0.4,0.4 0,0 1,331.89 216.09Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M338.84,213.26a0.39,0.39 0,0 1,-0.36 -0.24,0.4 0.4,0 0,1 0.21,-0.52l1.48,-0.6a0.39,0.39 0,0 1,0.51 0.22,0.39 0.39,0 0,1 -0.22,0.51l-1.47,0.6A0.4,0.4 0,0 1,338.84 213.26Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M339.78,207.81h-0.09l-5.93,-1.4a0.39,0.39 0,0 1,-0.29 -0.47,0.39 0.39,0 0,1 0.47,-0.29l5.93,1.4a0.39,0.39 0,0 1,-0.09 0.77Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M399.09,125.77l-10.81,12.3l3.17,4.19l-8.28,4.11l3.2,3.36l-8.82,6.75l17,-5.28l-3.67,-3.62l11.31,-3.62l-4.62,-5.65l10.13,-3.89l-8.61,-8.65z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M399.09,125.77l-10.81,12.3l3.17,4.19l-8.28,4.11l3.2,3.36l-8.82,6.75l17,-5.28l-3.67,-3.62l11.31,-3.62l-4.62,-5.65l10.13,-3.89l-8.61,-8.65z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M369.71,141.45l5.13,2.34l-1.64,10.98l7.38,-13.49l-3.99,-2.18l5.6,-10.46l-9.05,-2.01l-3.43,14.82z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M369.71,141.45l5.13,2.34l-1.64,10.98l7.38,-13.49l-3.99,-2.18l5.6,-10.46l-9.05,-2.01l-3.43,14.82z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M398.26,153.09l-1.58,5.42l-15.98,1.76l19.03,4.25l1.6,-4.91l11.46,2.21l-0.87,-9.69l-13.66,0.96z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M398.26,153.09l-1.58,5.42l-15.98,1.76l19.03,4.25l1.6,-4.91l11.46,2.21l-0.87,-9.69l-13.66,0.96z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M167.88,325.76c4.13,2.39 14.2,-2.47 24.75,-11.72s14.48,-22 14.48,-22 -11.94,-5.47 -26.87,6.44S163,322.92 167.88,325.76Z"
android:fillColor="#263238"/>
<path
android:pathData="M138.56,280.88c-1.13,7 0.65,17.11 14.17,28.37s20.06,15.05 26,17.84c4.48,2.11 9.53,1.49 15.64,-2.36s13.76,-11.18 13.76,-11.18l-29.48,-45.14Z"
android:fillColor="#f28f8f"/>
<path
android:pathData="M170.43,294.2c5.63,5.47 21.6,18.75 27.85,21.71s9.86,0.88 17.16,-2.36c5.39,-2.39 24.42,-15.07 33,-20s11.79,-6.81 17.46,-7.93 10.77,-0.91 14.9,-3.64 0.34,-6.68 -5.53,-7.11 -10.09,-0.11 -16,-2.15 -8.74,-0.84 -10,0.67 -0.9,4.81 -4.82,6.77 -16.08,3.83 -21.84,6 -14.09,7.64 -14.09,7.64c-8.27,-9.74 -18.3,-18.91 -29.92,-25.36Z"
android:fillColor="#ffa8a7"/>
<path
android:pathData="M247.26,277.83c3,-1.13 6.67,-1.31 9.09,-1.54a71.63,71.63 0,0 1,12.23 0.79c4.62,0.6 8.42,2.33 9,3.59s0.86,3.35 -7.5,4.27c0,0 8.08,0.49 13,-1.48s5.49,-6.34 2.61,-8.6 -5.2,-3.13 -11.11,-3.56 -8.52,1.41 -14.1,-0.74 -9.75,-1 -11.09,0C247.27,272.1 247.26,277.83 247.26,277.83Z"
android:fillColor="#455a64"/>
<path
android:pathData="M169.9,219.11c4.37,0.48 7.34,1.33 13.82,4.74 5.79,3.05 21.1,10.05 23.39,16.1L198,245.82l-25.86,-8.43Z"
android:fillColor="#f28f8f"/>
<path
android:pathData="M168.67,218.73a24.41,24.41 0,0 1,9.31 2c3.38,1.43 12.21,6 12.21,6s-0.53,10.87 -5.74,15.51l-16.17,-5.18Z"
android:fillColor="#0298E1"/>
<path
android:pathData="M191.41,274.86a140.54,140.54 0,0 0,-13.35 -9.49c0.08,-6.45 0.31,-8.51 0.61,-12.55 7.5,-6.16 5,-13.39 2.25,-18.81 -5.48,-10.83 -9,-14.69 -12.25,-15.28 -2.16,-0.39 -5.85,-0.66 -5.85,-0.66l-12.2,0.3a35.67,35.67 0,0 0,-14.25 4.89c-5.93,3.42 -3.11,9.35 -2.32,12.9 2.14,9.67 3,13.3 4.23,17.2 0.9,2.9 2.47,7.74 1.9,13.41 -0.11,1.1 -1.19,5.86 -2.42,11.94a29.25,29.25 0,0 0,1.56 16.66c4,9.16 9.53,16.56 28.56,30.39 0,0 -2.34,-7.71 7,-17.46s25.63,-18 32.25,-16.24C207.11,292.06 197.56,279.91 191.41,274.86Z"
android:fillColor="#455a64"/>
<path
android:fillColor="#FF000000"
android:pathData="M155.3,281.47c6.28,2 13.53,3.74 17.34,-5.21 2.32,-5.47 2.76,-0.06 0.83,7.27 -1.67,6.4 -4.26,7.62 -10.13,5.48C154.22,285.68 147.47,279 155.3,281.47Z"
android:strokeAlpha="0.2"
android:fillAlpha="0.2"/>
<path
android:fillColor="#FF000000"
android:pathData="M168.83,250.63a10.58,10.58 0,0 1,-10.21 5.31,11.17 11.17,0 0,1 -9.34,-6.2s0.07,7.8 9.29,8.07S168.83,250.63 168.83,250.63Z"
android:strokeAlpha="0.2"
android:fillAlpha="0.2"/>
<path
android:pathData="M136.37,223.26c-8.83,4.05 -10.29,8.29 -11.47,15.81s-2.85,26.58 -3.52,33.85c-0.9,9.79 -0.84,29.47 -2.27,31.08s-9.43,4.49 -11.45,6.26a58.37,58.37 0,0 0,-5.85 6.37c-0.68,0.92 0,2 3.46,3.18s6.93,1.37 10,-0.91 6.51,-4.95 7.86,-4.95 -0.85,2 -1.86,3.13 -1.69,2.69 -1.35,3.62 3.51,-1.34 5.66,-2.36c2.62,-1.26 5.32,-4.85 5.39,-8 0.08,-3.75 0.64,-6.58 1.4,-13.22S135.52,281 136,275c0.7,-8.47 4.72,-29.72 4.72,-29.72C142.15,236.57 140,229.56 136.37,223.26Z"
android:fillColor="#ffa8a7"/>
<path
android:pathData="M137.31,222.71c-6.57,1.45 -9.16,3.14 -10.94,8.62 -1.86,5.71 -4,24.62 -4,24.62s0.58,2.76 7.23,4.1 9.61,-0.65 9.61,-0.65l2.54,-17.58S144.21,230.2 137.31,222.71Z"
android:fillColor="#0298E1"/>
<path
android:pathData="M172.51,171.93c-7.78,-4.19 -17.8,-2.54 -21.73,3.75 -0.09,0.14 -2.53,-0.1 -2.9,0a11.07,11.07 0,0 0,-3.63 1.35,11.81 11.81,0 0,0 -5.09,5.72c-1.74,4.27 -0.88,9.36 -3.11,13.4 -1.43,2.6 -4,4.5 -5.07,7.27a7.72,7.72 0,0 0,3.05 9,6.11 6.11,0 0,1 2.9,-5.63c-1.23,2 -1.2,7.09 3.21,8.78 -0.73,-2.34 -0.52,-5.8 1,-6.62 0,0 -0.39,6.43 5.72,7.52a11,11 0,0 0,8.62 -2.44s-6.15,-1.07 -7.21,-4.82L149,203l9.28,11.38c3.14,2.64 8.38,3.61 12.06,3.39 6.21,-0.39 10.25,-3.06 11.89,-8.18 -2.1,0.22 -3.66,-0.7 -3.94,-2.19a4.81,4.81 0,0 0,5.46 -0.4c-2.12,-1 -3.08,-3.6 -3,-5.95s1,-4.59 1.57,-6.87a21.85,21.85 0,0 0,0.46 -10.53,14.59 14.59,0 0,0 -3.78,-7 32.4,32.4 0,0 0,-2.91 -2.14A22.83,22.83 0,0 0,172.51 171.93Z"
android:fillColor="#37474f"/>
<path
android:pathData="M178.09,200.23c-1.39,11.19 -5.32,13.59 -7.22,14.21s-3.71,0.2 -7.07,-0.71l-0.84,5.13s4.06,3.67 3,5.35c-1.88,2.85 -7.93,1.46 -12,-0.19a13.34,13.34 0,0 1,-6.28 -4.57,2.13 2.13,0 0,1 -0.26,-1.53L149,203s-1.8,1.05 -4.49,-0.76c-2.42,-1.63 -3,-6.73 -0.69,-8.92a3.82,3.82 0,0 1,6.11 1.31c0.79,2 0.32,3.9 1.69,3.83s2,-1.34 2.19,-2.4 0.35,-1.83 0.59,-3.23c3.4,-0.31 7.17,-4.85 8,-8.17a15.86,15.86 0,0 0,7 2.48c3.74,0.19 5.74,-0.32 7.88,-2.78a7.64,7.64 0,0 1,0.8 2.11,25.55 25.55,0 0,1 0.62,4.53A56.48,56.48 0,0 1,178.09 200.23Z"
android:fillColor="#ffa8a7"/>
<path
android:pathData="M163.38,225.71a14.28,14.28 0,0 1,-2.59 -1.89c-1.57,-1.43 -4.13,-3.37 -6.72,-5.88a34.4,34.4 0,0 0,-6.17 -4.89l-0.39,3.65a12.69,12.69 0,0 1,2.33 2.31c0.74,1 0.55,2.47 -1.68,0.71l-0.63,-0.48a2.12,2.12 0,0 0,0.11 0.21,13.34 13.34,0 0,0 6.28,4.57C156.81,225.19 160.7,226.22 163.38,225.71Z"
android:fillColor="#f28f8f"/>
<path
android:pathData="M163.47,197.5m-3.54,0a3.54,3.54 0,1 1,7.08 0a3.54,3.54 0,1 1,-7.08 0"
android:fillColor="#f28f8f"/>
<path
android:pathData="M168.68,194.58l0.22,9.2l4.75,-0.57l-4.97,-8.63z"
android:fillColor="#f28f8f"/>
<path
android:pathData="M159.93,192.56l3.5,-1.66a2,2 0,0 1,-1 2.64A1.89,1.89 0,0 1,159.93 192.56Z"
android:fillColor="#263238"/>
<path
android:pathData="M175.07,190.79l2.81,2.71a1.86,1.86 0,0 1,-2.71 0.11A2,2 0,0 1,175.07 190.79Z"
android:fillColor="#263238"/>
<path
android:pathData="M172.79,197.8a2.21,2.21 0,0 1,2.38 -1.77,2 2,0 0,1 2.05,2.1 3.44,3.44 0,0 0,-2.06 -1A3.09,3.09 0,0 0,172.79 197.8Z"
android:fillColor="#263238"/>
<path
android:pathData="M161.39,198.32a2.19,2.19 0,0 1,1.94 -2.24,2 2,0 0,1 2.46,1.61 3.45,3.45 0,0 0,-2.23 -0.49A3.05,3.05 0,0 0,161.39 198.32Z"
android:fillColor="#263238"/>
<path
android:pathData="M167.43,208.1a1.19,1.19 0,0 0,-0.13 -0.32,2.83 2.83,0 0,0 -0.55,-0.7 3.89,3.89 0,0 0,-1.53 -0.84,3.4 3.4,0 0,0 -1.45,-0.09c-0.46,0.08 -1.11,0.26 -1.28,0.75 0,0.09 -0.05,0.29 0.09,0.33a1.41,1.41 0,0 0,0.69 -0.13,4.72 4.72,0 0,1 0.64,-0.1 3.36,3.36 0,0 1,1.26 0.15,3.66 3.66,0 0,1 0.94,0.49 2.05,2.05 0,0 1,0.38 0.34,2.74 2.74,0 0,0 0.5,0.52 0.5,0.5 0,0 0,0.23 0.09,0.21 0.21,0 0,0 0.21,-0.12A0.52,0.52 0,0 0,167.43 208.1Z"
android:fillColor="#b16668"/>
<path
android:pathData="M163.8,213.73c-3.47,-0.5 -11.1,-3.14 -12.74,-8.27a12.41,12.41 0,0 0,2.36 5.88c2.92,3.32 10.05,4.39 10.05,4.39Z"
android:fillColor="#f28f8f"/>
<path
android:pathData="M208.16,244.14c-0.64,2.37 -4.13,5.35 -12.65,5.71s-21.83,-7.11 -26.78,-9 -10.16,-3.83 -13.24,-3.67 -5.8,0.71 -10.23,-1.15 -6.46,-1.75 -6.47,-2.75c0,-1.25 2,-1.82 4.36,-1.76s4.39,1 4.78,0.15c0.62,-1.35 -2.77,-3.28 -6,-4.65a50.62,50.62 0,0 0,-7 -2.27c-1.36,-0.39 -2.33,-3.29 1.24,-2.88a28.62,28.62 0,0 1,9.11 3c1.18,0.62 2,-0.16 0,-1.76 -2.76,-2.19 -5.09,-2.57 -7.94,-3.54 -2.59,-0.88 -2.49,-3.74 1.71,-2.77 4.74,1.08 7.17,2.48 8.92,3.87 2.23,1.76 2.42,0.27 1.68,-0.71a14.88,14.88 0,0 0,-5 -4c-2.67,-1.39 -1.15,-4 1.56,-2.75a30.18,30.18 0,0 1,7.65 5.69c2.59,2.51 5.15,4.45 6.72,5.88a15.22,15.22 0,0 0,6.53 3.47c3.2,0.94 18.12,3.28 24.13,4.42s11.93,3.58 14,5.2C207.75,239.78 208.46,243 208.16,244.14Z"
android:fillColor="#ffa8a7"/>
<path
android:pathData="M148.47,228.81a8.54,8.54 0,0 1,8.65 1.36s-0.69,-2.48 -4.21,-2.82S148.47,228.81 148.47,228.81Z"
android:fillColor="#f28f8f"/>
<path
android:pathData="M161.12,153.54l-3.92,-7.37 3.16,-9.1V131.5l-9.65,5.57v5.57l4.15,7.18a0.52,0.52 0,0 0,0.28 0.25h0Z"
android:fillColor="#263238"/>
<path
android:pathData="M177.44,99.66a6.4,6.4 0,0 0,-2.89 -5l-2.36,-1.36a6.34,6.34 0,0 0,-5.78 0l-27.73,16a6.38,6.38 0,0 0,-2.9 5v31.17a6.38,6.38 0,0 0,2.9 5l2.35,1.36a6.42,6.42 0,0 0,5.79 0l10,-5.69 4.14,7.17a0.62,0.62 0,0 0,1.12 -0.11l4.37,-12.63 8.15,-4.74a6.4,6.4 0,0 0,2.89 -5Z"
android:fillColor="#455a64"/>
<path
android:pathData="M135.78,145.47a6.38,6.38 0,0 0,2.9 5l2.35,1.36a6.45,6.45 0,0 0,5.29 0.24c-1.36,0.51 -2.4,-0.26 -2.4,-1.91V119a5.94,5.94 0,0 1,0.85 -2.85l-8.14,-4.7a5.94,5.94 0,0 0,-0.85 2.85Z"
android:fillColor="#263238"/>
<path
android:pathData="M177.34,98.83c-0.33,-1.22 -1.45,-1.61 -2.79,-0.85l-27.74,16a5.73,5.73 0,0 0,-2 2.16l-8.14,-4.7a5.91,5.91 0,0 1,2 -2.16l27.72,-16a6.42,6.42 0,0 1,5.79 0l2.36,1.36A6.38,6.38 0,0 1,177.34 98.83Z"
android:fillColor="#37474f"/>
<path
android:pathData="M169.79,128.51 L164,124.09 170,112.47a2.21,2.21 0,1 0,-3.91 -2l-5.74,11 -5.26,-4a2.21,2.21 0,0 0,-2.67 3.53l5.85,4.42 -5.83,11.12a2.21,2.21 0,0 0,0.94 3,2.07 2.07,0 0,0 1,0.26 2.22,2.22 0,0 0,2 -1.19l5.48,-10.47 5.26,4a2.21,2.21 0,0 0,2.66 -3.52Z"
android:fillColor="#fafafa"/>
</vector>

View File

@ -0,0 +1,271 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="100dp"
android:height="100dp"
android:viewportWidth="500"
android:viewportHeight="500">
<path
android:pathData="M480.79,269.7c-2.16,3.79 -5.39,9 -8.43,14.64 -4.54,8.43 -8.64,17.82 -8,24.75l0,0.71h0l-0.53,10.65 -0.07,1.45 -2.52,-1.46L455,316.87a91.5,91.5 0,0 1,-0.15 -34.78c2.43,-13.92 12.18,-29.22 20.4,-30C482.89,251.26 486.17,260.26 480.79,269.7Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M458.41,316.47a0.48,0.48 0,0 0,0.29 -0.52c-3.21,-25.78 7.4,-49.55 18.2,-58.15a0.49,0.49 0,0 0,0.07 -0.69,0.47 0.47,0 0,0 -0.69,-0.08c-11,8.74 -21.81,32.91 -18.55,59.05a0.48,0.48 0,0 0,0.55 0.42A0.31,0.31 0,0 0,458.41 316.47Z"
android:fillColor="#fff"/>
<path
android:pathData="M490.23,286c-0.85,5 -9.92,10.88 -15.92,19 -5.41,7.31 -7.78,14.73 -7.58,18.67h0l-3,-1.74 -2.52,-1.46c-1.38,-18.28 5.35,-28.94 11.18,-36.1a18.09,18.09 0,0 1,6.39 -4.75C486.71,276.4 491.25,280 490.23,286Z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M463.89,320.41a0.47,0.47 0,0 0,0.29 -0.44c0.31,-21 12.32,-32.36 18.62,-35.47a0.49,0.49 0,0 0,-0.43 -0.89c-7,3.44 -18.86,15 -19.17,36.35a0.49,0.49 0,0 0,0.48 0.5A0.5,0.5 0,0 0,463.89 320.41Z"
android:fillColor="#fff"/>
<path
android:pathData="M57.05,311.65l-8.73,5c-0.5,-25.6 -17.11,-44.35 -25.12,-54.26 -8.15,-10.1 3.12,-16.14 12.61,-11.71S53,266.51 56.18,281.27C58.89,293.88 57.5,307.86 57.05,311.65Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M53.34,310.87h0.11a0.57,0.57 0,0 0,0.55 -0.58c-0.89,-32.23 -11.63,-48.36 -24,-56.57a0.56,0.56 0,0 0,-0.61 0.93c12.23,8.1 22.65,23.9 23.52,55.67A0.58,0.58 0,0 0,53.34 310.87Z"
android:fillColor="#fff"/>
<path
android:pathData="M10.18,282.45c0.18,1.78 1.62,3.15 3,4.3s2.87,2.4 3.24,4.15c0.76,3.54 -3.43,6.8 -2.53,10.3a5.59,5.59 0,0 0,2.95 3.29A35.69,35.69 0,0 0,20.32 306a15.71,15.71 0,0 0,1.74 0.42,8.07 8.07,0 0,1 4.75,2.13c1.94,2.1 1.69,5.32 2.38,8.09 0.82,3.32 2.79,5.26 7.31,6.84L52,314.7c3.85,-3.93 5.21,-10.64 1.66,-15.21 -2.13,-2.74 -6.12,-3.08 -8.13,-5.82 -1.8,-2.46 -0.75,-6 -1.86,-8.85s-4.05,-3.82 -6.82,-4.3 -5.72,0.66 -8.43,-0.33 -5.22,-2.59 -8,-3.29a9.36,9.36 0,0 0,-8.09 1.36A4.94,4.94 0,0 0,10.18 282.45Z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M39,296.4a0.48,0.48 0,0 0,-0.12 -0.16c-7.27,-10.3 -18.66,-15.19 -22.51,-16.05a0.4,0.4 0,1 0,-0.17 0.78c3.65,0.82 14.22,5.34 21.34,14.79a22.23,22.23 0,0 0,-17.73 1.54,0.39 0.39,0 0,0 -0.12,0.55A0.42,0.42 0,0 0,20 298a0.39,0.39 0,0 0,0.23 -0.07,21.55 21.55,0 0,1 18.11,-1.09 33.81,33.81 0,0 1,6 20.79,0.4 0.4,0 0,0 0.36,0.41h0a0.4,0.4 0,0 0,0.42 -0.39A34.58,34.58 0,0 0,39 296.4Z"
android:fillColor="#fff"/>
<path
android:pathData="M6.2,374.32a243.8,117.83 0,1 0,487.6 0a243.8,117.83 0,1 0,-487.6 0z"
android:fillColor="#f5f5f5"/>
<path
android:pathData="M194.96,411.8a56.97,32.89 0,1 0,113.94 0a56.97,32.89 0,1 0,-113.94 0z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M266.82,367.46a56.97,32.89 0,1 0,113.94 0a56.97,32.89 0,1 0,-113.94 0z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M365.68,377.52a56.97,32.89 0,1 0,113.94 0a56.97,32.89 0,1 0,-113.94 0z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M116.32,365.02a58.24,33.62 0,1 0,116.48 0a58.24,33.62 0,1 0,-116.48 0z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M19.27,387.05a60.12,34.71 0,1 0,120.24 0a60.12,34.71 0,1 0,-120.24 0z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M463.61,222.62s9,-19.83 11.92,-27.08c3.06,-7.68 1.53,-10.61 -0.3,-14.92s-12.73,-33 -14.83,-36.88c-1.55,-2.87 -4.37,-4.81 -12.7,-7.3 0,0 -8.32,-2.8 -11.06,-3.45l0.19,-8.05a20.37,20.37 0,0 1,2.36 -3.22,3 3,0 0,0 3,-0.21c3,-1.71 5.5,-6 3.9,-10a4.58,4.58 0,0 0,-0.73 -1.19,25.55 25.55,0 0,0 1.14,-7.86c0,-3.09 -0.44,-6.32 -2.71,-8a4,4 0,0 0,0.47 -0.11,2.76 2.76,0 0,0 1.64,-3.62l-2.58,0.89a2.91,2.91 0,0 0,0.62 -1.27,2.76 2.76,0 0,0 -2.32,-3.23l-0.9,4.64c-1.33,-3.76 -6,-6.16 -9.45,-7a26.73,26.73 0,0 0,-11.67 0,22.88 22.88,0 0,0 -8.07,3.8c-2,1.31 -2.91,1.83 -4.48,2.1a15.16,15.16 0,0 1,-3.56 -0.05,1.55 1.55,0 0,0 -0.8,0.11 1.37,1.37 0,0 0,-0.53 1.35,5.17 5.17,0 0,0 2.64,4.15 3.79,3.79 0,0 0,-2.51 3.61,5 5,0 0,0 2.18,4 6.54,6.54 0,0 0,1.56 0.79c-0.22,5 -0.14,13.4 0.15,16.13 0.75,7.18 3,7.92 5.41,8.45a42,42 0,0 0,7 0.74l-0.09,3s-8.57,-0.3 -11.31,0.22c-4.71,0.9 -7.24,2.81 -10.15,5.9 -6,6.42 -21.65,23.11 -21.65,23.11s-3.07,-18.93 -3.43,-21.95a21.36,21.36 0,0 1,0.19 -3.38c0.59,-5.41 -1.26,-10.67 -3.37,-15.56 -0.37,-0.84 -0.74,-1.67 -1.12,-2.51a9.19,9.19 0,0 1,-0.5 -1.22c-0.12,-0.4 -0.24,-0.73 -0.77,-0.73a1.54,1.54 0,0 0,-1 0.47,4.48 4.48,0 0,0 -1.2,3.4 21.59,21.59 0,0 0,0.62 3.65c0.19,0.93 -0.79,0.47 -1.22,0.19 -2.11,-1.41 -3.79,-5.06 -4.85,-7.31a32.66,32.66 0,0 0,-2 -4.46,4.94 4.94,0 0,0 -2.27,-2c-0.64,-0.25 -1.32,-0.26 -1.54,0.57A3.32,3.32 0,0 0,353 113a3.72,3.72 0,0 1,-0.26 3,8.28 8.28,0 0,0 -1.18,1.85 25.84,25.84 0,0 0,-0.28 2.79,20.47 20.47,0 0,1 -1,2.16 7,7 0,0 0,0.18 2.87,22.8 22.8,0 0,0 1.76,5.64 42.66,42.66 0,0 0,4.7 7.66,12 12,0 0,1 2.39,4.36 25.41,25.41 0,0 1,0.4 5c0,2.1 0,4.2 0.05,6.3 0.26,22.71 2.27,24.38 4.48,28.18 1.34,2.3 5.94,5.12 14,-0.54 5.65,-4 15,-12.27 21.07,-17.88 -0.79,13.23 -1.47,32 -1.41,41.93l0.13,0.09c-1.41,39.81 0.1,71.8 0.53,78.21s3.77,50.39 5.05,64.38a2.75,2.75 0,0 0,-1.09 1.49,24.2 24.2,0 0,1 -9.51,11 85.68,85.68 0,0 1,-8.2 4.51l0,0 -0.16,0c-6,2.06 -7.6,4.78 -6.8,7.32a4.14,4.14 0,0 0,0.87 3.36c1.57,1.48 6.26,4 12.61,3.4s9.84,-2.47 12.44,-4.53 6.27,-5 9.15,-5.51c2.68,-0.5 5.6,-1.62 6.48,-2.42s0.91,-4.52 0.91,-4.52h0a36.9,36.9 0,0 0,-0.61 -7.8c-0.35,-1.69 -0.54,-4.68 -0.69,-5.71 -0.13,-0.87 -0.82,-0.86 -0.82,-0.86 0.19,-2.34 5.37,-31.78 6.35,-38.87a97.09,97.09 0,0 0,0.15 -21.33l0.18,-35.27s7,25 9.74,38.37c2.3,11.25 13.24,59.64 13.24,59.64 -1.21,0.42 -0.55,4.46 -0.57,8.78A128.47,128.47 0,0 1,446 374.68a42.83,42.83 0,0 0,-0.4 6.19h0c0,4.27 0.56,7.14 2.11,9.74s4.73,3.57 8.05,3 7.66,-2.26 8.84,-5.88 1.16,-6.16 0.68,-10.15h0c0,-0.4 -0.05,-0.81 -0.09,-1.24 -0.41,-5.08 -2.32,-7.74 -2.74,-13.93 -0.4,-5.77 -0.42,-11.52 -1.76,-11.69 0,0 0,0 0,0.05 0,-3.78 0.78,-25.45 0.88,-42.34 0.06,-10.76 -4,-23.5 -4.29,-26.49 0,0 -0.38,-22.5 -1.37,-43 0,0 2.36,-5.14 4.49,-9.49C461.07,228.07 463.14,223.43 463.61,222.62ZM453.05,206.1v3c0.19,-0.11 0.38,-0.22 0.56,-0.34 0.25,-10.79 -0.29,-25.89 -0.57,-32.69l5.67,12.36ZM441.05,93.5v0Z"
android:fillColor="#455a64"/>
<path
android:pathData="M413.16,118.31 L424.27,117s0.53,4.4 -4.94,5C413.43,122.74 413.16,118.31 413.16,118.31Z"
android:fillColor="#fafafa"/>
<path
android:pathData="M423,107.21c-1.36,0.37 -2,0.68 -1.72,1.55a2.37,2.37 0,0 0,3.3 0.93c1.6,-0.81 2.06,-3.19 1.21,-3.09A15.81,15.81 0,0 0,423 107.21Z"
android:fillColor="#fafafa"/>
<path
android:pathData="M411.94,107.2c1.36,0.38 2,0.69 1.72,1.55a2.36,2.36 0,0 1,-3.3 0.94c-1.6,-0.8 -2.06,-3.19 -1.21,-3.09A17.41,17.41 0,0 1,411.94 107.2Z"
android:fillColor="#fafafa"/>
<path
android:pathData="M366.4,354.79l-1.1,-0.46c-0.73,-0.3 -2.52,-1.21 -4.21,-2.11a0.4,0.4 0,0 0,0.22 -0.33,0.4 0.4,0 0,0 -0.38,-0.43 7.11,7.11 0,0 0,-1.22 0c-0.73,-0.39 -1.38,-0.75 -1.8,-1 -0.15,-0.08 -0.3,-0.18 -0.45,-0.27a0.42,0.42 0,0 0,0.14 -0.28,0.41 0.41,0 0,0 -0.39,-0.43 5.66,5.66 0,0 0,-0.92 0c-0.77,-0.49 -1.52,-1 -2.26,-1.58a0.44,0.44 0,0 0,0.11 -0.25,0.42 0.42,0 0,0 -0.38,-0.44h-0.63c-0.63,-0.52 -1.22,-1.07 -1.8,-1.64a0.41,0.41 0,0 0,0.11 -0.25,0.4 0.4,0 0,0 -0.38,-0.43h-0.41a18.07,18.07 0,0 1,-3.24 -4.68,4.22 4.22,0 0,0 -0.58,-1 15,15 0,0 1,-0.19 -3.14c0,-1.21 0.15,-5.85 0.28,-11.66a2.29,2.29 0,0 0,0.52 -0.49l0.37,-5.12 -0.34,0.17c0.39,-10.64 1.52,-42.26 1.27,-50.95 -0.43,-15.18 -1.91,-70.78 -1.91,-70.78 5.87,-7.44 17.72,-22.53 19.35,-25.23 2.93,-4.85 2.4,-6.66 -0.52,-11.75 -2.59,-4.5 -12.07,-19.16 -16,-25.4 -4.67,-7.33 -9.7,-9.67 -16.06,-9.58L329.8,125l0,0c-0.86,-0.11 -1.79,-0.19 -2.75,-0.24l-0.14,-3.18 -0.1,-2.2c3.67,0.22 6,-0.11 7.79,-1.16a11.13,11.13 0,0 0,4.4 -5.77,29.15 29.15,0 0,0 1.4,-6.66 59.7,59.7 0,0 0,0.37 -6A6.47,6.47 0,0 0,345 98.72a5.05,5.05 0,0 0,2.29 -3.93c0.3,-2.5 -1.95,-4 -1,-5.73 0.24,-0.46 0.63,-0.82 0.91,-1.25a4,4 0,0 0,-0.14 -4.1,8.88 8.88,0 0,0 -3.2,-2.85c-2.48,-1.47 -5.28,-1.82 -7.78,-3.06s-4.54,-2.6 -7.31,-3.28c-7.62,-1.87 -17.88,-1.55 -23.39,4.89a13.85,13.85 0,0 0,-2.67 5.06,9.78 9.78,0 0,0 -5,3.53c-3,3.6 -3.49,8.28 -2.23,12.86a32.86,32.86 0,0 1,1.35 4.51c0.38,3.12 -3.16,6.27 -4.59,9.08a20.1,20.1 0,0 0,-0.93 2.11,63.83 63.83,0 0,1 -7.94,-9.42c-0.63,-1.12 -3.19,-9.93 -4.21,-15.39a83.82,83.82 0,0 1,-1.53 -14.32c0.15,-3 2.1,-4.63 3.79,-6.81a16.69,16.69 0,0 0,2.27 -4.57,20.28 20.28,0 0,1 1.29,-2.8 1.53,1.53 0,0 0,0.24 -1.34,1.36 1.36,0 0,0 -1.48,-0.59 4.21,4.21 0,0 0,-2.43 1.56c-0.64,0.75 -1.14,1.61 -1.76,2.37a2,2 0,0 1,-0.86 0.68c-2.1,0.63 -0.05,-3.35 0.15,-3.9 1,-2.77 1.74,-5.72 2.6,-8.56a4.43,4.43 0,0 0,0.29 -1.76,1.55 1.55,0 0,0 -1,-1.37c-0.82,-0.24 -1.6,0.48 -2.44,0.65a9.7,9.7 0,0 1,-2.27 -0.17,6.66 6.66,0 0,0 -3.13,1 16.33,16.33 0,0 0,-3.82 2.38,11.56 11.56,0 0,0 -3.18,6 37,37 0,0 0,-0.86 7.55c-0.43,27.69 -0.15,31.87 2.26,43.39a12.12,12.12 0,0 0,2 4.65c2.45,3.37 5.6,7 11.53,13.74A121.59,121.59 0,0 1,291.7 143.9a27.64,27.64 0,0 1,1.44 2.51A48,48 0,0 1,298 161.77c0.67,4.73 1.39,10.61 1.25,13 -0.72,4.45 -3,6.65 -6.29,15.51s-4.19,14.76 -3.65,27.27c0.53,12.25 2.36,54.21 2.36,54.21a109.68,109.68 0,0 0,-2.6 23.62c-0.14,9.5 1.1,42.64 1,48 -1.51,0.07 -1.13,5.51 -1.58,10.84 -0.49,5.73 -1.75,10.32 -2.23,14a22,22 0,0 0,0.33 9.44c0.89,3.38 4.69,5.89 7.33,6.73s6,0.13 7.31,-2.24 1.81,-5 1.9,-9a69,69 0,0 0,0.17 -7.29,133.4 133.4,0 0,1 -0.72,-13.58c0.07,-4 0.93,-7.66 0,-8.08 1.74,-8.19 10.49,-49.14 13.11,-66.59 2,-13 4.84,-38.24 4.84,-38.24l5.9,31.32 0.05,0.27s-0.47,12.75 0.22,20.23c0.59,6.46 3.46,21.52 4.89,28.85l-0.21,-0.07 1,4.82a3.55,3.55 0,0 0,0.4 0.25c1.35,7.49 2,11.09 2.3,13.53a0.92,0.92 0,0 0,-0.84 0.82c-0.14,0.94 -0.21,3.64 -0.53,5.18a30.61,30.61 0,0 0,-0.36 7.05s0,3.37 0.87,4.09 3.52,1.71 6,2.14c2.66,0.46 6.05,3.06 8.47,4.91s5.66,3.5 11.52,4 10.18,-1.85 11.62,-3.21a3.7,3.7 0,0 0,0.78 -3C373.25,358.37 371.94,356.61 366.4,354.79ZM335,338.74l0.06,0.69A4.92,4.92 0,0 1,335 338.74ZM344.92,159.63 L350.27,168.24 345.78,176.24Z"
android:fillColor="#455a64"/>
<path
android:pathData="M333.11,108.16l-9.29,-1.5s-0.61,3.68 4,4.42C332.71,111.87 333.11,108.16 333.11,108.16Z"
android:fillColor="#fafafa"/>
<path
android:pathData="M324.5,97.05c1.31,0.39 1.91,0.54 1.65,1.38a2.28,2.28 0,0 1,-3.19 0.9c-1.56,-0.77 -2,-3.13 -1.18,-3A26.26,26.26 0,0 1,324.5 97.05Z"
android:fillColor="#fafafa"/>
<path
android:pathData="M335.29,97.17c-1.41,0.48 -2,0.52 -1.69,1.36a2.28,2.28 0,0 0,3.19 0.9c1.55,-0.77 1.95,-3.4 1.15,-3.17S336.52,96.74 335.29,97.17Z"
android:fillColor="#fafafa"/>
<path
android:pathData="M231.15,167.32c-2.59,-6.24 -11.05,-22.12 -14,-28.14 -3.75,-7.61 -7.29,-10.55 -13.34,-12.52s-13.61,-4.25 -13.61,-4.25l0,-7.92c1,-0.29 1.57,-1.81 1.87,-2.71 0.4,-1.18 0.57,-2.06 1.06,-3.25a3.71,3.71 0,0 0,2.66 -0.62c2.47,-1.63 5.3,-6.63 3.34,-10.32a3.1,3.1 0,0 0,-2.43 -1.85c1,-5 1.66,-9.46 -0.13,-11.9a6.24,6.24 0,0 0,-4.13 -2.63h0a2.43,2.43 0,0 0,0.38 -0.34,1.62 1.62,0 0,0 0.31,-1 3.11,3.11 0,0 0,-1.24 -2.44,3 3,0 0,0 -2.76,-0.36 4.74,4.74 0,0 0,-0.81 -3.36,5.8 5.8,0 0,0 -3.95,-2.34c-1.06,0 -2,0.57 -3.08,0.67a3.62,3.62 0,0 0,-2 -3.33,5.58 5.58,0 0,0 -2.43,-0.47 5.94,5.94 0,0 0,-1.83 0.24,7.61 7.61,0 0,0 -3.33,2.76 3.8,3.8 0,0 0,-2.6 -1.15,7.4 7.4,0 0,0 -3.07,0.21 4.17,4.17 0,0 0,-2.4 1.78c-0.61,1 -0.85,2 -2.25,2.14 -0.6,0.08 -1.22,0 -1.81,0.17a3.09,3.09 0,0 0,-2.29 2.15v0.05a13.28,13.28 0,0 1,-0.36 2.11,2.18 2.18,0 0,1 -1.42,1.23 2.31,2.31 0,0 1,-1.88 -0.33,1 1,0 0,0 0.27,0.75 4.22,4.22 0,0 0,2.69 1.48,4.15 4.15,0 0,0 2,-0.25A9.79,9.79 0,0 0,156 88.8a9.1,9.1 0,0 0,1.48 5.2c0,2 -0.17,11 0.14,14.12 0.34,3.53 0,6.58 3,8.68 2.23,1.61 6.33,2.55 11.4,2.27l0,3.5a31.58,31.58 0,0 0,-11 3.77,23.19 23.19,0 0,0 -10.08,17c-1,8.86 -1,32.91 -1,48.26 0,0 -0.9,75.06 -0.45,82 0.4,6.06 3.12,64.09 2.95,64.49 -2.19,5.16 -5.81,7.83 -10.75,10.83 -1.83,1.11 -6.7,3.93 -11.5,6.44s-6.43,5 -5.25,8.17a2.31,2.31 0,0 0,0.94 2.49c1.87,1.41 7.32,3.67 14.44,2.66s10.94,-3.13 13.75,-5.38 6.75,-5.44 10,-6.16c3,-0.68 6.22,-2 7.16,-2.87s0.73,-4.64 0.73,-4.64h0a31,31 0,0 0,-1 -7.84,15.78 15.78,0 0,1 -0.52,-4.79c0,-0.89 -0.18,-1.67 -1,-1.64 0.1,-1.76 5.22,-35.27 6,-41.86a82.37,82.37 0,0 0,0 -17.95l3.1,-32.36s2,25.39 4.22,39.05c1.54,9.57 9.27,51.88 10.75,61.08 -1.44,0.1 -0.94,4.81 -0.88,9.1a110.75,110.75 0,0 1,-0.47 14.65,42.22 42.22,0 0,0 -0.29,6.31h0c0.09,4.34 0.48,7.93 2.17,10.54s4.64,3.31 8.13,2.69 7.53,-2.55 9,-6.15c1.89,-4.64 1.54,-8.79 0.79,-12.63s-2.13,-7.24 -2.71,-13.52c-0.53,-5.74 -0.44,-11.57 -2,-11.81 0.87,-14.25 3.94,-35.37 3.18,-49.81 -0.6,-11.22 -2.73,-16.75 -3.1,-19.51 0,0 -0.55,-23.32 -1.4,-46.32 3.57,-3.73 4.61,-8.14 7.56,-12.55l0.53,-0.81h0l4.35,-6.37a11.37,11.37 0,0 0,5 -5.27c1.4,-3.5 7.05,-14.74 8.78,-20.68C233.23,176.91 233.74,173.56 231.15,167.32ZM206.15,192.46 L205.95,192.96 204.95,177.49c0.34,-3.79 0.4,-7.45 0.59,-11.7l6.32,9.84A174.17,174.17 0,0 1,206.19 192.46Z"
android:fillColor="#455a64"/>
<path
android:pathData="M165.9,105.5l10.68,-1.72s0.7,4.23 -4.56,5.07C166.36,109.76 165.9,105.5 165.9,105.5Z"
android:fillColor="#fafafa"/>
<path
android:pathData="M175.49,94.3c-1.3,0.39 -1.9,0.54 -1.64,1.38a2.29,2.29 0,0 0,3.19 0.91c1.56,-0.78 2,-3.14 1.18,-3A27,27 0,0 0,175.49 94.3Z"
android:fillColor="#fafafa"/>
<path
android:pathData="M163.45,94.42c1.41,0.48 2,0.52 1.68,1.36a2.27,2.27 0,0 1,-3.19 0.9c-1.55,-0.77 -1.94,-3.4 -1.14,-3.17S162.22,94 163.45,94.42Z"
android:fillColor="#fafafa"/>
<path
android:pathData="M160.53,130.88c0.08,-0.82 -0.53,-1 -1.19,-1a4.83,4.83 0,0 0,-2.71 1,31.82 31.82,0 0,0 -3.36,3.31c-1.72,1.66 -4.49,4.36 -6.87,4.9 -0.48,0.11 -1.52,0.19 -1,-0.58a20.76,20.76 0,0 0,1.82 -3.08,4.3 4.3,0 0,0 0.09,-3.46 1.5,1.5 0,0 0,-0.73 -0.76c-0.47,-0.19 -0.69,0.07 -0.94,0.39a10.89,10.89 0,0 1,-0.88 0.92l-1.86,1.87c-3.58,3.67 -7.05,7.76 -8.37,12.83 -0.2,0.74 -1,6.34 -1.68,9.56 -0.46,2.89 -3.7,18.93 -3.7,18.93s-10,-11 -16.5,-18.23c-4.09,-4.54 -7.46,-9.22 -11.83,-10.47a15,15 0,0 0,-6.07 -0.62l-5.49,0.39v-5c4.12,0.38 6.15,0 8.25,-1.1 1.89,-1 5.66,-5.61 6.7,-15.29a6.19,6.19 0,0 0,2.21 -2.63,33 33,0 0,0 1.26,-4.79 1.56,1.56 0,0 1,0.34 -0.64,3.61 3.61,0 0,0 0.85,-1.78c0.08,-0.76 -0.39,-1.42 -0.84,-1.46l-0.83,-0.05c-1,0 -2.07,-0.06 -3.16,0a19.54,19.54 0,0 0,-0.5 -2.14,0.31 0.31,0 0,1 0,-0.08 27,27 0,0 0,-0.15 -4,8.73 8.73,0 0,1 4.73,3A17.19,17.19 0,0 0,107 104a9.07,9.07 0,0 0,-4.45 -4.9,8.23 8.23,0 0,1 4.83,1.46c-3.12,-4.29 -8.2,-6.88 -13.43,-7.77a38.77,38.77 0,0 0,-19.78 2.33C64,99.11 57.49,110 59.9,120.83c1.77,8 8.7,12 11.24,16.92l0.25,10.13c-1.4,0.21 -4.35,0.65 -8.42,1.34s-8.37,0.48 -13.79,8a229.47,229.47 0,0 0,-16.24 26c-2.93,5.51 -4.35,7.39 -0.87,13.92a183.39,183.39 0,0 0,14.42 21.4,50 50,0 0,1 3.58,5.31 204.15,204.15 0,0 0,-0.91 23.1,10.53 10.53,0 0,0 1.67,1.45c0,1 0.08,2 0.13,3.1 0.64,13.32 2.73,43.25 2.73,43.25S46.06,302 44.93,315c-0.78,9.15 -1.21,28.4 -3.4,40 -1.3,-0.08 -2.77,6 -4.47,12l0,0.13a63.65,63.65 0,0 1,-2.12 6.24c-0.63,1.57 -1.06,2.59 -2,4.66a31.14,31.14 0,0 0,-2.43 7.07,24 24,0 0,0 -0.28,7.37c0.46,4.12 4,7.37 7,8.66a7.76,7.76 0,0 0,8.51 -1.58c2.58,-2.36 3.79,-8.89 4,-10.42s0.61,-4 0.84,-6a131.53,131.53 0,0 1,2.24 -14.18c0.5,-1.37 1,-2.65 1.7,-4.34 1,-2.46 1.27,-4.7 0.76,-5.48a0.36,0.36 0,0 0,-0.07 -0.1c5.32,-12.22 15.49,-39 19.49,-49.6 3.07,-8.07 8.75,-21.46 11.7,-39.26l4.64,29.57A29.56,29.56 0,0 0,88.21 316c1,10.75 3.74,41.58 3.74,41.58a1.26,1.26 0,0 0,-1.23 0.82c-0.2,0.58 -0.36,2.19 -0.45,2.62a27.12,27.12 0,0 1,-1 3.29,46.77 46.77,0 0,0 -1.51,10.11c-0.07,0.63 -0.4,3.89 0.35,4.76s5.06,2.52 7.86,3.41c3,1 5.27,3.57 7.78,6.1s4.27,4.05 11,5.56 12.06,-0.49 14,-1.84c1.24,-0.89 1.46,-2.9 1.37,-3.82 1.29,-2.51 0.85,-5.16 -5.62,-8.92 -0.33,-0.19 -0.84,-0.52 -1.46,-0.94 -1.87,-1.26 -4.63,-3.26 -5.88,-4.22a33.74,33.74 0,0 1,-5 -4.61,20.58 20.58,0 0,1 -2.77,-3.79 10.28,10.28 0,0 1,-0.74 -2.44,23.8 23.8,0 0,1 -0.48,-2.63 1.81,1.81 0,0 0,-0.57 -1.34,1.56 1.56,0 0,0 -0.88,-0.18c2.43,-13.66 8.57,-47.75 9.8,-56.68 2.14,-15.54 2.88,-38.16 2.19,-57.06a8.51,8.51 0,0 0,1.26 -1.27s-0.6,-26.76 -10.28,-50.89c1,-0.88 0.84,-2.06 0.67,-3.87a53.75,53.75 0,0 1,-0.06 -6.49,9 9,0 0,0 1.14,-0.68A148,148 0,0 0,125.1 195c7.56,5.74 11.65,3.48 13.81,1 2.77,-3.21 4.32,-7.6 5.11,-25 0.09,-2 0.17,-4 0.28,-6.06a44,44 0,0 1,0.94 -7.72c0.65,-2.55 2.68,-3.27 4,-4.12a23.46,23.46 0,0 0,5.06 -4.09,21.69 21.69,0 0,0 3.52,-4.46 6.78,6.78 0,0 0,1.15 -2.52,19.11 19.11,0 0,1 -0.19,-2.29c0.13,-0.9 0.68,-1.7 0.72,-2.6a8.37,8.37 0,0 0,-0.43 -2.08,3.58 3.58,0 0,1 0.81,-2.81A3.27,3.27 0,0 0,160.53 130.88ZM104.64,115.36 L104.79,115.36h0l0.1,0 0.14,0 0.18,0 0.29,0.1 0,0a1.86,1.86 0,0 1,0.65 0.38c0.56,0.52 0.12,3 -0.21,4.26a7.13,7.13 0,0 1,-1.71 3.37c0,-0.58 0.08,-1.17 0.1,-1.79a42.1,42.1 0,0 0,-0.21 -6.54C104.36,115.32 104.51,115.33 104.64,115.36ZM60.88,174.7a51.35,51.35 0,0 1,2 11c0.3,3.08 -0.35,5.25 1.37,6.64h0s-1.76,3.19 -4.83,7.71a62.16,62.16 0,0 0,-5 8.48,143.6 143.6,0 0,1 -6.78,-17.13C50.32,187.78 57.33,178.81 60.88,174.7ZM41.25,356.38c0.07,-0.33 0.13,-0.65 0.19,-0.94C41.38,355.76 41.32,356.07 41.25,356.38Z"
android:fillColor="#455a64"/>
<path
android:pathData="M98.59,129.24l-10.36,-0.55s-0.24,4.11 4.87,4.38C98.59,133.35 98.59,129.24 98.59,129.24Z"
android:fillColor="#fafafa"/>
<path
android:pathData="M88.21,118.34c1.27,0.3 1.87,0.57 1.64,1.38a2.2,2.2 0,0 1,-3 1c-1.51,-0.7 -2,-2.89 -1.22,-2.83A14.92,14.92 0,0 1,88.21 118.34Z"
android:fillColor="#fafafa"/>
<path
android:pathData="M98.61,118c-1.25,0.39 -1.83,0.69 -1.55,1.49a2.2,2.2 0,0 0,3.09 0.76c1.46,-0.79 1.82,-3 1,-2.89A15.74,15.74 0,0 0,98.61 118Z"
android:fillColor="#fafafa"/>
<path
android:pathData="M397.69,91.21 L386.81,81.8s-21.41,0.11 -27.26,-5.65c-6.86,-6.77 -1.4,-21.31 6.41,-27.11s32.4,-6.47 40.66,0 10.84,19.5 3.95,26.91c-3.95,4.24 -13.48,5.36 -13.48,5.36Z"
android:fillColor="#0298E1"/>
<path
android:pathData="M180.9,64.38l-0.26,-9.69s16.15,0.5 13.4,-19.58c-1.33,-9.78 -8.87,-19.82 -37.95,-16C121,23.65 125.16,41.33 128.78,47.52 132.57,54 148,57.39 173.3,56Z"
android:fillColor="#0298E1"/>
<path
android:pathData="M76.31,89 L85,80.78a83.63,83.63 0,0 0,19.52 0.86c17.42,-1 27.24,-8.61 24.65,-19 -3.06,-12.19 -14.2,-16 -35,-15.16 -26,1 -35.32,17.5 -17.2,30.74Z"
android:fillColor="#0298E1"/>
<path
android:pathData="M325,68.6l1.42,-11.21s17.34,0.39 22.55,-3.13c8.3,-5.6 8.85,-20.19 2,-28.79 -6.51,-8.2 -39.22,-9.64 -47.94,-3.12 -8.44,6.29 -11.49,19.86 -7.17,27 4.43,7.29 21.36,7.43 21.36,7.43Z"
android:fillColor="#0298E1"/>
<path
android:pathData="M275.56,384.54c0,-5 2.19,-45.83 2.19,-45.83l-20.17,11.77c2.43,22.49 4.66,33.13 4.87,37h0a4.17,4.17 0,0 1,0.11 0.8c-0.07,4.44 5.14,6.95 9.18,10a75.49,75.49 0,0 0,10.95 7.14c2.95,1.5 9,1.76 9.78,-0.05 -4.91,-3.74 -10.61,-7.83 -14.49,-12.07C276.13,391.28 275.54,389.21 275.56,384.54Z"
android:fillColor="#ffa8a7"/>
<path
android:pathData="M300.89,410.33c0.25,0 0.58,2.7 -0.83,3.81 -1.64,1.28 -6.39,3.34 -12.6,2.44s-9.54,-2.81 -12,-4.85 -5.88,-4.92 -8.68,-5.57c-2.61,-0.61 -5.42,-1.8 -6.24,-2.59s-0.64,-4.2 -0.64,-4.2Z"
android:fillColor="#263238"/>
<path
android:pathData="M262.34,386.25a0.78,0.78 0,0 0,-0.76 0.77,35.91 35.91,0 0,1 -0.79,5.23 26.43,26.43 0,0 0,-0.78 8.3c0.3,1.76 4.54,3.07 7.24,4.12a34.91,34.91 0,0 1,8.72 5.5,26.56 26.56,0 0,0 13,4.95c6.19,0.22 10.23,-1.29 11.51,-3.38 1.59,-2.59 0.42,-4.14 -6.63,-7.43a65.15,65.15 0,0 1,-7.28 -4.94c-4.94,-4.07 -8.68,-7.63 -9.57,-12.67 -0.1,-0.58 -1.07,-1.14 -4.89,-0.4 -1,0.19 -4.74,1.19 -4.75,2.35a19.28,19.28 0,0 0,0.41 2c0.05,0.24 0.24,1.28 0,1.42s-0.65,-0.67 -0.78,-0.87a15.39,15.39 0,0 0,-1.43 -2.29c-0.33,-0.41 -2.7,-0.64 -3.17,-1.4C262.45,387.49 262.43,386.87 262.34,386.25Z"
android:fillColor="#37474f"/>
<path
android:pathData="M293.89,404.31c-9,0.39 -11.88,5.91 -11.22,9.39a22.1,22.1 0,0 0,6.34 1.42c6.19,0.22 10.49,-1.28 11.77,-3.38C302.28,409.3 300.2,406.74 293.89,404.31Z"
android:fillColor="#fafafa"/>
<path
android:pathData="M282.07,404.15a0.43,0.43 0,0 1,-0.27 -0.11,0.41 0.41,0 0,1 0,-0.59 10.82,10.82 0,0 1,8.33 -2.37,0.42 0.42,0 1,1 -0.16,0.82 10,10 0,0 0,-7.54 2.13A0.41,0.41 0,0 1,282.07 404.15Z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M278.31,401.33a0.45,0.45 0,0 1,-0.27 -0.12,0.4 0.4,0 0,1 0,-0.59 10.76,10.76 0,0 1,8.31 -2.42,0.44 0.44,0 0,1 0.36,0.49 0.42,0.42 0,0 1,-0.51 0.33,10 10,0 0,0 -7.52,2.18A0.48,0.48 0,0 1,278.31 401.33Z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M275.15,398.74a0.45,0.45 0,0 1,-0.27 -0.1,0.4 0.4,0 0,1 0,-0.59 10.77,10.77 0,0 1,8.24 -2.65,0.43 0.43,0 0,1 0.37,0.48 0.44,0.44 0,0 1,-0.5 0.35,10 10,0 0,0 -7.46,2.38A0.45,0.45 0,0 1,275.15 398.74Z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M271.6,395.68a0.5,0.5 0,0 1,-0.26 -0.11,0.41 0.41,0 0,1 0,-0.59c1.84,-2 5.8,-3.08 9,-2.54a0.41,0.41 0,0 1,0.36 0.48,0.42 0.42,0 0,1 -0.5,0.34c-2.91,-0.48 -6.59,0.54 -8.22,2.28A0.5,0.5 0,0 1,271.6 395.68Z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M219.76,350.51c-0.72,13.28 1.66,28.15 1.05,40.62 -0.11,2.35 -1.47,18.2 -0.92,23.08 0.83,7.34 9.93,7 10.75,2.67s2.56,-23 2.74,-24.93c0.54,-8 7.32,-35.24 7.32,-35.24Z"
android:fillColor="#ffa8a7"/>
<path
android:pathData="M233.81,420.13c-0.15,4.27 -0.76,7.11 -2.28,9.65s-4.5,3.41 -7.55,2.77 -7,-2.5 -8,-6.15 -0.87,-6.18 -0.29,-10.15Z"
android:fillColor="#263238"/>
<path
android:pathData="M220.88,389.61c-1.25,0.13 -1.46,5.86 -2,11.61 -0.6,6.16 -2.46,8.75 -3,13.8 -0.63,5.78 -0.24,8.34 2,11.76s9.8,6.62 13.36,1.54c2.9,-4.15 2.9,-8.65 2.46,-14.39a121.29,121.29 0,0 1,0 -14.56c0.13,-4.32 1,-8.69 -0.09,-9.14 -0.07,0.64 -0.13,1.44 -0.2,2.07 0,0.48 -0.11,2.81 -0.81,2.85a8,8 0,0 1,-0.06 -1.62,1.86 1.86,0 0,0 -0.38,-1.38 2.45,2.45 0,0 0,-1.41 -0.55c-1.23,-0.2 -3.84,-0.23 -5.1,-0.3 -0.62,0 -1.25,-0.05 -1.87,0a5.28,5.28 0,0 0,-1.58 0.26,1.08 1.08,0 0,0 -0.66,0.61 2,2 0,0 0,0 0.65,4.34 4.34,0 0,1 -0.12,1.19c0,0.17 -0.16,0.38 -0.34,0.34a0.33,0.33 0,0 1,-0.21 -0.34c0,-0.69 0.05,-1.2 0.07,-2 0,-0.37 0,-0.88 0,-1.26S220.86,390 220.88,389.61Z"
android:fillColor="#37474f"/>
<path
android:pathData="M215.6,418.37c-0.12,3.57 0.16,6 1.89,8.69 2.22,3.42 10.41,6.62 14,1.53 1.77,-2.52 2.18,-5.47 2.35,-8.46C231.48,416.35 219,415 215.6,418.37Z"
android:fillColor="#fafafa"/>
<path
android:pathData="M230.42,414a0.28,0.28 0,0 1,-0.15 0,19.17 19.17,0 0,0 -10.81,-0.76 0.48,0.48 0,0 1,-0.57 -0.31,0.45 0.45,0 0,1 0.34,-0.54 19.74,19.74 0,0 1,11.42 0.81,0.43 0.43,0 0,1 0.23,0.58A0.48,0.48 0,0 1,230.42 414Z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M219.64,408.87a0.47,0.47 0,0 1,-0.4 -0.29,0.44 0.44,0 0,1 0.28,-0.57c5.55,-2 11.16,0.6 11.4,0.71a0.43,0.43 0,0 1,0.21 0.59,0.47 0.47,0 0,1 -0.62,0.2s-5.51,-2.5 -10.67,-0.67A0.46,0.46 0,0 1,219.64 408.87Z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M219.85,404.82a0.47,0.47 0,0 1,-0.4 -0.28,0.43 0.43,0 0,1 0.27,-0.57 15,15 0,0 1,11.63 0.66,0.44 0.44,0 0,1 0.17,0.61 0.48,0.48 0,0 1,-0.63 0.16,14.25 14.25,0 0,0 -10.84,-0.61A0.64,0.64 0,0 1,219.85 404.82Z"
android:fillColor="#f0f0f0"/>
<path
android:pathData="M220.11,400.27a0.49,0.49 0,0 1,-0.4 -0.28,0.43 0.43,0 0,1 0.26,-0.57c5.71,-2.22 11.47,0.66 11.71,0.79a0.42,0.42 0,0 1,0.19 0.59,0.47 0.47,0 0,1 -0.63,0.18c-0.05,0 -5.62,-2.81 -10.93,-0.75A0.45,0.45 0,0 1,220.11 400.27Z"
android:fillColor="#ebebeb"/>
<path
android:pathData="M232.26,224.53a9.15,9.15 0,0 1,-1.83 4.41c-5,7.09 -8.93,13.91 -9.33,26.77 -1,31.82 0.58,64.85 0.58,64.85 -0.21,2.81 -1.41,6 -2.48,20.53 -0.94,12.72 1.24,33.1 1.24,33.1s8.36,4.28 16.24,1.23c3.14,-10.34 8,-36.92 10.65,-50.94 2.47,-13.27 4.6,-32.33 4.6,-32.33l2.69,28.41s-1.22,6.83 0.15,18.15c1,8.51 5.14,33.26 5.14,33.26s9.51,4.56 16.28,-0.22c0,0 3.23,-44.41 3.3,-54.72 0.14,-19.17 1.63,-62.78 -4.23,-87.26a54.21,54.21 0,0 1,-0.37 -5.69C268.26,229.65 241.17,230.5 232.26,224.53Z"
android:fillColor="#37474f"/>
<path
android:pathData="M242.82,233.54a0.36,0.36 0,0 0,-0.44 0.26c-0.37,1.48 -0.65,2.81 -0.92,4.1 -1,4.65 -1.69,8 -5.18,11.62a12.15,12.15 0,0 1,-8.79 3.51c1.51,-9.52 4.7,-17.12 9.79,-23.4a0.34,0.34 0,0 0,-0.07 -0.49,0.39 0.39,0 0,0 -0.52,0.06c-5.23,6.45 -8.49,14.27 -10,24.08 0,0 0,0 0,0s0,0 0,0a89.24,89.24 0,0 0,-1 11.83c-0.32,17.89 -0.27,37.58 -0.53,44.69 -0.15,3.8 -0.17,6 -0.31,11.44 -0.09,3.72 -1.37,13.5 -1.87,20.16 -0.91,12.22 -0.51,33.48 -0.5,33.68a0.36,0.36 0,0 0,0.37 0.33h0a0.36,0.36 0,0 0,0.35 -0.37c0,-0.2 -0.13,-21.37 0.5,-33.53 0.35,-6.77 1.71,-16.4 1.86,-20.1 0.23,-6.1 0.17,-7.72 0.32,-11.59 0.27,-7.11 0.21,-26.8 0.54,-44.7a87.36,87.36 0,0 1,0.9 -11.45h0.39a12.67,12.67 0,0 0,9 -3.75c3.64,-3.75 4.36,-7.19 5.37,-12 0.27,-1.29 0.55,-2.61 0.91,-4.08A0.35,0.35 0,0 0,242.82 233.54Z"
android:fillColor="#455a64"/>
<path
android:pathData="M220,370.57c2.7,2.55 13.68,3.87 17.81,1.62L236,378.54a15.76,15.76 0,0 1,-8.1 1.11c-6.05,-0.54 -7.47,-2.45 -7.47,-2.45Z"
android:fillColor="#455a64"/>
<path
android:pathData="M259.28,368.71c3.58,1.2 13.52,1.21 17.39,-1.82l-0.44,6s-1.45,1.83 -7.71,2.33c-6,0.49 -8.44,-1 -8.44,-1Z"
android:fillColor="#455a64"/>
<path
android:pathData="M251.93,292.15l3.92,-31.42a19.63,19.63 0,0 0,15.74 -7.65s0.26,7.85 -12.55,11.46l-4.69,29 0.27,27.05Z"
android:fillColor="#263238"/>
<path
android:pathData="M260.82,172.75c10.09,1.78 12,3.68 16.58,11 4.77,7.66 12,30.42 13.47,35.35s1,10.63 -7.73,11.15l-9.9,-9.43 -9.95,-29.51Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M260.82,172.75c10.09,1.78 12,3.68 16.58,11 4.77,7.66 12,30.42 13.47,35.35s1,10.63 -7.73,11.15l-9.9,-9.43 -9.95,-29.51Z"
android:strokeAlpha="0.25"
android:fillAlpha="0.25"/>
<path
android:fillColor="#FF000000"
android:pathData="M274,214.15c3.84,-1.09 9.65,-0.79 12.45,1.71 -1.4,-2.16 -5.68,-4.62 -12.72,-3.26Z"
android:strokeAlpha="0.25"
android:fillAlpha="0.25"/>
<path
android:pathData="M223.18,241.5s-1,3.49 -1.47,6.13c3.3,3.08 14.33,8.5 34.35,6.08s22.21,-8.5 22.21,-8.5l-0.77,-7.44Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M223.18,241.5s-1,3.49 -1.47,6.13c3.3,3.08 14.33,8.5 34.35,6.08s22.21,-8.5 22.21,-8.5l-0.77,-7.44Z"
android:strokeAlpha="0.25"
android:fillAlpha="0.25"/>
<path
android:pathData="M245.85,170.39l-19.45,5.73c-2.43,0.84 -6.25,5.16 -3.05,19a113.61,113.61 0,0 1,2.52 19.14c0.29,4.7 -1.17,11.78 -3.79,25.08a4.12,4.12 0,0 0,2 4.39c4.71,2.64 15.93,7.33 33.6,5.32 12.29,-1.39 17.5,-5.23 19.6,-7.61a5.15,5.15 0,0 0,1.27 -3.56c-0.06,-1.76 -0.12,-3.42 -0.17,-5 -0.25,-6.88 -4.23,-14.73 -4.4,-18.8l0.18,-0.32c2.72,-4.67 4.5,-12.8 2.95,-18.49 -1.23,-4.54 -2.76,-6.78 -8.22,-13.74 -5.19,-6.62 -8.09,-8.85 -8.09,-8.85Z"
android:fillColor="#0298E1"/>
<path
android:pathData="M239.18,165.12c0,-1.3 -4.67,-5.12 -7.2,-8.15 -6.17,-7.39 -5.52,-18.41 0.85,-22.13 0.13,-5.66 4,-13.14 16.25,-13.65 12.46,-0.53 23.24,8.26 21.09,17.21Z"
android:fillColor="#263238"/>
<path
android:pathData="M269.37,134.33c1.23,2.39 2.28,6.33 1.74,18.92 -0.44,10.46 -4,13.41 -6.55,14.58 -1.63,0.74 -5.49,0.78 -8.19,0.15l0,4.89c4.48,3.75 -11.35,5 -17,0.06l-0.29,-16c-0.63,1.08 -3.69,1.89 -6.1,-1.4s-2.44,-7.85 0.29,-9.34 5.14,-0.38 6.64,2.29c2.84,1.13 5.34,-1.56 5,-12.56C251.16,132.41 262.1,130.59 269.37,134.33Z"
android:fillColor="#ffa8a7"/>
<path
android:pathData="M274.63,137.18c-1.08,-4.24 -4.19,-8.25 -7.82,-9.35 -4.64,-3.24 -11.13,-1.51 -15.78,0.85a25.62,25.62 0,0 0,-9.44 8.22c-2.58,3.76 -2.52,8.85 -1.33,13.18 0.69,2.51 1.83,5.19 0.87,7.61a5,5 0,0 0,3 -1.75c0.88,-1.06 0.71,-2.68 0.7,-4.21a8.91,8.91 0,0 1,1.07 -4.73c1.53,-2.49 3.9,-4 5.61,-6.25a10.57,10.57 0,0 0,2.24 -5.47l0,0a29.8,29.8 0,0 0,3.64 5.23,11.31 11.31,0 0,0 5.29,3.42c-1.44,-1.77 -3.33,-4.22 -3,-7.48a8.38,8.38 0,0 0,3.09 2.64c1.35,0.76 4.06,1.36 5.15,1.86 4.5,2.07 5.12,5 5,8.94C274.93,147.08 276.24,143.58 274.63,137.18Z"
android:fillColor="#263238"/>
<path
android:pathData="M255.17,159.36c0,0.33 0.25,0.48 0.54,0.48a4.32,4.32 0,0 1,1.3 0.08,3.2 3.2,0 0,1 1.14,0.6 0.48,0.48 0,0 0,0.8 -0.28,1.92 1.92,0 0,0 -0.14,-0.92 1.84,1.84 0,0 0,-1.38 -1,2.78 2.78,0 0,0 -1.77,0.35A1.08,1.08 0,0 0,255.17 159.36Z"
android:fillColor="#b16668"/>
<path
android:pathData="M259.06,145.17l0.15,10.97l5.35,-1.47l-5.5,-9.5z"
android:fillColor="#f28f8f"/>
<path
android:pathData="M256.37,168c-8.5,-2.25 -14,-5.29 -15,-8.84 0,0 0.12,3.6 2.61,5.61 3.5,2.82 12.38,5.24 12.38,5.24Z"
android:fillColor="#f28f8f"/>
<path
android:pathData="M252.78,150.07a1.83,1.83 0,0 0,2.45 0.72,1.71 1.71,0 0,0 0.73,-2.37c-0.47,-0.86 -1.24,-1 -2.08,-0.15S252.31,149.21 252.78,150.07Z"
android:fillColor="#263238"/>
<path
android:pathData="M268.08,149.27a1.85,1.85 0,0 1,-2.29 1.14,1.73 1.73,0 0,1 -1.13,-2.22 1.25,1.25 0,0 1,2.08 -0.51C267.53,148.36 268.4,148.35 268.08,149.27Z"
android:fillColor="#263238"/>
<path
android:pathData="M264.45,141.24l4,1.64a2.07,2.07 0,0 1,-2.74 1.21A2.25,2.25 0,0 1,264.45 141.24Z"
android:fillColor="#263238"/>
<path
android:pathData="M254.35,141.41l-3.78,2.15a2.1,2.1 0,0 0,2.91 0.87A2.29,2.29 0,0 0,254.35 141.41Z"
android:fillColor="#263238"/>
<path
android:pathData="M266.7,144.77c-2.35,0.08 -4.52,0.47 -4.94,2.61a2.45,2.45 0,0 0,-2.65 0.13,2.7 2.7,0 0,0 -1.58,-1.88 8.41,8.41 0,0 0,-3.53 -0.45,8.21 8.21,0 0,0 -3.49,0.68 2.71,2.71 0,0 0,-1.19 1.18l-11.46,-0.87a5.43,5.43 0,0 1,1 0.88l10.2,0.79a3.78,3.78 0,0 0,-0.07 0.91,5.13 5.13,0 0,0 5.12,4.95h0.17a5.12,5.12 0,0 0,5 -5.14,1.56 1.56,0 0,1 1.44,-0.68 1.26,1.26 0,0 1,1 0.56,5.12 5.12,0 0,0 5.11,4.85L267,153.29a5.13,5.13 0,0 0,4.95 -5.29C271.83,145 269.36,144.68 266.7,144.77ZM257.25,151.52a4.27,4.27 0,0 1,-3 1.36,4.34 4.34,0 0,1 -4.44,-4.16 2.09,2.09 0,0 1,1.08 -2.14A7.87,7.87 0,0 1,254 146h0.66a6.23,6.23 0,0 1,2.5 0.39,2.07 2.07,0 0,1 1.22,2.06A4.24,4.24 0,0 1,257.25 151.52ZM266.95,152.47a4.32,4.32 0,0 1,-4.44 -4.16c-0.06,-1.91 1,-2.62 4.22,-2.72h0.61c2.71,0 3.71,0.68 3.77,2.45A4.31,4.31 0,0 1,267 152.47Z"
android:fillColor="#37474f"/>
<path
android:pathData="M246.17,181.17c-1,0 -1.73,0.29 -1.91,0.86 -0.3,0.92 0.79,1.43 0.79,1.43s-2,-1 -2.41,0.18 0.8,1.78 0.8,1.78 -1.35,-0.68 -1.64,0c-0.38,0.91 0.63,1.94 2.33,2.84a10,10 0,0 0,2.38 2.1,6.93 6.93,0 0,0 0.82,2.19 11.82,11.82 0,0 0,-0.56 6.71,13.58 13.58,0 0,0 1.69,3.29l7.89,-13.41 -4.73,-7.33Z"
android:fillColor="#f28f8f"/>
<path
android:pathData="M248.46,189.35a4.7,4.7 0,0 1,-1.61 -1.73l0.06,0a5.08,5.08 0,0 1,-1.95 -1.38l0.07,0a2.81,2.81 0,0 1,-1.59 -0.91,3.2 3.2,0 0,0 1.61,0.69h0l0,0a6.06,6.06 0,0 0,1.88 1.31l0,0 0,0A6.47,6.47 0,0 0,248.46 189.35Z"
android:fillColor="#b16668"/>
<path
android:pathData="M230.5,167c-4.92,-3.61 -3.46,-9 -0.7,-13.78 1.44,1.55 3.86,4 5,5.37s1.11,1.67 2,2.87c4.72,2.55 6.11,6.23 5.64,11.51 4.09,2.37 5.87,5.29 4.95,9.87 3.29,3 3.4,5.93 1.72,10.09 2.87,3.66 2.44,6.81 -0.83,10.07 2,2.21 1.25,4.68 0,6.76s-0.83,2.71 0.25,4.38a7.37,7.37 0,0 1,-5 -6.14c-0.19,-2.58 0.62,-3.55 2,-5.33 -2.53,-2.52 -3.33,-5.29 -1.56,-8.54 -2.42,-2.41 -3.66,-4.63 -3.32,-8.1 -3.36,-1.93 -5.68,-4.26 -5.73,-8.19a9.38,9.38 0,0 1,-4.6 -5.12,8.44 8.44,0 0,1 0.17,-5.72Z"
android:fillColor="#263238"/>
<path
android:pathData="M257.09,206.66a98.94,98.94 0,0 1,2.72 -9.76c1.26,-3.32 1.74,-4.4 1,-6.18a45.7,45.7 0,0 0,-2.92 -5.49,29.28 29.28,0 0,0 -3.29,-3.74c-0.75,-0.6 -3.82,-1.9 -5.24,-2.76s-2.08,-1.21 -2.43,-0.43 0.42,1.79 1.17,2.63a4.85,4.85 0,0 0,1.6 1.18s1.77,1.75 2.14,1.72l1.55,2.5a17.69,17.69 0,0 0,1.21 2.66l-0.09,0a0.86,0.86 0,0 1,-0.8 -0.15,8.62 8.62,0 0,1 -1.78,-2.1c-0.67,-1.2 -1,-1.67 -1.65,-2.93a18,18 0,0 0,-1.76 -3.23c-0.6,-0.67 -1.72,-1 -2.36,0.56a5,5 0,0 0,0.29 4.12c0.53,1.23 1.49,3 1.71,3.82a6.53,6.53 0,0 1,0 3.31c-0.23,1.25 -1.19,2.72 -1,5.91s0.88,3.24 -0.15,6.68Z"
android:fillColor="#ffa8a7"/>
<path
android:pathData="M254.61,189a9.18,9.18 0,0 1,3.34 -0.37,5 5,0 0,0 -3.55,0Z"
android:fillColor="#f28f8f"/>
<path
android:pathData="M226.4,176.12c-10.56,2 -11.58,12.14 -9.84,20.36 1.65,7.8 5.78,22.59 8.27,30 2.1,6.21 5.86,12 10.31,12.53s9,-3.91 8.87,-10.79 -7.71,-34.67 -7.71,-34.67S233.31,179.94 226.4,176.12Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M226.4,176.12c-10.56,2 -11.58,12.14 -9.84,20.36 1.65,7.8 5.78,22.59 8.27,30 2.1,6.21 5.86,12 10.31,12.53s9,-3.91 8.87,-10.79 -7.71,-34.67 -7.71,-34.67S233.31,179.94 226.4,176.12Z"
android:strokeAlpha="0.25"
android:fillAlpha="0.25"/>
<path
android:fillColor="#FF000000"
android:pathData="M237.87,217.69c-1.4,-1.53 -4.41,-3 -6.39,-3.65a18,18 0,0 1,-5.08 -3.32c-1.75,0 -1.49,2.65 -0.59,4s2.88,2.34 1.31,2.61 -5.12,-1 -5.12,-1l-0.1,0.62c1,3.64 2.09,7 2.93,9.49a36.51,36.51 0,0 0,1.4 3.53c2.94,1.54 4.13,1.81 5.92,1.51l8.14,-10.74A29.09,29.09 0,0 0,237.87 217.69Z"
android:strokeAlpha="0.25"
android:fillAlpha="0.25"/>
<path
android:pathData="M247.06,205c-1.6,4.44 -11.43,15.14 -13.24,19.07 -3,6.64 -1.53,14.53 1.32,14.9 2.21,0.3 8.58,0.41 13.9,-10.43a124.83,124.83 0,0 0,8 -21.89Z"
android:fillColor="#ffa8a7"/>
<path
android:pathData="M232.15,231.49a124,124 0,0 1,15.31 -0.08c0.53,-0.86 1.06,-1.81 1.58,-2.86 0.27,-0.56 0.53,-1.11 0.79,-1.67l-16.91,-0.38A19.11,19.11 0,0 0,232.15 231.49Z"
android:fillColor="#f28f8f"/>
<path
android:pathData="M283.16,219c-3.54,-3.81 -6.51,-5 -9.94,-4.81 -4.72,0.28 -12.9,3 -27.38,4a14,14 0,0 1,-4.56 -0.16c-2.6,-0.59 -3.21,-2.58 -7.51,-4.17a23.12,23.12 0,0 1,-6.61 -3.37c-0.9,-0.66 -1.87,0.17 -1.61,1.61a6,6 0,0 0,2.35 3.6c1.56,1.31 2.38,1.78 1.36,2a8.82,8.82 0,0 1,-5.08 -0.63,12.18 12.18,0 0,1 -3,-2.53l-1,-3.49c-1.8,1.31 -2.56,2.2 -1.2,4.46 1,1.71 0.16,2.86 0.94,4.66 0.54,1.25 0.57,3.09 1.86,4.85s6.67,4.43 8.12,4.58c4.64,0.49 10,-0.18 14.07,0.21 3.23,0.16 6.58,0.37 13.07,0.73 8.25,0.46 22.61,1.41 27.46,-0.36C288.63,228.73 286.3,222.35 283.16,219Z"
android:fillColor="#ffa8a7"/>
<path
android:pathData="M273.22,214.17c-1.7,0.22 -3.36,0.57 -5,1l-5,1.09c-3.35,0.69 -6.72,1.24 -10.11,1.69 -1.7,0.19 -3.4,0.36 -5.11,0.5l-2.55,0.19a15.17,15.17 0,0 1,-2.61 0,8.54 8.54,0 0,1 -2.56,-0.61 9.94,9.94 0,0 1,-2.17 -1.46,16.62 16.62,0 0,0 -4.32,-2.65 15.38,15.38 0,0 1,4.56 2.33,10.06 10.06,0 0,0 2.13,1.3 8.11,8.11 0,0 0,2.41 0.46,43.31 43.31,0 0,0 5,-0.31q2.54,-0.24 5.07,-0.57c3.38,-0.37 6.73,-0.93 10.09,-1.49A86.18,86.18 0,0 1,273.22 214.17Z"
android:fillColor="#f28f8f"/>
<path
android:pathData="M256.55,109.66a8.31,8.31 0,0 1,-2.5 2.68,2.37 2.37,0 0,1 -1.39,0.44c1.27,-1.43 2.63,-3.78 1.84,-5.66a2.29,2.29 0,0 0,-2.5 -1.33l-0.19,-0.21c-1.59,-1.58 -4.32,-1.26 -6.16,-0.29a7.87,7.87 0,0 0,-1.6 -0.2,2.86 2.86,0 0,0 -0.19,-1.16 1.39,1.39 0,0 0,-0.11 -0.21A14.74,14.74 0,0 0,244.8 102c0.51,-1 1.15,-2.39 0.54,-3.5a4.09,4.09 0,0 0,-3 -1.64,12.86 12.86,0 0,0 -5.67,0.67 11.94,11.94 0,0 0,-5.57 0.55,25.52 25.52,0 0,0 -7.93,3.66 25,25 0,0 0,-5.46 5.31,7.47 7.47,0 0,0 -1.52,4.14 3.51,3.51 0,0 0,0.65 2.09c-0.2,0.37 -0.4,0.73 -0.58,1.11a5.82,5.82 0,0 0,-0.68 3.76,4.35 4.35,0 0,0 2.39,2.6 11.91,11.91 0,0 0,8.33 0.93h0c2.56,0.9 5.4,-0.22 7.74,-1.27a28.3,28.3 0,0 0,4.54 -2.59,6 6,0 0,0 1.18,0.22 12.09,12.09 0,0 0,8.33 -2.46,9.15 9.15,0 0,0 4.11,-2.31 2.6,2.6 0,0 0,2.13 -0.38,7.06 7.06,0 0,0 2.59,-2.81C257.09,109.69 256.76,109.3 256.55,109.66ZM254.16,108.2a6.29,6.29 0,0 1,-1.1 3,9.27 9.27,0 0,1 -1.11,1.39 2.29,2.29 0,0 1,-0.73 -0.49l0,0c1,-1.56 2,-4 1.1,-5.79A1.68,1.68 0,0 1,254.16 108.2ZM250.79,111.63c-1.09,-1.63 -1.19,-4.63 1.06,-5.24C252.72,107.86 251.7,110.16 250.79,111.63ZM251.4,105.83 L251.47,105.91a2.62,2.62 0,0 0,-1.42 1.06,4.67 4.67,0 0,0 0.5,5l-0.12,0.18a12.18,12.18 0,0 1,-2.72 2.83,6.15 6.15,0 0,1 -3,0.09 2.51,2.51 0,0 1,-1.63 -1.24,27.3 27.3,0 0,0 2.69,-3.3 8.24,8.24 0,0 0,1.69 -3.2,1.68 1.68,0 0,0 -1,-1.81C248.09,104.88 250.09,104.7 251.4,105.83ZM226.19,121a3.71,3.71 0,0 1,-2.23 -2.17,5 5,0 0,1 0.4,-3.34l0.37,0a23.84,23.84 0,0 0,7.74 -2.6A37.41,37.41 0,0 0,236 110.8a8.36,8.36 0,0 0,-0.41 2.37,6 6,0 0,0 0.49,2.67c-0.75,0.59 -1.51,1.15 -2.29,1.67A24.15,24.15 0,0 1,226.19 121ZM241.41,105.44a8.33,8.33 0,0 0,-2.64 1.34,8.13 8.13,0 0,0 -2.3,2.87l-0.38,0.28a35.91,35.91 0,0 1,-6.45 3.5,20.23 20.23,0 0,1 -5,1.41 21.3,21.3 0,0 1,4 -5.7,23.54 23.54,0 0,1 5.52,-4.47 12.63,12.63 0,0 1,6.71 -1.81,3.14 3.14,0 0,1 2.12,0.71 19.88,19.88 0,0 1,-1.31 1.6C241.59,105.29 241.49,105.37 241.41,105.47ZM240.25,106.6c-0.76,0.71 -1.56,1.39 -2.39,2a7.45,7.45 0,0 1,1.73 -1.63A5.52,5.52 0,0 1,240.25 106.63ZM236.25,112.51a8,8 0,0 1,0.69 -2.36c0.95,-0.68 1.88,-1.38 2.76,-2.14s1.51,-1.35 2.21,-2.08a8.53,8.53 0,0 1,1.41 -0.26,12.18 12.18,0 0,1 -0.78,2.25 20.44,20.44 0,0 1,-6 7.57A6.17,6.17 0,0 1,236.25 112.54ZM242.17,110.12a6.53,6.53 0,0 0,-0.11 1.17,6.19 6.19,0 0,0 0.41,2.23 29,29 0,0 1,-4.2 3.62,2.81 2.81,0 0,1 -1.42,-1A22.18,22.18 0,0 0,242.17 110.15ZM242.66,112.46a6.42,6.42 0,0 1,2.44 -6.13,6.34 6.34,0 0,1 0.72,-0.46l0.28,0.07c1.64,0.55 0.29,2.45 -0.28,3.35a27.89,27.89 0,0 1,-1.93 2.64c-0.34,0.42 -0.69,0.82 -1.06,1.22A5,5 0,0 1,242.66 112.49ZM244.94,105.7a6.53,6.53 0,0 0,-1.28 1.18,8.71 8.71,0 0,0 0.33,-1.24A6,6 0,0 1,244.94 105.73ZM243.42,104.55a4.73,4.73 0,0 1,0 0.53q-0.41,0 -0.81,0.09c0.26,-0.3 0.51,-0.62 0.75,-0.93A1.29,1.29 0,0 1,243.42 104.58ZM237.87,97.82a13.82,13.82 0,0 1,3.56 -0.48c1.08,0 3,0.23 3.46,1.44s-0.51,2.56 -1,3.47c-0.17,0.3 -0.37,0.57 -0.56,0.85a3.47,3.47 0,0 0,-1.78 -0.78A12.22,12.22 0,0 0,234 104a24.15,24.15 0,0 0,-6.28 5.15,19.89 19.89,0 0,0 -3.86,5.82c-0.34,0 -0.67,0 -1,0a9.9,9.9 0,0 1,-3.41 -0.58,5.88 5.88,0 0,1 -1.92,-1.1 22.68,22.68 0,0 1,2.61 -3.68A44.84,44.84 0,0 1,231 100.86a26.83,26.83 0,0 1,6.12 -2.78,5.2 5.2,0 0,1 1.48,0.63c0.25,0.16 0.24,-0.29 0.06,-0.41a5.31,5.31 0,0 0,-0.81 -0.44ZM216.77,112.04a5.5,5.5 0,0 1,0.91 -4.11,17.86 17.86,0 0,1 2.61,-3.11c3.27,-3.3 6.24,-5 11.8,-6.57a12.4,12.4 0,0 1,3.41 -0.39c-0.46,0.17 -0.9,0.35 -1.33,0.54a40.08,40.08 0,0 0,-7.32 4.36,45.39 45.39,0 0,0 -6.18,5.22 25.16,25.16 0,0 0,-3.61 4.74A2.29,2.29 0,0 1,216.77 112.07ZM220,121a7.32,7.32 0,0 1,-3.18 -1.66c-1.07,-1.1 -0.81,-2.63 -0.29,-3.93a16.91,16.91 0,0 1,0.75 -1.62l0.25,0.21a9.28,9.28 0,0 0,6.13 1.61c-0.06,0.18 -0.13,0.35 -0.18,0.53a4.4,4.4 0,0 0,0.25 3.52,4.57 4.57,0 0,0 1.63,1.58A11.88,11.88 0,0 1,220 121ZM233.49,119.94c-1.8,0.8 -4,1.66 -6,1.43a24,24 0,0 0,6 -2.78,33.85 33.85,0 0,0 3,-2.1c0.07,0.09 0.13,0.18 0.21,0.27a3.47,3.47 0,0 0,1.11 0.79A28.51,28.51 0,0 1,233.47 119.9ZM240.08,117.52a7,7 0,0 1,-0.9 -0.09,28.3 28.3,0 0,0 3.65,-3.18 3.12,3.12 0,0 0,0.27 0.43,3.86 3.86,0 0,0 3,1.17c0.17,0 0.33,0 0.5,0A11.62,11.62 0,0 1,240.06 117.48ZM249.37,114.52a12.13,12.13 0,0 0,1.63 -1.95,4.64 4.64,0 0,0 0.4,0.36l0.2,0.12A9.17,9.17 0,0 1,249.35 114.46Z"
android:fillColor="#0298E1"/>
</vector>

View File

@ -0,0 +1,311 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="100dp"
android:height="100dp"
android:viewportWidth="500"
android:viewportHeight="500">
<path
android:pathData="M404.19,96.97m-38.84,38.84a54.93,54.93 90,1 1,77.68 -77.68a54.93,54.93 90,1 1,-77.68 77.68"
android:fillColor="#fafafa"/>
<path
android:pathData="M405,152.67a55.71,55.71 0,1 1,54.57 -61.73h0a55.78,55.78 0,0 1,-49.37 61.41C408.47,152.54 406.73,152.64 405,152.67ZM403.39,42.81c-1.67,0 -3.35,0.13 -5.05,0.32a54.06,54.06 0,1 0,5.05 -0.32Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M429.62,90.25a3.86,3.86 0,0 0,-6.21 -0.22,13.33 13.33,0 0,0 -1.63,3.81c-1,3.34 -1.93,6.72 -2.92,10.07 -0.11,0.36 -0.53,0.63 -0.81,0.94 -0.23,-0.34 -0.61,-0.66 -0.67,-1q-0.44,-2.85 -0.73,-5.72c-0.41,-3.75 -0.77,-7.51 -1.17,-11.26 -0.68,-6.31 -1.36,-12.61 -2.09,-18.91a3.78,3.78 0,0 0,-0.87 -1.94,3.65 3.65,0 0,0 -4.27,-0.7 3.49,3.49 0,0 0,-1.84 3.6q1.08,10 2.17,20.06a2.35,2.35 0,0 1,0.06 0.94c-0.08,0.25 -0.36,0.59 -0.59,0.61s-0.57,-0.24 -0.7,-0.47a2.28,2.28 0,0 1,-0.15 -0.92q-1.27,-11.65 -2.54,-23.31a11.76,11.76 0,0 0,-0.2 -1.45A2.72,2.72 0,0 0,402 62c-2.88,-0.44 -4.77,1.35 -4.45,4.25q1.23,11.5 2.49,23a5.6,5.6 0,0 1,0.08 1.35,0.84 0.84,0 0,1 -0.52,0.61 0.88,0.88 0,0 1,-0.71 -0.42,4.53 4.53,0 0,1 -0.22,-1.23c-0.67,-6.14 -1.31,-12.27 -2,-18.4a3.53,3.53 0,0 0,-7 0.79c0.69,6.52 1.41,13 2.11,19.55a3.73,3.73 0,0 1,0.1 1.14,3.79 3.79,0 0,1 -0.56,1c-0.28,-0.29 -0.78,-0.54 -0.82,-0.86 -0.3,-2.36 -0.51,-4.74 -0.76,-7.1 -0.27,-2.51 -0.52,-5 -0.83,-7.53a3.33,3.33 0,0 0,-4 -2.83,3.05 3.05,0 0,0 -2.77,3.53q0.59,7.38 1.18,14.77s0,0 0,0c0.32,3 0.61,6 0.81,9A45.66,45.66 0,0 0,388.3 120a16.22,16.22 0,0 0,12.29 9.36,23.44 23.44,0 0,0 17,-3.7 15.67,15.67 0,0 0,7.06 -9.47c1.88,-7.63 3.6,-15.31 5.3,-23A4.42,4.42 0,0 0,429.62 90.25Z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M445.87,231.19l-7.7,-7.7l7.7,-7.7l-4.42,-4.42l-7.71,7.7l-7.7,-7.7l-4.42,4.42l7.7,7.7l-7.7,7.7l4.42,4.43l7.7,-7.7l7.71,7.7l4.42,-4.43z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M254.89,65.74l-7.9,-7.91l7.9,-7.91l-4.54,-4.54l-7.91,7.91l-7.91,-7.91l-4.54,4.54l7.91,7.91l-7.91,7.91l4.54,4.54l7.91,-7.91l7.91,7.91l4.54,-4.54z"
android:fillColor="#e0e0e0"/>
<path
android:pathData="M110.09,238.98l-10.47,-8.01l8.01,-10.47l-6.02,-4.6l-8.01,10.47l-10.47,-8.01l-4.6,6.02l10.47,8l-8.01,10.48l6.02,4.6l8.01,-10.47l10.47,8.01l4.6,-6.02z"
android:fillColor="#ebebeb"/>
<path
android:pathData="M197.8,166.87l-16.49,-20.1a60.63,60.63 0,1 0,-11.56 18.37l0,0Z"
android:fillColor="#fafafa"/>
<path
android:pathData="M197.8,166.87l-28.07,-1.57h-0.2l0.09,-0.18 0,0 0.21,0.15a61.94,61.94 0,0 1,-11 9.49,60.53 60.53,0 0,1 -15.53,7.47 61.65,61.65 0,0 1,-9.35 2.14,59.18 59.18,0 0,1 -10.15,0.66 60.78,60.78 0,0 1,-55.34 -38.76,61.84 61.84,0 0,1 -3.92,-26.61 60.58,60.58 0,0 1,8.58 -26.69,58.57 58.57,0 0,1 8.94,-11.46A59.26,59.26 0,0 1,93.27 72.6a60.57,60.57 0,0 1,12.65 -5.91,61.63 61.63,0 0,1 13.33,-2.81 60.14,60.14 0,0 1,25.75 3,60.51 60.51,0 0,1 40.19,48.81 60.17,60.17 0,0 1,0 17.23,61.35 61.35,0 0,1 -3.76,13.86l0,-0.13c10.56,13 15.83,19.49 16.4,20.18l-16.59,-20 -0.05,-0.06 0,-0.07a61.44,61.44 0,0 0,3.68 -13.8,60 60,0 0,0 0,-17.14 60.39,60.39 0,0 0,-40 -48.41,59.65 59.65,0 0,0 -25.54,-3 61.22,61.22 0,0 0,-13.22 2.79A60.07,60.07 0,0 0,93.54 73a58.57,58.57 0,0 0,-11.08 8.8,64.5 64.5,0 0,0 -4.77,5.38 63.18,63.18 0,0 0,-4.1 6,60.1 60.1,0 0,0 -8.5,26.46A61.17,61.17 0,0 0,69 146.05a60.32,60.32 0,0 0,54.88 38.53,58.56 58.56,0 0,0 10.09,-0.64 59.9,59.9 0,0 0,24.75 -9.48,61.92 61.92,0 0,0 11,-9.4l0.68,-0.73 -0.47,0.87v0l-0.11,-0.19Z"
android:fillColor="#263238"/>
<path
android:pathData="M142.56,135.54l-11.23,-11.23l11.23,-11.22l-6.45,-6.45l-11.23,11.22l-11.22,-11.22l-6.45,6.45l11.22,11.22l-11.22,11.23l6.45,6.45l11.22,-11.23l11.23,11.23l6.45,-6.45z"
android:fillColor="#0298E1"/>
<path
android:pathData="M332.36,229.94c8.79,4.8 20.33,-0.26 26.08,-8.45s7.17,-18.56 8.43,-28.49q2.44,-19.22 4.88,-38.42c1.42,-11.25 4,-20.49 0.32,-33.85 -4.26,-15.49 -23.94,-19.86 -23.94,-19.86s-8.69,-8 -13.71,-11.32c-8.28,-5.46 -16.75,-6.66 -25.64,-5.4a89.45,89.45 0,0 0,-38.1 15.27,39 39,0 0,1 -22.88,7.11 22.3,22.3 0,0 1,-2.91 -0.19c-5.53,-0.78 -16,-4.36 -18.74,2.68s6,19.59 6,19.59 -9.79,-2.5 -10.3,5.53 10.52,27.41 29.75,27.64"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M332.36,229.94c8.79,4.8 20.33,-0.26 26.08,-8.45s7.17,-18.56 8.43,-28.49q2.44,-19.22 4.88,-38.42c1.42,-11.25 4,-20.49 0.32,-33.85 -4.26,-15.49 -23.94,-19.86 -23.94,-19.86s-8.69,-8 -13.71,-11.32c-8.28,-5.46 -16.75,-6.66 -25.64,-5.4a89.45,89.45 0,0 0,-38.1 15.27,39 39,0 0,1 -22.88,7.11 22.3,22.3 0,0 1,-2.91 -0.19c-5.53,-0.78 -16,-4.36 -18.74,2.68s6,19.59 6,19.59 -9.79,-2.5 -10.3,5.53 10.52,27.41 29.75,27.64"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M452.56,317.59c-6.89,-26.17 -30.83,-33.23 -30.83,-33.23v0.07c-21.84,-8.7 -34.25,-9.47 -65.2,-18.21l2,-106C360.06,126.51 341.7,97.54 308,97l-3.12,0.13A60.31,60.31 0,0 0,247.05 155c-1.15,29.23 -2,61.55 -1.2,77.18 1.73,32.33 34.3,36 34.3,36 0,0.49 0,2.74 -0.06,6.06 -1.46,0 -18.93,2.36 -37.6,6.16 -11.8,-3.59 -46.71,-13 -69,-6.27h0c-19.61,1 -70,4.58 -103.78,16.56C51,297.3 31,312.79 31,335.68c0,21.55 26.07,27.43 52.37,29.11 18.63,1.19 51.13,-1.43 68.53,-3.06l64.36,33.53 4.88,24.83 4,51.52 181.48,-0.26h60.86S459.44,343.76 452.56,317.59Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M280.15,268.17s20.44,0.35 41.6,-14.2c0,0 -9.29,24 -41.69,22.38Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M259,180a4.61,4.61 0,0 0,4.65 4.48,4.43 4.43,0 0,0 4.59,-4.36 4.63,4.63 0,0 0,-4.65 -4.48A4.41,4.41 0,0 0,259 180Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M254.51,170.24c0.6,0.58 4,-2.16 9,-2.35s8.72,2.14 9.23,1.51c0.25,-0.28 -0.38,-1.34 -2,-2.43a12.68,12.68 0,0 0,-7.42 -2,12.22 12.22,0 0,0 -7.11,2.62C254.69,168.87 254.22,170 254.51,170.24Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M303.14,180a4.63,4.63 0,0 0,4.65 4.48,4.43 4.43,0 0,0 4.59,-4.36 4.63,4.63 0,0 0,-4.64 -4.48A4.42,4.42 0,0 0,303.14 180Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M302.38,169.45c0.6,0.58 4,-2.15 9,-2.34s8.72,2.14 9.23,1.51c0.25,-0.28 -0.37,-1.35 -2,-2.44a12.76,12.76 0,0 0,-7.42 -2,12.16 12.16,0 0,0 -7.11,2.62C302.57,168.08 302.09,169.2 302.38,169.45Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M287,207.07c0,-0.29 -3.1,-0.69 -8.14,-1.13 -1.27,-0.07 -2.48,-0.28 -2.73,-1.13s0.14,-2.3 0.69,-3.8q1.61,-4.68 3.35,-9.82c4.65,-14 8,-25.45 7.39,-25.64s-4.79,11 -9.43,25L275,200.4c-0.42,1.47 -1.18,3.14 -0.45,5a3.15,3.15 0,0 0,2.17 1.77,8.23 8.23,0 0,0 2.16,0.21C283.9,207.46 287,207.35 287,207.07Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M292.11,227.79c0.81,0.08 1,-5.31 5.81,-9s10.49,-2.82 10.56,-3.57c0.09,-0.34 -1.24,-1.1 -3.66,-1.27a13.49,13.49 0,0 0,-8.81 2.68,11.71 11.71,0 0,0 -4.52,7.53C291.19,226.45 291.74,227.81 292.11,227.79Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M323.13,152.23c-1,-1 -5.27,1.6 -10.88,3.36s-10.57,2.26 -10.77,3.69c-0.08,0.67 1.2,1.49 3.47,1.9a19.75,19.75 0,0 0,16.49 -5.37C323,154.14 323.58,152.72 323.13,152.23Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M271.76,158c-0.45,-1.36 -4.07,-1.38 -8,-2.69s-6.93,-3.24 -8.08,-2.39c-0.52,0.43 -0.38,1.68 0.71,3.19a12.2,12.2 0,0 0,12.94 4.09C271.11,159.57 272,158.63 271.76,158Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M356.9,184.29c0.54,-0.26 22,-7.5 22.17,14.65S357,216.73 357,216.09 356.9,184.29 356.9,184.29Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M363.64,207.64c0.09,-0.07 0.39,0.26 1,0.56a3.91,3.91 0,0 0,2.89 0c2.33,-0.88 4.26,-4.61 4.33,-8.61a12.69,12.69 0,0 0,-1.13 -5.51c-0.69,-1.61 -1.75,-2.74 -2.93,-2.93a2,2 0,0 0,-2.27 1.08c-0.29,0.62 -0.14,1.06 -0.26,1.1s-0.48,-0.37 -0.31,-1.29a2.45,2.45 0,0 1,0.86 -1.39,2.92 2.92,0 0,1 2.13,-0.59c1.71,0.11 3.26,1.66 4.06,3.4a13.07,13.07 0,0 1,1.4 6.16c-0.1,4.46 -2.35,8.66 -5.54,9.62a4.13,4.13 0,0 1,-3.54 -0.56C363.68,208.17 363.56,207.68 363.64,207.64Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M244.37,142.84c10.2,8.33 29.68,1 42.14,-3.29s21.54,-13.4 33.79,-18.22A27.52,27.52 0,0 1,330.46 119c3.5,0 7.14,1.33 9.26,4.11 2.34,3.06 2.45,7.31 1.58,11.06s-2.62,7.24 -3.7,10.93c-2,6.78 -1.7,14 -1.39,21.06 0.44,9.94 1,20.29 5.86,29 1.92,3.42 5.76,6.84 9.34,5.23 4.09,-1.84 3.31,-7.77 4.81,-12s5.75,-7.07 8.19,-10.94 3,-8.85 3.12,-13.53c0.42,-15.36 -2.38,-31 -9.8,-44.47S338,94.89 323.18,90.71c-15.38,-4.36 -32.43,-0.95 -45.92,7.64s-23.51,22 -29.57,36.79"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M244.37,142.84c10.2,8.33 29.68,1 42.14,-3.29s21.54,-13.4 33.79,-18.22A27.52,27.52 0,0 1,330.46 119c3.5,0 7.14,1.33 9.26,4.11 2.34,3.06 2.45,7.31 1.58,11.06s-2.62,7.24 -3.7,10.93c-2,6.78 -1.7,14 -1.39,21.06 0.44,9.94 1,20.29 5.86,29 1.92,3.42 5.76,6.84 9.34,5.23 4.09,-1.84 3.31,-7.77 4.81,-12s5.75,-7.07 8.19,-10.94 3,-8.85 3.12,-13.53c0.42,-15.36 -2.38,-31 -9.8,-44.47S338,94.89 323.18,90.71c-15.38,-4.36 -32.43,-0.95 -45.92,7.64s-23.51,22 -29.57,36.79"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M396.69,472.22c-0.14,0 -1.7,-20.78 -3.48,-46.43s-3.1,-46.45 -3,-46.46 1.71,20.77 3.48,46.43S396.84,472.21 396.69,472.22Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M417.09,297.85a3.11,3.11 0,0 1,-0.5 0.37l-1.5,1 -1.08,0.7c-0.39,0.27 -0.79,0.59 -1.23,0.92a35.69,35.69 0,0 0,-2.91 2.33l-1.63,1.44c-0.56,0.51 -1.08,1.1 -1.66,1.67a50.2,50.2 0,0 0,-3.43 3.89,53.13 53.13,0 0,0 -10.21,21.27 50.48,50.48 0,0 0,-0.88 5.12c-0.09,0.8 -0.22,1.58 -0.27,2.33s-0.07,1.48 -0.1,2.17a35.56,35.56 0,0 0,0 3.74c0,0.55 0,1.06 0.05,1.53s0.09,0.89 0.13,1.28c0.07,0.73 0.13,1.32 0.17,1.78a2.75,2.75 0,0 1,0 0.63,3.51 3.51,0 0,1 -0.12,-0.61l-0.27,-1.78c-0.06,-0.39 -0.12,-0.82 -0.18,-1.28s-0.06,-1 -0.09,-1.54a32,32 0,0 1,-0.09 -3.76c0,-0.7 0.05,-1.43 0.07,-2.19s0.16,-1.54 0.24,-2.36a50.62,50.62 0,0 1,0.84 -5.16,52.22 52.22,0 0,1 10.3,-21.47 48.73,48.73 0,0 1,3.5 -3.89c0.59,-0.57 1.12,-1.16 1.7,-1.66l1.66,-1.43a34.36,34.36 0,0 1,3 -2.29c0.45,-0.31 0.86,-0.63 1.26,-0.88L415,299l1.55,-0.9A2.47,2.47 0,0 1,417.09 297.85Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M161.62,208.93c-11.43,7.28 -16,22.52 -13.81,31.52 1.1,4.54 3.16,9.11 2.26,13.69 -0.78,4 -3.63,7.13 -5.76,10.56 -7.1,11.43 -5.85,27.42 3,37.6s24.46,13.72 36.79,8.33"
android:fillColor="#263238"/>
<path
android:pathData="M154.86,268.41c-27.81,-61.15 38.33,-91.87 74.41,-81.68 33.91,9.58 48.38,26.46 54,49.14s5.31,47.27 -3.58,68.88c-4.38,10.65 -12.28,21.48 -23.73,22.81"
android:fillColor="#263238"/>
<path
android:pathData="M104.48,440.41c-9.33,-5.76 -15.8,-19.2 -14.32,-28.82s6.36,-19.21 14.83,-24c5.71,-3.24 13.07,-4.47 16.68,-9.95 3.2,-4.84 2.27,-11.37 4.65,-16.66 1.93,-4.27 5.9,-7.34 10.21,-9.18s9,-2.56 13.63,-3.28l29.8,-4.62c3.29,-0.51 7,-0.93 9.65,1.09s3.25,5.74 3.59,9.08a564.08,564.08 0,0 1,2.87 69.87"
android:fillColor="#263238"/>
<path
android:pathData="M187.16,395.19c-0.48,-29.21 -0.55,-46.6 -0.56,-46.43 0,0 -25.11,-4.17 -30.32,-36.93 -2.58,-16.3 -1.76,-43 -0.39,-64.85 1.24,-19.66 14.26,-43.78 33.85,-41.71l61.16,15.46a11.53,11.53 0,0 1,10.31 11.69h0l-3.8,144.77"
android:fillColor="#ffbe9d"/>
<path
android:pathData="M179.43,268.49c-0.53,-0.54 -3.68,1.86 -8.2,1.9s-7.87,-2.18 -8.35,-1.62c-0.24,0.25 0.3,1.23 1.76,2.27a11.53,11.53 0,0 0,6.69 2,11 11,0 0,0 6.52,-2.2C179.23,269.73 179.69,268.73 179.43,268.49Z"
android:fillColor="#263238"/>
<path
android:pathData="M223.85,266.71c-0.56,-0.5 -3.55,2.09 -8.06,2.43s-8,-1.66 -8.43,-1.07c-0.22,0.26 0.38,1.21 1.9,2.15a11.58,11.58 0,0 0,6.81 1.53,11.06 11.06,0 0,0 6.36,-2.61C223.73,268 224.13,266.94 223.85,266.71Z"
android:fillColor="#263238"/>
<path
android:pathData="M189.72,295.25c0,-0.26 -2.79,-0.74 -7.34,-1.32 -1.16,-0.12 -2.25,-0.35 -2.44,-1.14s0.21,-2.08 0.77,-3.42q1.62,-4.2 3.41,-8.79c4.74,-12.52 8.18,-22.82 7.67,-23s-4.76,9.81 -9.5,22.32L179,288.75c-0.44,1.31 -1.19,2.8 -0.6,4.53a2.91,2.91 0,0 0,1.9 1.69,7.9 7.9,0 0,0 2,0.27C186.86,295.49 189.71,295.51 189.72,295.25Z"
android:fillColor="#263238"/>
<path
android:pathData="M186.6,348.76a83.35,83.35 0,0 0,43.88 -11.71s-11.09,22.8 -43.88,19.73Z"
android:fillColor="#eb996e"/>
<path
android:pathData="M191.64,306.15a8.15,8.15 0,0 1,7.3 -3,7.44 7.44,0 0,1 5.14,2.76 4.72,4.72 0,0 1,0.36 5.39c-1.23,1.71 -3.78,2.11 -5.93,1.5a17.26,17.26 0,0 1,-5.78 -3.45,4.83 4.83,0 0,1 -1.29,-1.34 1.51,1.51 0,0 1,0 -1.68"
android:fillColor="#eb996e"/>
<path
android:pathData="M192.78,314.5c0.7,0.23 1.94,-4.52 6.88,-6.85s9.86,-0.49 10.07,-1.15c0.14,-0.28 -0.89,-1.21 -3,-1.82a12.2,12.2 0,0 0,-8.34 0.69,10.65 10.65,0 0,0 -5.45,5.82C192.22,313.13 192.45,314.45 192.78,314.5Z"
android:fillColor="#263238"/>
<path
android:pathData="M204.1,253.8c0.45,1.23 5,0.65 10.26,1.29s9.6,2.08 10.3,1c0.32,-0.53 -0.43,-1.68 -2.16,-2.87a17.91,17.91 0,0 0,-15.66 -1.73C204.89,252.25 203.91,253.22 204.1,253.8Z"
android:fillColor="#263238"/>
<path
android:pathData="M176.72,250.22c-1,-0.82 -3.8,0.92 -7.44,1.82s-6.89,0.89 -7.36,2.1c-0.19,0.58 0.53,1.47 2.1,2.1a11,11 0,0 0,11.92 -3.16C177,251.76 177.18,250.63 176.72,250.22Z"
android:fillColor="#263238"/>
<path
android:pathData="M255.59,275.35c0.48,-0.23 17.54,-7.77 17.74,11.84S253.79,303 253.75,302.4 255.59,275.35 255.59,275.35Z"
android:fillColor="#ffbe9d"/>
<path
android:pathData="M259.67,294.91c0.08,-0.06 0.34,0.24 0.92,0.49a3.41,3.41 0,0 0,2.56 0c2.06,-0.78 3.77,-4.09 3.83,-7.63a11.27,11.27 0,0 0,-1 -4.88,4 4,0 0,0 -2.6,-2.59 1.75,1.75 0,0 0,-2 0.95c-0.26,0.55 -0.13,0.94 -0.23,1s-0.42,-0.33 -0.27,-1.14a2.14,2.14 0,0 1,0.75 -1.23,2.59 2.59,0 0,1 1.89,-0.52c1.51,0.09 2.89,1.46 3.6,3a11.62,11.62 0,0 1,1.24 5.46c-0.08,3.95 -2.07,7.67 -4.9,8.52a3.67,3.67 0,0 1,-3.13 -0.49C259.71,295.38 259.6,295 259.67,294.91Z"
android:fillColor="#eb996e"/>
<path
android:pathData="M183.21,195.4c-10.92,5.64 -15.41,28 -10.89,39.39s16.68,17 28.68,19.63 23.77,2.94 35.6,-0.35c0.82,8 5.6,16.13 13.32,18.23 10.22,2.78 20.52,-6.58 22.8,-16.93s-1.13,-21 -4.5,-31.05"
android:fillColor="#263238"/>
<path
android:pathData="M269.76,266.58c0.05,0.06 -0.49,0.57 -1.51,1.43a54.77,54.77 0,0 1,-4.53 3.41,27.6 27.6,0 0,1 -7.62,3.69 16.51,16.51 0,0 1,-10.41 -0.15,16.13 16.13,0 0,1 -7.88,-6.81 22,22 0,0 1,-2.83 -8,29.14 29.14,0 0,1 -0.3,-5.68 6.6,6.6 0,0 1,0.25 -2.07c0.22,0 0,3 0.84,7.61a22.61,22.61 0,0 0,2.92 7.6,15.5 15.5,0 0,0 7.4,6.3 15.9,15.9 0,0 0,9.73 0.21,28.82 28.82,0 0,0 7.47,-3.37C267.3,268.24 269.64,266.42 269.76,266.58Z"
android:fillColor="#263238"/>
<path
android:pathData="M226.66,272.06c-1,2.13 -2.13,4.61 -1.89,6.94a4,4 0,0 0,0.74 2.07,2.29 2.29,0 0,0 1.91,0.95 2.59,2.59 0,0 0,2.12 -2.56,7.51 7.51,0 0,0 -1,-3.45l-1.88,-3.95"
android:fillColor="#455a64"/>
<path
android:pathData="M223.94,272.06a5.44,5.44 0,0 1,-1.62 1.6,11.76 11.76,0 0,1 -10.55,1.61 5.57,5.57 0,0 1,-2 -1c0,-0.08 0.8,0.33 2.12,0.69a12.87,12.87 0,0 0,10.24 -1.57C223.26,272.61 223.87,272 223.94,272.06Z"
android:fillColor="#eb996e"/>
<path
android:pathData="M177.65,274.13a4.41,4.41 0,0 1,-1.52 1.14,10.76 10.76,0 0,1 -4.42,1.24 10.62,10.62 0,0 1,-4.53 -0.74,4.33 4.33,0 0,1 -1.64,-1 18.3,18.3 0,0 1,1.76 0.62,12.25 12.25,0 0,0 4.38,0.57 12.63,12.63 0,0 0,4.29 -1.05A14.07,14.07 0,0 1,177.65 274.13Z"
android:fillColor="#eb996e"/>
<path
android:pathData="M341.24,389.29c-0.33,-7.08 -5.18,-13.33 -11.13,-17.18s-12.94,-5.69 -19.81,-7.45c4.72,-9.13 1.48,-21.56 -7.08,-27.24 -4.63,-3.07 -10.53,-4.37 -14.21,-8.54 -2.9,-3.29 -3.91,-7.9 -3.79,-12.29s1.22,-8.68 2.06,-13a106.64,106.64 0,0 0,-1.21 -46.05l-2.14,8.67 -5,13.34 -7.86,27.34 -12,6.14c-0.64,11 -0.25,23 -0.89,34l21.65,10.71 0.23,0.47Z"
android:fillColor="#263238"/>
<path
android:pathData="M272.64,277.66s0,-0.13 0.05,-0.36 0.1,-0.62 0.17,-1.06a40.64,40.64 0,0 0,0.41 -4.08,37 37,0 0,0 -2.36,-14.76 35.51,35.51 0,0 0,-5 -9,36.87 36.87,0 0,0 -8.69,-8.06 35.62,35.62 0,0 0,-12 -5.12,61.2 61.2,0 0,0 -14.07,-1.12c-4.87,0.06 -9.63,0.29 -14.23,0.08a41.75,41.75 0,0 1,-13 -2.44,35.13 35.13,0 0,1 -10.26,-6.23 36.37,36.37 0,0 1,-6.83 -7.92,35.27 35.27,0 0,1 -5.32,-14.09l-0.24,-2.37c-0.06,-0.68 0,-1.27 0,-1.74s0,-0.8 0,-1.07a1.41,1.41 0,0 1,0 -0.36,1.65 1.65,0 0,1 0,0.36c0,0.27 0,0.62 0,1.07s0,1.05 0.08,1.73 0.18,1.47 0.29,2.35a36.56,36.56 0,0 0,12.24 21.71A34.47,34.47 0,0 0,204 231.25a41.25,41.25 0,0 0,12.89 2.38c4.57,0.2 9.32,0 14.2,-0.1a61.3,61.3 0,0 1,14.19 1.15,36 36,0 0,1 12.19,5.22 36.92,36.92 0,0 1,8.76 8.2,35.78 35.78,0 0,1 5.05,9.17 36.6,36.6 0,0 1,2.21 14.9A26.54,26.54 0,0 1,272.64 277.66Z"
android:fillColor="#455a64"/>
<path
android:pathData="M284.59,258.06a1.37,1.37 0,0 1,0 -0.33c0,-0.25 0,-0.58 0.06,-1 0.09,-0.86 0.08,-2.13 0.06,-3.77a36.13,36.13 0,0 0,-0.76 -5.89,35.34 35.34,0 0,0 -2.44,-7.47 35.81,35.81 0,0 0,-13.05 -15.38,42 42,0 0,0 -11,-4.85 79,79 0,0 0,-12.76 -2.46c-8.86,-1 -17.42,-1.32 -25.05,-2.9a54.4,54.4 0,0 1,-10.56 -3.2,37.12 37.12,0 0,1 -8.26,-4.91 30.39,30.39 0,0 1,-5.56 -5.66,25.41 25.41,0 0,1 -3,-5.19 19.38,19.38 0,0 1,-0.73 -2.06,11.9 11.9,0 0,1 -0.4,-1.55q-0.12,-0.6 -0.18,-1a1.63,1.63 0,0 1,-0.05 -0.34,1.89 1.89,0 0,1 0.1,0.33c0.06,0.24 0.13,0.55 0.23,0.95a12.44,12.44 0,0 0,0.45 1.52,17.29 17.29,0 0,0 0.77,2 25.24,25.24 0,0 0,3 5.1,30.25 30.25,0 0,0 5.55,5.54 37.28,37.28 0,0 0,8.2 4.8,53.78 53.78,0 0,0 10.48,3.13c7.59,1.54 16.12,1.82 25,2.85a78,78 0,0 1,12.84 2.49,42.31 42.31,0 0,1 11.14,4.94 36,36 0,0 1,13.13 15.63A36.45,36.45 0,0 1,284.91 253a30.22,30.22 0,0 1,-0.16 3.77c0,0.41 -0.08,0.73 -0.11,1A1.23,1.23 0,0 1,284.59 258.06Z"
android:fillColor="#455a64"/>
<path
android:pathData="M283.7,357.25a3.41,3.41 0,0 1,-0.55 -0.33c-0.34,-0.24 -0.87,-0.56 -1.5,-1.05a40.36,40.36 0,0 1,-5 -4.46A43,43 0,0 1,266 310.14a40.53,40.53 0,0 1,2.27 -6.34c0.31,-0.73 0.62,-1.27 0.81,-1.64a2.34,2.34 0,0 1,0.32 -0.55,2.58 2.58,0 0,1 -0.23,0.59c-0.15,0.39 -0.43,0.94 -0.72,1.68a45.12,45.12 0,0 0,-2.09 6.35,43.75 43.75,0 0,0 10.52,40.93 45.47,45.47 0,0 0,4.9 4.55c0.61,0.51 1.12,0.86 1.44,1.12A2.74,2.74 0,0 1,283.7 357.25Z"
android:fillColor="#455a64"/>
<path
android:pathData="M83.76,407l-0.11,-0.33a3.14,3.14 0,0 1,-0.14 -1,4.77 4.77,0 0,1 1.7,-3.49A4.7,4.7 0,0 1,87.8 401a5.38,5.38 0,0 1,3.32 0.77,6.72 6.72,0 0,1 2.62,2.91 6.61,6.61 0,0 1,0.35 4.37,8.32 8.32,0 0,1 -2.51,4.12 7.92,7.92 0,0 1,-4.77 2.12,10.3 10.3,0 0,1 -9.57,-5.61 13.53,13.53 0,0 1,0.5 -12.39,21.28 21.28,0 0,1 10.19,-8.88 55.7,55.7 0,0 1,13.12 -3.6c4.29,-0.79 8.5,-1.67 11.89,-3.8a14.59,14.59 0,0 0,4.25 -3.89,11.69 11.69,0 0,0 2,-5c0.3,-1.75 0.38,-3.48 0.61,-5.14a20.72,20.72 0,0 1,0.48 -2.42,10.93 10.93,0 0,1 0.39,-1.14 8,8 0,0 1,0.47 -1.08,13.32 13.32,0 0,1 2.55,-3.56 19.24,19.24 0,0 1,3 -2.48,32.74 32.74,0 0,1 5.49,-2.93c1.57,-0.68 2.82,-1.12 3.66,-1.43l1,-0.33a1.36,1.36 0,0 1,0.34 -0.09l-0.32,0.14 -0.95,0.38c-0.83,0.34 -2.07,0.81 -3.62,1.51a33.91,33.91 0,0 0,-5.41 3,18.8 18.8,0 0,0 -2.94,2.47 12.85,12.85 0,0 0,-2.46 3.5,8.81 8.81,0 0,0 -0.45,1 10.32,10.32 0,0 0,-0.37 1.11,19.49 19.49,0 0,0 -0.45,2.37c-0.22,1.64 -0.29,3.38 -0.59,5.17a12.1,12.1 0,0 1,-2 5.21,15 15,0 0,1 -4.37,4c-3.49,2.21 -7.76,3.11 -12.06,3.9a55.24,55.24 0,0 0,-13 3.58,20.8 20.8,0 0,0 -10,8.64 13,13 0,0 0,-0.52 11.93,9.86 9.86,0 0,0 9.11,5.4 7.5,7.5 0,0 0,4.53 -2,7.92 7.92,0 0,0 2.42,-3.92 6.17,6.17 0,0 0,-0.3 -4.13A6.33,6.33 0,0 0,91 402a5.12,5.12 0,0 0,-3.14 -0.78,4.55 4.55,0 0,0 -2.49,1.11 4.72,4.72 0,0 0,-1.73 3.33A7,7 0,0 0,83.76 407Z"
android:fillColor="#263238"/>
<path
android:pathData="M303.86,359.73s0.33,0.37 1,1a8.92,8.92 0,0 0,3.59 1.91,11.5 11.5,0 0,0 2.91,0.43 12.51,12.51 0,0 0,3.47 -0.49,10.54 10.54,0 0,0 3.56,-1.81 10.93,10.93 0,0 0,2.84 -3.46,14.17 14.17,0 0,0 1.06,-10.06 16.29,16.29 0,0 0,-6.94 -9.3,21.86 21.86,0 0,0 -5.83,-2.69 42.31,42.31 0,0 0,-6.65 -1.16,16.93 16.93,0 0,1 -6.78,-2.06 10.38,10.38 0,0 1,-4.28 -5.88,16.86 16.86,0 0,1 -0.48,-7.29A43.32,43.32 0,0 1,293 312,55.25 55.25,0 0,0 295.72,299a51.4,51.4 0,0 0,-0.5 -12A49.47,49.47 0,0 0,292.57 277l-0.4,-1.11 -0.46,-1.06c-0.3,-0.7 -0.6,-1.38 -0.89,-2 -0.68,-1.27 -1.22,-2.52 -1.9,-3.59s-1.23,-2.12 -1.88,-3 -1.15,-1.74 -1.73,-2.43l-1.47,-1.87 -1.16,-1.3 -0.7,-0.81a1.61,1.61 0,0 1,-0.23 -0.29s0.1,0.08 0.27,0.25 0.43,0.45 0.74,0.78l1.2,1.27 1.51,1.85c0.59,0.68 1.14,1.51 1.78,2.41s1.25,1.9 1.92,3 1.26,2.33 1.95,3.6c0.3,0.66 0.6,1.34 0.91,2 0.16,0.35 0.31,0.71 0.47,1.06l0.42,1.12A50.48,50.48 0,0 1,295.65 287a51.17,51.17 0,0 1,0.54 12.06,55 55,0 0,1 -2.69,13.05 45.22,45.22 0,0 0,-1.63 6.8,16.29 16.29,0 0,0 0.47,7.07 9.84,9.84 0,0 0,4.05 5.59,16.4 16.4,0 0,0 6.58,2 43.5,43.5 0,0 1,6.72 1.19,22 22,0 0,1 5.95,2.77 16.67,16.67 0,0 1,7.1 9.6,14.5 14.5,0 0,1 -1.16,10.34 11.09,11.09 0,0 1,-3 3.54,10.75 10.75,0 0,1 -3.68,1.83 12.69,12.69 0,0 1,-3.55 0.46,12.3 12.3,0 0,1 -3,-0.48 8.89,8.89 0,0 1,-3.6 -2,5.75 5.75,0 0,1 -0.73,-0.78A2.22,2.22 0,0 1,303.86 359.73Z"
android:fillColor="#263238"/>
<path
android:pathData="M373,472S354.48,395.06 338,386.69s-79.78,-39.63 -79.78,-39.63 -3.87,29.27 -34.59,29.42c-31.4,0.16 -36.91,-16 -36.91,-16S111.91,390.79 105,398.64c-10.3,11.64 -17,73.33 -17,73.33H373"
android:fillColor="#455a64"/>
<path
android:pathData="M206.16,422.82a35.61,35.61 0,0 0,-4.21 -6.5,5.89 5.89,0 0,0 -1.58,-1.49 2.28,2.28 0,0 0,-2.1 -0.19,2.34 2.34,0 0,0 -1.2,1.85 3,3 0,0 0,0.49 2.14,24 24,0 0,0 6.75,7 2,2 0,0 0,1.22 0.47,1.43 1.43,0 0,0 1.18,-1.4A3.94,3.94 0,0 0,206.16 422.82Z"
android:fillColor="#fff"/>
<path
android:pathData="M251.64,453.53a36,36 0,0 0,-4.21 -6.5,6.22 6.22,0 0,0 -1.58,-1.49 2.09,2.09 0,0 0,-3.3 1.66,3.07 3.07,0 0,0 0.49,2.15 24.11,24.11 0,0 0,6.75 7,2 2,0 0,0 1.22,0.47 1.43,1.43 0,0 0,1.18 -1.4A4,4 0,0 0,251.64 453.53Z"
android:fillColor="#fff"/>
<path
android:pathData="M289.45,461.18a35.56,35.56 0,0 0,-4.2 -6.5,6.08 6.08,0 0,0 -1.59,-1.49 2.26,2.26 0,0 0,-2.09 -0.19,2.32 2.32,0 0,0 -1.2,1.85 3,3 0,0 0,0.49 2.14,24 24,0 0,0 6.75,7 2,2 0,0 0,1.21 0.47,1.42 1.42,0 0,0 1.18,-1.4A3.83,3.83 0,0 0,289.45 461.18Z"
android:fillColor="#fff"/>
<path
android:pathData="M325,447a35,35 0,0 0,-4.2 -6.5,5.92 5.92,0 0,0 -1.59,-1.49 2.26,2.26 0,0 0,-2.09 -0.19,2.32 2.32,0 0,0 -1.2,1.85 3,3 0,0 0,0.49 2.14,24 24,0 0,0 6.75,7 2,2 0,0 0,1.21 0.47,1.42 1.42,0 0,0 1.18,-1.4A3.83,3.83 0,0 0,325 447Z"
android:fillColor="#fff"/>
<path
android:pathData="M330,404.87a36,36 0,0 0,-4.21 -6.5,6.1 6.1,0 0,0 -1.59,-1.49 2.32,2.32 0,0 0,-2.09 -0.19,2.36 2.36,0 0,0 -1.2,1.85 3,3 0,0 0,0.49 2.15,24 24,0 0,0 6.75,7 2,2 0,0 0,1.22 0.47,1.43 1.43,0 0,0 1.18,-1.4A4,4 0,0 0,330 404.87Z"
android:fillColor="#fff"/>
<path
android:pathData="M359.25,451.68a35.09,35.09 0,0 0,-4.21 -6.5,5.89 5.89,0 0,0 -1.58,-1.49 2.28,2.28 0,0 0,-2.1 -0.19,2.33 2.33,0 0,0 -1.19,1.85 3,3 0,0 0,0.48 2.14,24.15 24.15,0 0,0 6.75,7 2,2 0,0 0,1.22 0.47,1.42 1.42,0 0,0 1.18,-1.4A3.83,3.83 0,0 0,359.25 451.68Z"
android:fillColor="#fff"/>
<path
android:pathData="M103.84,459a35.56,35.56 0,0 0,-4.2 -6.5A6.08,6.08 0,0 0,98.05 451a2.29,2.29 0,0 0,-2.09 -0.2,2.35 2.35,0 0,0 -1.2,1.86 3,3 0,0 0,0.49 2.14,23.87 23.87,0 0,0 6.75,7 1.94,1.94 0,0 0,1.21 0.48,1.43 1.43,0 0,0 1.18,-1.4A3.83,3.83 0,0 0,103.84 459Z"
android:fillColor="#fff"/>
<path
android:pathData="M115,426.21a35.09,35.09 0,0 0,-4.21 -6.5,5.89 5.89,0 0,0 -1.58,-1.49 2.29,2.29 0,0 0,-2.09 -0.2,2.34 2.34,0 0,0 -1.2,1.85 3,3 0,0 0,0.49 2.15,24 24,0 0,0 6.74,7 2.12,2.12 0,0 0,1.22 0.48,1.44 1.44,0 0,0 1.18,-1.4A3.8,3.8 0,0 0,115 426.21Z"
android:fillColor="#fff"/>
<path
android:pathData="M134.92,463.34a35.09,35.09 0,0 0,-4.21 -6.5,5.89 5.89,0 0,0 -1.58,-1.49 2.31,2.31 0,0 0,-2.1 -0.2,2.37 2.37,0 0,0 -1.19,1.86 3,3 0,0 0,0.48 2.14,23.87 23.87,0 0,0 6.75,7 2.12,2.12 0,0 0,1.22 0.48,1.45 1.45,0 0,0 1.18,-1.4A3.8,3.8 0,0 0,134.92 463.34Z"
android:fillColor="#fff"/>
<path
android:pathData="M135.5,398.31a35.91,35.91 0,0 0,-4.2 -6.5,6.09 6.09,0 0,0 -1.59,-1.49 2.08,2.08 0,0 0,-3.29 1.66,3 3,0 0,0 0.49,2.15 24.11,24.11 0,0 0,6.75 7,2 2,0 0,0 1.21,0.47 1.42,1.42 0,0 0,1.18 -1.4A3.86,3.86 0,0 0,135.5 398.31Z"
android:fillColor="#fff"/>
<path
android:pathData="M169.46,464.83a35.09,35.09 0,0 0,-4.21 -6.5,5.89 5.89,0 0,0 -1.58,-1.49 2.29,2.29 0,0 0,-2.09 -0.2,2.35 2.35,0 0,0 -1.2,1.86 3,3 0,0 0,0.49 2.14,23.87 23.87,0 0,0 6.75,7 2.07,2.07 0,0 0,1.21 0.48,1.44 1.44,0 0,0 1.18,-1.4A3.8,3.8 0,0 0,169.46 464.83Z"
android:fillColor="#fff"/>
<path
android:pathData="M284.54,379.81a35.17,35.17 0,0 0,-4.21 -6.51,6.22 6.22,0 0,0 -1.58,-1.49 2.08,2.08 0,0 0,-3.29 1.66,3 3,0 0,0 0.49,2.15 24.08,24.08 0,0 0,6.74 7,2 2,0 0,0 1.22,0.47 1.42,1.42 0,0 0,1.18 -1.4A3.8,3.8 0,0 0,284.54 379.81Z"
android:fillColor="#fff"/>
<path
android:pathData="M272.83,432a34.72,34.72 0,0 0,-4.2 -6.5A6,6 0,0 0,267 424a2.32,2.32 0,0 0,-2.09 -0.19,2.36 2.36,0 0,0 -1.2,1.85 3,3 0,0 0,0.49 2.15,24 24,0 0,0 6.75,7 2,2 0,0 0,1.21 0.47,1.41 1.41,0 0,0 1.18,-1.39A3.8,3.8 0,0 0,272.83 432Z"
android:fillColor="#fff"/>
<path
android:pathData="M300,412.63a35.12,35.12 0,0 0,-4.2 -6.51,6.26 6.26,0 0,0 -1.59,-1.49 2.32,2.32 0,0 0,-2.09 -0.19,2.36 2.36,0 0,0 -1.2,1.85 3,3 0,0 0,0.49 2.15,24 24,0 0,0 6.75,7 2,2 0,0 0,1.21 0.47,1.42 1.42,0 0,0 1.18,-1.4A3.8,3.8 0,0 0,300 412.63Z"
android:fillColor="#fff"/>
<path
android:pathData="M240.06,417.1a35.09,35.09 0,0 0,-4.21 -6.5,6 6,0 0,0 -1.58,-1.49 2.28,2.28 0,0 0,-2.1 -0.19,2.33 2.33,0 0,0 -1.19,1.85 2.93,2.93 0,0 0,0.49 2.14,24 24,0 0,0 6.74,7 2,2 0,0 0,1.22 0.47,1.42 1.42,0 0,0 1.18,-1.4A3.86,3.86 0,0 0,240.06 417.1Z"
android:fillColor="#fff"/>
<path
android:pathData="M253.25,392.1a35.69,35.69 0,0 0,-4.21 -6.51,6.1 6.1,0 0,0 -1.59,-1.49 2.32,2.32 0,0 0,-2.09 -0.19,2.36 2.36,0 0,0 -1.2,1.85 3,3 0,0 0,0.49 2.15,24 24,0 0,0 6.75,7 2,2 0,0 0,1.22 0.47A1.43,1.43 0,0 0,253.8 394,3.91 3.91,0 0,0 253.25,392.1Z"
android:fillColor="#fff"/>
<path
android:pathData="M208.84,391.44a35.17,35.17 0,0 0,-4.21 -6.51,6.22 6.22,0 0,0 -1.58,-1.49 2.08,2.08 0,0 0,-3.29 1.66,3 3,0 0,0 0.48,2.15 24.12,24.12 0,0 0,6.75 7,2 2,0 0,0 1.22,0.47 1.42,1.42 0,0 0,1.18 -1.4A3.8,3.8 0,0 0,208.84 391.44Z"
android:fillColor="#fff"/>
<path
android:pathData="M212.19,459.36a36,36 0,0 0,-4.21 -6.5,5.93 5.93,0 0,0 -1.59,-1.49 2.26,2.26 0,0 0,-2.09 -0.19,2.34 2.34,0 0,0 -1.2,1.85 3,3 0,0 0,0.49 2.14,24 24,0 0,0 6.75,7 2,2 0,0 0,1.22 0.47,1.43 1.43,0 0,0 1.18,-1.4A4,4 0,0 0,212.19 459.36Z"
android:fillColor="#fff"/>
<path
android:pathData="M175.34,435.36a35.43,35.43 0,0 0,-4.21 -6.5,6.22 6.22,0 0,0 -1.58,-1.49 2.08,2.08 0,0 0,-3.29 1.66,3 3,0 0,0 0.48,2.15 24.11,24.11 0,0 0,6.75 7,2 2,0 0,0 1.22,0.47 1.43,1.43 0,0 0,1.18 -1.4A3.86,3.86 0,0 0,175.34 435.36Z"
android:fillColor="#fff"/>
<path
android:pathData="M310.08,471.69c-0.14,0 -0.64,-11 -1.11,-24.51s-0.74,-24.52 -0.6,-24.52 0.65,11 1.12,24.5S310.23,471.68 310.08,471.69Z"
android:fillColor="#263238"/>
<path
android:pathData="M124.21,472.67c-0.14,0 -1.18,-8.27 -2.31,-18.51s-2,-18.55 -1.8,-18.57 1.18,8.27 2.31,18.51S124.36,472.65 124.21,472.67Z"
android:fillColor="#263238"/>
<path
android:pathData="M322.45,388.52c0.05,0.09 -1.29,0.69 -3.21,2a25.92,25.92 0,0 0,-3.17 2.59,26.16 26.16,0 0,0 -5.74,8.16 26.81,26.81 0,0 0,-1.37 3.86c-0.6,2.26 -0.71,3.72 -0.81,3.71a3.57,3.57 0,0 1,0 -1,8.88 8.88,0 0,1 0.14,-1.2c0.08,-0.46 0.14,-1 0.29,-1.57a23,23 0,0 1,1.3 -4,24.35 24.35,0 0,1 5.84,-8.31 23.36,23.36 0,0 1,3.29 -2.56,15.65 15.65,0 0,1 1.38,-0.81 8.08,8.08 0,0 1,1.08 -0.53A4.22,4.22 0,0 1,322.45 388.52Z"
android:fillColor="#263238"/>
<path
android:pathData="M221.93,386.91a22,22 0,0 1,0 -10.77c0.15,0 -0.15,2.42 -0.14,5.39S222.08,386.89 221.93,386.91Z"
android:fillColor="#263238"/>
<path
android:pathData="M236.29,384.12a19.78,19.78 0,0 1,-1.25 -4.33,19.57 19.57,0 0,1 -0.74,-4.44 19.35,19.35 0,0 1,1.25 4.33A19.57,19.57 0,0 1,236.29 384.12Z"
android:fillColor="#263238"/>
<path
android:pathData="M252.25,373.75c-0.15,0.05 -0.75,-1.62 -1.85,-3.48s-2.25,-3.19 -2.14,-3.3a11.55,11.55 0,0 1,4 6.78Z"
android:fillColor="#263238"/>
<path
android:pathData="M261.36,366.19a46.26,46.26 0,0 0,-2.6 -4.65,44.09 44.09,0 0,0 -3.56,-4 13.21,13.21 0,0 1,6.16 8.61Z"
android:fillColor="#263238"/>
<path
android:pathData="M200.81,382.93a10.22,10.22 0,0 1,1.54 -4.68,10 10,0 0,1 3.17,-3.76c0.11,0.11 -1.43,1.68 -2.72,4S201,383 200.81,382.93Z"
android:fillColor="#263238"/>
<path
android:pathData="M186.82,376.53a21.17,21.17 0,0 1,3.4 -3.21A21.48,21.48 0,0 1,194 370.5a41.13,41.13 0,0 1,-7.14 6Z"
android:fillColor="#263238"/>
<path
android:pathData="M147.54,371.11c0.63,7.66 -3.7,14.83 -8.58,20.78s-10.54,11.49 -13.47,18.6c-2.57,6.26 -2.78,13.26 -2.08,20 0.82,7.78 2.91,15.64 7.61,21.9 2.3,3.07 5.4,5.8 9.17,6.54 5.64,1.09 11.4,-2.74 14,-7.87s2.54,-11.2 1.57,-16.86c-0.57,-3.36 -1.46,-6.71 -1.28,-10.1s1.64,-7 4.64,-8.59c2.14,-1.15 4.71,-1.14 7,-1.86 5.28,-1.63 8.63,-6.72 11.05,-11.68a87,87 0,0 0,8.6 -43.69,4 4,0 0,0 -0.84,-2.61c-0.85,-0.86 -2.24,-0.78 -3.43,-0.63a178.88,178.88 0,0 0,-28.69 6"
android:fillColor="#263238"/>
<path
android:pathData="M225.49,322.93c8.3,-7.66 5.39,-10.16 4.2,-11.76 -1.32,-1.77 -5.51,-0.56 -5.51,-0.56s1.61,-2.19 3,-4.34 2.16,-5.89 -1.32,-8.7 -9.42,3.93 -8.77,2.72 3.61,-5.55 0.19,-9.76S207,294.58 201.11,296c-4,1 -20,1.76 -31.68,1 -7.3,-0.45 -10.1,-3.31 -12,-9.48l4.9,-9.65c2.55,-8 -4.65,-8.16 -4.9,-7.93l-11.62,7.87a5.84,5.84 0,0 0,-2.49 3.92c-0.63,4 -1.76,10.81 0.74,22.19l-85.28,0.52a25.35,25.35 0,0 0,-25.2 25.34h0a20.59,20.59 0,0 0,0.17 2.62c-0.22,9.47 5.95,18.43 14.07,23.46 8.47,5.25 18.71,6.85 28.68,7.19a140.9,140.9 0,0 0,62.64 -12.37l23.14,-0.22 36.18,-1.79a45.61,45.61 0,0 0,25.5 -14.6,24.93 24.93,0 0,0 2.5,-3.29C229.75,325.34 225.49,322.93 225.49,322.93Z"
android:fillColor="#0298E1"/>
<path
android:fillColor="#FF000000"
android:pathData="M217.05,300.29a7.15,7.15 0,0 1,-1 1.1,15.24 15.24,0 0,1 -1.21,1.21c-0.51,0.43 -1,1 -1.73,1.47a24.12,24.12 0,0 1,-2.24 1.59,29.09 29.09,0 0,1 -2.74,1.57 34.47,34.47 0,0 1,-6.79 2.5,42.5 42.5,0 0,1 -13,1c-1.67,-0.13 -3,-0.29 -3.94,-0.45A7.74,7.74 0,0 1,183 310a8.29,8.29 0,0 1,1.46 0.1c0.92,0.1 2.27,0.2 3.93,0.28a46,46 0,0 0,12.9 -1.16,36 36,0 0,0 6.7,-2.42 29.93,29.93 0,0 0,2.72 -1.51,24.38 24.38,0 0,0 2.25,-1.51C215.6,301.78 217,300.21 217.05,300.29Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M223.94,310.4a13.2,13.2 0,0 1,-1.27 1.25,17.88 17.88,0 0,1 -1.59,1.36 27.46,27.46 0,0 1,-2.21 1.68l-1.33,0.92c-0.46,0.31 -1,0.6 -1.49,0.92 -1,0.65 -2.18,1.23 -3.38,1.86a56.16,56.16 0,0 1,-8.24 3.23,58.89 58.89,0 0,1 -8.65,1.83c-1.35,0.15 -2.63,0.32 -3.84,0.36s-2.33,0.11 -3.36,0.12 -2,0 -2.77,-0.07 -1.52,-0.09 -2.09,-0.15a11.11,11.11 0,0 1,-1.77 -0.24,13.42 13.42,0 0,1 1.78,0c0.58,0 1.27,0.07 2.09,0.07s1.73,0 2.75,0 2.14,-0.06 3.34,-0.18 2.47,-0.24 3.81,-0.4a64.22,64.22 0,0 0,8.57 -1.86,58.5 58.5,0 0,0 8.17,-3.16c1.19,-0.62 2.35,-1.17 3.37,-1.8 0.52,-0.31 1,-0.59 1.5,-0.89l1.33,-0.88c0.87,-0.54 1.59,-1.12 2.24,-1.6s1.2,-0.92 1.63,-1.29A9.76,9.76 0,0 1,223.94 310.4Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M225.49,322.93a10.3,10.3 0,0 1,-1.3 1c-0.86,0.64 -2.14,1.51 -3.75,2.54A70.44,70.44 0,0 1,207 333.09a58.45,58.45 0,0 1,-7.94 2.21,46.22 46.22,0 0,1 -6.69,0.82c-1,0.07 -1.82,0.05 -2.59,0a18,18 0,0 1,-2 -0.09,9.93 9.93,0 0,1 -1.65,-0.19 9.35,9.35 0,0 1,1.66 0c0.54,0 1.19,0 1.94,0s1.62,0 2.57,-0.12a49.67,49.67 0,0 0,6.61 -0.92,61.93 61.93,0 0,0 7.86,-2.23 77.19,77.19 0,0 0,13.4 -6.42c1.64,-1 2.94,-1.8 3.83,-2.39A10.71,10.71 0,0 1,225.49 322.93Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M142.54,295a5.94,5.94 0,0 1,0.13 0.59c0.08,0.43 0.19,1 0.32,1.74 0.28,1.57 0.67,3.81 1.17,6.67l0,0.15H144c-10.61,0.27 -30.1,0.69 -52.34,1.11l-26.48,0.47h0a38.79,38.79 0,0 0,-14 1.12,26.13 26.13,0 0,0 -9.74,4.91 22.44,22.44 0,0 0,-4.68 5.34c-0.46,0.7 -0.74,1.27 -0.95,1.64l-0.24,0.43a0.77,0.77 0,0 1,-0.09 0.13s0,0 0.06,-0.15l0.2,-0.44A15.53,15.53 0,0 1,36.6 317a21.48,21.48 0,0 1,4.63 -5.48A25.92,25.92 0,0 1,51 306.46a38.91,38.91 0,0 1,14.19 -1.22h0l26.48,-0.52c22.24,-0.42 41.73,-0.74 52.35,-0.86l-0.13,0.15c-0.45,-2.87 -0.8,-5.12 -1,-6.69l-0.25,-1.75A3,3 0,0 1,142.54 295Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="#FF000000"
android:pathData="M137,351.47a1.4,1.4 0,0 1,-0.23 0.12l-0.67,0.34c-0.61,0.27 -1.48,0.71 -2.64,1.2 -2.31,1 -5.71,2.37 -10,3.8A142.22,142.22 0,0 1,89 363.79a102.11,102.11 0,0 1,-19.39 -0.4,59.93 59.93,0 0,1 -15.37,-3.81A35.5,35.5 0,0 1,45 354.22c-0.48,-0.41 -0.93,-0.75 -1.28,-1.09l-0.86,-0.87 -0.53,-0.55a1.05,1.05 0,0 1,-0.16 -0.19s0.07,0 0.2,0.16l0.56,0.5 0.9,0.84c0.35,0.32 0.81,0.65 1.3,1a36.82,36.82 0,0 0,9.23 5.18,60.63 60.63,0 0,0 15.28,3.67 103.83,103.83 0,0 0,19.3 0.36,147.34 147.34,0 0,0 34.41,-6.69c4.28,-1.38 7.69,-2.68 10,-3.63 1.17,-0.46 2.06,-0.87 2.67,-1.12l0.7,-0.28A0.86,0.86 0,0 1,137 351.47Z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:pathData="M471.4,471.69c0,0.14 -99.13,0.26 -221.39,0.26s-221.41,-0.12 -221.41,-0.26 99.11,-0.26 221.41,-0.26S471.4,471.55 471.4,471.69Z"
android:fillColor="#263238"/>
</vector>

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

Some files were not shown because too many files have changed in this diff Show More