Initial commit with gitignore.

This commit is contained in:
aminecmi 2019-08-03 23:26:08 +02:00
commit 5ac347336f
116 changed files with 1722 additions and 0 deletions

278
.gitignore vendored Normal file
View File

@ -0,0 +1,278 @@
*.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
# Created by https://www.gitignore.io/api/osx,gradle,kotlin,android,androidstudio
# Edit at https://www.gitignore.io/?templates=osx,gradle,kotlin,android,androidstudio
### Android ###
# Built application files
*.apk
*.ap_
*.aab
# Files for the ART/Dalvik VM
*.dex
# Java class files
*.class
# Generated files
bin/
gen/
out/
release/
# Gradle files
.gradle/
build/
# Local configuration file (sdk path, etc)
local.properties
# Proguard folder generated by Eclipse
proguard/
# Log Files
*.log
# Android Studio Navigation editor temp files
.navigation/
# Android Studio captures folder
captures/
# IntelliJ
*.iml
.idea/workspace.xml
.idea/tasks.xml
.idea/gradle.xml
.idea/assetWizardSettings.xml
.idea/dictionaries
.idea/libraries
# Android Studio 3 in .gitignore file.
.idea/caches
.idea/modules.xml
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
.idea/navEditor.xml
# Keystore files
# Uncomment the following lines if you do not want to check your keystore files in.
#*.jks
#*.keystore
# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild
# Google Services (e.g. APIs or Firebase)
# google-services.json
# Freeline
freeline.py
freeline/
freeline_project_description.json
# fastlane
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
fastlane/readme.md
# Version control
vcs.xml
# lint
lint/intermediates/
lint/generated/
lint/outputs/
lint/tmp/
# lint/reports/
### Android Patch ###
gen-external-apklibs
output.json
### Kotlin ###
# Compiled class file
# Log file
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
### OSX ###
# General
.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
### Gradle ###
.gradle
# Ignore Gradle GUI config
gradle-app.setting
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar
# Cache of project
.gradletasknamecache
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
# gradle/wrapper/gradle-wrapper.properties
### Gradle Patch ###
**/build/
### AndroidStudio ###
# Covers files to be ignored for android development using Android Studio.
# Built application files
# Files for the ART/Dalvik VM
# Java class files
# Generated files
# Gradle files
# Signing files
.signing/
# Local configuration file (sdk path, etc)
# Proguard folder generated by Eclipse
# Log Files
# Android Studio
/*/build/
/*/local.properties
/*/out
/*/*/build
/*/*/production
*.ipr
*~
*.swp
# Android Patch
# External native build folder generated in Android Studio 2.2 and later
# NDK
obj/
# IntelliJ IDEA
*.iws
/out/
# User-specific configurations
.idea/caches/
.idea/libraries/
.idea/shelf/
.idea/.name
.idea/compiler.xml
.idea/copyright/profiles_settings.xml
.idea/encodings.xml
.idea/misc.xml
.idea/scopes/scope_settings.xml
.idea/vcs.xml
.idea/jsLibraryMappings.xml
.idea/datasources.xml
.idea/dataSources.ids
.idea/sqlDataSources.xml
.idea/dynamic.xml
.idea/uiDesigner.xml
# OS-specific files
.DS_Store?
ehthumbs.db
Thumbs.db
# Legacy Eclipse project files
.classpath
.project
.cproject
.settings/
# Mobile Tools for Java (J2ME)
# Package Files #
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
## Plugin-specific files:
# mpeltonen/sbt-idea plugin
.idea_modules/
# JIRA plugin
atlassian-ide-plugin.xml
# Mongo Explorer plugin
.idea/mongoSettings.xml
# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties
### AndroidStudio Patch ###
!/gradle/wrapper/gradle-wrapper.jar
# End of https://www.gitignore.io/api/osx,gradle,kotlin,android,androidstudio

View File

@ -0,0 +1,10 @@
<component name="ProjectCodeStyleConfiguration">
<code_scheme name="Project" version="173">
<JetCodeStyleSettings>
<option name="CODE_STYLE_DEFAULTS" value="KOTLIN_OFFICIAL" />
</JetCodeStyleSettings>
<codeStyleSettings language="kotlin">
<option name="CODE_STYLE_DEFAULTS" value="KOTLIN_OFFICIAL" />
</codeStyleSettings>
</code_scheme>
</component>

View File

@ -0,0 +1,5 @@
<component name="ProjectCodeStyleConfiguration">
<state>
<option name="USE_PER_PROJECT_SETTINGS" value="true" />
</state>
</component>

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RunConfigurationProducerService">
<option name="ignoredProducers">
<set>
<option value="org.jetbrains.plugins.gradle.execution.test.runner.AllInPackageGradleConfigurationProducer" />
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestClassGradleConfigurationProducer" />
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestMethodGradleConfigurationProducer" />
</set>
</option>
</component>
</project>

1
app/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/build

99
app/build.gradle Normal file
View File

@ -0,0 +1,99 @@
apply plugin: 'kotlin-kapt'
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig {
applicationId "bou.amine.apps.mteo"
minSdkVersion 22
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
// Enabling multidex support.
multiDexEnabled true
lintOptions {
abortOnError true
disable 'InvalidPackage'
}
vectorDrawables.useSupportLibrary = true
javaCompileOptions {
annotationProcessorOptions {
arguments = ["room.schemaLocation":
"$projectDir/schemas".toString()]
}
}
}
buildTypes {
all {
buildConfigField "String", "DARK_SKY_API_KEY", darkSkyApiKey
}
release {
minifyEnabled false
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.13-beta-3'
androidTestImplementation 'androidx.test:runner:1.3.0-alpha02'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0-alpha02'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
implementation 'androidx.core:core-ktx:1.2.0-alpha02'
implementation "com.google.android.material:material:1.1.0-alpha09"
implementation "androidx.recyclerview:recyclerview:1.1.0-beta01"
implementation "androidx.legacy:legacy-support-v4:1.0.0"
implementation "androidx.vectordrawable:vectordrawable:1.1.0-rc01"
implementation "androidx.cardview:cardview:1.0.0"
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
// Retrofit + http logging + okhttp
implementation 'com.squareup.retrofit2:retrofit:2.6.1'
implementation 'com.squareup.retrofit2:converter-gson:2.6.1'
// glide
implementation 'com.github.bumptech.glide:glide:4.1.1'
implementation 'com.github.bumptech.glide:okhttp3-integration:4.1.1'
implementation "androidx.lifecycle:lifecycle-livedata:2.2.0-alpha02"
implementation "androidx.lifecycle:lifecycle-common-java8:2.2.0-alpha02"
implementation "androidx.room:room-runtime:2.2.0-alpha01"
kapt "androidx.room:room-compiler:2.2.0-alpha01"
implementation "android.arch.work:work-runtime-ktx:1.0.1"
}
afterEvaluate {
initApiPropertiesIfNeeded()
}
def initApiPropertiesIfNeeded() {
def propertiesFile = file(System.getProperty("user.home") + '/.gradle/gradle.properties')
if (!propertiesFile.exists()) {
def commentMessage = "This is autogenerated local property from system environment to prevent key to be committed to source control."
ant.propertyfile(file: System.getProperty("user.home") + "/.gradle/gradle.properties", comment: commentMessage) {
entry(key: "darkSkyApiKey", value: System.getProperty("darkSkyApiKey"))
}
}
}

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

@ -0,0 +1,65 @@
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in /home/amine/apps/android-sdk-linux/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# Add any project specific keep options here:
# 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
#About libraries
-keep class .R
-keep class **.R$* {
<fields>;
}
-dontwarn okio.**
-dontwarn retrofit2.Platform$Java8
-keep class retrofit.** { *; }
-keepclasseswithmembers class * {
@retrofit.http.* <methods>;
}
-keepattributes *Annotation*,Signature
-keepattributes Exceptions
-dontwarn okio.**
-dontwarn javax.annotation.Nullable
-dontwarn javax.annotation.ParametersAreNonnullByDefault
#Bottom bar lib
-dontwarn com.roughike.bottombar.**
# self signed glidemodule
-keep public class * implements com.bumptech.glide.module.GlideModule
-keep public class * extends com.bumptech.glide.AppGlideModule
-keep public enum com.bumptech.glide.load.resource.bitmap.ImageHeaderParser$** {
**[] $VALUES;
public *;
}
-dontwarn com.anupcowkur.reservoir.**
-dontwarn javax.annotation.**
-keep class android.support.v7.widget.SearchView { *; }
# maybe remove later ?
-keep class * extends androidx.fragment.app.Fragment

View File

@ -0,0 +1,46 @@
{
"formatVersion": 1,
"database": {
"version": 1,
"identityHash": "69f863b8cb6ddde56af1b6bd00a9bb36",
"entities": [
{
"tableName": "locations",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `lat` REAL NOT NULL, `lng` REAL NOT NULL)",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "lat",
"columnName": "lat",
"affinity": "REAL",
"notNull": true
},
{
"fieldPath": "lng",
"columnName": "lng",
"affinity": "REAL",
"notNull": true
}
],
"primaryKey": {
"columnNames": [
"id"
],
"autoGenerate": true
},
"indices": [],
"foreignKeys": []
}
],
"views": [],
"setupQueries": [
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '69f863b8cb6ddde56af1b6bd00a9bb36')"
]
}
}

View File

@ -0,0 +1,24 @@
package bou.amine.apps.mteo
import androidx.test.InstrumentationRegistry
import androidx.test.runner.AndroidJUnit4
import org.junit.Test
import org.junit.runner.RunWith
import org.junit.Assert.*
/**
* Instrumented test, which will execute on an Android device.
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
@RunWith(AndroidJUnit4::class)
class ExampleInstrumentedTest {
@Test
fun useAppContext() {
// Context of the app under test.
val appContext = InstrumentationRegistry.getTargetContext()
assertEquals("bou.amine.apps.mteo", appContext.packageName)
}
}

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="bou.amine.apps.mteo">
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-feature android:name="android.hardware.location.gps" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>

View File

@ -0,0 +1,143 @@
package bou.amine.apps.mteo
import android.Manifest
import android.content.pm.PackageManager
import android.location.Location
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.location.LocationListener
import android.location.LocationManager
import android.widget.Toast
import androidx.core.app.ActivityCompat
import androidx.core.content.ContextCompat
import androidx.room.Room
import bou.amine.apps.mteo.api.DarkSkyApi
import bou.amine.apps.mteo.api.ForecastResponse
import bou.amine.apps.mteo.persistence.database.AppDatabase
import bou.amine.apps.mteo.persistence.entities.LocationView
import retrofit2.Call
import retrofit2.Callback
import retrofit2.Response
import kotlin.concurrent.thread
class MainActivity : AppCompatActivity() {
private val PERM_LOCATION = 101
private lateinit var db: AppDatabase
private lateinit var api: DarkSkyApi
private lateinit var currentLocation: LocationView
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
api = DarkSkyApi(this@MainActivity)
db = Room.databaseBuilder(
applicationContext,
AppDatabase::class.java, "mteo-database"
).build()
thread {
val locations = db.locationDao().locations()
runOnUiThread {
if (locations.isEmpty()) {
checkPermission()
} else {
currentLocation = locations[0]
fetchForecastData()
}
}
}
}
private fun fetchForecastData() {
thread {
api.forecast(currentLocation.lat.toString(), currentLocation.lng.toString()).enqueue(object :
Callback<ForecastResponse> {
override fun onFailure(call: Call<ForecastResponse>, t: Throwable) {
Toast.makeText(this@MainActivity, "Can't fetch forecast data !", Toast.LENGTH_LONG).show()
}
override fun onResponse(call: Call<ForecastResponse>, response: Response<ForecastResponse>) {
Toast.makeText(this@MainActivity, "Ok", Toast.LENGTH_LONG).show()
}
})
}
}
private fun checkPermission() {
if (ContextCompat.checkSelfPermission(
this@MainActivity,
Manifest.permission.ACCESS_FINE_LOCATION
)
!= PackageManager.PERMISSION_GRANTED || ContextCompat.checkSelfPermission(
this@MainActivity,
Manifest.permission.ACCESS_COARSE_LOCATION
)
!= PackageManager.PERMISSION_GRANTED
) {
ActivityCompat.requestPermissions(
this@MainActivity,
arrayOf(Manifest.permission.ACCESS_FINE_LOCATION, Manifest.permission.ACCESS_COARSE_LOCATION),
PERM_LOCATION
)
} else {
handleLocationChange()
}
}
private fun handleLocationChange() {
val mLocationManager = getSystemService(LOCATION_SERVICE) as LocationManager
val mLocationListener = object : LocationListener {
override fun onStatusChanged(provider: String?, status: Int, extras: Bundle?) {
Toast.makeText(this@MainActivity, "status", Toast.LENGTH_SHORT).show()
}
override fun onProviderEnabled(provider: String?) {
Toast.makeText(this@MainActivity, "enabled", Toast.LENGTH_SHORT).show()
}
override fun onProviderDisabled(provider: String?) {
Toast.makeText(this@MainActivity, "disabled", Toast.LENGTH_SHORT).show()
}
override fun onLocationChanged(location: Location) {
Toast.makeText(this@MainActivity, "location", Toast.LENGTH_SHORT).show()
mLocationManager.removeUpdates(this)
currentLocation = LocationView(location.latitude, location.longitude)
fetchForecastData()
thread {
db.locationDao().insertLocation(currentLocation)
}
}
}
mLocationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 1000L, 10F, mLocationListener)
}
override fun onRequestPermissionsResult(
requestCode: Int,
permissions: Array<String>, grantResults: IntArray
) {
when (requestCode) {
PERM_LOCATION -> {
// If request is cancelled, the result arrays are empty.
if ((grantResults.isNotEmpty() && grantResults[0] == PackageManager.PERMISSION_GRANTED)) {
handleLocationChange()
}
return
}
// Add other 'when' lines to check for other
// permissions this app might request.
else -> {
// Ignore all other requests.
}
}
}
}

View File

@ -0,0 +1,78 @@
package bou.amine.apps.mteo.api
import android.content.Context
import android.net.ConnectivityManager
import android.net.NetworkInfo
import bou.amine.apps.mteo.BuildConfig
import com.google.gson.GsonBuilder
import okhttp3.Cache
import retrofit2.Call
import retrofit2.Retrofit
import retrofit2.converter.gson.GsonConverterFactory
import okhttp3.OkHttpClient
class DarkSkyApi(private val c: Context) {
private var service: DarkSkyService
init {
val cacheSize = (5 * 1024 * 1024).toLong()
val cache = Cache(c.cacheDir, cacheSize)
val okHttpClient = OkHttpClient.Builder()
.cache(cache)
.addInterceptor { chain ->
var request = chain.request()
request = if (hasNetwork(c)!!) {
/*
* If there is Internet, get the cache that was stored 2 minutes ago.
* If the cache is older than 2 minutes, then discard it,
* and indicate an error in fetching the response.
* The 'max-age' attribute is responsible for this behavior.
*/
request.newBuilder().header("Cache-Control", "public, max-age=" + (2 * 60)).build()
} else {
/*
* If there is no Internet, get the cache that was stored 7 days ago.
* If the cache is older than 7 days, then discard it,
* and indicate an error in fetching the response.
* The 'max-stale' attribute is responsible for this behavior.
* The 'only-if-cached' attribute indicates to not retrieve new data; fetch the cache only instead.
*/
request.newBuilder()
.header("Cache-Control", "public, only-if-cached, max-stale=" + (60 * 60 * 24 * 7)).build()
}
chain.proceed(request)
}
.build()
val gson =
GsonBuilder()
.setLenient()
.create()
val retrofit =
Retrofit
.Builder()
.baseUrl("https://api.darksky.net/")
.client(okHttpClient)
.addConverterFactory(GsonConverterFactory.create(gson))
.build()
service = retrofit.create(DarkSkyService::class.java)
}
fun forecast(lat: String, lng: String): Call<ForecastResponse> =
service.forecast(BuildConfig.DARK_SKY_API_KEY, lat, lng, "fr", listOf("ca"))
private fun hasNetwork(context: Context): Boolean? {
var isConnected: Boolean? = false // Initial Value
val connectivityManager = context.getSystemService(Context.CONNECTIVITY_SERVICE) as ConnectivityManager
val activeNetwork: NetworkInfo? = connectivityManager.activeNetworkInfo
if (activeNetwork != null && activeNetwork.isConnected)
isConnected = true
return isConnected
}
}

View File

@ -0,0 +1,90 @@
package bou.amine.apps.mteo.api
import com.google.gson.annotations.SerializedName
data class ForecastResponse(
@SerializedName("latitude") val latitude: Double,
@SerializedName("longitude") val longitude: Double,
@SerializedName("timezone") val timezone: String,
@SerializedName("currently") val currently: Datapoint?,
@SerializedName("minutely") val minutely: Datablock?,
@SerializedName("hourly") val hourly: Datablock?,
@SerializedName("daily") val daily: Datablock?,
@SerializedName("flags") val flags: Flags?,
@SerializedName("alerts") val alerts: List<Alert>?,
@SerializedName("offset") val offset: Int?
)
data class Flags(
@SerializedName("sources") val sources: List<String>,
@SerializedName("nearest-station") val nearestStation: Double,
@SerializedName("units") val units: String,
@SerializedName("darksky-unavailable") val darkskyUnavailable: String?
)
data class Datablock(
@SerializedName("icon") val icon: String?,
@SerializedName("summary") val summary: String?,
@SerializedName("data") val data: List<Datapoint>
)
data class Datapoint(
@SerializedName("time") val time: Double,
@SerializedName("summary") val summary: String?,
@SerializedName("icon") val icon: String?,
@SerializedName("apparentTemperature") val apparentTemperature: Double?, // hourly
@SerializedName("apparentTemperatureHigh") val apparentTemperatureHigh: Double?, // daily
@SerializedName("apparentTemperatureHighTime") val apparentTemperatureHighTime: Double?, // daily
@SerializedName("apparentTemperatureLow") val apparentTemperatureLow: Double?, // daily
@SerializedName("apparentTemperatureLowTime") val apparentTemperatureLowTime: Double?, // daily
@SerializedName("apparentTemperatureMax") val apparentTemperatureMax: Double?, // daily
@SerializedName("apparentTemperatureMaxTime") val apparentTemperatureMaxTime: Double?, // daily
@SerializedName("apparentTemperatureMin") val apparentTemperatureMin: Double?, // daily
@SerializedName("apparentTemperatureMinTime") val apparentTemperatureMinTime: Double?, // daily
@SerializedName("cloudCover") val cloudCover: Double?,
@SerializedName("dewPoint") val dewPoint: Double?,
@SerializedName("humidity") val humidity: Double?,
@SerializedName("moonPhase") val moonPhase: Double?, // daily
@SerializedName("nearestStormBearing") val nearestStormBearing: Double?, // currently
@SerializedName("nearestStormDistance") val nearestStormDistance: Double?, // currently
@SerializedName("ozone") val ozone: Double?,
@SerializedName("precipAccumulation") val precipAccumulation: Double?, // hourly + daily
@SerializedName("precipIntensity") val precipIntensity: Double?,
@SerializedName("precipIntensityError") val precipIntensityError: Double?,
@SerializedName("precipIntensityMax") val precipIntensityMax: Double?, // daily
@SerializedName("precipIntensityMaxTime") val precipIntensityMaxTime: Double?, // daily
@SerializedName("precipProbability") val precipProbability: Double?,
@SerializedName("precipType") val precipType: String?,
@SerializedName("pressure") val pressure: String?,
@SerializedName("sunriseTime") val sunriseTime: Double?, // daily
@SerializedName("sunsetTime") val sunsetTime: Double?, // daily
@SerializedName("temperature") val temperature: Double?, // hourly
@SerializedName("temperatureHigh") val temperatureHigh: Double?, // daily
@SerializedName("temperatureHighTime") val temperatureHighTime: Double?, // daily
@SerializedName("temperatureLow") val temperatureLow: Double?, // daily
@SerializedName("temperatureLowTime") val temperatureLowTime: Double?, // daily
@SerializedName("temperatureMax") val temperatureMax: Double?, // daily
@SerializedName("temperatureMaxTime") val temperatureMaxTime: Double?, // daily
@SerializedName("temperatureMin") val temperatureMin: Double?, // daily
@SerializedName("temperatureMinTime") val temperatureMinTime: Double?, // daily
@SerializedName("uvIndex") val uvIndex: Int?,
@SerializedName("uvIndexTime") val uvIndexTime: Double?, // daily
@SerializedName("visibility") val visibility: Double?,
@SerializedName("windBearing") val windBearing: Double?,
@SerializedName("windGust") val windGust: Double?,
@SerializedName("windGustTime") val windGustTime: Double?, // daily
@SerializedName("windSpeed") val windSpeed: Double?
)
data class Alert(
@SerializedName("description") val description: String,
@SerializedName("expired") val expired: Double,
@SerializedName("regions") val regions: List<String>,
@SerializedName("severity") val severity: String,
@SerializedName("time") val time: Double,
@SerializedName("title") val title: String,
@SerializedName("uri") val uri: String
)

View File

@ -0,0 +1,19 @@
package bou.amine.apps.mteo.api
import retrofit2.Call
import retrofit2.http.GET
import retrofit2.http.Path
import retrofit2.http.Query
internal interface DarkSkyService {
// https://api.darksky.net/forecast/[key]/[latitude],[longitude]
@GET("forecast/{apiKey}/{lat},{lng}")
fun forecast(
@Path("apiKey") apiKey: String,
@Path("lat") lat: String,
@Path("lng") lng: String,
@Query("lang") lang: String,
@Query("units") units: List<String>
): Call<ForecastResponse>
}

View File

@ -0,0 +1,16 @@
package bou.amine.apps.mteo.persistence.dao
import androidx.room.Dao
import androidx.room.Insert
import androidx.room.OnConflictStrategy
import androidx.room.Query
import bou.amine.apps.mteo.persistence.entities.LocationView
@Dao
interface LocationsDao {
@Query("SELECT * FROM locations order by id asc")
fun locations(): List<LocationView>
@Insert(onConflict = OnConflictStrategy.REPLACE)
fun insertLocation(vararg location: LocationView)
}

View File

@ -0,0 +1,11 @@
package bou.amine.apps.mteo.persistence.database
import androidx.room.Database
import androidx.room.RoomDatabase
import bou.amine.apps.mteo.persistence.dao.LocationsDao
import bou.amine.apps.mteo.persistence.entities.LocationView
@Database(entities = [LocationView::class], version = 1)
abstract class AppDatabase : RoomDatabase() {
abstract fun locationDao(): LocationsDao
}

View File

@ -0,0 +1,16 @@
package bou.amine.apps.mteo.persistence.entities
import androidx.room.ColumnInfo
import androidx.room.Entity
import androidx.room.PrimaryKey
@Entity(tableName = "locations")
data class LocationView(
@ColumnInfo(name = "lat")
val lat: Double,
@ColumnInfo(name = "lng")
val lng: Double
) {
@PrimaryKey(autoGenerate = true)
var id: Int = 0
}

View File

@ -0,0 +1,34 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportHeight="108"
android:viewportWidth="108">
<path
android:fillType="evenOdd"
android:pathData="M32,64C32,64 38.39,52.99 44.13,50.95C51.37,48.37 70.14,49.57 70.14,49.57L108.26,87.69L108,109.01L75.97,107.97L32,64Z"
android:strokeColor="#00000000"
android:strokeWidth="1">
<aapt:attr name="android:fillColor">
<gradient
android:endX="78.5885"
android:endY="90.9159"
android:startX="48.7653"
android:startY="61.0927"
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="M66.94,46.02L66.94,46.02C72.44,50.07 76,56.61 76,64L32,64C32,56.61 35.56,50.11 40.98,46.06L36.18,41.19C35.45,40.45 35.45,39.3 36.18,38.56C36.91,37.81 38.05,37.81 38.78,38.56L44.25,44.05C47.18,42.57 50.48,41.71 54,41.71C57.48,41.71 60.78,42.57 63.68,44.05L69.11,38.56C69.84,37.81 70.98,37.81 71.71,38.56C72.44,39.3 72.44,40.45 71.71,41.19L66.94,46.02ZM62.94,56.92C64.08,56.92 65,56.01 65,54.88C65,53.76 64.08,52.85 62.94,52.85C61.8,52.85 60.88,53.76 60.88,54.88C60.88,56.01 61.8,56.92 62.94,56.92ZM45.06,56.92C46.2,56.92 47.13,56.01 47.13,54.88C47.13,53.76 46.2,52.85 45.06,52.85C43.92,52.85 43,53.76 43,54.88C43,56.01 43.92,56.92 45.06,56.92Z"
android:strokeColor="#00000000"
android:strokeWidth="1"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M43.945,65.639c-8.835,0 -15.998,-7.162 -15.998,-15.998c0,-8.836 7.163,-15.998 15.998,-15.998c6.004,0 11.229,3.312 13.965,8.203c0.664,-0.113 1.338,-0.205 2.033,-0.205c6.627,0 11.999,5.373 11.999,12c0,6.625 -5.372,11.998 -11.999,11.998C57.168,65.639 47.143,65.639 43.945,65.639zM59.943,61.639c4.418,0 8,-3.582 8,-7.998c0,-4.418 -3.582,-8 -8,-8c-1.6,0 -3.082,0.481 -4.333,1.291c-1.231,-5.316 -5.974,-9.29 -11.665,-9.29c-6.626,0 -11.998,5.372 -11.998,11.999c0,6.626 5.372,11.998 11.998,11.998C47.562,61.639 56.924,61.639 59.943,61.639z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#231F20" android:fillType="evenOdd" android:pathData="M59.943,65.641c-0.518,0 -1.287,0 -2.217,0l2.101,-2.102c0.589,-0.59 1.029,-1.271 1.322,-1.998c3.844,-0.584 6.793,-3.893 6.793,-7.898c0,-4.418 -3.581,-8 -7.999,-8c-1.549,0 -2.982,0.458 -4.207,1.221c-0.139,-0.559 -0.358,-1.08 -0.641,-1.564c-1.738,-4.475 -6.061,-7.655 -11.15,-7.655c-6.627,0 -11.998,5.371 -11.998,11.998c0,4.612 2.604,8.61 6.418,10.618c0.195,1.201 0.74,2.354 1.666,3.279l1.971,1.971c-7.917,-0.959 -14.055,-7.691 -14.055,-15.868c0,-8.835 7.162,-15.998 15.998,-15.998c6.004,0 11.229,3.312 13.965,8.204c0.664,-0.114 1.336,-0.205 2.033,-0.205c6.627,0 11.998,5.372 11.998,12C71.941,60.268 66.57,65.641 59.943,65.641zM45.687,57.883l2.243,2.242V48.298c0,-1.104 0.895,-1.999 1.999,-1.999s2,0.895 2,1.999v11.827l2.242,-2.242c0.78,-0.781 2.048,-0.781 2.828,0s0.78,2.047 0,2.828l-5.656,5.656c-0.78,0.781 -2.047,0.781 -2.828,0l-5.655,-5.656c-0.781,-0.781 -0.781,-2.047 0,-2.828C43.64,57.102 44.906,57.102 45.687,57.883z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M63.943,64.941v-4.381c2.387,-1.385 3.998,-3.961 3.998,-6.92c0,-4.418 -3.58,-8 -7.998,-8c-1.602,0 -3.084,0.481 -4.334,1.291c-1.232,-5.316 -5.973,-9.29 -11.664,-9.29c-6.627,0 -11.998,5.372 -11.998,11.999c0,3.549 1.549,6.729 3.998,8.926v4.914c-4.777,-2.768 -7.998,-7.922 -7.998,-13.84c0,-8.836 7.162,-15.998 15.998,-15.998c6.004,0 11.229,3.312 13.965,8.203c0.664,-0.113 1.336,-0.205 2.033,-0.205c6.627,0 11.998,5.373 11.998,12C71.941,58.861 68.6,63.293 63.943,64.941zM41.945,53.641c1.104,0 2,0.895 2,2v3.998c0,1.105 -0.896,2 -2,2c-1.105,0 -2,-0.895 -2,-2v-3.998C39.945,54.535 40.84,53.641 41.945,53.641zM41.945,65.639c1.104,0 2,0.895 2,2v3.998c0,1.105 -0.896,2 -2,2c-1.105,0 -2,-0.895 -2,-2v-3.998C39.945,66.533 40.84,65.639 41.945,65.639zM49.943,57.639c1.105,0 2,0.896 2,2v4c0,1.104 -0.895,2 -2,2c-1.104,0 -1.998,-0.896 -1.998,-2v-4C47.945,58.535 48.84,57.639 49.943,57.639zM49.943,69.639c1.105,0 2,0.895 2,1.998v4c0,1.105 -0.895,2 -2,2c-1.104,0 -1.998,-0.895 -1.998,-2v-4C47.945,70.533 48.84,69.639 49.943,69.639zM57.943,53.641c1.104,0 2,0.895 2,2v3.998c0,1.105 -0.896,2 -2,2c-1.105,0 -2,-0.895 -2,-2v-3.998C55.943,54.535 56.838,53.641 57.943,53.641zM57.943,65.639c1.104,0 2,0.895 2,2v3.998c0,1.105 -0.896,2 -2,2c-1.105,0 -2,-0.895 -2,-2v-3.998C55.943,66.533 56.838,65.639 57.943,65.639z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M59.943,41.642c-0.696,0 -1.369,0.092 -2.033,0.205c-2.736,-4.892 -7.961,-8.203 -13.965,-8.203c-8.835,0 -15.998,7.162 -15.998,15.997c0,5.992 3.3,11.207 8.177,13.947c0.276,-1.262 0.892,-2.465 1.873,-3.445l0.057,-0.057c-3.644,-2.061 -6.106,-5.963 -6.106,-10.445c0,-6.626 5.372,-11.998 11.998,-11.998c5.691,0 10.433,3.974 11.665,9.29c1.25,-0.81 2.733,-1.291 4.333,-1.291c4.418,0 7.999,3.581 7.999,7.999c0,3.443 -2.182,6.371 -5.235,7.498c0.788,1.146 1.194,2.471 1.222,3.807c4.665,-1.645 8.014,-6.078 8.014,-11.305C71.942,47.014 66.57,41.642 59.943,41.642zM42.945,60.85l-2.121,2.121c-1.171,1.172 -1.171,3.07 0,4.242c1.172,1.172 3.071,1.172 4.242,0c1.172,-1.172 1.172,-3.07 0,-4.242L42.945,60.85zM49.945,68.848l-2.121,2.121c-1.172,1.172 -1.172,3.072 0,4.242c1.171,1.172 3.07,1.172 4.241,0c1.172,-1.17 1.172,-3.07 0,-4.242L49.945,68.848zM56.944,60.85l-2.121,2.121c-1.172,1.172 -1.172,3.07 0,4.242c1.171,1.172 3.07,1.172 4.242,0c1.171,-1.172 1.171,-3.07 0,-4.242L56.944,60.85z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M69.762,46.758L69.762,46.758c1.369,1.949 2.18,4.318 2.18,6.883c0,5.221 -3.342,9.652 -7.998,11.301v-4.381c2.389,-1.385 3.998,-3.961 3.998,-6.92c0,-4.418 -3.58,-8 -7.998,-8c-1.6,0 -3.084,0.482 -4.334,1.291c-1.23,-5.316 -5.973,-9.29 -11.664,-9.29c-6.627,0 -11.998,5.372 -11.998,11.999c0,3.549 1.549,6.729 3.998,8.926v4.914c-4.775,-2.768 -7.998,-7.922 -7.998,-13.84c0,-8.836 7.162,-15.998 15.998,-15.998c2.002,0 3.914,0.375 5.68,1.047l0,0c1.635,-4.682 6.078,-8.047 11.318,-8.047c0.756,0 1.49,0.078 2.207,0.212c-0.131,0.575 -0.207,1.173 -0.207,1.788c0,4.418 3.58,7.999 7.998,7.999c0.615,0 1.213,-0.076 1.789,-0.208c0.133,0.717 0.211,1.453 0.211,2.208C72.941,41.775 71.73,44.62 69.762,46.758zM59.154,30.85c-2.9,0.664 -5.174,2.91 -5.924,5.775l0,0c1.918,1.372 3.523,3.152 4.68,5.221c0.664,-0.113 1.336,-0.205 2.033,-0.205c2.617,0 5.033,0.849 7.006,2.271l0,0c0.857,-0.979 1.484,-2.168 1.785,-3.482C63.881,39.525 60.059,35.705 59.154,30.85zM41.945,53.641c1.105,0 2,0.895 2,2v3.998c0,1.105 -0.895,2 -2,2c-1.104,0 -2,-0.895 -2,-2v-3.998C39.945,54.535 40.842,53.641 41.945,53.641zM41.945,65.639c1.105,0 2,0.895 2,2v3.998c0,1.105 -0.895,2 -2,2c-1.104,0 -2,-0.895 -2,-2v-3.998C39.945,66.533 40.842,65.639 41.945,65.639zM49.945,57.639c1.104,0 1.998,0.896 1.998,2v4c0,1.104 -0.895,2 -1.998,2c-1.105,0 -2,-0.896 -2,-2v-4C47.945,58.535 48.84,57.639 49.945,57.639zM49.945,69.639c1.104,0 1.998,0.895 1.998,1.998v4c0,1.105 -0.895,2 -1.998,2c-1.105,0 -2,-0.895 -2,-2v-4C47.945,70.533 48.84,69.639 49.945,69.639zM57.943,53.641c1.105,0 2,0.895 2,2v3.998c0,1.105 -0.895,2 -2,2c-1.104,0 -2,-0.895 -2,-2v-3.998C55.943,54.535 56.84,53.641 57.943,53.641zM57.943,65.639c1.105,0 2,0.895 2,2v3.998c0,1.105 -0.895,2 -2,2c-1.104,0 -2,-0.895 -2,-2v-3.998C55.943,66.533 56.84,65.639 57.943,65.639z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M69.763,46.758c1.369,1.949 2.179,4.318 2.179,6.882l0,0c0,5.227 -3.349,9.66 -8.013,11.305c-0.027,-1.336 -0.434,-2.66 -1.223,-3.807c3.055,-1.127 5.236,-4.055 5.236,-7.498l0,0l0,0c0,-4.417 -3.581,-8 -7.999,-8c-1.601,0 -3.083,0.482 -4.334,1.291c-1.231,-5.316 -5.973,-9.29 -11.664,-9.29c-6.627,0 -11.999,5.372 -11.999,11.999c0,1.404 0.254,2.746 0.698,4h0.015c0.975,2.74 2.895,5.031 5.394,6.445l-0.057,0.057c-0.981,0.98 -1.596,2.184 -1.872,3.445c-3.751,-2.107 -6.551,-5.686 -7.652,-9.947l0,0c-0.33,-1.281 -0.524,-2.617 -0.524,-4c0,-8.835 7.162,-15.998 15.998,-15.998c2.002,0 3.914,0.375 5.679,1.047c1.636,-4.682 6.079,-8.047 11.319,-8.047c0.755,0 1.491,0.078 2.207,0.212c-0.132,0.575 -0.208,1.173 -0.208,1.788c0,4.418 3.582,7.999 8,7.999c0.615,0 1.212,-0.076 1.787,-0.208c0.134,0.717 0.212,1.453 0.212,2.208C72.941,41.776 71.73,44.622 69.763,46.758zM59.155,30.851c-2.9,0.664 -5.175,2.91 -5.924,5.775l0,0c1.917,1.372 3.521,3.152 4.679,5.221c0.664,-0.113 1.337,-0.205 2.033,-0.205c2.618,0 5.032,0.849 7.005,2.271c0.858,-0.979 1.485,-2.168 1.786,-3.482C63.88,39.526 60.059,35.706 59.155,30.851zM42.945,60.85l2.121,2.121c1.172,1.172 1.172,3.07 0,4.242c-1.171,1.172 -3.07,1.172 -4.242,0c-1.171,-1.172 -1.171,-3.07 0,-4.242L42.945,60.85zM49.944,68.848l2.121,2.121c1.172,1.172 1.172,3.072 0,4.242c-1.171,1.172 -3.07,1.172 -4.242,0c-1.171,-1.17 -1.171,-3.07 0,-4.242L49.944,68.848zM56.943,60.85l2.121,2.121c1.172,1.172 1.172,3.07 0,4.242c-1.171,1.172 -3.07,1.172 -4.242,0c-1.171,-1.172 -1.171,-3.07 0,-4.242L56.943,60.85z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M79.94,43.641h-3.999c-1.104,0 -2,-0.895 -2,-2c0,-1.104 0.896,-1.999 2,-1.999h3.999c1.104,0 2,0.895 2,1.999C81.94,42.746 81.045,43.641 79.94,43.641zM72.084,30.329c-0.781,0.781 -2.048,0.781 -2.828,0c-0.781,-0.78 -0.781,-2.047 0,-2.827l2.828,-2.828c0.78,-0.781 2.047,-0.781 2.828,0c0.78,0.78 0.78,2.047 0,2.828L72.084,30.329zM69.137,45.936L69.137,45.936c1.749,2.086 2.805,4.77 2.805,7.705c0,5.221 -3.342,9.652 -7.999,11.301v-4.381c2.389,-1.385 4,-3.961 4,-6.92c0,-4.418 -3.582,-8 -7.999,-8c-1.601,0 -3.084,0.482 -4.334,1.291c-1.231,-5.316 -5.973,-9.29 -11.664,-9.29c-6.627,0 -11.999,5.372 -11.999,11.999c0,3.549 1.551,6.729 4,8.926v4.914c-4.777,-2.768 -7.999,-7.922 -7.999,-13.84c0,-8.836 7.162,-15.998 15.998,-15.998c1.572,0 3.089,0.232 4.523,0.654c2.195,-2.827 5.617,-4.654 9.475,-4.654c6.627,0 11.998,5.372 11.998,11.998C69.941,43.156 69.649,44.602 69.137,45.936zM57.943,33.643c-2.213,0 -4.215,0.898 -5.663,2.35c2.341,1.436 4.286,3.452 5.63,5.853c0.664,-0.113 1.336,-0.205 2.033,-0.205c2.125,0 4.118,0.559 5.85,1.527l0,0c0.096,-0.494 0.149,-1.004 0.149,-1.527C65.942,37.224 62.361,33.643 57.943,33.643zM57.943,25.643c-1.104,0 -2,-0.895 -2,-1.999v-3.999c0,-1.105 0.896,-2 2,-2s2,0.895 2,2v3.999C59.943,24.749 59.048,25.643 57.943,25.643zM43.803,30.329l-2.828,-2.827c-0.78,-0.781 -0.78,-2.048 0,-2.828c0.781,-0.781 2.047,-0.781 2.828,0l2.828,2.828c0.781,0.78 0.781,2.047 0,2.827C45.85,31.11 44.584,31.11 43.803,30.329zM41.945,53.641c1.104,0 2,0.895 2,2v3.998c0,1.105 -0.896,2 -2,2s-2,-0.895 -2,-2v-3.998C39.945,54.535 40.841,53.641 41.945,53.641zM41.945,65.639c1.104,0 2,0.895 2,2v3.998c0,1.105 -0.896,2 -2,2s-2,-0.895 -2,-2v-3.998C39.945,66.533 40.841,65.639 41.945,65.639zM49.944,57.639c1.104,0 2,0.896 2,2v4c0,1.104 -0.896,2 -2,2s-2,-0.896 -2,-2v-4C47.944,58.535 48.84,57.639 49.944,57.639zM49.944,69.639c1.104,0 2,0.895 2,1.998v4c0,1.105 -0.896,2 -2,2s-2,-0.895 -2,-2v-4C47.944,70.533 48.84,69.639 49.944,69.639zM57.943,53.641c1.104,0 2,0.895 2,2v3.998c0,1.105 -0.896,2 -2,2s-2,-0.895 -2,-2v-3.998C55.943,54.535 56.839,53.641 57.943,53.641zM57.943,65.639c1.104,0 2,0.895 2,2v3.998c0,1.105 -0.896,2 -2,2s-2,-0.895 -2,-2v-3.998C55.943,66.533 56.839,65.639 57.943,65.639z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M79.941,43.641h-4c-1.104,0 -2,-0.895 -2,-2c0,-1.104 0.896,-1.998 2,-1.998h4c1.104,0 1.999,0.895 1.999,1.998C81.94,42.747 81.046,43.641 79.941,43.641zM72.084,30.329c-0.781,0.781 -2.047,0.781 -2.828,0c-0.781,-0.78 -0.781,-2.047 0,-2.827l2.828,-2.828c0.781,-0.781 2.047,-0.781 2.828,0c0.781,0.78 0.781,2.047 0,2.828L72.084,30.329zM69.137,45.936L69.137,45.936c1.749,2.086 2.806,4.77 2.806,7.706l0,0c0,5.227 -3.349,9.66 -8.014,11.305c-0.027,-1.336 -0.434,-2.66 -1.222,-3.807c3.054,-1.127 5.235,-4.055 5.235,-7.498c0,-4.418 -3.581,-8 -7.999,-8c-1.601,0 -3.083,0.482 -4.333,1.291c-1.232,-5.316 -5.974,-9.29 -11.665,-9.29c-6.626,0 -11.998,5.372 -11.998,11.999c0,1.404 0.254,2.746 0.697,4h0.015c0.975,2.74 2.895,5.031 5.395,6.445l-0.058,0.057c-0.98,0.98 -1.596,2.184 -1.872,3.445c-3.751,-2.107 -6.551,-5.686 -7.652,-9.947l0,0c-0.33,-1.281 -0.524,-2.617 -0.524,-4c0,-8.836 7.163,-15.998 15.998,-15.998c1.572,0 3.089,0.232 4.523,0.654c2.195,-2.827 5.618,-4.654 9.475,-4.654c6.627,0 11.999,5.372 11.999,11.998C69.942,43.157 69.649,44.602 69.137,45.936zM57.943,33.644c-2.212,0 -4.214,0.898 -5.662,2.35c2.34,1.436 4.286,3.453 5.629,5.853c0.664,-0.113 1.337,-0.205 2.033,-0.205c2.126,0 4.118,0.559 5.85,1.527l0,0c0.096,-0.494 0.149,-1.004 0.149,-1.527C65.942,37.225 62.361,33.644 57.943,33.644zM57.943,25.644c-1.104,0 -1.999,-0.895 -1.999,-1.999v-3.999c0,-1.105 0.895,-2 1.999,-2s2,0.895 2,2v3.999C59.943,24.749 59.048,25.644 57.943,25.644zM43.804,30.329l-2.828,-2.827c-0.781,-0.781 -0.781,-2.048 0,-2.828c0.78,-0.781 2.047,-0.781 2.828,0l2.828,2.828c0.78,0.78 0.78,2.047 0,2.827C45.851,31.11 44.584,31.11 43.804,30.329zM42.945,60.851l2.121,2.121c1.172,1.172 1.172,3.07 0,4.242c-1.171,1.172 -3.07,1.172 -4.242,0c-1.171,-1.172 -1.171,-3.07 0,-4.242L42.945,60.851zM49.944,68.849l2.121,2.121c1.172,1.172 1.172,3.072 0,4.242c-1.171,1.172 -3.07,1.172 -4.242,0c-1.171,-1.17 -1.171,-3.07 0,-4.242L49.944,68.849zM56.943,60.851l2.121,2.121c1.172,1.172 1.172,3.07 0,4.242c-1.171,1.172 -3.07,1.172 -4.241,0c-1.172,-1.172 -1.172,-3.07 0,-4.242L56.943,60.851z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M69.998,65.641H30.003c-1.104,0 -2,-0.896 -2,-2c0,-1.105 0.896,-2 2,-2h39.995c1.104,0 2,0.895 2,2C71.998,64.744 71.103,65.641 69.998,65.641zM69.998,57.641H30.003c-1.104,0 -2,-0.895 -2,-2c0,-1.104 0.896,-2 2,-2h39.995c1.104,0 2,0.896 2,2C71.998,56.746 71.103,57.641 69.998,57.641zM59.999,45.643c-1.601,0 -3.083,0.48 -4.333,1.291c-1.232,-5.317 -5.974,-9.291 -11.665,-9.291c-6.626,0 -11.998,5.373 -11.998,12h-4c0,-8.835 7.163,-15.999 15.998,-15.999c6.004,0 11.229,3.312 13.965,8.204c0.664,-0.113 1.337,-0.205 2.033,-0.205c5.222,0 9.652,3.342 11.301,8h-4.381C65.535,47.253 62.958,45.643 59.999,45.643zM30.003,69.639h39.995c1.104,0 2,0.896 2,2c0,1.105 -0.896,2 -2,2H30.003c-1.104,0 -2,-0.895 -2,-2C28.003,70.535 28.898,69.639 30.003,69.639z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M29.177,55.641c-0.262,-0.646 -0.473,-1.315 -0.648,-2h43.47c0,0.684 -0.07,1.348 -0.181,2H29.177zM36.263,35.643c2.294,-1.271 4.93,-1.999 7.738,-1.999c2.806,0 5.436,0.73 7.727,1.999H36.263zM28.142,47.642c0.085,-0.682 0.218,-1.347 0.387,-1.999h40.396c0.551,0.613 1.039,1.281 1.455,1.999H28.142zM29.177,43.643c0.281,-0.693 0.613,-1.359 0.984,-2h27.682c0.04,0.068 0.084,0.135 0.123,0.205c0.664,-0.114 1.338,-0.205 2.033,-0.205c2.451,0 4.729,0.738 6.627,2H29.177zM31.524,39.643c0.58,-0.723 1.225,-1.388 1.92,-2h21.122c0.69,0.61 1.326,1.28 1.903,2H31.524zM71.817,51.641H28.142c-0.082,-0.656 -0.139,-1.32 -0.139,-1.999h43.298C71.528,50.285 71.702,50.953 71.817,51.641zM71.301,57.641c-0.247,0.699 -0.555,1.367 -0.921,2H31.524c-0.505,-0.629 -0.957,-1.299 -1.363,-2H71.301zM33.444,61.641h35.48c-0.68,0.758 -1.447,1.434 -2.299,1.999H36.263C35.247,63.078 34.309,62.4 33.444,61.641z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M69.819,46.758L69.819,46.758c0.617,0.88 1.102,1.854 1.469,2.884h0.019l0,0H66.92l0,0l0,0c-1.384,-2.389 -3.962,-3.999 -6.921,-3.999c-1.6,0 -3.082,0.48 -4.333,1.29c-1.231,-5.316 -5.974,-9.29 -11.665,-9.29c-6.626,0 -11.998,5.372 -11.998,11.999l0,0h-4l0,0c0,-8.835 7.163,-15.998 15.998,-15.998c2.003,0 3.914,0.376 5.68,1.048l0,0c1.635,-4.683 6.079,-8.047 11.318,-8.047c0.756,0 1.492,0.078 2.208,0.211c-0.132,0.576 -0.208,1.173 -0.208,1.789c0,4.418 3.582,7.998 7.999,7.998c0.616,0 1.212,-0.076 1.788,-0.207c0.134,0.717 0.212,1.452 0.212,2.207C72.998,41.777 71.786,44.621 69.819,46.758zM59.212,30.852c-2.9,0.663 -5.175,2.91 -5.924,5.774l0,0c1.916,1.372 3.521,3.153 4.678,5.222c0.664,-0.114 1.338,-0.205 2.033,-0.205c2.619,0 5.033,0.848 7.006,2.271l0,0c0.858,-0.98 1.485,-2.169 1.785,-3.482C63.937,39.527 60.115,35.706 59.212,30.852zM30.003,53.641h39.996c1.104,0 1.999,0.896 1.999,2s-0.896,2 -1.999,2H30.003c-1.104,0 -2,-0.896 -2,-2S28.899,53.641 30.003,53.641zM30.003,61.641h39.996c1.104,0 1.999,0.895 1.999,1.999s-0.896,2 -1.999,2H30.003c-1.104,0 -2,-0.896 -2,-2S28.899,61.641 30.003,61.641zM30.003,69.639h39.996c1.104,0 1.999,0.896 1.999,2s-0.896,2 -1.999,2H30.003c-1.104,0 -2,-0.896 -2,-2S28.899,69.639 30.003,69.639z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M67.214,43.643c0.746,-0.927 1.303,-2.013 1.576,-3.211c-4.854,-0.904 -8.676,-4.726 -9.579,-9.58c-2.559,0.585 -4.626,2.404 -5.594,4.791H36.263c2.293,-1.271 4.93,-1.999 7.738,-1.999c2.002,0 3.914,0.376 5.68,1.048c1.635,-4.683 6.078,-8.047 11.318,-8.047c0.755,0 1.491,0.078 2.207,0.211c-0.131,0.576 -0.207,1.173 -0.207,1.789c0,4.418 3.581,7.998 7.998,7.998c0.616,0 1.213,-0.076 1.789,-0.207c0.133,0.717 0.211,1.452 0.211,2.207c0,1.789 -0.405,3.478 -1.109,5H67.214zM71.997,53.641c0,0.684 -0.07,1.348 -0.18,2H29.177c-0.262,-0.646 -0.473,-1.315 -0.649,-2H71.997zM71.3,57.641c-0.247,0.699 -0.555,1.367 -0.92,2H31.523c-0.505,-0.629 -0.956,-1.299 -1.362,-2H71.3zM68.925,61.641c-0.68,0.758 -1.447,1.434 -2.299,1.999H36.263c-1.016,-0.562 -1.955,-1.239 -2.818,-1.999H68.925zM28.142,51.641c-0.082,-0.656 -0.139,-1.32 -0.139,-1.999h43.284c0.229,0.646 0.417,1.31 0.534,1.999H28.142zM69.818,46.758c0.196,0.281 0.354,0.588 0.527,0.884H28.142c0.085,-0.682 0.218,-1.347 0.386,-1.999h42.19C70.437,46.029 70.142,46.407 69.818,46.758zM66.597,43.643h-37.42c0.281,-0.693 0.613,-1.359 0.984,-2h27.675c0.04,0.07 0.091,0.134 0.13,0.205c0.664,-0.114 1.337,-0.205 2.033,-0.205C62.442,41.643 64.702,42.388 66.597,43.643zM33.444,37.643h21.111c0.689,0.607 1.314,1.283 1.891,2H31.523C32.104,38.92 32.749,38.255 33.444,37.643z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M79.996,43.642h-3.999c-1.104,0 -2,-0.895 -2,-2c0,-1.104 0.896,-2 2,-2h3.999c1.104,0 2,0.896 2,2C81.996,42.748 81.101,43.642 79.996,43.642zM72.14,30.33c-0.781,0.781 -2.047,0.781 -2.828,0s-0.781,-2.047 0,-2.828l2.828,-2.828c0.781,-0.781 2.047,-0.781 2.828,0c0.78,0.781 0.78,2.047 0,2.828L72.14,30.33zM69.192,45.937L69.192,45.937c0.912,1.088 1.63,2.34 2.113,3.705h-4.387c-1.384,-2.389 -3.961,-4 -6.92,-4c-1.601,0 -3.083,0.48 -4.334,1.291c-1.231,-5.316 -5.973,-9.291 -11.664,-9.291c-6.627,0 -11.999,5.373 -11.999,12h-3.999c0,-8.836 7.162,-15.999 15.998,-15.999c1.572,0 3.089,0.232 4.523,0.655c2.195,-2.828 5.618,-4.654 9.475,-4.654c6.627,0 11.999,5.371 11.999,11.998C69.998,43.158 69.705,44.601 69.192,45.937zM57.999,33.644c-2.212,0 -4.215,0.898 -5.662,2.351c2.34,1.435 4.285,3.453 5.629,5.853c0.664,-0.113 1.337,-0.205 2.033,-0.205c2.125,0 4.118,0.559 5.85,1.527l0,0c0.096,-0.494 0.149,-1.004 0.149,-1.527C65.998,37.225 62.417,33.644 57.999,33.644zM57.999,25.645c-1.104,0 -2,-0.895 -2,-2v-3.999c0,-1.104 0.896,-2 2,-2s2,0.896 2,2v3.999C59.999,24.75 59.104,25.645 57.999,25.645zM43.858,30.33l-2.827,-2.828c-0.781,-0.781 -0.781,-2.047 0,-2.828c0.78,-0.781 2.047,-0.781 2.827,0l2.828,2.828c0.781,0.781 0.781,2.047 0,2.828C45.906,31.111 44.64,31.111 43.858,30.33zM30.003,53.641h39.995c1.104,0 1.999,0.896 1.999,2c0,1.105 -0.896,2 -1.999,2H30.003c-1.104,0 -2,-0.895 -2,-2C28.003,54.537 28.898,53.641 30.003,53.641zM30.003,61.641h39.995c1.104,0 1.999,0.895 1.999,2c0,1.104 -0.896,2 -1.999,2H30.003c-1.104,0 -2,-0.896 -2,-2C28.003,62.535 28.898,61.641 30.003,61.641zM30.003,69.639h39.995c1.104,0 1.999,0.896 1.999,2c0,1.105 -0.896,2 -1.999,2H30.003c-1.104,0 -2,-0.895 -2,-2C28.003,70.535 28.898,69.639 30.003,69.639z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M79.997,43.643h-4c-1.104,0 -2,-0.896 -2,-2c0,-1.104 0.896,-2 2,-2h4c1.104,0 2,0.896 2,2C81.997,42.746 81.101,43.643 79.997,43.643zM72.14,30.33c-0.781,0.781 -2.047,0.781 -2.828,0s-0.781,-2.047 0,-2.828l2.828,-2.828c0.781,-0.781 2.047,-0.781 2.828,0s0.781,2.047 0,2.828L72.14,30.33zM69.818,43.643H29.177c0.281,-0.693 0.613,-1.359 0.984,-2h27.672c0.041,0.07 0.094,0.134 0.133,0.205c0.664,-0.114 1.337,-0.205 2.033,-0.205c2.125,0 4.119,0.559 5.85,1.527l0,0c0.096,-0.494 0.15,-1.006 0.15,-1.527c0,-4.418 -3.582,-7.999 -8,-7.999c-2.025,0 -3.869,0.759 -5.277,1.999H36.263c2.294,-1.271 4.93,-1.999 7.738,-1.999c1.572,0 3.09,0.232 4.523,0.655c2.195,-2.828 5.618,-4.654 9.475,-4.654c6.627,0 11.999,5.371 11.999,11.998C69.998,42.326 69.931,42.992 69.818,43.643zM57.999,25.645c-1.104,0 -1.999,-0.896 -1.999,-2v-3.999c0,-1.104 0.896,-2 1.999,-2c1.105,0 2,0.896 2,2v3.999C59.999,24.749 59.104,25.645 57.999,25.645zM43.858,30.33l-2.827,-2.828c-0.781,-0.781 -0.781,-2.047 0,-2.828c0.78,-0.781 2.047,-0.781 2.827,0l2.828,2.828c0.781,0.781 0.781,2.047 0,2.828C45.906,31.111 44.64,31.111 43.858,30.33zM33.444,37.643h21.081c0.696,0.611 1.337,1.278 1.918,2H31.524C32.104,38.92 32.749,38.255 33.444,37.643zM71.825,51.641H28.142c-0.082,-0.656 -0.139,-1.32 -0.139,-2h43.303C71.534,50.285 71.71,50.953 71.825,51.641zM33.444,61.641h35.48c-0.68,0.758 -1.447,1.434 -2.299,1.998H36.263C35.247,63.078 34.308,62.4 33.444,61.641zM30.161,57.641H71.3c-0.246,0.699 -0.555,1.367 -0.92,2H31.524C31.02,59.012 30.567,58.342 30.161,57.641zM28.142,47.641c0.085,-0.682 0.218,-1.346 0.387,-1.998h40.764c-0.035,0.098 -0.062,0.197 -0.1,0.295l0,0c0.445,0.529 0.845,1.102 1.194,1.703H28.142zM28.528,53.641h43.47c0,0.684 -0.071,1.348 -0.181,2H29.177C28.915,54.994 28.704,54.324 28.528,53.641z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M63.999,64.941v-4.381c2.389,-1.383 3.999,-3.961 3.999,-6.92c0,-4.417 -3.581,-7.999 -7.998,-7.999c-1.601,0 -3.084,0.48 -4.334,1.291c-1.231,-5.317 -5.974,-9.29 -11.665,-9.29c-6.626,0 -11.998,5.372 -11.998,11.998c0,3.55 1.55,6.728 3.999,8.925v4.916c-4.776,-2.768 -7.998,-7.922 -7.998,-13.841c0,-8.835 7.162,-15.997 15.997,-15.997c6.004,0 11.229,3.311 13.966,8.203c0.663,-0.113 1.336,-0.205 2.033,-0.205c6.626,0 11.998,5.372 11.998,11.999C71.998,58.863 68.656,63.293 63.999,64.941zM42.002,65.639c-1.104,0 -1,-0.895 -1,-1.998v-8c0,-1.104 -0.104,-2 1,-2s1,0.896 1,2v8C43.002,64.744 43.106,65.639 42.002,65.639zM42.002,69.639c1.104,0 1.999,0.896 1.999,2c0,1.105 -0.895,2 -1.999,2s-2,-0.895 -2,-2C40.002,70.535 40.897,69.639 42.002,69.639zM50.001,69.639c-1.104,0 -1,-0.895 -1,-2v-7.998c0,-1.105 -0.104,-2 1,-2s1,0.895 1,2v7.998C51.001,68.744 51.105,69.639 50.001,69.639zM50.001,73.639c1.104,0 1.999,0.895 1.999,2c0,1.104 -0.895,2 -1.999,2s-2,-0.896 -2,-2C48.001,74.533 48.896,73.639 50.001,73.639zM58,65.639c-1.104,0 -1,-0.895 -1,-1.998v-8c0,-1.104 -0.104,-2 1,-2s1,0.896 1,2v8C59,64.744 59.104,65.639 58,65.639zM58,69.639c1.104,0 2,0.896 2,2c0,1.105 -0.896,2 -2,2s-2,-0.895 -2,-2C56,70.535 56.896,69.639 58,69.639z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M72.997,71.639c-1.104,0 -1.999,-0.895 -1.999,-2c0,-1.104 0.895,-2 1.999,-2s2,0.896 2,2C74.997,70.744 74.102,71.639 72.997,71.639zM63.998,64.941v-4.381c2.389,-1.383 4,-3.961 4,-6.92c0,-4.417 -3.581,-7.999 -7.999,-7.999c-1.601,0 -3.083,0.48 -4.334,1.291c-1.231,-5.317 -5.973,-9.29 -11.664,-9.29c-6.627,0 -11.999,5.372 -11.999,11.998c0,3.55 1.551,6.728 4,8.925v4.916c-4.777,-2.768 -7.999,-7.922 -7.999,-13.841c0,-8.835 7.162,-15.997 15.998,-15.997c6.004,0 11.229,3.311 13.965,8.203c0.664,-0.113 1.337,-0.205 2.033,-0.205c6.626,0 11.998,5.372 11.998,11.999C71.997,58.863 68.655,63.293 63.998,64.941zM31.003,72.639c1.104,0 1.999,0.895 1.999,2c0,1.104 -0.895,2 -1.999,2s-2,-0.896 -2,-2C29.003,73.533 29.898,72.639 31.003,72.639zM41.001,55.641c0,-1.104 -0.104,-2 1,-2s1,0.896 1,2v23.998h-2l0,0l0,0c0,-2.209 -1.79,-4 -3.999,-4v-2c1.543,0 2.937,0.6 3.999,1.557V55.641zM50,69.639c-1.104,0 -1,-0.895 -1,-2v-7.998c0,-1.105 -0.104,-2 1,-2s1,0.895 1,2v7.998C51,68.744 51.104,69.639 50,69.639zM50,73.639c1.104,0 2,0.895 2,2c0,1.104 -0.896,2 -2,2s-2,-0.896 -2,-2C48,74.533 48.896,73.639 50,73.639zM57.999,53.641c1.104,0 1,0.896 1,2v18.016c1.823,-2.434 4.723,-4.018 7.999,-4.018v2c-4.418,0 -7.999,3.582 -7.999,8h-2c0,-0.273 0.02,-0.541 0.041,-0.807c-0.054,-0.334 -0.041,-0.744 -0.041,-1.193V55.641C56.999,54.537 56.895,53.641 57.999,53.641z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M69.818,46.758L69.818,46.758c1.369,1.949 2.18,4.32 2.18,6.882c0,5.223 -3.343,9.652 -8,11.301v-4.381c2.389,-1.383 4,-3.961 4,-6.92c0,-4.417 -3.581,-7.999 -7.999,-7.999c-1.601,0 -3.083,0.48 -4.333,1.291c-1.232,-5.317 -5.974,-9.29 -11.665,-9.29c-6.626,0 -11.998,5.372 -11.998,11.998c0,3.55 1.55,6.728 3.999,8.925v4.916c-4.777,-2.768 -7.999,-7.922 -7.999,-13.841c0,-8.835 7.163,-15.997 15.998,-15.997c2.002,0 3.914,0.375 5.68,1.047l0,0c1.635,-4.682 6.078,-8.047 11.318,-8.047c0.755,0 1.491,0.078 2.208,0.212c-0.132,0.575 -0.208,1.173 -0.208,1.788c0,4.418 3.581,7.999 7.999,7.999c0.615,0 1.212,-0.076 1.788,-0.208c0.133,0.717 0.211,1.453 0.211,2.207C72.997,41.777 71.786,44.621 69.818,46.758zM59.211,30.851c-2.9,0.664 -5.174,2.91 -5.924,5.775l0,0c1.917,1.372 3.521,3.152 4.679,5.221c0.664,-0.113 1.337,-0.205 2.033,-0.205c2.618,0 5.032,0.848 7.005,2.271l0,0c0.858,-0.98 1.485,-2.168 1.786,-3.482C63.936,39.527 60.115,35.707 59.211,30.851zM42.001,65.639c-1.104,0 -0.999,-0.895 -0.999,-1.998v-8c0,-1.104 -0.105,-2 0.999,-2s1,0.896 1,2v8C43.001,64.744 43.105,65.639 42.001,65.639zM42.001,69.639c1.104,0 2,0.896 2,2c0,1.105 -0.896,2 -2,2s-1.999,-0.895 -1.999,-2C40.002,70.535 40.896,69.639 42.001,69.639zM50,69.639c-1.104,0 -1,-0.895 -1,-2v-7.998c0,-1.105 -0.104,-2 1,-2s1,0.895 1,2v7.998C51,68.744 51.104,69.639 50,69.639zM50,73.639c1.104,0 2,0.895 2,2c0,1.104 -0.896,2 -2,2s-1.999,-0.896 -1.999,-2C48.001,74.533 48.896,73.639 50,73.639zM57.999,65.639c-1.104,0 -1,-0.895 -1,-1.998v-8c0,-1.104 -0.104,-2 1,-2s1,0.896 1,2v8C58.999,64.744 59.104,65.639 57.999,65.639zM57.999,69.639c1.104,0 2,0.896 2,2c0,1.105 -0.896,2 -2,2S56,72.744 56,71.639C56,70.535 56.895,69.639 57.999,69.639z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M72.997,71.639c-1.104,0 -1.999,-0.895 -1.999,-2c0,-1.104 0.896,-1.998 1.999,-1.998c1.105,0 2,0.895 2,1.998C74.997,70.744 74.103,71.639 72.997,71.639zM69.818,46.76c1.369,1.949 2.18,4.318 2.18,6.881c0,5.223 -3.343,9.652 -7.999,11.303v-4.381c2.389,-1.385 4,-3.963 4,-6.922c0,-4.416 -3.582,-7.998 -8,-7.998c-1.6,0 -3.083,0.48 -4.333,1.291c-1.231,-5.316 -5.974,-9.291 -11.665,-9.291c-6.626,0 -11.998,5.373 -11.998,12c0,1.404 0.252,2.748 0.697,3.998l0,0c0.68,1.91 1.822,3.6 3.303,4.926v4.916c-3.66,-2.121 -6.393,-5.648 -7.477,-9.842c-0.332,-1.279 -0.523,-2.615 -0.523,-3.998c0,-8.835 7.163,-15.999 15.998,-15.999c2.002,0 3.914,0.376 5.68,1.048c1.635,-4.682 6.078,-8.047 11.318,-8.047c0.756,0 1.491,0.078 2.208,0.211c-0.132,0.576 -0.208,1.174 -0.208,1.789c0,4.418 3.582,7.998 7.999,7.998c0.616,0 1.212,-0.075 1.788,-0.207c0.133,0.717 0.211,1.453 0.211,2.207C72.997,41.777 71.786,44.621 69.818,46.76zM59.212,30.852c-2.9,0.664 -5.175,2.91 -5.925,5.775l0,0c1.917,1.372 3.522,3.152 4.679,5.22c0.664,-0.113 1.338,-0.205 2.033,-0.205c2.618,0 5.033,0.848 7.006,2.271c0.858,-0.98 1.485,-2.168 1.785,-3.482C63.937,39.528 60.115,35.707 59.212,30.852zM57.999,17.646L57.999,17.646L57.999,17.646L57.999,17.646zM31.003,72.639c1.104,0 2,0.896 2,2c0,1.105 -0.896,2 -2,2s-2,-0.895 -2,-2C29.003,73.535 29.898,72.639 31.003,72.639zM41.002,55.641c0,-1.104 -0.104,-2 0.999,-2l0,0c1.105,0 1,0.896 1,2v23.998h-1.999l0,0l0,0c0,-2.209 -1.79,-4 -3.999,-4v-2c1.543,0 2.936,0.6 3.999,1.557V55.641zM50.001,69.639c-1.104,0 -1,-0.895 -1,-1.998v-8c0,-1.104 -0.104,-2 1,-2c1.104,0 1,0.896 1,2v8C51.001,68.744 51.104,69.639 50.001,69.639zM50.001,73.639c1.104,0 2,0.896 2,2s-0.896,2 -2,2c-1.104,0 -2,-0.896 -2,-2S48.896,73.639 50.001,73.639zM57.999,53.641L57.999,53.641c1.105,0 1,0.896 1,2v18.016c1.824,-2.434 4.723,-4.018 8,-4.018v2c-4.418,0 -8,3.582 -8,8H57c0,-0.273 0.019,-0.539 0.04,-0.807C56.987,78.498 57,78.088 57,77.639V55.641C57,54.537 56.896,53.641 57.999,53.641z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M79.997,43.642h-4c-1.104,0 -2,-0.895 -2,-2c0,-1.104 0.896,-2 2,-2h4c1.104,0 1.999,0.896 1.999,2C81.996,42.748 81.102,43.642 79.997,43.642zM72.14,30.33c-0.78,0.781 -2.047,0.781 -2.828,0c-0.78,-0.78 -0.78,-2.047 0,-2.828l2.828,-2.828c0.781,-0.78 2.048,-0.78 2.828,0c0.781,0.781 0.781,2.048 0,2.828L72.14,30.33zM69.192,45.937L69.192,45.937c1.749,2.084 2.806,4.77 2.806,7.704c0,5.223 -3.342,9.652 -7.999,11.301v-4.381c2.389,-1.383 3.999,-3.961 3.999,-6.92c0,-4.417 -3.581,-7.999 -7.999,-7.999c-1.6,0 -3.083,0.48 -4.333,1.291c-1.232,-5.317 -5.974,-9.29 -11.665,-9.29c-6.626,0 -11.998,5.372 -11.998,11.998c0,3.55 1.55,6.728 3.999,8.925v4.916c-4.776,-2.768 -7.999,-7.922 -7.999,-13.841c0,-8.835 7.163,-15.997 15.998,-15.997c1.572,0 3.089,0.231 4.524,0.654c2.194,-2.827 5.617,-4.654 9.475,-4.654c6.626,0 11.998,5.371 11.998,11.998C69.998,43.158 69.705,44.602 69.192,45.937zM58,33.644c-2.213,0 -4.215,0.898 -5.663,2.35c2.341,1.435 4.286,3.452 5.629,5.854c0.664,-0.113 1.337,-0.205 2.033,-0.205c2.126,0 4.118,0.559 5.85,1.527l0,0c0.096,-0.494 0.149,-1.004 0.149,-1.527C65.998,37.224 62.417,33.644 58,33.644zM58,25.644c-1.104,0 -2,-0.895 -2,-2v-3.999c0,-1.104 0.896,-1.999 2,-1.999c1.104,0 1.999,0.895 1.999,1.999v3.999C59.999,24.75 59.104,25.644 58,25.644zM43.859,30.33l-2.828,-2.828c-0.781,-0.78 -0.781,-2.047 0,-2.828c0.781,-0.78 2.047,-0.78 2.828,0l2.828,2.828c0.78,0.781 0.78,2.048 0,2.828C45.906,31.111 44.641,31.111 43.859,30.33zM42.002,65.639c-1.104,0 -1,-0.895 -1,-1.998v-8c0,-1.104 -0.104,-2 1,-2c1.104,0 0.999,0.896 0.999,2v8C43.001,64.744 43.105,65.639 42.002,65.639zM42.002,69.639c1.104,0 1.999,0.896 1.999,2c0,1.105 -0.896,2 -1.999,2c-1.104,0 -2,-0.895 -2,-2C40.002,70.535 40.897,69.639 42.002,69.639zM50.001,69.639c-1.104,0 -1,-0.895 -1,-2v-7.998c0,-1.105 -0.104,-2 1,-2c1.104,0 0.999,0.895 0.999,2v7.998C51,68.744 51.104,69.639 50.001,69.639zM50.001,73.639c1.104,0 1.999,0.895 1.999,2c0,1.104 -0.896,2 -1.999,2c-1.104,0 -2,-0.896 -2,-2C48.001,74.533 48.896,73.639 50.001,73.639zM58,65.639c-1.104,0 -1,-0.895 -1,-1.998v-8c0,-1.104 -0.104,-2 1,-2c1.104,0 0.999,0.896 0.999,2v8C58.999,64.744 59.104,65.639 58,65.639zM58,69.639c1.104,0 1.999,0.896 1.999,2c0,1.105 -0.896,2 -1.999,2c-1.104,0 -2,-0.895 -2,-2C56,70.535 56.896,69.639 58,69.639z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M79.997,43.643h-4c-1.104,0 -1.999,-0.895 -1.999,-2c0,-1.104 0.896,-2 1.999,-2h4c1.104,0 2,0.896 2,2C81.997,42.748 81.102,43.643 79.997,43.643zM72.14,30.331c-0.78,0.781 -2.047,0.781 -2.828,0c-0.78,-0.781 -0.78,-2.047 0,-2.828l2.828,-2.828c0.781,-0.781 2.048,-0.781 2.828,0c0.781,0.781 0.781,2.047 0,2.828L72.14,30.331zM69.192,45.938L69.192,45.938c1.75,2.084 2.806,4.77 2.806,7.703c0,5.223 -3.342,9.652 -7.999,11.303v-4.381c2.389,-1.385 4,-3.963 4,-6.922c0,-4.416 -3.582,-7.998 -8,-7.998c-1.6,0 -3.082,0.48 -4.333,1.291c-1.231,-5.316 -5.974,-9.291 -11.665,-9.291c-6.626,0 -11.998,5.373 -11.998,12c0,1.404 0.252,2.748 0.697,3.998l0,0c0.68,1.91 1.822,3.6 3.303,4.926v4.916c-3.66,-2.121 -6.393,-5.648 -7.477,-9.842c-0.332,-1.279 -0.523,-2.615 -0.523,-3.998c0,-8.835 7.163,-15.999 15.998,-15.999c1.573,0 3.09,0.232 4.524,0.655c2.195,-2.828 5.618,-4.654 9.475,-4.654c6.626,0 11.999,5.371 11.999,11.998C69.999,43.158 69.706,44.602 69.192,45.938zM58,33.644c-2.212,0 -4.215,0.898 -5.663,2.351c2.341,1.435 4.286,3.452 5.629,5.853c0.664,-0.113 1.338,-0.205 2.033,-0.205c2.126,0 4.119,0.559 5.85,1.527l0,0c0.097,-0.494 0.15,-1.004 0.15,-1.527C65.999,37.225 62.417,33.644 58,33.644zM58,25.645c-1.104,0 -2,-0.895 -2,-2v-3.999c0,-1.104 0.896,-2 2,-2s1.999,0.896 1.999,2v3.999C59.999,24.75 59.104,25.645 58,25.645zM43.859,30.331l-2.828,-2.828c-0.78,-0.781 -0.78,-2.047 0,-2.828c0.781,-0.781 2.048,-0.781 2.828,0l2.828,2.828c0.781,0.781 0.781,2.047 0,2.828C45.907,31.112 44.641,31.112 43.859,30.331zM31.003,72.639c1.105,0 2,0.896 2,2c0,1.105 -0.895,2 -2,2c-1.104,0 -2,-0.895 -2,-2C29.003,73.535 29.899,72.639 31.003,72.639zM41.002,55.641c0,-1.104 -0.104,-2 1,-2l0,0c1.104,0 1,0.896 1,2v23.998h-2l0,0l0,0c0,-2.209 -1.79,-4 -3.999,-4v-2c1.543,0 2.936,0.6 3.999,1.557V55.641zM50.001,69.639c-1.104,0 -1,-0.895 -1,-1.998v-8c0,-1.104 -0.104,-2 1,-2s1,0.896 1,2v8C51.001,68.744 51.105,69.639 50.001,69.639zM50.001,73.639c1.104,0 2,0.896 2,2s-0.896,2 -2,2s-2,-0.896 -2,-2S48.896,73.639 50.001,73.639zM58,53.641L58,53.641c1.104,0 1,0.896 1,2v18.016c1.823,-2.434 4.723,-4.018 7.999,-4.018v2c-4.418,0 -7.999,3.582 -7.999,8h-2c0,-0.273 0.02,-0.539 0.04,-0.807C56.987,78.498 57,78.088 57,77.639V55.641C57,54.537 56.896,53.641 58,53.641zM72.998,67.641c1.104,0 1.999,0.895 1.999,1.998c0,1.105 -0.895,2 -1.999,2s-2,-0.895 -2,-2C70.998,68.535 71.894,67.641 72.998,67.641z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M59.999,65.641c-0.28,0 -0.649,0 -1.062,0l3.585,-4.412c3.181,-1.057 5.477,-4.053 5.477,-7.588c0,-4.418 -3.581,-7.998 -7.999,-7.998c-1.601,0 -3.083,0.48 -4.333,1.29c-1.232,-5.316 -5.974,-9.29 -11.665,-9.29c-6.626,0 -11.998,5.372 -11.998,12c0,5.446 3.632,10.038 8.604,11.504l-1.349,3.777c-6.52,-2.021 -11.255,-8.098 -11.255,-15.282c0,-8.835 7.163,-15.999 15.998,-15.999c6.004,0 11.229,3.312 13.965,8.204c0.664,-0.114 1.337,-0.205 2.033,-0.205c6.627,0 11.999,5.371 11.999,11.998S66.626,65.641 59.999,65.641zM48.001,51.641h9.998l-5.999,10h6.999L46.001,77.639l3.6,-11.998h-6.6L48.001,51.641z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M69.819,46.758L69.819,46.758c1.004,1.431 1.699,3.09 2.003,4.883h-0.004c0.109,0.652 0.18,1.317 0.18,2c0,6.627 -5.372,11.999 -11.999,11.999c-0.279,0 -0.648,0 -1.062,0l3.584,-4.412c3.181,-1.057 5.478,-4.051 5.478,-7.587c0,-0.691 -0.098,-1.359 -0.263,-2l0,0c-0.89,-3.447 -4.011,-5.999 -7.737,-5.999c-1.6,0 -3.082,0.481 -4.333,1.291c-1.231,-5.316 -5.974,-9.29 -11.665,-9.29c-6.626,0 -11.998,5.372 -11.998,11.999c0,0.683 0.07,1.348 0.18,1.999h-0.014c0.764,4.548 4.088,8.223 8.438,9.505l-1.35,3.778c-5.903,-1.831 -10.331,-6.991 -11.116,-13.283l0,0c-0.082,-0.656 -0.139,-1.32 -0.139,-1.999c0,-8.836 7.163,-15.998 15.998,-15.998c2.003,0 3.914,0.375 5.68,1.048l0,0c1.635,-4.683 6.079,-8.047 11.318,-8.047c0.756,0 1.492,0.078 2.208,0.211c-0.132,0.576 -0.208,1.173 -0.208,1.788c0,4.418 3.582,7.999 7.999,7.999c0.616,0 1.212,-0.076 1.788,-0.207c0.134,0.716 0.212,1.452 0.212,2.207C72.998,41.776 71.786,44.621 69.819,46.758zM59.212,30.852c-2.9,0.663 -5.175,2.909 -5.924,5.774l0,0c1.916,1.372 3.521,3.153 4.678,5.222c0.664,-0.114 1.338,-0.205 2.033,-0.205c2.619,0 5.033,0.848 7.006,2.271l0,0c0.858,-0.979 1.485,-2.168 1.785,-3.482C63.937,39.526 60.115,35.706 59.212,30.852zM48.001,51.641H58l-5.999,9.999H59L46.001,77.638l3.6,-11.998h-6.599L48.001,51.641z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M79.996,43.642h-3.999c-1.104,0 -2,-0.895 -2,-2c0,-1.104 0.896,-2 2,-2h3.999c1.104,0 2,0.896 2,2C81.996,42.748 81.101,43.642 79.996,43.642zM72.14,30.33c-0.781,0.781 -2.047,0.781 -2.828,0s-0.781,-2.047 0,-2.828l2.828,-2.828c0.781,-0.781 2.047,-0.781 2.828,0c0.78,0.781 0.78,2.047 0,2.828L72.14,30.33zM69.192,45.937L69.192,45.937c1.342,1.6 2.271,3.555 2.633,5.704h-0.008c0.109,0.652 0.18,1.318 0.18,2c0,6.627 -5.372,12 -11.998,12c-0.28,0 -0.649,0 -1.062,0l3.584,-4.412c3.181,-1.057 5.478,-4.053 5.478,-7.588c0,-0.691 -0.098,-1.359 -0.263,-2l0,0c-0.889,-3.448 -4.011,-5.999 -7.736,-5.999c-1.601,0 -3.083,0.48 -4.334,1.291c-1.231,-5.316 -5.973,-9.291 -11.664,-9.291c-6.627,0 -11.999,5.373 -11.999,12c0,0.682 0.07,1.348 0.181,1.999h-0.014c0.764,4.549 4.088,8.223 8.438,9.506l-1.35,3.777c-5.903,-1.83 -10.33,-6.99 -11.116,-13.283l0,0c-0.082,-0.657 -0.138,-1.321 -0.138,-1.999c0,-8.836 7.162,-15.999 15.998,-15.999c1.572,0 3.089,0.232 4.523,0.655c2.195,-2.828 5.618,-4.654 9.475,-4.654c6.627,0 11.999,5.371 11.999,11.998C69.998,43.158 69.705,44.601 69.192,45.937zM57.999,33.644c-2.212,0 -4.215,0.898 -5.662,2.351c2.34,1.435 4.285,3.451 5.629,5.853c0.664,-0.113 1.337,-0.205 2.033,-0.205c2.125,0 4.118,0.559 5.85,1.527l0,0c0.096,-0.494 0.149,-1.004 0.149,-1.527C65.998,37.225 62.417,33.644 57.999,33.644zM57.999,25.645c-1.104,0 -2,-0.896 -2,-2v-3.999c0,-1.104 0.896,-2 2,-2s2,0.896 2,2v3.999C59.999,24.749 59.104,25.645 57.999,25.645zM43.858,30.33l-2.827,-2.828c-0.781,-0.781 -0.781,-2.047 0,-2.828c0.78,-0.781 2.047,-0.781 2.827,0l2.828,2.828c0.781,0.781 0.781,2.047 0,2.828C45.906,31.111 44.64,31.111 43.858,30.33zM48,51.641h9.999l-5.999,10h6.999L46.001,77.639l3.6,-11.998h-6.6L48,51.641z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M69.763,46.758L69.763,46.758c1.368,1.949 2.179,4.318 2.179,6.883c0,6.625 -5.371,11.998 -11.998,11.998c-2.775,0 -12.801,0 -15.998,0c-8.836,0 -15.998,-7.162 -15.998,-15.998s7.162,-15.998 15.998,-15.998c2.002,0 3.914,0.375 5.68,1.047l0,0c1.635,-4.682 6.078,-8.047 11.318,-8.047c0.755,0 1.491,0.078 2.207,0.212c-0.131,0.575 -0.207,1.173 -0.207,1.788c0,4.418 3.581,7.999 7.998,7.999c0.616,0 1.213,-0.076 1.789,-0.208c0.133,0.717 0.211,1.453 0.211,2.208C72.941,41.775 71.73,44.621 69.763,46.758zM31.947,49.641c0,6.627 5.371,11.998 11.998,11.998c3.616,0 12.979,0 15.998,0c4.418,0 7.999,-3.582 7.999,-7.998c0,-4.418 -3.581,-8 -7.999,-8c-1.6,0 -3.083,0.482 -4.334,1.291c-1.231,-5.316 -5.973,-9.29 -11.664,-9.29C37.318,37.642 31.947,43.014 31.947,49.641zM51.496,35.545c0.001,0 0.002,0 0.002,0S51.497,35.545 51.496,35.545zM59.155,30.85c-2.9,0.664 -5.175,2.91 -5.925,5.775l0,0c1.918,1.372 3.523,3.152 4.68,5.22c0.664,-0.113 1.337,-0.205 2.033,-0.205c2.618,0 5.033,0.85 7.005,2.271l0,0c0.858,-0.979 1.485,-2.168 1.786,-3.482C63.881,39.525 60.059,35.706 59.155,30.85z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M63.943,64.941v-4.381c2.389,-1.383 4,-3.961 4,-6.92c0,-4.417 -3.582,-7.999 -8,-7.999c-1.6,0 -3.082,0.48 -4.333,1.291c-1.231,-5.317 -5.974,-9.29 -11.665,-9.29c-6.626,0 -11.998,5.372 -11.998,11.998c0,3.55 1.551,6.728 4,8.925v4.916c-4.777,-2.768 -8,-7.922 -8,-13.841c0,-8.835 7.163,-15.997 15.998,-15.997c6.004,0 11.229,3.311 13.965,8.203c0.664,-0.113 1.338,-0.205 2.033,-0.205c6.627,0 11.999,5.372 11.999,11.999C71.942,58.863 68.601,63.293 63.943,64.941zM41.946,53.641c1.104,0 1.999,0.896 1.999,2v15.998c0,1.105 -0.895,2 -1.999,2s-2,-0.895 -2,-2V55.641C39.946,54.537 40.842,53.641 41.946,53.641zM49.945,57.641c1.104,0 2,0.895 2,2v15.998c0,1.104 -0.896,2 -2,2s-2,-0.896 -2,-2V59.641C47.945,58.535 48.841,57.641 49.945,57.641zM57.944,53.641c1.104,0 1.999,0.896 1.999,2v15.998c0,1.105 -0.895,2 -1.999,2s-2,-0.895 -2,-2V55.641C55.944,54.537 56.84,53.641 57.944,53.641z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M59.999,65.64c-0.266,0 -0.614,0 -1,0c0,-1.372 -0.319,-2.742 -0.943,-4c0.777,0 1.451,0 1.943,0c4.418,0 7.999,-3.58 7.999,-7.998s-3.581,-7.999 -7.999,-7.999c-1.6,0 -3.083,0.481 -4.334,1.29c-1.231,-5.316 -5.973,-9.289 -11.664,-9.289c-6.627,0 -11.998,5.372 -11.998,11.998c0,5.953 4.339,10.879 10.023,11.822c-0.637,1.217 -0.969,2.549 -1.012,3.887c-7.406,-1.399 -13.012,-7.895 -13.012,-15.709c0,-8.835 7.162,-15.998 15.998,-15.998c6.004,0 11.229,3.312 13.965,8.204c0.664,-0.114 1.337,-0.205 2.033,-0.205c6.627,0 11.998,5.372 11.998,11.999S66.626,65.64 59.999,65.64zM50.001,58.569l3.535,3.535c1.951,1.953 1.951,5.118 0,7.07c-1.953,1.953 -5.119,1.953 -7.07,0c-1.953,-1.952 -1.953,-5.117 0,-7.07L50.001,58.569z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M50.001,57.641c-1.105,0 -2,0.895 -2,2v15.998c0,1.104 0.895,2 2,2c1.104,0 2,-0.896 2,-2V59.641C52.001,58.535 51.104,57.641 50.001,57.641zM57.999,53.641c-1.104,0 -1.999,0.896 -1.999,2v15.998c0,1.105 0.896,2 1.999,2c1.105,0 2,-0.895 2,-2V55.641C59.999,54.537 59.104,53.641 57.999,53.641zM42.001,53.641c-1.104,0 -1.999,0.896 -1.999,2v15.998c0,1.105 0.896,2 1.999,2c1.105,0 2,-0.895 2,-2V55.641C44.001,54.537 43.106,53.641 42.001,53.641zM72.997,38.642c0,-0.754 -0.078,-1.49 -0.211,-2.207c-0.576,0.132 -1.173,0.208 -1.788,0.208c-4.418,0 -7.999,-3.581 -7.999,-7.999c0,-0.615 0.076,-1.213 0.207,-1.788c-0.716,-0.134 -1.451,-0.212 -2.207,-0.212c-5.24,0 -9.684,3.365 -11.318,8.047c-1.766,-0.672 -3.678,-1.047 -5.68,-1.047c-8.835,0 -15.998,7.162 -15.998,15.997c0,5.919 3.223,11.074 8,13.841v-4.916c-2.45,-2.197 -4,-5.375 -4,-8.925c0,-6.626 5.371,-11.998 11.998,-11.998c5.691,0 10.434,3.973 11.665,9.29c1.25,-0.811 2.733,-1.291 4.333,-1.291c4.418,0 7.999,3.581 7.999,7.999c0,2.959 -1.61,5.537 -3.999,6.92v4.381c4.656,-1.648 7.999,-6.078 7.999,-11.301c0,-2.562 -0.811,-4.933 -2.18,-6.882C71.786,44.621 72.997,41.777 72.997,38.642zM67.005,43.914c-1.973,-1.424 -4.388,-2.271 -7.006,-2.271c-0.696,0 -1.369,0.092 -2.033,0.205c-1.156,-2.068 -2.762,-3.849 -4.679,-5.221c0.75,-2.865 3.024,-5.111 5.924,-5.775c0.904,4.855 4.726,8.676 9.579,9.58C68.489,41.746 67.862,42.933 67.005,43.914z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M81.996,41.642L81.996,41.642L81.996,41.642L81.996,41.642zM71.997,53.641c0,6.627 -5.372,11.998 -11.998,11.998c-0.266,0 -0.614,0 -1,0c0,-1.371 -0.319,-2.742 -0.943,-3.998c0.777,0 1.45,0 1.943,0c4.417,0 7.999,-3.582 7.999,-8c0,-4.417 -3.582,-7.999 -7.999,-7.999c-1.601,0 -3.084,0.48 -4.334,1.291c-1.231,-5.317 -5.973,-9.29 -11.664,-9.29c-6.627,0 -11.999,5.372 -11.999,11.998c0,1.406 0.254,2.748 0.697,4h-0.004c1.437,4.053 4.987,7.104 9.331,7.824c-0.638,1.215 -0.969,2.547 -1.012,3.887c-6.097,-1.152 -10.964,-5.76 -12.498,-11.711h0.011c-0.33,-1.279 -0.524,-2.615 -0.524,-4c0,-8.835 7.162,-15.997 15.998,-15.997c2.002,0 3.914,0.375 5.679,1.047c1.636,-4.682 6.079,-8.047 11.319,-8.047c0.755,0 1.49,0.078 2.207,0.212c-0.132,0.575 -0.208,1.173 -0.208,1.788c0,4.418 3.582,7.999 7.999,7.999c0.616,0 1.213,-0.076 1.788,-0.208c0.134,0.717 0.212,1.453 0.212,2.207c0,3.135 -1.212,5.979 -3.18,8.116C71.187,48.708 71.997,51.078 71.997,53.641zM59.21,30.851c-2.899,0.664 -5.174,2.91 -5.924,5.775l0,0c1.917,1.372 3.522,3.152 4.68,5.221c0.664,-0.113 1.336,-0.205 2.033,-0.205c2.617,0 5.032,0.848 7.005,2.271c0.858,-0.98 1.485,-2.168 1.786,-3.482C63.936,39.527 60.114,35.707 59.21,30.851zM57.999,17.646L57.999,17.646L57.999,17.646L57.999,17.646zM50,58.57l3.535,3.535c1.952,1.951 1.952,5.117 0,7.068c-1.952,1.953 -5.118,1.953 -7.07,0c-1.952,-1.951 -1.952,-5.117 0,-7.068L50,58.57z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M79.941,43.642h-4c-1.104,0 -2,-0.895 -2,-2c0,-1.104 0.896,-2 2,-2h4c1.104,0 2,0.896 2,2C81.941,42.748 81.045,43.642 79.941,43.642zM72.084,30.33c-0.781,0.781 -2.047,0.781 -2.828,0c-0.781,-0.78 -0.781,-2.047 0,-2.828l2.828,-2.828c0.781,-0.78 2.047,-0.78 2.828,0c0.781,0.781 0.781,2.048 0,2.828L72.084,30.33zM69.137,45.937L69.137,45.937c1.75,2.084 2.805,4.77 2.805,7.704c0,5.223 -3.342,9.652 -7.998,11.301v-4.381c2.389,-1.383 4,-3.961 4,-6.92c0,-4.417 -3.582,-7.999 -8,-7.999c-1.6,0 -3.084,0.48 -4.334,1.291c-1.23,-5.317 -5.973,-9.29 -11.664,-9.29c-6.627,0 -11.998,5.372 -11.998,11.998c0,3.55 1.551,6.728 4,8.925v4.916c-4.777,-2.768 -8,-7.922 -8,-13.841c0,-8.835 7.162,-15.997 15.998,-15.997c1.572,0 3.09,0.231 4.523,0.654c2.195,-2.827 5.617,-4.654 9.475,-4.654c6.627,0 11.998,5.371 11.998,11.998C69.941,43.158 69.65,44.602 69.137,45.937zM57.943,33.644c-2.211,0 -4.215,0.898 -5.662,2.35c2.34,1.435 4.285,3.452 5.629,5.854c0.664,-0.113 1.338,-0.205 2.033,-0.205c2.125,0 4.119,0.559 5.85,1.527l0,0c0.096,-0.494 0.15,-1.004 0.15,-1.527C65.943,37.224 62.361,33.644 57.943,33.644zM57.943,25.644c-1.104,0 -2,-0.895 -2,-2v-3.999c0,-1.104 0.896,-1.999 2,-1.999c1.105,0 2,0.895 2,1.999v3.999C59.943,24.75 59.049,25.644 57.943,25.644zM43.803,30.33l-2.828,-2.828c-0.779,-0.78 -0.779,-2.047 0,-2.828c0.781,-0.78 2.049,-0.78 2.828,0l2.828,2.828c0.781,0.781 0.781,2.048 0,2.828C45.85,31.111 44.584,31.111 43.803,30.33zM41.945,53.641c1.105,0 2,0.896 2,2v15.998c0,1.105 -0.895,2 -2,2c-1.104,0 -2,-0.895 -2,-2V55.641C39.945,54.537 40.842,53.641 41.945,53.641zM49.945,57.641c1.104,0 2,0.895 2,2v15.998c0,1.104 -0.896,2 -2,2c-1.105,0 -2,-0.896 -2,-2V59.641C47.945,58.535 48.84,57.641 49.945,57.641zM57.943,53.641c1.105,0 2,0.896 2,2v15.998c0,1.105 -0.895,2 -2,2c-1.104,0 -2,-0.895 -2,-2V55.641C55.943,54.537 56.84,53.641 57.943,53.641z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M79.996,43.642h-3.999c-1.104,0 -2,-0.895 -2,-2c0,-1.104 0.896,-2 2,-2h3.999c1.104,0 2,0.896 2,2C81.996,42.748 81.101,43.642 79.996,43.642zM72.14,30.33c-0.781,0.781 -2.047,0.781 -2.828,0c-0.781,-0.78 -0.781,-2.047 0,-2.828l2.828,-2.828c0.781,-0.78 2.047,-0.78 2.828,0c0.781,0.781 0.781,2.048 0,2.828L72.14,30.33zM69.192,45.938L69.192,45.938c1.748,2.084 2.805,4.77 2.805,7.703l0,0c0,6.627 -5.371,11.998 -11.998,11.998c-0.266,0 -0.614,0 -1,0c0,-1.371 -0.319,-2.742 -0.943,-3.998c0.777,0 1.451,0 1.943,0c4.418,0 7.999,-3.582 7.999,-8s-3.581,-7.998 -7.999,-7.998c-1.601,0 -3.084,0.48 -4.334,1.291c-1.231,-5.318 -5.973,-9.291 -11.664,-9.291c-6.627,0 -11.998,5.372 -11.998,11.998c0,1.406 0.254,2.748 0.697,4h-0.005c1.437,4.053 4.987,7.104 9.331,7.824c-0.637,1.215 -0.969,2.547 -1.012,3.887c-6.096,-1.152 -10.964,-5.76 -12.498,-11.711h0.011c-0.33,-1.279 -0.524,-2.615 -0.524,-4c0,-8.834 7.162,-15.997 15.998,-15.997c1.572,0 3.089,0.231 4.523,0.654c2.195,-2.827 5.617,-4.654 9.475,-4.654c6.627,0 11.998,5.371 11.998,11.998C69.997,43.158 69.705,44.602 69.192,45.938zM57.999,33.644c-2.213,0 -4.215,0.898 -5.662,2.35c2.34,1.435 4.285,3.452 5.629,5.854c0.664,-0.113 1.336,-0.205 2.033,-0.205c2.125,0 4.118,0.559 5.85,1.527l0,0c0.096,-0.494 0.149,-1.004 0.149,-1.527C65.998,37.224 62.417,33.644 57.999,33.644zM57.999,25.644c-1.104,0 -2,-0.895 -2,-2v-3.999c0,-1.104 0.896,-1.999 2,-1.999s2,0.895 2,1.999v3.999C59.999,24.75 59.104,25.644 57.999,25.644zM43.858,30.33l-2.828,-2.828c-0.781,-0.78 -0.781,-2.047 0,-2.828c0.781,-0.78 2.047,-0.78 2.828,0l2.828,2.828c0.781,0.781 0.781,2.048 0,2.828C45.905,31.111 44.64,31.111 43.858,30.33zM50,58.57l3.535,3.535c1.952,1.951 1.952,5.117 0,7.068c-1.952,1.953 -5.118,1.953 -7.07,0c-1.952,-1.951 -1.952,-5.117 0,-7.068L50,58.57z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#231F20" android:fillType="evenOdd" android:pathData="M63.908,64.952c-0.068,-1.402 -0.34,-2.746 -0.791,-4.01c2.83,-1.229 4.824,-4.018 4.824,-7.3c0,-4.418 -3.58,-8 -7.998,-8c-1.6,0 -3.084,0.481 -4.334,1.29c-1.23,-5.316 -5.973,-9.289 -11.664,-9.289c-6.627,0 -11.999,5.371 -11.999,11.998c0,4.172 2.143,7.828 5.375,9.976c-0.588,1.23 -0.999,2.559 -1.207,3.957c-4.87,-2.742 -8.168,-7.946 -8.168,-13.933c0,-8.835 7.163,-15.998 15.999,-15.998c6.004,0 11.229,3.312 13.965,8.204c0.664,-0.114 1.336,-0.205 2.033,-0.205c6.627,0 11.998,5.372 11.998,12C71.941,58.876 68.584,63.315 63.908,64.952zM49.945,55.266v0.018h2.984l-2.227,-2.227c-0.781,-0.781 -0.781,-2.047 0,-2.829c0.779,-0.78 2.047,-0.78 2.826,0l5.656,5.657c0.781,0.78 0.781,2.046 0,2.827l-5.656,5.656c-0.779,0.781 -2.047,0.781 -2.826,0c-0.781,-0.781 -0.781,-2.047 0,-2.828l2.258,-2.258h-3.016l0,0c-3.314,0 -6,2.686 -6,6c0,3.312 2.686,5.998 6,5.998c3.312,0 5.998,-2.686 5.998,-5.998c0,-0.156 -0.033,-0.301 -0.045,-0.453l3.312,-3.312c0.469,1.158 0.732,2.422 0.732,3.748c0,5.523 -4.477,10 -9.998,10c-5.523,0 -10,-4.477 -10,-10C39.946,59.743 44.422,55.266 49.945,55.266z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M63.999,64.943v-4.381c2.389,-1.385 3.999,-3.963 3.999,-6.922c0,-4.416 -3.581,-7.998 -7.999,-7.998c-1.6,0 -3.083,0.48 -4.333,1.291c-1.231,-5.317 -5.974,-9.291 -11.665,-9.291c-6.627,0 -11.998,5.373 -11.998,12c0,3.549 1.55,6.729 4,8.924v4.916c-4.777,-2.768 -8,-7.922 -8,-13.84c0,-8.836 7.163,-15.999 15.998,-15.999c6.004,0 11.229,3.312 13.965,8.204c0.664,-0.113 1.337,-0.205 2.033,-0.205c6.627,0 11.999,5.373 11.999,11.998C71.998,58.863 68.655,63.293 63.999,64.943zM42.001,57.641c1.105,0 2,0.896 2,2c0,1.105 -0.895,2 -2,2c-1.104,0 -1.999,-0.895 -1.999,-2C40.002,58.537 40.897,57.641 42.001,57.641zM42.001,65.641c1.105,0 2,0.895 2,2c0,1.104 -0.895,1.998 -2,1.998c-1.104,0 -1.999,-0.895 -1.999,-1.998C40.002,66.535 40.897,65.641 42.001,65.641zM50.001,61.641c1.104,0 2,0.895 2,2c0,1.104 -0.896,2 -2,2c-1.105,0 -2,-0.896 -2,-2C48.001,62.535 48.896,61.641 50.001,61.641zM50.001,69.639c1.104,0 2,0.896 2,2c0,1.105 -0.896,2 -2,2c-1.105,0 -2,-0.895 -2,-2C48.001,70.535 48.896,69.639 50.001,69.639zM57.999,57.641c1.105,0 2,0.896 2,2c0,1.105 -0.895,2 -2,2c-1.104,0 -1.999,-0.895 -1.999,-2C56,58.537 56.896,57.641 57.999,57.641zM57.999,65.641c1.105,0 2,0.895 2,2c0,1.104 -0.895,1.998 -2,1.998c-1.104,0 -1.999,-0.895 -1.999,-1.998C56,66.535 56.896,65.641 57.999,65.641z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M61.998,65.461v-4.082c3.448,-0.891 6,-4.012 6,-7.738c0,-4.417 -3.582,-7.999 -7.999,-7.999c-1.601,0 -3.084,0.48 -4.334,1.291c-1.231,-5.317 -5.973,-9.291 -11.664,-9.291c-6.627,0 -11.999,5.373 -11.999,12c0,4.438 2.417,8.305 5.999,10.379v4.445c-5.86,-2.375 -9.998,-8.113 -9.998,-14.825c0,-8.835 7.162,-15.999 15.998,-15.999c6.004,0 11.229,3.312 13.965,8.204c0.664,-0.113 1.336,-0.205 2.033,-0.205c6.626,0 11.998,5.373 11.998,11.998C71.997,59.586 67.671,64.506 61.998,65.461zM43.072,59.641c0.553,-0.957 1.775,-1.283 2.732,-0.732L48,60.176v-2.535c0,-1.104 0.896,-2 2,-2s2,0.896 2,2v2.535l2.195,-1.268c0.957,-0.551 2.18,-0.225 2.731,0.732c0.553,0.957 0.225,2.18 -0.731,2.732l-2.196,1.268l2.196,1.268c0.956,0.553 1.284,1.775 0.731,2.732c-0.552,0.955 -1.774,1.283 -2.731,0.73L52,67.104v2.535c0,1.105 -0.896,2 -2,2s-2,-0.895 -2,-2v-2.535l-2.195,1.268c-0.957,0.553 -2.18,0.225 -2.732,-0.73c-0.552,-0.957 -0.225,-2.18 0.732,-2.732L46,63.641l-2.195,-1.268C42.848,61.82 42.521,60.598 43.072,59.641zM50,65.641c1.104,0 2,-0.896 2,-2c0,-1.105 -0.896,-2 -2,-2s-2,0.895 -2,2C48,64.744 48.896,65.641 50,65.641z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M69.817,46.759L69.817,46.759c1.369,1.949 2.18,4.319 2.18,6.881c0,5.223 -3.342,9.652 -7.998,11.303v-4.381c2.388,-1.385 3.999,-3.963 3.999,-6.922c0,-4.417 -3.581,-7.999 -7.999,-7.999c-1.601,0 -3.084,0.48 -4.334,1.291c-1.231,-5.317 -5.973,-9.291 -11.664,-9.291c-6.627,0 -11.998,5.373 -11.998,12c0,3.549 1.55,6.729 3.999,8.924v4.916c-4.777,-2.768 -7.999,-7.922 -7.999,-13.84c0,-8.835 7.162,-15.999 15.998,-15.999c2.002,0 3.914,0.376 5.68,1.048l0,0c1.635,-4.682 6.078,-8.047 11.318,-8.047c0.755,0 1.49,0.078 2.207,0.211c-0.131,0.576 -0.207,1.174 -0.207,1.789c0,4.418 3.58,7.998 7.998,7.998c0.616,0 1.213,-0.075 1.789,-0.207c0.133,0.717 0.211,1.453 0.211,2.207C72.997,41.777 71.786,44.621 69.817,46.759zM59.21,30.852c-2.899,0.664 -5.174,2.91 -5.924,5.775c1.918,1.372 3.523,3.152 4.68,5.221c0.664,-0.113 1.336,-0.205 2.033,-0.205c2.617,0 5.033,0.848 7.005,2.271l0,0c0.858,-0.98 1.485,-2.167 1.786,-3.482C63.936,39.527 60.114,35.706 59.21,30.852zM42.001,57.641c1.104,0 2,0.896 2,2c0,1.105 -0.896,2 -2,2s-2,-0.895 -2,-2C40.001,58.537 40.896,57.641 42.001,57.641zM42.001,65.641c1.104,0 2,0.895 2,2c0,1.104 -0.896,1.998 -2,1.998s-2,-0.895 -2,-1.998C40.001,66.535 40.896,65.641 42.001,65.641zM50,61.641c1.104,0 2,0.895 2,2c0,1.104 -0.896,2 -2,2s-1.999,-0.896 -1.999,-2C48.001,62.535 48.896,61.641 50,61.641zM50,69.639c1.104,0 2,0.896 2,2c0,1.105 -0.896,2 -2,2s-1.999,-0.895 -1.999,-2C48.001,70.535 48.896,69.639 50,69.639zM57.999,57.641c1.104,0 2,0.896 2,2c0,1.105 -0.896,2 -2,2s-2,-0.895 -2,-2C55.999,58.537 56.895,57.641 57.999,57.641zM57.999,65.641c1.104,0 2,0.895 2,2c0,1.104 -0.896,1.998 -2,1.998s-2,-0.895 -2,-1.998C55.999,66.535 56.895,65.641 57.999,65.641z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M69.818,46.759L69.818,46.759c1.369,1.949 2.18,4.319 2.18,6.881c0,5.223 -3.342,9.652 -7.999,11.303v-4.381c2.389,-1.385 3.999,-3.963 3.999,-6.922c0,-4.417 -3.581,-7.999 -7.999,-7.999c-1.6,0 -3.083,0.48 -4.333,1.291c-1.232,-5.317 -5.974,-9.291 -11.665,-9.291c-6.626,0 -11.998,5.373 -11.998,12c0,3.549 1.55,6.729 3.999,8.924v4.916c-4.776,-2.768 -7.999,-7.922 -7.999,-13.84c0,-8.835 7.163,-15.999 15.998,-15.999c2.002,0 3.914,0.376 5.68,1.048l0,0c1.635,-4.682 6.078,-8.047 11.318,-8.047c0.755,0 1.491,0.078 2.208,0.211c-0.132,0.576 -0.208,1.174 -0.208,1.789c0,4.418 3.581,7.998 7.999,7.998c0.615,0 1.212,-0.075 1.788,-0.207c0.134,0.717 0.212,1.453 0.212,2.207C72.998,41.777 71.786,44.621 69.818,46.759zM59.211,30.852c-2.9,0.664 -5.174,2.91 -5.924,5.775l0,0c1.917,1.372 3.522,3.152 4.679,5.221c0.664,-0.113 1.337,-0.205 2.033,-0.205c2.618,0 5.033,0.847 7.005,2.271l0,0c0.859,-0.98 1.486,-2.167 1.786,-3.482C63.936,39.527 60.115,35.706 59.211,30.852zM43.073,59.641c0.552,-0.957 1.775,-1.283 2.731,-0.732l2.196,1.268v-2.535c0,-1.104 0.896,-2 2,-2c1.104,0 1.999,0.896 1.999,2v2.535l2.196,-1.268c0.956,-0.551 2.18,-0.225 2.731,0.732c0.553,0.957 0.225,2.18 -0.731,2.732L54,63.641l2.196,1.268c0.956,0.553 1.284,1.775 0.731,2.732c-0.552,0.955 -1.775,1.283 -2.731,0.73L52,67.104v2.535c0,1.105 -0.896,2 -1.999,2c-1.104,0 -2,-0.895 -2,-2v-2.535l-2.196,1.268c-0.956,0.553 -2.18,0.225 -2.731,-0.73c-0.552,-0.957 -0.225,-2.18 0.731,-2.732l2.196,-1.268l-2.196,-1.268C42.849,61.82 42.521,60.598 43.073,59.641zM50.001,65.641c1.104,0 1.999,-0.896 1.999,-2c0,-1.105 -0.896,-2 -1.999,-2c-1.104,0 -2,0.895 -2,2C48.001,64.744 48.896,65.641 50.001,65.641z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M79.997,43.642h-4c-1.104,0 -2,-0.895 -2,-2c0,-1.104 0.896,-2 2,-2h4c1.104,0 1.999,0.896 1.999,2C81.996,42.748 81.101,43.642 79.997,43.642zM72.14,30.33c-0.781,0.781 -2.047,0.781 -2.828,0s-0.781,-2.047 0,-2.828l2.828,-2.828c0.781,-0.781 2.047,-0.781 2.828,0s0.781,2.047 0,2.828L72.14,30.33zM69.192,45.937L69.192,45.937c1.749,2.084 2.805,4.77 2.805,7.704c0,5.223 -3.342,9.652 -7.998,11.303v-4.381c2.389,-1.385 3.999,-3.963 3.999,-6.922c0,-4.417 -3.581,-7.999 -7.999,-7.999c-1.6,0 -3.083,0.48 -4.334,1.291c-1.231,-5.316 -5.973,-9.291 -11.664,-9.291c-6.627,0 -11.998,5.373 -11.998,12c0,3.549 1.55,6.729 3.999,8.924v4.916c-4.776,-2.768 -7.999,-7.922 -7.999,-13.84c0,-8.836 7.162,-15.999 15.998,-15.999c1.572,0 3.09,0.232 4.523,0.655c2.195,-2.828 5.618,-4.654 9.475,-4.654c6.627,0 11.999,5.371 11.999,11.998C69.998,43.158 69.705,44.601 69.192,45.937zM57.999,33.644c-2.212,0 -4.215,0.898 -5.662,2.351c2.34,1.435 4.285,3.453 5.629,5.853c0.664,-0.113 1.337,-0.205 2.033,-0.205c2.125,0 4.118,0.559 5.85,1.527l0,0c0.096,-0.494 0.15,-1.004 0.15,-1.527C65.999,37.225 62.417,33.644 57.999,33.644zM57.999,25.645c-1.104,0 -2,-0.895 -2,-2v-3.999c0,-1.104 0.896,-2 2,-2c1.104,0 2,0.896 2,2v3.999C59.999,24.75 59.104,25.645 57.999,25.645zM43.858,30.33l-2.828,-2.828c-0.78,-0.781 -0.78,-2.047 0,-2.828c0.781,-0.781 2.048,-0.781 2.828,0l2.828,2.828c0.781,0.781 0.781,2.047 0,2.828C45.906,31.111 44.64,31.111 43.858,30.33zM42.001,57.641c1.104,0 2,0.896 2,2c0,1.105 -0.896,2 -2,2c-1.104,0 -2,-0.895 -2,-2C40.001,58.537 40.897,57.641 42.001,57.641zM42.001,65.641c1.104,0 2,0.895 2,2c0,1.104 -0.896,1.998 -2,1.998c-1.104,0 -2,-0.895 -2,-1.998C40.001,66.535 40.897,65.641 42.001,65.641zM50.001,61.641c1.104,0 1.999,0.895 1.999,2c0,1.104 -0.896,2 -1.999,2c-1.105,0 -2,-0.896 -2,-2C48.001,62.535 48.896,61.641 50.001,61.641zM50.001,69.639c1.104,0 1.999,0.896 1.999,2c0,1.105 -0.896,2 -1.999,2c-1.105,0 -2,-0.895 -2,-2C48.001,70.535 48.896,69.639 50.001,69.639zM57.999,57.641c1.104,0 2,0.896 2,2c0,1.105 -0.896,2 -2,2c-1.104,0 -2,-0.895 -2,-2C55.999,58.537 56.896,57.641 57.999,57.641zM57.999,65.641c1.104,0 2,0.895 2,2c0,1.104 -0.896,1.998 -2,1.998c-1.104,0 -2,-0.895 -2,-1.998C55.999,66.535 56.896,65.641 57.999,65.641z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M79.997,43.642h-4c-1.104,0 -1.999,-0.895 -1.999,-2c0,-1.104 0.895,-2 1.999,-2h4c1.104,0 2,0.896 2,2C81.997,42.748 81.102,43.642 79.997,43.642zM72.141,30.33c-0.781,0.781 -2.048,0.781 -2.828,0c-0.781,-0.781 -0.781,-2.047 0,-2.828l2.828,-2.828c0.78,-0.781 2.047,-0.781 2.827,0c0.781,0.781 0.781,2.047 0,2.828L72.141,30.33zM69.192,45.937L69.192,45.937c1.749,2.084 2.806,4.77 2.806,7.704c0,5.945 -4.326,10.865 -9.999,11.82v-4.082c3.448,-0.891 5.999,-4.012 5.999,-7.738c0,-4.417 -3.581,-7.999 -7.998,-7.999c-1.601,0 -3.084,0.48 -4.334,1.291c-1.231,-5.316 -5.974,-9.291 -11.665,-9.291c-6.626,0 -11.998,5.373 -11.998,12c0,4.438 2.416,8.305 5.999,10.379v4.445c-5.86,-2.375 -9.998,-8.113 -9.998,-14.825c0,-8.836 7.162,-15.999 15.997,-15.999c1.573,0 3.09,0.232 4.524,0.655c2.195,-2.828 5.617,-4.654 9.475,-4.654c6.626,0 11.998,5.371 11.998,11.998C69.998,43.158 69.705,44.601 69.192,45.937zM58,33.644c-2.213,0 -4.215,0.898 -5.663,2.351c2.341,1.435 4.286,3.453 5.63,5.853c0.663,-0.113 1.336,-0.205 2.033,-0.205c2.125,0 4.118,0.559 5.85,1.527l0,0c0.096,-0.494 0.149,-1.004 0.149,-1.527C65.999,37.224 62.417,33.644 58,33.644zM58,25.645c-1.104,0 -2,-0.895 -2,-2v-3.999c0,-1.104 0.896,-2 2,-2s2,0.896 2,2v3.999C60,24.75 59.104,25.645 58,25.645zM43.859,30.33l-2.828,-2.828c-0.781,-0.781 -0.781,-2.047 0,-2.828s2.047,-0.781 2.828,0l2.828,2.828c0.781,0.781 0.781,2.047 0,2.828S44.641,31.111 43.859,30.33zM43.073,59.641c0.553,-0.957 1.775,-1.283 2.731,-0.732l2.196,1.268v-2.535c0,-1.104 0.896,-2 2,-2s1.999,0.896 1.999,2v2.535l2.196,-1.268c0.956,-0.551 2.18,-0.225 2.731,0.732c0.553,0.957 0.225,2.18 -0.731,2.732L54,63.641l2.196,1.268c0.956,0.553 1.284,1.775 0.731,2.732c-0.552,0.955 -1.775,1.283 -2.731,0.73L52,67.104v2.535c0,1.105 -0.895,2 -1.999,2s-2,-0.895 -2,-2v-2.535l-2.196,1.268c-0.956,0.553 -2.179,0.225 -2.731,-0.73c-0.552,-0.957 -0.225,-2.18 0.732,-2.732l2.195,-1.268l-2.195,-1.268C42.849,61.82 42.521,60.598 43.073,59.641zM50.001,65.641c1.104,0 1.999,-0.896 1.999,-2c0,-1.105 -0.895,-2 -1.999,-2s-2,0.895 -2,2C48.001,64.744 48.896,65.641 50.001,65.641z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#231F20" android:fillType="evenOdd" android:pathData="M59.943,65.641c-0.832,0 -2.324,0 -4.081,0c0.024,-0.219 0.065,-0.432 0.065,-0.656v-3.344c1.681,0 3.127,0 4.016,0c4.418,0 7.999,-3.582 7.999,-7.998c0,-4.418 -3.581,-8 -7.999,-8c-1.23,0 -2.389,0.289 -3.428,0.788l-1.618,-1.618c-1.856,-4.217 -6.048,-7.169 -10.952,-7.169c-6.627,0 -11.998,5.371 -11.998,11.998c0,6.622 5.363,11.989 11.982,11.999v3.344c0,0.225 0.042,0.438 0.066,0.656c-0.016,0 -0.035,0 -0.051,0c-8.836,0 -15.998,-7.162 -15.998,-15.999c0,-8.835 7.162,-15.998 15.998,-15.998c6.004,0 11.229,3.312 13.965,8.204c0.664,-0.114 1.337,-0.205 2.033,-0.205c6.627,0 11.998,5.372 11.998,12C71.941,60.268 66.57,65.641 59.943,65.641zM42.859,55.398c-0.781,-0.779 -0.781,-2.047 0,-2.826l5.656,-5.657c0.78,-0.781 2.047,-0.781 2.828,0l5.655,5.657c0.781,0.779 0.781,2.047 0,2.826c-0.78,0.781 -2.047,0.781 -2.827,0l-2.243,-2.242v11.828c0,1.104 -0.896,2 -1.999,2c-1.105,0 -2,-0.896 -2,-2V53.156l-2.242,2.242C44.906,56.18 43.64,56.18 42.859,55.398z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M76.746,69.588v0.051h-0.749h-3c-1.104,0 -2,-0.895 -2,-2c0,-1.104 0.896,-1.999 2,-1.999h3c1.104,0 1.999,-0.896 1.999,-2s-0.895,-1.999 -1.999,-1.999s-2,-0.896 -2,-2c0,-1.105 0.896,-2 2,-2c0.138,0 0.272,0.014 0.402,0.041c3.122,0.211 5.597,2.783 5.597,5.958C81.996,66.698 79.705,69.217 76.746,69.588zM65.998,57.641c-1.104,0 -2,-0.896 -2,-2s0.896,-2 2,-2c0.138,0 0.272,0.014 0.403,0.041c3.121,0.211 5.596,2.783 5.596,5.959c0,3.059 -2.291,5.577 -5.249,5.947v0.052h-0.75h-7.985c-4.012,0 -11.358,0 -14.012,0c-1.104,0 -2,0.896 -2,1.999c0,1.105 0.896,2 2,2h21.997h0.75v0.053c2.958,0.369 5.249,2.889 5.249,5.947c0,3.175 -2.475,5.747 -5.596,5.958c-0.131,0.026 -0.266,0.041 -0.403,0.041c-1.104,0 -2,-0.896 -2,-2s0.896,-1.999 2,-1.999s2,-0.896 2,-2c0,-1.105 -0.896,-2 -2,-2H44.001h-0.75v-0.052c-2.959,-0.37 -5.25,-2.89 -5.25,-5.948c0,-1.055 0.294,-2.032 0.773,-2.89c-6.265,-2.168 -10.771,-8.104 -10.771,-15.107c0,-8.835 7.162,-15.998 15.998,-15.998c6.004,0 11.229,3.312 13.965,8.204c0.664,-0.114 1.336,-0.205 2.033,-0.205c5.896,0 10.788,4.256 11.798,9.862c-1.395,-0.995 -3.05,-1.646 -4.849,-1.815c-1.377,-2.416 -3.971,-4.047 -6.949,-4.047c-1.601,0 -3.084,0.48 -4.334,1.29c-1.231,-5.316 -5.973,-9.29 -11.664,-9.29c-6.627,0 -11.999,5.372 -11.999,11.999c0,6.626 5.372,11.999 11.999,11.999c2.598,0 8.152,0 12.199,0h9.798c1.104,0 2,-0.896 2,-2C67.998,58.535 67.103,57.641 65.998,57.641z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M76.747,69.588v0.051h-0.75h-2.999c-1.104,0 -2,-0.895 -2,-2c0,-1.104 0.896,-1.999 2,-1.999h2.999c1.104,0 2,-0.896 2,-2s-0.896,-1.999 -2,-1.999s-2,-0.896 -2,-2c0,-1.105 0.896,-2 2,-2c0.139,0 0.273,0.014 0.403,0.041c3.122,0.211 5.596,2.783 5.596,5.958C81.996,66.698 79.706,69.217 76.747,69.588zM71.287,49.642h0.01c0.213,0.602 0.385,1.222 0.5,1.863c-1.394,-0.995 -3.05,-1.646 -4.849,-1.815c-0.009,-0.017 -0.021,-0.031 -0.031,-0.048h0.003c-1.384,-2.389 -3.962,-3.999 -6.921,-3.999c-1.6,0 -3.083,0.48 -4.333,1.29c-1.232,-5.316 -5.974,-9.29 -11.665,-9.29c-6.626,0 -11.998,5.372 -11.998,11.999l0,0c0,6.626 5.372,11.999 11.998,11.999c2.598,0 8.152,0 12.199,0h9.798c1.104,0 2,-0.896 2,-2c0,-1.105 -0.896,-2 -2,-2c-1.104,0 -1.999,-0.896 -1.999,-2s0.896,-2 1.999,-2c0.139,0 0.273,0.014 0.403,0.041c3.122,0.211 5.597,2.783 5.597,5.959c0,3.059 -2.291,5.577 -5.25,5.947v0.052h-0.75h-7.985c-4.012,0 -11.357,0 -14.012,0c-1.104,0 -1.999,0.896 -1.999,1.999c0,1.105 0.895,2 1.999,2h21.997h0.75v0.053c2.959,0.369 5.25,2.889 5.25,5.947c0,3.175 -2.475,5.747 -5.597,5.958c-0.13,0.026 -0.265,0.041 -0.403,0.041c-1.104,0 -1.999,-0.896 -1.999,-2s0.896,-1.999 1.999,-1.999c1.104,0 2,-0.896 2,-2c0,-1.105 -0.896,-2 -2,-2H44.001h-0.75v-0.052c-2.958,-0.37 -5.249,-2.89 -5.249,-5.948c0,-1.055 0.294,-2.032 0.773,-2.89c-6.266,-2.168 -10.772,-8.104 -10.772,-15.107c0,-8.835 7.163,-15.998 15.998,-15.998c2.002,0 3.914,0.376 5.68,1.048c1.635,-4.683 6.078,-8.047 11.318,-8.047c0.755,0 1.491,0.078 2.208,0.211c-0.132,0.576 -0.208,1.173 -0.208,1.789c0,4.418 3.581,7.998 7.999,7.998c0.615,0 1.212,-0.076 1.788,-0.207c0.134,0.717 0.212,1.452 0.212,2.207c0,3.135 -1.212,5.979 -3.18,8.115C70.436,47.638 70.92,48.612 71.287,49.642zM59.211,30.852c-2.9,0.663 -5.174,2.91 -5.924,5.774l0,0c1.917,1.372 3.522,3.153 4.679,5.222c0.664,-0.114 1.337,-0.205 2.033,-0.205c2.618,0 5.033,0.848 7.005,2.271c0.859,-0.98 1.486,-2.169 1.786,-3.482C63.936,39.527 60.115,35.706 59.211,30.852z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M79.997,43.643h-4c-1.104,0 -1.999,-0.896 -1.999,-2s0.895,-2 1.999,-2h4c1.104,0 2,0.896 2,2S81.102,43.643 79.997,43.643zM72.141,30.33c-0.781,0.781 -2.048,0.781 -2.828,0c-0.781,-0.781 -0.781,-2.047 0,-2.828l2.828,-2.828c0.78,-0.781 2.047,-0.781 2.827,0c0.781,0.781 0.781,2.047 0,2.828L72.141,30.33zM69.192,45.938L69.192,45.938c0.912,1.087 1.63,2.34 2.114,3.704h-0.01c0.213,0.602 0.385,1.222 0.5,1.863c-1.394,-0.995 -3.049,-1.646 -4.848,-1.815c-0.01,-0.017 -0.022,-0.031 -0.032,-0.048h0.003c-1.384,-2.389 -3.961,-3.999 -6.92,-3.999c-1.601,0 -3.084,0.48 -4.334,1.29c-1.231,-5.316 -5.974,-9.29 -11.665,-9.29c-6.626,0 -11.998,5.372 -11.998,11.999l0,0c0,6.626 5.372,11.999 11.998,11.999c2.599,0 8.153,0 12.2,0h9.798c1.104,0 1.999,-0.896 1.999,-2c0,-1.105 -0.895,-2 -1.999,-2s-2,-0.896 -2,-2s0.896,-2 2,-2c0.138,0 0.272,0.014 0.402,0.041c3.122,0.211 5.597,2.783 5.597,5.959c0,3.059 -2.291,5.577 -5.249,5.947v0.052h-0.75h-7.985c-4.012,0 -11.358,0 -14.013,0c-1.104,0 -1.999,0.896 -1.999,1.999c0,1.105 0.896,2 1.999,2h21.998h0.75v0.053c2.958,0.369 5.249,2.889 5.249,5.947c0,3.175 -2.475,5.747 -5.597,5.958c-0.13,0.026 -0.265,0.041 -0.402,0.041c-1.104,0 -2,-0.896 -2,-2s0.896,-1.999 2,-1.999s1.999,-0.896 1.999,-2c0,-1.105 -0.895,-2 -1.999,-2H44.001h-0.749v-0.052c-2.959,-0.37 -5.25,-2.89 -5.25,-5.948c0,-1.055 0.294,-2.032 0.773,-2.89c-6.266,-2.168 -10.771,-8.104 -10.771,-15.107c0,-8.835 7.162,-15.998 15.997,-15.998c1.573,0 3.09,0.232 4.524,0.655c2.195,-2.828 5.617,-4.654 9.475,-4.654c6.626,0 11.998,5.371 11.998,11.998C69.998,43.158 69.705,44.602 69.192,45.938zM58,33.644c-2.213,0 -4.215,0.898 -5.663,2.351c2.341,1.435 4.286,3.451 5.63,5.854c0.663,-0.114 1.336,-0.205 2.033,-0.205c2.125,0 4.118,0.559 5.85,1.527l0,0c0.096,-0.494 0.149,-1.005 0.149,-1.527C65.999,37.225 62.417,33.644 58,33.644zM58,25.645c-1.104,0 -2,-0.896 -2,-2v-3.999c0,-1.104 0.896,-2 2,-2s2,0.896 2,2v3.999C60,24.749 59.104,25.645 58,25.645zM43.859,30.33l-2.828,-2.828c-0.781,-0.781 -0.781,-2.047 0,-2.828s2.047,-0.781 2.828,0l2.828,2.828c0.781,0.781 0.781,2.047 0,2.828S44.641,31.111 43.859,30.33zM70.998,67.639c0,-1.104 0.896,-1.999 2,-1.999h2.999c1.104,0 2,-0.896 2,-2s-0.896,-1.999 -2,-1.999s-1.999,-0.896 -1.999,-2c0,-1.105 0.895,-2 1.999,-2c0.139,0 0.273,0.014 0.403,0.041c3.122,0.211 5.597,2.783 5.597,5.958c0,3.059 -2.291,5.577 -5.25,5.948v0.051h-0.75h-2.999C71.894,69.639 70.998,68.744 70.998,67.639z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M50,63.999c-7.732,0 -13.998,-6.268 -13.998,-13.999c0,-7.73 6.266,-13.998 13.998,-13.998c7.73,0 13.998,6.268 13.998,13.998C63.998,57.731 57.73,63.999 50,63.999zM50,40.002c-5.523,0 -10,4.477 -10,9.998c0,5.522 4.477,9.999 10,9.999c5.521,0 9.998,-4.477 9.998,-9.999C59.998,44.479 55.521,40.002 50,40.002zM53.119,52.471c-0.096,0.139 -0.193,0.259 -0.291,0.357c-0.1,0.099 -0.221,0.196 -0.359,0.293c-0.428,0.34 -0.906,0.579 -1.41,0.718c-2.6,1.062 -6.715,1.817 -6.715,1.817s0.754,-4.114 1.816,-6.715c0.139,-0.505 0.379,-0.982 0.719,-1.411c0.096,-0.139 0.193,-0.26 0.293,-0.358c0.098,-0.099 0.219,-0.196 0.357,-0.292c0.43,-0.34 0.906,-0.58 1.412,-0.719c2.6,-1.062 6.715,-1.817 6.715,-1.817s-0.756,4.115 -1.818,6.716C53.699,51.564 53.459,52.041 53.119,52.471zM50.707,49.293c-0.391,-0.391 -1.023,-0.391 -1.414,0s-0.391,1.023 0,1.414s1.023,0.391 1.414,0S51.098,49.684 50.707,49.293z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M50,35.87c-7.732,0 -14,6.268 -14,13.998c0,7.732 6.268,14 14,14c7.73,0 13.998,-6.268 13.998,-14C63.998,42.137 57.73,35.87 50,35.87zM50,59.867c-5.523,0 -10,-4.477 -10,-10c0,-5.521 4.477,-9.998 10,-9.998c5.521,0 9.998,4.477 9.998,9.998C59.998,55.391 55.521,59.867 50,59.867zM50,45.869c-2.209,0 -4,1.79 -4,3.999c0,2.208 1.791,4 4,4c2.207,0 7.998,-4 7.998,-4S52.207,45.869 50,45.869zM50,50.868c-0.553,0 -1,-0.447 -1,-1c0,-0.552 0.447,-1 1,-1c0.551,0 0.998,0.448 0.998,1C50.998,50.42 50.551,50.868 50,50.868z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M50,36.002c-7.731,0 -13.999,6.268 -13.999,13.998c0,7.731 6.268,13.999 13.999,13.999c7.73,0 13.998,-6.268 13.998,-13.999C63.998,42.27 57.73,36.002 50,36.002zM50,59.999c-5.522,0 -9.999,-4.477 -9.999,-9.999c0,-5.521 4.477,-9.998 9.999,-9.998c5.521,0 9.999,4.477 9.999,9.998C59.999,55.522 55.521,59.999 50,59.999zM46,50c0,2.209 1.791,4 4,4s3.999,-1.791 3.999,-4S50,42.001 50,42.001S46,47.791 46,50zM51,50c0,0.553 -0.448,1 -1,1c-0.553,0 -1,-0.447 -1,-1c0,-0.552 0.447,-1 1,-1C50.552,49 51,49.448 51,50z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M50,35.87c-7.73,0 -13.998,6.268 -13.998,13.998c0,7.732 6.268,14 13.998,14c7.731,0 13.998,-6.268 13.998,-14C63.998,42.137 57.731,35.87 50,35.87zM50,59.867c-5.521,0 -9.998,-4.477 -9.998,-10c0,-5.521 4.477,-9.998 9.998,-9.998c5.522,0 9.999,4.477 9.999,9.998C59.999,55.391 55.522,59.867 50,59.867zM50,45.869c-2.208,0 -3.999,1.79 -3.999,3.999c0,2.208 3.999,8 3.999,8s4,-5.791 4,-8C54,47.659 52.209,45.869 50,45.869zM50,50.868c-0.552,0 -1,-0.447 -1,-1c0,-0.552 0.448,-1 1,-1c0.553,0 1,0.448 1,1C51,50.42 50.553,50.868 50,50.868z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M50,35.738c-7.73,0 -13.998,6.268 -13.998,13.998c0,7.731 6.268,13.999 13.998,13.999c7.731,0 13.998,-6.268 13.998,-13.999C63.998,42.005 57.731,35.738 50,35.738zM50,59.734c-5.522,0 -9.999,-4.477 -9.999,-9.999c0,-5.521 4.477,-9.998 9.999,-9.998s9.999,4.477 9.999,9.998C59.999,55.258 55.522,59.734 50,59.734zM50,45.737c-2.209,0 -7.999,3.999 -7.999,3.999s5.79,4 7.999,4s4,-1.791 4,-4C54,47.527 52.209,45.737 50,45.737zM50,50.736c-0.552,0 -1,-0.447 -1,-1c0,-0.552 0.448,-1 1,-1c0.553,0 1,0.448 1,1C51,50.289 50.553,50.736 50,50.736z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M58.999,42.001c-2.209,0 -4,1.791 -4,4V54c0,2.209 1.791,3.999 4,3.999s4,-1.79 4,-3.999h3.998c0,4.418 -3.58,7.999 -7.998,7.999s-8,-3.581 -8,-7.999v-7.999c0,-4.418 3.582,-7.999 8,-7.999s7.998,3.581 7.998,7.999h-3.998C62.999,43.792 61.208,42.001 58.999,42.001zM40,52c-3.865,0 -6.998,-3.134 -6.998,-6.999s3.133,-6.999 6.998,-6.999c3.866,0 7,3.134 7,6.999S43.867,52 40,52zM40,42.001c-1.656,0 -2.999,1.344 -2.999,3s1.343,3 2.999,3c1.657,0 3,-1.344 3,-3S41.658,42.001 40,42.001z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M62.998,46.001c0,-2.209 -1.791,-4 -4,-4s-4,1.791 -4,4V50h8v4h-8v7.999H51V54v-4v-3.999c0,-4.418 3.581,-7.999 7.999,-7.999s8,3.581 8,7.999H62.998zM40,52c-3.865,0 -6.998,-3.134 -6.998,-6.999s3.133,-6.999 6.998,-6.999s7,3.134 7,6.999S43.866,52 40,52zM40,42.001c-1.656,0 -2.999,1.344 -2.999,3s1.343,3 2.999,3c1.657,0 3,-1.344 3,-3S41.658,42.001 40,42.001z"/>
</vector>

View File

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="utf-8"?>
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:height="108dp"
android:width="108dp"
android:viewportHeight="108"
android:viewportWidth="108">
<path android:fillColor="#008577"
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,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M50,61.998c-6.627,0 -11.999,-5.372 -11.999,-11.998c0,-6.627 5.372,-11.999 11.999,-11.999c0.755,0 1.491,0.078 2.207,0.212c-0.132,0.576 -0.208,1.173 -0.208,1.788c0,4.418 3.582,7.999 8,7.999c0.615,0 1.212,-0.076 1.788,-0.208c0.133,0.717 0.211,1.452 0.211,2.208C61.998,56.626 56.626,61.998 50,61.998zM48.212,42.208c-3.556,0.813 -6.211,3.989 -6.211,7.792c0,4.417 3.581,7.999 7.999,7.999c3.802,0 6.978,-2.655 7.791,-6.211C52.937,50.884 49.115,47.062 48.212,42.208z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M50,61.998c-6.627,0 -11.998,-5.372 -11.998,-11.998c0,-6.627 5.371,-11.999 11.998,-11.999S61.999,43.373 61.999,50C61.999,56.626 56.627,61.998 50,61.998zM50,57.999c4.418,0 7.999,-3.582 7.999,-7.999c0,-4.418 -3.581,-7.999 -7.999,-7.999V57.999z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M50,61.998c-6.627,0 -12,-5.372 -12,-11.999c0,-6.626 5.373,-11.998 12,-11.998s11.998,5.372 11.998,11.998C61.998,56.626 56.627,61.998 50,61.998zM50,42.001c-4.418,0 -8,3.581 -8,7.998c0,4.418 3.582,7.999 8,7.999s7.998,-3.581 7.998,-7.999C57.998,45.582 54.418,42.001 50,42.001z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M50,61.998c6.625,0 11.998,-5.371 11.998,-11.999c0,-6.626 -5.373,-11.998 -11.998,-11.998c-6.627,0 -12,5.372 -12,11.998C38,56.627 43.373,61.998 50,61.998zM50,57.998c-4.418,0 -8,-3.58 -8,-7.999c0,-4.417 3.582,-7.998 8,-7.998V57.998z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M50,61.998c-6.627,0 -11.999,-5.372 -11.999,-11.998c0,-6.627 5.372,-11.999 11.999,-11.999c6.626,0 11.998,5.372 11.998,11.999C61.998,56.626 56.626,61.998 50,61.998z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M50,61.998c-6.626,0 -11.999,-5.371 -11.999,-11.998S43.374,38.001 50,38.001c6.627,0 11.999,5.372 11.999,11.999S56.627,61.998 50,61.998zM52,42.264c-0.641,-0.166 -1.308,-0.262 -2,-0.262c-4.417,0 -7.999,3.58 -7.999,7.998s3.582,7.998 7.999,7.998c0.692,0 1.359,-0.096 2,-0.262c-3.448,-0.889 -5.999,-4.01 -5.999,-7.736S48.552,43.152 52,42.264z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M50,61.998c6.625,0 11.998,-5.371 11.998,-11.998S56.625,38.001 50,38.001c-6.627,0 -12,5.372 -12,11.999S43.373,61.998 50,61.998zM50,42.002c2.209,0 3.998,3.58 3.998,7.998S52.209,57.998 50,57.998c-4.418,0 -8,-3.58 -8,-7.998S45.582,42.002 50,42.002z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M50,61.999c6.627,0 11.999,-5.373 11.999,-11.998c0,-6.627 -5.372,-12 -11.999,-12c-6.626,0 -11.998,5.373 -11.998,12C38.002,56.626 43.374,61.999 50,61.999zM48.001,42.263c0.64,-0.164 1.308,-0.262 1.999,-0.262c4.418,0 7.999,3.582 7.999,8c0,4.416 -3.581,7.998 -7.999,7.998c-0.691,0 -1.359,-0.098 -1.999,-0.262C51.449,56.849 54,53.726 54,50.001C54,46.274 51.449,43.153 48.001,42.263z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M50,61.998c-6.627,0 -11.998,-5.372 -11.998,-11.999c0,-6.626 5.371,-11.998 11.998,-11.998s11.998,5.372 11.998,11.998C61.998,56.626 56.627,61.998 50,61.998zM50,42.001c-2.209,0 -4,3.581 -4,7.998c0,4.418 1.791,7.999 4,7.999c4.418,0 7.999,-3.581 7.999,-7.999C57.999,45.582 54.418,42.001 50,42.001z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M62.998,50h-1v2c0,1.656 -1.343,2.999 -3,2.999h-3.999C53.342,54.999 52,53.656 52,52l-0.99,-3.959C50.664,48.017 50.314,48 49.969,48c-0.332,0 -0.66,0.019 -0.98,0.047L48,52c0,1.656 -1.343,2.999 -3,2.999h-3.999c-1.657,0 -3,-1.343 -3,-2.999v-2h-0.999c-0.553,0 -1,-0.447 -1,-1v-1c0,-0.552 0.447,-0.999 1,-0.999h1.184c0.412,-1.163 1.512,-2 2.815,-2H46c0.945,0 1.778,0.445 2.328,1.129c0.525,-0.076 1.076,-0.129 1.641,-0.129c0.575,0 1.154,0.046 1.72,0.108c0.55,-0.671 1.375,-1.108 2.311,-1.108h4.999c1.305,0 2.403,0.837 2.816,2h1.184c0.553,0 1,0.447 1,0.999v1C63.998,49.553 63.551,50 62.998,50zM44.34,46.66c-0.292,-0.293 -0.768,-0.293 -1.061,0l-3.181,3.182c-0.293,0.293 -0.293,0.768 0,1.061c0.292,0.293 0.768,0.293 1.06,0l3.182,-3.182C44.633,47.428 44.633,46.953 44.34,46.66zM58.339,46.66c-0.293,-0.293 -0.768,-0.293 -1.061,0l-3.182,3.182c-0.293,0.293 -0.293,0.768 0,1.061s0.768,0.293 1.061,0l3.182,-3.182C58.632,47.428 58.632,46.953 58.339,46.66z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M59.659,46.733l-1.958,1.13c0.188,0.682 0.298,1.396 0.298,2.137c0,0.742 -0.109,1.456 -0.298,2.138l1.958,1.13c0.956,0.553 1.284,1.775 0.731,2.732c-0.552,0.956 -1.774,1.284 -2.731,0.731l-1.954,-1.128c-1.003,1.02 -2.277,1.766 -3.705,2.134v2.262c0,1.104 -0.896,2 -2,2s-2,-0.896 -2,-2v-2.262c-1.428,-0.368 -2.703,-1.114 -3.705,-2.134l-1.954,1.128c-0.957,0.553 -2.18,0.225 -2.731,-0.731c-0.553,-0.957 -0.225,-2.18 0.731,-2.732l1.958,-1.13c-0.189,-0.682 -0.298,-1.396 -0.298,-2.138c0,-0.741 0.108,-1.455 0.298,-2.137l-1.958,-1.13c-0.956,-0.553 -1.284,-1.775 -0.731,-2.732c0.552,-0.956 1.774,-1.284 2.731,-0.731l1.954,1.128c1.002,-1.02 2.277,-1.766 3.705,-2.134v-2.262c0,-1.104 0.896,-2 2,-2s2,0.896 2,2v2.262c1.428,0.368 2.702,1.114 3.705,2.134l1.954,-1.128c0.957,-0.553 2.18,-0.225 2.731,0.731C60.943,44.958 60.615,46.181 59.659,46.733zM50,46.001c-2.209,0 -4,1.791 -4,3.999c0,2.209 1.791,4 4,4s3.999,-1.791 3.999,-4C53.999,47.792 52.209,46.001 50,46.001z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M71.997,51.999h-3.998c-1.105,0 -2,-0.895 -2,-1.999s0.895,-2 2,-2h3.998c1.105,0 2,0.896 2,2S73.103,51.999 71.997,51.999zM64.142,38.688c-0.781,0.781 -2.049,0.781 -2.828,0c-0.781,-0.781 -0.781,-2.047 0,-2.828l2.828,-2.828c0.779,-0.781 2.047,-0.781 2.828,0c0.779,0.781 0.779,2.047 0,2.828L64.142,38.688zM50.001,61.998c-6.627,0 -12,-5.372 -12,-11.998c0,-6.627 5.372,-11.999 12,-11.999c6.627,0 11.998,5.372 11.998,11.999C61.999,56.626 56.628,61.998 50.001,61.998zM50.001,42.001c-4.418,0 -8,3.581 -8,7.999c0,4.417 3.583,7.999 8,7.999s7.998,-3.582 7.998,-7.999C57.999,45.582 54.419,42.001 50.001,42.001zM50.001,34.002c-1.105,0 -2,-0.896 -2,-2v-3.999c0,-1.104 0.895,-2 2,-2c1.104,0 2,0.896 2,2v3.999C52.001,33.106 51.104,34.002 50.001,34.002zM35.86,38.688l-2.828,-2.828c-0.781,-0.781 -0.781,-2.047 0,-2.828s2.047,-0.781 2.828,0l2.828,2.828c0.781,0.781 0.781,2.047 0,2.828S36.641,39.469 35.86,38.688zM34.002,50c0,1.104 -0.896,1.999 -2,1.999h-4c-1.104,0 -1.999,-0.895 -1.999,-1.999s0.896,-2 1.999,-2h4C33.107,48 34.002,48.896 34.002,50zM35.86,61.312c0.781,-0.78 2.047,-0.78 2.828,0c0.781,0.781 0.781,2.048 0,2.828l-2.828,2.828c-0.781,0.781 -2.047,0.781 -2.828,0c-0.781,-0.78 -0.781,-2.047 0,-2.828L35.86,61.312zM50.001,65.998c1.104,0 2,0.895 2,1.999v4c0,1.104 -0.896,2 -2,2c-1.105,0 -2,-0.896 -2,-2v-4C48.001,66.893 48.896,65.998 50.001,65.998zM64.142,61.312l2.828,2.828c0.779,0.781 0.779,2.048 0,2.828c-0.781,0.781 -2.049,0.781 -2.828,0l-2.828,-2.828c-0.781,-0.78 -0.781,-2.047 0,-2.828C62.093,60.531 63.36,60.531 64.142,61.312z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M71.997,58h-3.999c-1.104,0 -2,-0.896 -2,-2c0,-1.105 0.896,-2 2,-2h3.999c1.105,0 2,0.895 2,2C73.997,57.104 73.103,58 71.997,58zM64.141,44.687c-0.781,0.781 -2.048,0.781 -2.828,0s-0.78,-2.047 0,-2.828l2.828,-2.828c0.78,-0.78 2.047,-0.78 2.828,0c0.78,0.781 0.78,2.047 0,2.828L64.141,44.687zM61.302,59.998h-4.381c0.682,-1.176 1.078,-2.539 1.078,-3.998c0,-4.418 -3.581,-8 -7.999,-8c-4.417,0 -7.999,3.582 -7.999,8c0,1.459 0.396,2.822 1.079,3.998h-4.381c-0.444,-1.252 -0.698,-2.594 -0.698,-3.998c0,-6.627 5.373,-11.999 11.999,-11.999c6.627,0 11.999,5.371 11.999,11.999C61.999,57.404 61.745,58.746 61.302,59.998zM50,40.001c-1.104,0 -1.999,-0.896 -1.999,-2v-3.999c0,-1.104 0.895,-2 1.999,-2s2,0.896 2,2v3.999C52,39.106 51.104,40.001 50,40.001zM35.86,44.687l-2.828,-2.828c-0.781,-0.781 -0.781,-2.047 0,-2.828c0.78,-0.78 2.047,-0.78 2.828,0l2.828,2.828c0.78,0.781 0.78,2.047 0,2.828C37.907,45.468 36.641,45.468 35.86,44.687zM34.002,56c0,1.104 -0.896,2 -1.999,2h-4c-1.104,0 -2,-0.896 -2,-2c0,-1.105 0.896,-2 2,-2h4C33.106,54 34.002,54.895 34.002,56zM40.001,63.998h19.998c1.104,0 2,0.896 2,2c0,1.105 -0.896,2 -2,2H40.001c-1.104,0 -2,-0.895 -2,-2C38.001,64.895 38.897,63.998 40.001,63.998z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M64.141,44.556c-0.781,0.78 -2.049,0.78 -2.828,0c-0.781,-0.781 -0.781,-2.048 0,-2.828l2.828,-2.828c0.779,-0.781 2.047,-0.781 2.828,0c0.779,0.78 0.779,2.047 0,2.828L64.141,44.556zM56.92,51.869c-1.385,-2.389 -3.961,-4 -6.92,-4s-5.537,1.611 -6.92,4h-4.381c1.648,-4.658 6.078,-8 11.301,-8c5.221,0 9.652,3.342 11.301,8H56.92zM50,39.871c-1.105,0 -2,-0.896 -2,-2v-4c0,-1.104 0.895,-1.999 2,-1.999c1.104,0 2,0.895 2,1.999v4C52,38.975 51.104,39.871 50,39.871zM35.859,44.556l-2.828,-2.828c-0.781,-0.781 -0.781,-2.048 0,-2.828c0.781,-0.781 2.047,-0.781 2.828,0l2.828,2.828c0.781,0.78 0.781,2.047 0,2.828C37.906,45.336 36.641,45.336 35.859,44.556zM40,55.867h19.998c1.105,0 2,0.896 2,2c0,1.105 -0.895,2 -2,2H40c-1.104,0 -2,-0.895 -2,-2C38,56.764 38.896,55.867 40,55.867z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M38.688,41.859l-2.828,-2.828c-0.781,-0.78 -2.047,-0.78 -2.828,0c-0.781,0.781 -0.781,2.047 0,2.828l2.828,2.828c0.781,0.781 2.047,0.781 2.828,0C39.469,43.906 39.469,42.641 38.688,41.859zM71.997,54h-3.999c-1.104,0 -1.999,0.896 -1.999,2s0.895,2 1.999,2h3.999c1.105,0 2,-0.896 2,-2S73.103,54 71.997,54zM32.003,54h-4c-1.104,0 -2,0.896 -2,2s0.896,2 2,2h4c1.104,0 2,-0.896 2,-2S33.106,54 32.003,54zM59.999,63.999H40.001c-1.104,0 -1.999,0.896 -1.999,2s0.896,1.999 1.999,1.999h19.998c1.104,0 2,-0.895 2,-1.999S61.104,63.999 59.999,63.999zM66.969,39.031c-0.78,-0.78 -2.048,-0.78 -2.828,0l-2.828,2.828c-0.78,0.781 -0.78,2.047 0,2.828c0.781,0.781 2.048,0.781 2.828,0l2.828,-2.828C67.749,41.078 67.749,39.812 66.969,39.031zM50.001,40.002c1.104,0 1.999,-0.896 1.999,-2v-3.999c0,-1.104 -0.896,-2 -1.999,-2c-1.105,0 -2,0.896 -2,2v3.999C48.001,39.106 48.896,40.002 50.001,40.002zM50.001,44.002c-6.627,0 -11.999,5.371 -11.999,11.998c0,1.404 0.254,2.747 0.697,3.999h4.381c-0.683,-1.177 -1.079,-2.54 -1.079,-3.999c0,-4.418 3.582,-7.999 8,-7.999c4.417,0 7.998,3.581 7.998,7.999c0,1.459 -0.396,2.822 -1.078,3.999h4.381c0.443,-1.252 0.697,-2.595 0.697,-3.999C61.999,49.373 56.627,44.002 50.001,44.002zM50.001,60.249c0.552,0 0.999,-0.447 0.999,-1v-3.827l2.536,2.535c0.39,0.391 1.023,0.391 1.414,0c0.39,-0.391 0.39,-1.023 0,-1.414l-4.242,-4.242c-0.391,-0.391 -1.024,-0.391 -1.414,0l-4.242,4.242c-0.391,0.391 -0.391,1.023 0,1.414s1.023,0.391 1.414,0l2.535,-2.535v3.827C49.001,59.802 49.448,60.249 50.001,60.249z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M71.998,58h-4c-1.104,0 -1.999,-0.896 -1.999,-2s0.895,-2 1.999,-2h4c1.104,0 1.999,0.896 1.999,2S73.103,58 71.998,58zM64.142,44.688c-0.781,0.781 -2.048,0.781 -2.828,0c-0.781,-0.781 -0.781,-2.047 0,-2.828l2.828,-2.828c0.78,-0.78 2.047,-0.78 2.827,0c0.781,0.781 0.781,2.047 0,2.828L64.142,44.688zM61.302,59.999h-4.381c0.682,-1.177 1.078,-2.54 1.078,-3.999c0,-4.418 -3.581,-7.999 -7.998,-7.999c-4.418,0 -8,3.581 -8,7.999c0,1.459 0.397,2.822 1.08,3.999h-4.382c-0.443,-1.252 -0.697,-2.595 -0.697,-3.999c0,-6.627 5.372,-11.998 11.999,-11.998c6.626,0 11.998,5.371 11.998,11.998C61.999,57.404 61.745,58.747 61.302,59.999zM50.001,40.002c-1.105,0 -2,-0.896 -2,-2v-3.999c0,-1.104 0.895,-2 2,-2c1.104,0 2,0.896 2,2v3.999C52.001,39.106 51.104,40.002 50.001,40.002zM35.86,44.688l-2.828,-2.828c-0.781,-0.781 -0.781,-2.047 0,-2.828c0.781,-0.78 2.047,-0.78 2.828,0l2.828,2.828c0.781,0.781 0.781,2.047 0,2.828S36.642,45.469 35.86,44.688zM34.003,56c0,1.104 -0.896,2 -2,2h-4c-1.104,0 -2,-0.896 -2,-2s0.896,-2 2,-2h4C33.107,54 34.003,54.896 34.003,56zM50.001,52c0.552,0 1,0.448 1,1v3.828l2.535,-2.535c0.391,-0.391 1.023,-0.391 1.414,0s0.391,1.023 0,1.414l-4.242,4.242c-0.391,0.391 -1.023,0.391 -1.414,0l-4.242,-4.242c-0.391,-0.391 -0.391,-1.023 0,-1.414s1.023,-0.391 1.414,0l2.535,2.535V53C49.001,52.448 49.448,52 50.001,52zM40.002,63.999h19.997c1.104,0 2,0.896 2,2s-0.896,1.999 -2,1.999H40.002c-1.104,0 -2,-0.895 -2,-1.999S38.897,63.999 40.002,63.999z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M50,67.997c-4.418,0 -7.999,-3.581 -7.999,-7.999c0,-2.025 0.759,-3.869 1.999,-5.278V38.001c0,-3.313 2.687,-5.999 6,-5.999c3.312,0 5.999,2.686 5.999,5.999V54.72c1.24,1.409 2,3.253 2,5.278C57.999,64.416 54.417,67.997 50,67.997zM51.999,56.553v-4.292V42v-3.999c0,-1.104 -0.896,-2 -1.999,-2c-1.104,0 -2,0.896 -2,2V42v10.261v4.292c-1.19,0.693 -2,1.969 -2,3.445c0,2.209 1.791,3.999 4,3.999c2.208,0 3.999,-1.79 3.999,-3.999C53.999,58.521 53.189,57.246 51.999,56.553z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M50,67.867c-4.418,0 -8,-3.582 -8,-8c0,-2.025 0.76,-3.869 2,-5.279V37.871c0,-3.313 2.686,-6 6,-6c3.312,0 6,2.687 6,6v16.717c1.24,1.41 1.998,3.254 1.998,5.279C57.998,64.285 54.418,67.867 50,67.867zM52,56.422v-4.291V41.87v-3.999c0,-1.104 -0.896,-2 -2,-2c-1.105,0 -2,0.896 -2,2v3.999v10.261v4.291c-1.189,0.693 -2,1.969 -2,3.445c0,2.209 1.791,4 4,4s4,-1.791 4,-4C54,58.391 53.189,57.115 52,56.422zM50,62.867c-1.656,0 -3,-1.344 -3,-3c0,-1.305 0.838,-2.402 2,-2.816V41.807v-3.937c0,-0.553 0.447,-1 1,-1s1,0.447 1,1v3.937v15.244c1.162,0.414 2,1.512 2,2.816C53,61.523 51.656,62.867 50,62.867z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M50,67.865c-4.418,0 -7.998,-3.58 -7.998,-7.998c0,-2.025 0.758,-3.869 2,-5.279V37.87c0,-3.313 2.686,-5.999 5.998,-5.999c3.314,0 6,2.686 6,5.999v16.718c1.24,1.41 2,3.254 2,5.279C58,64.285 54.418,67.865 50,67.865zM52,56.422v-4.293v-10.26V37.87c0,-1.104 -0.895,-2 -2,-2c-1.104,0 -2,0.896 -2,2v3.999v10.26v4.293c-1.189,0.693 -1.998,1.969 -1.998,3.445c0,2.209 1.789,3.998 3.998,3.998s4,-1.789 4,-3.998C54,58.391 53.191,57.115 52,56.422zM50,62.867c-1.656,0 -2.998,-1.344 -2.998,-3c0,-1.305 0.836,-2.402 1.998,-2.816v-5.184h2v5.184c1.162,0.414 2,1.512 2,2.816C53,61.523 51.656,62.867 50,62.867z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M50,67.867c-4.418,0 -8,-3.582 -8,-8c0,-2.025 0.76,-3.869 2,-5.279V37.871c0,-3.313 2.686,-6 6,-6c3.312,0 5.998,2.687 5.998,6v16.717c1.242,1.41 2,3.254 2,5.279C57.998,64.285 54.418,67.867 50,67.867zM52,56.422v-4.291V41.87v-3.999c0,-1.104 -0.896,-2 -2,-2c-1.105,0 -2,0.896 -2,2v3.999v10.261v4.291c-1.191,0.693 -2,1.969 -2,3.445c0,2.209 1.791,4 4,4s4,-1.791 4,-4C54,58.391 53.189,57.115 52,56.422zM50,62.867c-1.656,0 -3,-1.344 -3,-3c0,-1.305 0.838,-2.402 2,-2.816V46.806h2v10.245c1.162,0.414 2,1.512 2,2.816C53,61.523 51.656,62.867 50,62.867z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M50,67.867c-4.418,0 -8,-3.582 -8,-8c0,-2.025 0.76,-3.869 2,-5.279V37.871c0,-3.313 2.687,-6 6,-6c3.312,0 5.999,2.687 5.999,6v16.717c1.241,1.41 1.999,3.254 1.999,5.279C57.998,64.285 54.418,67.867 50,67.867zM52,56.422v-4.291V41.869v-3.999c0,-1.104 -0.896,-2 -2,-2c-1.104,0 -2,0.896 -2,2v3.999v10.262v4.291c-1.19,0.693 -2,1.969 -2,3.445c0,2.209 1.791,4 4,4s3.999,-1.791 3.999,-4C53.999,58.391 53.189,57.115 52,56.422zM50,62.867c-1.656,0 -3,-1.344 -3,-3c0,-1.305 0.838,-2.402 2,-2.816V41.807h2v15.244c1.162,0.414 2,1.512 2,2.816C53,61.523 51.656,62.867 50,62.867z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M50,67.997c-4.417,0 -7.999,-3.581 -7.999,-7.999c0,-2.025 0.759,-3.869 2,-5.278V38.001c0,-3.313 2.687,-5.999 5.999,-5.999c3.313,0 6,2.686 6,5.999V54.72c1.24,1.409 1.999,3.253 1.999,5.278C57.999,64.416 54.418,67.997 50,67.997zM52,56.553v-4.292V42v-3.999c0,-1.104 -0.896,-2 -2,-2s-1.999,0.896 -1.999,2V42v10.261v4.292c-1.19,0.693 -2,1.969 -2,3.445c0,2.209 1.791,3.999 3.999,3.999c2.209,0 4,-1.79 4,-3.999C54,58.521 53.19,57.246 52,56.553zM50,62.998c-1.656,0 -2.999,-1.344 -2.999,-3s1.343,-3 2.999,-3c1.657,0 3,1.344 3,3S51.657,62.998 50,62.998z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M68.866,36.459H30.871c-1.104,0 -2,-0.896 -2,-1.999c0,-1.104 0.896,-2 2,-2h37.995c1.104,0 2,0.896 2,2C70.866,35.563 69.971,36.459 68.866,36.459zM32.871,40.459h29.996c1.104,0 2,0.896 2,2c0,1.104 -0.896,1.999 -2,1.999H32.871c-1.104,0 -2,-0.896 -2,-1.999C30.871,41.354 31.767,40.459 32.871,40.459zM44.869,48.458h21.998c1.104,0 1.999,0.896 1.999,1.999c0,1.104 -0.895,2 -1.999,2H44.869c-1.104,0 -1.999,-0.896 -1.999,-2C42.87,49.354 43.765,48.458 44.869,48.458zM46.869,64.456h5.999c1.104,0 2,0.896 2,1.999c0,1.104 -0.896,2 -2,2h-5.999c-1.104,0 -2,-0.896 -2,-2C44.869,65.352 45.765,64.456 46.869,64.456zM47.869,58.456c0,-1.104 0.896,-1.999 2,-1.999h13.998c1.104,0 2,0.896 2,1.999c0,1.104 -0.896,2 -2,2H49.869C48.765,60.456 47.869,59.561 47.869,58.456z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M66.499,46.501c-3.037,0 -5.5,1.343 -5.5,2.999c0,-1.656 -2.461,-2.999 -5.5,-2.999c-1.863,0 -3.504,0.509 -4.498,1.282v8.716h1v4c0,1.104 0.895,2 2,2c1.104,0 1.998,-0.896 1.998,-2s0.896,-2 2,-2c1.105,0 2,0.896 2,2c0,3.313 -2.686,5.999 -5.998,5.999c-3.314,0 -6,-2.686 -6,-5.999v-4h1v-8.716c-0.994,-0.773 -2.635,-1.282 -4.5,-1.282c-3.037,0 -5.498,1.343 -5.498,2.999l0,0c0,-1.656 -2.463,-2.999 -5.5,-2.999s-5.5,1.343 -5.5,2.999c0,-7.179 9.85,-15.998 21.999,-15.998S71.997,42.321 71.997,49.5C71.997,47.844 69.536,46.501 66.499,46.501z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="100"
android:viewportWidth="100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M65.999,52L65.999,52h-3c-1.105,0 -2,-0.895 -2,-1.999s0.895,-2 2,-2h3c1.104,0 2,-0.896 2,-1.999c0,-1.105 -0.896,-2 -2,-2c-1.105,0 -2,-0.896 -2,-2s0.895,-2 2,-2c0.137,0 0.271,0.014 0.402,0.041c3.121,0.211 5.596,2.783 5.596,5.959C71.997,49.314 69.312,52 65.999,52zM55.999,48.001h-2h-6.998H34.002c-1.104,0 -1.999,0.896 -1.999,2S32.898,52 34.002,52h2h3.999h3h4h3h3.998h2c3.314,0 6,2.687 6,6c0,3.176 -2.475,5.748 -5.596,5.959C56.272,63.986 56.138,64 55.999,64c-1.104,0 -2,-0.896 -2,-2c0,-1.105 0.896,-2 2,-2c1.105,0 2,-0.896 2,-2s-0.895,-2 -2,-2h-2h-3.998h-3h-4h-3h-3.999h-2c-3.313,0 -5.999,-2.686 -5.999,-5.999c0,-3.175 2.475,-5.747 5.596,-5.959c0.131,-0.026 0.266,-0.04 0.403,-0.04l0,0h12.999h6.998h2c1.105,0 2,-0.896 2,-2s-0.895,-2 -2,-2c-1.104,0 -2,-0.895 -2,-2c0,-1.104 0.896,-2 2,-2c0.139,0 0.273,0.015 0.404,0.041c3.121,0.211 5.596,2.783 5.596,5.959C61.999,45.314 59.313,48.001 55.999,48.001z"/>
</vector>

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

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