mirror of
https://github.com/simple-login/app.git
synced 2024-11-13 07:31:12 +01:00
c18d9f5280
register page redirect user to dashboard if they are logged in enable csrf for login page Set models more strict bootstrap developer page add helper method to ModelMixin, remove CRUDMixin display list of clients on developer index, add copy client-secret to clipboard using clipboardjs add toastr and use jquery non slim display a toast when user copies the client-secret create new client, generate client-id using unidecode client detail page: can edit client add delete client implement /oauth/authorize and /oauth/allow-deny implement /oauth/token add /oauth/user_info endpoint handle scopes: wip take into account scope: display scope, return user data according to scope create virtual-domain, gen email, client_user model WIP create authorize_nonlogin_user page user can choose to generate a new email no need to interfere with root logger log for before and after request if user has already allowed a client: generate a auth-code and redirect user to client get_user_info takes into account gen email display list of clients that have user has authorised use yk-client domain instead of localhost as cookie depends on the domain name use wtforms instead of flask_wtf Dockerfile delete virtual domain EMAIL_DOMAIN can come from env var bind to host 0.0.0.0 fix signup error: use session as default csrf_context rename yourkey to simplelogin add python-dotenv, ipython, sqlalchemy_utils create DB_URI, FLASK_SECRET. Load config from CONFIG file if exist add shortcuts to logging create shell add psycopg2 do not add local data in Dockerfile add drop_db into shell add shell.prepare_db() fix prepare_db setup sentry copy assets from tabler/dist add icon downloaded from https://commons.wikimedia.org/wiki/File:Simpleicons_Interface_key-tool-1.svg integrate tabler - login and register page add favicon template: default, header. Use gravatar for user avatar url use default template for dashboard, developer page use another icon add clipboard and notie prettify dashboard add notie css add fake gen email and client-user prettify list client page, use notie for toast add email, name scope to new client display client scope in client list prettify new-client, client-detail add sentry-sdk and blinker add arrow, add dt jinja filter, prettify logout, dashboard comment "last used" in dashboard for now prettify date display add copy email to clipboard to dashboard use "users" as table name for User as "user" is reserved key in postgres call prepare_db() when creating new db error page 400, 401, 403, 404 prettify authorize_login_user create already_authorize.html for user who has already authorized a client user can generate new email display all other generated emails add ENV variable, only reset DB when ENV=local fix: not return other users gen emails display nb users for each client refactor shell: remove prepare_db() add sendgrid add /favicon.ico route add new config: URL, SUPPORT_EMAIL, SENDGRID_API_KEY user needs to activate their account before login create copy button on dashboard client can have multiple redirect uris, in client detail can add/remove redirect-uri, use redirect_uri passed in /authorize refactor: move get_user_info into ClientUser model dashboard: display all apps, all generated emails add "id" into user_info add trigger email button invalidate the session at each new version by changing the secret centralize Client creation into Client.create_new user can enable/disable email forwarding setup auto dismiss alert: just add .alert-auto-dismiss move name down in register form add shell.add_real_data move blueprint template to its own package prettify authorize page for non-authenticated user update readme, return error if not redirect_uri add flask-wtf, use psycopg2-binary use flask-wtf FlaskForm instead of Form rename email -> email_utils add AWS_REGION, BUCKET, AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY to config add s3 module add File model, add Client.icon_id handle client icon update can create client with icon display client icon in client list page add Client.home_url take into account Client.home_url add boto3 register: ask name first only show "trigger test email" if email forwarding is enabled display gen email in alphabetical order, client in client.name alphabetical order better error page the modal does not get close when user clicks outside of modal add Client.published column discover page that displays all published Client add missing bootstrap.bundle.min.js.map developer can publish/unpublish their app in discover use notie for display flash message create hotmail account fix missing jquery add footer, add global jinja2 variable strengthen model: use nullable=False whenever possible, rename client_id to oauth_client_id, client_secret to oauth_client_secret add flask-migrate init migrate 1st migrate version fix rename client_id -> oauth_client_id prettify UI use flask_migrate.upgrade() instead of db.create_all() make sure requirejs.config is called for all page enable sentry for js, use uppercase for global jinja2 variables add flask-admin add User.is_admin column setup flask admin, only accessible to admin user fix migration: add server_default replace session[redirect_after_login] by "next" request args add pyproject.toml: ignore migrations/ in black add register waiting_activation_email page better email wording add pytest add get_host_name_and_scheme and tests example fail test fix test fix client-id display add flask-cors /user_info supports cors, add /me as /user_info synonym return client in /me support implicit flow no need to use with "app.app_context()" add watchtower to requirement add param ENABLE_CLOUDWATCH, CLOUDWATCH_LOG_GROUP, CLOUDWATCH_LOG_STREAM add cloudwatch logger if cloudwatch is enabled add 500 error page add help text for list of used client display list of app/website that an email has been used click on client name brings to client detail page create style.css to add additional style, append its url with the current sha1 to avoid cache POC on how to send email using postfix add sqlalchemy-utils use arrow instead of datetime add new params STRIPE_API, STRIPE_YEARLY_SKU, STRIPE_MONTHLY_PLAN show full error in local add plan, plan_expiration to User, need to create enum directly in migration script, cf https://github.com/sqlalchemy/alembic/issues/67 reformat all html files: use space instead of tab new user will have trial plan for 15 days add new param MAX_NB_EMAIL_FREE_PLAN only user with enough quota can create new email if user cannot create new gen email, pick randomly one from existing gen emails. Use flush instead of commit rename STRIPE_YEARLY_SKU -> STRIPE_YEARLY_PLAN open client page in discover in a new tab add stripe not logging /static call: disable flask logging, replace by after_request add param STRIPE_SECRET_KEY add 3 columns stripe_customer_id, stripe_card_token, stripe_subscription_id user can upgrade their pricing add setting page as coming-soon add GenEmail, ClientUser to admin ignore /admin/static logging add more fake data add ondelete="cascade" whenever possible rename plan_expiration -> trial_expiration reset migration: delete old migrations, create new one rename test_send_email -> poc_send_email to avoid the file being called by pytest add new param LYRA_ANALYTICS_ID, add lyra analytics add how to create new migration into readme add drift to base.html notify admin when new user signs up or pays subscription log exception in case of 500 use sendgrid to notify admin add alias /userinfo to user_info endpoint add change_password to shell add info on how payment is handled invite user to retry if card not working remove drift and add "contact us" link move poc_send_email into poc/ support getting client-id, client-secret from form-data in addition to basic auth client-id, client-secret is passed in form-data by passport-oauth2 for ex add jwtRS256 private and public key add jwk-jws-jwt poc add new param OPENID_PRIVATE_KEY_PATH, OPENID_PRIVATE_KEY_PATH add scope, redirect_url to AuthorizationCode and OauthToken take into scope when creating oauth-token, authorization-code add jwcrypto add jose_utils: make_id_token and verify_id_token add &scope to redirect uri add "email_verified": True into user_info fix user not activated add /oauth2 as alias for /oauth handle case where scope and state are empty remove threaded=False Use Email Alias as wording remove help text user can re-send activation email add "expired" into ActivationCode Handle the case activation code is expired reformat: use form.validate_on_submit instead of request.method == post && form.validate use error text instead of flash() display client oauth-id and oauth-secret on client detail page not display oauth-secret on client listing fix expiration check improve page title, footer add /jwks and /.well-known/openid-configuration init properly tests, fix blueprint conflict bug in flask-admin create oauth_models module rename Scope -> ScopeE to distinguish with Scope DB model set app.url_map.strict_slashes = False use ScopeE instead of SCOPE_NAME, ... support access_token passed as args in /userinfo merge /allow-deny into /authorize improve wording take into account the case response_type=code and openid is in scope take into account response_type=id_token, id_token token, id_token code make sure to use in-memory db in test fix scope can be null allow cross_origin for /.well-known/openid-configuration and /jwks fix footer link center authorize form rename trial_expiration to plan_expiration move stripe init to create_app() use real email to be able to receive email notification add user.profile_picture_id column use user profile picture and fallback to gravatar use nguyenkims+local@gm to distinguish with staging handle plan cancel, reactivation, user profile update fix can_create_new_email create cron.py that set plan to free when expired add crontab.yml add yacron use notify_admin instead of LOG.error add ResetPasswordCode model user can change password in setting increase display time for notie add forgot_password page If login error: redirect to this page upon success login. hide discover tab add column user.is_developer only show developer menu to developer comment out the publish button set local user to developer make sure only developer can access /developer blueprint User is invited to upgrade if they are in free plan or their trial ends soon not sending email when in local mode create Partner model create become partner page use normal error handling on local fix migration add "import sqlalchemy_utils" into migration template small refactoring on setting page handle promo code. TODO: add migration file add migration for user.promo_codes move email alias on top of apps in dashboard add introjs move encode_url to utils create GenEmail.create_new_gen_email create a first alias mail to show user how to use when they login show intro when user visits the website the first time fix register
1 line
No EOL
14 KiB
XML
Executable file
1 line
No EOL
14 KiB
XML
Executable file
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480"><path fill="#00ab39" d="M0 240h640v240H0z"/><path fill="#fff" d="M0 0h640v240H0z"/><g stroke="#000" stroke-width="1.388"><path d="M418.916 70.772c-.008.015-.014.033-.024.048.026-.014.047-.034.073-.048h-.05zm-.024.048c-40.283 22.275-76.34 45.452-111.783 74.988-17.01 14.86-12.21 26.704-12.868 40.048.548 8.958-1.936 17.292-7.446 22.314-12.607 2.55-25.226 5.113-37.83 7.663-1.21-3.49-2.408-6.972-3.615-10.46 1.153-5.35 5.577-7.98 14.892-4.625.734-6.88-4.802-9.68-11.277-12.072-2.225-1.732-4.988-3.062-4.627-9.013-1.09-13.468 20.523.964 20.723.964.202 0-.72-13.592-10.65-16.313-5.414-1.916-7.705-7.627-5.638-11.855 4.332-8.644 12.487.676 18.723 1.01-.234-5.64-1.84-9.662-6.7-14.216-2.614-1.61-9.038-2.82-9.204-5.518-.135-3.664 6.022-5.23 14.483-4.217-1.764-5.136-7.454-8.458-15.277-10.868l-4.627-8.05c-2.19-4.054-3.174-4.164 1.903-11.854 4.56-2.95 10.62-7.122 15.18-10.072-1.677-.202-3.358-.402-5.035-.603.67-5.5.747-7.35 2.024-16.482-4.894 6.688-11.007 5.492-16.506 8.242 0 0-15.676 2.783-20.723 9.446-.2 0-39.422-2-39.422-2-8.357 1.164-15.497 3.533-16.89 11.663-19.117 1.93-39.136.223-53.71 18.507 9.922-.47 18.61-2.833 29.758-1.398 0 0 9.5.18 11.47 10.24.2.402 3.23.41 3.23.41 1.206.938 2.405 1.88 3.613 2.82.47-1.275.93-2.56 1.4-3.832l3.228 2.216c.334-1.408.677-2.808 1.012-4.216 1.073.737 2.13 1.48 3.205 2.216.067-1.676.15-3.36.216-5.036l4.218 3.012v-6.626s15.57-.036 20.314 9.855c.202.2-43.694 8.067-86.097 4.433 4.09-2.012 8.175-4.036 12.265-6.048-15.46-3.143-29.996-5.985-43.638-16.7 5.148 19.384 31.754 42.15 37.205 42.05 0 .2-5.23-9.447-5.23-9.447 15.358.67 30.717 1.33 46.073 2 1.677 5.097.935 10.81 5.036 15.302 0 0-2.544 8.424 3.108 11.855.202.402 6.747-17.085 6.747-17.085s2.006 4.705 4.026 7.832c2.926-15.042 19.3-17.494 19.3-17.494s3.423 7.847 3.423 8.05c-5.118.74-11.483 11.17-8.05 16.89-3.43.065-9.524 10.167-7.638 15.687-2.885 2.87-10.07 6.698-8.242 18.723-5.655 1.212-9.003 11.56-7.252 22.53-8.752 8.146-6.603 23.1 1.205 29.156-3.24 2.884-5.237 5.102-5.23 8.65-3.08-1.144-5.92-.187-7.253 1.832-3.776-3.87-9.2-7.262-13.06-3.638-1-4.58-6.964-9.62-13.493-9.036.382-4.83-2.125-10.81-9.037-12.892 0 0-1.4-22.637-8.265-29.976-.673-4.107.393-6.9 6.048-10.265 5.647-3.013 6.847-5.35 6.434-13.88 2.226-5.704 3.917-11.518-3.012-15.47.21 6.782-1.873 10.048-4.626 13.06-3.29-.48-4.44 3.36-6.652 5.036-3.097-4.174 6.532-10.64-.603-19.927-.4-.405-4.98-12.125-16.29-11.857 5.376 3.148 7.65 8.444 7.64 13.88-3.566 10.058-5.377 17.832-1.807 29.373-4.698-7.04-7.363-20.42-11.253-22.747-3.41-.666-5.076-8.73-18.314-6.435 5.712 1.536 7.525 5.897 9.062 9.856-3.502 1.806-1.762 6.57.795 9.856-.486 7.722 4.14 12.234 11.06 15.108-1.14 10.528-2.282 21.038-3.422 31.566-2.748-.35-6.978 10.352-8.65 10.675-2.69 1.674-7.388 6.177-2 7.446-1.6 5.778-3.085 9.26-11.687 10.46 0 0 9.09 5.39 16.626-3.832 8.077-.203 5.42-9.833 9.326-14.073 0-.2 2.216-1.593 5.445-10.072 1.413 7.572 9.182 30.757 26.748 42.265 15.31 16.39 27.894 31.87 27.76 53.71 5.975-5.557 9.543-14.36 12.288-22.746 8.31-2.89 20.197-3.994 30.796-3.518-1.818 3.825-3.853 7.496-1.23 9.976-7.396 2.54-9.017 7.91-6.047 13.277-7.798 5.295-8.31 8.698-8.435 17.494-14.425 18.496-23.324 17.88-37.614 13.085-4.692-2.754-11.955-6.72-15.3-4.627-6.172-4.113-15.046-4.723-16.506 4.627 4.63-3.84 7.396-3.098 11.084.603-.742 1.878-1.362 3.75 1.397 4.82-1.207 1.34-2.406 2.683-3.614 4.023-6.64-1.02-15.57-.963-17.903 8.65 3.412-2.825 10.98-3.488 17.084-.793 1.142.402 2.283.8 3.424 1.204.134 1.543.276 3.085.41 4.627 0 0-9.047-1.396-11.47 13.278 8.48-9.023 14.48-6.65 14.48-6.65 3.27 4.784 15.3 4.064 23.953-3.808 12.154-6.794 15.697 2.97 23.542-3.422 6.504-4.85 14.2-1.625 19.493 4.025 6.103 2.29 12.49 4.173 17.518 0 0 0 6.14-3.918 12.266 2.41.067-7.136-4.99-10.926-11.855-11.06l-2.024-2.025c-6.437-1.342-13.67-.798-19.3-4.024 2.653-10.074 6.52-19.202 14.072-26.963 9.32-9.992 16.182-14.535 27.952-29.832-.455 8.645 6.17 18.257 9.662 27.037 0 0 7.03-11.223 8.05-20.337.2 0 8.807-4.48 12.48-8.29 7.754 4.81 20.392-3.85 28.555-11.01 5.03 1.903 8.85 1.766 14.698 0-4.694 9.552 2.715 18.414 14.482 22.12 1.088 8.433 9.607 10.2 22.53 10.264.545 4.962 8.242 5.637 8.242 5.637-4.865 2.267-7.4 4.54-7.23 9.663-4.985.034-8.76 1.288-10.073 7.036-6.844.117-13.82.642-19.71 4.024-6.305-.978-13.974-3.59-18.917-8.65-2.55-2.147-3.185-5.24-7.638-6.435-2.822-3.335-6.2-2.59-7.253.603-2.918-2.278-13.86-3.337-15.688 7.037 5.108-3.74 9.688-5.164 12.892-.603-1.746 3.166 4.253 4.978 9.446 6.24 3.683.23 10.214 3.584 12.265 9.254-4.75 1.44-11.95.966-16.7-2.627-4.22-3.534-9.924-3.113-13.06-.796-4.348-2.772-14.705 2.462-15.107 10.843 4.362-3.997 8.333-5.93 12.288-3.397-1.968.467-1.22.66-1.012 1.807 3.353 1.945 6.696 3.887 10.05 5.83-4.932 1.302-9.567 3.27-7.423 12.46 0 0 4.017-7.94 13.06-5.013.202-.2 1.248 2.836 3.832.796 3.914-4.454 12.864-6.448 20.723-7.23 6.308-.753 12.605-2.61 18.097.99 4.89-2.517 10.333-4.208 15.903-.194 6.572 2.08 11.37 9.74 19.71 6.24 4.15-2.87 9.246-3.016 14.483 2.82.064-7.358-5.45-9.825-13.277-11.47-1.81-1.074-3.61-2.155-5.42-3.228-5.03-.74-10.08.152-15.11-2.218 26.32-6.804 44.772-21.482 57.76-42.434 4.158 1.476 8.3 2.934 12.458 4.41 2.95.19 3.174 1.214 9.253 3.037.23-8.956-3.615-18.18-19.71-19.11l-21.132-8.047c-4.486-4.73-6.514-14.768-.796-20.723 5.597-4.983 6.573-4.387 10.265-10.458 4.49-.41 8.72 4.217 12.868 4.217 1.97 5.85 13.32 11.022 20.53 9.253 4.517 4 13.114 6.223 22.53 3.012 5.344 4.678 12.306 6.63 20.506 3.012 2.178 2.176 6.774 3.907 12.073 2.82.403 0 2.678 5.813 8.458 7.854-2.52 2.45-.97 13.082 1.615 16.89-1.764 4.09-2.32 8.45-.82 12.676-5.827 3.747-7.014 6.535-4.41 12.868-7.632 12.265-16.763 13.667-25.348 9.88-3.086-1.946-6.167-3.91-9.253-5.857-3.286-3.218-6.57-6.418-9.855-9.637-1.674-1.57-5.137-2.064-5.857 1.398 0 0-12.645-2.82-13.663 7.856 5.242-5.105 12.675-.61 12.675-.41 0 .202-1.77 1.406-.41 3.446.307-.255 9.233 3.33 17.182 6.747 4.318 1.636 5.267 2.148 7.156 3.156a340.807 340.807 0 0 0-7.156-3.157c-4.84-1.835-9.553-3.3-10.94-2.94-4.504-.42-9.28-.98-11.47 2.41-4.84 2.047-12.402 3.687-12.073 12.674 3.27-5.35 7.754-5.125 13.47-4.627-.134.403-.25.802-.385 1.205 6.206 2.827 5.03-.77 10.818-1.3 4.84-.445 11.7 1.288 15.325 2.505-4.56 1.34-10.76.778-13.686 4.024-.537 1.075-2.415.636-1.59 3.206 0 0-8.894-.23-11.278 12.072 9.043-5.79 15.895-5.614 16.096-5.614.2 0 2.82.602 2.82.602s10.86-7.253 11.06-7.253c.2 0 10.515-4.567 15.276.602 4.155 2.043 8.6 2.173 12.892-.41 8.456-3.677 16.37-3.935 24.145 1.23l7.034 4.216c1.006-.67 2.007-1.352 3.013-2.023 0 0 7.964-2.25 13.807 4.843-2.415-12.27-11.18-12.674-11.18-12.674-.672-.604-1.355-1.204-2.025-1.807-4.16-1.61-8.3-3.235-12.46-4.844-1.814-4.493-6.374-8.07-1.83-13.47 4.642-23.076 10.192-40.406 1.205-63.784 8.382 3.62 14.654 14.818 25.156 10.868 0-9.39-34.56-27.215-60.962-41.542 43.253-2.213 95.236-34.142 75.253-74.723 3.153-9.79 6.294-19.583 9.447-29.374 4.45 8.964 13.457 15.795 21.54 18.7-6.662-12.72-10.485-51.61-6.65-78.458-17.428 21.53-36.674 40.638-57.132 60.048 10.063 2.352 18.855.697 28.58-.506-2.75 5.633-5.42 11.283-8.17 16.916-26.582-15.566-57.79-3.884-58.024 16.892.91 24.227 30.865 27.67 48.145 19.228-3.425 22.09-54.193 13.952-54.193 13.952-18.038-6.218-35.17-5.153-54.12-5.012 3.938-12.113 25.8-22.864 42.458-18.12-23.32-26.147 3.296-58.61 35.397-68.603-34.99-11.54-4.86-38.213 21.326-57.325 0 0-75.306 31.692-82.17 31.59-21.42-1.61-15.58-26.962-7.42-40.602zm-236.36 30.434c1.752.01 3.812.18 5.444.578 3.396.828 7.53 1.302 7.47 2.314-1.57 2.63-5.433 5.805-9.228 5.614-3.795-.19-5.99-2.466-7.253-8.17.388-.21 1.813-.345 3.566-.336zm316.987 89.35c4.936-.068 10.85 2.02 16.625 8.144-2.776 7.997-26.866 12.103-28.48.265-.49-3.58 4.638-8.312 11.854-8.41z" fill="#d21034"/><path d="M207.406 171.15l3.653 5.313m-.167.168s0 7.14 1.494 7.308m-3.32 3.818c.165.167 3.82 6.31 3.82 6.31m-10.463 1.66c.165 0 4.65 5.15 4.65 5.15m3.895-3.995c0 .167 4.24 8.147 4.573 8.147m-10.13-2.657s1.495 9.63 2.823 9.3m-9.1 8.35l4.285 6.43m3.654-13.286s2.325 9.133 4.15 8.302m1.824-13.786c.166.166 4.322 6.15 5.483 5.318m-.994 2.324l3.985 7.972m-10.627-1.828c.166.333 3.32 9.467 3.32 9.467m-10.96-4.65s2.99 10.13 5.648 8.468m-6.808 4.984s.166 5.314 2.823 5.645m1.827-8.303c0 .166 2.657 3.82 2.657 3.82m4.932-10.14l2.207 3.497m4.815-9.963l3.322 4.15m-18.732-51.767c.166 4.484 7.277-1.58 10.1-5.4m-13.123 20.967s7.805-5.48 13.784-13.783m-16.276 26.9c5.48-1.495 15.564-13.69 17.556-20.166m-18.718 32.287c1.496.665 20.33-12.9 20.83-22.864m-21.327 33.327c0-.165 17.22-4.39 24.36-23.32m-25.284 37.65s27.495-16.488 28.99-28.61m185.653 56.294s-1.773 14.228-16.055 16.387m20.538 9.02c.166-.166 13.617-14.945 10.13-19.43m21.09 5.15s-.166 10.295-8.636 17.435m25.408-14.447s.333 12.454-4.982 17.436m20.425-9.965s-5.958 11.663-8.117 12.826m7.86 7.845s7.84 1.954 10.33-3.194m-8.298 20.113s7.248 1.31 10.57-5.665m-11.347 18.725s5.866 4.928 9.85-1.547m-94.032-94.412s-.665 25.242 34.872 30.39c39.69 10.96 58.453 5.147 60.78 49.652-1.495 16.938-3.6 36.07-15.888 28.762m-117.452-85.552s5.647 10.13 12.455 9.465c8.967-2.656 12.288 2.824 12.288 2.824m-48.987-2.16s14.947 7.308 27.732-4.483m-26.07-5.977c1.327 17.437-20.095 27.4-28.565 25.74m29.58 41.076c.166 0 11.604-6.867 9.28-11.684m-32.05 1.496c.33-.334 19.262-2.16 22.75-8.97m-31.552-18.93c0-.166 26.868.074 28.694 5.055m7.01-20.997s-26.24 44.837 22.25 44.837m-49.984-45.502s-5.647 16.774-13.618 22.42m-14.28-28.23s9.743 18.852-.055 28.15M261.06 280.78c.166.332 3.155 26.736-3.488 34.208m-9.132-33.378s.996 16.772-3.985 22.75c-4.983 5.98 1.166 18.396 1.166 18.396m-60.53 8.063s3.567 6.256 8.55 4.097m-2.492-17.768s7.97 3.487 10.628 2.158m-1.993-30.39s-11.79 3.322-7.306 17.27c6.807 5.482 13.45 4.65 13.45 4.65M176.534 348.2c-.165 0 1.33 10.96 8.968 2.656 5.314-11.125 22.086-42.512 25.906-53.306m7.804-5.147s-8.137-6.31-7.804 2.49c-.167 5.48 2.49 6.808 2.49 6.808.332 3.987 3.82 9.632 6.642 4.485 1.163-4.982-.83-7.14-.83-7.14m4.65-8.968c-7.307-.5-11.292 15.61 2.824 5.482M232 284.596s-1.827 2.492-4.65-.166c-1.496-2.655-6.808 11.96 2.49 12.456 1.66-4.318 6.81-5.48 6.81-5.48m4.318-13.783s-4.153 1.992-5.647 1.66c-4.98 1.163-3.985 12.788 2.325 12.123 2.158-2.49 4.484-5.978 4.484-5.978m-40.32-23.002c-.168 0-16.48 25.653 9.093 32.46m197.945-71.073s-9.964 8.47-.664 22.086c-30.89-.5-47.493 13.782-48.822 23.413-39.357-2.822-32.216 8.802-45.003 12.62-17.105-14.28-42.18-6.31-40.52 7.972-11.46-16.108-29.06-8.303-31.22-4.318-2.158 3.986-1.328-19.76-1.328-19.76s-11.458 5.147-19.43 14.613c.167-6.31 0-16.607 0-19.928-9.576 1.937-18.82 2.047-28.73 1.827m-25.904-7.308s14.28 7.97 31.884-2.823m-33.047-25.906s11.127 9.962 32.05 6.808m-25.074-29.725s2.49 8.137 26.405 8.635m-18.306-27.454s9.005 11.014 21.127 9.354m-13.45-25.076s3.487 5.978 16.772 6.974m-8.97-24.41s6.976 7.638 14.947 6.31m26.55-68.394s3.088-3.088 8.236-1.544m-10.466 17.845s-9.61-.344-8.924-4.118c.688-4.29 10.125-7.38 10.125-7.38s12.524-8.063 14.412-10.81m-56.622 43.926l12.183 23.336 5.834-8.75 3.09 6.004 4.975-8.75 8.578 5.49-3.26-10.638 7.206-.515s-1.888-5.147-8.408-6.177c1.716-1.372 7.72-5.32 7.72-5.32s-3.43-3.945-8.75-4.117c1.717-1.888 4.12-6.52 3.947-6.52-.17 0-5.32-1.202-5.32-1.202s12.184 3.946 21.62-1.544m-23.325-18.867c.17.172-.687 4.805-3.26 7.55m-43.754 5.32s7.537-2.075 13.177-.9c5.587 1.15 13.077 3.13 13.077 3.13s8.92-1.2 11.84-3.26m-56.796 6.005s-1.028 3.603-1.37 6.006c0 1.715-5.493 3.946-5.493 3.946m10.297-17.33s4.804 6.005 4.975 9.436c.17 3.432-3.604 6.006-3.604 6.006m-50.96 25.566l-4.976-8.064 4.46-1.544m90.372 120.844c-3.985-5.148 2.99-84.195 17.77-104.783-5.15 37.198 11.955 75.226 16.273 75.06m-78.96-97.15s6.726 2.575 20.675-8.47m18.848 26.74l10.004.124m300.33-62.08s-166.7 77.894-169.13 82.02c28.15-8.495 147.532-28.392 150.447-26.694-7.038 1.7-151.905 34.942-158.698 42.95 36.155-1.213 111.87 11.648 123.75 24.023-25.72-5.824-102.646-17.23-126.18-12.134 17.23 4.126 83.232 46.833 83.232 53.627-9.95-9.463-89.3-42.222-92.453-39.067 18.198 10.92 43.922 51.442 43.92 61.392-5.338-8.493-51.2-57.753-53.87-54.6 4.855 6.797 14.472 64.944 9.555 67.64 0-7.038-17.804-57.932-19.26-59.388-3.64.97-26.334 62.094-21.838 67.778-2.91-20.382.484-62.924 6.065-61.226-9.947 1.456-41.698 43.32-38.302 49.87.97-10.433 2.39-17.353 20.346-52.054-19.898 1.212-61.148 27.178-68.187 36.4 5.58-16.5 40.524-44.408 55.81-46.35m71.956-60.72c17.62-9.777 72.065-29.73 108.383-44.37m-142.582 96.987s12.01-.17 24.022-32.772c11.836-44.607 105.692-94.365 107.58-103.634M128.018 252.767s-2.788 5.94-6.22 7.656m19.682 1.345s-3.724 7.233-4.582 10.665m17.465-7.128s3.124 9.873.55 14.506m-36.425-40.137c-9.437 5.32 5.37 38.935 50.152 42.195m-7.207-18.186s-1.2 6.005 7.207 18.016c-2.402 13.383 10.174 23.9 15.15 25.616m-25.96-164.25c0-.17 1.37-3.602 1.37-3.602l1.53 3.967 2.463-.063 1.625-3.977 1.334 3.992h2.446l1.51-4.433 2.28 4.196 1.936.098 1.525-5.112 3.143 3.662 1.142-.442.98-5.113 3.104 3.575.89-.523 1.44-5.04 2.58 3.748 1.3-.423 1.205-4.236 2.398 3.894m-38.965 6.283l18.717-.278c5.956-.09 15.763-8.344 26.745-5.77m-84.912 46.09s3.088 6.693 7.378 2.918m-14.584 1.545s-6.006 16.128 1.2 19.902m-9.78-37.748s0 3.775 7.893-2.058m-32.442 86.815s6.35 1.888 5.32 6.692m-2.92-80.817s3.945 1.887 7.72-3.946m34.145 189.602c6.177-.343 7.507 2.446 13.126 2.446 6.474.197 12.783-2.446 21.02-4.677m53.018 14.93c-.172 0-2.917 5.832-.515 8.748m-87.51-8.235s9.78-8.065 14.928-3.088c4.977 1.716 7.72 1.372 7.72 1.372m-17.495-21.274s2.402 6.176-5.663 5.32m-2.402 8.92s5.147 3.262-.686 7.55m3.774 5.835s7.034 1.03 2.916 6.69m224.316-49.437s19.104 1.977 19.983 3.405c2.195-2.306 19.254-16.124-1.717-18.1-3.512 14.385-17.938 14.916-18.267 14.696zm-6.807 9.552c7.135 5.71 4.21 9.13 26.61-5.91m-36.823 13.048s10.54 11.31 18.226-2.416m-38.32 6.478l-14.272 7.466m-25.692 10.542s8.674-7.467 12.736-3.514c4.062 3.952 21.3-3.403 21.3-3.403m-27.56-25.475s2.967 5.928-2.744 6.697m-8.563 11.86s3.008 5.574-2.812 7.11m9.51 8.04s9.003.44 5.82 7.247m78.395-8.455s-4.94 4.172-1.317 8.895m73.015-38.87s5.71 2.745-1.098 7.467m-5.71 9.882s4.282 4.5 1.428 8.233m10.54 9.003s5.93 1.647 5.27 6.588m77.734-10.98s-4.94 3.623-2.306 8.345M426.96 236.346c11.858-1.427 28.875 24.924 37.55 30.085m51.87-67.412s6.008 5.243.723 17.893m10.414-38.065c1.67 1.3 8.126 4.745 12.39 12.72m4.096-52.17c0 .108-8.344 22.507-8.344 22.507m17.676-23.606s-1.647 19.98-4.062 24.044m-33.124 36.413c-2.776 7.997-26.864 12.09-28.48.25-.822-6.026 14.268-15.322 28.48-.25z" fill="none" stroke-linejoin="round"/><path d="M182.346 101.32l9.268 1.715s-6.523 8.75-9.268-1.716z" stroke-linejoin="round"/></g></svg> |