Compare commits
50 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
63ab4c38d2 | |
|
|
461eee1ed7 | |
|
|
1871b8dd7e | |
|
|
762444e16e | |
|
|
a421c56d0b | |
|
|
66f4e4906b | |
|
|
270066b91f | |
|
|
6b2509ab89 | |
|
|
12349222d9 | |
|
|
1cabd1196a | |
|
|
241a3d8f78 | |
|
|
84618389e6 | |
|
|
00953b3a19 | |
|
|
e2c46a07c1 | |
|
|
7c51bdd435 | |
|
|
26fcda7a49 | |
|
|
84422637d9 | |
|
|
386ed90101 | |
|
|
2da6dc8993 | |
|
|
fe87fac33d | |
|
|
37767c912d | |
|
|
f90d7eff6a | |
|
|
a05ef62f3f | |
|
|
a581260dc3 | |
|
|
f96e9557d5 | |
|
|
292f6ec769 | |
|
|
18f67d6a17 | |
|
|
1708218a8f | |
|
|
fc8ac99ea3 | |
|
|
d2b16244bf | |
|
|
0aec835d8a | |
|
|
f14be3879d | |
|
|
ff18f13786 | |
|
|
9902666c0c | |
|
|
a9a8949cd0 | |
|
|
b2961ca7d8 | |
|
|
424226fe6f | |
|
|
c88324da81 | |
|
|
941b482e82 | |
|
|
86913a973b | |
|
|
047de45e3b | |
|
|
3827209ade | |
|
|
5f02802ad1 | |
|
|
283938d759 | |
|
|
75241cf93e | |
|
|
399374530e | |
|
|
5bdb516275 | |
|
|
898794e1c3 | |
|
|
126f499bd5 | |
|
|
62a2e11969 |
|
|
@ -1,3 +1,6 @@
|
||||||
|
android/app/.cxx
|
||||||
|
android/app/.cxx/Debug
|
||||||
|
|
||||||
# Miscellaneous
|
# Miscellaneous
|
||||||
*.class
|
*.class
|
||||||
*.log
|
*.log
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,30 @@
|
||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "didvan-app",
|
||||||
|
"request": "launch",
|
||||||
|
"type": "dart"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "didvan-app (profile mode)",
|
||||||
|
"request": "launch",
|
||||||
|
"type": "dart",
|
||||||
|
"flutterMode": "profile"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "didvan-app (release mode)",
|
||||||
|
"request": "launch",
|
||||||
|
"type": "dart",
|
||||||
|
"flutterMode": "release"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "didvan-app (web)",
|
||||||
|
"request": "launch",
|
||||||
|
"type": "dart",
|
||||||
|
"args": [
|
||||||
|
"--web-port=8080"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -36,6 +36,8 @@ android {
|
||||||
compileOptions {
|
compileOptions {
|
||||||
sourceCompatibility JavaVersion.VERSION_1_8
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||||||
targetCompatibility JavaVersion.VERSION_1_8
|
targetCompatibility JavaVersion.VERSION_1_8
|
||||||
|
|
||||||
|
coreLibraryDesugaringEnabled true
|
||||||
}
|
}
|
||||||
|
|
||||||
kotlinOptions {
|
kotlinOptions {
|
||||||
|
|
@ -58,10 +60,10 @@ android {
|
||||||
|
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
release {
|
release {
|
||||||
keyAlias keystoreProperties['keyAlias']
|
storeFile file("keystore.jks")
|
||||||
keyPassword keystoreProperties['keyPassword']
|
storePassword "12799721"
|
||||||
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
|
keyAlias "upload"
|
||||||
storePassword keystoreProperties['storePassword']
|
keyPassword "12799721"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
|
@ -69,6 +71,7 @@ android {
|
||||||
signingConfig signingConfigs.release
|
signingConfig signingConfigs.release
|
||||||
minifyEnabled false
|
minifyEnabled false
|
||||||
shrinkResources false
|
shrinkResources false
|
||||||
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -109,4 +112,6 @@ dependencies {
|
||||||
implementation "androidx.room:room-runtime:2.2.5"
|
implementation "androidx.room:room-runtime:2.2.5"
|
||||||
implementation "androidx.sqlite:sqlite-framework:2.1.0"
|
implementation "androidx.sqlite:sqlite-framework:2.1.0"
|
||||||
implementation "androidx.sqlite:sqlite:2.1.0"
|
implementation "androidx.sqlite:sqlite:2.1.0"
|
||||||
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
|
||||||
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -49,8 +49,6 @@
|
||||||
android:resource="@xml/provider_paths" />
|
android:resource="@xml/provider_paths" />
|
||||||
</provider>
|
</provider>
|
||||||
|
|
||||||
<!-- Begin FlutterDownloader customization -->
|
|
||||||
<!-- disable default Initializer -->
|
|
||||||
<provider
|
<provider
|
||||||
android:name="androidx.startup.InitializationProvider"
|
android:name="androidx.startup.InitializationProvider"
|
||||||
android:authorities="${applicationId}.androidx-startup"
|
android:authorities="${applicationId}.androidx-startup"
|
||||||
|
|
@ -62,17 +60,18 @@
|
||||||
tools:node="remove" />
|
tools:node="remove" />
|
||||||
</provider>
|
</provider>
|
||||||
|
|
||||||
<!-- declare customized Initializer -->
|
|
||||||
<provider
|
<provider
|
||||||
android:name="vn.hunghd.flutterdownloader.FlutterDownloaderInitializer"
|
android:name="vn.hunghd.flutterdownloader.FlutterDownloaderInitializer"
|
||||||
android:authorities="${applicationId}.flutter-downloader-init"
|
android:authorities="${applicationId}.flutter-downloader-init"
|
||||||
android:exported="false">
|
android:exported="false">
|
||||||
<!-- changes this number to configure the maximum number of concurrent tasks -->
|
|
||||||
<meta-data
|
<meta-data
|
||||||
android:name="vn.hunghd.flutterdownloader.MAX_CONCURRENT_TASKS"
|
android:name="vn.hunghd.flutterdownloader.MAX_CONCURRENT_TASKS"
|
||||||
android:value="5" />
|
android:value="5" />
|
||||||
</provider>
|
</provider>
|
||||||
<!-- End FlutterDownloader customization -->
|
<activity android:name=".WebActivity" />
|
||||||
|
<activity
|
||||||
|
android:name=".FullscreenWebViewActivity"
|
||||||
|
android:theme="@style/FullscreenWebViewTheme" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".MainActivity"
|
android:name=".MainActivity"
|
||||||
|
|
@ -86,17 +85,6 @@
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
android:windowSoftInputMode="adjustResize">
|
android:windowSoftInputMode="adjustResize">
|
||||||
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="FLUTTER_NOTIFICATION_CLICK" />
|
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
|
||||||
</intent-filter>
|
|
||||||
|
|
||||||
<!--
|
|
||||||
Specifies an Android theme to apply to this Activity as soon as
|
|
||||||
the Android process has started. This theme is visible to the user
|
|
||||||
while the Flutter UI initializes. After that, this theme continues
|
|
||||||
to determine the Window background behind the Flutter UI.
|
|
||||||
-->
|
|
||||||
<meta-data
|
<meta-data
|
||||||
android:name="flutterEmbedding"
|
android:name="flutterEmbedding"
|
||||||
android:value="2" />
|
android:value="2" />
|
||||||
|
|
@ -104,19 +92,23 @@
|
||||||
android:name="io.flutter.embedding.android.NormalTheme"
|
android:name="io.flutter.embedding.android.NormalTheme"
|
||||||
android:resource="@style/NormalTheme" />
|
android:resource="@style/NormalTheme" />
|
||||||
|
|
||||||
<!--
|
|
||||||
Displays an Android View that continues showing the launch screen
|
|
||||||
Drawable until Flutter paints its first frame, then this splash
|
|
||||||
screen fades out. A splash screen is useful to avoid any visual
|
|
||||||
gap between the end of Android's launch screen and the painting of
|
|
||||||
Flutter's first frame.
|
|
||||||
-->
|
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
|
|
||||||
<category android:name="android.intent.category.LAUNCHER" />
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="FLUTTER_NOTIFICATION_CLICK" />
|
||||||
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
|
</intent-filter>
|
||||||
|
|
||||||
|
<intent-filter android:autoVerify="true">
|
||||||
|
<action android:name="android.intent.action.VIEW" />
|
||||||
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
|
<category android:name="android.intent.category.BROWSABLE" />
|
||||||
|
<data android:scheme="https" android:host="test.didvan.com" />
|
||||||
|
</intent-filter>
|
||||||
|
</activity>
|
||||||
|
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
|
|
@ -124,6 +116,9 @@
|
||||||
android:screenOrientation="portrait"
|
android:screenOrientation="portrait"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
|
android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
|
||||||
|
<meta-data
|
||||||
|
android:name="io.flutter.embedding.android.EnableImpeller"
|
||||||
|
android:value="true" />
|
||||||
|
|
||||||
</application>
|
</application>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,104 @@
|
||||||
|
package com.didvan.didvanapp
|
||||||
|
|
||||||
|
import android.Manifest
|
||||||
|
import android.content.pm.PackageManager
|
||||||
|
import android.os.Bundle
|
||||||
|
import android.webkit.PermissionRequest
|
||||||
|
import android.webkit.WebChromeClient
|
||||||
|
import android.webkit.WebSettings
|
||||||
|
import android.webkit.WebView
|
||||||
|
import android.webkit.WebViewClient
|
||||||
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
|
import androidx.core.app.ActivityCompat
|
||||||
|
import androidx.core.content.ContextCompat
|
||||||
|
|
||||||
|
class FullscreenWebViewActivity : AppCompatActivity() {
|
||||||
|
|
||||||
|
private lateinit var webView: WebView
|
||||||
|
|
||||||
|
private val PERMISSION_REQUEST_CODE = 1234
|
||||||
|
private var pendingPermissionRequest: PermissionRequest? = null
|
||||||
|
|
||||||
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
|
super.onCreate(savedInstanceState)
|
||||||
|
|
||||||
|
webView = WebView(this)
|
||||||
|
setContentView(webView)
|
||||||
|
|
||||||
|
val url = intent.getStringExtra("url") ?: "https://www.google.com"
|
||||||
|
|
||||||
|
val settings = webView.settings
|
||||||
|
settings.javaScriptEnabled = true
|
||||||
|
settings.mediaPlaybackRequiresUserGesture = false
|
||||||
|
settings.allowContentAccess = true
|
||||||
|
settings.allowFileAccess = true
|
||||||
|
settings.domStorageEnabled = true
|
||||||
|
settings.databaseEnabled = true
|
||||||
|
settings.cacheMode = WebSettings.LOAD_DEFAULT
|
||||||
|
|
||||||
|
webView.webViewClient = WebViewClient()
|
||||||
|
|
||||||
|
webView.webChromeClient = object : WebChromeClient() {
|
||||||
|
override fun onPermissionRequest(request: PermissionRequest?) {
|
||||||
|
runOnUiThread {
|
||||||
|
if (request == null) {
|
||||||
|
super.onPermissionRequest(request)
|
||||||
|
return@runOnUiThread
|
||||||
|
}
|
||||||
|
val requestedResources = request.resources
|
||||||
|
val permissionsNeeded = mutableListOf<String>()
|
||||||
|
for (resource in requestedResources) {
|
||||||
|
when (resource) {
|
||||||
|
PermissionRequest.RESOURCE_VIDEO_CAPTURE -> {
|
||||||
|
if (ContextCompat.checkSelfPermission(this@FullscreenWebViewActivity, Manifest.permission.CAMERA) != PackageManager.PERMISSION_GRANTED) {
|
||||||
|
permissionsNeeded.add(Manifest.permission.CAMERA)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
PermissionRequest.RESOURCE_AUDIO_CAPTURE -> {
|
||||||
|
if (ContextCompat.checkSelfPermission(this@FullscreenWebViewActivity, Manifest.permission.RECORD_AUDIO) != PackageManager.PERMISSION_GRANTED) {
|
||||||
|
permissionsNeeded.add(Manifest.permission.RECORD_AUDIO)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (permissionsNeeded.isNotEmpty()) {
|
||||||
|
// درخواست پرمیژن runtime
|
||||||
|
pendingPermissionRequest = request
|
||||||
|
ActivityCompat.requestPermissions(this@FullscreenWebViewActivity, permissionsNeeded.toTypedArray(), PERMISSION_REQUEST_CODE)
|
||||||
|
} else {
|
||||||
|
// پرمیژن ها داده شده، قبول کن درخواست رو
|
||||||
|
request.grant(request.resources)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
webView.loadUrl(url)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onRequestPermissionsResult(requestCode: Int, permissions: Array<out String>, grantResults: IntArray) {
|
||||||
|
if (requestCode == PERMISSION_REQUEST_CODE) {
|
||||||
|
var allGranted = true
|
||||||
|
for (result in grantResults) {
|
||||||
|
if (result != PackageManager.PERMISSION_GRANTED) {
|
||||||
|
allGranted = false
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (allGranted) {
|
||||||
|
pendingPermissionRequest?.grant(pendingPermissionRequest?.resources)
|
||||||
|
} else {
|
||||||
|
pendingPermissionRequest?.deny()
|
||||||
|
}
|
||||||
|
pendingPermissionRequest = null
|
||||||
|
} else {
|
||||||
|
super.onRequestPermissionsResult(requestCode, permissions, grantResults)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onDestroy() {
|
||||||
|
super.onDestroy()
|
||||||
|
webView.destroy()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,20 +1,87 @@
|
||||||
package com.didvan.didvanapp
|
package com.didvan.didvanapp
|
||||||
|
|
||||||
import android.app.NotificationChannel
|
import android.content.ContentValues
|
||||||
import android.app.NotificationManager
|
import android.content.Context
|
||||||
|
import android.content.Intent
|
||||||
import android.os.Build
|
import android.os.Build
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.os.PersistableBundle
|
import android.provider.MediaStore
|
||||||
|
import android.util.Log
|
||||||
import androidx.annotation.NonNull
|
import androidx.annotation.NonNull
|
||||||
import io.flutter.embedding.android.FlutterActivity
|
import io.flutter.embedding.android.FlutterActivity
|
||||||
import io.flutter.embedding.engine.FlutterEngine
|
import io.flutter.embedding.engine.FlutterEngine
|
||||||
import io.flutter.plugins.GeneratedPluginRegistrant
|
import io.flutter.plugin.common.MethodChannel
|
||||||
|
import java.io.File
|
||||||
|
import java.io.FileInputStream
|
||||||
|
|
||||||
class MainActivity: FlutterActivity() {
|
class MainActivity: FlutterActivity() {
|
||||||
@Override
|
|
||||||
override fun configureFlutterEngine(flutterEngine: FlutterEngine) {
|
|
||||||
GeneratedPluginRegistrant.registerWith(flutterEngine)
|
|
||||||
|
|
||||||
|
private val CHANNEL = "com.didvan.shareFile"
|
||||||
|
|
||||||
|
@Override
|
||||||
|
override fun configureFlutterEngine(@NonNull flutterEngine: FlutterEngine) {
|
||||||
|
super.configureFlutterEngine(flutterEngine)
|
||||||
|
|
||||||
|
MethodChannel(flutterEngine.dartExecutor.binaryMessenger, CHANNEL).setMethodCallHandler { call, result ->
|
||||||
|
when (call.method) {
|
||||||
|
"copyToDownloads" -> {
|
||||||
|
val filePath = call.argument<String>("filePath") ?: return@setMethodCallHandler
|
||||||
|
val fileName = call.argument<String>("fileName") ?: return@setMethodCallHandler
|
||||||
|
|
||||||
|
val success = copyFileToDownloads(filePath, fileName)
|
||||||
|
if (success) {
|
||||||
|
result.success("File copied successfully")
|
||||||
|
} else {
|
||||||
|
result.error("FILE_COPY_ERROR", "Failed to copy file", null)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
"openWebView" -> {
|
||||||
|
val url = call.argument<String>("url") ?: return@setMethodCallHandler
|
||||||
|
openWebView(url)
|
||||||
|
result.success(null)
|
||||||
|
}
|
||||||
|
else -> result.notImplemented()
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun copyFileToDownloads(filePath: String, fileName: String): Boolean {
|
||||||
|
return try {
|
||||||
|
val context: Context = applicationContext
|
||||||
|
val file = File(filePath)
|
||||||
|
if (!file.exists()) return false
|
||||||
|
|
||||||
|
val resolver = context.contentResolver
|
||||||
|
val contentValues = ContentValues().apply {
|
||||||
|
put(MediaStore.Downloads.DISPLAY_NAME, fileName)
|
||||||
|
put(MediaStore.Downloads.MIME_TYPE, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")
|
||||||
|
put(MediaStore.Downloads.IS_PENDING, 1)
|
||||||
|
}
|
||||||
|
|
||||||
|
val uri = resolver.insert(MediaStore.Downloads.EXTERNAL_CONTENT_URI, contentValues)
|
||||||
|
?: return false
|
||||||
|
|
||||||
|
resolver.openOutputStream(uri).use { outputStream ->
|
||||||
|
FileInputStream(file).use { inputStream ->
|
||||||
|
inputStream.copyTo(outputStream!!)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
contentValues.clear()
|
||||||
|
contentValues.put(MediaStore.Downloads.IS_PENDING, 0)
|
||||||
|
resolver.update(uri, contentValues, null, null)
|
||||||
|
|
||||||
|
true
|
||||||
|
} catch (e: Exception) {
|
||||||
|
Log.e("FileCopy", "Error copying file to downloads", e)
|
||||||
|
false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun openWebView(url: String) {
|
||||||
|
Log.d("MainActivity", "Opening WebView with URL: $url")
|
||||||
|
val intent = Intent(this, FullscreenWebViewActivity::class.java)
|
||||||
|
intent.putExtra("url", url)
|
||||||
|
startActivity(intent)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,9 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
|
|
||||||
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
||||||
<!-- Show a splash screen on the activity. Automatically removed when
|
|
||||||
Flutter draws its first frame -->
|
|
||||||
<item name="android:windowBackground">@drawable/launch_background</item>
|
<item name="android:windowBackground">@drawable/launch_background</item>
|
||||||
</style>
|
</style>
|
||||||
<!-- Theme applied to the Android Window as soon as the process has started.
|
|
||||||
This theme determines the color of the Android Window while your
|
|
||||||
Flutter UI initializes, as well as behind your Flutter UI while its
|
|
||||||
running.
|
|
||||||
|
|
||||||
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
|
||||||
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
||||||
<item name="android:windowBackground">?android:colorBackground</item>
|
<item name="android:windowBackground">?android:colorBackground</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
@ -25,4 +17,9 @@
|
||||||
<item name="android:background">?android:attr/colorBackground</item>
|
<item name="android:background">?android:attr/colorBackground</item>
|
||||||
<item name="android:textColor">?android:attr/textColorPrimary</item>
|
<item name="android:textColor">?android:attr/textColorPrimary</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<!-- ✅ نسخه صحیح -->
|
||||||
|
<style name="FullscreenWebViewTheme" parent="Theme.AppCompat.Light.NoActionBar">
|
||||||
|
<item name="android:windowFullscreen">true</item>
|
||||||
|
</style>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ repositories {
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
|
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
|
||||||
id "com.android.application" version "8.1.0" apply false
|
id "com.android.application" version "8.2.1" apply false
|
||||||
id "org.jetbrains.kotlin.android" version "1.9.0" apply false
|
id "org.jetbrains.kotlin.android" version "1.9.0" apply false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
252
ios/Podfile.lock
|
|
@ -1,9 +1,10 @@
|
||||||
PODS:
|
PODS:
|
||||||
|
- app_links (0.0.2):
|
||||||
|
- Flutter
|
||||||
- audio_session (0.0.1):
|
- audio_session (0.0.1):
|
||||||
- Flutter
|
- Flutter
|
||||||
- awesome_notifications (0.8.1):
|
- device_info_plus (0.0.1):
|
||||||
- Flutter
|
- Flutter
|
||||||
- IosAwnCore (~> 0.8.0)
|
|
||||||
- DKImagePickerController/Core (4.3.9):
|
- DKImagePickerController/Core (4.3.9):
|
||||||
- DKImagePickerController/ImageDataManager
|
- DKImagePickerController/ImageDataManager
|
||||||
- DKImagePickerController/Resource
|
- DKImagePickerController/Resource
|
||||||
|
|
@ -38,97 +39,101 @@ PODS:
|
||||||
- file_picker (0.0.1):
|
- file_picker (0.0.1):
|
||||||
- DKImagePickerController/PhotoGallery
|
- DKImagePickerController/PhotoGallery
|
||||||
- Flutter
|
- Flutter
|
||||||
- Firebase/CoreOnly (10.29.0):
|
- Firebase/CoreOnly (11.10.0):
|
||||||
- FirebaseCore (= 10.29.0)
|
- FirebaseCore (~> 11.10.0)
|
||||||
- Firebase/Messaging (10.29.0):
|
- Firebase/Messaging (11.10.0):
|
||||||
- Firebase/CoreOnly
|
- Firebase/CoreOnly
|
||||||
- FirebaseMessaging (~> 10.29.0)
|
- FirebaseMessaging (~> 11.10.0)
|
||||||
- firebase_core (3.3.0):
|
- firebase_core (3.13.0):
|
||||||
- Firebase/CoreOnly (= 10.29.0)
|
- Firebase/CoreOnly (= 11.10.0)
|
||||||
- Flutter
|
- Flutter
|
||||||
- firebase_messaging (15.0.4):
|
- firebase_messaging (15.2.5):
|
||||||
- Firebase/Messaging (= 10.29.0)
|
- Firebase/Messaging (= 11.10.0)
|
||||||
- firebase_core
|
- firebase_core
|
||||||
- Flutter
|
- Flutter
|
||||||
- FirebaseCore (10.29.0):
|
- FirebaseCore (11.10.0):
|
||||||
- FirebaseCoreInternal (~> 10.0)
|
- FirebaseCoreInternal (~> 11.10.0)
|
||||||
- GoogleUtilities/Environment (~> 7.12)
|
- GoogleUtilities/Environment (~> 8.0)
|
||||||
- GoogleUtilities/Logger (~> 7.12)
|
- GoogleUtilities/Logger (~> 8.0)
|
||||||
- FirebaseCoreInternal (10.29.0):
|
- FirebaseCoreInternal (11.10.0):
|
||||||
- "GoogleUtilities/NSData+zlib (~> 7.8)"
|
- "GoogleUtilities/NSData+zlib (~> 8.0)"
|
||||||
- FirebaseInstallations (10.29.0):
|
- FirebaseInstallations (11.10.0):
|
||||||
- FirebaseCore (~> 10.0)
|
- FirebaseCore (~> 11.10.0)
|
||||||
- GoogleUtilities/Environment (~> 7.8)
|
- GoogleUtilities/Environment (~> 8.0)
|
||||||
- GoogleUtilities/UserDefaults (~> 7.8)
|
- GoogleUtilities/UserDefaults (~> 8.0)
|
||||||
- PromisesObjC (~> 2.1)
|
- PromisesObjC (~> 2.4)
|
||||||
- FirebaseMessaging (10.29.0):
|
- FirebaseMessaging (11.10.0):
|
||||||
- FirebaseCore (~> 10.0)
|
- FirebaseCore (~> 11.10.0)
|
||||||
- FirebaseInstallations (~> 10.0)
|
- FirebaseInstallations (~> 11.0)
|
||||||
- GoogleDataTransport (~> 9.3)
|
- GoogleDataTransport (~> 10.0)
|
||||||
- GoogleUtilities/AppDelegateSwizzler (~> 7.8)
|
- GoogleUtilities/AppDelegateSwizzler (~> 8.0)
|
||||||
- GoogleUtilities/Environment (~> 7.8)
|
- GoogleUtilities/Environment (~> 8.0)
|
||||||
- GoogleUtilities/Reachability (~> 7.8)
|
- GoogleUtilities/Reachability (~> 8.0)
|
||||||
- GoogleUtilities/UserDefaults (~> 7.8)
|
- GoogleUtilities/UserDefaults (~> 8.0)
|
||||||
- nanopb (< 2.30911.0, >= 2.30908.0)
|
- nanopb (~> 3.30910.0)
|
||||||
- Flutter (1.0.0)
|
- Flutter (1.0.0)
|
||||||
- flutter_background_service_ios (0.0.3):
|
- flutter_background_service_ios (0.0.3):
|
||||||
- Flutter
|
- Flutter
|
||||||
- flutter_downloader (0.0.1):
|
- flutter_downloader (0.0.1):
|
||||||
- Flutter
|
- Flutter
|
||||||
|
- flutter_inappwebview_ios (0.0.1):
|
||||||
|
- Flutter
|
||||||
|
- flutter_inappwebview_ios/Core (= 0.0.1)
|
||||||
|
- OrderedSet (~> 6.0.3)
|
||||||
|
- flutter_inappwebview_ios/Core (0.0.1):
|
||||||
|
- Flutter
|
||||||
|
- OrderedSet (~> 6.0.3)
|
||||||
- flutter_local_notifications (0.0.1):
|
- flutter_local_notifications (0.0.1):
|
||||||
- Flutter
|
- Flutter
|
||||||
- flutter_secure_storage (6.0.0):
|
- flutter_secure_storage (6.0.0):
|
||||||
- Flutter
|
- Flutter
|
||||||
- flutter_sound (9.6.0):
|
- flutter_sound (9.28.0):
|
||||||
- Flutter
|
- Flutter
|
||||||
- flutter_sound_core (= 9.6.0)
|
- flutter_sound_core (= 9.28.0)
|
||||||
- flutter_sound_core (9.6.0)
|
- flutter_sound_core (9.28.0)
|
||||||
- flutter_vibrate (0.0.1):
|
- GoogleDataTransport (10.1.0):
|
||||||
- Flutter
|
- nanopb (~> 3.30910.0)
|
||||||
- GoogleDataTransport (9.4.1):
|
- PromisesObjC (~> 2.4)
|
||||||
- GoogleUtilities/Environment (~> 7.7)
|
- GoogleUtilities/AppDelegateSwizzler (8.1.0):
|
||||||
- nanopb (< 2.30911.0, >= 2.30908.0)
|
|
||||||
- PromisesObjC (< 3.0, >= 1.2)
|
|
||||||
- GoogleUtilities/AppDelegateSwizzler (7.13.3):
|
|
||||||
- GoogleUtilities/Environment
|
- GoogleUtilities/Environment
|
||||||
- GoogleUtilities/Logger
|
- GoogleUtilities/Logger
|
||||||
- GoogleUtilities/Network
|
- GoogleUtilities/Network
|
||||||
- GoogleUtilities/Privacy
|
- GoogleUtilities/Privacy
|
||||||
- GoogleUtilities/Environment (7.13.3):
|
- GoogleUtilities/Environment (8.1.0):
|
||||||
- GoogleUtilities/Privacy
|
- GoogleUtilities/Privacy
|
||||||
- PromisesObjC (< 3.0, >= 1.2)
|
- GoogleUtilities/Logger (8.1.0):
|
||||||
- GoogleUtilities/Logger (7.13.3):
|
|
||||||
- GoogleUtilities/Environment
|
- GoogleUtilities/Environment
|
||||||
- GoogleUtilities/Privacy
|
- GoogleUtilities/Privacy
|
||||||
- GoogleUtilities/Network (7.13.3):
|
- GoogleUtilities/Network (8.1.0):
|
||||||
- GoogleUtilities/Logger
|
- GoogleUtilities/Logger
|
||||||
- "GoogleUtilities/NSData+zlib"
|
- "GoogleUtilities/NSData+zlib"
|
||||||
- GoogleUtilities/Privacy
|
- GoogleUtilities/Privacy
|
||||||
- GoogleUtilities/Reachability
|
- GoogleUtilities/Reachability
|
||||||
- "GoogleUtilities/NSData+zlib (7.13.3)":
|
- "GoogleUtilities/NSData+zlib (8.1.0)":
|
||||||
- GoogleUtilities/Privacy
|
- GoogleUtilities/Privacy
|
||||||
- GoogleUtilities/Privacy (7.13.3)
|
- GoogleUtilities/Privacy (8.1.0)
|
||||||
- GoogleUtilities/Reachability (7.13.3):
|
- GoogleUtilities/Reachability (8.1.0):
|
||||||
- GoogleUtilities/Logger
|
- GoogleUtilities/Logger
|
||||||
- GoogleUtilities/Privacy
|
- GoogleUtilities/Privacy
|
||||||
- GoogleUtilities/UserDefaults (7.13.3):
|
- GoogleUtilities/UserDefaults (8.1.0):
|
||||||
- GoogleUtilities/Logger
|
- GoogleUtilities/Logger
|
||||||
- GoogleUtilities/Privacy
|
- GoogleUtilities/Privacy
|
||||||
- home_widget (0.0.1):
|
- home_widget (0.0.1):
|
||||||
- Flutter
|
- Flutter
|
||||||
- image_cropper (0.0.4):
|
- image_cropper (0.0.4):
|
||||||
- Flutter
|
- Flutter
|
||||||
- TOCropViewController (~> 2.6.1)
|
- TOCropViewController (~> 2.7.4)
|
||||||
- image_picker_ios (0.0.1):
|
- image_picker_ios (0.0.1):
|
||||||
- Flutter
|
- Flutter
|
||||||
- IosAwnCore (0.8.0)
|
|
||||||
- just_audio (0.0.1):
|
- just_audio (0.0.1):
|
||||||
- Flutter
|
- Flutter
|
||||||
- nanopb (2.30910.0):
|
- FlutterMacOS
|
||||||
- nanopb/decode (= 2.30910.0)
|
- nanopb (3.30910.0):
|
||||||
- nanopb/encode (= 2.30910.0)
|
- nanopb/decode (= 3.30910.0)
|
||||||
- nanopb/decode (2.30910.0)
|
- nanopb/encode (= 3.30910.0)
|
||||||
- nanopb/encode (2.30910.0)
|
- nanopb/decode (3.30910.0)
|
||||||
|
- nanopb/encode (3.30910.0)
|
||||||
|
- OrderedSet (6.0.3)
|
||||||
- package_info_plus (0.4.5):
|
- package_info_plus (0.4.5):
|
||||||
- Flutter
|
- Flutter
|
||||||
- path_provider_foundation (0.0.1):
|
- path_provider_foundation (0.0.1):
|
||||||
|
|
@ -139,17 +144,23 @@ PODS:
|
||||||
- PromisesObjC (2.4.0)
|
- PromisesObjC (2.4.0)
|
||||||
- record_darwin (1.0.0):
|
- record_darwin (1.0.0):
|
||||||
- Flutter
|
- Flutter
|
||||||
- FlutterMacOS
|
|
||||||
- rive_common (0.0.1):
|
- rive_common (0.0.1):
|
||||||
- Flutter
|
- Flutter
|
||||||
- SDWebImage (5.19.7):
|
- SDWebImage (5.21.2):
|
||||||
- SDWebImage/Core (= 5.19.7)
|
- SDWebImage/Core (= 5.21.2)
|
||||||
- SDWebImage/Core (5.19.7)
|
- SDWebImage/Core (5.21.2)
|
||||||
- sqflite (0.0.3):
|
- Sentry/HybridSDK (8.46.0)
|
||||||
|
- sentry_flutter (8.14.2):
|
||||||
|
- Flutter
|
||||||
|
- FlutterMacOS
|
||||||
|
- Sentry/HybridSDK (= 8.46.0)
|
||||||
|
- sms_autofill (0.0.1):
|
||||||
|
- Flutter
|
||||||
|
- sqflite_darwin (0.0.4):
|
||||||
- Flutter
|
- Flutter
|
||||||
- FlutterMacOS
|
- FlutterMacOS
|
||||||
- SwiftyGif (5.4.5)
|
- SwiftyGif (5.4.5)
|
||||||
- TOCropViewController (2.6.1)
|
- TOCropViewController (2.7.4)
|
||||||
- url_launcher_ios (0.0.1):
|
- url_launcher_ios (0.0.1):
|
||||||
- Flutter
|
- Flutter
|
||||||
- video_player_avfoundation (0.0.1):
|
- video_player_avfoundation (0.0.1):
|
||||||
|
|
@ -159,34 +170,38 @@ PODS:
|
||||||
- Flutter
|
- Flutter
|
||||||
- webview_flutter_wkwebview (0.0.1):
|
- webview_flutter_wkwebview (0.0.1):
|
||||||
- Flutter
|
- Flutter
|
||||||
|
- FlutterMacOS
|
||||||
|
|
||||||
DEPENDENCIES:
|
DEPENDENCIES:
|
||||||
|
- app_links (from `.symlinks/plugins/app_links/ios`)
|
||||||
- audio_session (from `.symlinks/plugins/audio_session/ios`)
|
- audio_session (from `.symlinks/plugins/audio_session/ios`)
|
||||||
- awesome_notifications (from `.symlinks/plugins/awesome_notifications/ios`)
|
- device_info_plus (from `.symlinks/plugins/device_info_plus/ios`)
|
||||||
- file_picker (from `.symlinks/plugins/file_picker/ios`)
|
- file_picker (from `.symlinks/plugins/file_picker/ios`)
|
||||||
- firebase_core (from `.symlinks/plugins/firebase_core/ios`)
|
- firebase_core (from `.symlinks/plugins/firebase_core/ios`)
|
||||||
- firebase_messaging (from `.symlinks/plugins/firebase_messaging/ios`)
|
- firebase_messaging (from `.symlinks/plugins/firebase_messaging/ios`)
|
||||||
- Flutter (from `Flutter`)
|
- Flutter (from `Flutter`)
|
||||||
- flutter_background_service_ios (from `.symlinks/plugins/flutter_background_service_ios/ios`)
|
- flutter_background_service_ios (from `.symlinks/plugins/flutter_background_service_ios/ios`)
|
||||||
- flutter_downloader (from `.symlinks/plugins/flutter_downloader/ios`)
|
- flutter_downloader (from `.symlinks/plugins/flutter_downloader/ios`)
|
||||||
|
- flutter_inappwebview_ios (from `.symlinks/plugins/flutter_inappwebview_ios/ios`)
|
||||||
- flutter_local_notifications (from `.symlinks/plugins/flutter_local_notifications/ios`)
|
- flutter_local_notifications (from `.symlinks/plugins/flutter_local_notifications/ios`)
|
||||||
- flutter_secure_storage (from `.symlinks/plugins/flutter_secure_storage/ios`)
|
- flutter_secure_storage (from `.symlinks/plugins/flutter_secure_storage/ios`)
|
||||||
- flutter_sound (from `.symlinks/plugins/flutter_sound/ios`)
|
- flutter_sound (from `.symlinks/plugins/flutter_sound/ios`)
|
||||||
- flutter_vibrate (from `.symlinks/plugins/flutter_vibrate/ios`)
|
|
||||||
- home_widget (from `.symlinks/plugins/home_widget/ios`)
|
- home_widget (from `.symlinks/plugins/home_widget/ios`)
|
||||||
- image_cropper (from `.symlinks/plugins/image_cropper/ios`)
|
- image_cropper (from `.symlinks/plugins/image_cropper/ios`)
|
||||||
- image_picker_ios (from `.symlinks/plugins/image_picker_ios/ios`)
|
- image_picker_ios (from `.symlinks/plugins/image_picker_ios/ios`)
|
||||||
- just_audio (from `.symlinks/plugins/just_audio/ios`)
|
- just_audio (from `.symlinks/plugins/just_audio/darwin`)
|
||||||
- package_info_plus (from `.symlinks/plugins/package_info_plus/ios`)
|
- package_info_plus (from `.symlinks/plugins/package_info_plus/ios`)
|
||||||
- path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`)
|
- path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`)
|
||||||
- permission_handler_apple (from `.symlinks/plugins/permission_handler_apple/ios`)
|
- permission_handler_apple (from `.symlinks/plugins/permission_handler_apple/ios`)
|
||||||
- record_darwin (from `.symlinks/plugins/record_darwin/ios`)
|
- record_darwin (from `.symlinks/plugins/record_darwin/ios`)
|
||||||
- rive_common (from `.symlinks/plugins/rive_common/ios`)
|
- rive_common (from `.symlinks/plugins/rive_common/ios`)
|
||||||
- sqflite (from `.symlinks/plugins/sqflite/darwin`)
|
- sentry_flutter (from `.symlinks/plugins/sentry_flutter/ios`)
|
||||||
|
- sms_autofill (from `.symlinks/plugins/sms_autofill/ios`)
|
||||||
|
- sqflite_darwin (from `.symlinks/plugins/sqflite_darwin/darwin`)
|
||||||
- url_launcher_ios (from `.symlinks/plugins/url_launcher_ios/ios`)
|
- url_launcher_ios (from `.symlinks/plugins/url_launcher_ios/ios`)
|
||||||
- video_player_avfoundation (from `.symlinks/plugins/video_player_avfoundation/darwin`)
|
- video_player_avfoundation (from `.symlinks/plugins/video_player_avfoundation/darwin`)
|
||||||
- wakelock_plus (from `.symlinks/plugins/wakelock_plus/ios`)
|
- wakelock_plus (from `.symlinks/plugins/wakelock_plus/ios`)
|
||||||
- webview_flutter_wkwebview (from `.symlinks/plugins/webview_flutter_wkwebview/ios`)
|
- webview_flutter_wkwebview (from `.symlinks/plugins/webview_flutter_wkwebview/darwin`)
|
||||||
|
|
||||||
SPEC REPOS:
|
SPEC REPOS:
|
||||||
trunk:
|
trunk:
|
||||||
|
|
@ -200,18 +215,21 @@ SPEC REPOS:
|
||||||
- flutter_sound_core
|
- flutter_sound_core
|
||||||
- GoogleDataTransport
|
- GoogleDataTransport
|
||||||
- GoogleUtilities
|
- GoogleUtilities
|
||||||
- IosAwnCore
|
|
||||||
- nanopb
|
- nanopb
|
||||||
|
- OrderedSet
|
||||||
- PromisesObjC
|
- PromisesObjC
|
||||||
- SDWebImage
|
- SDWebImage
|
||||||
|
- Sentry
|
||||||
- SwiftyGif
|
- SwiftyGif
|
||||||
- TOCropViewController
|
- TOCropViewController
|
||||||
|
|
||||||
EXTERNAL SOURCES:
|
EXTERNAL SOURCES:
|
||||||
|
app_links:
|
||||||
|
:path: ".symlinks/plugins/app_links/ios"
|
||||||
audio_session:
|
audio_session:
|
||||||
:path: ".symlinks/plugins/audio_session/ios"
|
:path: ".symlinks/plugins/audio_session/ios"
|
||||||
awesome_notifications:
|
device_info_plus:
|
||||||
:path: ".symlinks/plugins/awesome_notifications/ios"
|
:path: ".symlinks/plugins/device_info_plus/ios"
|
||||||
file_picker:
|
file_picker:
|
||||||
:path: ".symlinks/plugins/file_picker/ios"
|
:path: ".symlinks/plugins/file_picker/ios"
|
||||||
firebase_core:
|
firebase_core:
|
||||||
|
|
@ -224,14 +242,14 @@ EXTERNAL SOURCES:
|
||||||
:path: ".symlinks/plugins/flutter_background_service_ios/ios"
|
:path: ".symlinks/plugins/flutter_background_service_ios/ios"
|
||||||
flutter_downloader:
|
flutter_downloader:
|
||||||
:path: ".symlinks/plugins/flutter_downloader/ios"
|
:path: ".symlinks/plugins/flutter_downloader/ios"
|
||||||
|
flutter_inappwebview_ios:
|
||||||
|
:path: ".symlinks/plugins/flutter_inappwebview_ios/ios"
|
||||||
flutter_local_notifications:
|
flutter_local_notifications:
|
||||||
:path: ".symlinks/plugins/flutter_local_notifications/ios"
|
:path: ".symlinks/plugins/flutter_local_notifications/ios"
|
||||||
flutter_secure_storage:
|
flutter_secure_storage:
|
||||||
:path: ".symlinks/plugins/flutter_secure_storage/ios"
|
:path: ".symlinks/plugins/flutter_secure_storage/ios"
|
||||||
flutter_sound:
|
flutter_sound:
|
||||||
:path: ".symlinks/plugins/flutter_sound/ios"
|
:path: ".symlinks/plugins/flutter_sound/ios"
|
||||||
flutter_vibrate:
|
|
||||||
:path: ".symlinks/plugins/flutter_vibrate/ios"
|
|
||||||
home_widget:
|
home_widget:
|
||||||
:path: ".symlinks/plugins/home_widget/ios"
|
:path: ".symlinks/plugins/home_widget/ios"
|
||||||
image_cropper:
|
image_cropper:
|
||||||
|
|
@ -239,7 +257,7 @@ EXTERNAL SOURCES:
|
||||||
image_picker_ios:
|
image_picker_ios:
|
||||||
:path: ".symlinks/plugins/image_picker_ios/ios"
|
:path: ".symlinks/plugins/image_picker_ios/ios"
|
||||||
just_audio:
|
just_audio:
|
||||||
:path: ".symlinks/plugins/just_audio/ios"
|
:path: ".symlinks/plugins/just_audio/darwin"
|
||||||
package_info_plus:
|
package_info_plus:
|
||||||
:path: ".symlinks/plugins/package_info_plus/ios"
|
:path: ".symlinks/plugins/package_info_plus/ios"
|
||||||
path_provider_foundation:
|
path_provider_foundation:
|
||||||
|
|
@ -250,8 +268,12 @@ EXTERNAL SOURCES:
|
||||||
:path: ".symlinks/plugins/record_darwin/ios"
|
:path: ".symlinks/plugins/record_darwin/ios"
|
||||||
rive_common:
|
rive_common:
|
||||||
:path: ".symlinks/plugins/rive_common/ios"
|
:path: ".symlinks/plugins/rive_common/ios"
|
||||||
sqflite:
|
sentry_flutter:
|
||||||
:path: ".symlinks/plugins/sqflite/darwin"
|
:path: ".symlinks/plugins/sentry_flutter/ios"
|
||||||
|
sms_autofill:
|
||||||
|
:path: ".symlinks/plugins/sms_autofill/ios"
|
||||||
|
sqflite_darwin:
|
||||||
|
:path: ".symlinks/plugins/sqflite_darwin/darwin"
|
||||||
url_launcher_ios:
|
url_launcher_ios:
|
||||||
:path: ".symlinks/plugins/url_launcher_ios/ios"
|
:path: ".symlinks/plugins/url_launcher_ios/ios"
|
||||||
video_player_avfoundation:
|
video_player_avfoundation:
|
||||||
|
|
@ -259,52 +281,56 @@ EXTERNAL SOURCES:
|
||||||
wakelock_plus:
|
wakelock_plus:
|
||||||
:path: ".symlinks/plugins/wakelock_plus/ios"
|
:path: ".symlinks/plugins/wakelock_plus/ios"
|
||||||
webview_flutter_wkwebview:
|
webview_flutter_wkwebview:
|
||||||
:path: ".symlinks/plugins/webview_flutter_wkwebview/ios"
|
:path: ".symlinks/plugins/webview_flutter_wkwebview/darwin"
|
||||||
|
|
||||||
SPEC CHECKSUMS:
|
SPEC CHECKSUMS:
|
||||||
audio_session: 088d2483ebd1dc43f51d253d4a1c517d9a2e7207
|
app_links: 76b66b60cc809390ca1ad69bfd66b998d2387ac7
|
||||||
awesome_notifications: db394d2e061e4583ba0f738ddea611e3986cc3fb
|
audio_session: 9bb7f6c970f21241b19f5a3658097ae459681ba0
|
||||||
|
device_info_plus: 21fcca2080fbcd348be798aa36c3e5ed849eefbe
|
||||||
DKImagePickerController: 946cec48c7873164274ecc4624d19e3da4c1ef3c
|
DKImagePickerController: 946cec48c7873164274ecc4624d19e3da4c1ef3c
|
||||||
DKPhotoGallery: b3834fecb755ee09a593d7c9e389d8b5d6deed60
|
DKPhotoGallery: b3834fecb755ee09a593d7c9e389d8b5d6deed60
|
||||||
file_picker: 09aa5ec1ab24135ccd7a1621c46c84134bfd6655
|
file_picker: a0560bc09d61de87f12d246fc47d2119e6ef37be
|
||||||
Firebase: cec914dab6fd7b1bd8ab56ea07ce4e03dd251c2d
|
Firebase: 1fe1c0a7d9aaea32efe01fbea5f0ebd8d70e53a2
|
||||||
firebase_core: 57aeb91680e5d5e6df6b888064be7c785f146efb
|
firebase_core: 2d4534e7b489907dcede540c835b48981d890943
|
||||||
firebase_messaging: c862b3d2b973ecc769194dc8de09bd22c77ae757
|
firebase_messaging: 75bc93a4df25faccad67f6662ae872ac9ae69b64
|
||||||
FirebaseCore: 30e9c1cbe3d38f5f5e75f48bfcea87d7c358ec16
|
FirebaseCore: 8344daef5e2661eb004b177488d6f9f0f24251b7
|
||||||
FirebaseCoreInternal: df84dd300b561c27d5571684f389bf60b0a5c934
|
FirebaseCoreInternal: ef4505d2afb1d0ebbc33162cb3795382904b5679
|
||||||
FirebaseInstallations: 913cf60d0400ebd5d6b63a28b290372ab44590dd
|
FirebaseInstallations: 9980995bdd06ec8081dfb6ab364162bdd64245c3
|
||||||
FirebaseMessaging: 7b5d8033e183ab59eb5b852a53201559e976d366
|
FirebaseMessaging: 2b9f56aa4ed286e1f0ce2ee1d413aabb8f9f5cb9
|
||||||
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
|
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
|
||||||
flutter_background_service_ios: e30e0d3ee69e4cee66272d0c78eacd48c2e94aac
|
flutter_background_service_ios: 00d31bdff7b4bfe06d32375df358abe0329cf87e
|
||||||
flutter_downloader: b7301ae057deadd4b1650dc7c05375f10ff12c39
|
flutter_downloader: 78da0da1084e709cbfd3b723c7ea349c71681f09
|
||||||
flutter_local_notifications: 4cde75091f6327eb8517fa068a0a5950212d2086
|
flutter_inappwebview_ios: b89ba3482b96fb25e00c967aae065701b66e9b99
|
||||||
flutter_secure_storage: 23fc622d89d073675f2eaa109381aefbcf5a49be
|
flutter_local_notifications: a5a732f069baa862e728d839dd2ebb904737effb
|
||||||
flutter_sound: dde9a913063b65a27ba8fdc2039036b99b136c79
|
flutter_secure_storage: 1ed9476fba7e7a782b22888f956cce43e2c62f13
|
||||||
flutter_sound_core: 0c6eb9d5268adc70ff159b3d65fd3d98a82d3a27
|
flutter_sound: b9236a5875299aaa4cef1690afd2f01d52a3f890
|
||||||
flutter_vibrate: 9f4c2ab57008965f78969472367c329dd77eb801
|
flutter_sound_core: 427465f72d07ab8c3edbe8ffdde709ddacd3763c
|
||||||
GoogleDataTransport: 6c09b596d841063d76d4288cc2d2f42cc36e1e2a
|
GoogleDataTransport: aae35b7ea0c09004c3797d53c8c41f66f219d6a7
|
||||||
GoogleUtilities: ea963c370a38a8069cc5f7ba4ca849a60b6d7d15
|
GoogleUtilities: 00c88b9a86066ef77f0da2fab05f65d7768ed8e1
|
||||||
home_widget: 0434835a4c9a75704264feff6be17ea40e0f0d57
|
home_widget: f169fc41fd807b4d46ab6615dc44d62adbf9f64f
|
||||||
image_cropper: 60c2789d1f1a78c873235d4319ca0c34a69f2d98
|
image_cropper: c4326ea50132b1e1564499e5d32a84f01fb03537
|
||||||
image_picker_ios: c560581cceedb403a6ff17f2f816d7fea1421fc1
|
image_picker_ios: 7fe1ff8e34c1790d6fff70a32484959f563a928a
|
||||||
IosAwnCore: ed1b2b6d84962a758354dbacd9ce525c72ce28a9
|
just_audio: 4e391f57b79cad2b0674030a00453ca5ce817eed
|
||||||
just_audio: baa7252489dbcf47a4c7cc9ca663e9661c99aafa
|
nanopb: fad817b59e0457d11a5dfbde799381cd727c1275
|
||||||
nanopb: 438bc412db1928dac798aa6fd75726007be04262
|
OrderedSet: e539b66b644ff081c73a262d24ad552a69be3a94
|
||||||
package_info_plus: 58f0028419748fad15bf008b270aaa8e54380b1c
|
package_info_plus: af8e2ca6888548050f16fa2f1938db7b5a5df499
|
||||||
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
|
path_provider_foundation: 080d55be775b7414fd5a5ef3ac137b97b097e564
|
||||||
permission_handler_apple: 9878588469a2b0d0fc1e048d9f43605f92e6cec2
|
permission_handler_apple: 4ed2196e43d0651e8ff7ca3483a069d469701f2d
|
||||||
PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47
|
PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47
|
||||||
record_darwin: df0a677188e5fed18472550298e675f19ddaffbe
|
record_darwin: fb1f375f1d9603714f55b8708a903bbb91ffdb0a
|
||||||
rive_common: c537b4eed761e903a9403d93c347b69bd7a4762f
|
rive_common: 436bbc8ffad130e54693666382cbdaade8dac9e0
|
||||||
SDWebImage: 8a6b7b160b4d710e2a22b6900e25301075c34cb3
|
SDWebImage: 9f177d83116802728e122410fb25ad88f5c7608a
|
||||||
sqflite: 673a0e54cc04b7d6dba8d24fb8095b31c3a99eec
|
Sentry: da60d980b197a46db0b35ea12cb8f39af48d8854
|
||||||
|
sentry_flutter: 27892878729f42701297c628eb90e7c6529f3684
|
||||||
|
sms_autofill: b36b2147535657fea83d7f3898d7831de70bd8e4
|
||||||
|
sqflite_darwin: 20b2a3a3b70e43edae938624ce550a3cbf66a3d0
|
||||||
SwiftyGif: 706c60cf65fa2bc5ee0313beece843c8eb8194d4
|
SwiftyGif: 706c60cf65fa2bc5ee0313beece843c8eb8194d4
|
||||||
TOCropViewController: edfd4f25713d56905ad1e0b9f5be3fbe0f59c863
|
TOCropViewController: 80b8985ad794298fb69d3341de183f33d1853654
|
||||||
url_launcher_ios: 5334b05cef931de560670eeae103fd3e431ac3fe
|
url_launcher_ios: 694010445543906933d732453a59da0a173ae33d
|
||||||
video_player_avfoundation: 7c6c11d8470e1675df7397027218274b6d2360b3
|
video_player_avfoundation: 2cef49524dd1f16c5300b9cd6efd9611ce03639b
|
||||||
wakelock_plus: 78ec7c5b202cab7761af8e2b2b3d0671be6c4ae1
|
wakelock_plus: e29112ab3ef0b318e58cfa5c32326458be66b556
|
||||||
webview_flutter_wkwebview: 2a23822e9039b7b1bc52e5add778e5d89ad488d1
|
webview_flutter_wkwebview: 1821ceac936eba6f7984d89a9f3bcb4dea99ebb2
|
||||||
|
|
||||||
PODFILE CHECKSUM: 76346ded4b0438dd89826a25813fc91ef681eb1f
|
PODFILE CHECKSUM: 76346ded4b0438dd89826a25813fc91ef681eb1f
|
||||||
|
|
||||||
COCOAPODS: 1.15.2
|
COCOAPODS: 1.16.2
|
||||||
|
|
|
||||||
|
|
@ -59,6 +59,7 @@
|
||||||
ignoresPersistentStateOnLaunch = "NO"
|
ignoresPersistentStateOnLaunch = "NO"
|
||||||
debugDocumentVersioning = "YES"
|
debugDocumentVersioning = "YES"
|
||||||
debugServiceExtension = "internal"
|
debugServiceExtension = "internal"
|
||||||
|
enableGPUValidationMode = "1"
|
||||||
allowLocationSimulation = "YES">
|
allowLocationSimulation = "YES">
|
||||||
<BuildableProductRunnable
|
<BuildableProductRunnable
|
||||||
runnableDebuggingMode = "0">
|
runnableDebuggingMode = "0">
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ import Flutter
|
||||||
import Firebase
|
import Firebase
|
||||||
import FirebaseCore
|
import FirebaseCore
|
||||||
|
|
||||||
@UIApplicationMain
|
@main
|
||||||
@objc class AppDelegate: FlutterAppDelegate, MessagingDelegate {
|
@objc class AppDelegate: FlutterAppDelegate, MessagingDelegate {
|
||||||
override func application(
|
override func application(
|
||||||
_ application: UIApplication,
|
_ application: UIApplication,
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="31" height="31" viewBox="0 0 31 31" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M10.8428 6.37788L19.772 15.3071L10.8428 24.2363" stroke="white" stroke-width="2.29609" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 248 B |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.0642 13.9452H3.5105V10.8312H16.0642L11.2495 5.70413L13.3173 3.5022L21.6619 12.3882L13.3173 21.2742L11.2495 19.0722L16.0642 13.9452Z" fill="#666666"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 306 B |
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
|
@ -0,0 +1,5 @@
|
||||||
|
<svg width="75" height="75" viewBox="0 0 75 75" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="75" height="75" rx="37.5" fill="#E6F2F6"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M47.912 17.2123C45.786 16.3743 43.732 16.9423 42.278 18.2363C40.858 19.4963 40 21.4403 40 23.5003V31.5003C40 33.4343 41.568 35.0003 43.5 35.0003H51.5C53.56 35.0003 55.504 34.1403 56.766 32.7223C58.058 31.2683 58.626 29.2143 57.786 27.0883C56.9032 24.8543 55.5714 22.8252 53.873 21.1265C52.1746 19.4277 50.1458 18.0955 47.912 17.2123ZM43 31.5003V23.5003C43 22.2463 43.53 21.1363 44.272 20.4763C44.978 19.8483 45.854 19.6263 46.812 20.0043C48.6632 20.7365 50.3445 21.8405 51.7521 23.2481C53.1598 24.6558 54.2638 26.3371 54.996 28.1883C55.374 29.1463 55.152 30.0223 54.524 30.7283C53.864 31.4703 52.754 32.0003 51.5 32.0003H43.5C43.3674 32.0003 43.2402 31.9476 43.1464 31.8538C43.0527 31.76 43 31.6329 43 31.5003Z" fill="#007EA7"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M35.4901 19.2401C34.2701 18.4481 33.0901 18.2201 31.7901 18.4481C30.6901 18.6401 29.5101 19.1681 28.2561 19.7301L28.1221 19.7901C25.0903 21.148 22.4339 23.2223 20.3816 25.8345C18.3293 28.4466 16.9425 31.5184 16.3407 34.7854C15.7389 38.0524 15.94 41.4167 16.9267 44.5887C17.9135 47.7608 19.6563 50.6455 22.0052 52.9946C24.3541 55.3436 27.2387 57.0867 30.4107 58.0737C33.5826 59.0607 36.9469 59.262 40.214 58.6604C43.481 58.0588 46.5529 56.6723 49.1652 54.6202C51.7775 52.5681 53.852 49.9118 55.2101 46.8801L55.2701 46.7441C55.8321 45.4901 56.3601 44.3101 56.5521 43.2081C56.7781 41.9121 56.5521 40.7301 55.7601 39.5081C54.9081 38.1941 53.7401 37.5501 52.3121 37.2581C51.0441 36.9981 49.4601 36.9981 47.6441 37.0001H44.5001C42.5721 37.0001 41.2761 36.9961 40.3101 36.8681C39.3881 36.7421 38.9921 36.5281 38.7321 36.2681C38.4721 36.0081 38.2581 35.6121 38.1321 34.6881C38.0041 33.7241 38.0001 32.4281 38.0001 30.5001V27.3561C38.0001 25.5401 38.0001 23.9561 37.7401 22.6881C37.4501 21.2601 36.8061 20.0921 35.4901 19.2401ZM29.3481 22.5281C30.7861 21.8841 31.6201 21.5221 32.3081 21.4021C32.8381 21.3101 33.2561 21.3661 33.8601 21.7581C34.3681 22.0881 34.6381 22.4801 34.8021 23.2881C34.9921 24.2221 35.0001 25.4961 35.0001 27.5001V30.6041C35.0001 32.4001 35.0001 33.9001 35.1601 35.0881C35.3281 36.3441 35.7001 37.4781 36.6121 38.3881C37.5221 39.3001 38.6561 39.6721 39.9121 39.8401C41.1001 40.0001 42.6001 40.0001 44.3961 40.0001H47.5001C49.5041 40.0001 50.7781 40.0081 51.7121 40.1981C52.5201 40.3621 52.9121 40.6321 53.2421 41.1401C53.6341 41.7441 53.6901 42.1621 53.5981 42.6941C53.4781 43.3801 53.1161 44.2141 52.4721 45.6541C50.643 49.732 47.3246 52.9566 43.1961 54.6681C38.9479 56.4265 34.1784 56.4425 29.9186 54.7125C25.6588 52.9826 22.2508 49.6457 20.4315 45.4233C18.6122 41.2008 18.5277 36.432 20.1962 32.1478C21.8647 27.8635 25.1523 24.408 29.3481 22.5281Z" fill="#007EA7"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.8 KiB |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg viewBox='0 0 320 320' xmlns='http://www.w3.org/2000/svg'>
|
||||||
|
<path d='m297.06 130.97c7.26-21.79 4.76-45.66-6.85-65.48-17.46-30.4-52.56-46.04-86.84-38.68-15.25-17.18-37.16-26.95-60.13-26.81-35.04-.08-66.13 22.48-76.91 55.82-22.51 4.61-41.94 18.7-53.31 38.67-17.59 30.32-13.58 68.54 9.92 94.54-7.26 21.79-4.76 45.66 6.85 65.48 17.46 30.4 52.56 46.04 86.84 38.68 15.24 17.18 37.16 26.95 60.13 26.8 35.06.09 66.16-22.49 76.94-55.86 22.51-4.61 41.94-18.7 53.31-38.67 17.57-30.32 13.55-68.51-9.94-94.51zm-120.28 168.11c-14.03.02-27.62-4.89-38.39-13.88.49-.26 1.34-.73 1.89-1.07l63.72-36.8c3.26-1.85 5.26-5.32 5.24-9.07v-89.83l26.93 15.55c.29.14.48.42.52.74v74.39c-.04 33.08-26.83 59.9-59.91 59.97zm-128.84-55.03c-7.03-12.14-9.56-26.37-7.15-40.18.47.28 1.3.79 1.89 1.13l63.72 36.8c3.23 1.89 7.23 1.89 10.47 0l77.79-44.92v31.1c.02.32-.13.63-.38.83l-64.41 37.19c-28.69 16.52-65.33 6.7-81.92-21.95zm-16.77-139.09c7-12.16 18.05-21.46 31.21-26.29 0 .55-.03 1.52-.03 2.2v73.61c-.02 3.74 1.98 7.21 5.23 9.06l77.79 44.91-26.93 15.55c-.27.18-.61.21-.91.08l-64.42-37.22c-28.63-16.58-38.45-53.21-21.95-81.89zm221.26 51.49-77.79-44.92 26.93-15.54c.27-.18.61-.21.91-.08l64.42 37.19c28.68 16.57 38.51 53.26 21.94 81.94-7.01 12.14-18.05 21.44-31.2 26.28v-75.81c.03-3.74-1.96-7.2-5.2-9.06zm26.8-40.34c-.47-.29-1.3-.79-1.89-1.13l-63.72-36.8c-3.23-1.89-7.23-1.89-10.47 0l-77.79 44.92v-31.1c-.02-.32.13-.63.38-.83l64.41-37.16c28.69-16.55 65.37-6.7 81.91 22 6.99 12.12 9.52 26.31 7.15 40.1zm-168.51 55.43-26.94-15.55c-.29-.14-.48-.42-.52-.74v-74.39c.02-33.12 26.89-59.96 60.01-59.94 14.01 0 27.57 4.92 38.34 13.88-.49.26-1.33.73-1.89 1.07l-63.72 36.8c-3.26 1.85-5.26 5.31-5.24 9.06l-.04 89.79zm14.63-31.54 34.65-20.01 34.65 20v40.01l-34.65 20-34.65-20z'/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.5351 15.8883H26.4138V18.8883H13.5351L18.4744 23.8276L16.3531 25.949L7.79245 17.3883L16.3531 8.82764L18.4744 10.949L13.5351 15.8883Z" fill="#666666"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 306 B |
|
|
@ -0,0 +1,6 @@
|
||||||
|
<svg width="75" height="75" viewBox="0 0 75 75" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="75" height="75" rx="37.5" fill="#E6F2F6"/>
|
||||||
|
<path d="M43.62 33.1604C44.7476 32.7851 45.9664 32.7851 47.094 33.1604C47.83 33.4064 48.438 33.8364 49.028 34.3524C49.592 34.8484 50.232 35.5104 50.998 36.3024C51.9126 37.2531 52.8286 38.2024 53.746 39.1504C54.642 40.0744 55.002 41.0504 54.998 42.3544C54.986 45.6724 54.916 47.9484 53.964 49.8144C53.0528 51.6014 51.5994 53.0541 49.812 53.9644C47.122 55.3364 43.682 55.0004 40.766 55.0004H34.234C32.05 55.0004 30.318 55.0004 28.924 54.8864C27.496 54.7704 26.29 54.5264 25.188 53.9664C23.4003 53.0556 21.9468 51.6021 21.036 49.8144C20.446 48.6564 20.216 47.3964 20.096 45.8624C19.92 43.5424 21.888 41.6644 23.402 40.1384C24.016 39.5184 24.664 38.9984 25.468 38.7024C26.6878 38.2563 28.0262 38.2563 29.246 38.7024C30.05 38.9984 30.698 39.5184 31.312 40.1384C31.908 40.7384 32.576 41.5384 33.384 42.5084C33.454 42.5944 33.564 42.6744 33.666 42.5684L39.716 36.3024C40.484 35.5104 41.122 34.8484 41.686 34.3524C42.276 33.8364 42.886 33.4064 43.62 33.1604ZM43.666 36.6064C43.206 37.0104 42.652 37.5824 41.832 38.4324L35.824 44.6524C35.5157 44.9718 35.1436 45.2227 34.7319 45.3887C34.3202 45.5548 33.8782 45.6322 33.4346 45.616C32.991 45.5997 32.5558 45.4902 32.1573 45.2946C31.7588 45.0989 31.4061 44.8215 31.122 44.4804C30.26 43.4484 29.674 42.7464 29.182 42.2524C28.702 41.7664 28.422 41.5964 28.216 41.5204C27.6613 41.3175 27.0527 41.3175 26.498 41.5204C26.292 41.5964 26.014 41.7664 25.532 42.2524C24.792 42.9964 24.138 43.8264 23.468 44.6324C23.146 45.0184 23.058 45.2224 23.094 45.7124C23.194 47.0244 23.388 47.8224 23.708 48.4524C24.3311 49.6751 25.3252 50.6693 26.548 51.2924C27.158 51.6024 27.928 51.7944 29.168 51.8964C30.428 51.9984 32.036 52.0004 34.3 52.0004H40.7C43.084 52.0004 46.23 52.4244 48.452 51.2924C49.6747 50.6693 50.6689 49.6751 51.292 48.4524C51.856 47.3424 51.984 45.8464 51.998 42.3444C52 41.7964 51.916 41.5724 51.522 41.1664L48.882 38.4324C48.062 37.5824 47.51 37.0124 47.048 36.6064C46.018 35.7024 44.74 35.6624 43.666 36.6064Z" fill="#007EA7"/>
|
||||||
|
<path d="M34.234 20H40.766C42.95 20 44.682 20 46.076 20.114C47.504 20.23 48.71 20.474 49.814 21.034C51.6013 21.9457 53.054 23.3998 53.964 25.188C54.526 26.288 54.77 27.496 54.886 28.924C55 30.318 55 32.05 55 34.234V40.766C55 42.95 55 44.682 54.886 46.076C54.77 47.504 54.526 48.71 53.966 49.814C53.0543 51.6013 51.6002 53.054 49.812 53.964C48.712 54.526 47.504 54.77 46.076 54.886C44.682 55 42.95 55 40.766 55H34.234C32.05 55 30.318 55 28.924 54.886C27.496 54.77 26.29 54.526 25.188 53.966C23.4003 53.0552 21.9468 51.6017 21.036 49.814C20.474 48.71 20.23 47.504 20.114 46.076C20 44.682 20 42.95 20 40.766V34.234C20 32.05 20 30.318 20.114 28.924C20.23 27.496 20.474 26.29 21.034 25.188C21.9453 23.4 23.3995 21.9465 25.188 21.036C26.288 20.474 27.496 20.23 28.924 20.114C30.318 20 32.05 20 34.234 20ZM29.168 23.104C27.928 23.204 27.158 23.398 26.548 23.708C25.3253 24.3311 24.3311 25.3253 23.708 26.548C23.398 27.158 23.206 27.928 23.104 29.168C23.002 30.428 23 32.036 23 34.3V40.7C23 42.966 23 44.574 23.104 45.832C23.204 47.072 23.398 47.842 23.708 48.452C24.3311 49.6747 25.3253 50.6689 26.548 51.292C27.158 51.602 27.928 51.794 29.168 51.896C30.428 51.998 32.036 52 34.3 52H40.7C42.966 52 44.574 52 45.832 51.896C47.072 51.796 47.842 51.602 48.452 51.292C49.6747 50.6689 50.6689 49.6747 51.292 48.452C51.602 47.842 51.794 47.072 51.896 45.832C51.998 44.572 52 42.964 52 40.7V34.3C52 32.036 52 30.426 51.896 29.168C51.796 27.928 51.602 27.158 51.292 26.548C50.6689 25.3253 49.6747 24.3311 48.452 23.708C47.842 23.398 47.072 23.206 45.832 23.104C44.572 23.002 42.964 23 40.7 23H34.3C32.036 23 30.426 23 29.168 23.104Z" fill="#007EA7"/>
|
||||||
|
<path d="M33.5 29C32.837 29 32.2011 29.2634 31.7322 29.7322C31.2634 30.2011 31 30.837 31 31.5C31 32.163 31.2634 32.7989 31.7322 33.2678C32.2011 33.7366 32.837 34 33.5 34C34.163 34 34.7989 33.7366 35.2678 33.2678C35.7366 32.7989 36 32.163 36 31.5C36 30.837 35.7366 30.2011 35.2678 29.7322C34.7989 29.2634 34.163 29 33.5 29ZM28 31.5C28 30.0413 28.5795 28.6424 29.6109 27.6109C30.6424 26.5795 32.0413 26 33.5 26C34.9587 26 36.3576 26.5795 37.3891 27.6109C38.4205 28.6424 39 30.0413 39 31.5C39 32.9587 38.4205 34.3576 37.3891 35.3891C36.3576 36.4205 34.9587 37 33.5 37C32.0413 37 30.6424 36.4205 29.6109 35.3891C28.5795 34.3576 28 32.9587 28 31.5Z" fill="#007EA7"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4.3 KiB |
|
|
@ -0,0 +1,5 @@
|
||||||
|
<svg width="27" height="26" viewBox="0 0 27 26" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M23.2397 5.54306C24.7713 5.54306 26.0128 4.30221 26.0128 2.77153C26.0128 1.24086 24.7713 0 23.2397 0C21.7082 0 20.4666 1.24086 20.4666 2.77153C20.4666 4.30221 21.7082 5.54306 23.2397 5.54306Z" fill="#195D80"/>
|
||||||
|
<path d="M17.2652 13.463C19.818 13.463 21.8875 11.3947 21.8875 8.84329C21.8875 6.29192 19.818 4.22363 17.2652 4.22363C14.7123 4.22363 12.6428 6.29192 12.6428 8.84329C12.6428 11.3947 14.7123 13.463 17.2652 13.463Z" fill="#1B3C59"/>
|
||||||
|
<path d="M7.70366 25.998C11.9583 25.998 15.4074 22.551 15.4074 18.2988C15.4074 14.0467 11.9583 10.5996 7.70366 10.5996C3.44903 10.5996 0 14.0467 0 18.2988C0 22.551 3.44903 25.998 7.70366 25.998Z" fill="#012348"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 766 B |
|
After Width: | Height: | Size: 46 KiB |
|
After Width: | Height: | Size: 6.6 KiB |
|
|
@ -0,0 +1,6 @@
|
||||||
|
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M0 15.2164C0.1 14.6331 0.183333 14.0498 0.308333 13.4748C1.225 9.43311 4.725 6.11645 8.825 5.41645C9.475 5.30811 10.1417 5.23311 10.8083 5.23311C14.3333 5.21645 17.8583 5.19978 21.3833 5.23311C25.7917 5.27478 29.8417 8.20811 31.3083 12.3664C33.45 18.4748 29.925 24.9998 23.6417 26.5164C22.8583 26.7081 22.0417 26.7998 21.2333 26.7998C17.7 26.8331 14.1667 26.8414 10.6333 26.8081C5.61667 26.7664 1.3 23.2081 0.25 18.3081C0.15 17.8248 0.0833333 17.3331 0 16.8414C0 16.2998 0 15.7581 0 15.2164ZM20.6583 16.0331C20.6583 10.5914 16.25 6.17478 10.8083 6.17478C5.36667 6.16645 0.95 10.5748 0.933333 16.0164C0.925 21.4664 5.35 25.8998 10.8083 25.8914C16.25 25.8914 20.6583 21.4748 20.6583 16.0331ZM30.975 15.5498C30.975 15.4831 30.9833 15.4331 30.9833 15.3831C30.6417 10.2664 26.4167 6.24145 21.3 6.17478C19.375 6.14978 17.45 6.16645 15.5333 6.16645C15.475 6.16645 15.4083 6.18311 15.3417 6.19145C19.1583 8.16645 21.2583 11.2664 21.6167 15.5414C24.7333 15.5498 27.85 15.5498 30.975 15.5498ZM21.6167 16.5248C21.2417 20.8164 19.1333 23.8998 15.3083 25.8831C15.4167 25.8914 15.475 25.8998 15.5333 25.8998C17.4333 25.8998 19.3333 25.9164 21.2417 25.8914C25.3917 25.8414 28.975 23.2914 30.4167 19.3998C30.7583 18.4831 30.95 17.5331 30.9917 16.5331C27.85 16.5248 24.7333 16.5248 21.6167 16.5248Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.3"/>
|
||||||
|
<path d="M20 15.9666C19.9664 21.1785 15.551 25.291 10.355 24.9301C5.99838 24.6279 2.45601 21.1869 2.04469 16.8311C1.81805 14.4559 2.45601 12.3158 3.89982 10.419C4.13486 10.1085 4.49581 10.0749 4.69728 10.3351C4.88195 10.5785 4.79801 10.8051 4.63012 11.0149C3.98376 11.8374 3.52208 12.7606 3.23668 13.7677C1.90199 18.5264 5.13378 23.3439 10.0444 23.9313C14.4178 24.4517 18.4303 21.3296 18.9675 16.9821C19.5131 12.6095 16.5164 8.61455 12.1849 7.98509C9.96047 7.65777 7.92906 8.17812 6.1159 9.53775C6.07393 9.57132 6.03196 9.60489 5.98999 9.63007C5.72977 9.80632 5.45276 9.78954 5.29327 9.57132C5.12538 9.35311 5.15057 9.05936 5.41918 8.89151C6.08233 8.47187 6.72869 8.01027 7.4338 7.69974C12.8397 5.34976 19.0011 8.7824 19.8825 14.607C19.9496 15.0686 19.958 15.5134 20 15.9666Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.3"/>
|
||||||
|
<path d="M17 15.953C16.9904 19.0751 14.5412 21.7348 11.4847 21.9371C8.25455 22.1588 5.45832 19.9039 5.05335 16.7528C4.87015 15.3266 5.15941 14.0064 5.9115 12.7826C6.14291 12.4068 6.45146 12.3008 6.74073 12.4935C7.01071 12.6766 7.04928 12.9753 6.82751 13.3511C5.32333 15.9048 6.17184 19.0269 8.75594 20.3182C10.6265 21.2529 12.4682 21.0699 14.0881 19.7497C15.6983 18.4391 16.2672 16.6757 15.7272 14.6713C15.1873 12.6862 13.8277 11.4913 11.7932 11.1059C10.5976 10.8842 9.47911 11.1251 8.42811 11.7419C8.26419 11.8382 8.03278 11.9346 7.86886 11.896C7.70495 11.8575 7.52174 11.6744 7.46389 11.5106C7.36747 11.26 7.50246 11.048 7.73387 10.9035C8.61131 10.3446 9.56589 10.0073 10.6072 9.95914C13.8374 9.81459 16.4118 11.925 16.9325 15.1146C16.9807 15.4037 16.9807 15.6831 17 15.953Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.3"/>
|
||||||
|
<path d="M14.1084 16.0251C14.1168 17.8585 12.6418 19.3335 10.8168 19.3418C8.99177 19.3501 7.5001 17.8751 7.48343 16.0501C7.4751 14.2168 8.95843 12.7168 10.8001 12.7168C12.6334 12.7168 14.1084 14.1918 14.1084 16.0251ZM13.1751 16.0251C13.1751 14.7085 12.1168 13.6501 10.8001 13.6501C9.48343 13.6501 8.4251 14.7168 8.4251 16.0251C8.4251 17.3335 9.49177 18.4001 10.8084 18.4001C12.1251 18.4085 13.1751 17.3501 13.1751 16.0251Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.5 KiB |
|
After Width: | Height: | Size: 8.8 KiB |
|
|
@ -0,0 +1,5 @@
|
||||||
|
<svg width="99" height="99" viewBox="0 0 99 99" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M0 49.5C0 31.9952 0 23.2429 3.45932 16.5803C6.37752 10.9599 10.9599 6.37752 16.5803 3.45932C23.2429 0 31.9952 0 49.5 0C67.0048 0 75.7571 0 82.4197 3.45932C88.0401 6.37752 92.6225 10.9599 95.5407 16.5803C99 23.2429 99 31.9952 99 49.5C99 67.0048 99 75.7571 95.5407 82.4197C92.6225 88.0401 88.0401 92.6225 82.4197 95.5407C75.7571 99 67.0048 99 49.5 99C31.9952 99 23.2429 99 16.5803 95.5407C10.9599 92.6225 6.37752 88.0401 3.45932 82.4197C0 75.7571 0 67.0048 0 49.5Z" fill="#E6F2F6"/>
|
||||||
|
<path d="M49.5 45.5C53.9183 45.5 57.5 41.9183 57.5 37.5C57.5 33.0817 53.9183 29.5 49.5 29.5C45.0817 29.5 41.5 33.0817 41.5 37.5C41.5 41.9183 45.0817 45.5 49.5 45.5Z" stroke="#007EA7" stroke-width="3"/>
|
||||||
|
<path d="M61.5 43.5C64.814 43.5 67.5 41.26 67.5 38.5C67.5 35.74 64.814 33.5 61.5 33.5M37.5 43.5C34.186 43.5 31.5 41.26 31.5 38.5C31.5 35.74 34.186 33.5 37.5 33.5M59.894 55.5C60.914 56.676 61.5 58.042 61.5 59.5C61.5 63.92 56.128 67.5 49.5 67.5C42.872 67.5 37.5 63.92 37.5 59.5C37.5 55.08 42.872 51.5 49.5 51.5C50.1813 51.5 50.848 51.5367 51.5 51.61M65.5 63.5C69.008 62.73 71.5 60.782 71.5 58.5C71.5 56.218 69.008 54.27 65.5 53.5M33.5 63.5C29.992 62.73 27.5 60.782 27.5 58.5C27.5 56.218 29.992 54.27 33.5 53.5" stroke="#007EA7" stroke-width="3" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
|
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="58" height="58" viewBox="0 0 58 58" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M0 14.2428C0.226563 13.1856 0.377604 12.0981 0.679688 11.0559C2.74896 4.04753 9.71198 -0.574345 16.9771 0.195968C23.7438 0.920968 29.0755 5.70899 30.5557 12.4001C30.5859 12.5663 30.6313 12.7324 30.6766 12.9288C33.7578 12.9288 36.8391 12.9288 39.9656 12.9288C40.0109 12.7928 40.0714 12.6418 40.1167 12.4757C40.9474 9.21316 43.8927 7.15899 47.3365 7.44597C50.3573 7.70274 53.0156 10.4215 53.2422 13.5027C53.4839 16.8106 51.3844 19.771 48.1974 20.5413C47.7896 20.647 47.7141 20.8132 47.7141 21.1908C47.7292 23.2751 47.7443 25.3746 47.7141 27.459C47.7141 27.897 47.85 28.0783 48.2427 28.2293C52.1094 29.8152 54.9036 32.5491 56.6104 36.3553C56.7313 36.6272 56.8521 36.9293 56.837 37.2163C56.8219 37.7298 56.5198 38.0923 56.0062 38.2434C55.5078 38.3793 55.1151 38.2132 54.813 37.8204C54.6922 37.6543 54.6167 37.4579 54.526 37.2767C52.2 31.9902 46.7323 28.7882 41.1286 29.4225C35.1927 30.1022 30.5406 34.3465 29.4833 40.1616C28.7281 44.3606 29.7854 48.1064 32.5948 51.3387C32.6401 51.3991 32.7005 51.4444 32.7458 51.5048C32.776 51.535 32.8063 51.5501 32.8969 51.6106C33.7276 49.5413 35.1776 48.1215 37.3375 47.4569C33.7427 43.4845 35.374 38.8022 37.851 36.7783C40.6302 34.4975 44.6781 34.6184 47.3516 37.1106C49.8135 39.4064 50.7651 43.8772 47.5026 47.4418C49.6474 48.1215 51.1276 49.5111 51.9583 51.6559C52.9854 50.6288 53.7406 49.4658 54.3448 48.2121C54.4958 47.91 54.6167 47.5928 54.7375 47.2757C55.0849 46.4147 55.6438 46.0824 56.3234 46.3543C56.988 46.6262 57.1844 47.2454 56.837 48.1215C55.6891 51.0668 53.8161 53.4382 51.2182 55.2507C49.0734 56.746 46.7021 57.6371 44.1042 57.909C43.9833 57.9241 43.8474 57.9694 43.7266 57.9996C42.8656 57.9996 41.9896 57.9996 41.1286 57.9996C41.0078 57.9694 40.8719 57.9241 40.751 57.909C34.8604 57.1236 30.6766 54.0121 28.2146 48.6048C27.7161 47.5173 27.4594 46.3392 27.0667 45.1762C24.0307 45.1762 20.9495 45.1762 17.8682 45.1762C17.8229 45.3574 17.7625 45.5236 17.7323 45.6897C16.9016 48.9069 13.926 50.946 10.5276 50.659C7.52187 50.4022 4.90885 47.7439 4.63698 44.6626C4.35 41.385 6.46458 38.3642 9.63646 37.5788C10.1047 37.4731 10.1802 37.2767 10.1802 36.8689C10.1651 34.8298 10.15 32.8059 10.1802 30.7668C10.1953 30.2835 10.0443 30.0569 9.59115 29.8606C5.22604 28.0027 2.23542 24.8309 0.755208 20.3147C0.392708 19.1819 0.241667 18.0038 0 16.8408C0 15.9798 0 15.1189 0 14.2428ZM12.4458 37.4277C15.3911 38.1225 17.1885 39.935 17.8833 42.8501C20.9193 42.8501 23.925 42.8501 26.9609 42.8501C26.9911 37.9564 28.7885 33.8632 32.5193 30.7215C36.25 27.5798 40.6151 26.5829 45.4333 27.3684C45.4333 25.1934 45.4484 23.0788 45.4182 20.9642C45.4182 20.8283 45.1766 20.6168 45.0104 20.5715C42.8958 19.9975 41.3703 18.7288 40.4641 16.7501C40.2526 16.2819 40.1167 15.7684 39.9505 15.2548C36.9448 15.2548 33.9391 15.2548 30.888 15.2548C30.8427 20.1486 29.0755 24.2418 25.3297 27.3835C21.5839 30.5251 17.2339 31.522 12.4307 30.7366C12.4458 32.9871 12.4458 35.1772 12.4458 37.4277ZM24.9974 24.5741C29.3021 20.4053 30.3443 12.1283 25.0125 6.50951C19.7109 0.890759 10.7844 1.01159 5.63385 6.76628C0.438021 12.5965 1.8125 20.6923 5.93594 24.6043C6.75156 22.5048 8.23177 21.1303 10.3766 20.4356C7.15937 16.9465 7.9599 12.4303 10.588 10.0288C13.3068 7.53659 17.4604 7.50638 20.2094 9.95326C22.913 12.3548 23.7286 16.9767 20.5266 20.4053C23.2604 21.7194 23.2604 21.7194 24.9974 24.5741ZM20.3604 15.3454C20.3755 12.6418 18.2005 10.4366 15.512 10.4064C12.7932 10.3762 10.5578 12.5663 10.5427 15.285C10.5276 17.9736 12.7479 20.2241 15.4516 20.2392C18.125 20.2241 20.3453 18.0189 20.3604 15.3454ZM42.4578 37.3975C39.7542 37.3975 37.549 39.5574 37.5339 42.2611C37.5188 44.9798 39.7089 47.2001 42.4276 47.2152C45.1313 47.2303 47.3667 44.9949 47.3516 42.2913C47.3516 39.5876 45.1464 37.3975 42.4578 37.3975ZM15.4516 22.4897C14.3036 22.4897 13.1557 22.4595 12.0078 22.4897C10.0594 22.535 8.39792 23.9095 7.94479 25.8126C7.85417 26.1902 7.92969 26.4319 8.29219 26.6434C13.0651 29.4829 17.8229 29.4829 22.5958 26.6434C22.9885 26.4168 23.0188 26.1449 22.9281 25.7673C22.5052 23.9397 20.8286 22.535 18.9406 22.4897C17.7927 22.4746 16.6146 22.4897 15.4516 22.4897ZM42.488 49.496C41.2042 49.5111 39.9203 49.4507 38.6516 49.5262C36.8693 49.6319 35.2682 51.1272 34.9208 52.8793C34.8604 53.2267 34.9359 53.4231 35.238 53.6194C39.437 56.4439 45.4031 56.4439 49.6323 53.6194C49.9344 53.4231 50.0099 53.2116 49.9344 52.8793C49.5568 51.0668 47.9406 49.6168 46.0828 49.5262C44.9047 49.4507 43.6964 49.496 42.488 49.496ZM46.5813 9.69649C44.1344 9.69649 42.1708 11.6751 42.1708 14.122C42.1859 16.5236 44.1495 18.5022 46.5661 18.5173C48.9828 18.5324 50.9917 16.5387 50.9917 14.1069C50.9917 11.66 49.0281 9.69649 46.5813 9.69649ZM11.2979 48.4236C13.7448 48.4236 15.7234 46.4449 15.7083 44.0132C15.7083 41.6116 13.7297 39.6329 11.3281 39.6027C8.91146 39.5725 6.9026 41.5663 6.8875 43.9981C6.8875 46.4449 8.85104 48.4085 11.2979 48.4236Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.5"/>
|
||||||
|
<path d="M57.8792 42.306C57.8641 42.895 57.3506 43.4086 56.7464 43.4086C56.1271 43.4086 55.5985 42.8648 55.6287 42.2456C55.6438 41.6263 56.1875 41.1127 56.8068 41.1581C57.411 41.1883 57.8943 41.7169 57.8792 42.306Z" fill="#007EA7"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 5.1 KiB |
|
|
@ -0,0 +1,15 @@
|
||||||
|
<svg width="99" height="99" viewBox="0 0 99 99" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M0 49.5C0 31.9952 0 23.2429 3.45932 16.5803C6.37752 10.9599 10.9599 6.37752 16.5803 3.45932C23.2429 0 31.9952 0 49.5 0C67.0048 0 75.7571 0 82.4197 3.45932C88.0401 6.37752 92.6225 10.9599 95.5407 16.5803C99 23.2429 99 31.9952 99 49.5C99 67.0048 99 75.7571 95.5407 82.4197C92.6225 88.0401 88.0401 92.6225 82.4197 95.5407C75.7571 99 67.0048 99 49.5 99C31.9952 99 23.2429 99 16.5803 95.5407C10.9599 92.6225 6.37752 88.0401 3.45932 82.4197C0 75.7571 0 67.0048 0 49.5Z" fill="#E6F2F6"/>
|
||||||
|
<path d="M65.5 44.7C65.5 36.7 62.3 33.5 54.3 33.5H44.7C36.7 33.5 33.5 36.7 33.5 44.7V54.3C33.5 62.3 36.7 65.5 44.7 65.5" stroke="#007EA7" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M58.2 41.5C57.1 40.1 55.26 39.5 52.5 39.5H46.5C41.5 39.5 39.5 41.5 39.5 46.5V52.5C39.5 55.26 40.1 57.1 41.48 58.2" stroke="#007EA7" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M41.52 33.5V29.5" stroke="#007EA7" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M49.5 33.5V29.5" stroke="#007EA7" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M57.5 33.5V29.5" stroke="#007EA7" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M65.5 41.5H69.5" stroke="#007EA7" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M41.52 65.5V69.5" stroke="#007EA7" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M29.5 41.5H33.5" stroke="#007EA7" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M29.5 49.5H33.5" stroke="#007EA7" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M29.5 57.5H33.5" stroke="#007EA7" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M58.92 62.6803C60.6763 62.6803 62.1 61.2566 62.1 59.5003C62.1 57.744 60.6763 56.3203 58.92 56.3203C57.1637 56.3203 55.74 57.744 55.74 59.5003C55.74 61.2566 57.1637 62.6803 58.92 62.6803Z" stroke="#007EA7" stroke-width="2.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M48.3199 60.4201V58.5601C48.3199 57.4601 49.2199 56.5601 50.3199 56.5601C52.2399 56.5601 53.0199 55.2001 52.0599 53.5401C51.4999 52.5801 51.8399 51.3401 52.7999 50.8001L54.6199 49.7401C55.4599 49.2401 56.5399 49.5401 57.0399 50.3801L57.1599 50.5801C58.1199 52.2401 59.6799 52.2401 60.6399 50.5801L60.7599 50.3801C61.2599 49.5401 62.3399 49.2601 63.1799 49.7401L64.9999 50.8001C65.9599 51.3601 66.2999 52.5801 65.7399 53.5401C64.7799 55.2001 65.5599 56.5601 67.4799 56.5601C68.5799 56.5601 69.4799 57.4601 69.4799 58.5601V60.4201C69.4799 61.5201 68.5799 62.4201 67.4799 62.4201C65.5599 62.4201 64.7799 63.7801 65.7399 65.4401C66.2999 66.4001 65.9599 67.6401 64.9999 68.1801L63.1799 69.2401C62.3399 69.7401 61.2599 69.4401 60.7599 68.6001L60.6399 68.4001C59.6799 66.7401 58.1199 66.7401 57.1599 68.4001L57.0399 68.6001C56.5399 69.4401 55.4599 69.7201 54.6199 69.2401L52.7999 68.1801C51.8399 67.6201 51.4999 66.4001 52.0599 65.4401C53.0199 63.7801 52.2399 62.4201 50.3199 62.4201C49.2199 62.4401 48.3199 61.5401 48.3199 60.4201Z" stroke="#007EA7" stroke-width="2.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
|
@ -0,0 +1 @@
|
||||||
|
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M16 8.016A8.522 8.522 0 008.016 16h-.032A8.521 8.521 0 000 8.016v-.032A8.521 8.521 0 007.984 0h.032A8.522 8.522 0 0016 7.984v.032z" fill="url(#prefix__paint0_radial_980_20147)"/><defs><radialGradient id="prefix__paint0_radial_980_20147" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(16.1326 5.4553 -43.70045 129.2322 1.588 6.503)"><stop offset=".067" stop-color="#9168C0"/><stop offset=".343" stop-color="#5684D1"/><stop offset=".672" stop-color="#1BA1E3"/></radialGradient></defs></svg>
|
||||||
|
After Width: | Height: | Size: 599 B |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
|
@ -0,0 +1,5 @@
|
||||||
|
<svg width="99" height="99" viewBox="0 0 99 99" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M0 49.5C0 31.9952 0 23.2429 3.45932 16.5803C6.37752 10.9599 10.9599 6.37752 16.5803 3.45932C23.2429 0 31.9952 0 49.5 0C67.0048 0 75.7571 0 82.4197 3.45932C88.0401 6.37752 92.6225 10.9599 95.5407 16.5803C99 23.2429 99 31.9952 99 49.5C99 67.0048 99 75.7571 95.5407 82.4197C92.6225 88.0401 88.0401 92.6225 82.4197 95.5407C75.7571 99 67.0048 99 49.5 99C31.9952 99 23.2429 99 16.5803 95.5407C10.9599 92.6225 6.37752 88.0401 3.45932 82.4197C0 75.7571 0 67.0048 0 49.5Z" fill="#E6F2F6"/>
|
||||||
|
<path d="M62.5 58.4999H52.5M62.5 63.4999H52.5M65 39.4999H54M48.5 29.4999C45.739 28.2469 42.346 28.0889 38.5 29.4999C34.654 30.9109 31.261 30.7529 28.5 29.4999M48.5 35.4999C45.739 34.2469 42.346 34.0889 38.5 35.4999C34.654 36.9109 31.261 36.7529 28.5 35.4999M28.5 53.4119C28.5 51.4269 29.237 49.5079 30.783 48.2639C33.013 46.4689 36.89 43.8279 42.481 41.6869C44.285 40.9949 46.169 42.3079 46.251 44.2379C46.331 46.1519 46.419 48.6629 46.465 51.4579H67.502C68.2973 51.4584 69.0599 51.7747 69.622 52.3373C70.1842 52.8998 70.5 53.6626 70.5 54.4579V60.9579C70.5 63.4839 70.341 65.4329 70.15 66.8649C69.89 68.8049 68.25 70.0929 66.294 70.1739C63.185 70.3029 57.722 70.4589 49.5 70.4589C41.278 70.4589 35.815 70.3029 32.706 70.1739C30.75 70.0929 29.109 68.8059 28.85 66.8649C28.66 65.4329 28.5 63.4839 28.5 60.9599V53.4119Z" stroke="#007EA7" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M44.462 70.48C44.484 69.468 44.5 68.165 44.5 66.5C44.5 64.1 44.467 62.45 44.429 61.343C44.383 60.016 43.709 58.833 42.396 58.63C41.7683 58.5386 41.1344 58.4952 40.5 58.5C39.732 58.5 39.108 58.552 38.604 58.63C37.291 58.833 36.617 60.016 36.571 61.343C36.5182 63.0615 36.4945 64.7807 36.5 66.5C36.5 68.092 36.514 69.353 36.535 70.345M52.5 51.5C53.0352 45.6822 53.6496 39.872 54.343 34.071C54.494 32.813 55.428 31.797 56.688 31.658C57.6218 31.5546 58.5605 31.5018 59.5 31.5C60.55 31.5 61.518 31.571 62.312 31.658C63.572 31.798 64.506 32.813 64.657 34.071C65.3505 39.872 65.9649 45.6822 66.5 51.5" stroke="#007EA7" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 8.4 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 9.3 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="32" height="32" rx="16" fill="#007EA7"/>
|
||||||
|
<path d="M16 19C14.3125 19 13 17.6562 13 16V11C13 9.34375 14.3125 8 16 8C17.6562 8 19 9.34375 19 11V16C19 17.6875 17.6562 19 16 19ZM20.75 14C21.1562 14 21.5 14.3438 21.5 14.75V16C21.5 18.7812 19.4062 21.0938 16.75 21.4688V22.5H18C18.5625 22.5 19 23 18.9688 23.5625C18.9688 23.8125 18.75 24 18.5 24H13.5C13.2188 24 13 23.8125 13 23.5625C12.9688 23 13.4062 22.5 14 22.5H15.25V21.4062C12.4688 21.0312 10.5 18.5312 10.5 15.75V14.75C10.5 14.3438 10.8125 14 11.25 14C11.6562 14 12 14.3438 12 14.75V15.8438C12 17.9375 13.6562 19.875 15.7188 20C18.0625 20.1562 20 18.3125 20 16V14.75C20 14.3438 20.3125 14 20.75 14Z" fill="white"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 781 B |
|
|
@ -0,0 +1,13 @@
|
||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_12088_74297)">
|
||||||
|
<path d="M19.7 24.0001C14.7875 24.0001 9.87499 24.0001 4.95624 24.0001C4.93749 23.9876 4.91875 23.9689 4.89374 23.9689C3.51874 23.8001 2.26249 22.5314 2.27499 20.7626C2.30624 15.7001 2.28749 10.6439 2.28749 5.58136C2.28749 4.42511 2.28124 3.27511 2.28749 2.11886C2.29374 1.23761 2.84999 0.46886 3.67499 0.16886C4.50624 -0.13114 5.41874 0.10636 5.98124 0.78136C6.10624 0.93136 6.22499 0.98136 6.41249 0.97511C11.225 0.96886 16.0375 0.96886 20.85 0.96886C21.3625 0.96886 21.6562 1.24386 21.6562 1.72511C21.6562 7.90636 21.6562 14.0939 21.6562 20.2751C21.6562 20.7439 21.3687 21.0314 20.9 21.0376C20.675 21.0376 20.45 21.0376 20.2062 21.0376C20.2062 21.7189 20.1875 22.3814 20.2125 23.0439C20.2375 23.4939 20.1062 23.8126 19.7 24.0001ZM20.25 19.6376C20.25 13.8814 20.25 8.13761 20.25 2.40011C15.6625 2.40011 11.0875 2.40011 6.51874 2.40011C6.51874 8.15636 6.51874 13.8876 6.51874 19.6376C11.0937 19.6376 15.6625 19.6376 20.25 19.6376ZM18.8062 21.0501C18.6937 21.0501 18.6 21.0501 18.5062 21.0501C14.2937 21.0501 10.0875 21.0501 5.87499 21.0501C5.42499 21.0501 5.22499 20.9189 5.06874 20.5189C4.93124 20.1689 4.63749 19.9814 4.31249 20.0251C3.96249 20.0689 3.73749 20.3314 3.70624 20.7189C3.61874 21.7939 4.34999 22.5939 5.43124 22.5939C9.81249 22.5939 14.1937 22.5939 18.575 22.5939C18.65 22.5939 18.725 22.5876 18.8125 22.5814C18.8062 22.0751 18.8062 21.5751 18.8062 21.0501ZM5.09999 18.6689C5.09999 18.6126 5.09999 18.5189 5.09999 18.4314C5.09999 13.0689 5.09999 7.70636 5.09999 2.34386C5.09999 2.26886 5.10624 2.18761 5.09999 2.11261C5.06874 1.81261 4.91874 1.60011 4.63124 1.50011C4.14999 1.31886 3.69374 1.68136 3.69374 2.24386C3.69374 7.66886 3.69374 13.0939 3.69374 18.5189C3.69374 18.5876 3.69999 18.6501 3.69999 18.6751C4.17499 18.6689 4.63124 18.6689 5.09999 18.6689Z" fill="#007EA7"/>
|
||||||
|
<path d="M13.3875 12.2059C11.8375 12.2059 10.2875 12.2059 8.73125 12.2059C8.16875 12.2059 7.90625 11.9371 7.90625 11.3746C7.90625 9.12461 7.90625 6.86836 7.90625 4.61836C7.90625 4.05586 8.16875 3.78711 8.73125 3.78711C11.8312 3.78711 14.9375 3.78711 18.0375 3.78711C18.5813 3.78711 18.85 4.06211 18.85 4.60586C18.85 6.86836 18.85 9.12461 18.85 11.3871C18.85 11.9309 18.575 12.2059 18.0312 12.2059C16.4875 12.2059 14.9375 12.2059 13.3875 12.2059ZM9.325 5.19961C9.325 7.07461 9.325 8.93711 9.325 10.7871C12.0437 10.7871 14.7438 10.7871 17.4375 10.7871C17.4375 8.91836 17.4375 7.06211 17.4375 5.19961C14.7312 5.19961 12.0375 5.19961 9.325 5.19961Z" fill="#007EA7"/>
|
||||||
|
<path d="M13.4124 13.6123C14.9812 13.6123 16.5437 13.6123 18.1124 13.6123C18.4312 13.6123 18.6687 13.7498 18.7999 14.0436C18.9187 14.3123 18.8624 14.5623 18.6749 14.7811C18.5187 14.9561 18.3187 15.0186 18.0874 15.0186C17.2062 15.0186 16.3249 15.0186 15.4437 15.0186C13.2249 15.0186 10.9999 15.0186 8.78118 15.0186C8.69368 15.0186 8.60618 15.0248 8.52493 15.0123C8.16243 14.9686 7.89368 14.6436 7.90618 14.2811C7.92493 13.9311 8.20618 13.6436 8.56868 13.6186C8.63743 13.6123 8.70618 13.6186 8.78118 13.6186C10.3249 13.6123 11.8687 13.6123 13.4124 13.6123Z" fill="#007EA7"/>
|
||||||
|
<path d="M13.3877 16.4192C14.9627 16.4192 16.5377 16.4192 18.1127 16.4192C18.6502 16.4192 18.9939 16.9004 18.8064 17.3692C18.7002 17.6379 18.4877 17.7879 18.2002 17.8192C18.1314 17.8254 18.0627 17.8192 17.9877 17.8192C14.9064 17.8192 11.8314 17.8192 8.75015 17.8192C8.6564 17.8192 8.56265 17.8254 8.4689 17.8067C8.11265 17.7379 7.8689 17.4129 7.90015 17.0567C7.92515 16.7067 8.2189 16.4254 8.58765 16.4129C8.87515 16.4067 9.16265 16.4129 9.45015 16.4129C10.7689 16.4192 12.0752 16.4192 13.3877 16.4192Z" fill="#007EA7"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_12088_74297">
|
||||||
|
<rect width="24" height="24" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.7 KiB |
|
|
@ -0,0 +1,7 @@
|
||||||
|
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="56" height="56" rx="28" fill="#195D80"/>
|
||||||
|
<path d="M16 41.333H40" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M19.4666 23.1738H17.3333C16.6 23.1738 16 23.7738 16 24.5072V36.0005C16 36.7338 16.6 37.3338 17.3333 37.3338H19.4666C20.2 37.3338 20.8 36.7338 20.8 36.0005V24.5072C20.8 23.7738 20.2 23.1738 19.4666 23.1738Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M29.0662 18.9199H26.9329C26.1996 18.9199 25.5996 19.5199 25.5996 20.2533V35.9999C25.5996 36.7333 26.1996 37.3333 26.9329 37.3333H29.0662C29.7996 37.3333 30.3996 36.7333 30.3996 35.9999V20.2533C30.3996 19.5199 29.7996 18.9199 29.0662 18.9199Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M38.6668 14.667H36.5335C35.8002 14.667 35.2002 15.267 35.2002 16.0003V36.0003C35.2002 36.7337 35.8002 37.3337 36.5335 37.3337H38.6668C39.4002 37.3337 40.0002 36.7337 40.0002 36.0003V16.0003C40.0002 15.267 39.4002 14.667 38.6668 14.667Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
|
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="56" height="57" viewBox="0 0 56 57" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect y="0.5" width="56" height="56" rx="28" fill="#195D80"/>
|
||||||
|
<path d="M39.7734 23.1801L31.04 16.1934C29.3334 14.8334 26.6667 14.8201 24.9734 16.1801L16.24 23.1801C14.9867 24.1801 14.2267 26.1801 14.4934 27.7534L16.1734 37.8068C16.56 40.0601 18.6534 41.8334 20.9334 41.8334H35.0667C37.32 41.8334 39.4534 40.0201 39.84 37.7934L41.52 27.7401C41.76 26.1801 41 24.1801 39.7734 23.1801ZM29 36.5001C29 37.0468 28.5467 37.5001 28 37.5001C27.4534 37.5001 27 37.0468 27 36.5001V32.5001C27 31.9534 27.4534 31.5001 28 31.5001C28.5467 31.5001 29 31.9534 29 32.5001V36.5001Z" fill="white"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 681 B |
|
After Width: | Height: | Size: 9.4 KiB |
|
|
@ -0,0 +1,12 @@
|
||||||
|
<svg width="99" height="99" viewBox="0 0 99 99" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M0 49.5C0 31.9952 0 23.2429 3.45932 16.5803C6.37752 10.9599 10.9599 6.37752 16.5803 3.45932C23.2429 0 31.9952 0 49.5 0C67.0048 0 75.7571 0 82.4197 3.45932C88.0401 6.37752 92.6225 10.9599 95.5407 16.5803C99 23.2429 99 31.9952 99 49.5C99 67.0048 99 75.7571 95.5407 82.4197C92.6225 88.0401 88.0401 92.6225 82.4197 95.5407C75.7571 99 67.0048 99 49.5 99C31.9952 99 23.2429 99 16.5803 95.5407C10.9599 92.6225 6.37752 88.0401 3.45932 82.4197C0 75.7571 0 67.0048 0 49.5Z" fill="#E6F2F6"/>
|
||||||
|
<g clip-path="url(#clip0_11520_41128)">
|
||||||
|
<path d="M20.5 34.7428C20.7266 33.6856 20.8776 32.5981 21.1797 31.5559C23.249 24.5475 30.212 19.9257 37.4771 20.696C44.2438 21.421 49.5755 26.209 51.0557 32.9001C51.0859 33.0663 51.1313 33.2324 51.1766 33.4288C54.2578 33.4288 57.3391 33.4288 60.4656 33.4288C60.5109 33.2928 60.5714 33.1418 60.6167 32.9757C61.4474 29.7132 64.3927 27.659 67.8365 27.946C70.8573 28.2027 73.5156 30.9215 73.7422 34.0027C73.9839 37.3106 71.8844 40.271 68.6974 41.0413C68.2896 41.147 68.2141 41.3132 68.2141 41.6908C68.2292 43.7751 68.2443 45.8746 68.2141 47.959C68.2141 48.397 68.35 48.5783 68.7427 48.7293C72.6094 50.3152 75.4036 53.0491 77.1104 56.8553C77.2313 57.1272 77.3521 57.4293 77.337 57.7163C77.3219 58.2298 77.0198 58.5923 76.5062 58.7434C76.0078 58.8793 75.6151 58.7132 75.313 58.3204C75.1922 58.1543 75.1167 57.9579 75.026 57.7767C72.7 52.4902 67.2323 49.2882 61.6286 49.9225C55.6927 50.6022 51.0406 54.8465 49.9833 60.6616C49.2281 64.8606 50.2854 68.6064 53.0948 71.8387C53.1401 71.8991 53.2005 71.9444 53.2458 72.0048C53.276 72.035 53.3063 72.0501 53.3969 72.1106C54.2276 70.0413 55.6776 68.6215 57.8375 67.9569C54.2427 63.9845 55.874 59.3022 58.351 57.2783C61.1302 54.9975 65.1781 55.1184 67.8516 57.6106C70.3135 59.9064 71.2651 64.3772 68.0026 67.9418C70.1474 68.6215 71.6276 70.0111 72.4583 72.1559C73.4854 71.1288 74.2406 69.9658 74.8448 68.7121C74.9958 68.41 75.1167 68.0928 75.2375 67.7757C75.5849 66.9147 76.1438 66.5824 76.8234 66.8543C77.488 67.1262 77.6844 67.7454 77.337 68.6215C76.1891 71.5668 74.3161 73.9382 71.7182 75.7507C69.5734 77.246 67.2021 78.1371 64.6042 78.409C64.4833 78.4241 64.3474 78.4694 64.2266 78.4996C63.3656 78.4996 62.4896 78.4996 61.6286 78.4996C61.5078 78.4694 61.3719 78.4241 61.251 78.409C55.3604 77.6236 51.1766 74.5121 48.7146 69.1048C48.2161 68.0173 47.9594 66.8392 47.5667 65.6762C44.5307 65.6762 41.4495 65.6762 38.3682 65.6762C38.3229 65.8574 38.2625 66.0236 38.2323 66.1897C37.4016 69.4069 34.426 71.446 31.0276 71.159C28.0219 70.9022 25.4089 68.2439 25.137 65.1626C24.85 61.885 26.9646 58.8642 30.1365 58.0788C30.6047 57.9731 30.6802 57.7767 30.6802 57.3689C30.6651 55.3298 30.65 53.3059 30.6802 51.2668C30.6953 50.7835 30.5443 50.5569 30.0911 50.3606C25.726 48.5027 22.7354 45.3309 21.2552 40.8147C20.8927 39.6819 20.7417 38.5038 20.5 37.3408C20.5 36.4798 20.5 35.6189 20.5 34.7428ZM32.9458 57.9277C35.8911 58.6225 37.6885 60.435 38.3833 63.3501C41.4193 63.3501 44.425 63.3501 47.4609 63.3501C47.4911 58.4564 49.2885 54.3632 53.0193 51.2215C56.75 48.0798 61.1151 47.0829 65.9333 47.8684C65.9333 45.6934 65.9484 43.5788 65.9182 41.4642C65.9182 41.3283 65.6766 41.1168 65.5104 41.0715C63.3958 40.4975 61.8703 39.2288 60.9641 37.2501C60.7526 36.7819 60.6167 36.2684 60.4505 35.7548C57.4448 35.7548 54.4391 35.7548 51.388 35.7548C51.3427 40.6486 49.5755 44.7418 45.8297 47.8835C42.0839 51.0251 37.7339 52.022 32.9307 51.2366C32.9458 53.4871 32.9458 55.6772 32.9458 57.9277ZM45.4974 45.0741C49.8021 40.9053 50.8443 32.6283 45.5125 27.0095C40.2109 21.3908 31.2844 21.5116 26.1339 27.2663C20.938 33.0965 22.3125 41.1923 26.4359 45.1043C27.2516 43.0048 28.7318 41.6303 30.8766 40.9356C27.6594 37.4465 28.4599 32.9303 31.088 30.5288C33.8068 28.0366 37.9604 28.0064 40.7094 30.4533C43.413 32.8548 44.2286 37.4767 41.0266 40.9053C43.7604 42.2194 43.7604 42.2194 45.4974 45.0741ZM40.8604 35.8454C40.8755 33.1418 38.7005 30.9366 36.012 30.9064C33.2932 30.8762 31.0578 33.0663 31.0427 35.785C31.0276 38.4736 33.2479 40.7241 35.9516 40.7392C38.625 40.7241 40.8453 38.5189 40.8604 35.8454ZM62.9578 57.8975C60.2542 57.8975 58.049 60.0574 58.0339 62.7611C58.0188 65.4798 60.2089 67.7001 62.9276 67.7152C65.6313 67.7303 67.8667 65.4949 67.8516 62.7913C67.8516 60.0876 65.6464 57.8975 62.9578 57.8975ZM35.9516 42.9897C34.8036 42.9897 33.6557 42.9595 32.5078 42.9897C30.5594 43.035 28.8979 44.4095 28.4448 46.3126C28.3542 46.6902 28.4297 46.9319 28.7922 47.1434C33.5651 49.9829 38.3229 49.9829 43.0958 47.1434C43.4885 46.9168 43.5188 46.6449 43.4281 46.2673C43.0052 44.4397 41.3286 43.035 39.4406 42.9897C38.2927 42.9746 37.1146 42.9897 35.9516 42.9897ZM62.988 69.996C61.7042 70.0111 60.4203 69.9507 59.1516 70.0262C57.3693 70.1319 55.7682 71.6272 55.4208 73.3793C55.3604 73.7267 55.4359 73.9231 55.738 74.1194C59.937 76.9439 65.9031 76.9439 70.1323 74.1194C70.4344 73.9231 70.5099 73.7116 70.4344 73.3793C70.0568 71.5668 68.4406 70.1168 66.5828 70.0262C65.4047 69.9507 64.1964 69.996 62.988 69.996ZM67.0813 30.1965C64.6344 30.1965 62.6708 32.1751 62.6708 34.622C62.6859 37.0236 64.6495 39.0022 67.0661 39.0173C69.4828 39.0324 71.4917 37.0387 71.4917 34.6069C71.4917 32.16 69.5281 30.1965 67.0813 30.1965ZM31.7979 68.9236C34.2448 68.9236 36.2234 66.9449 36.2083 64.5132C36.2083 62.1116 34.2297 60.1329 31.8281 60.1027C29.4115 60.0725 27.4026 62.0663 27.3875 64.4981C27.3875 66.9449 29.351 68.9085 31.7979 68.9236Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.5"/>
|
||||||
|
<path d="M78.3792 62.806C78.3641 63.395 77.8506 63.9086 77.2464 63.9086C76.6271 63.9086 76.0985 63.3648 76.1287 62.7456C76.1438 62.1263 76.6875 61.6127 77.3068 61.6581C77.911 61.6883 78.3943 62.2169 78.3792 62.806Z" fill="#007EA7"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_11520_41128">
|
||||||
|
<rect width="58" height="58" fill="white" transform="translate(20.5 20.5)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 5.8 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 9.0 KiB |
|
|
@ -0,0 +1,6 @@
|
||||||
|
<svg width="33" height="33" viewBox="0 0 33 33" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M16.5 16.2166C20.1819 16.2166 23.1667 13.2319 23.1667 9.54997C23.1667 5.86807 20.1819 2.8833 16.5 2.8833C12.8181 2.8833 9.83337 5.86807 9.83337 9.54997C9.83337 13.2319 12.8181 16.2166 16.5 16.2166Z" stroke="#666666" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M26.1133 21.2034L21.3933 25.9234C21.2066 26.1101 21.0333 26.4567 20.9933 26.71L20.74 28.51C20.6466 29.1633 21.1 29.6167 21.7533 29.5234L23.5533 29.27C23.8066 29.23 24.1666 29.0567 24.34 28.87L29.0599 24.1501C29.8733 23.3367 30.2599 22.39 29.0599 21.19C27.8733 20.0034 26.9267 20.39 26.1133 21.2034Z" stroke="#666666" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M25.4333 21.8833C25.8333 23.3233 26.9533 24.4433 28.3933 24.8433" stroke="#666666" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M5.04663 29.55C5.04663 24.39 10.18 20.2167 16.5 20.2167C17.8867 20.2167 19.22 20.4167 20.46 20.79" stroke="#666666" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
|
|
@ -0,0 +1,15 @@
|
||||||
|
<svg width="99" height="99" viewBox="0 0 99 99" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M0 49.5C0 31.9952 0 23.2429 3.45932 16.5803C6.37752 10.9599 10.9599 6.37752 16.5803 3.45932C23.2429 0 31.9952 0 49.5 0C67.0048 0 75.7571 0 82.4197 3.45932C88.0401 6.37752 92.6225 10.9599 95.5407 16.5803C99 23.2429 99 31.9952 99 49.5C99 67.0048 99 75.7571 95.5407 82.4197C92.6225 88.0401 88.0401 92.6225 82.4197 95.5407C75.7571 99 67.0048 99 49.5 99C31.9952 99 23.2429 99 16.5803 95.5407C10.9599 92.6225 6.37752 88.0401 3.45932 82.4197C0 75.7571 0 67.0048 0 49.5Z" fill="#E6F2F6"/>
|
||||||
|
<g clip-path="url(#clip0_11520_41098)">
|
||||||
|
<path d="M23.6167 48.583C28.2834 48.583 32.8834 48.583 37.5334 48.583C37.5834 49.5496 37.6334 50.5163 37.6834 51.483C37.7167 52.1496 38.1 52.5496 38.6667 52.5496C39.2834 52.5663 39.7 52.0663 39.6834 51.3163C39.65 49.7496 39.5667 48.1996 39.5834 46.633C39.6167 42.3996 40.05 38.2163 41.0334 34.083C41.1167 33.733 41.2167 33.5663 41.6334 33.5663C46.9834 33.583 52.3334 33.583 57.6667 33.583C57.7334 33.583 57.7834 33.5996 57.9667 33.6163C58.2334 34.9996 58.55 36.4163 58.7834 37.833C59.45 42.0496 59.6834 46.2996 59.4334 50.583C59.4167 50.8996 59.4 51.1996 59.4167 51.5163C59.4334 52.1163 59.8334 52.5163 60.3667 52.533C60.9334 52.5496 61.3834 52.133 61.4 51.5163C61.4334 50.5663 61.4 49.5996 61.4 48.5996C66.1334 48.5996 70.7334 48.5996 75.5 48.5996C75.3167 49.9663 75.2 51.3163 74.9334 52.6496C74.3167 55.9163 73.05 58.9163 71.25 61.7163C71.0834 61.983 70.8667 62.383 70.95 62.6163C71.0667 62.9496 71.3834 63.333 71.7167 63.4663C72.15 63.6663 72.55 63.3663 72.8167 62.9663C74.1 61.033 75.1334 58.983 75.8834 56.783C81.05 41.8996 73.0834 25.883 58.1167 20.983C42.1834 15.7663 25.0834 25.933 22.0834 42.433C20.7667 49.7163 22.1334 56.4663 26.0667 62.733C26.1334 62.833 26.2 62.9496 26.2667 63.0496C26.65 63.5663 27.2 63.6996 27.6834 63.3663C28.15 63.0496 28.2334 62.483 27.9334 61.933C27.2667 60.733 26.5334 59.5663 25.95 58.333C24.5334 55.3663 23.8334 52.2163 23.6167 48.9496C23.6167 48.8496 23.6167 48.733 23.6167 48.583ZM23.6167 46.5163C23.6167 46.3663 23.6167 46.233 23.6167 46.1163C23.9 41.783 25.1334 37.7663 27.3667 34.0496C27.5667 33.7163 27.7834 33.5663 28.2 33.5663C31.6334 33.583 35.0667 33.583 38.5 33.583C38.6834 33.583 38.8667 33.5996 39.1 33.6163C38.0834 37.8996 37.65 42.1996 37.55 46.533C32.8667 46.5163 28.2667 46.5163 23.6167 46.5163ZM59.9834 33.633C60.1334 33.5996 60.2 33.583 60.2667 33.583C63.8334 33.583 67.4167 33.5663 70.9834 33.5996C71.2 33.5996 71.5 33.8163 71.6334 34.0163C73 36.1996 74 38.533 74.6334 41.033C75.1 42.8163 75.4 44.633 75.4167 46.533C70.7667 46.533 66.1667 46.533 61.5167 46.533C61.4167 42.1663 61 37.883 59.9834 33.633ZM57.3334 31.5496C52.1 31.5496 46.95 31.5496 41.7334 31.5496C42.4667 29.1663 43.3667 26.9163 44.8 24.933C45.35 24.1663 45.9834 23.433 46.7 22.7996C48.45 21.2496 50.4167 21.233 52.2334 22.683C52.8334 23.1663 53.3667 23.733 53.8334 24.333C55.5167 26.4663 56.5167 28.9496 57.3334 31.5496ZM44.3667 22.233C41.9834 24.983 40.6834 28.2163 39.65 31.533C36.1334 31.533 32.6834 31.533 29.2 31.533C31.9167 27.3663 40.0334 22.383 44.3667 22.233ZM69.95 31.5496C69.75 31.5663 69.6667 31.583 69.6 31.583C66.35 31.583 63.1167 31.5663 59.8667 31.5996C59.4334 31.5996 59.3667 31.3663 59.2834 31.0663C58.2834 27.933 57.0334 24.9496 54.8834 22.4163C54.85 22.383 54.85 22.3163 54.8334 22.1663C60.95 23.533 65.9334 26.6163 69.95 31.5496Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.5"/>
|
||||||
|
<path d="M31.5834 66.5499C43.5667 66.5499 55.5 66.5499 67.5334 66.5499C67.5334 67.2832 67.55 68.0332 67.5167 68.7665C67.5167 68.9165 67.3 69.0832 67.1334 69.1832C65.85 69.9665 64.5834 70.7499 63.2834 71.4999C62.75 71.7999 62.5334 72.1999 62.5334 72.8165C62.55 74.6332 62.5334 76.4332 62.55 78.2499C62.55 79.0332 62.9167 79.4999 63.5334 79.4999C64.15 79.4999 64.5334 79.0499 64.5334 78.2665C64.5334 76.6832 64.5167 75.0999 64.55 73.5332C64.55 73.2999 64.7334 72.9832 64.9334 72.8665C66.2 72.0665 67.4834 71.2999 68.7834 70.5499C69.3167 70.2499 69.55 69.8499 69.55 69.2332C69.5167 68.0665 69.55 66.8999 69.5334 65.7332C69.5334 64.8832 69.1667 64.5332 68.3167 64.5332C55.8167 64.5332 43.3167 64.5332 30.8167 64.5332C29.9667 64.5332 29.6167 64.8999 29.6167 65.7499C29.6167 66.9165 29.6334 68.0832 29.6 69.2499C29.5834 69.8332 29.8167 70.2332 30.3167 70.5165C31.5834 71.2665 32.85 72.0499 34.1167 72.7832C34.5 72.9999 34.6167 73.2499 34.6 73.6665C34.5667 75.1832 34.5834 76.6999 34.5834 78.2165C34.5834 79.0332 34.9667 79.5165 35.6167 79.4999C36.2334 79.4832 36.5834 79.0332 36.5834 78.2332C36.5834 76.4499 36.5667 74.6499 36.6 72.8665C36.6167 72.2332 36.3834 71.8165 35.8334 71.4999C34.55 70.7665 33.3 69.9832 32.0334 69.2332C31.7 69.0499 31.5667 68.8165 31.6 68.4499C31.6 67.8332 31.5834 67.1999 31.5834 66.5499Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.5"/>
|
||||||
|
<path d="M49.5333 52.5497C53.9333 52.5497 57.5333 48.983 57.5333 44.5997C57.5333 40.1663 53.9667 36.5997 49.5333 36.583C45.1333 36.583 41.55 40.183 41.5667 44.633C41.5833 48.9663 45.2 52.5497 49.5333 52.5497ZM49.55 50.5497C46.2833 50.5497 43.5667 47.883 43.5667 44.633C43.55 41.2997 46.2333 38.583 49.55 38.583C52.8333 38.5663 55.5333 41.2663 55.5333 44.5663C55.55 47.8663 52.8667 50.5497 49.55 50.5497Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.5"/>
|
||||||
|
<path d="M50.65 53.5166C46.4167 53.5833 43.3 53.8333 40.35 54.9499C39.45 55.2833 38.5833 55.7833 37.7833 56.3333C36.9333 56.9166 36.5333 57.7833 36.5667 58.8666C36.6 60.0166 36.5667 61.1499 36.5833 62.2999C36.5833 63.0833 36.9667 63.5333 37.6 63.5333C38.2167 63.5166 38.5833 63.0666 38.5833 62.2833C38.5833 61.2166 38.6333 60.1666 38.5667 59.0999C38.5167 58.3666 38.85 57.9166 39.4167 57.5833C40.6833 56.8166 42.0667 56.3999 43.5 56.1333C48.1333 55.2666 52.7667 55.2833 57.3333 56.5833C58.2333 56.8333 59.0833 57.3333 59.9333 57.7666C60.3833 57.9999 60.5667 58.4166 60.55 58.9666C60.5167 60.0833 60.5333 61.2166 60.5333 62.3333C60.5333 63.0999 60.9333 63.5666 61.55 63.5499C62.15 63.5333 62.5167 63.0833 62.5167 62.3499C62.5167 61.2333 62.4833 60.0999 62.5333 58.9833C62.5833 57.7833 62.0833 56.8999 61.15 56.2166C59.6667 55.1166 57.9333 54.5499 56.15 54.2499C53.9833 53.8499 51.7667 53.6499 50.65 53.5166Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.5"/>
|
||||||
|
<path d="M39.9669 72.7666C39.7673 72.7666 39.65 72.7515 39.5157 72.7783L39.5128 72.7793C39.2822 72.8225 39.1195 72.9077 39.0157 73.0186C38.9153 73.126 38.8498 73.2787 38.8497 73.5C38.8497 73.7246 38.9132 73.8841 39.0128 73.998C39.1138 74.1135 39.2719 74.2035 39.4982 74.2539C39.6506 74.2811 39.7883 74.2666 40.0167 74.2666H59.0167C59.2314 74.2666 59.3907 74.283 59.5607 74.2676C59.989 74.2286 60.2696 73.9291 60.2833 73.5283C60.2809 73.1463 60.0155 72.8343 59.59 72.7812L59.589 72.7822C59.4549 72.7673 59.335 72.7666 59.1837 72.7666H39.9669Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.5"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_11520_41098">
|
||||||
|
<rect width="64" height="64" fill="white" transform="matrix(-1 0 0 1 81.5 17.5)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 6.8 KiB |
|
After Width: | Height: | Size: 7.6 KiB |
|
|
@ -0,0 +1,57 @@
|
||||||
|
<svg width="408" height="275" viewBox="0 0 408 275" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M32.4451 154.012C36.6689 118.201 66.3357 85.6974 93.9913 62.2645C125.368 35.6191 164.286 16.1546 206.223 9.63502C241.722 4.15475 276.116 12.6586 303.872 32.0285C312.118 37.7923 319.862 44.5009 326.801 52.0598C334.847 60.8473 342.187 70.8629 348.221 81.6344C360.29 102.894 367.43 127.083 365.82 150.516C365.116 161.665 362.905 172.815 359.284 183.491C350.435 208.814 332.836 230.642 310.208 246.609C302.564 251.995 293.915 256.72 284.664 260.311C265.255 267.869 243.331 270.137 224.223 261.254C202.402 251.05 193.049 222.421 168.109 218.546C156.04 216.657 144.274 221.57 132.508 224.594C109.68 230.452 78.4036 233.476 59.3968 218.735C38.5796 202.672 29.5288 178.768 32.4451 154.012Z" fill="#E6F2F6"/>
|
||||||
|
<path d="M400 248.784C400 263.013 390.453 274.299 378.673 274.299C378.47 274.299 376.643 274.299 364.05 274.299C355.115 274.299 340.897 274.299 318.355 274.299H307.59C293.374 274.79 282 261.051 282 244.367C282 227.682 293.374 213.943 307.793 214.68C320.182 168.064 376.643 174.687 381.517 222.776C392.078 224.74 400 235.534 400 248.784Z" fill="url(#paint0_linear_11721_3838)"/>
|
||||||
|
<path d="M378.674 274.543C390.455 274.543 400 263.012 400 249.027C400 234.796 390.455 223.51 378.674 223.51C366.894 223.51 357.349 235.041 357.349 249.027C357.349 263.012 366.894 274.543 378.674 274.543Z" fill="url(#paint1_linear_11721_3838)"/>
|
||||||
|
<path d="M343.942 274.788C364.861 274.788 381.922 254.424 381.922 229.153C381.922 203.882 364.861 183.52 343.942 183.52C323.023 183.52 305.964 203.882 305.964 229.153C305.964 254.18 322.822 274.788 343.942 274.788Z" fill="url(#paint2_linear_11721_3838)"/>
|
||||||
|
<path d="M132 67.7426C132 82.4475 122.152 94.1786 109.98 94.1786C109.706 94.1786 107.928 94.1786 94.7983 94.1786C85.6344 94.1786 71 94.1786 47.6121 94.1786H36.3968C21.7623 94.5091 10 80.465 10 63.2814C10 46.098 21.7623 31.8888 36.6703 32.7148C49.3901 -15.3656 107.928 -8.59148 112.852 41.1414C123.794 42.7936 132 54.0288 132 67.7426Z" fill="url(#paint3_linear_11721_3838)"/>
|
||||||
|
<path d="M109.978 94.1796C122.151 94.1796 131.998 82.2835 131.998 67.7436C131.998 53.2037 122.151 41.3076 109.978 41.3076C97.8052 41.3076 87.9577 53.2037 87.9577 67.7436C87.9577 82.2835 97.8052 94.1796 109.978 94.1796Z" fill="url(#paint4_linear_11721_3838)"/>
|
||||||
|
<path d="M74.0083 94.5088C95.6182 94.5088 113.262 73.3601 113.262 47.2544C113.262 21.1489 95.6182 0 74.0083 0C52.3984 0 34.7551 21.1489 34.7551 47.2544C34.7551 73.3601 52.2618 94.5088 74.0083 94.5088Z" fill="url(#paint5_linear_11721_3838)"/>
|
||||||
|
<path d="M205.63 216.891C251.161 216.891 288.072 179.986 288.072 134.3C288.072 88.6141 250.998 51.708 205.63 51.708C160.1 51.708 123.188 88.6141 123.188 134.3C123.188 179.986 160.1 216.891 205.63 216.891Z" fill="white"/>
|
||||||
|
<path d="M297.026 49.0957H282.179" stroke="#D6DCE8" stroke-width="0.308157" stroke-miterlimit="10"/>
|
||||||
|
<path d="M298.539 108.131C302.221 108.131 305.207 105.146 305.207 101.465C305.207 97.7832 302.221 94.7988 298.539 94.7988C294.858 94.7988 291.872 97.7832 291.872 101.465C291.872 105.146 294.858 108.131 298.539 108.131Z" fill="#C8E0F4"/>
|
||||||
|
<path d="M308.296 82.1192C310.81 82.1192 312.849 80.0811 312.849 77.567C312.849 75.0529 310.81 73.0146 308.296 73.0146C305.78 73.0146 303.741 75.0529 303.741 77.567C303.741 80.0811 305.78 82.1192 308.296 82.1192Z" fill="#C8E0F4"/>
|
||||||
|
<path d="M126.928 80.1583C129.443 80.1583 131.481 78.1202 131.481 75.6059C131.481 73.0918 129.443 71.0537 126.928 71.0537C124.413 71.0537 122.375 73.0918 122.375 75.6059C122.375 78.1202 124.413 80.1583 126.928 80.1583Z" fill="#F1F3F9"/>
|
||||||
|
<path d="M99.1223 167.953C103.792 167.953 107.578 164.167 107.578 159.498C107.578 154.829 103.792 151.044 99.1223 151.044C94.4523 151.044 90.6666 154.829 90.6666 159.498C90.6666 164.167 94.4523 167.953 99.1223 167.953Z" fill="#C8E0F4"/>
|
||||||
|
<g filter="url(#filter0_d_11721_3838)">
|
||||||
|
<path d="M138.979 124.329C138.979 105.154 138.979 95.5666 144.936 89.6095C150.893 83.6523 160.48 83.6523 179.656 83.6523H233.891C253.066 83.6523 262.654 83.6523 268.611 89.6095C274.568 95.5666 274.568 105.154 274.568 124.329C274.568 143.504 274.568 153.092 268.611 159.049C262.654 165.006 253.066 165.006 233.891 165.006H179.656C160.48 165.006 150.893 165.006 144.936 159.049C138.979 153.092 138.979 143.504 138.979 124.329Z" fill="#B0D7E4"/>
|
||||||
|
</g>
|
||||||
|
<path d="M206.696 137.888C214.142 137.888 220.178 131.852 220.178 124.406C220.178 116.96 214.142 110.924 206.696 110.924C199.25 110.924 193.214 116.96 193.214 124.406C193.214 131.852 199.25 137.888 206.696 137.888Z" fill="#007EA7"/>
|
||||||
|
<path d="M171.044 70.0449C171.044 50.4083 187.006 34.4897 206.696 34.4897C226.387 34.4897 242.348 50.4083 242.348 70.0449V83.6141C246.202 83.65 249.571 83.7387 252.535 83.9595V70.0449C252.535 44.7978 232.012 24.3311 206.696 24.3311C181.381 24.3311 160.858 44.7978 160.858 70.0449V83.9595C163.822 83.7387 167.191 83.65 171.044 83.6141V70.0449Z" fill="#007EA7"/>
|
||||||
|
<defs>
|
||||||
|
<filter id="filter0_d_11721_3838" x="130.659" y="79.1841" width="152.23" height="97.994" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||||
|
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||||
|
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||||
|
<feMorphology radius="0.616314" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_11721_3838"/>
|
||||||
|
<feOffset dy="3.85196"/>
|
||||||
|
<feGaussianBlur stdDeviation="3.85196"/>
|
||||||
|
<feComposite in2="hardAlpha" operator="out"/>
|
||||||
|
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||||
|
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_11721_3838"/>
|
||||||
|
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_11721_3838" result="shape"/>
|
||||||
|
</filter>
|
||||||
|
<linearGradient id="paint0_linear_11721_3838" x1="341.023" y1="220.987" x2="340.968" y2="275.428" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="white"/>
|
||||||
|
<stop offset="0.9964" stop-color="#ECEFF3"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint1_linear_11721_3838" x1="355.119" y1="217.633" x2="377.935" y2="238.291" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#BECADE"/>
|
||||||
|
<stop offset="0.9942" stop-color="white" stop-opacity="0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint2_linear_11721_3838" x1="302.018" y1="209.158" x2="333.112" y2="219.231" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#E2E7EE"/>
|
||||||
|
<stop offset="0.9942" stop-color="white" stop-opacity="0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint3_linear_11721_3838" x1="71.022" y1="38.963" x2="70.964" y2="95.2415" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="white"/>
|
||||||
|
<stop offset="0.9964" stop-color="#ECEFF3"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint4_linear_11721_3838" x1="85.5905" y1="35.4998" x2="109.177" y2="56.8533" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#BECADE"/>
|
||||||
|
<stop offset="0.9942" stop-color="white" stop-opacity="0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint5_linear_11721_3838" x1="30.6995" y1="26.7363" x2="62.8436" y2="37.1492" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#E2E7EE"/>
|
||||||
|
<stop offset="0.9942" stop-color="white" stop-opacity="0"/>
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 7.0 KiB |
|
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="64" height="64" rx="32" fill="#007EA7"/>
|
||||||
|
<path d="M46.7981 45.9899C47.1981 46.3232 46.9649 46.9899 46.4482 46.9899C44.7315 47.0565 42.0985 46.8232 40.4818 45.1065C39.1651 45.5732 37.6983 45.8066 36.165 45.8066C32.8017 45.8066 29.81 44.6782 27.8317 42.6132C27.5167 42.2832 27.5967 41.6415 28.3183 41.6981C28.7067 41.7248 29.0983 41.7398 29.4983 41.7398C37.1983 41.7398 43.0233 37.2381 44.255 30.7248C44.3383 30.2881 44.8817 30.1432 45.1551 30.4949C46.3217 32.0049 46.9967 33.9133 46.9967 36.1716C46.9967 38.7216 46.1131 40.8566 44.6464 42.4399C44.8314 43.6066 45.4815 44.9232 46.7981 45.9899ZM41.9967 28.1182C41.9967 35.0665 36.4 39.2366 29.4983 39.2366C28.1633 39.2366 26.8833 39.0799 25.6816 38.7782C25.2833 38.6782 24.8934 38.5615 24.5118 38.4315C22.6501 40.4182 19.6101 40.6831 17.6368 40.6131C17.0401 40.5998 16.7748 39.8349 17.2331 39.4465C18.7464 38.2232 19.4967 36.6948 19.705 35.3598C18.01 33.5248 16.9967 31.0648 16.9967 28.1198C16.9967 21.1715 22.5934 17.0015 29.4951 17.0015C36.3201 17.0015 41.8583 21.0832 41.9816 27.8932C41.9866 27.9682 41.9967 28.0399 41.9967 28.1182ZM32.1383 30.8882C32.1383 30.1982 31.5783 29.6382 30.8883 29.6382H23.9449C23.2549 29.6382 22.6949 30.1982 22.6949 30.8882C22.6949 31.5782 23.2549 32.1382 23.9449 32.1382H30.8883C31.5783 32.1382 32.1383 31.5799 32.1383 30.8882ZM36.305 25.3332C36.305 24.6432 35.745 24.0832 35.055 24.0832H23.9449C23.2549 24.0832 22.6949 24.6432 22.6949 25.3332C22.6949 26.0232 23.2549 26.5832 23.9449 26.5832H35.055C35.745 26.5832 36.305 26.0232 36.305 25.3332Z" fill="white"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
|
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="13" height="15" viewBox="0 0 13 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M9.43701 14.375H3.12501C2.42882 14.375 1.76114 14.0984 1.26886 13.6062C0.776573 13.1139 0.500011 12.4462 0.500011 11.75V7.6025C0.499762 6.9064 0.776015 6.23869 1.26801 5.74625L5.74476 1.26875C5.98853 1.025 6.27793 0.831657 6.59643 0.699754C6.91492 0.567852 7.25628 0.499975 7.60101 0.5H9.43701C10.1332 0.5 10.8009 0.776562 11.2932 1.26884C11.7854 1.76113 12.062 2.42881 12.062 3.125V11.75C12.062 12.4462 11.7854 13.1139 11.2932 13.6062C10.8009 14.0984 10.1332 14.375 9.43701 14.375Z" stroke="#666666" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.45317 3.7937C7.63242 3.8522 7.74717 3.9707 7.78017 4.10195C7.84767 4.36595 7.78017 4.64945 7.59042 5.0042C7.49592 5.1797 7.38042 5.35745 7.25292 5.54795L7.18392 5.6507L7.07517 5.81195L7.06092 5.76095L6.99642 5.53145C6.92242 5.27995 6.86492 5.02495 6.82392 4.76645C6.75717 4.28495 6.83217 4.00295 7.05567 3.82145C7.11567 3.7727 7.26417 3.7322 7.45317 3.7937ZM7.41192 6.9077L7.61442 6.6362L7.63842 6.6002C7.72467 6.4577 7.82067 6.3152 7.92492 6.16145L7.99992 6.0497C8.13793 5.84906 8.26608 5.64181 8.38392 5.4287C8.61642 4.9952 8.80242 4.4642 8.65242 3.87845C8.52492 3.38045 8.12892 3.0677 7.73217 2.93795C7.34442 2.81195 6.85167 2.8277 6.48717 3.1232C5.89317 3.6062 5.85117 4.30295 5.93292 4.89095C5.97847 5.18849 6.04386 5.48265 6.12867 5.77145L6.20067 6.02645C6.25667 6.21745 6.30867 6.4097 6.35667 6.6032L6.40692 6.7487L5.36292 8.1467C4.87542 8.0882 4.33992 8.05295 3.84042 8.08895C3.26367 8.12945 2.64417 8.27045 2.22192 8.67095C2.08606 8.81192 1.98775 8.98474 1.93599 9.17355C1.88423 9.36237 1.88068 9.56116 1.92567 9.7517C2.01342 10.1117 2.26617 10.4117 2.61492 10.594C3.35367 10.9802 4.04142 10.6727 4.55217 10.282C4.95192 9.9767 5.33592 9.5507 5.65917 9.1922L5.73717 9.1067C6.01467 9.14945 6.27717 9.19745 6.49017 9.23795C6.71892 9.2807 7.00317 9.33395 7.31217 9.40295L7.42542 9.7352C7.48792 9.8792 7.54742 10.0242 7.60392 10.1702L7.69542 10.3975C7.78776 10.6314 7.89472 10.8594 8.01567 11.08C8.26317 11.5135 8.65842 11.974 9.32142 12.0107C10.2094 12.0602 10.8109 11.272 10.6384 10.4297L10.6339 10.4095C10.4839 9.8162 9.96342 9.42695 9.46017 9.1697C9.01242 8.9402 8.48967 8.7707 8.00442 8.64395L7.41192 6.9077ZM6.75942 7.78145L6.97467 8.4137L6.65892 8.3537L6.65592 8.35295L6.37092 8.30045L6.75942 7.78145ZM4.62942 8.98445C4.42392 9.20195 4.21917 9.40445 4.00617 9.5672C3.59367 9.8822 3.30117 9.93695 3.03192 9.79595C2.88192 9.7172 2.81892 9.6152 2.80017 9.53945C2.79108 9.49883 2.79178 9.45664 2.80222 9.41634C2.81265 9.37605 2.83251 9.33881 2.86017 9.3077C3.05292 9.1367 3.40167 9.0227 3.90417 8.9867C4.14566 8.97133 4.38785 8.97058 4.62942 8.98445ZM8.38317 9.6947C8.62167 9.77645 8.84817 9.8672 9.05067 9.9707C9.49092 10.1957 9.70317 10.4237 9.75867 10.621C9.81717 10.9322 9.61467 11.1257 9.37167 11.1122C9.16917 11.101 8.99217 10.9742 8.79717 10.633C8.69517 10.447 8.60567 10.2552 8.52867 10.0577L8.44842 9.8582L8.38317 9.6947Z" fill="#666666"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.0 KiB |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="23" height="23" viewBox="0 0 23 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.7132 1.92049C11.7684 1.80132 11.7996 1.67243 11.8051 1.54119C11.8105 1.40995 11.79 1.27893 11.7448 1.1556C11.6996 1.03228 11.6305 0.919077 11.5415 0.822457C11.4525 0.725837 11.3454 0.647694 11.2262 0.592493C9.60016 -0.161507 7.66016 -0.222507 5.56417 0.563493C3.89767 1.18799 2.51967 1.09099 1.44517 0.592493C1.32602 0.537239 1.19717 0.505993 1.06595 0.500539C0.934731 0.495085 0.803724 0.515529 0.680408 0.560705C0.557091 0.60588 0.443881 0.674903 0.34724 0.763831C0.250598 0.852759 0.172419 0.959851 0.117165 1.07899C0.0619114 1.19813 0.0306655 1.32699 0.0252114 1.45821C0.0197572 1.58943 0.0402016 1.72043 0.0853773 1.84375C0.130553 1.96707 0.199575 2.08028 0.288503 2.17692C0.377431 2.27356 0.484523 2.35174 0.603665 2.40699C2.23017 3.16099 4.17017 3.22199 6.26616 2.43599C7.93216 1.81149 9.31017 1.90849 10.3852 2.40699C10.5043 2.46226 10.6332 2.49351 10.7644 2.49897C10.8956 2.50443 11.0266 2.48398 11.1499 2.43881C11.2733 2.39363 11.3865 2.3246 11.4831 2.23567C11.5797 2.14674 11.6579 2.03964 11.7132 1.92049ZM18.4822 6.24549C18.6357 7.60599 18.8137 9.27349 18.9907 11.122H13.6832C13.8602 9.27349 14.0382 7.60599 14.1912 6.24549H18.4822ZM13.0112 3.43849C12.8332 4.88399 12.5012 7.70349 12.1762 11.122H10.7552C10.7322 10.217 10.7017 9.47899 10.6727 8.77549L10.6702 8.71849C10.6052 7.14649 9.06017 5.92649 7.46867 6.55249C4.63117 7.66899 2.65217 9.04999 1.49967 10.0025C0.467165 10.856 0.0246652 12.128 0.0246652 13.349C0.0246652 13.828 0.0181652 14.312 0.0121652 14.8C-0.00883484 16.517 -0.0303349 18.2865 0.203165 20.083C0.399165 21.591 1.64967 22.5495 3.03067 22.6085C4.56067 22.6735 7.23566 22.752 11.2537 22.752C15.2717 22.752 17.9477 22.6735 19.4772 22.6085C20.8582 22.5495 22.1087 21.591 22.3047 20.083C22.5257 18.381 22.5082 16.5605 22.4917 14.879V14.877C22.4877 14.4485 22.4837 14.029 22.4837 13.6225C22.4837 12.4285 21.6482 11.397 20.5017 11.169C20.2567 8.58868 19.977 6.01178 19.6627 3.43899C19.5477 2.50099 18.8367 1.69399 17.8292 1.58299C17.3335 1.52843 16.8353 1.50039 16.3367 1.49899C15.7772 1.49899 15.2632 1.53699 14.8447 1.58299C13.8372 1.69449 13.1267 2.50099 13.0112 3.43849ZM8.20117 8.41349C8.24858 8.39337 8.30044 8.38601 8.35158 8.39215C8.40272 8.39829 8.45136 8.41772 8.49267 8.44849C8.58467 8.51299 8.66467 8.63249 8.67167 8.80099L8.67416 8.85549C8.71316 9.79549 8.75417 10.7795 8.77567 12.138C8.77986 12.4004 8.88707 12.6507 9.07416 12.8348C9.26124 13.0189 9.5132 13.122 9.77567 13.122H20.0232C20.2522 13.122 20.4832 13.32 20.4832 13.6225C20.4832 14.074 20.4877 14.5245 20.4917 14.9725C20.5077 16.6385 20.5227 18.2755 20.3217 19.825C20.2652 20.2585 19.9167 20.588 19.3917 20.61C17.8932 20.674 15.2467 20.752 11.2537 20.752C10.6683 20.752 10.1113 20.7503 9.58267 20.747C9.58533 20.4437 9.58667 20.1058 9.58667 19.7335C9.58667 18.5275 9.57016 17.695 9.55066 17.131C9.52067 16.272 9.05217 15.239 7.89917 15.061C7.60517 15.0155 7.25417 14.987 6.83667 14.987C6.41917 14.987 6.06867 15.0155 5.77466 15.061C4.62167 15.239 4.15267 16.272 4.12317 17.131C4.10317 17.695 4.08667 18.5275 4.08667 19.7335C4.08667 20.0652 4.08783 20.3698 4.09017 20.6475C3.72383 20.6348 3.399 20.6225 3.11567 20.6105C2.59067 20.588 2.24267 20.2585 2.18667 19.8255C1.97317 18.183 1.99167 16.6015 2.01167 14.9105C2.01817 14.402 2.02417 13.8825 2.02417 13.349C2.02417 12.584 2.29917 11.9365 2.77367 11.544C3.79317 10.702 5.59166 9.43999 8.20066 8.41399M11.8362 15.6125C11.8362 15.3473 11.9415 15.0929 12.1291 14.9054C12.3166 14.7178 12.5709 14.6125 12.8362 14.6125H17.8362C18.1014 14.6125 18.3557 14.7178 18.5433 14.9054C18.7308 15.0929 18.8362 15.3473 18.8362 15.6125C18.8362 15.8777 18.7308 16.1321 18.5433 16.3196C18.3557 16.5071 18.1014 16.6125 17.8362 16.6125H12.8362C12.5709 16.6125 12.3166 16.5071 12.1291 16.3196C11.9415 16.1321 11.8362 15.8777 11.8362 15.6125ZM12.8362 17.485C12.5709 17.485 12.3166 17.5903 12.1291 17.7779C11.9415 17.9654 11.8362 18.2198 11.8362 18.485C11.8362 18.7502 11.9415 19.0046 12.1291 19.1921C12.3166 19.3796 12.5709 19.485 12.8362 19.485H17.8362C18.1014 19.485 18.3557 19.3796 18.5433 19.1921C18.7308 19.0046 18.8362 18.7502 18.8362 18.485C18.8362 18.2198 18.7308 17.9654 18.5433 17.7779C18.3557 17.5903 18.1014 17.485 17.8362 17.485H12.8362ZM11.2262 3.58999C11.4668 3.70158 11.6533 3.90421 11.7446 4.15331C11.8359 4.4024 11.8245 4.67756 11.7129 4.91824C11.6013 5.15893 11.3987 5.34542 11.1496 5.43671C10.9005 5.52799 10.6253 5.51658 10.3847 5.40499C9.30966 4.90649 7.93166 4.80949 6.26567 5.43399C4.16967 6.21949 2.22917 6.15899 0.603165 5.40499C0.362481 5.2934 0.175984 5.09077 0.0847006 4.84168C-0.00658277 4.59258 0.00482527 4.31743 0.116415 4.07674C0.228005 3.83606 0.430636 3.64956 0.679731 3.55828C0.928826 3.46699 1.20398 3.4784 1.44467 3.58999C2.51967 4.08849 3.89716 4.18549 5.56366 3.56099C7.66016 2.77599 9.60016 2.83599 11.2262 3.58999Z" fill="#666666"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4.8 KiB |
|
|
@ -0,0 +1,6 @@
|
||||||
|
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M2.83671 27.9997C2.48808 27.863 2.38554 27.5895 2.41288 27.2341C2.54276 25.2243 4.16972 23.6589 6.17265 23.6247C6.5623 23.6178 6.95194 23.6178 7.34843 23.6247C7.49198 23.6247 7.55351 23.5768 7.59452 23.4401C8.05937 21.9362 8.53105 20.4323 9.00956 18.9352C9.06425 18.7575 8.98905 18.6891 8.87968 18.6003C7.81327 17.7321 6.91776 16.7067 6.19999 15.5309C5.33866 14.1159 4.80546 12.5983 4.6414 10.944C4.46366 9.23504 4.68925 7.58758 5.40702 6.01531C5.83769 5.07879 6.41874 4.2448 7.15019 3.52703C7.6287 3.05535 8.24394 2.9323 8.88651 2.95965C9.9119 3.0075 10.8553 3.36297 11.7644 3.8073C12.9744 4.39519 14.0682 5.16082 15.1277 5.98113C15.4285 6.21355 15.49 6.53484 15.2918 6.78777C15.1004 7.0407 14.7859 7.06804 14.4646 6.84929C13.7469 6.35027 13.0496 5.8239 12.3113 5.3659C11.4295 4.81902 10.4998 4.34734 9.47441 4.14226C9.12577 4.0739 8.7498 4.06023 8.39433 4.10125C7.92265 4.15594 7.7039 4.4157 7.62187 4.88738C7.51933 5.50262 7.67655 6.08367 7.8748 6.65105C8.36015 8.03875 9.14628 9.26238 10.0076 10.445C10.2058 10.7184 10.4178 10.9782 10.6365 11.2585C11.6551 10.5407 12.701 10.4723 13.7947 11.1012C14.3621 10.5339 14.9226 9.96648 15.49 9.3991C15.8045 9.08465 16.1189 8.76336 16.4402 8.45574C16.5701 8.33269 16.618 8.23015 16.5496 8.03875C16.2146 7.09539 16.7342 6.07683 17.6775 5.78972C18.6482 5.49578 19.6394 6.02898 19.8924 7.01336C20.0701 7.67644 19.8992 8.27117 19.407 8.73601C18.908 9.21453 18.2996 9.3239 17.6365 9.12566C17.534 9.09832 17.3699 9.08465 17.3084 9.14617C16.3924 10.0417 15.49 10.9577 14.574 11.8737C15.1892 12.9606 15.1414 14.0134 14.3963 15.0593C14.9978 15.4968 15.5789 15.9479 16.1873 16.3581C17.2195 17.0485 18.2928 17.6637 19.5027 17.9782C19.8719 18.0739 20.2752 18.1149 20.658 18.1081C21.3006 18.0876 21.6219 17.7116 21.6355 17.069C21.6492 16.3444 21.4646 15.654 21.1502 15.0182C20.7537 14.2048 20.282 13.4255 19.8445 12.6257C19.783 12.5163 19.7078 12.4069 19.6668 12.2907C19.5779 12.0514 19.6736 11.7917 19.8719 11.6618C20.0838 11.5251 20.3641 11.5593 20.5486 11.737C20.5691 11.7575 20.5896 11.7712 20.6033 11.7985C21.5398 13.193 22.4012 14.6354 22.6746 16.3307C22.7498 16.7887 22.7019 17.2809 22.6267 17.7389C22.4969 18.4704 21.909 18.8874 21.3689 19.2975C19.0584 21.068 16.4607 21.4919 13.6512 20.9313C13.3846 20.8766 13.1248 20.8083 12.8445 20.7399C12.8445 21.7038 12.8445 22.6471 12.8445 23.6384C13.0359 23.6384 13.2273 23.6315 13.4119 23.6384C14.1297 23.6725 14.8611 23.6178 15.5516 23.7682C17.1853 24.1237 18.3543 25.5934 18.45 27.2477C18.4705 27.61 18.368 27.8698 18.0193 28.0065C12.9539 27.9997 7.8953 27.9997 2.83671 27.9997ZM6.56913 6.11785C6.52812 6.19305 6.50077 6.2409 6.47343 6.28875C5.53007 8.20965 5.37968 10.2399 5.97441 12.2497C7.23222 16.4675 10.035 19.0788 14.3758 19.9264C16.0984 20.2614 17.7801 20.0153 19.3728 19.2428C19.4275 19.2155 19.4822 19.1745 19.5711 19.113C18.5252 18.8874 17.6092 18.4636 16.7342 17.9645C14.5808 16.7409 12.7078 15.155 11.033 13.3366C9.08476 11.238 7.35526 8.98894 6.56913 6.11785ZM17.2742 26.8923C17.0486 25.6208 15.9207 24.7184 14.5398 24.7184C11.7918 24.7116 9.05058 24.7116 6.30253 24.7253C6.00858 24.7253 5.70097 24.7731 5.41386 24.8552C4.49101 25.1081 3.68437 26.0241 3.58183 26.8991C8.15507 26.8923 12.7146 26.8923 17.2742 26.8923ZM8.68827 23.6042C9.7205 23.6042 10.7254 23.6042 11.7439 23.6042C11.7439 22.5446 11.7439 21.5124 11.7371 20.4733C11.7371 20.4118 11.6824 20.3161 11.6277 20.2887C11.0877 20.0085 10.5476 19.735 9.9871 19.4548C9.55644 20.8288 9.11894 22.2165 8.68827 23.6042ZM13.5144 14.3483C14.0818 13.6647 13.9998 12.7214 13.3846 12.1745C12.7967 11.6481 11.8601 11.6208 11.3475 12.1745C12.0652 12.8923 12.7898 13.6169 13.5144 14.3483ZM18.2107 8.12078C18.5799 8.11394 18.867 7.82 18.867 7.45769C18.867 7.09539 18.5662 6.79461 18.2039 6.79461C17.8348 6.78777 17.5203 7.10906 17.534 7.4782C17.5476 7.84051 17.8484 8.12078 18.2107 8.12078Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.3"/>
|
||||||
|
<path d="M18.7163 0.150391C19.1525 0.225834 19.5606 0.271986 19.9712 0.37793H19.9722C22.8275 1.09826 24.9538 3.44013 25.4067 6.32617L25.4448 6.60742C25.4715 6.84774 25.4849 7.08903 25.4917 7.33203V7.33301C25.4977 7.50559 25.4559 7.63234 25.3921 7.71289C25.3306 7.7904 25.2389 7.83814 25.1128 7.84082H25.1118C24.9892 7.84333 24.8948 7.80292 24.8286 7.7334C24.7611 7.66233 24.7105 7.54807 24.7046 7.38477C24.6628 6.20211 24.3846 5.08063 23.7456 4.06934H23.7446C22.5365 2.16285 20.7917 1.12553 18.5435 0.964844H18.5415C18.4807 0.961267 18.4126 0.960518 18.3589 0.958984C18.3012 0.957334 18.2497 0.954601 18.2026 0.946289L18.1978 0.945312L18.1235 0.930664C18.0543 0.913418 17.9983 0.8875 17.9556 0.853516C17.9009 0.80998 17.8589 0.747036 17.8384 0.652344L17.8374 0.649414L17.8257 0.575195C17.8192 0.505536 17.8293 0.447101 17.8511 0.397461C17.8806 0.330496 17.9365 0.265907 18.0288 0.209961L18.0278 0.208984C18.0595 0.19221 18.0879 0.174188 18.1118 0.15625C18.3159 0.150875 18.5151 0.150392 18.7163 0.150391Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.3"/>
|
||||||
|
<path d="M18.1113 3.10352C18.5871 3.11712 19.0569 3.15088 19.4961 3.27539C21.115 3.73263 22.3267 5.20115 22.5371 6.86914L22.5664 7.20508C22.5761 7.44989 22.5412 7.60471 22.4834 7.69629C22.4325 7.77679 22.3519 7.82677 22.209 7.83496C22.0676 7.84296 21.977 7.80037 21.9141 7.72266C21.8444 7.63659 21.7922 7.48712 21.7793 7.25195L21.7783 7.25C21.6677 5.49713 20.3789 4.11465 18.6572 3.90039L18.4893 3.88379H18.4863C18.431 3.88053 18.3741 3.87562 18.3174 3.86914L18.1484 3.84473C17.9499 3.80897 17.833 3.66883 17.8281 3.48242C17.8255 3.37644 17.8579 3.27612 17.9111 3.20605C17.9496 3.15546 17.997 3.12111 18.0527 3.1084L18.1113 3.10352Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.3"/>
|
||||||
|
<path d="M19.0723 10.1104C19.373 10.1104 19.6055 10.3496 19.5986 10.6504C19.5986 10.9443 19.3525 11.1904 19.0586 11.1836C18.7646 11.1768 18.5254 10.9375 18.5254 10.6367C18.5322 10.3428 18.7715 10.1104 19.0723 10.1104Z" fill="#007EA7"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 5.8 KiB |
|
|
@ -0,0 +1,7 @@
|
||||||
|
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M10.4999 11.8225C10.4222 11.9003 10.3444 11.978 10.2666 12.0558C8.47771 13.8447 6.68882 15.6336 4.89994 17.4225C4.04438 18.278 3.03327 18.278 2.17771 17.4225C1.8666 17.1114 1.47771 16.7225 1.1666 16.4114C0.466602 15.6336 0.466602 14.6225 1.1666 13.9225C3.88882 11.2003 6.53327 8.47805 9.25549 5.8336C9.95549 5.1336 11.0444 5.1336 11.8222 5.8336C12.911 6.84472 13.9222 7.9336 15.011 9.02249C15.0888 9.10027 15.0888 9.17805 15.1666 9.25583C16.3333 8.08916 17.4222 7.00027 18.5888 5.8336C18.1999 5.52249 17.811 5.1336 17.4999 4.74471C17.0333 4.27805 16.8777 3.65583 17.111 3.0336C17.3444 2.41138 17.7333 1.94471 18.4333 1.78916C18.9777 1.6336 19.5999 1.55583 20.2222 1.47805C21.9333 1.16694 23.6444 0.933604 25.2777 0.622492C26.5999 0.389159 27.611 1.40027 27.3777 2.72249C26.9888 4.97805 26.5999 7.2336 26.211 9.48916C26.0555 10.1892 25.7444 10.7336 24.9666 10.9669C24.2666 11.2003 23.6444 10.9669 23.1777 10.5003C22.8666 10.1892 22.4777 9.80027 22.0888 9.41138C22.011 9.48916 22.011 9.64472 21.9333 9.72249C20.1444 11.5114 18.3555 13.3003 16.5666 15.0892C15.7888 15.9447 14.6222 15.9447 13.7666 15.0892C12.7555 13.9225 11.6666 12.9114 10.4999 11.8225ZM19.9888 5.8336C19.8333 5.98916 19.7555 6.22249 19.6777 6.30027C18.3555 7.62249 17.0333 8.94472 15.711 10.2669C15.3222 10.6558 15.011 10.6558 14.6222 10.2669C13.4555 9.10027 12.211 7.85583 11.0444 6.68916C10.6555 6.30027 10.3444 6.30027 9.95549 6.68916C8.8666 7.77805 7.85549 8.78916 6.7666 9.87805C5.21105 11.4336 3.65549 12.9892 2.09993 14.5447C1.63327 15.0114 1.63327 15.2447 2.09993 15.7114C2.33327 15.9447 2.64438 16.2558 2.87771 16.4892C3.34438 16.9558 3.57771 16.9558 4.04438 16.4892C5.98882 14.5447 7.93327 12.6003 9.87771 10.6558C10.2666 10.2669 10.5777 10.2669 10.9666 10.6558C12.1333 11.8225 13.2999 12.9892 14.5444 14.2336C15.011 14.7003 15.2444 14.7003 15.6333 14.2336C17.5777 12.2892 19.5222 10.3447 21.5444 8.32249C21.9333 7.9336 22.2444 7.9336 22.6333 8.32249C23.0999 8.78916 23.4888 9.17805 23.9555 9.64472C24.111 9.87805 24.3444 9.95583 24.6555 9.80027C24.8888 9.72249 25.0444 9.48916 25.0444 9.25583C25.4333 7.00027 25.8222 4.66694 26.211 2.41138C26.2888 1.94471 25.9777 1.6336 25.511 1.71138C23.2555 2.10027 20.9222 2.48916 18.6666 2.87805C18.4333 2.95583 18.1999 3.0336 18.1222 3.26694C18.0444 3.50027 18.1222 3.7336 18.3555 3.96694C18.8222 4.4336 19.2888 4.90027 19.7555 5.36694C19.8333 5.44472 19.911 5.60027 19.9888 5.8336Z" fill="#007EA7"/>
|
||||||
|
<path d="M27.3778 19.7554C27.3778 21.6998 27.3778 23.5665 27.3778 25.5109C27.3778 26.4443 26.8333 27.0665 26.0555 27.2998C25.9 27.2998 25.7444 27.3776 25.5889 27.3776C24.8889 27.3776 24.1889 27.3776 23.4111 27.3776C22.3222 27.3776 21.5444 26.6776 21.5444 25.5109C21.5444 21.6998 21.5444 17.8887 21.5444 14.0776C21.5444 12.9887 22.2444 12.2109 23.4111 12.2109C24.1111 12.2109 24.8111 12.2109 25.5889 12.2109C26.6778 12.2109 27.3778 12.9109 27.3778 13.9998C27.4555 15.9443 27.3778 17.8887 27.3778 19.7554ZM26.2889 19.8332C26.2889 17.8887 26.2889 16.022 26.2889 14.0776C26.2889 13.6109 26.0555 13.3776 25.5889 13.3776C24.8889 13.3776 24.1889 13.3776 23.4111 13.3776C22.9444 13.3776 22.7889 13.6109 22.7889 13.9998C22.7889 17.8109 22.7889 21.622 22.7889 25.5109C22.7889 25.9776 23.0222 26.2109 23.4889 26.2109C24.1889 26.2109 24.8889 26.2109 25.5889 26.2109C26.1333 26.2109 26.3667 25.9776 26.3667 25.5109C26.2889 23.5665 26.2889 21.6998 26.2889 19.8332Z" fill="#007EA7"/>
|
||||||
|
<path d="M13.4555 21.5446C13.4555 22.8668 13.4555 24.1891 13.4555 25.5113C13.4555 26.678 12.7555 27.378 11.5888 27.378C10.8888 27.378 10.1888 27.378 9.48884 27.378C8.39995 27.378 7.69995 26.678 7.69995 25.5891C7.69995 22.9446 7.69995 20.2224 7.69995 17.578C7.69995 16.4891 8.39995 15.7891 9.56662 15.7891C10.2666 15.7891 10.9666 15.7891 11.7444 15.7891C12.8333 15.7891 13.5333 16.4891 13.5333 17.578C13.4555 18.8224 13.4555 20.2224 13.4555 21.5446ZM8.78884 21.5446C8.78884 22.8668 8.78884 24.1891 8.78884 25.5113C8.78884 26.0557 9.02217 26.2113 9.48884 26.2113C10.1888 26.2113 10.8888 26.2113 11.5111 26.2113C11.9777 26.2113 12.2111 25.978 12.2111 25.5113C12.2111 22.8668 12.2111 20.2224 12.2111 17.6557C12.2111 17.1113 11.9777 16.9557 11.5111 16.9557C10.8111 16.9557 10.1888 16.9557 9.48884 16.9557C8.9444 16.9557 8.71106 17.1891 8.71106 17.7335C8.78884 18.9002 8.78884 20.2224 8.78884 21.5446Z" fill="#007EA7"/>
|
||||||
|
<path d="M20.4555 22.089C20.4555 23.2557 20.4555 24.3446 20.4555 25.5113C20.4555 26.6779 19.7555 27.3779 18.5888 27.3779C17.8888 27.3779 17.1888 27.3779 16.4888 27.3779C15.4 27.3779 14.7 26.6779 14.7 25.589C14.7 23.3335 14.7 21.0779 14.7 18.7446C14.7 17.6557 15.4 16.8779 16.5666 16.8779C17.2666 16.8779 17.9666 16.8779 18.6666 16.8779C19.7555 16.8779 20.5333 17.5779 20.5333 18.7446C20.4555 19.8335 20.4555 21.0002 20.4555 22.089ZM19.2888 22.1668C19.2888 21.0002 19.2888 19.9113 19.2888 18.7446C19.2888 18.2779 19.0555 18.0446 18.5888 18.0446C17.8888 18.0446 17.1888 18.0446 16.4888 18.0446C16.0222 18.0446 15.7888 18.2779 15.7888 18.7446C15.7888 21.0002 15.7888 23.2557 15.7888 25.5113C15.7888 25.9779 16.0222 26.2113 16.4888 26.2113C17.1888 26.2113 17.8888 26.2113 18.5888 26.2113C19.1333 26.2113 19.2888 25.9779 19.2888 25.5113C19.2888 24.3446 19.2888 23.2557 19.2888 22.1668Z" fill="#007EA7"/>
|
||||||
|
<path d="M0.622314 23.2554C0.622314 22.4776 0.622314 21.7776 0.622314 20.9998C0.622314 19.9109 1.40009 19.2109 2.48898 19.2109C3.18898 19.2109 3.96676 19.2109 4.66676 19.2109C5.67787 19.2109 6.45565 19.9109 6.45565 20.9998C6.45565 22.5554 6.45565 24.1109 6.45565 25.6665C6.45565 26.6776 5.67787 27.3776 4.66676 27.4554C3.88898 27.4554 3.1112 27.4554 2.4112 27.4554C1.40009 27.4554 0.700092 26.6776 0.622314 25.6665C0.622314 24.8109 0.622314 24.0332 0.622314 23.2554ZM5.28898 23.3332C5.28898 22.5554 5.28898 21.8554 5.28898 21.0776C5.28898 20.6109 5.05565 20.3776 4.58898 20.3776C3.88898 20.3776 3.18898 20.3776 2.48898 20.3776C2.02231 20.3776 1.78898 20.6109 1.78898 21.0776C1.78898 22.5554 1.78898 24.0332 1.78898 25.5109C1.78898 25.9776 2.02231 26.2109 2.48898 26.2109C3.18898 26.2109 3.88898 26.2109 4.58898 26.2109C5.05565 26.2109 5.28898 25.9776 5.28898 25.5109C5.28898 24.8109 5.28898 24.0332 5.28898 23.3332Z" fill="#007EA7"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 6.1 KiB |
|
|
@ -0,0 +1,17 @@
|
||||||
|
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_12104_5819)">
|
||||||
|
<path d="M0 23.7417C0 15.8302 0 7.91146 0 0C9.33333 0 18.6667 0 28 0C28 9.33333 28 18.6667 28 28C18.6667 28 9.33333 28 0 28C0 26.8187 0 25.6375 0 24.449C0.0802083 24.6677 0.13125 24.901 0.240625 25.1052C0.714583 26.024 1.47292 26.4323 2.50104 26.4323C10.15 26.425 17.799 26.4323 25.4479 26.4323C25.5573 26.4323 25.6667 26.4323 25.776 26.425C26.4177 26.3812 26.95 26.1187 27.3656 25.6302C28.0729 24.8062 28.1313 23.8 27.5406 22.7719C24.7771 17.9812 22.0062 13.1906 19.2427 8.39271C18.1781 6.54062 17.1062 4.69583 16.0417 2.84375C15.6333 2.13646 15.0354 1.69896 14.2115 1.63333C13.1469 1.54583 12.3885 2.01979 11.8562 2.93854C8.1375 9.37708 4.41875 15.8156 0.714583 22.2542C0.4375 22.7281 0.233333 23.2458 0 23.7417Z" fill="white"/>
|
||||||
|
<path d="M1 23.5056C1.2171 23.0459 1.40707 22.566 1.66488 22.1266C5.11817 16.1576 8.57824 10.1886 12.0315 4.21956C12.52 3.36781 13.2256 2.92841 14.2229 3.00953C14.9895 3.07037 15.5459 3.47597 15.9258 4.13168C16.9163 5.8487 17.9136 7.55896 18.9042 9.27597C21.4755 13.7172 24.0536 18.1585 26.6249 22.6065C27.1744 23.5597 27.1202 24.4925 26.4621 25.2564C26.0753 25.7026 25.5801 25.9527 24.9831 25.9932C24.8813 26 24.7795 26 24.6778 26C17.5609 26 10.444 26 3.32707 26C2.37046 26 1.66488 25.6214 1.22389 24.7697C1.12212 24.5804 1.07463 24.3641 1 24.1613C1 23.945 1 23.7287 1 23.5056ZM13.999 25.2429C17.5202 25.2429 21.0413 25.2429 24.5624 25.2429C24.6778 25.2429 24.7999 25.2429 24.9152 25.2361C25.519 25.1888 25.9193 24.8779 26.1432 24.3235C26.3399 23.8436 26.211 23.4042 25.96 22.9783C23.1648 18.1585 20.3696 13.3319 17.5744 8.5121C16.8078 7.18716 16.0344 5.85546 15.2677 4.53051C14.976 4.03028 14.5553 3.75312 13.9651 3.75988C13.3681 3.7734 12.9813 4.09112 12.6964 4.58459C9.76552 9.64777 6.82785 14.7109 3.89696 19.7741C3.25922 20.876 2.6147 21.9779 1.98375 23.0797C1.62417 23.7084 1.71915 24.3911 2.21442 24.8576C2.54007 25.1618 2.92679 25.2429 3.36099 25.2429C6.90248 25.2429 10.4507 25.2429 13.999 25.2429Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.3"/>
|
||||||
|
<path d="M13.9709 6.16173C10.7261 11.7836 7.50322 17.3617 4.25843 22.9836C4.40426 22.9836 4.49905 22.9836 4.59384 22.9836C6.62093 22.9836 8.64801 22.9836 10.6751 22.9836C10.7991 22.9836 10.9303 22.9909 11.0543 23.0273C11.2511 23.093 11.3313 23.2534 11.3095 23.4576C11.2876 23.6544 11.1636 23.7638 10.9741 23.8003C10.8938 23.8148 10.8136 23.8076 10.7261 23.8076C8.40009 23.8076 6.06676 23.793 3.74072 23.8149C3.17926 23.8221 3.02614 23.4649 3.28864 23.0055C6.70843 17.1211 10.1136 11.2149 13.5188 5.31589C13.548 5.27214 13.5699 5.2211 13.5991 5.17735C13.8032 4.86381 14.1532 4.85652 14.3428 5.17735C14.6126 5.62943 14.8751 6.08881 15.1303 6.54819C15.2616 6.78881 15.2032 7.02214 14.9991 7.13881C14.7949 7.25548 14.5688 7.18256 14.423 6.94923C14.2772 6.70131 14.1386 6.46068 13.9709 6.16173Z" fill="#007EA7"/>
|
||||||
|
<path d="M23.676 22.9908C23.6031 22.8522 23.552 22.7574 23.4937 22.6627C20.8249 18.0324 18.1489 13.4095 15.4802 8.77932C15.2614 8.39286 15.2687 8.16682 15.5166 8.02098C15.7645 7.87515 15.9614 7.98453 16.1874 8.37098C19.002 13.2491 21.8239 18.1272 24.6385 23.0054C24.6895 23.0929 24.7406 23.1804 24.777 23.2752C24.8572 23.5377 24.7041 23.771 24.427 23.8001C24.3614 23.8074 24.3031 23.8074 24.2374 23.8074C21.8895 23.8074 19.5416 23.8074 17.1937 23.8074C17.1281 23.8074 17.0624 23.8074 17.0041 23.8001C16.7854 23.7783 16.6541 23.6543 16.6322 23.4356C16.6104 23.2168 16.7197 23.0637 16.9312 23.0127C17.0333 22.9835 17.1499 22.9908 17.2593 22.9908C19.2864 22.9908 21.3135 22.9908 23.3479 22.9908C23.4427 22.9908 23.5302 22.9908 23.676 22.9908Z" fill="#007EA7"/>
|
||||||
|
<path d="M15.4802 15.2903C15.4145 16.508 15.3489 17.7257 15.2906 18.9361C15.2614 19.5559 14.9406 19.8695 14.3281 19.8695C14.0729 19.8695 13.8177 19.8695 13.5624 19.8695C13.052 19.8622 12.6947 19.5413 12.6656 19.0382C12.5708 17.3393 12.4833 15.6403 12.3958 13.9486C12.3593 13.2049 12.3156 12.4611 12.2864 11.7174C12.2645 11.0976 12.5999 10.7549 13.2343 10.7549C13.7447 10.7549 14.2552 10.7549 14.7583 10.7549C15.3416 10.7549 15.6916 11.1049 15.6697 11.7028C15.6114 12.8913 15.5385 14.0872 15.4802 15.2903ZM13.0958 11.5788C13.227 14.0726 13.3583 16.5518 13.4895 19.0309C13.8249 19.0309 14.1385 19.0309 14.4666 19.0309C14.5979 16.5372 14.7291 14.0653 14.8604 11.5788C14.2624 11.5788 13.701 11.5788 13.0958 11.5788Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.2"/>
|
||||||
|
<path d="M13.9709 24.2445C13.023 24.2445 12.2573 23.4861 12.25 22.5382C12.2428 21.583 13.0375 20.7955 13.9855 20.8028C14.9261 20.8101 15.699 21.5903 15.6917 22.5309C15.6917 23.4861 14.9261 24.2445 13.9709 24.2445ZM13.9709 23.4278C14.474 23.4278 14.875 23.034 14.875 22.5382C14.875 22.0424 14.474 21.634 13.9782 21.6267C13.4896 21.6267 13.074 22.0351 13.074 22.5309C13.0667 23.0195 13.4678 23.4205 13.9709 23.4278Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.2"/>
|
||||||
|
<path d="M13.0959 11.5791C13.7012 11.5791 14.2626 11.5791 14.8532 11.5791C14.722 14.0656 14.5907 16.5447 14.4595 19.0312C14.1314 19.0312 13.8178 19.0312 13.4824 19.0312C13.3512 16.552 13.2272 14.0729 13.0959 11.5791Z" fill="white"/>
|
||||||
|
<path d="M13.9709 23.4284C13.4678 23.4284 13.0668 23.0274 13.0741 22.5243C13.0741 22.0285 13.4897 21.6201 13.9782 21.6201C14.4741 21.6201 14.8751 22.0357 14.8751 22.5316C14.8751 23.0347 14.4741 23.4284 13.9709 23.4284Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_12104_5819">
|
||||||
|
<rect width="28" height="28" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 5.4 KiB |
|
|
@ -0,0 +1,14 @@
|
||||||
|
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_12104_5819)">
|
||||||
|
<path d="M1 23.5056C1.2171 23.0459 1.40707 22.566 1.66488 22.1266C5.11817 16.1576 8.57824 10.1886 12.0315 4.21956C12.52 3.36781 13.2256 2.92841 14.2229 3.00953C14.9895 3.07037 15.5459 3.47597 15.9258 4.13168C16.9163 5.8487 17.9136 7.55896 18.9042 9.27597C21.4755 13.7172 24.0536 18.1585 26.6249 22.6065C27.1744 23.5597 27.1202 24.4925 26.4621 25.2564C26.0753 25.7026 25.5801 25.9527 24.9831 25.9932C24.8813 26 24.7795 26 24.6778 26C17.5609 26 10.444 26 3.32707 26C2.37046 26 1.66488 25.6214 1.22389 24.7697C1.12212 24.5804 1.07463 24.3641 1 24.1613C1 23.945 1 23.7287 1 23.5056ZM13.999 25.2429C17.5202 25.2429 21.0413 25.2429 24.5624 25.2429C24.6778 25.2429 24.7999 25.2429 24.9152 25.2361C25.519 25.1888 25.9193 24.8779 26.1432 24.3235C26.3399 23.8436 26.211 23.4042 25.96 22.9783C23.1648 18.1585 20.3696 13.3319 17.5744 8.5121C16.8078 7.18716 16.0344 5.85546 15.2677 4.53051C14.976 4.03028 14.5553 3.75312 13.9651 3.75988C13.3681 3.7734 12.9813 4.09112 12.6964 4.58459C9.76552 9.64777 6.82785 14.7109 3.89696 19.7741C3.25922 20.876 2.6147 21.9779 1.98375 23.0797C1.62417 23.7084 1.71915 24.3911 2.21442 24.8576C2.54007 25.1618 2.92679 25.2429 3.36099 25.2429C6.90248 25.2429 10.4507 25.2429 13.999 25.2429Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.3"/>
|
||||||
|
<path d="M13.9709 6.16173C10.7261 11.7836 7.50322 17.3617 4.25843 22.9836C4.40426 22.9836 4.49905 22.9836 4.59384 22.9836C6.62093 22.9836 8.64801 22.9836 10.6751 22.9836C10.7991 22.9836 10.9303 22.9909 11.0543 23.0273C11.2511 23.093 11.3313 23.2534 11.3095 23.4576C11.2876 23.6544 11.1636 23.7638 10.9741 23.8003C10.8938 23.8148 10.8136 23.8076 10.7261 23.8076C8.40009 23.8076 6.06676 23.793 3.74072 23.8149C3.17926 23.8221 3.02614 23.4649 3.28864 23.0055C6.70843 17.1211 10.1136 11.2149 13.5188 5.31589C13.548 5.27214 13.5699 5.2211 13.5991 5.17735C13.8032 4.86381 14.1532 4.85652 14.3428 5.17735C14.6126 5.62943 14.8751 6.08881 15.1303 6.54819C15.2616 6.78881 15.2032 7.02214 14.9991 7.13881C14.7949 7.25548 14.5688 7.18256 14.423 6.94923C14.2772 6.70131 14.1386 6.46068 13.9709 6.16173Z" fill="#007EA7"/>
|
||||||
|
<path d="M23.676 22.9908C23.6031 22.8522 23.552 22.7574 23.4937 22.6627C20.8249 18.0324 18.1489 13.4095 15.4802 8.77932C15.2614 8.39286 15.2687 8.16682 15.5166 8.02098C15.7645 7.87515 15.9614 7.98453 16.1874 8.37098C19.002 13.2491 21.8239 18.1272 24.6385 23.0054C24.6895 23.0929 24.7406 23.1804 24.777 23.2752C24.8572 23.5377 24.7041 23.771 24.427 23.8001C24.3614 23.8074 24.3031 23.8074 24.2374 23.8074C21.8895 23.8074 19.5416 23.8074 17.1937 23.8074C17.1281 23.8074 17.0624 23.8074 17.0041 23.8001C16.7854 23.7783 16.6541 23.6543 16.6322 23.4356C16.6104 23.2168 16.7197 23.0637 16.9312 23.0127C17.0333 22.9835 17.1499 22.9908 17.2593 22.9908C19.2864 22.9908 21.3135 22.9908 23.3479 22.9908C23.4427 22.9908 23.5302 22.9908 23.676 22.9908Z" fill="#007EA7"/>
|
||||||
|
<path d="M15.4802 15.2903C15.4145 16.508 15.3489 17.7257 15.2906 18.9361C15.2614 19.5559 14.9406 19.8695 14.3281 19.8695C14.0729 19.8695 13.8177 19.8695 13.5624 19.8695C13.052 19.8622 12.6947 19.5413 12.6656 19.0382C12.5708 17.3393 12.4833 15.6403 12.3958 13.9486C12.3593 13.2049 12.3156 12.4611 12.2864 11.7174C12.2645 11.0976 12.5999 10.7549 13.2343 10.7549C13.7447 10.7549 14.2552 10.7549 14.7583 10.7549C15.3416 10.7549 15.6916 11.1049 15.6697 11.7028C15.6114 12.8913 15.5385 14.0872 15.4802 15.2903ZM13.0958 11.5788C13.227 14.0726 13.3583 16.5518 13.4895 19.0309C13.8249 19.0309 14.1385 19.0309 14.4666 19.0309C14.5979 16.5372 14.7291 14.0653 14.8604 11.5788C14.2624 11.5788 13.701 11.5788 13.0958 11.5788Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.2"/>
|
||||||
|
<path d="M13.9709 24.2445C13.023 24.2445 12.2573 23.4861 12.25 22.5382C12.2428 21.583 13.0375 20.7955 13.9855 20.8028C14.9261 20.8101 15.699 21.5903 15.6917 22.5309C15.6917 23.4861 14.9261 24.2445 13.9709 24.2445ZM13.9709 23.4278C14.474 23.4278 14.875 23.034 14.875 22.5382C14.875 22.0424 14.474 21.634 13.9782 21.6267C13.4896 21.6267 13.074 22.0351 13.074 22.5309C13.0667 23.0195 13.4678 23.4205 13.9709 23.4278Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.2"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_12104_5819">
|
||||||
|
<rect width="28" height="28" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4.2 KiB |
|
|
@ -0,0 +1,16 @@
|
||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_12104_5929)">
|
||||||
|
<path d="M0 15.4C0 15.3 0.1 15.1 0.1 15C0.4 14.1 1.2 13.5 2.1 13.5C4.2 13.5 6.3 13.5 8.4 13.5C9.5 13.5 10.5 14.5 10.5 15.6C10.5 17.7 10.5 19.8 10.5 21.9C10.5 22.9 9.7 23.8 8.7 24H8.6C6.4 24 4.2 24 2 24C1.9 24 1.9 24 1.8 23.9C1 23.7 0.4 23.2 0.2 22.4C0.2 22.3 0.1 22.1 0.1 22C0 19.9 0 17.7 0 15.4ZM9 18.8C9 17.8 9 16.9 9 15.9C9 15.3 8.7 15 8.1 15C6.2 15 4.2 15 2.3 15C1.7 15 1.5 15.3 1.5 15.8C1.5 17.7 1.5 19.7 1.5 21.6C1.5 22.2 1.8 22.4 2.3 22.4C4.2 22.4 6.2 22.4 8.1 22.4C8.7 22.4 8.9 22.1 8.9 21.6C9 20.7 9 19.7 9 18.8Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.2"/>
|
||||||
|
<path d="M0 2.70078C0 2.60078 0.1 2.40078 0.1 2.30078C0.4 1.40078 1.2 0.800781 2.1 0.800781C3.6 0.800781 5.2 0.800781 6.7 0.800781C7.2 0.800781 7.4 1.10078 7.4 1.50078C7.4 1.90078 7.1 2.20078 6.6 2.20078C5.2 2.20078 3.7 2.20078 2.2 2.20078C1.6 2.20078 1.3 2.40078 1.3 3.10078C1.3 5.00078 1.3 6.90078 1.3 8.80078C1.3 9.40078 1.5 9.70078 2.2 9.70078C4.1 9.70078 6 9.70078 7.9 9.70078C8.7 9.80078 9 9.50078 9 8.90078C9 8.70078 9 8.50078 9 8.30078C9 7.90078 9.3 7.60078 9.8 7.60078C10.2 7.60078 10.5 7.90078 10.5 8.30078C10.5 8.80078 10.5 9.20078 10.4 9.70078C10.2 10.7008 9.3 11.3008 8.4 11.4008C6.3 11.4008 4.3 11.4008 2.2 11.4008C1.2 11.4008 0.3 10.7008 0.1 9.60078C0.1 9.50078 0.1 9.50078 0.1 9.40078C0 7.10078 0 4.90078 0 2.70078Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.2"/>
|
||||||
|
<path d="M6.0001 5.7C6.4001 5.3 6.8001 4.9 7.2001 4.5C8.6001 3.1 10.0001 1.7 11.4001 0.3C11.8001 -0.1 12.3001 -0.1 12.6001 0.3C12.8001 0.6 12.8001 0.9 12.6001 1.2C12.6001 1.3 12.5001 1.3 12.5001 1.4C10.5001 3.4 8.6001 5.3 6.6001 7.3C6.5001 7.4 6.3001 7.4 6.2001 7.5C5.9001 7.6 5.7001 7.5 5.5001 7.3C4.7001 6.6 4.0001 5.8 3.2001 5.1C2.9001 4.7 2.9001 4.3 3.2001 4C3.5001 3.7 4.0001 3.7 4.3001 4C4.8001 4.5 5.3001 5 5.8001 5.5C5.9001 5.6 5.9001 5.7 6.0001 5.7Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.2"/>
|
||||||
|
<path d="M18.3 6.80078C19.9 6.80078 21.5 6.80078 23.1 6.80078C23.7 6.80078 24 7.30078 23.8 7.80078C23.7 8.10078 23.5 8.20078 23.2 8.30078C23.1 8.30078 23.1 8.30078 23 8.30078C19.8 8.30078 16.6 8.30078 13.4 8.30078C12.8 8.30078 12.5 7.80078 12.6 7.30078C12.7 7.00078 13 6.80078 13.4 6.80078C15.1 6.80078 16.7 6.80078 18.3 6.80078Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.2"/>
|
||||||
|
<path d="M18.3 21.8008C16.7 21.8008 15.1 21.8008 13.5 21.8008C12.9 21.8008 12.6 21.3008 12.8 20.8008C12.9 20.5008 13.1 20.3008 13.5 20.3008C13.7 20.3008 14 20.3008 14.2 20.3008C17.2 20.3008 20.2 20.3008 23.2 20.3008C23.8 20.3008 24.2 20.7008 24 21.3008C23.9 21.6008 23.6 21.8008 23.2 21.8008C21.5 21.8008 19.9 21.8008 18.3 21.8008Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.2"/>
|
||||||
|
<path d="M19.8002 3.80078C18.7002 3.80078 17.6002 3.80078 16.5002 3.80078C16.0002 3.80078 15.7002 3.50078 15.7002 3.00078C15.7002 2.60078 16.0002 2.30078 16.4002 2.30078C16.6002 2.30078 16.8002 2.30078 17.1002 2.30078C19.1002 2.30078 21.2002 2.30078 23.2002 2.30078C23.8002 2.30078 24.1002 2.80078 24.0002 3.30078C23.9002 3.60078 23.6002 3.80078 23.3002 3.80078C22.1002 3.80078 21.0002 3.80078 19.8002 3.80078Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.2"/>
|
||||||
|
<path d="M19.8002 17.3008C18.7002 17.3008 17.6002 17.3008 16.5002 17.3008C16.0002 17.3008 15.7002 17.0008 15.7002 16.5008C15.7002 16.1008 16.0002 15.8008 16.4002 15.8008C16.6002 15.8008 16.8002 15.8008 17.0002 15.8008C19.0002 15.8008 21.1002 15.8008 23.1002 15.8008C23.7002 15.8008 24.0002 16.3008 23.9002 16.8008C23.8002 17.1008 23.5002 17.3008 23.2002 17.3008C22.1002 17.3008 21.0002 17.3008 19.8002 17.3008Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.2"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_12104_5929">
|
||||||
|
<rect width="24" height="24" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.7 KiB |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="20" height="11" viewBox="0 0 20 11" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M6 5.242L10.243 9.485L18.727 1M1 5.242L5.243 9.485M13.728 1L10.5 4.257" stroke="#007EA7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 267 B |
|
|
@ -0,0 +1,7 @@
|
||||||
|
<svg width="99" height="99" viewBox="0 0 99 99" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M0 49.5C0 31.9952 0 23.2429 3.45932 16.5803C6.37752 10.9599 10.9599 6.37752 16.5803 3.45932C23.2429 0 31.9952 0 49.5 0C67.0048 0 75.7571 0 82.4197 3.45932C88.0401 6.37752 92.6225 10.9599 95.5407 16.5803C99 23.2429 99 31.9952 99 49.5C99 67.0048 99 75.7571 95.5407 82.4197C92.6225 88.0401 88.0401 92.6225 82.4197 95.5407C75.7571 99 67.0048 99 49.5 99C31.9952 99 23.2429 99 16.5803 95.5407C10.9599 92.6225 6.37752 88.0401 3.45932 82.4197C0 75.7571 0 67.0048 0 49.5Z" fill="#E6F2F6"/>
|
||||||
|
<path d="M49.5 69.5C60.546 69.5 69.5 60.546 69.5 49.5C69.5 38.454 60.546 29.5 49.5 29.5C38.454 29.5 29.5 38.454 29.5 49.5C29.5 60.546 38.454 69.5 49.5 69.5Z" stroke="#007EA7" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M29.5 49.5H69.5" stroke="#007EA7" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M49.5 69.5C53.918 69.5 57.5 60.546 57.5 49.5C57.5 38.454 53.918 29.5 49.5 29.5C45.082 29.5 41.5 38.454 41.5 49.5C41.5 60.546 45.082 69.5 49.5 69.5Z" stroke="#007EA7" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M35.358 35.6416C37.2132 37.5014 39.4176 38.9764 41.8445 39.9817C44.2715 40.987 46.8731 41.5028 49.5 41.4996C52.1269 41.5028 54.7286 40.987 57.1555 39.9817C59.5825 38.9764 61.7869 37.5014 63.642 35.6416M63.642 63.3576C61.7869 61.4978 59.5825 60.0228 57.1555 59.0175C54.7286 58.0122 52.1269 57.4964 49.5 57.4996C46.8731 57.4964 44.2715 58.0122 41.8445 59.0175C39.4176 60.0228 37.2132 61.4978 35.358 63.3576" stroke="#007EA7" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
|
|
@ -0,0 +1,7 @@
|
||||||
|
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M6.11669 31.083C10.7834 31.083 15.3834 31.083 20.0334 31.083C20.0834 32.0496 20.1334 33.0163 20.1834 33.983C20.2167 34.6496 20.6 35.0496 21.1667 35.0496C21.7834 35.0663 22.2 34.5663 22.1834 33.8163C22.15 32.2496 22.0667 30.6996 22.0834 29.133C22.1167 24.8996 22.55 20.7163 23.5334 16.583C23.6167 16.233 23.7167 16.0663 24.1334 16.0663C29.4834 16.083 34.8334 16.083 40.1667 16.083C40.2334 16.083 40.2834 16.0996 40.4667 16.1163C40.7334 17.4996 41.05 18.9163 41.2834 20.333C41.95 24.5496 42.1834 28.7996 41.9334 33.083C41.9167 33.3996 41.9 33.6996 41.9167 34.0163C41.9334 34.6163 42.3334 35.0163 42.8667 35.033C43.4334 35.0496 43.8834 34.633 43.9 34.0163C43.9334 33.0663 43.9 32.0996 43.9 31.0996C48.6334 31.0996 53.2334 31.0996 58 31.0996C57.8167 32.4663 57.7 33.8163 57.4334 35.1496C56.8167 38.4163 55.55 41.4163 53.75 44.2163C53.5834 44.483 53.3667 44.883 53.45 45.1163C53.5667 45.4496 53.8834 45.833 54.2167 45.9663C54.65 46.1663 55.05 45.8663 55.3167 45.4663C56.6 43.533 57.6334 41.483 58.3834 39.283C63.55 24.3996 55.5834 8.38296 40.6167 3.48296C24.6834 -1.73371 7.58336 8.43296 4.58336 24.933C3.26669 32.2163 4.63336 38.9663 8.56669 45.233C8.63336 45.333 8.70002 45.4496 8.76669 45.5496C9.15002 46.0663 9.70002 46.1996 10.1834 45.8663C10.65 45.5496 10.7334 44.983 10.4334 44.433C9.76669 43.233 9.03336 42.0663 8.45003 40.833C7.03336 37.8663 6.33336 34.7163 6.11669 31.4496C6.11669 31.3496 6.11669 31.233 6.11669 31.083ZM6.11669 29.0163C6.11669 28.8663 6.11669 28.733 6.11669 28.6163C6.40003 24.283 7.63336 20.2663 9.86669 16.5496C10.0667 16.2163 10.2834 16.0663 10.7 16.0663C14.1334 16.083 17.5667 16.083 21 16.083C21.1834 16.083 21.3667 16.0996 21.6 16.1163C20.5834 20.3996 20.15 24.6996 20.05 29.033C15.3667 29.0163 10.7667 29.0163 6.11669 29.0163ZM42.4834 16.133C42.6334 16.0996 42.7 16.083 42.7667 16.083C46.3334 16.083 49.9167 16.0663 53.4834 16.0996C53.7 16.0996 54 16.3163 54.1334 16.5163C55.5 18.6996 56.5 21.033 57.1334 23.533C57.6 25.3163 57.9 27.133 57.9167 29.033C53.2667 29.033 48.6667 29.033 44.0167 29.033C43.9167 24.6663 43.5 20.383 42.4834 16.133ZM39.8334 14.0496C34.6 14.0496 29.45 14.0496 24.2334 14.0496C24.9667 11.6663 25.8667 9.41629 27.3 7.43296C27.85 6.66629 28.4834 5.93296 29.2 5.29963C30.95 3.74963 32.9167 3.73296 34.7334 5.18296C35.3334 5.66629 35.8667 6.23296 36.3334 6.83296C38.0167 8.96629 39.0167 11.4496 39.8334 14.0496ZM26.8667 4.73296C24.4834 7.48296 23.1834 10.7163 22.15 14.033C18.6334 14.033 15.1834 14.033 11.7 14.033C14.4167 9.86629 22.5334 4.88296 26.8667 4.73296ZM52.45 14.0496C52.25 14.0663 52.1667 14.083 52.1 14.083C48.85 14.083 45.6167 14.0663 42.3667 14.0996C41.9334 14.0996 41.8667 13.8663 41.7834 13.5663C40.7834 10.433 39.5334 7.44963 37.3834 4.91629C37.35 4.88296 37.35 4.81629 37.3334 4.66629C43.45 6.03296 48.4334 9.11629 52.45 14.0496Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.5"/>
|
||||||
|
<path d="M14.0834 49.0499C26.0667 49.0499 38 49.0499 50.0334 49.0499C50.0334 49.7832 50.05 50.5332 50.0167 51.2665C50.0167 51.4165 49.8 51.5832 49.6334 51.6832C48.35 52.4665 47.0834 53.2499 45.7834 53.9999C45.25 54.2999 45.0334 54.6999 45.0334 55.3165C45.05 57.1332 45.0334 58.9332 45.05 60.7499C45.05 61.5332 45.4167 61.9999 46.0334 61.9999C46.65 61.9999 47.0334 61.5499 47.0334 60.7665C47.0334 59.1832 47.0167 57.5999 47.05 56.0332C47.05 55.7999 47.2334 55.4832 47.4334 55.3665C48.7 54.5665 49.9834 53.7999 51.2834 53.0499C51.8167 52.7499 52.05 52.3499 52.05 51.7332C52.0167 50.5665 52.05 49.3999 52.0334 48.2332C52.0334 47.3832 51.6667 47.0332 50.8167 47.0332C38.3167 47.0332 25.8167 47.0332 13.3167 47.0332C12.4667 47.0332 12.1167 47.3999 12.1167 48.2499C12.1167 49.4165 12.1334 50.5832 12.1 51.7499C12.0834 52.3332 12.3167 52.7332 12.8167 53.0165C14.0834 53.7665 15.35 54.5499 16.6167 55.2832C17 55.4999 17.1167 55.7499 17.1 56.1665C17.0667 57.6832 17.0834 59.1999 17.0834 60.7165C17.0834 61.5332 17.4667 62.0165 18.1167 61.9999C18.7334 61.9832 19.0834 61.5332 19.0834 60.7332C19.0834 58.9499 19.0667 57.1499 19.1 55.3665C19.1167 54.7332 18.8834 54.3165 18.3334 53.9999C17.05 53.2665 15.8 52.4832 14.5334 51.7332C14.2 51.5499 14.0667 51.3165 14.1 50.9499C14.1 50.3332 14.0834 49.6999 14.0834 49.0499Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.5"/>
|
||||||
|
<path d="M32.0333 35.0497C36.4333 35.0497 40.0333 31.483 40.0333 27.0997C40.0333 22.6663 36.4667 19.0997 32.0333 19.083C27.6333 19.083 24.05 22.683 24.0667 27.133C24.0833 31.4663 27.7 35.0497 32.0333 35.0497ZM32.05 33.0497C28.7833 33.0497 26.0667 30.383 26.0667 27.133C26.05 23.7997 28.7333 21.083 32.05 21.083C35.3333 21.0663 38.0333 23.7663 38.0333 27.0663C38.05 30.3663 35.3667 33.0497 32.05 33.0497Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.5"/>
|
||||||
|
<path d="M33.15 36.0166C28.9167 36.0833 25.8 36.3333 22.85 37.4499C21.95 37.7833 21.0833 38.2833 20.2833 38.8333C19.4333 39.4166 19.0333 40.2833 19.0667 41.3666C19.1 42.5166 19.0667 43.6499 19.0833 44.7999C19.0833 45.5833 19.4667 46.0333 20.1 46.0333C20.7167 46.0166 21.0833 45.5666 21.0833 44.7833C21.0833 43.7166 21.1333 42.6666 21.0667 41.5999C21.0167 40.8666 21.35 40.4166 21.9167 40.0833C23.1833 39.3166 24.5667 38.8999 26 38.6333C30.6333 37.7666 35.2667 37.7833 39.8333 39.0833C40.7333 39.3333 41.5833 39.8333 42.4333 40.2666C42.8833 40.4999 43.0667 40.9166 43.05 41.4666C43.0167 42.5833 43.0333 43.7166 43.0333 44.8333C43.0333 45.5999 43.4333 46.0666 44.05 46.0499C44.65 46.0333 45.0167 45.5833 45.0167 44.8499C45.0167 43.7333 44.9833 42.5999 45.0333 41.4833C45.0833 40.2833 44.5833 39.3999 43.65 38.7166C42.1667 37.6166 40.4333 37.0499 38.65 36.7499C36.4833 36.3499 34.2667 36.1499 33.15 36.0166Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.5"/>
|
||||||
|
<path d="M22.4669 55.2666C22.2673 55.2666 22.15 55.2515 22.0157 55.2783L22.0128 55.2793C21.7822 55.3225 21.6195 55.4077 21.5157 55.5186C21.4153 55.626 21.3498 55.7787 21.3497 56C21.3497 56.2246 21.4132 56.3841 21.5128 56.498C21.6138 56.6135 21.7719 56.7035 21.9982 56.7539C22.1506 56.7811 22.2883 56.7666 22.5167 56.7666H41.5167C41.7314 56.7666 41.8907 56.783 42.0607 56.7676C42.489 56.7286 42.7696 56.4291 42.7833 56.0283C42.7809 55.6463 42.5155 55.3343 42.09 55.2812L42.089 55.2822C41.9549 55.2673 41.835 55.2666 41.6837 55.2666H22.4669Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.5"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 6.2 KiB |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="32" height="21" viewBox="0 0 32 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M1 10.4689H6.00571C6.21648 10.4665 6.42282 10.408 6.60356 10.2996C6.78431 10.1912 6.93296 10.0366 7.03429 9.85176L11.1486 1.62319C11.25 1.41832 11.4116 1.24938 11.6118 1.13906C11.812 1.02874 12.0412 0.982327 12.2686 1.00605C12.495 1.02135 12.7112 1.10651 12.8872 1.24979C13.0632 1.39307 13.1905 1.58742 13.2514 1.80605L18.3486 18.766C18.4155 18.9961 18.553 19.1993 18.7416 19.347C18.9303 19.4946 19.1606 19.5793 19.4 19.5889C19.6243 19.5815 19.8415 19.5081 20.0244 19.3781C20.2073 19.248 20.3479 19.0669 20.4286 18.8575L23.56 11.2003C23.6462 10.9855 23.7944 10.8013 23.9858 10.671C24.1771 10.5408 24.4028 10.4704 24.6343 10.4689H30.7143" stroke="#007EA7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 833 B |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M11.375 11.125C12.0078 11.125 12.5 10.6328 12.5 10C12.5 9.40234 11.9727 8.875 11.375 8.875H8C7.40234 8.875 6.875 9.40234 6.875 10C6.875 10.6328 7.40234 11.125 8 11.125H11.375ZM11.375 15.625C12.0078 15.625 12.5 15.1328 12.5 14.5C12.5 13.9023 11.9727 13.375 11.375 13.375H5.75C5.15234 13.375 4.625 13.9023 4.625 14.5C4.625 15.1328 5.15234 15.625 5.75 15.625H11.375ZM11.375 6.625C12.0078 6.625 12.5 6.13281 12.5 5.5C12.5 4.90234 12.0078 4.375 11.375 4.375H10.25C9.6875 4.375 9.16016 4.90234 9.16016 5.5C9.16016 6.13281 9.65234 6.625 10.25 6.625H11.375ZM3.5 17.875C2.90234 17.875 2.375 18.4023 2.375 19C2.375 19.6328 2.90234 20.125 3.5 20.125H11.375C11.9727 20.125 12.5 19.6328 12.5 19C12.5 18.4023 11.9727 17.875 11.375 17.875H3.5ZM15.875 14.8867C15.4531 14.4297 14.75 14.3945 14.3633 14.8164C13.9062 15.2383 13.8711 15.9414 14.293 16.4336L17.3516 19.8086C17.7734 20.2656 18.582 20.2656 19.0039 19.8086L22.0625 16.4336C22.4844 15.9414 22.4492 15.2383 21.9922 14.8164C21.7812 14.6406 21.5 14.5352 21.2539 14.5352C20.9375 14.5352 20.6211 14.6406 20.4102 14.8867L19.25 16.1523V5.53516C19.25 4.90234 18.7578 4.375 18.125 4.375C17.5273 4.375 17 4.90234 17 5.53516V16.1523L15.875 14.8867Z" fill="#1B3C59"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
|
|
@ -0,0 +1,6 @@
|
||||||
|
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M0 20.5772C0.473958 19.7897 0.991667 19.0387 1.6625 18.397C2.50833 17.5877 3.45625 16.9533 4.60104 16.6397C5.8625 16.297 7.07292 16.4356 8.21771 17.0627C9.37708 17.7043 10.2885 18.6085 10.8937 19.7824C11.7906 21.5179 11.5865 23.2095 10.6167 24.8429C9.85833 26.1116 8.79375 27.0741 7.51042 27.796C7.0875 28.0366 6.79583 27.8616 6.78854 27.3804C6.78125 26.8845 6.78854 26.3814 6.78854 25.8418C6.68646 25.8783 6.60625 25.9075 6.54062 25.9366C5.075 26.5783 3.5875 27.1689 2.0125 27.4679C1.61875 27.5408 1.21771 27.5772 0.823958 27.5991C0.444792 27.621 0.298958 27.4533 0.313542 27.0741C0.35 25.9439 0.648958 24.8647 1.02083 23.8147C1.30521 23.0127 1.64062 22.2252 1.96146 21.4304C1.99792 21.3356 2.03437 21.2481 2.09271 21.1168C1.56771 21.1168 1.07917 21.1095 0.583333 21.1241C0.328125 21.1314 0.138542 21.0658 0.0145833 20.8397C0 20.7595 0 20.6647 0 20.5772ZM10.3469 20.5408C10.3177 20.5991 10.2958 20.6283 10.2812 20.6647C9.52292 22.6262 7.34271 23.6616 5.34479 22.9981C5.13333 22.9252 5.00938 22.8085 4.94375 22.597C4.54271 21.2772 4.75417 20.0595 5.56354 18.9585C6.03021 18.3168 6.65729 17.8793 7.41562 17.6095C6.77396 17.2741 5.78958 17.1793 4.97292 17.3908C3.31771 17.8137 2.12917 18.871 1.18125 20.2345C1.17396 20.2418 1.18125 20.271 1.18854 20.3074C1.63333 20.3074 2.07812 20.3074 2.51562 20.3074C3.09896 20.3074 3.25208 20.5554 3.01146 21.0804C2.3625 22.4731 1.77187 23.8877 1.39271 25.3825C1.27604 25.8345 1.20312 26.2939 1.11563 26.7533C1.14479 26.7824 1.16667 26.8116 1.19583 26.8408C1.98333 26.6366 2.79271 26.4908 3.55104 26.221C4.68125 25.82 5.775 25.3387 6.88333 24.8793C7.35729 24.6825 7.59792 24.821 7.59792 25.3387C7.59792 25.7397 7.59792 26.1408 7.59792 26.5418C7.59792 26.6075 7.6125 26.6731 7.62708 26.7824C9.01979 25.7835 10.099 24.6022 10.5219 22.9397C10.7333 22.1304 10.675 21.3429 10.3469 20.5408ZM6.64271 22.3856C7.79479 22.3345 8.74271 21.8095 9.3625 20.7304C9.73437 20.0741 9.64687 19.3595 9.14375 18.8491C8.63333 18.3241 7.90417 18.2147 7.24062 18.5866C6.14687 19.1991 5.55625 20.1543 5.57812 21.3939C5.60729 22.3783 5.54896 22.3054 6.64271 22.3856Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.3"/>
|
||||||
|
<path d="M18.2656 1.91747C20.9052 4.55705 23.5229 7.17476 26.1771 9.82893C26.3739 9.14351 26.6 8.47997 26.7677 7.79455C27.2489 5.76747 27.2708 3.74768 26.6948 1.72788C26.6364 1.52372 26.5416 1.42893 26.3448 1.37788C24.6604 0.903926 22.9614 0.845593 21.2406 1.11538C21.1896 1.12268 21.1312 1.13726 21.0802 1.14455C20.8104 1.17372 20.6135 1.03518 20.5843 0.794551C20.5552 0.561218 20.701 0.364343 20.9781 0.335176C21.6927 0.26226 22.4073 0.160176 23.1218 0.145593C24.4125 0.116426 25.6739 0.298718 26.9062 0.69976C27.1687 0.78726 27.3073 0.933093 27.3875 1.19559C28.0875 3.40497 28.1093 5.62893 27.5989 7.87476C26.8989 10.9446 25.3823 13.5768 23.2093 15.8446C23.0271 16.0341 22.9906 16.1946 23.0416 16.4425C23.1875 17.1789 23.3989 17.9227 23.4062 18.6664C23.4354 20.2196 22.7062 21.4081 21.3573 22.181C20.4968 22.6696 19.6 23.0925 18.7177 23.5445C18.4552 23.6758 18.2218 23.6175 18.1052 23.3914C17.9885 23.1727 18.076 22.9539 18.3458 22.8154C19.1698 22.3925 20.001 21.9841 20.8177 21.5466C22.0791 20.8685 22.6843 19.7966 22.5823 18.3675C22.5458 17.8498 22.3927 17.3393 22.2833 16.7633C22.1593 16.8654 22.0864 16.9237 22.0135 16.9893C19.7166 18.98 17.1062 20.3435 14.1021 20.9195C14.0073 20.9341 13.8833 21.0289 13.8614 21.1164C13.475 22.6039 13.0958 24.0914 12.7166 25.5789C12.7093 25.6008 12.7166 25.63 12.7239 25.681C12.8333 25.63 12.9281 25.5862 13.0229 25.5352C14.2552 24.9081 15.4802 24.2737 16.7125 23.6539C16.8364 23.5883 17.0187 23.5518 17.1427 23.5883C17.4416 23.6685 17.5073 24.0623 17.2593 24.2664C17.1864 24.3321 17.0916 24.3685 17.0041 24.4195C15.4656 25.2071 13.9271 25.9873 12.3958 26.7748C12.1989 26.8768 12.0093 26.9571 11.8125 26.8039C11.6156 26.6508 11.6521 26.4466 11.7104 26.2279C12.1625 24.4487 12.6146 22.6696 13.0739 20.8977C13.125 20.7081 13.0958 20.5841 12.9573 20.4456C11.1562 18.6591 9.36247 16.8581 7.57601 15.0643C7.43747 14.9258 7.31351 14.8966 7.12393 14.9477C5.41039 15.3925 3.69685 15.8227 1.97601 16.2602C1.76455 16.3112 1.56039 16.3477 1.39997 16.1435C1.24684 15.9539 1.32705 15.7716 1.42184 15.5821C2.91664 12.6435 4.40414 9.72684 5.90622 6.81018C6.8031 5.06747 8.5531 4.23622 10.4635 4.62997C10.9156 4.72476 11.375 4.81226 11.8198 4.92163C12.0312 4.97268 12.1698 4.93622 12.3229 4.78309C14.0364 3.14976 15.9906 1.89559 18.2073 1.07163C18.5354 0.947676 18.8781 0.838301 19.2135 0.736218C19.4906 0.648718 19.7166 0.750801 19.7896 0.984135C19.8625 1.21018 19.7312 1.42163 19.4541 1.51643C19.0604 1.65497 18.6666 1.78622 18.2656 1.91747ZM7.91143 14.1748C7.99893 14.2841 8.05726 14.3789 8.13747 14.4518C9.83643 16.1508 11.5354 17.8498 13.2271 19.5487C13.8323 20.1539 13.8396 20.1685 14.6708 19.9425C19.7021 18.6081 23.2896 15.5164 25.6593 10.93C25.7687 10.7185 25.7323 10.6018 25.5718 10.4487C22.9177 7.80184 20.2635 5.15497 17.6239 2.5008C17.4489 2.3258 17.325 2.31851 17.1208 2.42059C13.0885 4.47684 10.2083 7.5758 8.60414 11.8268C8.31976 12.5852 8.14476 13.3727 7.91143 14.1748ZM2.5156 15.2466C2.64685 15.2175 2.73435 15.2029 2.82185 15.181C4.12705 14.8529 5.42497 14.5102 6.73018 14.1966C7.04372 14.1237 7.17497 13.9925 7.2406 13.6643C7.83122 10.7841 9.17289 8.28309 11.0833 6.06643C11.1854 5.94247 11.2948 5.8258 11.426 5.67268C11.0468 5.59247 10.7114 5.51955 10.376 5.44663C8.7208 5.08934 7.36455 5.7383 6.59164 7.24768C5.27914 9.81434 3.97393 12.3737 2.66143 14.9404C2.62497 15.0279 2.58122 15.1154 2.5156 15.2466Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.3"/>
|
||||||
|
<path d="M17.0478 16.2826C14.1822 16.2826 11.8853 13.9784 11.8926 11.1128C11.8999 8.26901 14.2113 5.96484 17.0551 5.96484C19.9061 5.96484 22.2249 8.29089 22.2176 11.1419C22.2103 13.9857 19.8988 16.2826 17.0478 16.2826ZM17.0405 15.4659C19.4395 15.4732 21.3863 13.5409 21.3936 11.1492C21.4009 8.74297 19.4613 6.78151 17.0551 6.78151C14.6634 6.77422 12.7166 8.7138 12.7093 11.1055C12.702 13.519 14.627 15.4586 17.0405 15.4659Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.3"/>
|
||||||
|
<path d="M17.0772 7.77312C18.9584 7.80958 20.4386 9.32625 20.4022 11.1783C20.3657 13.0596 18.8417 14.5106 16.9532 14.4742C15.1084 14.4377 13.6647 12.9065 13.7011 11.0398C13.7376 9.21687 15.2761 7.73666 17.0772 7.77312ZM17.0261 13.6502C18.4334 13.6575 19.5709 12.5419 19.5855 11.1492C19.6001 9.74916 18.448 8.58979 17.048 8.58979C15.6626 8.58979 14.5251 9.72 14.5178 11.0981C14.5105 12.5054 15.6261 13.6429 17.0261 13.6502Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 6.4 KiB |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M12.6852 0C13.1481 0.0644531 13.611 0.105469 14.0739 0.1875C16.5348 0.621094 18.6442 1.73438 20.4254 3.48633C20.7594 3.81445 20.7418 4.22461 20.3844 4.58203C19.1774 5.79492 17.9703 7.00195 16.7633 8.20898C16.0192 8.95312 15.275 9.69727 14.5192 10.459C14.9821 11.2969 15.0875 12.1699 14.7418 13.0723C14.4899 13.7285 14.0504 14.2324 13.4352 14.584C12.2282 15.2754 10.7047 15.0117 9.77307 13.9629C8.85315 12.9258 8.7887 11.3555 9.61487 10.2422C10.4176 9.15234 12.0114 8.61914 13.4879 9.44531C14.2262 8.70117 14.9645 7.96289 15.7086 7.21289C14.9821 6.63281 14.1383 6.24023 13.1949 6.05273C9.77893 5.35547 6.48596 7.6875 5.98792 11.1504C5.51331 14.4609 7.8219 17.543 11.1266 18.0059C14.4606 18.4746 17.4899 16.1953 17.9762 12.8438C18.0172 12.5508 18.0231 12.252 18.0524 11.959C18.0934 11.5605 18.3922 11.291 18.7672 11.3027C19.1481 11.3145 19.4528 11.625 19.4469 12.0234C19.4059 14.1211 18.6559 15.9199 17.1559 17.3848C16.1539 18.3633 14.9645 19.0078 13.5992 19.3008C11.736 19.6992 9.95471 19.4473 8.29651 18.498C6.63245 17.543 5.48401 16.1426 4.89221 14.3145C4.30628 12.498 4.40003 10.6934 5.18518 8.94727C5.95276 7.23633 7.20667 5.98242 8.91175 5.20312C10.5641 4.44727 12.275 4.33008 14.0211 4.81641C15.0582 5.10352 15.3278 5.26758 16.7223 6.2168C17.4489 5.48438 18.1754 4.75781 18.943 3.99023C18.4332 3.63281 17.9293 3.24023 17.3844 2.90625C16.318 2.25586 15.1578 1.83398 13.9332 1.59375C8.55432 0.556641 3.26331 3.85547 1.7926 9.19922C0.222292 14.8828 3.58557 20.6719 9.193 22.2129C14.8356 23.7656 20.6071 20.4316 22.1774 14.8066C22.4176 13.9453 22.5407 13.0664 22.5582 12.1699C22.5582 12.0469 22.5641 11.918 22.5992 11.8008C22.6813 11.5078 22.8922 11.3379 23.1852 11.3027C23.4723 11.2676 23.7008 11.3906 23.859 11.6367C23.8942 11.6953 23.9293 11.7539 23.9645 11.8125C23.9645 12.1113 23.9645 12.4043 23.9645 12.7031C23.9528 12.7852 23.9352 12.8672 23.9235 12.9492C23.8649 13.3828 23.8356 13.8164 23.7535 14.25C23.3024 16.6406 22.2125 18.7031 20.5074 20.4316C18.7203 22.2422 16.5699 23.3789 14.0563 23.8184C13.6051 23.8945 13.1481 23.9414 12.691 24.0059C12.2223 24.0059 11.7535 24.0059 11.2848 24.0059C11.2145 23.9941 11.15 23.9766 11.0797 23.9648C10.4293 23.8652 9.76135 23.8066 9.12268 23.6543C2.97034 22.1719 -0.990598 15.9844 0.216433 9.75586C0.679323 7.36523 1.75745 5.30273 3.46839 3.57422C5.2555 1.75781 7.40589 0.621094 9.91956 0.1875C10.3707 0.111328 10.8278 0.0644531 11.2848 0C11.7477 0 12.2164 0 12.6852 0ZM13.5289 12C13.5289 11.1445 12.8434 10.4531 11.9879 10.4473C11.1324 10.4473 10.441 11.1328 10.4352 11.9883C10.4293 12.8555 11.1266 13.5527 11.9879 13.5527C12.8434 13.5469 13.5289 12.8555 13.5289 12Z" fill="#007EA7"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.7 KiB |
|
|
@ -0,0 +1,6 @@
|
||||||
|
<svg width="75" height="75" viewBox="0 0 75 75" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="75" height="75" rx="37.5" fill="#E6F2F6"/>
|
||||||
|
<path d="M20.8334 30C22.0834 31.6667 22.5 35 22.5 37.5C22.5 40 22.0834 43.3333 20.8334 45M24.9334 24.7617C24.5792 23.6583 25.3967 22.5 26.5559 22.5H48.4442C49.6034 22.5 50.4209 23.6583 50.0667 24.7617C49.0834 27.8333 47.5 33.4083 47.5 37.5C47.5 41.5917 49.0834 47.1667 50.0667 50.2383C50.4209 51.3417 49.6034 52.5 48.4442 52.5H26.5559C25.3967 52.5 24.5792 51.3417 24.9334 50.2383C25.9167 47.1667 27.5 41.5917 27.5 37.5C27.5 33.4083 25.9167 27.8333 24.9334 24.7617Z" stroke="#007EA7" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M32.5 30.417H42.5M32.5 37.5003H42.5M32.5 44.167H35.8333" stroke="#007EA7" stroke-width="3" stroke-linecap="round"/>
|
||||||
|
<path d="M54.1667 30C52.9167 31.6667 52.5 35 52.5 37.5C52.5 40 52.9167 42.5 54.1667 45" stroke="#007EA7" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1004 B |
|
|
@ -0,0 +1,13 @@
|
||||||
|
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_12104_5976)">
|
||||||
|
<path d="M24.5299 16.9911C25.4172 16.9911 26.2659 17.0005 27.1049 16.9911C27.4714 16.9911 27.7704 17.0751 27.9343 17.4298C28.0983 17.7844 27.9343 18.0551 27.6739 18.307C25.8222 20.0989 23.9706 21.9001 22.1092 23.692C21.6849 24.1027 21.3184 24.1027 20.8941 23.692C19.0327 21.8908 17.1714 20.0896 15.3004 18.2884C15.0497 18.0457 14.9147 17.7844 15.0593 17.4391C15.204 17.1031 15.4837 16.9911 15.8405 17.0005C16.6892 17.0098 17.5475 17.0005 18.4541 17.0005C18.4541 16.8511 18.4541 16.7205 18.4541 16.5805C18.4541 12.7074 18.4541 8.82501 18.4541 4.95194C18.4541 4.21465 18.6759 4 19.4378 4C20.8169 4 22.2057 4 23.5848 4C24.2695 4 24.5106 4.24265 24.5106 4.91461C24.5106 8.78768 24.5106 12.6701 24.5106 16.5432C24.5299 16.6738 24.5299 16.8138 24.5299 16.9911ZM15.8405 17.6911C17.7501 19.539 19.6403 21.3682 21.4631 23.1321C23.334 21.3215 25.2243 19.4923 27.1049 17.6724C26.0537 17.6724 24.9446 17.6724 23.8066 17.6724C23.8066 13.3327 23.8066 9.03033 23.8066 4.71862C22.2635 4.71862 20.7398 4.71862 19.187 4.71862C19.187 9.049 19.187 13.3607 19.187 17.7004C18.0394 17.6911 16.94 17.6911 15.8405 17.6911Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.8"/>
|
||||||
|
<path d="M7.20375 15.995C6.3753 15.995 5.6003 15.9856 4.81639 15.995C4.47789 15.995 4.20174 15.9016 4.05921 15.5562C3.90778 15.2014 4.06812 14.9307 4.29973 14.6879C6.01007 12.9048 7.7115 11.1123 9.41294 9.32909C9.83162 8.8903 10.1612 8.8903 10.5888 9.32909C12.2902 11.1029 13.9828 12.8861 15.6842 14.6599C15.9247 14.912 16.094 15.1828 15.9425 15.5562C15.7911 15.9296 15.4971 15.995 15.1497 15.995C14.3836 15.9856 13.6175 15.995 12.8069 15.995C12.8069 16.1537 12.8069 16.2844 12.8069 16.4151C12.8069 20.2709 12.8069 24.1266 12.8069 27.9824C12.8069 28.8133 12.6287 29 11.8181 29C10.571 29 9.33277 29 8.08564 29C7.42645 29 7.20375 28.7666 7.20375 28.0851C7.20375 24.2106 7.20375 20.3269 7.20375 16.4524C7.20375 16.3124 7.20375 16.1724 7.20375 15.995ZM7.88076 15.2948C7.88076 19.6547 7.88076 23.9679 7.88076 28.2718C9.31495 28.2718 10.7224 28.2718 12.1477 28.2718C12.1477 23.9399 12.1477 19.636 12.1477 15.2854C13.1989 15.2854 14.2322 15.2854 15.2388 15.2854C13.475 13.4369 11.729 11.6071 10.0365 9.84257C8.30834 11.6538 6.56237 13.4836 4.8253 15.3041C5.78737 15.2948 6.80289 15.2948 7.88076 15.2948Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.8"/>
|
||||||
|
<path d="M10.0267 4.0098C11.7359 4.0098 13.4451 4.0098 15.1543 4.0098C15.7685 4.0098 16 4.26471 16 4.93137C16 5.98039 16 7.03922 16 8.08823C16 8.73529 15.7596 9 15.1632 9C11.7181 9 8.273 9 4.8368 9C4.24036 9 4.0089 8.7451 4 8.08823C4 7.01961 4 5.96078 4 4.89216C4 4.26471 4.24036 4 4.81899 4C6.5549 4.0098 8.2908 4.0098 10.0267 4.0098ZM15.3234 8.2549C15.3234 7.06863 15.3234 5.92157 15.3234 4.76471C11.7715 4.76471 8.23739 4.76471 4.69436 4.76471C4.69436 5.94118 4.69436 7.08824 4.69436 8.2549C8.24629 8.2549 11.7715 8.2549 15.3234 8.2549Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.8"/>
|
||||||
|
<path d="M21.5289 24.0098C23.3806 24.0098 25.2322 24.0098 27.0838 24.0098C27.7493 24.0098 28 24.2647 28 24.9314C28 25.9804 28 27.0392 28 28.0882C28 28.7353 27.7396 29 27.0935 29C23.3613 29 19.6291 29 15.9065 29C15.2604 29 15.0096 28.7451 15 28.0882C15 27.0196 15 25.9608 15 24.8922C15 24.2647 15.2604 24 15.8872 24C17.7678 24.0098 19.6484 24.0098 21.5289 24.0098ZM15.7522 28.2451C19.6098 28.2451 23.4384 28.2451 27.2574 28.2451C27.2574 27.0686 27.2574 25.9118 27.2574 24.7647C23.4095 24.7647 19.5905 24.7647 15.7522 24.7647C15.7522 25.9216 15.7522 27.0686 15.7522 28.2451Z" fill="#007EA7" stroke="#007EA7" stroke-width="0.8"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_12104_5976">
|
||||||
|
<rect width="32" height="32" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.7 KiB |
|
|
@ -0,0 +1,5 @@
|
||||||
|
<svg width="75" height="75" viewBox="0 0 75 75" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="75" height="75" rx="37.5" fill="#E6F2F6"/>
|
||||||
|
<path d="M44.5 24.5C44.5 20.634 41.366 17.5 37.5 17.5C33.634 17.5 30.5 20.634 30.5 24.5V37.5C30.5 41.366 33.634 44.5 37.5 44.5C41.366 44.5 44.5 41.366 44.5 37.5V24.5Z" stroke="#007EA7" stroke-width="3.3" stroke-linejoin="round"/>
|
||||||
|
<path d="M22.5 36.5C22.5 44.784 29.216 51.5 37.5 51.5M37.5 51.5C45.784 51.5 52.5 44.784 52.5 36.5M37.5 51.5V57.5" stroke="#007EA7" stroke-width="3.3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 588 B |
|
After Width: | Height: | Size: 7.6 KiB |
|
|
@ -0,0 +1,7 @@
|
||||||
|
<svg width="75" height="75" viewBox="0 0 75 75" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="75" height="75" rx="37.5" fill="#E6F2F6"/>
|
||||||
|
<path d="M23.5 25.156H28.9M28.9 25.156H32.5M28.9 25.156V23.5M35.5 25.156H32.5M32.5 25.156C31.868 27.418 30.54 29.558 29.028 31.438L31.342 33.844M25.172 35.5C26.5554 34.2433 27.8443 32.8863 29.028 31.44C28.258 30.534 27.178 29.072 26.868 28.41M40.5 51.5L42.166 47.5M42.166 47.5L45.5 39.5L48.834 47.5M42.166 47.5H48.834M50.5 51.5L48.834 47.5" stroke="#007EA7" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M41.5 33.5V29.5C41.5 23.844 41.5 21.014 39.742 19.258C37.986 17.5 35.156 17.5 29.5 17.5C23.844 17.5 21.014 17.5 19.258 19.258C17.5 21.014 17.5 23.844 17.5 29.5C17.5 35.156 17.5 37.986 19.258 39.742C21.014 41.5 23.844 41.5 29.5 41.5H33.5" stroke="#007EA7" stroke-width="2.2" stroke-linecap="round"/>
|
||||||
|
<path d="M33.5 45.5C33.5 39.844 33.5 37.014 35.258 35.258C37.014 33.5 39.844 33.5 45.5 33.5C51.156 33.5 53.986 33.5 55.742 35.258C57.5 37.014 57.5 39.844 57.5 45.5C57.5 51.156 57.5 53.986 55.742 55.742C53.986 57.5 51.156 57.5 45.5 57.5C39.844 57.5 37.014 57.5 35.258 55.742C33.5 53.986 33.5 51.156 33.5 45.5Z" stroke="#007EA7" stroke-width="2.2"/>
|
||||||
|
<path d="M21.5 46.5C21.5 49.308 21.5 50.714 22.174 51.722C22.4659 52.1589 22.8411 52.5341 23.278 52.826C24.286 53.5 25.692 53.5 28.5 53.5M53.5 28.5C53.5 25.692 53.5 24.286 52.826 23.278C52.5341 22.8411 52.1589 22.4659 51.722 22.174C50.714 21.5 49.308 21.5 46.5 21.5" stroke="#007EA7" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="65" height="11" viewBox="0 0 65 11" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M22.3701 6.51001C26.9407 6.51 29.7392 3.43071 31.2051 1.09301C31.71 0.288538 33.29 0.288546 33.7949 1.09301C35.2608 3.43071 38.0594 6.50999 42.6299 6.51001L57.3848 6.51001C61.176 6.51001 64.2498 8.30098 64.25 10.51L0.75 10.51C0.750229 8.30098 3.82401 6.51 7.61523 6.51L22.3701 6.51001Z" fill="#007EA7"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 416 B |
|
|
@ -0,0 +1,5 @@
|
||||||
|
<svg width="75" height="75" viewBox="0 0 75 75" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="75" height="75" rx="37.5" fill="#E6F2F6"/>
|
||||||
|
<path d="M19.8921 29.2459H55.1081M45.1141 29.2459V19.2539M29.8861 29.2459V19.2539M33.7801 37.3559V47.1999C33.7801 47.4019 33.8441 47.5999 33.9621 47.7719C34.0821 47.9419 34.2521 48.0799 34.4541 48.1699C34.6577 48.259 34.8804 48.2953 35.1017 48.2753C35.323 48.2554 35.5357 48.1799 35.7201 48.0559L43.3161 42.7559C43.4636 42.6534 43.5844 42.5169 43.6681 42.3579C43.7469 42.2044 43.7846 42.0331 43.7776 41.8606C43.7706 41.6882 43.7191 41.5205 43.6281 41.3739C43.5297 41.2226 43.3984 41.0955 43.2441 41.0019L35.6481 36.4579C35.4623 36.3499 35.253 36.2889 35.0383 36.2802C34.8236 36.2715 34.61 36.3153 34.4161 36.4079C34.2299 36.4977 34.0701 36.6341 33.9521 36.8039C33.8417 36.967 33.7818 37.159 33.7801 37.3559Z" stroke="#007EA7" stroke-width="2.8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M44 19H31C24.3726 19 19 24.3726 19 31V44C19 50.6274 24.3726 56 31 56H44C50.6274 56 56 50.6274 56 44V31C56 24.3726 50.6274 19 44 19Z" stroke="#007EA7" stroke-width="2.8"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
|
|
@ -0,0 +1,12 @@
|
||||||
|
<svg width="99" height="99" viewBox="0 0 99 99" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M0 49.5C0 31.9952 0 23.2429 3.45932 16.5803C6.37752 10.9599 10.9599 6.37752 16.5803 3.45932C23.2429 0 31.9952 0 49.5 0C67.0048 0 75.7571 0 82.4197 3.45932C88.0401 6.37752 92.6225 10.9599 95.5407 16.5803C99 23.2429 99 31.9952 99 49.5C99 67.0048 99 75.7571 95.5407 82.4197C92.6225 88.0401 88.0401 92.6225 82.4197 95.5407C75.7571 99 67.0048 99 49.5 99C31.9952 99 23.2429 99 16.5803 95.5407C10.9599 92.6225 6.37752 88.0401 3.45932 82.4197C0 75.7571 0 67.0048 0 49.5Z" fill="#E6F2F6"/>
|
||||||
|
<g clip-path="url(#clip0_11520_41121)">
|
||||||
|
<path d="M40.5 70.5H58.5M46.12 70.5C46.12 70.5 46.849 67.227 46.98 59.687C45.9326 58.6794 44.8955 57.661 43.869 56.632C42.8047 55.5708 41.7519 54.4981 40.711 53.414C39.988 52.658 39.791 51.57 40.506 50.807C40.6243 50.6811 40.7467 50.559 40.873 50.441C41.635 49.725 42.723 49.923 43.479 50.646C44.6739 51.7925 45.855 52.9532 47.022 54.128C47.092 49.069 47.314 46.088 47.429 44.844C47.471 44.388 47.623 43.929 48.043 43.746C48.347 43.613 48.809 43.5 49.5 43.5C50.191 43.5 50.654 43.613 50.957 43.746C51.377 43.929 51.529 44.388 51.571 44.844C51.632 45.499 51.723 46.636 51.805 48.304L52.303 47.804C53.3642 46.7397 54.437 45.687 55.521 44.646C56.277 43.923 57.365 43.725 58.128 44.441C58.2539 44.559 58.376 44.6811 58.494 44.807C59.21 45.57 59.012 46.658 58.289 47.414C57.593 48.141 56.559 49.204 55.132 50.632C54.0899 51.6764 53.0369 52.7098 51.973 53.732C51.9903 54.828 51.9993 56.027 52 57.329C52 66.549 52.881 70.5 52.881 70.5" stroke="#007EA7" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M46.853 63.461C44.2364 63.3832 41.6237 63.2038 39.021 62.923C34.551 62.443 31.207 58.676 31.718 54.209C33.301 40.374 41.043 27.5 49.5 27.5C57.957 27.5 65.699 40.374 67.282 54.21C67.792 58.676 64.449 62.442 59.979 62.923C57.3763 63.2038 54.7637 63.3832 52.147 63.461" stroke="#007EA7" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_11520_41121">
|
||||||
|
<rect width="48" height="48" fill="white" transform="translate(25.5 25.5)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 6.5 KiB |
|
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="39" height="46" viewBox="0 0 39 46" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M10.0842 44.25H28.0842M15.7042 44.25C15.7042 44.25 16.4332 40.977 16.5642 33.437C15.5168 32.4294 14.4797 31.411 13.4532 30.382C12.3889 29.3208 11.3362 28.2481 10.2952 27.164C9.57222 26.408 9.37522 25.32 10.0902 24.557C10.2086 24.4311 10.331 24.309 10.4572 24.191C11.2192 23.475 12.3072 23.673 13.0632 24.396C14.2581 25.5425 15.4392 26.7032 16.6062 27.878C16.6762 22.819 16.8982 19.838 17.0132 18.594C17.0552 18.138 17.2072 17.679 17.6272 17.496C17.9312 17.363 18.3932 17.25 19.0842 17.25C19.7752 17.25 20.2382 17.363 20.5412 17.496C20.9612 17.679 21.1132 18.138 21.1552 18.594C21.2162 19.249 21.3072 20.386 21.3892 22.054L21.8872 21.554C22.9484 20.4897 24.0212 19.437 25.1052 18.396C25.8612 17.673 26.9492 17.475 27.7122 18.191C27.8381 18.309 27.9602 18.4311 28.0782 18.557C28.7942 19.32 28.5962 20.408 27.8732 21.164C27.1772 21.891 26.1432 22.954 24.7162 24.382C23.6741 25.4264 22.6211 26.4598 21.5572 27.482C21.5746 28.578 21.5836 29.777 21.5842 31.079C21.5842 40.299 22.4652 44.25 22.4652 44.25" stroke="#007EA7" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M16.4372 37.211C13.8206 37.1332 11.2079 36.9538 8.60524 36.673C4.13524 36.193 0.791236 32.426 1.30224 27.959C2.88524 14.124 10.6272 1.25 19.0842 1.25C27.5412 1.25 35.2832 14.124 36.8662 27.96C37.3762 32.426 34.0332 36.192 29.5632 36.673C26.9605 36.9538 24.3479 37.1332 21.7312 37.211" stroke="#007EA7" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
|
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M6 12H18" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M12 18V6" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 307 B |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M21.3334 11.333C23.1107 13.7037 23.1107 18.2957 21.3334 20.6664M25.3334 6.66636C30.6507 11.7437 30.6827 20.289 25.3334 25.333M2.66675 19.945V12.053C2.66675 11.2877 3.26408 10.6664 4.00008 10.6664H8.78141C8.95786 10.6657 9.13235 10.6294 9.29436 10.5595C9.45637 10.4896 9.60255 10.3876 9.72408 10.2597L13.7241 5.74236C14.5641 4.86769 16.0001 5.48769 16.0001 6.72369V25.2757C16.0001 26.521 14.5467 27.1357 13.7121 26.2437L9.72542 21.7517C9.60354 21.6201 9.45588 21.5151 9.29164 21.443C9.1274 21.371 8.95009 21.3336 8.77075 21.333H4.00008C3.26408 21.333 2.66675 20.7117 2.66675 19.945Z" stroke="#007EA7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 778 B |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M16.8199 2H7.17995C5.04995 2 3.31995 3.74 3.31995 5.86V19.95C3.31995 21.75 4.60995 22.51 6.18995 21.64L11.0699 18.93C11.5899 18.64 12.4299 18.64 12.9399 18.93L17.8199 21.64C19.3999 22.52 20.6899 21.76 20.6899 19.95V5.86C20.6799 3.74 18.9499 2 16.8199 2Z" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 450 B |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M12 17.7298C11.3 17.7298 10.6 17.4598 10.07 16.9298L3.55002 10.4098C3.26002 10.1198 3.26002 9.63982 3.55002 9.34982C3.84002 9.05982 4.32002 9.05982 4.61002 9.34982L11.13 15.8698C11.61 16.3498 12.39 16.3498 12.87 15.8698L19.39 9.34982C19.68 9.05982 20.16 9.05982 20.45 9.34982C20.74 9.63982 20.74 10.1198 20.45 10.4098L13.93 16.9298C13.4 17.4598 12.7 17.7298 12 17.7298Z" fill="#2196F3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 500 B |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M15 19.92L8.48 13.4C7.71 12.63 7.71 11.37 8.48 10.6L15 4.07996" stroke="#292D32" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 284 B |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M6.6825 15.0292L11.5725 10.1392C12.15 9.56167 12.15 8.61667 11.5725 8.03917L6.6825 3.14917" stroke="#2196F3" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 312 B |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M19.9201 15.0499L13.4001 8.52989C12.6301 7.75989 11.3701 7.75989 10.6001 8.52989L4.08008 15.0499" stroke="#292D32" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 318 B |
|
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="32" height="33" viewBox="0 0 32 33" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M16.5067 23.17H13.4533C12.9067 23.17 12.4533 22.7166 12.4533 22.17C12.4533 21.6233 12.9067 21.17 13.4533 21.17H16.5067C17.08 21.17 17.5467 20.7033 17.5467 20.13C17.5467 19.5566 17.08 19.09 16.5067 19.09H13.4533C13.1333 19.09 12.8267 18.93 12.64 18.6766C12.4533 18.4233 12.4 18.0766 12.5067 17.77L13.52 14.7166C13.6533 14.3033 14.04 14.0366 14.4667 14.0366H18.5467C19.0933 14.0366 19.5467 14.49 19.5467 15.0366C19.5467 15.5833 19.0933 16.0366 18.5467 16.0366H15.1867L14.84 17.09H16.5067C18.1867 17.09 19.5467 18.45 19.5467 20.13C19.5467 21.81 18.1867 23.17 16.5067 23.17Z" fill="#666666"/>
|
||||||
|
<path d="M16 5.24978C15.8933 5.24978 15.7867 5.26311 15.68 5.26311L16.7733 3.90312C17.12 3.47645 17.0533 2.83645 16.6133 2.50311C16.1733 2.16978 15.56 2.22311 15.2133 2.66311L12.5867 5.94311C12.5733 5.95645 12.5733 5.96978 12.56 5.99645C12.52 6.04978 12.4933 6.11645 12.4667 6.16978C12.44 6.23645 12.4133 6.28978 12.4 6.34312C12.3867 6.40978 12.3867 6.46312 12.3867 6.52978C12.3867 6.59645 12.3867 6.66312 12.3867 6.72978C12.3867 6.75645 12.3867 6.76978 12.3867 6.79645C12.4 6.83645 12.4267 6.86311 12.44 6.90311C12.4667 6.96978 12.4933 7.02312 12.52 7.08978C12.56 7.14312 12.6 7.19645 12.6533 7.23645C12.68 7.27645 12.6933 7.31645 12.7333 7.34312C12.76 7.35645 12.7733 7.36978 12.8 7.38311C12.84 7.40978 12.8667 7.42311 12.9067 7.43645C12.9733 7.47645 13.0533 7.50311 13.1333 7.51645C13.1733 7.54311 13.2133 7.54311 13.2533 7.54311C13.2933 7.54311 13.32 7.55645 13.36 7.55645C13.4 7.55645 13.4267 7.54312 13.4533 7.52978C13.4933 7.52978 13.5333 7.54312 13.5733 7.52978C14.4267 7.32978 15.2267 7.23645 15.9867 7.23645C21.9733 7.23645 26.84 12.1031 26.84 18.0898C26.84 24.0764 21.9733 28.9431 15.9867 28.9431C10 28.9431 5.13333 24.0764 5.13333 18.0898C5.13333 15.7698 5.89333 13.5298 7.33333 11.6098C7.66667 11.1698 7.57333 10.5431 7.13333 10.2098C6.69333 9.87645 6.06667 9.96978 5.73333 10.4098C4.02667 12.6764 3.13333 15.3298 3.13333 18.0898C3.13333 25.1698 8.89333 30.9431 15.9867 30.9431C23.08 30.9431 28.84 25.1831 28.84 18.0898C28.84 10.9964 23.08 5.24978 16 5.24978Z" fill="#666666"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
|
|
@ -0,0 +1,11 @@
|
||||||
|
<svg width="40" height="41" viewBox="0 0 40 41" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_10748_36913)">
|
||||||
|
<path d="M25.4375 5.4775C27.4625 8.7575 29.395 14.0525 29.8825 22.525L33.6325 27.1C34.5185 28.2087 35.0007 29.5858 35 31.005V39.25C35 39.5124 34.9175 39.7681 34.7641 39.9809C34.6107 40.1937 34.3942 40.3529 34.1453 40.4359C33.8964 40.5188 33.6277 40.5214 33.3773 40.4431C33.1269 40.3649 32.9074 40.2099 32.75 40L29.9375 36.25C29.5225 35.695 28.8875 35.25 28.0575 34.825C27.5225 34.555 27.0225 34.345 26.49 34.12L26 33.9125C24.25 34.9825 22.125 35.5 20 35.5C17.875 35.5 15.75 34.9825 14 33.9125C13.8317 33.9858 13.6667 34.0558 13.505 34.1225C12.9775 34.345 12.4775 34.555 11.9425 34.825C11.1125 35.25 10.4775 35.695 10.0625 36.25L7.25 40C7.09259 40.2099 6.87313 40.3649 6.62271 40.4431C6.37229 40.5214 6.10361 40.5188 5.85472 40.4359C5.60583 40.3529 5.38935 40.1937 5.23595 39.9809C5.08255 39.7681 5 39.5124 5 39.25V31.005C4.99997 29.5855 5.48314 28.2083 6.37 27.1L6.38 27.0875L10.1225 22.525C10.615 14.2175 12.545 8.94 14.5575 5.635C15.7225 3.7175 16.9075 2.48 17.8325 1.71C18.2984 1.3198 18.8017 0.976478 19.335 0.685C19.5373 0.567793 19.7662 0.50412 20 0.5C20.2525 0.5 20.425 0.5675 20.625 0.66C20.7183 0.701667 20.8392 0.764167 20.9875 0.8475C21.2825 1.0125 21.68 1.265 22.145 1.635C23.0775 2.3775 24.27 3.5825 25.4375 5.4775ZM23.75 15.5C23.75 12.7375 22.07 10.5 20 10.5C17.93 10.5 16.25 12.7375 16.25 15.5C16.25 18.2625 17.93 20.5 20 20.5C22.07 20.5 23.75 18.2625 23.75 15.5Z" fill="white"/>
|
||||||
|
<path d="M20 36.7501C21.25 36.7501 22.4975 36.6351 23.6975 36.4026L21 40.0001C20.8836 40.1553 20.7326 40.2813 20.559 40.3681C20.3854 40.4549 20.194 40.5001 20 40.5001C19.8059 40.5001 19.6145 40.4549 19.441 40.3681C19.2674 40.2813 19.1164 40.1553 19 40.0001L16.3025 36.4026C17.5025 36.6351 18.7525 36.7501 20 36.7501Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_10748_36913">
|
||||||
|
<rect width="40" height="40" fill="white" transform="translate(0 0.5)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.0 KiB |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="18" height="20" viewBox="0 0 18 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M13.5114 0H3.85862C1.737 0 0 1.737 0 3.85862V17.9531C0 19.7522 1.29034 20.5214 2.86605 19.6405L7.74206 16.9233C8.26316 16.638 9.10684 16.638 9.61554 16.9233L14.4915 19.6405C16.0797 20.509 17.37 19.7522 17.37 17.9531V3.85862C17.37 1.737 15.633 0 13.5114 0Z" fill="white"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 384 B |
|
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="43" height="43" viewBox="0 0 43 43" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="42.5445" height="42.5445" rx="21.2723" fill="black" fill-opacity="0.6"/>
|
||||||
|
<path d="M26.0923 11.2725H16.4523C14.3223 11.2725 12.5923 13.0125 12.5923 15.1325V29.2225C12.5923 31.0225 13.8823 31.7825 15.4623 30.9125L20.3423 28.2025C20.8623 27.9125 21.7023 27.9125 22.2123 28.2025L27.0923 30.9125C28.6723 31.7925 29.9623 31.0325 29.9623 29.2225V15.1325C29.9523 13.0125 28.2223 11.2725 26.0923 11.2725Z" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 596 B |
|
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="43" height="43" viewBox="0 0 43 43" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="42.5445" height="42.5445" rx="21.2723" fill="black" fill-opacity="0.6"/>
|
||||||
|
<path d="M26.0987 11.269H16.4459C14.3243 11.269 12.5873 13.006 12.5873 15.1277V29.2222C12.5873 31.0212 13.8776 31.7905 15.4533 30.9095L20.3293 28.1924C20.8504 27.907 21.6941 27.907 22.2028 28.1924L27.0788 30.9095C28.6669 31.778 29.9573 31.0212 29.9573 29.2222V15.1277C29.9573 13.006 28.2203 11.269 26.0987 11.269Z" fill="white"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 519 B |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="41" height="41" viewBox="0 0 41 41" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M24.8 11.5C24.2696 11.5 23.7609 11.7107 23.3858 12.0858C23.0108 12.4609 22.8 12.9696 22.8 13.5C22.8 14.0304 23.0108 14.5391 23.3858 14.9142C23.7609 15.2893 24.2696 15.5 24.8 15.5C25.3305 15.5 25.8392 15.2893 26.2143 14.9142C26.5893 14.5391 26.8 14.0304 26.8 13.5C26.8 12.9696 26.5893 12.4609 26.2143 12.0858C25.8392 11.7107 25.3305 11.5 24.8 11.5ZM14.8 13.5C14.8 12.9696 15.0108 12.4609 15.3858 12.0858C15.7609 11.7107 16.2696 11.5 16.8 11.5C17.3305 11.5 17.8392 11.7107 18.2143 12.0858C18.5893 12.4609 18.8 12.9696 18.8 13.5C18.8 14.0304 18.5893 14.5391 18.2143 14.9142C17.8392 15.2893 17.3305 15.5 16.8 15.5C16.2696 15.5 15.7609 15.2893 15.3858 14.9142C15.0108 14.5391 14.8 14.0304 14.8 13.5ZM21.8 5.5C21.8 5.23478 21.6947 4.98043 21.5072 4.79289C21.3196 4.60536 21.0653 4.5 20.8 4.5C20.5348 4.5 20.2805 4.60536 20.0929 4.79289C19.9054 4.98043 19.8 5.23478 19.8 5.5V6.5H13.8C13.0044 6.5 12.2413 6.81607 11.6787 7.37868C11.1161 7.94129 10.8 8.70435 10.8 9.5V17.5C10.8 18.2956 11.1161 19.0587 11.6787 19.6213C12.2413 20.1839 13.0044 20.5 13.8 20.5H27.8C28.5957 20.5 29.3588 20.1839 29.9214 19.6213C30.484 19.0587 30.8 18.2956 30.8 17.5V9.5C30.8 8.70435 30.484 7.94129 29.9214 7.37868C29.3588 6.81607 28.5957 6.5 27.8 6.5H21.8V5.5ZM13.8 8.5H27.8C28.0653 8.5 28.3196 8.60536 28.5072 8.79289C28.6947 8.98043 28.8 9.23478 28.8 9.5V17.5C28.8 17.7652 28.6947 18.0196 28.5072 18.2071C28.3196 18.3946 28.0653 18.5 27.8 18.5H13.8C13.5348 18.5 13.2805 18.3946 13.0929 18.2071C12.9054 18.0196 12.8 17.7652 12.8 17.5V9.5C12.8 9.23478 12.9054 8.98043 13.0929 8.79289C13.2805 8.60536 13.5348 8.5 13.8 8.5ZM21.3 36.496C26.532 36.43 29.69 35.306 31.544 33.616C33.294 32.016 33.7221 30.062 33.7901 28.504H33.8V27.124C33.7995 26.1643 33.4179 25.244 32.7391 24.5656C32.0602 23.8871 31.1398 23.506 30.18 23.506H23.8V23.5H17.8V23.506H11.42C9.42005 23.506 7.80005 25.126 7.80005 27.126V28.504H7.81005C7.87805 30.064 8.30605 32.018 10.056 33.614C11.91 35.306 15.068 36.43 20.3 36.496V36.5H21.3V36.496ZM11.42 25.506H30.18C30.6097 25.506 31.0218 25.6767 31.3256 25.9805C31.6294 26.2843 31.8 26.6963 31.8 27.126V28C31.8 29.38 31.538 30.912 30.196 32.138C28.82 33.392 26.12 34.5 20.8 34.5C15.48 34.5 12.78 33.392 11.404 32.138C10.064 30.912 9.80005 29.378 9.80005 28V27.124C9.80058 26.6947 9.97149 26.2832 10.2752 25.9798C10.579 25.6764 10.9907 25.506 11.42 25.506Z" fill="#666666"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.4 KiB |
|
|
@ -0,0 +1,12 @@
|
||||||
|
<svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M6.5 1.5V3.75" stroke="#666666" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M12.5 1.5V3.75" stroke="#666666" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M3.125 6.81738H15.875" stroke="#666666" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M16.25 6.375V12.75C16.25 15 15.125 16.5 12.5 16.5H6.5C3.875 16.5 2.75 15 2.75 12.75V6.375C2.75 4.125 3.875 2.625 6.5 2.625H12.5C15.125 2.625 16.25 4.125 16.25 6.375Z" stroke="#666666" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M12.271 10.2754H12.2778" stroke="#666666" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M12.271 12.5254H12.2778" stroke="#666666" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M9.49661 10.2754H9.50335" stroke="#666666" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M9.49661 12.5254H9.50335" stroke="#666666" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M6.72073 10.2754H6.72747" stroke="#666666" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M6.72073 12.5254H6.72747" stroke="#666666" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
|
|
@ -0,0 +1,5 @@
|
||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M21.97 18.33C21.97 18.69 21.89 19.06 21.72 19.42C21.55 19.78 21.33 20.12 21.04 20.44C20.55 20.98 20.01 21.37 19.4 21.62C18.8 21.87 18.15 22 17.45 22C16.43 22 15.34 21.76 14.19 21.27C13.04 20.78 11.89 20.12 10.75 19.29C9.6 18.45 8.51 17.52 7.47 16.49C6.44 15.45 5.51 14.36 4.68 13.22C3.86 12.08 3.2 10.94 2.72 9.81C2.24 8.67 2 7.58 2 6.54C2 5.86 2.12 5.21 2.36 4.61C2.6 4 2.98 3.44 3.51 2.94C4.15 2.31 4.85 2 5.59 2C5.87 2 6.15 2.06 6.4 2.18C6.66 2.3 6.89 2.48 7.07 2.74L9.39 6.01C9.57 6.26 9.7 6.49 9.79 6.71C9.88 6.92 9.93 7.13 9.93 7.32C9.93 7.56 9.86 7.8 9.72 8.03C9.59 8.26 9.4 8.5 9.16 8.74L8.4 9.53C8.29 9.64 8.24 9.77 8.24 9.93C8.24 10.01 8.25 10.08 8.27 10.16C8.3 10.24 8.33 10.3 8.35 10.36C8.53 10.69 8.84 11.12 9.28 11.64C9.73 12.16 10.21 12.69 10.73 13.22C11.27 13.75 11.79 14.24 12.32 14.69C12.84 15.13 13.27 15.43 13.61 15.61C13.66 15.63 13.72 15.66 13.79 15.69C13.87 15.72 13.95 15.73 14.04 15.73C14.21 15.73 14.34 15.67 14.45 15.56L15.21 14.81C15.46 14.56 15.7 14.37 15.93 14.25C16.16 14.11 16.39 14.04 16.64 14.04C16.83 14.04 17.03 14.08 17.25 14.17C17.47 14.26 17.7 14.39 17.95 14.56L21.26 16.91C21.52 17.09 21.7 17.3 21.81 17.55C21.91 17.8 21.97 18.05 21.97 18.33Z" stroke="#007EA7" stroke-width="1.5" stroke-miterlimit="10"/>
|
||||||
|
<path d="M18.5 9C18.5 8.4 18.03 7.48 17.33 6.73C16.69 6.04 15.84 5.5 15 5.5" stroke="#007EA7" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M22 9C22 5.13 18.87 2 15 2" stroke="#007EA7" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |