Compare commits

..

9 Commits

Author SHA1 Message Date
haburger f0cab7244e new configuration version 2025-07-04 04:47:28 +00:00
haburger 9299c7ae7d new configuration version 2025-06-30 15:18:30 +00:00
aca 7553eb13fc new configuration version 2025-06-05 12:15:27 +00:00
aca c034ffc7fb new configuration version 2025-06-04 08:56:03 +00:00
aca 1674db4f4f new configuration version 2025-06-04 08:51:35 +00:00
aca cbcfa40c29 new configuration version 2025-06-04 07:20:04 +00:00
haburger c401095f73 new configuration version 2025-05-09 06:52:59 +00:00
haburger 2b4d8cfe03 new configuration version 2025-05-08 14:39:36 +00:00
haburger 9713eb8e12 new configuration version 2025-05-08 14:15:07 +00:00
484 changed files with 15845 additions and 2950 deletions

View File

@ -45,7 +45,7 @@ spec:
podDisruptionBudget: podDisruptionBudget:
maxUnavailable: "50%" maxUnavailable: "50%"
git: git:
tag: "r-7c2f10f995449629ef8fa89163e2b957f298d9ee" tag: "r-3944ffd65b942f8ce7cea4316e8f0ebdd3fd083a"
dir: "DEFAULT-ADN-AGOV-ADMIN-PROJECT/DEFAULT-ADN-AGOV-ADMIN-INV/auth" dir: "DEFAULT-ADN-AGOV-ADMIN-PROJECT/DEFAULT-ADN-AGOV-ADMIN-INV/auth"
credentials: "git-credentials" credentials: "git-credentials"
keystores: keystores:

View File

@ -1,17 +1,19 @@
import ch.nevis.esauth.auth.engine.AuthResponse
import groovy.xml.XmlSlurper
import groovy.json.JsonSlurper import groovy.json.JsonSlurper
def cleanSession() { def cleanSession(boolean rpcodeToo) {
def s = request.getAuthSession(true) def s = request.getAuthSession(true)
if (rpcodeToo) {
s.removeAttribute('agov.ident.rpcode.backup') s.removeAttribute('agov.ident.rpcode.backup')
s.removeAttribute('agov.ident.rpcode') s.removeAttribute('agov.ident.rpcode')
s.removeAttribute('agov.ident.entityId') s.removeAttribute('agov.ident.entityId')
s.removeAttribute('saml.response.statusCode') }
if (response.getActualRoles().length > 0) { def sessionKeySet = new HashSet(session.keySet())
def actualRoles = Arrays.copyOf(response.getActualRoles(), response.getActualRoles().length) sessionKeySet.each { key ->
actualRoles.each{ role -> response.removeActualRole(role) } if ( key ==~ /ch.nevis.auth.saml..*/ ) {
LOG.debug("Deleted session attribute '${key}'")
s.removeAttribute(key)
}
} }
} }
@ -23,9 +25,17 @@ def referer = request.getLoginContext()['connection.HttpHeader.referer'] ?: requ
def origin = request.getLoginContext()['connection.HttpHeader.origin'] ?: request.getLoginContext()['connection.HttpHeader' + def origin = request.getLoginContext()['connection.HttpHeader.origin'] ?: request.getLoginContext()['connection.HttpHeader' +
'.Origin'] ?: '-' '.Origin'] ?: '-'
// 0) clean up, if we have a SAML Response in session
if (session['ch.nevis.auth.saml.response.id']) {
// keep rpcode in session, if retrying after SAML error
def keepRpcode = session['ch.nevis.auth.saml.response.statusCode'] == 'urn:oasis:names:tc:SAML:2.0:status:Responder'
cleanSession(!keepRpcode)
}
// 1) we need to know the code of the RP // 1) we need to know the code of the RP
def rpcode = inargs['rpcode'] ?: inargs['RelayState'] def rpcode = inargs['rpcode'] ?: inargs['RelayState'] ?: session['agov.ident.rpcode']
def rpcodeBackup = session['agov.ident.rpcode'] def rpcodeBackup = session['agov.ident.rpcode']
def rpentity = '-'
if (rpcode) if (rpcode)
{ {
@ -34,8 +44,8 @@ if (rpcode)
} }
response.setSessionAttribute('agov.ident.rpcode', rpcode) response.setSessionAttribute('agov.ident.rpcode', rpcode)
} else { } else {
cleanSession() cleanSession(true)
LOG.info("Event='IDENT-INVALIDREQ', rpcode='missing', SourceIp=${sourceIp}, UserAgent=${userAgent}, Referer='${referer}', Origin='${origin}'") LOG.info("Event='IDENT-INVALIDREQ', rpcode='missing', SourceIp=${sourceIp}, UserAgent='${userAgent}', Referer='${referer}', Origin='${origin}'")
response.setResult('inavlidurl') response.setResult('inavlidurl')
return return
} }
@ -46,11 +56,12 @@ if (rpcode != rpcodeBackup) {
def rpMap = slurper.parseText(parameters['rpcode.list']) def rpMap = slurper.parseText(parameters['rpcode.list'])
LOG.debug(">>> rpMaP: ${rpMap}") LOG.debug(">>> rpMaP: ${rpMap}")
if (!rpMap[rpcode]) { if (!rpMap[rpcode]) {
cleanSession() cleanSession(true)
LOG.info("Event='IDENT-INVALIDREQ', rpcode='${rpcode}', SourceIp=${sourceIp}, UserAgent=${userAgent}, Referer='${referer}', Origin='${origin}'") LOG.info("Event='IDENT-INVALIDREQ', rpcode='${rpcode}', SourceIp=${sourceIp}, UserAgent='${userAgent}', Referer='${referer}', Origin='${origin}'")
response.setResult('inavlidurl') response.setResult('inavlidurl')
return return
} }
rpentity=rpMap[rpcode]
response.setSessionAttribute('agov.ident.entityId', rpMap[rpcode]) response.setSessionAttribute('agov.ident.entityId', rpMap[rpcode])
} }
@ -61,5 +72,7 @@ if (inargs['SAMLResponse']) {
} }
// 4) otherwise // 4) otherwise
LOG.info("Event='IDENT-INITREQ', rpcode='${rpcode}', rpentity='${rpentity}', SourceIp=${sourceIp}, UserAgent='${userAgent}', Referer='${referer}', " +
"Origin='${origin}'")
response.setResult('sendAuthnRequest') response.setResult('sendAuthnRequest')
return return

View File

@ -1,5 +1,15 @@
accept.button.label=Accept accept.button.label=Accept
agov-ident.done.message=Your AGOV account is now ready for use. Please close this page.
agov-ident.done.title=Done
agov-ident.failed.instruction=You need an AGOV account and pass the suggested data verification to successfully finish the on-boarding. Please try again.
agov-ident.failed.message=Onboarding cancelled or data verification postponed
agov-ident.failed.title=Verification needed
agov-ident.invalid-url.instruction=The link you used to access this page isn't valid. Please make sure you use it as received without any typos or click it directly on the page, where it is published.
agov-ident.invalid-url.message=Link can't be processed
agov-ident.invalid-url.title=Invalid Link
agov-ident.onboarding=Registration & Verification
agov-ident.retry=Try again
cancel.button.label=Cancel cancel.button.label=Cancel
continue.button.label=Continue continue.button.label=Continue
darkModeSwitch.aria.label=Dark mode toggle darkModeSwitch.aria.label=Dark mode toggle
@ -57,12 +67,16 @@ general.fieldRequired=Field required.
general.getStarted=Get started general.getStarted=Get started
general.goAGOVHelp=Go to AGOV help general.goAGOVHelp=Go to AGOV help
general.goAccessApp=Login with AGOV access general.goAccessApp=Login with AGOV access
general.goToAccessApp=Go to AGOV access app
general.help=Help general.help=Help
general.help.link=https://agov.ch/help general.help.link=https://agov.ch/help
general.login=Login general.login=Login
general.login.accessApp=Login with Access App
general.login.securityKey=Login with Security Key
general.loginSecurityKey=Start Security key login general.loginSecurityKey=Start Security key login
general.moreOptions=MORE OPTIONS
general.or=OR general.or=OR
general.otherOptions=OTHER OPTIONS general.otherLoginMethods=Other login methods
general.recovery=Recovery general.recovery=Recovery
general.recovery.help.link=https://help.agov.ch/?c=100recovery general.recovery.help.link=https://help.agov.ch/?c=100recovery
general.recoveryCode.downloadPdf=Download as PDF general.recoveryCode.downloadPdf=Download as PDF
@ -75,6 +89,8 @@ general.recoveryOngoing=Ongoing recovery
general.register=Register general.register=Register
general.registerNow=Register now! general.registerNow=Register now!
general.registration=Registration general.registration=Registration
general.registration.dontHaveAnAccountYet=Don't have an AGOV account yet?
general.registration.seeOptions=See registration options
general.securityKey=Security key general.securityKey=Security key
general.skip.content=Skip to main content general.skip.content=Skip to main content
general.wrongPhoneNumber=Please enter a valid phone number general.wrongPhoneNumber=Please enter a valid phone number
@ -90,6 +106,7 @@ language.de=Deutsch
language.en=English language.en=English
language.fr=Français language.fr=Français
language.it=Italiano language.it=Italiano
language.rm=Rumantsch
languageDropdown.aria.label=Select language languageDropdown.aria.label=Select language
loainfo.description.200=To access the application, we need to verify your data. The process can take up to 2 - 3 days. loainfo.description.200=To access the application, we need to verify your data. The process can take up to 2 - 3 days.
loainfo.description.300=To access the application we need to verify your data through one of two processes. You can choose your preferred process in the next step. loainfo.description.300=To access the application we need to verify your data through one of two processes. You can choose your preferred process in the next step.
@ -107,9 +124,12 @@ mauth_usernameless.banner.error=Authentication interrupted.<br>Please try again
mauth_usernameless.banner.info=Scan successful.<br>Please continue in the AGOV access app. mauth_usernameless.banner.info=Scan successful.<br>Please continue in the AGOV access app.
mauth_usernameless.banner.success=Authentication successful!<br>Please wait to be logged in. mauth_usernameless.banner.success=Authentication successful!<br>Please wait to be logged in.
mauth_usernameless.cannotLogin=Lost access to your app / security key? mauth_usernameless.cannotLogin=Lost access to your app / security key?
mauth_usernameless.cannotLogin.accessApp=Lost access to your app?
mauth_usernameless.cannotLogin.securityKey=Lost access to your security key?
mauth_usernameless.hideQR=Hide QR code mauth_usernameless.hideQR=Hide QR code
mauth_usernameless.instructions=Log in by scanning the QR code with your AGOV access app mauth_usernameless.instructions=Log in by scanning the QR code with your AGOV access app
mauth_usernameless.noAccount=Don't have an AGOV-Login yet? mauth_usernameless.noAccount=Don't have an AGOV account yet?
mauth_usernameless.selectLoginMethod=Select login method
mauth_usernameless.showQR=Show QR code mauth_usernameless.showQR=Show QR code
mauth_usernameless.startRecovery=Start account recovery mauth_usernameless.startRecovery=Start account recovery
mauth_usernameless.useSecurityKey=Use a security key to log in mauth_usernameless.useSecurityKey=Use a security key to log in

View File

@ -1,5 +1,15 @@
accept.button.label=Akzeptieren accept.button.label=Akzeptieren
agov-ident.done.message=Ihr AGOV-Konto ist nun einsatzbereit. Bitte schliessen Sie diese Seite.
agov-ident.done.title=Fertig
agov-ident.failed.instruction=Sie ben&ouml;tigen ein AGOV-Konto und m&uuml;ssen die vorgeschlagene Daten&uuml;berpr&uuml;fung bestehen, um das Onboarding erfolgreich abzuschliessen. Bitte versuchen Sie es erneut.
agov-ident.failed.message=Onboarding abgebrochen oder Verifikation der Daten verschoben
agov-ident.failed.title=Verifikation erforderlich
agov-ident.invalid-url.instruction=Der Link, den Sie f&uuml;r den Zugriff auf diese Seite verwendet haben, ist ung&uuml;ltig. Bitte stellen Sie sicher, dass Sie ihn so verwenden, wie Sie ihn erhalten haben, ohne Tippfehler, oder klicken Sie ihn direkt auf der Seite an, auf der er ver&ouml;ffentlicht ist.
agov-ident.invalid-url.message=Link kann nicht verarbeitet werden
agov-ident.invalid-url.title=Ung&uuml;ltiger Link
agov-ident.onboarding=Registrierung & Verifikation
agov-ident.retry=Versuchen Sie es erneut
cancel.button.label=Abbrechen cancel.button.label=Abbrechen
continue.button.label=Weiter continue.button.label=Weiter
darkModeSwitch.aria.label=Dark-Mode-Schalter darkModeSwitch.aria.label=Dark-Mode-Schalter
@ -57,12 +67,16 @@ general.fieldRequired=Erforderliches Feld.
general.getStarted=Los geht's general.getStarted=Los geht's
general.goAGOVHelp=Weiter zur AGOV help general.goAGOVHelp=Weiter zur AGOV help
general.goAccessApp=Login mit AGOV access general.goAccessApp=Login mit AGOV access
general.goToAccessApp=Zur AGOV access App wechseln
general.help=Hilfe general.help=Hilfe
general.help.link=https://agov.ch/help general.help.link=https://agov.ch/help
general.login=Login general.login=Login
general.login.accessApp=Login mit AGOV access App
general.login.securityKey=Login mit Sicherheitsschl&uuml;ssel
general.loginSecurityKey=Sicherheitsschl&uuml;ssel-Login starten general.loginSecurityKey=Sicherheitsschl&uuml;ssel-Login starten
general.moreOptions=WEITERE OPTIONEN
general.or=ODER general.or=ODER
general.otherOptions=WEITERE OPTIONEN general.otherLoginMethods=Andere Login-Methoden
general.recovery=Wiederherstellung general.recovery=Wiederherstellung
general.recovery.help.link=https://help.agov.ch/?c=100recovery general.recovery.help.link=https://help.agov.ch/?c=100recovery
general.recoveryCode.downloadPdf=Als PDF herunterladen general.recoveryCode.downloadPdf=Als PDF herunterladen
@ -75,6 +89,8 @@ general.recoveryOngoing=Wiederherstellung nicht abgeschlossen
general.register=Registrieren general.register=Registrieren
general.registerNow=Jetzt registrieren! general.registerNow=Jetzt registrieren!
general.registration=Registrierung general.registration=Registrierung
general.registration.dontHaveAnAccountYet=Haben Sie noch kein AGOV-Konto?
general.registration.seeOptions=Registrierungsoptionen ansehen
general.securityKey=Sicherheitsschl&uuml;ssel general.securityKey=Sicherheitsschl&uuml;ssel
general.skip.content=Direkt zum Hauptteil general.skip.content=Direkt zum Hauptteil
general.wrongPhoneNumber=Bitte geben Sie eine g&uuml;ltige Telefonnummer ein general.wrongPhoneNumber=Bitte geben Sie eine g&uuml;ltige Telefonnummer ein
@ -90,6 +106,7 @@ language.de=Deutsch
language.en=English language.en=English
language.fr=Fran&ccedil;ais language.fr=Fran&ccedil;ais
language.it=Italiano language.it=Italiano
language.rm=Rumantsch
languageDropdown.aria.label=Sprache w&auml;hlen languageDropdown.aria.label=Sprache w&auml;hlen
loainfo.description.200=Um auf diese Applikation zuzugreifen, m&uuml;ssen wir Ihre Angaben verifizieren. Der Vorgang kann bis zu 2 - 3 Tage dauern. loainfo.description.200=Um auf diese Applikation zuzugreifen, m&uuml;ssen wir Ihre Angaben verifizieren. Der Vorgang kann bis zu 2 - 3 Tage dauern.
loainfo.description.300=Um auf diese Applikation zuzugreifen, m&uuml;ssen wir Ihre Angaben durch einen von zwei Vorg&auml;ngen verifizieren. Sie k&ouml;nnen die bevorzugte Methode im n&auml;chsten Schritt ausw&auml;hlen. loainfo.description.300=Um auf diese Applikation zuzugreifen, m&uuml;ssen wir Ihre Angaben durch einen von zwei Vorg&auml;ngen verifizieren. Sie k&ouml;nnen die bevorzugte Methode im n&auml;chsten Schritt ausw&auml;hlen.
@ -107,9 +124,12 @@ mauth_usernameless.banner.error=Authentifizierung unterbrochen.<br>Bitte versuch
mauth_usernameless.banner.info=Scan erfolgreich.<br>Bitte fahren Sie in der AGOV access App fort. mauth_usernameless.banner.info=Scan erfolgreich.<br>Bitte fahren Sie in der AGOV access App fort.
mauth_usernameless.banner.success=Authentifizierung erfolgreich!<br>Bitte warten Sie, bis Sie eingeloggt werden. mauth_usernameless.banner.success=Authentifizierung erfolgreich!<br>Bitte warten Sie, bis Sie eingeloggt werden.
mauth_usernameless.cannotLogin=Zugriff auf App / Sicherheitsschl&uuml;ssel verloren? mauth_usernameless.cannotLogin=Zugriff auf App / Sicherheitsschl&uuml;ssel verloren?
mauth_usernameless.cannotLogin.accessApp=Zugriff auf App verloren?
mauth_usernameless.cannotLogin.securityKey=Zugriff auf Sicherheitsschl&uuml;ssel verloren?
mauth_usernameless.hideQR=QR-Code ausblenden mauth_usernameless.hideQR=QR-Code ausblenden
mauth_usernameless.instructions=Melden Sie sich an, indem Sie den QR-Code mit Ihrer AGOV access App scannen mauth_usernameless.instructions=Melden Sie sich an, indem Sie den QR-Code mit Ihrer AGOV access App scannen
mauth_usernameless.noAccount=Haben Sie noch kein AGOV-Login? mauth_usernameless.noAccount=Haben Sie noch kein AGOV-Konto?
mauth_usernameless.selectLoginMethod=Login-Methode w&auml;hlen
mauth_usernameless.showQR=QR-Code anzeigen mauth_usernameless.showQR=QR-Code anzeigen
mauth_usernameless.startRecovery=Kontowiederherstellung starten mauth_usernameless.startRecovery=Kontowiederherstellung starten
mauth_usernameless.useSecurityKey=Verwenden Sie einen Sicherheitsschl&uuml;ssel, um sich anzumelden mauth_usernameless.useSecurityKey=Verwenden Sie einen Sicherheitsschl&uuml;ssel, um sich anzumelden
@ -199,7 +219,7 @@ providePhoneNumber.modal.inputLabel=Mobilnummer
providePhoneNumber.modal.title=Mobilnummer wiederholen providePhoneNumber.modal.title=Mobilnummer wiederholen
providePhoneNumber.saveButtonText=Speichern providePhoneNumber.saveButtonText=Speichern
providePhoneNumber.title=Mobilnummer angeben providePhoneNumber.title=Mobilnummer angeben
recovery_accessapp_auth.accessAppRegistered=AGOV access app schon registriert recovery_accessapp_auth.accessAppRegistered=AGOV access App schon registriert
recovery_accessapp_auth.instruction1=Sie haben bereits eine neue AGOV access App !!!ACCESS_APP_NAME!!! im Rahmen des Wiederherstellungsprozesses registriert. recovery_accessapp_auth.instruction1=Sie haben bereits eine neue AGOV access App !!!ACCESS_APP_NAME!!! im Rahmen des Wiederherstellungsprozesses registriert.
recovery_accessapp_auth.instruction2=Verwenden Sie !!!ACCESS_APP_NAME!!! um sich zu identifizieren. recovery_accessapp_auth.instruction2=Verwenden Sie !!!ACCESS_APP_NAME!!! um sich zu identifizieren.
recovery_check_code.banner.lockedError=Zu viele Fehlversuche. Bitte versuchen Sie es in ein paar Minuten noch einmal. recovery_check_code.banner.lockedError=Zu viele Fehlversuche. Bitte versuchen Sie es in ein paar Minuten noch einmal.
@ -241,7 +261,7 @@ recovery_questionnaire_instructions.instruction1=Geben Sie die E-Mail-Adresse Ih
recovery_questionnaire_instructions.instruction2=Folgen Sie den Schritten zur Wiederherstellung Ihres Kontos (die Schritte variieren je nach Verifizierungsstufe Ihres Kontos) recovery_questionnaire_instructions.instruction2=Folgen Sie den Schritten zur Wiederherstellung Ihres Kontos (die Schritte variieren je nach Verifizierungsstufe Ihres Kontos)
recovery_questionnaire_loginfactor.banner.error=Bitte w&auml;hlen Sie eine Antwort. recovery_questionnaire_loginfactor.banner.error=Bitte w&auml;hlen Sie eine Antwort.
recovery_questionnaire_loginfactor.no=Nein recovery_questionnaire_loginfactor.no=Nein
recovery_questionnaire_loginfactor.question=Haben Sie mehr als einen Loginfaktor (AGOV Access App oder Sicherheitsschl&uuml;ssel) f&uuml;r Ihren AGOV-Login registriert? recovery_questionnaire_loginfactor.question=Haben Sie mehr als einen Loginfaktor (AGOV access App oder Sicherheitsschl&uuml;ssel) f&uuml;r Ihren AGOV-Login registriert?
recovery_questionnaire_loginfactor.yes=Ja recovery_questionnaire_loginfactor.yes=Ja
recovery_questionnaire_no_recovery.explanation1=Ausgehend von Ihren Antworten scheint eine Wiederherstellung Ihres AGOV-Logins im Moment nicht notwendig zu sein. recovery_questionnaire_no_recovery.explanation1=Ausgehend von Ihren Antworten scheint eine Wiederherstellung Ihres AGOV-Logins im Moment nicht notwendig zu sein.
recovery_questionnaire_no_recovery.explanation2=Falls Sie weitere Informationen ben&ouml;tigen, besuchen Sie bitte <a class='link' href='https://agov.ch/help' target='_blank'>https://agov.ch/help</a> f&uuml;r Support-Artikel. recovery_questionnaire_no_recovery.explanation2=Falls Sie weitere Informationen ben&ouml;tigen, besuchen Sie bitte <a class='link' href='https://agov.ch/help' target='_blank'>https://agov.ch/help</a> f&uuml;r Support-Artikel.
@ -255,7 +275,7 @@ recovery_questionnaire_reason_selection.answer4=Ich habe mein Telefon / Sicherhe
recovery_questionnaire_reason_selection.answer5=Ich habe ein neues Telefon und habe vergessen, meine AGOV access App zu &uuml;bertragen recovery_questionnaire_reason_selection.answer5=Ich habe ein neues Telefon und habe vergessen, meine AGOV access App zu &uuml;bertragen
recovery_questionnaire_reason_selection.answer6=Ich habe die PIN f&uuml;r meine AGOV access App vergessen recovery_questionnaire_reason_selection.answer6=Ich habe die PIN f&uuml;r meine AGOV access App vergessen
recovery_questionnaire_reason_selection.answer7=Ich habe meine Sicherheitsschl&uuml;ssel oder AGOV access Apps, hatte aber Probleme beim Einloggen recovery_questionnaire_reason_selection.answer7=Ich habe meine Sicherheitsschl&uuml;ssel oder AGOV access Apps, hatte aber Probleme beim Einloggen
recovery_questionnaire_reason_selection.answer8=Ich habe den Zugriff auf alle meine Sicherheitsschl&uuml;ssel und Apps verloren recovery_questionnaire_reason_selection.answer8=Ich habe den Zugriff auf alle meine Sicherheitsschl&uuml;ssel und AGOV access Apps verloren
recovery_questionnaire_reason_selection.answer9=Ich habe Probleme mit einem meiner Loginfaktoren (gel&ouml;scht, zur&uuml;ckgesetzt, vergessene PIN) recovery_questionnaire_reason_selection.answer9=Ich habe Probleme mit einem meiner Loginfaktoren (gel&ouml;scht, zur&uuml;ckgesetzt, vergessene PIN)
recovery_questionnaire_reason_selection.banner.error=Bitte w&auml;hlen Sie einen Grund aus. recovery_questionnaire_reason_selection.banner.error=Bitte w&auml;hlen Sie einen Grund aus.
recovery_questionnaire_reason_selection.instruction=Bitte w&auml;hlen Sie einen Grund wieso Sie den AGOV recovery Prozess starten: recovery_questionnaire_reason_selection.instruction=Bitte w&auml;hlen Sie einen Grund wieso Sie den AGOV recovery Prozess starten:

View File

@ -1,5 +1,15 @@
accept.button.label=Accept accept.button.label=Accept
agov-ident.done.message=Your AGOV account is now ready for use. Please close this page.
agov-ident.done.title=Done
agov-ident.failed.instruction=You need an AGOV account and pass the suggested data verification to successfully finish the on-boarding. Please try again.
agov-ident.failed.message=Onboarding cancelled or data verification postponed
agov-ident.failed.title=Verification needed
agov-ident.invalid-url.instruction=The link you used to access this page isn't valid. Please make sure you use it as received without any typos or click it directly on the page, where it is published.
agov-ident.invalid-url.message=Link can't be processed
agov-ident.invalid-url.title=Invalid Link
agov-ident.onboarding=Registration & Verification
agov-ident.retry=Try again
cancel.button.label=Cancel cancel.button.label=Cancel
continue.button.label=Continue continue.button.label=Continue
darkModeSwitch.aria.label=Dark mode toggle darkModeSwitch.aria.label=Dark mode toggle
@ -57,12 +67,16 @@ general.fieldRequired=Field required.
general.getStarted=Get started general.getStarted=Get started
general.goAGOVHelp=Go to AGOV help general.goAGOVHelp=Go to AGOV help
general.goAccessApp=Login with AGOV access general.goAccessApp=Login with AGOV access
general.goToAccessApp=Go to AGOV access app
general.help=Help general.help=Help
general.help.link=https://agov.ch/help general.help.link=https://agov.ch/help
general.login=Login general.login=Login
general.login.accessApp=Login with Access App
general.login.securityKey=Login with Security Key
general.loginSecurityKey=Start Security key login general.loginSecurityKey=Start Security key login
general.moreOptions=MORE OPTIONS
general.or=OR general.or=OR
general.otherOptions=OTHER OPTIONS general.otherLoginMethods=Other login methods
general.recovery=Recovery general.recovery=Recovery
general.recovery.help.link=https://help.agov.ch/?c=100recovery general.recovery.help.link=https://help.agov.ch/?c=100recovery
general.recoveryCode.downloadPdf=Download as PDF general.recoveryCode.downloadPdf=Download as PDF
@ -75,6 +89,8 @@ general.recoveryOngoing=Ongoing recovery
general.register=Register general.register=Register
general.registerNow=Register now! general.registerNow=Register now!
general.registration=Registration general.registration=Registration
general.registration.dontHaveAnAccountYet=Don't have an AGOV account yet?
general.registration.seeOptions=See registration options
general.securityKey=Security key general.securityKey=Security key
general.skip.content=Skip to main content general.skip.content=Skip to main content
general.wrongPhoneNumber=Please enter a valid phone number general.wrongPhoneNumber=Please enter a valid phone number
@ -90,6 +106,7 @@ language.de=Deutsch
language.en=English language.en=English
language.fr=Fran&ccedil;ais language.fr=Fran&ccedil;ais
language.it=Italiano language.it=Italiano
language.rm=Rumantsch
languageDropdown.aria.label=Select language languageDropdown.aria.label=Select language
loainfo.description.200=To access the application, we need to verify your data. The process can take up to 2 - 3 days. loainfo.description.200=To access the application, we need to verify your data. The process can take up to 2 - 3 days.
loainfo.description.300=To access the application we need to verify your data through one of two processes. You can choose your preferred process in the next step. loainfo.description.300=To access the application we need to verify your data through one of two processes. You can choose your preferred process in the next step.
@ -107,9 +124,12 @@ mauth_usernameless.banner.error=Authentication interrupted.<br>Please try again
mauth_usernameless.banner.info=Scan successful.<br>Please continue in the AGOV access app. mauth_usernameless.banner.info=Scan successful.<br>Please continue in the AGOV access app.
mauth_usernameless.banner.success=Authentication successful!<br>Please wait to be logged in. mauth_usernameless.banner.success=Authentication successful!<br>Please wait to be logged in.
mauth_usernameless.cannotLogin=Lost access to your app / security key? mauth_usernameless.cannotLogin=Lost access to your app / security key?
mauth_usernameless.cannotLogin.accessApp=Lost access to your app?
mauth_usernameless.cannotLogin.securityKey=Lost access to your security key?
mauth_usernameless.hideQR=Hide QR code mauth_usernameless.hideQR=Hide QR code
mauth_usernameless.instructions=Log in by scanning the QR code with your AGOV access app mauth_usernameless.instructions=Log in by scanning the QR code with your AGOV access app
mauth_usernameless.noAccount=Don't have an AGOV-Login yet? mauth_usernameless.noAccount=Don't have an AGOV account yet?
mauth_usernameless.selectLoginMethod=Select login method
mauth_usernameless.showQR=Show QR code mauth_usernameless.showQR=Show QR code
mauth_usernameless.startRecovery=Start account recovery mauth_usernameless.startRecovery=Start account recovery
mauth_usernameless.useSecurityKey=Use a security key to log in mauth_usernameless.useSecurityKey=Use a security key to log in

View File

@ -1,5 +1,15 @@
accept.button.label=Accepter accept.button.label=Accepter
agov-ident.done.message=Votre compte AGOV est maintenant pr&ecirc;t &agrave; &ecirc;tre utilis&eacute;. Veuillez fermer cette page.
agov-ident.done.title=Termin&eacute;
agov-ident.failed.instruction=Vous avez besoin d'un compte AGOV et de passer la v&eacute;rification des donn&eacute;es sugg&eacute;r&eacute;e pour terminer avec succ&egrave;s l'enregistrement. Veuillez r&eacute;essayer.
agov-ident.failed.message=Enregistrement annul&eacute; ou v&eacute;rification des donn&eacute;es report&eacute;e
agov-ident.failed.title=V&eacute;rification requise
agov-ident.invalid-url.instruction=Le lien que vous avez utilis&eacute; pour acc&eacute;der &agrave; cette page n'est pas valide. Veillez l'utiliser tel qu'il a &eacute;t&eacute; re&ccedil;u, sans fautes de frappe, ou cliquez directement sur la page o&ugrave; il est publi&eacute;.
agov-ident.invalid-url.message=Le lien ne peut pas &ecirc;tre trait&eacute;
agov-ident.invalid-url.title=Lien non valide
agov-ident.onboarding=Enregistrement et v&eacute;rification
agov-ident.retry=Essayez &agrave; nouveau
cancel.button.label=Abandonner cancel.button.label=Abandonner
continue.button.label=Continuer continue.button.label=Continuer
darkModeSwitch.aria.label=Activer l'apparence sombre darkModeSwitch.aria.label=Activer l'apparence sombre
@ -57,12 +67,16 @@ general.fieldRequired=Champ requis.
general.getStarted=D&eacute;marrer general.getStarted=D&eacute;marrer
general.goAGOVHelp=Rendez-vous sur AGOV help general.goAGOVHelp=Rendez-vous sur AGOV help
general.goAccessApp=Login avec AGOV access general.goAccessApp=Login avec AGOV access
general.goToAccessApp=Allez sur votre application AGOV access
general.help=Aide general.help=Aide
general.help.link=https://agov.ch/help general.help.link=https://agov.ch/help
general.login=Login general.login=Login
general.login.accessApp=Connexion avec l'application AGOV access
general.login.securityKey=Connexion avec la cl&eacute; de s&eacute;curit&eacute;
general.loginSecurityKey=D&eacute;marrer la connexion avec la cl&eacute; de s&eacute;curit&eacute; general.loginSecurityKey=D&eacute;marrer la connexion avec la cl&eacute; de s&eacute;curit&eacute;
general.moreOptions=PLUS D'OPTIONS
general.or=OU general.or=OU
general.otherOptions=AUTRES OPTIONS general.otherLoginMethods=Autres m&eacute;thodes de connexion
general.recovery=R&eacute;cup&eacute;ration general.recovery=R&eacute;cup&eacute;ration
general.recovery.help.link=https://help.agov.ch/?c=100recovery general.recovery.help.link=https://help.agov.ch/?c=100recovery
general.recoveryCode.downloadPdf=T&eacute;l&eacute;charger en format PDF general.recoveryCode.downloadPdf=T&eacute;l&eacute;charger en format PDF
@ -75,6 +89,8 @@ general.recoveryOngoing=R&eacute;cup&eacute;ration en cours
general.register=Cr&eacute;er un compte general.register=Cr&eacute;er un compte
general.registerNow=Enregistrez-vous d&egrave;s maintenant! general.registerNow=Enregistrez-vous d&egrave;s maintenant!
general.registration=Enregistrement general.registration=Enregistrement
general.registration.dontHaveAnAccountYet=Vous n'avez pas de compte AGOV ?
general.registration.seeOptions=Voir les options d'enregistrement
general.securityKey=Cl&eacute; de s&eacute;curit&eacute; general.securityKey=Cl&eacute; de s&eacute;curit&eacute;
general.skip.content=Passer au contenu principal general.skip.content=Passer au contenu principal
general.wrongPhoneNumber=Veuillez saisir un num&eacute;ro de t&eacute;l&eacute;phone valable general.wrongPhoneNumber=Veuillez saisir un num&eacute;ro de t&eacute;l&eacute;phone valable
@ -90,6 +106,7 @@ language.de=Deutsch
language.en=English language.en=English
language.fr=Fran&ccedil;ais language.fr=Fran&ccedil;ais
language.it=Italiano language.it=Italiano
language.rm=Rumantsch
languageDropdown.aria.label=S&eacute;lectionner la langue languageDropdown.aria.label=S&eacute;lectionner la langue
loainfo.description.200=Pour acc&eacute;der &agrave; l'application, nous devons v&eacute;rifier vos donn&eacute;es. Ce processus peut prendre jusqu'&agrave; 2 ou 3 jours. loainfo.description.200=Pour acc&eacute;der &agrave; l'application, nous devons v&eacute;rifier vos donn&eacute;es. Ce processus peut prendre jusqu'&agrave; 2 ou 3 jours.
loainfo.description.300=Pour acc&eacute;der &agrave; l'application, nous devons v&eacute;rifier vos donn&eacute;es par le biais de l'une des deux proc&eacute;dures suivantes. Vous pouvez choisir la proc&eacute;dure que vous pr&eacute;f&eacute;rez &agrave; l'&eacute;tape suivante. loainfo.description.300=Pour acc&eacute;der &agrave; l'application, nous devons v&eacute;rifier vos donn&eacute;es par le biais de l'une des deux proc&eacute;dures suivantes. Vous pouvez choisir la proc&eacute;dure que vous pr&eacute;f&eacute;rez &agrave; l'&eacute;tape suivante.
@ -107,9 +124,12 @@ mauth_usernameless.banner.error=Authentification interrompue.<br>Veuillez r&eacu
mauth_usernameless.banner.info=Scan r&eacute;ussi!<br> Veuillez continuer dans l'application AGOV access. mauth_usernameless.banner.info=Scan r&eacute;ussi!<br> Veuillez continuer dans l'application AGOV access.
mauth_usernameless.banner.success=Authentification r&eacute;ussie!<br>Veuillez attendre d'&ecirc;tre connect&eacute;. mauth_usernameless.banner.success=Authentification r&eacute;ussie!<br>Veuillez attendre d'&ecirc;tre connect&eacute;.
mauth_usernameless.cannotLogin=Avez-vous perdu l'acc&egrave;s &agrave; votre application / votre cl&eacute; de s&eacute;curit&eacute; ? mauth_usernameless.cannotLogin=Avez-vous perdu l'acc&egrave;s &agrave; votre application / votre cl&eacute; de s&eacute;curit&eacute; ?
mauth_usernameless.cannotLogin.accessApp=Vous avez perdu l'acc&egrave;s &agrave; votre application AGOV access ?
mauth_usernameless.cannotLogin.securityKey=Avez-vous perdu l'acc&egrave;s &agrave; votre cl&eacute; de s&eacute;curit&eacute; ?
mauth_usernameless.hideQR=Cacher le code QR mauth_usernameless.hideQR=Cacher le code QR
mauth_usernameless.instructions=Connectez-vous en scannant le code QR avec l'application AGOV access mauth_usernameless.instructions=Connectez-vous en scannant le code QR avec l'application AGOV access
mauth_usernameless.noAccount=Vous n'avez pas encore d'AGOV-Login ? mauth_usernameless.noAccount=Vous n'avez pas de compte AGOV ?
mauth_usernameless.selectLoginMethod=S&eacute;l&eacute;ctionner la m&eacute;thode de connexion
mauth_usernameless.showQR=Afficher le code QR mauth_usernameless.showQR=Afficher le code QR
mauth_usernameless.startRecovery=Commencer la r&eacute;cup&eacute;ration du compte mauth_usernameless.startRecovery=Commencer la r&eacute;cup&eacute;ration du compte
mauth_usernameless.useSecurityKey=Utiliser une cl&eacute; de s&eacute;curit&eacute; pour se connecter mauth_usernameless.useSecurityKey=Utiliser une cl&eacute; de s&eacute;curit&eacute; pour se connecter
@ -200,12 +220,12 @@ providePhoneNumber.modal.title=R&eacute;p&eacute;ter votre num&eacute;ro de t&ea
providePhoneNumber.saveButtonText=Sauvegarder providePhoneNumber.saveButtonText=Sauvegarder
providePhoneNumber.title=Ajouter le num&eacute;ro de t&eacute;l&eacute;phone providePhoneNumber.title=Ajouter le num&eacute;ro de t&eacute;l&eacute;phone
recovery_accessapp_auth.accessAppRegistered=L'application AGOV access est d&eacute;j&agrave; enregistr&eacute;e recovery_accessapp_auth.accessAppRegistered=L'application AGOV access est d&eacute;j&agrave; enregistr&eacute;e
recovery_accessapp_auth.instruction1=Vous avez d&eacute;j&agrave; enregistr&eacute; une nouvelle AGOV access app !!!ACCESS_APP_NAME!!! dans le cadre du processus de r&eacute;cup&eacute;ration. recovery_accessapp_auth.instruction1=Vous avez d&eacute;j&agrave; enregistr&eacute; une nouvelle application AGOV access !!!ACCESS_APP_NAME!!! dans le cadre du processus de r&eacute;cup&eacute;ration.
recovery_accessapp_auth.instruction2=Veuillez utiliser !!!ACCESS_APP_NAME!!! pour vous identifier. recovery_accessapp_auth.instruction2=Veuillez utiliser !!!ACCESS_APP_NAME!!! pour vous identifier.
recovery_check_code.banner.lockedError=Trop de saisies erron&eacute;es. Veuillez r&eacute;essayer dans quelques minutes. recovery_check_code.banner.lockedError=Trop de saisies erron&eacute;es. Veuillez r&eacute;essayer dans quelques minutes.
recovery_check_code.codeIncorrect=Le code saisi est incorrect. Veuillez r&eacute;essayer. recovery_check_code.codeIncorrect=Le code saisi est incorrect. Veuillez r&eacute;essayer.
recovery_check_code.enterRecoveryCode=Saisir le code de r&eacute;cup&eacute;ration recovery_check_code.enterRecoveryCode=Saisir le code de r&eacute;cup&eacute;ration
recovery_check_code.instruction=Veuillez saisir votre code de r&eacute;cup&eacute;ration &agrave; douze chiffres. Lors de votre inscription, vous avez re&ccedil;u le code de r&eacute;cup&eacute;ration sous la forme d&rsquo;un fichier PDF ou dans AGOV me. recovery_check_code.instruction=Veuillez saisir votre code de r&eacute;cup&eacute;ration &agrave; douze chiffres. Lors de votre inscription, vous avez re&ccedil;u le code de r&eacute;cup&eacute;ration sous la forme d&rsquo;un fichier PDF ou dans &laquo; AGOV me &raquo;.
recovery_check_code.invalid.code=Le code est invalide recovery_check_code.invalid.code=Le code est invalide
recovery_check_code.invalid.code.required=Code requis recovery_check_code.invalid.code.required=Code requis
recovery_check_code.invalid.code.tooLong=Le code est trop long recovery_check_code.invalid.code.tooLong=Le code est trop long
@ -250,7 +270,7 @@ recovery_questionnaire_no_recovery.instruction2=Si vous avez enregistr&eacute; p
recovery_questionnaire_reason_selection.answer1=Je n'arrive pas &agrave; me connecter, m&ecirc;me si j'ai mon application / ma cl&eacute; de s&eacute;curit&eacute; recovery_questionnaire_reason_selection.answer1=Je n'arrive pas &agrave; me connecter, m&ecirc;me si j'ai mon application / ma cl&eacute; de s&eacute;curit&eacute;
recovery_questionnaire_reason_selection.answer10=J'ai perdu l'un de mes facteurs d'authentification (application AGOV access ou cl&eacute; de s&eacute;curit&eacute;) recovery_questionnaire_reason_selection.answer10=J'ai perdu l'un de mes facteurs d'authentification (application AGOV access ou cl&eacute; de s&eacute;curit&eacute;)
recovery_questionnaire_reason_selection.answer2=Je n'ai pas pu terminer mon inscription recovery_questionnaire_reason_selection.answer2=Je n'ai pas pu terminer mon inscription
recovery_questionnaire_reason_selection.answer3=J'ai supprim&eacute;, r&eacute;install&eacute; ou r&eacute;initialis&eacute; mon application d'acc&egrave;s AGOV recovery_questionnaire_reason_selection.answer3=J'ai supprim&eacute;, r&eacute;install&eacute; ou r&eacute;initialis&eacute; mon application AGOV access
recovery_questionnaire_reason_selection.answer4=J'ai perdu mon t&eacute;l&eacute;phone / cl&eacute; de s&eacute;curit&eacute; recovery_questionnaire_reason_selection.answer4=J'ai perdu mon t&eacute;l&eacute;phone / cl&eacute; de s&eacute;curit&eacute;
recovery_questionnaire_reason_selection.answer5=J'ai un nouveau t&eacute;l&eacute;phone et j'ai oubli&eacute; de transf&eacute;rer mon application AGOV access recovery_questionnaire_reason_selection.answer5=J'ai un nouveau t&eacute;l&eacute;phone et j'ai oubli&eacute; de transf&eacute;rer mon application AGOV access
recovery_questionnaire_reason_selection.answer6=J'ai oubli&eacute; mon PIN pour l'application AGOV access recovery_questionnaire_reason_selection.answer6=J'ai oubli&eacute; mon PIN pour l'application AGOV access

View File

@ -1,5 +1,15 @@
accept.button.label=Accettare accept.button.label=Accettare
agov-ident.done.message=Il vostro conto AGOV &egrave; ora pronto per l'uso. Pu&ograve; chiudere questa pagina.
agov-ident.done.title=Finito
agov-ident.failed.instruction=Per completare la registrazione &egrave; necessario disporre di un account AGOV e superare la verifica dei dati suggerita. Riprova.
agov-ident.failed.message=Registrazione annullata o verifica dei dati posticipata
agov-ident.failed.title=Verifica necessaria
agov-ident.invalid-url.instruction=Il link utilizzato per accedere a questa pagina non &egrave; valido. Assicuratevi di utilizzarlo come ricevuto, senza errori di battitura, oppure cliccate direttamente sulla pagina in cui &egrave; pubblicato.
agov-ident.invalid-url.message=Il link non pu&ograve; essere elaborato
agov-ident.invalid-url.title=Link non valido
agov-ident.onboarding=Registrazione e verifica
agov-ident.retry=Riprova
cancel.button.label=Abortire cancel.button.label=Abortire
continue.button.label=Continua continue.button.label=Continua
darkModeSwitch.aria.label=Attivare la modalit&agrave; scura darkModeSwitch.aria.label=Attivare la modalit&agrave; scura
@ -57,12 +67,16 @@ general.fieldRequired=Campo obbligatorio.
general.getStarted=Iniziare general.getStarted=Iniziare
general.goAGOVHelp=Vai ad AGOV help general.goAGOVHelp=Vai ad AGOV help
general.goAccessApp=Login con AGOV access general.goAccessApp=Login con AGOV access
general.goToAccessApp=Vai all'app AGOV access
general.help=Aiuto general.help=Aiuto
general.help.link=https://agov.ch/help general.help.link=https://agov.ch/help
general.login=Accedere general.login=Accedere
general.login.accessApp=Accesso con l'App AGOV access
general.login.securityKey=Login con la chiave di sicurezza
general.loginSecurityKey=Iniziare il login con la chiave di sicurezza general.loginSecurityKey=Iniziare il login con la chiave di sicurezza
general.moreOptions=ALTRE OPZIONI
general.or=O general.or=O
general.otherOptions=ALTRE OPZIONI general.otherLoginMethods=Altri metodi di login
general.recovery=Ripristino general.recovery=Ripristino
general.recovery.help.link=https://help.agov.ch/?c=100recovery general.recovery.help.link=https://help.agov.ch/?c=100recovery
general.recoveryCode.downloadPdf=Salva come PDF general.recoveryCode.downloadPdf=Salva come PDF
@ -75,6 +89,8 @@ general.recoveryOngoing=Ripristino in corso
general.register=Registrarsi general.register=Registrarsi
general.registerNow=Si registri ora! general.registerNow=Si registri ora!
general.registration=Registrazione general.registration=Registrazione
general.registration.dontHaveAnAccountYet=Non ha ancora un AGOV account?
general.registration.seeOptions=Vedere le opzioni di registrazione
general.securityKey=Chiave di sicurezza general.securityKey=Chiave di sicurezza
general.skip.content=Vai al contenuto principale general.skip.content=Vai al contenuto principale
general.wrongPhoneNumber=Inserire un numero di cellulare valido general.wrongPhoneNumber=Inserire un numero di cellulare valido
@ -90,6 +106,7 @@ language.de=Deutsch
language.en=English language.en=English
language.fr=Fran&ccedil;ais language.fr=Fran&ccedil;ais
language.it=Italiano language.it=Italiano
language.rm=Rumantsch
languageDropdown.aria.label=Selezionare la lingua languageDropdown.aria.label=Selezionare la lingua
loainfo.description.200=Per accedere all'app &egrave; necessaria una verifica dei dati. La procedura pu&ograve; richiedere fino a 2&ndash;3 giorni lavorativi. loainfo.description.200=Per accedere all'app &egrave; necessaria una verifica dei dati. La procedura pu&ograve; richiedere fino a 2&ndash;3 giorni lavorativi.
loainfo.description.300=Per accedere all'app dobbiamo verificare i suoi dati tramite uno dei due processi. Al prossimo passaggio, pu&ograve; selezionare la procedura di verifica desiderata. loainfo.description.300=Per accedere all'app dobbiamo verificare i suoi dati tramite uno dei due processi. Al prossimo passaggio, pu&ograve; selezionare la procedura di verifica desiderata.
@ -107,9 +124,12 @@ mauth_usernameless.banner.error=Autenticazione interrotta.<br>Riprovare dopo che
mauth_usernameless.banner.info=La scansione &egrave; stata eseguita.<br>Continuare nell'app AGOV access. mauth_usernameless.banner.info=La scansione &egrave; stata eseguita.<br>Continuare nell'app AGOV access.
mauth_usernameless.banner.success=Autenticazione riuscita!<br>Aspettare di essere connessi. mauth_usernameless.banner.success=Autenticazione riuscita!<br>Aspettare di essere connessi.
mauth_usernameless.cannotLogin=Ha perso l'accesso alla sua app/chiave di sicurezza? mauth_usernameless.cannotLogin=Ha perso l'accesso alla sua app/chiave di sicurezza?
mauth_usernameless.cannotLogin.accessApp=Ha perso l'accesso al suo App AGOV access?
mauth_usernameless.cannotLogin.securityKey=Ha perso l'accesso alla sua chiave di sicurezza?
mauth_usernameless.hideQR=Nascondi il codice QR mauth_usernameless.hideQR=Nascondi il codice QR
mauth_usernameless.instructions=Per accedere, scansionare il codice QR con l'app AGOV access. mauth_usernameless.instructions=Per accedere, scansionare il codice QR con l'app AGOV access.
mauth_usernameless.noAccount=Non ha ancora un AGOV-Login ? mauth_usernameless.noAccount=Non ha ancora un AGOV account?
mauth_usernameless.selectLoginMethod=Selezionare il metodo di login
mauth_usernameless.showQR=Visualizza il codice QR mauth_usernameless.showQR=Visualizza il codice QR
mauth_usernameless.startRecovery=Inizia il recupero dell'account mauth_usernameless.startRecovery=Inizia il recupero dell'account
mauth_usernameless.useSecurityKey=Accedere utilizzando una chiave di sicurezza. mauth_usernameless.useSecurityKey=Accedere utilizzando una chiave di sicurezza.

View File

@ -104,7 +104,7 @@
<!-- source: pattern://2787b678d9cce5310a335419, pattern://fd3912c7af7a88b6342a4c78, pattern://12c979b6af0f15f1328656a4, pattern://24cbc652d3166c8374eda3cd, pattern://56955e7b6b92c254d7d1aae1, pattern://ac27dd7daad0ca2b7229bfaf, pattern://6df66943ca713eed2a25d935, pattern://6f9c9f982dcc7ef59a34f1f7, pattern://7518c6cc61e47eec6322ae17, pattern://ac27dd7daad0ca2b7229bfaf, pattern://6df66943ca713eed2a25d935, pattern://ac27dd7daad0ca2b7229bfaf, pattern://ac27dd7daad0ca2b7229bfaf --> <!-- source: pattern://2787b678d9cce5310a335419, pattern://fd3912c7af7a88b6342a4c78, pattern://12c979b6af0f15f1328656a4, pattern://24cbc652d3166c8374eda3cd, pattern://56955e7b6b92c254d7d1aae1, pattern://ac27dd7daad0ca2b7229bfaf, pattern://6df66943ca713eed2a25d935, pattern://6f9c9f982dcc7ef59a34f1f7, pattern://7518c6cc61e47eec6322ae17, pattern://ac27dd7daad0ca2b7229bfaf, pattern://6df66943ca713eed2a25d935, pattern://ac27dd7daad0ca2b7229bfaf, pattern://ac27dd7daad0ca2b7229bfaf -->
<AuthEngine useLiteralDictionary="true" literalDictionaryLanguages="en,de,fr,it" inputLanguageCookie="LANG" compatLevel="none" addAutheLevelToSecRoles="true" classPath="/opt/nevisidmcl/nevisauth/lib:/opt/nevisauth/plugin" propagateSession="false"> <AuthEngine useLiteralDictionary="true" literalDictionaryLanguages="en,de,fr,it" inputLanguageCookie="LANG" compatLevel="none" addAutheLevelToSecRoles="true" classPath="/opt/nevisidmcl/nevisauth/lib:/opt/nevisauth/plugin" propagateSession="false">
<!-- source: pattern://3fd09bb6cfbd34874595c263 --> <!-- source: pattern://3fd09bb6cfbd34874595c263 -->
<Domain name="IDENT-AuthenticationRealm" default="false" inactiveInterval="7200" reauthInterval="0" resetAuthenticationCondition="${inargs:cancel}"> <Domain name="IDENT-AuthenticationRealm" default="false" inactiveInterval="60" reauthInterval="0" resetAuthenticationCondition="${inargs:cancel}">
<Entry method="authenticate" state="IDENT-AuthenticationRealm_IDENT-Process-and-Dispatch"/> <Entry method="authenticate" state="IDENT-AuthenticationRealm_IDENT-Process-and-Dispatch"/>
<Entry method="authenticate" state="IDENT-AuthenticationRealm_IDENT-Process-and-Dispatch" selector="${request:currentResource:^http[s]?\u003A//[^/]+/process($|\?.*)$:true}"/> <Entry method="authenticate" state="IDENT-AuthenticationRealm_IDENT-Process-and-Dispatch" selector="${request:currentResource:^http[s]?\u003A//[^/]+/process($|\?.*)$:true}"/>
<Entry method="stepup" state="IDENT-AuthenticationRealm_Selector"/> <Entry method="stepup" state="IDENT-AuthenticationRealm_Selector"/>
@ -147,15 +147,15 @@
<!-- source: pattern://0f6977caedca600b17221f0a --> <!-- source: pattern://0f6977caedca600b17221f0a -->
<property name="script" value="file:///var/opt/nevisauth/default/conf/IdentProcessAndDispatch.groovy"/> <property name="script" value="file:///var/opt/nevisauth/default/conf/IdentProcessAndDispatch.groovy"/>
<!-- source: pattern://0f6977caedca600b17221f0a --> <!-- source: pattern://0f6977caedca600b17221f0a -->
<property name="parameter.rpcode.list" value="{&quot;f942502d-6c89-471b-af45-4d3806305e74&quot;: &quot;ch-agov-ident-work-epd-300&quot;, &quot;1ed07e93-2289-42ab-8feb-173ef8a8bdb6&quot;: &quot;ch-agov-ident-work-epd-400&quot;}"/> <property name="parameter.rpcode.list" value="{&quot;f942502d-6c89-471b-af45-4d3806305e74&quot;: &quot;ch-agov-ident-work-epd-300&quot;, &quot;1ed07e93-2289-42ab-8feb-173ef8a8bdb6&quot;: &quot;ch-agov-ident-work-epd-400&quot;, &quot;4c81a70f-d0f6-455d-9bad-0837b42159ab&quot;: &quot;ch-agov-ident-work-dimilar-400&quot;}"/>
</AuthState> </AuthState>
<AuthState name="IDENT-AuthenticationRealm_IDENT-Failed" class="ch.nevis.esauth.auth.states.standard.AuthError" final="true"> <AuthState name="IDENT-AuthenticationRealm_IDENT-Failed" class="ch.nevis.esauth.auth.states.standard.AuthError" final="true">
<!-- source: pattern://026e4ae8ef4cc5496a7fe8c6 --> <!-- source: pattern://026e4ae8ef4cc5496a7fe8c6 -->
<Response value="AUTH_ERROR"> <Response value="AUTH_ERROR">
<!-- source: pattern://026e4ae8ef4cc5496a7fe8c6 --> <!-- source: pattern://026e4ae8ef4cc5496a7fe8c6 -->
<Gui name="IDENT-Failed" label="${notes:agov.ident.error.title.label}"> <Gui name="IDENT-Failed" label="title.login">
<!-- source: pattern://026e4ae8ef4cc5496a7fe8c6 --> <!-- source: pattern://026e4ae8ef4cc5496a7fe8c6 -->
<GuiElem name="error" type="error" label="${notes:agov.ident.msg.label}"/> <GuiElem name="error" type="error" label="${notes:lasterrorinfo}" value="${notes:lasterror}"/>
</Gui> </Gui>
</Response> </Response>
</AuthState> </AuthState>
@ -230,9 +230,9 @@
<!-- source: pattern://5f2cdff72cb899bff468ad90 --> <!-- source: pattern://5f2cdff72cb899bff468ad90 -->
<Response value="AUTH_CONTINUE"> <Response value="AUTH_CONTINUE">
<!-- source: pattern://5f2cdff72cb899bff468ad90 --> <!-- source: pattern://5f2cdff72cb899bff468ad90 -->
<Gui name="IDENT-Succeeded" label="agov.ident.succeeded.title"> <Gui name="IDENT-Succeeded" label="title.login">
<!-- source: pattern://5f2cdff72cb899bff468ad90 --> <!-- source: pattern://5f2cdff72cb899bff468ad90 -->
<GuiElem name="info" type="info" label="agov.ident.succeeded.msg"/> <GuiElem name="info" type="info" label="not-used"/>
</Gui> </Gui>
</Response> </Response>
</AuthState> </AuthState>
@ -242,9 +242,9 @@
<!-- source: pattern://ea2c110e0adfa95722c2cc99 --> <!-- source: pattern://ea2c110e0adfa95722c2cc99 -->
<Response value="AUTH_CONTINUE"> <Response value="AUTH_CONTINUE">
<!-- source: pattern://ea2c110e0adfa95722c2cc99 --> <!-- source: pattern://ea2c110e0adfa95722c2cc99 -->
<Gui name="IDENT-Failed-WithRetry" label="${notes:agov.ident.error.title.label}"> <Gui name="IDENT-Failed-WithRetry" label="title.login">
<!-- source: pattern://ea2c110e0adfa95722c2cc99 --> <!-- source: pattern://ea2c110e0adfa95722c2cc99 -->
<GuiElem name="error" type="error" label="${notes:agov.ident.msg.label}"/> <GuiElem name="error" type="error"/>
<!-- source: pattern://ea2c110e0adfa95722c2cc99 --> <!-- source: pattern://ea2c110e0adfa95722c2cc99 -->
<GuiElem name="continue" type="button" label="continue.button.label" value="true"/> <GuiElem name="continue" type="button" label="continue.button.label" value="true"/>
</Gui> </Gui>
@ -624,7 +624,7 @@
<!-- source: pattern://2787b678d9cce5310a335419 --> <!-- source: pattern://2787b678d9cce5310a335419 -->
<property name="script" value="file:///var/opt/nevisauth/default/conf/OpOnbrdng-PreProcessing.groovy"/> <property name="script" value="file:///var/opt/nevisauth/default/conf/OpOnbrdng-PreProcessing.groovy"/>
<!-- source: pattern://2787b678d9cce5310a335419 --> <!-- source: pattern://2787b678d9cce5310a335419 -->
<property name="parameter.cookie.domain" value=".agov-w.azure.adnovum.net"/> <property name="parameter.cookie.domain" value="agov-w.azure.adnovum.net"/>
</AuthState> </AuthState>
<AuthState name="OP-ONBRDNG-AuthenticationRealm_OP-ONBRDNG-SamlServiceProvider-ProcessResponse" class="ch.nevis.esauth.auth.states.saml.ServiceProviderState" final="false" resumeState="false"> <AuthState name="OP-ONBRDNG-AuthenticationRealm_OP-ONBRDNG-SamlServiceProvider-ProcessResponse" class="ch.nevis.esauth.auth.states.saml.ServiceProviderState" final="false" resumeState="false">
<!-- source: pattern://9be76d365909bb2ec294569c --> <!-- source: pattern://9be76d365909bb2ec294569c -->

View File

@ -28,14 +28,14 @@ Configuration:
level: "INFO" level: "INFO"
- name: "AuthEngine" - name: "AuthEngine"
level: "INFO" level: "INFO"
- name: "AuthPerf" - name: "IdmAuth"
level: "INFO" level: "WARN"
- name: "Script" - name: "Script"
level: "INFO" level: "WARN"
- name: "StdStates" - name: "StdAuth"
level: "INFO" level: "WARN"
- name: "Vars" - name: "Vars"
level: "DEBUG" level: "WARN"
Root: Root:
level: "WARN" level: "WARN"
additivity: "false" additivity: "false"

View File

@ -1,12 +0,0 @@
apiVersion: "operator.nevis-security.ch/v1"
kind: "NevisTrustStore"
metadata:
name: "idm-job-default-signer-trust"
namespace: "adn-agov-nevisidm-admin-01-uat"
labels:
deploymentTarget: "idm-job"
annotations:
projectKey: "DEFAULT-ADN-AGOV-ADMIN-PROJECT"
patternId: "641ac4edf0c17383d3c0ea38"
spec:
keystores: []

View File

@ -0,0 +1,18 @@
apiVersion: "operator.nevis-security.ch/v1"
kind: "NevisTrustStore"
metadata:
name: "idm-job-nevisidm-sectoken-truststore"
namespace: "adn-agov-nevisidm-admin-01-uat"
labels:
deploymentTarget: "idm-job"
annotations:
projectKey: "DEFAULT-ADN-AGOV-ADMIN-PROJECT"
patternId: "641ac4edf0c17383d3c0ea38"
spec:
keystores:
- name: "auth-sh4r3d-nevisidm-sectoken-signer"
namespace: "adn-agov-nevisidm-admin-01-uat"
extraCerts:
- "-----BEGIN CERTIFICATE-----\nMIICwzCCAmigAwIBAgIQD2rG9y4zmGttpC7TICcclzAKBggqhkjOPQQDAjAYMRYw\nFAYDVQQDEw1zZWxmc2lnbmVkLWNhMB4XDTI1MDUxNzE0NTEyN1oXDTI2MDUxNzE0\nNTEyN1owVjELMAkGA1UEBhMCQ0gxDDAKBgNVBAgTA0s4UzEMMAoGA1UEBxMDSzhT\nMQwwCgYDVQQKEwNLOFMxDDAKBgNVBAsTA0s4UzEPMA0GA1UEAxMGc2lnbmVyMIIB\nIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmKBPRMnOhPbVwYUNgEt5ZaC+\nUqqCEqr8EsFfvespgBUpNYByoZWCT1K/iCoG9I7DLzNsrHIJ+HSy2hTXD15naOmb\nQout/E0Lh8sMaA7vx0oWJs9YKkQY3TnHqL8CEU3s/Ko3cylYBhsyjxJv/qqpJIsk\nVSMPmr8A1zh55sOmGzsb09aV0rxe4Z6/N0GH9lHyWsIXFRxSIpmtnYmXc1VKE0a5\n8Nxi4sVePN3phhM7YpW9E/XhCgZ2bie832K99A92Ui9qF7ZVKIrqNt4rfvbUWqch\nKFSsk3prslkAC4fmJ8U+DgpkfG0ihgw7u8BSlu9R/tTVT6eCQiBgoK+U3dZKMwID\nAQABo4GKMIGHMA4GA1UdDwEB/wQEAwIHgDAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\nKwYBBQUHAwIwDAYDVR0TAQH/BAIwADAfBgNVHSMEGDAWgBT7YRoWIjHwkvFicwvk\n0Tx/yA4uUTAnBgNVHREEIDAeggZzaWduZXKBFG5vcmVwbHlAbG9jYWwuZG9tYWlu\nMAoGCCqGSM49BAMCA0kAMEYCIQCJJwGCbarhhgJ10hQxup5l6VTVa8S5orf1kUQX\nkGYLqgIhANYdMwH8gPzck432bomVRXRVHqbvUIny7/mIRFJGvlne\n-----END CERTIFICATE-----\n"
- "-----BEGIN CERTIFICATE-----\nMIIBcTCCARagAwIBAgIQWRl1eifIt8yohQYzh6yr/jAKBggqhkjOPQQDAjAYMRYw\nFAYDVQQDEw1zZWxmc2lnbmVkLWNhMB4XDTIzMDYyODE0MzI0MFoXDTQzMDYyODE0\nMzI0MFowGDEWMBQGA1UEAxMNc2VsZnNpZ25lZC1jYTBZMBMGByqGSM49AgEGCCqG\nSM49AwEHA0IABEwcjsIhSyyh0i9zP1G7ReOkFt/djzlGoUtSd5v3ZEk5QoZYjfl9\n04HdaZzrmveB2aRppbXgW7//s2Ma8wTd5uejQjBAMA4GA1UdDwEB/wQEAwICpDAP\nBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBT7YRoWIjHwkvFicwvk0Tx/yA4uUTAK\nBggqhkjOPQQDAgNJADBGAiEAgyg9t0qgb+czuscs07pNGI+12BedrD+y71psIlqx\nt2UCIQC/85UXyjYI9zg7Mg7rROTbGNCU3Jq/KIC3VzbbD+68VA==\n-----END CERTIFICATE-----\n"
- "-----BEGIN CERTIFICATE-----\nMIICwjCCAmigAwIBAgIQQ5naR3IENaVymFpP7DHo3DAKBggqhkjOPQQDAjAYMRYw\nFAYDVQQDEw1zZWxmc2lnbmVkLWNhMB4XDTI1MDUxNzE0NTExOVoXDTI2MDUxNzE0\nNTExOVowVjELMAkGA1UEBhMCQ0gxDDAKBgNVBAgTA0s4UzEMMAoGA1UEBxMDSzhT\nMQwwCgYDVQQKEwNLOFMxDDAKBgNVBAsTA0s4UzEPMA0GA1UEAxMGc2lnbmVyMIIB\nIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5WQDdm5K7sjpnUGVeWU7MkuN\nfpzGoMBpzgrF0qyOInN0sE7WLuOmbrqQ94hPNcdX5wQ1m+UGj0TCsay+un/vPBWT\nNpj68WUnRD6rIbs14bTGAHZkQ+mYbWfidTUg4cw8WzmSpyTMwAxDEVmUneQjTkDK\nTD8N8kNrYG42ZH6tkRakuYX5gXE26eH2NaAAMFP6b5kfX8idV1WbVjFHdq7PdfQg\njwtVNCn74RbMT8cBBAww/C2K3RAogTuWe8dloItmpK5y8boYyKsOiFFg1OzV9p+L\ndN5tLoiUHnPvRRbGcOua4fvJJXgFEB943Wo1EGRlDEmYQ1YpvGvgukm3LPvbCwID\nAQABo4GKMIGHMA4GA1UdDwEB/wQEAwIHgDAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\nKwYBBQUHAwIwDAYDVR0TAQH/BAIwADAfBgNVHSMEGDAWgBT7YRoWIjHwkvFicwvk\n0Tx/yA4uUTAnBgNVHREEIDAeggZzaWduZXKBFG5vcmVwbHlAbG9jYWwuZG9tYWlu\nMAoGCCqGSM49BAMCA0gAMEUCIFJuHTAtp3mPsEk3G90t6PCY46Kc1AejyqcCP4Gt\nan3CAiEA9inWU6SwPd9pWf7hs9FUIGMZonwHgx66Q9qKdeTnjy0=\n-----END CERTIFICATE-----\n"

View File

@ -46,14 +46,14 @@ spec:
podDisruptionBudget: podDisruptionBudget:
maxUnavailable: "50%" maxUnavailable: "50%"
git: git:
tag: "r-d8899f360bd8076bfa2efcae7b1a2e22f1d86262" tag: "r-3944ffd65b942f8ce7cea4316e8f0ebdd3fd083a"
dir: "DEFAULT-ADN-AGOV-ADMIN-PROJECT/DEFAULT-ADN-AGOV-ADMIN-INV/idm-job" dir: "DEFAULT-ADN-AGOV-ADMIN-PROJECT/DEFAULT-ADN-AGOV-ADMIN-INV/idm-job"
credentials: "git-credentials" credentials: "git-credentials"
keystores: keystores:
- "idm-job-default-identity" - "idm-job-default-identity"
truststores: truststores:
- "idm-job-default-tls-client-trust" - "idm-job-default-tls-client-trust"
- "idm-job-default-signer-trust" - "idm-job-nevisidm-sectoken-truststore"
podSecurity: podSecurity:
policy: "baseline" policy: "baseline"
automountServiceAccountToken: false automountServiceAccountToken: false

View File

@ -8,6 +8,7 @@
<ref bean="pruneOperationsAccountsJob"/> <ref bean="pruneOperationsAccountsJob"/>
<ref bean="IDM_Login_Event_Prune_History_Job"/> <ref bean="IDM_Login_Event_Prune_History_Job"/>
<ref bean="deleteExpiredUrlTicketsJob"/> <ref bean="deleteExpiredUrlTicketsJob"/>
<ref bean="pruneAgovAccountsJob"/>
</list> </list>
</property> </property>
<property name="triggers"> <property name="triggers">
@ -17,6 +18,7 @@
<ref bean="pruneOperationsAccountsJobTrigger"/> <ref bean="pruneOperationsAccountsJobTrigger"/>
<ref bean="IDM_Login_Event_Prune_History_Job_Trigger"/> <ref bean="IDM_Login_Event_Prune_History_Job_Trigger"/>
<ref bean="deleteExpiredUrlTicketsJobTrigger"/> <ref bean="deleteExpiredUrlTicketsJobTrigger"/>
<ref bean="pruneAgovAccountsJobTrigger"/>
</list> </list>
</property> </property>
<property name="dataSource"> <property name="dataSource">
@ -49,7 +51,7 @@
<bean class="org.quartz.JobDataMap"> <bean class="org.quartz.JobDataMap">
<constructor-arg> <constructor-arg>
<map> <map>
<entry key="days" value="365"/> <entry key="days" value="70"/>
<entry key="skipList" value="tidma_user_login_info_v,tidma_cred_login_info_v,tidma_credential_v,tidma_fido2_v,tidma_fido_uaf_v"/> <entry key="skipList" value="tidma_user_login_info_v,tidma_cred_login_info_v,tidma_credential_v,tidma_fido2_v,tidma_fido_uaf_v"/>
</map> </map>
</constructor-arg> </constructor-arg>
@ -80,7 +82,7 @@
</property> </property>
</bean> </bean>
<bean class="org.springframework.scheduling.quartz.JobDetailFactoryBean" id="pruneOperationsAccountsJob"> <bean class="org.springframework.scheduling.quartz.JobDetailFactoryBean" id="pruneOperationsAccountsJob">
<property name="description" value="Archive and delete obsolete shadow accounts"/> <property name="description" value="Archive and delete obsolete operations accounts"/>
<property name="jobClass" value="ch.nevis.idm.batch.jobs.UpdateUserStateJob"/> <property name="jobClass" value="ch.nevis.idm.batch.jobs.UpdateUserStateJob"/>
<property name="durability" value="true"/> <property name="durability" value="true"/>
<property name="jobDataMap"> <property name="jobDataMap">
@ -91,8 +93,8 @@
<entry key="considerUsersNeverLoggedIn" value="true"/> <entry key="considerUsersNeverLoggedIn" value="true"/>
<entry key="sendWarning" value="false"/> <entry key="sendWarning" value="false"/>
<entry key="daysGracePeriod" value="1"/> <entry key="daysGracePeriod" value="1"/>
<entry key="daysStatusDisabled" value="30"/> <entry key="daysStatusDisabled" value="130"/>
<entry key="daysStatusArchived" value="335"/> <entry key="daysStatusArchived" value="235"/>
<entry key="disableOutdatedUsers" value="true"/> <entry key="disableOutdatedUsers" value="true"/>
<entry key="disableNotYetActiveUsers" value="false"/> <entry key="disableNotYetActiveUsers" value="false"/>
<entry key="excludeTechnicalUsers" value="true"/> <entry key="excludeTechnicalUsers" value="true"/>
@ -112,7 +114,7 @@
<bean class="org.quartz.JobDataMap"> <bean class="org.quartz.JobDataMap">
<constructor-arg> <constructor-arg>
<map> <map>
<entry key="days" value="31"/> <entry key="days" value="15"/>
<entry key="skipList" value="tidma_application_v,tidma_authorization_appl_v,tidma_authorization_client_v,tidma_authorization_erole_v,tidma_authorization_unit_v,tidma_authorization_v,tidma_cert_info_v,tidma_client_application_v,tidma_client_v,tidma_consent_v,tidma_dict_entry_v,tidma_dict_entry_value_v,tidma_enterprise_auth_v,tidma_enterprise_role_v,tidma_erole_member_v,tidma_mobile_signature_v,tidma_oath_v,tidma_personal_answer_v,tidma_personal_question_v,tidma_policy_configuration_v,tidma_policy_parameter_v,tidma_profile_v,tidma_property_allowed_val_v,tidma_property_v,tidma_property_value_v,tidma_role_v,tidma_saml_federation_v,tidma_template_collection_v,tidma_template_text_v,tidma_template_v,tidma_terms_application_v,tidma_terms_url_v,tidma_terms_v,tidma_unit_cred_policy_v,tidma_unit_v,tidma_user_v"/> <entry key="skipList" value="tidma_application_v,tidma_authorization_appl_v,tidma_authorization_client_v,tidma_authorization_erole_v,tidma_authorization_unit_v,tidma_authorization_v,tidma_cert_info_v,tidma_client_application_v,tidma_client_v,tidma_consent_v,tidma_dict_entry_v,tidma_dict_entry_value_v,tidma_enterprise_auth_v,tidma_enterprise_role_v,tidma_erole_member_v,tidma_mobile_signature_v,tidma_oath_v,tidma_personal_answer_v,tidma_personal_question_v,tidma_policy_configuration_v,tidma_policy_parameter_v,tidma_profile_v,tidma_property_allowed_val_v,tidma_property_v,tidma_property_value_v,tidma_role_v,tidma_saml_federation_v,tidma_template_collection_v,tidma_template_text_v,tidma_template_v,tidma_terms_application_v,tidma_terms_url_v,tidma_terms_v,tidma_unit_cred_policy_v,tidma_unit_v,tidma_user_v"/>
</map> </map>
</constructor-arg> </constructor-arg>
@ -136,12 +138,36 @@
</bean> </bean>
</property> </property>
</bean> </bean>
<bean class="org.springframework.scheduling.quartz.JobDetailFactoryBean" id="pruneAgovAccountsJob">
<property name="description" value="Archive and delete obsolete AGOV accounts (100d no activity)"/>
<property name="jobClass" value="ch.nevis.idm.batch.jobs.UpdateUserStateJob"/>
<property name="durability" value="true"/>
<property name="jobDataMap">
<bean class="org.quartz.JobDataMap">
<constructor-arg>
<map>
<entry key="daysNoActivity" value="100"/>
<entry key="neverLoggedInDaysNoActivity" value="100"/>
<entry key="considerUsersNeverLoggedIn" value="true"/>
<entry key="sendWarning" value="false"/>
<entry key="daysGracePeriod" value="1"/>
<entry key="daysStatusDisabled" value="100"/>
<entry key="daysStatusArchived" value="10"/>
<entry key="disableOutdatedUsers" value="true"/>
<entry key="disableNotYetActiveUsers" value="false"/>
<entry key="excludeTechnicalUsers" value="true"/>
<entry key="restrictToClients" value="cfa9c9b9-119f-4dff-9bb8-86d7c0cf2720"/>
</map>
</constructor-arg>
</bean>
</property>
</bean>
<bean class="org.springframework.scheduling.quartz.CronTriggerFactoryBean" id="IDM_Default_Prune_History_Job_Trigger"> <bean class="org.springframework.scheduling.quartz.CronTriggerFactoryBean" id="IDM_Default_Prune_History_Job_Trigger">
<property name="name" value="IDM_Default_Prune_History_Job_Trigger"/> <property name="name" value="IDM_Default_Prune_History_Job_Trigger"/>
<property name="description" value="Generated by nevisAdmin 4 pattern 0957497767812057fbf138cf"/> <property name="description" value="Generated by nevisAdmin 4 pattern 0957497767812057fbf138cf"/>
<property name="group" value="BatchGroup"/> <property name="group" value="BatchGroup"/>
<property name="jobDetail" ref="IDM_Default_Prune_History_Job"/> <property name="jobDetail" ref="IDM_Default_Prune_History_Job"/>
<property name="cronExpression" value="10 0 0 18 * ?"/> <property name="cronExpression" value="00 10 00 18 * ?"/>
</bean> </bean>
<bean class="org.springframework.scheduling.quartz.CronTriggerFactoryBean" id="pruneShadowAccountsJobTrigger"> <bean class="org.springframework.scheduling.quartz.CronTriggerFactoryBean" id="pruneShadowAccountsJobTrigger">
<property name="description" value="Archive and delete obsolete shadow accounts"/> <property name="description" value="Archive and delete obsolete shadow accounts"/>
@ -165,4 +191,9 @@
<property name="jobDetail" ref="deleteExpiredUrlTicketsJob"/> <property name="jobDetail" ref="deleteExpiredUrlTicketsJob"/>
<property name="cronExpression" value="45 0 0 * * ?"/> <property name="cronExpression" value="45 0 0 * * ?"/>
</bean> </bean>
<bean class="org.springframework.scheduling.quartz.CronTriggerFactoryBean" id="pruneAgovAccountsJobTrigger">
<property name="description" value="Archive and delete obsolete AGOV accounts (100d no activity)"/>
<property name="jobDetail" ref="pruneAgovAccountsJob"/>
<property name="cronExpression" value="59 23 17 12 * ?"/>
</bean>
</beans> </beans>

View File

@ -0,0 +1,828 @@
#header > div > div.navbar-header.nav.navbar-nav.mr-auto > span::after {
content: "AGOV Operations - WORK";
color: #AB47BC;
display: inline-block;
margin-left: 5px
}
#mainLayoutTable > tbody > tr:nth-child(3) > td.bgCont > footer > img {
display: none;
}
.navbar-default li>a {
color: #501eb6;
}
/* facing.css */
body {
font-family: "Averta-Regular", 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif;
font-size: 12px;
color: #000;
margin-top: 0;
margin-left: 0;
margin-right: 0;
margin-bottom: 0;
background-color: #fff;
}
form, div {
margin: 0;
}
table, img {
border: 0;
}
.frmTable, .tblTable {
border: 0px solid #009999;
width: 100%;
border-spacing: 1px;
}
.border2 {
border: 1px solid #a9a9a9;
}
td.bgNavi {
height: 100%;
}
table.navi {
width: 210px;
border-spacing: 0px;
}
table.bgNavi {
height: 100%;
}
/* - - - - - - - - - - - - - - - - - - NAVI LAYOUT - - - - - - - - - - - - - - - - - - - - - - - */
ul.lev01 {
list-style: none;
font-weight: bold;
font-family: "Averta-Bold", sans-serif;
margin-top: 0.0em;
margin-bottom: 0em;
padding-left: 0.0em;
margin-left: 0px; /*IE needs this */
white-space: nowrap;
}
li.lev01 {
list-style: none;
margin: 0px;
padding-top: 0.3em;
}
li.lev01 p.title {
padding-top: 1em;
padding-bottom: 0.3em;
padding-left: 10px;
margin: 0px;
border-bottom: 1px solid #501eb6;
}
ul.lev02, ul.lev02active {
list-style: none;
font-weight: normal;
margin-top: 0.0em;
margin-bottom: 0em;
padding: 0.0em;
margin-left: 0px; /*IE needs this */
white-space: nowrap;
}
li.lev02 {
list-style: none;
margin: 0px;
padding-top: 0.0em;
}
li.lev02 p.title {
padding-top: 1em;
padding-bottom: 0.3em;
padding-left: 10px;
margin: 0px;
font-weight: bold;
font-family: "Averta-Bold", sans-serif;
color: #333;
border-bottom: 0px solid #a9a9a9;
}
li.lev02 a {
list-style: none;
display: block;
font-size: 12px;
color: #000;
text-decoration: none;
margin: 0px;
padding-top: 0.3em;
padding-bottom: 0.3em;
padding-left: 10px;
height: 1em;
/*diese Angabe ist nur fuer den IE, damit die ganze Linkflaeche klickbar ist */
}
li.lev02 a {
height: auto;
/*hebt fuer nicht-IE Browser die Hoehenangabe 1em wieder auf */
}
li.lev02 a:link, li.lev02 a:visited {
color: #000;
text-decoration: none;
}
li.lev02 a:active, li.lev02 a:hover {
display: block;
color: #501eb6;
background-color: #f8f8f8;
text-decoration: none;
}
li.lev02 a:link, li.lev02 a:visited {
height: auto;
/*hebt fuer nicht-IE Browser die Hoehenangabe 1em wieder auf */
}
li.lev02active {
color: #501eb6;
background-color: #f8f8f8;
}
li.lev02active p.title {
font-weight: bold;
font-family: "Averta-Bold", sans-serif;
border-bottom: 0;
}
li.lev02active a {
list-style: none;
margin: 0px;
padding-top: 0.3em;
padding-bottom: 0.3em;
padding-left: 10px;
height: 1em;
/*diese Angabe ist nur fuer den IE, damit die ganze Linkflaeche klickbar ist */
}
li.lev02active a:link, li.lev02active a:visited {
display: block;
color: #501eb6;
background-color: #f8f8f8;
text-decoration: none;
height: 1em;
/*diese Angabe ist nur fuer den IE, damit die ganze Linkflaeche klickbar ist */
}
li.lev02active a:link, li.lev02active a:visited {
height: auto;
/*hebt fuer nicht-IE Browser die Hoehenangabe 1em wieder auf */
}
li.lev02active a:active, li.lev02active a:hover {
display: block;
color: #501eb6;
background-color: #f8f8f8;
text-decoration: none;
height: 1em;
}
li.lev02active a:active, li.lev02active a:hover {
height: auto;
/*hebt fuer nicht-IE Browser die Hoehenangabe 1em wieder auf */
}
ul.lev03, ul.lev03active {
list-style: none;
font-weight: normal;
margin-top: 0.0em;
margin-bottom: 0em;
padding: 0.0em;
margin-left: 10px; /*IE needs this */
white-space: nowrap;
}
li.lev03 a {
list-style: none;
display: block;
font-size: 12px;
color: #000;
text-decoration: none;
margin: 0px;
padding-top: 0.3em;
padding-bottom: 0.3em;
padding-left: 20px;
height: 1em;
/*diese Angabe ist nur fuer den IE, damit die ganze Linkflaeche klickbar ist */
}
li.lev03 a {
height: auto;
/*hebt fuer nicht-IE Browser die Hoehenangabe 1em wieder auf */
}
li.lev03 a:link, li.lev03 a:visited {
color: #000;
text-decoration: none;
}
li.lev03 a:active, li.lev03 a:hover {
display: block;
color: #501eb6;
background-color: #f8f8f8;
text-decoration: none;
}
li.lev03 a:link, li.lev03 a:visited {
height: auto;
/*hebt fuer nicht-IE Browser die Hoehenangabe 1em wieder auf */
}
li.lev03active a {
list-style: none;
margin: 0px;
padding-top: 0.3em;
padding-bottom: 0.3em;
padding-left: 20px;
height: 1em;
/*diese Angabe ist nur fuer den IE, damit die ganze Linkflaeche klickbar ist */
}
li.lev03active a:link, li.lev03active a:visited {
display: block;
color: #501eb6;
background-color: #f8f8f8;
text-decoration: none;
height: 1em;
/*diese Angabe ist nur fuer den IE, damit die ganze Linkflaeche klickbar ist */
}
li.lev03active a:link, li.lev03active a:visited {
height: auto;
/*hebt fuer nicht-IE Browser die Hoehenangabe 1em wieder auf */
}
li.lev03active a:active, li.lev03active a:hover {
display: block;
color: #501eb6;
background-color: #f8f8f8;
text-decoration: none;
height: 1em;
}
li.lev03active a:active, li.lev03active a:hover {
height: auto;
/*hebt fuer nicht-IE Browser die Hoehenangabe 1em wieder auf */
}
/* ---------- misc settings ------------- */
.bgHeader {
vertical-align: top;
background-color: #38373b;
width: 100%;
border-spacing: 0px;
border-collapse: collapse;
}
/* Header logo styles */
.site-logo {
background: transparent url("../images/AGOV-Logo.png") left top
no-repeat;
width: 64px;
height: 64px;
background-size: 64px 64px;
transition: background-size 0.25s linear, width 0.25s linear, height
0.25s linear;
}
/* Header logo collapsed styles */
.scrolled .site-logo {
background: transparent url("../images/AGOV-Logo.png") left top
no-repeat;
width: 36px;
height: 36px;
background-size: 36px 36px;
transition: background-size 0.25s linear, width 0.25s linear, height
0.25s linear;
}
/* Header component name */
.site-title {
font-size: 1.7em;
align-self: center;
margin-left: 0 !important;
color: #501eb6;
}
.scrolled .site-title {
font-size: 1.7em;
}
.bgCont {
vertical-align: top;
background-color: #ffffff;
}
td.bgCont {
/*mod teddy for IE6*/
width: 100%;
padding: 10px;
font-size: 12px;
}
/*Links*/
.bgCont a:link, .bgCont a:visited {
font-size: 12px;
color: #501eb6;
text-decoration: none;
}
.bgCont a:active, .bgCont a:hover {
font-size: 12px;
color: #501eb6;
text-decoration: none;
}
.Headline {
font-size: 20px;
color: #000000;
padding-bottom: 0px;
margin-bottom: 4px;
}
.tblRowNowrap {
white-space: nowrap;
}
/* ---------- color config ---------- */
#header {
background-color: white;
border-bottom: 1px solid #501eb6;
}
#header-navbar-collapse {
background-color: #fff;
}
/* Menu item basic style */
.navbar-default .navbar-nav>li>a {
color: #501eb6;
font-size: 14px;
}
/* Header dropdown menu general styles */
.nav>li>.dropdown-menu {
border: 1px solid #501eb6;
border-radius: 3px;
padding: 17px 0;
margin-top: -5px;
right: 0;
left: auto;
-webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
box-shadow: 0 6px 12px rgba(0,0,0,.175);
line-height: 20px;
font-size: 14px;
}
.dropdown-toggle::after {
vertical-align: middle;
margin-left: 0;
}
.dropdown-item>a {
display: block;
}
.navbar-default .navbar-nav>li>a:hover,
.dropdown>a:hover,
.dropdown.show>a,
a>.fa-question-circle:hover {
color: #501eb6;
text-decoration: none;
}
.dropdown-item {
padding: 0;
color: #212529;
display: block;
}
.navbar-default .dropdown-menu li>a:focus,
.navbar-default .dropdown-menu li>a:hover {
background-color: #501eb6;
color: white;
text-decoration: none;
}
/* Language dropdown */
.language-code {
text-transform: uppercase;
color: #501eb6;
font-weight: bold;
font-family: "Averta-Bold", sans-serif;
display: table-cell;
/* in order to align the language codes horizontally */
width: 23px;
}
/* Quick Search text field */
.navbar-form .form-control {
height: 28px;
width: 320px;
border: 1px solid #501eb6;
border-radius: 3px;
}
#header .form-control:focus {
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px #501eb6;
}
td.navi, span.navi, span.navi a, .tblHeader, .tblFooter, td.frmLabel, td.frmConfirmLabel,
td.frmInput, td.frmInputStatus, td.frmInputLegend, td.frmConfirmInput,
td.frmLabelMandatory, input, textarea {
color: #000000;
}
span.navi, td.navi a:hover {
color: #501eb6;
}
span.mandatory {
color: #c80000;
}
td.tab {
background-color: #e3e4e6;
}
td.tabActive, td.frmTitelSmall {
background-color: #bacce1;
}
a.tab, a.frmEdit, a.frmEdit:hover {
color: #501eb6;
}
a.tab:hover {
color: #501eb6;
}
.tblTitel, td.frmTitel {
color: #38373b;
background-color: #f8f8f8;
border-top: 1px solid #501eb6;
}
.tblSubTitel2, tblSubTitel1, a.frmTitel, a.frmTitel:hover {
color: #1d3e9c;
}
.tblSubTitel1 {
background-color: #cddcec;
}
.tblHeader, .tblFooter {
background-color: #f0f1f3;
}
.tblHeader a img {
margin-left: 8px;
margin-top: 2px;
vertical-align: text-bottom;
}
/*Links auf dunekgrauem BG*/
.tblHeader a, td.tblFooter a.tbl, .tblRowOdd a, .tblRowEven a {
color: #501eb6;
}
.tblRowOdd, .tblRowOddNr, .tblRowOddCentered {
font-size: 12px;
padding: 3px 7px;
background-color: #ffffff;
word-wrap: break-word;
}
.tblRowEven, .tblRowEvenNr, .tblRowEvenCentered {
font-size: 12px;
padding: 3px 7px;
background-color: #f0f1f3;
word-wrap: break-word;
}
.tblRowOddCentered, .tblRowEvenCentered {
text-align: center;
}
.tblRowOdd a, .tblRowEven a, a.tbl {
color: #501eb6;
}
.tblRowOdd a:hover, .tblRowEven a:hover, a.tbl:hover {
color: #501eb6;
}
.deactivated {
color: #999;
}
.deactivated a {
color: #999;
}
.deactivated a:link, .deactivated a:visited {
color: #999;
}
.deactivated a:active, .deactivated a:hover {
color: #999;
}
td.frmTitelSmall {
color: #1d2f68;
}
td.frmLabel, td.frmLabelMandatory, td.frmLabelHi {
border: 1px solid #f0f1f3;
background-color: #ffffff;
color: #323232;
text-align: right;
}
td.frmLabelHi {
font-weight: bold;
font-family: "Averta-Bold", sans-serif;
}
td.frmLabelHi {
font-weight: bold;
font-family: "Averta-Bold", sans-serif;
}
td.frmConfirmLabel {
background-color: #fff4c0;
text-align: right;
vertical-align: middle;
}
td.frmInput, td.frmInputIcon, td.frmInputStatus {
border: 1px solid #f0f1f3;
background-color: #ffffff;
font-weight: bold;
font-family: "Averta-Bold", sans-serif;
white-space: nowrap;
}
#historyDiffRecordTable td.frmInput,
#historyDiffRecordTable td.frmInputIcon,
#historyDiffRecordTable td.frmInputStatus {
white-space: normal;
}
td.frmConfirmInput {
background-color: #fff4c0;
text-align: right;
}
input {
background-color: #ffffff;
border: 1px solid #a9a9a9;
font-weight: bold;
font-family: "Averta-Bold", sans-serif;
height: auto;
}
textarea {
background-color: #ffffff;
border: 1px solid #a9a9a9;
font-weight: bold;
font-family: "Averta-Bold", sans-serif;
resize: vertical;
}
input.submit {
font-weight: normal;
}
select {
background-color: #ffffff;
}
/* ---------- Breadcrumbs config ---------- */
ul.breadcrumbs {
padding: 0px;
margin-left: 0px;
margin-bottom: 4px;
margin-right: 90px;
margin-top: 4px;
font-size: 12px;
list-style-type: none;
color: #a9a9a9;
}
ul.breadcrumbs li {
display: inline;
color: #000;
}
.breadcrumbs li a {
display: block;
color: #501eb6;
text-decoration: none;
height: 1em;
}
.breadcrumbs li a:link, .breadcrumbs li a:visited {
display: inline;
color: #501eb6;
text-decoration: none;
}
.breadcrumbs li a:active, .breadcrumbs li a:hover {
color: #501eb6;
text-decoration: none;
height: 1em;
/* diese Angabe ist nur fuer den IE, damit die ganze Linkflaeche klickbar ist */
}
/* Add a lightgrey slash character as breadcrumb separator between breadcrumbs. */
.breadcrumbs>li+li::before {
padding: 0 5px;
color: #ccc;
content: "/\00a0";
}
/* Error Message */
.error {
font-size: 12px;
font-style: normal;
font-variant: normal;
color: #000;
}
ul.error {
list-style-type: disc;
font-weight: bold;
font-family: "Averta-Bold", sans-serif;
padding: 8px;
margin: 0px 20px 0px 20px;
}
ul.error li {
line-height: 16px;
}
table.errorBorder {
border: 1px solid #ff7700;
background-color: #ffeeaa;
margin-top: 30px;
width: 100%;
border-spacing: 0px;
}
/* Success Message */
.message {
font-size: 12px;
font-style: normal;
color: #000;
}
ul.message {
list-style-type: disc;
font-weight: bold;
font-family: "Averta-Bold", sans-serif;
padding: 8px;
margin: 0px 20px 0px 20px;
}
ul.message li {
line-height: 16px;
font-size: 12px;
}
table.messageBorder {
font-size: 12px;
border: 1px solid #501eb6;
background-color: #deefee;
margin-top: 30px;
width: 100%;
border-spacing: 0px;
}
/* Info message */
table.infoBorder {
font-size: 12px;
border: 1px solid #3783ff;
background-color: #3783ff;
margin-top: 30px;
width: 100%;
border-spacing: 0px;
}
.infoBorder a:link, .infoBorder a:visited {
font-size: 12px;
color: #fbfbfb;
text-decoration: none;
}
.infoBorder a:active, .infoBorder a:hover {
font-size: 12px;
color: #ffffff;
text-decoration: none;
}
/* Question message */
table.questionBorder {
font-size: 12px;
border: 1px solid #f4c649;
background-color: #fff4c0;
margin-top: 30px;
width: 100%;
border-spacing: 0px;
}
/* Navigation Configuration */
#nav_user_administration, #nav_new_user, #nav_modify_user,
#nav_modify_user, #nav_search_by_profile, #nav_search_by_credential {
display: block;
}
#nav_unit_admin, #nav_new_main_unit, #nav_modify_unit {
display: block;
}
#nav_system_admin, #nav_applications, #nav_new_application,
#nav_modify_application {
display: block;
}
#nav_mail_templates, #nav_new_mail_template, #nav_modify_mail_template {
display: block;
}
#nav_policies, #nav_new_policy, #nav_modify_policy {
display: block;
}
#nav_batch_jobs, #nav_planned_jobs {
display: block;
}
#nav_client_administration, #nav_new_client, #nav_modify_client,
#nav_assign_roles, #nav_assign_policies, #nav_assign_mail_templates {
display: block;
}
#nav_selfadmin, #nav_my_user_data {
display: block;
}
.placeholder {
color: #aaa;
}
/* Quick Search (autocomplete) */
.tt-hint {
color: #999
}
.tt-menu {
width: 320px;
padding: 17px 0;
background-color: #fff;
border: 1px solid #501eb6;
border-radius: 3px;
box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.tt-suggestion {
padding: 3px 28px;
line-height: 24px;
}
.tt-suggestion:hover {
cursor: pointer;
color: #fff;
background-color: #501eb6;
}
.tt-suggestion.tt-cursor {
color: #fff;
background-color: #9cc;
}
.empty-message {
padding: 3px 28px;
}
/* - - - - - - - - - - - - - - - - - - FOOTER - - - - - - - - - - - - - - - - - - - - - - - */
.footer {
color: #501eb6;
background-color: transparent;
height: 40px;
padding-top: 0;
padding-bottom: 24px;
margin-top: 36px;
border-top: 1px solid #501eb6;
}

View File

@ -29,7 +29,13 @@ Configuration:
- ref: "BATCHJOB" - ref: "BATCHJOB"
- name: "ch.nevis.idm.standalone" - name: "ch.nevis.idm.standalone"
level: "INFO" level: "INFO"
- name: "ch.adnovum.nevisidm.service.dbperformance" - name: "ch.nevis.idm.batch.jobs.IdmBatchJob"
level: "INFO"
- name: "ch.nevis.idm.batch.jobs.PruneHistoryJob"
level: "INFO"
- name: "ch.nevis.idm.batch.jobs.UpdateCredentialStateJob"
level: "INFO"
- name: "ch.nevis.idm.batch.jobs.UpdateUserStateJob"
level: "INFO" level: "INFO"
Root: Root:
level: "WARN" level: "WARN"

View File

@ -53,13 +53,17 @@ application.modules.event.repeat.count=-1
# source: pattern://0116b3002d0e713e23e6be72 # source: pattern://0116b3002d0e713e23e6be72
application.modules.provisioning.enabled=false application.modules.provisioning.enabled=false
# source: pattern://0116b3002d0e713e23e6be72 # source: pattern://0116b3002d0e713e23e6be72
database.connection.pool.size.max=5 database.connection.pool.size.max=10
# source: pattern://0116b3002d0e713e23e6be72 # source: pattern://0116b3002d0e713e23e6be72
database.connection.pool.size.min=5 database.connection.pool.size.min=5
# source: pattern://0116b3002d0e713e23e6be72 # source: pattern://0116b3002d0e713e23e6be72
database.connection.xa.enabled=false database.connection.xa.enabled=false
# source: pattern://0116b3002d0e713e23e6be72 # source: pattern://0116b3002d0e713e23e6be72
database.transaction.timeout=60 database.transaction.timeout=60
# source: pattern://0116b3002d0e713e23e6be72
web.gui.facing.cache.size=10000
# source: pattern://0116b3002d0e713e23e6be72
web.gui.facing.location=/var/opt/nevisidm/default/conf/facing
# source: pattern://641ac4edf0c17383d3c0ea38 # source: pattern://641ac4edf0c17383d3c0ea38
management.server.host=0.0.0.0 management.server.host=0.0.0.0
# source: pattern://641ac4edf0c17383d3c0ea38 # source: pattern://641ac4edf0c17383d3c0ea38
@ -103,7 +107,7 @@ server.tls.truststore=/var/opt/keys/trust/idm-job-default-tls-client-trust/trust
# source: pattern://641ac4edf0c17383d3c0ea38 # source: pattern://641ac4edf0c17383d3c0ea38
server.tls.truststore-passphrase=${exec:/var/opt/keys/trust/idm-job-default-tls-client-trust/keypass} server.tls.truststore-passphrase=${exec:/var/opt/keys/trust/idm-job-default-tls-client-trust/keypass}
# source: pattern://641ac4edf0c17383d3c0ea38 # source: pattern://641ac4edf0c17383d3c0ea38
server.auth.ninja.truststore=/var/opt/keys/trust/idm-job-default-signer-trust/truststore.jks server.auth.ninja.truststore=/var/opt/keys/trust/idm-job-nevisidm-sectoken-truststore/truststore.jks
# source: pattern://641ac4edf0c17383d3c0ea38 # source: pattern://641ac4edf0c17383d3c0ea38
management.healthchecks.enabled=true management.healthchecks.enabled=true
# source: pattern://641ac4edf0c17383d3c0ea38 # source: pattern://641ac4edf0c17383d3c0ea38

View File

@ -1,7 +1,7 @@
apiVersion: "operator.nevis-security.ch/v1" apiVersion: "operator.nevis-security.ch/v1"
kind: "NevisTrustStore" kind: "NevisTrustStore"
metadata: metadata:
name: "idm-default-tls-client-trust" name: "idm-nevisidm-frontend-truststore"
namespace: "adn-agov-nevisidm-admin-01-uat" namespace: "adn-agov-nevisidm-admin-01-uat"
labels: labels:
deploymentTarget: "idm" deploymentTarget: "idm"

View File

@ -13,4 +13,6 @@ spec:
- name: "auth-sh4r3d-nevisidm-sectoken-signer" - name: "auth-sh4r3d-nevisidm-sectoken-signer"
namespace: "adn-agov-nevisidm-admin-01-uat" namespace: "adn-agov-nevisidm-admin-01-uat"
extraCerts: extraCerts:
- "-----BEGIN CERTIFICATE-----\nMIIC0TCCAnigAwIBAgIQZvy+UXQEyt5CZ4HHs8QE4DAKBggqhkjOPQQDAjAYMRYw\nFAYDVQQDEw1zZWxmc2lnbmVkLWNhMB4XDTI0MDUxOTIyMjgzOFoXDTI1MDUxOTIy\nMjgzOFowXjELMAkGA1UEBhMCQ0gxDDAKBgNVBAgTA0s4UzEMMAoGA1UEBxMDSzhT\nMQwwCgYDVQQKEwNLOFMxDDAKBgNVBAsTA0s4UzEXMBUGA1UEAwwOTkVWSVNfU2Vj\nVG9rZW4wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDBiK7GDqcPYMtt\nhWhmx/HkSzatni8aLjyTOaVV2yfmJaiWCGTKs1MdQmKOGKMwXp3w2abThn0ce7Sl\nGipV8xGeLq1Wjr9UnpSjV2WarS6BXDET7dJ858yYISJwu8bk/rXdvft7NSIbjl2M\n4auf5AyVFFZ1vKLPX9drJmrQCnGZXqGm7BMLAjgh1b+utopfrwqcwWyg5JltTsTd\nN4ytHciAWOgILO9Tut/VHmQLZA7P4rDSRMzKA8OXg1DSImYXlZlUQqSiNjpJuwmz\njhgt+4pwys+xLfkaOic5RzMtv3YDXKgiWRH/m8JKdfLbkNsl3bNkB/2Q1Hb/LBPQ\n/OLxW+QNAgMBAAGjgZIwgY8wDgYDVR0PAQH/BAQDAgeAMB0GA1UdJQQWMBQGCCsG\nAQUFBwMBBggrBgEFBQcDAjAMBgNVHRMBAf8EAjAAMB8GA1UdIwQYMBaAFM9gPNKd\nzvDU2SS6FLCxzVDyYJwVMC8GA1UdEQQoMCaCDk5FVklTX1NlY1Rva2VugRRub3Jl\ncGx5QGxvY2FsLmRvbWFpbjAKBggqhkjOPQQDAgNHADBEAiAOOc9cD1IjF5MEc2DK\n4D6oQXWVtAiJLVp1zYq11V2e5QIgQ1CyWHKk+HqZJccyGPfnoB19s0X5RvNwUpJ9\nyVhnGXQ=\n-----END CERTIFICATE-----\n" - "-----BEGIN CERTIFICATE-----\nMIICwzCCAmigAwIBAgIQD2rG9y4zmGttpC7TICcclzAKBggqhkjOPQQDAjAYMRYw\nFAYDVQQDEw1zZWxmc2lnbmVkLWNhMB4XDTI1MDUxNzE0NTEyN1oXDTI2MDUxNzE0\nNTEyN1owVjELMAkGA1UEBhMCQ0gxDDAKBgNVBAgTA0s4UzEMMAoGA1UEBxMDSzhT\nMQwwCgYDVQQKEwNLOFMxDDAKBgNVBAsTA0s4UzEPMA0GA1UEAxMGc2lnbmVyMIIB\nIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmKBPRMnOhPbVwYUNgEt5ZaC+\nUqqCEqr8EsFfvespgBUpNYByoZWCT1K/iCoG9I7DLzNsrHIJ+HSy2hTXD15naOmb\nQout/E0Lh8sMaA7vx0oWJs9YKkQY3TnHqL8CEU3s/Ko3cylYBhsyjxJv/qqpJIsk\nVSMPmr8A1zh55sOmGzsb09aV0rxe4Z6/N0GH9lHyWsIXFRxSIpmtnYmXc1VKE0a5\n8Nxi4sVePN3phhM7YpW9E/XhCgZ2bie832K99A92Ui9qF7ZVKIrqNt4rfvbUWqch\nKFSsk3prslkAC4fmJ8U+DgpkfG0ihgw7u8BSlu9R/tTVT6eCQiBgoK+U3dZKMwID\nAQABo4GKMIGHMA4GA1UdDwEB/wQEAwIHgDAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\nKwYBBQUHAwIwDAYDVR0TAQH/BAIwADAfBgNVHSMEGDAWgBT7YRoWIjHwkvFicwvk\n0Tx/yA4uUTAnBgNVHREEIDAeggZzaWduZXKBFG5vcmVwbHlAbG9jYWwuZG9tYWlu\nMAoGCCqGSM49BAMCA0kAMEYCIQCJJwGCbarhhgJ10hQxup5l6VTVa8S5orf1kUQX\nkGYLqgIhANYdMwH8gPzck432bomVRXRVHqbvUIny7/mIRFJGvlne\n-----END CERTIFICATE-----\n"
- "-----BEGIN CERTIFICATE-----\nMIIBcTCCARagAwIBAgIQWRl1eifIt8yohQYzh6yr/jAKBggqhkjOPQQDAjAYMRYw\nFAYDVQQDEw1zZWxmc2lnbmVkLWNhMB4XDTIzMDYyODE0MzI0MFoXDTQzMDYyODE0\nMzI0MFowGDEWMBQGA1UEAxMNc2VsZnNpZ25lZC1jYTBZMBMGByqGSM49AgEGCCqG\nSM49AwEHA0IABEwcjsIhSyyh0i9zP1G7ReOkFt/djzlGoUtSd5v3ZEk5QoZYjfl9\n04HdaZzrmveB2aRppbXgW7//s2Ma8wTd5uejQjBAMA4GA1UdDwEB/wQEAwICpDAP\nBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBT7YRoWIjHwkvFicwvk0Tx/yA4uUTAK\nBggqhkjOPQQDAgNJADBGAiEAgyg9t0qgb+czuscs07pNGI+12BedrD+y71psIlqx\nt2UCIQC/85UXyjYI9zg7Mg7rROTbGNCU3Jq/KIC3VzbbD+68VA==\n-----END CERTIFICATE-----\n"
- "-----BEGIN CERTIFICATE-----\nMIICwjCCAmigAwIBAgIQQ5naR3IENaVymFpP7DHo3DAKBggqhkjOPQQDAjAYMRYw\nFAYDVQQDEw1zZWxmc2lnbmVkLWNhMB4XDTI1MDUxNzE0NTExOVoXDTI2MDUxNzE0\nNTExOVowVjELMAkGA1UEBhMCQ0gxDDAKBgNVBAgTA0s4UzEMMAoGA1UEBxMDSzhT\nMQwwCgYDVQQKEwNLOFMxDDAKBgNVBAsTA0s4UzEPMA0GA1UEAxMGc2lnbmVyMIIB\nIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5WQDdm5K7sjpnUGVeWU7MkuN\nfpzGoMBpzgrF0qyOInN0sE7WLuOmbrqQ94hPNcdX5wQ1m+UGj0TCsay+un/vPBWT\nNpj68WUnRD6rIbs14bTGAHZkQ+mYbWfidTUg4cw8WzmSpyTMwAxDEVmUneQjTkDK\nTD8N8kNrYG42ZH6tkRakuYX5gXE26eH2NaAAMFP6b5kfX8idV1WbVjFHdq7PdfQg\njwtVNCn74RbMT8cBBAww/C2K3RAogTuWe8dloItmpK5y8boYyKsOiFFg1OzV9p+L\ndN5tLoiUHnPvRRbGcOua4fvJJXgFEB943Wo1EGRlDEmYQ1YpvGvgukm3LPvbCwID\nAQABo4GKMIGHMA4GA1UdDwEB/wQEAwIHgDAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\nKwYBBQUHAwIwDAYDVR0TAQH/BAIwADAfBgNVHSMEGDAWgBT7YRoWIjHwkvFicwvk\n0Tx/yA4uUTAnBgNVHREEIDAeggZzaWduZXKBFG5vcmVwbHlAbG9jYWwuZG9tYWlu\nMAoGCCqGSM49BAMCA0gAMEUCIFJuHTAtp3mPsEk3G90t6PCY46Kc1AejyqcCP4Gt\nan3CAiEA9inWU6SwPd9pWf7hs9FUIGMZonwHgx66Q9qKdeTnjy0=\n-----END CERTIFICATE-----\n"

View File

@ -46,14 +46,14 @@ spec:
podDisruptionBudget: podDisruptionBudget:
maxUnavailable: "50%" maxUnavailable: "50%"
git: git:
tag: "r-d8899f360bd8076bfa2efcae7b1a2e22f1d86262" tag: "r-3944ffd65b942f8ce7cea4316e8f0ebdd3fd083a"
dir: "DEFAULT-ADN-AGOV-ADMIN-PROJECT/DEFAULT-ADN-AGOV-ADMIN-INV/idm" dir: "DEFAULT-ADN-AGOV-ADMIN-PROJECT/DEFAULT-ADN-AGOV-ADMIN-INV/idm"
credentials: "git-credentials" credentials: "git-credentials"
keystores: keystores:
- "idm-default-identity" - "idm-default-identity"
truststores: truststores:
- "idm-default-tls-client-trust"
- "idm-nevisidm-sectoken-truststore" - "idm-nevisidm-sectoken-truststore"
- "idm-nevisidm-frontend-truststore"
podSecurity: podSecurity:
policy: "baseline" policy: "baseline"
automountServiceAccountToken: false automountServiceAccountToken: false

View File

@ -1,63 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean class="org.springframework.scheduling.quartz.SchedulerFactoryBean" id="exportScheduler">
<property name="jobDetails">
<list>
<ref bean="pruneAgovAccountsJob"/>
</list>
</property>
<property name="triggers">
<list>
<ref bean="pruneAgovAccountsJobTrigger"/>
</list>
</property>
<property name="dataSource">
<ref bean="dataSource"/>
</property>
<property name="quartzProperties">
<props>
<prop key="org.quartz.scheduler.instanceId">AUTO</prop>
<prop key="org.quartz.scheduler.instanceName">exportScheduler</prop>
<prop key="org.quartz.scheduler.makeSchedulerThreadDaemon">true</prop>
<prop key="org.quartz.threadPool.class">org.quartz.simpl.SimpleThreadPool</prop>
<prop key="org.quartz.threadPool.makeThreadsDaemons">true</prop>
<prop key="org.quartz.threadPool.threadCount">1</prop>
<prop key="org.quartz.jobStore.tablePrefix">TIDMQ_</prop>
<prop key="org.quartz.jobStore.class">org.springframework.scheduling.quartz.LocalDataSourceJobStore</prop>
<prop key="org.quartz.jobStore.driverDelegateClass">#{databaseConfigurationService.getDatabaseType() == T(ch.adnovum.nevisidm.service.properties.DatabaseType).POSTGRESQL ? 'org.quartz.impl.jdbcjobstore.PostgreSQLDelegate' : 'org.quartz.impl.jdbcjobstore.StdJDBCDelegate' }</prop>
<prop key="org.quartz.jobStore.isClustered">true</prop>
<prop key="org.quartz.jobStore.useProperties">false</prop>
</props>
</property>
<property name="applicationContextSchedulerContextKey" value="applicationContext"/>
</bean>
<bean class="org.springframework.scheduling.quartz.JobDetailFactoryBean" id="pruneAgovAccountsJob">
<property name="description" value="Archive and delete obsolete AGOV accounts (100d no activity)"/>
<property name="jobClass" value="ch.nevis.idm.batch.jobs.UpdateUserStateJob"/>
<property name="durability" value="true"/>
<property name="jobDataMap">
<bean class="org.quartz.JobDataMap">
<constructor-arg>
<map>
<entry key="daysNoActivity" value="100"/>
<entry key="neverLoggedInDaysNoActivity" value="100"/>
<entry key="considerUsersNeverLoggedIn" value="true"/>
<entry key="sendWarning" value="false"/>
<entry key="daysGracePeriod" value="1"/>
<entry key="daysStatusDisabled" value="100"/>
<entry key="daysStatusArchived" value="10"/>
<entry key="disableOutdatedUsers" value="true"/>
<entry key="disableNotYetActiveUsers" value="false"/>
<entry key="excludeTechnicalUsers" value="true"/>
<entry key="restrictToClients" value="cfa9c9b9-119f-4dff-9bb8-86d7c0cf2720"/>
</map>
</constructor-arg>
</bean>
</property>
</bean>
<bean class="org.springframework.scheduling.quartz.CronTriggerFactoryBean" id="pruneAgovAccountsJobTrigger">
<property name="description" value="Archive and delete obsolete AGOV accounts (100d no activity)"/>
<property name="jobDetail" ref="pruneAgovAccountsJob"/>
<property name="cronExpression" value="59 23 17 12 * ?"/>
</bean>
</beans>

View File

@ -29,12 +29,14 @@ Configuration:
- ref: "BATCHJOB" - ref: "BATCHJOB"
- name: "ch.nevis.idm.standalone" - name: "ch.nevis.idm.standalone"
level: "INFO" level: "INFO"
- name: "Ninja"
level: "WARN"
- name: "ch.adnovum.nevisidm.service.dbperformance" - name: "ch.adnovum.nevisidm.service.dbperformance"
level: "INFO" level: "INFO"
- name: "ch.nevis.ninja"
level: "WARN"
- name: "jcan.Op" - name: "jcan.Op"
level: "INFO" level: "INFO"
- name: "jcan.OpContent"
level: "OFF"
Root: Root:
level: "WARN" level: "WARN"
additivity: "false" additivity: "false"

View File

@ -59,7 +59,7 @@ application.modules.reporting.characterencoding=ISO-8859-1
# source: pattern://fe4a248ac7b092a6a80624f1 # source: pattern://fe4a248ac7b092a6a80624f1
application.modules.reporting.separator=; application.modules.reporting.separator=;
# source: pattern://fe4a248ac7b092a6a80624f1 # source: pattern://fe4a248ac7b092a6a80624f1
database.connection.pool.size.max=5 database.connection.pool.size.max=10
# source: pattern://fe4a248ac7b092a6a80624f1 # source: pattern://fe4a248ac7b092a6a80624f1
database.connection.pool.size.min=5 database.connection.pool.size.min=5
# source: pattern://fe4a248ac7b092a6a80624f1 # source: pattern://fe4a248ac7b092a6a80624f1
@ -73,8 +73,6 @@ management.server.host=0.0.0.0
# source: pattern://ba7c7a3b091df0c4b8ba0bb2 # source: pattern://ba7c7a3b091df0c4b8ba0bb2
management.server.port=8998 management.server.port=8998
# source: pattern://ba7c7a3b091df0c4b8ba0bb2 # source: pattern://ba7c7a3b091df0c4b8ba0bb2
application.modules.batch.context=/var/opt/nevisidm/default/conf/batch.xml
# source: pattern://ba7c7a3b091df0c4b8ba0bb2
application.config.file.idmrole.authorization=/var/opt/nevisidm/default/conf/authorizationConfig.properties application.config.file.idmrole.authorization=/var/opt/nevisidm/default/conf/authorizationConfig.properties
# source: pattern://ba7c7a3b091df0c4b8ba0bb2 # source: pattern://ba7c7a3b091df0c4b8ba0bb2
application.config.file.idmrole.mapping=/var/opt/nevisidm/default/conf/rolesMapping.properties application.config.file.idmrole.mapping=/var/opt/nevisidm/default/conf/rolesMapping.properties
@ -107,9 +105,9 @@ server.tls.keystore=/var/opt/keys/own/idm-default-identity/keystore.p12
# source: pattern://ba7c7a3b091df0c4b8ba0bb2 # source: pattern://ba7c7a3b091df0c4b8ba0bb2
server.tls.keystore-passphrase=${exec:/var/opt/keys/own/idm-default-identity/keypass} server.tls.keystore-passphrase=${exec:/var/opt/keys/own/idm-default-identity/keypass}
# source: pattern://ba7c7a3b091df0c4b8ba0bb2 # source: pattern://ba7c7a3b091df0c4b8ba0bb2
server.tls.truststore=/var/opt/keys/trust/idm-default-tls-client-trust/truststore.p12 server.tls.truststore=/var/opt/keys/trust/idm-nevisidm-frontend-truststore/truststore.p12
# source: pattern://ba7c7a3b091df0c4b8ba0bb2 # source: pattern://ba7c7a3b091df0c4b8ba0bb2
server.tls.truststore-passphrase=${exec:/var/opt/keys/trust/idm-default-tls-client-trust/keypass} server.tls.truststore-passphrase=${exec:/var/opt/keys/trust/idm-nevisidm-frontend-truststore/keypass}
# source: pattern://ba7c7a3b091df0c4b8ba0bb2 # source: pattern://ba7c7a3b091df0c4b8ba0bb2
server.auth.ninja.truststore=/var/opt/keys/trust/idm-nevisidm-sectoken-truststore/truststore.jks server.auth.ninja.truststore=/var/opt/keys/trust/idm-nevisidm-sectoken-truststore/truststore.jks
# source: pattern://ba7c7a3b091df0c4b8ba0bb2 # source: pattern://ba7c7a3b091df0c4b8ba0bb2

View File

@ -44,7 +44,7 @@ spec:
podDisruptionBudget: podDisruptionBudget:
maxUnavailable: "50%" maxUnavailable: "50%"
git: git:
tag: "r-030a0c32f7aa373371615e3c88c1e7e33eccfd82" tag: "r-3944ffd65b942f8ce7cea4316e8f0ebdd3fd083a"
dir: "DEFAULT-ADN-AGOV-ADMIN-PROJECT/DEFAULT-ADN-AGOV-ADMIN-INV/logrend" dir: "DEFAULT-ADN-AGOV-ADMIN-PROJECT/DEFAULT-ADN-AGOV-ADMIN-INV/logrend"
credentials: "git-credentials" credentials: "git-credentials"
podSecurity: podSecurity:

View File

@ -9,6 +9,8 @@ application.language.cookie.de=LANG:de:.agov-w.azure.adnovum.net
application.language.cookie.en=LANG:en:.agov-w.azure.adnovum.net application.language.cookie.en=LANG:en:.agov-w.azure.adnovum.net
application.language.cookie.fr=LANG:fr:.agov-w.azure.adnovum.net application.language.cookie.fr=LANG:fr:.agov-w.azure.adnovum.net
application.language.cookie.it=LANG:it:.agov-w.azure.adnovum.net application.language.cookie.it=LANG:it:.agov-w.azure.adnovum.net
application.language.cookie.rm=LANG:rm:.agov-w.azure.adnovum.net
application.languages=de,fr,it,rm,en
application.loginapp.current= application.loginapp.current=
application.loginapp.default=IDENT-AuthenticationRealm application.loginapp.default=IDENT-AuthenticationRealm
application.loginapp.override=header:channel application.loginapp.override=header:channel
@ -20,9 +22,11 @@ application.webdata.pathparam=logrendresourcepath
application.webdata.pathparam.default=/login/resources application.webdata.pathparam.default=/login/resources
cache.revalidate.delay=-1 cache.revalidate.delay=-1
cache.source=file cache.source=file
env.name=WORK
keytag.end=} keytag.end=}
keytag.start=${ keytag.start=${
management.healthchecks.enabled=true management.healthchecks.enabled=true
page.title=AGOV Operations
path.config=/var/opt/nevislogrend/default/conf path.config=/var/opt/nevislogrend/default/conf
path.instance=/var/opt/nevislogrend/default path.instance=/var/opt/nevislogrend/default
server.host=0.0.0.0 server.host=0.0.0.0

View File

@ -13,14 +13,32 @@ application.language.source.3=gui
# source: pattern://3fd09bb6cfbd34874595c263 # source: pattern://3fd09bb6cfbd34874595c263
application.language.source.4=browser application.language.source.4=browser
# source: pattern://3fd09bb6cfbd34874595c263 # source: pattern://3fd09bb6cfbd34874595c263
application.languages=en,de,fr,it velocity.input.encoding=UTF-8
# source: pattern://3fd09bb6cfbd34874595c263
velocity.output.encoding=UTF-8
# source: pattern://3fd09bb6cfbd34874595c263
application.inputs.htmlencode=false
# source: pattern://3fd09bb6cfbd34874595c263
application.inputs.htmlencode.guielems=false
# source: pattern://3fd09bb6cfbd34874595c263
application.render.content.type=text/html; charset=UTF-8
# source: pattern://3fd09bb6cfbd34874595c263
cache.revalidate.delay=-1
# source: pattern://3fd09bb6cfbd34874595c263
application.languages=de,fr,it,rm,en
# source: pattern://3fd09bb6cfbd34874595c263, pattern://8401da6318c6915d689cdfc9
application.language.cookie.de=LANG:de:.agov-w.azure.adnovum.net
# source: pattern://3fd09bb6cfbd34874595c263, pattern://8401da6318c6915d689cdfc9
application.language.cookie.fr=LANG:fr:.agov-w.azure.adnovum.net
# source: pattern://3fd09bb6cfbd34874595c263, pattern://8401da6318c6915d689cdfc9
application.language.cookie.it=LANG:it:.agov-w.azure.adnovum.net
# source: pattern://3fd09bb6cfbd34874595c263, pattern://8401da6318c6915d689cdfc9
application.language.cookie.rm=LANG:rm:.agov-w.azure.adnovum.net
# source: pattern://3fd09bb6cfbd34874595c263, pattern://8401da6318c6915d689cdfc9
application.language.cookie.en=LANG:en:.agov-w.azure.adnovum.net
# source: pattern://3fd09bb6cfbd34874595c263
env.name=WORK
# source: pattern://3fd09bb6cfbd34874595c263
page.title=AGOV Operations
# source: pattern://3fd09bb6cfbd34874595c263 # source: pattern://3fd09bb6cfbd34874595c263
application.languages.default=en application.languages.default=en
# source: pattern://8401da6318c6915d689cdfc9
application.language.cookie.en=LANG:en
# source: pattern://8401da6318c6915d689cdfc9
application.language.cookie.de=LANG:de
# source: pattern://8401da6318c6915d689cdfc9
application.language.cookie.fr=LANG:fr
# source: pattern://8401da6318c6915d689cdfc9
application.language.cookie.it=LANG:it

View File

@ -1,219 +1,239 @@
darkModeSwitch.aria.label=Dark mode toggle agov-ident.done.message=Ihr AGOV-Konto ist nun einsatzbereit. Bitte schliessen Sie diese Seite.
error_1=Please check your input. agov-ident.done.title=Fertig
error_10=Please select the correct user account. agov-ident.failed.instruction=Sie ben&ouml;tigen ein AGOV-Konto und m&uuml;ssen die vorgeschlagene Daten&uuml;berpr&uuml;fung bestehen, um das Onboarding erfolgreich abzuschliessen. Bitte versuchen Sie es erneut.
error_100=Certificate upload not possible. Certificate already exists. Please contact your helpdesk. agov-ident.failed.message=Onboarding abgebrochen oder Verifikation der Daten verschoben
error_101=The entered email address is not valid. agov-ident.failed.title=Verifikation erforderlich
error_11=Please use another certficate or login with another credential type. agov-ident.invalid-url.instruction=Der Link, den Sie f&uuml;r den Zugriff auf diese Seite verwendet haben, ist ung&uuml;ltig. Bitte stellen Sie sicher, dass Sie ihn so verwenden, wie Sie ihn erhalten haben, ohne Tippfehler, oder klicken Sie ihn direkt auf der Seite an, auf der er ver&ouml;ffentlicht ist.
error_2=Please select another login name. agov-ident.invalid-url.message=Link kann nicht verarbeitet werden
error_3=Your account will be locked if next authentication fails. agov-ident.invalid-url.title=Ung&uuml;ltiger Link
error_4=Your new password does not comply with the security policy. Please choose a different password. agov-ident.onboarding=Registrierung & Verifikation
error_5=Error in password confirmation. agov-ident.retry=Versuchen Sie es erneut
error_50=The new password is too short. darkModeSwitch.aria.label=Dark-Mode-Schalter
error_55=The new password has to differ from old passwords. error_1=Bitte &uuml;berpr&uuml;fen Sie Ihre Eingaben.
error_6=Password change required. error_10=Bitte w&auml;hlen Sie das richtige Benutzerkonto aus.
error_7=Change of login ID required. error_100=Zertifikat-Upload nicht m&ouml;glich. Das Zertifikat existiert bereits. Wenden Sie sich an Ihr Helpdesk.
error_8=Your account has been locked due to repeated authentication failures. error_101=Die eingegebene E-Mail-Adresse ist ung&uuml;ltig.
error_81=No access card found, access from internet denied. error_11=Bitte verwenden Sie ein anderes Zertifikat oder melden Sie sich mit einer anderen Art von Credential an.
error_83=Your access card is no longer valid. Please contact your advisor to get a new access card. error_2=Bitte w&auml;hlen Sie einen anderen Login-Namen.
error_9=Session take over failed. error_3=Wenn die n&auml;chste Authentifizierung fehlschl&auml;gt, wird Ihr Konto gesperrt.
error_97=You are not authorized to access this resource. error_4=Ihr neues Passwort verst&ouml;sst gegen die Sicherheitsrichtlinien. Bitte w&auml;hlen Sie ein anderes Passwort.
error_98=Your account has been locked. error_5=Fehler bei der Passwortbest&auml;tigung.
error_99=System problems. Please try later. error_50=Das neue Passwort ist zu kurz.
error_9901=You need a valid on-boarding link to access this page. error_55=Das neue Passwort muss sich von alten Passw&ouml;rtern unterscheiden.
error_9902=The email used for authentication doesn't match the expected one in operations. Please ask for a new on-boarding link. error_6=Passwort&auml;nderung erforderlich.
error_9903=The used IdP didn't send us a valid assertion. Please make sure, you use the correct IdP. Ask the support for a new on-boarding link. error_7=&Auml;nderung der Login-ID erforderlich.
error_9904=Your link is not valid anymore. Please make sure, that you are using the latest Link received from operations. Ask for a new link, if the problem persists. error_8=Ihr Konto wurde aufgrund wiederholter fehlgeschlagener Authentifizierungsversuche gesperrt.
error_9905=There is a problem with your operations account. Please contact the support. error_81=Keine Zugangskarte gefunden, Zugang &uuml;ber das Internet verweigert.
error_9909=An internal error occured. Please ask the support for a new on-boarding link. error_83=Ihre Zugangskarte ist nicht mehr g&uuml;ltig. Bitte wenden Sie sich an Ihre Beratungsperson, um eine neue Zugangskarte zu erhalten.
errors.duplicateValue=Your account is already linked with another operations access. error_9=&Uuml;bernahme der Sitzung fehlgeschlagen.
fido2_auth.cancel.fido=The security key authentication was interrupted. Please ensure your FIDO key is registered and your email is correct, then follow the steps below. error_97=Sie sind nicht berechtigt, auf diese Ressource zuzugreifen.
fido2_auth.instruction1=Click on "Continue" error_98=Ihr Konto wurde gesperrt.
fido2_auth.instruction2=An authentication window will appear error_99=Systemprobleme: Bitte versuchen Sie es sp&auml;ter noch einmal.
fido2_auth.instruction3=Follow the instructions error_9901=Sie ben&ouml;tigen einen g&uuml;ltigen Onboarding-Link, um auf diese Seite zuzugreifen.
fido2_auth.skipInstructions=Skip instructions next time error_9902=Die f&uuml;r die Authentifizierung verwendete E-Mail-Adresse stimmt nicht mit der erwarteten E-Mail-Adresse in Operations &uuml;berein. Bitte fordern Sie einen neuen Onboarding-Link an.
fido2_auth.switchLogin=SWITCH TO LOGIN WITH error_9903=Der verwendete IdP hat uns keine g&uuml;ltige Assertion gesendet. Bitte stellen Sie sicher, dass Sie den richtigen IdP verwenden. Fordern Sie beim Support einen neuen Onboarding-Link an.
error_9904=Ihr Link ist nicht mehr g&uuml;ltig. Bitte stellen Sie sicher, dass Sie den neuesten Link verwenden, den Sie von Operations erhalten haben. Fordern Sie einen neuen Link an, falls das Problem weiterhin besteht.
error_9905=Es gibt ein Problem mit Ihrem Operations-Konto. Kontaktieren Sie bitte den Support.
error_9909=Es ist ein interner Fehler aufgetreten. Bitten Sie den Support um einen neuen Onboarding-Link.
errors.duplicateValue=Ihr Konto ist bereits mit einem anderen Operations-Zugang verkn&uuml;pft.
fido2_auth.cancel.fido=Die Authentifizierung mit dem Sicherheitsschl&uuml;ssel wurde unterbrochen. Bitte vergewissern Sie sich, dass Ihr FIDO-Schl&uuml;ssel registriert ist und Ihre E-Mail korrekt ist.
fido2_auth.instruction1=Klicken Sie auf "Weiter"
fido2_auth.instruction2=Ein Authentifizierungsfenster wird erscheinen
fido2_auth.instruction3=Folgen Sie den Anweisungen
fido2_auth.skipInstructions=Anweisungen n&auml;chstes Mal &uuml;berspringen
fido2_auth.switchLogin=WECHSEL ZU LOGIN MIT
footer.link=https://agov.ch footer.link=https://agov.ch
footer.link.label=Contact footer.link.label=Kontakt
footer.text=Authentication service of Swiss authorities AGOV - a collaboration between cantons, their municipalities, and the federal administration. - footer.text=Authentifizierungsdienst der Schweizer Beh&ouml;rden AGOV &ndash; eine Zusammenarbeit zwischen den Kantonen, deren Gemeinden und der Bundesverwaltung. -
general.AGOVAccessApp=AGOV access app general.AGOVAccessApp=AGOV access App
general.accessApp=AGOV access app general.accessApp=AGOV access App
general.authenticate=Authenticate general.authenticate=Authentifizieren
general.back=Back general.back=Zur&uuml;ck
general.cancel=Cancel general.cancel=Abbrechen
general.confirm=Confirm general.confirm=Best&auml;tigen
general.contactSupport=Contact Support general.contactSupport=Support kontaktieren
general.continue=Continue general.continue=Weiter
general.edit=Edit general.edit=&Auml;ndern
general.email=Email general.email=E-Mail
general.email.address=Email address general.email.address=E-Mail-Adresse
general.entryCode=Code entry general.entryCode=Code-Eingabe
general.fieldRequired=Field required. general.fieldRequired=Erforderliches Feld.
general.getStarted=Get started general.getStarted=Los geht's
general.goAGOVHelp=Go to AGOV help general.goAGOVHelp=Weiter zur AGOV help
general.goAccessApp=Login with AGOV access general.goAccessApp=Login mit AGOV access
general.help=Help general.goToAccessApp=Zur AGOV access App wechseln
general.help=Hilfe
general.help.link=https://agov.ch/help general.help.link=https://agov.ch/help
general.login=Login general.login=Login
general.loginSecurityKey=Start Security key login general.login.accessApp=Login mit AGOV access App
general.or=OR general.login.securityKey=Login mit Sicherheitsschl&uuml;ssel
general.otherOptions=OTHER OPTIONS general.loginSecurityKey=Sicherheitsschl&uuml;ssel-Login starten
general.recovery=Recovery general.moreOptions=WEITERE OPTIONEN
general.or=ODER
general.otherLoginMethods=Andere Login-Methoden
general.recovery=Wiederherstellung
general.recovery.help.link=https://help.agov.ch/?c=100recovery general.recovery.help.link=https://help.agov.ch/?c=100recovery
general.recoveryCode.downloadPdf=Download as PDF general.recoveryCode.downloadPdf=Als PDF herunterladen
general.recoveryCode.inputLabel=Recovery code general.recoveryCode.inputLabel=Wiederherstellungscode
general.recoveryCode.repeatCodeError=The code you entered was incorrect. Please ensure you have stored it correctly, then continue to resubmit. general.recoveryCode.repeatCodeError=Der von Ihnen eingegebene Code war nicht korrekt. Bitte vergewissern Sie sich, dass Sie ihn richtig abgespeichert haben, und fahren Sie dann mit der erneuten Eingabe fort.
general.recoveryCode.repeatCodeModal.description=A lost or incorrectly stored recovery code can make it more difficult to recover your account. To ensure you have recorded your code correctly, please repeat it below. general.recoveryCode.repeatCodeModal.description=Ein verlorener oder falsch gespeicherter Wiederherstellungscode kann die Wiederherstellung Ihres Kontos erschweren. Um sicherzustellen, dass Sie Ihren Code richtig gespeichert haben, wiederholen Sie ihn bitte unten.
general.recoveryCode.repeatCodeModal.title=Repeat recovery code general.recoveryCode.repeatCodeModal.title=Wiederherstellungscode wiederholen
general.recoveryCode.reveal=Reveal recovery code general.recoveryCode.reveal=Wiederherstellungscode enth&uuml;llen
general.recoveryOngoing=Ongoing recovery general.recoveryOngoing=Wiederherstellung nicht abgeschlossen
general.register=Register general.register=Registrieren
general.registerNow=Register now! general.registerNow=Jetzt registrieren!
general.registration=Registration general.registration=Registrierung
general.securityKey=Security key general.registration.dontHaveAnAccountYet=Haben Sie noch kein AGOV-Konto?
general.skip.content=Skip to main content general.registration.seeOptions=Registrierungsoptionen ansehen
general.wrongPhoneNumber=Please enter a valid phone number general.securityKey=Sicherheitsschl&uuml;ssel
generic.auth.error.message=There was a service interruption. We are working on it. general.skip.content=Direkt zum Hauptteil
generic.auth.error.next.steps=Please try again later. Please consult AGOV help if the problem persists. general.wrongPhoneNumber=Bitte geben Sie eine g&uuml;ltige Telefonnummer ein
generic.auth.error.subtitle=Something went wrong generic.auth.error.message=Es gab eine Service-Unterbrechung. Wir arbeiten daran.
generic.auth.error.title=Error generic.auth.error.next.steps=Versuchen Sie es bitte sp&auml;ter noch einmal. Bitte besuchen Sie die AGOV-Hilfe, wenn das Problem weiterhin besteht.
generic.auth.error.subtitle=Etwas ist schiefgegangen
generic.auth.error.title=Fehler
language.de=Deutsch language.de=Deutsch
language.en=English language.en=English
language.fr=Fran&ccedil;ais language.fr=Fran&ccedil;ais
language.it=Italiano language.it=Italiano
languageDropdown.aria.label=Select language language.rm=Rumantsch
loainfo.description.200=To access the application, we need to verify your data. The process can take up to 2 - 3 days. languageDropdown.aria.label=Sprache w&auml;hlen
loainfo.description.300=To access the application we need to verify your data through one of two processes. You can choose your preferred process in the next step. loainfo.description.200=Um auf diese Applikation zuzugreifen, m&uuml;ssen wir Ihre Angaben verifizieren. Der Vorgang kann bis zu 2 - 3 Tage dauern.
loainfo.description.400=To access the application we need you to add your SSN (AHV) number. loainfo.description.300=Um auf diese Applikation zuzugreifen, m&uuml;ssen wir Ihre Angaben durch einen von zwei Vorg&auml;ngen verifizieren. Sie k&ouml;nnen die bevorzugte Methode im n&auml;chsten Schritt ausw&auml;hlen.
loainfo.helper=Your data needs to be verified! loainfo.description.400=Bitte AHV-Nummer angeben, um auf die Applikation zuzugreifen.
loainfo.later=Later loainfo.helper=Ihre pers&ouml;nlichen Daten m&uuml;ssen &uuml;berpr&uuml;ft werden!
loainfo.startNow=Do you want to start the process now? loainfo.later=Sp&auml;ter
loainfo.startVerification=Start verification loainfo.startNow=M&ouml;chten Sie den Prozess jetzt starten?
loainfo.title=Verify your data loainfo.startVerification=Verifikation starten
mauth_usernameless.EID=Continue with CH E-ID loainfo.title=Verifizieren Sie Ihre Daten
mauth_usernameless.banner.error=Authentication interrupted.<br>Please try again when the page reloads. mauth_usernameless.EID=Mit Schweizer E-ID fortfahren
mauth_usernameless.banner.info=Scan successful.<br>Please continue in the AGOV access app. mauth_usernameless.banner.error=Authentifizierung unterbrochen.<br>Bitte versuchen Sie es erneut, nachdem die Seite neu geladen wurde.
mauth_usernameless.banner.success=Authentication successful!<br>Please wait to be logged in. mauth_usernameless.banner.info=Scan erfolgreich.<br>Bitte fahren Sie in der AGOV access App fort.
mauth_usernameless.cannotLogin=Lost access to your app / security key? mauth_usernameless.banner.success=Authentifizierung erfolgreich!<br>Bitte warten Sie, bis Sie eingeloggt werden.
mauth_usernameless.hideQR=Hide QR code mauth_usernameless.cannotLogin=Zugriff auf App / Sicherheitsschl&uuml;ssel verloren?
mauth_usernameless.instructions=Log in by scanning the QR code with your AGOV access app mauth_usernameless.cannotLogin.accessApp=Zugriff auf App verloren?
mauth_usernameless.noAccount=Don't have an AGOV-Login yet? mauth_usernameless.cannotLogin.securityKey=Zugriff auf Sicherheitsschl&uuml;ssel verloren?
mauth_usernameless.showQR=Show QR code mauth_usernameless.hideQR=QR-Code ausblenden
mauth_usernameless.startRecovery=Start account recovery mauth_usernameless.instructions=Melden Sie sich an, indem Sie den QR-Code mit Ihrer AGOV access App scannen
mauth_usernameless.useSecurityKey=Use a security key to log in mauth_usernameless.noAccount=Haben Sie noch kein AGOV-Konto?
mauth_usernameless.useSecurityKeyInfo=A physical security key offers a secure way to login without having to use a phone. mauth_usernameless.selectLoginMethod=Login-Methode w&auml;hlen
op-admin.login=AGOV op admin mauth_usernameless.showQR=QR-Code anzeigen
op-admin.login.intro.message=Login with your username and password mauth_usernameless.startRecovery=Kontowiederherstellung starten
op-admin.login.loginid=LoginId mauth_usernameless.useSecurityKey=Verwenden Sie einen Sicherheitsschl&uuml;ssel, um sich anzumelden
mauth_usernameless.useSecurityKeyInfo=Ein physischer Sicherheitsschl&uuml;ssel bietet eine sichere M&ouml;glichkeit, sich ohne Telefon anzumelden.
op-admin.login=AGOV-op-Admin
op-admin.login.intro.message=Login mit Ihrem Benutzernamen und Passwort
op-admin.login.loginid=LoginID
op-admin.login.password=Passwort op-admin.login.password=Passwort
op-admin.login.title=Login op-admin.login.title=Login
op-admin.logout=AGOV op admin op-admin.logout=AGOV-op-Admin
op-admin.logout.message=You have successfully logged out. op-admin.logout.message=Sie haben sich erfolgreich ausgeloggt.
op-admin.logout.title=Logout op-admin.logout.title=Logout
op-admin.pwchange.intro.message=Password change required op-admin.pwchange.intro.message=Passwort&auml;nderung erforderlich
op-admin.pwchange.newpassword=New password op-admin.pwchange.newpassword=Neues Passwort
op-admin.pwchange.newpassword2=Repeat new password op-admin.pwchange.newpassword2=Neues Passwort wiederholen
op-admin.pwchange.password=Current password op-admin.pwchange.password=Aktuelles Passwort
op-admin.pwchange.title=Password Change op-admin.pwchange.title=&Auml;nderung des Passworts
op-idmlogin.role.accs-mgmt-idm=IDM accessrights management op-idmlogin.role.accs-mgmt-idm=IDM accessrights management
op-idmlogin.role.accs-mgmt-nonidm=Accessrights management op-idmlogin.role.accs-mgmt-nonidm=Accessrights management
op-idmlogin.role.idmcfg-mgmt=IDM set-up op-idmlogin.role.idmcfg-mgmt=IDM set-up
op-idmlogin.role.readonly-access=Default access (readonly) op-idmlogin.role.readonly-access=Standardzugriff (Nur Leseberechtigung)
op-idmlogin.role.support-basic=Support cases (recovery, ...) op-idmlogin.role.support-basic=Supportf&auml;lle (Wiederherstellung, ...)
op-idmlogin.role.support-priv=3rd level support (archiving, off-boarding) op-idmlogin.role.support-priv=3rd Level Support (Archivierung, Abmeldungen, ...)
op-idmlogin.role.usr-mgmt=User management (operations) op-idmlogin.role.usr-mgmt=Benutzerverwaltung (Betrieb)
op-idmlogin.role.usr-unit-mgmt=User and organization management (operations) op-idmlogin.role.usr-unit-mgmt=Benutzer- und Organisationsverwaltung (Betrieb)
op-idmlogin.select=AGOV idm op-idmlogin.select=AGOV idm
op-idmlogin.select.intro=Please select one of the profiles below... op-idmlogin.select.intro=Bitte w&auml;hlen Sie ein Profil aus...
op-idmlogin.select.note=Profiles marked with a * should only be used if required for a specific support or release tasks. op-idmlogin.select.note=Mit * markierte Profile sollten nur f&uuml;r bestimmte Support oder Release Aufgaben genutzt werden.
op-idmlogin.select.title=Profile selection op-idmlogin.select.title=Profilauswahl
op-onboarding.done.message=On-boarding was successfull. You can now use your AGOV operations access. Please close the browser, before accessing on of the operations application. op-onboarding.done.message=Das Onboarding war erfolgreich. Sie k&ouml;nnen nun Ihren AGOV-Operations-Zugang verwenden. Bitte schliessen Sie den Browser, bevor Sie auf eine der Operations-Applikationen zugreifen.
op-onboarding.done.title=DONE op-onboarding.done.title=FERTIG
op-onboarding.failed.title=ERROR op-onboarding.failed.title=FEHLER
op-onboarding.intro.message1=To complete your on-boarding for your AGOV operations access, you need either an AGOV or a FED-LOGIN account. op-onboarding.intro.message1=Um das Onboarding f&uuml;r Ihren AGOV-Operations-Zugang abzuschliessen, ben&ouml;tigen Sie entweder ein AGOV- oder ein FED-LOGIN-Konto.
op-onboarding.intro.message2=After clicking on "Continue", you will be redirected for authentication. op-onboarding.intro.message2=Wenn Sie auf &laquo;Weiter&raquo; klicken, werden Sie zur Authentifizierung weitergeleitet.
op-onboarding.intro.message3=If you are using AGOV, and your account doesn't meet yet the required AGOVaq level, you will be given the possibility to start the required ID verification. op-onboarding.intro.message3=Wenn Sie AGOV verwenden und Ihr Konto noch nicht der erforderlichen AGOVaq-Stufe entspricht, erhalten Sie die M&ouml;glichkeit, die erforderliche Identit&auml;tspr&uuml;fung zu starten.
op-onboarding.intro.title=START op-onboarding.intro.title=START
op-onboarding.onboarding=AGOV op on-boarding op-onboarding.onboarding=AGOV-op-Onboarding
op-onboarding.process.message=During the processing something went wrong. Please contact AGOV support if necessary and ask also for a new on-boarding link. op-onboarding.process.message=Bei der Bearbeitung ist etwas schiefgegangen. Wenden Sie sich wenn n&ouml;tig an den AGOV-Support und fordern Sie einen neuen Onboarding-Link an.
providePhoneNumber.banner=Phone number must be able to receive SMS.<br>This phone number will not be used to contact you. providePhoneNumber.banner=Die Mobilnummer muss f&uuml;r den Empfang von SMS geeignet sein.<br>Diese Mobilnummer wird nicht verwendet, um Sie zu kontaktieren.
providePhoneNumber.description=AGOV now supports recovery with your phone number. This will allow you to continue with an SMS during recovery if you have lost access to your recovery code. providePhoneNumber.description=AGOV erlaubt nun die Wiederherstellung mittels Mobilnummer. So k&ouml;nnen Sie w&auml;hrend der Wiederherstellung mit einer SMS fortfahren, wenn Sie Ihren Wiederherstellungscode verloren haben.
providePhoneNumber.errorBanner=Phone numbers do not match. Please try again. providePhoneNumber.errorBanner=Die Mobilnummern stimmen nicht &uuml;berein. Bitte versuchen Sie es erneut.
providePhoneNumber.inputLabel=Phone number (optional) providePhoneNumber.inputLabel=Mobilnummer (optional)
providePhoneNumber.laterModal.description1=Without a phone number, a recovery of your account might take up to 4 days if you lose access to your recovery code. providePhoneNumber.laterModal.description1=Ohne Mobilnummer kann die Wiederherstellung Ihres Kontos bis zu 4 Tage dauern, wenn Sie Ihren Wiederherstellungscode verlieren.
providePhoneNumber.laterModal.description2=Adding a phone number helps you to recover your account in a matter of minutes. providePhoneNumber.laterModal.description2=Durch Hinzuf&uuml;gen einer Mobilnummer k&ouml;nnen Sie Ihr Konto in wenigen Minuten wiederherstellen.
providePhoneNumber.laterModal.description3=This phone number will not be used to contact you. providePhoneNumber.laterModal.description3=Diese Mobilnummer wird nicht verwendet, um Sie zu kontaktieren.
providePhoneNumber.laterModal.title=Continue without a phone number? providePhoneNumber.laterModal.title=Ohne Mobilnummer weiterfahren?
providePhoneNumber.modal.description=An incorrectly stored phone number can make it more difficult to recover your account. To ensure you have recorded your phone number correctly, please repeat it below. providePhoneNumber.modal.description=Eine falsch gespeicherte Mobilnummer kann die Wiederherstellung Ihres Kontos erschweren. Um sicherzustellen, dass Sie Ihre Mobilnummer richtig gespeichert haben, wiederholen Sie sie bitte unten.
providePhoneNumber.modal.inputLabel=Phone number providePhoneNumber.modal.inputLabel=Mobilnummer
providePhoneNumber.modal.title=Repeat phone number providePhoneNumber.modal.title=Mobilnummer wiederholen
providePhoneNumber.saveButtonText=Save providePhoneNumber.saveButtonText=Speichern
providePhoneNumber.title=Add phone number providePhoneNumber.title=Mobilnummer angeben
recovery_accessapp_auth.accessAppRegistered=AGOV access app already registered recovery_accessapp_auth.accessAppRegistered=AGOV access App schon registriert
recovery_accessapp_auth.instruction1=You have already registered a new AGOV access app !!!ACCESS_APP_NAME!!! as part of the recovery process. recovery_accessapp_auth.instruction1=Sie haben bereits eine neue AGOV access App !!!ACCESS_APP_NAME!!! im Rahmen des Wiederherstellungsprozesses registriert.
recovery_accessapp_auth.instruction2=Please use !!!ACCESS_APP_NAME!!! to identify you. recovery_accessapp_auth.instruction2=Verwenden Sie !!!ACCESS_APP_NAME!!! um sich zu identifizieren.
recovery_check_code.banner.lockedError=Too many invalid input attempts. Please try again in a few minutes. recovery_check_code.banner.lockedError=Zu viele Fehlversuche. Bitte versuchen Sie es in ein paar Minuten noch einmal.
recovery_check_code.codeIncorrect=Code entered is incorrect. Please try again. recovery_check_code.codeIncorrect=Der eingegebene Code ist nicht korrekt. Bitte versuchen Sie es erneut.
recovery_check_code.enterRecoveryCode=Enter recovery code recovery_check_code.enterRecoveryCode=Wiederherstellungscode eingeben
recovery_check_code.instruction=Please enter below your personal 12-digit recovery code. You will have received the recovery code as a PDF file during registration or in AGOV me. recovery_check_code.instruction=Bitte geben Sie unten Ihren pers&ouml;nlichen 12-stelligen Wiederherstellungscode ein. Sie haben den Wiederherstellungscode in einer PDF-Datei bei der Registrierung oder in AGOV me erhalten.
recovery_check_code.invalid.code=The code is invalid recovery_check_code.invalid.code=Code ist ung&uuml;ltig
recovery_check_code.invalid.code.required=Code required recovery_check_code.invalid.code.required=Code erforderlich
recovery_check_code.invalid.code.tooLong=The code is too long recovery_check_code.invalid.code.tooLong=Eingegebener Code ist zu lang
recovery_check_code.noAccess=I do not have access to my code recovery_check_code.noAccess=Ich kann auf meinen Code nicht zugreifen
recovery_check_code.noCodeAccess=Are you sure you don't have access to your recovery code? recovery_check_code.noCodeAccess=Sind Sie sicher, dass Sie auf Ihren Wiederherstellungscode nicht zugreifen k&ouml;nnen?
recovery_check_code.noCodeAccessInstructions=If you have lost access to your recovery code please go to AGOV help in order to contact a AGOV support agent. They will be able to help you with the recovery process. recovery_check_code.noCodeAccessInstructions=Wenn Sie auf Ihren Wiederherstellungscode nicht mehr zugreifen k&ouml;nnen, gehen Sie bitte zur AGOV-Hilfe, um jemanden vom AGOV-Support zu kontaktieren. Die Person wird Sie beim Wiederherstellungsprozess unterst&uuml;tzen.
recovery_check_code.too_many_tries.instruction1=The recovery code you have entered might have expired or you might have tried to enter it too many times. recovery_check_code.too_many_tries.instruction1=Der von Ihnen eingegebene Wiederherstellungscode ist m&ouml;glicherweise abgelaufen oder Sie haben zu oft versucht, einen Code einzugeben.
recovery_check_code.too_many_tries.instruction2=Please go to AGOV help in order to contact a support agent. They will be able to help you with the recovery process. recovery_check_code.too_many_tries.instruction2=Gehen Sie bitte zur AGOV-Hilfe, um jemanden vom Support zu kontaktieren. Die Person wird Sie beim Wiederherstellungsprozess unterst&uuml;tzen.
recovery_check_noCode.banner.error=Too many attempts. recovery_check_noCode.banner.error=Zu viele Versuche.
recovery_check_noCode.instruction1=You might have tried to enter the recovery code too many times. recovery_check_noCode.instruction1=M&ouml;glicherweise haben Sie zu oft versucht, den Wiederherstellungscode einzugeben.
recovery_check_noCode.instruction2=Please close the web browser and start the account recovery again in ten minutes from <a class='link' href='https://agov.ch/me'>https://agov.ch/me</a>. recovery_check_noCode.instruction2=Bitte schliessen Sie den Webbrowser und starten Sie die Kontowiederherstellung in zehn Minuten erneut auf <a class='link' href='https://agov.ch/me'>https://agov.ch/me</a>.
recovery_code.banner.error=Please reveal your new code to be able to continue. recovery_code.banner.error=Bitte enth&uuml;llen Sie den Code, um fortfahren zu k&ouml;nnen.
recovery_code.instruction=Recovery codes help you gain access to your account in case you lost all of your login factors. Please store the recovery code in a safe place. recovery_code.instruction=Der Wiederherstellungscode hilft Ihnen, Zugriff auf Ihr AGOV-Login zu erhalten, falls Sie alle Ihre Login-Faktoren verloren haben. Bitte bewahren Sie den Wiederherstellungscode an einem sicheren Ort auf.
recovery_code.newRecoveryCode=Introducing Recovery Code recovery_code.newRecoveryCode=Einf&uuml;hrung von Wiederherstellungscode
recovery_code.validUntil=Valid until: recovery_code.validUntil=G&uuml;ltig bis:
recovery_fidokey_auth.button=Start key authentication recovery_fidokey_auth.button=Schl&uuml;sselauthentifizierung starten
recovery_fidokey_auth.fidoInstruction=Click on "Start key authentication" recovery_fidokey_auth.fidoInstruction=Klicken Sie auf "Schl&uuml;sselauthentifizierung starten"
recovery_fidokey_auth.instruction1=You have already registered a new security key !!!SECURITY_KEY_NAME!!! as part of the recovery process. recovery_fidokey_auth.instruction1=Sie haben bereits einen neuen Sicherheitsschl&uuml;ssel !!!SECURITY_KEY_NAME!!! im Rahmen des Wiederherstellungsprozesses registriert.
recovery_fidokey_auth.instruction2=Please use !!!SECURITY_KEY_NAME!!! to follow the steps below to identify you. recovery_fidokey_auth.instruction2=Bitte verwenden Sie !!!SECURITY_KEY_NAME!!! und befolgen Sie die untenstehenden Schritte, um sich zu identifizieren.
recovery_fidokey_auth.keyRegistered=Security key already registered recovery_fidokey_auth.keyRegistered=Sicherheitsschl&uuml;ssel schon registriert
recovery_intro_email.banner.error=The link you used has expired. Please enter your email address to receive a new link. recovery_intro_email.banner.error=Der von Ihnen verwendete Link ist abgelaufen. Bitte geben Sie Ihre E-Mail-Adresse ein, um einen neuen Link zu erhalten.
recovery_intro_email.banner.info=Please enter your email address, so we can send you a link to start the recovery process. recovery_intro_email.banner.info=Bitte geben Sie Ihre E-Mail-Adresse ein, damit wir Ihnen einen Link schicken k&ouml;nnen, mit dem Sie den Wiederherstellungsprozess starten.
recovery_intro_email.important=Important: recovery_intro_email.important=Wichtig:
recovery_intro_email.process=The recovery process should only be used if you have lost access to your login factors (deleted AGOV access app, lost security key, lost phone, etc.). recovery_intro_email.process=Der Wiederherstellungsprozess sollte nur verwendet werden, wenn Sie den Zugriff auf Ihre Login-Faktoren verloren haben (gel&ouml;schte AGOV access App, verlorener Sicherheitsschl&uuml;ssel, verlorenes Telefon usw.).
recovery_intro_email_sent.banner.button=Didn't receive the email? recovery_intro_email_sent.banner.button=Keine E-Mail erhalten?
recovery_intro_email_sent.banner.success=Thank you! You will receive an email with a recovery link and instructions shortly. recovery_intro_email_sent.banner.success=Vielen Dank! Sie werden in K&uuml;rze eine E-Mail mit einem Wiederherstellungslink und Anweisungen erhalten.
recovery_on_going.finishRecovery=Finish recovery recovery_on_going.finishRecovery=Wiederherstellung abschliessen
recovery_on_going.instruction=You have an ongoing recovery process. Part of the recovery process can include an identity verification. To access applications with your AGOV-Login you need to finish the identity verification as well. recovery_on_going.instruction=Sie haben einen laufenden Wiederherstellungsprozess. Der Wiederherstellungsprozess kann eine Identit&auml;tspr&uuml;fung umfassen. Um mit Ihrem AGOV-Login auf Applikationen zugreifen zu k&ouml;nnen, m&uuml;ssen Sie auch die Identit&auml;tspr&uuml;fung abschliessen.
recovery_on_going.title=Please finish your recovery process. recovery_on_going.title=Bitte schliessen Sie Ihren Wiederherstellungsprozess ab.
recovery_questionnaire_instructions.banner.info=Please note that in certain cases you need access to your recovery code for a successful recovery. recovery_questionnaire_instructions.banner.info=Bitte beachten Sie, dass Sie in bestimmten F&auml;llen f&uuml;r eine erfolgreiche Wiederherstellung Zugang zu Ihrem Wiederherstellungscode ben&ouml;tigen.
recovery_questionnaire_instructions.explanation=Based on your answers an AGOV-Login recovery seems to be necessary. Please click on continue and follow the instructions on the screen. recovery_questionnaire_instructions.explanation=Aufgrund Ihrer Antworten scheint eine Wiederherstellung Ihres AGOV-Logins erforderlich zu sein. Bitte klicken Sie auf Weiter und folgen Sie den Anweisungen auf dem Bildschirm.
recovery_questionnaire_instructions.instruction1=Provide your account email address so we can send you a link to begin the recovery process recovery_questionnaire_instructions.instruction1=Geben Sie die E-Mail-Adresse Ihres AGOV-Logins an, damit wir Ihnen einen Link senden k&ouml;nnen, um den Wiederherstellungsprozess zu beginnen
recovery_questionnaire_instructions.instruction2=Follow steps to recover your account (steps will vary depending on your account verification level) recovery_questionnaire_instructions.instruction2=Folgen Sie den Schritten zur Wiederherstellung Ihres Kontos (die Schritte variieren je nach Verifizierungsstufe Ihres Kontos)
recovery_questionnaire_loginfactor.banner.error=Please select an answer. recovery_questionnaire_loginfactor.banner.error=Bitte w&auml;hlen Sie eine Antwort.
recovery_questionnaire_loginfactor.no=No recovery_questionnaire_loginfactor.no=Nein
recovery_questionnaire_loginfactor.question=Have you registered more than one login factor (AGOV access app or security key) to your account? recovery_questionnaire_loginfactor.question=Haben Sie mehr als einen Loginfaktor (AGOV access App oder Sicherheitsschl&uuml;ssel) f&uuml;r Ihren AGOV-Login registriert?
recovery_questionnaire_loginfactor.yes=Yes recovery_questionnaire_loginfactor.yes=Ja
recovery_questionnaire_no_recovery.explanation1=Based on your answers, the AGOV recovery option does not seem necessary right now. recovery_questionnaire_no_recovery.explanation1=Ausgehend von Ihren Antworten scheint eine Wiederherstellung Ihres AGOV-Logins im Moment nicht notwendig zu sein.
recovery_questionnaire_no_recovery.explanation2=Should you need further information, please visit <a class='link' href='https://agov.ch/help' target='_blank'>https://agov.ch/help</a> for support articles. recovery_questionnaire_no_recovery.explanation2=Falls Sie weitere Informationen ben&ouml;tigen, besuchen Sie bitte <a class='link' href='https://agov.ch/help' target='_blank'>https://agov.ch/help</a> f&uuml;r Support-Artikel.
recovery_questionnaire_no_recovery.instruction1=If you have issues logging in to an application, please visit <a class='link' href='https://agov.ch/me' target='_blank'>https://agov.ch/me</a> and test if you can log in successfully. recovery_questionnaire_no_recovery.instruction1=Wenn Sie Probleme haben, sich bei einer Anwendung anzumelden, besuchen Sie bitte <a class='link' href='https://agov.ch/me' target='_blank'>https://agov.ch/me</a> und testen Sie, ob Sie sich erfolgreich anmelden k&ouml;nnen.
recovery_questionnaire_no_recovery.instruction2=If you have several login factors registered but lost access to one of them, please visit <a class='link' href='https://agov.ch/me' target='_blank'>https://agov.ch/me</a> to remove the one you have lost access to. recovery_questionnaire_no_recovery.instruction2=Wenn Sie mehrere Loginfaktoren registriert haben, aber den Zugriff zu einem von ihnen verloren haben, besuchen Sie bitte <a class='link' href='https://agov.ch/me' target='_blank'>https://agov.ch/me</a>, um den verlorenen Loginfaktor zu entfernen.
recovery_questionnaire_reason_selection.answer1=I have trouble logging in, even though I have my app / security key recovery_questionnaire_reason_selection.answer1=Ich habe Probleme mich anzumelden, obwohl ich meine App / meinen Sicherheitsschl&uuml;ssel habe
recovery_questionnaire_reason_selection.answer10=I lost one of my login factors (AGOV access app or security key) recovery_questionnaire_reason_selection.answer10=Ich habe einen meiner Loginfaktoren verloren (AGOV access App oder Sicherheitsschl&uuml;ssel)
recovery_questionnaire_reason_selection.answer2=I was unable to finish my registration recovery_questionnaire_reason_selection.answer2=Ich konnte meine Registrierung nicht abschliessen
recovery_questionnaire_reason_selection.answer3=I have deleted, reinstalled, or reset my AGOV access app recovery_questionnaire_reason_selection.answer3=Ich habe meine AGOV access App gel&ouml;scht, neu installiert oder zur&uuml;ckgesetzt
recovery_questionnaire_reason_selection.answer4=I have lost my phone / security key recovery_questionnaire_reason_selection.answer4=Ich habe mein Telefon / Sicherheitsschl&uuml;ssel verloren
recovery_questionnaire_reason_selection.answer5=I have a new phone and forgot to transfer my AGOV access app recovery_questionnaire_reason_selection.answer5=Ich habe ein neues Telefon und habe vergessen, meine AGOV access App zu &uuml;bertragen
recovery_questionnaire_reason_selection.answer6=I forgot my PIN for the AGOV access app recovery_questionnaire_reason_selection.answer6=Ich habe die PIN f&uuml;r meine AGOV access App vergessen
recovery_questionnaire_reason_selection.answer7=I have my security keys or apps but had trouble logging in recovery_questionnaire_reason_selection.answer7=Ich habe meine Sicherheitsschl&uuml;ssel oder AGOV access Apps, hatte aber Probleme beim Einloggen
recovery_questionnaire_reason_selection.answer8=I lost access to all my security keys and AGOV access apps recovery_questionnaire_reason_selection.answer8=Ich habe den Zugriff auf alle meine Sicherheitsschl&uuml;ssel und AGOV access Apps verloren
recovery_questionnaire_reason_selection.answer9=I have issues with one of my login factors (deleted, reset, forgotten PIN) recovery_questionnaire_reason_selection.answer9=Ich habe Probleme mit einem meiner Loginfaktoren (gel&ouml;scht, zur&uuml;ckgesetzt, vergessene PIN)
recovery_questionnaire_reason_selection.banner.error=Please select a reason. recovery_questionnaire_reason_selection.banner.error=Bitte w&auml;hlen Sie einen Grund aus.
recovery_questionnaire_reason_selection.instruction=Please select the reason you are starting the recovery process: recovery_questionnaire_reason_selection.instruction=Bitte w&auml;hlen Sie einen Grund wieso Sie den AGOV recovery Prozess starten:
recovery_start_info.banner.warning=You will not be able to use your account until the recovery process has been concluded. recovery_start_info.banner.warning=Sie k&ouml;nnen Ihr Konto nicht nutzen, bis der Wiederherstellungsprozess abgeschlossen ist.
recovery_start_info.instruction=During the recovery process you will register a new login factor. If your account contains any verified information you might also have to go through a verification process to finish the recovery. recovery_start_info.instruction=W&auml;hrend des Wiederherstellungsprozesses werden Sie einen neuen Login-Faktor registrieren. Wenn Ihr Konto verifizierte Informationen enth&auml;lt, m&uuml;ssen Sie zum Abschluss des Wiederherstellungsprozesses m&ouml;glicherweise auch einen Verifikationsprozess durchlaufen.
recovery_start_info.title=You are about to start the recovery process recovery_start_info.title=Sie sind dabei, den Wiederherstellungsprozess zu starten
title=NEVIS SSO Portal title=NEVIS SSO Portal
title.login=Login title.login=Login
user_input.invalid.email=Please enter a valid email address user_input.invalid.email=Bitte geben Sie eine g&uuml;ltige E-Mail ein
user_input.invalid.email.required=Field required user_input.invalid.email.required=Erforderliches Feld
user_input.invalid.email.tooLong=Input is too long user_input.invalid.email.tooLong=Eingabe zu lang

View File

@ -1,4 +1,14 @@
agov-ident.done.message=Ihr AGOV-Konto ist nun einsatzbereit. Bitte schliessen Sie diese Seite.
agov-ident.done.title=Fertig
agov-ident.failed.instruction=Sie ben&ouml;tigen ein AGOV-Konto und m&uuml;ssen die vorgeschlagene Daten&uuml;berpr&uuml;fung bestehen, um das Onboarding erfolgreich abzuschliessen. Bitte versuchen Sie es erneut.
agov-ident.failed.message=Onboarding abgebrochen oder Verifikation der Daten verschoben
agov-ident.failed.title=Verifikation erforderlich
agov-ident.invalid-url.instruction=Der Link, den Sie f&uuml;r den Zugriff auf diese Seite verwendet haben, ist ung&uuml;ltig. Bitte stellen Sie sicher, dass Sie ihn so verwenden, wie Sie ihn erhalten haben, ohne Tippfehler, oder klicken Sie ihn direkt auf der Seite an, auf der er ver&ouml;ffentlicht ist.
agov-ident.invalid-url.message=Link kann nicht verarbeitet werden
agov-ident.invalid-url.title=Ung&uuml;ltiger Link
agov-ident.onboarding=Registrierung & Verifikation
agov-ident.retry=Versuchen Sie es erneut
darkModeSwitch.aria.label=Dark-Mode-Schalter darkModeSwitch.aria.label=Dark-Mode-Schalter
error_1=Bitte &uuml;berpr&uuml;fen Sie Ihre Eingaben. error_1=Bitte &uuml;berpr&uuml;fen Sie Ihre Eingaben.
error_10=Bitte w&auml;hlen Sie das richtige Benutzerkonto aus. error_10=Bitte w&auml;hlen Sie das richtige Benutzerkonto aus.
@ -52,12 +62,16 @@ general.fieldRequired=Erforderliches Feld.
general.getStarted=Los geht's general.getStarted=Los geht's
general.goAGOVHelp=Weiter zur AGOV help general.goAGOVHelp=Weiter zur AGOV help
general.goAccessApp=Login mit AGOV access general.goAccessApp=Login mit AGOV access
general.goToAccessApp=Zur AGOV access App wechseln
general.help=Hilfe general.help=Hilfe
general.help.link=https://agov.ch/help general.help.link=https://agov.ch/help
general.login=Login general.login=Login
general.login.accessApp=Login mit AGOV access App
general.login.securityKey=Login mit Sicherheitsschl&uuml;ssel
general.loginSecurityKey=Sicherheitsschl&uuml;ssel-Login starten general.loginSecurityKey=Sicherheitsschl&uuml;ssel-Login starten
general.moreOptions=WEITERE OPTIONEN
general.or=ODER general.or=ODER
general.otherOptions=WEITERE OPTIONEN general.otherLoginMethods=Andere Login-Methoden
general.recovery=Wiederherstellung general.recovery=Wiederherstellung
general.recovery.help.link=https://help.agov.ch/?c=100recovery general.recovery.help.link=https://help.agov.ch/?c=100recovery
general.recoveryCode.downloadPdf=Als PDF herunterladen general.recoveryCode.downloadPdf=Als PDF herunterladen
@ -70,6 +84,8 @@ general.recoveryOngoing=Wiederherstellung nicht abgeschlossen
general.register=Registrieren general.register=Registrieren
general.registerNow=Jetzt registrieren! general.registerNow=Jetzt registrieren!
general.registration=Registrierung general.registration=Registrierung
general.registration.dontHaveAnAccountYet=Haben Sie noch kein AGOV-Konto?
general.registration.seeOptions=Registrierungsoptionen ansehen
general.securityKey=Sicherheitsschl&uuml;ssel general.securityKey=Sicherheitsschl&uuml;ssel
general.skip.content=Direkt zum Hauptteil general.skip.content=Direkt zum Hauptteil
general.wrongPhoneNumber=Bitte geben Sie eine g&uuml;ltige Telefonnummer ein general.wrongPhoneNumber=Bitte geben Sie eine g&uuml;ltige Telefonnummer ein
@ -81,6 +97,7 @@ language.de=Deutsch
language.en=English language.en=English
language.fr=Fran&ccedil;ais language.fr=Fran&ccedil;ais
language.it=Italiano language.it=Italiano
language.rm=Rumantsch
languageDropdown.aria.label=Sprache w&auml;hlen languageDropdown.aria.label=Sprache w&auml;hlen
loainfo.description.200=Um auf diese Applikation zuzugreifen, m&uuml;ssen wir Ihre Angaben verifizieren. Der Vorgang kann bis zu 2 - 3 Tage dauern. loainfo.description.200=Um auf diese Applikation zuzugreifen, m&uuml;ssen wir Ihre Angaben verifizieren. Der Vorgang kann bis zu 2 - 3 Tage dauern.
loainfo.description.300=Um auf diese Applikation zuzugreifen, m&uuml;ssen wir Ihre Angaben durch einen von zwei Vorg&auml;ngen verifizieren. Sie k&ouml;nnen die bevorzugte Methode im n&auml;chsten Schritt ausw&auml;hlen. loainfo.description.300=Um auf diese Applikation zuzugreifen, m&uuml;ssen wir Ihre Angaben durch einen von zwei Vorg&auml;ngen verifizieren. Sie k&ouml;nnen die bevorzugte Methode im n&auml;chsten Schritt ausw&auml;hlen.
@ -95,9 +112,12 @@ mauth_usernameless.banner.error=Authentifizierung unterbrochen.<br>Bitte versuch
mauth_usernameless.banner.info=Scan erfolgreich.<br>Bitte fahren Sie in der AGOV access App fort. mauth_usernameless.banner.info=Scan erfolgreich.<br>Bitte fahren Sie in der AGOV access App fort.
mauth_usernameless.banner.success=Authentifizierung erfolgreich!<br>Bitte warten Sie, bis Sie eingeloggt werden. mauth_usernameless.banner.success=Authentifizierung erfolgreich!<br>Bitte warten Sie, bis Sie eingeloggt werden.
mauth_usernameless.cannotLogin=Zugriff auf App / Sicherheitsschl&uuml;ssel verloren? mauth_usernameless.cannotLogin=Zugriff auf App / Sicherheitsschl&uuml;ssel verloren?
mauth_usernameless.cannotLogin.accessApp=Zugriff auf App verloren?
mauth_usernameless.cannotLogin.securityKey=Zugriff auf Sicherheitsschl&uuml;ssel verloren?
mauth_usernameless.hideQR=QR-Code ausblenden mauth_usernameless.hideQR=QR-Code ausblenden
mauth_usernameless.instructions=Melden Sie sich an, indem Sie den QR-Code mit Ihrer AGOV access App scannen mauth_usernameless.instructions=Melden Sie sich an, indem Sie den QR-Code mit Ihrer AGOV access App scannen
mauth_usernameless.noAccount=Haben Sie noch kein AGOV-Login? mauth_usernameless.noAccount=Haben Sie noch kein AGOV-Konto?
mauth_usernameless.selectLoginMethod=Login-Methode w&auml;hlen
mauth_usernameless.showQR=QR-Code anzeigen mauth_usernameless.showQR=QR-Code anzeigen
mauth_usernameless.startRecovery=Kontowiederherstellung starten mauth_usernameless.startRecovery=Kontowiederherstellung starten
mauth_usernameless.useSecurityKey=Verwenden Sie einen Sicherheitsschl&uuml;ssel, um sich anzumelden mauth_usernameless.useSecurityKey=Verwenden Sie einen Sicherheitsschl&uuml;ssel, um sich anzumelden
@ -149,7 +169,7 @@ providePhoneNumber.modal.inputLabel=Mobilnummer
providePhoneNumber.modal.title=Mobilnummer wiederholen providePhoneNumber.modal.title=Mobilnummer wiederholen
providePhoneNumber.saveButtonText=Speichern providePhoneNumber.saveButtonText=Speichern
providePhoneNumber.title=Mobilnummer angeben providePhoneNumber.title=Mobilnummer angeben
recovery_accessapp_auth.accessAppRegistered=AGOV access app schon registriert recovery_accessapp_auth.accessAppRegistered=AGOV access App schon registriert
recovery_accessapp_auth.instruction1=Sie haben bereits eine neue AGOV access App !!!ACCESS_APP_NAME!!! im Rahmen des Wiederherstellungsprozesses registriert. recovery_accessapp_auth.instruction1=Sie haben bereits eine neue AGOV access App !!!ACCESS_APP_NAME!!! im Rahmen des Wiederherstellungsprozesses registriert.
recovery_accessapp_auth.instruction2=Verwenden Sie !!!ACCESS_APP_NAME!!! um sich zu identifizieren. recovery_accessapp_auth.instruction2=Verwenden Sie !!!ACCESS_APP_NAME!!! um sich zu identifizieren.
recovery_check_code.banner.lockedError=Zu viele Fehlversuche. Bitte versuchen Sie es in ein paar Minuten noch einmal. recovery_check_code.banner.lockedError=Zu viele Fehlversuche. Bitte versuchen Sie es in ein paar Minuten noch einmal.
@ -191,7 +211,7 @@ recovery_questionnaire_instructions.instruction1=Geben Sie die E-Mail-Adresse Ih
recovery_questionnaire_instructions.instruction2=Folgen Sie den Schritten zur Wiederherstellung Ihres Kontos (die Schritte variieren je nach Verifizierungsstufe Ihres Kontos) recovery_questionnaire_instructions.instruction2=Folgen Sie den Schritten zur Wiederherstellung Ihres Kontos (die Schritte variieren je nach Verifizierungsstufe Ihres Kontos)
recovery_questionnaire_loginfactor.banner.error=Bitte w&auml;hlen Sie eine Antwort. recovery_questionnaire_loginfactor.banner.error=Bitte w&auml;hlen Sie eine Antwort.
recovery_questionnaire_loginfactor.no=Nein recovery_questionnaire_loginfactor.no=Nein
recovery_questionnaire_loginfactor.question=Haben Sie mehr als einen Loginfaktor (AGOV Access App oder Sicherheitsschl&uuml;ssel) f&uuml;r Ihren AGOV-Login registriert? recovery_questionnaire_loginfactor.question=Haben Sie mehr als einen Loginfaktor (AGOV access App oder Sicherheitsschl&uuml;ssel) f&uuml;r Ihren AGOV-Login registriert?
recovery_questionnaire_loginfactor.yes=Ja recovery_questionnaire_loginfactor.yes=Ja
recovery_questionnaire_no_recovery.explanation1=Ausgehend von Ihren Antworten scheint eine Wiederherstellung Ihres AGOV-Logins im Moment nicht notwendig zu sein. recovery_questionnaire_no_recovery.explanation1=Ausgehend von Ihren Antworten scheint eine Wiederherstellung Ihres AGOV-Logins im Moment nicht notwendig zu sein.
recovery_questionnaire_no_recovery.explanation2=Falls Sie weitere Informationen ben&ouml;tigen, besuchen Sie bitte <a class='link' href='https://agov.ch/help' target='_blank'>https://agov.ch/help</a> f&uuml;r Support-Artikel. recovery_questionnaire_no_recovery.explanation2=Falls Sie weitere Informationen ben&ouml;tigen, besuchen Sie bitte <a class='link' href='https://agov.ch/help' target='_blank'>https://agov.ch/help</a> f&uuml;r Support-Artikel.
@ -205,7 +225,7 @@ recovery_questionnaire_reason_selection.answer4=Ich habe mein Telefon / Sicherhe
recovery_questionnaire_reason_selection.answer5=Ich habe ein neues Telefon und habe vergessen, meine AGOV access App zu &uuml;bertragen recovery_questionnaire_reason_selection.answer5=Ich habe ein neues Telefon und habe vergessen, meine AGOV access App zu &uuml;bertragen
recovery_questionnaire_reason_selection.answer6=Ich habe die PIN f&uuml;r meine AGOV access App vergessen recovery_questionnaire_reason_selection.answer6=Ich habe die PIN f&uuml;r meine AGOV access App vergessen
recovery_questionnaire_reason_selection.answer7=Ich habe meine Sicherheitsschl&uuml;ssel oder AGOV access Apps, hatte aber Probleme beim Einloggen recovery_questionnaire_reason_selection.answer7=Ich habe meine Sicherheitsschl&uuml;ssel oder AGOV access Apps, hatte aber Probleme beim Einloggen
recovery_questionnaire_reason_selection.answer8=Ich habe den Zugriff auf alle meine Sicherheitsschl&uuml;ssel und Apps verloren recovery_questionnaire_reason_selection.answer8=Ich habe den Zugriff auf alle meine Sicherheitsschl&uuml;ssel und AGOV access Apps verloren
recovery_questionnaire_reason_selection.answer9=Ich habe Probleme mit einem meiner Loginfaktoren (gel&ouml;scht, zur&uuml;ckgesetzt, vergessene PIN) recovery_questionnaire_reason_selection.answer9=Ich habe Probleme mit einem meiner Loginfaktoren (gel&ouml;scht, zur&uuml;ckgesetzt, vergessene PIN)
recovery_questionnaire_reason_selection.banner.error=Bitte w&auml;hlen Sie einen Grund aus. recovery_questionnaire_reason_selection.banner.error=Bitte w&auml;hlen Sie einen Grund aus.
recovery_questionnaire_reason_selection.instruction=Bitte w&auml;hlen Sie einen Grund wieso Sie den AGOV recovery Prozess starten: recovery_questionnaire_reason_selection.instruction=Bitte w&auml;hlen Sie einen Grund wieso Sie den AGOV recovery Prozess starten:

View File

@ -1,4 +1,14 @@
agov-ident.done.message=Your AGOV account is now ready for use. Please close this page.
agov-ident.done.title=Done
agov-ident.failed.instruction=You need an AGOV account and pass the suggested data verification to successfully finish the on-boarding. Please try again.
agov-ident.failed.message=Onboarding cancelled or data verification postponed
agov-ident.failed.title=Verification needed
agov-ident.invalid-url.instruction=The link you used to access this page isn't valid. Please make sure you use it as received without any typos or click it directly on the page, where it is published.
agov-ident.invalid-url.message=Link can't be processed
agov-ident.invalid-url.title=Invalid Link
agov-ident.onboarding=Registration & Verification
agov-ident.retry=Try again
darkModeSwitch.aria.label=Dark mode toggle darkModeSwitch.aria.label=Dark mode toggle
error_1=Please check your input. error_1=Please check your input.
error_10=Please select the correct user account. error_10=Please select the correct user account.
@ -52,12 +62,16 @@ general.fieldRequired=Field required.
general.getStarted=Get started general.getStarted=Get started
general.goAGOVHelp=Go to AGOV help general.goAGOVHelp=Go to AGOV help
general.goAccessApp=Login with AGOV access general.goAccessApp=Login with AGOV access
general.goToAccessApp=Go to AGOV access app
general.help=Help general.help=Help
general.help.link=https://agov.ch/help general.help.link=https://agov.ch/help
general.login=Login general.login=Login
general.login.accessApp=Login with Access App
general.login.securityKey=Login with Security Key
general.loginSecurityKey=Start Security key login general.loginSecurityKey=Start Security key login
general.moreOptions=MORE OPTIONS
general.or=OR general.or=OR
general.otherOptions=OTHER OPTIONS general.otherLoginMethods=Other login methods
general.recovery=Recovery general.recovery=Recovery
general.recovery.help.link=https://help.agov.ch/?c=100recovery general.recovery.help.link=https://help.agov.ch/?c=100recovery
general.recoveryCode.downloadPdf=Download as PDF general.recoveryCode.downloadPdf=Download as PDF
@ -70,6 +84,8 @@ general.recoveryOngoing=Ongoing recovery
general.register=Register general.register=Register
general.registerNow=Register now! general.registerNow=Register now!
general.registration=Registration general.registration=Registration
general.registration.dontHaveAnAccountYet=Don't have an AGOV account yet?
general.registration.seeOptions=See registration options
general.securityKey=Security key general.securityKey=Security key
general.skip.content=Skip to main content general.skip.content=Skip to main content
general.wrongPhoneNumber=Please enter a valid phone number general.wrongPhoneNumber=Please enter a valid phone number
@ -81,6 +97,7 @@ language.de=Deutsch
language.en=English language.en=English
language.fr=Fran&ccedil;ais language.fr=Fran&ccedil;ais
language.it=Italiano language.it=Italiano
language.rm=Rumantsch
languageDropdown.aria.label=Select language languageDropdown.aria.label=Select language
loainfo.description.200=To access the application, we need to verify your data. The process can take up to 2 - 3 days. loainfo.description.200=To access the application, we need to verify your data. The process can take up to 2 - 3 days.
loainfo.description.300=To access the application we need to verify your data through one of two processes. You can choose your preferred process in the next step. loainfo.description.300=To access the application we need to verify your data through one of two processes. You can choose your preferred process in the next step.
@ -95,9 +112,12 @@ mauth_usernameless.banner.error=Authentication interrupted.<br>Please try again
mauth_usernameless.banner.info=Scan successful.<br>Please continue in the AGOV access app. mauth_usernameless.banner.info=Scan successful.<br>Please continue in the AGOV access app.
mauth_usernameless.banner.success=Authentication successful!<br>Please wait to be logged in. mauth_usernameless.banner.success=Authentication successful!<br>Please wait to be logged in.
mauth_usernameless.cannotLogin=Lost access to your app / security key? mauth_usernameless.cannotLogin=Lost access to your app / security key?
mauth_usernameless.cannotLogin.accessApp=Lost access to your app?
mauth_usernameless.cannotLogin.securityKey=Lost access to your security key?
mauth_usernameless.hideQR=Hide QR code mauth_usernameless.hideQR=Hide QR code
mauth_usernameless.instructions=Log in by scanning the QR code with your AGOV access app mauth_usernameless.instructions=Log in by scanning the QR code with your AGOV access app
mauth_usernameless.noAccount=Don't have an AGOV-Login yet? mauth_usernameless.noAccount=Don't have an AGOV account yet?
mauth_usernameless.selectLoginMethod=Select login method
mauth_usernameless.showQR=Show QR code mauth_usernameless.showQR=Show QR code
mauth_usernameless.startRecovery=Start account recovery mauth_usernameless.startRecovery=Start account recovery
mauth_usernameless.useSecurityKey=Use a security key to log in mauth_usernameless.useSecurityKey=Use a security key to log in

View File

@ -1,4 +1,14 @@
agov-ident.done.message=Votre compte AGOV est maintenant pr&ecirc;t &agrave; &ecirc;tre utilis&eacute;. Veuillez fermer cette page.
agov-ident.done.title=Termin&eacute;
agov-ident.failed.instruction=Vous avez besoin d'un compte AGOV et de passer la v&eacute;rification des donn&eacute;es sugg&eacute;r&eacute;e pour terminer avec succ&egrave;s l'enregistrement. Veuillez r&eacute;essayer.
agov-ident.failed.message=Enregistrement annul&eacute; ou v&eacute;rification des donn&eacute;es report&eacute;e
agov-ident.failed.title=V&eacute;rification requise
agov-ident.invalid-url.instruction=Le lien que vous avez utilis&eacute; pour acc&eacute;der &agrave; cette page n'est pas valide. Veillez l'utiliser tel qu'il a &eacute;t&eacute; re&ccedil;u, sans fautes de frappe, ou cliquez directement sur la page o&ugrave; il est publi&eacute;.
agov-ident.invalid-url.message=Le lien ne peut pas &ecirc;tre trait&eacute;
agov-ident.invalid-url.title=Lien non valide
agov-ident.onboarding=Enregistrement et v&eacute;rification
agov-ident.retry=Essayez &agrave; nouveau
darkModeSwitch.aria.label=Activer l'apparence sombre darkModeSwitch.aria.label=Activer l'apparence sombre
error_1=Veuillez v&eacute;rifier votre saisie. error_1=Veuillez v&eacute;rifier votre saisie.
error_10=Veuillez s&eacute;lectionner le compte d&rsquo;utilisateur correct. error_10=Veuillez s&eacute;lectionner le compte d&rsquo;utilisateur correct.
@ -52,12 +62,16 @@ general.fieldRequired=Champ requis.
general.getStarted=D&eacute;marrer general.getStarted=D&eacute;marrer
general.goAGOVHelp=Rendez-vous sur AGOV help general.goAGOVHelp=Rendez-vous sur AGOV help
general.goAccessApp=Login avec AGOV access general.goAccessApp=Login avec AGOV access
general.goToAccessApp=Allez sur votre application AGOV access
general.help=Aide general.help=Aide
general.help.link=https://agov.ch/help general.help.link=https://agov.ch/help
general.login=Login general.login=Login
general.login.accessApp=Connexion avec l'application AGOV access
general.login.securityKey=Connexion avec la cl&eacute; de s&eacute;curit&eacute;
general.loginSecurityKey=D&eacute;marrer la connexion avec la cl&eacute; de s&eacute;curit&eacute; general.loginSecurityKey=D&eacute;marrer la connexion avec la cl&eacute; de s&eacute;curit&eacute;
general.moreOptions=PLUS D'OPTIONS
general.or=OU general.or=OU
general.otherOptions=AUTRES OPTIONS general.otherLoginMethods=Autres m&eacute;thodes de connexion
general.recovery=R&eacute;cup&eacute;ration general.recovery=R&eacute;cup&eacute;ration
general.recovery.help.link=https://help.agov.ch/?c=100recovery general.recovery.help.link=https://help.agov.ch/?c=100recovery
general.recoveryCode.downloadPdf=T&eacute;l&eacute;charger en format PDF general.recoveryCode.downloadPdf=T&eacute;l&eacute;charger en format PDF
@ -70,6 +84,8 @@ general.recoveryOngoing=R&eacute;cup&eacute;ration en cours
general.register=Cr&eacute;er un compte general.register=Cr&eacute;er un compte
general.registerNow=Enregistrez-vous d&egrave;s maintenant! general.registerNow=Enregistrez-vous d&egrave;s maintenant!
general.registration=Enregistrement general.registration=Enregistrement
general.registration.dontHaveAnAccountYet=Vous n'avez pas de compte AGOV ?
general.registration.seeOptions=Voir les options d'enregistrement
general.securityKey=Cl&eacute; de s&eacute;curit&eacute; general.securityKey=Cl&eacute; de s&eacute;curit&eacute;
general.skip.content=Passer au contenu principal general.skip.content=Passer au contenu principal
general.wrongPhoneNumber=Veuillez saisir un num&eacute;ro de t&eacute;l&eacute;phone valable general.wrongPhoneNumber=Veuillez saisir un num&eacute;ro de t&eacute;l&eacute;phone valable
@ -81,6 +97,7 @@ language.de=Deutsch
language.en=English language.en=English
language.fr=Fran&ccedil;ais language.fr=Fran&ccedil;ais
language.it=Italiano language.it=Italiano
language.rm=Rumantsch
languageDropdown.aria.label=S&eacute;lectionner la langue languageDropdown.aria.label=S&eacute;lectionner la langue
loainfo.description.200=Pour acc&eacute;der &agrave; l'application, nous devons v&eacute;rifier vos donn&eacute;es. Ce processus peut prendre jusqu'&agrave; 2 ou 3 jours. loainfo.description.200=Pour acc&eacute;der &agrave; l'application, nous devons v&eacute;rifier vos donn&eacute;es. Ce processus peut prendre jusqu'&agrave; 2 ou 3 jours.
loainfo.description.300=Pour acc&eacute;der &agrave; l'application, nous devons v&eacute;rifier vos donn&eacute;es par le biais de l'une des deux proc&eacute;dures suivantes. Vous pouvez choisir la proc&eacute;dure que vous pr&eacute;f&eacute;rez &agrave; l'&eacute;tape suivante. loainfo.description.300=Pour acc&eacute;der &agrave; l'application, nous devons v&eacute;rifier vos donn&eacute;es par le biais de l'une des deux proc&eacute;dures suivantes. Vous pouvez choisir la proc&eacute;dure que vous pr&eacute;f&eacute;rez &agrave; l'&eacute;tape suivante.
@ -95,9 +112,12 @@ mauth_usernameless.banner.error=Authentification interrompue.<br>Veuillez r&eacu
mauth_usernameless.banner.info=Scan r&eacute;ussi!<br> Veuillez continuer dans l'application AGOV access. mauth_usernameless.banner.info=Scan r&eacute;ussi!<br> Veuillez continuer dans l'application AGOV access.
mauth_usernameless.banner.success=Authentification r&eacute;ussie!<br>Veuillez attendre d'&ecirc;tre connect&eacute;. mauth_usernameless.banner.success=Authentification r&eacute;ussie!<br>Veuillez attendre d'&ecirc;tre connect&eacute;.
mauth_usernameless.cannotLogin=Avez-vous perdu l'acc&egrave;s &agrave; votre application / votre cl&eacute; de s&eacute;curit&eacute; ? mauth_usernameless.cannotLogin=Avez-vous perdu l'acc&egrave;s &agrave; votre application / votre cl&eacute; de s&eacute;curit&eacute; ?
mauth_usernameless.cannotLogin.accessApp=Vous avez perdu l'acc&egrave;s &agrave; votre application AGOV access ?
mauth_usernameless.cannotLogin.securityKey=Avez-vous perdu l'acc&egrave;s &agrave; votre cl&eacute; de s&eacute;curit&eacute; ?
mauth_usernameless.hideQR=Cacher le code QR mauth_usernameless.hideQR=Cacher le code QR
mauth_usernameless.instructions=Connectez-vous en scannant le code QR avec l'application AGOV access mauth_usernameless.instructions=Connectez-vous en scannant le code QR avec l'application AGOV access
mauth_usernameless.noAccount=Vous n'avez pas encore d'AGOV-Login ? mauth_usernameless.noAccount=Vous n'avez pas de compte AGOV ?
mauth_usernameless.selectLoginMethod=S&eacute;l&eacute;ctionner la m&eacute;thode de connexion
mauth_usernameless.showQR=Afficher le code QR mauth_usernameless.showQR=Afficher le code QR
mauth_usernameless.startRecovery=Commencer la r&eacute;cup&eacute;ration du compte mauth_usernameless.startRecovery=Commencer la r&eacute;cup&eacute;ration du compte
mauth_usernameless.useSecurityKey=Utiliser une cl&eacute; de s&eacute;curit&eacute; pour se connecter mauth_usernameless.useSecurityKey=Utiliser une cl&eacute; de s&eacute;curit&eacute; pour se connecter
@ -150,12 +170,12 @@ providePhoneNumber.modal.title=R&eacute;p&eacute;ter votre num&eacute;ro de t&ea
providePhoneNumber.saveButtonText=Sauvegarder providePhoneNumber.saveButtonText=Sauvegarder
providePhoneNumber.title=Ajouter le num&eacute;ro de t&eacute;l&eacute;phone providePhoneNumber.title=Ajouter le num&eacute;ro de t&eacute;l&eacute;phone
recovery_accessapp_auth.accessAppRegistered=L'application AGOV access est d&eacute;j&agrave; enregistr&eacute;e recovery_accessapp_auth.accessAppRegistered=L'application AGOV access est d&eacute;j&agrave; enregistr&eacute;e
recovery_accessapp_auth.instruction1=Vous avez d&eacute;j&agrave; enregistr&eacute; une nouvelle AGOV access app !!!ACCESS_APP_NAME!!! dans le cadre du processus de r&eacute;cup&eacute;ration. recovery_accessapp_auth.instruction1=Vous avez d&eacute;j&agrave; enregistr&eacute; une nouvelle application AGOV access !!!ACCESS_APP_NAME!!! dans le cadre du processus de r&eacute;cup&eacute;ration.
recovery_accessapp_auth.instruction2=Veuillez utiliser !!!ACCESS_APP_NAME!!! pour vous identifier. recovery_accessapp_auth.instruction2=Veuillez utiliser !!!ACCESS_APP_NAME!!! pour vous identifier.
recovery_check_code.banner.lockedError=Trop de saisies erron&eacute;es. Veuillez r&eacute;essayer dans quelques minutes. recovery_check_code.banner.lockedError=Trop de saisies erron&eacute;es. Veuillez r&eacute;essayer dans quelques minutes.
recovery_check_code.codeIncorrect=Le code saisi est incorrect. Veuillez r&eacute;essayer. recovery_check_code.codeIncorrect=Le code saisi est incorrect. Veuillez r&eacute;essayer.
recovery_check_code.enterRecoveryCode=Saisir le code de r&eacute;cup&eacute;ration recovery_check_code.enterRecoveryCode=Saisir le code de r&eacute;cup&eacute;ration
recovery_check_code.instruction=Veuillez saisir votre code de r&eacute;cup&eacute;ration &agrave; douze chiffres. Lors de votre inscription, vous avez re&ccedil;u le code de r&eacute;cup&eacute;ration sous la forme d&rsquo;un fichier PDF ou dans AGOV me. recovery_check_code.instruction=Veuillez saisir votre code de r&eacute;cup&eacute;ration &agrave; douze chiffres. Lors de votre inscription, vous avez re&ccedil;u le code de r&eacute;cup&eacute;ration sous la forme d&rsquo;un fichier PDF ou dans &laquo; AGOV me &raquo;.
recovery_check_code.invalid.code=Le code est invalide recovery_check_code.invalid.code=Le code est invalide
recovery_check_code.invalid.code.required=Code requis recovery_check_code.invalid.code.required=Code requis
recovery_check_code.invalid.code.tooLong=Le code est trop long recovery_check_code.invalid.code.tooLong=Le code est trop long
@ -200,7 +220,7 @@ recovery_questionnaire_no_recovery.instruction2=Si vous avez enregistr&eacute; p
recovery_questionnaire_reason_selection.answer1=Je n'arrive pas &agrave; me connecter, m&ecirc;me si j'ai mon application / ma cl&eacute; de s&eacute;curit&eacute; recovery_questionnaire_reason_selection.answer1=Je n'arrive pas &agrave; me connecter, m&ecirc;me si j'ai mon application / ma cl&eacute; de s&eacute;curit&eacute;
recovery_questionnaire_reason_selection.answer10=J'ai perdu l'un de mes facteurs d'authentification (application AGOV access ou cl&eacute; de s&eacute;curit&eacute;) recovery_questionnaire_reason_selection.answer10=J'ai perdu l'un de mes facteurs d'authentification (application AGOV access ou cl&eacute; de s&eacute;curit&eacute;)
recovery_questionnaire_reason_selection.answer2=Je n'ai pas pu terminer mon inscription recovery_questionnaire_reason_selection.answer2=Je n'ai pas pu terminer mon inscription
recovery_questionnaire_reason_selection.answer3=J'ai supprim&eacute;, r&eacute;install&eacute; ou r&eacute;initialis&eacute; mon application d'acc&egrave;s AGOV recovery_questionnaire_reason_selection.answer3=J'ai supprim&eacute;, r&eacute;install&eacute; ou r&eacute;initialis&eacute; mon application AGOV access
recovery_questionnaire_reason_selection.answer4=J'ai perdu mon t&eacute;l&eacute;phone / cl&eacute; de s&eacute;curit&eacute; recovery_questionnaire_reason_selection.answer4=J'ai perdu mon t&eacute;l&eacute;phone / cl&eacute; de s&eacute;curit&eacute;
recovery_questionnaire_reason_selection.answer5=J'ai un nouveau t&eacute;l&eacute;phone et j'ai oubli&eacute; de transf&eacute;rer mon application AGOV access recovery_questionnaire_reason_selection.answer5=J'ai un nouveau t&eacute;l&eacute;phone et j'ai oubli&eacute; de transf&eacute;rer mon application AGOV access
recovery_questionnaire_reason_selection.answer6=J'ai oubli&eacute; mon PIN pour l'application AGOV access recovery_questionnaire_reason_selection.answer6=J'ai oubli&eacute; mon PIN pour l'application AGOV access

View File

@ -1,4 +1,14 @@
agov-ident.done.message=Il vostro conto AGOV &egrave; ora pronto per l'uso. Pu&ograve; chiudere questa pagina.
agov-ident.done.title=Finito
agov-ident.failed.instruction=Per completare la registrazione &egrave; necessario disporre di un account AGOV e superare la verifica dei dati suggerita. Riprova.
agov-ident.failed.message=Registrazione annullata o verifica dei dati posticipata
agov-ident.failed.title=Verifica necessaria
agov-ident.invalid-url.instruction=Il link utilizzato per accedere a questa pagina non &egrave; valido. Assicuratevi di utilizzarlo come ricevuto, senza errori di battitura, oppure cliccate direttamente sulla pagina in cui &egrave; pubblicato.
agov-ident.invalid-url.message=Il link non pu&ograve; essere elaborato
agov-ident.invalid-url.title=Link non valido
agov-ident.onboarding=Registrazione e verifica
agov-ident.retry=Riprova
darkModeSwitch.aria.label=Attivare la modalit&agrave; scura darkModeSwitch.aria.label=Attivare la modalit&agrave; scura
error_1=Verificare i dati inseriti. error_1=Verificare i dati inseriti.
error_10=Scegliere l&rsquo;account utente corretto. error_10=Scegliere l&rsquo;account utente corretto.
@ -52,12 +62,16 @@ general.fieldRequired=Campo obbligatorio.
general.getStarted=Iniziare general.getStarted=Iniziare
general.goAGOVHelp=Vai ad AGOV help general.goAGOVHelp=Vai ad AGOV help
general.goAccessApp=Login con AGOV access general.goAccessApp=Login con AGOV access
general.goToAccessApp=Vai all'app AGOV access
general.help=Aiuto general.help=Aiuto
general.help.link=https://agov.ch/help general.help.link=https://agov.ch/help
general.login=Accedere general.login=Accedere
general.login.accessApp=Accesso con l'App AGOV access
general.login.securityKey=Login con la chiave di sicurezza
general.loginSecurityKey=Iniziare il login con la chiave di sicurezza general.loginSecurityKey=Iniziare il login con la chiave di sicurezza
general.moreOptions=ALTRE OPZIONI
general.or=O general.or=O
general.otherOptions=ALTRE OPZIONI general.otherLoginMethods=Altri metodi di login
general.recovery=Ripristino general.recovery=Ripristino
general.recovery.help.link=https://help.agov.ch/?c=100recovery general.recovery.help.link=https://help.agov.ch/?c=100recovery
general.recoveryCode.downloadPdf=Salva come PDF general.recoveryCode.downloadPdf=Salva come PDF
@ -70,6 +84,8 @@ general.recoveryOngoing=Ripristino in corso
general.register=Registrarsi general.register=Registrarsi
general.registerNow=Si registri ora! general.registerNow=Si registri ora!
general.registration=Registrazione general.registration=Registrazione
general.registration.dontHaveAnAccountYet=Non ha ancora un AGOV account?
general.registration.seeOptions=Vedere le opzioni di registrazione
general.securityKey=Chiave di sicurezza general.securityKey=Chiave di sicurezza
general.skip.content=Vai al contenuto principale general.skip.content=Vai al contenuto principale
general.wrongPhoneNumber=Inserire un numero di cellulare valido general.wrongPhoneNumber=Inserire un numero di cellulare valido
@ -81,6 +97,7 @@ language.de=Deutsch
language.en=English language.en=English
language.fr=Fran&ccedil;ais language.fr=Fran&ccedil;ais
language.it=Italiano language.it=Italiano
language.rm=Rumantsch
languageDropdown.aria.label=Selezionare la lingua languageDropdown.aria.label=Selezionare la lingua
loainfo.description.200=Per accedere all'app &egrave; necessaria una verifica dei dati. La procedura pu&ograve; richiedere fino a 2&ndash;3 giorni lavorativi. loainfo.description.200=Per accedere all'app &egrave; necessaria una verifica dei dati. La procedura pu&ograve; richiedere fino a 2&ndash;3 giorni lavorativi.
loainfo.description.300=Per accedere all'app dobbiamo verificare i suoi dati tramite uno dei due processi. Al prossimo passaggio, pu&ograve; selezionare la procedura di verifica desiderata. loainfo.description.300=Per accedere all'app dobbiamo verificare i suoi dati tramite uno dei due processi. Al prossimo passaggio, pu&ograve; selezionare la procedura di verifica desiderata.
@ -95,9 +112,12 @@ mauth_usernameless.banner.error=Autenticazione interrotta.<br>Riprovare dopo che
mauth_usernameless.banner.info=La scansione &egrave; stata eseguita.<br>Continuare nell'app AGOV access. mauth_usernameless.banner.info=La scansione &egrave; stata eseguita.<br>Continuare nell'app AGOV access.
mauth_usernameless.banner.success=Autenticazione riuscita!<br>Aspettare di essere connessi. mauth_usernameless.banner.success=Autenticazione riuscita!<br>Aspettare di essere connessi.
mauth_usernameless.cannotLogin=Ha perso l'accesso alla sua app/chiave di sicurezza? mauth_usernameless.cannotLogin=Ha perso l'accesso alla sua app/chiave di sicurezza?
mauth_usernameless.cannotLogin.accessApp=Ha perso l'accesso al suo App AGOV access?
mauth_usernameless.cannotLogin.securityKey=Ha perso l'accesso alla sua chiave di sicurezza?
mauth_usernameless.hideQR=Nascondi il codice QR mauth_usernameless.hideQR=Nascondi il codice QR
mauth_usernameless.instructions=Per accedere, scansionare il codice QR con l'app AGOV access. mauth_usernameless.instructions=Per accedere, scansionare il codice QR con l'app AGOV access.
mauth_usernameless.noAccount=Non ha ancora un AGOV-Login ? mauth_usernameless.noAccount=Non ha ancora un AGOV account?
mauth_usernameless.selectLoginMethod=Selezionare il metodo di login
mauth_usernameless.showQR=Visualizza il codice QR mauth_usernameless.showQR=Visualizza il codice QR
mauth_usernameless.startRecovery=Inizia il recupero dell'account mauth_usernameless.startRecovery=Inizia il recupero dell'account
mauth_usernameless.useSecurityKey=Accedere utilizzando una chiave di sicurezza. mauth_usernameless.useSecurityKey=Accedere utilizzando una chiave di sicurezza.

View File

@ -0,0 +1,237 @@
agov-ident.done.message=Your AGOV account is now ready for use. Please close this page.
agov-ident.done.title=Done
agov-ident.failed.instruction=You need an AGOV account and pass the suggested data verification to successfully finish the on-boarding. Please try again.
agov-ident.failed.message=Onboarding cancelled or data verification postponed
agov-ident.failed.title=Verification needed
agov-ident.invalid-url.instruction=The link you used to access this page isn't valid. Please make sure you use it as received without any typos or click it directly on the page, where it is published.
agov-ident.invalid-url.message=Link can't be processed
agov-ident.invalid-url.title=Invalid Link
agov-ident.onboarding=Registration & Verification
agov-ident.retry=Try again
darkModeSwitch.aria.label=Activar l'apparientscha stgira
error_1=Please check your input.
error_10=Please select the correct user account.
error_100=Certificate upload not possible. Certificate already exists. Please contact your helpdesk.
error_101=The entered email address is not valid.
error_11=Please use another certficate or login with another credential type.
error_2=Please select another login name.
error_3=Your account will be locked if next authentication fails.
error_4=Your new password does not comply with the security policy. Please choose a different password.
error_5=Error in password confirmation.
error_50=The new password is too short.
error_55=The new password has to differ from old passwords.
error_6=Password change required.
error_7=Change of login ID required.
error_8=Your account has been locked due to repeated authentication failures.
error_81=No access card found, access from internet denied.
error_83=Your access card is no longer valid. Please contact your advisor to get a new access card.
error_9=Session take over failed.
error_97=You are not authorized to access this resource.
error_98=Your account has been locked.
error_99=System problems. Please try later.
error_9901=You need a valid on-boarding link to access this page.
error_9902=The email used for authentication doesn't match the expected one in operations. Please ask for a new on-boarding link.
error_9903=The used IdP didn't send us a valid assertion. Please make sure, you use the correct IdP. Ask the support for a new on-boarding link.
error_9904=Your link is not valid anymore. Please make sure, that you are using the latest Link received from operations. Ask for a new link, if the problem persists.
error_9905=There is a problem with your operations account. Please contact the support.
error_9909=An internal error occured. Please ask the support for a new on-boarding link.
errors.duplicateValue=Your account is already linked with another operations access.
fido2_auth.cancel.fido=L'autentificaziun cun la clav da segirezza &egrave; vegnida interrutta. Controllai che Vossa clav FIDO saja registrada e che Voss e-mail saja correct.
fido2_auth.instruction1=Cliccai sin "Vinavant"
fido2_auth.instruction2=En curt ina fanestra d'autentificaziun vegn ad aviar
fido2_auth.instruction3=Suandai las instrucziuns
fido2_auth.skipInstructions=Sursiglir las instrucziuns la proxima giada
fido2_auth.switchLogin=AS ANNUNZIAR CUN
footer.link=https://agov.ch
footer.link.label=Contact
footer.text=Authentication service of Swiss authorities AGOV - a collaboration between cantons, their municipalities, and the federal administration. -
general.AGOVAccessApp=App AGOV access
general.accessApp=App AGOV access
general.authenticate=Autentifitgar
general.back=Enavos
general.cancel=Interrumper
general.confirm=Confermar
general.contactSupport=Contactar il support
general.continue=Cuntinuar
general.edit=Modifitgar
general.email=E-mail
general.email.address=Adressa dad e-mail
general.entryCode=Endatai il code
general.fieldRequired=Champ obligatoric.
general.getStarted=Cumenzar
general.goAGOVHelp=Vinavant a AGOV help
general.goAccessApp=Login cun AGOV access
general.goToAccessApp=Cuntinuai a Vossa app AGOV access
general.help=Agid
general.help.link=https://agov.ch/help
general.login=Login
general.login.accessApp=As Annunziar cun la App Access
general.login.securityKey=As Annunziar cun la clav da segirezza
general.loginSecurityKey=Iniziar il login cun la clav da segirezza
general.moreOptions=DAPLI OPTIONS
general.or=U
general.otherLoginMethods=Ulteriuras methodas da registraziun
general.recovery=Recuperaziun
general.recovery.help.link=https://help.agov.ch/?c=100recovery
general.recoveryCode.downloadPdf=Telechargiar en furma da PDF
general.recoveryCode.inputLabel=Code da recuperaziun
general.recoveryCode.repeatCodeError=Il code che Vus avais endat&agrave; n'&egrave; betg correct. Controllai che Vus l'hajas arcun&agrave; correctamain ed endatai anc ina giada il code.
general.recoveryCode.repeatCodeModal.description=In code da restabiliment pers u betg arcun&agrave; correctamain po difficultar la recuperaziun da Voss conto. Per verifitgar che Vus hajas arcun&agrave; correctamain Voss code, al repeti qua sutvart per plaschair.
general.recoveryCode.repeatCodeModal.title=Repeti il code da recuperaziun
general.recoveryCode.reveal=Revelar il code da recuperaziun
general.recoveryOngoing=Recuperaziun betg terminada
general.register=Registrar
general.registerNow=As registrai ussa!
general.registration=Registraziun
general.registration.dontHaveAnAccountYet=N'avais Vus anc nagin account AGOV?
general.registration.seeOptions=Mussar las methodas da registraziun
general.securityKey=Clav da segirezza
general.skip.content=Avanzar a la part principala
general.wrongPhoneNumber=Endatai in numer da telefonin valid
generic.auth.error.message=There was a service interruption. We are working on it.
generic.auth.error.next.steps=Please try again later. Please consult AGOV help if the problem persists.
generic.auth.error.subtitle=Something went wrong
generic.auth.error.title=Error
language.de=Deutsch
language.en=English
language.fr=Fran&ccedil;ais
language.it=Italiano
language.rm=Rumantsch
languageDropdown.aria.label=Selecziunar la lingua
loainfo.description.200=Ina verificaziun da Vossas datas &egrave; necessaria per acceder a questa applicaziun. Quest process po durar fin 2 u 3 dis.
loainfo.description.300=Per acceder a questa applicaziun, stuain nus verifitgar Vossas indicaziuns cun in da dus process. Vus pudais selecziunar la metoda preferida en il proxim pass.
loainfo.description.400=Per acceder a questa applicaziun stuais Vus inditgar Voss numer AVS.
loainfo.helper=Vossas datas persunalas ston vegnir verifitgadas!
loainfo.later=Pli tard
loainfo.startNow=Vulais Vus ussa cumenzar cun il process?
loainfo.startVerification=Cumenzar cun la verificaziun
loainfo.title=Verifitgai Vossas datas
mauth_usernameless.EID=Cuntinuar cun la e-ID svizra
mauth_usernameless.banner.error=Autentificaziun interrutta. <br>Empruvai anc ina giada per plaschair, suenter che la pagina &egrave; rechargiada.
mauth_usernameless.banner.info=Scan reuss&igrave; <br>Cuntinuai per plaschair en l'app AGOV access.
mauth_usernameless.banner.success=Autentificaziun reussida! <br>Spetgai fin che Vus essas annunziads.
mauth_usernameless.cannotLogin=Avais Vus pers l'access a l'app / la clav da segirezza?
mauth_usernameless.cannotLogin.accessApp=Avais Vus pers l'access a Vossa app?
mauth_usernameless.cannotLogin.securityKey=Avais Vus pers l'access a Vossa clav da segirezza?
mauth_usernameless.hideQR=Zuppentar il code QR
mauth_usernameless.instructions=Per As annunziar, scannai il code QR cun Vossa app AGOV access
mauth_usernameless.noAccount=N'avais Vus anc nagin conto AGOV?
mauth_usernameless.selectLoginMethod=Selecziunai ina metoda da login
mauth_usernameless.showQR=Mussar il code QR
mauth_usernameless.startRecovery=Cumenzar cun la recuperaziun dal conto
mauth_usernameless.useSecurityKey=Duvrai ina clav da segirezza per As annunziar
mauth_usernameless.useSecurityKeyInfo=Ina clav da segirezza fisica pussibilitescha ina annunzia segira senza telefonin.
op-admin.login=AGOV op admin
op-admin.login.intro.message=Login with your username and password
op-admin.login.loginid=LoginId
op-admin.login.password=Passwort
op-admin.login.title=Login
op-admin.logout=AGOV op admin
op-admin.logout.message=You have successfully logged out.
op-admin.logout.title=Logout
op-admin.pwchange.intro.message=Password change required
op-admin.pwchange.newpassword=New password
op-admin.pwchange.newpassword2=Repeat new password
op-admin.pwchange.password=Current password
op-admin.pwchange.title=Password Change
op-idmlogin.role.accs-mgmt-idm=IDM accessrights management
op-idmlogin.role.accs-mgmt-nonidm=Accessrights management
op-idmlogin.role.idmcfg-mgmt=IDM set-up
op-idmlogin.role.readonly-access=Default access (readonly)
op-idmlogin.role.support-basic=Support cases (recovery, ...)
op-idmlogin.role.support-priv=3rd level support (archiving, off-boarding)
op-idmlogin.role.usr-mgmt=User management (operations)
op-idmlogin.role.usr-unit-mgmt=User and organization management (operations)
op-idmlogin.select=AGOV idm
op-idmlogin.select.intro=Please select one of the profiles below...
op-idmlogin.select.note=Profiles marked with a * should only be used if required for a specific support or release tasks.
op-idmlogin.select.title=Profile selection
op-onboarding.done.message=On-boarding was successfull. You can now use your AGOV operations access. Please close the browser, before accessing on of the operations application.
op-onboarding.done.title=DONE
op-onboarding.failed.title=ERROR
op-onboarding.intro.message1=To complete your on-boarding for your AGOV operations access, you need either an AGOV or a FED-LOGIN account.
op-onboarding.intro.message2=After clicking on "Continue", you will be redirected for authentication.
op-onboarding.intro.message3=If you are using AGOV, and your account doesn't meet yet the required AGOVaq level, you will be given the possibility to start the required ID verification.
op-onboarding.intro.title=START
op-onboarding.onboarding=AGOV op on-boarding
op-onboarding.process.message=During the processing something went wrong. Please contact AGOV support if necessary and ask also for a new on-boarding link.
providePhoneNumber.banner=Il numer da telefonin sto esser capabla da retschaiver SMS. <br>Quest numer da telefonin na vegn betg duvr&agrave; per As contactar.
providePhoneNumber.description=AGOV pussibilitescha ussa la recuperaziun cun agid dal numer da telefonin. Durant la recuperaziun pudais Vus ussa cuntinuar cun in SMS, en cas che Vus avais pers Voss code da recuperaziun.
providePhoneNumber.errorBanner=Ils numers da telefonin na correspundan betg in a l'auter. Empruvai danovamain per plaschair.
providePhoneNumber.inputLabel=Numer da telefonin (opziunal)
providePhoneNumber.laterModal.description1=Senza numer da telefonin po la recuperaziun da Voss conto cuzzar fin 4 dis, en cas che Vus perdais Voss code da recuperaziun.
providePhoneNumber.laterModal.description2=Agiuntar in numer da telefonin pussibilitescha ina recuperaziun da Voss conto en paucas minutas.
providePhoneNumber.laterModal.description3=Quest numer da telefonin na vegn betg duvr&agrave; per As contactar.
providePhoneNumber.laterModal.title=Cuntinuar senza numer da telefonin?
providePhoneNumber.modal.description=In numer da telefonin che n'&egrave; betg vegn&igrave; arcun&agrave; correctamain, po difficultar la recuperaziun da Voss conto. Per verifitgar che Vus hajas arcun&agrave; correctamain Voss numer da telefonin, al repeti qua sutvart per plaschair.
providePhoneNumber.modal.inputLabel=Numer da telefonin
providePhoneNumber.modal.title=Repeti il numer da telefonin
providePhoneNumber.saveButtonText=Arcunar
providePhoneNumber.title=Inditgar in numer da telefonin
recovery_accessapp_auth.accessAppRegistered=AGOV access app already registered
recovery_accessapp_auth.instruction1=You have already registered a new AGOV access app !!!ACCESS_APP_NAME!!! as part of the recovery process.
recovery_accessapp_auth.instruction2=Please use !!!ACCESS_APP_NAME!!! to identify you.
recovery_check_code.banner.lockedError=Too many invalid input attempts. Please try again in a few minutes.
recovery_check_code.codeIncorrect=Code entered is incorrect. Please try again.
recovery_check_code.enterRecoveryCode=Enter recovery code
recovery_check_code.instruction=Please enter below your personal 12-digit recovery code. You will have received the recovery code as a PDF file during registration or in AGOV me.
recovery_check_code.invalid.code=The code is invalid
recovery_check_code.invalid.code.required=Code required
recovery_check_code.invalid.code.tooLong=The code is too long
recovery_check_code.noAccess=I do not have access to my code
recovery_check_code.noCodeAccess=Are you sure you don't have access to your recovery code?
recovery_check_code.noCodeAccessInstructions=If you have lost access to your recovery code please go to AGOV help in order to contact a AGOV support agent. They will be able to help you with the recovery process.
recovery_check_code.too_many_tries.instruction1=The recovery code you have entered might have expired or you might have tried to enter it too many times.
recovery_check_code.too_many_tries.instruction2=Please go to AGOV help in order to contact a support agent. They will be able to help you with the recovery process.
recovery_check_noCode.banner.error=Too many attempts.
recovery_check_noCode.instruction1=You might have tried to enter the recovery code too many times.
recovery_check_noCode.instruction2=Please close the web browser and start the account recovery again in ten minutes from <a class='link' href='https://agov.ch/me'>https://agov.ch/me</a>.
recovery_code.banner.error=Please reveal your new code to be able to continue.
recovery_code.instruction=Recovery codes help you gain access to your account in case you lost all of your login factors. Please store the recovery code in a safe place.
recovery_code.newRecoveryCode=Introducing Recovery Code
recovery_code.validUntil=Valid until:
recovery_fidokey_auth.button=Start key authentication
recovery_fidokey_auth.fidoInstruction=Click on "Start key authentication"
recovery_fidokey_auth.instruction1=You have already registered a new security key !!!SECURITY_KEY_NAME!!! as part of the recovery process.
recovery_fidokey_auth.instruction2=Please use !!!SECURITY_KEY_NAME!!! to follow the steps below to identify you.
recovery_fidokey_auth.keyRegistered=Security key already registered
recovery_intro_email.banner.error=Il link che Vus avais duvr&agrave; &egrave; scad&igrave;. Endatai Vossa adressa dad e-mail per survegnir in nov link.
recovery_intro_email.banner.info=Inditgai Vossa adressa dad e-mail. Nus As tramettain in link, cun il qual Vus pudais cumenzar cun il process da recuperaziun.
recovery_intro_email.important=Impurtant:
recovery_intro_email.process=Il process da restabiliment duess mo vegnir duvr&agrave; en cas che Vus avais pers l'access a Voss facturs da login (stizz&agrave; l'app AGOV access, pers la clav da segirezza, pers il telefonin etc.).
recovery_intro_email_sent.banner.button=N'avais betg retschav&igrave; il e-mail?
recovery_intro_email_sent.banner.success=Grazia fitg! Proximamain vegnis Vus a retschaiver in e-mail cun in link da recupraziun ed instrucziuns.
recovery_on_going.finishRecovery=Finish recovery
recovery_on_going.instruction=You have an ongoing recovery process. Part of the recovery process can include an identity verification. To access applications with your AGOV-Login you need to finish the identity verification as well.
recovery_on_going.title=Please finish your recovery process.
recovery_questionnaire_instructions.banner.info=Resguardai che en tscherts cas stuais Vus avair access a Voss code da recuperaziun per che la recupraziun po reussir.
recovery_questionnaire_instructions.explanation=Sin basa da Vossas respostas pari d'esser necessari da recuperar Voss login AGOV. Cliccai sin Vinavant e suandai las instrucziuns sin il monitur.
recovery_questionnaire_instructions.instruction1=Inditgai l'adressa dad e-mail da Voss login AGOV. Nus As tramettain in link, cun il qual Vus pudais cumenzar il process da recuperaziun
recovery_questionnaire_instructions.instruction2=Suandai ils pass per recuperar Voss conto (ils pass varieschan tenor il nivel da verificaziun da Voss conto)
recovery_questionnaire_loginfactor.banner.error=Per plaschair selecziunai ina resposta.
recovery_questionnaire_loginfactor.no=Na
recovery_questionnaire_loginfactor.question=Avais Vus registr&agrave; pli che in factur da login (app AGOV access u clav da segirezza) per Voss login AGOV?
recovery_questionnaire_loginfactor.yes=Gea
recovery_questionnaire_no_recovery.explanation1=Sin basa da Vossas respostas na pari per il mument betg d'esser necessari da recuperar Voss login AGOV.
recovery_questionnaire_no_recovery.explanation2=Sche Vus duvrais ulteriuras infurmaziuns, consultai <a class='link' href='https://agov.ch/help' target='_blank'>https://agov.ch/help</a> per artitgels da support.
recovery_questionnaire_no_recovery.instruction1=Sche Vus avais difficultads d'As annunziar per in'applicaziun, visitai <a class='link' href='https://agov.ch/me' target='_blank'>https://agov.ch/me</a> e verifitgai sche Vus As pudais annunziar cun success.
recovery_questionnaire_no_recovery.instruction2=Sche Vus avais registr&agrave; plirs facturs da login, ma avais pers l'access ad in dad els, consultai <a class='link' href='https://agov.ch/me' target='_blank'>https://agov.ch/me</a> per stizzar il factur da login pers.
recovery_questionnaire_reason_selection.answer1=Jau hai problems da m'annunziar, malgr&agrave; che jau hai mia app / clav da segirezza
recovery_questionnaire_reason_selection.answer10=Jau hai pers in da mes facturs da login (app AGOV access u clav da segirezza)
recovery_questionnaire_reason_selection.answer2=Jau n'hai betg pud&igrave; terminar mia registraziun
recovery_questionnaire_reason_selection.answer3=Jau hai stizz&agrave; u reinizialis&agrave; mia app AGOV access
recovery_questionnaire_reason_selection.answer4=Jau hai pers mes telefonin / mia clav da segirezza
recovery_questionnaire_reason_selection.answer5=Jau hai in nov telefonin ed hai emblid&agrave; da transferir mia app AGOV access
recovery_questionnaire_reason_selection.answer6=Jau hai emblid&agrave; il PIN per mia app AGOV access
recovery_questionnaire_reason_selection.answer7=Jau hai mias clavs da segirezza u mias apps, hai dentant g&igrave; problems da m'annunziar
recovery_questionnaire_reason_selection.answer8=Jau hai pers l'access a tut mias clavs da segirezza ed apps AGOV
recovery_questionnaire_reason_selection.answer9=Jau hai problems cun in da mes facturs da login (stizz&agrave;, mess enavos, PIN emblid&agrave;)
recovery_questionnaire_reason_selection.banner.error=Per plaschair selecziunai in motiv.
recovery_questionnaire_reason_selection.instruction=Selecziunai per plaschair il motiv, pertge che Vus cumenzais il process da recuperaziun:
recovery_start_info.banner.warning=Vus na pudais betg utilisar Voss conto, fin ch'il process da recuperaziun &egrave; termin&agrave;.
recovery_start_info.instruction=Durant il process da recuperaziun vegnis Vus a registrar in nov factur da login. Sche Voss conto cuntegna infurmaziuns verifitgadas, stuais Vus eventualmain er far in process da verificaziun per pudair terminar il process da restabiliment.
recovery_start_info.title=Vus essas vidlonder da cumenzar cun il process da recuperaziun
user_input.invalid.email=Endatai in'adressa dad e-mail valida
user_input.invalid.email.required=Champ obligatoric
user_input.invalid.email.tooLong=Il text endat&agrave; e memia lung

View File

@ -0,0 +1,19 @@
/*!
* Draggable 3.11.5
* https://greensock.com
*
* @license Copyright 2008-2023, GreenSock. All rights reserved.
* Subject to the terms at https://greensock.com/standard-license or for
* Club GreenSock members, the agreement issued with that membership.
* @author: Jack Doyle, jack@greensock.com
*/
/*!
* GSAP 3.11.5
* https://greensock.com
*
* @license Copyright 2008-2023, GreenSock. All rights reserved.
* Subject to the terms at https://greensock.com/standard-license or for
* Club GreenSock members, the agreement issued with that membership.
* @author: Jack Doyle, jack@greensock.com
*/

View File

@ -0,0 +1,37 @@
<svg width="705" height="514" viewBox="0 0 705 514" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M129.938 18.7787C206.261 -49.8654 279.106 130.979 393.601 32.5266C508.097 -65.9257 589.967 87.2489 558.584 203.476C527.202 319.703 631.053 370.43 568.606 426.788C506.16 483.146 385.546 373.665 248.663 432.95C111.781 492.236 26.6306 318.213 95.245 227.348C163.859 136.482 53.6138 87.4228 129.938 18.7787Z" fill="#453F4F"/>
<path d="M194.863 0.59436C188.16 0.59436 181.504 1.31857 174.939 2.75162C161.333 5.74097 150.701 10.1326 142.519 16.1421C133.674 13.0449 123.134 10.7335 111.007 10.4099C76.0593 9.47 44.4398 20.3951 5.63973 51.7988C3.68277 55.9746 1.80286 60.397 0 65.0352C37.3362 34.8179 77.7543 17.2054 110.807 18.0837C120.191 18.3302 128.527 19.8557 135.785 22.013C126.771 31.4125 122.24 43.6936 122.287 58.5942C122.348 74.9586 129.313 82.355 135.138 85.6987C143.382 90.4139 154.661 89.7668 164.554 84.0038C175.463 77.6398 181.951 66.8843 181.904 55.2196C181.874 45.82 177.22 36.6208 169.454 30.6113C165.355 27.437 159.207 23.3074 151.132 19.5938C157.912 15.572 166.372 12.4594 176.588 10.225C188.207 7.68253 200.149 7.59012 212.106 9.9631C244.943 16.4811 272.371 28.1304 293.62 44.5873C310.509 57.6696 323.591 73.8338 332.467 92.6174C347.583 124.622 345.302 153.329 345.287 153.622V153.761C343.392 191.744 321.202 228.849 288.766 248.295C260.614 265.168 224.572 269.791 187.251 261.316C164.061 256.046 132.503 243.549 113.904 213.918C93.8722 182.006 99.2962 142.373 115.83 123.96C127.618 110.816 143.736 104.611 152.55 104.611C161.364 104.611 169.5 106.152 177.205 107.693C184.909 109.234 196.466 112.315 198.007 113.065L203.4 107.693C202.136 107.246 185.541 101.529 181.904 100.759C178.268 99.9881 175.664 98.4472 160.686 96.9063C145.708 95.3654 124.86 102.402 110.113 118.828C99.4349 130.724 93.5178 147.874 93.4099 167.151C93.3175 185.149 98.4179 203.671 107.401 217.986C127.387 249.883 160.933 263.242 185.541 268.836C224.788 277.758 262.848 272.811 292.711 254.921C327.274 234.212 350.896 194.703 352.945 154.254C353.115 152.174 355.18 122.727 339.416 89.3815C330.017 69.4884 316.195 52.3997 298.335 38.5624C276.131 21.3658 247.64 9.22345 213.616 2.47427C207.36 1.22614 201.104 0.609772 194.879 0.609772L194.863 0.59436ZM147.542 81.1993C144.399 81.1993 141.455 80.4905 138.944 79.0574C133.104 75.7137 129.991 68.6409 129.96 58.5942C129.914 44.2329 134.414 33.1076 143.859 24.8483C153.305 28.6389 160.332 33.2924 164.754 36.7133C170.656 41.2898 174.2 48.2239 174.231 55.2812C174.261 64.1723 169.207 72.4469 160.686 77.3932C156.356 79.9049 151.78 81.1993 147.542 81.1993Z" fill="#87A6FC"/>
<path d="M297.66 157.032L250.595 211.155C248.681 213.36 245.347 213.587 243.142 211.674C240.937 209.761 240.709 206.426 242.623 204.222L244.759 201.754L223.701 181.554C218.994 177.039 217.132 170.68 218.14 164.713L205.444 152.526C201.051 148.3 200.905 141.311 205.118 136.911L209.572 132.277L197.137 120.347C193.691 117.04 193.572 111.545 196.892 108.106C200.198 104.659 205.694 104.54 209.132 107.86L221.568 119.791L225.007 116.207C229.233 111.815 236.221 111.668 240.621 115.881L253.546 128.289L253.457 128.38C259.244 127.326 265.429 128.94 269.999 133.322L288.68 151.26L289.688 150.099C291.602 147.894 294.936 147.666 297.141 149.58C299.346 151.493 299.574 154.828 297.66 157.032Z" fill="#87A6FC"/>
<rect x="96" y="350" width="470" height="2" rx="1" fill="#8F8F8F"/>
<path d="M598.621 512.693C601.626 513.585 604.647 514 607.714 514V513.985C636.505 513.985 667.377 476.916 688.477 451.563C695.321 443.353 702.441 435.773 705 432.637L699.205 428.039C695.105 431.376 689.957 437.802 682.574 446.674L682.53 446.727C661.795 471.625 627.162 513.21 600.825 505.344C577.428 498.364 578.491 483.589 579.724 466.476L579.727 466.448C580.774 451.849 581.962 435.292 562.878 428.147C541.285 420.06 507.716 436.82 493.073 445.279C478.431 453.738 486.138 442.201 456.853 429.177L453 435.327C474.578 440.708 476.119 462.957 493.073 452.195C510.028 441.432 542.919 428.87 560.181 435.327C573.236 440.216 573.205 450.148 572.064 465.938L572.063 465.955C570.846 482.88 569.33 503.948 598.621 512.693Z" fill="#87A6FC"/>
<path d="M460.332 434.371C457.035 437.992 451.441 438.254 447.82 434.972L434.306 422.691L446.218 409.578L459.731 421.859C463.353 425.157 463.614 430.75 460.332 434.371Z" fill="#87A6FC"/>
<path d="M391.978 360.335L368.648 341.043C366.815 339.533 366.568 336.821 368.078 334.987C369.588 333.154 372.3 332.907 374.134 334.417L397.463 353.709L391.978 360.335Z" fill="#87A6FC"/>
<path d="M370.05 388.507L346.721 369.215C344.887 367.705 344.641 364.993 346.151 363.159C347.661 361.326 350.373 361.079 352.207 362.589L375.536 381.881L370.05 388.507Z" fill="#87A6FC"/>
<g opacity="0.6">
<path d="M391.978 360.335L368.648 341.043C366.815 339.533 366.568 336.821 368.078 334.987C369.588 333.154 372.3 332.907 374.134 334.417L397.463 353.709L391.978 360.335Z" fill="white"/>
</g>
<g opacity="0.6">
<path d="M370.05 388.499L346.721 369.207C344.887 367.697 344.641 364.985 346.151 363.151C347.661 361.318 350.373 361.071 352.207 362.581L375.536 381.873L370.05 388.499Z" fill="white"/>
</g>
<path d="M444.985 384.731L445.601 383.992C448.498 380.479 445.385 377.933 441.888 375.036C438.837 372.509 437.142 369.908 434.152 372.265L400.006 343.82L360.944 390.556L395.891 418.339C393.657 421.806 395.844 423.205 399.095 425.886C402.547 428.736 406.108 431.56 409.035 428.185C419.282 435.89 433.829 434.118 441.888 424.071L447.496 417.075C455.371 407.26 454.153 393.114 445 384.716L444.985 384.731Z" fill="#87A6FC"/>
<path d="M405.907 385.667L381.813 365.742L377.914 370.456L402.008 390.381L405.907 385.667Z" fill="#E0E0E0"/>
<path d="M259.1 298.075L257.525 299.425C251.975 298.375 242.675 297.85 229.625 297.85C225.875 297.85 223.475 298.675 222.425 300.325C221.375 301.825 220.85 304.675 220.85 308.875C220.85 321.625 221.6 330.25 223.1 334.75C223.25 335.2 223.85 336.25 224.9 337.9C225.95 339.55 226.475 340.675 226.475 341.275C226.475 342.025 225.95 343.3 224.9 345.1H217.7C216.5 345.1 214.85 343.825 212.75 341.275C210.65 338.725 209.6 336.775 209.6 335.425C209.6 334.825 209.75 333.925 210.05 332.725C210.5 331.375 210.725 330.4 210.725 329.8C210.725 327.4 210.8 323.725 210.95 318.775C211.1 313.825 211.175 310.15 211.175 307.75C211.175 302.35 210.35 299.65 208.7 299.65C201.95 299.65 191.9 300.625 178.55 302.575C165.35 304.375 155.375 305.275 148.625 305.275C144.725 305.275 139.925 303.625 134.225 300.325C128.075 296.575 125 292.9 125 289.3C125 284.65 129.575 277.975 138.725 269.275C145.325 263.575 151.925 257.8 158.525 251.95C169.475 242.35 185.525 227.5 206.675 207.4C209.675 203.5 212.675 199.675 215.675 195.925C219.575 191.275 223.55 188.95 227.6 188.95C229.85 188.95 231.875 189.775 233.675 191.425C235.625 193.075 236.6 195.025 236.6 197.275C236.6 198.475 236 200.95 234.8 204.7C233.3 209.65 232.475 212.35 232.325 212.8C231.575 216.1 229.475 229.225 226.025 252.175C223.475 269.125 222.2 279.85 222.2 284.35C222.2 286 222.875 287.35 224.225 288.4C225.575 288.25 227.75 288.175 230.75 288.175C233.75 288.025 236 287.95 237.5 287.95C249.05 287.95 256.25 290.05 259.1 294.25V298.075ZM216.575 218.875H214.1C204.2 225.025 190.325 235.9 172.475 251.5C151.175 269.95 140.525 281.95 140.525 287.5C140.525 292 143.3 294.175 148.85 294.025H149.75L210.725 288.85L216.575 218.875Z" fill="white"/>
<path d="M385.276 259.825C385.276 279.925 380.401 298 370.651 314.05C359.401 332.95 344.401 342.4 325.651 342.4C307.801 342.4 293.701 335.275 283.351 321.025C274.051 308.275 269.401 292.675 269.401 274.225C269.401 258.475 273.451 242.5 281.551 226.3C290.701 208.3 302.026 196.9 315.526 192.1C321.076 190 327.751 188.95 335.551 188.95C337.951 188.95 342.976 190.525 350.626 193.675C362.326 198.325 371.251 207.55 377.401 221.35C382.651 232.9 385.276 245.725 385.276 259.825ZM374.251 258.925C374.251 242.575 371.326 229 365.476 218.2C357.976 204.7 346.726 197.95 331.726 197.95C326.476 197.95 321.076 199.75 315.526 203.35C304.276 210.55 295.576 220.975 289.426 234.625C283.876 247.225 281.101 260.65 281.101 274.9C281.101 282.7 281.626 288.925 282.676 293.575C284.926 304.075 290.251 312.775 298.651 319.675C307.201 326.575 316.876 330.025 327.676 330.025C343.576 330.025 355.726 321.7 364.126 305.05C370.876 291.85 374.251 276.475 374.251 258.925Z" fill="white"/>
<path d="M517.055 289.075C517.055 298.675 514.206 307.15 508.505 314.5C494.855 332.5 476.255 341.5 452.705 341.5C442.655 341.5 432.755 340.3 423.005 337.9C418.055 336.55 412.805 333.625 407.255 329.125C400.956 324.025 397.805 319.3 397.805 314.95C397.805 313.6 398.48 312.25 399.83 310.9C401.33 309.55 402.755 308.875 404.105 308.875C406.505 308.875 408.755 310.825 410.855 314.725C412.205 317.575 413.555 320.425 414.905 323.275C419.555 330.325 429.83 333.85 445.73 333.85C456.53 333.85 466.505 331.675 475.655 327.325C485.555 322.525 493.055 315.775 498.155 307.075C501.755 300.625 503.555 295.075 503.555 290.425C503.555 281.875 498.905 274.45 489.605 268.15C481.205 262.75 472.505 260.05 463.505 260.05C461.706 260.05 456.305 261.85 447.305 265.45C438.305 268.9 431.03 270.625 425.48 270.625C420.23 270.625 417.605 269.425 417.605 267.025C417.605 264.775 418.805 262.3 421.205 259.6C423.755 256.9 429.38 255.25 438.08 254.65C448.43 253.75 454.73 252.85 456.98 251.95C461.93 250 468.08 244.675 475.43 235.975C482.33 227.725 485.78 219.625 485.78 211.675C485.78 206.425 484.205 202.15 481.055 198.85C477.905 195.55 473.705 193.9 468.455 193.9C462.605 193.9 455.255 196 446.405 200.2C437.705 204.25 431.48 208.525 427.73 213.025C426.83 214.075 426.68 215.95 427.28 218.65C424.58 221.35 421.805 224.125 418.955 226.975C414.605 231.025 411.605 233.05 409.955 233.05C408.605 233.05 407.03 232.45 405.23 231.25C403.58 230.05 402.755 228.85 402.755 227.65C402.755 225.1 404.48 221.5 407.93 216.85C414.23 208.45 423.23 200.95 434.93 194.35C447.23 187.45 458.405 184 468.455 184C476.855 184 483.831 186.325 489.38 190.975C495.081 195.475 497.93 201.925 497.93 210.325C497.93 217.525 495.305 225.1 490.055 233.05C485.705 239.95 480.23 246.025 473.63 251.275C473.93 251.875 478.055 253.15 486.005 255.1C494.706 257.5 501.456 260.65 506.255 264.55C513.456 270.55 517.055 278.725 517.055 289.075Z" fill="white"/>
<g clip-path="url(#clip0_6900_40004)">
<path d="M451 210.32C451 210.32 450.907 210.397 450.707 210.505L449.83 210.982C448.998 211.413 447.874 212.013 446.427 212.752C443.409 214.291 439.113 216.492 433.8 219.202C423.022 224.635 408.132 232.131 391.426 240.536L391.148 240.674L390.964 240.412C389.793 238.75 388.531 236.98 387.268 235.179C385.467 232.624 383.696 230.115 382.002 227.729L382.495 227.837C366.866 236.872 353.008 244.861 342.999 250.633C338.041 253.45 334.053 255.728 331.235 257.344C329.88 258.098 328.818 258.683 328.048 259.13C327.709 259.314 327.432 259.453 327.217 259.576C327.032 259.668 326.924 259.715 326.924 259.699C326.924 259.699 327.001 259.622 327.186 259.499L327.987 258.991C328.756 258.529 329.788 257.898 331.112 257.098C333.899 255.451 337.857 253.096 342.768 250.187C352.746 244.353 366.543 236.287 382.141 227.175L382.433 227.006L382.633 227.283C384.312 229.668 386.098 232.177 387.9 234.733C389.162 236.518 390.425 238.304 391.595 239.966L391.118 239.843C407.871 231.516 422.791 224.096 433.6 218.724C438.959 216.108 443.286 213.983 446.334 212.49C447.797 211.798 448.952 211.244 449.799 210.843C450.168 210.674 450.461 210.536 450.707 210.428C450.907 210.335 451.015 210.305 451.031 210.305L451 210.32Z" fill="#EFE8FC"/>
<path d="M439.775 265.918C439.775 265.918 439.498 266.026 438.943 266.149C438.312 266.287 437.511 266.457 436.511 266.688C434.293 267.134 431.244 267.765 427.487 268.519C419.758 270.028 409.164 272.075 397.292 274.384L396.923 274.461L396.861 274.076C396.646 272.891 396.43 271.629 396.199 270.336C396.045 269.489 395.906 268.642 395.768 267.873L396.199 268.181C383.942 270.289 373.102 272.845 365.326 274.892C361.446 275.908 358.32 276.785 356.165 277.385C355.148 277.662 354.332 277.893 353.686 278.078C353.116 278.232 352.808 278.293 352.808 278.278C352.808 278.263 353.085 278.14 353.639 277.939C354.271 277.724 355.087 277.462 356.088 277.124C358.213 276.431 361.323 275.477 365.188 274.399C372.933 272.213 383.788 269.566 396.06 267.442L396.43 267.38L396.492 267.75C396.63 268.535 396.784 269.366 396.938 270.212C397.169 271.49 397.385 272.752 397.6 273.953L397.154 273.645C409.041 271.428 419.65 269.458 427.395 268.011C431.167 267.349 434.232 266.795 436.449 266.41C437.45 266.241 438.266 266.118 438.913 266.01C439.482 265.933 439.775 265.903 439.775 265.918Z" fill="#EFE8FC"/>
<path d="M336.548 212.509C336.733 212.601 332.822 221.067 327.786 231.411C322.767 241.754 318.532 250.066 318.348 249.974C318.163 249.882 322.074 241.416 327.109 231.072C332.129 220.728 336.363 212.416 336.548 212.509Z" fill="#EFE8FC"/>
<path d="M382.526 253.987C382.587 254.187 372.841 257.204 360.769 260.729C348.697 264.254 338.858 266.948 338.796 266.747C338.734 266.547 348.481 263.53 360.553 260.006C372.625 256.481 382.464 253.787 382.526 253.987Z" fill="#EFE8FC"/>
<path d="M307.184 186C307.184 186 307.43 186.539 307.815 187.57C308.216 188.709 308.739 190.202 309.371 192.065C310.695 196.036 312.527 201.516 314.683 207.965L314.837 208.427H314.344C310.649 208.35 306.584 208.258 302.318 208.181L302.703 207.734C302.98 209.258 303.288 210.874 303.596 212.506C305.567 223.358 307.353 233.163 308.662 240.397C309.263 243.891 309.756 246.754 310.11 248.863C310.248 249.802 310.371 250.556 310.464 251.172C310.541 251.695 310.556 251.988 310.541 251.988C310.51 251.988 310.433 251.726 310.31 251.203C310.171 250.602 310.017 249.848 309.817 248.925C309.401 246.831 308.832 243.984 308.123 240.505C306.753 233.286 304.89 223.481 302.842 212.66C302.534 211.028 302.241 209.412 301.964 207.888L301.887 207.426H302.349C306.614 207.55 310.679 207.657 314.375 207.75L314.036 208.196C311.988 201.716 310.248 196.205 308.986 192.219C308.416 190.341 307.954 188.817 307.615 187.662C307.292 186.585 307.138 186 307.184 186Z" fill="#EFE8FC"/>
<path d="M254 301.984C253.908 301.8 261.73 297.951 271.446 293.395C281.177 288.839 289.123 285.299 289.215 285.483C289.307 285.668 281.501 289.516 271.769 294.072C262.038 298.644 254.092 302.184 254 301.984Z" fill="#EFE8FC"/>
<path d="M290.308 313.143C290.154 313.004 293.126 309.171 296.975 304.569C300.825 299.967 304.058 296.334 304.228 296.473C304.382 296.611 301.41 300.444 297.561 305.062C293.727 309.664 290.478 313.297 290.308 313.158V313.143Z" fill="#EFE8FC"/>
<path d="M309.879 365.998C309.663 365.982 311.003 350.99 312.866 332.519C314.729 314.048 316.392 299.086 316.608 299.117C316.823 299.133 315.484 314.125 313.62 332.596C311.773 351.067 310.094 366.013 309.879 365.998Z" fill="#EFE8FC"/>
<path d="M283.164 233.393C283.348 233.3 284.934 236.117 286.72 239.688C288.491 243.259 289.785 246.23 289.6 246.323C289.415 246.415 287.829 243.598 286.043 240.027C284.272 236.456 282.979 233.485 283.164 233.393Z" fill="#EFE8FC"/>
</g>
<defs>
<clipPath id="clip0_6900_40004">
<rect width="197" height="180" fill="white" transform="translate(254 186)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,37 @@
<svg width="705" height="514" viewBox="0 0 705 514" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M129.938 18.7787C206.261 -49.8654 279.106 130.979 393.601 32.5266C508.097 -65.9257 589.967 87.2489 558.584 203.476C527.202 319.703 631.053 370.43 568.606 426.788C506.16 483.146 385.546 373.665 248.663 432.95C111.781 492.236 26.6306 318.213 95.245 227.348C163.859 136.482 53.6138 87.4228 129.938 18.7787Z" fill="white"/>
<path d="M194.863 0.59436C188.16 0.59436 181.504 1.31857 174.939 2.75162C161.333 5.74097 150.701 10.1326 142.519 16.1421C133.674 13.0449 123.134 10.7335 111.007 10.4099C76.0593 9.47 44.4398 20.3951 5.63973 51.7988C3.68277 55.9746 1.80286 60.397 0 65.0352C37.3362 34.8179 77.7543 17.2054 110.807 18.0837C120.191 18.3302 128.527 19.8557 135.785 22.013C126.771 31.4125 122.24 43.6936 122.287 58.5942C122.348 74.9586 129.313 82.355 135.138 85.6987C143.382 90.4139 154.661 89.7668 164.554 84.0038C175.463 77.6398 181.951 66.8843 181.904 55.2196C181.874 45.82 177.22 36.6208 169.454 30.6113C165.355 27.437 159.207 23.3074 151.132 19.5938C157.912 15.572 166.372 12.4594 176.588 10.225C188.207 7.68253 200.149 7.59012 212.106 9.9631C244.943 16.4811 272.371 28.1304 293.62 44.5873C310.509 57.6696 323.591 73.8338 332.467 92.6174C347.583 124.622 345.302 153.329 345.287 153.622V153.761C343.392 191.744 321.202 228.849 288.766 248.295C260.614 265.168 224.572 269.791 187.251 261.316C164.061 256.046 132.503 243.549 113.904 213.918C93.8722 182.006 99.2962 142.373 115.83 123.96C127.618 110.816 143.736 104.611 152.55 104.611C161.364 104.611 169.5 106.152 177.205 107.693C184.909 109.234 196.466 112.315 198.007 113.065L203.4 107.693C202.136 107.246 185.541 101.529 181.904 100.759C178.268 99.9881 175.664 98.4472 160.686 96.9063C145.708 95.3654 124.86 102.402 110.113 118.828C99.4349 130.724 93.5178 147.874 93.4099 167.151C93.3175 185.149 98.4179 203.671 107.401 217.986C127.387 249.883 160.933 263.242 185.541 268.836C224.788 277.758 262.848 272.811 292.711 254.921C327.274 234.212 350.896 194.703 352.945 154.254C353.115 152.174 355.18 122.727 339.416 89.3815C330.017 69.4884 316.195 52.3997 298.335 38.5624C276.131 21.3658 247.64 9.22345 213.616 2.47427C207.36 1.22614 201.104 0.609772 194.879 0.609772L194.863 0.59436ZM147.542 81.1993C144.399 81.1993 141.455 80.4905 138.944 79.0574C133.104 75.7137 129.991 68.6409 129.96 58.5942C129.914 44.2329 134.414 33.1076 143.859 24.8483C153.305 28.6389 160.332 33.2924 164.754 36.7133C170.656 41.2898 174.2 48.2239 174.231 55.2812C174.261 64.1723 169.207 72.4469 160.686 77.3932C156.356 79.9049 151.78 81.1993 147.542 81.1993Z" fill="#87A6FC"/>
<path d="M297.66 157.032L250.595 211.155C248.681 213.36 245.347 213.587 243.142 211.674C240.937 209.761 240.709 206.426 242.623 204.222L244.759 201.754L223.701 181.554C218.994 177.039 217.132 170.68 218.14 164.713L205.444 152.526C201.051 148.3 200.905 141.311 205.118 136.911L209.572 132.277L197.137 120.347C193.691 117.04 193.572 111.545 196.892 108.106C200.198 104.659 205.694 104.54 209.132 107.86L221.568 119.791L225.007 116.207C229.233 111.815 236.221 111.668 240.621 115.881L253.546 128.289L253.457 128.38C259.244 127.326 265.429 128.94 269.999 133.322L288.68 151.26L289.688 150.099C291.602 147.894 294.936 147.666 297.141 149.58C299.346 151.493 299.574 154.828 297.66 157.032Z" fill="#87A6FC"/>
<rect x="96" y="350" width="470" height="2" rx="1" fill="#D9D9D9"/>
<path d="M598.621 512.693C601.626 513.585 604.647 514 607.714 514V513.985C636.505 513.985 667.377 476.916 688.477 451.563C695.321 443.353 702.441 435.773 705 432.637L699.205 428.039C695.105 431.376 689.957 437.802 682.574 446.674L682.53 446.727C661.795 471.625 627.162 513.21 600.825 505.344C577.428 498.364 578.491 483.589 579.724 466.476L579.727 466.448C580.774 451.849 581.962 435.292 562.878 428.147C541.285 420.06 507.716 436.82 493.073 445.279C478.431 453.738 486.138 442.201 456.853 429.177L453 435.327C474.578 440.708 476.119 462.957 493.073 452.195C510.028 441.432 542.919 428.87 560.181 435.327C573.236 440.216 573.205 450.148 572.064 465.938L572.063 465.955C570.846 482.88 569.33 503.948 598.621 512.693Z" fill="#87A6FC"/>
<path d="M460.332 434.371C457.035 437.992 451.441 438.254 447.82 434.972L434.306 422.691L446.218 409.578L459.731 421.859C463.353 425.157 463.614 430.75 460.332 434.371Z" fill="#87A6FC"/>
<path d="M391.978 360.335L368.648 341.043C366.815 339.533 366.568 336.821 368.078 334.987C369.588 333.154 372.3 332.907 374.134 334.417L397.463 353.709L391.978 360.335Z" fill="#87A6FC"/>
<path d="M370.05 388.507L346.721 369.215C344.887 367.705 344.641 364.993 346.151 363.159C347.661 361.326 350.373 361.079 352.207 362.589L375.536 381.881L370.05 388.507Z" fill="#87A6FC"/>
<g opacity="0.6">
<path d="M391.978 360.335L368.648 341.043C366.815 339.533 366.568 336.821 368.078 334.987C369.588 333.154 372.3 332.907 374.134 334.417L397.463 353.709L391.978 360.335Z" fill="white"/>
</g>
<g opacity="0.6">
<path d="M370.05 388.499L346.721 369.207C344.887 367.697 344.641 364.985 346.151 363.151C347.661 361.318 350.373 361.071 352.207 362.581L375.536 381.873L370.05 388.499Z" fill="white"/>
</g>
<path d="M444.985 384.731L445.601 383.992C448.498 380.479 445.385 377.933 441.888 375.036C438.837 372.509 437.142 369.908 434.152 372.265L400.006 343.82L360.944 390.556L395.891 418.339C393.657 421.806 395.844 423.205 399.095 425.886C402.547 428.736 406.108 431.56 409.035 428.185C419.282 435.89 433.829 434.118 441.888 424.071L447.496 417.075C455.371 407.26 454.153 393.114 445 384.716L444.985 384.731Z" fill="#87A6FC"/>
<path d="M405.907 385.667L381.813 365.742L377.914 370.456L402.008 390.381L405.907 385.667Z" fill="#E0E0E0"/>
<path d="M259.1 298.075L257.525 299.425C251.975 298.375 242.675 297.85 229.625 297.85C225.875 297.85 223.475 298.675 222.425 300.325C221.375 301.825 220.85 304.675 220.85 308.875C220.85 321.625 221.6 330.25 223.1 334.75C223.25 335.2 223.85 336.25 224.9 337.9C225.95 339.55 226.475 340.675 226.475 341.275C226.475 342.025 225.95 343.3 224.9 345.1H217.7C216.5 345.1 214.85 343.825 212.75 341.275C210.65 338.725 209.6 336.775 209.6 335.425C209.6 334.825 209.75 333.925 210.05 332.725C210.5 331.375 210.725 330.4 210.725 329.8C210.725 327.4 210.8 323.725 210.95 318.775C211.1 313.825 211.175 310.15 211.175 307.75C211.175 302.35 210.35 299.65 208.7 299.65C201.95 299.65 191.9 300.625 178.55 302.575C165.35 304.375 155.375 305.275 148.625 305.275C144.725 305.275 139.925 303.625 134.225 300.325C128.075 296.575 125 292.9 125 289.3C125 284.65 129.575 277.975 138.725 269.275C145.325 263.575 151.925 257.8 158.525 251.95C169.475 242.35 185.525 227.5 206.675 207.4C209.675 203.5 212.675 199.675 215.675 195.925C219.575 191.275 223.55 188.95 227.6 188.95C229.85 188.95 231.875 189.775 233.675 191.425C235.625 193.075 236.6 195.025 236.6 197.275C236.6 198.475 236 200.95 234.8 204.7C233.3 209.65 232.475 212.35 232.325 212.8C231.575 216.1 229.475 229.225 226.025 252.175C223.475 269.125 222.2 279.85 222.2 284.35C222.2 286 222.875 287.35 224.225 288.4C225.575 288.25 227.75 288.175 230.75 288.175C233.75 288.025 236 287.95 237.5 287.95C249.05 287.95 256.25 290.05 259.1 294.25V298.075ZM216.575 218.875H214.1C204.2 225.025 190.325 235.9 172.475 251.5C151.175 269.95 140.525 281.95 140.525 287.5C140.525 292 143.3 294.175 148.85 294.025H149.75L210.725 288.85L216.575 218.875Z" fill="black"/>
<path d="M385.276 259.825C385.276 279.925 380.401 298 370.651 314.05C359.401 332.95 344.401 342.4 325.651 342.4C307.801 342.4 293.701 335.275 283.351 321.025C274.051 308.275 269.401 292.675 269.401 274.225C269.401 258.475 273.451 242.5 281.551 226.3C290.701 208.3 302.026 196.9 315.526 192.1C321.076 190 327.751 188.95 335.551 188.95C337.951 188.95 342.976 190.525 350.626 193.675C362.326 198.325 371.251 207.55 377.401 221.35C382.651 232.9 385.276 245.725 385.276 259.825ZM374.251 258.925C374.251 242.575 371.326 229 365.476 218.2C357.976 204.7 346.726 197.95 331.726 197.95C326.476 197.95 321.076 199.75 315.526 203.35C304.276 210.55 295.576 220.975 289.426 234.625C283.876 247.225 281.101 260.65 281.101 274.9C281.101 282.7 281.626 288.925 282.676 293.575C284.926 304.075 290.251 312.775 298.651 319.675C307.201 326.575 316.876 330.025 327.676 330.025C343.576 330.025 355.726 321.7 364.126 305.05C370.876 291.85 374.251 276.475 374.251 258.925Z" fill="black"/>
<path d="M517.055 289.075C517.055 298.675 514.206 307.15 508.505 314.5C494.855 332.5 476.255 341.5 452.705 341.5C442.655 341.5 432.755 340.3 423.005 337.9C418.055 336.55 412.805 333.625 407.255 329.125C400.956 324.025 397.805 319.3 397.805 314.95C397.805 313.6 398.48 312.25 399.83 310.9C401.33 309.55 402.755 308.875 404.105 308.875C406.505 308.875 408.755 310.825 410.855 314.725C412.205 317.575 413.555 320.425 414.905 323.275C419.555 330.325 429.83 333.85 445.73 333.85C456.53 333.85 466.505 331.675 475.655 327.325C485.555 322.525 493.055 315.775 498.155 307.075C501.755 300.625 503.555 295.075 503.555 290.425C503.555 281.875 498.905 274.45 489.605 268.15C481.205 262.75 472.505 260.05 463.505 260.05C461.706 260.05 456.305 261.85 447.305 265.45C438.305 268.9 431.03 270.625 425.48 270.625C420.23 270.625 417.605 269.425 417.605 267.025C417.605 264.775 418.805 262.3 421.205 259.6C423.755 256.9 429.38 255.25 438.08 254.65C448.43 253.75 454.73 252.85 456.98 251.95C461.93 250 468.08 244.675 475.43 235.975C482.33 227.725 485.78 219.625 485.78 211.675C485.78 206.425 484.205 202.15 481.055 198.85C477.905 195.55 473.705 193.9 468.455 193.9C462.605 193.9 455.255 196 446.405 200.2C437.705 204.25 431.48 208.525 427.73 213.025C426.83 214.075 426.68 215.95 427.28 218.65C424.58 221.35 421.805 224.125 418.955 226.975C414.605 231.025 411.605 233.05 409.955 233.05C408.605 233.05 407.03 232.45 405.23 231.25C403.58 230.05 402.755 228.85 402.755 227.65C402.755 225.1 404.48 221.5 407.93 216.85C414.23 208.45 423.23 200.95 434.93 194.35C447.23 187.45 458.405 184 468.455 184C476.855 184 483.831 186.325 489.38 190.975C495.081 195.475 497.93 201.925 497.93 210.325C497.93 217.525 495.305 225.1 490.055 233.05C485.705 239.95 480.23 246.025 473.63 251.275C473.93 251.875 478.055 253.15 486.005 255.1C494.706 257.5 501.456 260.65 506.255 264.55C513.456 270.55 517.055 278.725 517.055 289.075Z" fill="black"/>
<g clip-path="url(#clip0_5231_49573)">
<path d="M451 210.32C451 210.32 450.907 210.397 450.707 210.505L449.83 210.982C448.998 211.413 447.874 212.013 446.427 212.752C443.409 214.291 439.113 216.492 433.8 219.202C423.022 224.635 408.132 232.131 391.426 240.536L391.148 240.674L390.964 240.412C389.793 238.75 388.531 236.98 387.268 235.179C385.467 232.624 383.696 230.115 382.002 227.729L382.495 227.837C366.866 236.872 353.008 244.861 342.999 250.633C338.041 253.45 334.053 255.728 331.235 257.344C329.88 258.098 328.818 258.683 328.048 259.13C327.709 259.314 327.432 259.453 327.217 259.576C327.032 259.668 326.924 259.715 326.924 259.699C326.924 259.699 327.001 259.622 327.186 259.499L327.987 258.991C328.756 258.529 329.788 257.898 331.112 257.098C333.899 255.451 337.857 253.096 342.768 250.187C352.746 244.353 366.543 236.287 382.141 227.175L382.433 227.006L382.633 227.283C384.312 229.668 386.098 232.177 387.9 234.733C389.162 236.518 390.425 238.304 391.595 239.966L391.118 239.843C407.871 231.516 422.791 224.096 433.6 218.724C438.959 216.108 443.286 213.983 446.334 212.49C447.797 211.798 448.952 211.244 449.799 210.843C450.168 210.674 450.461 210.536 450.707 210.428C450.907 210.335 451.015 210.305 451.031 210.305L451 210.32Z" fill="#263238"/>
<path d="M439.775 265.918C439.775 265.918 439.498 266.026 438.943 266.149C438.312 266.287 437.511 266.457 436.511 266.688C434.293 267.134 431.244 267.765 427.487 268.519C419.758 270.028 409.164 272.075 397.292 274.384L396.923 274.461L396.861 274.076C396.646 272.891 396.43 271.629 396.199 270.336C396.045 269.489 395.906 268.642 395.768 267.873L396.199 268.181C383.942 270.289 373.102 272.845 365.326 274.892C361.446 275.908 358.32 276.785 356.165 277.385C355.148 277.662 354.332 277.893 353.686 278.078C353.116 278.232 352.808 278.293 352.808 278.278C352.808 278.263 353.085 278.14 353.639 277.939C354.271 277.724 355.087 277.462 356.088 277.124C358.213 276.431 361.323 275.477 365.188 274.399C372.933 272.213 383.788 269.566 396.06 267.442L396.43 267.38L396.492 267.75C396.63 268.535 396.784 269.366 396.938 270.212C397.169 271.49 397.385 272.752 397.6 273.953L397.154 273.645C409.041 271.428 419.65 269.458 427.395 268.011C431.167 267.349 434.232 266.795 436.449 266.41C437.45 266.241 438.266 266.118 438.913 266.01C439.482 265.933 439.775 265.903 439.775 265.918Z" fill="#263238"/>
<path d="M336.548 212.509C336.733 212.601 332.822 221.067 327.786 231.411C322.767 241.754 318.532 250.066 318.348 249.974C318.163 249.882 322.074 241.416 327.109 231.072C332.129 220.728 336.363 212.416 336.548 212.509Z" fill="#263238"/>
<path d="M382.526 253.987C382.587 254.187 372.841 257.204 360.769 260.729C348.697 264.254 338.858 266.948 338.796 266.747C338.734 266.547 348.481 263.53 360.553 260.006C372.625 256.481 382.464 253.787 382.526 253.987Z" fill="#263238"/>
<path d="M307.184 186C307.184 186 307.43 186.539 307.815 187.57C308.216 188.709 308.739 190.202 309.371 192.065C310.695 196.036 312.527 201.516 314.683 207.965L314.837 208.427H314.344C310.649 208.35 306.584 208.258 302.318 208.181L302.703 207.734C302.98 209.258 303.288 210.874 303.596 212.506C305.567 223.358 307.353 233.163 308.662 240.397C309.263 243.891 309.756 246.754 310.11 248.863C310.248 249.802 310.371 250.556 310.464 251.172C310.541 251.695 310.556 251.988 310.541 251.988C310.51 251.988 310.433 251.726 310.31 251.203C310.171 250.602 310.017 249.848 309.817 248.925C309.401 246.831 308.832 243.984 308.123 240.505C306.753 233.286 304.89 223.481 302.842 212.66C302.534 211.028 302.241 209.412 301.964 207.888L301.887 207.426H302.349C306.614 207.55 310.679 207.657 314.375 207.75L314.036 208.196C311.988 201.716 310.248 196.205 308.986 192.219C308.416 190.341 307.954 188.817 307.615 187.662C307.292 186.585 307.138 186 307.184 186Z" fill="#263238"/>
<path d="M254 301.984C253.908 301.8 261.73 297.951 271.446 293.395C281.177 288.839 289.123 285.299 289.215 285.483C289.307 285.668 281.501 289.516 271.769 294.072C262.038 298.644 254.092 302.184 254 301.984Z" fill="#263238"/>
<path d="M290.308 313.143C290.154 313.004 293.126 309.171 296.975 304.569C300.825 299.967 304.058 296.334 304.228 296.473C304.382 296.611 301.41 300.444 297.561 305.062C293.727 309.664 290.478 313.297 290.308 313.158V313.143Z" fill="#263238"/>
<path d="M309.879 365.998C309.663 365.982 311.003 350.99 312.866 332.519C314.729 314.048 316.392 299.086 316.608 299.117C316.823 299.133 315.484 314.125 313.62 332.596C311.773 351.067 310.094 366.013 309.879 365.998Z" fill="#263238"/>
<path d="M283.164 233.393C283.348 233.3 284.934 236.117 286.72 239.688C288.491 243.259 289.785 246.23 289.6 246.323C289.415 246.415 287.829 243.598 286.043 240.027C284.272 236.456 282.979 233.485 283.164 233.393Z" fill="#263238"/>
</g>
<defs>
<clipPath id="clip0_5231_49573">
<rect width="197" height="180" fill="white" transform="translate(254 186)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,37 @@
<svg width="705" height="514" viewBox="0 0 705 514" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M129.938 18.7787C206.261 -49.8654 279.106 130.979 393.601 32.5266C508.097 -65.9257 589.967 87.2489 558.584 203.476C527.202 319.703 631.053 370.43 568.606 426.788C506.16 483.146 385.546 373.665 248.663 432.95C111.781 492.235 26.6306 318.213 95.245 227.348C163.859 136.482 53.6138 87.4228 129.938 18.7787Z" fill="#453F4F"/>
<path d="M194.863 0.59436C188.16 0.59436 181.504 1.31857 174.939 2.75162C161.333 5.74097 150.701 10.1326 142.519 16.1421C133.674 13.0449 123.134 10.7335 111.007 10.4099C76.0593 9.47 44.4398 20.3951 5.63973 51.7988C3.68277 55.9746 1.80286 60.397 0 65.0352C37.3362 34.8179 77.7543 17.2054 110.807 18.0837C120.191 18.3302 128.527 19.8557 135.785 22.013C126.771 31.4125 122.24 43.6936 122.287 58.5942C122.348 74.9586 129.313 82.355 135.138 85.6987C143.382 90.4139 154.661 89.7668 164.554 84.0038C175.463 77.6398 181.951 66.8843 181.904 55.2196C181.874 45.82 177.22 36.6208 169.454 30.6113C165.355 27.437 159.207 23.3074 151.132 19.5938C157.912 15.572 166.372 12.4594 176.588 10.225C188.207 7.68253 200.149 7.59012 212.106 9.9631C244.943 16.4811 272.371 28.1304 293.62 44.5873C310.509 57.6696 323.591 73.8338 332.467 92.6174C347.583 124.622 345.302 153.329 345.287 153.622V153.761C343.392 191.744 321.202 228.849 288.766 248.295C260.614 265.168 224.572 269.791 187.251 261.316C164.061 256.046 132.503 243.549 113.904 213.918C93.8722 182.006 99.2962 142.373 115.83 123.96C127.618 110.816 143.736 104.611 152.55 104.611C161.364 104.611 169.5 106.152 177.205 107.693C184.909 109.234 196.466 112.315 198.007 113.065L203.4 107.693C202.136 107.246 185.541 101.529 181.904 100.759C178.268 99.9881 175.664 98.4472 160.686 96.9063C145.708 95.3654 124.86 102.402 110.113 118.828C99.4349 130.724 93.5178 147.874 93.4099 167.151C93.3175 185.149 98.4179 203.671 107.401 217.986C127.387 249.883 160.933 263.242 185.541 268.836C224.788 277.758 262.848 272.811 292.711 254.921C327.274 234.212 350.896 194.703 352.945 154.254C353.115 152.174 355.18 122.727 339.416 89.3815C330.017 69.4884 316.195 52.3997 298.335 38.5624C276.131 21.3658 247.64 9.22345 213.616 2.47427C207.36 1.22614 201.104 0.609772 194.879 0.609772L194.863 0.59436ZM147.542 81.1993C144.399 81.1993 141.455 80.4905 138.944 79.0574C133.104 75.7137 129.991 68.6409 129.96 58.5942C129.914 44.2329 134.414 33.1076 143.859 24.8483C153.305 28.6389 160.332 33.2924 164.754 36.7133C170.656 41.2898 174.2 48.2239 174.231 55.2812C174.261 64.1723 169.207 72.4469 160.686 77.3932C156.356 79.9049 151.78 81.1993 147.542 81.1993Z" fill="#87A6FC"/>
<path d="M297.66 157.032L250.595 211.155C248.681 213.36 245.347 213.587 243.142 211.674C240.937 209.761 240.709 206.426 242.623 204.222L244.759 201.754L223.701 181.554C218.994 177.039 217.132 170.68 218.14 164.713L205.444 152.526C201.051 148.3 200.905 141.311 205.118 136.911L209.572 132.277L197.137 120.347C193.691 117.04 193.572 111.545 196.892 108.106C200.198 104.659 205.694 104.54 209.132 107.86L221.568 119.791L225.007 116.207C229.233 111.815 236.221 111.668 240.621 115.881L253.546 128.289L253.457 128.38C259.244 127.326 265.429 128.94 269.999 133.322L288.68 151.26L289.688 150.099C291.602 147.894 294.936 147.666 297.141 149.58C299.346 151.493 299.574 154.828 297.66 157.032Z" fill="#87A6FC"/>
<path d="M247.142 298.321L245.579 299.661C240.068 298.619 230.835 298.098 217.878 298.098C214.155 298.098 211.772 298.917 210.729 300.555C209.687 302.044 209.166 304.873 209.166 309.042C209.166 321.698 209.91 330.259 211.4 334.726C211.548 335.173 212.144 336.215 213.187 337.853C214.229 339.491 214.75 340.608 214.75 341.203C214.75 341.948 214.229 343.213 213.187 345H206.038C204.847 345 203.208 343.734 201.123 341.203C199.038 338.672 197.996 336.736 197.996 335.396C197.996 334.801 198.145 333.907 198.443 332.716C198.889 331.376 199.113 330.408 199.113 329.813C199.113 327.43 199.187 323.782 199.336 318.869C199.485 313.955 199.56 310.307 199.56 307.925C199.56 302.565 198.741 299.885 197.102 299.885C190.401 299.885 180.422 300.853 167.168 302.788C154.062 304.575 144.158 305.468 137.456 305.468C133.584 305.468 128.818 303.83 123.159 300.555C117.053 296.832 114 293.184 114 289.611C114 284.995 118.542 278.369 127.627 269.733C134.18 264.075 140.733 258.343 147.286 252.536C158.157 243.007 174.093 228.266 195.092 208.314C198.07 204.443 201.049 200.646 204.028 196.924C207.9 192.308 211.846 190 215.867 190C218.101 190 220.112 190.819 221.899 192.457C223.835 194.095 224.803 196.03 224.803 198.264C224.803 199.455 224.207 201.912 223.016 205.634C221.527 210.548 220.708 213.228 220.559 213.674C219.814 216.95 217.729 229.978 214.304 252.759C211.772 269.585 210.506 280.231 210.506 284.697C210.506 286.335 211.176 287.675 212.516 288.718C213.857 288.569 216.016 288.494 218.995 288.494C221.973 288.345 224.207 288.271 225.697 288.271C237.164 288.271 244.313 290.355 247.142 294.524V298.321ZM204.921 219.705H202.464C192.634 225.809 178.859 236.604 161.136 252.089C139.988 270.403 129.414 282.315 129.414 287.824C129.414 292.291 132.169 294.45 137.68 294.301H138.573L199.113 289.164L204.921 219.705Z" fill="white"/>
<path d="M372.417 260.353C372.417 280.305 367.577 298.247 357.897 314.179C346.727 332.939 331.834 342.32 313.218 342.32C295.496 342.32 281.496 335.247 271.22 321.102C261.986 308.446 257.37 292.961 257.37 274.647C257.37 259.013 261.391 243.156 269.433 227.075C278.518 209.208 289.762 197.891 303.165 193.127C308.676 191.042 315.303 190 323.047 190C325.43 190 330.419 191.563 338.015 194.69C349.631 199.306 358.492 208.463 364.599 222.161C369.811 233.626 372.417 246.357 372.417 260.353ZM361.471 259.46C361.471 243.23 358.567 229.755 352.759 219.035C345.312 205.634 334.143 198.934 319.25 198.934C314.037 198.934 308.676 200.72 303.165 204.294C291.996 211.441 283.358 221.789 277.252 235.339C271.741 247.846 268.986 261.172 268.986 275.317C268.986 283.06 269.507 289.239 270.55 293.854C272.784 304.277 278.071 312.913 286.411 319.762C294.9 326.611 304.506 330.036 315.229 330.036C331.015 330.036 343.078 321.772 351.418 305.245C358.12 292.142 361.471 276.88 361.471 259.46Z" fill="white"/>
<path d="M518 298.321L516.436 299.661C510.926 298.619 501.692 298.098 488.735 298.098C485.012 298.098 482.629 298.917 481.587 300.555C480.544 302.044 480.023 304.873 480.023 309.042C480.023 321.698 480.768 330.259 482.257 334.726C482.406 335.173 483.002 336.215 484.044 337.853C485.087 339.491 485.608 340.608 485.608 341.203C485.608 341.948 485.087 343.213 484.044 345H476.896C475.704 345 474.066 343.734 471.981 341.203C469.896 338.672 468.853 336.736 468.853 335.396C468.853 334.801 469.002 333.907 469.3 332.716C469.747 331.376 469.97 330.408 469.97 329.813C469.97 327.43 470.045 323.782 470.194 318.869C470.343 313.955 470.417 310.307 470.417 307.925C470.417 302.565 469.598 299.885 467.96 299.885C461.258 299.885 451.28 300.853 438.025 302.788C424.919 304.575 415.016 305.468 408.314 305.468C404.442 305.468 399.676 303.83 394.017 300.555C387.911 296.832 384.858 293.184 384.858 289.611C384.858 284.995 389.4 278.369 398.485 269.733C405.037 264.075 411.59 258.343 418.143 252.536C429.015 243.007 444.95 228.266 465.949 208.314C468.928 204.443 471.906 200.646 474.885 196.924C478.757 192.308 482.704 190 486.725 190C488.959 190 490.969 190.819 492.757 192.457C494.693 194.095 495.661 196.03 495.661 198.264C495.661 199.455 495.065 201.912 493.874 205.634C492.384 210.548 491.565 213.228 491.416 213.674C490.672 216.95 488.587 229.978 485.161 252.759C482.629 269.585 481.363 280.231 481.363 284.697C481.363 286.335 482.034 287.675 483.374 288.718C484.714 288.569 486.874 288.494 489.852 288.494C492.831 288.345 495.065 288.271 496.554 288.271C508.022 288.271 515.17 290.355 518 294.524V298.321ZM475.779 219.705H473.321C463.492 225.809 449.716 236.604 431.994 252.089C410.846 270.403 400.272 282.315 400.272 287.824C400.272 292.291 403.027 294.45 408.537 294.301H409.431L469.97 289.164L475.779 219.705Z" fill="white"/>
<rect x="96" y="350" width="470" height="2" rx="1" fill="#8F8F8F"/>
<path d="M598.621 512.693C601.626 513.585 604.647 514 607.714 514V513.985C636.505 513.985 667.377 476.916 688.477 451.563C695.321 443.353 702.441 435.773 705 432.637L699.205 428.039C695.105 431.376 689.957 437.802 682.574 446.674L682.53 446.727C661.795 471.625 627.162 513.21 600.825 505.344C577.428 498.364 578.491 483.589 579.724 466.476L579.727 466.448C580.774 451.849 581.962 435.292 562.878 428.147C541.285 420.06 507.716 436.82 493.073 445.279C478.431 453.738 486.138 442.201 456.853 429.177L453 435.327C474.578 440.708 476.119 462.957 493.073 452.195C510.028 441.432 542.919 428.87 560.181 435.327C573.236 440.216 573.205 450.148 572.064 465.938L572.063 465.955C570.846 482.88 569.33 503.948 598.621 512.693Z" fill="#87A6FC"/>
<path d="M460.332 434.371C457.035 437.992 451.441 438.254 447.82 434.972L434.306 422.691L446.218 409.578L459.731 421.859C463.353 425.157 463.614 430.75 460.332 434.371Z" fill="#87A6FC"/>
<path d="M391.977 360.335L368.648 341.043C366.814 339.533 366.568 336.821 368.078 334.987C369.588 333.154 372.3 332.907 374.134 334.417L397.463 353.709L391.977 360.335Z" fill="#87A6FC"/>
<path d="M370.05 388.507L346.721 369.215C344.887 367.705 344.641 364.993 346.151 363.159C347.661 361.326 350.373 361.079 352.207 362.589L375.536 381.881L370.05 388.507Z" fill="#87A6FC"/>
<g opacity="0.6">
<path d="M391.978 360.335L368.648 341.043C366.815 339.533 366.568 336.821 368.078 334.987C369.588 333.154 372.3 332.907 374.134 334.417L397.463 353.709L391.978 360.335Z" fill="white"/>
</g>
<g opacity="0.6">
<path d="M370.05 388.499L346.721 369.207C344.887 367.697 344.641 364.985 346.151 363.151C347.661 361.318 350.373 361.071 352.207 362.581L375.536 381.873L370.05 388.499Z" fill="white"/>
</g>
<path d="M444.985 384.731L445.601 383.992C448.498 380.479 445.385 377.933 441.888 375.036C438.837 372.509 437.142 369.908 434.152 372.265L400.006 343.82L360.944 390.556L395.891 418.339C393.657 421.806 395.844 423.205 399.095 425.886C402.547 428.736 406.108 431.56 409.035 428.185C419.282 435.89 433.829 434.118 441.888 424.071L447.496 417.075C455.371 407.26 454.153 393.114 445 384.716L444.985 384.731Z" fill="#87A6FC"/>
<path d="M405.906 385.667L381.813 365.742L377.914 370.456L402.008 390.381L405.906 385.667Z" fill="#E0E0E0"/>
<g clip-path="url(#clip0_6717_40229)">
<path d="M451 210.32C451 210.32 450.908 210.397 450.707 210.505L449.83 210.982C448.998 211.413 447.874 212.013 446.427 212.752C443.409 214.291 439.113 216.492 433.801 219.202C423.022 224.635 408.132 232.131 391.426 240.536L391.149 240.674L390.964 240.412C389.794 238.75 388.531 236.98 387.268 235.179C385.467 232.624 383.696 230.115 382.002 227.729L382.495 227.837C366.866 236.872 353.008 244.861 343 250.633C338.041 253.45 334.053 255.728 331.236 257.344C329.881 258.098 328.818 258.683 328.048 259.13C327.709 259.314 327.432 259.453 327.217 259.576C327.032 259.668 326.924 259.715 326.924 259.699C326.924 259.699 327.001 259.622 327.186 259.499L327.987 258.991C328.757 258.529 329.788 257.898 331.112 257.098C333.899 255.451 337.857 253.096 342.769 250.187C352.746 244.353 366.543 236.287 382.141 227.175L382.433 227.006L382.634 227.283C384.312 229.668 386.098 232.177 387.9 234.733C389.162 236.518 390.425 238.304 391.595 239.966L391.118 239.843C407.871 231.516 422.791 224.096 433.6 218.724C438.959 216.108 443.286 213.983 446.334 212.49C447.797 211.798 448.952 211.244 449.799 210.843C450.169 210.674 450.461 210.536 450.707 210.428C450.908 210.335 451.015 210.305 451.031 210.305L451 210.32Z" fill="#EFE8FC"/>
<path d="M439.775 265.918C439.775 265.918 439.498 266.026 438.944 266.149C438.312 266.287 437.512 266.457 436.511 266.688C434.293 267.134 431.245 267.765 427.488 268.519C419.758 270.028 409.164 272.075 397.292 274.384L396.923 274.461L396.861 274.076C396.646 272.891 396.43 271.629 396.199 270.336C396.045 269.489 395.907 268.642 395.768 267.873L396.199 268.181C383.942 270.289 373.102 272.845 365.326 274.892C361.446 275.908 358.32 276.785 356.165 277.385C355.148 277.662 354.332 277.893 353.686 278.078C353.116 278.232 352.808 278.293 352.808 278.278C352.808 278.263 353.085 278.14 353.639 277.939C354.271 277.724 355.087 277.462 356.088 277.124C358.213 276.431 361.323 275.477 365.188 274.399C372.933 272.213 383.788 269.566 396.061 267.442L396.43 267.38L396.492 267.75C396.63 268.535 396.784 269.366 396.938 270.212C397.169 271.49 397.385 272.752 397.6 273.953L397.154 273.645C409.041 271.428 419.65 269.458 427.395 268.011C431.168 267.349 434.232 266.795 436.449 266.41C437.45 266.241 438.266 266.118 438.913 266.01C439.482 265.933 439.775 265.903 439.775 265.918Z" fill="#EFE8FC"/>
<path d="M336.548 212.509C336.733 212.601 332.822 221.067 327.786 231.411C322.767 241.754 318.532 250.066 318.348 249.974C318.163 249.882 322.074 241.416 327.109 231.072C332.129 220.728 336.363 212.416 336.548 212.509Z" fill="#EFE8FC"/>
<path d="M382.526 253.987C382.587 254.187 372.841 257.204 360.769 260.729C348.697 264.254 338.858 266.948 338.796 266.747C338.734 266.547 348.481 263.53 360.553 260.006C372.625 256.481 382.464 253.787 382.526 253.987Z" fill="#EFE8FC"/>
<path d="M307.184 186C307.184 186 307.431 186.539 307.815 187.57C308.216 188.709 308.739 190.202 309.371 192.065C310.695 196.036 312.527 201.516 314.683 207.965L314.837 208.427H314.344C310.649 208.35 306.584 208.258 302.318 208.181L302.703 207.734C302.981 209.258 303.289 210.874 303.596 212.506C305.567 223.358 307.354 233.163 308.662 240.397C309.263 243.891 309.756 246.754 310.11 248.863C310.248 249.802 310.372 250.556 310.464 251.172C310.541 251.695 310.556 251.988 310.541 251.988C310.51 251.988 310.433 251.726 310.31 251.203C310.171 250.602 310.017 249.848 309.817 248.925C309.401 246.831 308.832 243.984 308.123 240.505C306.753 233.286 304.89 223.481 302.842 212.66C302.534 211.028 302.241 209.412 301.964 207.888L301.887 207.426H302.349C306.614 207.55 310.679 207.657 314.375 207.75L314.036 208.196C311.988 201.716 310.248 196.205 308.986 192.219C308.416 190.341 307.954 188.817 307.615 187.662C307.292 186.585 307.138 186 307.184 186Z" fill="#EFE8FC"/>
<path d="M254 301.984C253.908 301.8 261.73 297.951 271.446 293.395C281.177 288.839 289.122 285.299 289.215 285.483C289.307 285.668 281.501 289.516 271.769 294.072C262.038 298.644 254.092 302.184 254 301.984Z" fill="#EFE8FC"/>
<path d="M290.308 313.143C290.154 313.004 293.126 309.171 296.975 304.569C300.825 299.967 304.058 296.334 304.228 296.473C304.382 296.611 301.41 300.444 297.56 305.062C293.726 309.664 290.477 313.297 290.308 313.158V313.143Z" fill="#EFE8FC"/>
<path d="M309.879 365.998C309.663 365.982 311.003 350.99 312.866 332.519C314.729 314.048 316.392 299.086 316.608 299.117C316.823 299.133 315.484 314.125 313.62 332.596C311.773 351.067 310.094 366.013 309.879 365.998Z" fill="#EFE8FC"/>
<path d="M283.164 233.393C283.348 233.3 284.934 236.117 286.72 239.688C288.491 243.259 289.785 246.23 289.6 246.323C289.415 246.415 287.829 243.598 286.043 240.027C284.272 236.456 282.979 233.485 283.164 233.393Z" fill="#EFE8FC"/>
</g>
<defs>
<clipPath id="clip0_6717_40229">
<rect width="197" height="180" fill="white" transform="translate(254 186)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,37 @@
<svg width="705" height="514" viewBox="0 0 705 514" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M129.938 18.7787C206.261 -49.8654 279.106 130.979 393.601 32.5266C508.097 -65.9257 589.967 87.2489 558.584 203.476C527.202 319.703 631.053 370.43 568.606 426.788C506.16 483.146 385.546 373.665 248.663 432.95C111.781 492.235 26.6306 318.213 95.245 227.348C163.859 136.482 53.6138 87.4228 129.938 18.7787Z" fill="white"/>
<path d="M194.863 0.59436C188.16 0.59436 181.504 1.31857 174.939 2.75162C161.333 5.74097 150.701 10.1326 142.519 16.1421C133.674 13.0449 123.134 10.7335 111.007 10.4099C76.0593 9.47 44.4398 20.3951 5.63973 51.7988C3.68277 55.9746 1.80286 60.397 0 65.0352C37.3362 34.8179 77.7543 17.2054 110.807 18.0837C120.191 18.3302 128.527 19.8557 135.785 22.013C126.771 31.4125 122.24 43.6936 122.287 58.5942C122.348 74.9586 129.313 82.355 135.138 85.6987C143.382 90.4139 154.661 89.7668 164.554 84.0038C175.463 77.6398 181.951 66.8843 181.904 55.2196C181.874 45.82 177.22 36.6208 169.454 30.6113C165.355 27.437 159.207 23.3074 151.132 19.5938C157.912 15.572 166.372 12.4594 176.588 10.225C188.207 7.68253 200.149 7.59012 212.106 9.9631C244.943 16.4811 272.371 28.1304 293.62 44.5873C310.509 57.6696 323.591 73.8338 332.467 92.6174C347.583 124.622 345.302 153.329 345.287 153.622V153.761C343.392 191.744 321.202 228.849 288.766 248.295C260.614 265.168 224.572 269.791 187.251 261.316C164.061 256.046 132.503 243.549 113.904 213.918C93.8722 182.006 99.2962 142.373 115.83 123.96C127.618 110.816 143.736 104.611 152.55 104.611C161.364 104.611 169.5 106.152 177.205 107.693C184.909 109.234 196.466 112.315 198.007 113.065L203.4 107.693C202.136 107.246 185.541 101.529 181.904 100.759C178.268 99.9881 175.664 98.4472 160.686 96.9063C145.708 95.3654 124.86 102.402 110.113 118.828C99.4349 130.724 93.5178 147.874 93.4099 167.151C93.3175 185.149 98.4179 203.671 107.401 217.986C127.387 249.883 160.933 263.242 185.541 268.836C224.788 277.758 262.848 272.811 292.711 254.921C327.274 234.212 350.896 194.703 352.945 154.254C353.115 152.174 355.18 122.727 339.416 89.3815C330.017 69.4884 316.195 52.3997 298.335 38.5624C276.131 21.3658 247.64 9.22345 213.616 2.47427C207.36 1.22614 201.104 0.609772 194.879 0.609772L194.863 0.59436ZM147.542 81.1993C144.399 81.1993 141.455 80.4905 138.944 79.0574C133.104 75.7137 129.991 68.6409 129.96 58.5942C129.914 44.2329 134.414 33.1076 143.859 24.8483C153.305 28.6389 160.332 33.2924 164.754 36.7133C170.656 41.2898 174.2 48.2239 174.231 55.2812C174.261 64.1723 169.207 72.4469 160.686 77.3932C156.356 79.9049 151.78 81.1993 147.542 81.1993Z" fill="#87A6FC"/>
<path d="M297.66 157.032L250.595 211.155C248.681 213.36 245.347 213.587 243.142 211.674C240.937 209.761 240.709 206.426 242.623 204.222L244.759 201.754L223.701 181.554C218.994 177.039 217.132 170.68 218.14 164.713L205.444 152.526C201.051 148.3 200.905 141.311 205.118 136.911L209.572 132.277L197.137 120.347C193.691 117.04 193.572 111.545 196.892 108.106C200.198 104.659 205.694 104.54 209.132 107.86L221.568 119.791L225.007 116.207C229.233 111.815 236.221 111.668 240.621 115.881L253.546 128.289L253.457 128.38C259.244 127.326 265.429 128.94 269.999 133.322L288.68 151.26L289.688 150.099C291.602 147.894 294.936 147.666 297.141 149.58C299.346 151.493 299.574 154.828 297.66 157.032Z" fill="#87A6FC"/>
<path d="M247.142 298.321L245.579 299.661C240.068 298.619 230.835 298.098 217.878 298.098C214.155 298.098 211.772 298.917 210.729 300.555C209.687 302.044 209.166 304.873 209.166 309.042C209.166 321.698 209.91 330.259 211.4 334.726C211.548 335.173 212.144 336.215 213.187 337.853C214.229 339.491 214.75 340.608 214.75 341.203C214.75 341.948 214.229 343.213 213.187 345H206.038C204.847 345 203.208 343.734 201.123 341.203C199.038 338.672 197.996 336.736 197.996 335.396C197.996 334.801 198.145 333.907 198.443 332.716C198.889 331.376 199.113 330.408 199.113 329.813C199.113 327.43 199.187 323.782 199.336 318.869C199.485 313.955 199.56 310.307 199.56 307.925C199.56 302.565 198.741 299.885 197.102 299.885C190.401 299.885 180.422 300.853 167.168 302.788C154.062 304.575 144.158 305.468 137.456 305.468C133.584 305.468 128.818 303.83 123.159 300.555C117.053 296.832 114 293.184 114 289.611C114 284.995 118.542 278.369 127.627 269.733C134.18 264.075 140.733 258.343 147.286 252.536C158.157 243.007 174.093 228.266 195.092 208.314C198.07 204.443 201.049 200.646 204.028 196.924C207.9 192.308 211.846 190 215.867 190C218.101 190 220.112 190.819 221.899 192.457C223.835 194.095 224.803 196.03 224.803 198.264C224.803 199.455 224.207 201.912 223.016 205.634C221.527 210.548 220.708 213.228 220.559 213.674C219.814 216.95 217.729 229.978 214.304 252.759C211.772 269.585 210.506 280.231 210.506 284.697C210.506 286.335 211.176 287.675 212.516 288.718C213.857 288.569 216.016 288.494 218.995 288.494C221.973 288.345 224.207 288.271 225.697 288.271C237.164 288.271 244.313 290.355 247.142 294.524V298.321ZM204.921 219.705H202.464C192.634 225.809 178.859 236.604 161.136 252.089C139.988 270.403 129.414 282.315 129.414 287.824C129.414 292.291 132.169 294.45 137.68 294.301H138.573L199.113 289.164L204.921 219.705Z" fill="black"/>
<path d="M372.417 260.353C372.417 280.305 367.577 298.247 357.897 314.179C346.727 332.939 331.834 342.32 313.218 342.32C295.496 342.32 281.496 335.247 271.22 321.102C261.986 308.446 257.37 292.961 257.37 274.647C257.37 259.013 261.391 243.156 269.433 227.075C278.518 209.208 289.762 197.891 303.165 193.127C308.676 191.042 315.303 190 323.047 190C325.43 190 330.419 191.563 338.015 194.69C349.631 199.306 358.492 208.463 364.599 222.161C369.811 233.626 372.417 246.357 372.417 260.353ZM361.471 259.46C361.471 243.23 358.567 229.755 352.759 219.035C345.312 205.634 334.143 198.934 319.25 198.934C314.037 198.934 308.676 200.72 303.165 204.294C291.996 211.441 283.358 221.789 277.252 235.339C271.741 247.846 268.986 261.172 268.986 275.317C268.986 283.06 269.507 289.239 270.55 293.854C272.784 304.277 278.071 312.913 286.411 319.762C294.9 326.611 304.506 330.036 315.229 330.036C331.015 330.036 343.078 321.772 351.418 305.245C358.12 292.142 361.471 276.88 361.471 259.46Z" fill="black"/>
<path d="M518 298.321L516.436 299.661C510.926 298.619 501.692 298.098 488.735 298.098C485.012 298.098 482.629 298.917 481.587 300.555C480.544 302.044 480.023 304.873 480.023 309.042C480.023 321.698 480.768 330.259 482.257 334.726C482.406 335.173 483.002 336.215 484.044 337.853C485.087 339.491 485.608 340.608 485.608 341.203C485.608 341.948 485.087 343.213 484.044 345H476.896C475.704 345 474.066 343.734 471.981 341.203C469.896 338.672 468.853 336.736 468.853 335.396C468.853 334.801 469.002 333.907 469.3 332.716C469.747 331.376 469.97 330.408 469.97 329.813C469.97 327.43 470.045 323.782 470.194 318.869C470.343 313.955 470.417 310.307 470.417 307.925C470.417 302.565 469.598 299.885 467.96 299.885C461.258 299.885 451.28 300.853 438.025 302.788C424.919 304.575 415.016 305.468 408.314 305.468C404.442 305.468 399.676 303.83 394.017 300.555C387.911 296.832 384.858 293.184 384.858 289.611C384.858 284.995 389.4 278.369 398.485 269.733C405.037 264.075 411.59 258.343 418.143 252.536C429.015 243.007 444.95 228.266 465.949 208.314C468.928 204.443 471.906 200.646 474.885 196.924C478.757 192.308 482.704 190 486.725 190C488.959 190 490.969 190.819 492.757 192.457C494.693 194.095 495.661 196.03 495.661 198.264C495.661 199.455 495.065 201.912 493.874 205.634C492.384 210.548 491.565 213.228 491.416 213.674C490.672 216.95 488.587 229.978 485.161 252.759C482.629 269.585 481.363 280.231 481.363 284.697C481.363 286.335 482.034 287.675 483.374 288.718C484.714 288.569 486.874 288.494 489.852 288.494C492.831 288.345 495.065 288.271 496.554 288.271C508.022 288.271 515.17 290.355 518 294.524V298.321ZM475.779 219.705H473.321C463.492 225.809 449.716 236.604 431.994 252.089C410.846 270.403 400.272 282.315 400.272 287.824C400.272 292.291 403.027 294.45 408.537 294.301H409.431L469.97 289.164L475.779 219.705Z" fill="black"/>
<rect x="96" y="350" width="470" height="2" rx="1" fill="#D9D9D9"/>
<path d="M598.621 512.693C601.626 513.585 604.647 514 607.714 514V513.985C636.505 513.985 667.377 476.916 688.477 451.563C695.321 443.353 702.441 435.773 705 432.637L699.205 428.039C695.105 431.376 689.957 437.802 682.574 446.674L682.53 446.727C661.795 471.625 627.162 513.21 600.825 505.344C577.428 498.364 578.491 483.589 579.724 466.476L579.727 466.448C580.774 451.849 581.962 435.292 562.878 428.147C541.285 420.06 507.716 436.82 493.073 445.279C478.431 453.738 486.138 442.201 456.853 429.177L453 435.327C474.578 440.708 476.119 462.957 493.073 452.195C510.028 441.432 542.919 428.87 560.181 435.327C573.236 440.216 573.205 450.148 572.064 465.938L572.063 465.955C570.846 482.88 569.33 503.948 598.621 512.693Z" fill="#87A6FC"/>
<path d="M460.332 434.371C457.035 437.992 451.441 438.254 447.82 434.972L434.306 422.691L446.218 409.578L459.731 421.859C463.353 425.157 463.614 430.75 460.332 434.371Z" fill="#87A6FC"/>
<path d="M391.977 360.335L368.648 341.043C366.814 339.533 366.568 336.821 368.078 334.987C369.588 333.154 372.3 332.907 374.134 334.417L397.463 353.709L391.977 360.335Z" fill="#87A6FC"/>
<path d="M370.05 388.507L346.721 369.215C344.887 367.705 344.641 364.993 346.151 363.159C347.661 361.326 350.373 361.079 352.207 362.589L375.536 381.881L370.05 388.507Z" fill="#87A6FC"/>
<g opacity="0.6">
<path d="M391.978 360.335L368.648 341.043C366.815 339.533 366.568 336.821 368.078 334.987C369.588 333.154 372.3 332.907 374.134 334.417L397.463 353.709L391.978 360.335Z" fill="white"/>
</g>
<g opacity="0.6">
<path d="M370.05 388.499L346.721 369.207C344.887 367.697 344.641 364.985 346.151 363.151C347.661 361.318 350.373 361.071 352.207 362.581L375.536 381.873L370.05 388.499Z" fill="white"/>
</g>
<path d="M444.985 384.731L445.601 383.992C448.498 380.479 445.385 377.933 441.888 375.036C438.837 372.509 437.142 369.908 434.152 372.265L400.006 343.82L360.944 390.556L395.891 418.339C393.657 421.806 395.844 423.205 399.095 425.886C402.547 428.736 406.108 431.56 409.035 428.185C419.282 435.89 433.829 434.118 441.888 424.071L447.496 417.075C455.371 407.26 454.153 393.114 445 384.716L444.985 384.731Z" fill="#87A6FC"/>
<path d="M405.906 385.667L381.813 365.742L377.914 370.456L402.008 390.381L405.906 385.667Z" fill="#E0E0E0"/>
<g clip-path="url(#clip0_4758_37595)">
<path d="M451 210.32C451 210.32 450.908 210.397 450.707 210.505L449.83 210.982C448.998 211.413 447.874 212.013 446.427 212.752C443.409 214.291 439.113 216.492 433.801 219.202C423.022 224.635 408.132 232.131 391.426 240.536L391.149 240.674L390.964 240.412C389.794 238.75 388.531 236.98 387.268 235.179C385.467 232.624 383.696 230.115 382.002 227.729L382.495 227.837C366.866 236.872 353.008 244.861 343 250.633C338.041 253.45 334.053 255.728 331.236 257.344C329.881 258.098 328.818 258.683 328.048 259.13C327.709 259.314 327.432 259.453 327.217 259.576C327.032 259.668 326.924 259.715 326.924 259.699C326.924 259.699 327.001 259.622 327.186 259.499L327.987 258.991C328.757 258.529 329.788 257.898 331.112 257.098C333.899 255.451 337.857 253.096 342.769 250.187C352.746 244.353 366.543 236.287 382.141 227.175L382.433 227.006L382.634 227.283C384.312 229.668 386.098 232.177 387.9 234.733C389.162 236.518 390.425 238.304 391.595 239.966L391.118 239.843C407.871 231.516 422.791 224.096 433.6 218.724C438.959 216.108 443.286 213.983 446.334 212.49C447.797 211.798 448.952 211.244 449.799 210.843C450.169 210.674 450.461 210.536 450.707 210.428C450.908 210.335 451.015 210.305 451.031 210.305L451 210.32Z" fill="#263238"/>
<path d="M439.775 265.918C439.775 265.918 439.498 266.026 438.944 266.149C438.312 266.287 437.512 266.457 436.511 266.688C434.293 267.134 431.245 267.765 427.488 268.519C419.758 270.028 409.164 272.075 397.292 274.384L396.923 274.461L396.861 274.076C396.646 272.891 396.43 271.629 396.199 270.336C396.045 269.489 395.907 268.642 395.768 267.873L396.199 268.181C383.942 270.289 373.102 272.845 365.326 274.892C361.446 275.908 358.32 276.785 356.165 277.385C355.148 277.662 354.332 277.893 353.686 278.078C353.116 278.232 352.808 278.293 352.808 278.278C352.808 278.263 353.085 278.14 353.639 277.939C354.271 277.724 355.087 277.462 356.088 277.124C358.213 276.431 361.323 275.477 365.188 274.399C372.933 272.213 383.788 269.566 396.061 267.442L396.43 267.38L396.492 267.75C396.63 268.535 396.784 269.366 396.938 270.212C397.169 271.49 397.385 272.752 397.6 273.953L397.154 273.645C409.041 271.428 419.65 269.458 427.395 268.011C431.168 267.349 434.232 266.795 436.449 266.41C437.45 266.241 438.266 266.118 438.913 266.01C439.482 265.933 439.775 265.903 439.775 265.918Z" fill="#263238"/>
<path d="M336.548 212.509C336.733 212.601 332.822 221.067 327.786 231.411C322.767 241.754 318.532 250.066 318.348 249.974C318.163 249.882 322.074 241.416 327.109 231.072C332.129 220.728 336.363 212.416 336.548 212.509Z" fill="#263238"/>
<path d="M382.526 253.987C382.587 254.187 372.841 257.204 360.769 260.729C348.697 264.254 338.858 266.948 338.796 266.747C338.734 266.547 348.481 263.53 360.553 260.006C372.625 256.481 382.464 253.787 382.526 253.987Z" fill="#263238"/>
<path d="M307.184 186C307.184 186 307.431 186.539 307.815 187.57C308.216 188.709 308.739 190.202 309.371 192.065C310.695 196.036 312.527 201.516 314.683 207.965L314.837 208.427H314.344C310.649 208.35 306.584 208.258 302.318 208.181L302.703 207.734C302.981 209.258 303.289 210.874 303.596 212.506C305.567 223.358 307.354 233.163 308.662 240.397C309.263 243.891 309.756 246.754 310.11 248.863C310.248 249.802 310.372 250.556 310.464 251.172C310.541 251.695 310.556 251.988 310.541 251.988C310.51 251.988 310.433 251.726 310.31 251.203C310.171 250.602 310.017 249.848 309.817 248.925C309.401 246.831 308.832 243.984 308.123 240.505C306.753 233.286 304.89 223.481 302.842 212.66C302.534 211.028 302.241 209.412 301.964 207.888L301.887 207.426H302.349C306.614 207.55 310.679 207.657 314.375 207.75L314.036 208.196C311.988 201.716 310.248 196.205 308.986 192.219C308.416 190.341 307.954 188.817 307.615 187.662C307.292 186.585 307.138 186 307.184 186Z" fill="#263238"/>
<path d="M254 301.984C253.908 301.8 261.73 297.951 271.446 293.395C281.177 288.839 289.122 285.299 289.215 285.483C289.307 285.668 281.501 289.516 271.769 294.072C262.038 298.644 254.092 302.184 254 301.984Z" fill="#263238"/>
<path d="M290.308 313.143C290.154 313.004 293.126 309.171 296.975 304.569C300.825 299.967 304.058 296.334 304.228 296.473C304.382 296.611 301.41 300.444 297.56 305.062C293.726 309.664 290.477 313.297 290.308 313.158V313.143Z" fill="#263238"/>
<path d="M309.879 365.998C309.663 365.982 311.003 350.99 312.866 332.519C314.729 314.048 316.392 299.086 316.608 299.117C316.823 299.133 315.484 314.125 313.62 332.596C311.773 351.067 310.094 366.013 309.879 365.998Z" fill="#263238"/>
<path d="M283.164 233.393C283.348 233.3 284.934 236.117 286.72 239.688C288.491 243.259 289.785 246.23 289.6 246.323C289.415 246.415 287.829 243.598 286.043 240.027C284.272 236.456 282.979 233.485 283.164 233.393Z" fill="#263238"/>
</g>
<defs>
<clipPath id="clip0_4758_37595">
<rect width="197" height="180" fill="white" transform="translate(254 186)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,37 @@
<svg width="705" height="514" viewBox="0 0 705 514" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M129.938 18.7787C206.261 -49.8654 279.106 130.979 393.601 32.5266C508.097 -65.9257 589.967 87.2489 558.584 203.476C527.202 319.703 631.053 370.43 568.606 426.788C506.16 483.146 385.546 373.665 248.663 432.95C111.781 492.236 26.6306 318.213 95.245 227.348C163.859 136.482 53.6138 87.4228 129.938 18.7787Z" fill="#453F4F"/>
<path d="M194.863 0.59436C188.16 0.59436 181.504 1.31857 174.939 2.75162C161.333 5.74097 150.701 10.1326 142.519 16.1421C133.674 13.0449 123.134 10.7335 111.007 10.4099C76.0593 9.47 44.4398 20.3951 5.63973 51.7988C3.68277 55.9746 1.80286 60.397 0 65.0352C37.3362 34.8179 77.7543 17.2054 110.807 18.0837C120.191 18.3302 128.527 19.8557 135.785 22.013C126.771 31.4125 122.24 43.6936 122.287 58.5942C122.348 74.9586 129.313 82.355 135.138 85.6987C143.382 90.4139 154.661 89.7668 164.554 84.0038C175.463 77.6398 181.951 66.8843 181.904 55.2196C181.874 45.82 177.22 36.6208 169.454 30.6113C165.355 27.437 159.207 23.3074 151.132 19.5938C157.912 15.572 166.372 12.4594 176.588 10.225C188.207 7.68253 200.149 7.59012 212.106 9.9631C244.943 16.4811 272.371 28.1304 293.62 44.5873C310.509 57.6696 323.591 73.8338 332.467 92.6174C347.583 124.622 345.302 153.329 345.287 153.622V153.761C343.392 191.744 321.202 228.849 288.766 248.295C260.614 265.168 224.572 269.791 187.251 261.316C164.061 256.046 132.503 243.549 113.904 213.918C93.8722 182.006 99.2962 142.373 115.83 123.96C127.618 110.816 143.736 104.611 152.55 104.611C161.364 104.611 169.5 106.152 177.205 107.693C184.909 109.234 196.466 112.315 198.007 113.065L203.4 107.693C202.136 107.246 185.541 101.529 181.904 100.759C178.268 99.9881 175.664 98.4472 160.686 96.9063C145.708 95.3654 124.86 102.402 110.113 118.828C99.4349 130.724 93.5178 147.874 93.4099 167.151C93.3175 185.149 98.4179 203.671 107.401 217.986C127.387 249.883 160.933 263.242 185.541 268.836C224.788 277.758 262.848 272.811 292.711 254.921C327.274 234.212 350.896 194.703 352.945 154.254C353.115 152.174 355.18 122.727 339.416 89.3815C330.017 69.4884 316.195 52.3997 298.335 38.5624C276.131 21.3658 247.64 9.22345 213.616 2.47427C207.36 1.22614 201.104 0.609772 194.879 0.609772L194.863 0.59436ZM147.542 81.1993C144.399 81.1993 141.455 80.4905 138.944 79.0574C133.104 75.7137 129.991 68.6409 129.96 58.5942C129.914 44.2329 134.414 33.1076 143.859 24.8483C153.305 28.6389 160.332 33.2924 164.754 36.7133C170.656 41.2898 174.2 48.2239 174.231 55.2812C174.261 64.1723 169.207 72.4469 160.686 77.3932C156.356 79.9049 151.78 81.1993 147.542 81.1993Z" fill="#87A6FC"/>
<path d="M297.66 157.032L250.595 211.155C248.681 213.36 245.347 213.587 243.142 211.674C240.937 209.761 240.709 206.426 242.623 204.222L244.759 201.754L223.701 181.554C218.994 177.039 217.132 170.68 218.14 164.713L205.444 152.526C201.051 148.3 200.905 141.311 205.118 136.911L209.572 132.277L197.137 120.347C193.691 117.04 193.572 111.545 196.892 108.106C200.198 104.659 205.694 104.54 209.132 107.86L221.568 119.791L225.007 116.207C229.233 111.815 236.221 111.668 240.621 115.881L253.546 128.289L253.457 128.38C259.244 127.326 265.429 128.94 269.999 133.322L288.68 151.26L289.688 150.099C291.602 147.894 294.936 147.666 297.141 149.58C299.346 151.493 299.574 154.828 297.66 157.032Z" fill="#87A6FC"/>
<rect x="96" y="350" width="470" height="2" rx="1" fill="#8F8F8F"/>
<path d="M598.621 512.693C601.626 513.585 604.647 514 607.714 514V513.985C636.505 513.985 667.377 476.916 688.477 451.563C695.321 443.353 702.441 435.773 705 432.637L699.205 428.039C695.105 431.376 689.957 437.802 682.574 446.674L682.53 446.727C661.795 471.625 627.162 513.21 600.825 505.344C577.428 498.364 578.491 483.589 579.724 466.476L579.727 466.448C580.774 451.849 581.962 435.292 562.878 428.147C541.285 420.06 507.716 436.82 493.073 445.279C478.431 453.738 486.138 442.201 456.853 429.177L453 435.327C474.578 440.708 476.119 462.957 493.073 452.195C510.028 441.432 542.919 428.87 560.181 435.327C573.236 440.216 573.205 450.148 572.064 465.938L572.063 465.955C570.846 482.88 569.33 503.948 598.621 512.693Z" fill="#87A6FC"/>
<path d="M460.332 434.371C457.035 437.992 451.441 438.254 447.82 434.972L434.306 422.691L446.217 409.578L459.731 421.859C463.352 425.157 463.614 430.75 460.332 434.371Z" fill="#87A6FC"/>
<path d="M391.977 360.335L368.648 341.043C366.814 339.533 366.568 336.821 368.078 334.987C369.588 333.154 372.3 332.907 374.134 334.417L397.463 353.709L391.977 360.335Z" fill="#87A6FC"/>
<path d="M370.05 388.507L346.721 369.215C344.887 367.705 344.641 364.993 346.151 363.159C347.661 361.326 350.373 361.079 352.206 362.589L375.536 381.881L370.05 388.507Z" fill="#87A6FC"/>
<g opacity="0.6">
<path d="M391.977 360.335L368.648 341.043C366.814 339.533 366.568 336.821 368.078 334.987C369.588 333.154 372.3 332.907 374.134 334.417L397.463 353.709L391.977 360.335Z" fill="white"/>
</g>
<g opacity="0.6">
<path d="M370.05 388.499L346.721 369.207C344.887 367.697 344.641 364.985 346.151 363.151C347.661 361.318 350.373 361.071 352.206 362.581L375.536 381.873L370.05 388.499Z" fill="white"/>
</g>
<path d="M444.985 384.731L445.601 383.992C448.498 380.479 445.385 377.933 441.887 375.036C438.836 372.509 437.141 369.908 434.152 372.265L400.005 343.82L360.943 390.556L395.891 418.339C393.657 421.806 395.844 423.205 399.095 425.886C402.547 428.736 406.107 431.56 409.035 428.185C419.282 435.89 433.828 434.118 441.887 424.071L447.496 417.075C455.37 407.26 454.153 393.114 445 384.716L444.985 384.731Z" fill="#87A6FC"/>
<path d="M405.906 385.667L381.812 365.742L377.914 370.456L402.008 390.381L405.906 385.667Z" fill="#E0E0E0"/>
<path d="M243.025 288.675C243.025 304.425 236.725 317.775 224.125 328.725C212.125 339.225 198.1 344.475 182.05 344.475C175.6 344.475 169.6 343.95 164.05 342.9C158.65 341.85 152.575 339.6 145.825 336.15C137.275 331.95 133 327.975 133 324.225C133 320.625 135.4 318.825 140.2 318.825C143.5 318.825 149.05 321.825 156.85 327.825C164.65 333.675 171.85 336.6 178.45 336.6C192.7 336.6 204.7 332.7 214.45 324.9C224.95 316.5 230.2 305.4 230.2 291.6C230.2 281.85 226.825 274.125 220.075 268.425C213.475 262.725 205.3 259.875 195.55 259.875C190.6 259.875 184.75 260.7 178 262.35C170.8 264.15 165.475 266.25 162.025 268.65C161.875 268.65 160.375 270.075 157.525 272.925C155.575 274.725 153.925 275.625 152.575 275.625C150.775 275.625 148.3 274.65 145.15 272.7C145.15 271.2 145.6 269.025 146.5 266.175C147.4 263.325 147.85 261.075 147.85 259.425C147.85 256.875 147.85 252.975 147.85 247.725C147.7 242.475 147.625 238.5 147.625 235.8C147.625 215.85 149.95 200.7 154.6 190.35C155.5 189.9 156.85 189.675 158.65 189.675C161.05 189.675 162.85 190.425 164.05 191.925C165.4 193.275 166.675 193.95 167.875 193.95C168.325 193.95 172.6 193.425 180.7 192.375C196.9 190.425 207.85 189.45 213.55 189.45C222.85 189.45 227.5 192.075 227.5 197.325C227.5 199.275 226.45 202.125 224.35 205.875H222.325C221.575 205.875 220.15 205.5 218.05 204.75C216.1 204 214.825 203.55 214.225 203.4C211.525 202.8 205.75 202.5 196.9 202.5C194.05 202.5 188.2 203.1 179.35 204.3C169.75 205.5 164.425 206.625 163.375 207.675C160.225 210.375 158.65 223.275 158.65 246.375C158.65 251.325 158.875 255.225 159.325 258.075L159.775 258.525C160.375 258.525 163.825 257.175 170.125 254.475C178.525 251.025 188.05 249.3 198.7 249.3C211.45 249.3 221.875 252.6 229.975 259.2C238.675 266.4 243.025 276.225 243.025 288.675Z" fill="white"/>
<path d="M373.764 259.875C373.764 279.975 368.889 298.05 359.139 314.1C347.889 333 332.889 342.45 314.139 342.45C296.289 342.45 282.189 335.325 271.839 321.075C262.539 308.325 257.889 292.725 257.889 274.275C257.889 258.525 261.939 242.55 270.039 226.35C279.189 208.35 290.514 196.95 304.014 192.15C309.564 190.05 316.239 189 324.039 189C326.439 189 331.464 190.575 339.114 193.725C350.814 198.375 359.739 207.6 365.889 221.4C371.139 232.95 373.764 245.775 373.764 259.875ZM362.739 258.975C362.739 242.625 359.814 229.05 353.964 218.25C346.464 204.75 335.214 198 320.214 198C314.964 198 309.564 199.8 304.014 203.4C292.764 210.6 284.064 221.025 277.914 234.675C272.364 247.275 269.589 260.7 269.589 274.95C269.589 282.75 270.114 288.975 271.164 293.625C273.414 304.125 278.739 312.825 287.139 319.725C295.689 326.625 305.364 330.075 316.164 330.075C332.064 330.075 344.214 321.75 352.614 305.1C359.364 291.9 362.739 276.525 362.739 258.975Z" fill="white"/>
<path d="M502.169 259.875C502.169 279.975 497.294 298.05 487.544 314.1C476.294 333 461.294 342.45 442.544 342.45C424.694 342.45 410.594 335.325 400.244 321.075C390.944 308.325 386.294 292.725 386.294 274.275C386.294 258.525 390.344 242.55 398.444 226.35C407.594 208.35 418.919 196.95 432.419 192.15C437.969 190.05 444.644 189 452.444 189C454.844 189 459.869 190.575 467.519 193.725C479.219 198.375 488.144 207.6 494.294 221.4C499.544 232.95 502.169 245.775 502.169 259.875ZM491.144 258.975C491.144 242.625 488.219 229.05 482.369 218.25C474.869 204.75 463.619 198 448.619 198C443.369 198 437.969 199.8 432.419 203.4C421.169 210.6 412.469 221.025 406.319 234.675C400.769 247.275 397.994 260.7 397.994 274.95C397.994 282.75 398.519 288.975 399.569 293.625C401.819 304.125 407.144 312.825 415.544 319.725C424.094 326.625 433.769 330.075 444.569 330.075C460.469 330.075 472.619 321.75 481.019 305.1C487.769 291.9 491.144 276.525 491.144 258.975Z" fill="white"/>
<g clip-path="url(#clip0_6900_40282)">
<path d="M451 210.32C451 210.32 450.908 210.397 450.708 210.505L449.83 210.982C448.998 211.413 447.874 212.013 446.427 212.752C443.409 214.291 439.113 216.492 433.801 219.202C423.022 224.635 408.133 232.131 391.426 240.536L391.149 240.674L390.964 240.412C389.794 238.75 388.531 236.98 387.268 235.179C385.467 232.624 383.696 230.115 382.002 227.729L382.495 227.837C366.866 236.872 353.008 244.861 343 250.633C338.042 253.45 334.054 255.728 331.236 257.344C329.881 258.098 328.818 258.683 328.048 259.13C327.71 259.314 327.432 259.453 327.217 259.576C327.032 259.668 326.924 259.715 326.924 259.699C326.924 259.699 327.001 259.622 327.186 259.499L327.987 258.991C328.757 258.529 329.788 257.898 331.113 257.098C333.9 255.451 337.857 253.096 342.769 250.187C352.746 244.353 366.543 236.287 382.141 227.175L382.434 227.006L382.634 227.283C384.312 229.668 386.098 232.177 387.9 234.733C389.162 236.518 390.425 238.304 391.595 239.966L391.118 239.843C407.871 231.516 422.791 224.096 433.601 218.724C438.959 216.108 443.286 213.983 446.335 212.49C447.797 211.798 448.952 211.244 449.799 210.843C450.169 210.674 450.461 210.536 450.708 210.428C450.908 210.335 451.016 210.305 451.031 210.305L451 210.32Z" fill="#EFE8FC"/>
<path d="M439.775 265.918C439.775 265.918 439.498 266.026 438.944 266.149C438.312 266.287 437.512 266.457 436.511 266.688C434.293 267.134 431.245 267.765 427.488 268.519C419.758 270.028 409.164 272.075 397.292 274.384L396.923 274.461L396.861 274.076C396.646 272.891 396.43 271.629 396.199 270.336C396.045 269.489 395.907 268.642 395.768 267.873L396.199 268.181C383.943 270.289 373.102 272.845 365.327 274.892C361.446 275.908 358.321 276.785 356.165 277.385C355.149 277.662 354.332 277.893 353.686 278.078C353.116 278.232 352.808 278.293 352.808 278.278C352.808 278.263 353.085 278.14 353.64 277.939C354.271 277.724 355.087 277.462 356.088 277.124C358.213 276.431 361.323 275.477 365.188 274.399C372.933 272.213 383.789 269.566 396.061 267.442L396.43 267.38L396.492 267.75C396.63 268.535 396.784 269.366 396.938 270.212C397.169 271.49 397.385 272.752 397.6 273.953L397.154 273.645C409.041 271.428 419.65 269.458 427.395 268.011C431.168 267.349 434.232 266.795 436.449 266.41C437.45 266.241 438.266 266.118 438.913 266.01C439.483 265.933 439.775 265.903 439.775 265.918Z" fill="#EFE8FC"/>
<path d="M336.548 212.509C336.733 212.601 332.822 221.067 327.786 231.411C322.767 241.754 318.532 250.066 318.348 249.974C318.163 249.882 322.074 241.416 327.109 231.072C332.129 220.728 336.363 212.416 336.548 212.509Z" fill="#EFE8FC"/>
<path d="M382.526 253.987C382.587 254.187 372.84 257.204 360.768 260.729C348.697 264.254 338.857 266.948 338.796 266.747C338.734 266.547 348.481 263.53 360.553 260.006C372.625 256.481 382.464 253.787 382.526 253.987Z" fill="#EFE8FC"/>
<path d="M307.184 186C307.184 186 307.43 186.539 307.815 187.57C308.216 188.709 308.739 190.202 309.371 192.065C310.695 196.036 312.527 201.516 314.683 207.965L314.837 208.427H314.344C310.649 208.35 306.584 208.258 302.318 208.181L302.703 207.734C302.98 209.258 303.288 210.874 303.596 212.506C305.567 223.358 307.353 233.163 308.662 240.397C309.263 243.891 309.756 246.754 310.11 248.863C310.248 249.802 310.371 250.556 310.464 251.172C310.541 251.695 310.556 251.988 310.541 251.988C310.51 251.988 310.433 251.726 310.31 251.203C310.171 250.602 310.017 249.848 309.817 248.925C309.401 246.831 308.832 243.984 308.123 240.505C306.753 233.286 304.89 223.481 302.842 212.66C302.534 211.028 302.241 209.412 301.964 207.888L301.887 207.426H302.349C306.614 207.55 310.679 207.657 314.375 207.75L314.036 208.196C311.988 201.716 310.248 196.205 308.986 192.219C308.416 190.341 307.954 188.817 307.615 187.662C307.292 186.585 307.138 186 307.184 186Z" fill="#EFE8FC"/>
<path d="M254 301.984C253.907 301.8 261.73 297.951 271.446 293.395C281.177 288.839 289.122 285.299 289.215 285.483C289.307 285.668 281.5 289.516 271.769 294.072C262.038 298.644 254.092 302.184 254 301.984Z" fill="#EFE8FC"/>
<path d="M290.308 313.143C290.154 313.004 293.126 309.171 296.975 304.569C300.825 299.967 304.058 296.334 304.228 296.473C304.382 296.611 301.41 300.444 297.56 305.062C293.726 309.664 290.477 313.297 290.308 313.158V313.143Z" fill="#EFE8FC"/>
<path d="M309.879 365.998C309.663 365.982 311.003 350.99 312.866 332.519C314.729 314.048 316.392 299.086 316.608 299.117C316.823 299.133 315.484 314.125 313.62 332.596C311.773 351.067 310.094 366.013 309.879 365.998Z" fill="#EFE8FC"/>
<path d="M283.164 233.393C283.348 233.3 284.934 236.117 286.72 239.688C288.491 243.259 289.785 246.23 289.6 246.323C289.415 246.415 287.829 243.598 286.043 240.027C284.272 236.456 282.979 233.485 283.164 233.393Z" fill="#EFE8FC"/>
</g>
<defs>
<clipPath id="clip0_6900_40282">
<rect width="197" height="180" fill="white" transform="translate(254 186)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,37 @@
<svg width="705" height="514" viewBox="0 0 705 514" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M129.938 18.7787C206.261 -49.8654 279.106 130.979 393.601 32.5266C508.097 -65.9257 589.967 87.2489 558.584 203.476C527.202 319.703 631.053 370.43 568.606 426.788C506.16 483.146 385.546 373.665 248.663 432.95C111.781 492.236 26.6306 318.213 95.245 227.348C163.859 136.482 53.6138 87.4228 129.938 18.7787Z" fill="white"/>
<path d="M194.863 0.59436C188.16 0.59436 181.504 1.31857 174.939 2.75162C161.333 5.74097 150.701 10.1326 142.519 16.1421C133.674 13.0449 123.134 10.7335 111.007 10.4099C76.0593 9.47 44.4398 20.3951 5.63973 51.7988C3.68277 55.9746 1.80286 60.397 0 65.0352C37.3362 34.8179 77.7543 17.2054 110.807 18.0837C120.191 18.3302 128.527 19.8557 135.785 22.013C126.771 31.4125 122.24 43.6936 122.287 58.5942C122.348 74.9586 129.313 82.355 135.138 85.6987C143.382 90.4139 154.661 89.7668 164.554 84.0038C175.463 77.6398 181.951 66.8843 181.904 55.2196C181.874 45.82 177.22 36.6208 169.454 30.6113C165.355 27.437 159.207 23.3074 151.132 19.5938C157.912 15.572 166.372 12.4594 176.588 10.225C188.207 7.68253 200.149 7.59012 212.106 9.9631C244.943 16.4811 272.371 28.1304 293.62 44.5873C310.509 57.6696 323.591 73.8338 332.467 92.6174C347.583 124.622 345.302 153.329 345.287 153.622V153.761C343.392 191.744 321.202 228.849 288.766 248.295C260.614 265.168 224.572 269.791 187.251 261.316C164.061 256.046 132.503 243.549 113.904 213.918C93.8722 182.006 99.2962 142.373 115.83 123.96C127.618 110.816 143.736 104.611 152.55 104.611C161.364 104.611 169.5 106.152 177.205 107.693C184.909 109.234 196.466 112.315 198.007 113.065L203.4 107.693C202.136 107.246 185.541 101.529 181.904 100.759C178.268 99.9881 175.664 98.4472 160.686 96.9063C145.708 95.3654 124.86 102.402 110.113 118.828C99.4349 130.724 93.5178 147.874 93.4099 167.151C93.3175 185.149 98.4179 203.671 107.401 217.986C127.387 249.883 160.933 263.242 185.541 268.836C224.788 277.758 262.848 272.811 292.711 254.921C327.274 234.212 350.896 194.703 352.945 154.254C353.115 152.174 355.18 122.727 339.416 89.3815C330.017 69.4884 316.195 52.3997 298.335 38.5624C276.131 21.3658 247.64 9.22345 213.616 2.47427C207.36 1.22614 201.104 0.609772 194.879 0.609772L194.863 0.59436ZM147.542 81.1993C144.399 81.1993 141.455 80.4905 138.944 79.0574C133.104 75.7137 129.991 68.6409 129.96 58.5942C129.914 44.2329 134.414 33.1076 143.859 24.8483C153.305 28.6389 160.332 33.2924 164.754 36.7133C170.656 41.2898 174.2 48.2239 174.231 55.2812C174.261 64.1723 169.207 72.4469 160.686 77.3932C156.356 79.9049 151.78 81.1993 147.542 81.1993Z" fill="#87A6FC"/>
<path d="M297.66 157.032L250.595 211.155C248.681 213.36 245.347 213.587 243.142 211.674C240.937 209.761 240.709 206.426 242.623 204.222L244.759 201.754L223.701 181.554C218.994 177.039 217.132 170.68 218.14 164.713L205.444 152.526C201.051 148.3 200.905 141.311 205.118 136.911L209.572 132.277L197.137 120.347C193.691 117.04 193.572 111.545 196.892 108.106C200.198 104.659 205.694 104.54 209.132 107.86L221.568 119.791L225.007 116.207C229.233 111.815 236.221 111.668 240.621 115.881L253.546 128.289L253.457 128.38C259.244 127.326 265.429 128.94 269.999 133.322L288.68 151.26L289.688 150.099C291.602 147.894 294.936 147.666 297.141 149.58C299.346 151.493 299.574 154.828 297.66 157.032Z" fill="#87A6FC"/>
<rect x="96" y="350" width="470" height="2" rx="1" fill="#D9D9D9"/>
<path d="M598.621 512.693C601.626 513.585 604.647 514 607.714 514V513.985C636.505 513.985 667.377 476.916 688.477 451.563C695.321 443.353 702.441 435.773 705 432.637L699.205 428.039C695.105 431.376 689.957 437.802 682.574 446.674L682.53 446.727C661.795 471.625 627.162 513.21 600.825 505.344C577.428 498.364 578.491 483.589 579.724 466.476L579.727 466.448C580.774 451.849 581.962 435.292 562.878 428.147C541.285 420.06 507.716 436.82 493.073 445.279C478.431 453.738 486.138 442.201 456.853 429.177L453 435.327C474.578 440.708 476.119 462.957 493.073 452.195C510.028 441.432 542.919 428.87 560.181 435.327C573.236 440.216 573.205 450.148 572.064 465.938L572.063 465.955C570.846 482.88 569.33 503.948 598.621 512.693Z" fill="#87A6FC"/>
<path d="M460.332 434.371C457.035 437.992 451.441 438.254 447.82 434.972L434.306 422.691L446.217 409.578L459.731 421.859C463.352 425.157 463.614 430.75 460.332 434.371Z" fill="#87A6FC"/>
<path d="M391.977 360.335L368.648 341.043C366.814 339.533 366.568 336.821 368.078 334.987C369.588 333.154 372.3 332.907 374.134 334.417L397.463 353.709L391.977 360.335Z" fill="#87A6FC"/>
<path d="M370.05 388.507L346.721 369.215C344.887 367.705 344.641 364.993 346.151 363.159C347.661 361.326 350.373 361.079 352.206 362.589L375.536 381.881L370.05 388.507Z" fill="#87A6FC"/>
<g opacity="0.6">
<path d="M391.977 360.335L368.648 341.043C366.814 339.533 366.568 336.821 368.078 334.987C369.588 333.154 372.3 332.907 374.134 334.417L397.463 353.709L391.977 360.335Z" fill="white"/>
</g>
<g opacity="0.6">
<path d="M370.05 388.499L346.721 369.207C344.887 367.697 344.641 364.985 346.151 363.151C347.661 361.318 350.373 361.071 352.206 362.581L375.536 381.873L370.05 388.499Z" fill="white"/>
</g>
<path d="M444.985 384.731L445.601 383.992C448.498 380.479 445.385 377.933 441.887 375.036C438.836 372.509 437.141 369.908 434.152 372.265L400.005 343.82L360.943 390.556L395.891 418.339C393.657 421.806 395.844 423.205 399.095 425.886C402.547 428.736 406.107 431.56 409.035 428.185C419.282 435.89 433.828 434.118 441.887 424.071L447.496 417.075C455.37 407.26 454.153 393.114 445 384.716L444.985 384.731Z" fill="#87A6FC"/>
<path d="M405.906 385.667L381.812 365.742L377.914 370.456L402.008 390.381L405.906 385.667Z" fill="#E0E0E0"/>
<path d="M243.025 288.675C243.025 304.425 236.725 317.775 224.125 328.725C212.125 339.225 198.1 344.475 182.05 344.475C175.6 344.475 169.6 343.95 164.05 342.9C158.65 341.85 152.575 339.6 145.825 336.15C137.275 331.95 133 327.975 133 324.225C133 320.625 135.4 318.825 140.2 318.825C143.5 318.825 149.05 321.825 156.85 327.825C164.65 333.675 171.85 336.6 178.45 336.6C192.7 336.6 204.7 332.7 214.45 324.9C224.95 316.5 230.2 305.4 230.2 291.6C230.2 281.85 226.825 274.125 220.075 268.425C213.475 262.725 205.3 259.875 195.55 259.875C190.6 259.875 184.75 260.7 178 262.35C170.8 264.15 165.475 266.25 162.025 268.65C161.875 268.65 160.375 270.075 157.525 272.925C155.575 274.725 153.925 275.625 152.575 275.625C150.775 275.625 148.3 274.65 145.15 272.7C145.15 271.2 145.6 269.025 146.5 266.175C147.4 263.325 147.85 261.075 147.85 259.425C147.85 256.875 147.85 252.975 147.85 247.725C147.7 242.475 147.625 238.5 147.625 235.8C147.625 215.85 149.95 200.7 154.6 190.35C155.5 189.9 156.85 189.675 158.65 189.675C161.05 189.675 162.85 190.425 164.05 191.925C165.4 193.275 166.675 193.95 167.875 193.95C168.325 193.95 172.6 193.425 180.7 192.375C196.9 190.425 207.85 189.45 213.55 189.45C222.85 189.45 227.5 192.075 227.5 197.325C227.5 199.275 226.45 202.125 224.35 205.875H222.325C221.575 205.875 220.15 205.5 218.05 204.75C216.1 204 214.825 203.55 214.225 203.4C211.525 202.8 205.75 202.5 196.9 202.5C194.05 202.5 188.2 203.1 179.35 204.3C169.75 205.5 164.425 206.625 163.375 207.675C160.225 210.375 158.65 223.275 158.65 246.375C158.65 251.325 158.875 255.225 159.325 258.075L159.775 258.525C160.375 258.525 163.825 257.175 170.125 254.475C178.525 251.025 188.05 249.3 198.7 249.3C211.45 249.3 221.875 252.6 229.975 259.2C238.675 266.4 243.025 276.225 243.025 288.675Z" fill="black"/>
<path d="M373.764 259.875C373.764 279.975 368.889 298.05 359.139 314.1C347.889 333 332.889 342.45 314.139 342.45C296.289 342.45 282.189 335.325 271.839 321.075C262.539 308.325 257.889 292.725 257.889 274.275C257.889 258.525 261.939 242.55 270.039 226.35C279.189 208.35 290.514 196.95 304.014 192.15C309.564 190.05 316.239 189 324.039 189C326.439 189 331.464 190.575 339.114 193.725C350.814 198.375 359.739 207.6 365.889 221.4C371.139 232.95 373.764 245.775 373.764 259.875ZM362.739 258.975C362.739 242.625 359.814 229.05 353.964 218.25C346.464 204.75 335.214 198 320.214 198C314.964 198 309.564 199.8 304.014 203.4C292.764 210.6 284.064 221.025 277.914 234.675C272.364 247.275 269.589 260.7 269.589 274.95C269.589 282.75 270.114 288.975 271.164 293.625C273.414 304.125 278.739 312.825 287.139 319.725C295.689 326.625 305.364 330.075 316.164 330.075C332.064 330.075 344.214 321.75 352.614 305.1C359.364 291.9 362.739 276.525 362.739 258.975Z" fill="black"/>
<path d="M502.169 259.875C502.169 279.975 497.294 298.05 487.544 314.1C476.294 333 461.294 342.45 442.544 342.45C424.694 342.45 410.594 335.325 400.244 321.075C390.944 308.325 386.294 292.725 386.294 274.275C386.294 258.525 390.344 242.55 398.444 226.35C407.594 208.35 418.919 196.95 432.419 192.15C437.969 190.05 444.644 189 452.444 189C454.844 189 459.869 190.575 467.519 193.725C479.219 198.375 488.144 207.6 494.294 221.4C499.544 232.95 502.169 245.775 502.169 259.875ZM491.144 258.975C491.144 242.625 488.219 229.05 482.369 218.25C474.869 204.75 463.619 198 448.619 198C443.369 198 437.969 199.8 432.419 203.4C421.169 210.6 412.469 221.025 406.319 234.675C400.769 247.275 397.994 260.7 397.994 274.95C397.994 282.75 398.519 288.975 399.569 293.625C401.819 304.125 407.144 312.825 415.544 319.725C424.094 326.625 433.769 330.075 444.569 330.075C460.469 330.075 472.619 321.75 481.019 305.1C487.769 291.9 491.144 276.525 491.144 258.975Z" fill="black"/>
<g clip-path="url(#clip0_5231_49361)">
<path d="M451 210.32C451 210.32 450.908 210.397 450.708 210.505L449.83 210.982C448.998 211.413 447.874 212.013 446.427 212.752C443.409 214.291 439.113 216.492 433.801 219.202C423.022 224.635 408.133 232.131 391.426 240.536L391.149 240.674L390.964 240.412C389.794 238.75 388.531 236.98 387.268 235.179C385.467 232.624 383.696 230.115 382.002 227.729L382.495 227.837C366.866 236.872 353.008 244.861 343 250.633C338.042 253.45 334.054 255.728 331.236 257.344C329.881 258.098 328.818 258.683 328.048 259.13C327.71 259.314 327.432 259.453 327.217 259.576C327.032 259.668 326.924 259.715 326.924 259.699C326.924 259.699 327.001 259.622 327.186 259.499L327.987 258.991C328.757 258.529 329.788 257.898 331.113 257.098C333.9 255.451 337.857 253.096 342.769 250.187C352.746 244.353 366.543 236.287 382.141 227.175L382.434 227.006L382.634 227.283C384.312 229.668 386.098 232.177 387.9 234.733C389.162 236.518 390.425 238.304 391.595 239.966L391.118 239.843C407.871 231.516 422.791 224.096 433.601 218.724C438.959 216.108 443.286 213.983 446.335 212.49C447.797 211.798 448.952 211.244 449.799 210.843C450.169 210.674 450.461 210.536 450.708 210.428C450.908 210.335 451.016 210.305 451.031 210.305L451 210.32Z" fill="#263238"/>
<path d="M439.775 265.918C439.775 265.918 439.498 266.026 438.944 266.149C438.312 266.287 437.512 266.457 436.511 266.688C434.293 267.134 431.245 267.765 427.488 268.519C419.758 270.028 409.164 272.075 397.292 274.384L396.923 274.461L396.861 274.076C396.646 272.891 396.43 271.629 396.199 270.336C396.045 269.489 395.907 268.642 395.768 267.873L396.199 268.181C383.943 270.289 373.102 272.845 365.327 274.892C361.446 275.908 358.321 276.785 356.165 277.385C355.149 277.662 354.332 277.893 353.686 278.078C353.116 278.232 352.808 278.293 352.808 278.278C352.808 278.263 353.085 278.14 353.64 277.939C354.271 277.724 355.087 277.462 356.088 277.124C358.213 276.431 361.323 275.477 365.188 274.399C372.933 272.213 383.789 269.566 396.061 267.442L396.43 267.38L396.492 267.75C396.63 268.535 396.784 269.366 396.938 270.212C397.169 271.49 397.385 272.752 397.6 273.953L397.154 273.645C409.041 271.428 419.65 269.458 427.395 268.011C431.168 267.349 434.232 266.795 436.449 266.41C437.45 266.241 438.266 266.118 438.913 266.01C439.483 265.933 439.775 265.903 439.775 265.918Z" fill="#263238"/>
<path d="M336.548 212.509C336.733 212.601 332.822 221.067 327.786 231.411C322.767 241.754 318.532 250.066 318.348 249.974C318.163 249.882 322.074 241.416 327.109 231.072C332.129 220.728 336.363 212.416 336.548 212.509Z" fill="#263238"/>
<path d="M382.526 253.987C382.587 254.187 372.84 257.204 360.768 260.729C348.697 264.254 338.857 266.948 338.796 266.747C338.734 266.547 348.481 263.53 360.553 260.006C372.625 256.481 382.464 253.787 382.526 253.987Z" fill="#263238"/>
<path d="M307.184 186C307.184 186 307.43 186.539 307.815 187.57C308.216 188.709 308.739 190.202 309.371 192.065C310.695 196.036 312.527 201.516 314.683 207.965L314.837 208.427H314.344C310.649 208.35 306.584 208.258 302.318 208.181L302.703 207.734C302.98 209.258 303.288 210.874 303.596 212.506C305.567 223.358 307.353 233.163 308.662 240.397C309.263 243.891 309.756 246.754 310.11 248.863C310.248 249.802 310.371 250.556 310.464 251.172C310.541 251.695 310.556 251.988 310.541 251.988C310.51 251.988 310.433 251.726 310.31 251.203C310.171 250.602 310.017 249.848 309.817 248.925C309.401 246.831 308.832 243.984 308.123 240.505C306.753 233.286 304.89 223.481 302.842 212.66C302.534 211.028 302.241 209.412 301.964 207.888L301.887 207.426H302.349C306.614 207.55 310.679 207.657 314.375 207.75L314.036 208.196C311.988 201.716 310.248 196.205 308.986 192.219C308.416 190.341 307.954 188.817 307.615 187.662C307.292 186.585 307.138 186 307.184 186Z" fill="#263238"/>
<path d="M254 301.984C253.907 301.8 261.73 297.951 271.446 293.395C281.177 288.839 289.122 285.299 289.215 285.483C289.307 285.668 281.5 289.516 271.769 294.072C262.038 298.644 254.092 302.184 254 301.984Z" fill="#263238"/>
<path d="M290.308 313.143C290.154 313.004 293.126 309.171 296.975 304.569C300.825 299.967 304.058 296.334 304.228 296.473C304.382 296.611 301.41 300.444 297.56 305.062C293.726 309.664 290.477 313.297 290.308 313.158V313.143Z" fill="#263238"/>
<path d="M309.879 365.998C309.663 365.982 311.003 350.99 312.866 332.519C314.729 314.048 316.392 299.086 316.608 299.117C316.823 299.133 315.484 314.125 313.62 332.596C311.773 351.067 310.094 366.013 309.879 365.998Z" fill="#263238"/>
<path d="M283.164 233.393C283.348 233.3 284.934 236.117 286.72 239.688C288.491 243.259 289.785 246.23 289.6 246.323C289.415 246.415 287.829 243.598 286.043 240.027C284.272 236.456 282.979 233.485 283.164 233.393Z" fill="#263238"/>
</g>
<defs>
<clipPath id="clip0_5231_49361">
<rect width="197" height="180" fill="white" transform="translate(254 186)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,37 @@
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="mask0_2144_23292" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="48" height="48">
<path d="M0 16.744C0 10.8213 0 7.85995 1.1709 5.60587C2.15761 3.70638 3.70638 2.15761 5.60587 1.1709C7.85995 0 10.8213 0 16.744 0H31.256C37.1787 0 40.1401 0 42.3941 1.1709C44.2936 2.15761 45.8424 3.70638 46.8291 5.60587C48 7.85995 48 10.8213 48 16.744V31.256C48 37.1787 48 40.1401 46.8291 42.3941C45.8424 44.2936 44.2936 45.8424 42.3941 46.8291C40.1401 48 37.1787 48 31.256 48H16.744C10.8213 48 7.85995 48 5.60587 46.8291C3.70638 45.8424 2.15761 44.2936 1.1709 42.3941C0 40.1401 0 37.1787 0 31.256V16.744Z" fill="#C4C4C4"/>
</mask>
<g mask="url(#mask0_2144_23292)">
<g clip-path="url(#clip0_2144_23292)" filter="url(#filter0_d_2144_23292)">
<path d="M48 0H0V48H48V0Z" fill="url(#paint0_linear_2144_23292)"/>
<mask id="mask1_2144_23292" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="14" y="7" width="20" height="11">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.5427 7.03125H33.0073V17.5825L23.8371 16.4881L14.5427 17.5825V7.03125Z" fill="white"/>
</mask>
<g mask="url(#mask1_2144_23292)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.8749 21.7866V16.0988C29.8749 12.912 27.2915 10.3286 24.1048 10.3286C20.918 10.3286 18.3346 12.912 18.3346 16.0988V21.7866C18.3346 24.9734 20.918 27.5568 24.1048 27.5568C27.2915 27.5568 29.8749 24.9734 29.8749 21.7866ZM24.1048 7.6084C19.4156 7.6084 15.6143 11.4097 15.6143 16.0988V21.7866C15.6143 26.4757 19.4156 30.277 24.1048 30.277C28.7939 30.277 32.5952 26.4757 32.5952 21.7866V16.0988C32.5952 11.4097 28.7939 7.6084 24.1048 7.6084Z" fill="white"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.1875 21.4219C12.1875 19.0143 14.1411 17.0625 16.5519 17.0625C18.3742 17.0625 20.6265 17.0625 23.0297 17.0625C25.8778 17.0625 28.9485 17.0625 31.3558 17.0625C33.7665 17.0625 35.7187 19.0143 35.7187 21.4219V31.6406C35.7187 34.0482 33.7659 36 31.3552 36C29.3972 36 26.9603 36 24.4304 36C21.6706 36 18.8124 36 16.5524 36C14.1416 36 12.1875 34.0482 12.1875 31.6406V21.4219Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.6738 21.751H19.2531V31.1717H28.6738V27.6391H27.1038V29.6018H20.8233V23.3213H27.1038V24.4989V25.2839H25.9262V24.4989H22.0009V28.4242H25.9262V26.4615H26.7113V26.4615H28.6738V21.751Z" fill="#501EB6"/>
</g>
</g>
<defs>
<filter id="filter0_d_2144_23292" x="-1.36471" y="-1.02353" width="50.7294" height="50.7294" 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 dy="0.341176"/>
<feGaussianBlur stdDeviation="0.682353"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2144_23292"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2144_23292" result="shape"/>
</filter>
<linearGradient id="paint0_linear_2144_23292" x1="24" y1="-3.42187" x2="23.2969" y2="48" gradientUnits="userSpaceOnUse">
<stop stop-color="#501EB6"/>
<stop offset="1" stop-color="#734BC5"/>
</linearGradient>
<clipPath id="clip0_2144_23292">
<rect width="48" height="48" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -0,0 +1,43 @@
<svg width="32" height="33" viewBox="0 0 32 33" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_35368_44718)">
<path d="M32 0.5H0V32.5H32V0.5Z" fill="url(#paint0_linear_35368_44718)"/>
<g filter="url(#filter0_d_35368_44718)">
<path d="M-0.941934 -0.440878L27.5462 -1.28164L-1.78269 28.0473L-0.941934 -0.440878Z" fill="#F8F8F8"/>
</g>
<g clip-path="url(#clip1_35368_44718)">
<path d="M12.1729 6.25476C11.0581 5.84637 9.87613 5.65236 8.68929 5.68293C7.50026 5.65176 6.31606 5.84578 5.19914 6.25476C5.19914 6.25476 5.08412 8.78527 5.57708 10.2148C5.82821 10.9464 6.23676 11.6139 6.77393 12.1704C7.31109 12.7269 7.96379 13.1587 8.686 13.4355C9.40821 13.1587 10.0609 12.7269 10.5981 12.1704C11.1352 11.6139 11.5438 10.9464 11.7949 10.2148C12.2945 8.78527 12.1729 6.25476 12.1729 6.25476Z" fill="#FF0000"/>
<path d="M11.0063 8.44379V9.83721H9.37956V11.464H7.98614V9.83721H6.35938V8.44379H7.98614V6.82031H9.37956V8.44379H11.0063Z" fill="white"/>
</g>
<mask id="mask0_35368_44718" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="16" y="12" width="10" height="6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.1016 12.5H25.714V17.9928L20.9401 17.4231L16.1016 17.9928V12.5Z" fill="white"/>
</mask>
<g mask="url(#mask0_35368_44718)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.0801 20.1778V17.2169C24.0801 15.5579 22.7352 14.213 21.0762 14.213C19.4172 14.213 18.0724 15.5579 18.0724 17.2169V20.1778C18.0724 21.8368 19.4172 23.1817 21.0762 23.1817C22.7352 23.1817 24.0801 21.8368 24.0801 20.1778ZM21.0762 12.7969C18.6351 12.7969 16.6562 14.7758 16.6562 17.2169V20.1778C16.6562 22.6189 18.6351 24.5978 21.0762 24.5978C23.5173 24.5978 25.4962 22.6189 25.4962 20.1778V17.2169C25.4962 14.7758 23.5173 12.7969 21.0762 12.7969Z" fill="white"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.875 19.9882C14.875 18.7348 15.892 17.7187 17.147 17.7188C18.0957 17.7188 19.2682 17.7188 20.5193 17.7188C22.002 17.7188 23.6005 17.7188 24.8537 17.7188C26.1087 17.7187 27.125 18.7348 27.125 19.9882V25.3079C27.125 26.5612 26.1084 27.5773 24.8534 27.5773C23.8341 27.5773 22.5655 27.5773 21.2485 27.5773C19.8117 27.5773 18.3238 27.5773 17.1473 27.5773C15.8923 27.5773 14.875 26.5612 14.875 25.3079V19.9882Z" fill="white"/>
<path d="M24.291 22.6514H23.2031V22.6494H22.3857V24.0107H19.6641V21.2881H22.3857V21.833H23.2031V20.4717H18.8477V24.8271H23.2031V23.4678H24.291V25.915H17.7578V19.3828H24.291V22.6514Z" fill="#501EB6"/>
</g>
<rect x="0.266667" y="0.766667" width="31.4667" height="31.4667" rx="7.2" stroke="#DACDFB" stroke-width="0.533333"/>
<defs>
<filter id="filter0_d_35368_44718" x="-6.04792" y="-3.94792" width="37.8615" height="37.8615" 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 dy="1.6"/>
<feGaussianBlur stdDeviation="2.13333"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.258787 0 0 0 0 0.101222 0 0 0 0 0.515867 0 0 0 1 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_35368_44718"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_35368_44718" result="shape"/>
</filter>
<linearGradient id="paint0_linear_35368_44718" x1="16" y1="-1.78125" x2="15.5313" y2="32.5" gradientUnits="userSpaceOnUse">
<stop stop-color="#501EB6"/>
<stop offset="1" stop-color="#734BC5"/>
</linearGradient>
<clipPath id="clip0_35368_44718">
<rect y="0.5" width="32" height="32" rx="7.46667" fill="white"/>
</clipPath>
<clipPath id="clip1_35368_44718">
<rect width="7" height="7.75258" fill="white" transform="translate(5.1875 5.6875)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,42 @@
<svg width="32" height="33" viewBox="0 0 32 33" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_30567_77798)">
<path d="M32 0.5H0V32.5H32V0.5Z" fill="url(#paint0_linear_30567_77798)"/>
<g filter="url(#filter0_d_30567_77798)">
<path d="M-0.941934 -0.440878L27.5462 -1.28164L-1.78269 28.0473L-0.941934 -0.440878Z" fill="#F8F8F8"/>
</g>
<g clip-path="url(#clip1_30567_77798)">
<path d="M12.1729 6.25476C11.0581 5.84637 9.87613 5.65236 8.68929 5.68293C7.50026 5.65176 6.31606 5.84578 5.19914 6.25476C5.19914 6.25476 5.08412 8.78527 5.57708 10.2148C5.82821 10.9464 6.23676 11.6139 6.77393 12.1704C7.31109 12.7269 7.96379 13.1587 8.686 13.4355C9.40821 13.1587 10.0609 12.7269 10.5981 12.1704C11.1352 11.6139 11.5438 10.9464 11.7949 10.2148C12.2945 8.78527 12.1729 6.25476 12.1729 6.25476Z" fill="#FF0000"/>
<path d="M11.0063 8.44379V9.83721H9.37956V11.464H7.98614V9.83721H6.35938V8.44379H7.98614V6.82031H9.37956V8.44379H11.0063Z" fill="white"/>
</g>
<mask id="mask0_30567_77798" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="16" y="12" width="10" height="6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.1016 12.5H25.714V17.9928L20.9401 17.4231L16.1016 17.9928V12.5Z" fill="white"/>
</mask>
<g mask="url(#mask0_30567_77798)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.0801 20.1778V17.2169C24.0801 15.5579 22.7352 14.213 21.0762 14.213C19.4172 14.213 18.0724 15.5579 18.0724 17.2169V20.1778C18.0724 21.8368 19.4172 23.1817 21.0762 23.1817C22.7352 23.1817 24.0801 21.8368 24.0801 20.1778ZM21.0762 12.7969C18.6351 12.7969 16.6562 14.7758 16.6562 17.2169V20.1778C16.6562 22.6189 18.6351 24.5978 21.0762 24.5978C23.5173 24.5978 25.4962 22.6189 25.4962 20.1778V17.2169C25.4962 14.7758 23.5173 12.7969 21.0762 12.7969Z" fill="white"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.875 19.9882C14.875 18.7348 15.892 17.7187 17.147 17.7188C18.0957 17.7188 19.2682 17.7188 20.5193 17.7188C22.002 17.7188 23.6005 17.7188 24.8537 17.7188C26.1087 17.7187 27.125 18.7348 27.125 19.9882V25.3079C27.125 26.5612 26.1084 27.5773 24.8534 27.5773C23.8341 27.5773 22.5655 27.5773 21.2485 27.5773C19.8117 27.5773 18.3238 27.5773 17.1473 27.5773C15.8923 27.5773 14.875 26.5612 14.875 25.3079V19.9882Z" fill="white"/>
<path d="M24.291 22.6514H23.2031V22.6494H22.3857V24.0107H19.6641V21.2881H22.3857V21.833H23.2031V20.4717H18.8477V24.8271H23.2031V23.4678H24.291V25.915H17.7578V19.3828H24.291V22.6514Z" fill="#501EB6"/>
</g>
<defs>
<filter id="filter0_d_30567_77798" x="-6.04792" y="-3.94792" width="37.8615" height="37.8615" 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 dy="1.6"/>
<feGaussianBlur stdDeviation="2.13333"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.258787 0 0 0 0 0.101222 0 0 0 0 0.515867 0 0 0 1 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_30567_77798"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_30567_77798" result="shape"/>
</filter>
<linearGradient id="paint0_linear_30567_77798" x1="16" y1="-1.78125" x2="15.5313" y2="32.5" gradientUnits="userSpaceOnUse">
<stop stop-color="#501EB6"/>
<stop offset="1" stop-color="#734BC5"/>
</linearGradient>
<clipPath id="clip0_30567_77798">
<rect y="0.5" width="32" height="32" rx="7.46667" fill="white"/>
</clipPath>
<clipPath id="clip1_30567_77798">
<rect width="7" height="7.75258" fill="white" transform="translate(5.1875 5.6875)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -0,0 +1,10 @@
<svg width="170" height="33" viewBox="0 0 170 33" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M49.1031 26.3631C47.8017 26.3631 46.6354 26.1173 45.604 25.6257C44.5973 25.1095 43.7993 24.4212 43.2099 23.5609C42.6452 22.7006 42.3628 21.7296 42.3628 20.648C42.3628 19.3207 42.7066 18.276 43.3941 17.514C44.0816 16.7274 45.1989 16.162 46.7459 15.8179C48.2928 15.4737 50.3677 15.3017 52.9705 15.3017H54.2597V14.5274C54.2597 13.2983 53.9896 12.4134 53.4494 11.8726C52.9092 11.3318 52.0006 11.0615 50.7238 11.0615C49.717 11.0615 48.6857 11.2212 47.6298 11.5408C46.574 11.8358 45.5058 12.3028 44.4254 12.9419L43.0994 9.80782C43.7379 9.36536 44.4868 8.98436 45.3462 8.6648C46.2302 8.32067 47.151 8.06257 48.1087 7.8905C49.0909 7.69386 50.0117 7.59553 50.8711 7.59553C53.4985 7.59553 55.4506 8.21006 56.7275 9.43911C58.0043 10.6436 58.6427 12.524 58.6427 15.0804V25.9944H54.3333V23.1184C53.9159 24.1263 53.2529 24.9251 52.3444 25.5151C51.4359 26.0804 50.3554 26.3631 49.1031 26.3631ZM50.0608 23.1922C51.264 23.1922 52.2584 22.7743 53.0442 21.9385C53.8545 21.1028 54.2597 20.0458 54.2597 18.7676V17.9564H53.0074C50.6992 17.9564 49.0909 18.1408 48.1823 18.5095C47.2983 18.8536 46.8564 19.4927 46.8564 20.4268C46.8564 21.238 47.1387 21.9017 47.7035 22.4179C48.2683 22.9341 49.054 23.1922 50.0608 23.1922Z" fill="white"/>
<path d="M71.7137 33C70.0439 33 68.4724 32.8034 66.9991 32.4101C65.5504 32.0413 64.2735 31.4637 63.1685 30.6771L64.4945 27.4693C65.5258 28.1575 66.6308 28.6615 67.8094 28.981C68.9881 29.3251 70.1667 29.4972 71.3453 29.4972C74.6357 29.4972 76.2809 27.9117 76.2809 24.7408V22.2704C75.7652 23.2782 74.9672 24.0771 73.8868 24.667C72.8309 25.257 71.6523 25.552 70.3509 25.552C68.7302 25.552 67.3183 25.1832 66.1151 24.4458C64.9119 23.6838 63.9788 22.6268 63.3159 21.2749C62.6529 19.9229 62.3214 18.3497 62.3214 16.5553C62.3214 14.7609 62.6529 13.2 63.3159 11.8726C63.9788 10.5207 64.9119 9.47598 66.1151 8.73855C67.3183 7.97654 68.7302 7.59553 70.3509 7.59553C71.7014 7.59553 72.9046 7.90279 73.9604 8.51732C75.0163 9.10726 75.7898 9.90615 76.2809 10.914V7.96425H80.7744V24.1877C80.7744 27.1129 80.001 29.3128 78.454 30.7877C76.907 32.2626 74.6603 33 71.7137 33ZM71.6032 22.0492C73.0273 22.0492 74.1569 21.5575 74.9917 20.5743C75.8266 19.5911 76.2441 18.2514 76.2441 16.5553C76.2441 14.8592 75.8266 13.5318 74.9917 12.5732C74.1569 11.5899 73.0273 11.0983 71.6032 11.0983C70.179 11.0983 69.0494 11.5899 68.2146 12.5732C67.3797 13.5318 66.9623 14.8592 66.9623 16.5553C66.9623 18.2514 67.3797 19.5911 68.2146 20.5743C69.0494 21.5575 70.179 22.0492 71.6032 22.0492Z" fill="white"/>
<path d="M93.7585 26.3631C91.8923 26.3631 90.2717 25.9821 88.8966 25.2201C87.5215 24.4581 86.4534 23.3765 85.6922 21.9754C84.931 20.5497 84.5503 18.8782 84.5503 16.9609C84.5503 15.0436 84.931 13.3844 85.6922 11.9832C86.4534 10.5821 87.5215 9.50056 88.8966 8.73855C90.2717 7.97654 91.8923 7.59553 93.7585 7.59553C95.6246 7.59553 97.2453 7.97654 98.6203 8.73855C99.9954 9.50056 101.064 10.5821 101.825 11.9832C102.586 13.3844 102.967 15.0436 102.967 16.9609C102.967 18.8782 102.586 20.5497 101.825 21.9754C101.064 23.3765 99.9954 24.4581 98.6203 25.2201C97.2453 25.9821 95.6246 26.3631 93.7585 26.3631ZM93.7585 22.8603C95.1335 22.8603 96.2385 22.3687 97.0734 21.3855C97.9083 20.3777 98.3257 18.9028 98.3257 16.9609C98.3257 14.9944 97.9083 13.5318 97.0734 12.5732C96.2385 11.5899 95.1335 11.0983 93.7585 11.0983C92.3834 11.0983 91.2784 11.5899 90.4435 12.5732C89.6087 13.5318 89.1912 14.9944 89.1912 16.9609C89.1912 18.9028 89.6087 20.3777 90.4435 21.3855C91.2784 22.3687 92.3834 22.8603 93.7585 22.8603Z" fill="white"/>
<path d="M111.711 25.9944L103.902 7.96425H108.801L113.81 20.5743L119.004 7.96425H123.608L115.689 25.9944H111.711Z" fill="white"/>
<path d="M144.082 26.3631C142.191 26.3631 140.546 25.9821 139.146 25.2201C137.747 24.4335 136.666 23.3274 135.905 21.9017C135.144 20.476 134.763 18.8045 134.763 16.8872C134.763 14.9698 135.144 13.3229 135.905 11.9464C136.666 10.5453 137.747 9.47598 139.146 8.73855C140.546 7.97654 142.191 7.59553 144.082 7.59553C145.236 7.59553 146.378 7.77989 147.507 8.1486C148.637 8.51732 149.57 9.03352 150.307 9.69721L148.944 12.905C148.305 12.3397 147.581 11.9095 146.771 11.6145C145.985 11.3196 145.224 11.1721 144.487 11.1721C142.891 11.1721 141.651 11.676 140.767 12.6838C139.908 13.667 139.478 15.0804 139.478 16.924C139.478 18.743 139.908 20.181 140.767 21.238C141.651 22.2704 142.891 22.7866 144.487 22.7866C145.199 22.7866 145.96 22.6391 146.771 22.3441C147.581 22.0492 148.305 21.6067 148.944 21.0168L150.307 24.2615C149.57 24.9006 148.625 25.4168 147.471 25.8101C146.341 26.1788 145.211 26.3631 144.082 26.3631Z" fill="white"/>
<path d="M153.131 25.9944V0H157.735V10.5821C158.349 9.59888 159.171 8.86145 160.203 8.36983C161.234 7.85363 162.376 7.59553 163.628 7.59553C167.876 7.59553 170 10.0659 170 15.0067V25.9944H165.396V15.2279C165.396 13.8268 165.126 12.8067 164.586 12.1676C164.07 11.5285 163.26 11.2089 162.155 11.2089C160.804 11.2089 159.724 11.6391 158.914 12.4994C158.128 13.3352 157.735 14.4536 157.735 15.8547V25.9944H153.131Z" fill="white"/>
<path d="M124.011 19.6426H130.291V25.9283H124.011V19.6426Z" fill="#9268E9"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.5707 0.974609H0V32.5788H31.5707V0.974609ZM22.3625 16.7768H24.9934V16.7768H31.5706V20.7273H26.3089V27.3116H5.26174V6.24212H26.3089V10.1926V12.8263H22.3625V10.1926H9.20807V23.361H22.3625V16.7768Z" fill="#9268E9"/>
</svg>

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -0,0 +1,10 @@
<svg width="171" height="33" viewBox="0 0 171 33" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M49.155 26.3631C47.8522 26.3631 46.6846 26.1173 45.6522 25.6257C44.6443 25.1095 43.8455 24.4212 43.2555 23.5609C42.6902 22.7006 42.4075 21.7296 42.4075 20.648C42.4075 19.3207 42.7516 18.276 43.4399 17.514C44.1281 16.7274 45.2466 16.162 46.7952 15.8179C48.3438 15.4737 50.4209 15.3017 53.0265 15.3017H54.317V14.5274C54.317 13.2983 54.0466 12.4134 53.5058 11.8726C52.965 11.3318 52.0555 11.0615 50.7773 11.0615C49.7695 11.0615 48.7371 11.2212 47.6801 11.5408C46.6231 11.8358 45.5538 12.3028 44.4723 12.9419L43.1449 9.80782C43.784 9.36536 44.5337 8.98436 45.3941 8.6648C46.279 8.32067 47.2008 8.06257 48.1594 7.8905C49.1427 7.69386 50.0645 7.59553 50.9248 7.59553C53.555 7.59553 55.5091 8.21006 56.7874 9.43911C58.0656 10.6436 58.7047 12.524 58.7047 15.0804V25.9944H54.3907V23.1184C53.9728 24.1263 53.3091 24.9251 52.3996 25.5151C51.4902 26.0804 50.4086 26.3631 49.155 26.3631ZM50.1136 23.1922C51.3181 23.1922 52.3136 22.7743 53.1002 21.9385C53.9114 21.1028 54.317 20.0458 54.317 18.7676V17.9564H53.0633C50.7527 17.9564 49.1427 18.1408 48.2332 18.5095C47.3483 18.8536 46.9058 19.4927 46.9058 20.4268C46.9058 21.238 47.1885 21.9017 47.7538 22.4179C48.3192 22.9341 49.1058 23.1922 50.1136 23.1922Z" fill="#1E1743"/>
<path d="M71.7895 33C70.1179 33 68.5448 32.8034 67.0699 32.4101C65.6196 32.0413 64.3414 31.4637 63.2353 30.6771L64.5626 27.4693C65.595 28.1575 66.7012 28.6615 67.8811 28.981C69.061 29.3251 70.2408 29.4972 71.4207 29.4972C74.7146 29.4972 76.3615 27.9117 76.3615 24.7408V22.2704C75.8453 23.2782 75.0464 24.0771 73.9649 24.667C72.9079 25.257 71.728 25.552 70.4252 25.552C68.8029 25.552 67.3895 25.1832 66.185 24.4458C64.9805 23.6838 64.0464 22.6268 63.3827 21.2749C62.7191 19.9229 62.3872 18.3497 62.3872 16.5553C62.3872 14.7609 62.7191 13.2 63.3827 11.8726C64.0464 10.5207 64.9805 9.47598 66.185 8.73855C67.3895 7.97654 68.8029 7.59553 70.4252 7.59553C71.7772 7.59553 72.9816 7.90279 74.0386 8.51732C75.0956 9.10726 75.8699 9.90615 76.3615 10.914V7.96425H80.8598V24.1877C80.8598 27.1129 80.0855 29.3128 78.5369 30.7877C76.9883 32.2626 74.7392 33 71.7895 33ZM71.6788 22.0492C73.1045 22.0492 74.2353 21.5575 75.071 20.5743C75.9068 19.5911 76.3246 18.2514 76.3246 16.5553C76.3246 14.8592 75.9068 13.5318 75.071 12.5732C74.2353 11.5899 73.1045 11.0983 71.6788 11.0983C70.2531 11.0983 69.1224 11.5899 68.2867 12.5732C67.4509 13.5318 67.033 14.8592 67.033 16.5553C67.033 18.2514 67.4509 19.5911 68.2867 20.5743C69.1224 21.5575 70.2531 22.0492 71.6788 22.0492Z" fill="#1E1743"/>
<path d="M93.8576 26.3631C91.9895 26.3631 90.3671 25.9821 88.9906 25.2201C87.6141 24.4581 86.5448 23.3765 85.7828 21.9754C85.0208 20.5497 84.6398 18.8782 84.6398 16.9609C84.6398 15.0436 85.0208 13.3844 85.7828 11.9832C86.5448 10.5821 87.6141 9.50056 88.9906 8.73855C90.3671 7.97654 91.9895 7.59553 93.8576 7.59553C95.7258 7.59553 97.3481 7.97654 98.7247 8.73855C100.101 9.50056 101.17 10.5821 101.932 11.9832C102.694 13.3844 103.076 15.0436 103.076 16.9609C103.076 18.8782 102.694 20.5497 101.932 21.9754C101.17 23.3765 100.101 24.4581 98.7247 25.2201C97.3481 25.9821 95.7258 26.3631 93.8576 26.3631ZM93.8576 22.8603C95.2342 22.8603 96.3403 22.3687 97.1761 21.3855C98.0118 20.3777 98.4297 18.9028 98.4297 16.9609C98.4297 14.9944 98.0118 13.5318 97.1761 12.5732C96.3403 11.5899 95.2342 11.0983 93.8576 11.0983C92.4811 11.0983 91.3749 11.5899 90.5392 12.5732C89.7034 13.5318 89.2856 14.9944 89.2856 16.9609C89.2856 18.9028 89.7034 20.3777 90.5392 21.3855C91.3749 22.3687 92.4811 22.8603 93.8576 22.8603Z" fill="#1E1743"/>
<path d="M111.829 25.9944L104.012 7.96425H108.916L113.931 20.5743L119.13 7.96425H123.739L115.811 25.9944H111.829Z" fill="#1E1743"/>
<path d="M144.234 26.3631C142.342 26.3631 140.695 25.9821 139.294 25.2201C137.893 24.4335 136.811 23.3274 136.049 21.9017C135.287 20.476 134.906 18.8045 134.906 16.8872C134.906 14.9698 135.287 13.3229 136.049 11.9464C136.811 10.5453 137.893 9.47598 139.294 8.73855C140.695 7.97654 142.342 7.59553 144.234 7.59553C145.39 7.59553 146.533 7.77989 147.664 8.1486C148.794 8.51732 149.728 9.03352 150.466 9.69721L149.102 12.905C148.462 12.3397 147.737 11.9095 146.926 11.6145C146.14 11.3196 145.377 11.1721 144.64 11.1721C143.042 11.1721 141.801 11.676 140.916 12.6838C140.056 13.667 139.626 15.0804 139.626 16.924C139.626 18.743 140.056 20.181 140.916 21.238C141.801 22.2704 143.042 22.7866 144.64 22.7866C145.353 22.7866 146.115 22.6391 146.926 22.3441C147.737 22.0492 148.462 21.6067 149.102 21.0168L150.466 24.2615C149.728 24.9006 148.782 25.4168 147.627 25.8101C146.496 26.1788 145.365 26.3631 144.234 26.3631Z" fill="#1E1743"/>
<path d="M153.293 25.9944V0H157.902V10.5821C158.517 9.59888 159.34 8.86145 160.372 8.36983C161.405 7.85363 162.548 7.59553 163.801 7.59553C168.054 7.59553 170.18 10.0659 170.18 15.0067V25.9944H165.571V15.2279C165.571 13.8268 165.301 12.8067 164.76 12.1676C164.244 11.5285 163.433 11.2089 162.327 11.2089C160.975 11.2089 159.893 11.6391 159.082 12.4994C158.295 13.3352 157.902 14.4536 157.902 15.8547V25.9944H153.293Z" fill="#1E1743"/>
<path d="M123.783 19.4106H130.367V25.9948H123.783V19.4106Z" fill="#501EB6"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.6041 0.974609H0V32.5788H31.6041V0.974609ZM22.3862 16.7774H25.0199V16.7773H31.6041V20.7278H26.3367V27.3121H5.26731V6.24267H26.3367V10.1932V12.8269H22.3862V10.1932H9.21782V23.3616H22.3862V16.7774Z" fill="#501EB6"/>
</svg>

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -0,0 +1,11 @@
<svg width="75" height="75" viewBox="0 0 75 75" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_105136_41005)">
<circle cx="37.5" cy="37.5" r="37.5" fill="#453F4F"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M53.6269 22H22V53.6269H53.6269V41.7581H48.3558V48.3502H27.2712V27.2656H48.3558V31.219V33.8546H44.4025V31.219H31.2246V44.3969H44.4025V37.8079H47.0381V37.8047H53.6269V22Z" fill="#9268E9"/>
</g>
<defs>
<clipPath id="clip0_105136_41005">
<rect width="75" height="75" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 545 B

View File

@ -0,0 +1,11 @@
<svg width="75" height="75" viewBox="0 0 75 75" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_93259_42658)">
<circle cx="37.5" cy="37.5" r="37.5" fill="#EFE8FC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M53.6269 22H22V53.6269H53.6269V41.7581H48.3558V48.3502H27.2712V27.2656H48.3558V31.219V33.8546H44.4025V31.219H31.2246V44.3969H44.4025V37.8079H47.0381V37.8047H53.6269V22Z" fill="#501EB6"/>
</g>
<defs>
<clipPath id="clip0_93259_42658">
<rect width="75" height="75" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 543 B

View File

@ -0,0 +1,15 @@
<svg width="268" height="32" viewBox="0 0 268 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M48.1114 25.4491C46.8258 25.4491 45.6737 25.2065 44.6549 24.7214C43.6604 24.212 42.8721 23.5329 42.29 22.6839C41.7321 21.835 41.4531 20.8769 41.4531 19.8096C41.4531 18.4998 41.7927 17.4689 42.4719 16.717C43.151 15.9408 44.2547 15.3829 45.7828 15.0433C47.3109 14.7037 49.3606 14.5339 51.9317 14.5339H53.2051V13.7699C53.2051 12.5571 52.9383 11.6839 52.4047 11.1502C51.8711 10.6166 50.9736 10.3498 49.7123 10.3498C48.7178 10.3498 47.699 10.5074 46.656 10.8228C45.613 11.1138 44.5579 11.5747 43.4906 12.2054L42.1808 9.11272C42.8115 8.67612 43.5513 8.30015 44.4002 7.98482C45.2734 7.64524 46.183 7.39055 47.129 7.22076C48.0993 7.02671 49.0089 6.92969 49.8578 6.92969C52.4532 6.92969 54.3815 7.53609 55.6429 8.74888C56.9042 9.93742 57.5348 11.793 57.5348 14.3156V25.0853H53.2779V22.2473C52.8655 23.2418 52.2106 24.0301 51.3132 24.6123C50.4157 25.1702 49.3484 25.4491 48.1114 25.4491ZM49.0574 22.3201C50.2459 22.3201 51.2283 21.9077 52.0045 21.083C52.8049 20.2583 53.2051 19.2153 53.2051 17.954V17.1536H51.9681C49.688 17.1536 48.0993 17.3355 47.2018 17.6993C46.3286 18.0389 45.892 18.6696 45.892 19.5913C45.892 20.3917 46.1709 21.0466 46.7288 21.556C47.2867 22.0654 48.0629 22.3201 49.0574 22.3201Z" fill="white"/>
<path d="M70.4466 31.9982C68.7972 31.9982 67.2448 31.8042 65.7894 31.4161C64.3583 31.0522 63.097 30.4822 62.0055 29.706L63.3153 26.5406C64.3341 27.2198 65.4256 27.717 66.5899 28.0324C67.7541 28.3719 68.9184 28.5417 70.0827 28.5417C73.333 28.5417 74.9582 26.9772 74.9582 23.8482V21.4105C74.4488 22.405 73.6605 23.1933 72.5932 23.7754C71.5502 24.3576 70.3859 24.6487 69.1004 24.6487C67.4995 24.6487 66.1047 24.2848 64.9162 23.5571C63.7277 22.8052 62.8059 21.7622 62.151 20.4281C61.4961 19.094 61.1687 17.5417 61.1687 15.771C61.1687 14.0003 61.4961 12.46 62.151 11.1502C62.8059 9.81614 63.7277 8.78527 64.9162 8.05759C66.1047 7.30565 67.4995 6.92969 69.1004 6.92969C70.4344 6.92969 71.623 7.23289 72.666 7.83928C73.709 8.42143 74.473 9.20975 74.9582 10.2042V7.29353H79.397V23.3025C79.397 26.1889 78.6329 28.3598 77.1048 29.8152C75.5767 31.2705 73.3573 31.9982 70.4466 31.9982ZM70.3374 21.1922C71.7442 21.1922 72.86 20.7071 73.6847 19.7368C74.5094 18.7666 74.9218 17.4446 74.9218 15.771C74.9218 14.0973 74.5094 12.7875 73.6847 11.8415C72.86 10.8713 71.7442 10.3862 70.3374 10.3862C68.9306 10.3862 67.8148 10.8713 66.9901 11.8415C66.1654 12.7875 65.753 14.0973 65.753 15.771C65.753 17.4446 66.1654 18.7666 66.9901 19.7368C67.8148 20.7071 68.9306 21.1922 70.3374 21.1922Z" fill="white"/>
<path d="M92.2229 25.4491C90.3794 25.4491 88.7786 25.0731 87.4202 24.3212C86.0619 23.5693 85.0068 22.502 84.2548 21.1194C83.5029 19.7126 83.1269 18.0632 83.1269 16.1712C83.1269 14.2792 83.5029 12.642 84.2548 11.2594C85.0068 9.87678 86.0619 8.80952 87.4202 8.05759C88.7786 7.30565 90.3794 6.92969 92.2229 6.92969C94.0663 6.92969 95.6672 7.30565 97.0256 8.05759C98.3839 8.80952 99.439 9.87678 100.191 11.2594C100.943 12.642 101.319 14.2792 101.319 16.1712C101.319 18.0632 100.943 19.7126 100.191 21.1194C99.439 22.502 98.3839 23.5693 97.0256 24.3212C95.6672 25.0731 94.0663 25.4491 92.2229 25.4491ZM92.2229 21.9926C93.5812 21.9926 94.6727 21.5075 95.4975 20.5373C96.3222 19.5428 96.7345 18.0874 96.7345 16.1712C96.7345 14.2307 96.3222 12.7875 95.4975 11.8415C94.6727 10.8713 93.5812 10.3862 92.2229 10.3862C90.8646 10.3862 89.773 10.8713 88.9483 11.8415C88.1236 12.7875 87.7113 14.2307 87.7113 16.1712C87.7113 18.0874 88.1236 19.5428 88.9483 20.5373C89.773 21.5075 90.8646 21.9926 92.2229 21.9926Z" fill="white"/>
<path d="M109.957 25.0853L102.243 7.29353H107.082L112.031 19.7368L117.161 7.29353H121.709L113.886 25.0853H109.957Z" fill="white"/>
<path d="M131.547 25.1658V7.15653H133.775V10.4242C134.295 9.28546 135.05 8.41903 136.04 7.82491C137.03 7.23079 138.293 6.88422 139.827 6.7852L140.756 6.71094L140.979 8.67896L139.382 8.86462C137.624 9.01315 136.263 9.5949 135.297 10.6099C134.332 11.6001 133.849 12.9368 133.849 14.6202V25.1658H131.547Z" fill="white"/>
<path d="M151.856 25.4629C149.083 25.4629 146.893 24.6459 145.284 23.0121C143.699 21.3535 142.907 19.0884 142.907 16.2169C142.907 14.3602 143.266 12.7264 143.984 11.3154C144.702 9.90433 145.692 8.80274 146.955 8.01058C148.242 7.21842 149.715 6.82234 151.373 6.82234C153.775 6.82234 155.644 7.60212 156.98 9.16168C158.317 10.7212 158.985 12.8626 158.985 15.5856V16.6253H145.135C145.209 18.8533 145.816 20.5737 146.955 21.7867C148.118 22.975 149.727 23.5691 151.782 23.5691C152.896 23.5691 153.935 23.3958 154.901 23.0492C155.891 22.7027 156.857 22.1209 157.797 21.304L158.688 23.0121C157.896 23.7795 156.881 24.386 155.644 24.8316C154.406 25.2524 153.143 25.4629 151.856 25.4629ZM151.41 8.64183C149.529 8.64183 148.056 9.23595 146.992 10.4242C145.952 11.5877 145.345 13.0977 145.172 14.9544H156.943C156.894 12.974 156.399 11.4268 155.458 10.3128C154.517 9.19882 153.168 8.64183 151.41 8.64183Z" fill="white"/>
<path d="M170.955 25.4629C169.197 25.4629 167.687 25.0791 166.425 24.3117C165.162 23.5196 164.184 22.418 163.491 21.007C162.823 19.5712 162.489 17.9126 162.489 16.0312C162.489 13.1844 163.231 10.944 164.717 9.31021C166.227 7.65163 168.306 6.82234 170.955 6.82234C172.044 6.82234 173.121 7.03275 174.185 7.45359C175.25 7.87442 176.141 8.45617 176.859 9.19882L175.968 10.9069C175.2 10.1643 174.383 9.63203 173.517 9.31021C172.651 8.96364 171.821 8.79036 171.029 8.79036C169.024 8.79036 167.477 9.42161 166.388 10.6841C165.323 11.9466 164.791 13.7414 164.791 16.0683C164.791 18.3953 165.323 20.2272 166.388 21.5639C167.477 22.876 169.024 23.532 171.029 23.532C171.821 23.532 172.651 23.3711 173.517 23.0492C174.383 22.7027 175.2 22.1581 175.968 21.4154L176.859 23.1235C176.141 23.8414 175.238 24.4108 174.148 24.8316C173.084 25.2524 172.019 25.4629 170.955 25.4629Z" fill="white"/>
<path d="M187.45 25.4629C185.767 25.4629 184.306 25.0915 183.068 24.3489C181.83 23.5815 180.865 22.5046 180.172 21.1183C179.503 19.7073 179.169 18.0487 179.169 16.1426C179.169 14.2612 179.503 12.6274 180.172 11.2411C180.865 9.83007 181.83 8.74085 183.068 7.97344C184.306 7.20604 185.767 6.82234 187.45 6.82234C189.158 6.82234 190.631 7.20604 191.869 7.97344C193.106 8.74085 194.059 9.83007 194.728 11.2411C195.421 12.6274 195.768 14.2612 195.768 16.1426C195.768 18.0487 195.421 19.7073 194.728 21.1183C194.059 22.5046 193.106 23.5815 191.869 24.3489C190.631 25.0915 189.158 25.4629 187.45 25.4629ZM187.45 23.5691C189.282 23.5691 190.742 22.9255 191.831 21.6382C192.921 20.3262 193.465 18.4943 193.465 16.1426C193.465 13.7909 192.921 11.9714 191.831 10.6841C190.742 9.39685 189.282 8.75322 187.45 8.75322C185.618 8.75322 184.157 9.39685 183.068 10.6841C182.004 11.9714 181.472 13.7909 181.472 16.1426C181.472 18.4943 182.004 20.3262 183.068 21.6382C184.157 22.9255 185.618 23.5691 187.45 23.5691Z" fill="white"/>
<path d="M205.72 25.1658L197.996 7.15653H200.521L206.871 22.6779L213.332 7.15653H215.708L207.985 25.1658H205.72Z" fill="white"/>
<path d="M226.883 25.4629C224.11 25.4629 221.919 24.6459 220.31 23.0121C218.726 21.3535 217.934 19.0884 217.934 16.2169C217.934 14.3602 218.293 12.7264 219.01 11.3154C219.728 9.90433 220.719 8.80274 221.981 8.01058C223.268 7.21842 224.741 6.82234 226.4 6.82234C228.801 6.82234 230.67 7.60212 232.007 9.16168C233.344 10.7212 234.012 12.8626 234.012 15.5856V16.6253H220.162C220.236 18.8533 220.842 20.5737 221.981 21.7867C223.145 22.975 224.754 23.5691 226.808 23.5691C227.922 23.5691 228.962 23.3958 229.927 23.0492C230.918 22.7027 231.883 22.1209 232.824 21.304L233.715 23.0121C232.923 23.7795 231.908 24.386 230.67 24.8316C229.432 25.2524 228.17 25.4629 226.883 25.4629ZM226.437 8.64183C224.556 8.64183 223.083 9.23595 222.018 10.4242C220.978 11.5877 220.372 13.0977 220.199 14.9544H231.97C231.92 12.974 231.425 11.4268 230.484 10.3128C229.544 9.19882 228.195 8.64183 226.437 8.64183Z" fill="white"/>
<path d="M238.629 25.1658V7.15653H240.857V10.4242C241.377 9.28546 242.132 8.41903 243.122 7.82491C244.112 7.23079 245.375 6.88422 246.91 6.7852L247.838 6.71094L248.061 8.67896L246.464 8.86462C244.707 9.01315 243.345 9.5949 242.38 10.6099C241.414 11.6001 240.931 12.9368 240.931 14.6202V25.1658H238.629Z" fill="white"/>
<path d="M254.747 31.8496L257.718 25.0915L250.069 7.15653H252.594L258.943 22.6779L265.367 7.15653H267.818L257.198 31.8496H254.747Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.1862 0H0V31.1862H31.1862V19.4842H25.9888V25.9861H5.198V5.19531H25.9888V9.09359V11.6924H22.0905V9.09359H9.09627V22.0878H22.0905V15.5907H24.6892V15.5859H31.1862V0Z" fill="#9268E9"/>
</svg>

After

Width:  |  Height:  |  Size: 8.4 KiB

View File

@ -0,0 +1,15 @@
<svg width="272" height="33" viewBox="0 0 272 33" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M49.1898 25.8045C47.8861 25.8045 46.7177 25.5586 45.6845 25.0666C44.676 24.55 43.8765 23.8612 43.2862 23.0003C42.7204 22.1393 42.4375 21.1677 42.4375 20.0853C42.4375 18.757 42.7819 17.7116 43.4706 16.949C44.1594 16.1619 45.2787 15.5961 46.8284 15.2517C48.3781 14.9073 50.4567 14.7351 53.0641 14.7351H54.3556V13.9603C54.3556 12.7303 54.085 11.8448 53.5438 11.3036C53.0026 10.7624 52.0925 10.4919 50.8134 10.4919C49.8048 10.4919 48.7717 10.6517 47.7139 10.9715C46.6562 11.2667 45.5861 11.7341 44.5038 12.3737L43.1755 9.23732C43.815 8.79454 44.5653 8.41326 45.4262 8.09348C46.3118 7.7491 47.2342 7.49081 48.1936 7.31862C49.1775 7.12183 50.1 7.02344 50.9609 7.02344C53.593 7.02344 55.5486 7.63841 56.8277 8.86834C58.1069 10.0737 58.7464 11.9555 58.7464 14.5137V25.4356H54.4294V22.5575C54.0112 23.5661 53.347 24.3655 52.4369 24.9559C51.5267 25.5217 50.4444 25.8045 49.1898 25.8045ZM50.1492 22.6313C51.3545 22.6313 52.3508 22.2131 53.1379 21.3768C53.9497 20.5404 54.3556 19.4827 54.3556 18.2035V17.3918H53.101C50.7888 17.3918 49.1775 17.5763 48.2674 17.9453C47.3818 18.2896 46.9391 18.9292 46.9391 19.864C46.9391 20.6757 47.2219 21.3399 47.7877 21.8565C48.3535 22.373 49.1406 22.6313 50.1492 22.6313Z" fill="#1E1743"/>
<path d="M71.8406 32.4462C70.1679 32.4462 68.5936 32.2494 67.1177 31.8558C65.6664 31.4868 64.3872 30.9088 63.2803 30.1216L64.6086 26.9115C65.6418 27.6003 66.7487 28.1045 67.9294 28.4243C69.1102 28.7687 70.2909 28.9409 71.4717 28.9409C74.7679 28.9409 76.416 27.3543 76.416 24.181V21.7089C75.8994 22.7174 75.1 23.5169 74.0176 24.1072C72.9599 24.6976 71.7791 24.9928 70.4754 24.9928C68.8519 24.9928 67.4375 24.6238 66.2321 23.8858C65.0268 23.1233 64.092 22.0655 63.4279 20.7126C62.7637 19.3597 62.4316 17.7854 62.4316 15.9897C62.4316 14.194 62.7637 12.6319 63.4279 11.3036C64.092 9.95068 65.0268 8.90524 66.2321 8.16728C67.4375 7.40472 68.8519 7.02344 70.4754 7.02344C71.8283 7.02344 73.0337 7.33092 74.0914 7.94589C75.1492 8.53626 75.924 9.33572 76.416 10.3443V7.39242H80.9176V23.6276C80.9176 26.5548 80.1427 28.7564 78.593 30.2323C77.0433 31.7082 74.7925 32.4462 71.8406 32.4462ZM71.7299 21.4875C73.1567 21.4875 74.2882 20.9955 75.1246 20.0116C75.9609 19.0276 76.3791 17.687 76.3791 15.9897C76.3791 14.2924 75.9609 12.964 75.1246 12.0047C74.2882 11.0207 73.1567 10.5288 71.7299 10.5288C70.3032 10.5288 69.1717 11.0207 68.3353 12.0047C67.499 12.964 67.0808 14.2924 67.0808 15.9897C67.0808 17.687 67.499 19.0276 68.3353 20.0116C69.1717 20.9955 70.3032 21.4875 71.7299 21.4875Z" fill="#1E1743"/>
<path d="M93.9247 25.8045C92.0552 25.8045 90.4317 25.4233 89.0542 24.6607C87.6766 23.8981 86.6066 22.8158 85.844 21.4137C85.0815 19.987 84.7002 18.3142 84.7002 16.3955C84.7002 14.4768 85.0815 12.8164 85.844 11.4143C86.6066 10.0122 87.6766 8.92984 89.0542 8.16728C90.4317 7.40472 92.0552 7.02344 93.9247 7.02344C95.7942 7.02344 97.4177 7.40472 98.7952 8.16728C100.173 8.92984 101.243 10.0122 102.005 11.4143C102.768 12.8164 103.149 14.4768 103.149 16.3955C103.149 18.3142 102.768 19.987 102.005 21.4137C101.243 22.8158 100.173 23.8981 98.7952 24.6607C97.4177 25.4233 95.7942 25.8045 93.9247 25.8045ZM93.9247 22.2992C95.3022 22.2992 96.4092 21.8073 97.2455 20.8233C98.0819 19.8148 98.5001 18.3388 98.5001 16.3955C98.5001 14.4276 98.0819 12.964 97.2455 12.0047C96.4092 11.0207 95.3022 10.5288 93.9247 10.5288C92.5472 10.5288 91.4402 11.0207 90.6039 12.0047C89.7675 12.964 89.3493 14.4276 89.3493 16.3955C89.3493 18.3388 89.7675 19.8148 90.6039 20.8233C91.4402 21.8073 92.5472 22.2992 93.9247 22.2992Z" fill="#1E1743"/>
<path d="M111.909 25.4356L104.087 7.39242H108.994L114.012 20.0116L119.215 7.39242H123.827L115.894 25.4356H111.909Z" fill="#1E1743"/>
<path d="M133.803 25.5203V7.25657H136.062V10.5704C136.589 9.41559 137.355 8.53692 138.359 7.9344C139.363 7.33189 140.644 6.98042 142.2 6.88L143.142 6.80469L143.368 8.80052L141.748 8.98881C139.966 9.13944 138.585 9.7294 137.606 10.7587C136.627 11.7629 136.137 13.1185 136.137 14.8257V25.5203H133.803Z" fill="black"/>
<path d="M154.399 25.8216C151.587 25.8216 149.365 24.9931 147.734 23.3362C146.127 21.6542 145.323 19.3571 145.323 16.4449C145.323 14.5621 145.688 12.9052 146.416 11.4742C147.144 10.0432 148.148 8.92604 149.428 8.12269C150.734 7.31934 152.227 6.91766 153.909 6.91766C156.345 6.91766 158.24 7.70846 159.596 9.29006C160.951 10.8717 161.629 13.0432 161.629 15.8048V16.8592H147.583C147.658 19.1186 148.273 20.8634 149.428 22.0935C150.608 23.2985 152.24 23.9011 154.324 23.9011C155.453 23.9011 156.508 23.7253 157.487 23.3739C158.491 23.0224 159.47 22.4324 160.424 21.604L161.328 23.3362C160.524 24.1145 159.495 24.7295 158.24 25.1814C156.985 25.6082 155.704 25.8216 154.399 25.8216ZM153.947 8.76286C152.039 8.76286 150.545 9.36538 149.466 10.5704C148.411 11.7503 147.796 13.2817 147.621 15.1646H159.558C159.508 13.1562 159.006 11.5872 158.052 10.4574C157.098 9.32772 155.729 8.76286 153.947 8.76286Z" fill="black"/>
<path d="M173.768 25.8216C171.985 25.8216 170.454 25.4325 169.173 24.6542C167.893 23.8509 166.901 22.7337 166.199 21.3027C165.521 19.8466 165.182 18.1646 165.182 16.2566C165.182 13.3696 165.935 11.0976 167.441 9.44069C168.973 7.75867 171.081 6.91766 173.768 6.91766C174.872 6.91766 175.964 7.13105 177.044 7.55783C178.123 7.98461 179.027 8.57458 179.755 9.32772L178.851 11.06C178.073 10.3068 177.245 9.76706 176.366 9.44069C175.487 9.08923 174.646 8.91349 173.843 8.91349C171.809 8.91349 170.24 9.55366 169.136 10.834C168.056 12.1144 167.517 13.9345 167.517 16.2943C167.517 18.6542 168.056 20.5119 169.136 21.8676C170.24 23.1981 171.809 23.8634 173.843 23.8634C174.646 23.8634 175.487 23.7002 176.366 23.3739C177.245 23.0224 178.073 22.4701 178.851 21.7169L179.755 23.4492C179.027 24.1772 178.111 24.7546 177.006 25.1814C175.927 25.6082 174.847 25.8216 173.768 25.8216Z" fill="black"/>
<path d="M190.496 25.8216C188.789 25.8216 187.307 25.445 186.052 24.6919C184.797 23.9136 183.818 22.8216 183.115 21.4157C182.437 19.9847 182.098 18.3027 182.098 16.3696C182.098 14.4617 182.437 12.8047 183.115 11.3989C183.818 9.9679 184.797 8.86328 186.052 8.08503C187.307 7.30678 188.789 6.91766 190.496 6.91766C192.228 6.91766 193.722 7.30678 194.977 8.08503C196.232 8.86328 197.199 9.9679 197.876 11.3989C198.579 12.8047 198.931 14.4617 198.931 16.3696C198.931 18.3027 198.579 19.9847 197.876 21.4157C197.199 22.8216 196.232 23.9136 194.977 24.6919C193.722 25.445 192.228 25.8216 190.496 25.8216ZM190.496 23.9011C192.353 23.9011 193.835 23.2483 194.939 21.9429C196.044 20.6123 196.596 18.7546 196.596 16.3696C196.596 13.9847 196.044 12.1395 194.939 10.834C193.835 9.52856 192.353 8.87583 190.496 8.87583C188.638 8.87583 187.157 9.52856 186.052 10.834C184.973 12.1395 184.433 13.9847 184.433 16.3696C184.433 18.7546 184.973 20.6123 186.052 21.9429C187.157 23.2483 188.638 23.9011 190.496 23.9011Z" fill="black"/>
<path d="M209.024 25.5203L201.191 7.25657H203.752L210.191 22.9973L216.743 7.25657H219.153L211.321 25.5203H209.024Z" fill="black"/>
<path d="M230.486 25.8216C227.674 25.8216 225.452 24.9931 223.82 23.3362C222.214 21.6542 221.41 19.3571 221.41 16.4449C221.41 14.5621 221.774 12.9052 222.502 11.4742C223.23 10.0432 224.234 8.92604 225.515 8.12269C226.82 7.31934 228.314 6.91766 229.996 6.91766C232.431 6.91766 234.327 7.70846 235.682 9.29006C237.038 10.8717 237.716 13.0432 237.716 15.8048V16.8592H223.67C223.745 19.1186 224.36 20.8634 225.515 22.0935C226.695 23.2985 228.327 23.9011 230.41 23.9011C231.54 23.9011 232.594 23.7253 233.573 23.3739C234.578 23.0224 235.557 22.4324 236.511 21.604L237.415 23.3362C236.611 24.1145 235.582 24.7295 234.327 25.1814C233.071 25.6082 231.791 25.8216 230.486 25.8216ZM230.034 8.76286C228.126 8.76286 226.632 9.36538 225.552 10.5704C224.498 11.7503 223.883 13.2817 223.707 15.1646H235.645C235.594 13.1562 235.092 11.5872 234.138 10.4574C233.184 9.32772 231.816 8.76286 230.034 8.76286Z" fill="black"/>
<path d="M242.398 25.5203V7.25657H244.658V10.5704C245.185 9.41559 245.951 8.53692 246.955 7.9344C247.959 7.33189 249.239 6.98042 250.796 6.88L251.737 6.80469L251.963 8.80052L250.344 8.98881C248.561 9.13944 247.181 9.7294 246.202 10.7587C245.223 11.7629 244.733 13.1185 244.733 14.8257V25.5203H242.398Z" fill="black"/>
<path d="M258.744 32.2986L261.757 25.445L253.999 7.25657H256.56L262.999 22.9973L269.514 7.25657H271.999L261.229 32.2986H258.744Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.6269 0H0V31.6269H31.6269V19.7581H26.3561V26.3502H5.27148V5.26562H26.3561V9.21899V11.8546H22.4027V9.21899H9.22485V22.3969H22.4027V15.8079H25.0391V15.8047H31.6269V0Z" fill="#501EB6"/>
</svg>

After

Width:  |  Height:  |  Size: 8.4 KiB

View File

@ -0,0 +1,16 @@
<svg width="75" height="75" viewBox="0 0 75 75" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_105136_41017)">
<circle cx="37.5" cy="37.5" r="37.5" fill="#453F4F"/>
<path d="M45 26.5H31C29.3431 26.5 28 27.8431 28 29.5V51.5C28 53.1569 29.3431 54.5 31 54.5H45C46.6569 54.5 48 53.1569 48 51.5V29.5C48 27.8431 46.6569 26.5 45 26.5Z" stroke="#EFE8FC" stroke-width="1.5"/>
<path d="M33 33.5V48.5" stroke="#DACDFB" stroke-width="2" stroke-linecap="round"/>
<path d="M38 30.5V51.5" stroke="#DACDFB" stroke-width="2" stroke-linecap="round"/>
<path d="M43 33.5V48.5" stroke="#DACDFB" stroke-width="2" stroke-linecap="round"/>
<path d="M27 26.4V24.6C27 24.5448 27.0448 24.5 27.1 24.5H48.9C48.9552 24.5 49 24.5448 49 24.6V26.4C49 26.4552 48.9552 26.5 48.9 26.5H27.1C27.0448 26.5 27 26.4552 27 26.4Z" stroke="#EFE8FC" stroke-width="1.5" stroke-linecap="round"/>
<path d="M33 24.125L33.8175 22.1221C33.9711 21.7459 34.337 21.5 34.7434 21.5H40.94C41.3257 21.5 41.6771 21.7218 41.8429 22.0701L43 24.5" stroke="#EFE8FC" stroke-width="1.5" stroke-linecap="round"/>
</g>
<defs>
<clipPath id="clip0_105136_41017">
<rect width="75" height="75" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,16 @@
<svg width="75" height="76" viewBox="0 0 75 76" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_93259_42670)">
<circle cx="37.5" cy="38" r="37.5" fill="#EFE8FC"/>
<path d="M45 27H31C29.3431 27 28 28.3431 28 30V52C28 53.6569 29.3431 55 31 55H45C46.6569 55 48 53.6569 48 52V30C48 28.3431 46.6569 27 45 27Z" stroke="#5A5569" stroke-width="1.5"/>
<path d="M33 34V49" stroke="#9268E9" stroke-width="2" stroke-linecap="round"/>
<path d="M38 31V52" stroke="#9268E9" stroke-width="2" stroke-linecap="round"/>
<path d="M43 34V49" stroke="#9268E9" stroke-width="2" stroke-linecap="round"/>
<path d="M27 26.9V25.1C27 25.0448 27.0448 25 27.1 25H48.9C48.9552 25 49 25.0448 49 25.1V26.9C49 26.9552 48.9552 27 48.9 27H27.1C27.0448 27 27 26.9552 27 26.9Z" stroke="#5A5569" stroke-width="1.5" stroke-linecap="round"/>
<path d="M33 24.625L33.8175 22.6221C33.9711 22.2459 34.337 22 34.7434 22H40.94C41.3257 22 41.6771 22.2218 41.8429 22.5701L43 25" stroke="#5A5569" stroke-width="1.5" stroke-linecap="round"/>
</g>
<defs>
<clipPath id="clip0_93259_42670">
<rect width="75" height="75" fill="white" transform="translate(0 0.5)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,3 @@
<svg width="32" height="17" viewBox="0 0 32 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.5 6.5C1.75 9.3125 4.125 11.5 7 11.5C10.0312 11.5 12.5 9.0625 12.5 6V3.5C12.5 2.40625 11.5938 1.5 10.5 1.5C9.375 1.5 8.5 2.40625 8.5 3.5V4C8.5 5.40625 7.375 6.5 6 6.5H1.5ZM0 5.90625C0 5.40625 0.375 5 0.875 5H6C6.53125 5 7 4.5625 7 4V3.5C7 1.59375 8.5625 0 10.5 0C12.0312 0 13.3438 1.03125 13.8125 2.4375L15.75 3.59375C15.9062 3.6875 16 3.84375 16 4.03125C16 4.1875 15.9062 4.34375 15.75 4.4375L14 5.5V6C14 8.9375 12.1875 11.4688 9.625 12.5L10.9062 14.9062C11.0938 15.2812 10.9375 15.7188 10.5938 15.9375C10.2188 16.125 9.78125 15.9688 9.5625 15.625L8.15625 12.9062C7.78125 12.9688 7.375 13 7 13C6.96875 13 6.9375 13 6.90625 13L7.90625 14.9062C8.09375 15.2812 7.9375 15.75 7.59375 15.9375C7.21875 16.125 6.75 15.9688 6.5625 15.625L5.0625 12.75C2.125 11.9062 0 9.21875 0 6V5.90625ZM10.5 4.5C10.0625 4.5 9.75 4.1875 9.75 3.75C9.75 3.34375 10.0625 3 10.5 3C10.9062 3 11.25 3.34375 11.25 3.75C11.25 4.1875 10.9062 4.5 10.5 4.5ZM23.64 2.03125C23.265 1.96875 22.89 2.0625 22.5462 2.21875L20.2337 3.46875C19.89 3.625 19.64 3.90625 19.4525 4.25L18.2962 6.625C18.14 6.96875 18.0775 7.375 18.14 7.75L18.6087 10.3125C18.6712 10.7188 18.8587 11.0625 19.14 11.3125L21.015 13.1562C21.2962 13.4062 21.64 13.5938 22.015 13.625L24.6087 14C24.9837 14.0625 25.3587 13.9688 25.7025 13.8125L28.015 12.5625C28.3587 12.375 28.64 12.0938 28.7962 11.75L29.9525 9.40625C30.1087 9.0625 30.1712 8.65625 30.1087 8.28125L29.64 5.6875C29.5775 5.3125 29.39 4.96875 29.1087 4.71875L27.2337 2.875C26.9525 2.625 26.6087 2.4375 26.2337 2.40625L23.64 2.03125ZM21.8275 0.90625C22.4525 0.5625 23.1712 0.4375 23.8587 0.53125L26.4525 0.90625C27.14 1 27.765 1.3125 28.265 1.8125L30.1712 3.625C30.6712 4.125 31.015 4.75 31.1087 5.4375L31.5775 8.03125C31.7025 8.71875 31.6087 9.4375 31.2962 10.0625L30.14 12.4062C29.8275 13.0625 29.3275 13.5625 28.7337 13.9062L26.4212 15.125C25.7962 15.4688 25.0775 15.5938 24.39 15.5L21.7962 15.125C21.1087 15.0312 20.4837 14.7188 19.9837 14.2188L18.0775 12.4062C17.5775 11.9062 17.265 11.2812 17.14 10.5938L16.6712 8C16.5462 7.3125 16.64 6.59375 16.9525 5.96875L18.1087 3.59375C18.4212 2.96875 18.9212 2.46875 19.515 2.125L21.8275 0.90625ZM25.14 4C25.14 3.46875 25.5775 3 26.14 3C26.6712 3 27.14 3.46875 27.14 4C27.14 4.5625 26.6712 5 26.14 5C25.5775 5 25.14 4.5625 25.14 4ZM25.14 7C25.6712 7 26.14 7.46875 26.14 8C26.14 8.5625 25.6712 9 25.14 9C24.5775 9 24.14 8.5625 24.14 8C24.14 7.46875 24.5775 7 25.14 7ZM22.14 10C22.6712 10 23.14 10.4688 23.14 11C23.14 11.5625 22.6712 12 22.14 12C21.5775 12 21.14 11.5625 21.14 11C21.14 10.4688 21.5775 10 22.14 10ZM21.14 5C21.6712 5 22.14 5.46875 22.14 6C22.14 6.5625 21.6712 7 21.14 7C20.5775 7 20.14 6.5625 20.14 6C20.14 5.46875 20.5775 5 21.14 5ZM26.14 11C26.14 10.4688 26.5775 10 27.14 10C27.6712 10 28.14 10.4688 28.14 11C28.14 11.5625 27.6712 12 27.14 12C26.5775 12 26.14 11.5625 26.14 11Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,3 @@
<svg width="32" height="17" viewBox="0 0 32 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.5 6.5C1.75 9.3125 4.125 11.5 7 11.5C10.0312 11.5 12.5 9.0625 12.5 6V3.5C12.5 2.40625 11.5938 1.5 10.5 1.5C9.375 1.5 8.5 2.40625 8.5 3.5V4C8.5 5.40625 7.375 6.5 6 6.5H1.5ZM0 5.90625C0 5.40625 0.375 5 0.875 5H6C6.53125 5 7 4.5625 7 4V3.5C7 1.59375 8.5625 0 10.5 0C12.0312 0 13.3438 1.03125 13.8125 2.4375L15.75 3.59375C15.9062 3.6875 16 3.84375 16 4.03125C16 4.1875 15.9062 4.34375 15.75 4.4375L14 5.5V6C14 8.9375 12.1875 11.4688 9.625 12.5L10.9062 14.9062C11.0938 15.2812 10.9375 15.7188 10.5938 15.9375C10.2188 16.125 9.78125 15.9688 9.5625 15.625L8.15625 12.9062C7.78125 12.9688 7.375 13 7 13C6.96875 13 6.9375 13 6.90625 13L7.90625 14.9062C8.09375 15.2812 7.9375 15.75 7.59375 15.9375C7.21875 16.125 6.75 15.9688 6.5625 15.625L5.0625 12.75C2.125 11.9062 0 9.21875 0 6V5.90625ZM10.5 4.5C10.0625 4.5 9.75 4.1875 9.75 3.75C9.75 3.34375 10.0625 3 10.5 3C10.9062 3 11.25 3.34375 11.25 3.75C11.25 4.1875 10.9062 4.5 10.5 4.5ZM23.64 2.03125C23.265 1.96875 22.89 2.0625 22.5462 2.21875L20.2337 3.46875C19.89 3.625 19.64 3.90625 19.4525 4.25L18.2962 6.625C18.14 6.96875 18.0775 7.375 18.14 7.75L18.6087 10.3125C18.6712 10.7188 18.8587 11.0625 19.14 11.3125L21.015 13.1562C21.2962 13.4062 21.64 13.5938 22.015 13.625L24.6087 14C24.9837 14.0625 25.3587 13.9688 25.7025 13.8125L28.015 12.5625C28.3587 12.375 28.64 12.0938 28.7962 11.75L29.9525 9.40625C30.1087 9.0625 30.1712 8.65625 30.1087 8.28125L29.64 5.6875C29.5775 5.3125 29.39 4.96875 29.1087 4.71875L27.2337 2.875C26.9525 2.625 26.6087 2.4375 26.2337 2.40625L23.64 2.03125ZM21.8275 0.90625C22.4525 0.5625 23.1712 0.4375 23.8587 0.53125L26.4525 0.90625C27.14 1 27.765 1.3125 28.265 1.8125L30.1712 3.625C30.6712 4.125 31.015 4.75 31.1087 5.4375L31.5775 8.03125C31.7025 8.71875 31.6087 9.4375 31.2962 10.0625L30.14 12.4062C29.8275 13.0625 29.3275 13.5625 28.7337 13.9062L26.4212 15.125C25.7962 15.4688 25.0775 15.5938 24.39 15.5L21.7962 15.125C21.1087 15.0312 20.4837 14.7188 19.9837 14.2188L18.0775 12.4062C17.5775 11.9062 17.265 11.2812 17.14 10.5938L16.6712 8C16.5462 7.3125 16.64 6.59375 16.9525 5.96875L18.1087 3.59375C18.4212 2.96875 18.9212 2.46875 19.515 2.125L21.8275 0.90625ZM25.14 4C25.14 3.46875 25.5775 3 26.14 3C26.6712 3 27.14 3.46875 27.14 4C27.14 4.5625 26.6712 5 26.14 5C25.5775 5 25.14 4.5625 25.14 4ZM25.14 7C25.6712 7 26.14 7.46875 26.14 8C26.14 8.5625 25.6712 9 25.14 9C24.5775 9 24.14 8.5625 24.14 8C24.14 7.46875 24.5775 7 25.14 7ZM22.14 10C22.6712 10 23.14 10.4688 23.14 11C23.14 11.5625 22.6712 12 22.14 12C21.5775 12 21.14 11.5625 21.14 11C21.14 10.4688 21.5775 10 22.14 10ZM21.14 5C21.6712 5 22.14 5.46875 22.14 6C22.14 6.5625 21.6712 7 21.14 7C20.5775 7 20.14 6.5625 20.14 6C20.14 5.46875 20.5775 5 21.14 5ZM26.14 11C26.14 10.4688 26.5775 10 27.14 10C27.6712 10 28.14 10.4688 28.14 11C28.14 11.5625 27.6712 12 27.14 12C26.5775 12 26.14 11.5625 26.14 11Z" fill="#1E1656"/>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,16 @@
<svg width="75" height="75" viewBox="0 0 75 75" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_93006_41068)">
<circle cx="37.5" cy="37.5" r="37.5" fill="#453F4F"/>
<path d="M36.0534 14.7699L16.3042 28.3521C14.686 29.465 15.4736 32 17.4375 32H57.4296C59.4054 32 60.1846 29.44 58.5439 28.3392L38.301 14.757C37.62 14.3001 36.7291 14.3052 36.0534 14.7699Z" fill="#D7D3D3"/>
<rect x="20" y="19" width="35" height="19" rx="2" fill="#C3D3FD"/>
<rect x="15" y="28" width="45" height="30" rx="3" fill="white"/>
<rect x="24" y="22" width="27" height="1" rx="0.5" fill="#9268E9"/>
<rect x="24" y="25" width="27" height="1" rx="0.5" fill="#9268E9"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M37.1824 51.9634C37.6325 52.0039 38 51.6337 38 51.1818C38 50.7299 37.6323 50.3684 37.1831 50.3188C33.5007 49.9124 30.6364 46.7907 30.6364 43C30.6364 38.9332 33.9332 35.6364 38 35.6364C41.7907 35.6364 44.9124 38.5007 45.3188 42.1831C45.328 42.2663 45.3479 42.3466 45.377 42.4224C45.3785 42.4262 45.3759 42.4303 45.3719 42.4305C45.3686 42.4307 45.3661 42.4336 45.3663 42.4369C45.463 44.0967 45.1481 45.0308 44.6989 45.4967C44.4941 45.7091 44.2104 45.8738 43.8164 45.9509C43.3102 46.05 42.91 45.5865 42.91 45.0707L42.91 38.9062C42.91 38.4544 42.5437 38.0881 42.0918 38.0881C41.6399 38.0881 41.2736 38.4544 41.2736 38.9062C41.2736 38.959 41.2104 38.9868 41.1707 38.9519C40.2702 38.16 39.0888 37.6797 37.7953 37.6797C34.9711 37.6797 32.6816 39.9691 32.6816 42.7933C32.6816 45.6175 34.9711 47.907 37.7953 47.907C39.0893 47.907 40.2711 47.4263 41.1718 46.6338C41.211 46.5992 41.2736 46.6267 41.2736 46.679C41.2736 47.0854 41.5699 47.4226 41.9583 47.4863C43.5089 47.8109 44.9144 47.6306 45.8768 46.6326C46.8046 45.6703 47.1042 44.1582 47.0005 42.3523C46.9999 42.3427 46.9917 42.3352 46.982 42.3358C46.9712 42.3364 46.9624 42.3271 46.9634 42.3162C46.9674 42.2727 46.9675 42.228 46.9634 42.1824C46.5503 37.595 42.695 34 38 34C33.0294 34 29 38.0294 29 43C29 47.695 32.595 51.5503 37.1824 51.9634ZM37.7953 46.2706C39.7157 46.2706 41.2725 44.7138 41.2725 42.7933C41.2725 40.8729 39.7157 39.3161 37.7953 39.3161C35.8748 39.3161 34.318 40.8729 34.318 42.7933C34.318 44.7138 35.8748 46.2706 37.7953 46.2706Z" fill="#9268E9"/>
</g>
<defs>
<clipPath id="clip0_93006_41068">
<rect width="75" height="75" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,16 @@
<svg width="75" height="75" viewBox="0 0 75 75" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_93006_40498)">
<circle cx="37.5" cy="37.5" r="37.5" fill="#EFE8FC"/>
<path d="M36.0534 14.7699L16.3042 28.3521C14.686 29.465 15.4736 32 17.4375 32H57.4296C59.4054 32 60.1846 29.44 58.5439 28.3392L38.301 14.757C37.62 14.3001 36.7291 14.3052 36.0534 14.7699Z" fill="#D7D3D3"/>
<rect x="20" y="19" width="35" height="19" rx="2" fill="#C3D3FD"/>
<rect x="15" y="28" width="45" height="30" rx="3" fill="white"/>
<rect x="24" y="22" width="27" height="1" rx="0.5" fill="#9268E9"/>
<rect x="24" y="25" width="27" height="1" rx="0.5" fill="#9268E9"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M37.1824 51.9634C37.6325 52.0039 38 51.6337 38 51.1818C38 50.7299 37.6323 50.3684 37.1831 50.3188C33.5007 49.9124 30.6364 46.7907 30.6364 43C30.6364 38.9332 33.9332 35.6364 38 35.6364C41.7907 35.6364 44.9124 38.5007 45.3188 42.1831C45.328 42.2663 45.3479 42.3466 45.377 42.4224C45.3785 42.4262 45.3759 42.4303 45.3719 42.4305C45.3686 42.4307 45.3661 42.4336 45.3663 42.4369C45.463 44.0967 45.1481 45.0308 44.6989 45.4967C44.4941 45.7091 44.2104 45.8738 43.8164 45.9509C43.3102 46.05 42.91 45.5865 42.91 45.0707L42.91 38.9062C42.91 38.4544 42.5437 38.0881 42.0918 38.0881C41.6399 38.0881 41.2736 38.4544 41.2736 38.9062C41.2736 38.959 41.2104 38.9868 41.1707 38.9519C40.2702 38.16 39.0888 37.6797 37.7953 37.6797C34.9711 37.6797 32.6816 39.9691 32.6816 42.7933C32.6816 45.6175 34.9711 47.907 37.7953 47.907C39.0893 47.907 40.2711 47.4263 41.1718 46.6338C41.211 46.5992 41.2736 46.6267 41.2736 46.679C41.2736 47.0854 41.5699 47.4226 41.9583 47.4863C43.5089 47.8109 44.9144 47.6306 45.8768 46.6326C46.8046 45.6703 47.1042 44.1582 47.0005 42.3523C46.9999 42.3427 46.9917 42.3352 46.982 42.3358C46.9712 42.3364 46.9624 42.3271 46.9634 42.3162C46.9674 42.2727 46.9675 42.228 46.9634 42.1824C46.5503 37.595 42.695 34 38 34C33.0294 34 29 38.0294 29 43C29 47.695 32.595 51.5503 37.1824 51.9634ZM37.7953 46.2706C39.7157 46.2706 41.2725 44.7138 41.2725 42.7933C41.2725 40.8729 39.7157 39.3161 37.7953 39.3161C35.8748 39.3161 34.318 40.8729 34.318 42.7933C34.318 44.7138 35.8748 46.2706 37.7953 46.2706Z" fill="#9268E9"/>
</g>
<defs>
<clipPath id="clip0_93006_40498">
<rect width="75" height="75" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,15 @@
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Solid/Real">
<path id="Rectangle 48" d="M3.98928 17.2085C3.44292 16.8334 3.30409 16.0864 3.67921 15.54L8.17665 8.98935C8.55176 8.44299 9.29877 8.30416 9.84513 8.67928L17.2648 13.7733C17.8111 14.1484 17.9499 14.8954 17.5748 15.4418L13.0774 21.9925C12.7023 22.5388 11.9553 22.6777 11.4089 22.3025L3.98928 17.2085Z" fill="#D5D5D5"/>
<path id="Rectangle 48 (Stroke)" fill-rule="evenodd" clip-rule="evenodd" d="M3.98928 17.2085C3.7161 17.0209 3.79873 16.426 4.17385 15.8796L8.67129 9.32896C9.0464 8.78259 9.57195 8.49172 9.84513 8.67928C9.29877 8.30416 8.55176 8.44299 8.17665 8.98935L3.67921 15.54C3.30409 16.0864 3.44292 16.8334 3.98928 17.2085Z" fill="black"/>
<path id="Union" fill-rule="evenodd" clip-rule="evenodd" d="M40.8991 25.2154C40.8548 25.1815 40.8091 25.1489 40.7619 25.1177L18.5064 10.3995C17.4008 9.6683 15.9077 9.96905 15.1714 11.0712L8.40358 21.2016C7.66727 22.3038 7.96662 23.79 9.07221 24.5211L30.9175 38.9681C33.2302 40.6505 36.3645 41.1185 39.2325 39.9312C43.5872 38.1284 45.6789 33.1922 43.9044 28.9058C43.2615 27.3528 42.1994 26.0983 40.8991 25.2154ZM34.2866 39.0065C34.4263 38.8785 34.5529 38.732 34.6627 38.5676L41.4305 28.4372C41.5476 28.2621 41.6384 28.0772 41.704 27.8872C42.085 28.3718 42.4064 28.9153 42.6533 29.5118C44.1278 33.0736 42.3897 37.1754 38.7712 38.6734C37.2895 39.2868 35.7222 39.3685 34.2866 39.0065Z" fill="url(#paint0_linear_16550_42161)"/>
<path id="Rectangle 3547" d="M25.2066 31.1454C24.8833 30.9324 24.7937 30.4976 25.0067 30.1742L29.7356 22.9937C29.9485 22.6703 30.3833 22.5808 30.7067 22.7938C31.0301 23.0068 31.1196 23.4416 30.9067 23.765L26.1778 30.9455C25.9648 31.2689 25.53 31.3584 25.2066 31.1454Z" fill="#DACDFB"/>
<path id="Rectangle 3548" d="M28.7414 31.7001C28.4376 31.5 28.3536 31.0917 28.5536 30.7879L31.3443 26.5505C31.5443 26.2467 31.9527 26.1627 32.2564 26.3627C32.5601 26.5627 32.6442 26.9711 32.4442 27.2748L29.6535 31.5123C29.4535 31.816 29.0451 31.9001 28.7414 31.7001Z" fill="#DACDFB"/>
</g>
<defs>
<linearGradient id="paint0_linear_16550_42161" x1="22.4795" y1="21.4453" x2="35.4795" y2="42.4453" gradientUnits="userSpaceOnUse">
<stop stop-color="#6939CB"/>
<stop offset="1" stop-color="#9170D3"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,50 @@
<svg width="478" height="328" viewBox="0 0 478 328" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M1.88114 124.609C19.8802 53.5739 158.256 101.985 241.674 53.7092C325.092 5.43365 493.718 53.7091 475.953 132.445C458.188 211.18 378.337 167.502 323.908 264.628C269.48 361.755 62.4149 339.341 81.9381 250.835C101.461 162.329 -16.1179 195.643 1.88114 124.609Z" fill="black"/>
<g clip-path="url(#clip0_20465_28066)">
<path d="M260.475 3.04565H115.515V309.709H260.475V3.04565Z" fill="#2B2931"/>
<path d="M250.85 12.2085H125.319V309.658H250.85V12.2085Z" fill="black"/>
<path d="M249.826 13.2322H126.343V309.658H249.826V13.2322Z" fill="#2B2931"/>
<path d="M248.418 175.782C248.418 179.058 245.781 181.695 242.505 181.695C239.228 181.695 236.592 179.058 236.592 175.782C236.592 172.506 239.228 169.87 242.505 169.87C245.781 169.87 248.418 172.506 248.418 175.782Z" fill="black"/>
<path d="M241.942 178.495C239.92 178.495 238.102 177.753 236.694 176.524C237.078 179.416 239.536 181.669 242.531 181.669C245.807 181.669 248.444 179.033 248.444 175.757C248.444 175.577 248.418 175.424 248.392 175.245C246.933 177.215 244.604 178.495 241.942 178.495Z" fill="#2B2931"/>
<path d="M248.367 175.271C246.549 179.494 239.356 179.75 233.955 176.09C227.3 171.585 224.305 176.781 224.305 175.015C224.305 173.249 227.3 170.638 236.925 173.786C241.891 175.399 248.341 175.271 248.341 175.271H248.367Z" fill="#2B2931"/>
<path d="M233.751 174.937C228.938 171.789 226.174 173.785 224.535 175.372C225.303 175.398 228.324 172.25 233.955 176.089C239.254 179.672 246.242 179.467 248.239 175.526C244.937 177.906 238.205 177.855 233.751 174.937Z" fill="black"/>
</g>
<path d="M326.982 298.781H321.325L318.633 273.735H326.982V298.781Z" fill="#EDC4A6"/>
<path d="M331.156 309.912H326.313L325.449 305.413L323.235 309.912H310.39C309.774 309.912 309.175 309.718 308.679 309.359C308.183 309 307.816 308.495 307.633 307.917C307.45 307.338 307.459 306.717 307.66 306.145C307.861 305.572 308.243 305.078 308.749 304.733L319.007 297.763V293.215L329.796 293.849L331.156 309.912Z" fill="black"/>
<path d="M367.332 291.949L361.887 295.997L343.678 276.927L351.715 270.952L367.332 291.949Z" fill="#EDC4A6"/>
<path d="M375.682 297.769L371.869 300.476L368.512 297.522L369.446 302.197L359.334 309.377C358.849 309.721 358.262 309.908 357.658 309.911C357.054 309.914 356.465 309.732 355.976 309.393C355.488 309.054 355.126 308.574 354.943 308.024C354.761 307.475 354.767 306.883 354.961 306.337L358.889 295.278L356.183 291.804L365.054 286.257L375.682 297.769Z" fill="black"/>
<path d="M334.736 169.379C334.736 169.379 347.348 180.008 341.529 210.309L334.425 239.998L357.593 277.491L350.206 286.258L320.087 245.676L309.173 220.702L306.111 176.253L334.736 169.379Z" fill="#2B2931"/>
<path d="M315.217 227.819L314.459 239.455L316.777 289.041L327.681 287.156L329.765 251.852L315.217 227.819Z" fill="#2B2931"/>
<path d="M305.243 165.483C305.117 166.098 305.125 166.74 305.266 167.35C305.408 167.961 305.678 168.522 306.053 168.981C306.246 169.217 305.906 169.53 305.714 169.297C305.302 168.786 305.004 168.167 304.847 167.493C304.689 166.818 304.677 166.11 304.811 165.429C304.819 165.363 304.848 165.304 304.892 165.262C304.937 165.221 304.993 165.201 305.05 165.206C305.107 165.213 305.16 165.247 305.196 165.298C305.232 165.35 305.249 165.417 305.243 165.483Z" fill="white"/>
<path d="M333.779 106.796C332.872 100.444 331.734 93.6244 327.039 89.0392C325.549 87.5843 323.766 86.4323 321.798 85.6528C319.829 84.8732 317.715 84.4821 315.584 84.5032C313.452 84.5242 311.347 84.957 309.396 85.7753C307.445 86.5936 305.687 87.7805 304.229 89.2645C300.812 92.7434 299.303 97.6285 299.165 102.395C299.027 107.162 303.485 132.755 304.719 137.376C311.25 137.501 314.387 115.403 320.381 112.926C321.88 112.305 323.355 111.603 324.938 111.219C326.522 110.834 327.596 126.961 329.069 127.636H333.939C334.601 128.812 333.939 117.201 333.939 114.418C333.939 111.635 333.968 108.118 333.779 106.796Z" fill="#AE5717"/>
<path d="M303.52 145.117L276.514 145.688C276.099 144.98 275.485 144.406 274.746 144.037C274.007 143.667 273.175 143.518 272.352 143.607C271.529 143.695 270.749 144.018 270.109 144.536C269.468 145.054 268.993 145.745 268.743 146.524C268.493 147.304 268.477 148.138 268.698 148.926C268.919 149.714 269.368 150.421 269.989 150.962C270.61 151.503 271.377 151.854 272.196 151.973C273.016 152.091 273.852 151.972 274.605 151.63C278.186 151.831 306.208 155.757 307.88 153.227C309.577 150.658 318.634 141.595 318.634 141.595L311.672 131.811L303.52 145.117Z" fill="#EDC4A6"/>
<path d="M314.46 113.723C321.376 113.723 326.982 108.116 326.982 101.2C326.982 94.2843 321.376 88.6777 314.46 88.6777C307.544 88.6777 301.937 94.2843 301.937 101.2C301.937 108.116 307.544 113.723 314.46 113.723Z" fill="#EDC4A6"/>
<path d="M313.067 122.767C313.067 121.654 312.14 115.113 311.676 113.026C313.995 111.867 323.319 109.364 324.199 110.244C324.894 110.94 325.59 119.288 326.286 122.071C323.271 122.535 313.067 123.88 313.067 122.767Z" fill="#EDC4A6"/>
<path d="M330.408 126.854C328.949 123.977 328.24 120.424 325.129 119.491C323.029 118.861 314.533 119.805 312.619 120.868C309.435 122.636 312.32 125.95 310.442 129.05C308.399 132.421 302.849 139.186 300.807 142.556C299.403 144.874 304.132 151.676 303.373 154.271C302.614 156.867 302.578 159.781 303.871 162.161C305.028 164.291 303.354 166.175 304.518 168.301C305.728 170.513 307.214 178.781 306.087 181.036L305.333 183.278C312.817 183.713 319.111 174.855 326.549 173.922C328.396 173.691 330.315 173.388 331.837 172.325C334.08 170.761 334.966 167.921 335.52 165.26C338.187 152.251 336.387 138.733 330.408 126.854Z" fill="#DACDFB"/>
<g clip-path="url(#clip1_20465_28066)">
<path d="M291.346 163.056L287.127 167.777L237.458 122.696C236.269 121.618 236.169 119.777 237.233 118.586L237.595 118.18C238.66 116.989 240.487 116.898 241.675 117.977L291.345 163.058L291.346 163.056Z" fill="#9268E9"/>
<path d="M247.731 125.926L237.945 136.877C237.747 137.098 237.405 137.117 237.182 136.915L234.391 134.382C234.17 134.181 234.149 133.836 234.349 133.613L244.135 122.662L247.731 125.926Z" fill="#9268E9"/>
<path d="M246.672 141.245L253.804 133.264C254.092 132.941 254.065 132.443 253.743 132.151L251.312 129.945C250.99 129.653 250.496 129.677 250.208 130L243.076 137.981C242.787 138.303 242.815 138.801 243.136 139.093L245.568 141.3C245.889 141.592 246.384 141.567 246.672 141.245Z" fill="#9268E9"/>
<path d="M244.659 137.039L249.074 132.098L243.489 127.029L239.074 131.97L244.659 137.039Z" fill="#9268E9"/>
<path d="M238.188 123.36C238.213 123.333 247.991 132.17 260.026 143.093C272.067 154.021 281.806 162.898 281.782 162.924C281.758 162.95 271.982 154.114 259.941 143.189C247.904 132.265 238.164 123.386 238.186 123.36L238.188 123.36Z" fill="#1E1656"/>
<path d="M283.058 155.338L278.697 160.217C278.117 160.866 277.122 160.916 276.474 160.328L276.255 160.129C275.608 159.542 275.553 158.539 276.133 157.89L280.493 153.01C281.073 152.362 282.068 152.312 282.716 152.899L282.935 153.099C283.582 153.686 283.637 154.689 283.058 155.338Z" fill="#9268E9"/>
<path d="M277.85 150.614L273.489 155.494C272.909 156.143 271.914 156.192 271.267 155.605L271.048 155.406C270.4 154.818 270.345 153.815 270.925 153.167L275.286 148.287C275.865 147.638 276.861 147.588 277.508 148.176L277.729 148.377C278.377 148.964 278.431 149.967 277.852 150.616L277.85 150.614Z" fill="#9268E9"/>
<path d="M276.061 157.989C276.035 157.965 277.019 156.843 278.258 155.481C279.497 154.118 280.523 153.034 280.549 153.058C280.575 153.083 279.59 154.204 278.351 155.567C277.112 156.927 276.087 158.014 276.063 157.989L276.061 157.989Z" fill="#1E1656"/>
<path d="M278.869 160.012C278.842 159.987 279.776 158.901 280.954 157.585C282.131 156.266 283.105 155.218 283.132 155.242C283.158 155.267 282.225 156.353 281.047 157.671C279.869 158.988 278.896 160.038 278.869 160.014L278.869 160.012Z" fill="#1E1656"/>
<path d="M270.886 153.214C270.86 153.19 271.836 152.058 273.064 150.684C274.291 149.31 275.308 148.216 275.333 148.238C275.36 148.262 274.386 149.393 273.156 150.768C271.929 152.142 270.912 153.236 270.886 153.214Z" fill="#1E1656"/>
<path d="M273.532 155.449C273.506 155.425 274.478 154.31 275.702 152.958C276.927 151.605 277.939 150.528 277.966 150.552C277.992 150.577 277.02 151.691 275.796 153.044C274.571 154.397 273.559 155.474 273.532 155.449Z" fill="#1E1656"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M296.878 159.117L284.422 173.565L298.87 186.021L311.326 171.573L296.878 159.117ZM276.136 174.178L299.483 194.307L319.612 170.96L296.265 150.831L276.136 174.178Z" fill="#9268E9"/>
<path d="M340.371 155.947C339.687 152.908 339.44 139.988 339.44 139.988L327.343 138.011L331.341 153.3L312.136 173.583C312.136 173.583 312.159 173.636 312.202 173.732C311.368 173.482 310.479 173.488 309.649 173.748C308.82 174.007 308.09 174.509 307.555 175.187C307.02 175.865 306.704 176.688 306.649 177.548C306.594 178.407 306.803 179.264 307.248 180.006C307.693 180.748 308.353 181.34 309.142 181.705C309.932 182.07 310.813 182.191 311.672 182.052C312.53 181.913 313.326 181.521 313.954 180.926C314.582 180.331 315.014 179.562 315.193 178.72C315.248 178.761 315.316 178.783 315.386 178.78C315.455 178.778 315.521 178.752 315.573 178.706C317.675 176.708 341.056 158.986 340.371 155.947Z" fill="#EDC4A6"/>
<path d="M343.581 149.591C342.387 144.929 341.184 140.243 339.172 135.829C337.159 131.416 334.278 127.247 330.226 124.265C328.931 123.312 327.482 122.47 325.858 122.174C324.234 121.878 322.404 122.209 321.264 123.319C319.439 125.095 319.988 127.946 320.657 130.317C322.631 137.308 324.605 144.299 326.579 151.291C332.279 150.732 337.979 150.173 343.679 149.614L343.581 149.591Z" fill="#DACDFB"/>
<path d="M327.425 93.4284C328.501 96.2737 328.979 99.3209 329.437 102.343C329.818 104.851 328.789 125.535 327.425 127.636C326.249 129.449 323.4 131.104 321.416 131.81C318.204 132.955 312.802 134.84 309.589 135.985C310.704 134.633 315.766 113.569 316.197 111.869C316.627 110.168 316.675 108.392 316.338 106.67C316.011 105.053 315.237 104.081 314.563 103.392C314.563 103.392 312.372 101.199 311.677 100.504C310.981 99.8079 308.894 98.4165 306.807 97.7208C304.72 97.0251 297.106 94.123 299.514 91.349C301.923 88.575 305.257 86.8495 308.672 85.7142C313.088 84.2462 318.188 83.754 322.127 86.306C324.615 87.9179 326.349 90.583 327.425 93.4284Z" fill="#AE5717"/>
<ellipse cx="243.497" cy="310.608" rx="160.012" ry="0.695706" fill="#453F4F"/>
<defs>
<clipPath id="clip0_20465_28066">
<rect width="151.077" height="309.709" fill="white" transform="translate(112.469)"/>
</clipPath>
<clipPath id="clip1_20465_28066">
<rect width="86.2675" height="64.005" fill="white" transform="translate(257.517 202.153) rotate(-108.894)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -0,0 +1,39 @@
<svg width="491" height="306" viewBox="0 0 491 306" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M138.555 27.9256C160 -56.7081 231.055 79.9259 309.555 59.9254C388.055 39.9248 491.055 84.4252 490.055 132.425C489.055 180.425 400.637 158.136 315.555 263.925C269.748 320.881 202.555 321.925 138.555 248.425C74.5555 174.925 3.05552 201.926 0.0552708 147.426C-2.94498 92.9252 117.111 112.559 138.555 27.9256Z" fill="#453F4F"/>
<path d="M287.142 48.4902H242.383V49.3435H287.142V48.4902Z" fill="#CCCCCC"/>
<path d="M207.428 48.4902H65.4775V49.3435H207.428V48.4902Z" fill="#CCCCCC"/>
<path d="M65.4777 66.4067C75.13 66.4067 82.9548 58.5762 82.9548 48.9167C82.9548 39.2573 75.13 31.4268 65.4777 31.4268C55.8253 31.4268 48.0005 39.2573 48.0005 48.9167C48.0005 58.5762 55.8253 66.4067 65.4777 66.4067Z" fill="#87A6FC"/>
<path d="M145.192 66.4067C154.844 66.4067 162.669 58.5762 162.669 48.9167C162.669 39.2573 154.844 31.4268 145.192 31.4268C135.539 31.4268 127.714 39.2573 127.714 48.9167C127.714 58.5762 135.539 66.4067 145.192 66.4067Z" fill="#3F3D56"/>
<path d="M224.903 66.8337C221.362 66.8337 217.901 65.7829 214.956 63.8142C212.012 61.8455 209.717 59.0472 208.362 55.7734C207.007 52.4995 206.653 48.897 207.344 45.4215C208.034 41.9459 209.74 38.7535 212.243 36.2477C214.747 33.742 217.937 32.0356 221.41 31.3443C224.883 30.653 228.483 31.0078 231.755 32.3638C235.026 33.7199 237.822 36.0164 239.79 38.9628C241.757 41.9092 242.807 45.3732 242.807 48.9169C242.807 53.6687 240.921 58.2259 237.563 61.586C234.206 64.9461 229.652 66.8337 224.903 66.8337ZM224.903 31.8533C221.531 31.8533 218.234 32.8541 215.43 34.729C212.626 36.604 210.441 39.269 209.15 42.3869C207.86 45.5049 207.522 48.9358 208.18 52.2458C208.838 55.5558 210.462 58.5963 212.846 60.9826C215.231 63.369 218.269 64.9942 221.577 65.6526C224.884 66.311 228.313 65.9731 231.428 64.6816C234.544 63.39 237.207 61.203 239.081 58.3969C240.954 55.5908 241.954 52.2917 241.954 48.9169C241.954 44.3913 240.158 40.0511 236.96 36.8511C233.762 33.6511 229.425 31.8533 224.903 31.8533Z" fill="#CCCCCC"/>
<path d="M304.617 66.8337C301.076 66.8337 297.614 65.7829 294.67 63.8142C291.726 61.8455 289.431 59.0472 288.076 55.7734C286.721 52.4995 286.366 48.897 287.057 45.4215C287.748 41.9459 289.453 38.7535 291.957 36.2477C294.461 33.742 297.651 32.0356 301.124 31.3443C304.597 30.653 308.197 31.0078 311.468 32.3638C314.74 33.7199 317.536 36.0164 319.503 38.9628C321.47 41.9092 322.52 45.3732 322.52 48.9169C322.52 53.6687 320.634 58.2259 317.276 61.586C313.919 64.9461 309.365 66.8337 304.617 66.8337ZM304.617 31.8533C301.244 31.8533 297.948 32.8541 295.144 34.729C292.34 36.604 290.154 39.269 288.864 42.3869C287.573 45.5049 287.235 48.9358 287.893 52.2458C288.551 55.5558 290.175 58.5963 292.56 60.9826C294.944 63.369 297.983 64.9942 301.29 65.6526C304.598 66.311 308.026 65.9731 311.142 64.6816C314.257 63.39 316.92 61.203 318.794 58.3969C320.668 55.5908 321.668 52.2917 321.668 48.9169C321.668 46.676 321.227 44.4572 320.37 42.3869C319.513 40.3167 318.257 38.4356 316.674 36.8511C315.09 35.2666 313.21 34.0097 311.142 33.1522C309.073 32.2947 306.856 31.8533 304.617 31.8533Z" fill="#CCCCCC"/>
<path d="M64.1323 54.1317C63.8253 54.1319 63.5265 54.0322 63.2811 53.8477L63.2659 53.8363L60.0581 51.381C59.7581 51.1508 59.5618 50.8108 59.5123 50.4357C59.4628 50.0606 59.5642 49.6813 59.7942 49.381C60.0243 49.0808 60.3641 48.8843 60.7389 48.8348C61.1137 48.7852 61.4928 48.8867 61.7928 49.1169L63.8703 50.7114L68.7797 44.3015C69.0096 44.0014 69.3492 43.805 69.7238 43.7555C70.0985 43.7059 70.4774 43.8073 70.7773 44.0374L70.747 44.0795L70.7782 44.0374C71.0779 44.2678 71.2739 44.6077 71.3232 44.9826C71.3726 45.3575 71.2714 45.7367 71.0416 46.0369L65.2668 53.5727C65.1331 53.7465 64.9611 53.887 64.7643 53.9835C64.5674 54.0799 64.351 54.1297 64.1318 54.1288L64.1323 54.1317Z" fill="white"/>
<path d="M402 76.5L403 68.5H416L416.5 76.5H402Z" fill="#EDC4A6"/>
<path d="M358.509 123.741C358.836 123.89 359.15 124.066 359.449 124.265L389.316 111.509L390.381 103.636L402.315 103.562L401.61 121.621L362.189 132.055C362.106 132.329 362.006 132.598 361.891 132.86C361.321 134.077 360.404 135.098 359.256 135.796C358.108 136.493 356.779 136.835 355.437 136.78C354.095 136.724 352.8 136.273 351.713 135.483C350.627 134.693 349.798 133.599 349.33 132.339C348.863 131.079 348.778 129.709 349.086 128.4C349.394 127.092 350.082 125.904 351.063 124.986C352.043 124.067 353.273 123.459 354.598 123.238C355.923 123.017 357.283 123.192 358.509 123.743L358.509 123.741Z" fill="#EDC4A6"/>
<path d="M406.655 287.378H398.491L394.607 255.866H406.656L406.655 287.378Z" fill="#EDC4A6"/>
<path d="M392.66 285.044H408.404V294.962H382.747C382.747 292.331 383.791 289.807 385.65 287.947C387.509 286.086 390.031 285.041 392.66 285.041V285.044Z" fill="#474656"/>
<path d="M438.405 285.07L430.281 285.87L423.329 254.891L435.32 253.712L438.405 285.07Z" fill="#EDC4A6"/>
<path d="M424.244 284.121L439.91 282.577L440.881 292.448L415.352 294.964C415.095 292.347 415.887 289.734 417.554 287.7C419.221 285.667 421.628 284.38 424.243 284.121H424.244Z" fill="#474656"/>
<path d="M408.927 70.2124C417.96 70.2124 425.282 62.8846 425.282 53.8454C425.282 44.8062 417.96 37.4785 408.927 37.4785C399.895 37.4785 392.572 44.8062 392.572 53.8454C392.572 62.8846 399.895 70.2124 408.927 70.2124Z" fill="#EDC4A6"/>
<path d="M396.666 281.005C395.964 281.007 395.285 280.76 394.747 280.309C394.209 279.858 393.847 279.231 393.726 278.539C389.503 255.07 382.331 183.628 382 181.5C381.993 181.451 381 177.5 380.5 176.5C380 175.5 379.5 174.5 379.5 174.5C378.5 172 377.879 170.169 378 170L377.357 167.179C377.444 167.056 377.558 166.955 377.69 166.882C377.822 166.81 377.969 166.769 378.119 166.763C388.523 166.275 422.591 164.844 424.236 166.902C425.889 168.968 425.302 175.237 425.168 176.471L425.175 176.6L440.482 274.557C440.601 275.339 440.409 276.136 439.946 276.776C439.483 277.417 438.786 277.849 438.007 277.979L428.447 279.555C427.735 279.67 427.006 279.524 426.392 279.146C425.778 278.768 425.32 278.182 425.101 277.494C422.144 268.039 412.23 236.233 408.794 223.925C408.775 223.844 408.727 223.773 408.658 223.726C408.59 223.679 408.506 223.659 408.424 223.671C408.341 223.683 408.266 223.726 408.214 223.79C408.162 223.855 408.135 223.937 408.141 224.02C408.312 235.752 408.727 265.684 408.873 276.023L408.888 277.136C408.895 277.89 408.618 278.619 408.113 279.178C407.609 279.738 406.913 280.088 406.163 280.159L396.945 280.995C396.852 281.003 396.759 281.006 396.666 281.005Z" fill="#474656"/>
<path d="M398.548 76.6486C395.694 78.3467 393.986 81.4664 393.006 84.6468C391.191 90.5251 390.099 96.6027 389.753 102.745L388.717 121.136L375.895 169.896C387.009 179.305 393.418 177.166 408.378 169.47C423.338 161.773 425.047 172.036 425.047 172.036L428.038 130.548L432.312 85.2123C431.352 84.0563 430.266 83.0116 429.074 82.0978C425.124 79.0231 420.528 76.8858 415.632 75.8468C410.737 74.8079 405.669 74.8945 400.812 76.1001L398.548 76.6486Z" fill="#E6E6E6"/>
<path d="M347.083 142.027H197.788C197.055 142.026 196.352 141.734 195.834 141.216C195.315 140.697 195.024 139.994 195.023 139.26V102.199C195.024 101.466 195.315 100.763 195.834 100.244C196.352 99.7253 197.055 99.4335 197.788 99.4326H347.083C347.816 99.4335 348.518 99.7253 349.037 100.244C349.555 100.763 349.846 101.466 349.847 102.199V139.26C349.846 139.994 349.555 140.697 349.037 141.216C348.518 141.734 347.816 142.026 347.083 142.027ZM197.788 100.54C197.348 100.54 196.926 100.715 196.615 101.026C196.304 101.338 196.129 101.76 196.129 102.2V139.261C196.129 139.701 196.304 140.123 196.615 140.434C196.926 140.745 197.348 140.921 197.788 140.921H347.083C347.523 140.921 347.944 140.745 348.255 140.434C348.566 140.123 348.741 139.701 348.742 139.261V102.199C348.741 101.759 348.566 101.337 348.255 101.026C347.944 100.715 347.523 100.539 347.083 100.539L197.788 100.54Z" fill="#53505E"/>
<path d="M246.995 111.794C246.497 111.794 246.02 111.992 245.668 112.344C245.316 112.696 245.118 113.174 245.118 113.672C245.118 114.171 245.316 114.648 245.668 115.001C246.02 115.353 246.497 115.551 246.995 115.551H335.482C335.98 115.551 336.457 115.353 336.809 115.001C337.161 114.648 337.359 114.171 337.359 113.672C337.359 113.174 337.161 112.696 336.809 112.344C336.457 111.992 335.98 111.794 335.482 111.794H246.995Z" fill="#53505E"/>
<path d="M246.995 123.064C246.497 123.064 246.02 123.262 245.668 123.615C245.316 123.967 245.118 124.445 245.118 124.943C245.118 125.441 245.316 125.919 245.668 126.271C246.02 126.623 246.497 126.821 246.995 126.821H285.071C285.569 126.821 286.046 126.623 286.398 126.271C286.75 125.919 286.948 125.441 286.948 124.943C286.948 124.445 286.75 123.967 286.398 123.615C286.046 123.262 285.569 123.064 285.071 123.064H246.995Z" fill="#53505E"/>
<path d="M221.091 130.493C227.311 130.493 232.353 125.447 232.353 119.222C232.353 112.998 227.311 107.952 221.091 107.952C214.871 107.952 209.829 112.998 209.829 119.222C209.829 125.447 214.871 130.493 221.091 130.493Z" fill="#53505E"/>
<path d="M219.321 125.486C218.943 125.486 218.574 125.364 218.272 125.136L218.253 125.122L214.3 122.096C213.93 121.813 213.688 121.393 213.627 120.931C213.565 120.469 213.69 120.001 213.974 119.631C214.257 119.26 214.676 119.018 215.138 118.957C215.6 118.895 216.068 119.02 216.438 119.304L218.998 121.268L225.048 113.37C225.331 113 225.75 112.758 226.211 112.697C226.673 112.636 227.14 112.761 227.51 113.044L227.472 113.096L227.511 113.044C227.88 113.328 228.122 113.747 228.183 114.209C228.243 114.671 228.119 115.138 227.836 115.508L220.72 124.8C220.555 125.014 220.344 125.187 220.101 125.306C219.859 125.425 219.593 125.486 219.323 125.485L219.321 125.486Z" fill="#87A6FC"/>
<path d="M336.915 120.339C336 119.723 335.757 118.483 336.372 117.568L343.748 106.597C344.364 105.682 345.604 105.439 346.519 106.054L358.945 114.409C359.86 115.025 360.103 116.265 359.488 117.18L352.111 128.151C351.496 129.066 350.255 129.309 349.34 128.694L336.915 120.339Z" fill="#D5D5D5"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M336.915 120.339C336.457 120.031 336.585 119.04 337.2 118.125L344.577 107.154C345.192 106.239 346.062 105.747 346.519 106.054C345.604 105.439 344.364 105.682 343.748 106.597L336.372 117.568C335.757 118.483 336 119.723 336.915 120.339Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M398.449 133.064C398.375 133.009 398.298 132.955 398.219 132.904L360.956 108.777C359.105 107.579 356.626 108.103 355.419 109.949L344.323 126.911C343.116 128.757 343.638 131.224 345.489 132.423L382.065 156.105C385.94 158.867 391.162 159.595 395.914 157.573C403.129 154.504 406.53 146.258 403.508 139.156C402.414 136.582 400.626 134.512 398.449 133.064ZM387.671 156.115C387.901 155.9 388.109 155.654 388.289 155.379L399.385 138.416C399.577 138.123 399.725 137.814 399.831 137.497C400.473 138.296 401.016 139.196 401.437 140.184C403.947 146.086 401.122 152.938 395.126 155.488C392.671 156.533 390.065 156.694 387.671 156.115Z" fill="url(#paint0_linear_11277_42944)"/>
<path d="M372.438 143.183C371.896 142.834 371.741 142.112 372.09 141.57L379.841 129.548C380.19 129.007 380.912 128.851 381.453 129.2C381.995 129.549 382.151 130.271 381.802 130.812L374.05 142.835C373.701 143.376 372.979 143.532 372.438 143.183Z" fill="#DACDFB"/>
<path d="M378.327 144.049C377.818 143.721 377.672 143.043 378 142.534L382.574 135.44C382.902 134.931 383.58 134.785 384.089 135.112C384.597 135.44 384.744 136.118 384.416 136.627L379.841 143.722C379.514 144.23 378.836 144.377 378.327 144.049Z" fill="#DACDFB"/>
<path d="M394.383 133.589C394.728 133.718 395.062 133.874 395.382 134.055L424.914 119.262L425.404 111.248L437.586 110.407L438.239 128.675L398.774 141.737C398.452 143.121 397.716 144.374 396.665 145.33C395.614 146.285 394.297 146.898 392.89 147.086C391.483 147.274 390.051 147.029 388.787 146.383C387.522 145.737 386.483 144.721 385.81 143.47C385.136 142.22 384.859 140.793 385.015 139.381C385.171 137.968 385.754 136.637 386.684 135.564C387.615 134.491 388.851 133.727 390.226 133.374C391.601 133.02 393.051 133.095 394.384 133.586L394.383 133.589Z" fill="#EDC4A6"/>
<path d="M432.099 85.4165C439.364 87.9825 440.645 115.786 440.645 115.786C432.097 111.082 421.839 118.78 421.839 118.78C421.839 118.78 419.703 111.509 417.138 102.1C416.364 99.4528 416.271 96.653 416.869 93.9608C417.467 91.2685 418.735 88.7714 420.557 86.7019C420.557 86.7019 424.832 82.849 432.099 85.4165Z" fill="#E6E6E6"/>
<path d="M423.589 58.1724C421.551 56.5411 418.771 59.5052 418.771 59.5052L417.141 44.8264C417.141 44.8264 406.953 46.0479 400.431 44.4184C393.909 42.789 392.891 50.3342 392.891 50.3342C392.555 47.2871 392.487 44.2162 392.688 41.1571C393.095 37.4865 398.393 33.8159 407.767 31.3686C417.14 28.9214 422.031 39.5258 422.031 39.5258C428.555 42.7861 425.629 59.8057 423.589 58.1724Z" fill="#4A4957"/>
<path d="M453 294.963H104.277V295.999H453V294.963Z" fill="#757575"/>
<defs>
<linearGradient id="paint0_linear_11277_42944" x1="367.744" y1="127.09" x2="389.711" y2="161.817" gradientUnits="userSpaceOnUse">
<stop stop-color="#6939CB"/>
<stop offset="1" stop-color="#9170D3"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,39 @@
<svg width="491" height="306" viewBox="0 0 491 306" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M138.555 27.9256C160 -56.7081 231.055 79.9259 309.555 59.9254C388.055 39.9248 491.055 84.4252 490.055 132.425C489.055 180.425 400.637 158.136 315.555 263.925C269.748 320.881 202.555 321.925 138.555 248.425C74.5555 174.925 3.05552 201.926 0.0552708 147.426C-2.94498 92.9252 117.111 112.559 138.555 27.9256Z" fill="white"/>
<path d="M287.142 48.4902H242.383V49.3435H287.142V48.4902Z" fill="#CCCCCC"/>
<path d="M207.428 48.4902H65.4775V49.3435H207.428V48.4902Z" fill="#CCCCCC"/>
<path d="M65.4777 66.4067C75.13 66.4067 82.9548 58.5762 82.9548 48.9167C82.9548 39.2573 75.13 31.4268 65.4777 31.4268C55.8253 31.4268 48.0005 39.2573 48.0005 48.9167C48.0005 58.5762 55.8253 66.4067 65.4777 66.4067Z" fill="#87A6FC"/>
<path d="M145.192 66.4067C154.844 66.4067 162.669 58.5762 162.669 48.9167C162.669 39.2573 154.844 31.4268 145.192 31.4268C135.539 31.4268 127.714 39.2573 127.714 48.9167C127.714 58.5762 135.539 66.4067 145.192 66.4067Z" fill="#3F3D56"/>
<path d="M224.903 66.8337C221.362 66.8337 217.901 65.7829 214.956 63.8142C212.012 61.8455 209.717 59.0472 208.362 55.7734C207.007 52.4995 206.653 48.897 207.344 45.4215C208.034 41.9459 209.74 38.7535 212.243 36.2477C214.747 33.742 217.937 32.0356 221.41 31.3443C224.883 30.653 228.483 31.0078 231.755 32.3638C235.026 33.7199 237.822 36.0164 239.79 38.9628C241.757 41.9092 242.807 45.3732 242.807 48.9169C242.807 53.6687 240.921 58.2259 237.563 61.586C234.206 64.9461 229.652 66.8337 224.903 66.8337ZM224.903 31.8533C221.531 31.8533 218.234 32.8541 215.43 34.729C212.626 36.604 210.441 39.269 209.15 42.3869C207.86 45.5049 207.522 48.9358 208.18 52.2458C208.838 55.5558 210.462 58.5963 212.846 60.9826C215.231 63.369 218.269 64.9942 221.577 65.6526C224.884 66.311 228.313 65.9731 231.428 64.6816C234.544 63.39 237.207 61.203 239.081 58.3969C240.954 55.5908 241.954 52.2917 241.954 48.9169C241.954 44.3913 240.158 40.0511 236.96 36.8511C233.762 33.6511 229.425 31.8533 224.903 31.8533Z" fill="#CCCCCC"/>
<path d="M304.617 66.8337C301.076 66.8337 297.614 65.7829 294.67 63.8142C291.726 61.8455 289.431 59.0472 288.076 55.7734C286.721 52.4995 286.366 48.897 287.057 45.4215C287.748 41.9459 289.453 38.7535 291.957 36.2477C294.461 33.742 297.651 32.0356 301.124 31.3443C304.597 30.653 308.197 31.0078 311.468 32.3638C314.74 33.7199 317.536 36.0164 319.503 38.9628C321.47 41.9092 322.52 45.3732 322.52 48.9169C322.52 53.6687 320.634 58.2259 317.276 61.586C313.919 64.9461 309.365 66.8337 304.617 66.8337ZM304.617 31.8533C301.244 31.8533 297.948 32.8541 295.144 34.729C292.34 36.604 290.154 39.269 288.864 42.3869C287.573 45.5049 287.235 48.9358 287.893 52.2458C288.551 55.5558 290.175 58.5963 292.56 60.9826C294.944 63.369 297.983 64.9942 301.29 65.6526C304.598 66.311 308.026 65.9731 311.142 64.6816C314.257 63.39 316.92 61.203 318.794 58.3969C320.668 55.5908 321.668 52.2917 321.668 48.9169C321.668 46.676 321.227 44.4572 320.37 42.3869C319.513 40.3167 318.257 38.4356 316.674 36.8511C315.09 35.2666 313.21 34.0097 311.142 33.1522C309.073 32.2947 306.856 31.8533 304.617 31.8533Z" fill="#CCCCCC"/>
<path d="M64.1323 54.1317C63.8253 54.1319 63.5265 54.0322 63.2811 53.8477L63.2659 53.8363L60.0581 51.381C59.7581 51.1508 59.5618 50.8108 59.5123 50.4357C59.4628 50.0606 59.5642 49.6813 59.7942 49.381C60.0243 49.0808 60.3641 48.8843 60.7389 48.8348C61.1137 48.7852 61.4928 48.8867 61.7928 49.1169L63.8703 50.7114L68.7797 44.3015C69.0096 44.0014 69.3492 43.805 69.7238 43.7555C70.0985 43.7059 70.4774 43.8073 70.7773 44.0374L70.747 44.0795L70.7782 44.0374C71.0779 44.2678 71.2739 44.6077 71.3232 44.9826C71.3726 45.3575 71.2714 45.7367 71.0416 46.0369L65.2668 53.5727C65.1331 53.7465 64.9611 53.887 64.7643 53.9835C64.5674 54.0799 64.351 54.1297 64.1318 54.1288L64.1323 54.1317Z" fill="white"/>
<path d="M402 76.5L403 68.5H416L416.5 76.5H402Z" fill="#EDC4A6"/>
<path d="M358.509 123.741C358.836 123.89 359.15 124.066 359.449 124.265L389.316 111.509L390.381 103.636L402.315 103.562L401.61 121.621L362.189 132.055C362.106 132.329 362.006 132.598 361.891 132.86C361.321 134.077 360.404 135.098 359.256 135.796C358.108 136.493 356.779 136.835 355.437 136.78C354.095 136.724 352.8 136.273 351.713 135.483C350.627 134.693 349.798 133.599 349.33 132.339C348.863 131.079 348.778 129.709 349.086 128.4C349.394 127.092 350.082 125.904 351.063 124.986C352.043 124.067 353.273 123.459 354.598 123.238C355.923 123.017 357.283 123.192 358.509 123.743L358.509 123.741Z" fill="#EDC4A6"/>
<path d="M406.655 287.378H398.491L394.607 255.866H406.656L406.655 287.378Z" fill="#EDC4A6"/>
<path d="M392.66 285.044H408.404V294.962H382.747C382.747 292.331 383.791 289.807 385.65 287.947C387.509 286.086 390.031 285.041 392.66 285.041V285.044Z" fill="#2F2E41"/>
<path d="M438.405 285.07L430.281 285.87L423.329 254.891L435.32 253.712L438.405 285.07Z" fill="#EDC4A6"/>
<path d="M424.244 284.121L439.91 282.577L440.881 292.448L415.352 294.964C415.095 292.347 415.887 289.734 417.554 287.7C419.221 285.667 421.628 284.38 424.243 284.121H424.244Z" fill="#2F2E41"/>
<path d="M408.927 70.2124C417.96 70.2124 425.282 62.8846 425.282 53.8454C425.282 44.8062 417.96 37.4785 408.927 37.4785C399.895 37.4785 392.572 44.8062 392.572 53.8454C392.572 62.8846 399.895 70.2124 408.927 70.2124Z" fill="#EDC4A6"/>
<path d="M396.666 281.005C395.964 281.007 395.285 280.76 394.747 280.309C394.209 279.858 393.847 279.231 393.726 278.539C389.503 255.07 382.331 183.628 382 181.5C381.993 181.451 381 177.5 380.5 176.5C380 175.5 379.5 174.5 379.5 174.5C378.5 172 377.879 170.169 378 170L377.357 167.179C377.444 167.056 377.558 166.955 377.69 166.882C377.822 166.81 377.969 166.769 378.119 166.763C388.523 166.275 422.591 164.844 424.236 166.902C425.889 168.968 425.302 175.237 425.168 176.471L425.175 176.6L440.482 274.557C440.601 275.339 440.409 276.136 439.946 276.776C439.483 277.417 438.786 277.849 438.007 277.979L428.447 279.555C427.735 279.67 427.006 279.524 426.392 279.146C425.778 278.768 425.32 278.182 425.101 277.494C422.144 268.039 412.23 236.233 408.794 223.925C408.775 223.844 408.727 223.773 408.658 223.726C408.59 223.679 408.506 223.659 408.424 223.671C408.341 223.683 408.266 223.726 408.214 223.79C408.162 223.855 408.135 223.937 408.141 224.02C408.312 235.752 408.727 265.684 408.873 276.023L408.888 277.136C408.895 277.89 408.618 278.619 408.113 279.178C407.609 279.738 406.913 280.088 406.163 280.159L396.945 280.995C396.852 281.003 396.759 281.006 396.666 281.005Z" fill="#2F2E41"/>
<path d="M398.548 76.6486C395.694 78.3467 393.986 81.4664 393.006 84.6468C391.191 90.5251 390.099 96.6027 389.753 102.745L388.717 121.136L375.895 169.896C387.009 179.305 393.418 177.166 408.378 169.47C423.338 161.773 425.047 172.036 425.047 172.036L428.038 130.548L432.312 85.2123C431.352 84.0563 430.266 83.0116 429.074 82.0978C425.124 79.0231 420.528 76.8858 415.632 75.8468C410.737 74.8079 405.669 74.8945 400.812 76.1001L398.548 76.6486Z" fill="#E6E6E6"/>
<path d="M347.083 142.027H197.788C197.055 142.026 196.352 141.734 195.834 141.216C195.315 140.697 195.024 139.994 195.023 139.26V102.199C195.024 101.466 195.315 100.763 195.834 100.244C196.352 99.7253 197.055 99.4335 197.788 99.4326H347.083C347.816 99.4335 348.518 99.7253 349.037 100.244C349.555 100.763 349.846 101.466 349.847 102.199V139.26C349.846 139.994 349.555 140.697 349.037 141.216C348.518 141.734 347.816 142.026 347.083 142.027ZM197.788 100.54C197.348 100.54 196.926 100.715 196.615 101.026C196.304 101.338 196.129 101.76 196.129 102.2V139.261C196.129 139.701 196.304 140.123 196.615 140.434C196.926 140.745 197.348 140.921 197.788 140.921H347.083C347.523 140.921 347.944 140.745 348.255 140.434C348.566 140.123 348.741 139.701 348.742 139.261V102.199C348.741 101.759 348.566 101.337 348.255 101.026C347.944 100.715 347.523 100.539 347.083 100.539L197.788 100.54Z" fill="#E6E6E6"/>
<path d="M246.995 111.794C246.497 111.794 246.02 111.992 245.668 112.344C245.316 112.696 245.118 113.174 245.118 113.672C245.118 114.171 245.316 114.648 245.668 115.001C246.02 115.353 246.497 115.551 246.995 115.551H335.482C335.98 115.551 336.457 115.353 336.809 115.001C337.161 114.648 337.359 114.171 337.359 113.672C337.359 113.174 337.161 112.696 336.809 112.344C336.457 111.992 335.98 111.794 335.482 111.794H246.995Z" fill="#E6E6E6"/>
<path d="M246.995 123.064C246.497 123.064 246.02 123.262 245.668 123.615C245.316 123.967 245.118 124.445 245.118 124.943C245.118 125.441 245.316 125.919 245.668 126.271C246.02 126.623 246.497 126.821 246.995 126.821H285.071C285.569 126.821 286.046 126.623 286.398 126.271C286.75 125.919 286.948 125.441 286.948 124.943C286.948 124.445 286.75 123.967 286.398 123.615C286.046 123.262 285.569 123.064 285.071 123.064H246.995Z" fill="#E6E6E6"/>
<path d="M221.091 130.493C227.311 130.493 232.353 125.447 232.353 119.222C232.353 112.998 227.311 107.952 221.091 107.952C214.871 107.952 209.829 112.998 209.829 119.222C209.829 125.447 214.871 130.493 221.091 130.493Z" fill="#E6E6E6"/>
<path d="M219.321 125.486C218.943 125.486 218.574 125.364 218.272 125.136L218.253 125.122L214.3 122.096C213.93 121.813 213.688 121.393 213.627 120.931C213.565 120.469 213.69 120.001 213.974 119.631C214.257 119.26 214.676 119.018 215.138 118.957C215.6 118.895 216.068 119.02 216.438 119.304L218.998 121.268L225.048 113.37C225.331 113 225.75 112.758 226.211 112.697C226.673 112.636 227.14 112.761 227.51 113.044L227.472 113.096L227.511 113.044C227.88 113.328 228.122 113.747 228.183 114.209C228.243 114.671 228.119 115.138 227.836 115.508L220.72 124.8C220.555 125.014 220.344 125.187 220.101 125.306C219.859 125.425 219.593 125.486 219.323 125.485L219.321 125.486Z" fill="#1778D3"/>
<path d="M336.915 120.339C336 119.723 335.757 118.483 336.372 117.568L343.748 106.597C344.364 105.682 345.604 105.439 346.519 106.054L358.945 114.409C359.86 115.025 360.103 116.265 359.488 117.18L352.111 128.151C351.496 129.066 350.255 129.309 349.34 128.694L336.915 120.339Z" fill="#D5D5D5"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M336.915 120.339C336.457 120.031 336.585 119.04 337.2 118.125L344.577 107.154C345.192 106.239 346.062 105.747 346.519 106.054C345.604 105.439 344.364 105.682 343.748 106.597L336.372 117.568C335.757 118.483 336 119.723 336.915 120.339Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M398.449 133.064C398.375 133.009 398.298 132.955 398.219 132.904L360.956 108.777C359.105 107.579 356.626 108.103 355.419 109.949L344.323 126.911C343.116 128.757 343.638 131.224 345.489 132.423L382.065 156.105C385.94 158.867 391.162 159.595 395.914 157.573C403.129 154.504 406.53 146.258 403.508 139.156C402.414 136.582 400.626 134.512 398.449 133.064ZM387.671 156.115C387.901 155.9 388.109 155.654 388.289 155.379L399.385 138.416C399.577 138.123 399.725 137.814 399.831 137.497C400.473 138.296 401.016 139.196 401.437 140.184C403.947 146.086 401.122 152.938 395.126 155.488C392.671 156.533 390.065 156.694 387.671 156.115Z" fill="url(#paint0_linear_5081_42142)"/>
<path d="M372.438 143.183C371.896 142.834 371.741 142.112 372.09 141.57L379.841 129.548C380.19 129.007 380.912 128.851 381.453 129.2C381.995 129.549 382.151 130.271 381.802 130.812L374.05 142.835C373.701 143.376 372.979 143.532 372.438 143.183Z" fill="#DACDFB"/>
<path d="M378.327 144.049C377.818 143.721 377.672 143.043 378 142.534L382.574 135.44C382.902 134.931 383.58 134.785 384.089 135.112C384.597 135.44 384.744 136.118 384.416 136.627L379.841 143.722C379.514 144.23 378.836 144.377 378.327 144.049Z" fill="#DACDFB"/>
<path d="M394.383 133.589C394.728 133.718 395.062 133.874 395.382 134.055L424.914 119.262L425.404 111.248L437.586 110.407L438.239 128.675L398.774 141.737C398.452 143.121 397.716 144.374 396.665 145.33C395.614 146.285 394.297 146.898 392.89 147.086C391.483 147.274 390.051 147.029 388.787 146.383C387.522 145.737 386.483 144.721 385.81 143.47C385.136 142.22 384.859 140.793 385.015 139.381C385.171 137.968 385.754 136.637 386.684 135.564C387.615 134.491 388.851 133.727 390.226 133.374C391.601 133.02 393.051 133.095 394.384 133.586L394.383 133.589Z" fill="#EDC4A6"/>
<path d="M432.099 85.4165C439.364 87.9825 440.645 115.786 440.645 115.786C432.097 111.082 421.839 118.78 421.839 118.78C421.839 118.78 419.703 111.509 417.138 102.1C416.364 99.4528 416.271 96.653 416.869 93.9608C417.467 91.2685 418.735 88.7714 420.557 86.7019C420.557 86.7019 424.832 82.849 432.099 85.4165Z" fill="#E6E6E6"/>
<path d="M423.589 58.1724C421.551 56.5411 418.771 59.5052 418.771 59.5052L417.141 44.8264C417.141 44.8264 406.953 46.0479 400.431 44.4184C393.909 42.789 392.891 50.3342 392.891 50.3342C392.555 47.2871 392.487 44.2162 392.688 41.1571C393.095 37.4865 398.393 33.8159 407.767 31.3686C417.14 28.9214 422.031 39.5258 422.031 39.5258C428.555 42.7861 425.629 59.8057 423.589 58.1724Z" fill="#2F2E41"/>
<path d="M453 294.963H104.277V295.999H453V294.963Z" fill="#757575"/>
<defs>
<linearGradient id="paint0_linear_5081_42142" x1="367.744" y1="127.09" x2="389.711" y2="161.817" gradientUnits="userSpaceOnUse">
<stop stop-color="#6939CB"/>
<stop offset="1" stop-color="#9170D3"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,52 @@
<svg width="320" height="469" viewBox="0 0 320 469" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M199.665 2.0889C269.4 19.7585 221.875 155.602 269.267 237.493C316.659 319.383 269.267 484.924 191.973 467.484C114.678 450.044 157.557 371.654 62.2084 318.222C-33.1406 264.79 -11.1366 61.5147 75.7496 80.6806C162.636 99.8465 129.931 -15.5807 199.665 2.0889Z" fill="white"/>
<g clip-path="url(#clip0_30430_71008)">
<path d="M179.58 59.5938H37.2734V360.644H179.58V59.5938Z" fill="#EFE8FC"/>
<path d="M170.132 68.5938H46.8984V360.599H170.132V68.5938Z" fill="#9268E9"/>
<path d="M169.129 69.5938H47.9062V360.594H169.129V69.5938Z" fill="#EFE8FC"/>
<path d="M167.742 229.163C167.742 232.379 165.154 234.967 161.938 234.967C158.721 234.967 156.133 232.379 156.133 229.163C156.133 225.947 158.721 223.359 161.938 223.359C165.154 223.359 167.742 225.947 167.742 229.163Z" fill="black"/>
<path d="M161.386 231.824C159.401 231.824 157.616 231.095 156.234 229.889C156.611 232.728 159.024 234.939 161.964 234.939C165.18 234.939 167.769 232.351 167.769 229.135C167.769 228.959 167.744 228.809 167.718 228.633C166.286 230.567 163.999 231.824 161.386 231.824Z" fill="#2B2931"/>
<path d="M167.692 228.662C165.908 232.807 158.846 233.058 153.544 229.466C147.01 225.044 144.07 230.144 144.07 228.41C144.07 226.677 147.01 224.114 156.459 227.204C161.334 228.787 167.667 228.662 167.667 228.662H167.692Z" fill="#453F4F"/>
<path d="M153.343 228.33C148.619 225.24 145.905 227.2 144.297 228.757C145.051 228.782 148.016 225.692 153.544 229.461C158.746 232.978 165.606 232.777 167.566 228.908C164.325 231.245 157.716 231.194 153.343 228.33Z" fill="black"/>
<ellipse cx="49" cy="49" rx="49" ry="49" transform="matrix(1 4.47725e-10 2.52295e-06 1 59.3906 83.2031)" fill="#DACDFB"/>
<path d="M131.992 131.461L123.821 131.461L123.821 131.41L117.696 131.41L117.696 141.618L97.2794 141.618L97.2793 121.201L117.696 121.201L117.696 125.285L123.821 125.285L123.821 115.076L91.1543 115.076L91.1544 147.743L123.821 147.743L123.821 137.586L131.992 137.586L131.992 156.001L82.9923 156.001L82.9922 107L131.992 107L131.992 131.461Z" fill="#501EB6"/>
</g>
<path d="M244.868 349.899H239.314L236.672 325.312H244.868V349.899Z" fill="#EDC4A6"/>
<path d="M248.971 360.829H244.217L243.368 356.412L241.195 360.829H228.585C227.98 360.829 227.392 360.639 226.905 360.286C226.418 359.934 226.058 359.438 225.878 358.87C225.699 358.302 225.708 357.693 225.905 357.13C226.102 356.568 226.477 356.083 226.974 355.745L237.044 348.902V344.438L247.636 345.06L248.971 360.829Z" fill="#2F2E41"/>
<path d="M284.487 343.191L279.141 347.165L261.266 328.443L269.155 322.578L284.487 343.191Z" fill="#EDC4A6"/>
<path d="M292.684 348.903L288.942 351.56L285.646 348.661L286.563 353.25L276.636 360.298C276.16 360.636 275.583 360.82 274.99 360.823C274.397 360.825 273.819 360.647 273.34 360.314C272.86 359.981 272.505 359.51 272.326 358.97C272.146 358.431 272.152 357.85 272.343 357.314L276.199 346.458L273.542 343.047L282.251 337.602L292.684 348.903Z" fill="#2F2E41"/>
<path d="M252.484 222.867C252.484 222.867 264.865 233.302 259.153 263.047L252.179 292.193L274.923 329L267.671 337.606L238.104 297.767L227.389 273.25L224.383 229.615L252.484 222.867Z" fill="#2F2E41"/>
<path d="M233.322 280.234L232.578 291.658L234.853 340.336L245.558 338.486L247.604 303.828L233.322 280.234Z" fill="#2F2E41"/>
<path d="M223.53 219.038C223.406 219.642 223.414 220.272 223.553 220.872C223.692 221.471 223.957 222.022 224.325 222.473C224.515 222.704 224.181 223.012 223.993 222.783C223.588 222.282 223.296 221.674 223.141 221.012C222.987 220.35 222.975 219.654 223.106 218.985C223.114 218.921 223.142 218.863 223.186 218.822C223.23 218.781 223.285 218.761 223.341 218.766C223.397 218.774 223.448 218.806 223.484 218.857C223.519 218.908 223.536 218.973 223.53 219.038Z" fill="white"/>
<path d="M251.546 161.432C250.655 155.197 249.538 148.502 244.93 144.001C243.467 142.572 241.717 141.442 239.784 140.676C237.852 139.911 235.776 139.527 233.684 139.548C231.592 139.568 229.525 139.993 227.61 140.796C225.694 141.6 223.969 142.765 222.537 144.222C219.183 147.637 217.701 152.433 217.566 157.112C217.43 161.792 221.807 186.917 223.018 191.453C229.43 191.575 232.509 169.882 238.393 167.45C239.865 166.841 241.313 166.152 242.867 165.774C244.422 165.396 245.476 181.229 246.922 181.891H251.703C252.353 183.045 251.703 171.647 251.703 168.915C251.703 166.183 251.732 162.73 251.546 161.432Z" fill="#AE5717"/>
<path d="M221.837 199.047L195.325 199.607C194.918 198.912 194.315 198.349 193.59 197.987C192.864 197.624 192.048 197.477 191.239 197.564C190.431 197.651 189.666 197.968 189.037 198.477C188.408 198.985 187.942 199.663 187.696 200.429C187.45 201.194 187.435 202.013 187.652 202.786C187.87 203.56 188.31 204.254 188.919 204.785C189.529 205.316 190.282 205.661 191.086 205.777C191.891 205.893 192.712 205.776 193.451 205.44C196.967 205.638 224.476 209.492 226.117 207.008C227.783 204.487 236.674 195.589 236.674 195.589L229.84 185.984L221.837 199.047Z" fill="#EDC4A6"/>
<path d="M232.583 168.228C239.372 168.228 244.876 162.724 244.876 155.934C244.876 149.145 239.372 143.641 232.583 143.641C225.793 143.641 220.289 149.145 220.289 155.934C220.289 162.724 225.793 168.228 232.583 168.228Z" fill="#EDC4A6"/>
<path d="M231.21 177.107C231.21 176.014 230.299 169.594 229.844 167.545C232.12 166.407 241.274 163.949 242.137 164.813C242.82 165.497 243.503 173.692 244.186 176.424C241.227 176.879 231.21 178.2 231.21 177.107Z" fill="#EDC4A6"/>
<path d="M248.238 181.114C246.805 178.291 246.109 174.802 243.056 173.886C240.994 173.268 232.654 174.195 230.775 175.238C227.649 176.974 230.481 180.227 228.637 183.271C226.632 186.58 221.184 193.221 219.179 196.53C217.801 198.805 222.443 205.482 221.698 208.03C220.953 210.579 220.917 213.439 222.187 215.775C223.323 217.866 221.679 219.716 222.822 221.803C224.01 223.974 225.468 232.092 224.362 234.305L223.622 236.506C230.969 236.933 237.148 228.238 244.45 227.322C246.263 227.094 248.146 226.797 249.641 225.754C251.842 224.218 252.713 221.43 253.257 218.818C255.874 206.047 254.108 192.776 248.238 181.114Z" fill="#3F3D56"/>
<g clip-path="url(#clip1_30430_71008)">
<path d="M209.891 216.664L205.749 221.299L156.988 177.043C155.822 175.984 155.723 174.177 156.768 173.008L157.123 172.61C158.168 171.441 159.962 171.351 161.129 172.41L209.889 216.666L209.891 216.664Z" fill="#734BC5"/>
<path d="M167.078 180.211L157.471 190.961C157.277 191.179 156.941 191.197 156.722 190.999L153.982 188.512C153.765 188.315 153.745 187.977 153.941 187.757L163.548 177.007L167.078 180.211Z" fill="#734BC5"/>
<path d="M166.033 195.244L173.035 187.409C173.318 187.093 173.291 186.604 172.975 186.317L170.588 184.151C170.273 183.864 169.787 183.888 169.504 184.205L162.503 192.04C162.22 192.356 162.247 192.846 162.562 193.132L164.949 195.298C165.265 195.585 165.75 195.561 166.033 195.244Z" fill="#734BC5"/>
<path d="M164.056 191.116L168.391 186.266L162.908 181.289L158.573 186.14L164.056 191.116Z" fill="#734BC5"/>
<path d="M157.702 177.683C157.725 177.657 167.325 186.333 179.139 197.055C190.961 207.783 200.521 216.497 200.497 216.523C200.474 216.549 190.877 207.875 179.057 197.149C167.239 186.425 157.678 177.709 157.699 177.684L157.702 177.683Z" fill="#1E1656"/>
<path d="M201.751 209.075L197.47 213.866C196.901 214.503 195.924 214.551 195.288 213.975L195.073 213.779C194.437 213.202 194.383 212.218 194.952 211.581L199.233 206.791C199.802 206.154 200.78 206.105 201.415 206.682L201.63 206.877C202.266 207.454 202.32 208.438 201.751 209.075Z" fill="#734BC5"/>
<path d="M196.639 204.441L192.359 209.231C191.789 209.868 190.812 209.917 190.177 209.34L189.962 209.145C189.326 208.568 189.272 207.584 189.841 206.947L194.122 202.156C194.691 201.519 195.668 201.471 196.304 202.047L196.521 202.244C197.156 202.821 197.21 203.806 196.641 204.442L196.639 204.441Z" fill="#734BC5"/>
<path d="M194.883 211.679C194.857 211.655 195.824 210.554 197.04 209.216C198.256 207.878 199.263 206.814 199.288 206.838C199.314 206.862 198.347 207.963 197.131 209.301C195.915 210.636 194.908 211.703 194.885 211.678L194.883 211.679Z" fill="#1E1656"/>
<path d="M197.64 213.669C197.614 213.645 198.53 212.579 199.687 211.286C200.843 209.992 201.799 208.963 201.825 208.987C201.85 209.011 200.934 210.077 199.778 211.371C198.622 212.663 197.666 213.695 197.64 213.671L197.64 213.669Z" fill="#1E1656"/>
<path d="M189.805 206.999C189.779 206.975 190.737 205.864 191.942 204.515C193.147 203.166 194.145 202.092 194.17 202.114C194.196 202.138 193.24 203.248 192.033 204.598C190.828 205.947 189.83 207.021 189.805 206.999Z" fill="#1E1656"/>
<path d="M192.406 209.186C192.38 209.162 193.334 208.068 194.536 206.74C195.738 205.412 196.733 204.355 196.758 204.379C196.784 204.403 195.83 205.497 194.628 206.825C193.426 208.153 192.432 209.21 192.406 209.186Z" fill="#1E1656"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M215.316 212.785L203.088 226.968L217.271 239.196L229.499 225.013L215.316 212.785ZM194.953 227.57L217.873 247.331L237.633 224.411L214.714 204.65L194.953 227.57Z" fill="#734BC5"/>
<path d="M258.016 209.682C257.344 206.699 257.102 194.016 257.102 194.016L245.226 192.075L249.151 207.084L230.297 226.996C230.297 226.996 230.32 227.048 230.362 227.141C229.544 226.897 228.671 226.902 227.857 227.157C227.043 227.412 226.326 227.904 225.8 228.57C225.275 229.236 224.965 230.043 224.911 230.887C224.857 231.732 225.062 232.573 225.499 233.301C225.936 234.029 226.584 234.611 227.359 234.969C228.134 235.327 228.999 235.446 229.842 235.31C230.685 235.173 231.465 234.788 232.082 234.204C232.699 233.62 233.123 232.865 233.299 232.038C233.353 232.079 233.42 232.1 233.488 232.098C233.556 232.095 233.621 232.07 233.671 232.025C235.735 230.063 258.688 212.666 258.016 209.682Z" fill="#EDC4A6"/>
<path d="M261.164 203.446C259.992 198.87 258.811 194.269 256.836 189.936C254.86 185.603 252.032 181.511 248.054 178.584C246.782 177.648 245.36 176.822 243.766 176.531C242.172 176.24 240.375 176.565 239.255 177.655C237.464 179.399 238.003 182.197 238.66 184.525C240.598 191.388 242.535 198.251 244.473 205.115C250.069 204.566 255.664 204.017 261.26 203.468L261.164 203.446Z" fill="#3F3D56"/>
<path d="M245.302 148.309C246.359 151.103 246.828 154.094 247.278 157.061C247.651 159.523 246.641 179.828 245.302 181.891C244.148 183.67 241.351 185.295 239.404 185.989C236.25 187.113 230.947 188.963 227.793 190.087C228.887 188.76 233.857 168.082 234.279 166.412C234.702 164.742 234.749 162.999 234.418 161.309C234.097 159.721 233.337 158.767 232.676 158.09C232.676 158.09 230.525 155.938 229.842 155.255C229.159 154.572 227.11 153.206 225.061 152.523C223.012 151.84 215.538 148.991 217.903 146.268C220.267 143.545 223.54 141.851 226.893 140.736C231.228 139.295 236.235 138.812 240.101 141.317C242.544 142.9 244.246 145.516 245.302 148.309Z" fill="#AE5717"/>
<ellipse cx="162.912" cy="361.503" rx="157.084" ry="0.682972" fill="#8F8F8F"/>
<defs>
<clipPath id="clip0_30430_71008">
<rect width="148.312" height="304.04" fill="white" transform="translate(34.2812 56.5938)"/>
</clipPath>
<clipPath id="clip1_30430_71008">
<rect width="84.6885" height="62.8334" fill="white" transform="translate(176.68 255.039) rotate(-108.894)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,52 @@
<svg width="320" height="469" viewBox="0 0 320 469" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M199.665 2.0889C269.4 19.7585 221.875 155.602 269.267 237.493C316.659 319.383 269.267 484.924 191.973 467.484C114.678 450.044 157.557 371.654 62.2084 318.222C-33.1406 264.79 -11.1366 61.5147 75.7496 80.6806C162.636 99.8465 129.931 -15.5807 199.665 2.0889Z" fill="#453F4F"/>
<g clip-path="url(#clip0_30567_76873)">
<path d="M179.58 59.5938H37.2734V360.644H179.58V59.5938Z" fill="black"/>
<path d="M170.132 68.5938H46.8984V360.599H170.132V68.5938Z" fill="#453F4F"/>
<path d="M169.129 69.5938H47.9062V360.594H169.129V69.5938Z" fill="black"/>
<path d="M167.742 229.163C167.742 232.379 165.154 234.967 161.938 234.967C158.721 234.967 156.133 232.379 156.133 229.163C156.133 225.947 158.721 223.359 161.938 223.359C165.154 223.359 167.742 225.947 167.742 229.163Z" fill="black"/>
<path d="M161.386 231.824C159.401 231.824 157.616 231.095 156.234 229.889C156.611 232.728 159.024 234.939 161.964 234.939C165.18 234.939 167.769 232.351 167.769 229.135C167.769 228.959 167.744 228.809 167.718 228.633C166.286 230.567 163.999 231.824 161.386 231.824Z" fill="#2B2931"/>
<path d="M167.692 228.662C165.908 232.807 158.846 233.058 153.544 229.466C147.01 225.044 144.07 230.144 144.07 228.41C144.07 226.677 147.01 224.114 156.459 227.204C161.334 228.787 167.667 228.662 167.667 228.662H167.692Z" fill="#453F4F"/>
<path d="M153.343 228.33C148.619 225.24 145.905 227.2 144.297 228.757C145.051 228.782 148.016 225.692 153.544 229.461C158.746 232.978 165.606 232.777 167.566 228.908C164.325 231.245 157.716 231.194 153.343 228.33Z" fill="black"/>
<path d="M108.5 83.502C135.397 83.502 157.201 105.306 157.201 132.203C157.201 159.1 135.397 180.904 108.5 180.904C81.6033 180.904 59.799 159.1 59.799 132.203C59.7989 105.306 81.6031 83.502 108.5 83.502Z" fill="#2B2931" stroke="black" stroke-width="0.597561"/>
<path d="M133 132.169H124.827L124.827 132.117H118.702L118.702 142.326H98.2852L98.2852 121.908H118.702L118.702 125.992H124.827L124.827 115.783H92.1602L92.1603 148.451H124.827L124.827 138.294H133L133 156.704H84.0001L84 107.703H133L133 132.169Z" fill="#9268E9"/>
</g>
<path d="M244.868 349.899H239.314L236.672 325.312H244.868V349.899Z" fill="#EDC4A6"/>
<path d="M248.971 360.829H244.217L243.368 356.412L241.195 360.829H228.585C227.98 360.829 227.392 360.639 226.905 360.286C226.418 359.934 226.058 359.438 225.878 358.87C225.699 358.302 225.708 357.693 225.905 357.13C226.102 356.568 226.477 356.083 226.974 355.745L237.044 348.902V344.438L247.636 345.06L248.971 360.829Z" fill="black"/>
<path d="M284.487 343.191L279.141 347.165L261.266 328.443L269.155 322.578L284.487 343.191Z" fill="#EDC4A6"/>
<path d="M292.684 348.903L288.942 351.56L285.646 348.661L286.563 353.25L276.636 360.298C276.16 360.636 275.583 360.82 274.99 360.823C274.397 360.825 273.819 360.647 273.34 360.314C272.86 359.981 272.505 359.51 272.326 358.97C272.146 358.431 272.152 357.85 272.343 357.314L276.199 346.458L273.542 343.047L282.251 337.602L292.684 348.903Z" fill="black"/>
<path d="M252.484 222.867C252.484 222.867 264.865 233.302 259.153 263.047L252.179 292.193L274.923 329L267.671 337.606L238.104 297.767L227.389 273.25L224.383 229.615L252.484 222.867Z" fill="#3B3F4C"/>
<path d="M233.322 280.234L232.578 291.658L234.853 340.336L245.558 338.486L247.604 303.828L233.322 280.234Z" fill="#3B3F4C"/>
<path d="M223.53 219.038C223.406 219.642 223.414 220.272 223.553 220.872C223.692 221.471 223.957 222.022 224.325 222.473C224.515 222.704 224.181 223.012 223.993 222.783C223.588 222.282 223.296 221.674 223.141 221.012C222.987 220.35 222.975 219.654 223.106 218.985C223.114 218.921 223.142 218.863 223.186 218.822C223.23 218.781 223.285 218.761 223.341 218.766C223.397 218.774 223.448 218.806 223.484 218.857C223.519 218.908 223.536 218.973 223.53 219.038Z" fill="white"/>
<path d="M251.546 161.432C250.655 155.197 249.538 148.502 244.93 144.001C243.467 142.572 241.717 141.442 239.784 140.676C237.852 139.911 235.776 139.527 233.684 139.548C231.592 139.568 229.525 139.993 227.61 140.796C225.694 141.6 223.969 142.765 222.537 144.222C219.183 147.637 217.701 152.433 217.566 157.112C217.43 161.792 221.807 186.917 223.018 191.453C229.43 191.575 232.509 169.882 238.393 167.45C239.865 166.841 241.313 166.152 242.867 165.774C244.422 165.396 245.476 181.229 246.922 181.891H251.703C252.353 183.045 251.703 171.647 251.703 168.915C251.703 166.183 251.732 162.73 251.546 161.432Z" fill="#AE5717"/>
<path d="M221.837 199.047L195.325 199.607C194.918 198.912 194.315 198.349 193.59 197.987C192.864 197.624 192.048 197.477 191.239 197.564C190.431 197.651 189.666 197.968 189.037 198.477C188.408 198.985 187.942 199.663 187.696 200.429C187.45 201.194 187.435 202.013 187.652 202.786C187.87 203.56 188.31 204.254 188.919 204.785C189.529 205.316 190.282 205.661 191.086 205.777C191.891 205.893 192.712 205.776 193.451 205.44C196.967 205.638 224.476 209.492 226.117 207.008C227.783 204.487 236.674 195.589 236.674 195.589L229.84 185.984L221.837 199.047Z" fill="#EDC4A6"/>
<path d="M232.583 168.228C239.372 168.228 244.876 162.724 244.876 155.934C244.876 149.145 239.372 143.641 232.583 143.641C225.793 143.641 220.289 149.145 220.289 155.934C220.289 162.724 225.793 168.228 232.583 168.228Z" fill="#EDC4A6"/>
<path d="M231.21 177.107C231.21 176.014 230.299 169.594 229.844 167.545C232.12 166.407 241.274 163.949 242.137 164.813C242.82 165.497 243.503 173.692 244.186 176.424C241.227 176.879 231.21 178.2 231.21 177.107Z" fill="#EDC4A6"/>
<path d="M248.238 181.114C246.805 178.291 246.109 174.802 243.056 173.886C240.994 173.268 232.654 174.195 230.775 175.238C227.649 176.974 230.481 180.227 228.637 183.271C226.632 186.58 221.184 193.221 219.179 196.53C217.801 198.805 222.443 205.482 221.698 208.03C220.953 210.579 220.917 213.439 222.187 215.775C223.323 217.866 221.679 219.716 222.822 221.803C224.01 223.974 225.468 232.092 224.362 234.305L223.622 236.506C230.969 236.933 237.148 228.238 244.45 227.322C246.263 227.094 248.146 226.797 249.641 225.754C251.842 224.218 252.713 221.43 253.257 218.818C255.874 206.047 254.108 192.776 248.238 181.114Z" fill="#DACDFB"/>
<g clip-path="url(#clip1_30567_76873)">
<path d="M209.891 216.664L205.749 221.299L156.988 177.043C155.822 175.984 155.723 174.177 156.768 173.008L157.123 172.61C158.168 171.441 159.962 171.351 161.129 172.41L209.889 216.666L209.891 216.664Z" fill="#9268E9"/>
<path d="M167.078 180.211L157.471 190.961C157.277 191.179 156.941 191.197 156.722 190.999L153.982 188.512C153.765 188.315 153.745 187.977 153.941 187.757L163.548 177.007L167.078 180.211Z" fill="#9268E9"/>
<path d="M166.033 195.244L173.035 187.409C173.318 187.093 173.291 186.604 172.975 186.317L170.588 184.151C170.273 183.864 169.787 183.888 169.504 184.205L162.503 192.04C162.22 192.356 162.247 192.846 162.562 193.132L164.949 195.298C165.265 195.585 165.75 195.561 166.033 195.244Z" fill="#9268E9"/>
<path d="M164.056 191.116L168.391 186.266L162.908 181.289L158.573 186.14L164.056 191.116Z" fill="#9268E9"/>
<path d="M157.702 177.683C157.725 177.657 167.325 186.333 179.139 197.055C190.961 207.783 200.521 216.497 200.497 216.523C200.474 216.549 190.877 207.875 179.057 197.149C167.239 186.425 157.678 177.709 157.699 177.684L157.702 177.683Z" fill="#1E1656"/>
<path d="M201.751 209.075L197.47 213.866C196.901 214.503 195.924 214.551 195.288 213.975L195.073 213.779C194.437 213.202 194.383 212.218 194.952 211.581L199.233 206.791C199.802 206.154 200.78 206.105 201.415 206.682L201.63 206.877C202.266 207.454 202.32 208.438 201.751 209.075Z" fill="#9268E9"/>
<path d="M196.639 204.441L192.359 209.231C191.789 209.868 190.812 209.917 190.177 209.34L189.962 209.145C189.326 208.568 189.272 207.584 189.841 206.947L194.122 202.156C194.691 201.519 195.668 201.471 196.304 202.047L196.521 202.244C197.156 202.821 197.21 203.806 196.641 204.442L196.639 204.441Z" fill="#9268E9"/>
<path d="M194.883 211.679C194.857 211.655 195.824 210.554 197.04 209.216C198.256 207.878 199.263 206.814 199.288 206.838C199.314 206.862 198.347 207.963 197.131 209.301C195.915 210.636 194.908 211.703 194.885 211.678L194.883 211.679Z" fill="#1E1656"/>
<path d="M197.64 213.669C197.614 213.645 198.53 212.579 199.687 211.286C200.843 209.992 201.799 208.963 201.825 208.987C201.85 209.011 200.934 210.077 199.778 211.371C198.622 212.663 197.666 213.695 197.64 213.671L197.64 213.669Z" fill="#1E1656"/>
<path d="M189.805 206.999C189.779 206.975 190.737 205.864 191.942 204.515C193.147 203.166 194.145 202.092 194.17 202.114C194.196 202.138 193.24 203.248 192.033 204.598C190.828 205.947 189.83 207.021 189.805 206.999Z" fill="#1E1656"/>
<path d="M192.406 209.186C192.38 209.162 193.334 208.068 194.536 206.74C195.738 205.412 196.733 204.355 196.758 204.379C196.784 204.403 195.83 205.497 194.628 206.825C193.426 208.153 192.432 209.21 192.406 209.186Z" fill="#1E1656"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M215.316 212.785L203.088 226.968L217.271 239.196L229.499 225.013L215.316 212.785ZM194.953 227.57L217.873 247.331L237.633 224.411L214.714 204.65L194.953 227.57Z" fill="#9268E9"/>
<path d="M258.016 209.682C257.344 206.699 257.102 194.016 257.102 194.016L245.226 192.075L249.151 207.084L230.297 226.996C230.297 226.996 230.32 227.048 230.362 227.141C229.544 226.897 228.671 226.902 227.857 227.157C227.043 227.412 226.326 227.904 225.8 228.57C225.275 229.236 224.965 230.043 224.911 230.887C224.857 231.732 225.062 232.573 225.499 233.301C225.936 234.029 226.584 234.611 227.359 234.969C228.134 235.327 228.999 235.446 229.842 235.31C230.685 235.173 231.465 234.788 232.082 234.204C232.699 233.62 233.123 232.865 233.299 232.038C233.353 232.079 233.42 232.1 233.488 232.098C233.556 232.095 233.621 232.07 233.671 232.025C235.735 230.063 258.688 212.666 258.016 209.682Z" fill="#EDC4A6"/>
<path d="M261.164 203.446C259.992 198.87 258.811 194.269 256.836 189.936C254.86 185.603 252.032 181.511 248.054 178.584C246.782 177.648 245.36 176.822 243.766 176.531C242.172 176.24 240.375 176.565 239.255 177.655C237.464 179.399 238.003 182.197 238.66 184.525C240.598 191.388 242.535 198.251 244.473 205.115C250.069 204.566 255.664 204.017 261.26 203.468L261.164 203.446Z" fill="#DACDFB"/>
<path d="M245.302 148.309C246.359 151.103 246.828 154.094 247.278 157.061C247.651 159.523 246.641 179.828 245.302 181.891C244.148 183.67 241.351 185.295 239.404 185.989C236.25 187.113 230.947 188.963 227.793 190.087C228.887 188.76 233.857 168.082 234.279 166.412C234.702 164.742 234.749 162.999 234.418 161.309C234.097 159.721 233.337 158.767 232.676 158.09C232.676 158.09 230.525 155.938 229.842 155.255C229.159 154.572 227.11 153.206 225.061 152.523C223.012 151.84 215.538 148.991 217.903 146.268C220.267 143.545 223.54 141.851 226.893 140.736C231.228 139.295 236.235 138.812 240.101 141.317C242.544 142.9 244.246 145.516 245.302 148.309Z" fill="#AE5717"/>
<ellipse cx="162.912" cy="361.503" rx="157.084" ry="0.682972" fill="#8F8F8F"/>
<defs>
<clipPath id="clip0_30567_76873">
<rect width="148.312" height="304.04" fill="white" transform="translate(34.2812 56.5938)"/>
</clipPath>
<clipPath id="clip1_30567_76873">
<rect width="84.6885" height="62.8334" fill="white" transform="translate(176.68 255.039) rotate(-108.894)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,46 @@
<svg width="569" height="392" viewBox="0 0 569 392" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M2.24127 149.464C23.6861 64.8302 188.553 122.509 287.94 64.9913C387.328 7.47386 588.237 64.9913 567.071 158.8C545.905 252.609 450.766 200.569 385.918 316.289C321.07 432.01 74.3637 405.305 97.6245 299.855C120.885 194.405 -19.2036 234.098 2.24127 149.464Z" fill="#453F4F"/>
<ellipse cx="290.113" cy="371.071" rx="190.645" ry="0.828893" fill="#E6E6E6"/>
<path d="M315.34 3.62891H142.629V369H315.34V3.62891Z" fill="#737373"/>
<path d="M303.873 14.5469H154.31V368.941H303.873V14.5469Z" fill="#e6e6e6"/>
<path d="M302.653 15.7656H155.53V368.94H302.653V15.7656Z" fill="#737373"/>
<path d="M300.976 209.435C300.976 213.338 297.835 216.479 293.931 216.479C290.027 216.479 286.886 213.338 286.886 209.435C286.886 205.531 290.027 202.391 293.931 202.391C297.835 202.391 300.976 205.531 300.976 209.435Z" fill="#2F2E41"/>
<path d="M293.26 212.666C290.851 212.666 288.685 211.781 287.008 210.318C287.465 213.763 290.393 216.447 293.961 216.447C297.865 216.447 301.006 213.306 301.006 209.403C301.006 209.189 300.976 209.006 300.945 208.793C299.207 211.141 296.432 212.666 293.26 212.666Z" fill="#bcbac5"/>
<path d="M300.915 208.825C298.749 213.856 290.179 214.161 283.744 209.801C275.815 204.434 272.247 210.624 272.247 208.52C272.247 206.416 275.815 203.306 287.282 207.056C293.199 208.977 300.884 208.825 300.884 208.825H300.915Z" fill="#b1aabb"/>
<path d="M283.5 208.428C277.767 204.677 274.473 207.055 272.521 208.946C273.436 208.976 277.035 205.226 283.744 209.8C290.057 214.069 298.383 213.825 300.762 209.129C296.828 211.965 288.807 211.904 283.5 208.428Z" fill="#2F2E41"/>
<path d="M329.68 201.163C329.53 201.896 329.539 202.661 329.708 203.388C329.876 204.116 330.198 204.784 330.645 205.332C330.874 205.612 330.469 205.986 330.241 205.707C329.75 205.099 329.395 204.361 329.208 203.558C329.02 202.754 329.005 201.91 329.165 201.099C329.174 201.021 329.209 200.95 329.262 200.9C329.315 200.851 329.382 200.827 329.45 200.833C329.518 200.842 329.58 200.882 329.623 200.943C329.666 201.005 329.687 201.084 329.68 201.163Z" fill="#262626"/>
<path d="M323.353 231.6C323.738 230.317 324.384 229.226 325.149 228.451L328.031 216L334 217.526L330.433 229.992C330.647 231.052 330.588 232.314 330.203 233.597C329.324 236.529 327.078 238.457 325.186 237.906C323.294 237.354 322.474 234.531 323.353 231.6Z" fill="#FFB6B6"/>
<path d="M376.135 357.09L370.367 357.226L367.152 331.315L375.664 331.113L376.135 357.09Z" fill="#FFB6B6"/>
<path d="M356.347 369.123C356.347 370.097 357.039 370.887 357.892 370.887H369.34C369.34 370.887 370.466 366.358 375.059 364.409L375.377 370.887H381.282L380.567 360.471C380.567 360.471 382.146 354.899 378.866 352.051C375.585 349.202 378.242 349.599 378.242 349.599L376.951 343.152L368.027 344.202L367.962 354.321L363.631 364.365L357.279 367.503C356.713 367.783 356.347 368.419 356.347 369.123Z" fill="#c4c3d5"/>
<path d="M338.206 350.317L332.438 350.453L329.223 324.541L337.735 324.34L338.206 350.317Z" fill="#FFB6B6"/>
<path d="M319 368.97C319 369.945 319.691 370.734 320.544 370.734H331.992C331.992 370.734 333.119 366.206 337.712 364.257L338.029 370.734H343.935L343.219 360.319C343.219 360.319 344.799 354.747 341.518 351.898C338.237 349.05 340.895 349.446 340.895 349.446L339.604 343L330.68 344.049L330.614 354.169L326.284 364.213L319.931 367.351C319.366 367.63 319 368.267 319 368.97Z" fill="#c4c3d5"/>
<path d="M374.68 150.377L353.232 154C351.755 150.327 341.835 125.406 341.222 121.809C339.629 112.459 346.806 103.839 356.537 103.134C365.869 102.457 371.555 104.155 372.349 112.789C372.627 115.815 375.301 123.922 376.118 126.855C380.626 143.036 375.758 146.929 374.68 150.377Z" fill="#511F33"/>
<path d="M345.5 203.5L342.274 225L326 288.089L328.5 340L339 339.549L342.274 289.895L362.682 243.626L365.329 339.549L377.986 340L385.5 229C386.18 220.393 382.83 210.661 378 203.5H345.5Z" fill="#c4c3d5"/>
<path d="M353.5 140L354 133L364.5 132L365.5 140H353.5Z" fill="#FFB6B6"/>
<path d="M365.5 137H353.5C353.5 137 354 141.5 350.5 142.5C347 143.5 341.294 147 341.294 147L346 190L342.5 214C352.807 217.431 364.699 222.018 382 208C382 208 377 196 377 185.5C377 175 379.134 149.972 379.134 149.972C379.134 149.972 370.5 144.5 368.5 143C366.5 141.5 365.5 137 365.5 137Z" fill="#7036e2"/>
<path d="M349 145.854C349 145.854 341.444 142.679 337.889 148.575C335.954 151.784 332.308 173.797 329.386 193.198C326.939 209.448 325 223.866 325 223.866L332.778 225L341.467 193.258L348.111 168.985L349 145.854Z" fill="#7036e2"/>
<path d="M357.5 134C364.404 134 370 128.404 370 121.5C370 114.596 364.404 109 357.5 109C350.596 109 345 114.596 345 121.5C345 128.404 350.596 134 357.5 134Z" fill="#FFB6B6"/>
<path d="M423.966 131.231C423.239 132.344 422.325 133.206 421.392 133.736L415.134 144.768L410.025 141.725L416.923 130.862C417.029 129.8 417.446 128.619 418.173 127.506C419.832 124.962 422.474 123.734 424.074 124.763C425.674 125.792 425.625 128.688 423.966 131.231Z" fill="#FFB6B6"/>
<path d="M368 144C368 144 372.5 145 377 148C378.371 150.156 392 155.5 395 155.5C397.249 154.647 402.5 147.5 404 146C405.5 144.5 414 133 414 133L420.5 137C420.5 137 401.5 164 398 168C394.5 172 368 163.5 368 163.5V144Z" fill="#7036e2"/>
<path d="M355.841 104.961C350.758 105.872 345.832 108.676 343.195 113.197C340.558 117.717 335.726 124.016 339.229 127.878C340.44 129.212 341.982 130.223 343.071 131.662C344.925 134.112 345.193 137.553 344.268 140.5C343.344 143.446 337.768 147.444 335.5 149.5C340.354 148.99 347.271 147.169 348.947 142.5C349.723 140.339 350.988 134.555 349.66 132.693C348.962 131.715 347.934 131.045 347.048 130.24C344.761 128.164 346.229 125.029 346.243 121.908C346.257 118.787 346.642 116.616 348.947 114.561C350.534 115.853 355.798 115.541 357.803 115.21C359.809 114.878 365.418 122.727 366.523 120.99C368.686 123.822 367.206 117.985 366.8 121.55C366.51 124.1 364.866 126.3 364.371 128.817C363.939 131.008 364.411 133.287 365.168 135.384C366.877 140.113 370.08 144.269 374.184 147.08C371.814 143.665 369.344 139.933 369.422 135.751C369.479 132.649 374.628 126.247 375.536 123.285C377.274 117.619 373.829 111.34 370.128 106.755C366.879 102.728 360.597 103.972 355.616 105.164" fill="#511F33"/>
<path d="M395 117.232C401.714 116.386 409.568 119.286 413.699 122.339" stroke="#2F2E41" stroke-linecap="round"/>
<path d="M395.223 121.266C400.011 120.287 405.172 121.843 407.714 123.721" stroke="#2F2E41" stroke-linecap="round"/>
<path d="M430.918 132.319C435.672 134.16 439.5 138 442.5 143" stroke="#2F2E41" stroke-linecap="round"/>
<path d="M429 135.871C432.582 136.862 436 139.5 437.5 142.5" stroke="#2F2E41" stroke-linecap="round"/>
<path d="M458.764 85.9823C459.253 84.0543 457.402 81.9221 454.631 81.2198C451.86 80.5175 449.217 81.511 448.728 83.4389C448.24 85.3668 450.09 87.499 452.862 88.2014C455.633 88.9037 458.276 87.9102 458.764 85.9823Z" fill="#262626"/>
<path d="M431.921 57.7654C432.409 55.8375 430.559 53.7053 427.787 53.003C425.016 52.3006 422.373 53.2942 421.885 55.2221C421.396 57.15 423.247 59.2822 426.018 59.9846C428.789 60.6869 431.432 59.6933 431.921 57.7654Z" fill="#3F3D56"/>
<path d="M472.115 86.0623C472.604 84.1344 470.753 82.0022 467.982 81.2999C465.211 80.5975 462.568 81.5911 462.079 83.519C461.591 85.4469 463.441 87.5791 466.213 88.2814C468.984 88.9838 471.627 87.9902 472.115 86.0623Z" fill="#7036e2"/>
<path d="M480.005 96.6486C480.205 94.8529 479.355 93.2841 478.106 93.1445C476.857 93.0049 475.682 94.3475 475.481 96.1432C475.28 97.9388 476.13 99.5077 477.38 99.6473C478.629 99.7868 479.804 98.4443 480.005 96.6486Z" fill="#E6E6E6"/>
<path d="M482.788 117.858C482.988 116.062 482.138 114.493 480.889 114.354C479.64 114.214 478.465 115.556 478.264 117.352C478.064 119.148 478.914 120.717 480.163 120.856C481.412 120.996 482.587 119.653 482.788 117.858Z" fill="#3F3D56"/>
<path d="M448.187 77.4416C448.388 75.6459 447.538 74.0771 446.289 73.9375C445.04 73.7979 443.864 75.1404 443.664 76.9361C443.463 78.7318 444.313 80.3007 445.562 80.4402C446.811 80.5798 447.987 79.2373 448.187 77.4416Z" fill="#E6E6E6"/>
<path d="M465.219 71.0432C465.42 69.2475 464.57 67.6786 463.32 67.5391C462.071 67.3995 460.896 68.742 460.695 70.5377C460.495 72.3334 461.345 73.9022 462.594 74.0418C463.843 74.1814 465.018 72.8388 465.219 71.0432Z" fill="#7036e2"/>
<path d="M444.237 53.756C444.437 51.9603 443.587 50.3915 442.338 50.2519C441.089 50.1123 439.914 51.4549 439.713 53.2506C439.512 55.0462 440.362 56.6151 441.611 56.7547C442.861 56.8943 444.036 55.5517 444.237 53.756Z" fill="#3F3D56"/>
<path d="M43.2651 134.356C41.3288 133.901 39.2297 135.789 38.5766 138.573C37.9234 141.356 38.9636 143.981 40.8999 144.435C42.8361 144.889 44.9352 143.001 45.5884 140.218C46.2415 137.435 45.2013 134.81 43.2651 134.356Z" fill="#262626"/>
<path d="M43.6478 168.199C41.7116 167.745 39.6125 169.633 38.9593 172.416C38.3062 175.2 39.3464 177.825 41.2826 178.279C43.2189 178.733 45.318 176.845 45.9712 174.062C46.6243 171.278 45.5841 168.654 43.6478 168.199Z" fill="#3F3D56"/>
<path d="M71.2284 127.51C69.2922 127.056 67.1931 128.944 66.5399 131.727C65.8868 134.51 66.927 137.135 68.8632 137.589C70.7995 138.044 72.8986 136.156 73.5517 133.372C74.2049 130.589 73.1647 127.964 71.2284 127.51Z" fill="#7036e2"/>
<path d="M81.6733 119.434C79.8744 119.265 78.3209 120.143 78.2034 121.394C78.086 122.646 79.4491 123.797 81.2481 123.966C83.047 124.135 84.6006 123.257 84.718 122.006C84.8354 120.754 83.4723 119.603 81.6733 119.434Z" fill="#E6E6E6"/>
<path d="M102.83 116.276C101.031 116.107 99.4771 116.985 99.3597 118.236C99.2422 119.487 100.605 120.639 102.404 120.808C104.203 120.976 105.757 120.099 105.874 118.847C105.992 117.596 104.629 116.445 102.83 116.276Z" fill="#3F3D56"/>
<path d="M63.0327 151.586C61.2338 151.417 59.6802 152.295 59.5628 153.547C59.4454 154.798 60.8085 155.949 62.6074 156.118C64.4064 156.287 65.9599 155.409 66.0774 154.158C66.1948 152.906 64.8317 151.755 63.0327 151.586Z" fill="#E6E6E6"/>
<path d="M56.3337 134.67C54.5348 134.501 52.9813 135.379 52.8638 136.631C52.7464 137.882 54.1095 139.033 55.9085 139.202C57.7074 139.371 59.261 138.493 59.3784 137.242C59.4958 135.99 58.1327 134.839 56.3337 134.67Z" fill="#7036e2"/>
<path d="M39.4209 155.955C37.6219 155.787 36.0684 156.664 35.9509 157.916C35.8335 159.167 37.1966 160.318 38.9956 160.487C40.7946 160.656 42.3481 159.778 42.4656 158.527C42.583 157.276 41.2198 156.124 39.4209 155.955Z" fill="#3F3D56"/>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -0,0 +1,46 @@
<svg width="569" height="392" viewBox="0 0 569 392" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M2.24127 149.464C23.6861 64.8302 188.553 122.509 287.94 64.9913C387.328 7.47386 588.237 64.9913 567.071 158.8C545.905 252.609 450.766 200.569 385.918 316.289C321.07 432.01 74.3637 405.305 97.6245 299.855C120.885 194.405 -19.2036 234.098 2.24127 149.464Z" fill="#453F4F"/>
<ellipse cx="290.113" cy="371.071" rx="190.645" ry="0.828893" fill="#757575"/>
<path d="M315.34 3.62891H142.629V369H315.34V3.62891Z" fill="#ECECEC"/>
<path d="M303.873 14.5469H154.31V368.941H303.873V14.5469Z" fill="#C1C1C1"/>
<path d="M302.653 15.7656H155.53V368.94H302.653V15.7656Z" fill="#ECECEC"/>
<path d="M300.976 209.435C300.976 213.338 297.835 216.479 293.931 216.479C290.027 216.479 286.886 213.338 286.886 209.435C286.886 205.531 290.027 202.391 293.931 202.391C297.835 202.391 300.976 205.531 300.976 209.435Z" fill="black"/>
<path d="M293.26 212.666C290.851 212.666 288.685 211.781 287.008 210.318C287.465 213.763 290.393 216.447 293.961 216.447C297.865 216.447 301.006 213.306 301.006 209.403C301.006 209.189 300.976 209.006 300.945 208.793C299.207 211.141 296.432 212.666 293.26 212.666Z" fill="#2B2931"/>
<path d="M300.915 208.825C298.749 213.856 290.179 214.161 283.744 209.801C275.815 204.434 272.247 210.624 272.247 208.52C272.247 206.416 275.815 203.306 287.282 207.056C293.199 208.977 300.884 208.825 300.884 208.825H300.915Z" fill="#453F4F"/>
<path d="M283.5 208.428C277.767 204.677 274.473 207.055 272.521 208.946C273.436 208.976 277.035 205.226 283.744 209.8C290.057 214.069 298.383 213.825 300.762 209.129C296.828 211.965 288.807 211.904 283.5 208.428Z" fill="black"/>
<path d="M329.68 201.163C329.53 201.896 329.539 202.661 329.708 203.388C329.876 204.116 330.198 204.784 330.645 205.332C330.874 205.612 330.469 205.986 330.241 205.707C329.75 205.099 329.395 204.361 329.208 203.558C329.02 202.754 329.005 201.91 329.165 201.099C329.174 201.021 329.209 200.95 329.262 200.9C329.315 200.851 329.382 200.827 329.45 200.833C329.518 200.842 329.58 200.882 329.623 200.943C329.666 201.005 329.687 201.084 329.68 201.163Z" fill="white"/>
<path d="M323.353 231.6C323.738 230.317 324.384 229.226 325.149 228.451L328.031 216L334 217.526L330.433 229.992C330.647 231.052 330.588 232.314 330.203 233.597C329.324 236.529 327.078 238.457 325.186 237.906C323.294 237.354 322.474 234.531 323.353 231.6Z" fill="#FFB6B6"/>
<path d="M376.135 357.09L370.367 357.226L367.152 331.315L375.664 331.113L376.135 357.09Z" fill="#FFB6B6"/>
<path d="M356.347 369.123C356.347 370.097 357.039 370.887 357.892 370.887H369.34C369.34 370.887 370.466 366.358 375.059 364.409L375.377 370.887H381.282L380.567 360.471C380.567 360.471 382.146 354.899 378.866 352.051C375.585 349.202 378.242 349.599 378.242 349.599L376.951 343.152L368.027 344.202L367.962 354.321L363.631 364.365L357.279 367.503C356.713 367.783 356.347 368.419 356.347 369.123Z" fill="#2F2E41"/>
<path d="M338.206 350.317L332.438 350.453L329.223 324.541L337.735 324.34L338.206 350.317Z" fill="#FFB6B6"/>
<path d="M319 368.97C319 369.945 319.691 370.734 320.544 370.734H331.992C331.992 370.734 333.119 366.206 337.712 364.257L338.029 370.734H343.935L343.219 360.319C343.219 360.319 344.799 354.747 341.518 351.898C338.237 349.05 340.895 349.446 340.895 349.446L339.604 343L330.68 344.049L330.614 354.169L326.284 364.213L319.931 367.351C319.366 367.63 319 368.267 319 368.97Z" fill="#2F2E41"/>
<path d="M374.68 150.377L353.232 154C351.755 150.327 341.835 125.406 341.222 121.809C339.629 112.459 346.806 103.839 356.537 103.134C365.869 102.457 371.555 104.155 372.349 112.789C372.627 115.815 375.301 123.922 376.118 126.855C380.626 143.036 375.758 146.929 374.68 150.377Z" fill="#511F33"/>
<path d="M345.5 203.5L342.274 225L326 288.089L328.5 340L339 339.549L342.274 289.895L362.682 243.626L365.329 339.549L377.986 340L385.5 229C386.18 220.393 382.83 210.661 378 203.5H345.5Z" fill="#2F2E41"/>
<path d="M353.5 140L354 133L364.5 132L365.5 140H353.5Z" fill="#FFB6B6"/>
<path d="M365.5 137H353.5C353.5 137 354 141.5 350.5 142.5C347 143.5 341.294 147 341.294 147L346 190L342.5 214C352.807 217.431 364.699 222.018 382 208C382 208 377 196 377 185.5C377 175 379.134 149.972 379.134 149.972C379.134 149.972 370.5 144.5 368.5 143C366.5 141.5 365.5 137 365.5 137Z" fill="#9268E9"/>
<path d="M349 145.854C349 145.854 341.444 142.679 337.889 148.575C335.954 151.784 332.308 173.797 329.386 193.198C326.939 209.448 325 223.866 325 223.866L332.778 225L341.467 193.258L348.111 168.985L349 145.854Z" fill="#9268E9"/>
<path d="M357.5 134C364.404 134 370 128.404 370 121.5C370 114.596 364.404 109 357.5 109C350.596 109 345 114.596 345 121.5C345 128.404 350.596 134 357.5 134Z" fill="#FFB6B6"/>
<path d="M423.966 131.231C423.239 132.344 422.325 133.206 421.392 133.736L415.134 144.768L410.025 141.725L416.923 130.862C417.029 129.8 417.446 128.619 418.173 127.506C419.832 124.962 422.474 123.734 424.074 124.763C425.674 125.792 425.625 128.688 423.966 131.231Z" fill="#FFB6B6"/>
<path d="M368 144C368 144 372.5 145 377 148C378.371 150.156 392 155.5 395 155.5C397.249 154.647 402.5 147.5 404 146C405.5 144.5 414 133 414 133L420.5 137C420.5 137 401.5 164 398 168C394.5 172 368 163.5 368 163.5V144Z" fill="#9268E9"/>
<path d="M355.841 104.961C350.758 105.872 345.832 108.676 343.195 113.197C340.558 117.717 335.726 124.016 339.229 127.878C340.44 129.212 341.982 130.223 343.071 131.662C344.925 134.112 345.193 137.553 344.268 140.5C343.344 143.446 337.768 147.444 335.5 149.5C340.354 148.99 347.271 147.169 348.947 142.5C349.723 140.339 350.988 134.555 349.66 132.693C348.962 131.715 347.934 131.045 347.048 130.24C344.761 128.164 346.229 125.029 346.243 121.908C346.257 118.787 346.642 116.616 348.947 114.561C350.534 115.853 355.798 115.541 357.803 115.21C359.809 114.878 365.418 122.727 366.523 120.99C368.686 123.822 367.206 117.985 366.8 121.55C366.51 124.1 364.866 126.3 364.371 128.817C363.939 131.008 364.411 133.287 365.168 135.384C366.877 140.113 370.08 144.269 374.184 147.08C371.814 143.665 369.344 139.933 369.422 135.751C369.479 132.649 374.628 126.247 375.536 123.285C377.274 117.619 373.829 111.34 370.128 106.755C366.879 102.728 360.597 103.972 355.616 105.164" fill="#511F33"/>
<path d="M395 117.232C401.714 116.386 409.568 119.286 413.699 122.339" stroke="black" stroke-linecap="round"/>
<path d="M395.223 121.266C400.011 120.287 405.172 121.843 407.714 123.721" stroke="black" stroke-linecap="round"/>
<path d="M430.918 132.319C435.672 134.16 439.5 138 442.5 143" stroke="black" stroke-linecap="round"/>
<path d="M429 135.871C432.582 136.862 436 139.5 437.5 142.5" stroke="black" stroke-linecap="round"/>
<path d="M458.764 85.9823C459.253 84.0543 457.402 81.9221 454.631 81.2198C451.86 80.5175 449.217 81.511 448.728 83.4389C448.24 85.3668 450.09 87.499 452.862 88.2014C455.633 88.9037 458.276 87.9102 458.764 85.9823Z" fill="white"/>
<path d="M431.921 57.7654C432.409 55.8375 430.559 53.7053 427.787 53.003C425.016 52.3006 422.373 53.2942 421.885 55.2221C421.396 57.15 423.247 59.2822 426.018 59.9846C428.789 60.6869 431.432 59.6933 431.921 57.7654Z" fill="#3F3D56"/>
<path d="M472.115 86.0623C472.604 84.1344 470.753 82.0022 467.982 81.2999C465.211 80.5975 462.568 81.5911 462.079 83.519C461.591 85.4469 463.441 87.5791 466.213 88.2814C468.984 88.9838 471.627 87.9902 472.115 86.0623Z" fill="#9268E9"/>
<path d="M480.005 96.6486C480.205 94.8529 479.355 93.2841 478.106 93.1445C476.857 93.0049 475.682 94.3475 475.481 96.1432C475.28 97.9388 476.13 99.5077 477.38 99.6473C478.629 99.7868 479.804 98.4443 480.005 96.6486Z" fill="#E6E6E6"/>
<path d="M482.788 117.858C482.988 116.062 482.138 114.493 480.889 114.354C479.64 114.214 478.465 115.556 478.264 117.352C478.064 119.148 478.914 120.717 480.163 120.856C481.412 120.996 482.587 119.653 482.788 117.858Z" fill="#3F3D56"/>
<path d="M448.187 77.4416C448.388 75.6459 447.538 74.0771 446.289 73.9375C445.04 73.7979 443.864 75.1404 443.664 76.9361C443.463 78.7318 444.313 80.3007 445.562 80.4402C446.811 80.5798 447.987 79.2373 448.187 77.4416Z" fill="#E6E6E6"/>
<path d="M465.219 71.0432C465.42 69.2475 464.57 67.6786 463.32 67.5391C462.071 67.3995 460.896 68.742 460.695 70.5377C460.495 72.3334 461.345 73.9022 462.594 74.0418C463.843 74.1814 465.018 72.8388 465.219 71.0432Z" fill="#9268E9"/>
<path d="M444.237 53.756C444.437 51.9603 443.587 50.3915 442.338 50.2519C441.089 50.1123 439.914 51.4549 439.713 53.2506C439.512 55.0462 440.362 56.6151 441.611 56.7547C442.861 56.8943 444.036 55.5517 444.237 53.756Z" fill="#3F3D56"/>
<path d="M43.2651 134.356C41.3288 133.901 39.2297 135.789 38.5766 138.573C37.9234 141.356 38.9636 143.981 40.8999 144.435C42.8361 144.889 44.9352 143.001 45.5884 140.218C46.2415 137.435 45.2013 134.81 43.2651 134.356Z" fill="white"/>
<path d="M43.6478 168.199C41.7116 167.745 39.6125 169.633 38.9593 172.416C38.3062 175.2 39.3464 177.825 41.2826 178.279C43.2189 178.733 45.318 176.845 45.9712 174.062C46.6243 171.278 45.5841 168.654 43.6478 168.199Z" fill="#3F3D56"/>
<path d="M71.2284 127.51C69.2922 127.056 67.1931 128.944 66.5399 131.727C65.8868 134.51 66.927 137.135 68.8632 137.589C70.7995 138.044 72.8986 136.156 73.5517 133.372C74.2049 130.589 73.1647 127.964 71.2284 127.51Z" fill="#9268E9"/>
<path d="M81.6733 119.434C79.8744 119.265 78.3209 120.143 78.2034 121.394C78.086 122.646 79.4491 123.797 81.2481 123.966C83.047 124.135 84.6006 123.257 84.718 122.006C84.8354 120.754 83.4723 119.603 81.6733 119.434Z" fill="#E6E6E6"/>
<path d="M102.83 116.276C101.031 116.107 99.4771 116.985 99.3597 118.236C99.2422 119.487 100.605 120.639 102.404 120.808C104.203 120.976 105.757 120.099 105.874 118.847C105.992 117.596 104.629 116.445 102.83 116.276Z" fill="#3F3D56"/>
<path d="M63.0327 151.586C61.2338 151.417 59.6802 152.295 59.5628 153.547C59.4454 154.798 60.8085 155.949 62.6074 156.118C64.4064 156.287 65.9599 155.409 66.0774 154.158C66.1948 152.906 64.8317 151.755 63.0327 151.586Z" fill="#E6E6E6"/>
<path d="M56.3337 134.67C54.5348 134.501 52.9813 135.379 52.8638 136.631C52.7464 137.882 54.1095 139.033 55.9085 139.202C57.7074 139.371 59.261 138.493 59.3784 137.242C59.4958 135.99 58.1327 134.839 56.3337 134.67Z" fill="#9268E9"/>
<path d="M39.4209 155.955C37.6219 155.787 36.0684 156.664 35.9509 157.916C35.8335 159.167 37.1966 160.318 38.9956 160.487C40.7946 160.656 42.3481 159.778 42.4656 158.527C42.583 157.276 41.2198 156.124 39.4209 155.955Z" fill="#3F3D56"/>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -0,0 +1,14 @@
<svg width="538" height="428" viewBox="0 0 538 428" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M25.5216 12.9464C101.117 -51.0418 123.063 147.074 258.436 68.7657C393.808 -9.54251 434.824 51.0683 434.824 170.197C434.824 289.325 580.948 321.32 525.401 400.285C469.854 479.25 329.899 364.323 239.366 364.887C108.83 365.699 19.072 335.977 37.78 251.204C69.4629 107.637 -50.0735 76.9347 25.5216 12.9464Z" fill="#453F4F"/>
<path d="M315.87 194.157L338.759 274.59L372.321 288.431L370.709 312.806L292.056 339.054L295.324 204.15L308.885 192.119C311.253 190.018 315.004 191.112 315.87 194.157Z" fill="#2F2E43"/>
<path d="M254.071 99.3203C258.34 75.2985 281.274 59.2858 305.296 63.5551C329.318 67.8243 345.331 90.7588 341.062 114.781C337.599 134.263 321.86 148.474 303.221 150.874L284.936 204.949L248.42 161.61C248.42 161.61 259.776 151.461 267.106 139.043C256.753 129.168 251.38 114.463 254.071 99.3203Z" fill="#F3C6C8"/>
<path d="M300.903 178.872L241.344 136.491C241.344 136.491 220.277 131.521 219.729 161.017C219.729 161.017 188.243 180.248 184.505 223.096C180.767 265.943 186.307 388.999 186.307 388.999L331.942 350.72L316.015 197.663C315.11 188.973 309.197 181.619 300.903 178.872Z" fill="#1778D3"/>
<path d="M228.184 159.93C228.184 159.93 275.707 179.436 282.199 202.795" stroke="#E6E6E6" stroke-miterlimit="10"/>
<path d="M400.576 308.456L313.893 337.777L317.75 304.922L394.424 286.427C397.202 281.312 402.465 277.057 409.186 275.18C420.947 271.895 432.684 277.123 435.402 286.855C438.121 296.588 430.791 307.141 419.03 310.426C412.309 312.303 405.603 311.391 400.576 308.456Z" fill="#F3C6C8"/>
<path d="M281.991 290.319L266.001 213.382C266.001 213.382 233.372 151.67 191.579 195.333C191.579 195.333 238.434 350.645 264.171 352.381C289.907 354.117 322.346 336.691 322.346 336.691L326.292 296.448L281.991 290.319Z" fill="#1778D3"/>
<path d="M191.582 195.328C191.582 195.328 238.436 350.64 264.173 352.376C289.909 354.112 322.348 336.686 322.348 336.686" stroke="#E6E6E6" stroke-miterlimit="10"/>
<path d="M326.295 296.442L281.993 290.313L266.004 213.375" stroke="#E6E6E6" stroke-miterlimit="10"/>
<path d="M265.066 137.675C265.066 137.675 265.15 113.706 277.44 105.926C289.703 98.1636 286.701 114.495 286.701 114.495L293.981 114.82C293.981 114.82 296.902 98.938 311.084 99.8077L307.313 78.9529C307.313 78.9529 338.84 94.1981 340.607 91.2217C354.515 67.8019 291.481 27.9758 262.264 61.5896C216.823 113.87 265.066 137.675 265.066 137.675Z" fill="#BE7800"/>
<rect x="436.242" y="218.391" width="11.8658" height="54.8795" rx="4" transform="rotate(15.4151 436.242 218.391)" fill="#9268E9"/>
<path d="M405.463 303.885L318.78 333.207L322.636 300.352L399.31 281.857C402.089 276.742 407.352 272.487 414.073 270.61C425.833 267.325 437.571 272.552 440.289 282.285C443.007 292.018 435.677 302.57 423.917 305.855C417.195 307.732 410.49 306.82 405.463 303.885Z" fill="#F3C6C8"/>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1,14 @@
<svg width="538" height="428" viewBox="0 0 538 428" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M25.5216 12.9464C101.117 -51.0418 123.063 147.074 258.436 68.7657C393.808 -9.54251 434.824 51.0683 434.824 170.197C434.824 289.325 580.948 321.32 525.401 400.285C469.854 479.25 329.899 364.323 239.366 364.887C108.83 365.699 19.072 335.977 37.78 251.204C69.4629 107.637 -50.0735 76.9347 25.5216 12.9464Z" fill="white"/>
<path d="M315.87 194.156L338.759 274.589L372.321 288.429L370.709 312.805L292.056 339.053L295.324 204.149L308.885 192.117C311.253 190.016 315.004 191.11 315.87 194.156Z" fill="#2F2E43"/>
<path d="M254.069 99.3193C258.338 75.2975 281.272 59.2848 305.294 63.5541C329.316 67.8234 345.329 90.7578 341.06 114.78C337.597 134.262 321.858 148.473 303.219 150.873L284.934 204.948L248.418 161.609C248.418 161.609 259.774 151.46 267.104 139.042C256.751 129.167 251.378 114.462 254.069 99.3193Z" fill="#E29295"/>
<path d="M300.903 178.872L241.344 136.492C241.344 136.492 220.277 131.521 219.729 161.017C219.729 161.017 188.243 180.249 184.505 223.096C180.767 265.943 186.307 389 186.307 389L331.942 350.72L316.015 197.663C315.11 188.973 309.197 181.62 300.903 178.872Z" fill="#2F2E43"/>
<path d="M228.184 159.928C228.184 159.928 275.707 179.434 282.199 202.793" stroke="#E6E6E6" stroke-miterlimit="10"/>
<path d="M400.576 308.455L313.893 337.776L317.75 304.921L394.424 286.427C397.202 281.311 402.465 277.057 409.186 275.179C420.947 271.895 432.684 277.122 435.402 286.855C438.121 296.588 430.791 307.14 419.03 310.425C412.309 312.302 405.603 311.39 400.576 308.455Z" fill="#E29295"/>
<path d="M281.991 290.315L266.001 213.378C266.001 213.378 233.372 151.667 191.579 195.329C191.579 195.329 238.434 350.641 264.171 352.377C289.907 354.113 322.346 336.687 322.346 336.687L326.292 296.444L281.991 290.315Z" fill="#2F2E43"/>
<path d="M191.582 195.329C191.582 195.329 238.436 350.64 264.173 352.377C289.909 354.113 322.348 336.687 322.348 336.687" stroke="#E6E6E6" stroke-miterlimit="10"/>
<path d="M326.295 296.444L281.993 290.315L266.004 213.377" stroke="#E6E6E6" stroke-miterlimit="10"/>
<path d="M265.066 137.676C265.066 137.676 265.15 113.707 277.44 105.927C289.703 98.1645 286.701 114.496 286.701 114.496L293.981 114.821C293.981 114.821 296.902 98.939 311.084 99.8087L307.313 78.9539C307.313 78.9539 338.84 94.199 340.607 91.2226C354.515 67.8029 291.481 27.9768 262.264 61.5906C216.823 113.871 265.066 137.676 265.066 137.676Z" fill="#2F2E43"/>
<rect x="436.242" y="218.39" width="11.8658" height="54.8795" rx="4" transform="rotate(15.4151 436.242 218.39)" fill="#734BC5"/>
<path d="M405.461 303.882L318.778 333.203L322.634 300.348L399.308 281.853C402.087 276.738 407.35 272.484 414.071 270.606C425.831 267.322 437.569 272.549 440.287 282.282C443.005 292.014 435.675 302.567 423.915 305.852C417.194 307.729 410.488 306.817 405.461 303.882Z" fill="#E29295"/>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1,9 @@
<svg width="180" height="180" viewBox="0 0 180 180" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect width="180" height="180" fill="url(#pattern0)"/>
<defs>
<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image0_368_8662" transform="scale(0.00806452)"/>
</pattern>
<image id="image0_368_8662" width="124" height="124" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHwAAAB8CAIAAAAkfEPpAAACFElEQVR42u3cYW7DMAgG0Nz/0tsJJs2DD5zu8TNKLee5EgWiPl9iPB4E0KGLAfQnEL/axA/3V9ap7C3tAB06dOjT6KVEUXiwrvsnD/t4fejQoUNfRD9OFIfrdKGc7q1r/eN1oEOHDv0D0NOgiaQNHTp06NB7ricOrGt96NChQ38reqKRtNXAqiTSV3YZoUOHDj01kH3h9de/DQAdOvR/iz4ZiWSVaMxFnh06dOjQh9EnBxFbjar0Z6FDhw59Ez296XRSTTxLpVkWmRxBhw4d+h96L10v92wNPRKHHRlMQ4cOHfowetdhdB1YJRlekaihQ4cOfRg9nXDSg4X0YZQagtChQ4e+iD5ZNHUNTxL7bLsOHTp06APoiQFxV7HTdX8i+ccnR9ChQ4deRK9EV9JLJ+rJvUGHDh36NPrNRUqiWba2JnTo0KEPoE8mt/SgI1HgRF42gg4dOvQQ+uQmEsVUevDS1WiDDh069E30G4YDiQIqXUxBhw4d+iZ6GiL+MINFUFsihQ4dOvRLfqcnEm9X4yw9VCldhw4dOvQB9CcQiWSbLo4SQ2ro0KFD30S/oRE2Wfhc0fCCDh069AH0tpdsCp+dHKQkmlzQoUOH/mno6YPZamYdHwx06NChfxj65JBh8gt0XXEEHTp06M/eH1FW0NNDkrZnhA4dOvRh9HRjqCsqyX+rYQcdOnToE+hiJqBDhy5C8Q2ctSFdE9XuyAAAAABJRU5ErkJggg=="/>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,90 @@
<svg width="581" height="378" viewBox="0 0 581 378" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M111 172C198.2 172 49.4999 9.4976 158.5 9.50043C267.5 9.50326 272.5 45.9974 421.5 9.49739C570.5 -27.0026 527.5 61.9997 486 95.497C444.5 128.994 436 172.994 531.5 196.994C627 220.994 576.5 307.997 444.5 279.497C312.5 250.997 322.5 349.497 262.5 372.997C202.5 396.497 212.5 318.497 100 284.997C-12.5 251.497 2.00002 172 111 172Z" fill="white" fill-opacity="0.7"/>
<g clip-path="url(#clip0_7858_63553)">
<path d="M456.446 274.384H158.554C152.183 274.384 147 269.179 147 262.782V226.781H468V262.782C468 269.179 462.817 274.384 456.446 274.384Z" fill="#E6E6E6"/>
<path d="M346.054 268.367H270.088V322.852H346.054V268.367Z" fill="#E6E6E6"/>
<path d="M350.624 315.969H265.519V322.851H350.624V315.969Z" fill="#E6E6E6"/>
<path d="M467.714 241.983H147V58.9616C147 54.5716 150.557 51 154.929 51H459.785C464.157 51 467.714 54.5716 467.714 58.9616V241.983Z" fill="#3F3D56"/>
<path d="M460.003 59.3125H154.425V231.943H460.003V59.3125Z" fill="white"/>
<path d="M213.604 162.205C215.943 160.265 218.836 159.904 220.066 161.398C221.295 162.893 220.396 165.677 218.056 167.618C217.132 168.407 216.033 168.961 214.852 169.235L204.839 177.332L201.155 172.533L211.417 165.061C211.909 163.947 212.659 162.968 213.604 162.205Z" fill="#FFB6B6"/>
<path d="M155.729 180.472C155.724 180.114 155.728 176.991 158.03 175.017C160.676 172.749 164.408 173.667 165.717 173.989C168.742 174.733 168.99 176.035 171.83 177.374C177.143 179.878 170.486 178.596 173.647 177.793C174.742 177.515 190.486 176.419 194.405 173.997C202.027 169.286 207.22 166.43 207.22 166.43L210.615 173.248C210.615 173.248 205.706 180.102 198.797 185.18C191.71 190.388 188.166 192.993 182.78 193.999C182.317 194.086 170.911 196.041 161.724 189.149C159.629 187.577 155.789 184.697 155.729 180.472Z" fill="#87A6FC"/>
<path d="M166.261 163.134C172.793 163.134 178.088 157.817 178.088 151.258C178.088 144.7 172.793 139.383 166.261 139.383C159.729 139.383 154.434 144.7 154.434 151.258C154.434 157.817 159.729 163.134 166.261 163.134Z" fill="#FFB6B6"/>
<path d="M258.885 231.043L246.705 218.523L240.417 225.109L249.492 237.113L258.493 238.146L258.885 231.043Z" fill="#FFB6B6"/>
<path d="M189.336 207.566C190.049 207.626 192.312 208.081 194.476 206.886C195.953 206.07 196.711 204.857 196.966 204.471C200.14 199.685 212.321 192.222 223.253 191.763C225.729 191.659 227.358 191.947 228.839 192.722C230.939 193.821 231.778 195.396 234.443 199.084C235.901 201.102 237.514 203.003 238.989 205.008C247.627 216.745 250.901 217.666 250.567 221.429C250.195 225.604 245.711 229.565 242.731 229.108C241.51 228.921 241.037 228.068 239.407 226.343C234.625 221.285 232.647 222.219 229.243 218.345C225.269 213.821 225.789 210.071 223.715 209.926C221.793 209.792 220.975 212.991 216.87 217.242C214.992 219.187 213.654 220.079 209.579 222.918C193.709 233.973 193.456 234.75 190.253 235.631C188.852 236.017 178.906 238.755 175.363 234.398C169.819 227.58 182.917 207.031 189.336 207.566Z" fill="#2F2E41"/>
<path d="M255.161 233.868C256.057 233.464 257.105 232.992 257.442 231.906C257.67 231.171 257.538 230.265 257.067 229.638C256.523 228.916 255.718 228.821 255.751 228.693C255.8 228.498 257.704 228.574 259.793 229.316C260.188 229.456 261.974 230.111 264.246 231.893C266.067 233.32 265.822 233.606 266.963 234.429C270.467 236.955 273.754 234.964 275.65 237.333C276.382 238.247 276.694 239.545 276.386 240.594C275.768 242.702 272.76 243.427 271.116 243.802C267.158 244.704 264.161 243.968 261.032 243.438C250.392 241.638 244.413 243.278 243.613 240.802C243.462 240.334 243.708 240.374 244.528 236.936C245.338 233.543 245.311 232.611 246.001 232.339C247.039 231.93 247.736 233.791 250.351 234.427C252.669 234.992 254.581 234.129 255.161 233.868Z" fill="#2F2E41"/>
<path d="M237.231 272L234.154 254.773L225.268 256.677L226.064 271.727L232.934 277.657L237.231 272Z" fill="#FFB6B6"/>
<path d="M192.811 213.358C193.367 213.808 194.986 215.462 197.445 215.693C199.123 215.85 200.428 215.274 200.856 215.099C206.158 212.928 220.411 213.621 229.714 219.405C231.82 220.714 233.008 221.872 233.8 223.348C234.923 225.442 234.736 227.218 234.878 231.773C234.956 234.264 235.228 236.746 235.327 239.237C235.911 253.819 238.105 256.428 235.724 259.353C233.082 262.598 227.156 263.347 224.946 261.288C224.041 260.445 224.126 259.474 223.741 257.127C222.614 250.245 220.454 249.903 219.804 244.778C219.045 238.794 221.574 235.984 219.939 234.695C218.423 233.499 215.957 235.686 210.183 236.888C207.541 237.439 205.936 237.423 200.976 237.474C181.662 237.673 181.018 238.173 177.875 237.097C176.5 236.626 166.739 233.284 166.244 227.681C165.47 218.913 187.799 209.295 192.811 213.358Z" fill="#2F2E41"/>
<path d="M232.568 272.24C233.535 272.411 234.665 272.61 235.552 271.902C236.151 271.422 236.549 270.599 236.509 269.815C236.463 268.91 235.851 268.378 235.949 268.29C236.099 268.157 237.631 269.293 238.946 271.085C239.194 271.423 240.305 272.973 241.189 275.728C241.898 277.935 241.535 278.034 242.019 279.358C243.506 283.424 247.339 283.63 247.583 286.66C247.678 287.829 247.21 289.079 246.368 289.773C244.678 291.169 241.784 290.073 240.214 289.456C236.434 287.97 234.366 285.671 232.073 283.469C224.276 275.98 218.412 273.966 219.134 271.466C219.271 270.993 219.452 271.165 222.053 268.783C224.621 266.432 225.12 265.646 225.843 265.81C226.93 266.057 226.467 267.989 228.274 269.991C229.876 271.764 231.941 272.129 232.568 272.24Z" fill="#2F2E41"/>
<path d="M167.873 153.529C168.334 151.875 167.755 151.272 168.345 150.53C168.345 150.53 168.582 150.231 170.703 149.425C170.077 145.78 170.546 145.164 170.546 145.164C171.085 144.453 172.167 144.281 172.903 144.374C174.461 144.571 174.736 145.984 175.733 145.953C177.109 145.909 178.76 143.142 178.248 140.744C177.83 138.788 176.027 137.336 175.575 137.588C175.127 137.838 173.515 136.735 172.903 136.956C172.486 137.107 170.52 136.906 170.074 137.114C169.587 137.341 168.193 138.753 168.06 138.575C167.134 137.339 167.153 136.907 166.616 136.641C165.664 136.169 164.628 137.041 162.843 137.903C159.171 139.677 158.095 138.619 156.399 140.113C155.542 140.868 155.082 142.31 154.198 145.164C152.962 149.154 152.344 151.15 152.941 153.055C153.55 154.998 154.446 154.575 155.77 157.317C157.243 160.368 156.736 162.142 158.128 162.841C159.204 163.381 160.933 163.037 161.586 162.052C162.704 160.364 159.815 158.082 160.8 155.423C161.405 153.79 163.271 152.553 164.415 152.897C165.709 153.287 165.804 155.617 166.616 155.58C167.311 155.55 167.793 153.817 167.873 153.529Z" fill="#2F2E41"/>
<path d="M158.914 164.894C161.334 162.17 171.192 164.99 172.117 169.314C172.498 171.092 171.093 171.843 171.489 173.891C172.067 176.886 175.344 176.682 177.776 179.731C181.229 184.059 177.672 188.29 181.549 195.514C182.377 197.057 183.075 198.358 184.535 199.617C187.885 202.507 191.003 201.516 192.709 204.195C193.984 206.198 193.46 208.667 193.337 209.245C192.834 211.617 191.47 212.195 190.508 214.138C188.909 217.371 190.72 219.745 190.823 223.608C190.951 228.441 188.393 235.141 183.278 237.339C177.53 239.809 170.599 235.719 167.245 231.657C165.243 229.234 164.662 226.998 163.787 224.239C159.873 211.908 157.662 213.023 154.67 203.248C151.249 192.073 150.576 178.981 154.67 174.838C155.212 174.289 156.706 173.019 157.656 170.734C158.936 167.659 157.83 166.114 158.914 164.894Z" fill="#87A6FC"/>
<path d="M194.675 228.325C196.551 230.719 196.842 233.631 195.325 234.83C193.807 236.029 191.057 235.06 189.18 232.665C188.417 231.719 187.891 230.603 187.646 229.41L179.823 219.166L183.865 216.07L191.884 226.062C192.981 226.581 193.938 227.357 194.675 228.325Z" fill="#FFB6B6"/>
<path d="M166.025 175.276C166.373 175.198 169.419 174.564 171.813 176.425C174.564 178.562 174.43 182.419 174.384 183.771C174.276 186.896 173.056 187.405 172.331 190.47C170.974 196.204 173.558 201.533 174.986 204.477C175.481 205.496 177.069 208.614 180.23 211.972C186.377 218.503 191.863 221.94 191.863 221.94L185.97 227.2C185.97 227.2 176.583 224.327 170.223 218.571C163.699 212.667 153.665 191.778 151.586 186.69C151.406 186.251 153.944 193.376 158.788 182.939C159.893 180.559 161.918 176.197 166.025 175.276Z" fill="#87A6FC"/>
<path d="M166.425 323.361C166.425 323.718 166.71 324.004 167.065 324.004H447.935C448.29 324.004 448.575 323.718 448.575 323.361C448.575 323.005 448.29 322.719 447.935 322.719H167.065C166.71 322.719 166.425 323.005 166.425 323.361Z" fill="#3F3D56"/>
<mask id="mask0_7858_63553" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="284" y="108" width="47" height="27">
<path fill-rule="evenodd" clip-rule="evenodd" d="M284.122 108.016H330.857V134.753L307.647 131.98L284.122 134.753V108.016Z" fill="white"/>
</mask>
<g mask="url(#mask0_7858_63553)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M322.929 145.405V130.992C322.929 122.916 316.391 116.37 308.325 116.37C300.259 116.37 293.72 122.916 293.72 130.992V145.405C293.72 153.48 300.259 160.027 308.325 160.027C316.391 160.027 322.929 153.48 322.929 145.405ZM308.325 109.477C296.456 109.477 286.835 119.109 286.835 130.992V145.405C286.835 157.287 296.456 166.92 308.325 166.92C320.193 166.92 329.814 157.287 329.814 145.405V130.992C329.814 119.109 320.193 109.477 308.325 109.477Z" fill="#87A6FC"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M278.161 144.598C278.161 138.512 283.106 133.578 289.208 133.578C293.82 133.578 299.521 133.578 305.603 133.578C312.812 133.578 320.584 133.578 326.677 133.578C332.779 133.578 337.72 138.512 337.72 144.598V170.429C337.72 176.516 332.777 181.449 326.676 181.449C321.72 181.449 315.552 181.449 309.149 181.449C302.163 181.449 294.929 181.449 289.209 181.449C283.107 181.449 278.161 176.516 278.161 170.429V144.598Z" fill="#87A6FC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M311.296 157.395C313.552 156.088 315.071 153.646 315.071 150.848C315.071 146.673 311.691 143.289 307.521 143.289C303.351 143.289 299.971 146.673 299.971 150.848C299.971 153.646 301.49 156.088 303.746 157.395L298.353 166.747C297.585 168.08 298.547 169.746 300.086 169.746H314.956C316.495 169.746 317.457 168.08 316.689 166.747L311.296 157.395Z" fill="#132A6A"/>
</g>
<g filter="url(#filter0_d_7858_63553)">
<ellipse cx="127" cy="150" rx="7" ry="5" fill="white"/>
</g>
<g filter="url(#filter1_d_7858_63553)">
<ellipse cx="107" cy="140" rx="7" ry="5" fill="white"/>
</g>
<g filter="url(#filter2_d_7858_63553)">
<ellipse cx="91.5" cy="124.5" rx="10.5" ry="7.5" fill="white"/>
</g>
<g filter="url(#filter3_d_7858_63553)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.5935 70.0354C28.5917 69.9331 28.5908 69.8307 28.5908 69.728C28.5908 59.9371 36.548 52 46.3636 52C53.4968 52 59.6486 56.1918 62.4781 62.2407C65.7293 58.671 70.4205 56.4297 75.6364 56.4297C85.452 56.4297 93.4091 64.3668 93.4091 74.1577C93.4091 74.3217 93.4069 74.4852 93.4025 74.6482C101.204 76.5216 107 83.5277 107 91.8843C107 101.675 99.0429 109.612 89.2273 109.612C86.5464 109.612 84.0041 109.02 81.7247 107.96C78.6781 113.357 72.8795 117.003 66.2273 117.003C59.7251 117.003 54.0385 113.52 50.9402 108.323C48.8813 109.154 46.6306 109.612 44.2727 109.612C34.4571 109.612 26.5 101.675 26.5 91.8843L26.5 91.8664C26.3268 91.8746 26.1525 91.8788 25.9773 91.8788C19.9147 91.8788 15 86.9181 15 80.7988C15 74.6794 19.9147 69.7188 25.9773 69.7188C26.8789 69.7188 27.755 69.8285 28.5935 70.0354ZM60.0335 82.6531C59.8526 82.3233 59.6819 81.9872 59.5219 81.645C59.3821 81.7986 59.2396 81.9496 59.0945 82.0981C59.2555 82.3402 59.4106 82.5864 59.5598 82.8366C59.7166 82.7733 59.8745 82.7121 60.0335 82.6531Z" fill="white"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M48.4987 72.4052C50.8571 72.9728 53.5699 76.4108 52.322 81.5961C51.0741 86.7813 47.0942 88.6087 44.7358 88.0411C42.3774 87.4735 39.6647 84.0355 40.9125 78.8503C42.1604 73.665 46.1403 71.8377 48.4987 72.4052ZM57.5596 80.4678C58.098 74.3289 54.8618 68.7938 49.6686 67.544C43.8332 66.1397 37.7365 70.6779 36.0513 77.6804C34.3661 84.6829 37.7305 91.498 43.5659 92.9023C48.6575 94.1277 53.948 90.8288 56.3335 85.3164L75.0138 89.6071L74.1615 93.7255C73.8817 95.0776 74.7509 96.4005 76.103 96.6803C77.4551 96.9601 78.778 96.0908 79.0578 94.7388L79.8881 90.7267L81.5285 91.1035L79.9897 98.4476C79.7065 99.799 80.5725 101.124 81.9239 101.407C83.2752 101.69 84.6003 100.824 84.8834 99.473L86.9251 89.7286C87.2045 88.3956 86.3653 87.0843 85.0379 86.7794L78.5173 85.2816L57.5596 80.4678Z" fill="#9268E9"/>
<defs>
<filter id="filter0_d_7858_63553" x="105" y="134" width="44" height="40" 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 dy="4"/>
<feGaussianBlur stdDeviation="7.5"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.8 0 0 0 0 0.8 0 0 0 0 0.8 0 0 0 0.15 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7858_63553"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_7858_63553" result="shape"/>
</filter>
<filter id="filter1_d_7858_63553" x="85" y="124" width="44" height="40" 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 dy="4"/>
<feGaussianBlur stdDeviation="7.5"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.8 0 0 0 0 0.8 0 0 0 0 0.8 0 0 0 0.15 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7858_63553"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_7858_63553" result="shape"/>
</filter>
<filter id="filter2_d_7858_63553" x="66" y="106" width="51" height="45" 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 dy="4"/>
<feGaussianBlur stdDeviation="7.5"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.8 0 0 0 0 0.8 0 0 0 0 0.8 0 0 0 0.15 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7858_63553"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_7858_63553" result="shape"/>
</filter>
<filter id="filter3_d_7858_63553" x="0" y="41" width="122" height="95" 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 dy="4"/>
<feGaussianBlur stdDeviation="7.5"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.645833 0 0 0 0 0.645833 0 0 0 0 0.645833 0 0 0 0.1 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7858_63553"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_7858_63553" result="shape"/>
</filter>
<clipPath id="clip0_7858_63553">
<rect width="321" height="273" fill="white" transform="translate(147 51)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,90 @@
<svg width="581" height="378" viewBox="0 0 581 378" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M111 172C198.2 172 49.4999 9.4976 158.5 9.50043C267.5 9.50326 272.5 45.9974 421.5 9.49739C570.5 -27.0026 527.5 61.9997 486 95.497C444.5 128.994 436 172.994 531.5 196.994C627 220.994 576.5 307.997 444.5 279.497C312.5 250.997 322.5 349.497 262.5 372.997C202.5 396.497 212.5 318.497 100 284.997C-12.5 251.497 2.00002 172 111 172Z" fill="#453F4F"/>
<g clip-path="url(#clip0_5991_38505)">
<path d="M456.446 274.384H158.554C152.183 274.384 147 269.179 147 262.782V226.781H468V262.782C468 269.179 462.817 274.384 456.446 274.384Z" fill="#504A57"/>
<path d="M346.054 268.367H270.088V322.852H346.054V268.367Z" fill="#504A57"/>
<path d="M350.624 315.969H265.519V322.851H350.624V315.969Z" fill="#504A57"/>
<path d="M467.714 241.983H147V58.9616C147 54.5716 150.557 51 154.929 51H459.785C464.157 51 467.714 54.5716 467.714 58.9616V241.983Z" fill="#7C7B8B"/>
<path d="M460.003 59.3125H154.425V231.943H460.003V59.3125Z" fill="black"/>
<path d="M213.604 162.205C215.943 160.265 218.836 159.904 220.066 161.398C221.295 162.893 220.396 165.677 218.056 167.618C217.132 168.407 216.033 168.961 214.852 169.235L204.839 177.332L201.155 172.533L211.417 165.061C211.909 163.947 212.659 162.968 213.604 162.205Z" fill="#FFB6B6"/>
<path d="M155.729 180.472C155.724 180.114 155.728 176.991 158.03 175.017C160.676 172.749 164.408 173.667 165.717 173.989C168.742 174.733 168.99 176.035 171.83 177.374C177.143 179.878 170.486 178.596 173.647 177.793C174.742 177.515 190.486 176.419 194.405 173.997C202.027 169.286 207.22 166.43 207.22 166.43L210.615 173.248C210.615 173.248 205.706 180.102 198.797 185.18C191.71 190.388 188.166 192.993 182.78 193.999C182.317 194.086 170.911 196.041 161.724 189.149C159.629 187.577 155.789 184.697 155.729 180.472Z" fill="#87A6FC"/>
<path d="M166.261 163.134C172.793 163.134 178.088 157.817 178.088 151.258C178.088 144.7 172.793 139.383 166.261 139.383C159.729 139.383 154.434 144.7 154.434 151.258C154.434 157.817 159.729 163.134 166.261 163.134Z" fill="#FFB6B6"/>
<path d="M258.885 231.043L246.705 218.523L240.417 225.109L249.492 237.113L258.493 238.146L258.885 231.043Z" fill="#FFB6B6"/>
<path d="M189.336 207.566C190.049 207.626 192.312 208.081 194.476 206.886C195.953 206.07 196.711 204.857 196.966 204.471C200.14 199.685 212.321 192.222 223.253 191.763C225.729 191.659 227.358 191.947 228.839 192.722C230.939 193.821 231.778 195.396 234.443 199.084C235.901 201.102 237.514 203.003 238.989 205.008C247.627 216.745 250.901 217.666 250.567 221.429C250.195 225.604 245.711 229.565 242.731 229.108C241.51 228.921 241.037 228.068 239.407 226.343C234.625 221.285 232.647 222.219 229.243 218.345C225.269 213.821 225.789 210.071 223.715 209.926C221.793 209.792 220.975 212.991 216.87 217.242C214.992 219.187 213.654 220.079 209.579 222.918C193.709 233.973 193.456 234.75 190.253 235.631C188.852 236.017 178.906 238.755 175.363 234.398C169.819 227.58 182.917 207.031 189.336 207.566Z" fill="#2F2E41"/>
<path d="M255.161 233.868C256.057 233.464 257.105 232.992 257.442 231.906C257.67 231.171 257.538 230.265 257.067 229.638C256.523 228.916 255.718 228.821 255.751 228.693C255.8 228.498 257.704 228.574 259.793 229.316C260.188 229.456 261.974 230.111 264.246 231.893C266.067 233.32 265.822 233.606 266.963 234.429C270.467 236.955 273.754 234.964 275.65 237.333C276.382 238.247 276.694 239.545 276.386 240.594C275.768 242.702 272.76 243.427 271.116 243.802C267.158 244.704 264.161 243.968 261.032 243.438C250.392 241.638 244.413 243.278 243.613 240.802C243.462 240.334 243.708 240.374 244.528 236.936C245.338 233.543 245.311 232.611 246.001 232.339C247.039 231.93 247.736 233.791 250.351 234.427C252.669 234.992 254.581 234.129 255.161 233.868Z" fill="#2F2E41"/>
<path d="M237.231 272L234.154 254.773L225.268 256.677L226.064 271.727L232.934 277.657L237.231 272Z" fill="#FFB6B6"/>
<path d="M192.811 213.358C193.367 213.808 194.986 215.462 197.445 215.693C199.123 215.85 200.428 215.274 200.856 215.099C206.158 212.928 220.411 213.621 229.714 219.405C231.82 220.714 233.008 221.872 233.8 223.348C234.923 225.442 234.736 227.218 234.878 231.773C234.956 234.264 235.228 236.746 235.327 239.237C235.911 253.819 238.105 256.428 235.724 259.353C233.082 262.598 227.156 263.347 224.946 261.288C224.041 260.445 224.126 259.474 223.741 257.127C222.614 250.245 220.454 249.903 219.804 244.778C219.045 238.794 221.574 235.984 219.939 234.695C218.423 233.499 215.957 235.686 210.183 236.888C207.541 237.439 205.936 237.423 200.976 237.474C181.662 237.673 181.018 238.173 177.875 237.097C176.5 236.626 166.739 233.284 166.244 227.681C165.47 218.913 187.799 209.295 192.811 213.358Z" fill="#2F2E41"/>
<path d="M232.568 272.24C233.535 272.411 234.665 272.61 235.552 271.902C236.151 271.422 236.549 270.599 236.509 269.815C236.463 268.91 235.851 268.378 235.949 268.29C236.099 268.157 237.631 269.293 238.946 271.085C239.194 271.423 240.305 272.973 241.189 275.728C241.898 277.935 241.535 278.034 242.019 279.358C243.506 283.424 247.339 283.63 247.583 286.66C247.678 287.829 247.21 289.079 246.368 289.773C244.678 291.169 241.784 290.073 240.214 289.456C236.434 287.97 234.366 285.671 232.073 283.469C224.276 275.98 218.412 273.966 219.134 271.466C219.271 270.993 219.452 271.165 222.053 268.783C224.621 266.432 225.12 265.646 225.843 265.81C226.93 266.057 226.467 267.989 228.274 269.991C229.876 271.764 231.941 272.129 232.568 272.24Z" fill="#2F2E41"/>
<path d="M167.873 153.529C168.334 151.875 167.755 151.272 168.345 150.53C168.345 150.53 168.582 150.231 170.703 149.425C170.077 145.78 170.546 145.164 170.546 145.164C171.085 144.453 172.167 144.281 172.903 144.374C174.461 144.571 174.736 145.984 175.733 145.953C177.109 145.909 178.76 143.142 178.248 140.744C177.83 138.788 176.027 137.336 175.575 137.588C175.127 137.838 173.515 136.735 172.903 136.956C172.486 137.107 170.52 136.906 170.074 137.114C169.587 137.341 168.193 138.753 168.06 138.575C167.134 137.339 167.153 136.907 166.616 136.641C165.664 136.169 164.628 137.041 162.843 137.903C159.171 139.677 158.095 138.619 156.399 140.113C155.542 140.868 155.082 142.31 154.198 145.164C152.962 149.154 152.344 151.15 152.941 153.055C153.55 154.998 154.446 154.575 155.77 157.317C157.243 160.368 156.736 162.142 158.128 162.841C159.204 163.381 160.933 163.037 161.586 162.052C162.704 160.364 159.815 158.082 160.8 155.423C161.405 153.79 163.271 152.553 164.415 152.897C165.709 153.287 165.804 155.617 166.616 155.58C167.311 155.55 167.793 153.817 167.873 153.529Z" fill="#2F2E41"/>
<path d="M158.914 164.894C161.334 162.17 171.192 164.99 172.117 169.314C172.498 171.092 171.093 171.843 171.489 173.891C172.067 176.886 175.344 176.682 177.776 179.731C181.229 184.059 177.672 188.29 181.549 195.514C182.377 197.057 183.075 198.358 184.535 199.617C187.885 202.507 191.003 201.516 192.709 204.195C193.984 206.198 193.46 208.667 193.337 209.245C192.834 211.617 191.47 212.195 190.508 214.138C188.909 217.371 190.72 219.745 190.823 223.608C190.951 228.441 188.393 235.141 183.278 237.339C177.53 239.809 170.599 235.719 167.245 231.657C165.243 229.234 164.662 226.998 163.787 224.239C159.873 211.908 157.662 213.023 154.67 203.248C151.249 192.073 150.576 178.981 154.67 174.838C155.212 174.289 156.706 173.019 157.656 170.734C158.936 167.659 157.83 166.114 158.914 164.894Z" fill="#87A6FC"/>
<path d="M194.675 228.325C196.551 230.719 196.842 233.631 195.325 234.83C193.807 236.029 191.057 235.06 189.18 232.665C188.417 231.719 187.891 230.603 187.646 229.41L179.823 219.166L183.865 216.07L191.884 226.062C192.981 226.581 193.938 227.357 194.675 228.325Z" fill="#FFB6B6"/>
<path d="M166.025 175.276C166.373 175.198 169.419 174.564 171.813 176.425C174.564 178.562 174.43 182.419 174.384 183.771C174.276 186.896 173.056 187.405 172.331 190.47C170.974 196.204 173.558 201.533 174.986 204.477C175.481 205.496 177.069 208.614 180.23 211.972C186.377 218.503 191.863 221.94 191.863 221.94L185.97 227.2C185.97 227.2 176.583 224.327 170.223 218.571C163.699 212.667 153.665 191.778 151.586 186.69C151.406 186.251 153.944 193.376 158.788 182.939C159.893 180.559 161.918 176.197 166.025 175.276Z" fill="#87A6FC"/>
<path d="M166.425 323.361C166.425 323.718 166.71 324.004 167.065 324.004H447.935C448.29 324.004 448.575 323.718 448.575 323.361C448.575 323.005 448.29 322.719 447.935 322.719H167.065C166.71 322.719 166.425 323.005 166.425 323.361Z" fill="#3F3D56"/>
<mask id="mask0_5991_38505" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="284" y="108" width="47" height="27">
<path fill-rule="evenodd" clip-rule="evenodd" d="M284.122 108.016H330.857V134.753L307.647 131.98L284.122 134.753V108.016Z" fill="white"/>
</mask>
<g mask="url(#mask0_5991_38505)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M322.929 145.405V130.992C322.929 122.916 316.391 116.37 308.325 116.37C300.259 116.37 293.72 122.916 293.72 130.992V145.405C293.72 153.48 300.259 160.027 308.325 160.027C316.391 160.027 322.929 153.48 322.929 145.405ZM308.325 109.477C296.456 109.477 286.835 119.109 286.835 130.992V145.405C286.835 157.287 296.456 166.92 308.325 166.92C320.193 166.92 329.814 157.287 329.814 145.405V130.992C329.814 119.109 320.193 109.477 308.325 109.477Z" fill="#87A6FC"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M278.161 144.598C278.161 138.512 283.106 133.578 289.208 133.578C293.82 133.578 299.521 133.578 305.603 133.578C312.812 133.578 320.584 133.578 326.677 133.578C332.779 133.578 337.72 138.512 337.72 144.598V170.429C337.72 176.516 332.777 181.449 326.676 181.449C321.72 181.449 315.552 181.449 309.149 181.449C302.163 181.449 294.929 181.449 289.209 181.449C283.107 181.449 278.161 176.516 278.161 170.429V144.598Z" fill="#87A6FC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M311.296 157.395C313.552 156.088 315.071 153.646 315.071 150.848C315.071 146.673 311.691 143.289 307.521 143.289C303.351 143.289 299.971 146.673 299.971 150.848C299.971 153.646 301.49 156.088 303.746 157.395L298.353 166.747C297.585 168.08 298.547 169.746 300.086 169.746H314.956C316.495 169.746 317.457 168.08 316.689 166.747L311.296 157.395Z" fill="#132A6A"/>
</g>
<g filter="url(#filter0_d_5991_38505)">
<ellipse cx="127" cy="150" rx="7" ry="5" fill="#3E3B43"/>
</g>
<g filter="url(#filter1_d_5991_38505)">
<ellipse cx="107" cy="140" rx="7" ry="5" fill="#3E3B43"/>
</g>
<g filter="url(#filter2_d_5991_38505)">
<ellipse cx="91.5" cy="124.5" rx="10.5" ry="7.5" fill="#3E3B43"/>
</g>
<g filter="url(#filter3_d_5991_38505)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.5935 70.0354C28.5917 69.9331 28.5908 69.8307 28.5908 69.728C28.5908 59.9371 36.548 52 46.3636 52C53.4968 52 59.6486 56.1918 62.4781 62.2407C65.7293 58.671 70.4205 56.4297 75.6364 56.4297C85.452 56.4297 93.4091 64.3668 93.4091 74.1577C93.4091 74.3217 93.4069 74.4852 93.4025 74.6482C101.204 76.5216 107 83.5277 107 91.8843C107 101.675 99.0429 109.612 89.2273 109.612C86.5464 109.612 84.0041 109.02 81.7247 107.96C78.6781 113.357 72.8795 117.003 66.2273 117.003C59.7251 117.003 54.0385 113.52 50.9402 108.323C48.8813 109.154 46.6306 109.612 44.2727 109.612C34.4571 109.612 26.5 101.675 26.5 91.8843L26.5 91.8664C26.3268 91.8746 26.1525 91.8788 25.9773 91.8788C19.9147 91.8788 15 86.9181 15 80.7988C15 74.6794 19.9147 69.7188 25.9773 69.7188C26.8789 69.7188 27.755 69.8285 28.5935 70.0354ZM60.0335 82.6531C59.8526 82.3233 59.6819 81.9872 59.5219 81.645C59.3821 81.7986 59.2396 81.9496 59.0945 82.0981C59.2555 82.3402 59.4106 82.5864 59.5598 82.8366C59.7166 82.7733 59.8745 82.7121 60.0335 82.6531Z" fill="#3E3B43"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M48.4987 72.4052C50.8571 72.9728 53.5699 76.4108 52.322 81.5961C51.0741 86.7813 47.0942 88.6087 44.7358 88.0411C42.3774 87.4735 39.6647 84.0355 40.9125 78.8503C42.1604 73.665 46.1403 71.8377 48.4987 72.4052ZM57.5596 80.4678C58.098 74.3289 54.8618 68.7938 49.6686 67.544C43.8332 66.1397 37.7365 70.6779 36.0513 77.6804C34.3661 84.6829 37.7305 91.498 43.5659 92.9023C48.6575 94.1277 53.948 90.8288 56.3335 85.3164L75.0138 89.6071L74.1615 93.7255C73.8817 95.0776 74.7509 96.4005 76.103 96.6803C77.4551 96.9601 78.778 96.0908 79.0578 94.7388L79.8881 90.7267L81.5285 91.1035L79.9897 98.4476C79.7065 99.799 80.5725 101.124 81.9239 101.407C83.2752 101.69 84.6003 100.824 84.8834 99.473L86.9251 89.7286C87.2045 88.3956 86.3653 87.0843 85.0379 86.7794L78.5173 85.2816L57.5596 80.4678Z" fill="#DACDFB"/>
<defs>
<filter id="filter0_d_5991_38505" x="105" y="134" width="44" height="40" 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 dy="4"/>
<feGaussianBlur stdDeviation="7.5"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.8 0 0 0 0 0.8 0 0 0 0 0.8 0 0 0 0.15 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_5991_38505"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_5991_38505" result="shape"/>
</filter>
<filter id="filter1_d_5991_38505" x="85" y="124" width="44" height="40" 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 dy="4"/>
<feGaussianBlur stdDeviation="7.5"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.8 0 0 0 0 0.8 0 0 0 0 0.8 0 0 0 0.15 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_5991_38505"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_5991_38505" result="shape"/>
</filter>
<filter id="filter2_d_5991_38505" x="66" y="106" width="51" height="45" 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 dy="4"/>
<feGaussianBlur stdDeviation="7.5"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.8 0 0 0 0 0.8 0 0 0 0 0.8 0 0 0 0.15 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_5991_38505"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_5991_38505" result="shape"/>
</filter>
<filter id="filter3_d_5991_38505" x="0" y="41" width="122" height="95" 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 dy="4"/>
<feGaussianBlur stdDeviation="7.5"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.645833 0 0 0 0 0.645833 0 0 0 0 0.645833 0 0 0 0.1 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_5991_38505"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_5991_38505" result="shape"/>
</filter>
<clipPath id="clip0_5991_38505">
<rect width="321" height="273" fill="white" transform="translate(147 51)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,18 @@
<svg width="32" height="33" viewBox="0 0 32 33" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_30430_70226)">
<path d="M2.65952 11.9762C2.29528 11.7262 2.20273 11.2282 2.4528 10.8639L5.4511 6.49681C5.70117 6.13257 6.19918 6.04001 6.56342 6.29009L11.5098 9.68612C11.8741 9.93619 11.9666 10.4342 11.7166 10.7984L8.71826 15.1655C8.46819 15.5298 7.97018 15.6223 7.60594 15.3723L2.65952 11.9762Z" fill="#D5D5D5"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.65952 11.9762C2.4774 11.8512 2.53249 11.4546 2.78256 11.0903L5.78086 6.72321C6.03094 6.35897 6.3813 6.16505 6.56342 6.29009C6.19918 6.04001 5.70117 6.13257 5.4511 6.49681L2.4528 10.8639C2.20273 11.2282 2.29528 11.7262 2.65952 11.9762Z" fill="black"/>
<path d="M10.1165 7.88556C10.6075 7.15096 11.6032 6.9509 12.3402 7.43829L27.1771 17.2508C27.2031 17.268 27.2276 17.287 27.2523 17.3055C28.1259 17.8945 28.8408 18.7331 29.2718 19.7742C30.4548 22.6318 29.0597 25.923 26.1566 27.1248C24.2488 27.9145 22.1642 27.6058 20.6234 26.49L6.05111 16.8524C5.31406 16.3649 5.11395 15.3742 5.60483 14.6395L10.1165 7.88556ZM27.8031 19.0955C27.7593 19.2223 27.7015 19.3468 27.6234 19.4637L23.1107 26.2166C23.0375 26.3261 22.9518 26.4223 22.8587 26.5076C23.816 26.7492 24.8608 26.6949 25.849 26.2859C28.2613 25.2873 29.4208 22.553 28.4378 20.1785C28.2731 19.7805 28.0573 19.4187 27.8031 19.0955Z" fill="url(#paint0_linear_30430_70226)"/>
<path d="M16.8044 21.2649C16.5888 21.1229 16.5292 20.833 16.6711 20.6174L19.8237 15.8305C19.9657 15.6149 20.2556 15.5552 20.4712 15.6972C20.6867 15.8392 20.7464 16.129 20.6044 16.3446L17.4519 21.1316C17.3099 21.3472 17.02 21.4069 16.8044 21.2649Z" fill="#DACDFB"/>
<path d="M19.1635 21.6321C18.961 21.4987 18.905 21.2265 19.0383 21.024L20.8988 18.199C21.0321 17.9965 21.3044 17.9405 21.5069 18.0738C21.7094 18.2072 21.7654 18.4794 21.632 18.6819L19.7716 21.5069C19.6383 21.7094 19.366 21.7654 19.1635 21.6321Z" fill="#DACDFB"/>
</g>
<defs>
<linearGradient id="paint0_linear_30430_70226" x1="14.9887" y1="14.8016" x2="23.6547" y2="28.8011" gradientUnits="userSpaceOnUse">
<stop stop-color="#6939CB"/>
<stop offset="1" stop-color="#9170D3"/>
</linearGradient>
<clipPath id="clip0_30430_70226">
<rect width="32" height="32" fill="white" transform="translate(0 0.5)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,18 @@
<svg width="32" height="33" viewBox="0 0 32 33" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_30567_75892)">
<path d="M2.65952 11.9762C2.29528 11.7262 2.20273 11.2282 2.4528 10.8639L5.4511 6.49681C5.70117 6.13257 6.19918 6.04001 6.56342 6.29009L11.5098 9.68612C11.8741 9.93619 11.9666 10.4342 11.7166 10.7984L8.71826 15.1655C8.46819 15.5298 7.97018 15.6223 7.60594 15.3723L2.65952 11.9762Z" fill="#D5D5D5"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.65952 11.9762C2.4774 11.8512 2.53249 11.4546 2.78256 11.0903L5.78086 6.72321C6.03094 6.35897 6.3813 6.16505 6.56342 6.29009C6.19918 6.04001 5.70117 6.13257 5.4511 6.49681L2.4528 10.8639C2.20273 11.2282 2.29528 11.7262 2.65952 11.9762Z" fill="black"/>
<path d="M10.1165 7.88556C10.6075 7.15096 11.6032 6.9509 12.3402 7.43829L27.1771 17.2508C27.2031 17.268 27.2276 17.287 27.2523 17.3055C28.1259 17.8945 28.8408 18.7331 29.2718 19.7742C30.4548 22.6318 29.0597 25.923 26.1566 27.1248C24.2488 27.9145 22.1642 27.6058 20.6234 26.49L6.05111 16.8524C5.31406 16.3649 5.11395 15.3742 5.60483 14.6395L10.1165 7.88556ZM27.8031 19.0955C27.7593 19.2223 27.7015 19.3468 27.6234 19.4637L23.1107 26.2166C23.0375 26.3261 22.9518 26.4223 22.8587 26.5076C23.816 26.7492 24.8608 26.6949 25.849 26.2859C28.2613 25.2873 29.4208 22.553 28.4378 20.1785C28.2731 19.7805 28.0573 19.4187 27.8031 19.0955Z" fill="url(#paint0_linear_30567_75892)"/>
<path d="M16.8044 21.2649C16.5888 21.1229 16.5292 20.833 16.6711 20.6174L19.8237 15.8305C19.9657 15.6149 20.2556 15.5552 20.4712 15.6972C20.6867 15.8392 20.7464 16.129 20.6044 16.3446L17.4519 21.1316C17.3099 21.3472 17.02 21.4069 16.8044 21.2649Z" fill="#DACDFB"/>
<path d="M19.1635 21.6321C18.961 21.4987 18.905 21.2265 19.0383 21.024L20.8988 18.199C21.0321 17.9965 21.3044 17.9405 21.5069 18.0738C21.7094 18.2072 21.7654 18.4794 21.632 18.6819L19.7716 21.5069C19.6383 21.7094 19.366 21.7654 19.1635 21.6321Z" fill="#DACDFB"/>
</g>
<defs>
<linearGradient id="paint0_linear_30567_75892" x1="14.9887" y1="14.8016" x2="23.6547" y2="28.8011" gradientUnits="userSpaceOnUse">
<stop stop-color="#6939CB"/>
<stop offset="1" stop-color="#9170D3"/>
</linearGradient>
<clipPath id="clip0_30567_75892">
<rect width="32" height="32" fill="white" transform="translate(0 0.5)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,3 @@
<svg width="470" height="1" viewBox="0 0 470 1" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="470" height="1" rx="0.5" fill="#ECECEC"/>
</svg>

After

Width:  |  Height:  |  Size: 158 B

View File

@ -0,0 +1,3 @@
<svg width="204" height="1" viewBox="0 0 204 1" fill="none" xmlns="http://www.w3.org/2000/svg">
<ellipse cx="102" cy="0.5" rx="102" ry="0.5" fill="#C1C1C1"/>
</svg>

After

Width:  |  Height:  |  Size: 165 B

View File

@ -0,0 +1,21 @@
<svg width="553" height="470" viewBox="0 0 553 470" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M82.9375 17.7995C159.261 -50.9248 232.106 130.131 346.601 31.5634C461.097 -67.0038 542.967 86.3497 511.584 202.712C480.202 319.075 584.053 369.862 521.606 426.285C459.16 482.709 338.546 373.1 201.663 432.455C64.7813 491.809 -20.3694 317.584 48.245 226.612C116.859 135.64 6.61379 86.5238 82.9375 17.7995Z" fill="#453F4F"/>
<path d="M246.498 153.179C252.441 152.097 256.382 146.401 255.299 140.458C254.217 134.516 248.522 130.575 242.579 131.657C236.636 132.74 232.696 138.435 233.778 144.378C234.86 150.321 240.555 154.261 246.498 153.179Z" fill="#87A6FC"/>
<path d="M553 324.5C553 324.776 552.685 325 552.296 325H0V324H552.296C552.685 324 553 324.224 553 324.5Z" fill="#8F8F8F"/>
<path d="M328.088 176.633C328.088 176.633 329.703 196.602 329.904 195.664C330.104 194.725 341.998 191.873 341.998 191.873L338.105 173.379L328.088 176.633Z" fill="#FFB6B6"/>
<path d="M334.054 185.983C343.388 185.983 350.956 178.416 350.956 169.081C350.956 159.747 343.388 152.18 334.054 152.18C324.72 152.18 317.152 159.747 317.152 169.081C317.152 178.416 324.72 185.983 334.054 185.983Z" fill="#FFB6B6"/>
<path d="M343.01 189.547L320.763 195.903L317.585 203.054L310.434 237.219V291.247C310.434 291.247 301.694 310.316 306.462 327.001C311.557 344.836 329.503 323.785 343.01 326.188C356.517 328.59 377.969 330.974 377.969 330.974L365.257 272.973L362.079 202.259L343.01 189.547Z" fill="#C3D3FD"/>
<path d="M338.812 174.616L335.376 172.898C335.376 172.898 334.517 165.166 332.799 163.448C331.08 161.73 331.08 160.871 331.08 160.871L333.658 157.434C333.658 157.434 320.772 164.307 318.195 160.012C315.617 155.716 319.054 153.998 319.054 153.998L314.758 150.562C314.758 150.562 319.913 153.998 320.772 151.421C321.631 148.844 326.785 147.095 326.785 147.095C326.785 147.095 338.041 149.642 337.138 147.095C336.235 144.549 339.671 147.126 340.53 147.985C341.389 148.844 349.121 157.434 349.98 156.575C350.839 155.716 355.134 158.293 354.275 159.153C353.416 160.012 353.416 160.871 354.275 161.73C355.134 162.589 360.289 172.038 355.993 175.475C351.698 178.911 345.684 183.206 346.544 186.643C347.403 190.079 346.544 175.475 338.812 174.616Z" fill="black"/>
<path d="M304.432 181.11C305.907 175.576 309.959 171.852 313.48 172.791C317.002 173.73 318.661 178.977 317.184 184.513C316.625 186.733 315.542 188.786 314.026 190.501L307.48 213.871L296.579 210.565L304.19 187.878C303.729 185.635 303.812 183.314 304.432 181.11Z" fill="#FFB6B6"/>
<path d="M344.032 231.137L350.231 241.441L309.727 272.722C302.01 278.683 290.897 277.113 285.132 269.248L279.944 262.17L299.564 191.546L315.126 192.94L309.902 240.546L344.032 231.137Z" fill="#C3D3FD"/>
<path d="M291.04 426.078C291.04 426.078 281.542 443.718 282.22 443.039C282.899 442.361 294.432 446.432 294.432 446.432L301.217 428.792L291.04 426.078Z" fill="#FFB6B6"/>
<path d="M277.021 302.602C277.021 302.602 272.159 322.037 272.649 321.213C273.14 320.388 285.321 321.493 285.321 321.493L287.552 302.726L277.021 302.602Z" fill="#FFB6B6"/>
<path d="M361.6 299.336C340.134 302.352 320.746 299.722 304.949 287.336C304.949 287.336 293.415 326.008 314.447 330.079C335.479 334.149 358.886 327.153 361.6 320.368C364.313 313.584 361.6 299.336 361.6 299.336Z" fill="#3E3B43"/>
<path d="M321.571 311.547L298.164 366.714L287.309 430.489L301.556 433.881L327.041 375.194L361.6 319.01L321.571 311.547Z" fill="#3E3B43"/>
<path d="M318.518 295.815C318.518 295.815 313.09 253.75 302.913 251.037C297.952 249.714 293.313 249.842 289.861 250.321C286.383 250.803 283.609 253.461 283.001 256.92L273.753 309.511H286.831L291.04 295.263L302.235 314.811L318.518 295.815Z" fill="#3E3B43"/>
<path d="M285.273 316.167L272.343 314.81L270.347 322.273C270.347 322.273 249.315 341.27 260.171 342.627C271.026 343.983 281.203 336.52 281.203 336.52L296.135 327.954C296.135 327.954 290.362 312.562 286.291 312.562C282.22 312.562 285.273 316.167 285.273 316.167Z" fill="#3E3B43"/>
<path d="M292.058 443.376L279.127 442.02L277.132 449.483C277.132 449.483 256.1 468.479 266.955 469.836C277.81 471.193 287.987 463.73 287.987 463.73L302.92 455.164C302.92 455.164 301.896 439.094 297.825 439.094C293.754 439.094 292.058 443.376 292.058 443.376Z" fill="#3E3B43"/>
<path d="M357.53 340.669C355.971 346.017 351.949 349.546 348.546 348.554C345.143 347.561 343.649 342.422 345.21 337.073C345.804 334.928 346.903 332.956 348.415 331.323L355.307 308.75L365.831 312.21L357.919 334.095C358.316 336.286 358.183 338.541 357.53 340.669Z" fill="#FFB6B6"/>
<path d="M364.815 202.36L359.327 200.812C354.153 211.108 351.928 222.634 352.898 234.115L355.607 266.152L346.67 322.462L364.186 326.993L377.988 256.327L364.815 202.36Z" fill="#C3D3FD"/>
<path d="M223.655 31.668C206.954 34.8304 195.712 50.778 198.49 67.3761C198.515 67.5294 198.71 68.6043 198.966 70.0099C199.342 72.0708 200.528 73.8968 202.266 75.0861C204.003 76.2754 206.149 76.7307 208.23 76.3519C209.262 76.1637 210.247 75.7761 211.129 75.2111C212.011 74.6462 212.773 73.9151 213.371 73.0594C213.968 72.2038 214.39 71.2405 214.613 70.2245C214.835 69.2085 214.853 68.1599 214.666 67.1384C214.491 66.1823 214.37 65.5206 214.363 65.48C213.896 62.9215 214.11 60.2845 214.984 57.8283C215.858 55.3721 217.362 53.1813 219.347 51.4715C221.332 49.7616 223.73 48.5916 226.306 48.0765C228.882 47.5614 231.546 47.7189 234.037 48.5336C236.528 49.3483 238.76 50.7922 240.512 52.7231C242.265 54.6539 243.479 57.0054 244.034 59.5461C244.589 62.0868 244.467 64.7292 243.678 67.2135C242.89 69.6977 241.464 71.9382 239.539 73.7145L239.542 73.7173C239.542 73.7173 229.667 82.8723 228.04 93.2606L228.043 93.2608C227.809 95.3709 227.883 97.5025 228.265 99.5893C228.421 100.447 229.839 107.944 231.047 114.019C231.464 116.115 232.697 117.962 234.48 119.16C236.262 120.359 238.451 120.814 240.575 120.427C241.642 120.232 242.66 119.831 243.572 119.246C244.483 118.66 245.269 117.903 245.885 117.016C246.5 116.13 246.934 115.133 247.159 114.081C247.385 113.03 247.399 111.945 247.2 110.89C246.149 105.316 244.948 98.8227 244.862 98.3512C243.769 92.3533 248.525 85.3129 252.616 80.5415C257.327 75.0471 260.191 68.207 260.533 61.0173C260.628 59.5327 260.558 58.0427 260.324 56.5743C259.59 52.541 258.056 48.6945 255.813 45.2562C253.569 41.8179 250.659 38.8558 247.25 36.5407C243.842 34.2256 240.002 32.6031 235.953 31.7669C231.903 30.9306 227.724 30.897 223.655 31.668Z" fill="#87A6FC"/>
</svg>

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@ -0,0 +1,21 @@
<svg width="553" height="470" viewBox="0 0 553 470" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M82.9375 17.7995C159.261 -50.9248 232.106 130.131 346.601 31.5634C461.097 -67.0038 542.967 86.3497 511.584 202.712C480.202 319.075 584.053 369.862 521.606 426.285C459.16 482.709 338.546 373.1 201.663 432.455C64.7813 491.809 -20.3694 317.584 48.245 226.612C116.859 135.64 6.61379 86.5238 82.9375 17.7995Z" fill="white"/>
<path d="M246.498 153.179C252.441 152.097 256.382 146.401 255.299 140.458C254.217 134.516 248.522 130.575 242.579 131.657C236.636 132.74 232.696 138.435 233.778 144.378C234.86 150.321 240.555 154.261 246.498 153.179Z" fill="#87A6FC"/>
<path d="M553 324.5C553 324.776 552.685 325 552.296 325H0V324H552.296C552.685 324 553 324.224 553 324.5Z" fill="#E2E2E2"/>
<path d="M328.088 176.633C328.088 176.633 329.703 196.602 329.904 195.664C330.104 194.725 341.998 191.873 341.998 191.873L338.105 173.379L328.088 176.633Z" fill="#FFB6B6"/>
<path d="M334.054 185.983C343.388 185.983 350.956 178.416 350.956 169.081C350.956 159.747 343.388 152.18 334.054 152.18C324.72 152.18 317.152 159.747 317.152 169.081C317.152 178.416 324.72 185.983 334.054 185.983Z" fill="#FFB6B6"/>
<path d="M343.01 189.547L320.763 195.903L317.585 203.054L310.434 237.219V291.247C310.434 291.247 301.694 310.316 306.462 327.001C311.557 344.836 329.503 323.785 343.01 326.188C356.517 328.59 377.969 330.974 377.969 330.974L365.257 272.973L362.079 202.259L343.01 189.547Z" fill="#E6E6E6"/>
<path d="M338.812 174.616L335.376 172.898C335.376 172.898 334.517 165.166 332.799 163.448C331.08 161.73 331.08 160.871 331.08 160.871L333.658 157.434C333.658 157.434 320.772 164.307 318.195 160.012C315.617 155.716 319.054 153.998 319.054 153.998L314.758 150.562C314.758 150.562 319.913 153.998 320.772 151.421C321.631 148.844 326.785 147.095 326.785 147.095C326.785 147.095 338.041 149.642 337.138 147.095C336.235 144.549 339.671 147.126 340.53 147.985C341.389 148.844 349.121 157.434 349.98 156.575C350.839 155.716 355.134 158.293 354.275 159.153C353.416 160.012 353.416 160.871 354.275 161.73C355.134 162.589 360.289 172.038 355.993 175.475C351.698 178.911 345.684 183.206 346.544 186.643C347.403 190.079 346.544 175.475 338.812 174.616Z" fill="#2F2E41"/>
<path d="M304.432 181.11C305.907 175.576 309.959 171.852 313.48 172.791C317.002 173.73 318.661 178.977 317.184 184.513C316.625 186.733 315.542 188.786 314.026 190.501L307.48 213.871L296.579 210.565L304.19 187.878C303.729 185.635 303.812 183.314 304.432 181.11Z" fill="#FFB6B6"/>
<path d="M344.032 231.137L350.231 241.441L309.727 272.722C302.01 278.683 290.897 277.113 285.132 269.248L279.944 262.17L299.564 191.546L315.126 192.94L309.902 240.546L344.032 231.137Z" fill="#E6E6E6"/>
<path d="M291.04 426.078C291.04 426.078 281.542 443.718 282.22 443.039C282.899 442.361 294.432 446.432 294.432 446.432L301.217 428.792L291.04 426.078Z" fill="#FFB6B6"/>
<path d="M277.021 302.602C277.021 302.602 272.159 322.037 272.649 321.213C273.14 320.388 285.321 321.493 285.321 321.493L287.552 302.726L277.021 302.602Z" fill="#FFB6B6"/>
<path d="M361.6 299.336C340.134 302.352 320.746 299.722 304.949 287.336C304.949 287.336 293.415 326.008 314.447 330.079C335.479 334.149 358.886 327.153 361.6 320.368C364.313 313.584 361.6 299.336 361.6 299.336Z" fill="#2F2E41"/>
<path d="M321.571 311.547L298.164 366.714L287.309 430.489L301.556 433.881L327.041 375.194L361.6 319.01L321.571 311.547Z" fill="#2F2E41"/>
<path d="M318.518 295.815C318.518 295.815 313.09 253.75 302.913 251.037C297.952 249.714 293.313 249.842 289.861 250.321C286.383 250.803 283.609 253.461 283.001 256.92L273.753 309.511H286.831L291.04 295.263L302.235 314.811L318.518 295.815Z" fill="#2F2E41"/>
<path d="M285.273 316.167L272.343 314.81L270.347 322.273C270.347 322.273 249.315 341.27 260.171 342.627C271.026 343.983 281.203 336.52 281.203 336.52L296.135 327.954C296.135 327.954 290.362 312.562 286.291 312.562C282.22 312.562 285.273 316.167 285.273 316.167Z" fill="#2F2E41"/>
<path d="M292.058 443.376L279.127 442.02L277.132 449.483C277.132 449.483 256.1 468.479 266.955 469.836C277.81 471.193 287.987 463.73 287.987 463.73L302.92 455.164C302.92 455.164 301.896 439.094 297.825 439.094C293.754 439.094 292.058 443.376 292.058 443.376Z" fill="#2F2E41"/>
<path d="M357.53 340.669C355.971 346.017 351.949 349.546 348.546 348.554C345.143 347.561 343.649 342.422 345.21 337.073C345.804 334.928 346.903 332.956 348.415 331.323L355.307 308.75L365.831 312.21L357.919 334.095C358.316 336.286 358.183 338.541 357.53 340.669Z" fill="#FFB6B6"/>
<path d="M364.815 202.36L359.327 200.812C354.153 211.108 351.928 222.634 352.898 234.115L355.607 266.152L346.67 322.462L364.186 326.993L377.988 256.327L364.815 202.36Z" fill="#E6E6E6"/>
<path d="M223.655 31.668C206.954 34.8304 195.712 50.778 198.49 67.3761C198.515 67.5294 198.71 68.6043 198.966 70.0099C199.342 72.0708 200.528 73.8968 202.266 75.0861C204.003 76.2754 206.149 76.7307 208.23 76.3519C209.262 76.1637 210.247 75.7761 211.129 75.2111C212.011 74.6462 212.773 73.9151 213.371 73.0594C213.968 72.2038 214.39 71.2405 214.613 70.2245C214.835 69.2085 214.853 68.1599 214.666 67.1384C214.491 66.1823 214.37 65.5206 214.363 65.48C213.896 62.9215 214.11 60.2845 214.984 57.8283C215.858 55.3721 217.362 53.1813 219.347 51.4715C221.332 49.7616 223.73 48.5916 226.306 48.0765C228.882 47.5614 231.546 47.7189 234.037 48.5336C236.528 49.3483 238.76 50.7922 240.512 52.7231C242.265 54.6539 243.479 57.0054 244.034 59.5461C244.589 62.0868 244.467 64.7292 243.678 67.2135C242.89 69.6977 241.464 71.9382 239.539 73.7145L239.542 73.7173C239.542 73.7173 229.667 82.8723 228.04 93.2606L228.043 93.2608C227.809 95.3709 227.883 97.5025 228.265 99.5893C228.421 100.447 229.839 107.944 231.047 114.019C231.464 116.115 232.697 117.962 234.48 119.16C236.262 120.359 238.451 120.814 240.575 120.427C241.642 120.232 242.66 119.831 243.572 119.246C244.483 118.66 245.269 117.903 245.885 117.016C246.5 116.13 246.934 115.133 247.159 114.081C247.385 113.03 247.399 111.945 247.2 110.89C246.149 105.316 244.948 98.8227 244.862 98.3512C243.769 92.3533 248.525 85.3129 252.616 80.5415C257.327 75.0471 260.191 68.207 260.533 61.0173C260.628 59.5327 260.558 58.0427 260.324 56.5743C259.59 52.541 258.056 48.6945 255.813 45.2562C253.569 41.8179 250.659 38.8558 247.25 36.5407C243.842 34.2256 240.002 32.6031 235.953 31.7669C231.903 30.9306 227.724 30.897 223.655 31.668Z" fill="#87A6FC"/>
</svg>

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@ -0,0 +1,4 @@
<svg width="110" height="110" viewBox="0 0 110 110" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.8" d="M110 55C110 85.3757 85.3757 110 55 110C24.6243 110 0 85.3757 0 55C0 24.6243 24.6243 0 55 0C85.3757 0 110 24.6243 110 55ZM17.1499 55C17.1499 75.904 34.096 92.8501 55 92.8501C75.904 92.8501 92.8501 75.904 92.8501 55C92.8501 34.096 75.904 17.1499 55 17.1499C34.096 17.1499 17.1499 34.096 17.1499 55Z" fill="#DACDFB" fill-opacity="0.7"/>
<path d="M101.425 55C106.161 55 110.068 51.1381 109.333 46.4597C108.66 42.176 107.48 37.9771 105.813 33.9524C103.049 27.2795 98.9981 21.2163 93.8909 16.1091C88.7837 11.0019 82.7205 6.95063 76.0476 4.18663C72.0229 2.51955 67.824 1.34044 63.5403 0.66711C58.8619 -0.0682658 55 3.83914 55 8.57497C55 13.3108 58.887 17.0534 63.5018 18.1171C65.5409 18.5871 67.5422 19.2265 69.4846 20.0311C74.0768 21.9332 78.2493 24.7213 81.764 28.236C85.2787 31.7507 88.0668 35.9232 89.9689 40.5154C90.7735 42.4578 91.4128 44.4591 91.8829 46.4982C92.9466 51.113 96.6892 55 101.425 55Z" fill="#DACDFB"/>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,4 @@
<svg width="110" height="110" viewBox="0 0 110 110" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.8" d="M110 55C110 85.3757 85.3757 110 55 110C24.6243 110 0 85.3757 0 55C0 24.6243 24.6243 0 55 0C85.3757 0 110 24.6243 110 55ZM17.1499 55C17.1499 75.904 34.096 92.8501 55 92.8501C75.904 92.8501 92.8501 75.904 92.8501 55C92.8501 34.096 75.904 17.1499 55 17.1499C34.096 17.1499 17.1499 34.096 17.1499 55Z" fill="#9268E9"/>
<path d="M101.425 55C106.161 55 110.068 51.1381 109.333 46.4597C108.66 42.176 107.48 37.9771 105.813 33.9524C103.049 27.2795 98.9981 21.2163 93.8909 16.1091C88.7837 11.0019 82.7205 6.95063 76.0476 4.18663C72.0229 2.51955 67.824 1.34044 63.5403 0.66711C58.8619 -0.0682658 55 3.83914 55 8.57497C55 13.3108 58.887 17.0534 63.5018 18.1171C65.5409 18.5871 67.5422 19.2265 69.4846 20.0311C74.0768 21.9332 78.2493 24.7213 81.764 28.236C85.2787 31.7507 88.0668 35.9232 89.9689 40.5154C90.7735 42.4578 91.4128 44.4591 91.8829 46.4982C92.9466 51.113 96.6892 55 101.425 55Z" fill="#501EB6"/>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,22 @@
<svg width="75" height="75" viewBox="0 0 75 75" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_93006_41186)">
<circle cx="37.5" cy="37.5" r="37.5" fill="#453F4F"/>
<path d="M17 23C17 21.8954 17.8954 21 19 21H45C46.1046 21 47 21.8954 47 23C47 24.1046 46.1046 25 45 25H19C17.8954 25 17 24.1046 17 23Z" fill="#DACDFB"/>
<path d="M17 33C17 31.8954 17.8954 31 19 31H45C46.1046 31 47 31.8954 47 33C47 34.1046 46.1046 35 45 35H19C17.8954 35 17 34.1046 17 33Z" fill="#DACDFB"/>
<rect x="17" y="41" width="30" height="4" rx="2" fill="#DACDFB"/>
<rect x="17" y="51" width="30" height="4" rx="2" fill="#DACDFB"/>
<circle cx="54" cy="23" r="4" fill="#8AF8DA"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M56.3201 21.1159C56.5322 21.2927 56.5609 21.608 56.3841 21.8201L53.8841 24.8201C53.7942 24.928 53.663 24.9931 53.5227 24.9995C53.3823 25.0059 53.2458 24.9529 53.1464 24.8536L51.6464 23.3536C51.4512 23.1583 51.4512 22.8417 51.6464 22.6465C51.8417 22.4512 52.1583 22.4512 52.3536 22.6465L53.4664 23.7593L55.6159 21.1799C55.7927 20.9678 56.108 20.9391 56.3201 21.1159Z" fill="#1E1656"/>
<circle cx="54" cy="33" r="4" fill="#8AF8DA"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M56.3201 31.1159C56.5322 31.2927 56.5609 31.608 56.3841 31.8201L53.8841 34.8201C53.7942 34.928 53.663 34.9931 53.5227 34.9995C53.3823 35.0059 53.2458 34.9529 53.1464 34.8536L51.6464 33.3536C51.4512 33.1583 51.4512 32.8417 51.6464 32.6465C51.8417 32.4512 52.1583 32.4512 52.3536 32.6465L53.4664 33.7593L55.6159 31.1799C55.7927 30.9678 56.108 30.9391 56.3201 31.1159Z" fill="#1E1656"/>
<circle cx="54" cy="43" r="4" fill="#8AF8DA"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M56.3201 41.1159C56.5322 41.2927 56.5609 41.608 56.3841 41.8201L53.8841 44.8201C53.7942 44.928 53.663 44.9931 53.5227 44.9995C53.3823 45.0059 53.2458 44.9529 53.1464 44.8536L51.6464 43.3536C51.4512 43.1583 51.4512 42.8417 51.6464 42.6465C51.8417 42.4512 52.1583 42.4512 52.3536 42.6465L53.4664 43.7593L55.6159 41.1799C55.7927 40.9678 56.108 40.9391 56.3201 41.1159Z" fill="#1E1656"/>
<circle cx="54" cy="53" r="4" fill="#8AF8DA"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M56.3201 51.1159C56.5322 51.2927 56.5609 51.608 56.3841 51.8201L53.8841 54.8201C53.7942 54.928 53.663 54.9931 53.5227 54.9995C53.3823 55.0059 53.2458 54.9529 53.1464 54.8536L51.6464 53.3536C51.4512 53.1583 51.4512 52.8417 51.6464 52.6465C51.8417 52.4512 52.1583 52.4512 52.3536 52.6465L53.4664 53.7593L55.6159 51.1799C55.7927 50.9678 56.108 50.9391 56.3201 51.1159Z" fill="#1E1656"/>
</g>
<defs>
<clipPath id="clip0_93006_41186">
<rect width="75" height="75" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -0,0 +1,22 @@
<svg width="75" height="75" viewBox="0 0 75 75" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_93006_40516)">
<circle cx="37.5" cy="37.5" r="37.5" fill="#EFE8FC"/>
<path d="M17 23C17 21.8954 17.8954 21 19 21H45C46.1046 21 47 21.8954 47 23C47 24.1046 46.1046 25 45 25H19C17.8954 25 17 24.1046 17 23Z" fill="#9268E9"/>
<path d="M17 33C17 31.8954 17.8954 31 19 31H45C46.1046 31 47 31.8954 47 33C47 34.1046 46.1046 35 45 35H19C17.8954 35 17 34.1046 17 33Z" fill="#9268E9"/>
<rect x="17" y="41" width="30" height="4" rx="2" fill="#9268E9"/>
<rect x="17" y="51" width="30" height="4" rx="2" fill="#9268E9"/>
<circle cx="54" cy="23" r="4" fill="#51B2BA"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M56.3201 21.1159C56.5322 21.2927 56.5609 21.608 56.3841 21.8201L53.8841 24.8201C53.7942 24.928 53.663 24.9931 53.5227 24.9995C53.3823 25.0059 53.2458 24.9529 53.1464 24.8536L51.6464 23.3536C51.4512 23.1583 51.4512 22.8417 51.6464 22.6465C51.8417 22.4512 52.1583 22.4512 52.3536 22.6465L53.4664 23.7593L55.6159 21.1799C55.7927 20.9678 56.108 20.9391 56.3201 21.1159Z" fill="white"/>
<circle cx="54" cy="33" r="4" fill="#51B2BA"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M56.3201 31.1159C56.5322 31.2927 56.5609 31.608 56.3841 31.8201L53.8841 34.8201C53.7942 34.928 53.663 34.9931 53.5227 34.9995C53.3823 35.0059 53.2458 34.9529 53.1464 34.8536L51.6464 33.3536C51.4512 33.1583 51.4512 32.8417 51.6464 32.6465C51.8417 32.4512 52.1583 32.4512 52.3536 32.6465L53.4664 33.7593L55.6159 31.1799C55.7927 30.9678 56.108 30.9391 56.3201 31.1159Z" fill="white"/>
<circle cx="54" cy="43" r="4" fill="#51B2BA"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M56.3201 41.1159C56.5322 41.2927 56.5609 41.608 56.3841 41.8201L53.8841 44.8201C53.7942 44.928 53.663 44.9931 53.5227 44.9995C53.3823 45.0059 53.2458 44.9529 53.1464 44.8536L51.6464 43.3536C51.4512 43.1583 51.4512 42.8417 51.6464 42.6465C51.8417 42.4512 52.1583 42.4512 52.3536 42.6465L53.4664 43.7593L55.6159 41.1799C55.7927 40.9678 56.108 40.9391 56.3201 41.1159Z" fill="white"/>
<circle cx="54" cy="53" r="4" fill="#51B2BA"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M56.3201 51.1159C56.5322 51.2927 56.5609 51.608 56.3841 51.8201L53.8841 54.8201C53.7942 54.928 53.663 54.9931 53.5227 54.9995C53.3823 55.0059 53.2458 54.9529 53.1464 54.8536L51.6464 53.3536C51.4512 53.1583 51.4512 52.8417 51.6464 52.6465C51.8417 52.4512 52.1583 52.4512 52.3536 52.6465L53.4664 53.7593L55.6159 51.1799C55.7927 50.9678 56.108 50.9391 56.3201 51.1159Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_93006_40516">
<rect width="75" height="75" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -0,0 +1,27 @@
<svg width="572" height="473" viewBox="0 0 572 473" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M85.9375 46.7787C162.261 -21.8654 235.106 158.979 349.601 60.5266C464.097 -37.9257 545.967 115.249 514.584 231.476C483.202 347.703 587.053 398.43 524.606 454.788C462.16 511.146 341.546 401.665 204.663 460.95C67.7812 520.236 -17.3694 346.213 51.245 255.348C119.859 164.482 9.61379 115.423 85.9375 46.7787Z" fill="#453F4F"/>
<g clip-path="url(#clip0_6900_40658)">
<path d="M286 381C352.274 381 406 327.274 406 261C406 194.726 352.274 141 286 141C219.726 141 166 194.726 166 261C166 327.274 219.726 381 286 381Z" fill="#87A6FC"/>
<path d="M286.002 364.003C342.888 364.003 389.003 317.888 389.003 261.002C389.003 204.115 342.888 158 286.002 158C229.115 158 183 204.115 183 261.002C183 317.888 229.115 364.003 286.002 364.003Z" fill="#87A6FC"/>
<path d="M338.369 254.088C333.937 251.71 328.417 253.373 326.039 257.805L317.487 273.735C316.085 271.163 314.413 268.759 312.509 266.559V208.283C312.509 204.092 309.111 200.695 304.921 200.695C300.73 200.695 297.332 204.092 297.332 208.283V255.593C296.156 255.106 294.952 254.668 293.724 254.292V195.737C293.724 191.546 290.326 188.148 286.135 188.148C281.945 188.148 278.547 191.546 278.547 195.737V252.625C277.329 252.72 276.125 252.87 274.939 253.07V205.046C274.939 200.855 271.541 197.457 267.35 197.457C263.159 197.457 259.762 200.855 259.762 205.046V258.95C258.509 259.756 257.305 260.632 256.154 261.565V224.167C256.154 219.976 252.756 216.578 248.565 216.578C244.374 216.578 240.977 219.976 240.977 224.167V290.743C240.977 291.195 241.017 291.634 241.094 292.063C241.084 292.431 241.078 292.801 241.078 293.172C241.078 315.636 259.288 333.846 281.752 333.846C298.617 333.846 313.084 323.582 319.248 308.96L342.086 266.416C344.464 261.984 342.801 256.463 338.369 254.086V254.088Z" fill="white"/>
</g>
<path d="M444.327 323.466C445.226 323.363 446.092 323.064 446.863 322.59C447.635 322.117 448.292 321.48 448.791 320.724C449.289 319.969 449.615 319.114 449.747 318.219C449.879 317.324 449.812 316.411 449.553 315.545L467.399 302.682L456.71 298.625L441.401 311.462C439.973 311.994 438.79 313.031 438.077 314.377C437.363 315.722 437.168 317.283 437.528 318.762C437.889 320.242 438.78 321.538 440.033 322.405C441.286 323.272 442.814 323.65 444.327 323.466Z" fill="#FFB6B6"/>
<path d="M431.238 449.639L425.571 449.639L422.875 427.797H431.239L431.238 449.639Z" fill="#FFB6B6"/>
<path d="M432.686 455.127L414.414 455.127V454.896C414.414 453.011 415.164 451.203 416.497 449.871C417.831 448.538 419.64 447.789 421.526 447.789L432.686 447.789L432.686 455.127Z" fill="#8F8F8F"/>
<path d="M387.956 449.639L382.289 449.639L379.594 427.797H387.957L387.956 449.639Z" fill="#FFB6B6"/>
<path d="M389.405 455.127L371.133 455.127V454.896C371.133 453.011 371.882 451.203 373.216 449.871C374.55 448.538 376.359 447.789 378.245 447.789L389.405 447.789L389.405 455.127Z" fill="#8F8F8F"/>
<path d="M392.335 328.18L380.325 393.808L376.125 445.937L389.762 445.266L397.525 394.646L416.82 350.57L422.563 445.145L435.117 445.185L441.872 325.555L392.335 328.18Z" fill="#8F8F8F"/>
<path d="M443.405 253.06L426.573 246.367L407.262 248.575L390.892 257.618C390.892 257.618 395.899 320.377 388.641 335.098C388.641 335.098 394.457 343.148 418.153 341.183C418.153 341.183 441.236 338.267 441.809 330.703C442.381 323.139 442.502 309.387 442.502 309.387L450.514 281.795L443.405 253.06Z" fill="#DACDFB"/>
<path d="M429.537 228.963C429.535 232.624 428.078 236.134 425.486 238.722C422.895 241.31 419.381 242.764 415.718 242.764C412.054 242.764 408.541 241.31 405.949 238.722C403.358 236.134 401.901 232.624 401.898 228.963V228.433C402.04 224.821 403.593 221.408 406.225 218.928C408.856 216.448 412.356 215.097 415.972 215.167C419.589 215.236 423.034 216.72 425.569 219.299C428.103 221.879 429.524 225.348 429.526 228.963H429.537Z" fill="#FFB6B6"/>
<path d="M417.818 226.735C418.702 226.59 419.66 226.452 420.452 226.858C422.174 227.738 421.778 230.233 422.719 231.88C423.09 232.533 423.691 233.067 423.939 233.774C424.186 234.48 424.034 235.364 424.423 236.046C424.985 237.032 426.509 237.177 427.51 236.59C428.457 235.935 429.143 234.968 429.448 233.859C429.78 232.919 430.06 231.88 430.863 231.265C431.154 231.099 431.416 230.885 431.637 230.632C431.803 230.298 431.867 229.922 431.821 229.551C431.821 227.162 431.45 225.311 431.991 222.996C432.857 219.265 433.649 217.42 430.905 214.653C429.5 213.254 427.692 212.33 425.735 212.01C423.967 211.72 421.364 214.187 419.575 214.13C415.024 213.95 411.184 209.738 406.845 211.098C404.948 211.694 403.303 212.903 402.17 214.536C400.048 217.66 400.239 218.869 400.547 222.597C400.542 222.88 400.625 223.157 400.784 223.392C400.943 223.583 401.201 223.685 401.357 223.88C401.524 224.136 401.587 224.447 401.534 224.749C401.486 225.356 401.344 225.952 401.113 226.516C401.054 226.61 401.018 226.716 401.007 226.826C400.996 226.937 401.011 227.048 401.049 227.152C401.136 227.27 401.261 227.355 401.403 227.392C403.171 228.028 405.08 226.802 406.972 226.834C408.864 226.865 410.66 228.131 412.612 227.855C414.334 227.59 416.081 227.021 417.818 226.735Z" fill="#6F4117"/>
<path d="M438.07 256.949L443.409 253.055C443.409 253.055 451.56 254.895 454.575 261.452C454.575 261.452 488.001 285.677 478.807 294.865C469.613 304.052 450.872 315.36 450.872 315.36L443.932 307.508L461.148 291.923L447.025 279.066L438.07 256.949Z" fill="#DACDFB"/>
<path d="M404.071 209.026C403.172 209.129 402.306 209.428 401.535 209.902C400.764 210.376 400.106 211.013 399.608 211.768C399.11 212.523 398.783 213.378 398.651 214.273C398.52 215.168 398.586 216.081 398.846 216.948L380.999 229.81L391.689 233.867L406.997 221.031C408.425 220.498 409.608 219.461 410.322 218.116C411.036 216.77 411.231 215.209 410.87 213.73C410.509 212.25 409.618 210.954 408.365 210.087C407.112 209.22 405.584 208.843 404.071 209.026Z" fill="#FFB6B6"/>
<path d="M406.336 278.411L400.997 282.305C400.997 282.305 392.846 280.465 389.831 273.908C389.831 273.908 356.405 249.682 365.599 240.495C374.793 231.307 393.535 219.999 393.535 219.999L400.474 227.851L383.258 243.436L397.381 256.293L406.336 278.411Z" fill="#DACDFB"/>
<path d="M542.85 455.7H58.5807C58.4267 455.7 58.279 455.638 58.1701 455.53C58.0612 455.421 58 455.273 58 455.119C58 454.965 58.0612 454.818 58.1701 454.709C58.279 454.6 58.4267 454.539 58.5807 454.539H542.85C543.004 454.539 543.152 454.6 543.261 454.709C543.37 454.818 543.431 454.965 543.431 455.119C543.431 455.273 543.37 455.421 543.261 455.53C543.152 455.638 543.004 455.7 542.85 455.7Z" fill="#8F8F8F"/>
<path d="M407.003 248.5C411.002 245 411.003 240 411.003 240H421.503C421.503 240 420.003 242.5 427.003 246.5C430.662 248.591 424.185 252.633 417.503 253C411.405 253.335 405.095 250.17 407.003 248.5Z" fill="#FFB6B6"/>
<defs>
<clipPath id="clip0_6900_40658">
<rect width="240" height="240" fill="white" transform="translate(166 141)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 6.8 KiB

View File

@ -0,0 +1,27 @@
<svg width="518" height="444" viewBox="0 0 518 444" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M58.9375 17.7787C135.261 -50.8654 208.106 129.979 322.601 31.5266C437.097 -66.9257 518.967 86.2489 487.584 202.476C456.202 318.703 560.053 369.43 497.606 425.788C435.16 482.146 314.546 372.665 177.663 431.95C40.7812 491.236 -44.3694 317.213 24.245 226.348C92.8594 135.482 -17.3862 86.4228 58.9375 17.7787Z" fill="white"/>
<g clip-path="url(#clip0_5696_38304)">
<path d="M259 352C325.274 352 379 298.274 379 232C379 165.726 325.274 112 259 112C192.726 112 139 165.726 139 232C139 298.274 192.726 352 259 352Z" fill="#87A6FC"/>
<path d="M259.002 335.003C315.888 335.003 362.003 288.888 362.003 232.002C362.003 175.115 315.888 129 259.002 129C202.115 129 156 175.115 156 232.002C156 288.888 202.115 335.003 259.002 335.003Z" fill="#87A6FC"/>
<path d="M311.369 225.088C306.937 222.71 301.417 224.373 299.039 228.805L290.487 244.735C289.085 242.163 287.413 239.759 285.509 237.559V179.283C285.509 175.092 282.111 171.695 277.921 171.695C273.73 171.695 270.332 175.092 270.332 179.283V226.593C269.156 226.106 267.952 225.668 266.724 225.292V166.737C266.724 162.546 263.326 159.148 259.135 159.148C254.945 159.148 251.547 162.546 251.547 166.737V223.625C250.329 223.72 249.125 223.87 247.939 224.07V176.046C247.939 171.855 244.541 168.457 240.35 168.457C236.159 168.457 232.762 171.855 232.762 176.046V229.95C231.509 230.756 230.305 231.632 229.154 232.565V195.167C229.154 190.976 225.756 187.578 221.565 187.578C217.374 187.578 213.977 190.976 213.977 195.167V261.743C213.977 262.195 214.017 262.634 214.094 263.063C214.084 263.431 214.078 263.801 214.078 264.172C214.078 286.636 232.288 304.846 254.752 304.846C271.617 304.846 286.084 294.582 292.248 279.96L315.086 237.416C317.464 232.984 315.801 227.463 311.369 225.086V225.088Z" fill="white"/>
</g>
<path d="M417.327 294.466C418.226 294.363 419.092 294.064 419.863 293.59C420.635 293.117 421.292 292.48 421.791 291.724C422.289 290.969 422.615 290.114 422.747 289.219C422.879 288.324 422.812 287.411 422.553 286.545L440.399 273.682L429.71 269.625L414.401 282.462C412.973 282.994 411.79 284.031 411.077 285.377C410.363 286.722 410.168 288.283 410.528 289.762C410.889 291.242 411.78 292.538 413.033 293.405C414.286 294.272 415.814 294.65 417.327 294.466Z" fill="#FFB6B6"/>
<path d="M404.238 420.639L398.571 420.639L395.875 398.797H404.239L404.238 420.639Z" fill="#FFB6B6"/>
<path d="M405.686 426.127L387.414 426.127V425.896C387.414 424.011 388.164 422.203 389.497 420.871C390.831 419.538 392.64 418.789 394.526 418.789L405.686 418.789L405.686 426.127Z" fill="#2F2E41"/>
<path d="M360.956 420.639L355.289 420.639L352.594 398.797H360.957L360.956 420.639Z" fill="#FFB6B6"/>
<path d="M362.405 426.127L344.133 426.127V425.896C344.133 424.011 344.882 422.203 346.216 420.871C347.55 419.538 349.359 418.789 351.245 418.789L362.405 418.789L362.405 426.127Z" fill="#2F2E41"/>
<path d="M365.335 299.18L353.325 364.808L349.125 416.937L362.762 416.266L370.525 365.646L389.82 321.57L395.563 416.145L408.117 416.185L414.872 296.555L365.335 299.18Z" fill="#2F2E41"/>
<path d="M416.405 224.06L399.573 217.367L380.262 219.575L363.892 228.618C363.892 228.618 368.899 291.377 361.641 306.098C361.641 306.098 367.457 314.148 391.153 312.183C391.153 312.183 414.236 309.267 414.809 301.703C415.381 294.139 415.502 280.387 415.502 280.387L423.514 252.795L416.405 224.06Z" fill="#DACDFB"/>
<path d="M402.537 199.963C402.535 203.624 401.078 207.134 398.486 209.722C395.895 212.31 392.381 213.764 388.718 213.764C385.054 213.764 381.541 212.31 378.949 209.722C376.358 207.134 374.901 203.624 374.898 199.963V199.433C375.04 195.821 376.593 192.408 379.225 189.928C381.856 187.448 385.356 186.097 388.972 186.167C392.589 186.236 396.034 187.72 398.569 190.299C401.103 192.879 402.524 196.348 402.526 199.963H402.537Z" fill="#FFB6B6"/>
<path d="M390.818 197.735C391.702 197.59 392.66 197.452 393.452 197.858C395.174 198.738 394.778 201.233 395.719 202.88C396.09 203.533 396.691 204.067 396.939 204.774C397.186 205.48 397.034 206.364 397.423 207.046C397.985 208.032 399.509 208.177 400.51 207.59C401.457 206.935 402.143 205.968 402.448 204.859C402.78 203.919 403.06 202.88 403.863 202.265C404.154 202.099 404.416 201.885 404.637 201.632C404.803 201.298 404.867 200.922 404.821 200.551C404.821 198.162 404.45 196.311 404.991 193.996C405.857 190.265 406.649 188.42 403.905 185.653C402.5 184.254 400.692 183.33 398.735 183.01C396.967 182.72 394.364 185.187 392.575 185.13C388.024 184.95 384.184 180.738 379.845 182.098C377.948 182.694 376.303 183.903 375.17 185.536C373.048 188.66 373.239 189.869 373.547 193.597C373.542 193.88 373.625 194.157 373.784 194.392C373.943 194.583 374.201 194.685 374.357 194.88C374.524 195.136 374.587 195.447 374.534 195.749C374.486 196.356 374.344 196.952 374.113 197.516C374.054 197.61 374.018 197.716 374.007 197.826C373.996 197.937 374.011 198.048 374.049 198.152C374.136 198.27 374.261 198.355 374.403 198.392C376.171 199.028 378.08 197.802 379.972 197.834C381.864 197.865 383.66 199.131 385.612 198.855C387.334 198.59 389.081 198.021 390.818 197.735Z" fill="#6F4117"/>
<path d="M411.07 227.949L416.409 224.055C416.409 224.055 424.56 225.895 427.575 232.452C427.575 232.452 461.001 256.677 451.807 265.865C442.613 275.052 423.872 286.36 423.872 286.36L416.932 278.508L434.148 262.923L420.025 250.066L411.07 227.949Z" fill="#DACDFB"/>
<path d="M377.071 180.026C376.172 180.129 375.306 180.428 374.535 180.902C373.764 181.376 373.106 182.013 372.608 182.768C372.11 183.523 371.783 184.378 371.651 185.273C371.52 186.168 371.586 187.081 371.846 187.948L353.999 200.81L364.689 204.867L379.997 192.031C381.425 191.498 382.608 190.461 383.322 189.116C384.036 187.77 384.231 186.209 383.87 184.73C383.509 183.25 382.618 181.954 381.365 181.087C380.112 180.22 378.584 179.843 377.071 180.026Z" fill="#FFB6B6"/>
<path d="M379.336 249.411L373.997 253.305C373.997 253.305 365.846 251.465 362.831 244.908C362.831 244.908 329.405 220.682 338.599 211.495C347.793 202.307 366.535 190.999 366.535 190.999L373.474 198.851L356.258 214.436L370.381 227.293L379.336 249.411Z" fill="#DACDFB"/>
<path d="M515.85 426.7H31.5807C31.4267 426.7 31.279 426.638 31.1701 426.53C31.0612 426.421 31 426.273 31 426.119C31 425.965 31.0612 425.818 31.1701 425.709C31.279 425.6 31.4267 425.539 31.5807 425.539H515.85C516.004 425.539 516.152 425.6 516.261 425.709C516.37 425.818 516.431 425.965 516.431 426.119C516.431 426.273 516.37 426.421 516.261 426.53C516.152 426.638 516.004 426.7 515.85 426.7Z" fill="#CACACA"/>
<path d="M380.003 219.5C384.002 216 384.003 211 384.003 211H394.503C394.503 211 393.003 213.5 400.003 217.5C403.662 219.591 397.185 223.633 390.503 224C384.405 224.335 378.095 221.17 380.003 219.5Z" fill="#FFB6B6"/>
<defs>
<clipPath id="clip0_5696_38304">
<rect width="240" height="240" fill="white" transform="translate(139 112)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 6.8 KiB

View File

@ -0,0 +1,55 @@
<svg width="553" height="445" viewBox="0 0 553 445" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M75.9375 17.7995C152.261 -50.9248 225.106 130.131 339.601 31.5634C454.097 -67.0038 535.967 86.3497 504.584 202.712C473.202 319.075 577.053 369.862 514.606 426.285C452.16 482.709 331.546 373.1 194.663 432.455C57.7813 491.809 -27.3694 317.584 41.245 226.612C109.859 135.64 -0.386208 86.5238 75.9375 17.7995Z" fill="#453F4F"/>
<path d="M553 357.5C553 357.776 552.685 358 552.296 358H0V357H552.296C552.685 357 553 357.224 553 357.5Z" fill="#8F8F8F"/>
<g clip-path="url(#clip0_6953_43776)">
<path d="M425.392 337.162L440.261 339.485C445.294 333.391 448.764 326.161 450.368 318.422C439.496 327.322 422.962 322.592 409.778 327.451C405.678 328.998 401.978 331.448 398.953 334.619C395.929 337.79 393.656 341.601 392.305 345.77L385.038 353.588C391.616 356.192 398.68 357.339 405.744 356.95C412.808 356.561 419.703 354.646 425.955 351.335C429.444 349.443 432.681 347.12 435.59 344.419C430.387 341.143 425.392 337.162 425.392 337.162Z" fill="#2B2931"/>
<path d="M420.113 313.373L434.458 308.821C436.245 301.122 436.126 293.103 434.111 285.461C428.349 298.276 411.441 301.416 401.808 311.645C398.828 314.858 396.609 318.701 395.316 322.888C394.023 327.075 393.689 331.5 394.338 335.834L391.321 346.072C398.37 345.469 405.204 343.346 411.353 339.847C417.502 336.349 422.819 331.559 426.939 325.808C429.218 322.558 431.079 319.035 432.477 315.32C426.36 314.709 420.113 313.373 420.113 313.373Z" fill="#2B2931"/>
<path d="M255.862 333.435C314.11 333.435 361.329 286.216 361.329 227.968C361.329 169.72 314.11 122.5 255.862 122.5C197.614 122.5 150.394 169.72 150.394 227.968C150.394 286.216 197.614 333.435 255.862 333.435Z" fill="#734BC5"/>
<path d="M346.613 227.962C346.624 242.123 343.316 256.089 336.955 268.74C330.594 281.392 321.356 292.376 309.984 300.813C309.223 301.382 308.448 301.937 307.668 302.476C292.461 313.048 274.383 318.714 255.862 318.714C237.341 318.714 219.263 313.048 204.055 302.476C203.275 301.937 202.5 301.382 201.74 300.813C190.375 292.369 181.143 281.383 174.783 268.733C168.423 256.083 165.11 242.121 165.11 227.962C165.11 213.804 168.423 199.841 174.783 187.192C181.143 174.542 190.375 163.556 201.74 155.111C202.5 154.542 203.275 153.988 204.055 153.448C219.263 142.877 237.341 137.211 255.862 137.211C274.383 137.211 292.46 142.877 307.668 153.448C308.448 153.988 309.223 154.542 309.984 155.111C321.356 163.548 330.594 174.533 336.955 187.184C343.316 199.836 346.624 213.802 346.613 227.962Z" fill="#DACDFB"/>
<path d="M255.862 310.875C301.647 310.875 338.764 273.759 338.764 227.973C338.764 182.187 301.647 145.07 255.862 145.07C210.076 145.07 172.959 182.187 172.959 227.973C172.959 273.759 210.076 310.875 255.862 310.875Z" fill="#C3D3FD"/>
<path opacity="0.1" d="M256.078 145.297C254.821 145.297 253.572 145.33 252.329 145.385C273.282 147.226 292.752 156.963 306.794 172.624C320.836 188.284 328.4 208.697 327.953 229.726C327.507 250.755 319.084 270.828 304.39 285.879C289.696 300.929 269.831 309.832 248.818 310.782C251.211 310.99 253.631 311.102 256.078 311.102C278.065 311.102 299.152 302.368 314.699 286.82C330.246 271.273 338.98 250.187 338.98 228.199C338.98 206.212 330.246 185.126 314.699 169.578C299.152 154.031 278.065 145.297 256.078 145.297Z" fill="black"/>
<path d="M256.107 139.18C255.392 139.181 254.706 139.466 254.201 139.971C253.695 140.477 253.41 141.163 253.409 141.878V153.651C253.409 154.366 253.693 155.053 254.199 155.559C254.705 156.065 255.392 156.349 256.107 156.349C256.823 156.349 257.509 156.065 258.015 155.559C258.521 155.053 258.805 154.366 258.805 153.651V141.878C258.804 141.163 258.519 140.477 258.014 139.971C257.508 139.466 256.822 139.181 256.107 139.18Z" fill="white"/>
<path d="M309.984 155.114C309.224 154.545 308.449 153.991 307.669 153.451C307.201 153.421 306.733 153.513 306.311 153.718C305.89 153.924 305.529 154.236 305.265 154.623L298.638 164.351C298.235 164.942 298.084 165.669 298.217 166.372C298.351 167.075 298.758 167.696 299.349 168.099C299.94 168.501 300.667 168.653 301.37 168.519C302.073 168.386 302.694 167.979 303.097 167.387L309.724 157.66C309.976 157.291 310.132 156.865 310.178 156.42C310.223 155.975 310.157 155.526 309.984 155.114Z" fill="white"/>
<path d="M340.093 199.469C339.96 199.141 339.764 198.843 339.515 198.591C339.266 198.339 338.97 198.138 338.644 198.001C338.318 197.863 337.968 197.791 337.614 197.789C337.26 197.787 336.909 197.854 336.581 197.988L325.671 202.418C325.009 202.687 324.481 203.209 324.203 203.868C323.925 204.527 323.92 205.269 324.19 205.931C324.459 206.594 324.98 207.122 325.639 207.401C326.297 207.679 327.039 207.685 327.702 207.416L338.612 202.987C339.274 202.715 339.801 202.193 340.079 201.534C340.357 200.875 340.362 200.132 340.093 199.469Z" fill="white"/>
<path d="M213.086 164.351L206.459 154.623C206.195 154.236 205.834 153.924 205.412 153.718C204.991 153.513 204.523 153.421 204.055 153.451C203.275 153.991 202.5 154.545 201.74 155.114C201.567 155.526 201.501 155.975 201.546 156.42C201.592 156.865 201.747 157.291 202 157.66L208.627 167.387C209.029 167.979 209.651 168.386 210.353 168.519C211.056 168.653 211.783 168.501 212.375 168.099C212.966 167.696 213.373 167.075 213.506 166.372C213.64 165.669 213.489 164.942 213.086 164.351Z" fill="white"/>
<path d="M186.052 202.417L175.142 197.987C174.479 197.718 173.736 197.723 173.077 198.002C172.418 198.28 171.897 198.809 171.628 199.471C171.358 200.134 171.363 200.877 171.642 201.536C171.92 202.195 172.448 202.717 173.111 202.986L184.021 207.416C184.684 207.684 185.426 207.679 186.084 207.4C186.743 207.122 187.264 206.593 187.533 205.931C187.802 205.268 187.798 204.526 187.52 203.867C187.242 203.208 186.714 202.687 186.052 202.417Z" fill="white"/>
<path d="M256.107 299.586C255.392 299.587 254.706 299.872 254.201 300.378C253.695 300.883 253.41 301.569 253.409 302.284V314.057C253.409 314.773 253.693 315.459 254.199 315.965C254.705 316.471 255.392 316.755 256.107 316.755C256.823 316.755 257.509 316.471 258.015 315.965C258.521 315.459 258.805 314.773 258.805 314.057V302.284C258.804 301.569 258.519 300.883 258.014 300.378C257.508 299.872 256.822 299.587 256.107 299.586Z" fill="white"/>
<path d="M309.724 298.274L303.097 288.546C302.897 288.254 302.642 288.003 302.346 287.809C302.05 287.614 301.718 287.481 301.37 287.414C301.022 287.348 300.665 287.352 300.318 287.424C299.971 287.496 299.642 287.636 299.349 287.835C299.056 288.034 298.806 288.29 298.611 288.586C298.417 288.882 298.283 289.214 298.217 289.562C298.151 289.91 298.154 290.267 298.226 290.614C298.299 290.961 298.438 291.29 298.638 291.583L305.265 301.31C305.529 301.698 305.89 302.01 306.311 302.216C306.733 302.421 307.201 302.513 307.669 302.483C308.449 301.943 309.224 301.389 309.984 300.82C310.157 300.407 310.223 299.958 310.178 299.514C310.132 299.069 309.976 298.643 309.724 298.274Z" fill="white"/>
<path d="M338.612 252.94L327.702 248.511C327.04 248.242 326.297 248.247 325.638 248.525C324.979 248.803 324.457 249.332 324.188 249.995C323.919 250.658 323.924 251.4 324.202 252.059C324.48 252.718 325.009 253.24 325.672 253.509L336.581 257.939C337.244 258.208 337.986 258.202 338.645 257.924C339.304 257.645 339.825 257.117 340.094 256.454C340.363 255.792 340.358 255.049 340.08 254.391C339.802 253.732 339.274 253.21 338.612 252.94Z" fill="white"/>
<path d="M212.375 287.835C211.783 287.432 211.056 287.281 210.353 287.415C209.651 287.548 209.03 287.955 208.627 288.546L202 298.274C201.747 298.643 201.592 299.069 201.546 299.514C201.501 299.958 201.567 300.407 201.74 300.82C202.5 301.389 203.275 301.943 204.055 302.483C204.523 302.513 204.991 302.421 205.412 302.215C205.834 302.01 206.195 301.698 206.459 301.31L213.086 291.583C213.285 291.29 213.425 290.961 213.497 290.614C213.569 290.267 213.573 289.909 213.507 289.561C213.44 289.213 213.307 288.882 213.112 288.585C212.918 288.289 212.667 288.034 212.375 287.835Z" fill="white"/>
<path d="M187.533 249.993C187.4 249.665 187.203 249.366 186.955 249.114C186.706 248.862 186.41 248.662 186.084 248.524C185.758 248.387 185.408 248.315 185.054 248.313C184.7 248.31 184.349 248.378 184.021 248.511L173.111 252.941C172.449 253.211 171.921 253.732 171.643 254.391C171.365 255.05 171.36 255.792 171.63 256.455C171.899 257.117 172.42 257.646 173.078 257.924C173.737 258.203 174.479 258.208 175.142 257.94L186.052 253.51C186.714 253.239 187.241 252.717 187.519 252.057C187.797 251.398 187.802 250.656 187.533 249.993Z" fill="white"/>
<path d="M259.608 226.624C259.857 228.099 259.511 229.612 258.645 230.832C257.78 232.052 256.466 232.879 254.992 233.131L207.116 241.275C206.385 241.399 205.638 241.379 204.915 241.214C204.193 241.049 203.51 240.744 202.906 240.315C202.302 239.887 201.788 239.343 201.394 238.716C200.999 238.089 200.732 237.39 200.608 236.66C200.484 235.929 200.505 235.182 200.67 234.459C200.834 233.737 201.14 233.054 201.568 232.45C201.997 231.846 202.54 231.332 203.167 230.938C203.795 230.543 204.493 230.277 205.224 230.152L253.1 222.009C254.575 221.759 256.088 222.106 257.308 222.971C258.528 223.836 259.355 225.15 259.608 226.624Z" fill="#3F3D56"/>
<path d="M309.997 279.676C309.309 280.367 308.375 280.758 307.4 280.762C306.424 280.766 305.487 280.382 304.794 279.696L253.255 228.562C252.564 227.874 252.173 226.941 252.17 225.965C252.167 224.99 252.55 224.054 253.237 223.361C253.924 222.669 254.858 222.278 255.833 222.273C256.808 222.269 257.745 222.652 258.438 223.338L309.976 274.473C310.668 275.16 311.059 276.094 311.062 277.07C311.066 278.045 310.683 278.982 309.997 279.676Z" fill="#3F3D56"/>
<path d="M255.861 234.34C259.383 234.34 262.239 231.485 262.239 227.963C262.239 224.441 259.383 221.586 255.861 221.586C252.34 221.586 249.484 224.441 249.484 227.963C249.484 231.485 252.34 234.34 255.861 234.34Z" fill="#CCCCCC"/>
<path d="M211.936 117.393C202.147 132.782 187.212 142.996 168.793 149.705C168.429 149.978 168.014 150.176 167.574 150.289C167.133 150.401 166.675 150.426 166.225 150.361C165.775 150.297 165.342 150.144 164.95 149.912C164.559 149.68 164.218 149.374 163.945 149.01C153.94 135.651 156.199 116.558 169.404 106.351C172.596 103.887 176.246 102.082 180.142 101.041C184.038 99.9993 188.101 99.7421 192.097 100.284C196.093 100.826 199.942 102.156 203.419 104.198C206.897 106.239 209.934 108.951 212.355 112.176L212.632 112.545C212.904 112.909 213.103 113.323 213.215 113.764C213.328 114.205 213.353 114.663 213.288 115.113C213.223 115.563 213.071 115.996 212.839 116.387C212.607 116.779 212.3 117.12 211.936 117.393Z" fill="#734BC5"/>
<path d="M299.368 112.176C301.789 108.951 304.826 106.239 308.304 104.198C311.781 102.156 315.63 100.826 319.626 100.284C323.622 99.7421 327.685 99.9993 331.581 101.041C335.477 102.082 339.127 103.887 342.319 106.351C355.524 116.558 357.783 135.651 347.778 149.01C347.505 149.374 347.164 149.68 346.772 149.912C346.381 150.144 345.948 150.297 345.498 150.361C345.048 150.426 344.59 150.401 344.149 150.289C343.708 150.176 343.294 149.978 342.93 149.705C325.831 143.159 311.809 131.83 299.787 117.393C299.052 116.842 298.566 116.022 298.435 115.113C298.305 114.204 298.541 113.28 299.091 112.545L299.368 112.176Z" fill="#734BC5"/>
<path d="M295.077 319.342C294.454 319.692 293.995 320.275 293.8 320.964C293.606 321.652 293.692 322.389 294.041 323.014L309.612 350.839C309.961 351.463 310.544 351.923 311.233 352.117C311.921 352.312 312.659 352.225 313.283 351.875C313.907 351.526 314.368 350.943 314.562 350.254C314.757 349.566 314.67 348.828 314.32 348.204L298.749 320.379C298.399 319.755 297.816 319.296 297.128 319.102C296.439 318.907 295.702 318.994 295.077 319.342Z" fill="#E6E6E6"/>
<path d="M212.974 320.381L197.403 348.206C197.054 348.831 196.967 349.568 197.161 350.257C197.356 350.945 197.816 351.528 198.44 351.878C199.064 352.227 199.802 352.314 200.49 352.12C201.179 351.925 201.762 351.465 202.112 350.841L217.683 323.016C217.856 322.707 217.966 322.367 218.008 322.015C218.049 321.663 218.021 321.306 217.925 320.965C217.829 320.624 217.666 320.305 217.447 320.027C217.227 319.749 216.955 319.517 216.646 319.344C216.337 319.171 215.996 319.06 215.645 319.019C215.293 318.977 214.936 319.005 214.595 319.102C214.254 319.198 213.935 319.361 213.657 319.58C213.379 319.8 213.147 320.072 212.974 320.381Z" fill="#E6E6E6"/>
<path d="M312.765 357.96C317.371 357.96 321.104 354.226 321.104 349.621C321.104 345.015 317.371 341.281 312.765 341.281C308.159 341.281 304.426 345.015 304.426 349.621C304.426 354.226 308.159 357.96 312.765 357.96Z" fill="#E6E6E6"/>
<path d="M318.652 144.577C323.257 144.577 326.991 140.843 326.991 136.238C326.991 131.632 323.257 127.898 318.652 127.898C314.046 127.898 310.312 131.632 310.312 136.238C310.312 140.843 314.046 144.577 318.652 144.577Z" fill="#E6E6E6"/>
<path d="M255.371 124.952C259.977 124.952 263.71 121.218 263.71 116.613C263.71 112.007 259.977 108.273 255.371 108.273C250.765 108.273 247.032 112.007 247.032 116.613C247.032 121.218 250.765 124.952 255.371 124.952Z" fill="#734BC5"/>
<path d="M195.034 143.6C199.639 143.6 203.373 139.867 203.373 135.261C203.373 130.656 199.639 126.922 195.034 126.922C190.428 126.922 186.694 130.656 186.694 135.261C186.694 139.867 190.428 143.6 195.034 143.6Z" fill="#E6E6E6"/>
<path d="M200.43 357.96C205.035 357.96 208.769 354.226 208.769 349.621C208.769 345.015 205.035 341.281 200.43 341.281C195.824 341.281 192.09 345.015 192.09 349.621C192.09 354.226 195.824 357.96 200.43 357.96Z" fill="#E6E6E6"/>
<path d="M306.224 274.984C306.553 275.499 306.99 275.935 307.506 276.262C308.021 276.59 308.603 276.8 309.208 276.878C309.814 276.957 310.429 276.901 311.011 276.716C311.593 276.531 312.128 276.22 312.577 275.806L325.662 282.818L324.96 275.135L312.642 269.655C311.896 268.947 310.917 268.537 309.889 268.502C308.862 268.468 307.857 268.812 307.066 269.469C306.275 270.126 305.752 271.05 305.597 272.066C305.442 273.083 305.665 274.121 306.224 274.984Z" fill="#FFB7B7"/>
<path d="M315.758 277.664L320.886 270.586L345.59 282.264L376.331 276.496C377.851 276.211 379.414 276.264 380.911 276.651C382.408 277.038 383.801 277.75 384.992 278.737C386.183 279.723 387.141 280.959 387.801 282.357C388.46 283.756 388.803 285.282 388.806 286.828C388.808 289.621 387.702 292.3 385.732 294.278C383.761 296.256 381.085 297.372 378.293 297.38L343.064 297.446L315.758 277.664Z" fill="#DACDFB"/>
<path d="M307.86 399.925L302.672 397.444L309.799 375.758L317.456 379.42L307.86 399.925Z" fill="#FFB7B7"/>
<path d="M342.643 396.429C342.266 396.666 341.888 396.898 341.507 397.131C340.749 397.596 339.983 398.053 339.217 398.503C338.832 398.727 338.443 398.952 338.058 399.173V399.185L338.035 399.189L338.028 399.192L337.441 399.337L336.599 397.112L336.21 396.087L335.661 394.635L334.655 391.978L329.358 377.992L337.593 375.961L337.902 377.222H337.906L338.058 377.847L340.936 389.516L341.522 391.902L341.541 391.975L341.896 393.4L342.201 394.635L342.54 396.014L342.643 396.429Z" fill="#FFB7B7"/>
<path d="M391.77 347.304C391.248 348.142 390.714 348.977 390.177 349.804C389.179 351.344 388.154 352.86 387.102 354.354C387.102 354.358 387.098 354.358 387.094 354.362C386.48 354.93 385.803 355.425 385.074 355.837C385.044 355.86 385.01 355.875 384.979 355.894C384.443 356.19 383.872 356.419 383.279 356.576C383.066 356.629 382.849 356.683 382.635 356.736C381.865 356.919 381.103 357.075 380.345 357.212C378.996 357.453 377.662 357.624 376.336 357.731C376.229 357.742 376.122 357.75 376.016 357.757C370.562 358.158 365.254 357.513 359.713 356.458C356.976 355.94 354.183 355.318 351.29 354.674C350.345 354.461 349.396 354.251 348.436 354.042C348.364 354.026 348.287 354.007 348.211 353.992C346.839 353.691 345.444 353.394 344.015 353.1C342.217 352.731 340.361 352.373 338.432 352.033L338.569 354.751C338.684 356.841 339.118 358.901 339.858 360.86C340.681 363.268 341.332 365.173 339.957 369.141L339.294 371.061C339.637 372.015 339.755 373.036 339.638 374.043C339.521 375.05 339.172 376.016 338.619 376.865L338.486 377.067L344.015 391.057L344.374 391.964H341.542L338.059 391.968H332.156L323.638 374.88L323.23 374.064V374.022L324.111 341.184C324.122 340.894 324.145 340.601 324.183 340.311C324.338 338.994 324.754 337.722 325.407 336.568C326.059 335.413 326.935 334.401 327.983 333.588C328.987 332.804 330.137 332.226 331.366 331.89C332.596 331.554 333.88 331.465 335.143 331.63L338.059 332.007L344.015 332.777L348.211 333.322L348.295 333.333L360.669 334.934L361.557 331.313L361.721 331.252L366.93 329.343L384.949 322.739L384.994 322.724L386.179 322.289L386.32 322.518C386.362 322.586 386.404 322.655 386.442 322.724C387.614 324.824 388.568 327.038 389.289 329.332C390.502 333.079 391.501 336.892 392.281 340.753C392.315 340.921 392.346 341.073 392.372 341.21L392.384 341.252C392.395 341.317 392.403 341.359 392.407 341.37C392.822 343.101 392.532 345.212 391.77 347.304Z" fill="#453F4F"/>
<path d="M392.531 335.205C392.474 334.961 392.402 334.713 392.325 334.473C391.72 332.654 391.015 330.871 390.214 329.13C389.315 327.148 388.236 325.026 386.952 322.728C386.331 321.615 385.663 320.458 384.947 319.256C384.589 318.654 384.217 318.04 383.831 317.415C383.816 317.386 383.799 317.358 383.781 317.331L383.671 317.148L365.843 319.534L359.205 320.422L358.808 323.73L358.713 324.549C358.709 324.549 358.709 324.549 358.713 324.553L358.446 326.786V326.79L358.092 329.74L358.061 329.736L348.21 328.459L338.058 327.145L332.604 326.44C331.34 326.275 330.056 326.363 328.827 326.699C327.598 327.036 326.448 327.613 325.443 328.398C324.396 329.211 323.52 330.223 322.868 331.378C322.216 332.532 321.799 333.804 321.644 335.121C321.61 335.388 321.587 335.662 321.575 335.933L316.431 348.124C313.352 355.415 311.391 363.128 310.615 371.005L306.842 383.066L307.38 383.116L315.375 383.859L317.486 384.057L322.136 377.27C322.665 376.496 323.168 375.7 323.637 374.884C324.409 373.552 325.095 372.172 325.691 370.753L335.748 346.82C336.526 346.954 337.295 347.081 338.058 347.201C341.583 347.773 344.967 348.239 348.21 348.6C358.755 349.778 367.886 349.869 376.015 348.871C378.297 348.592 380.504 348.227 382.634 347.773C383.415 347.609 384.186 347.433 384.947 347.243C385.126 347.201 385.302 347.16 385.477 347.114C387.052 346.708 388.5 345.913 389.688 344.802C390.877 343.692 391.768 342.301 392.28 340.757C392.891 338.968 392.978 337.042 392.531 335.205Z" fill="#453F4F"/>
<path d="M309.518 396.387L303.904 393.696L303.024 393.273L301.618 396.726L291.801 398.887C291.315 398.993 290.877 399.252 290.549 399.626C290.221 399.999 290.021 400.468 289.979 400.963C289.936 401.458 290.053 401.954 290.312 402.377C290.572 402.801 290.96 403.131 291.42 403.319L301.012 407.233L304.057 404.493L303.31 408.17L306.923 409.645L310.882 397.042L309.518 396.387Z" fill="#453F4F"/>
<path d="M344.016 391.062L344.374 391.97H344.016V391.062Z" fill="#453F4F"/>
<path d="M342.061 392.158L336.179 394.196L335.256 394.515L336.686 397.958L331.23 406.401C330.96 406.818 330.831 407.31 330.861 407.806C330.89 408.302 331.078 408.776 331.396 409.158C331.714 409.539 332.146 409.81 332.629 409.928C333.111 410.047 333.619 410.009 334.078 409.818L343.648 405.85L343.884 401.761L345.94 404.899L349.545 403.405L343.491 391.664L342.061 392.158Z" fill="#453F4F"/>
<path d="M391.064 340.724C390.715 340.723 390.371 340.638 390.062 340.475L359.023 324.257L358.664 322.788L357.988 318.142L357.998 318.099L360.95 304.489C360.895 304.372 360.782 304.181 360.655 303.964C359.337 301.731 355.326 294.935 362.98 285.578L376 269H388C391.084 272.871 393.249 278.024 394.14 282.892C395.03 287.761 394.705 292.774 393.191 297.486L391.99 319.177L393.279 323.557C394.032 326.131 393.907 328.883 392.924 331.379L393.22 338.472C393.231 338.762 393.184 339.052 393.081 339.324C392.978 339.597 392.821 339.845 392.62 340.055C392.419 340.266 392.177 340.433 391.91 340.548C391.643 340.663 391.355 340.723 391.064 340.724Z" fill="#DACDFB"/>
<path d="M364.14 358.615C364.666 358.304 365.117 357.882 365.462 357.378C365.807 356.874 366.038 356.301 366.137 355.698C366.237 355.096 366.203 354.479 366.038 353.891C365.873 353.303 365.581 352.758 365.183 352.295L372.646 339.461L364.943 339.895L359.038 352.016C358.304 352.736 357.86 353.701 357.79 354.727C357.72 355.752 358.029 356.768 358.658 357.582C359.287 358.395 360.192 358.95 361.203 359.14C362.213 359.331 363.258 359.144 364.14 358.615Z" fill="#FFB7B7"/>
<path d="M367.152 349.183L360.256 343.812L372.786 319.529L368.091 288.606C367.859 287.077 367.966 285.516 368.405 284.034C368.844 282.551 369.604 281.184 370.631 280.028C371.658 278.873 372.927 277.957 374.348 277.347C375.768 276.737 377.306 276.447 378.851 276.498C381.642 276.593 384.281 277.791 386.189 279.83C388.098 281.868 389.12 284.581 389.031 287.372L387.871 322.582L367.152 349.183Z" fill="#DACDFB"/>
<path d="M369.021 263.405V251.991C369.018 247.935 370.627 244.044 373.494 241.174C376.36 238.304 380.249 236.69 384.305 236.688C388.361 236.685 392.252 238.294 395.122 241.16C397.992 244.026 399.606 247.915 399.609 251.971V251.991C402.304 257.608 400.618 260.279 399.609 263.405C399.608 263.949 399.391 264.471 399.006 264.856C398.621 265.241 398.099 265.457 397.555 265.458H371.075C370.531 265.457 370.009 265.241 369.624 264.856C369.239 264.471 369.022 263.949 369.021 263.405Z" fill="#794900"/>
<path d="M379.301 264.708C385.623 264.708 390.748 259.583 390.748 253.26C390.748 246.938 385.623 241.812 379.301 241.812C372.978 241.812 367.853 246.938 367.853 253.26C367.853 259.583 372.978 264.708 379.301 264.708Z" fill="#FFB7B7"/>
<path d="M391.281 256.267C391.177 256.251 391.073 256.229 390.97 256.213C389.184 255.896 387.398 255.585 385.618 255.262L385.454 251.227L383.297 254.842C378.377 256.475 373.773 255.552 369.443 253.515C368.014 252.837 366.628 252.073 365.292 251.227C365.656 248.995 366.514 246.872 367.804 245.015C369.094 243.157 370.783 241.612 372.747 240.491C372.91 240.398 373.069 240.316 373.233 240.234L373.235 240.234L373.237 240.232L373.238 240.231L373.238 240.229C373.517 240.097 373.801 239.972 374.085 239.857C376.308 238.988 378.732 238.768 381.075 239.223C383.418 239.677 385.584 240.787 387.322 242.424C390.817 245.76 392.389 251.271 391.281 256.267Z" fill="#794900"/>
<path d="M376.468 262.022C376.468 262.022 376.798 269.938 376.999 269C377.498 269.5 385.996 269.004 385.996 269.004L383.478 261.543L376.468 262.022Z" fill="#FFB6B6"/>
</g>
<defs>
<clipPath id="clip0_6953_43776">
<rect width="331.448" height="310" fill="white" transform="translate(119 100)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,55 @@
<svg width="553" height="445" viewBox="0 0 553 445" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M75.9375 17.7995C152.261 -50.9248 225.106 130.131 339.601 31.5634C454.097 -67.0038 535.967 86.3497 504.584 202.712C473.202 319.075 577.053 369.862 514.606 426.285C452.16 482.709 331.546 373.1 194.663 432.455C57.7813 491.809 -27.3694 317.584 41.245 226.612C109.859 135.64 -0.386208 86.5238 75.9375 17.7995Z" fill="white"/>
<path d="M553 357.5C553 357.776 552.685 358 552.296 358H0V357H552.296C552.685 357 553 357.224 553 357.5Z" fill="#E2E2E2"/>
<g clip-path="url(#clip0_5638_50599)">
<path d="M425.392 337.162L440.261 339.485C445.294 333.391 448.764 326.161 450.368 318.422C439.496 327.322 422.962 322.592 409.778 327.451C405.678 328.998 401.978 331.448 398.953 334.619C395.929 337.79 393.656 341.601 392.305 345.77L385.038 353.588C391.616 356.192 398.68 357.339 405.744 356.95C412.808 356.561 419.703 354.646 425.955 351.335C429.444 349.443 432.681 347.12 435.59 344.419C430.387 341.143 425.392 337.162 425.392 337.162Z" fill="#F2F2F2"/>
<path d="M420.113 313.373L434.458 308.821C436.245 301.122 436.126 293.103 434.111 285.461C428.349 298.276 411.441 301.416 401.808 311.645C398.828 314.858 396.609 318.701 395.316 322.888C394.023 327.075 393.689 331.5 394.338 335.834L391.321 346.072C398.37 345.469 405.204 343.346 411.353 339.847C417.502 336.349 422.819 331.559 426.939 325.808C429.218 322.558 431.079 319.035 432.477 315.32C426.36 314.709 420.113 313.373 420.113 313.373Z" fill="#F2F2F2"/>
<path d="M255.862 333.435C314.11 333.435 361.329 286.216 361.329 227.968C361.329 169.72 314.11 122.5 255.862 122.5C197.614 122.5 150.394 169.72 150.394 227.968C150.394 286.216 197.614 333.435 255.862 333.435Z" fill="#E6E6E6"/>
<path d="M346.613 227.962C346.624 242.123 343.316 256.089 336.955 268.74C330.594 281.392 321.356 292.376 309.984 300.813C309.223 301.382 308.448 301.937 307.668 302.476C292.461 313.048 274.383 318.714 255.862 318.714C237.341 318.714 219.263 313.048 204.055 302.476C203.275 301.937 202.5 301.382 201.74 300.813C190.375 292.369 181.143 281.383 174.783 268.733C168.423 256.083 165.11 242.121 165.11 227.962C165.11 213.804 168.423 199.841 174.783 187.192C181.143 174.542 190.375 163.556 201.74 155.111C202.5 154.542 203.275 153.988 204.055 153.448C219.263 142.877 237.341 137.211 255.862 137.211C274.383 137.211 292.46 142.877 307.668 153.448C308.448 153.988 309.223 154.542 309.984 155.111C321.356 163.548 330.594 174.533 336.955 187.184C343.316 199.836 346.624 213.802 346.613 227.962Z" fill="white"/>
<path d="M255.862 310.875C301.647 310.875 338.764 273.759 338.764 227.973C338.764 182.187 301.647 145.07 255.862 145.07C210.076 145.07 172.959 182.187 172.959 227.973C172.959 273.759 210.076 310.875 255.862 310.875Z" fill="#87A6FC"/>
<path opacity="0.1" d="M256.078 145.297C254.821 145.297 253.572 145.33 252.329 145.385C273.282 147.226 292.752 156.963 306.794 172.624C320.836 188.284 328.4 208.697 327.953 229.726C327.507 250.755 319.084 270.828 304.39 285.879C289.696 300.929 269.831 309.832 248.818 310.782C251.211 310.99 253.631 311.102 256.078 311.102C278.065 311.102 299.152 302.368 314.699 286.82C330.246 271.273 338.98 250.187 338.98 228.199C338.98 206.212 330.246 185.126 314.699 169.578C299.152 154.031 278.065 145.297 256.078 145.297Z" fill="black"/>
<path d="M256.107 139.18C255.392 139.181 254.706 139.466 254.201 139.971C253.695 140.477 253.41 141.163 253.409 141.878V153.651C253.409 154.366 253.693 155.053 254.199 155.559C254.705 156.065 255.392 156.349 256.107 156.349C256.823 156.349 257.509 156.065 258.015 155.559C258.521 155.053 258.805 154.366 258.805 153.651V141.878C258.804 141.163 258.519 140.477 258.014 139.971C257.508 139.466 256.822 139.181 256.107 139.18Z" fill="white"/>
<path d="M309.984 155.114C309.224 154.545 308.449 153.991 307.669 153.451C307.201 153.421 306.733 153.513 306.311 153.718C305.89 153.924 305.529 154.236 305.265 154.623L298.638 164.351C298.235 164.942 298.084 165.669 298.217 166.372C298.351 167.075 298.758 167.696 299.349 168.099C299.94 168.501 300.667 168.653 301.37 168.519C302.073 168.386 302.694 167.979 303.097 167.387L309.724 157.66C309.976 157.291 310.132 156.865 310.178 156.42C310.223 155.975 310.157 155.526 309.984 155.114Z" fill="white"/>
<path d="M340.093 199.469C339.96 199.141 339.764 198.843 339.515 198.591C339.266 198.339 338.97 198.138 338.644 198.001C338.318 197.863 337.968 197.791 337.614 197.789C337.26 197.787 336.909 197.854 336.581 197.988L325.671 202.418C325.009 202.687 324.481 203.209 324.203 203.868C323.925 204.527 323.92 205.269 324.19 205.931C324.459 206.594 324.98 207.122 325.639 207.401C326.297 207.679 327.039 207.685 327.702 207.416L338.612 202.987C339.274 202.715 339.801 202.193 340.079 201.534C340.357 200.875 340.362 200.132 340.093 199.469Z" fill="white"/>
<path d="M213.086 164.351L206.459 154.623C206.195 154.236 205.834 153.924 205.412 153.718C204.991 153.513 204.523 153.421 204.055 153.451C203.275 153.991 202.5 154.545 201.74 155.114C201.567 155.526 201.501 155.975 201.546 156.42C201.592 156.865 201.747 157.291 202 157.66L208.627 167.387C209.029 167.979 209.651 168.386 210.353 168.519C211.056 168.653 211.783 168.501 212.375 168.099C212.966 167.696 213.373 167.075 213.506 166.372C213.64 165.669 213.489 164.942 213.086 164.351Z" fill="white"/>
<path d="M186.052 202.417L175.142 197.987C174.479 197.718 173.736 197.723 173.077 198.002C172.418 198.28 171.897 198.809 171.628 199.471C171.358 200.134 171.363 200.877 171.642 201.536C171.92 202.195 172.448 202.717 173.111 202.986L184.021 207.416C184.684 207.684 185.426 207.679 186.084 207.4C186.743 207.122 187.264 206.593 187.533 205.931C187.802 205.268 187.798 204.526 187.52 203.867C187.242 203.208 186.714 202.687 186.052 202.417Z" fill="white"/>
<path d="M256.107 299.586C255.392 299.587 254.706 299.872 254.201 300.378C253.695 300.883 253.41 301.569 253.409 302.284V314.057C253.409 314.773 253.693 315.459 254.199 315.965C254.705 316.471 255.392 316.755 256.107 316.755C256.823 316.755 257.509 316.471 258.015 315.965C258.521 315.459 258.805 314.773 258.805 314.057V302.284C258.804 301.569 258.519 300.883 258.014 300.378C257.508 299.872 256.822 299.587 256.107 299.586Z" fill="white"/>
<path d="M309.724 298.274L303.097 288.546C302.897 288.254 302.642 288.003 302.346 287.809C302.05 287.614 301.718 287.481 301.37 287.414C301.022 287.348 300.665 287.352 300.318 287.424C299.971 287.496 299.642 287.636 299.349 287.835C299.056 288.034 298.806 288.29 298.611 288.586C298.417 288.882 298.283 289.214 298.217 289.562C298.151 289.91 298.154 290.267 298.226 290.614C298.299 290.961 298.438 291.29 298.638 291.583L305.265 301.31C305.529 301.698 305.89 302.01 306.311 302.216C306.733 302.421 307.201 302.513 307.669 302.483C308.449 301.943 309.224 301.389 309.984 300.82C310.157 300.407 310.223 299.958 310.178 299.514C310.132 299.069 309.976 298.643 309.724 298.274Z" fill="white"/>
<path d="M338.612 252.94L327.702 248.511C327.04 248.242 326.297 248.247 325.638 248.525C324.979 248.803 324.457 249.332 324.188 249.995C323.919 250.658 323.924 251.4 324.202 252.059C324.48 252.718 325.009 253.24 325.672 253.509L336.581 257.939C337.244 258.208 337.986 258.202 338.645 257.924C339.304 257.645 339.825 257.117 340.094 256.454C340.363 255.792 340.358 255.049 340.08 254.391C339.802 253.732 339.274 253.21 338.612 252.94Z" fill="white"/>
<path d="M212.375 287.835C211.783 287.432 211.056 287.281 210.353 287.415C209.651 287.548 209.03 287.955 208.627 288.546L202 298.274C201.747 298.643 201.592 299.069 201.546 299.514C201.501 299.958 201.567 300.407 201.74 300.82C202.5 301.389 203.275 301.943 204.055 302.483C204.523 302.513 204.991 302.421 205.412 302.215C205.834 302.01 206.195 301.698 206.459 301.31L213.086 291.583C213.285 291.29 213.425 290.961 213.497 290.614C213.569 290.267 213.573 289.909 213.507 289.561C213.44 289.213 213.307 288.882 213.112 288.585C212.918 288.289 212.667 288.034 212.375 287.835Z" fill="white"/>
<path d="M187.533 249.993C187.4 249.665 187.203 249.366 186.955 249.114C186.706 248.862 186.41 248.662 186.084 248.524C185.758 248.387 185.408 248.315 185.054 248.313C184.7 248.31 184.349 248.378 184.021 248.511L173.111 252.941C172.449 253.211 171.921 253.732 171.643 254.391C171.365 255.05 171.36 255.792 171.63 256.455C171.899 257.117 172.42 257.646 173.078 257.924C173.737 258.203 174.479 258.208 175.142 257.94L186.052 253.51C186.714 253.239 187.241 252.717 187.519 252.057C187.797 251.398 187.802 250.656 187.533 249.993Z" fill="white"/>
<path d="M259.608 226.624C259.857 228.099 259.511 229.612 258.645 230.832C257.78 232.052 256.466 232.879 254.992 233.131L207.116 241.275C206.385 241.399 205.638 241.379 204.915 241.214C204.193 241.049 203.51 240.744 202.906 240.315C202.302 239.887 201.788 239.343 201.394 238.716C200.999 238.089 200.732 237.39 200.608 236.66C200.484 235.929 200.505 235.182 200.67 234.459C200.834 233.737 201.14 233.054 201.568 232.45C201.997 231.846 202.54 231.332 203.167 230.938C203.795 230.543 204.493 230.277 205.224 230.152L253.1 222.009C254.575 221.759 256.088 222.106 257.308 222.971C258.528 223.836 259.355 225.15 259.608 226.624Z" fill="#3F3D56"/>
<path d="M309.997 279.676C309.309 280.367 308.375 280.758 307.4 280.762C306.424 280.766 305.487 280.382 304.794 279.696L253.255 228.562C252.564 227.874 252.173 226.941 252.17 225.965C252.167 224.99 252.55 224.054 253.237 223.361C253.924 222.669 254.858 222.278 255.833 222.273C256.808 222.269 257.745 222.652 258.438 223.338L309.976 274.473C310.668 275.16 311.059 276.094 311.062 277.07C311.066 278.045 310.683 278.982 309.997 279.676Z" fill="#3F3D56"/>
<path d="M255.861 234.34C259.383 234.34 262.239 231.485 262.239 227.963C262.239 224.441 259.383 221.586 255.861 221.586C252.34 221.586 249.484 224.441 249.484 227.963C249.484 231.485 252.34 234.34 255.861 234.34Z" fill="#CCCCCC"/>
<path d="M211.936 117.393C202.147 132.782 187.212 142.996 168.793 149.705C168.429 149.978 168.014 150.176 167.574 150.289C167.133 150.401 166.675 150.426 166.225 150.361C165.775 150.297 165.342 150.144 164.95 149.912C164.559 149.68 164.218 149.374 163.945 149.01C153.94 135.651 156.199 116.558 169.404 106.351C172.596 103.887 176.246 102.082 180.142 101.041C184.038 99.9993 188.101 99.7421 192.097 100.284C196.093 100.826 199.942 102.156 203.419 104.198C206.897 106.239 209.934 108.951 212.355 112.176L212.632 112.545C212.904 112.909 213.103 113.323 213.215 113.764C213.328 114.205 213.353 114.663 213.288 115.113C213.223 115.563 213.071 115.996 212.839 116.387C212.607 116.779 212.3 117.12 211.936 117.393Z" fill="#E6E6E6"/>
<path d="M299.368 112.176C301.789 108.951 304.826 106.239 308.304 104.198C311.781 102.156 315.63 100.826 319.626 100.284C323.622 99.7421 327.685 99.9993 331.581 101.041C335.477 102.082 339.127 103.887 342.319 106.351C355.524 116.558 357.783 135.651 347.778 149.01C347.505 149.374 347.164 149.68 346.772 149.912C346.381 150.144 345.948 150.297 345.498 150.361C345.048 150.426 344.59 150.401 344.149 150.289C343.708 150.176 343.294 149.978 342.93 149.705C325.831 143.159 311.809 131.83 299.787 117.393C299.052 116.842 298.566 116.022 298.435 115.113C298.305 114.204 298.541 113.28 299.091 112.545L299.368 112.176Z" fill="#E6E6E6"/>
<path d="M295.077 319.342C294.454 319.692 293.995 320.275 293.8 320.964C293.606 321.652 293.692 322.389 294.041 323.014L309.612 350.839C309.961 351.463 310.544 351.923 311.233 352.117C311.921 352.312 312.659 352.225 313.283 351.875C313.907 351.526 314.368 350.943 314.562 350.254C314.757 349.566 314.67 348.828 314.32 348.204L298.749 320.379C298.399 319.755 297.816 319.296 297.128 319.102C296.439 318.907 295.702 318.994 295.077 319.342Z" fill="#E6E6E6"/>
<path d="M212.974 320.381L197.403 348.206C197.054 348.831 196.967 349.568 197.161 350.257C197.356 350.945 197.816 351.528 198.44 351.878C199.064 352.227 199.802 352.314 200.49 352.12C201.179 351.925 201.762 351.465 202.112 350.841L217.683 323.016C217.856 322.707 217.966 322.367 218.008 322.015C218.049 321.663 218.021 321.306 217.925 320.965C217.829 320.624 217.666 320.305 217.447 320.027C217.227 319.749 216.955 319.517 216.646 319.344C216.337 319.171 215.996 319.06 215.645 319.019C215.293 318.977 214.936 319.005 214.595 319.102C214.254 319.198 213.935 319.361 213.657 319.58C213.379 319.8 213.147 320.072 212.974 320.381Z" fill="#E6E6E6"/>
<path d="M312.765 357.96C317.371 357.96 321.104 354.226 321.104 349.621C321.104 345.015 317.371 341.281 312.765 341.281C308.159 341.281 304.426 345.015 304.426 349.621C304.426 354.226 308.159 357.96 312.765 357.96Z" fill="#E6E6E6"/>
<path d="M318.652 144.577C323.257 144.577 326.991 140.843 326.991 136.238C326.991 131.632 323.257 127.898 318.652 127.898C314.046 127.898 310.312 131.632 310.312 136.238C310.312 140.843 314.046 144.577 318.652 144.577Z" fill="#E6E6E6"/>
<path d="M255.371 124.952C259.977 124.952 263.71 121.218 263.71 116.613C263.71 112.007 259.977 108.273 255.371 108.273C250.765 108.273 247.032 112.007 247.032 116.613C247.032 121.218 250.765 124.952 255.371 124.952Z" fill="#E6E6E6"/>
<path d="M195.034 143.6C199.639 143.6 203.373 139.867 203.373 135.261C203.373 130.656 199.639 126.922 195.034 126.922C190.428 126.922 186.694 130.656 186.694 135.261C186.694 139.867 190.428 143.6 195.034 143.6Z" fill="#E6E6E6"/>
<path d="M200.43 357.96C205.035 357.96 208.769 354.226 208.769 349.621C208.769 345.015 205.035 341.281 200.43 341.281C195.824 341.281 192.09 345.015 192.09 349.621C192.09 354.226 195.824 357.96 200.43 357.96Z" fill="#E6E6E6"/>
<path d="M306.224 274.984C306.553 275.499 306.99 275.935 307.506 276.262C308.021 276.59 308.603 276.8 309.208 276.878C309.814 276.957 310.429 276.901 311.011 276.716C311.593 276.531 312.128 276.22 312.577 275.806L325.662 282.818L324.96 275.135L312.642 269.655C311.896 268.947 310.917 268.537 309.889 268.502C308.862 268.468 307.857 268.812 307.066 269.469C306.275 270.126 305.752 271.05 305.597 272.066C305.442 273.083 305.665 274.121 306.224 274.984Z" fill="#FFB7B7"/>
<path d="M315.758 277.664L320.886 270.586L345.59 282.264L376.331 276.496C377.851 276.211 379.414 276.264 380.911 276.651C382.408 277.038 383.801 277.75 384.992 278.737C386.183 279.723 387.141 280.959 387.801 282.357C388.46 283.756 388.803 285.282 388.806 286.828C388.808 289.621 387.702 292.3 385.732 294.278C383.761 296.256 381.085 297.372 378.293 297.38L343.064 297.446L315.758 277.664Z" fill="#DACDFB"/>
<path d="M307.86 399.925L302.672 397.444L309.799 375.758L317.456 379.42L307.86 399.925Z" fill="#FFB7B7"/>
<path d="M342.643 396.429C342.266 396.666 341.888 396.898 341.507 397.131C340.749 397.596 339.983 398.053 339.217 398.503C338.832 398.727 338.443 398.952 338.058 399.173V399.185L338.035 399.189L338.028 399.192L337.441 399.337L336.599 397.112L336.21 396.087L335.661 394.635L334.655 391.978L329.358 377.992L337.593 375.961L337.902 377.222H337.906L338.058 377.847L340.936 389.516L341.522 391.902L341.541 391.975L341.896 393.4L342.201 394.635L342.54 396.014L342.643 396.429Z" fill="#FFB7B7"/>
<path d="M391.77 347.304C391.248 348.142 390.714 348.977 390.177 349.804C389.179 351.344 388.154 352.86 387.102 354.354C387.102 354.358 387.098 354.358 387.094 354.362C386.48 354.93 385.803 355.425 385.074 355.837C385.044 355.86 385.01 355.875 384.979 355.894C384.443 356.19 383.872 356.419 383.279 356.576C383.066 356.629 382.849 356.683 382.635 356.736C381.865 356.919 381.103 357.075 380.345 357.212C378.996 357.453 377.662 357.624 376.336 357.731C376.229 357.742 376.122 357.75 376.016 357.757C370.562 358.158 365.254 357.513 359.713 356.458C356.976 355.94 354.183 355.318 351.29 354.674C350.345 354.461 349.396 354.251 348.436 354.042C348.364 354.026 348.287 354.007 348.211 353.992C346.839 353.691 345.444 353.394 344.015 353.1C342.217 352.731 340.361 352.373 338.432 352.033L338.569 354.751C338.684 356.841 339.118 358.901 339.858 360.86C340.681 363.268 341.332 365.173 339.957 369.141L339.294 371.061C339.637 372.015 339.755 373.036 339.638 374.043C339.521 375.05 339.172 376.016 338.619 376.865L338.486 377.067L344.015 391.057L344.374 391.964H341.542L338.059 391.968H332.156L323.638 374.88L323.23 374.064V374.022L324.111 341.184C324.122 340.894 324.145 340.601 324.183 340.311C324.338 338.994 324.754 337.722 325.407 336.568C326.059 335.413 326.935 334.401 327.983 333.588C328.987 332.804 330.137 332.226 331.366 331.89C332.596 331.554 333.88 331.465 335.143 331.63L338.059 332.007L344.015 332.777L348.211 333.322L348.295 333.333L360.669 334.934L361.557 331.313L361.721 331.252L366.93 329.343L384.949 322.739L384.994 322.724L386.179 322.289L386.32 322.518C386.362 322.586 386.404 322.655 386.442 322.724C387.614 324.824 388.568 327.038 389.289 329.332C390.502 333.079 391.501 336.892 392.281 340.753C392.315 340.921 392.346 341.073 392.372 341.21L392.384 341.252C392.395 341.317 392.403 341.359 392.407 341.37C392.822 343.101 392.532 345.212 391.77 347.304Z" fill="#2F2E41"/>
<path d="M392.531 335.205C392.474 334.961 392.402 334.713 392.325 334.473C391.72 332.654 391.015 330.871 390.214 329.13C389.315 327.148 388.236 325.026 386.952 322.728C386.331 321.615 385.663 320.458 384.947 319.256C384.589 318.654 384.217 318.04 383.831 317.415C383.816 317.386 383.799 317.358 383.781 317.331L383.671 317.148L365.843 319.534L359.205 320.422L358.808 323.73L358.713 324.549C358.709 324.549 358.709 324.549 358.713 324.553L358.446 326.786V326.79L358.092 329.74L358.061 329.736L348.21 328.459L338.058 327.145L332.604 326.44C331.34 326.275 330.056 326.363 328.827 326.699C327.598 327.036 326.448 327.613 325.443 328.398C324.396 329.211 323.52 330.223 322.868 331.378C322.216 332.532 321.799 333.804 321.644 335.121C321.61 335.388 321.587 335.662 321.575 335.933L316.431 348.124C313.352 355.415 311.391 363.128 310.615 371.005L306.842 383.066L307.38 383.116L315.375 383.859L317.486 384.057L322.136 377.27C322.665 376.496 323.168 375.7 323.637 374.884C324.409 373.552 325.095 372.172 325.691 370.753L335.748 346.82C336.526 346.954 337.295 347.081 338.058 347.201C341.583 347.773 344.967 348.239 348.21 348.6C358.755 349.778 367.886 349.869 376.015 348.871C378.297 348.592 380.504 348.227 382.634 347.773C383.415 347.609 384.186 347.433 384.947 347.243C385.126 347.201 385.302 347.16 385.477 347.114C387.052 346.708 388.5 345.913 389.688 344.802C390.877 343.692 391.768 342.301 392.28 340.757C392.891 338.968 392.978 337.042 392.531 335.205Z" fill="#2F2E41"/>
<path d="M309.518 396.387L303.904 393.696L303.024 393.273L301.618 396.726L291.801 398.887C291.315 398.993 290.877 399.252 290.549 399.626C290.221 399.999 290.021 400.468 289.979 400.963C289.936 401.458 290.053 401.954 290.312 402.377C290.572 402.801 290.96 403.131 291.42 403.319L301.012 407.233L304.057 404.493L303.31 408.17L306.923 409.645L310.882 397.042L309.518 396.387Z" fill="#2F2E41"/>
<path d="M344.016 391.062L344.374 391.97H344.016V391.062Z" fill="#2F2E41"/>
<path d="M342.061 392.158L336.179 394.196L335.256 394.515L336.686 397.958L331.23 406.401C330.96 406.818 330.831 407.31 330.861 407.806C330.89 408.302 331.078 408.776 331.396 409.158C331.714 409.539 332.146 409.81 332.629 409.928C333.111 410.047 333.619 410.009 334.078 409.818L343.648 405.85L343.884 401.761L345.94 404.899L349.545 403.405L343.491 391.664L342.061 392.158Z" fill="#2F2E41"/>
<path d="M391.064 340.724C390.715 340.723 390.371 340.638 390.062 340.475L359.023 324.257L358.664 322.788L357.988 318.142L357.998 318.099L360.95 304.489C360.895 304.372 360.782 304.181 360.655 303.964C359.337 301.731 355.326 294.935 362.98 285.578L376 269H388C391.084 272.871 393.249 278.024 394.14 282.892C395.03 287.761 394.705 292.774 393.191 297.486L391.99 319.177L393.279 323.557C394.032 326.131 393.907 328.883 392.924 331.379L393.22 338.472C393.231 338.762 393.184 339.052 393.081 339.324C392.978 339.597 392.821 339.845 392.62 340.055C392.419 340.266 392.177 340.433 391.91 340.548C391.643 340.663 391.355 340.723 391.064 340.724Z" fill="#DACDFB"/>
<path d="M364.14 358.615C364.666 358.304 365.117 357.882 365.462 357.378C365.807 356.874 366.038 356.301 366.137 355.698C366.237 355.096 366.203 354.479 366.038 353.891C365.873 353.303 365.581 352.758 365.183 352.295L372.646 339.461L364.943 339.895L359.038 352.016C358.304 352.736 357.86 353.701 357.79 354.727C357.72 355.752 358.029 356.768 358.658 357.582C359.287 358.395 360.192 358.95 361.203 359.14C362.213 359.331 363.258 359.144 364.14 358.615Z" fill="#FFB7B7"/>
<path d="M367.152 349.183L360.256 343.812L372.786 319.529L368.091 288.606C367.859 287.077 367.966 285.516 368.405 284.034C368.844 282.551 369.604 281.184 370.631 280.028C371.658 278.873 372.927 277.957 374.348 277.347C375.768 276.737 377.306 276.447 378.851 276.498C381.642 276.593 384.281 277.791 386.189 279.83C388.098 281.868 389.12 284.581 389.031 287.372L387.871 322.582L367.152 349.183Z" fill="#DACDFB"/>
<path d="M369.021 263.405V251.991C369.018 247.935 370.627 244.044 373.494 241.174C376.36 238.304 380.249 236.69 384.305 236.688C388.361 236.685 392.252 238.294 395.122 241.16C397.992 244.026 399.606 247.915 399.609 251.971V251.991C402.304 257.608 400.618 260.279 399.609 263.405C399.608 263.949 399.391 264.471 399.006 264.856C398.621 265.241 398.099 265.457 397.555 265.458H371.075C370.531 265.457 370.009 265.241 369.624 264.856C369.239 264.471 369.022 263.949 369.021 263.405Z" fill="#2F2E41"/>
<path d="M379.301 264.708C385.623 264.708 390.748 259.583 390.748 253.26C390.748 246.938 385.623 241.812 379.301 241.812C372.978 241.812 367.853 246.938 367.853 253.26C367.853 259.583 372.978 264.708 379.301 264.708Z" fill="#FFB7B7"/>
<path d="M391.281 256.267C391.177 256.251 391.073 256.229 390.97 256.213C389.184 255.896 387.398 255.585 385.618 255.262L385.454 251.227L383.297 254.842C378.377 256.475 373.773 255.552 369.443 253.515C368.014 252.837 366.628 252.073 365.292 251.227C365.656 248.995 366.514 246.872 367.804 245.015C369.094 243.157 370.783 241.612 372.747 240.491C372.91 240.398 373.069 240.316 373.233 240.234L373.235 240.234L373.237 240.232L373.238 240.231L373.238 240.229C373.517 240.097 373.801 239.972 374.085 239.857C376.308 238.988 378.732 238.768 381.075 239.223C383.418 239.677 385.584 240.787 387.322 242.424C390.817 245.76 392.389 251.271 391.281 256.267Z" fill="#2F2E41"/>
<path d="M376.468 262.022C376.468 262.022 376.798 269.938 376.999 269C377.498 269.5 385.996 269.004 385.996 269.004L383.478 261.543L376.468 262.022Z" fill="#FFB6B6"/>
</g>
<defs>
<clipPath id="clip0_5638_50599">
<rect width="331.448" height="310" fill="white" transform="translate(119 100)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,149 @@
class ProvidePhoneNumber {
modal;
declineModal;
providePhoneNumberLaterButton;
phoneNumberInput;
agovInputPhoneNumberInput;
repeatPhoneNumberInput;
agovInputRepeatPhoneNumberInput;
constructor() {
this.modal = document.querySelector('#modal');
this.declineModal = document.querySelector('#declineModal');
this.providePhoneNumberLaterButton = document.querySelector('#providePhoneNumberLaterButton');
this.phoneNumberInput = document.querySelector('#phoneNumberInput');
this.agovInputPhoneNumberInput = document.querySelector('#agovInputPhoneNumberInput');
this.agovInputRepeatPhoneNumberInput = document.querySelector('#agovInputRepeatPhoneNumberInput');
this.repeatPhoneNumberInput = document.querySelector('#repeatPhoneNumberInput');
this.initializePhoneInput(this.phoneNumberInput);
this.addPhoneInputEventHandlers(this.phoneNumberInput);
this.addPhoneInputEventHandlers(this.repeatPhoneNumberInput);
document.querySelector('#declineModalBack').addEventListener('click', () => {
this.resetValidation(this.agovInputPhoneNumberInput);
this.setInvisible(this.declineModal);
});
document.querySelector('#repeatPhoneNumberModalBack').addEventListener('click', () => {
this.initializePhoneInput(this.phoneNumberInput);
this.setInvisible(this.modal);
});
document.querySelector('#repeatPhoneNumberModalContinue').addEventListener('click', () => {
if (this.validateInput(this.agovInputRepeatPhoneNumberInput)) {
this.evaluatePhoneNumbersAndSubmit();
this.initializePhoneInput(this.phoneNumberInput);
}
});
document.querySelector('#providePhoneNumberContinueButton').addEventListener('click', () => {
const dialCode = `+${window.phoneNumberUtils.getDialCode()}`;
if (this.validateInput(this.agovInputPhoneNumberInput)) {
this.repeatPhoneNumberInput.value = '';
this.initializePhoneInput(this.repeatPhoneNumberInput);
this.resetValidation(this.agovInputRepeatPhoneNumberInput);
this.showErrorBanner(false);
this.setVisible(this.modal);
}
else if (this.phoneNumberInput.value.trim() === '' ||
this.phoneNumberInput.value.trim() === dialCode) {
this.setVisible(this.declineModal);
}
});
}
addPhoneInputEventHandlers(phoneInputElement) {
phoneInputElement.addEventListener('input', () => {
this.formatAndEmitPhoneNumberValue(phoneInputElement);
});
phoneInputElement.addEventListener('countrychange', () => {
this.onPhoneNumberCountryChange(phoneInputElement);
});
}
async initializePhoneInput(inputElement) {
if (inputElement.value) {
await window.phoneNumberUtils.initializePhoneNumberField(inputElement, inputElement.value);
}
else {
await window.phoneNumberUtils.initializePhoneNumberField(inputElement);
}
}
onPhoneNumberCountryChange(inputElement) {
inputElement.value = window.phoneNumberUtils.formatAfterCountryChange();
}
formatAndEmitPhoneNumberValue(inputElement) {
inputElement.value = window.phoneNumberUtils.formatUsingInputValue();
}
resetValidation(agovInput) {
agovInput.validity = true;
}
validateInput(agovInput) {
const innerInput = agovInput.querySelector('input');
if (innerInput.value.trim().length === 0) {
agovInput.supportingText = 0;
agovInput.focus();
agovInput.validity = false;
return false;
}
else if (!window.phoneNumberUtils.validatePhoneNumber(false, true)) {
agovInput.supportingText = 2;
agovInput.focus();
agovInput.validity = false;
return false;
}
return true;
}
setInvisible(modalElement) {
window.utils.changeDisplay(modalElement, 'hidden', 'block');
}
setVisible(modalElement) {
window.utils.changeDisplay(modalElement, 'block', 'hidden');
const isMobile = !!/(iPhone|Android)/.test(window.navigator.userAgent);
if (isMobile) {
modalElement.classList.add('mobileDrawer');
document.dispatchEvent(new Event('initDrawerPopup'));
}
}
arePhoneNumbersEqual() {
const phoneNumber = this.phoneNumberInput.value.trim();
const repeatedPhoneNumber = this.repeatPhoneNumberInput.value.trim();
return phoneNumber === repeatedPhoneNumber;
}
evaluatePhoneNumbersAndSubmit() {
if (this.arePhoneNumbersEqual()) {
document.querySelector('#mobile').value = this.repeatPhoneNumberInput.value.trim().replaceAll(' ', '');
// Some other 'click' listeners from gsap (used in drawer.js) seem to interfere with the trigger click on
// submitPhoneNumber button. It happens only on mobile devices, where the drawer is used. setTimeout seems to help
// to avoid the issue (although it is just a workaround).
setTimeout(() => {
document.querySelector('#submitPhoneNumber').click();
}, 100);
}
else {
this.setInvisible(this.modal);
this.showErrorBanner(true);
}
}
showErrorBanner(visible) {
const errorBanner = document.getElementById('errorBanner');
if (visible) {
window.utils.changeDisplay(errorBanner, 'block', 'hidden');
}
else {
window.utils.changeDisplay(errorBanner, 'hidden', 'block');
}
}
}
document.addEventListener('DOMContentLoaded', () => {
document.dispatchEvent(new Event('initPhoneNumberUtils'));
window.providePhoneNumber = new ProvidePhoneNumber();
});

View File

@ -0,0 +1,3 @@
document.addEventListener('DOMContentLoaded', function() {
document.dispatchEvent(new Event('initFido'));
});

View File

@ -0,0 +1,91 @@
function setValueToSecurityKeyOrAccessAppLabel(element, selectedMethod) {
element.textContent = (selectedMethod === 'securityKey'
? element.dataset.securitykeylabel
: element.dataset.accessapplabel);
}
function changeDisplay(element, displayToAdd, displayToRemove) {
if (element) {
element.classList.remove(displayToRemove);
element.classList.add(displayToAdd);
}
}
function showSecurityKeyModal() {
changeDisplay(securityKeyModal, 'flex', 'hidden');
changeDisplay(accessAppModal, 'hidden', 'block');
changeDisplay(mobileSecurityKeyModal, 'flex', 'hidden');
changeDisplay(mobileAccessAppModal, 'hidden', 'block');
}
function showAccessAppModal() {
changeDisplay(accessAppModal, 'block', 'hidden');
changeDisplay(securityKeyModal, 'hidden', 'flex');
changeDisplay(mobileAccessAppModal, 'block', 'hidden');
changeDisplay(mobileSecurityKeyModal, 'hidden', 'flex');
}
function changeLabelsBasedOnSelectedMethod(selectedMethod) {
labelsToChangeBasedOnSelectedMethod.forEach(label => {
if (label) {
setValueToSecurityKeyOrAccessAppLabel(label, selectedMethod);
}
});
}
const mainContent = document.querySelector('#mainContent');
const mobileLoginContainer = document.querySelector('#mobileLoginContainer');
const mobileSecurityKeyModal = mobileLoginContainer.querySelector('#securityKeyModal');
const mobileAccessAppModal = mobileLoginContainer.querySelector('#accessAppModal');
const desktopTitle = document.querySelector('#desktopTitle');
const mobileSubtitle = document.querySelector('#mobileSubtitle');
const cannotLoginSubtitle = document.querySelector('#cannotLoginSubtitle');
const cannotLoginSubtitleDrawer = document.querySelector('#cannotLoginSubtitleDrawer');
const accessAppModal = document.querySelector('#accessAppModal');
const securityKeyModal = document.querySelector('#securityKeyModal');
const accessAppBtn = document.querySelector('#accessAppLoginBtn');
const securityKeyBtn = document.querySelector('#securityKeyLoginBtn');
const labelsToChangeBasedOnSelectedMethod = [
desktopTitle,
mobileSubtitle,
cannotLoginSubtitle,
cannotLoginSubtitleDrawer
];
document.addEventListener('showAccessAppLogin', () => {
showAccessAppModal();
changeLabelsBasedOnSelectedMethod('accessApp');
});
document.addEventListener('showSecurityKeyLogin', () => {
showSecurityKeyModal();
changeLabelsBasedOnSelectedMethod('securityKey');
});
changeLabelsBasedOnSelectedMethod(mainContent.dataset.lastloginmethod);
if (mainContent.dataset.lastloginmethod === 'securityKey') {
showSecurityKeyModal();
changeDisplay(accessAppBtn, 'block', 'hidden');
changeDisplay(securityKeyBtn, 'hidden', 'block');
}
else {
showAccessAppModal();
changeDisplay(securityKeyBtn, 'block', 'hidden');
changeDisplay(accessAppBtn, 'hidden', 'block');
}
securityKeyBtn.addEventListener('click', () => {
showSecurityKeyModal();
changeDisplay(accessAppBtn, 'block', 'hidden');
changeDisplay(securityKeyBtn, 'hidden', 'block');
changeLabelsBasedOnSelectedMethod('securityKey');
});
accessAppBtn.addEventListener('click', () => {
showAccessAppModal();
changeDisplay(securityKeyBtn, 'block', 'hidden');
changeDisplay(accessAppBtn, 'hidden', 'block');
changeLabelsBasedOnSelectedMethod('accessApp');
});

View File

@ -0,0 +1,14 @@
document.addEventListener('DOMContentLoaded', function() {
document.dispatchEvent(new Event('initQRCode'));
document.dispatchEvent(new Event('initDrawer'));
document.dispatchEvent(new Event('initCantonalBranding'));
const cantonalBranding = document.querySelector('header #cantonalBrandingMobile');
const helpMenu = document.querySelector('agov-mobile-menu');
if (cantonalBranding && helpMenu) {
cantonalBranding.addEventListener('click', (event) => {
event.stopPropagation();
helpMenu.toggleMenu();
});
}
});

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