curatenie si fix target
@@ -1,15 +1,13 @@
|
||||
local targetSystem
|
||||
|
||||
if Config.Framework == "QBCore" then
|
||||
if GetResourceState("ox_target") ~= "missing" then
|
||||
targetSystem = "ox_target"
|
||||
elseif GetResourceState("qb-target") ~= "missing" then
|
||||
targetSystem = "qb-target"
|
||||
else
|
||||
targetSystem = "qtarget"
|
||||
end
|
||||
|
||||
if GetResourceState("ox_target") ~= "missing" then
|
||||
targetSystem = "qtarget" -- OX_Target have a backward compability to qtarget
|
||||
end
|
||||
|
||||
function SpawnStartingPed()
|
||||
local model = `a_m_m_indian_01`
|
||||
RequestModel(model)
|
||||
|
||||
@@ -1,165 +0,0 @@
|
||||
|
||||
local targetCache = {}
|
||||
function InitInteraction()
|
||||
if Config.InteractionHandler == 'ox_target' then
|
||||
if targetCache[companyData.company] then return end
|
||||
targetCache[companyData.company] = true
|
||||
exports.ox_target:addBoxZone({
|
||||
name = 'mBoss'..companyData.company,
|
||||
coords = vector3(companyData.location.x, companyData.location.y, companyData.location.z),
|
||||
size = vec3(3.6, 3.6, 3.6),
|
||||
drawSprite = true,
|
||||
options = {
|
||||
{
|
||||
name = 'mBoss'..companyData.company,
|
||||
event = 'mBossmenu:OpenMenu',
|
||||
icon = 'fas fa-gears',
|
||||
label = locales.open_menu,
|
||||
}
|
||||
}
|
||||
})
|
||||
end
|
||||
if Config.InteractionHandler == 'qb_target' then
|
||||
if targetCache[companyData.company] then return end
|
||||
targetCache[companyData.company] = true
|
||||
exports['qb-target']:AddBoxZone('mBoss'..companyData.company, vector3(companyData.location.x, companyData.location.y, companyData.location.z), 1.5, 1.6,
|
||||
{
|
||||
name = 'mBoss'..companyData.company,
|
||||
heading = 12.0,
|
||||
debugPoly = false,
|
||||
minZ = companyData.location.z - 1,
|
||||
maxZ = companyData.location.z + 1,
|
||||
},
|
||||
{
|
||||
options = {
|
||||
{
|
||||
num = 1,
|
||||
type = "client",
|
||||
icon = 'fas fa-gears',
|
||||
label = locales.open_menu,
|
||||
targeticon = 'fas fa-gears',
|
||||
action = function()
|
||||
TriggerEvent("mBossmenu:OpenMenu")
|
||||
end
|
||||
}
|
||||
},
|
||||
distance = 4.5,
|
||||
})
|
||||
end
|
||||
if Config.InteractionHandler == 'qb_textui' then
|
||||
|
||||
if targetCache[companyData.company] then return end
|
||||
targetCache[companyData.company] = true
|
||||
CreateThread(function()
|
||||
while true do
|
||||
local show = false
|
||||
local cd = 1500
|
||||
if companyData.location then
|
||||
local plyCoords = GetEntityCoords(PlayerPedId())
|
||||
local vec = vector3(companyData.location.x, companyData.location.y, companyData.location.z)
|
||||
local dist = #(vec - plyCoords)
|
||||
if dist < 5.0 and CanOpenMenu() then
|
||||
cd = 0
|
||||
if not show then
|
||||
exports["17mov_Hud"]:ShowHelpNotification(locales.press)
|
||||
show = true
|
||||
end
|
||||
if IsControlJustPressed(0, Config.MenuKey) then
|
||||
OpenMenu('main', 'employees')
|
||||
loadPlayerInventory()
|
||||
loadPlayerVault()
|
||||
end
|
||||
else
|
||||
if show then
|
||||
show = false
|
||||
exports["17mov_Hud"]:HideHelpNotification()
|
||||
end
|
||||
end
|
||||
else
|
||||
if show then
|
||||
show = false
|
||||
exports["17mov_Hud"]:HideHelpNotification()
|
||||
|
||||
end
|
||||
end
|
||||
Wait(cd)
|
||||
end
|
||||
end)
|
||||
end
|
||||
if Config.InteractionHandler == 'esx_textui' then
|
||||
if targetCache[companyData.company] then return end
|
||||
targetCache[companyData.company] = true
|
||||
|
||||
CreateThread(function()
|
||||
local show = false
|
||||
while true do
|
||||
|
||||
local cd = 1500
|
||||
if companyData.location then
|
||||
local plyCoords = GetEntityCoords(PlayerPedId())
|
||||
local vec = vector3(companyData.location.x, companyData.location.y, companyData.location.z)
|
||||
local dist = #(vec - plyCoords)
|
||||
if dist < 5.0 and CanOpenMenu() then
|
||||
cd = 0
|
||||
if not show then
|
||||
Core.TextUI(locales.press)
|
||||
show = true
|
||||
end
|
||||
if IsControlJustPressed(0, Config.MenuKey) then
|
||||
OpenMenu('main', 'employees')
|
||||
loadPlayerInventory()
|
||||
loadPlayerVault()
|
||||
end
|
||||
else
|
||||
if show then
|
||||
show = false
|
||||
Core.HideUI()
|
||||
end
|
||||
end
|
||||
else
|
||||
if show then
|
||||
show = false
|
||||
Core.HideUI()
|
||||
|
||||
end
|
||||
end
|
||||
Wait(cd)
|
||||
end
|
||||
end)
|
||||
end
|
||||
if Config.InteractionHandler == 'drawtext' then
|
||||
if targetCache[companyData.company] then return end
|
||||
targetCache[companyData.company] = true
|
||||
CreateThread(function()
|
||||
while true do
|
||||
local cd = 1500
|
||||
if companyData.location then
|
||||
local plyCoords = GetEntityCoords(PlayerPedId())
|
||||
local vec = vector3(companyData.location.x, companyData.location.y, companyData.location.z)
|
||||
local dist = #(vec - plyCoords)
|
||||
if dist < 4.0 and CanOpenMenu() then
|
||||
cd = 0
|
||||
DrawMarker(2, vec, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.2, 0.15, 255, 255, 255, 255, false, false, false,
|
||||
true, false, false, false)
|
||||
DrawText3D(vec.x, vec.y, vec.z, "Press E to open Bossmenu")
|
||||
if IsControlJustPressed(0, Config.MenuKey) then
|
||||
OpenMenu('main', 'employees')
|
||||
loadPlayerInventory()
|
||||
loadPlayerVault()
|
||||
end
|
||||
end
|
||||
end
|
||||
Wait(cd)
|
||||
end
|
||||
end)
|
||||
end
|
||||
end
|
||||
|
||||
RegisterCommand(Config.AdminMenuCommand, function()
|
||||
local isAdmin = TriggerCallback("mBossmenu:checkIsAdmin")
|
||||
if isAdmin then
|
||||
OpenMenu('admin', 'adminlist')
|
||||
else
|
||||
Config.Notify(locales.no_permission_2)
|
||||
end
|
||||
end)
|
||||
@@ -1,81 +0,0 @@
|
||||
function WaitCore()
|
||||
while Core == nil do
|
||||
Wait(0)
|
||||
end
|
||||
end
|
||||
|
||||
function DrawText3D(x, y, z, text)
|
||||
SetTextScale(0.35, 0.35)
|
||||
SetTextFont(4)
|
||||
SetTextProportional(1)
|
||||
SetTextColour(255, 255, 255, 215)
|
||||
SetTextEntry('STRING')
|
||||
SetTextCentre(true)
|
||||
AddTextComponentString(text)
|
||||
SetDrawOrigin(x, y, z, 0)
|
||||
DrawText(0.0, 0.0)
|
||||
local factor = (string.len(text)) / 370
|
||||
DrawRect(0.0, 0.0 + 0.0125, 0.017 + factor, 0.03, 0, 0, 0, 75)
|
||||
ClearDrawOrigin()
|
||||
end
|
||||
|
||||
|
||||
function TriggerCallback(name, data)
|
||||
local incomingData = false
|
||||
local status = 'UNKOWN'
|
||||
local counter = 0
|
||||
WaitCore()
|
||||
if Config.Framework == 'esx' or Config.Framework == 'oldesx' then
|
||||
Core.TriggerServerCallback(name, function(payload)
|
||||
status = 'SUCCESS'
|
||||
incomingData = payload
|
||||
end, data)
|
||||
else
|
||||
Core.Functions.TriggerCallback(name, function(payload)
|
||||
status = 'SUCCESS'
|
||||
incomingData = payload
|
||||
end, data)
|
||||
end
|
||||
CreateThread(function()
|
||||
while incomingData == 'UNKOWN' do
|
||||
Wait(1000)
|
||||
if counter == 4 then
|
||||
status = 'FAILED'
|
||||
incomingData = false
|
||||
break
|
||||
end
|
||||
counter = counter + 1
|
||||
end
|
||||
end)
|
||||
|
||||
while status == 'UNKOWN' do
|
||||
Wait(0)
|
||||
end
|
||||
return incomingData
|
||||
end
|
||||
|
||||
function WaitPlayer()
|
||||
if Config.Framework == "esx" or Config.Framework == 'oldesx' then
|
||||
WaitCore()
|
||||
while Core.GetPlayerData() == nil do
|
||||
Wait(0)
|
||||
end
|
||||
while Core.GetPlayerData().job == nil do
|
||||
Wait(0)
|
||||
end
|
||||
else
|
||||
WaitCore()
|
||||
while Core.Functions.GetPlayerData() == nil do
|
||||
Wait(0)
|
||||
end
|
||||
while Core.Functions.GetPlayerData().metadata == nil do
|
||||
Wait(0)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
function WaitNui()
|
||||
while not nuiLoaded do
|
||||
Wait(0)
|
||||
end
|
||||
end
|
||||
@@ -1,54 +0,0 @@
|
||||
fx_version 'cerulean'
|
||||
game 'gta5'
|
||||
version '2.1'
|
||||
author 'discord.gg/codem'
|
||||
|
||||
shared_scripts {
|
||||
'shared/*.lua',
|
||||
}
|
||||
|
||||
client_scripts {
|
||||
'shared/locales.lua',
|
||||
'client/*.lua',
|
||||
}
|
||||
|
||||
server_scripts {
|
||||
-- '@mysql-async/lib/MySQL.lua', --PLEASE READ:warning:; Uncomment this line if you use 'mysql-async'.:warning:
|
||||
'@oxmysql/lib/MySQL.lua', -- PLEASE READ:warning:; Uncomment this line if you use 'oxmysql'.:warning:
|
||||
'shared/locales.lua',
|
||||
'server/*.lua',
|
||||
}
|
||||
|
||||
ui_page "html/index.html"
|
||||
|
||||
files {
|
||||
'html/index.html',
|
||||
'html/index.css',
|
||||
'html/responsive.css',
|
||||
'html/index.js',
|
||||
'html/*.js',
|
||||
'html/assets/**/*.png',
|
||||
'html/assets/**/**/*.png',
|
||||
'html/assets/**/*.otf',
|
||||
'html/assets/**/*.svg',
|
||||
'html/util/**/*.js',
|
||||
'html/components/**/*.js',
|
||||
'html/components/**/*.css',
|
||||
'html/components/**/*.html',
|
||||
}
|
||||
|
||||
escrow_ignore {
|
||||
'shared/*.lua',
|
||||
'client/editable.lua',
|
||||
'client/util.lua',
|
||||
'server/util.lua',
|
||||
'server/botToken.lua',
|
||||
}
|
||||
|
||||
server_exports {
|
||||
'AddMoney'
|
||||
}
|
||||
|
||||
lua54 'yes'
|
||||
|
||||
dependency '/assetpacks'
|
||||
|
Before Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 49 KiB |
|
Before Width: | Height: | Size: 372 KiB |
|
Before Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 91 KiB |
|
Before Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 163 KiB |
|
Before Width: | Height: | Size: 1.4 MiB |
|
Before Width: | Height: | Size: 73 KiB |
|
Before Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 62 KiB |
|
Before Width: | Height: | Size: 1010 KiB |
|
Before Width: | Height: | Size: 4.1 KiB |
|
Before Width: | Height: | Size: 8.9 KiB |
|
Before Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 1.2 MiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="11" height="14" viewBox="0 0 11 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M2.02734 14H8.97262C9.64841 14 10.1552 13.8291 10.4931 13.4874C10.831 13.1457 11 12.6353 11 11.9562V2.05038C11 1.36691 10.831 0.854321 10.4931 0.512594C10.1552 0.170865 9.64841 0 8.97262 0H7.31155C7.19819 0 7.10772 0.0359142 7.04013 0.107743C6.97253 0.179571 6.93874 0.274254 6.93874 0.391791C6.93874 0.404851 6.93874 0.420087 6.93874 0.4375C6.93874 0.454913 6.93874 0.470149 6.93874 0.483209C6.93874 0.905472 6.80686 1.2374 6.5431 1.47901C6.27932 1.72062 5.93162 1.84142 5.49999 1.84142C5.06836 1.84142 4.72066 1.72062 4.45689 1.47901C4.19312 1.2374 4.06123 0.905472 4.06123 0.483209C4.06123 0.470149 4.06123 0.454913 4.06123 0.4375C4.06123 0.420087 4.06123 0.404851 4.06123 0.391791C4.06123 0.274254 4.02744 0.179571 3.95987 0.107743C3.89229 0.0359142 3.80182 0 3.68846 0H2.02734C1.35156 0 0.844727 0.170865 0.506837 0.512594C0.168946 0.854321 0 1.36691 0 2.05038V11.9562C0 12.6353 0.168946 13.1457 0.506837 13.4874C0.844727 13.8291 1.35156 14 2.02734 14ZM3.0214 4.86474C2.90368 4.86474 2.80668 4.82556 2.73038 4.7472C2.65408 4.66884 2.61593 4.5709 2.61593 4.45336C2.61593 4.34018 2.65408 4.24549 2.73038 4.16931C2.80668 4.09313 2.90368 4.05504 3.0214 4.05504H7.98511C8.09846 4.05504 8.19329 4.09313 8.26959 4.16931C8.34589 4.24549 8.38404 4.34018 8.38404 4.45336C8.38404 4.5709 8.34589 4.66884 8.26959 4.7472C8.19329 4.82556 8.09846 4.86474 7.98511 4.86474H3.0214ZM3.0214 7.18284C2.90368 7.18284 2.80668 7.14475 2.73038 7.06857C2.65408 6.99239 2.61593 6.89771 2.61593 6.78452C2.61593 6.67133 2.65408 6.57556 2.73038 6.4972C2.80668 6.41885 2.90368 6.37967 3.0214 6.37967H5.3692C5.48691 6.37967 5.58392 6.41885 5.66022 6.4972C5.73652 6.57556 5.77467 6.67133 5.77467 6.78452C5.77467 6.89771 5.73652 6.99239 5.66022 7.06857C5.58392 7.14475 5.48691 7.18284 5.3692 7.18284H3.0214Z" fill="white" fill-opacity="0.7" style="fill:white;fill:white;fill-opacity:0.7;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.32377 0.00934404C7.3272 0.243742 0.379916 2.02449 0.291169 2.06825C0.222341 2.10221 0.128664 2.17222 0.0830278 2.2238L0 2.31764V6.26113C0 9.31744 0.0113202 10.2549 0.0502901 10.4281C0.426578 12.1002 2.00399 13.7159 4.82137 15.3149C6.16489 16.0773 8.17901 17 8.5 17C8.82099 17 10.8351 16.0773 12.1786 15.3149C14.996 13.7159 16.5734 12.1002 16.9497 10.4281C16.9887 10.2549 17 9.31744 17 6.26113V2.31764L16.917 2.2238C16.8713 2.17222 16.7777 2.10221 16.7088 2.06825C16.5541 1.99189 8.77748 0.0223366 8.55916 0.00419354C8.47239 -0.00301717 8.36644 -0.000691137 8.32377 0.00934404Z" fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 817 B |
@@ -1,3 +0,0 @@
|
||||
<svg opacity="0.4" width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.32377 0.00934404C7.3272 0.243742 0.379916 2.02449 0.291169 2.06825C0.222341 2.10221 0.128664 2.17222 0.0830278 2.2238L0 2.31763V6.26113C0 9.31744 0.0113202 10.2549 0.0502901 10.4281C0.426578 12.1002 2.00399 13.7159 4.82137 15.3149C6.16489 16.0773 8.17901 17 8.5 17C8.82099 17 10.8351 16.0773 12.1786 15.3149C14.996 13.7159 16.5734 12.1002 16.9497 10.4281C16.9887 10.2549 17 9.31744 17 6.26113V2.31763L16.917 2.2238C16.8713 2.17222 16.7777 2.10221 16.7088 2.06825C16.5541 1.99189 8.77748 0.0223366 8.55916 0.00419354C8.47239 -0.00301717 8.36645 -0.000691137 8.32377 0.00934404Z" fill="white" fill-opacity="0.85"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 782 B |
|
Before Width: | Height: | Size: 6.4 KiB |
@@ -1,4 +0,0 @@
|
||||
<svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="25" cy="25" r="24.5" fill="#84B5FF" fill-opacity="0.26" stroke="#84B5FF"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.8688 31.8079H33.7455C34.3636 31.8079 34.7971 31.7222 35.0459 31.5506C35.2947 31.3791 35.4191 31.1245 35.4191 30.7866C35.4191 30.2951 35.2659 29.7754 34.9595 29.2275C34.653 28.6797 34.213 28.1665 33.6395 27.6878C33.0658 27.2091 32.3718 26.8201 31.5573 26.5206C30.7427 26.221 29.8247 26.0713 28.8032 26.0713C27.787 26.0713 26.8717 26.221 26.0571 26.5206C25.2426 26.8201 24.5485 27.2091 23.9749 27.6878C23.4013 28.1665 22.9613 28.6797 22.6548 29.2275C22.3484 29.7754 22.1952 30.2951 22.1952 30.7866C22.1952 31.1245 22.3196 31.3791 22.5684 31.5506C22.8173 31.7222 23.2507 31.8079 23.8688 31.8079ZM28.8111 24.6966C29.3716 24.6966 29.8902 24.5468 30.3669 24.2473C30.8436 23.9478 31.2273 23.5421 31.518 23.0301C31.8087 22.5182 31.9541 21.9422 31.9541 21.3022C31.9541 20.6725 31.8087 20.1081 31.518 19.6089C31.2273 19.1097 30.8436 18.7168 30.3669 18.4301C29.8902 18.1434 29.3716 18 28.8111 18C28.2506 18 27.732 18.1459 27.2553 18.4377C26.7786 18.7296 26.3949 19.1263 26.1042 19.6281C25.8135 20.1298 25.6682 20.693 25.6682 21.3176C25.6682 21.9524 25.8135 22.5246 26.1042 23.034C26.3949 23.5434 26.7786 23.9478 27.2553 24.2473C27.732 24.5468 28.2506 24.6966 28.8111 24.6966ZM15.3829 31.8079H21.3545C21.1502 31.5161 21.052 31.1654 21.0598 30.7558C21.0677 30.3463 21.1633 29.9162 21.3466 29.4657C21.53 29.0151 21.784 28.5786 22.1088 28.1562C22.4335 27.7339 22.8055 27.3614 23.2245 27.0389C22.7897 26.7522 22.2869 26.5154 21.7159 26.3285C21.1449 26.1417 20.4928 26.0482 19.7594 26.0482C18.8742 26.0482 18.0767 26.1903 17.3669 26.4745C16.6571 26.7586 16.0521 27.1323 15.5518 27.5956C15.0516 28.059 14.6679 28.5646 14.4007 29.1124C14.1336 29.6602 14 30.2003 14 30.7328C14 31.0758 14.1061 31.3407 14.3182 31.5276C14.5304 31.7145 14.8853 31.8079 15.3829 31.8079ZM19.7673 24.8732C20.2544 24.8732 20.7049 24.7427 21.1188 24.4816C21.5326 24.2205 21.8665 23.8659 22.1206 23.418C22.3746 22.97 22.5016 22.4695 22.5016 21.9166C22.5016 21.3637 22.3746 20.8709 22.1206 20.4383C21.8665 20.0057 21.5326 19.6652 21.1188 19.4169C20.7049 19.1686 20.2544 19.0444 19.7673 19.0444C19.2801 19.0444 18.8283 19.1711 18.4119 19.4246C17.9955 19.678 17.6602 20.0223 17.4062 20.4575C17.1521 20.8927 17.0251 21.3841 17.0251 21.932C17.0251 22.4798 17.1521 22.9764 17.4062 23.4218C17.6602 23.8672 17.9942 24.2205 18.408 24.4816C18.8218 24.7427 19.2749 24.8732 19.7673 24.8732Z" fill="#84B5FF"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.5 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.75232 22H18.2477C19.4985 22 20.4365 21.6916 21.0619 21.0749C21.6873 20.4582 22 19.5331 22 18.2995V3.72437C22 2.49086 21.6873 1.56574 21.0619 0.948989C20.4365 0.33224 19.4985 0.0238647 18.2477 0.0238647H3.75232C2.50154 0.0238647 1.56346 0.33224 0.938078 0.948989C0.312693 1.56574 0 2.49086 0 3.72437V18.2995C0 19.5331 0.312693 20.4582 0.938078 21.0749C1.56346 21.6916 2.50154 22 3.75232 22ZM13.3721 16.891C13.2127 17.0422 13.0036 17.1138 12.7447 17.1058C12.4858 17.0979 12.2727 17.0144 12.1054 16.8552L7.12222 12.1639C6.89916 11.957 6.74978 11.7103 6.67409 11.4238C6.59841 11.1373 6.59841 10.8508 6.67409 10.5643C6.74978 10.2778 6.89916 10.0311 7.12222 9.82422L12.1054 5.14487C12.2886 4.9698 12.5017 4.87828 12.7447 4.87033C12.9877 4.86237 13.1929 4.94195 13.3602 5.10907C13.5434 5.27619 13.639 5.48708 13.6469 5.74174C13.6549 5.99639 13.5673 6.21126 13.384 6.38633L8.47258 10.9941L13.384 15.6137C13.5593 15.7808 13.6469 15.9917 13.6469 16.2464C13.6469 16.501 13.5553 16.7159 13.3721 16.891Z" fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.26656 12.3455H4.604C4.72727 12.3455 4.82999 12.3887 4.91217 12.4749L5.86132 13.4177C6.25165 13.808 6.63173 14.002 7.00157 14C7.37137 13.9979 7.74937 13.8038 8.13558 13.4177L9.08472 12.4749C9.17102 12.3887 9.27581 12.3455 9.39909 12.3455H10.7304C11.2809 12.3455 11.6877 12.2151 11.9507 11.9542C12.2136 11.6934 12.3451 11.2857 12.3451 10.7311V9.4001C12.3451 9.27685 12.3883 9.17208 12.4746 9.08581L13.4176 8.13687C13.8079 7.75075 14.002 7.37283 14 7.00312C13.9979 6.6334 13.8038 6.2534 13.4176 5.86313L12.4746 4.91418C12.3883 4.82791 12.3451 4.72521 12.3451 4.60608V3.26894C12.3451 2.72258 12.2147 2.31691 11.9538 2.05195C11.6928 1.78699 11.2851 1.65451 10.7304 1.65451H9.39909C9.27581 1.65451 9.17102 1.61342 9.08472 1.53126L8.13558 0.588483C7.74937 0.194118 7.37137 -0.00203802 7.00157 1.59636e-05C6.63173 0.00206995 6.25165 0.198226 5.86132 0.588483L4.91217 1.53126C4.82999 1.61342 4.72727 1.65451 4.604 1.65451H3.26656C2.71597 1.65451 2.30919 1.78493 2.04623 2.04579C1.78326 2.30664 1.65177 2.71436 1.65177 3.26894V4.60608C1.65177 4.72521 1.61068 4.82791 1.52851 4.91418L0.585516 5.86313C0.195172 6.2534 0 6.6334 0 7.00312C0 7.37283 0.195172 7.75075 0.585516 8.13687L1.52851 9.08581C1.61068 9.17208 1.65177 9.27685 1.65177 9.4001V10.7311C1.65177 11.2816 1.78326 11.6883 2.04623 11.9512C2.30919 12.2141 2.71597 12.3455 3.26656 12.3455Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1,23 +0,0 @@
|
||||
<svg width="58" height="58" viewBox="0 0 58 58" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<mask id="mask0_17_6920" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="4" y="5" width="49" height="49">
|
||||
<circle cx="28.6717" cy="29.3085" r="24.0809" fill="#D9D9D9" style="fill:#D9D9D9;fill:color(display-p3 0.8510 0.8510 0.8510);fill-opacity:1;"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_17_6920)">
|
||||
<g filter="url(#filter0_d_17_6920)">
|
||||
<path d="M21.0047 35.5419L21.2854 36.7076C21.4663 37.4652 21.7641 38.0367 22.179 38.422C22.5938 38.8073 23.1879 39 23.9614 39H34.0386C34.8121 39 35.4078 38.809 35.8257 38.4269C36.2437 38.0448 36.5431 37.4717 36.724 36.7076L37.0047 35.5419H21.0047ZM20.6959 34.2111H37.3228L39.0819 26.7316L38.3146 26.275L34.0012 29.5388C33.8452 29.6554 33.7096 29.6991 33.5941 29.67C33.4788 29.6408 33.3774 29.5583 33.2901 29.4223L29.2293 23.0501L28.7801 23.0307L24.6819 29.4514C24.6008 29.5745 24.5088 29.6505 24.4059 29.6797C24.3029 29.7088 24.1735 29.6651 24.0176 29.5486L19.7883 26.343L18.8901 26.5859L20.6959 34.2111ZM19.2363 28.6743C19.648 28.6743 20.0222 28.5691 20.3591 28.3586C20.6959 28.1482 20.9641 27.8681 21.1637 27.5184C21.3634 27.1687 21.4632 26.7769 21.4632 26.343C21.4632 25.9221 21.3634 25.5368 21.1637 25.1871C20.9641 24.8374 20.6959 24.5573 20.3591 24.3469C20.0222 24.1364 19.648 24.0312 19.2363 24.0312C18.8246 24.0312 18.4487 24.1364 18.1088 24.3469C17.7688 24.5573 17.499 24.8374 17.2994 25.1871C17.0998 25.5368 17 25.9221 17 26.343C17 26.7769 17.1014 27.1687 17.3041 27.5184C17.5068 27.8681 17.7782 28.1482 18.1181 28.3586C18.4581 28.5691 18.8308 28.6743 19.2363 28.6743ZM29.0047 24.6334C29.4102 24.6334 29.7829 24.5298 30.1228 24.3226C30.4628 24.1154 30.7326 23.8353 30.9322 23.4824C31.1318 23.1294 31.2316 22.7393 31.2316 22.3119C31.2316 21.8909 31.1318 21.5056 30.9322 21.1559C30.7326 20.8062 30.4628 20.5262 30.1228 20.3157C29.7829 20.1052 29.4102 20 29.0047 20C28.593 20 28.2172 20.1036 27.8772 20.3108C27.5372 20.5181 27.2674 20.7965 27.0678 21.1462C26.8682 21.4959 26.7684 21.8845 26.7684 22.3119C26.7684 22.7393 26.8682 23.1294 27.0678 23.4824C27.2674 23.8353 27.5372 24.1154 27.8772 24.3226C28.2172 24.5298 28.593 24.6334 29.0047 24.6334ZM38.7637 28.6743C39.1692 28.6743 39.5419 28.5691 39.8819 28.3586C40.2219 28.1482 40.4932 27.8681 40.6959 27.5184C40.8986 27.1687 41 26.7769 41 26.343C41 25.9221 40.9002 25.5368 40.7006 25.1871C40.501 24.8374 40.2312 24.5573 39.8913 24.3469C39.5513 24.1364 39.1755 24.0312 38.7637 24.0312C38.352 24.0312 37.9778 24.1364 37.641 24.3469C37.3041 24.5573 37.0359 24.8374 36.8363 25.1871C36.6366 25.5368 36.5368 25.9221 36.5368 26.343C36.5368 26.7769 36.6366 27.1687 36.8363 27.5184C37.0359 27.8681 37.3041 28.1482 37.641 28.3586C37.9778 28.5691 38.352 28.6743 38.7637 28.6743Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
</g>
|
||||
</g>
|
||||
<circle class="circle" cx="28.6712" cy="29.3084" r="27.521" stroke="#84B5FF" style="stroke:#84B5FF;stroke:color(display-p3 0.5167 0.7100 1.0000);stroke-opacity:1;" stroke-width="2.29342"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_17_6920" x="-11" y="-8" width="80" height="75" 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"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="14"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_17_6920"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_17_6920" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.6 KiB |
|
Before Width: | Height: | Size: 5.4 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="57" height="47" viewBox="0 0 57 47" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.60822 47H49.3917C51.9361 47 53.8402 46.3856 55.1042 45.1568C56.3681 43.9281 57 42.0769 57 39.6032V16.0062C57 13.5163 56.3681 11.6611 55.1042 10.4404C53.8402 9.21972 51.9361 8.60939 49.3917 8.60939H7.60822C5.08035 8.60939 3.18035 9.21972 1.90821 10.4404C0.63607 11.6611 0 13.5163 0 16.0062V39.6032C0 42.0769 0.63607 43.9281 1.90821 45.1568C3.18035 46.3856 5.08035 47 7.60822 47ZM16.0043 10.7193H19.8208V6.42672C19.8208 5.50515 20.0834 4.79377 20.6087 4.29258C21.1339 3.79136 21.8808 3.54076 22.8493 3.54076H34.1507C35.1028 3.54076 35.8414 3.79136 36.3667 4.29258C36.892 4.79377 37.1546 5.50515 37.1546 6.42672V10.6708H40.9711V6.69349C40.9711 4.41382 40.3802 2.72833 39.1984 1.637C38.0166 0.545665 36.3094 0 34.0769 0H22.8985C20.7974 0 19.1231 0.545665 17.8756 1.637C16.6281 2.72833 16.0043 4.41382 16.0043 6.69349V10.7193Z" fill="white" fill-opacity="0.6" style="fill:white;fill:white;fill-opacity:0.6;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1020 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="12" viewBox="0 0 16 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.6014 3.85225C9.47925 3.85225 9.37746 3.81315 9.29603 3.73493C9.21459 3.65671 9.17388 3.56111 9.17388 3.44813C9.17388 3.33515 9.21459 3.24063 9.29603 3.16459C9.37746 3.08854 9.47925 3.05052 9.6014 3.05052H13.3062C13.4238 3.05052 13.5234 3.08854 13.6048 3.16459C13.6862 3.24063 13.7269 3.33515 13.7269 3.44813C13.7269 3.56111 13.6862 3.65671 13.6048 3.73493C13.5234 3.81315 13.4238 3.85225 13.3062 3.85225H9.6014ZM9.6014 6.40739C9.47925 6.40739 9.37746 6.36828 9.29603 6.29007C9.21459 6.21185 9.17388 6.11408 9.17388 5.99675C9.17388 5.88811 9.21459 5.79577 9.29603 5.71973C9.37746 5.64368 9.47925 5.60566 9.6014 5.60566H13.3062C13.4238 5.60566 13.5234 5.64368 13.6048 5.71973C13.6862 5.79577 13.7269 5.88811 13.7269 5.99675C13.7269 6.11408 13.6862 6.21185 13.6048 6.29007C13.5234 6.36828 13.4238 6.40739 13.3062 6.40739H9.6014ZM9.6014 8.95603C9.47925 8.95603 9.37746 8.91801 9.29603 8.84196C9.21459 8.76591 9.17388 8.67356 9.17388 8.5649C9.17388 8.45192 9.21459 8.35525 9.29603 8.27488C9.37746 8.19448 9.47925 8.15427 9.6014 8.15427H13.3062C13.4238 8.15427 13.5234 8.19448 13.6048 8.27488C13.6862 8.35525 13.7269 8.45192 13.7269 8.5649C13.7269 8.67356 13.6862 8.76591 13.6048 8.84196C13.5234 8.91801 13.4238 8.95603 13.3062 8.95603H9.6014ZM2.53096 9.00162C2.4224 9.00162 2.33984 8.96902 2.28329 8.90384C2.22675 8.83869 2.19848 8.75831 2.19848 8.66268C2.19848 8.50627 2.25841 8.30748 2.37829 8.0663C2.49817 7.82512 2.68137 7.58177 2.92791 7.33623C3.17445 7.09074 3.48431 6.88542 3.85752 6.72029C4.23071 6.55515 4.67063 6.47258 5.17728 6.47258C5.68392 6.47258 6.12498 6.55515 6.50044 6.72029C6.87589 6.88542 7.18688 7.09074 7.4334 7.33623C7.67997 7.58177 7.8632 7.82512 7.98308 8.0663C8.10292 8.30748 8.16283 8.50627 8.16283 8.66268C8.16283 8.75831 8.13458 8.83869 8.07806 8.90384C8.02151 8.96902 7.93894 9.00162 7.83036 9.00162H2.53096ZM5.17728 6.0163C4.77015 6.0163 4.42071 5.86855 4.12893 5.57306C3.83716 5.27757 3.69127 4.90604 3.69127 4.45845C3.69127 4.18034 3.758 3.92613 3.89144 3.69582C4.02489 3.46551 4.2047 3.28083 4.43088 3.14177C4.65706 3.00272 4.90586 2.93319 5.17728 2.93319C5.45322 2.93319 5.70315 3.00272 5.92707 3.14177C6.15099 3.28083 6.32967 3.46551 6.46312 3.69582C6.59656 3.92613 6.66328 4.18034 6.66328 4.45845C6.66328 4.90604 6.51853 5.27757 6.22902 5.57306C5.93951 5.86855 5.58893 6.0163 5.17728 6.0163ZM2.13063 12H13.8694C14.5841 12 15.1179 11.8316 15.4707 11.4949C15.8236 11.1581 16 10.6551 16 9.98586V2.02064C16 1.35144 15.8236 0.847367 15.4707 0.50842C15.1179 0.169473 14.5841 0 13.8694 0H2.13063C1.42041 0 0.887758 0.168387 0.532656 0.505161C0.177552 0.841934 0 1.34709 0 2.02064V9.98586C0 10.6551 0.177552 11.1581 0.532656 11.4949C0.887758 11.8316 1.42041 12 2.13063 12Z" fill="white" fill-opacity="0.7" style="fill:white;fill:white;fill-opacity:0.7;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.8 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="10" height="13" viewBox="0 0 10 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.410375 4.60048C0.410375 5.27606 0.547166 5.91038 0.820749 6.50345C1.09433 7.09651 1.4632 7.60223 1.92735 8.02061L1.933 12.3678C1.933 12.5405 1.97168 12.6652 2.04904 12.742C2.1264 12.8188 2.22357 12.8571 2.34055 12.8571C2.43866 12.8571 2.52734 12.8312 2.60658 12.7794C2.68583 12.7276 2.76319 12.6633 2.83866 12.5866L4.67827 10.721C4.72732 10.675 4.77072 10.6423 4.80846 10.6232C4.84619 10.604 4.88204 10.5944 4.916 10.5944C4.94997 10.5944 4.98581 10.604 5.02355 10.6232C5.06128 10.6423 5.10468 10.675 5.15373 10.721L6.99333 12.5866C7.07259 12.6672 7.15184 12.7324 7.23109 12.7823C7.31035 12.8322 7.39713 12.8571 7.49146 12.8571C7.61221 12.8571 7.71127 12.8188 7.78863 12.742C7.86599 12.6652 7.90467 12.5405 7.90467 12.3678V8.00333C8.36504 7.58495 8.73012 7.08114 8.99992 6.49189C9.26975 5.9027 9.40654 5.27222 9.41028 4.60048C9.41407 3.96712 9.29805 3.37311 9.06222 2.81844C8.82636 2.26377 8.50183 1.77532 8.08864 1.35308C7.67541 0.930843 7.19711 0.59977 6.65374 0.359863C6.11033 0.119954 5.5292 0 4.91034 0C4.29148 0 3.71035 0.119954 3.16696 0.359863C2.62357 0.59977 2.14527 0.930843 1.73206 1.35308C1.31886 1.77532 0.995277 2.26377 0.761316 2.81844C0.527355 3.37311 0.410375 3.96712 0.410375 4.60048ZM1.33301 4.60048C1.33301 4.08996 1.42452 3.61206 1.60754 3.16679C1.79055 2.72152 2.04432 2.32999 2.36885 1.9922C2.69338 1.65441 3.07356 1.39051 3.50941 1.2005C3.94526 1.01049 4.41412 0.915488 4.916 0.915488C5.41789 0.915488 5.88581 1.01049 6.31976 1.2005C6.75374 1.39051 7.13393 1.65441 7.46033 1.9922C7.78674 2.32999 8.04144 2.72152 8.22444 3.16679C8.40749 3.61206 8.49901 4.08996 8.49901 4.60048C8.50276 5.111 8.41313 5.58891 8.23012 6.03419C8.04712 6.47945 7.79242 6.87002 7.46601 7.2059C7.13957 7.54177 6.75843 7.80471 6.3226 7.99472C5.88675 8.18473 5.41789 8.27781 4.916 8.27396C4.41412 8.27396 3.94526 8.17895 3.50941 7.98894C3.07356 7.79894 2.69338 7.53599 2.36885 7.20012C2.04432 6.86424 1.79055 6.47464 1.60754 6.0313C1.42452 5.58794 1.33301 5.111 1.33301 4.60048Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 116 KiB |
@@ -1,5 +0,0 @@
|
||||
<svg width="22" height="19" viewBox="0 0 22 19" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.4821 7.32197C14.4668 7.32197 15.43 7.27166 16.3717 7.17104C17.3133 7.07042 18.2472 6.90402 19.1736 6.67182C20.1 6.43962 21.0276 6.12745 21.9565 5.73529V5.10835C21.9565 4.31372 21.7611 3.72162 21.3703 3.33204C20.9794 2.94246 20.3906 2.74768 19.6038 2.74768H17.3424V2.13622C17.3424 1.40867 17.1584 0.870743 16.7904 0.522446C16.4224 0.174148 15.8958 0 15.2105 0H11.7461C11.0963 0 10.5799 0.174148 10.1966 0.522446C9.81337 0.870743 9.62174 1.40867 9.62174 2.13622V2.74768H7.35275C6.57104 2.74768 5.98348 2.94246 5.59009 3.33204C5.1967 3.72162 5 4.31372 5 5.10835V5.73529C5.934 6.12745 6.86291 6.43962 7.78675 6.67182C8.71059 6.90402 9.64332 7.07042 10.5849 7.17104C11.5265 7.27166 12.4923 7.32197 13.4821 7.32197ZM10.8019 2.74768V2.05108C10.8019 1.75696 10.8831 1.52993 11.0456 1.36997C11.208 1.21001 11.4364 1.13003 11.7308 1.13003H15.2257C15.5252 1.13003 15.7562 1.21001 15.9186 1.36997C16.081 1.52993 16.1622 1.75696 16.1622 2.05108V2.74768H10.8019ZM7.35275 15H19.6038C20.3906 15 20.9794 14.8039 21.3703 14.4118C21.7611 14.0196 21.9565 13.4288 21.9565 12.6393V7.00464C21.2155 7.27811 20.4858 7.50773 19.7675 7.69349C19.0492 7.87925 18.3361 8.02761 17.628 8.13857C16.9199 8.24948 16.213 8.33074 15.5075 8.38237V9.00929C15.5075 9.5717 15.2257 9.8529 14.6623 9.8529H12.2943C11.7359 9.8529 11.4567 9.5717 11.4567 9.00929V8.38237C10.7461 8.33074 10.0367 8.24948 9.32861 8.13857C8.62049 8.02761 7.90731 7.87925 7.18905 7.69349C6.47079 7.50773 5.7411 7.27811 5 7.00464V12.6393C5 13.4288 5.1967 14.0196 5.59009 14.4118C5.98348 14.8039 6.57104 15 7.35275 15Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
<path d="M4.96094 18.6231C5.63151 18.6231 6.26628 18.4928 6.86523 18.2324C7.46419 17.972 7.99316 17.6139 8.45215 17.1582C8.91113 16.7024 9.27083 16.1751 9.53125 15.5762C9.79167 14.9772 9.92188 14.3391 9.92188 13.6621C9.92188 12.9785 9.7933 12.3372 9.53613 11.7383C9.27897 11.1393 8.92253 10.612 8.4668 10.1563C8.01107 9.70054 7.48372 9.34407 6.88477 9.08687C6.28581 8.82974 5.64453 8.70117 4.96094 8.70117C4.28385 8.70117 3.64583 8.82974 3.04688 9.08687C2.44792 9.34407 1.92057 9.70214 1.46484 10.1611C1.00911 10.6201 0.651042 11.1474 0.390625 11.7432C0.130208 12.3388 0 12.9785 0 13.6621C0 14.3457 0.130208 14.9869 0.390625 15.5859C0.651042 16.1849 1.00911 16.7122 1.46484 17.168C1.92057 17.6237 2.44792 17.9801 3.04688 18.2373C3.64583 18.4945 4.28385 18.6231 4.96094 18.6231Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
<path d="M4.96094 16.7676C4.77865 16.7676 4.63379 16.7123 4.52637 16.6016C4.41894 16.491 4.36523 16.3477 4.36523 16.1719V14.2578H2.45117C2.27539 14.2578 2.13216 14.2041 2.02148 14.0967C1.91081 13.9893 1.85547 13.8445 1.85547 13.6621C1.85547 13.4799 1.91081 13.335 2.02148 13.2275C2.13216 13.1201 2.27539 13.0664 2.45117 13.0664H4.36523V11.1523C4.36523 10.9766 4.41894 10.8334 4.52637 10.7227C4.63379 10.612 4.77865 10.5566 4.96094 10.5566C5.14323 10.5566 5.28809 10.612 5.39551 10.7227C5.50293 10.8334 5.55664 10.9766 5.55664 11.1523V13.0664H7.4707C7.64648 13.0664 7.78972 13.1201 7.90039 13.2275C8.01107 13.335 8.06641 13.4799 8.06641 13.6621C8.06641 13.8445 8.01107 13.9893 7.90039 14.0967C7.78972 14.2041 7.64648 14.2578 7.4707 14.2578H5.55664V16.1719C5.55664 16.3477 5.50293 16.491 5.39551 16.6016C5.28809 16.7123 5.14323 16.7676 4.96094 16.7676Z" fill="#FF5B5B" style="fill:#FF5B5B;fill:color(display-p3 1.0000 0.3569 0.3569);fill-opacity:1;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.4 KiB |
|
Before Width: | Height: | Size: 5.2 KiB |
@@ -1,5 +0,0 @@
|
||||
<svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M5 19C5.54068 19 6.05249 18.895 6.53543 18.685C7.01837 18.475 7.44488 18.1863 7.81496 17.8189C8.18503 17.4514 8.47506 17.0262 8.68504 16.5433C8.89501 16.0603 9 15.5459 9 15C9 14.4488 8.89632 13.9317 8.68897 13.4488C8.48162 12.9659 8.19422 12.5407 7.82677 12.1732C7.45931 11.8058 7.03412 11.5184 6.55118 11.311C6.06824 11.1037 5.55118 11 5 11C4.45407 11 3.93963 11.1037 3.4567 11.311C2.97376 11.5184 2.54856 11.8071 2.1811 12.1771C1.81365 12.5472 1.52493 12.9724 1.31496 13.4528C1.10499 13.933 1 14.4488 1 15C1 15.5511 1.10499 16.0682 1.31496 16.5511C1.52493 17.0341 1.81365 17.4593 2.1811 17.8268C2.54856 18.1942 2.97376 18.4816 3.4567 18.6889C3.93963 18.8963 4.45407 19 5 19Z" fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;"/>
|
||||
<path d="M5 17C4.8826 17 4.78931 16.9644 4.72013 16.8931C4.65094 16.8218 4.61635 16.7296 4.61635 16.6164V15.3836H3.38365C3.27044 15.3836 3.1782 15.3491 3.10691 15.2799C3.03564 15.2107 3 15.1174 3 15C3 14.8826 3.03564 14.7893 3.10691 14.7201C3.1782 14.6509 3.27044 14.6164 3.38365 14.6164H4.61635V13.3836C4.61635 13.2705 4.65094 13.1782 4.72013 13.107C4.78931 13.0357 4.8826 13 5 13C5.1174 13 5.21069 13.0357 5.27987 13.107C5.34906 13.1782 5.38365 13.2705 5.38365 13.3836V14.6164H6.61635C6.72956 14.6164 6.8218 14.6509 6.89308 14.7201C6.96436 14.7893 7 14.8826 7 15C7 15.1174 6.96436 15.2107 6.89308 15.2799C6.8218 15.3491 6.72956 15.3836 6.61635 15.3836H5.38365V16.6164C5.38365 16.7296 5.34906 16.8218 5.27987 16.8931C5.21069 16.9644 5.1174 17 5 17Z" fill="#84B5FF" style="fill:#84B5FF;fill:color(display-p3 0.5167 0.7100 1.0000);fill-opacity:1;"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4736 17.2746H9.33703C9.40696 17.1452 9.4717 17.012 9.53125 16.875C9.79167 16.276 9.92188 15.638 9.92188 14.9609C9.92188 14.2773 9.7933 13.636 9.53613 13.0371C9.27897 12.4382 8.92253 11.9108 8.4668 11.4551C8.01107 10.9994 7.48372 10.6429 6.88477 10.3857C6.28581 10.1286 5.64453 10 4.96094 10C4.68173 10 4.40916 10.0219 4.14323 10.0656L4.10972 7.32306L2.15905 7.76711C1.78901 7.84641 1.48637 7.81204 1.25113 7.66403C1.01589 7.51601 0.85333 7.25169 0.763461 6.87108L0.0577342 4.05609C-0.0374202 3.68076 -0.0149533 3.36226 0.125135 3.10058C0.265223 2.83892 0.515002 2.63143 0.874473 2.47812L6.45685 0.0992661C6.61544 0.0305434 6.76875 -0.00249632 6.91677 0.000146842C7.06479 0.00279001 7.2128 0.0384728 7.36082 0.107195C7.70972 0.271072 8.04408 0.408517 8.36391 0.51953C8.68372 0.630544 9.01147 0.715125 9.34714 0.773275C9.68281 0.831427 10.0489 0.860503 10.4454 0.860503C10.8366 0.860503 11.2 0.831427 11.5357 0.773275C11.8714 0.715125 12.1992 0.630544 12.519 0.51953C12.8388 0.408517 13.1731 0.271072 13.522 0.107195C13.6701 0.0384728 13.8181 0.00279001 13.9661 0.000146842C14.1141 -0.00249632 14.2674 0.0305434 14.426 0.0992661L20.0084 2.47812C20.3731 2.63143 20.6242 2.83892 20.7617 3.10058C20.8992 3.36226 20.9203 3.68076 20.8252 4.05609L20.1194 6.87108C20.0295 7.25169 19.867 7.51601 19.6317 7.66403C19.3965 7.81204 19.0939 7.84641 18.7238 7.76711L16.7811 7.32306L16.678 15.1098C16.6674 15.8393 16.4811 16.3825 16.119 16.7394C15.7568 17.0962 15.2084 17.2746 14.4736 17.2746ZM10.4454 3.33451C9.99077 3.33451 9.58502 3.2605 9.22818 3.11248C8.8714 2.96447 8.56745 2.75301 8.31633 2.47812C8.06522 2.20323 7.87095 1.87283 7.73351 1.48693C8.14582 1.64552 8.58325 1.76711 9.04581 1.85169C9.50837 1.93627 9.97491 1.97856 10.4454 1.97856C10.9106 1.97856 11.3744 1.93627 11.837 1.85169C12.2996 1.76711 12.737 1.64552 13.1493 1.48693C13.0172 1.86755 12.8269 2.1953 12.5784 2.47019C12.33 2.74508 12.026 2.95786 11.6666 3.10852C11.3071 3.25918 10.9 3.33451 10.4454 3.33451Z" fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.7 KiB |
@@ -1,4 +0,0 @@
|
||||
<svg width="149" height="139" viewBox="0 0 149 139" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M57 123H45.7289C40.4863 123 36.5731 121.73 33.9895 119.189C33.0532 118.268 32.2817 117.173 31.6748 115.904H20.3472C19.7725 115.904 19.2919 115.723 18.9054 115.36C18.519 114.998 18.3258 114.543 18.3258 113.994C18.3258 113.445 18.519 112.985 18.9054 112.613C19.2919 112.241 19.7725 112.055 20.3472 112.055H30.4366C30.1696 110.694 30.0244 109.204 30.0009 107.586L29.8875 98.3219C29.8689 98.0798 29.8597 97.8285 29.8597 97.5681V96.0518V76H29.6142H16.2152C13.1435 76 10.8397 76.7738 9.3038 78.3214C7.76793 79.8689 7 82.1707 7 85.2267V129.803C7 132.878 7.76793 135.18 9.3038 136.708C10.8397 138.236 13.1435 139 16.2152 139H47.7846C50.8564 139 53.1602 138.231 54.696 136.693C56.232 135.156 57 132.859 57 129.803V123ZM20.3472 127.041C19.7725 127.041 19.2919 126.854 18.9054 126.482C18.519 126.11 18.3258 125.66 18.3258 125.131C18.3258 124.582 18.519 124.122 18.9054 123.749C19.2919 123.377 19.7725 123.191 20.3472 123.191H43.7419C44.2969 123.191 44.7676 123.377 45.154 123.749C45.5404 124.122 45.7336 124.582 45.7336 125.131C45.7336 125.66 45.5404 126.11 45.154 126.482C44.7676 126.854 44.2969 127.041 43.7419 127.041H20.3472Z" fill="white" fill-opacity="0.25" style="fill:white;fill:white;fill-opacity:0.25;"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M103.266 123C108.509 123 112.422 121.73 115.006 119.189C117.589 116.648 118.919 112.78 118.995 107.586L119.73 52.1421L133.591 55.3039C136.231 55.8685 138.39 55.6238 140.068 54.5699C141.747 53.516 142.907 51.634 143.548 48.9239L148.583 28.8805C149.262 26.208 149.111 23.9402 148.13 22.077C147.15 20.2138 145.358 18.7365 142.756 17.6449L102.927 0.706801C101.795 0.217477 100.701 -0.0177745 99.6454 0.00104555C98.5894 0.0198656 97.5333 0.273936 96.477 0.763258C93.9878 1.93011 91.6023 2.90875 89.3205 3.6992C87.0387 4.48964 84.7001 5.09188 82.3048 5.50592C79.9098 5.91998 77.3169 6.12701 74.526 6.12701C71.697 6.12701 69.0849 5.91998 66.69 5.50592C64.295 5.09188 61.9566 4.48964 59.6748 3.6992C57.3929 2.90875 55.0073 1.93011 52.518 0.763258C51.4619 0.273936 50.4059 0.0198656 49.3498 0.00104555C48.2937 -0.0177745 47.1999 0.217477 46.0684 0.706801L6.23919 17.6449C3.67444 18.7365 1.89231 20.2138 0.892812 22.077C-0.106689 23.9402 -0.266986 26.208 0.411922 28.8805L5.44714 48.9239C6.08834 51.634 7.24814 53.516 8.92655 54.5699C10.605 55.6238 12.7642 55.8685 15.4044 55.3039L29.322 52.1421L29.6142 76H29.8597V96.0518L29.8875 98.3219C30.1324 101.522 31.9959 103.122 35.478 103.122H57V123H103.266ZM65.8413 22.1617C68.3872 23.2156 71.2822 23.7426 74.526 23.7426C77.7695 23.7426 80.6737 23.2062 83.2386 22.1335C85.8032 21.0607 87.9718 19.5457 89.7446 17.5884C91.5173 15.6311 92.8751 13.2974 93.8178 10.5873C90.876 11.7166 87.7549 12.5823 84.4547 13.1845C81.1544 13.7868 77.8449 14.0879 74.526 14.0879C71.169 14.0879 67.8403 13.7868 64.5401 13.1845C61.2398 12.5823 58.1188 11.7166 55.1771 10.5873C56.1577 13.3351 57.5438 15.6876 59.3353 17.6449C61.127 19.6022 63.2957 21.1078 65.8413 22.1617ZM56.6432 99.0961H35.5672C34.4772 99.0961 33.9322 98.5672 33.9322 97.5093V76.3232C34.5465 76.4212 35.1708 76.6807 35.805 77.1019C36.4391 77.5231 37.103 78.0863 37.7967 78.7915L54.1758 95.2761C54.8893 96.0009 55.4542 96.667 55.8704 97.2742C56.2866 97.8815 56.5442 98.4888 56.6432 99.0961Z" fill="white" fill-opacity="0.25" style="fill:white;fill:white;fill-opacity:0.25;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.4 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.31081 12.1073L5.55404 11.1337C5.63963 11.1005 5.70607 11.065 5.75337 11.0271C5.80067 10.9891 5.85135 10.9441 5.9054 10.892L12.3716 4.14016C12.687 3.8085 12.8435 3.45788 12.8412 3.0883C12.839 2.71873 12.6779 2.36337 12.3581 2.02222L10.9391 0.515496C10.6148 0.179088 10.2759 0.00733083 9.92227 0.000223652C9.56867 -0.00688353 9.23421 0.155398 8.91889 0.487067L2.44595 7.23891C2.39639 7.29102 2.35472 7.34196 2.32094 7.39174C2.28716 7.44147 2.25225 7.50899 2.21621 7.59428L1.27027 9.95388C1.1982 10.1292 1.1723 10.3021 1.19256 10.4727C1.21284 10.6433 1.28829 10.7972 1.41892 10.9346L2.37838 11.951C2.5045 12.0836 2.64865 12.1618 2.81081 12.1855C2.97297 12.2092 3.13964 12.1831 3.31081 12.1073ZM3.20945 11.0057C3.14189 11.0294 3.08108 11.0389 3.02702 11.0341C2.97297 11.0294 2.91441 10.9939 2.85135 10.9276L2.39189 10.4443C2.32882 10.3826 2.29504 10.3222 2.29054 10.263C2.28603 10.2038 2.29729 10.141 2.32432 10.0747L3.16216 8.0065L9.60137 1.28307C9.70045 1.18831 9.80405 1.13856 9.91217 1.13382C10.0202 1.12908 10.1193 1.1741 10.2095 1.26886L11.6351 2.78269C11.8288 2.99117 11.822 3.20439 11.6148 3.42234L5.17567 10.1457L3.20945 11.0057ZM0.675674 12.4627H1.49324C1.58783 12.4627 1.66329 12.4508 1.71959 12.4272C1.7759 12.4035 1.84009 12.3608 1.91216 12.2992L2.54729 11.7875L1.57432 10.7427L0.479729 11.9581C0.38063 12.0718 0.351351 12.1843 0.391891 12.2957C0.432432 12.407 0.527026 12.4627 0.675674 12.4627ZM2.54729 8.0065L5.3108 10.9276L5.94594 10.2666L3.18243 7.3384L2.54729 8.0065ZM8.15539 2.15726L10.9189 5.07832L11.554 4.42446L8.79054 1.49629L8.15539 2.15726ZM0.54054 15H13.4527C13.6013 15 13.7297 14.9431 13.8378 14.8294C13.9459 14.7157 14 14.5806 14 14.4243C14 14.2679 13.9459 14.1341 13.8378 14.0227C13.7297 13.9114 13.6013 13.8557 13.4527 13.8557H0.54054C0.391891 13.8557 0.264639 13.9114 0.158783 14.0227C0.0529278 14.1341 0 14.2679 0 14.4243C0 14.5806 0.0529278 14.7157 0.158783 14.8294C0.264639 14.9431 0.391891 15 0.54054 15Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
@@ -1,6 +0,0 @@
|
||||
<svg width="29" height="14" viewBox="0 0 29 14" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M9.67251 13.5586H19.1439C19.7421 13.5586 20.1607 13.4744 20.3995 13.306C20.6383 13.1376 20.7577 12.8875 20.7577 12.5556C20.7577 12.073 20.6107 11.5627 20.3166 11.0248C20.0225 10.4869 19.6001 9.98295 19.0496 9.51289C18.4991 9.04283 17.8331 8.66075 17.0513 8.36665C16.2696 8.07255 15.3885 7.92549 14.4082 7.92549C13.4329 7.92549 12.5544 8.07255 11.7726 8.36665C10.9909 8.66075 10.3235 9.04283 9.7705 9.51289C9.21751 9.98295 8.79522 10.4869 8.50364 11.0248C8.21206 11.5627 8.06627 12.073 8.06627 12.5556C8.06627 12.8875 8.18568 13.1376 8.42449 13.306C8.66325 13.4744 9.07926 13.5586 9.67251 13.5586ZM14.4158 6.5757C14.9537 6.5757 15.4514 6.42865 15.9089 6.13455C16.3663 5.84045 16.7346 5.44204 17.0136 4.93931C17.2926 4.43658 17.4321 3.87101 17.4321 3.2426C17.4321 2.62424 17.2926 2.06998 17.0136 1.57982C16.7346 1.08967 16.3663 0.703823 15.9089 0.422292C15.4514 0.140764 14.9537 0 14.4158 0C13.8778 0 13.3801 0.143278 12.9227 0.429833C12.4652 0.71639 12.0969 1.10601 11.8179 1.59868C11.5389 2.09135 11.3994 2.64436 11.3994 3.25769C11.3994 3.88107 11.5389 4.44287 11.8179 4.94308C12.0969 5.4433 12.4652 5.84045 12.9227 6.13455C13.3801 6.42865 13.8778 6.5757 14.4158 6.5757ZM1.52075 13.5586H7.24432C7.04825 13.272 6.95525 12.9277 6.9653 12.5255C6.97536 12.1233 7.06836 11.701 7.24432 11.2586C7.42028 10.8162 7.66283 10.3877 7.97199 9.97288C8.28117 9.55811 8.63937 9.19238 9.04657 8.87568C8.62428 8.59414 8.14042 8.36163 7.59497 8.17816C7.04951 7.99463 6.42487 7.90287 5.72105 7.90287C4.87143 7.90287 4.10603 8.04238 3.42483 8.3214C2.74364 8.60042 2.16298 8.96741 1.68288 9.42239C1.20277 9.87736 0.834522 10.3738 0.57813 10.9117C0.321738 11.4496 0.193542 11.98 0.193542 12.5029C0.193542 12.8397 0.295345 13.0999 0.498951 13.2833C0.702556 13.4669 1.04315 13.5586 1.52075 13.5586ZM5.72105 6.74914C6.19361 6.74914 6.62847 6.62094 7.02563 6.36455C7.42279 6.10816 7.74202 5.76002 7.98334 5.32013C8.22462 4.88024 8.34526 4.38882 8.34526 3.84587C8.34526 3.30293 8.22462 2.81905 7.98334 2.39425C7.74202 1.96944 7.42153 1.63513 7.02186 1.3913C6.62219 1.14748 6.18859 1.02557 5.72105 1.02557C5.25854 1.02557 4.82745 1.14999 4.42778 1.39884C4.02811 1.6477 3.70511 1.98578 3.45877 2.4131C3.21243 2.84042 3.09178 3.32304 3.09681 3.86096C3.09681 4.39888 3.21746 4.88653 3.45877 5.3239C3.70008 5.76128 4.02057 6.10816 4.42024 6.36455C4.81991 6.62094 5.25351 6.74914 5.72105 6.74914ZM27.2957 13.5586C27.7733 13.5586 28.1139 13.4669 28.3175 13.2833C28.5211 13.0999 28.6229 12.8397 28.6229 12.5029C28.6229 11.98 28.4959 11.4496 28.242 10.9117C27.9882 10.3738 27.6199 9.87736 27.1373 9.42239C26.6547 8.96741 26.0728 8.60042 25.3916 8.3214C24.7104 8.04238 23.945 7.90287 23.0954 7.90287C22.3915 7.90287 21.7669 7.99463 21.2214 8.17816C20.676 8.36163 20.1921 8.59414 19.7698 8.87568C20.177 9.19238 20.5352 9.55811 20.8444 9.97288C21.1536 10.3877 21.3962 10.8162 21.5721 11.2586C21.748 11.701 21.841 12.1233 21.8511 12.5255C21.8612 12.9277 21.7681 13.272 21.5721 13.5586H27.2957ZM23.0954 6.74914C23.5629 6.74914 23.9965 6.62094 24.3962 6.36455C24.7958 6.10816 25.1163 5.76128 25.3577 5.3239C25.5989 4.88653 25.7196 4.39888 25.7196 3.86096C25.7196 3.32304 25.5977 2.84042 25.3539 2.4131C25.1101 1.98578 24.7883 1.6477 24.3886 1.39884C23.9889 1.14999 23.5579 1.02557 23.0954 1.02557C22.6278 1.02557 22.1942 1.14748 21.7945 1.3913C21.3949 1.63513 21.0744 1.96944 20.8331 2.39425C20.5918 2.81905 20.4711 3.30293 20.4711 3.84587C20.4711 4.38882 20.5918 4.88024 20.8331 5.32013C21.0744 5.76002 21.3937 6.10816 21.7908 6.36455C22.1879 6.62094 22.6228 6.74914 23.0954 6.74914Z"
|
||||
fill="white" fill-opacity="0.85" />
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.6 KiB |
@@ -1,5 +0,0 @@
|
||||
<svg opacity="0.4" width="29" height="14" viewBox="0 0 29 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M9.67251 13.5586H19.1439C19.7421 13.5586 20.1607 13.4744 20.3995 13.306C20.6383 13.1376 20.7577 12.8875 20.7577 12.5556C20.7577 12.073 20.6107 11.5627 20.3166 11.0248C20.0225 10.4869 19.6001 9.98295 19.0496 9.51289C18.4991 9.04283 17.8331 8.66075 17.0513 8.36665C16.2696 8.07255 15.3885 7.92549 14.4082 7.92549C13.4329 7.92549 12.5544 8.07255 11.7726 8.36665C10.9909 8.66075 10.3235 9.04283 9.7705 9.51289C9.21751 9.98295 8.79522 10.4869 8.50364 11.0248C8.21206 11.5627 8.06627 12.073 8.06627 12.5556C8.06627 12.8875 8.18568 13.1376 8.42449 13.306C8.66325 13.4744 9.07926 13.5586 9.67251 13.5586ZM14.4158 6.5757C14.9537 6.5757 15.4514 6.42865 15.9089 6.13455C16.3663 5.84045 16.7346 5.44204 17.0136 4.93931C17.2926 4.43658 17.4321 3.87101 17.4321 3.2426C17.4321 2.62424 17.2926 2.06998 17.0136 1.57982C16.7346 1.08967 16.3663 0.703823 15.9089 0.422292C15.4514 0.140764 14.9537 0 14.4158 0C13.8778 0 13.3801 0.143278 12.9227 0.429833C12.4652 0.71639 12.0969 1.10601 11.8179 1.59868C11.5389 2.09135 11.3994 2.64436 11.3994 3.25769C11.3994 3.88107 11.5389 4.44287 11.8179 4.94308C12.0969 5.4433 12.4652 5.84045 12.9227 6.13455C13.3801 6.42865 13.8778 6.5757 14.4158 6.5757ZM1.52075 13.5586H7.24432C7.04825 13.272 6.95525 12.9277 6.9653 12.5255C6.97536 12.1233 7.06836 11.701 7.24432 11.2586C7.42028 10.8162 7.66283 10.3877 7.97199 9.97288C8.28117 9.55811 8.63937 9.19238 9.04657 8.87568C8.62428 8.59414 8.14042 8.36163 7.59497 8.17816C7.04951 7.99463 6.42487 7.90287 5.72105 7.90287C4.87143 7.90287 4.10603 8.04238 3.42483 8.3214C2.74364 8.60042 2.16298 8.96741 1.68288 9.42239C1.20277 9.87736 0.834522 10.3738 0.57813 10.9117C0.321738 11.4496 0.193542 11.98 0.193542 12.5029C0.193542 12.8397 0.295345 13.0999 0.498951 13.2833C0.702556 13.4669 1.04315 13.5586 1.52075 13.5586ZM5.72105 6.74914C6.19361 6.74914 6.62847 6.62094 7.02563 6.36455C7.42279 6.10816 7.74202 5.76002 7.98334 5.32013C8.22462 4.88024 8.34526 4.38882 8.34526 3.84587C8.34526 3.30293 8.22462 2.81905 7.98334 2.39425C7.74202 1.96944 7.42153 1.63513 7.02186 1.3913C6.62219 1.14748 6.18859 1.02557 5.72105 1.02557C5.25854 1.02557 4.82745 1.14999 4.42778 1.39884C4.02811 1.6477 3.70511 1.98578 3.45877 2.4131C3.21243 2.84042 3.09178 3.32304 3.09681 3.86096C3.09681 4.39888 3.21746 4.88653 3.45877 5.3239C3.70008 5.76128 4.02057 6.10816 4.42024 6.36455C4.81991 6.62094 5.25351 6.74914 5.72105 6.74914ZM27.2957 13.5586C27.7733 13.5586 28.1139 13.4669 28.3175 13.2833C28.5211 13.0999 28.6229 12.8397 28.6229 12.5029C28.6229 11.98 28.4959 11.4496 28.242 10.9117C27.9882 10.3738 27.6199 9.87736 27.1373 9.42239C26.6547 8.96741 26.0728 8.60042 25.3916 8.3214C24.7104 8.04238 23.945 7.90287 23.0954 7.90287C22.3915 7.90287 21.7669 7.99463 21.2214 8.17816C20.676 8.36163 20.1921 8.59414 19.7698 8.87568C20.177 9.19238 20.5352 9.55811 20.8444 9.97288C21.1536 10.3877 21.3962 10.8162 21.5721 11.2586C21.748 11.701 21.841 12.1233 21.8511 12.5255C21.8612 12.9277 21.7681 13.272 21.5721 13.5586H27.2957ZM23.0954 6.74914C23.5629 6.74914 23.9965 6.62094 24.3962 6.36455C24.7958 6.10816 25.1163 5.76128 25.3577 5.3239C25.5989 4.88653 25.7196 4.39888 25.7196 3.86096C25.7196 3.32304 25.5977 2.84042 25.3539 2.4131C25.1101 1.98578 24.7883 1.6477 24.3886 1.39884C23.9889 1.14999 23.5579 1.02557 23.0954 1.02557C22.6278 1.02557 22.1942 1.14748 21.7945 1.3913C21.3949 1.63513 21.0744 1.96944 20.8331 2.39425C20.5918 2.81905 20.4711 3.30293 20.4711 3.84587C20.4711 4.38882 20.5918 4.88024 20.8331 5.32013C21.0744 5.76002 21.3937 6.10816 21.7908 6.36455C22.1879 6.62094 22.6228 6.74914 23.0954 6.74914Z"
|
||||
fill="white" fill-opacity="0.85" />
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.6 KiB |
@@ -1,23 +0,0 @@
|
||||
<svg width="58" height="58" viewBox="0 0 58 58" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<mask id="mask0_17_6947" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="4" y="5" width="49" height="49">
|
||||
<circle cx="28.742" cy="29.3085" r="24.0809" fill="#D9D9D9" style="fill:#D9D9D9;fill:color(display-p3 0.8510 0.8510 0.8510);fill-opacity:1;"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_17_6947)">
|
||||
<g filter="url(#filter0_d_17_6947)">
|
||||
<path d="M19 25.661C19 27.0797 19.2888 28.4118 19.8663 29.6572C20.4439 30.9027 21.2226 31.9647 22.2025 32.8433L22.2144 41.9723C22.2144 42.335 22.2961 42.597 22.4594 42.7582C22.6227 42.9194 22.8279 43 23.0748 43C23.2819 43 23.4691 42.9456 23.6364 42.8368C23.8037 42.728 23.967 42.593 24.1264 42.4318L28.01 38.5142C28.1136 38.4174 28.2052 38.3489 28.2848 38.3086C28.3645 38.2683 28.4402 38.2482 28.5119 38.2482C28.5836 38.2482 28.6593 38.2683 28.7389 38.3086C28.8186 38.3489 28.9102 38.4174 29.0138 38.5142L32.8974 42.4318C33.0647 42.601 33.232 42.738 33.3993 42.8429C33.5666 42.9476 33.7498 43 33.949 43C34.2039 43 34.413 42.9194 34.5763 42.7582C34.7396 42.597 34.8213 42.335 34.8213 41.9723V32.807C35.7932 31.9284 36.5639 30.8704 37.1335 29.633C37.7031 28.3957 37.9919 27.0717 37.9998 25.661C38.0078 24.331 37.7629 23.0835 37.265 21.9187C36.7671 20.7539 36.082 19.7282 35.2097 18.8415C34.3373 17.9548 33.3275 17.2595 32.1804 16.7557C31.0333 16.2519 29.8064 16 28.4999 16C27.1934 16 25.9666 16.2519 24.8195 16.7557C23.6723 17.2595 22.6626 17.9548 21.7902 18.8415C20.9179 19.7282 20.2348 20.7539 19.7409 21.9187C19.247 23.0835 19 24.331 19 25.661ZM20.9478 25.661C20.9478 24.5889 21.141 23.5853 21.5273 22.6503C21.9137 21.7152 22.4495 20.893 23.1346 20.1836C23.8197 19.4743 24.6223 18.9201 25.5424 18.521C26.4625 18.122 27.4524 17.9225 28.5119 17.9225C29.5714 17.9225 30.5592 18.122 31.4754 18.521C32.3915 18.9201 33.1942 19.4743 33.8832 20.1836C34.5723 20.893 35.11 21.7152 35.4964 22.6503C35.8828 23.5853 36.076 24.5889 36.076 25.661C36.0839 26.7331 35.8947 27.7367 35.5084 28.6718C35.122 29.6069 34.5843 30.427 33.8952 31.1324C33.2061 31.8377 32.4015 32.3899 31.4814 32.7889C30.5612 33.1879 29.5714 33.3834 28.5119 33.3753C27.4524 33.3753 26.4625 33.1758 25.5424 32.7768C24.6223 32.3778 23.8197 31.8256 23.1346 31.1203C22.4495 30.4149 21.9137 29.5967 21.5273 28.6657C21.141 27.7347 20.9478 26.7331 20.9478 25.661Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
</g>
|
||||
</g>
|
||||
<circle cx="28.7425" cy="29.3084" r="27.521" stroke="#84B5FF" style="stroke:#84B5FF;stroke:color(display-p3 0.5167 0.7100 1.0000);stroke-opacity:1;" stroke-width="2.29342"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_17_6947" x="-9" y="-12" width="75" height="83" 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"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="14"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_17_6947"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_17_6947" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.2 KiB |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="13" viewBox="0 0 16 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5229 7.14854C15.5229 7.16598 15.5229 7.18358 15.5229 7.20118V8.80118C15.5229 8.81878 15.5229 8.83638 15.5229 8.85382C15.5229 9.56302 15.523 10.1741 15.4592 10.6634C15.3907 11.1878 15.2365 11.6905 14.8409 12.0982C14.4454 12.506 13.9576 12.6649 13.4489 12.7355C12.9741 12.8013 12.3813 12.8013 11.6932 12.8012H6.93418C6.24612 12.8013 5.65327 12.8013 5.17853 12.7355C4.66976 12.6649 4.18206 12.506 3.78648 12.0982C3.39091 11.6905 3.23666 11.1878 3.16825 10.6634C3.10442 10.1741 3.10446 9.56302 3.10449 8.85382V7.14854C3.10446 6.43934 3.10442 5.8283 3.16825 5.33894C3.23666 4.81454 3.39091 4.31186 3.78648 3.90412C4.18206 3.49639 4.66976 3.3374 5.17853 3.26689C5.65327 3.2011 6.24612 3.20113 6.93418 3.20117H11.6422C11.6592 3.20117 11.6763 3.20117 11.6932 3.20117C12.3813 3.20113 12.9741 3.2011 13.4489 3.26689C13.9576 3.3374 14.4454 3.49639 14.8409 3.90412C15.2365 4.31186 15.3907 4.81454 15.4592 5.33894C15.523 5.8283 15.5229 6.43934 15.5229 7.14854ZM6.98525 8.00118C6.98525 6.67566 8.02778 5.60118 9.3137 5.60118C10.5997 5.60118 11.6422 6.67566 11.6422 8.00118C11.6422 9.3267 10.5997 10.4012 9.3137 10.4012C8.02778 10.4012 6.98525 9.3267 6.98525 8.00118Z" fill="#7E2C2C" fill-opacity="0.7" style="fill:#7E2C2C;fill:color(display-p3 0.4941 0.1725 0.1725);fill-opacity:0.7;"/>
|
||||
<path d="M12.4157 2.40323C12.1936 2.40005 11.9652 2.40008 11.7345 2.40011H6.89322C6.23839 2.40004 5.602 2.39996 5.07529 2.47296C4.48096 2.55532 3.8019 2.75597 3.23784 3.33737C2.67378 3.91876 2.47911 4.61869 2.39921 5.2313C2.32839 5.77418 2.32845 6.4301 2.32852 7.10514V8.89507C2.3285 9.12955 2.32848 9.3617 2.33142 9.58763C2.28116 9.58507 2.23256 9.58203 2.18566 9.57827C1.89599 9.55523 1.60728 9.50443 1.32682 9.36667C0.844694 9.12987 0.4562 8.72946 0.226459 8.2325C0.0928062 7.94338 0.0435285 7.64586 0.0211753 7.3473C-1.35519e-05 7.06418 -5.8516e-06 6.72098 9.6714e-06 6.32322L1.89936e-06 3.94742C-3.69081e-05 3.23824 -6.79707e-05 2.62718 0.0637626 2.13785C0.132165 1.61344 0.286417 1.11076 0.681997 0.703027C1.07757 0.295298 1.56526 0.136306 2.07404 0.065802C2.54878 9.94206e-06 3.14162 4.19593e-05 3.82967 8.19593e-05L9.73215 4.1905e-05C10.0595 -0.000254095 10.3416 -0.0005099 10.5925 0.0566502C11.4771 0.258194 12.168 0.970307 12.3635 1.88209C12.3979 2.04232 12.4109 2.21487 12.4157 2.40323Z" fill="#7E2C2C" fill-opacity="0.7" style="fill:#7E2C2C;fill:color(display-p3 0.4941 0.1725 0.1725);fill-opacity:0.7;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 6.2 KiB |
|
Before Width: | Height: | Size: 6.2 KiB |
|
Before Width: | Height: | Size: 6.6 KiB |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="13" viewBox="0 0 16 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5229 7.14854C15.5229 7.16598 15.5229 7.18358 15.5229 7.20118V8.80118C15.5229 8.81878 15.5229 8.83638 15.5229 8.85382C15.5229 9.56302 15.523 10.1741 15.4592 10.6634C15.3907 11.1878 15.2365 11.6905 14.8409 12.0982C14.4454 12.506 13.9576 12.6649 13.4489 12.7355C12.9741 12.8013 12.3813 12.8013 11.6932 12.8012H6.93418C6.24612 12.8013 5.65327 12.8013 5.17853 12.7355C4.66976 12.6649 4.18206 12.506 3.78648 12.0982C3.39091 11.6905 3.23666 11.1878 3.16825 10.6634C3.10442 10.1741 3.10446 9.56302 3.10449 8.85382V7.14854C3.10446 6.43934 3.10442 5.8283 3.16825 5.33894C3.23666 4.81454 3.39091 4.31186 3.78648 3.90412C4.18206 3.49639 4.66976 3.3374 5.17853 3.26689C5.65327 3.2011 6.24612 3.20113 6.93418 3.20117H11.6422C11.6592 3.20117 11.6763 3.20117 11.6932 3.20117C12.3813 3.20113 12.9741 3.2011 13.4489 3.26689C13.9576 3.3374 14.4454 3.49639 14.8409 3.90412C15.2365 4.31186 15.3907 4.81454 15.4592 5.33894C15.523 5.8283 15.5229 6.43934 15.5229 7.14854ZM6.98525 8.00118C6.98525 6.67566 8.02778 5.60118 9.3137 5.60118C10.5997 5.60118 11.6422 6.67566 11.6422 8.00118C11.6422 9.3267 10.5997 10.4012 9.3137 10.4012C8.02778 10.4012 6.98525 9.3267 6.98525 8.00118Z" fill="#488355" fill-opacity="0.7" style="fill:#488355;fill:color(display-p3 0.2824 0.5137 0.3333);fill-opacity:0.7;"/>
|
||||
<path d="M12.4157 2.40323C12.1936 2.40005 11.9652 2.40008 11.7345 2.40011H6.89322C6.23839 2.40004 5.602 2.39996 5.07529 2.47296C4.48096 2.55532 3.8019 2.75597 3.23784 3.33737C2.67378 3.91876 2.47911 4.61869 2.39921 5.2313C2.32839 5.77418 2.32845 6.4301 2.32852 7.10514V8.89507C2.3285 9.12955 2.32848 9.3617 2.33142 9.58763C2.28116 9.58507 2.23256 9.58203 2.18566 9.57827C1.89599 9.55523 1.60728 9.50443 1.32682 9.36667C0.844694 9.12987 0.4562 8.72946 0.226459 8.2325C0.0928062 7.94338 0.0435285 7.64586 0.0211753 7.3473C-1.35519e-05 7.06418 -5.8516e-06 6.72098 9.6714e-06 6.32322L1.89936e-06 3.94742C-3.69081e-05 3.23824 -6.79707e-05 2.62718 0.0637626 2.13785C0.132165 1.61344 0.286417 1.11076 0.681997 0.703027C1.07757 0.295298 1.56526 0.136306 2.07404 0.065802C2.54878 9.94206e-06 3.14162 4.19593e-05 3.82967 8.19593e-05L9.73215 4.1905e-05C10.0595 -0.000254095 10.3416 -0.0005099 10.5925 0.0566502C11.4771 0.258194 12.168 0.970307 12.3635 1.88209C12.3979 2.04232 12.4109 2.21487 12.4157 2.40323Z" fill="#488355" fill-opacity="0.7" style="fill:#488355;fill:color(display-p3 0.2824 0.5137 0.3333);fill-opacity:0.7;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.5 KiB |
@@ -1,8 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60" fill="none">
|
||||
<g>
|
||||
|
||||
<path
|
||||
d="M24.4043 38.9785H35.1172C36.0807 38.9785 36.8132 38.7327 37.3145 38.2412C37.8158 37.7496 38.0664 37.0254 38.0664 36.0684V26.7227H21.4551V36.0684C21.4551 37.0319 21.7057 37.7578 22.207 38.2461C22.7083 38.7343 23.4408 38.9785 24.4043 38.9785ZM26.543 30.248C26.3346 30.248 26.167 30.1829 26.04 30.0527C25.9131 29.9225 25.8496 29.75 25.8496 29.5352V29.2324C25.8496 29.0176 25.9131 28.8467 26.04 28.7197C26.167 28.5928 26.3346 28.5293 26.543 28.5293H32.9883C33.1966 28.5293 33.3659 28.5928 33.4961 28.7197C33.6263 28.8467 33.6914 29.0176 33.6914 29.2324V29.5352C33.6914 29.75 33.6263 29.9225 33.4961 30.0527C33.3659 30.1829 33.1966 30.248 32.9883 30.248H26.543ZM21.6602 25.3848H37.8613C38.4147 25.3848 38.8297 25.2301 39.1064 24.9209C39.3831 24.6117 39.5215 24.1836 39.5215 23.6367V22.748C39.5215 22.2012 39.3831 21.7731 39.1064 21.4639C38.8297 21.1546 38.4147 21 37.8613 21H21.6602C21.1393 21 20.7324 21.1546 20.4395 21.4639C20.1465 21.7731 20 22.2012 20 22.748V23.6367C20 24.1836 20.1383 24.6117 20.415 24.9209C20.6917 25.2301 21.1068 25.3848 21.6602 25.3848Z"
|
||||
fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1,8 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60" fill="none">
|
||||
<g opacity="0.4">
|
||||
|
||||
<path
|
||||
d="M24.4043 38.9785H35.1172C36.0807 38.9785 36.8132 38.7327 37.3145 38.2412C37.8158 37.7496 38.0664 37.0254 38.0664 36.0684V26.7227H21.4551V36.0684C21.4551 37.0319 21.7057 37.7578 22.207 38.2461C22.7083 38.7343 23.4408 38.9785 24.4043 38.9785ZM26.543 30.248C26.3346 30.248 26.167 30.1829 26.04 30.0527C25.9131 29.9225 25.8496 29.75 25.8496 29.5352V29.2324C25.8496 29.0176 25.9131 28.8467 26.04 28.7197C26.167 28.5928 26.3346 28.5293 26.543 28.5293H32.9883C33.1966 28.5293 33.3659 28.5928 33.4961 28.7197C33.6263 28.8467 33.6914 29.0176 33.6914 29.2324V29.5352C33.6914 29.75 33.6263 29.9225 33.4961 30.0527C33.3659 30.1829 33.1966 30.248 32.9883 30.248H26.543ZM21.6602 25.3848H37.8613C38.4147 25.3848 38.8297 25.2301 39.1064 24.9209C39.3831 24.6117 39.5215 24.1836 39.5215 23.6367V22.748C39.5215 22.2012 39.3831 21.7731 39.1064 21.4639C38.8297 21.1546 38.4147 21 37.8613 21H21.6602C21.1393 21 20.7324 21.1546 20.4395 21.4639C20.1465 21.7731 20 22.2012 20 22.748V23.6367C20 24.1836 20.1383 24.6117 20.415 24.9209C20.6917 25.2301 21.1068 25.3848 21.6602 25.3848Z"
|
||||
fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1,4 +0,0 @@
|
||||
<svg width="58" height="58" viewBox="0 0 58 58" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="28.6712" cy="29.3089" r="27.521" stroke="#FF8484" style="stroke:#FF8484;stroke:color(display-p3 1.0000 0.5167 0.5167);stroke-opacity:1;" stroke-width="2.29342"/>
|
||||
<path d="M29.0059 29.227C30.5158 29.227 31.9927 29.1499 33.4365 28.9956C34.8803 28.8413 36.3124 28.5862 37.7329 28.2301C39.1533 27.8741 40.5757 27.3954 42 26.7941V25.8328C42 24.6144 41.7004 23.7065 41.1011 23.1091C40.5017 22.5118 39.5989 22.2131 38.3925 22.2131H34.9251V21.2755C34.9251 20.16 34.6429 19.3351 34.0787 18.8011C33.5144 18.267 32.7068 18 31.6561 18H26.344C25.3477 18 24.5558 18.267 23.9681 18.8011C23.3805 19.3351 23.0867 20.16 23.0867 21.2755V22.2131H19.6076C18.4089 22.2131 17.508 22.5118 16.9048 23.1091C16.3016 23.7065 16 24.6144 16 25.8328V26.7941C17.4321 27.3954 18.8565 27.8741 20.273 28.2301C21.6896 28.5862 23.1198 28.8413 24.5636 28.9956C26.0074 29.1499 27.4881 29.227 29.0059 29.227ZM24.8963 22.2131V21.145C24.8963 20.694 25.0208 20.3459 25.2699 20.1006C25.519 19.8553 25.8692 19.7327 26.3206 19.7327H31.6794C32.1386 19.7327 32.4928 19.8553 32.7418 20.1006C32.9909 20.3459 33.1154 20.694 33.1154 21.145V22.2131H24.8963ZM19.6076 41H38.3925C39.5989 41 40.5017 40.6993 41.1011 40.098C41.7004 39.4967 42 38.5908 42 37.3803V28.7404C40.8637 29.1598 39.7449 29.5119 38.6435 29.7967C37.5422 30.0815 36.4486 30.309 35.3629 30.4791C34.2771 30.6492 33.1933 30.7738 32.1114 30.853V31.8142C32.1114 32.6766 31.6795 33.1078 30.8155 33.1078H27.1846C26.3284 33.1078 25.9003 32.6766 25.9003 31.8142V30.853C24.8107 30.7738 23.723 30.6492 22.6372 30.4791C21.5514 30.309 20.4579 30.0815 19.3565 29.7967C18.2552 29.5119 17.1364 29.1598 16 28.7404V37.3803C16 38.5908 16.3016 39.4967 16.9048 40.098C17.508 40.6993 18.4089 41 19.6076 41Z" fill="#FF8383" style="fill:#FF8383;fill:color(display-p3 1.0000 0.5125 0.5125);fill-opacity:1;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 5.5 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="13" height="14" viewBox="0 0 13 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6.57662 4.28661L5.76134 5.17571C6.16593 5.21083 6.50615 5.29206 6.782 5.41939C7.05781 5.54671 7.29584 5.71795 7.49607 5.93309C7.85165 6.31946 8.08869 6.74426 8.2072 7.20748C8.32571 7.67066 8.32671 8.13276 8.21021 8.59377C8.09375 9.05479 7.85775 9.47629 7.50222 9.85827L5.49775 12.0053C5.14222 12.3873 4.74991 12.6419 4.32081 12.7692C3.89172 12.8966 3.46161 12.8977 3.03047 12.7725C2.59934 12.6474 2.206 12.3939 1.85047 12.0119C1.49494 11.6255 1.25791 11.2007 1.1394 10.7375C1.02089 10.2743 1.02089 9.81221 1.1394 9.35119C1.25791 8.89017 1.49494 8.46867 1.85047 8.0867L3.05193 6.79583C2.96611 6.58948 2.91196 6.36886 2.88949 6.13396C2.86701 5.89906 2.87212 5.67404 2.90481 5.4589L1.10262 7.38856C0.616315 7.91544 0.290409 8.4972 0.124901 9.13383C-0.0406058 9.77046 -0.0416275 10.4082 0.121836 11.047C0.2853 11.6859 0.614273 12.2709 1.10875 12.8022C1.60732 13.3379 2.1539 13.6935 2.7485 13.8691C3.3431 14.0447 3.93668 14.0436 4.52923 13.8658C5.12179 13.688 5.66122 13.3378 6.14753 12.8154L8.24398 10.5564C8.73434 10.0295 9.06227 9.44776 9.22778 8.81113C9.39328 8.1745 9.39431 7.53677 9.23085 6.89794C9.0674 6.25909 8.73639 5.67404 8.23783 5.14278C8.04575 4.93203 7.81894 4.75531 7.5574 4.61261C7.29586 4.46992 6.96893 4.36125 6.57662 4.28661ZM6.42339 9.71341L7.23865 8.82428C6.83408 8.78917 6.49387 8.70795 6.21802 8.58062C5.94217 8.4533 5.70413 8.28207 5.50389 8.06694C5.14426 7.68055 4.9052 7.25575 4.78669 6.79253C4.66818 6.32933 4.66818 5.86723 4.78669 5.40622C4.9052 4.9452 5.14222 4.5237 5.49775 4.14172L7.49607 1.99471C7.8557 1.61273 8.25007 1.35807 8.67916 1.23075C9.10826 1.10342 9.53736 1.10232 9.96646 1.22746C10.3956 1.35259 10.7899 1.60834 11.1495 1.99471C11.5051 2.37669 11.7421 2.79929 11.8606 3.2625C11.9791 3.72571 11.9791 4.18782 11.8606 4.64884C11.7421 5.10985 11.5051 5.53135 11.1495 5.91333L9.94806 7.20418C10.0339 7.41491 10.088 7.63663 10.1105 7.86934C10.133 8.10205 10.1279 8.32597 10.0952 8.5411L11.8974 6.61143C12.3837 6.08456 12.7096 5.50281 12.8751 4.86617C13.0406 4.22953 13.0416 3.5918 12.8782 2.95296C12.7147 2.31413 12.3857 1.72908 11.8912 1.19782C11.3927 0.662163 10.8461 0.306524 10.2515 0.1309C9.65689 -0.0447242 9.06332 -0.0436265 8.47077 0.134193C7.87822 0.312013 7.33674 0.66436 6.84634 1.19124L4.75604 3.44361C4.26565 3.97048 3.9377 4.55224 3.77219 5.18888C3.60668 5.82552 3.60566 6.46325 3.76913 7.10208C3.93259 7.74091 4.2636 8.32597 4.76217 8.85726C4.95424 9.06799 5.18104 9.2447 5.44259 9.38741C5.70413 9.53011 6.03106 9.63878 6.42339 9.71341Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.6 KiB |
@@ -1,12 +0,0 @@
|
||||
<svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_169_2)">
|
||||
<path d="M4.03906 3.15206C4.03906 3.56476 4.12465 3.94697 4.29582 4.2987C4.467 4.65043 4.70266 4.95058 5.00281 5.19914C5.30295 5.44769 5.64296 5.61887 6.02283 5.71266V10.1656C6.02283 10.6862 6.04394 11.1458 6.08614 11.5443C6.12835 11.943 6.18228 12.2783 6.24794 12.5503C6.31359 12.8223 6.38394 13.0275 6.45897 13.1658C6.53401 13.3042 6.6067 13.3734 6.67705 13.3734C6.74739 13.3734 6.82126 13.3042 6.89864 13.1658C6.97602 13.0275 7.04637 12.8223 7.10968 12.5503C7.17299 12.2783 7.22575 11.943 7.26796 11.5443C7.31018 11.1458 7.33128 10.6862 7.33128 10.1656V5.71266C7.71115 5.61887 8.05115 5.44769 8.35129 5.19914C8.65144 4.95058 8.88826 4.65043 9.06177 4.2987C9.23533 3.94697 9.3221 3.56476 9.3221 3.15206C9.3221 2.66432 9.20368 2.21997 8.96683 1.81899C8.72998 1.41802 8.41223 1.09794 8.01359 0.858766C7.615 0.619589 7.16949 0.5 6.67705 0.5C6.18931 0.5 5.74613 0.619589 5.34751 0.858766C4.94888 1.09794 4.63114 1.41802 4.39431 1.81899C4.15748 2.21997 4.03906 2.66432 4.03906 3.15206Z" fill="white" fill-opacity="0.7" style="fill:white;fill:white;fill-opacity:0.7;"/>
|
||||
<path d="M5.92387 3.29227C5.68469 3.29227 5.47482 3.20199 5.29427 3.02144C5.11371 2.84089 5.02344 2.62867 5.02344 2.38481C5.02344 2.14094 5.11371 1.9299 5.29427 1.75169C5.47482 1.57348 5.68469 1.48438 5.92387 1.48438C6.17242 1.48438 6.38581 1.57348 6.56402 1.75169C6.74223 1.9299 6.83133 2.14094 6.83133 2.38481C6.83133 2.62867 6.74223 2.84089 6.56402 3.02144C6.38581 3.20199 6.17242 3.29227 5.92387 3.29227Z" fill="#875354" style="fill:#875354;fill:color(display-p3 0.5294 0.3255 0.3294);fill-opacity:1;"/>
|
||||
<path d="M6.68387 15.9484C7.74377 15.9484 8.68758 15.8652 9.51531 15.6987C10.343 15.5322 11.043 15.3071 11.6151 15.0234C12.1873 14.7396 12.6211 14.4184 12.9166 14.0596C13.212 13.7009 13.3597 13.3269 13.3597 12.9376C13.3597 12.5671 13.2554 12.2259 13.0467 11.914C12.838 11.6022 12.5578 11.3243 12.2061 11.0805C11.8543 10.8366 11.4639 10.6291 11.0348 10.4579C10.6057 10.2867 10.1695 10.1554 9.72637 10.064C9.28316 9.9725 8.86695 9.92676 8.47772 9.92676V10.9538C8.82008 10.9585 9.1894 11.0066 9.58569 11.098C9.98197 11.1895 10.3583 11.3149 10.7147 11.4744C11.0711 11.6339 11.3642 11.8238 11.5941 12.0442C11.8239 12.2646 11.9388 12.5061 11.9388 12.7687C11.9388 13.0736 11.8075 13.3515 11.5448 13.6024C11.2822 13.8533 10.9152 14.0713 10.4439 14.2566C9.97256 14.4418 9.41681 14.5849 8.77667 14.6857C8.13652 14.7865 7.43892 14.8369 6.68387 14.8369C5.92413 14.8369 5.22419 14.7865 4.58403 14.6857C3.94389 14.5849 3.38815 14.443 2.91683 14.2601C2.44551 14.0772 2.07971 13.8592 1.81943 13.6059C1.55915 13.3527 1.42901 13.0736 1.42901 12.7687C1.42901 12.5061 1.54273 12.2646 1.77018 12.0442C1.99764 11.8238 2.28958 11.6339 2.646 11.4744C3.00242 11.3149 3.37994 11.1895 3.77857 11.098C4.1772 11.0066 4.54535 10.9585 4.88301 10.9538V9.92676C4.49845 9.92676 4.08458 9.9725 3.6414 10.064C3.19822 10.1554 2.76207 10.2867 2.33295 10.4579C1.90384 10.6291 1.51342 10.8366 1.16169 11.0805C0.809959 11.3243 0.528574 11.6022 0.317535 11.914C0.106496 12.2259 0.000976562 12.5671 0.000976562 12.9376C0.000976562 13.3269 0.149876 13.7009 0.447675 14.0596C0.745473 14.4184 1.18045 14.7396 1.7526 15.0234C2.32475 15.3071 3.0247 15.5322 3.85244 15.6987C4.68018 15.8652 5.62399 15.9484 6.68387 15.9484Z" fill="white" fill-opacity="0.7" style="fill:white;fill:white;fill-opacity:0.7;"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_169_2">
|
||||
<rect width="13.3587" height="15.4551" fill="white" style="fill:white;fill:white;fill-opacity:1;" transform="translate(0 0.5)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.6 KiB |
@@ -1,8 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60" fill="none">
|
||||
<g >
|
||||
|
||||
<path
|
||||
d="M24.2503 37.9046L34.5622 39.6115C35.178 39.7177 35.7075 39.6852 36.1505 39.5143C36.5935 39.3433 36.9345 39.0485 37.1732 38.6299C37.412 38.2112 37.5314 37.6865 37.5314 37.0556V26.3805C37.5314 25.5137 37.2973 24.8917 36.8291 24.5143C36.361 24.137 35.6682 23.8716 34.7507 23.7183L24.7404 22.0556C24.2817 21.9849 23.8826 22.0099 23.5433 22.1308C23.204 22.2517 22.94 22.4551 22.7515 22.741C22.563 23.027 22.4688 23.3823 22.4688 23.8068V35.9766C22.4688 36.5249 22.618 36.9598 22.9165 37.2811C23.215 37.6024 23.6596 37.8103 24.2503 37.9046ZM25.9469 26.9642C25.7835 26.9406 25.6579 26.8743 25.5699 26.7652C25.4819 26.6561 25.4379 26.522 25.4379 26.3628C25.4379 26.1741 25.5086 26.0252 25.65 25.9162C25.7914 25.8071 25.9752 25.7702 26.2014 25.8056L33.6479 27.0261C33.9998 27.0969 34.1758 27.2973 34.1758 27.6275C34.1758 27.8162 34.1098 27.968 33.9778 28.083C33.8459 28.198 33.6637 28.2378 33.4311 28.2024L25.9469 26.9642ZM25.9469 30.5196C25.7835 30.496 25.6579 30.4297 25.5699 30.3206C25.4819 30.2115 25.4379 30.0774 25.4379 29.9182C25.4379 29.7354 25.5086 29.5895 25.65 29.4804C25.7914 29.3713 25.9752 29.3344 26.2014 29.3698L33.6479 30.5904C33.9998 30.6494 34.1758 30.8469 34.1758 31.1829C34.1758 31.3775 34.1098 31.5323 33.9778 31.6473C33.8459 31.7622 33.6637 31.802 33.4311 31.7666L25.9469 30.5196ZM26.8235 21.18L34.977 22.5244C35.7688 22.66 36.4412 22.8693 36.9941 23.1523V22.4624C36.9941 21.5308 36.6799 20.8557 36.0516 20.4371C35.4231 20.0185 34.5497 19.9005 33.4311 20.0833L26.8235 21.18Z"
|
||||
fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.7 KiB |
@@ -1,8 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60" fill="none">
|
||||
<g opacity="0.4">
|
||||
|
||||
<path
|
||||
d="M24.2503 37.9046L34.5622 39.6115C35.178 39.7177 35.7075 39.6852 36.1505 39.5143C36.5935 39.3433 36.9345 39.0485 37.1732 38.6299C37.412 38.2112 37.5314 37.6865 37.5314 37.0556V26.3805C37.5314 25.5137 37.2973 24.8917 36.8291 24.5143C36.361 24.137 35.6682 23.8716 34.7507 23.7183L24.7404 22.0556C24.2817 21.9849 23.8826 22.0099 23.5433 22.1308C23.204 22.2517 22.94 22.4551 22.7515 22.741C22.563 23.027 22.4688 23.3823 22.4688 23.8068V35.9766C22.4688 36.5249 22.618 36.9598 22.9165 37.2811C23.215 37.6024 23.6596 37.8103 24.2503 37.9046ZM25.9469 26.9642C25.7835 26.9406 25.6579 26.8743 25.5699 26.7652C25.4819 26.6561 25.4379 26.522 25.4379 26.3628C25.4379 26.1741 25.5086 26.0252 25.65 25.9162C25.7914 25.8071 25.9752 25.7702 26.2014 25.8056L33.6479 27.0261C33.9998 27.0969 34.1758 27.2973 34.1758 27.6275C34.1758 27.8162 34.1098 27.968 33.9778 28.083C33.8459 28.198 33.6637 28.2378 33.4311 28.2024L25.9469 26.9642ZM25.9469 30.5196C25.7835 30.496 25.6579 30.4297 25.5699 30.3206C25.4819 30.2115 25.4379 30.0774 25.4379 29.9182C25.4379 29.7354 25.5086 29.5895 25.65 29.4804C25.7914 29.3713 25.9752 29.3344 26.2014 29.3698L33.6479 30.5904C33.9998 30.6494 34.1758 30.8469 34.1758 31.1829C34.1758 31.3775 34.1098 31.5323 33.9778 31.6473C33.8459 31.7622 33.6637 31.802 33.4311 31.7666L25.9469 30.5196ZM26.8235 21.18L34.977 22.5244C35.7688 22.66 36.4412 22.8693 36.9941 23.1523V22.4624C36.9941 21.5308 36.6799 20.8557 36.0516 20.4371C35.4231 20.0185 34.5497 19.9005 33.4311 20.0833L26.8235 21.18Z"
|
||||
fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 5.7 KiB |
|
Before Width: | Height: | Size: 7.3 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="111" height="75" viewBox="0 0 111 75" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M55.3982 72.9734C59.1811 72.9734 62.8142 72.6465 66.2977 71.9929C69.7812 71.3393 73.0606 70.4407 76.1359 69.2972L65.4404 58.5953C63.9436 59.385 62.3448 59.9841 60.644 60.3926C58.9429 60.8011 57.1943 61.0053 55.3982 61.0053C52.214 61.0053 49.2408 60.4131 46.4785 59.2285C43.7162 58.044 41.2941 56.3964 39.2121 54.2858C37.1302 52.1755 35.4973 49.7519 34.3134 47.015C33.1296 44.2784 32.5376 41.3579 32.5376 38.2535C32.5376 36.429 32.7417 34.6522 33.15 32.923C33.5582 31.1938 34.1433 29.5667 34.9053 28.0418L20.9441 13.9905C17.7327 16.0056 14.8411 18.1637 12.2693 20.4647C9.69746 22.7657 7.49986 25.0464 5.67648 27.3065C3.85307 29.5667 2.4583 31.6499 1.49217 33.5561C0.526035 35.4623 0.0429688 37.0281 0.0429688 38.2535C0.0429688 39.6423 0.655305 41.4464 1.87998 43.6659C3.10465 45.8852 4.88043 48.302 7.20732 50.9162C9.53419 53.5304 12.3373 56.1309 15.6167 58.7178C18.8961 61.3047 22.5905 63.6738 26.7 65.8251C30.8095 67.9764 35.2727 69.7055 40.0898 71.0125C44.9068 72.3197 50.0097 72.9734 55.3982 72.9734ZM90.9953 61.8222C94.9687 59.208 98.4319 56.3827 101.385 53.3464C104.337 50.31 106.63 47.4439 108.263 44.748C109.896 42.0522 110.713 39.8874 110.713 38.2535C110.713 36.8647 110.107 35.0606 108.896 32.8413C107.685 30.622 105.93 28.2052 103.63 25.591C101.33 22.9768 98.5475 20.3762 95.2817 17.7892C92.0158 15.2023 88.3282 12.8331 84.2187 10.6819C80.1093 8.53061 75.6393 6.80143 70.8086 5.49433C65.9779 4.18723 60.8412 3.53368 55.3982 3.53368C51.9147 3.53368 48.5537 3.81281 45.3151 4.37106C42.0765 4.92929 38.974 5.69856 36.0075 6.67888L46.6215 17.2991C47.9549 16.7272 49.3564 16.2847 50.8259 15.9715C52.2957 15.6584 53.8198 15.5018 55.3982 15.5018C58.5551 15.5018 61.5147 16.0805 64.277 17.2378C67.0393 18.3951 69.4615 20.0154 71.5435 22.0986C73.6255 24.1818 75.2584 26.5986 76.4423 29.3489C77.6261 32.0992 78.218 35.0674 78.218 38.2535C78.218 39.8057 78.0547 41.317 77.7281 42.7875C77.4015 44.2579 76.9252 45.6467 76.2993 46.9539L90.9953 61.8222ZM42.376 37.314C42.376 39.7104 42.9679 41.8889 44.1518 43.8495C45.3356 45.8101 46.9141 47.3758 48.8871 48.5467C50.8602 49.7179 53.0442 50.3034 55.4392 50.3034C55.7112 50.3034 55.9833 50.2966 56.2556 50.2829C56.5276 50.2693 56.8132 50.2488 57.1125 50.2215L42.4575 35.5576C42.4302 35.8571 42.4097 36.1567 42.3961 36.4562C42.3827 36.7558 42.376 37.0417 42.376 37.314ZM68.3799 37.3957C68.3799 35.0266 67.8015 32.8549 66.6447 30.8807C65.4882 28.9064 63.9302 27.3406 61.9708 26.1833C60.0111 25.0259 57.8203 24.4473 55.3982 24.4473C55.126 24.4473 54.8607 24.4541 54.6023 24.4677C54.3437 24.4813 54.0919 24.5017 53.847 24.529L68.298 38.9887C68.3253 38.7437 68.3458 38.485 68.3594 38.2127C68.3731 37.9403 68.3799 37.668 68.3799 37.3957ZM87.1579 73.6267C87.784 74.2533 88.5258 74.5801 89.383 74.6071C90.2402 74.6344 90.9818 74.3076 91.6077 73.6267C92.288 72.946 92.6146 72.1905 92.5875 71.3601C92.5602 70.5294 92.2336 69.8009 91.6077 69.1746L23.3526 0.919487C22.7538 0.320401 22.0123 0.0140501 21.1278 0.000434541C20.2433 -0.0131811 19.488 0.29317 18.8621 0.919487C18.2634 1.51857 17.964 2.26063 17.964 3.14564C17.964 4.03066 18.2634 4.7727 18.8621 5.37178L87.1579 73.6267Z" fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.2 KiB |
@@ -1,11 +0,0 @@
|
||||
<svg width="26" height="29" viewBox="0 0 26 29" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g opacity="0.2" clip-path="url(#clip0_274_4419)">
|
||||
<path d="M2.49753 22.7731L21.9696 17.5555C22.5511 17.3997 22.9694 17.1425 23.2245 16.7839C23.4795 16.4255 23.5466 16.0205 23.4256 15.5692C23.3157 15.159 23.0903 14.7929 22.7495 14.4709C22.4086 14.1489 22.0106 13.851 21.5554 13.5771C21.1002 13.3034 20.6471 13.0291 20.1959 12.7542C19.8509 12.5477 19.5422 12.2391 19.2698 11.8284C18.9973 11.4177 18.7561 10.9679 18.546 10.4789C18.336 9.98991 18.1509 9.51187 17.9907 9.04478C17.8747 8.64493 17.7554 8.25697 17.6327 7.88092C17.51 7.50487 17.3798 7.14182 17.242 6.79178C16.9638 6.99826 16.6697 7.1782 16.3597 7.33162C16.0497 7.48504 15.7186 7.60893 15.3664 7.70329C14.2771 7.99518 13.212 7.99255 12.1712 7.69541C11.1304 7.39827 10.2208 6.8703 9.44252 6.11148C8.66423 5.35266 8.12998 4.43171 7.83977 3.34864C7.6441 2.61839 7.58527 1.89104 7.66328 1.1666C7.74128 0.442162 7.92806 -0.236672 8.22362 -0.869901C7.70343 -0.976755 7.16487 -0.955566 6.60793 -0.806335C5.70702 -0.564937 5.02418 -0.0829674 4.55941 0.639573C4.09465 1.36211 3.85534 2.15615 3.84147 3.02171C2.85772 3.70743 2.14422 4.55817 1.70097 5.57395C1.25772 6.58972 1.04538 7.75469 1.06394 9.06886C1.08249 10.383 1.29054 11.8311 1.6881 13.413C1.78284 13.8977 1.86151 14.4042 1.92412 14.9327C1.98673 15.4612 2.00273 15.9714 1.97213 16.4633C1.94153 16.9552 1.82846 17.3768 1.63294 17.7281C1.37971 18.1918 1.12442 18.6559 0.867062 19.1206C0.609735 19.5853 0.413982 20.0423 0.279803 20.4916C0.145624 20.9409 0.133489 21.3706 0.243398 21.7808C0.364339 22.2322 0.624882 22.5493 1.02503 22.7323C1.42519 22.9153 1.91603 22.9289 2.49753 22.7731ZM13.5499 25.1013C14.2461 24.9148 14.8279 24.5962 15.2953 24.1456C15.7626 23.6949 16.0962 23.179 16.296 22.5978C16.4958 22.0167 16.5474 21.4312 16.4508 20.8415L8.91996 22.8594C9.12301 23.4206 9.45838 23.9024 9.92608 24.3046C10.3938 24.7069 10.9427 24.9864 11.5728 25.143C12.2029 25.2996 12.8619 25.2856 13.5499 25.1013Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
<path d="M14.9305 6.02623C15.7004 5.81994 16.3572 5.43728 16.9009 4.87827C17.4446 4.31927 17.8221 3.66408 18.0334 2.91273C18.2445 2.1614 18.2457 1.39599 18.0368 0.616504C17.828 -0.162977 17.4443 -0.82526 16.8857 -1.37034C16.3271 -1.9154 15.6726 -2.29406 14.9222 -2.50633C14.1718 -2.71859 13.4117 -2.72158 12.6418 -2.51529C11.8555 -2.30461 11.1926 -1.92031 10.653 -1.3624C10.1134 -0.80449 9.73804 -0.149871 9.52686 0.601455C9.31559 1.35281 9.31439 2.11823 9.52325 2.89771C9.73212 3.6772 10.1159 4.33947 10.6745 4.88453C11.2331 5.42961 11.8855 5.80883 12.6317 6.0222C13.378 6.23556 14.1442 6.23691 14.9305 6.02623Z" fill="#FF4242" style="fill:#FF4242;fill:color(display-p3 1.0000 0.2583 0.2583);fill-opacity:1;"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_274_4419">
|
||||
<rect width="24" height="27" fill="white" style="fill:white;fill:white;fill-opacity:1;" transform="translate(-5 2.21191) rotate(-15)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.9 KiB |
@@ -1,6 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14.991 7.75C15.4102 7.75 15.7539 8.09061 15.7129 8.50777C15.6059 9.59638 15.2694 10.653 14.7222 11.6068C14.0487 12.7806 13.0797 13.7576 11.9114 14.4406C10.7431 15.1236 9.41632 15.4887 8.06309 15.4997C6.70985 15.5108 5.37732 15.1672 4.19808 14.5034C3.01883 13.8395 2.03397 12.8784 1.34149 11.7157C0.649016 10.553 0.273059 9.22927 0.251027 7.87617C0.228995 6.52307 0.561657 5.18779 1.21591 4.00318C1.74751 3.04065 2.47637 2.20486 3.35162 1.54878C3.68702 1.29737 4.15648 1.41452 4.37389 1.7729C4.59131 2.13127 4.4735 2.59462 4.14419 2.85396C3.49269 3.36705 2.94806 4.00667 2.54468 4.73705C2.01857 5.68964 1.75106 6.76338 1.76878 7.85146C1.78649 8.93953 2.08881 10.004 2.64566 10.939C3.20251 11.8739 3.99446 12.6468 4.94274 13.1806C5.89101 13.7145 6.96255 13.9907 8.05073 13.9818C9.13891 13.973 10.2058 13.6793 11.1453 13.1301C12.0847 12.5809 12.864 11.7953 13.4055 10.8514C13.8208 10.1277 14.0851 9.33026 14.1859 8.50712C14.2368 8.09105 14.5719 7.75 14.991 7.75Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
<circle cx="8" cy="7.75" r="3.875" fill="#FF5B5B" style="fill:#FF5B5B;fill:color(display-p3 1.0000 0.3569 0.3569);fill-opacity:1;"/>
|
||||
<path d="M5.38877 1.28223C5.22853 0.885331 5.41967 0.429643 5.83058 0.309829C6.62012 0.0796145 7.4429 -0.0239269 8.26812 0.00463931C9.09333 0.0332055 9.90699 0.193395 10.6787 0.477656C11.0804 0.625597 11.2395 1.09341 11.0522 1.47828C10.8649 1.86314 10.4021 2.01823 9.99687 1.88037C9.42327 1.68523 8.82281 1.57477 8.2145 1.55371C7.60618 1.53265 6.99952 1.60133 6.4138 1.75634C6.00002 1.86584 5.54901 1.67912 5.38877 1.28223Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
<path d="M12.3148 2.26972C12.5795 1.93342 13.07 1.87283 13.3782 2.16986C14.1083 2.87358 14.6934 3.71392 15.0999 4.64294C15.2715 5.03505 15.0445 5.47397 14.6372 5.60556C14.2299 5.73716 13.7974 5.51085 13.616 5.12314C13.3164 4.48267 12.9095 3.89808 12.4128 3.39483C12.1121 3.09019 12.05 2.60602 12.3148 2.26972Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
@@ -1,6 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14.991 7.75C15.4102 7.75 15.7539 8.09061 15.7129 8.50777C15.6059 9.59638 15.2694 10.653 14.7222 11.6068C14.0487 12.7806 13.0797 13.7576 11.9114 14.4406C10.7431 15.1236 9.41632 15.4887 8.06309 15.4997C6.70985 15.5108 5.37732 15.1672 4.19808 14.5034C3.01883 13.8395 2.03397 12.8784 1.34149 11.7157C0.649016 10.553 0.273059 9.22927 0.251027 7.87617C0.228995 6.52307 0.561657 5.18779 1.21591 4.00318C1.74751 3.04065 2.47637 2.20486 3.35162 1.54878C3.68702 1.29737 4.15648 1.41452 4.37389 1.7729C4.59131 2.13127 4.4735 2.59462 4.14419 2.85396C3.49269 3.36705 2.94806 4.00667 2.54468 4.73705C2.01857 5.68964 1.75106 6.76338 1.76878 7.85146C1.78649 8.93953 2.08881 10.004 2.64566 10.939C3.20251 11.8739 3.99446 12.6468 4.94274 13.1806C5.89101 13.7145 6.96255 13.9907 8.05073 13.9818C9.13891 13.973 10.2058 13.6793 11.1453 13.1301C12.0847 12.5809 12.864 11.7953 13.4055 10.8514C13.8208 10.1277 14.0851 9.33026 14.1859 8.50712C14.2368 8.09105 14.5719 7.75 14.991 7.75Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
<circle cx="8" cy="7.75" r="3.875" fill="#88FDA2" style="fill:#88FDA2;fill:color(display-p3 0.5333 0.9922 0.6353);fill-opacity:1;"/>
|
||||
<path d="M5.38877 1.28223C5.22853 0.885331 5.41967 0.429643 5.83058 0.309829C6.62012 0.0796145 7.4429 -0.0239269 8.26812 0.00463931C9.09333 0.0332055 9.90699 0.193395 10.6787 0.477656C11.0804 0.625597 11.2395 1.09341 11.0522 1.47828C10.8649 1.86314 10.4021 2.01823 9.99687 1.88037C9.42327 1.68523 8.82281 1.57477 8.2145 1.55371C7.60618 1.53265 6.99952 1.60133 6.4138 1.75634C6.00002 1.86584 5.54901 1.67912 5.38877 1.28223Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
<path d="M12.3148 2.26972C12.5795 1.93342 13.07 1.87283 13.3782 2.16986C14.1083 2.87358 14.6934 3.71392 15.0999 4.64294C15.2715 5.03505 15.0445 5.47397 14.6372 5.60556C14.2299 5.73716 13.7974 5.51085 13.616 5.12314C13.3164 4.48267 12.9095 3.89808 12.4128 3.39483C12.1121 3.09019 12.05 2.60602 12.3148 2.26972Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="122" height="101" viewBox="0 0 122 101" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M37.4425 101H84.5535C88.8461 101 92.0502 99.9568 94.1658 97.8705C96.2811 95.7842 97.3698 92.6083 97.4318 88.3429L98.0337 42.8159L109.383 45.4122C111.545 45.8758 113.313 45.6749 114.687 44.8094C116.061 43.944 117.011 42.3986 117.536 40.1733L121.659 23.7149C122.215 21.5204 122.091 19.6582 121.288 18.1283C120.485 16.5984 119.018 15.3852 116.887 14.4889L84.2756 0.580382C83.349 0.178579 82.4534 -0.0145953 81.5888 0.000858543C80.7242 0.0163124 79.8595 0.22494 78.9946 0.62674C76.9564 1.58488 75.0032 2.38849 73.1349 3.03755C71.2666 3.68661 69.3518 4.18114 67.3905 4.52112C65.4295 4.86112 63.3064 5.03112 61.0213 5.03112C58.7049 5.03112 56.5662 4.86112 54.6052 4.52112C52.6442 4.18114 50.7296 3.68661 48.8613 3.03755C46.9929 2.38849 45.0395 1.58488 43.0013 0.62674C42.1366 0.22494 41.2719 0.0163124 40.4072 0.000858543C39.5425 -0.0145953 38.6469 0.178579 37.7204 0.580382L5.1086 14.4889C3.0086 15.3852 1.54941 16.5984 0.731027 18.1283C-0.0873561 19.6582 -0.218606 21.5204 0.337278 23.7149L4.46008 40.1733C4.98508 42.3986 5.93472 43.944 7.30898 44.8094C8.68325 45.6749 10.4513 45.8758 12.613 45.4122L24.0086 42.8159L24.5645 88.3429C24.6263 92.6083 25.7149 95.7842 27.8303 97.8705C29.9458 99.9568 33.1498 101 37.4425 101ZM61.0213 19.4959C58.3653 19.4959 55.9949 19.0632 53.9103 18.1978C51.826 17.3324 50.0503 16.0961 48.5833 14.4889C47.1164 12.8817 45.9815 10.9499 45.1785 8.69368C47.5872 9.62091 50.1427 10.3318 52.8449 10.8263C55.5471 11.3208 58.2726 11.5681 61.0213 11.5681C63.7387 11.5681 66.4486 11.3208 69.1508 10.8263C71.853 10.3318 74.4085 9.62091 76.8173 8.69368C76.0454 10.919 74.9336 12.8353 73.4821 14.4425C72.0306 16.0497 70.2549 17.2938 68.1551 18.1746C66.055 19.0555 63.6771 19.4959 61.0213 19.4959Z" fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1,8 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60" fill="none">
|
||||
<g >
|
||||
|
||||
<path
|
||||
d="M25.8272 38.2746H33.8916C34.6264 38.2746 35.1748 38.0962 35.537 37.7394C35.8991 37.3825 36.0854 36.8393 36.096 36.1098L36.1991 28.3231L38.1418 28.7671C38.5118 28.8464 38.8145 28.812 39.0497 28.664C39.2849 28.516 39.4475 28.2517 39.5374 27.8711L40.2431 25.0561C40.3383 24.6808 40.3171 24.3623 40.1796 24.1006C40.0422 23.8389 39.7911 23.6314 39.4264 23.4781L33.844 21.0993C33.6854 21.0305 33.5321 20.9975 33.3841 21.0001C33.2361 21.0028 33.088 21.0385 32.94 21.1072C32.5911 21.2711 32.2568 21.4085 31.937 21.5195C31.6171 21.6305 31.2894 21.7151 30.9536 21.7733C30.618 21.8314 30.2546 21.8605 29.8634 21.8605C29.4669 21.8605 29.1008 21.8314 28.7651 21.7733C28.4294 21.7151 28.1017 21.6305 27.7819 21.5195C27.462 21.4085 27.1277 21.2711 26.7788 21.1072C26.6308 21.0385 26.4828 21.0028 26.3347 21.0001C26.1867 20.9975 26.0334 21.0305 25.8748 21.0993L20.2924 23.4781C19.933 23.6314 19.6832 23.8389 19.5431 24.1006C19.403 24.3623 19.3805 24.6808 19.4757 25.0561L20.1814 27.8711C20.2713 28.2517 20.4339 28.516 20.6691 28.664C20.9043 28.812 21.207 28.8464 21.577 28.7671L23.5277 28.3231L23.6228 36.1098C23.6334 36.8393 23.8198 37.3825 24.1819 37.7394C24.544 38.0962 25.0924 38.2746 25.8272 38.2746ZM29.8634 24.3345C29.4087 24.3345 29.003 24.2605 28.6462 24.1125C28.2894 23.9645 27.9854 23.753 27.7343 23.4781C27.4832 23.2032 27.2889 22.8728 27.1515 22.4869C27.5638 22.6455 28.0012 22.7671 28.4638 22.8517C28.9263 22.9363 29.3929 22.9786 29.8634 22.9786C30.3286 22.9786 30.7924 22.9363 31.255 22.8517C31.7175 22.7671 32.155 22.6455 32.5673 22.4869C32.4352 22.8675 32.2449 23.1953 31.9964 23.4702C31.7479 23.7451 31.444 23.9579 31.0845 24.1085C30.725 24.2592 30.318 24.3345 29.8634 24.3345Z"
|
||||
fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1,8 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60" fill="none">
|
||||
<g opacity="0.4">
|
||||
|
||||
<path
|
||||
d="M25.8272 38.2746H33.8916C34.6264 38.2746 35.1748 38.0962 35.537 37.7394C35.8991 37.3825 36.0854 36.8393 36.096 36.1098L36.1991 28.3231L38.1418 28.7671C38.5118 28.8464 38.8145 28.812 39.0497 28.664C39.2849 28.516 39.4475 28.2517 39.5374 27.8711L40.2431 25.0561C40.3383 24.6808 40.3171 24.3623 40.1796 24.1006C40.0422 23.8389 39.7911 23.6314 39.4264 23.4781L33.844 21.0993C33.6854 21.0305 33.5321 20.9975 33.3841 21.0001C33.2361 21.0028 33.088 21.0385 32.94 21.1072C32.5911 21.2711 32.2568 21.4085 31.937 21.5195C31.6171 21.6305 31.2894 21.7151 30.9536 21.7733C30.618 21.8314 30.2546 21.8605 29.8634 21.8605C29.4669 21.8605 29.1008 21.8314 28.7651 21.7733C28.4294 21.7151 28.1017 21.6305 27.7819 21.5195C27.462 21.4085 27.1277 21.2711 26.7788 21.1072C26.6308 21.0385 26.4828 21.0028 26.3347 21.0001C26.1867 20.9975 26.0334 21.0305 25.8748 21.0993L20.2924 23.4781C19.933 23.6314 19.6832 23.8389 19.5431 24.1006C19.403 24.3623 19.3805 24.6808 19.4757 25.0561L20.1814 27.8711C20.2713 28.2517 20.4339 28.516 20.6691 28.664C20.9043 28.812 21.207 28.8464 21.577 28.7671L23.5277 28.3231L23.6228 36.1098C23.6334 36.8393 23.8198 37.3825 24.1819 37.7394C24.544 38.0962 25.0924 38.2746 25.8272 38.2746ZM29.8634 24.3345C29.4087 24.3345 29.003 24.2605 28.6462 24.1125C28.2894 23.9645 27.9854 23.753 27.7343 23.4781C27.4832 23.2032 27.2889 22.8728 27.1515 22.4869C27.5638 22.6455 28.0012 22.7671 28.4638 22.8517C28.9263 22.9363 29.3929 22.9786 29.8634 22.9786C30.3286 22.9786 30.7924 22.9363 31.255 22.8517C31.7175 22.7671 32.155 22.6455 32.5673 22.4869C32.4352 22.8675 32.2449 23.1953 31.9964 23.4702C31.7479 23.7451 31.444 23.9579 31.0845 24.1085C30.725 24.2592 30.318 24.3345 29.8634 24.3345Z"
|
||||
fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1,5 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="19" viewBox="0 0 22 19" fill="none">
|
||||
<path
|
||||
d="M10.8789 9.23828C12.1419 9.23828 13.3773 9.1748 14.585 9.04785C15.7927 8.9209 16.9906 8.71094 18.1787 8.41797C19.3668 8.125 20.5566 7.73112 21.748 7.23633V6.44531C21.748 5.44271 21.4974 4.69564 20.9961 4.2041C20.4948 3.71257 19.7396 3.4668 18.7305 3.4668H15.8301V2.69531C15.8301 1.77734 15.5941 1.09863 15.1221 0.65918C14.6501 0.219727 13.9746 0 13.0957 0H8.65234C7.81901 0 7.15657 0.219727 6.66504 0.65918C6.1735 1.09863 5.92773 1.77734 5.92773 2.69531V3.4668H3.01758C2.01497 3.4668 1.26139 3.71257 0.756836 4.2041C0.252279 4.69564 0 5.44271 0 6.44531V7.23633C1.19792 7.73112 2.38933 8.125 3.57422 8.41797C4.75911 8.71094 5.9554 8.9209 7.16309 9.04785C8.37077 9.1748 9.60937 9.23828 10.8789 9.23828ZM7.44141 3.4668V2.58789C7.44141 2.2168 7.54558 1.93034 7.75391 1.72852C7.96224 1.52669 8.25521 1.42578 8.63281 1.42578H13.1152C13.4993 1.42578 13.7956 1.52669 14.0039 1.72852C14.2122 1.93034 14.3164 2.2168 14.3164 2.58789V3.4668H7.44141ZM3.01758 18.9258H18.7305C19.7396 18.9258 20.4948 18.6784 20.9961 18.1836C21.4974 17.6888 21.748 16.9434 21.748 15.9473V8.83789C20.7975 9.18294 19.8617 9.47266 18.9404 9.70703C18.0192 9.94141 17.1045 10.1286 16.1963 10.2686C15.2881 10.4085 14.3815 10.5111 13.4766 10.5762V11.3672C13.4766 12.0768 13.1153 12.4316 12.3926 12.4316H9.35547C8.63932 12.4316 8.28125 12.0768 8.28125 11.3672V10.5762C7.36979 10.5111 6.45996 10.4085 5.55176 10.2686C4.64355 10.1286 3.72884 9.94141 2.80762 9.70703C1.88639 9.47266 0.95052 9.18294 0 8.83789V15.9473C0 16.9434 0.252279 17.6888 0.756836 18.1836C1.26139 18.6784 2.01497 18.9258 3.01758 18.9258Z"
|
||||
fill="white" style="fill:white;fill:white;" />
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.7 KiB |
@@ -1,6 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="19" viewBox="0 0 22 19" fill="none">
|
||||
<path
|
||||
opacity="0.4"
|
||||
d="M10.8789 9.23828C12.1419 9.23828 13.3773 9.1748 14.585 9.04785C15.7927 8.9209 16.9906 8.71094 18.1787 8.41797C19.3668 8.125 20.5566 7.73112 21.748 7.23633V6.44531C21.748 5.44271 21.4974 4.69564 20.9961 4.2041C20.4948 3.71257 19.7396 3.4668 18.7305 3.4668H15.8301V2.69531C15.8301 1.77734 15.5941 1.09863 15.1221 0.65918C14.6501 0.219727 13.9746 0 13.0957 0H8.65234C7.81901 0 7.15657 0.219727 6.66504 0.65918C6.1735 1.09863 5.92773 1.77734 5.92773 2.69531V3.4668H3.01758C2.01497 3.4668 1.26139 3.71257 0.756836 4.2041C0.252279 4.69564 0 5.44271 0 6.44531V7.23633C1.19792 7.73112 2.38933 8.125 3.57422 8.41797C4.75911 8.71094 5.9554 8.9209 7.16309 9.04785C8.37077 9.1748 9.60937 9.23828 10.8789 9.23828ZM7.44141 3.4668V2.58789C7.44141 2.2168 7.54558 1.93034 7.75391 1.72852C7.96224 1.52669 8.25521 1.42578 8.63281 1.42578H13.1152C13.4993 1.42578 13.7956 1.52669 14.0039 1.72852C14.2122 1.93034 14.3164 2.2168 14.3164 2.58789V3.4668H7.44141ZM3.01758 18.9258H18.7305C19.7396 18.9258 20.4948 18.6784 20.9961 18.1836C21.4974 17.6888 21.748 16.9434 21.748 15.9473V8.83789C20.7975 9.18294 19.8617 9.47266 18.9404 9.70703C18.0192 9.94141 17.1045 10.1286 16.1963 10.2686C15.2881 10.4085 14.3815 10.5111 13.4766 10.5762V11.3672C13.4766 12.0768 13.1153 12.4316 12.3926 12.4316H9.35547C8.63932 12.4316 8.28125 12.0768 8.28125 11.3672V10.5762C7.36979 10.5111 6.45996 10.4085 5.55176 10.2686C4.64355 10.1286 3.72884 9.94141 2.80762 9.70703C1.88639 9.47266 0.95052 9.18294 0 8.83789V15.9473C0 16.9434 0.252279 17.6888 0.756836 18.1836C1.26139 18.6784 2.01497 18.9258 3.01758 18.9258Z"
|
||||
fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;" />
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.8 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="13" height="14" viewBox="0 0 13 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1.30392 14H11.5294C11.9361 14 12.2551 13.9079 12.4864 13.7236C12.7177 13.5393 12.8333 13.2862 12.8333 12.9644C12.8333 12.466 12.6847 11.9391 12.3873 11.3837C12.0899 10.8283 11.6629 10.3079 11.1062 9.82256C10.5496 9.3372 9.87602 8.94268 9.08551 8.639C8.29505 8.33533 7.40417 8.18349 6.41287 8.18349C5.42667 8.18349 4.53832 8.33533 3.74783 8.639C2.95734 8.94268 2.2825 9.3372 1.72332 9.82256C1.16413 10.3079 0.73711 10.8283 0.442267 11.3837C0.147422 11.9391 0 12.466 0 12.9644C0 13.2862 0.11565 13.5393 0.346951 13.7236C0.578252 13.9079 0.897243 14 1.30392 14ZM6.4205 6.78975C6.96444 6.78975 7.46769 6.63791 7.93027 6.33424C8.39288 6.03057 8.76526 5.61919 9.0474 5.1001C9.32954 4.58101 9.47061 3.99702 9.47061 3.34815C9.47061 2.70967 9.32954 2.13737 9.0474 1.63125C8.76526 1.12514 8.39288 0.726734 7.93027 0.436039C7.46769 0.145346 6.96444 0 6.4205 0C5.87656 0 5.37329 0.147942 4.91069 0.443825C4.44809 0.73971 4.07572 1.14201 3.79359 1.65072C3.51145 2.15943 3.37038 2.73044 3.37038 3.36373C3.37038 4.00741 3.51145 4.58749 3.79359 5.10399C4.07572 5.62049 4.44809 6.03057 4.91069 6.33424C5.37329 6.63791 5.87656 6.78975 6.4205 6.78975Z" fill="white" fill-opacity="0.7" style="fill:white;fill:white;fill-opacity:0.7;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.989399 6.72388C1.63554 6.72388 1.9788 6.37052 1.9788 5.72438V3.44271C1.9788 2.4634 2.49369 1.9788 3.43261 1.9788H5.76477C6.4109 1.9788 6.76426 1.62544 6.76426 0.989399C6.76426 0.353357 6.4109 0 5.76477 0H3.31146C1.13074 0 0 1.12065 0 3.27108V5.72438C0 6.37052 0.353357 6.72388 0.989399 6.72388ZM19.0106 6.72388C19.6567 6.72388 20 6.37052 20 5.72438V3.27108C20 1.12065 18.8693 0 16.6885 0H14.2352C13.5891 0 13.2357 0.353357 13.2357 0.989399C13.2357 1.62544 13.5891 1.9788 14.2352 1.9788H16.5674C17.4962 1.9788 18.0212 2.4634 18.0212 3.44271V5.72438C18.0212 6.37052 18.3746 6.72388 19.0106 6.72388ZM9.19737 11.6911H9.28824C10.318 11.6911 10.8935 11.1257 10.8935 10.0858V6.9258C10.8935 6.51186 10.6209 6.22918 10.1969 6.22918C9.77284 6.22918 9.50025 6.51186 9.50025 6.9258V10.1464C9.50025 10.2373 9.44977 10.2877 9.35891 10.2877H9.04594C8.6522 10.2877 8.34932 10.5805 8.34932 10.9642C8.34932 11.4286 8.67239 11.6911 9.19737 11.6911ZM6.20899 9.32862C6.70368 9.32862 7.05704 8.97526 7.05704 8.47047V7.09743C7.05704 6.59263 6.70368 6.23927 6.20899 6.23927C5.71429 6.23927 5.36093 6.60273 5.36093 7.09743V8.47047C5.36093 8.97526 5.71429 9.32862 6.20899 9.32862ZM13.7708 9.32862C14.2554 9.32862 14.6088 8.97526 14.6088 8.47047V7.09743C14.6088 6.60273 14.2554 6.23927 13.7708 6.23927C13.266 6.23927 12.9127 6.59263 12.9127 7.09743V8.47047C12.9127 8.97526 13.266 9.32862 13.7708 9.32862ZM9.94447 15.0227C11.1661 15.0227 12.4079 14.4977 13.2862 13.6194C13.4175 13.4881 13.4881 13.3165 13.4881 13.1045C13.4881 12.7007 13.1752 12.4079 12.7814 12.4079C12.5795 12.4079 12.4281 12.4886 12.2362 12.7007C11.6911 13.2559 10.8228 13.6396 9.94447 13.6396C9.10651 13.6396 8.24836 13.2761 7.6628 12.6906C7.49117 12.529 7.34982 12.4079 7.10752 12.4079C6.70368 12.4079 6.40081 12.7007 6.40081 13.1045C6.40081 13.2862 6.47148 13.4478 6.60273 13.6093C7.4104 14.5381 8.69258 15.0227 9.94447 15.0227ZM3.31146 20H5.76477C6.4109 20 6.76426 19.6466 6.76426 19.0106C6.76426 18.3746 6.4109 18.0212 5.76477 18.0212H3.43261C2.49369 18.0212 1.9788 17.5366 1.9788 16.5472V14.2655C1.9788 13.6194 1.62544 13.266 0.989399 13.266C0.343261 13.266 0 13.6194 0 14.2655V16.7188C0 18.8794 1.13074 20 3.31146 20ZM14.2352 20H16.6885C18.8693 20 20 18.8794 20 16.7188V14.2655C20 13.6194 19.6466 13.266 19.0106 13.266C18.3645 13.266 18.0212 13.6295 18.0212 14.2655V16.5472C18.0212 17.5366 17.4962 18.0212 16.5674 18.0212H14.2352C13.5891 18.0212 13.2357 18.3746 13.2357 19.0106C13.2357 19.6466 13.5891 20 14.2352 20Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.6 KiB |
@@ -1,5 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14.991 7.75C15.4102 7.75 15.7539 8.09061 15.7129 8.50777C15.6059 9.59638 15.2694 10.653 14.7222 11.6068C14.0487 12.7806 13.0797 13.7576 11.9114 14.4406C10.7431 15.1236 9.41632 15.4887 8.06309 15.4997C6.70985 15.5108 5.37732 15.1672 4.19808 14.5034C3.01883 13.8395 2.03397 12.8784 1.34149 11.7157C0.649016 10.553 0.273059 9.22927 0.251027 7.87617C0.228995 6.52307 0.561657 5.18779 1.21591 4.00318C1.74751 3.04065 2.47637 2.20486 3.35162 1.54878C3.68702 1.29737 4.15648 1.41452 4.37389 1.7729C4.59131 2.13127 4.4735 2.59462 4.14419 2.85396C3.49269 3.36705 2.94806 4.00667 2.54468 4.73705C2.01857 5.68964 1.75106 6.76338 1.76878 7.85146C1.78649 8.93953 2.08881 10.004 2.64566 10.939C3.20251 11.8739 3.99446 12.6468 4.94274 13.1806C5.89101 13.7145 6.96255 13.9907 8.05073 13.9818C9.13891 13.973 10.2058 13.6793 11.1453 13.1301C12.0847 12.5809 12.864 11.7953 13.4055 10.8514C13.8208 10.1277 14.0851 9.33026 14.1859 8.50712C14.2368 8.09105 14.5719 7.75 14.991 7.75Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
<path d="M5.38877 1.28223C5.22853 0.885331 5.41967 0.429643 5.83058 0.309829C6.62012 0.0796145 7.4429 -0.0239269 8.26812 0.00463931C9.09333 0.0332055 9.90699 0.193395 10.6787 0.477656C11.0804 0.625597 11.2395 1.09341 11.0522 1.47828C10.8649 1.86314 10.4021 2.01823 9.99687 1.88037C9.42327 1.68523 8.82281 1.57477 8.2145 1.55371C7.60618 1.53265 6.99952 1.60133 6.4138 1.75634C6.00002 1.86584 5.54901 1.67912 5.38877 1.28223Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
<path d="M12.3148 2.26972C12.5795 1.93342 13.07 1.87283 13.3782 2.16986C14.1083 2.87358 14.6934 3.71392 15.0999 4.64294C15.2715 5.03505 15.0445 5.47397 14.6372 5.60556C14.2299 5.73716 13.7974 5.51085 13.616 5.12314C13.3164 4.48267 12.9095 3.89808 12.4128 3.39483C12.1121 3.09019 12.05 2.60602 12.3148 2.26972Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="12" viewBox="0 0 16 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.6014 3.85225C9.47925 3.85225 9.37746 3.81315 9.29603 3.73493C9.21459 3.65671 9.17388 3.56111 9.17388 3.44813C9.17388 3.33515 9.21459 3.24063 9.29603 3.16459C9.37746 3.08854 9.47925 3.05052 9.6014 3.05052H13.3062C13.4238 3.05052 13.5234 3.08854 13.6048 3.16459C13.6862 3.24063 13.7269 3.33515 13.7269 3.44813C13.7269 3.56111 13.6862 3.65671 13.6048 3.73493C13.5234 3.81315 13.4238 3.85225 13.3062 3.85225H9.6014ZM9.6014 6.40739C9.47925 6.40739 9.37746 6.36828 9.29603 6.29007C9.21459 6.21185 9.17388 6.11408 9.17388 5.99675C9.17388 5.88811 9.21459 5.79577 9.29603 5.71973C9.37746 5.64368 9.47925 5.60566 9.6014 5.60566H13.3062C13.4238 5.60566 13.5234 5.64368 13.6048 5.71973C13.6862 5.79577 13.7269 5.88811 13.7269 5.99675C13.7269 6.11408 13.6862 6.21185 13.6048 6.29007C13.5234 6.36828 13.4238 6.40739 13.3062 6.40739H9.6014ZM9.6014 8.95603C9.47925 8.95603 9.37746 8.91801 9.29603 8.84196C9.21459 8.76591 9.17388 8.67356 9.17388 8.5649C9.17388 8.45192 9.21459 8.35525 9.29603 8.27488C9.37746 8.19448 9.47925 8.15427 9.6014 8.15427H13.3062C13.4238 8.15427 13.5234 8.19448 13.6048 8.27488C13.6862 8.35525 13.7269 8.45192 13.7269 8.5649C13.7269 8.67356 13.6862 8.76591 13.6048 8.84196C13.5234 8.91801 13.4238 8.95603 13.3062 8.95603H9.6014ZM2.53096 9.00162C2.4224 9.00162 2.33984 8.96902 2.28329 8.90384C2.22675 8.83869 2.19848 8.75831 2.19848 8.66268C2.19848 8.50627 2.25841 8.30748 2.37829 8.0663C2.49817 7.82512 2.68137 7.58177 2.92791 7.33623C3.17445 7.09074 3.48431 6.88542 3.85752 6.72029C4.23071 6.55515 4.67063 6.47258 5.17728 6.47258C5.68392 6.47258 6.12498 6.55515 6.50044 6.72029C6.87589 6.88542 7.18688 7.09074 7.4334 7.33623C7.67997 7.58177 7.8632 7.82512 7.98308 8.0663C8.10292 8.30748 8.16283 8.50627 8.16283 8.66268C8.16283 8.75831 8.13458 8.83869 8.07806 8.90384C8.02151 8.96902 7.93894 9.00162 7.83036 9.00162H2.53096ZM5.17728 6.0163C4.77015 6.0163 4.42071 5.86855 4.12893 5.57306C3.83716 5.27757 3.69127 4.90604 3.69127 4.45845C3.69127 4.18034 3.758 3.92613 3.89144 3.69582C4.02489 3.46551 4.2047 3.28083 4.43088 3.14177C4.65706 3.00272 4.90586 2.93319 5.17728 2.93319C5.45322 2.93319 5.70315 3.00272 5.92707 3.14177C6.15099 3.28083 6.32967 3.46551 6.46312 3.69582C6.59656 3.92613 6.66328 4.18034 6.66328 4.45845C6.66328 4.90604 6.51853 5.27757 6.22902 5.57306C5.93951 5.86855 5.58893 6.0163 5.17728 6.0163ZM2.13063 12H13.8694C14.5841 12 15.1179 11.8316 15.4707 11.4949C15.8236 11.1581 16 10.6551 16 9.98586V2.02064C16 1.35144 15.8236 0.847367 15.4707 0.50842C15.1179 0.169473 14.5841 0 13.8694 0H2.13063C1.42041 0 0.887758 0.168387 0.532656 0.505161C0.177552 0.841934 0 1.34709 0 2.02064V9.98586C0 10.6551 0.177552 11.1581 0.532656 11.4949C0.887758 11.8316 1.42041 12 2.13063 12Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.8 KiB |
@@ -1,13 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60" fill="none">
|
||||
<g >
|
||||
<path fill-rule="evenodd" clip-rule="evenodd"
|
||||
d="M17.0005 28.666C16.9924 28.4154 17.0894 28.1769 17.2915 27.9506L20.2868 24.555C20.497 24.3206 20.7295 24.2054 20.9841 24.2094C21.2388 24.2135 21.4672 24.3287 21.6693 24.555L24.6768 27.9506C24.8708 28.1688 24.9678 28.4013 24.9678 28.6479C24.9678 28.8944 24.8829 29.1067 24.7131 29.2845C24.5434 29.4624 24.2968 29.5513 23.9734 29.5513H21.9361V34.8629C21.9361 35.1297 21.8451 35.354 21.6632 35.536C21.4813 35.7178 21.261 35.8088 21.0023 35.8088C20.7275 35.8088 20.4991 35.7178 20.3172 35.536C20.1353 35.354 20.0443 35.1297 20.0443 34.8629V29.5513H17.9827C17.6836 29.5513 17.4471 29.4664 17.2733 29.2966C17.0995 29.1269 17.0086 28.9167 17.0005 28.666Z"
|
||||
fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;" />
|
||||
<path fill-rule="evenodd" clip-rule="evenodd"
|
||||
d="M36.0005 31.3521C35.9924 31.6027 36.0894 31.8412 36.2915 32.0675L39.2868 35.4631C39.497 35.6975 39.7295 35.8127 39.9841 35.8087C40.2388 35.8046 40.4672 35.6894 40.6693 35.4631L43.6768 32.0675C43.8708 31.8493 43.9678 31.6168 43.9678 31.3702C43.9678 31.1237 43.8829 30.9114 43.7131 30.7336C43.5434 30.5557 43.2968 30.4668 42.9734 30.4668H40.9361V25.1552C40.9361 24.8884 40.8451 24.6641 40.6632 24.4821C40.4813 24.3003 40.261 24.2093 40.0023 24.2093C39.7275 24.2093 39.4991 24.3003 39.3172 24.4821C39.1353 24.6641 39.0443 24.8884 39.0443 25.1552V30.4668H36.9827C36.6836 30.4668 36.4471 30.5517 36.2733 30.7215C36.0995 30.8912 36.0086 31.1014 36.0005 31.3521Z"
|
||||
fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;" />
|
||||
<path fill-rule="evenodd" clip-rule="evenodd"
|
||||
d="M25.479 36.5586H34.9504C35.5486 36.5586 35.9671 36.4744 36.2059 36.306C36.4448 36.1376 36.5642 35.8875 36.5642 35.5556C36.5642 35.073 36.4171 34.5627 36.123 34.0248C35.8289 33.4869 35.4066 32.9829 34.8561 32.5129C34.3056 32.0428 33.6395 31.6607 32.8578 31.3666C32.076 31.0725 31.195 30.9255 30.2147 30.9255C29.2394 30.9255 28.3609 31.0725 27.5791 31.3666C26.7974 31.6607 26.13 32.0428 25.577 32.5129C25.024 32.9829 24.6017 33.4869 24.3101 34.0248C24.0185 34.5627 23.8727 35.073 23.8727 35.5556C23.8727 35.8875 23.9921 36.1376 24.2309 36.306C24.4697 36.4744 24.8857 36.5586 25.479 36.5586ZM30.2222 29.5757C30.7601 29.5757 31.2578 29.4286 31.7153 29.1345C32.1728 28.8405 32.541 28.442 32.82 27.9393C33.0991 27.4366 33.2386 26.871 33.2386 26.2426C33.2386 25.6242 33.0991 25.07 32.82 24.5798C32.541 24.0897 32.1728 23.7038 31.7153 23.4223C31.2578 23.1408 30.7601 23 30.2222 23C29.6843 23 29.1866 23.1433 28.7291 23.4298C28.2716 23.7164 27.9034 24.106 27.6243 24.5987C27.3453 25.0914 27.2058 25.6444 27.2058 26.2577C27.2058 26.8811 27.3453 27.4429 27.6243 27.9431C27.9034 28.4433 28.2716 28.8405 28.7291 29.1345C29.1866 29.4286 29.6843 29.5757 30.2222 29.5757Z"
|
||||
fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.9 KiB |
@@ -1,7 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60" fill="none">
|
||||
<g opacity="0.4">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.0005 28.666C16.9924 28.4154 17.0894 28.1769 17.2915 27.9506L20.2868 24.555C20.497 24.3206 20.7295 24.2054 20.9841 24.2094C21.2388 24.2135 21.4672 24.3287 21.6693 24.555L24.6768 27.9506C24.8708 28.1688 24.9678 28.4013 24.9678 28.6479C24.9678 28.8944 24.8829 29.1067 24.7131 29.2845C24.5434 29.4624 24.2968 29.5513 23.9734 29.5513H21.9361V34.8629C21.9361 35.1297 21.8451 35.354 21.6632 35.536C21.4813 35.7178 21.261 35.8088 21.0023 35.8088C20.7275 35.8088 20.4991 35.7178 20.3172 35.536C20.1353 35.354 20.0443 35.1297 20.0443 34.8629V29.5513H17.9827C17.6836 29.5513 17.4471 29.4664 17.2733 29.2966C17.0995 29.1269 17.0086 28.9167 17.0005 28.666Z" fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;" />
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M36.0005 31.3521C35.9924 31.6027 36.0894 31.8412 36.2915 32.0675L39.2868 35.4631C39.497 35.6975 39.7295 35.8127 39.9841 35.8087C40.2388 35.8046 40.4672 35.6894 40.6693 35.4631L43.6768 32.0675C43.8708 31.8493 43.9678 31.6168 43.9678 31.3702C43.9678 31.1237 43.8829 30.9114 43.7131 30.7336C43.5434 30.5557 43.2968 30.4668 42.9734 30.4668H40.9361V25.1552C40.9361 24.8884 40.8451 24.6641 40.6632 24.4821C40.4813 24.3003 40.261 24.2093 40.0023 24.2093C39.7275 24.2093 39.4991 24.3003 39.3172 24.4821C39.1353 24.6641 39.0443 24.8884 39.0443 25.1552V30.4668H36.9827C36.6836 30.4668 36.4471 30.5517 36.2733 30.7215C36.0995 30.8912 36.0086 31.1014 36.0005 31.3521Z" fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;" />
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.479 36.5586H34.9504C35.5486 36.5586 35.9671 36.4744 36.2059 36.306C36.4448 36.1376 36.5642 35.8875 36.5642 35.5556C36.5642 35.073 36.4171 34.5627 36.123 34.0248C35.8289 33.4869 35.4066 32.9829 34.8561 32.5129C34.3056 32.0428 33.6395 31.6607 32.8578 31.3666C32.076 31.0725 31.195 30.9255 30.2147 30.9255C29.2394 30.9255 28.3609 31.0725 27.5791 31.3666C26.7974 31.6607 26.13 32.0428 25.577 32.5129C25.024 32.9829 24.6017 33.4869 24.3101 34.0248C24.0185 34.5627 23.8727 35.073 23.8727 35.5556C23.8727 35.8875 23.9921 36.1376 24.2309 36.306C24.4697 36.4744 24.8857 36.5586 25.479 36.5586ZM30.2222 29.5757C30.7601 29.5757 31.2578 29.4286 31.7153 29.1345C32.1728 28.8405 32.541 28.442 32.82 27.9393C33.0991 27.4366 33.2386 26.871 33.2386 26.2426C33.2386 25.6242 33.0991 25.07 32.82 24.5798C32.541 24.0897 32.1728 23.7038 31.7153 23.4223C31.2578 23.1408 30.7601 23 30.2222 23C29.6843 23 29.1866 23.1433 28.7291 23.4298C28.2716 23.7164 27.9034 24.106 27.6243 24.5987C27.3453 25.0914 27.2058 25.6444 27.2058 26.2577C27.2058 26.8811 27.3453 27.4429 27.6243 27.9431C27.9034 28.4433 28.2716 28.8405 28.7291 29.1345C29.1866 29.4286 29.6843 29.5757 30.2222 29.5757Z" fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.9 KiB |
@@ -1,20 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="21" viewBox="0 0 24 21" fill="none">
|
||||
<g clip-path="url(#clip0_11_2217)">
|
||||
<path
|
||||
d="M13.6621 20.5156C15.0228 20.5156 16.3037 20.2552 17.5049 19.7344C18.706 19.2135 19.7656 18.4958 20.6836 17.5811C21.6015 16.6664 22.3209 15.6068 22.8418 14.4023C23.3626 13.1979 23.623 11.9154 23.623 10.5547C23.623 9.19401 23.361 7.91309 22.8369 6.71191C22.3128 5.51074 21.5918 4.45117 20.6738 3.5332C19.7559 2.61524 18.6963 1.89584 17.4951 1.375C16.294 0.854167 15.013 0.59375 13.6523 0.59375C12.3828 0.59375 11.1832 0.821615 10.0537 1.27734C8.92415 1.73307 7.91179 2.36621 7.0166 3.17675C6.12142 3.9873 5.39063 4.92968 4.82422 6.0039C4.25781 7.07812 3.90625 8.23372 3.76953 9.4707C4.16016 9.39258 4.55729 9.35351 4.96094 9.35351C5.95703 9.35351 6.87988 9.56836 7.72949 9.99804C8.5791 10.4277 9.29851 11.0072 9.8877 11.7363C10.4769 12.4655 10.8757 13.2826 11.084 14.1875C11.4681 14.0898 11.875 14.015 12.3047 13.9629C12.7344 13.9108 13.1836 13.8848 13.6523 13.8848C14.6354 13.8848 15.5339 13.9906 16.3477 14.2022C17.1615 14.4137 17.8646 14.6904 18.457 15.0322C19.0495 15.374 19.5052 15.737 19.8242 16.1211C19.3359 16.6745 18.7663 17.1579 18.1152 17.5713C17.4642 17.9847 16.7611 18.3053 16.0059 18.5332C15.2506 18.7611 14.4661 18.875 13.6523 18.875C13.151 18.875 12.64 18.8262 12.1191 18.7285C11.5983 18.6308 11.1068 18.4876 10.6445 18.2988C10.5794 18.4746 10.4671 18.6911 10.3076 18.9482C10.1481 19.2054 9.96422 19.4544 9.75586 19.6953C10.3614 19.9622 10.9912 20.1657 11.6455 20.3057C12.2998 20.4456 12.972 20.5156 13.6621 20.5156ZM13.6523 12.2246C13.0273 12.2181 12.4609 12.0538 11.9531 11.7315C11.4453 11.4092 11.0433 10.9714 10.7471 10.418C10.4508 9.86459 10.3027 9.23959 10.3027 8.54297C10.2962 7.88542 10.4427 7.2832 10.7422 6.73632C11.0417 6.18945 11.4453 5.75163 11.9531 5.42285C12.4609 5.09407 13.0273 4.92968 13.6523 4.92968C14.2773 4.92968 14.8421 5.09407 15.3467 5.42285C15.8512 5.75163 16.2532 6.18945 16.5527 6.73632C16.8522 7.2832 17.002 7.88542 17.002 8.54297C17.002 9.23959 16.8522 9.86784 16.5527 10.4277C16.2532 10.9876 15.8512 11.4287 15.3467 11.751C14.8421 12.0733 14.2773 12.2311 13.6523 12.2246Z"
|
||||
fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;" />
|
||||
<path
|
||||
d="M4.96094 20.6231C5.63151 20.6231 6.26628 20.4929 6.86523 20.2324C7.46419 19.972 7.99316 19.6139 8.45215 19.1582C8.91113 18.7025 9.27083 18.1751 9.53125 17.5762C9.79167 16.9772 9.92188 16.3392 9.92188 15.6621C9.92188 14.9785 9.7933 14.3372 9.53613 13.7383C9.27897 13.1394 8.92253 12.612 8.4668 12.1563C8.01107 11.7006 7.48372 11.3441 6.88477 11.0869C6.28581 10.8298 5.64453 10.7012 4.96094 10.7012C4.28385 10.7012 3.64583 10.8298 3.04688 11.0869C2.44792 11.3441 1.92057 11.7022 1.46484 12.1611C1.00911 12.6201 0.651042 13.1475 0.390625 13.7432C0.130208 14.3389 0 14.9785 0 15.6621C0 16.3457 0.130208 16.987 0.390625 17.5859C0.651042 18.1849 1.00911 18.7123 1.46484 19.168C1.92057 19.6237 2.44792 19.9802 3.04688 20.2373C3.64583 20.4945 4.28385 20.6231 4.96094 20.6231Z"
|
||||
fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;" />
|
||||
<path
|
||||
d="M4.96094 18.7676C4.77865 18.7676 4.63379 18.7123 4.52637 18.6016C4.41894 18.4909 4.36523 18.3477 4.36523 18.1719V16.2578H2.45117C2.27539 16.2578 2.13216 16.2041 2.02148 16.0967C1.91081 15.9893 1.85547 15.8444 1.85547 15.6621C1.85547 15.4798 1.91081 15.335 2.02148 15.2275C2.13216 15.1201 2.27539 15.0664 2.45117 15.0664H4.36523V13.1523C4.36523 12.9766 4.41894 12.8334 4.52637 12.7227C4.63379 12.612 4.77865 12.5566 4.96094 12.5566C5.14323 12.5566 5.28809 12.612 5.39551 12.7227C5.50293 12.8334 5.55664 12.9766 5.55664 13.1523V15.0664H7.4707C7.64648 15.0664 7.78972 15.1201 7.90039 15.2275C8.01107 15.335 8.06641 15.4798 8.06641 15.6621C8.06641 15.8444 8.01107 15.9893 7.90039 16.0967C7.78972 16.2041 7.64648 16.2578 7.4707 16.2578H5.55664V18.1719C5.55664 18.3477 5.50293 18.4909 5.39551 18.6016C5.28809 18.7123 5.14323 18.7676 4.96094 18.7676Z"
|
||||
fill="#548DE8"
|
||||
style="fill:#548DE8;fill:color(display-p3 0.3294 0.5529 0.9098);fill-opacity:1;" />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_11_2217">
|
||||
<rect width="23.623" height="20.127" fill="white"
|
||||
style="fill:white;fill:white;fill-opacity:1;" transform="translate(0 0.496094)" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.3 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.6122 14H2.38784C1.59189 14 0.99493 13.8036 0.596959 13.4107C0.198986 13.0178 0 12.4284 0 11.6426V2.35742C0 1.57161 0.198986 0.982257 0.596959 0.589355C0.99493 0.196452 1.59189 0 2.38784 0H11.6122C12.4081 0 13.0051 0.196452 13.403 0.589355C13.801 0.982257 14 1.57161 14 2.35742V11.6426C14 12.4284 13.801 13.0178 13.403 13.4107C13.0051 13.8036 12.4081 14 11.6122 14ZM6.73765 11.3651C6.80862 11.4335 6.89734 11.4677 7.00381 11.4677C7.11027 11.4677 7.19899 11.4335 7.26997 11.3651C7.34095 11.2966 7.37643 11.2066 7.37643 11.0951V10.5476C7.98478 10.4867 8.49682 10.2852 8.91255 9.943C9.32827 9.60079 9.53613 9.13309 9.53613 8.53992C9.53613 8.00762 9.36375 7.57923 9.01899 7.25477C8.67429 6.93031 8.16225 6.70724 7.4829 6.58556L7.37643 6.56276V4.38024C7.65528 4.43094 7.88976 4.5374 8.07987 4.69963C8.26998 4.86186 8.40558 5.07479 8.48667 5.33842C8.5729 5.59697 8.73261 5.72625 8.96581 5.72625C9.10265 5.72625 9.21419 5.68316 9.30042 5.59697C9.3866 5.51079 9.42968 5.39925 9.42968 5.26237C9.42968 5.22181 9.42587 5.18125 9.41824 5.14069C9.41066 5.10014 9.40178 5.05958 9.39161 5.01902C9.28518 4.59824 9.0482 4.24969 8.68065 3.97339C8.3131 3.69709 7.87836 3.53106 7.37643 3.47529V2.93536C7.37643 2.82383 7.34095 2.73385 7.26997 2.6654C7.19899 2.59696 7.11027 2.56274 7.00381 2.56274C6.89734 2.56274 6.80862 2.59696 6.73765 2.6654C6.66667 2.73385 6.63118 2.82383 6.63118 2.93536V3.47529C6.03803 3.5412 5.55007 3.74779 5.1673 4.09507C4.78454 4.44234 4.59316 4.88468 4.59316 5.42206C4.59316 5.9189 4.76046 6.32067 5.09506 6.62739C5.42966 6.93411 5.92396 7.16605 6.57796 7.32321L6.63118 7.33842V9.65021C6.28137 9.59954 6.00381 9.48294 5.79848 9.30041C5.59316 9.11788 5.45755 8.89735 5.39164 8.63882C5.34601 8.50192 5.28264 8.40178 5.20153 8.33839C5.12041 8.27506 5.02155 8.24339 4.90495 8.24339C4.77313 8.24339 4.66414 8.28648 4.57795 8.37266C4.49177 8.45883 4.44867 8.57037 4.44867 8.70727C4.44867 8.74781 4.45248 8.78836 4.46008 8.8289C4.46769 8.86945 4.47656 8.91002 4.4867 8.95061C4.59823 9.40689 4.85171 9.77189 5.24715 10.0456C5.64259 10.3194 6.10393 10.4817 6.63118 10.5323V11.0951C6.63118 11.2066 6.66667 11.2966 6.73765 11.3651ZM6.63118 6.36503V4.38024C6.30165 4.436 6.04183 4.55514 5.85172 4.73766C5.6616 4.92017 5.56655 5.13056 5.56655 5.36883C5.56655 5.60204 5.64766 5.79722 5.80989 5.95439C5.97212 6.11155 6.22814 6.24336 6.57796 6.34983L6.63118 6.36503ZM7.37643 7.52093V9.65021C7.77692 9.60457 8.07476 9.48543 8.26996 9.29278C8.46515 9.10013 8.56275 8.86693 8.56275 8.59319C8.56275 8.34478 8.48797 8.13692 8.3384 7.9696C8.18884 7.8023 7.92395 7.66795 7.54373 7.56656L7.37643 7.52093Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.7 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.08658 14.6297C8.64738 14.6297 10.1635 14.1092 11.3949 13.1506L16.0404 17.7938C16.3874 18.1288 16.9404 18.1192 17.2756 17.7723C17.6025 17.434 17.6025 16.8976 17.2756 16.5592L12.6301 11.9161C15.0099 8.85411 14.4558 4.44359 11.3922 2.06492C8.32865 -0.313749 3.91591 0.240161 1.53603 3.30215C-0.843858 6.36414 -0.289665 10.7747 2.77389 13.1533C4.00725 14.111 5.52476 14.6305 7.08658 14.6297ZM3.35396 3.87924C5.41545 1.81877 8.75779 1.81873 10.8193 3.87917C12.8808 5.93961 12.8809 9.28024 10.8194 11.3407C8.7579 13.4012 5.41557 13.4012 3.35404 11.3408C3.354 11.3408 3.354 11.3408 3.35396 11.3407C1.29247 9.29529 1.28033 5.96684 3.3268 3.9064C3.33584 3.89732 3.34488 3.88828 3.35396 3.87924Z" fill="white" fill-opacity="0.49" style="fill:white;fill:white;fill-opacity:0.49;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 886 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.0036 6.7966C8.93279 6.7966 9.84165 6.7499 10.7302 6.6565C11.6187 6.5631 12.5 6.40864 13.3741 6.1931C14.2482 5.97756 15.1235 5.68779 16 5.32377V4.74181C16 4.0042 15.8156 3.45458 15.4468 3.09296C15.078 2.73133 14.5224 2.55052 13.78 2.55052H11.6462V1.98294C11.6462 1.30759 11.4726 0.808264 11.1253 0.484959C10.7781 0.161653 10.2811 0 9.6345 0H6.36553C5.75244 0 5.26509 0.161653 4.90347 0.484959C4.54184 0.808264 4.36103 1.30759 4.36103 1.98294V2.55052H2.22003C1.48242 2.55052 0.928006 2.73133 0.556804 3.09296C0.185601 3.45458 0 4.0042 0 4.74181V5.32377C0.88131 5.68779 1.75783 5.97756 2.62955 6.1931C3.50128 6.40864 4.38139 6.5631 5.26988 6.6565C6.15837 6.7499 7.06961 6.7966 8.0036 6.7966ZM5.47464 2.55052V1.90391C5.47464 1.6309 5.55128 1.42015 5.70455 1.27167C5.85782 1.12319 6.07336 1.04895 6.35116 1.04895H9.64885C9.93146 1.04895 10.1494 1.12319 10.3027 1.27167C10.4559 1.42015 10.5326 1.6309 10.5326 1.90391V2.55052H5.47464ZM2.22003 13.9237H13.78C14.5224 13.9237 15.078 13.7417 15.4468 13.3777C15.8156 13.0136 16 12.4652 16 11.7324V6.50203C15.3007 6.75589 14.6122 6.96903 13.9344 7.14146C13.2567 7.31389 12.5838 7.45161 11.9156 7.55461C11.2475 7.65756 10.5805 7.73299 9.91473 7.78091V8.36285C9.91473 8.8849 9.6489 9.14593 9.11723 9.14593H6.88282C6.35595 9.14593 6.09251 8.8849 6.09251 8.36285V7.78091C5.42195 7.73299 4.75259 7.65756 4.08443 7.55461C3.41626 7.45161 2.74331 7.31389 2.06557 7.14146C1.38782 6.96903 0.699297 6.75589 0 6.50203V11.7324C0 12.4652 0.185601 13.0136 0.556804 13.3777C0.928006 13.7417 1.48242 13.9237 2.22003 13.9237Z" fill="white" fill-opacity="0.7" style="fill:white;fill:white;fill-opacity:0.7;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.7 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="117" height="125" viewBox="0 0 117 125" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M27.5481 62.927C32.2636 62.927 36.6954 63.8256 40.8436 65.6226C44.9918 67.4193 48.6436 69.9011 51.799 73.0681C54.9546 76.2348 57.4186 79.8997 59.1911 84.0629C60.9639 88.2261 61.8503 92.6739 61.8503 97.4062C61.8503 100.466 61.4514 103.437 60.6538 106.32C59.8562 109.202 58.7127 111.906 57.2235 114.432H100.513C106.009 114.432 110.13 113.035 112.878 110.242C115.626 107.449 117 103.277 117 97.7265V49.2635H78.4965C71.7956 49.2635 68.4451 45.901 68.4451 39.176V0H44.0345C38.5391 0 34.4175 1.40549 31.6697 4.21646C28.922 7.02747 27.5481 11.2084 27.5481 16.7592V62.927ZM78.656 41.9514H116.362C116.185 40.8483 115.724 39.7453 114.979 38.6422C114.234 37.5392 113.224 36.3294 111.947 35.0128L82.6446 5.07043C81.4036 3.78949 80.2159 2.7665 79.0814 2.00149C77.9468 1.23648 76.8299 0.765013 75.7306 0.587095V39.0692C75.7306 40.9907 76.7057 41.9514 78.656 41.9514ZM25.2613 125H29.835C30.6504 125 31.3595 124.769 31.9622 124.306C32.565 123.844 32.955 123.185 33.1322 122.331L34.4086 117.101C34.7632 116.994 35.1531 116.861 35.5786 116.701C36.004 116.54 36.3941 116.354 36.7486 116.14L41.3222 118.969C42.0313 119.396 42.7493 119.592 43.4761 119.556C44.2029 119.521 44.8854 119.183 45.5236 118.542L48.6613 115.339C49.2286 114.734 49.5388 114.067 49.592 113.338C49.6452 112.608 49.4413 111.852 48.9804 111.07L46.2681 106.479C46.4809 106.088 46.6581 105.723 46.7999 105.386C46.9418 105.048 47.0658 104.701 47.1722 104.345L52.4372 103.063C53.2881 102.85 53.9529 102.45 54.4315 101.863C54.9103 101.276 55.1497 100.555 55.1497 99.7011V95.1643C55.1497 94.3816 54.9015 93.7056 54.4049 93.1361C53.9086 92.5669 53.2527 92.1756 52.4372 91.9621L47.2786 90.681C47.1013 90.2186 46.9329 89.8184 46.7734 89.4802C46.6138 89.1421 46.4631 88.8129 46.3213 88.4926L49.1931 83.7426C49.6186 83.0664 49.7959 82.3369 49.7249 81.5543C49.654 80.7716 49.335 80.1134 48.7677 79.5796L45.5236 76.4305C44.9209 75.8256 44.2472 75.4698 43.5027 75.3631C42.7581 75.2563 42.0668 75.4164 41.4286 75.8435L36.7486 78.7789C36.3231 78.5297 35.9154 78.343 35.5254 78.2187C35.1354 78.0941 34.7632 77.9606 34.4086 77.8181L33.1322 72.4806C32.955 71.6979 32.565 71.0576 31.9622 70.5595C31.3595 70.0614 30.6504 69.8124 29.835 69.8124H25.2613C24.4459 69.8124 23.7279 70.0703 23.1074 70.5863C22.487 71.1022 22.1059 71.7337 21.964 72.4806L20.7409 77.7646C20.28 77.9427 19.8545 78.0941 19.4645 78.2187C19.0745 78.343 18.6845 78.5297 18.2946 78.7789L13.6677 75.8435C13.065 75.4164 12.3825 75.2563 11.6202 75.3631C10.858 75.4698 10.1754 75.8256 9.5727 76.4305L6.43499 79.5796C5.86772 80.1488 5.52204 80.8159 5.39795 81.5811C5.27386 82.3459 5.42454 83.0664 5.85 83.7426L8.775 88.4926C8.63319 88.8129 8.4825 89.16 8.32294 89.5338C8.16342 89.9073 8.01273 90.2897 7.87089 90.681L2.65909 91.9621C1.84363 92.1756 1.19659 92.5759 0.717954 93.1628C0.239318 93.7502 0 94.4173 0 95.1643V99.7011C0 100.555 0.239318 101.276 0.717954 101.863C1.19659 102.45 1.84363 102.85 2.65909 103.063L7.92409 104.345C8.0659 104.701 8.21659 105.048 8.37615 105.386C8.53567 105.723 8.68634 106.088 8.82815 106.479L6.11592 111.123C5.69046 111.87 5.50432 112.617 5.55751 113.365C5.61069 114.112 5.92092 114.77 6.48819 115.339L9.5727 118.542C10.1754 119.183 10.8491 119.521 11.5936 119.556C12.3382 119.592 13.065 119.396 13.7741 118.969L18.4009 116.14C18.8618 116.389 19.2784 116.585 19.6507 116.727C20.0229 116.869 20.3863 116.994 20.7409 117.101L21.964 122.331C22.1059 123.15 22.487 123.799 23.1074 124.28C23.7279 124.76 24.4459 125 25.2613 125ZM27.6013 106.32C25.0841 106.32 22.9745 105.457 21.2727 103.731C19.5709 102.005 18.72 99.9148 18.72 97.4597C18.72 95.0043 19.5709 92.9049 21.2727 91.1614C22.9745 89.4179 25.0841 88.5283 27.6013 88.4926C29.9768 88.4573 32.042 89.3292 33.797 91.1084C35.552 92.8872 36.4295 95.0043 36.4295 97.4597C36.4295 99.9148 35.552 102.005 33.797 103.731C32.042 105.457 29.9768 106.32 27.6013 106.32Z" fill="white" fill-opacity="0.26" style="fill:white;fill:white;fill-opacity:0.26;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 6.3 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4.49164 2.13784C5.2869 0.712613 5.68468 0 6.27916 0C6.87364 0 7.27143 0.712613 8.06668 2.13784L8.27248 2.50656C8.49853 2.91156 8.61156 3.11406 8.78769 3.24768C8.96398 3.38129 9.18343 3.43089 9.62219 3.53009L10.0219 3.62039C11.5664 3.96946 12.3386 4.14401 12.5222 4.73417C12.706 5.32435 12.1795 5.9393 11.1267 7.16921L10.8542 7.4874C10.555 7.83689 10.4054 8.01166 10.3382 8.22785C10.2708 8.44404 10.2934 8.67719 10.3386 9.14349L10.3798 9.56804C10.5389 11.209 10.6187 12.0295 10.1376 12.3942C9.65657 12.759 8.93352 12.4264 7.48743 11.7613L7.11335 11.5893C6.70238 11.4003 6.49689 11.3057 6.27916 11.3057C6.06143 11.3057 5.85595 11.4003 5.44498 11.5893L5.07089 11.7613C3.6248 12.4264 2.90171 12.759 2.42071 12.3942C1.93971 12.0295 2.0193 11.209 2.17849 9.56804L2.21967 9.14349C2.26491 8.67718 2.28753 8.44404 2.22023 8.22785C2.15292 8.01166 2.00332 7.83689 1.70412 7.4874L1.43171 7.16921C0.378788 5.9393 -0.147672 5.32435 0.0360564 4.73417C0.219785 4.14401 0.992012 3.96946 2.53648 3.62039L2.93606 3.53009C3.37489 3.43089 3.59435 3.38129 3.77064 3.24768C3.94677 3.11406 4.05979 2.91156 4.28584 2.50656L4.49164 2.13784Z" fill="white" fill-opacity="0.7" style="fill:white;fill:white;fill-opacity:0.7;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1,12 +0,0 @@
|
||||
<svg width="96" height="88" viewBox="0 0 96 88" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g opacity="0.17" clip-path="url(#clip0_17_6288)">
|
||||
<path d="M12.446 80.5445H53.7077C53.1265 79.5664 52.6178 78.5418 52.1816 77.4708C51.7457 76.4001 51.3957 75.2963 51.1316 74.1595H11.8514C10.1074 74.1595 8.75972 73.6902 7.80844 72.7516C6.85717 71.8132 6.38153 70.4318 6.38153 68.6074V31.2105C6.38153 29.3862 6.85717 28.0048 7.80844 27.0663C8.75972 26.1277 10.1074 25.6584 11.8514 25.6584H67.105C68.8754 25.6584 70.2364 26.1277 71.1877 27.0663C72.1388 28.0048 72.6144 29.3862 72.6144 31.2105V42.4733C73.1959 42.4205 73.7509 42.3742 74.2793 42.3344C74.8078 42.2949 75.3362 42.2751 75.8647 42.2751C76.3931 42.2751 76.9216 42.2882 77.4501 42.3145C77.9785 42.341 78.4938 42.3939 78.996 42.4733V19.8287C78.996 15.7308 77.9655 12.6573 75.9045 10.6083C73.8434 8.55939 70.7384 7.53491 66.5895 7.53491H12.446C8.29729 7.53491 5.1858 8.55939 3.11149 10.6083C1.03716 12.6573 0 15.7308 0 19.8287V68.2504C0 72.3485 1.03716 75.4219 3.11149 77.4708C5.1858 79.5199 8.29729 80.5445 12.446 80.5445ZM18.7086 40.411H60.3666C61.0538 40.411 61.6287 40.1665 62.0911 39.6774C62.5536 39.1882 62.7848 38.6 62.7848 37.9126C62.7848 37.2516 62.5536 36.6898 62.0911 36.2271C61.6287 35.7645 61.0538 35.5331 60.3666 35.5331H18.7086C17.9951 35.5331 17.4005 35.7645 16.9249 36.2271C16.4492 36.6898 16.2114 37.2516 16.2114 37.9126C16.2114 38.6 16.4492 39.1882 16.9249 39.6774C17.4005 40.1665 17.9951 40.411 18.7086 40.411ZM18.7086 52.3478H55.5707C56.2577 51.4225 56.991 50.5501 57.7705 49.7306C58.5501 48.9111 59.4023 48.1576 60.3272 47.4702H18.7086C17.9951 47.4702 17.4005 47.7081 16.9249 48.1837C16.4492 48.6597 16.2114 49.2546 16.2114 49.9685C16.2114 50.6294 16.4492 51.1911 16.9249 51.6538C17.4005 52.1165 17.9951 52.3478 18.7086 52.3478ZM18.7086 64.2849H45.146C45.8596 64.2849 46.4476 64.0536 46.91 63.5909C47.3724 63.1282 47.6037 62.5663 47.6037 61.9052C47.6037 61.2178 47.3724 60.6297 46.91 60.1408C46.4476 59.6516 45.8596 59.4069 45.146 59.4069H18.7086C17.9951 59.4069 17.4005 59.6516 16.9249 60.1408C16.4492 60.6297 16.2114 61.2178 16.2114 61.9052C16.2114 62.5663 16.4492 63.1282 16.9249 63.5909C17.4005 64.0536 17.9951 64.2849 18.7086 64.2849Z" fill="#84B5FF" style="fill:#84B5FF;fill:color(display-p3 0.5167 0.7100 1.0000);fill-opacity:1;"/>
|
||||
<path d="M75.8638 88.0001C78.5857 88.0001 81.162 87.4713 83.593 86.4138C86.0239 85.3564 88.1709 83.9023 90.0339 82.0516C91.8969 80.2009 93.3569 78.0593 94.4138 75.6268C95.4707 73.1946 95.9991 70.6037 95.9991 67.8542C95.9991 65.0781 95.4773 62.474 94.4337 60.0417C93.39 57.6093 91.9433 55.4677 90.0936 53.6169C88.2438 51.7662 86.1034 50.3188 83.6721 49.2746C81.2412 48.2301 78.6384 47.7079 75.8638 47.7079C73.1157 47.7079 70.5261 48.2301 68.0949 49.2746C65.6639 50.3188 63.5236 51.7729 61.6738 53.6368C59.8241 55.5008 58.3708 57.6423 57.3139 60.0612C56.257 62.4805 55.7285 65.0781 55.7285 67.8542C55.7285 70.6302 56.257 73.2344 57.3139 75.6666C58.3708 78.0988 59.8241 80.2403 61.6738 82.091C63.5236 83.9417 65.6639 85.3893 68.0949 86.4338C70.5261 87.478 73.1157 88.0001 75.8638 88.0001Z" fill="#84B5FF" style="fill:#84B5FF;fill:color(display-p3 0.5167 0.7100 1.0000);fill-opacity:1;"/>
|
||||
<path d="M75.8644 80.4654C75.1246 80.4654 74.5366 80.2405 74.1004 79.7908C73.6645 79.3414 73.4465 78.7599 73.4465 78.0463V70.2732H65.6776C64.9643 70.2732 64.3831 70.0552 63.9339 69.619C63.4845 69.1826 63.2598 68.5943 63.2598 67.8541C63.2598 67.1137 63.4845 66.5254 63.9339 66.0893C64.3831 65.6531 64.9643 65.435 65.6776 65.435H73.4465V57.662C73.4465 56.9481 73.6645 56.3664 74.1004 55.917C74.5366 55.4676 75.1246 55.2429 75.8644 55.2429C76.6042 55.2429 77.1921 55.4676 77.6283 55.917C78.0642 56.3664 78.2822 56.9481 78.2822 57.662V65.435H86.0512C86.7644 65.435 87.3458 65.6531 87.7952 66.0893C88.2444 66.5254 88.469 67.1137 88.469 67.8541C88.469 68.5943 88.2444 69.1826 87.7952 69.619C87.3458 70.0552 86.7644 70.2732 86.0512 70.2732H78.2822V78.0463C78.2822 78.7599 78.0642 79.3414 77.6283 79.7908C77.1921 80.2405 76.6042 80.4654 75.8644 80.4654Z" fill="#222E42" style="fill:#222E42;fill:color(display-p3 0.1333 0.1804 0.2588);fill-opacity:1;"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_17_6288">
|
||||
<rect width="96" height="88" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.2 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="12" viewBox="0 0 16 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.37196 11.5H14.7439C15.2057 11.5 15.5304 11.4317 15.7182 11.295C15.9061 11.1584 16 10.9555 16 10.6863C16 10.2947 15.8855 9.88076 15.6566 9.44436C15.4277 9.00796 15.099 8.59908 14.6706 8.21772C14.2421 7.83637 13.7236 7.52639 13.1152 7.28779C12.5067 7.04918 11.821 6.92988 11.0579 6.92988C10.2988 6.92988 9.61507 7.04918 9.00663 7.28779C8.39815 7.52639 7.8787 7.83637 7.44829 8.21772C7.01787 8.59908 6.68919 9.00796 6.46224 9.44436C6.23525 9.88076 6.12176 10.2947 6.12176 10.6863C6.12176 10.9555 6.2147 11.1584 6.40058 11.295C6.58645 11.4317 6.91025 11.5 7.37196 11.5ZM11.0638 5.8348C11.4825 5.8348 11.8699 5.7155 12.226 5.47691C12.5821 5.23831 12.8677 4.91508 13.0829 4.50722C13.2981 4.09936 13.4057 3.64052 13.4057 3.13069C13.4057 2.62903 13.2981 2.17936 13.0829 1.7817C12.8677 1.38404 12.5821 1.07101 12.226 0.842602C11.8699 0.614201 11.4825 0.5 11.0638 0.5C10.6451 0.5 10.2578 0.61624 9.90168 0.84872C9.54559 1.0812 9.25896 1.39729 9.04179 1.79699C8.82466 2.1967 8.71609 2.64534 8.71609 3.14293C8.71609 3.64868 8.8237 4.10446 9.03891 4.51028C9.25411 4.9161 9.53974 5.23831 9.89579 5.47691C10.2519 5.7155 10.6412 5.8348 11.0638 5.8348ZM1.03302 11.5H5.48789C5.33529 11.2675 5.2629 10.9881 5.27072 10.6618C5.27855 10.3355 5.35094 9.99292 5.48789 9.63399C5.62485 9.2751 5.81364 8.92741 6.05427 8.59091C6.29492 8.25441 6.57371 7.9577 6.89065 7.70076C6.56197 7.47235 6.18536 7.28372 5.76082 7.13487C5.33627 6.98597 4.85008 6.91153 4.30227 6.91153C3.64099 6.91153 3.04524 7.02471 2.51504 7.25108C1.98484 7.47744 1.53289 7.77518 1.15921 8.1443C0.785522 8.51342 0.498899 8.91618 0.29934 9.35258C0.0997799 9.78898 0 10.2193 0 10.6435C0 10.9168 0.079237 11.1278 0.237711 11.2767C0.396185 11.4256 0.661286 11.5 1.03302 11.5ZM4.30227 5.97552C4.67009 5.97552 5.00856 5.87151 5.31768 5.6635C5.6268 5.4555 5.87528 5.17305 6.0631 4.81617C6.2509 4.4593 6.3448 4.06061 6.3448 3.62012C6.3448 3.17964 6.2509 2.78707 6.0631 2.44243C5.87528 2.09779 5.62582 1.82656 5.31474 1.62875C5.00367 1.43094 4.66618 1.33203 4.30227 1.33203C3.94228 1.33203 3.60675 1.43298 3.29567 1.63487C2.98459 1.83676 2.73319 2.11105 2.54145 2.45773C2.34972 2.80441 2.25581 3.19595 2.25972 3.63236C2.25972 4.06877 2.35363 4.4644 2.54145 4.81924C2.72928 5.17407 2.97872 5.4555 3.2898 5.6635C3.60088 5.87151 3.93837 5.97552 4.30227 5.97552Z" fill="white" fill-opacity="0.7" style="fill:white;fill:white;fill-opacity:0.7;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.4 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="14" height="12" viewBox="0 0 14 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M2.93972 12H10.0902C10.7333 12 11.2222 11.836 11.5568 11.5079C11.8914 11.1798 12.0587 10.6964 12.0587 10.0576V3.81967H0.971215V10.0576C0.971215 10.7007 1.13852 11.1852 1.47312 11.5111C1.80772 11.837 2.29658 12 2.93972 12ZM4.3672 6.17275C4.22815 6.17275 4.11625 6.1293 4.03152 6.04239C3.94678 5.95547 3.90441 5.84032 3.90441 5.69692V5.49485C3.90441 5.35145 3.94678 5.23739 4.03152 5.15265C4.11625 5.06791 4.22815 5.02554 4.3672 5.02554H8.66924C8.80829 5.02554 8.92127 5.06791 9.00818 5.15265C9.09508 5.23739 9.13853 5.35145 9.13853 5.49485V5.69692C9.13853 5.84032 9.09508 5.95547 9.00818 6.04239C8.92127 6.1293 8.80829 6.17275 8.66924 6.17275H4.3672ZM1.1081 2.92668H11.9218C12.2912 2.92668 12.5682 2.82347 12.7529 2.61706C12.9376 2.41065 13.0299 2.12494 13.0299 1.75992V1.16676C13.0299 0.801741 12.9376 0.516025 12.7529 0.309615C12.5682 0.103205 12.2912 0 11.9218 0H1.1081C0.760459 0 0.488866 0.103205 0.29332 0.309615C0.0977732 0.516025 0 0.801741 0 1.16676V1.75992C0 2.12494 0.0923414 2.41065 0.277024 2.61706C0.461707 2.82347 0.738732 2.92668 1.1081 2.92668Z" fill="white" fill-opacity="0.7" style="fill:white;fill:white;fill-opacity:0.7;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -1,5 +0,0 @@
|
||||
<svg width="17" height="8" viewBox="0 0 17 8" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.25739 1.11533C7.67228 0.371776 7.87981 0 8.18995 0C8.5001 0 8.70762 0.371776 9.12251 1.11533L9.22988 1.30769C9.34781 1.51898 9.40678 1.62463 9.49867 1.69434C9.59064 1.76405 9.70513 1.78992 9.93403 1.84168L10.1425 1.88879C10.9483 2.0709 11.3512 2.16196 11.447 2.46985C11.5429 2.77775 11.2682 3.09858 10.7189 3.74023L10.5768 3.90624C10.4207 4.08857 10.3426 4.17974 10.3076 4.29253C10.2724 4.40532 10.2842 4.52696 10.3078 4.77023L10.3293 4.99172C10.4123 5.84782 10.4539 6.27587 10.2029 6.46617C9.95197 6.65646 9.57475 6.48296 8.82031 6.13597L8.62515 6.04621C8.41075 5.9476 8.30354 5.8983 8.18995 5.8983C8.07636 5.8983 7.96916 5.9476 7.75475 6.04621L7.55959 6.13597C6.80515 6.48296 6.42791 6.65646 6.17697 6.46617C5.92602 6.27587 5.96755 5.84782 6.0506 4.99172L6.07208 4.77023C6.09568 4.52695 6.10748 4.40532 6.07237 4.29253C6.03726 4.17974 5.95921 4.08857 5.80311 3.90624L5.661 3.74023C5.11168 3.09858 4.83702 2.77775 4.93287 2.46985C5.02873 2.16196 5.4316 2.0709 6.23737 1.88879L6.44583 1.84168C6.67477 1.78992 6.78926 1.76405 6.88123 1.69434C6.97312 1.62463 7.03209 1.51898 7.15002 1.30769L7.25739 1.11533Z" fill="white" fill-opacity="0.7" style="fill:white;fill:white;fill-opacity:0.7;"/>
|
||||
<path d="M14.2751 4.65532C14.4826 4.28354 14.5863 4.09766 14.7414 4.09766C14.8966 4.09766 15.0002 4.28355 15.2078 4.65532L15.2614 4.75151C15.3204 4.85715 15.3499 4.90998 15.3958 4.94483C15.4417 4.97968 15.499 4.99262 15.6135 5.01849L15.7177 5.04205C16.1206 5.13311 16.3221 5.17863 16.37 5.33259C16.4179 5.48653 16.2806 5.64694 16.0059 5.96777L15.9348 6.05077C15.8568 6.14194 15.8178 6.18753 15.8002 6.24392C15.7827 6.30032 15.7886 6.36113 15.8004 6.48277L15.8111 6.59353C15.8526 7.02155 15.8734 7.23556 15.748 7.3307C15.6225 7.42585 15.4339 7.33913 15.0567 7.16562L14.959 7.12078C14.8518 7.07145 14.7983 7.04683 14.7414 7.04683C14.6846 7.04683 14.631 7.07145 14.5238 7.12078L14.4262 7.16562C14.049 7.33913 13.8604 7.42585 13.7349 7.3307C13.6095 7.23556 13.6303 7.02155 13.6718 6.59353L13.6825 6.48277C13.6943 6.36113 13.7002 6.30032 13.6827 6.24392C13.6651 6.18753 13.6261 6.14194 13.548 6.05077L13.4769 5.96777C13.2023 5.64694 13.065 5.48653 13.1129 5.33259C13.1608 5.17863 13.3623 5.13311 13.7651 5.04205L13.8694 5.01849C13.9839 4.99262 14.0411 4.97968 14.0871 4.94483C14.133 4.90998 14.1625 4.85715 14.2215 4.75151L14.2751 4.65532Z" fill="white" fill-opacity="0.7" style="fill:white;fill:white;fill-opacity:0.7;"/>
|
||||
<path d="M1.17165 4.65532C1.37912 4.28354 1.48286 4.09766 1.63795 4.09766C1.79304 4.09766 1.89678 4.28355 2.10425 4.65532L2.15792 4.75151C2.21688 4.85715 2.24636 4.90998 2.29232 4.94483C2.33828 4.97968 2.39552 4.99262 2.51001 5.01849L2.61424 5.04205C3.01712 5.13311 3.21857 5.17863 3.26649 5.33259C3.31442 5.48653 3.17709 5.64694 2.90243 5.96777L2.83137 6.05077C2.75332 6.14194 2.71429 6.18753 2.69674 6.24392C2.67918 6.30032 2.68508 6.36113 2.69688 6.48277L2.70763 6.59353C2.74915 7.02155 2.76992 7.23556 2.64444 7.3307C2.51897 7.42585 2.33037 7.33913 1.95315 7.16562L1.85555 7.12078C1.74835 7.07145 1.69476 7.04683 1.63795 7.04683C1.58114 7.04683 1.52754 7.07145 1.42035 7.12078L1.32275 7.16562C0.94554 7.33913 0.756931 7.42585 0.631456 7.3307C0.505981 7.23556 0.52675 7.02155 0.568272 6.59353L0.579017 6.48277C0.590818 6.36113 0.596715 6.30032 0.579156 6.24392C0.561606 6.18753 0.522582 6.14194 0.444525 6.05077L0.373471 5.96777C0.0988125 5.64694 -0.038521 5.48653 0.00940525 5.33259C0.0573315 5.17863 0.258774 5.13311 0.66166 5.04205L0.76589 5.01849C0.880374 4.99262 0.937621 4.97968 0.983581 4.94483C1.02954 4.90998 1.05903 4.85715 1.11797 4.75151L1.17165 4.65532Z" fill="white" fill-opacity="0.7" style="fill:white;fill:white;fill-opacity:0.7;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.7 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.74865 21.9785H18.2299C19.4794 21.9785 20.4166 21.6701 21.0413 21.0533C21.6661 20.4365 21.9785 19.5113 21.9785 18.2776V3.7009C21.9785 2.46726 21.6661 1.54204 21.0413 0.925223C20.4166 0.308408 19.4794 0 18.2299 0H3.74865C2.4991 0 1.56193 0.308408 0.937162 0.925223C0.312387 1.54204 0 2.46726 0 3.7009V18.2776C0 19.5113 0.312387 20.4365 0.937162 21.0533C1.56193 21.6701 2.4991 21.9785 3.74865 21.9785ZM5.229 6.69743L8.32104 3.7009C8.49613 3.5258 8.69113 3.43825 8.90602 3.43825C9.13683 3.43825 9.32585 3.51187 9.47309 3.65911C9.62033 3.80635 9.69395 3.99537 9.69395 4.22618C9.69395 4.45699 9.61437 4.64801 9.45519 4.79922L8.1539 6.06469L7.66443 6.50641L8.23747 6.49447H16.2004C16.4312 6.49447 16.6222 6.57008 16.7734 6.7213C16.9246 6.87251 17.0002 7.06353 17.0002 7.29434C17.0002 7.52515 16.9246 7.71815 16.7734 7.87335C16.6222 8.02855 16.4312 8.10615 16.2004 8.10615H8.22554L7.6525 8.07033L8.1539 8.54787L9.45519 9.8014C9.61437 9.96057 9.69395 10.1516 9.69395 10.3744C9.69395 10.6052 9.62033 10.7923 9.47309 10.9355C9.32585 11.0788 9.13683 11.1504 8.90602 11.1504C8.69909 11.1504 8.50409 11.0748 8.32104 10.9236L5.229 7.89126C5.06982 7.73208 4.99023 7.53311 4.99023 7.29434C4.99023 7.05557 5.06982 6.8566 5.229 6.69743ZM16.7376 15.2572L13.6575 18.2896C13.4665 18.4567 13.2715 18.5402 13.0726 18.5402C12.8497 18.5402 12.6626 18.4646 12.5114 18.3134C12.3602 18.1623 12.2845 17.9752 12.2845 17.7523C12.2845 17.5454 12.3681 17.3544 12.5353 17.1793L13.8246 15.9138L14.338 15.4721L13.741 15.484H5.77816C5.55531 15.484 5.36828 15.4084 5.21707 15.2572C5.06585 15.106 4.99023 14.9111 4.99023 14.6723C4.99023 14.4415 5.06585 14.2504 5.21707 14.0992C5.36828 13.948 5.55531 13.8724 5.77816 13.8724H13.753L14.338 13.9082L13.8246 13.4307L12.5114 12.1771C12.3602 12.018 12.2845 11.8269 12.2845 11.6041C12.2845 11.3812 12.3582 11.1962 12.5054 11.049C12.6527 10.9017 12.8418 10.8281 13.0726 10.8281C13.2954 10.8281 13.4904 10.9077 13.6575 11.0669L16.7376 14.0992C16.9047 14.2583 16.9903 14.4494 16.9943 14.6723C16.9982 14.8951 16.9126 15.0901 16.7376 15.2572Z" fill="white" fill-opacity="0.85" style="fill:white;fill:white;fill-opacity:0.85;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.2 KiB |
@@ -1,13 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60" fill="none">
|
||||
<g>
|
||||
|
||||
<g opacity="0.85">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd"
|
||||
d="M21.0664 23H31.0015C31.0005 23.0499 31 23.0999 31 23.15C31 24.5402 31.3967 25.8378 32.0831 26.9355H18V26.0273C18 25.0182 18.2555 24.2614 18.7666 23.7568C19.2777 23.2523 20.0443 23 21.0664 23ZM18 29.1523H34.2632C35.3821 29.8784 36.7168 30.3 38.15 30.3C39.1434 30.3 40.0895 30.0974 40.9492 29.7313V36.6621C40.9492 37.6647 40.6937 38.4183 40.1826 38.9228C39.6715 39.4274 38.9049 39.6797 37.8828 39.6797H21.0664C20.0443 39.6797 19.2777 39.4274 18.7666 38.9228C18.2555 38.4183 18 37.6647 18 36.6621V29.1523ZM21.9941 36.6523C21.7077 36.6523 21.4766 36.5644 21.3008 36.3886C21.125 36.2129 21.0371 35.9883 21.0371 35.7148V33.9082C21.0371 33.6282 21.125 33.402 21.3008 33.2295C21.4766 33.057 21.7077 32.9707 21.9941 32.9707H24.3867C24.6732 32.9707 24.9043 33.057 25.0801 33.2295C25.2559 33.402 25.3438 33.6282 25.3438 33.9082V35.7148C25.3438 35.9883 25.2559 36.2129 25.0801 36.3886C24.9043 36.5644 24.6732 36.6523 24.3867 36.6523H21.9941Z"
|
||||
fill="white" style="fill:white;fill:white;fill-opacity:1;" />
|
||||
<path fill-rule="evenodd" clip-rule="evenodd"
|
||||
d="M35.3348 27H40.6652C41.0019 27 41.2375 26.9503 41.3719 26.8509C41.5063 26.7516 41.5735 26.604 41.5735 26.4082C41.5735 26.1234 41.4907 25.8224 41.3252 25.505C41.1597 25.1876 40.922 24.8902 40.6122 24.6129C40.3024 24.3355 39.9275 24.1101 39.4876 23.9366C39.0476 23.763 38.5517 23.6763 38 23.6763C37.4511 23.6763 36.9567 23.763 36.5167 23.9366C36.0768 24.1101 35.7012 24.3355 35.3899 24.6129C35.0787 24.8902 34.841 25.1876 34.6769 25.505C34.5128 25.8224 34.4308 26.1234 34.4308 26.4082C34.4308 26.604 34.498 26.7516 34.6324 26.8509C34.7667 26.9503 35.0009 27 35.3348 27ZM38.0043 22.8799C38.307 22.8799 38.5871 22.7931 38.8446 22.6196C39.102 22.446 39.3093 22.211 39.4663 21.9143C39.6233 21.6177 39.7019 21.284 39.7019 20.9132C39.7019 20.5484 39.6233 20.2214 39.4663 19.9321C39.3093 19.6429 39.102 19.4153 38.8446 19.2492C38.5871 19.0831 38.307 19 38.0043 19C37.7015 19 37.4214 19.0845 37.1639 19.2536C36.9065 19.4227 36.6992 19.6526 36.5422 19.9433C36.3851 20.234 36.3066 20.5602 36.3066 20.9221C36.3066 21.2899 36.3851 21.6214 36.5422 21.9166C36.6992 22.2117 36.9065 22.446 37.1639 22.6196C37.4214 22.7931 37.7015 22.8799 38.0043 22.8799Z"
|
||||
fill="white" style="fill:white;fill:white;fill-opacity:1;" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.5 KiB |
@@ -1,13 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60" fill="none">
|
||||
<g opacity="0.4">
|
||||
|
||||
<g opacity="0.85">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd"
|
||||
d="M21.0664 23H31.0015C31.0005 23.0499 31 23.0999 31 23.15C31 24.5402 31.3967 25.8378 32.0831 26.9355H18V26.0273C18 25.0182 18.2555 24.2614 18.7666 23.7568C19.2777 23.2523 20.0443 23 21.0664 23ZM18 29.1523H34.2632C35.3821 29.8784 36.7168 30.3 38.15 30.3C39.1434 30.3 40.0895 30.0974 40.9492 29.7313V36.6621C40.9492 37.6647 40.6937 38.4183 40.1826 38.9228C39.6715 39.4274 38.9049 39.6797 37.8828 39.6797H21.0664C20.0443 39.6797 19.2777 39.4274 18.7666 38.9228C18.2555 38.4183 18 37.6647 18 36.6621V29.1523ZM21.9941 36.6523C21.7077 36.6523 21.4766 36.5644 21.3008 36.3886C21.125 36.2129 21.0371 35.9883 21.0371 35.7148V33.9082C21.0371 33.6282 21.125 33.402 21.3008 33.2295C21.4766 33.057 21.7077 32.9707 21.9941 32.9707H24.3867C24.6732 32.9707 24.9043 33.057 25.0801 33.2295C25.2559 33.402 25.3438 33.6282 25.3438 33.9082V35.7148C25.3438 35.9883 25.2559 36.2129 25.0801 36.3886C24.9043 36.5644 24.6732 36.6523 24.3867 36.6523H21.9941Z"
|
||||
fill="white" style="fill:white;fill:white;fill-opacity:1;" />
|
||||
<path fill-rule="evenodd" clip-rule="evenodd"
|
||||
d="M35.3348 27H40.6652C41.0019 27 41.2375 26.9503 41.3719 26.8509C41.5063 26.7516 41.5735 26.604 41.5735 26.4082C41.5735 26.1234 41.4907 25.8224 41.3252 25.505C41.1597 25.1876 40.922 24.8902 40.6122 24.6129C40.3024 24.3355 39.9275 24.1101 39.4876 23.9366C39.0476 23.763 38.5517 23.6763 38 23.6763C37.4511 23.6763 36.9567 23.763 36.5167 23.9366C36.0768 24.1101 35.7012 24.3355 35.3899 24.6129C35.0787 24.8902 34.841 25.1876 34.6769 25.505C34.5128 25.8224 34.4308 26.1234 34.4308 26.4082C34.4308 26.604 34.498 26.7516 34.6324 26.8509C34.7667 26.9503 35.0009 27 35.3348 27ZM38.0043 22.8799C38.307 22.8799 38.5871 22.7931 38.8446 22.6196C39.102 22.446 39.3093 22.211 39.4663 21.9143C39.6233 21.6177 39.7019 21.284 39.7019 20.9132C39.7019 20.5484 39.6233 20.2214 39.4663 19.9321C39.3093 19.6429 39.102 19.4153 38.8446 19.2492C38.5871 19.0831 38.307 19 38.0043 19C37.7015 19 37.4214 19.0845 37.1639 19.2536C36.9065 19.4227 36.6992 19.6526 36.5422 19.9433C36.3851 20.234 36.3066 20.5602 36.3066 20.9221C36.3066 21.2899 36.3851 21.6214 36.5422 21.9166C36.6992 22.2117 36.9065 22.446 37.1639 22.6196C37.4214 22.7931 37.7015 22.8799 38.0043 22.8799Z"
|
||||
fill="white" style="fill:white;fill:white;fill-opacity:1;" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.5 KiB |
@@ -1,9 +0,0 @@
|
||||
.adminlist{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
row-gap: 1rem;
|
||||
position: relative;
|
||||
|
||||
}
|
||||
@@ -1,46 +0,0 @@
|
||||
<div class="adminlist">
|
||||
<div class="employees-header">
|
||||
<playerinformation :playerName="playerInfo.name" :playerJob="formattedJob " :playerPP="playerInfo.pp">
|
||||
</playerinformation>
|
||||
<div class="employees-input-container">
|
||||
<div class="employees-input-wrapper">
|
||||
<inlinesvg src="./assets/svg/search-icon.svg" class="employees-search-icon"></inlinesvg>
|
||||
<input type="text" placeholder="Search any job....">
|
||||
</div>
|
||||
</div>
|
||||
<div @click="setAdminActivePage('createmenu')" class="header-button">
|
||||
<inlinesvg src="./assets/svg/createnewjob-icon.svg"></inlinesvg>
|
||||
<p>{{locales.create_job}}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="seperator"> </div>
|
||||
<div class="employee-list-container">
|
||||
<div class="employee-list-header">
|
||||
<h1>{{locales.job_lists}}</h1>
|
||||
</div>
|
||||
<div class="employees-list no-scrollbar">
|
||||
<div class="employee" v-for="company in companies">
|
||||
|
||||
|
||||
<img src="./assets/svg/job-icon.svg">
|
||||
|
||||
<p class="employee-name">{{company.companylabel}}</p>
|
||||
<div class="seperator"></div>
|
||||
|
||||
<div class="employee-other-info">
|
||||
<inlinesvg src="./assets/svg/date-icon.svg"></inlinesvg>
|
||||
<p>{{SecondsToDate(company.creationdate)}}</p>
|
||||
</div>
|
||||
<div class="employee-other-info">
|
||||
<inlinesvg src="./assets/svg/total-employees-container.svg"></inlinesvg>
|
||||
<p>{{company.employees.length}} {{locales.employee}}</p>
|
||||
</div>
|
||||
<div class="seperator"></div>
|
||||
<div @click="setAdminSelectedBusinessName(company.company); setAdminActivePage('jobdetails')" class="header-button" >
|
||||
<p>{{locales.details}}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@@ -1,61 +0,0 @@
|
||||
import importTemplate from '../../util/importTemplate.js';
|
||||
import inlinesvg from '../../util/inlineSvg.js';
|
||||
import playerinformation from '../playerinformation/index.js';
|
||||
export default {
|
||||
template: await importTemplate('components/adminlist/index.html'),
|
||||
data: () => ({
|
||||
|
||||
}),
|
||||
methods : {
|
||||
SecondsToDate(seconds, includeHours) {
|
||||
const date = new Date(null);
|
||||
date.setSeconds(seconds); // specify value for SECONDS here
|
||||
let day = date.getDate()
|
||||
let month = date.getMonth() + 1
|
||||
let hours = date.getHours()
|
||||
let minutes = date.getMinutes()
|
||||
if (minutes < 10) {
|
||||
minutes = '0' + minutes
|
||||
}
|
||||
if (hours < 10) {
|
||||
hours = '0' + hours
|
||||
}
|
||||
if (day < 10) {
|
||||
day = '0' + day
|
||||
}
|
||||
if (month < 10) {
|
||||
month = '0' + month
|
||||
}
|
||||
|
||||
let formattedClock = `${hours}:${minutes}`
|
||||
|
||||
return `${day}.${month}.${date.getFullYear()} ${includeHours ? formattedClock : ''}`
|
||||
},
|
||||
...Vuex.mapMutations({
|
||||
|
||||
setAdminSelectedBusinessName : "setAdminSelectedBusinessName",
|
||||
})
|
||||
|
||||
},
|
||||
computed : {
|
||||
|
||||
...Vuex.mapState({
|
||||
playerInfo : state => state.playerInfo,
|
||||
jobInfo : state => state.jobInfo,
|
||||
companies: state => state.companies,
|
||||
locales : state => state.locales,
|
||||
|
||||
|
||||
}),
|
||||
formattedJob(){
|
||||
return this.jobInfo.label +'-'+this.jobInfo.grade_label
|
||||
},
|
||||
},
|
||||
props: ['setAdminActivePage'],
|
||||
mounted(){
|
||||
},
|
||||
components : {
|
||||
playerinformation,
|
||||
inlinesvg
|
||||
}
|
||||
}
|
||||