mirror of
https://github.com/simple-login/app.git
synced 2024-11-11 05:36:32 +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
75 KiB
XML
Executable File
1 line
75 KiB
XML
Executable File
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480"><defs><radialGradient id="a"><stop offset="0" stop-color="#ffef5d"/><stop offset="1" stop-color="#ea5700"/></radialGradient><radialGradient id="b"><stop offset="0" stop-color="#952d1a"/><stop offset="1" stop-color="#570a00"/></radialGradient><radialGradient xlink:href="#a" id="c" gradientTransform="scale(1.22624 .8155)" cx="247.075" cy="238.328" fx="247.075" fy="238.328" r="35.95" gradientUnits="userSpaceOnUse"/><radialGradient xlink:href="#a" id="d" gradientTransform="scale(.93615 1.06821)" cx="321.991" cy="152.954" fx="321.991" fy="152.954" r="10.578" gradientUnits="userSpaceOnUse"/><radialGradient xlink:href="#b" id="e" gradientTransform="scale(1.2242 .81686)" cx="364.21" cy="237.789" fx="364.21" fy="237.789" r="36.034" gradientUnits="userSpaceOnUse"/><radialGradient xlink:href="#b" id="f" gradientTransform="scale(.95596 1.04607)" cx="468.154" cy="156.129" fx="468.154" fy="156.129" r="10.739" gradientUnits="userSpaceOnUse"/></defs><path fill="#ce1126" d="M0 0h640v480H0z"/><path fill="#003f87" d="M0 34.285h640v411.427H0z"/><circle cx="320" cy="240" r="188.572" fill="#fff"/><circle r="156.3" cy="239.04" cx="320" fill="none" stroke="#552300" stroke-width="3.939"/><path d="M301.942 73.191c14.136-15.166 26.918 2.353 26.577 10.562-.341 8.21-14.599 26.32-27.5 11.745 13.365 3.422 17.36-11.523 24.12-11.67-6.76.148-9.523-14.65-23.197-10.636zM154.803 192.115c-7.432-19.298 14.058-22.902 21.32-18.96 7.264 3.94 17.3 24.653-1.582 29.67 9.015-10.373-2.711-20.552.15-26.63-2.861 6.078-17.451 1.977-19.888 15.921zM471.949 173.03c19.361 7.589 7.533 25.754-.302 28.41-7.834 2.657-30.006-3.977-20.987-21.19 1.624 13.604 17.109 11.891 19.695 18.092-2.588-6.201 10.311-14.113 1.593-25.312zM218.797 377.414c-20.713-2.059-14.324-22.737-7.52-27.413 6.808-4.677 29.963-4.296 26.016 14.705-5.3-12.647-19.726-6.808-23.918-12.073 4.19 5.265-6.044 16.368 5.422 24.781zM428.134 362.448c.296 20.656-21.132 16.712-26.59 10.534-5.456-6.178-7.71-29.051 11.761-27.324-12.056 6.667-4.57 20.226-9.363 24.958 4.794-4.732 17.076 4.095 24.193-8.167zM169.894 152.87c-1.889-20.573 19.782-18.267 25.698-12.522 5.916 5.746 9.928 28.382-9.62 28.138 11.51-7.563 2.998-20.514 7.413-25.597-4.414 5.084-17.34-2.785-23.491 9.982zM192.09 345.878c-20.527-3.443-12.745-23.645-5.637-27.857 7.11-4.209 30.187-2.277 24.955 16.416-4.429-12.976-19.219-8.115-23.043-13.65 3.824 5.536-7.142 15.93 3.724 25.09zM354.291 74.042c18.641-9.195 24.32 11.687 21.063 19.241-3.255 7.554-23.065 19.458-29.911 1.284 11.268 7.91 20.353-4.651 26.725-2.407-6.372-2.244-3.66-17.052-17.877-18.118zM393.958 388.31c-9.24 18.512-26.49 5.292-28.501-2.678-2.011-7.97 6.509-29.341 23.036-18.978-13.794.465-13.373 15.923-19.814 17.96 6.441-2.038 13.306 11.38 25.28 3.696zM484.477 209.645c15.663 13.61-1.637 26.767-9.912 26.653-8.278-.113-26.909-13.763-12.58-26.962-3.082 13.352 12.08 16.91 12.414 23.61-.336-6.7 14.493-9.846 10.078-23.301zM221.504 100.838c4.674-20.132 24.537-11.23 28.354-3.938 3.815 7.291.508 30.037-17.986 23.753 13.311-3.62 9.298-18.56 15.09-22.021-5.792 3.46-15.6-8.019-25.457 2.207zM159.94 273.34c-18.24-9.957-4.191-26.491 3.918-28.144 8.108-1.654 29.258 7.711 18.116 23.654.123-13.695-15.455-13.942-17.23-20.416 1.775 6.475-12.027 12.705-4.805 24.907zM423.488 113.74c20.604-2.961 19.43 18.636 13.962 24.804-5.468 6.168-28.032 11.344-28.822-8.042 8.22 11.005 20.799 1.884 26.149 5.99-5.348-4.106 1.884-17.333-11.289-22.75zM306.3 408.115c-19.005 8.429-23.815-12.667-20.25-20.083 3.566-7.413 23.853-18.501 29.94-.063-10.933-8.363-20.53 3.817-26.803 1.316 6.274 2.5 2.952 17.183 17.114 18.83zM476.835 292.877c8.582 18.822-12.653 23.695-20.14 20.192-7.487-3.502-18.756-23.582-.207-29.71-8.374 10.888 3.945 20.352 1.453 26.59 2.492-6.238 17.304-3.01 18.894-17.071zM151.674 232.253c-11.94-16.924 8.02-25.608 16.032-23.538 8.011 2.068 22.826 19.735 5.738 29.161 6.202-12.238-7.668-19.28-6.381-25.867-1.288 6.586-16.444 6.131-15.39 20.244zM263.965 395.597c-19.536 7.136-22.9-14.238-18.837-21.395 4.062-7.159 25.056-16.86 29.875 1.943-10.34-9.077-20.74 2.434-26.831-.483 6.09 2.915 1.774 17.341 15.793 19.934zM258.33 81.541c11.575-17.171 26.956-1.848 27.913 6.312.956 8.161-10.275 28.26-25.315 15.864 13.74 1.309 15.334-14.072 21.987-15.266-6.653 1.193-11.712-12.993-24.585-6.91zM458.5 333.715c1.249 20.623-20.34 17.655-26.074 11.73-5.737-5.925-9.043-28.674 10.49-27.83-11.74 7.205-3.635 20.412-8.205 25.356 4.57-4.944 17.246 3.316 23.788-9.256zM453.19 139.277c20.407 4.088 11.981 24.036 4.741 28.02-7.24 3.982-30.243 1.323-24.416-17.197 4.009 13.109 18.949 8.718 22.594 14.37-3.644-5.65 7.65-15.693-2.918-25.193zM194.758 124.742c.198-20.659 21.526-16.21 26.832-9.904 5.307 6.307 7.014 29.227-12.411 27.04 12.214-6.38 5.053-20.113 9.959-24.731-4.906 4.618-16.972-4.495-24.38 7.596zM168.954 310.954c-18.573-9.334-5.099-26.334 2.949-28.26 8.047-1.926 29.505 6.716 18.92 23.027-.35-13.694-15.927-13.41-17.923-19.822 1.997 6.411-11.583 13.105-3.946 25.055zM392 91.014c19.476-7.296 23.017 14.046 19.017 21.239-4.002 7.192-24.914 17.067-29.89-1.696 10.413 8.99 20.72-2.605 26.833.262-6.115-2.867-1.92-17.329-15.96-19.805zM350.662 405.802c-15.146 14.203-26.69-4.125-25.787-12.293.904-8.17 16.372-25.303 28.241-9.907-13.099-4.296-18.11 10.355-24.866 10.056 6.756.297 8.496 15.246 22.411 12.144zM483.373 247.805c14.21 15.099-4.33 26.469-12.554 25.534-8.224-.935-25.384-16.371-9.794-28.078-4.414 12.979 10.311 18.027 9.967 24.727.344-6.701 15.416-8.357 12.38-22.183z" fill="#007f00"/><path d="M301.02 95.498c13.364 3.42 16.714-11.342 23.473-11.49-3.946 4.712-14.237 16.725-23.472 11.49zM301.942 73.191c14.136-15.166 26.918 2.353 26.577 10.562-11.472-20-15.062-16.915-26.573-10.562zM174.54 202.82c9.016-10.375-2.833-19.899.028-25.978 2.509 5.599 8.793 20.083-.027 25.977zM154.803 192.115c-7.432-19.298 14.058-22.902 21.32-18.96-23.15 1.343-21.955 5.904-21.32 18.96zM450.666 180.25c1.623 13.604 16.704 11.36 19.29 17.559-5.856-1.945-20.865-7.123-19.29-17.56zM471.949 173.03c19.361 7.589 7.533 25.754-.302 28.41 14.63-17.856 10.434-20.06.302-28.41zM237.296 364.714c-5.3-12.648-19.192-6.408-23.384-11.672 6.167.286 22.03 1.205 23.384 11.672zM218.797 377.414c-20.713-2.059-14.324-22.737-7.52-27.413-9.168 21.138-4.523 22.122 7.52 27.413zM413.302 345.658c-12.056 6.667-4.228 19.654-9.021 24.386-.416-6.114-1.302-21.859 9.021-24.386zM428.134 362.448c.296 20.656-21.132 16.712-26.59 10.534 22.208 6.634 22.666 1.943 26.59-10.534zM185.974 168.48c11.51-7.563 2.7-19.917 7.116-25 .887 6.066 2.984 21.697-7.116 25zM169.894 152.87c-1.889-20.573 19.782-18.267 25.698-12.522-22.653-4.927-22.747-.216-25.698 12.522zM211.405 334.435c-4.428-12.974-18.713-7.678-22.537-13.211 6.132.698 21.897 2.678 22.537 13.211zM192.09 345.878c-20.527-3.443-12.745-23.645-5.637-27.857-10.585 20.479-6.02 21.771 5.637 27.857zM345.45 94.568c11.268 7.91 19.685-4.71 26.057-2.466-5.375 3.014-19.299 10.613-26.057 2.466zM354.291 74.042c18.641-9.195 24.32 11.687 21.063 19.241-3.57-22.74-8.03-21.123-21.063-19.241zM388.496 366.653c-13.794.465-12.805 15.568-19.246 17.604 2.442-5.627 8.898-20.036 19.246-17.604zM393.958 388.31c-9.24 18.512-26.49 5.292-28.501-2.678 16.705 15.966 19.27 12.001 28.501 2.678zM461.984 209.338c-3.082 13.352 11.88 16.274 12.214 22.975-4.854-3.786-17.234-13.673-12.214-22.975zM484.477 209.645c15.663 13.61-1.637 26.767-9.912 26.653 19.83-11.93 16.624-15.407 9.912-26.653zM231.872 120.653c13.311-3.621 8.829-18.086 14.62-21.547-1.065 6.036-3.987 21.536-14.62 21.547zM221.504 100.838c4.674-20.132 24.537-11.23 28.354-3.938-19.974-11.697-21.544-7.251-28.354 3.938zM181.971 268.848c.124-13.696-15.123-13.363-16.896-19.837 5.56 2.662 19.79 9.681 16.896 19.837zM159.94 273.34c-18.24-9.957-4.191-26.491 3.918-28.144-16.789 15.878-12.907 18.59-3.919 28.145zM408.627 130.502c8.22 11.006 20.184 1.622 25.532 5.727-6.055 1.2-21.674 4.107-25.532-5.727zM423.488 113.74c20.604-2.961 19.43 18.636 13.962 24.804 3.759-22.71-.987-22.553-13.962-24.803zM315.987 387.974c-10.932-8.362-19.864 3.905-26.137 1.4 5.496-2.79 19.722-9.816 26.137-1.4zM306.3 408.115c-19.005 8.429-23.815-12.667-20.25-20.083 2.628 22.867 7.151 21.431 20.25 20.083zM456.483 283.363c-8.373 10.89 4.03 19.696 1.538 25.934-2.84-5.441-9.988-19.526-1.538-25.934zM476.835 292.877c8.582 18.822-12.653 23.695-20.14 20.192 23.03-2.717 21.561-7.198 20.14-20.192zM173.446 237.878c6.202-12.238-7.626-18.616-6.34-25.202 3.803 4.825 13.45 17.356 6.34 25.202zM151.674 232.253c-11.94-16.924 8.02-25.608 16.032-23.538-22.126 6.893-19.848 11.027-16.032 23.538zM274.995 376.147c-10.339-9.077-20.084 2.563-26.172-.352 5.672-2.419 20.344-8.475 26.172.352zM263.965 395.597c-19.536 7.136-22.9-14.238-18.837-21.395 1.064 22.99 5.674 21.862 18.837 21.395zM260.931 103.718c13.74 1.309 14.725-13.794 21.377-14.988-3.154 5.267-11.433 18.728-21.377 14.988zM258.33 81.541c11.575-17.171 26.956-1.848 27.913 6.312-14.486-17.974-17.545-14.37-27.913-6.312zM442.909 317.616c-11.74 7.205-3.319 19.824-7.89 24.769-.697-6.089-2.309-21.777 7.89-24.769zM458.5 333.715c1.249 20.623-20.34 17.655-26.074 11.73 22.49 5.618 22.73.914 26.073-11.73zM433.51 150.096c4.01 13.108 18.458 8.265 22.102 13.917-6.107-.891-21.8-3.367-22.102-13.917zM453.19 139.277c20.407 4.088 11.981 24.036 4.741 28.02 11.24-20.133 6.717-21.569-4.74-28.02zM209.187 141.869c12.214-6.38 4.698-19.549 9.602-24.166.27 6.121.78 21.883-9.602 24.166zM194.758 124.742c.198-20.659 21.526-16.21 26.832-9.904-22.04-7.155-22.61-2.476-26.832 9.904zM190.822 305.722c-.349-13.694-15.573-12.844-17.57-19.254 5.648 2.473 20.11 9.007 17.57 19.254zM168.954 310.954c-18.573-9.334-5.099-26.334 2.949-28.26-16.234 16.435-12.26 19.015-2.95 28.26zM381.123 110.554c10.414 8.99 20.06-2.729 26.176.137-5.653 2.466-20.275 8.642-26.176-.137zM392 91.014c19.476-7.296 23.017 14.046 19.017 21.239-1.26-22.983-5.858-21.815-19.017-21.24zM353.12 383.606c-13.1-4.295-17.455 10.218-24.207 9.918 4.258-4.442 15.354-15.75 24.207-9.918zM350.662 405.802c-15.146 14.203-26.69-4.125-25.787-12.293 10.077 20.713 13.868 17.872 25.787 12.293zM461.024 245.26c-4.413 12.98 10.178 17.375 9.832 24.076-4.447-4.25-15.767-15.318-9.832-24.075zM483.373 247.805c14.21 15.099-4.33 26.469-12.554 25.534 20.937-9.9 18.098-13.677 12.554-25.534z" fill="#005800"/><g fill="#730000" stroke="#000" stroke-width=".509"><path d="M349.05 120.326s.585-1.369 1.66-.585c.978.78 1.269 4.2 1.269 4.2l-1.563.78s.88-1.267-1.366-4.395zM340.17 150.998s.78-1.073-.293-3.42l1.563-.488s.584 1.855-.196 3.91l-1.074-.002M367.222 145.622l-3.71 2.249 1.857.88 4.491-2.639-2.638-.49M317.504 160.176c-.978.782-1.075 2.15-1.66 2.93-.487.781-1.953 1.855-2.05 3.028-.195 1.171-.292 1.952.195 3.517.583 1.561 3.026 8.497 2.05 13.773-1.075 5.274-.682 7.52-.29 8.303.387.782 1.561 2.93 2.245 2.93 1.562-.196.879-.683 1.464-1.66 1.465-2.54 0-22.175-.684-27.645-.487-4.2-2.443-8.01-2.635-8.4-.195-.49-.585-1.758-.88-2.54-1.463-3.518-3.222-6.543-3.222-13.874 0 0-4.787 1.077-8.887-8.205-2.148-4.688-5.275-4.2-8.985-5.76l1.66-1.078s3.126 1.564 4.689 1.564c1.563 0 1.075-3.126 1.075-3.126l1.563-1.565v6.841c0 3.126 4.297 7.423 6.836 8.693 1.563.78 3.615-2.443 3.127-5.567-.489-3.126 0-7.326 0-7.326l2.148 1.268s-.781 1.367-.585 2.149c.29.783 1.365-.78 2.146-1.564 0 0 .195.197.978.197 0 0-1.563 2.635-2.343 4.005-.78 1.271-.78 6.253-.78 8.11 0 1.856.684 6.152.684 7.519 0 .98 1.854 4.982 3.322 7.426.487.976 1.659 3.515 1.659 3.515 1.172 1.856 1.268 3.126 1.953 4.69.39.78 1.075 3.027 1.563 6.936.196.976.39 4.688.686 7.128.291 2.345 2.246.491 4.587-1.17 2.345-1.758 2.345-5.958 2.345-5.958s1.856-1.563 1.563-.684c-.196.977.978 1.954.978 1.954-1.464 3.32-.585 2.93.88 2.832 1.463-.198 6.54-4.006 6.54-4.006.685-.196 3.713-.196 3.224 0-.585.294-1.368 1.76-1.368 1.76l3.322-.392c-1.172.879-5.569 3.418-6.542 4.005-1.076.685-6.347 3.226-8.594 4.103-2.247.975-6.643 3.125-6.837 5.372-.1 2.248.291 8.303 0 10.256-.196 1.953-.979 10.649-.979 10.649h-10.45s2.051-7.62-.1-9.67c-2.05-2.149-6.836-8.402-9.961-10.553-3.127-2.05 2.05-.484 2.05-.484v-2.15l4.784 5.765s8.301-7.327 0-17.29c-2.636-3.126-5.274-7.912-7.324-8.403-2.148-.585-3.223-1.074-6.838 0-3.711 1.074-12.599 1.074-16.31-4.788l3.127-.488 2.634-1.074s-1.073 3.712 6.348 3.712c7.326 0 8.4 0 7.814-6.838l2.148-1.074 1.564 1.565s-1.075 3.711-.489 5.273c.489 1.562 3.127 2.638 5.178 4.2.879.685 1.563.783 2.148.783.879-.098 1.073-.098 2.246-1.271 1.758-1.954 1.367-1.856 3.125-3.417 0 0 .88-1.37 1.076-1.565l1.075 2.834h-.006z" stroke-width=".489"/><path d="M319.069 155.002c.389-.388 1.172-1.857 1.855-3.126 1.173-1.954 2.54-3.126 4.102-5.57 1.464-2.246 2.051-5.565 1.464-7.909l1.367.782.1 3.711s1.856-1.565 2.638-1.953l.78.388s-5.86 6.058-11.33 15.826l-.978-2.147.002-.002zM267.7 134.688c.78 1.364 1.563 4.005 3.906 6.055l1.563-.488s-3.613-4.2-3.613-6.055l-1.857.488M276.877 132.336s.487 4.982-.78 6.838l1.562-.778s1.074-3.419.78-5.277l-1.562-.78v-.003zM328.352 116.611s-.295 7.032 1.074 11.331l1.855-.584s-.292-1.274 1.27-1.86c1.563-.487 5.273-2.049 7.128-3.614l-.584-1.56s-2.832 2.246-4.2 2.83c-1.269.49-2.05 1.075-3.125.784-1.076-.294-2.343-2.053-1.563-6.059l-1.855-1.268M349.05 149.434s-.487 4.981-.194 7.131l1.66.392s-.388-5.959.683-6.447l-2.15-1.076M356.48 153.149s-1.856 3.223-4.003 3.517l3.418-.685s.979-.488 2.443-2.05l-1.858-.782" stroke-width=".489"/></g><g fill="#289400" stroke="#030" stroke-width=".509"><path d="M326.595 138.394l1.268.778 1.367.198s1.464 1.367 3.126 2.635c1.268 1.077 1.268-.194 1.268-.194l.78 3.126h1.075s-.294 2.05-.294 3.126l1.857-1.564 2.148 1.857s1.563-1.368 2.344-1.368c.78 0 1.073-.779 1.073-.779h.1c-5.177-2.444-7.422-4.982-5.86-7.62 2.54-4.395 6.74-1.564 8.105-.976l18.948 10.158s1.269-.782.39-1.565c-.979-.778-1.368-2.734-1.076-3.514.294-.782 2.443 2.44 3.516 2.733 1.075.293 3.514.685 3.514.685l-.097-.977s3.125 2.147 3.125 3.223c0 0 2.248-1.172 1.464-1.856-.78-.682 3.42 1.662 3.712 2.933l.878-.98c-.099 0 .294-3.126 1.367-4.591.978-1.463 2.052-1.856 2.052-1.856s.978-1.662 1.952-1.662c0 0-.978-.681-1.368-1.463-.487-.783-1.66-1.173-1.66-1.173s1.464-1.073 1.857-1.563c.39-.583.782-.685.782-.685s-2.249-1.855-3.812-2.146c0 0-.098-2.542-2.05-2.736h.88s-1.466-2.735-2.834-2.832c0 0 .88-.976 1.661-1.074 0 0-1.66-2.148-3.905-1.367l1.464-.584s-1.075-1.17-4.393-.585c0 0 .29-1.367-1.172-2.444 0 0-1.27.096-1.27 1.074 0 0-1.172-1.074-2.636-1.074-1.465 0 .488 1.564.488 1.564s-1.953-1.27-3.126-.879c0 0 .488-2.246-.781-3.42 0 0-1.462.782-1.856 1.758l-.39-.976s-1.954 2.344-2.343 1.66c-.293-.39-.585-2.049-.585-2.049l-1.17 1.759.194-2.444s-1.367.782-2.441 3.32c0 0-1.368 1.27-1.368 2.44 0 0-1.075-1.268-2.052 0-.88 1.367 0 1.077 0 1.077s-.39.485-1.367.681l.196.78s-1.268-.682-2.245-.388l.486 1.17s-2.539.197-2.635-1.853c0 0-2.148-1.076-2.442.097l-1.563.978s-.489-.978-1.368-1.171c-.978-.294-.196 1.267-.196 1.267s-.292-1.17-1.464-1.759c-1.17-.485-.195 1.077-.195 1.077s-1.563-1.27-.78-2.246c0 0-1.464 1.367-.78 2.638l-.978.682s-.489-.487-.392-.879c.1-.392-1.66 1.17-1.66 1.17s-1.074-2.537 0-2.537c.098 0-1.855-.098-2.147 2.15 0 0-1.27.097-2.442.485-1.27.392.88 1.271.88 1.271s-1.858-.391-2.932.196l.685.88s-.685-.685-2.345-.1c-1.758.487.39.781.39.781s-1.759-.39-2.637 0c-.88.392.293 1.074.293 1.074s-3.223-.976-3.712-.681c-.486.291 1.076 1.856 1.076 1.856s-1.954.488-2.343 1.954l1.758.681s-.78.39-1.173 1.174c-.387.781 1.173.388 1.173.388s-2.148 1.565-2.148 2.735c0 0 1.562.488 2.735-.682 1.172-1.17.39-.782.39-.782l.097.782s2.248-.975 2.248-1.561c0-.488-.39.78-.39.78l2.247-1.172 1.463.978v-.002h.001z" stroke-width=".489"/><path d="M324.733 107.923l-.489-2.148 4.98.583.879-2.05s2.343 1.074 3.126 1.853c0 0 4.59-1.17 5.959-.682l-.586 2.15s4.198.291 5.567.78c1.27.488-.585 1.565-.585 1.565s4.785.583 6.837 1.854c2.149 1.269 2.149 2.345 1.076 2.636l2.634 4.2s-4.198.487-4.98 1.56c-.781 1.075-1.563-1.073-1.563-1.073l-.781 2.93s-2.636-1.369-3.71-2.344c0 0-1.269 1.564-.488 2.344l-4.787-3.125s-2.051-.292-2.051 1.564c0 0-2.342-2.638-2.93-3.42l-2.637.782s-.78-1.073-1.757-1.369c-1.075-.193-.294 1.37-.294 1.37l-1.563-1.857-1.562-1.852s-1.368 1.852-2.442 1.852c-.979 0-.979-1.269-.781-2.148.293-.781-3.126-.975-3.419 0 0 0-.978-3.907 2.636-4.98l3.712-.978-.001.003zM305.792 121.306l-1.66 1.563-.978-.487-1.953 2.147-.39-1.174-1.075 1.759-1.66-.585-.781 1.27-1.464-.294s-1.27 1.173-2.051 1.465c-.781.197 0-1.756 0-1.756s-1.173 1.952-2.052 1.952c-.78 0-.487-.879-.487-.879s-.487 1.266-1.464 1.464c-.88.098-.49-.976-.49-.976l-1.563 1.17v-.976l-.684-.292s.39-1.759 1.076-2.149c.683-.391-.684-1.56-.684-1.56l.684-.783s-1.955-.488-1.955-.097c0 0 .978-2.635 2.343-3.128l.1-2.929s1.367-1.17 2.636-1.27c1.366-.196-.39-2.247-.39-2.247l3.125-1.852.39-2.246 4.785.387.977-2.05 3.81.975 3.222-1.66 2.343 2.735 3.516.294s-.098 2.44-.098 3.126c0 0 4.198 1.268 4.688 1.66 0 0-.782 2.54-.782 3.028 0 0 2.932-.782 3.811-.586 0 0 .294 2.736.39 3.419 0 0 4.98 1.564 5.273 2.444 0 0-1.075.681-1.66 1.56 0 0 .584 3.03.584 4.006l-.39.586s-1.464-1.368-2.637-1.562l-.978 2.147-1.757-1.171-1.074.098s-.88-1.074-1.564-1.074l-.099-.978-1.367.88s-2.147-1.076-2.147-1.759c0-.585.098-1.565.098-1.565l-2.247 1.565s-.487-1.17-.388-1.66c.098-.489-.879 1.172-.879 1.172s-1.173-2.052-1.075-2.444l-.294 1.663s-2.343-.78-2.635-2.344v-.002z" stroke-width=".489"/><path d="M274.534 130.877s4.103 2.054 4.103 3.03c0 0 1.076-2.15.488-2.932l1.564 1.077s.486-1.953-.099-2.541c-.489-.488 3.514-2.146 4.393.49 0 0 2.443-2.54-2.245-4.69 0 0-.39-1.561 2.442-1.17 0 0-.195-.978-.88-1.368h2.736s-1.66-1.369-4.103-1.758c-2.342-.392-.879-.683-.977-1.175-.196-.488 0-2.247 0-2.247s-1.367-.487-2.442.098l.39-.49s-2.54-.681-3.515-.096c0 0-1.465-.586-1.269-2.15 0 0-1.465-.097-2.147 1.464 0 0-1.368 1.564-3.222 1.564-.39 0-1.759-.782-1.759-.782l-1.173 2.736-1.855-.098.585 1.073s-2.832-.779-3.712 0c0 0 1.076 1.663.78 2.833 0 0-2.246.392-2.734.782-.586.387.78.682.78.682s-2.539.781-3.126 1.565l.979.778-1.173 1.566.978.193s-1.66.49-2.538.782c-.88.291 1.562.488 1.562.488l-1.17 1.073 1.855.291s-1.464 3.91-1.563 5.766c0 0 2.248-2.736 2.831-2.93l-1.757 2.93s3.322-1.073 3.616-1.566c.292-.583.584-1.072.584-1.072l.1 1.66s1.268-1.758 1.463-2.442c.1-.682 2.05.684 2.05.684v-.98s1.76.585 2.344.686c.684.097.78-.293.78-.293l1.66-.195-.293 1.364s1.171-.78 1.464-1.562c.196-.783.78 0 .78 0l.78-3.126h1.66l.005.008zM261.152 144.749l1.563 3.223c-1.27.096-3.126 1.561-3.126 1.561.292 5.374-1.073 5.08-1.073 5.08.387.977-.249 2.789-.249 2.789l7.769-4.644.097-.488 9.182-4.3.29.487 2.639-1.463 1.856 4.882-1.856 1.074c.099 1.66 2.051 4.593 2.051 4.593l2.443-.584 2.637-.98s.099 1.465.099.98c0-.395 2.83-1.367 2.83-1.367l1.27 1.27c.979-.098 2.734-2.445 2.734-2.445l2.051.783s.684-1.17.684-2.05c0-.782 2.54-.782 2.54-.782l1.758 1.268 2.246-1.853s.684 1.367 1.563 1.56c.978.099 3.419 1.953 3.419 1.565 0-.39 1.075-2.54 1.075-2.54l4.1 1.661c-.584-1.856-1.95-4.102-1.95-4.102s1.95-1.56 1.561-1.953c-.389-.391-1.562 0-1.562 0l1.17-2.344h-1.561l.486-.584-2.539-1.073 1.366-2.736c-.585-.685-7.324-2.052-7.324-2.052l1.563-1.465s-.781-1.17-1.563-1.17c-.781 0-4.883.097-5.079-.291-.099-.392-1.759-1.86-1.759-1.86l-2.54 1.86-1.269-.392-2.246.88s0 1.267-.295.388c-.291-.783-2.343-2.833-2.343-2.833-.39.682-3.026 3.808-3.026 3.808s-.39 1.663-1.27.488c-.978-1.17-3.027-2.44-3.321-1.463-.293 1.076-2.147 2.05-2.54 1.759-.39-.296-2.54-.098-2.735.487-.098.682-2.443 2.44-2.443 2.44-1.465-.68-3.81-.29-3.81-.29s-.683 1.074-.78 1.953l-4.784 1.267h.004v-.002zM305.302 184.31v-2.052l2.343 1.564 1.368-1.564 1.759 1.757 1.074-1.757v2.834l2.637-2.343 1.56.682v-2.246s1.858-3.128 1.076-3.712l1.563-.487s-2.638-2.638-3.42-3.128c-.78-.584-1.854-.584-1.854-.584s-2.052-2.054-3.419-2.638c-1.269-.488-2.052.584-2.052.584s-.78-1.561-2.148-1.856c-1.267-.29-1.267 1.074-1.267 1.074s-.98-.977-2.247-1.465c-1.27-.583-.391 1.172-.391 1.172l-4.494-1.365.585 1.365-4.198-1.07.485 1.561-2.929-.491-.194 1.273-4.2.78.781 1.366-2.637-1.074v1.857l-2.93 1.073 1.074.979s-3.905 1.856-4.688 2.441c-.78.488 1.563 1.561 1.563 1.561l-4.2-.585 1.564 1.369-3.711 3.42 2.636 1.856-1.563 2.342 3.906.78 1.563 2.638 3.223-.586v2.93l4.689-3.711s3.42 3.028 3.711 2.148c.195-.781.195-3.42.195-3.42h1.66v-2.634l1.269 1.073 2.148-3.128 2.831 3.91 2.148-4.981 3.126.487.005.001zM324.445 172.493l-.488-4.493-1.366 1.367.583-4.2-2.146-.392.78-4.1-1.562-.784.388-1.953 1.563-1.17 2.832-2.736 6.542.1.78-2.15 4.69.783c.78.88 3.22-1.759 3.22-1.759h.979l1.075 2.049s3.419-.488 4.98.585l-1.856 2.54 3.419.292 2.342.492 2.442-.784 3.127-.197.78 1.27h2.931l-.978 1.171 3.81 1.759-.78.782s2.147.782 3.71.782h.78s.781 1.853-.294 2.635c0 0 1.075 2.638 3.42 3.127 2.343.488 2.343.488 2.636 1.073.294.49 0 3.127-2.636 3.127v2.639s-2.052 1.855-2.344 2.635l-1.564-1.075s-1.365 1.565-1.365 2.639c0 0-3.42-4.495-4.69-4.692-1.366-.29-1.075 2.541-1.075 2.541l-3.709-3.126-.489 2.148-3.125-2.635-1.857 1.266-3.322-3.417-3.222.392 1.268-1.662h-3.906l-.78-3.416-.586 2.83-2.342-1.56-3.028 3.32s-.39-.393-.88-1.955c-.486-1.563-1.855 1.855-1.855 1.855l-1.075-2.44-1.27 2.44s-1.074-1.855-2.148-2.44c-.977-.488-2.05 2.928-2.341 4.493l.002.004zM325.03 182.746l.195-1.561 5.566-2.15 4.69-1.76 2.341-1.073 1.076 1.855 1.367-2.635 2.148 2.733 1.172-1.465 1.855 1.367h1.563l.293 2.054s3.907.291 4.199-.487c.293-.783.78 2.635.78 2.635l3.71.488.781 4.2s1.854 3.909 1.27 5.47c-.49 1.661-2.053-2.05-2.053-2.05s-.292 2.93-.585 3.711c-.195.78-4.98-.781-4.98-.781l-2.051 3.907s-2.147-3.126-3.125-3.126c-1.075 0-1.075 3.126-1.075 3.126s-3.126-3.712-4.494-5.276c-1.269-1.561-1.563 1.564-1.563 1.564s-2.05-3.42-2.05-4.395c0-1.074-1.857-2.15-1.857-2.15s-3.223 3.712-5.569 4.69c0 0 .294-2.344-.486-3.126-.781-.782-3.127 1.561-3.127 1.561s-1.66-3.613 0-7.325l.01-.001z" stroke-width=".489"/></g><g fill="none" stroke="#004b00" stroke-width=".509"><path d="M350.816 124.522l.489 1.953s1.756-.391 2.93-.293c0 0-.292 1.562-.683 2.247 0 0 2.343-.39 3.419.292l-.49 1.17 2.736 1.173-2.54 2.05s4.1 1.464 4.884 2.639c0 0-2.636 1.854-3.028 1.758-.39-.197-.097.779.586 1.658l-2.247-.097s.879 2.053.78 2.832c-.098.782-3.711.585-3.711.585M368 137.222s.684-3.907-.388-4.884c0 0 2.538 2.15 4.198 2.246 1.759.101-.099-3.222-.099-3.222s2.443 1.269 3.615 1.562c1.172.196-.88-2.442-.88-2.442s.684-1.27 2.637-.098M331.674 114.854s.096-.879-.296-1.367c-2.342-3.223 2.443 2.444 3.418 2.638M339.286 116.122s1.563 1.17 2.345 1.17c.78 0-.488-3.126-.88-3.515-.39-.391 2.832 1.268 4.005 1.465 1.173.291 1.367-1.953 1.367-1.953s3.614.584 4.395 1.074M325.414 113.683s-.292-2.05-.388-2.93M300.81 123.456c-.196-.392.979-2.15.488-2.932 0 0 .684.588 1.367.686.586.097.388-2.249.388-2.249l.782.292s2.051-.977 1.66-1.759c-.392-.78 1.366 1.17 1.366 1.17s1.174-1.17 1.174-1.657c0-.493 1.365 1.17 1.365 1.17s1.464-.294 1.464-1.17c0-.88 1.856.29 1.856.29s.78-1.073.684-1.758M293.677 125.309s.877-2.05-.1-3.417M269.946 131.75c.098-.975.584-3.613.098-4.005-.487-.387.979.392 2.149.685M281.466 128.045c-1.173-1.174-1.857-1.759-3.71-1.759M261.642 134.582c.293-.681.78-2.343.487-3.32M287.13 183.034l1.269-2.638 1.563 3.71 1.073-2.343.39.782 2.343-2.54 2.54 3.81M337.04 167.309l1.66-3.32 2.248 1.173 1.075-3.223 2.342 1.465 1.367-3.027 2.637.682.194-2.148s1.856 1.073 2.344 1.854c.584.784 0-2.635 0-2.635l2.148.976s1.563-1.564-.585-2.444" stroke-width=".489"/><path d="M343.587 163.114l2.344 3.42 1.951-2.247 1.759 3.808 2.246-1.367 3.222 1.856 1.464-1.17 3.516 2.539 1.465-3.027 3.125.976 2.05-3.514M282.349 155.203s1.368-2.347.88-3.421c-.588-1.074 2.83 1.857 2.83 1.857s.78-2.346.293-3.418c-.586-1.074 3.907 3.125 3.907 3.125s.782-3.613 0-4.397c-.781-.781 4.298 1.077 4.298 1.077s2.051-.585 1.27-1.661c-.783-1.074 3.415 1.561 3.415 1.561s.978-2.634 0-3.615c-1.073-1.072 3.127 1.271 3.127 1.271l-1.563-2.832 3.418.194-.292-3.126M334.208 186.94l2.246-1.073 1.954 1.953 2.149-3.418 2.636 2.539.39-2.539 2.831 1.174.587-1.566 3.125 1.663.292-2.345 1.562.49.295-1.565" stroke-width=".489"/></g><path d="M283.126 298.109a69.836 69.836 0 0 1-5.958-12.99l42.29-37.22 42.292 37.12c-1.465 4.296-3.42 8.89-6.152 13.287l-.338.54c-.78-.29-3.18-1.225-3.18-1.225s-1.368 1.271-2.439 1.367c-1.465.197-2.735-1.267-2.735-1.267s-1.857 1.562-3.711 1.267c-1.857-.193-2.639-1.367-2.639-1.367s-1.952 1.564-3.32 1.271c-1.27-.296-2.149-1.176-2.149-1.176s-1.17 1.468-2.832 1.176c-1.562-.296-3.027-1.176-3.027-1.176s-2.439 1.072-4.004 1.27c-1.56.295-2.93-1.368-2.93-1.368s-2.05 1.367-2.83 1.367c-.782 0-3.712-1.367-3.712-1.367s-3.028.978-4.101.978c-.978 0-4.004-1.269-4.004-1.269s-2.832.78-4.1.78c-1.37 0-3.321-.78-3.321-.78s-2.34 1.075-3.614.78c-1.367-.291-2.442-.78-2.442-.78s-2.539 1.075-4.2.78c-1.563-.291-3.418-1.363-3.418-1.363s-.293.78-3.32 1.363h-.1" fill="#9dd7ff"/><path d="M319.462 205.114v42.783l-42.29 37.415c-4.102-11.917-4.394-22.564-4.394-27.154v-53.043h46.684" fill="#fff" stroke="#000" stroke-width=".684"/><path d="M319.462 205.114v42.783l42.193 37.415c4.1-11.917 4.394-22.564 4.394-27.154v-53.043h-46.587" fill="#ffd83c" stroke="#000" stroke-width=".684"/><g stroke="#000" stroke-width=".509"><path d="M292.18 289.22c3.179 1.722 2.102 1.179 8.692 3.513 5.373 1.86 11.622 2.735 20.704 2.735 7.947 0 12.42-.63 14.938-1.325 2.61-.749 3.228-1.802 3.228-1.802l-6.541 6.643s-26.298 1.42-31.06-1.66c-1.854-.978-5.86-4.2-9.96-8.106v.001z" fill="#730000" stroke-width=".489"/><g fill="none"><path d="M330.762 276.816s8.4 4.785 0 13.967M292.966 289.709l12.11-11.53-1.366 15.435M310.054 294.98v-25.786M330.762 294.98v-27.35M320.307 295.469v-29.4" stroke-width=".489"/></g><g fill="#ff0018"><path d="M310.054 270.566l-5.47 1.76 5.47.585v-2.345M320.307 266.554l-5.76 2.15 5.76.195v-2.345M330.762 268.118l-5.762 2.15 5.762.292v-2.444.002zM334.18 280.531c-.294-1.173 3.419-1.073 3.419-1.073s1.075 3.905 0 6.346l-3.125-.584s.293-2.636-.295-4.689z" stroke-width=".489"/></g><g fill="#fff"><path d="M294.82 288.144l10.255-9.964-.489 5.959s-5.273 3.417-5.273 5.86l-4.494-1.855M300.282 290.198s1.075-3.125 4.004-4.687l-.293 6.251-3.71-1.564h-.001zM315.037 272.909s4.198-.586 7.325 0c0 0-.489 4.2 0 4.98 0 0-5.763-1.368-8.106.78 0 0-.782-3.906.78-5.76zM306.147 273.984s4.2-.586 7.324 0c0 0-.78 4.69-.293 5.471 0 0-4.69-2.638-7.03-.491 0 0-1.565-3.221 0-4.98z" stroke-width=".489"/><path d="M305.85 279.446s4.199-.487 7.325 0c0 0-.488 4.2 0 4.984 0 0-5.47-1.271-7.815.78.001 0-1.074-3.907.49-5.764zM314.25 278.669s6.055-.779 9.18-.291c0 0-1.27 3.418.294 5.762 0 0-6.544-1.759-8.987.29 0 0-2.05-3.906-.487-5.761zM305.37 285.216l8.104.585s-.78 5.958-.293 6.74c0 0-6.542-1.564-7.815.583 0 0-2.149-5.468 0-7.91h.003v.002zM314.547 285.216s7.03-.49 10.255 0c0 0-1.859 4.496.196 8.4 0 0-9.183-2.634-10.454-.49 0 0-2.145-5.469 0-7.91h.003zM325.29 272.909s4.198-.586 7.324 0c0 0-.486 4.2 0 4.98 0 0-5.762-1.368-8.104.78-.002 0-.783-3.906.78-5.76zM325.29 278.669s4.198-.488 7.324 0c0 0-.486 4.2 0 4.981 0 0-5.762-1.269-8.104.783-.002 0-.783-3.909.78-5.764zM325.78 284.726s4.197-.582 7.42 0c0 0-1.074 6.545-.585 7.326 0 0-4.782-2.246-7.03-.29 0 0-1.367-5.177.194-7.036z" stroke-width=".489"/><path d="M334.467 285.216s1.365 4.98 3.124 5.567l-2.342 2.833s-2.832-2.052-3.126-4.393c0 0 1.855-2.151 2.344-4.007z" stroke-width=".489"/></g></g><g stroke="#000" stroke-width=".61"><path d="M355.405 298.694c-6.738 11.235-17.776 21.782-35.94 28.326-18.46-6.64-29.692-17.677-36.334-28.815l.1-.098c3.026-.589 3.32-1.367 3.32-1.367s1.855 1.074 3.418 1.367c1.66.29 4.2-.782 4.2-.782s1.074.49 2.44.782c1.27.29 3.615-.782 3.615-.782s1.953.782 3.32.782c1.269 0 4.102-.782 4.102-.782s3.027 1.268 4.003 1.268c1.075 0 4.101-.978 4.101-.978s2.931 1.37 3.711 1.37c.78 0 2.832-1.37 2.832-1.37s1.367 1.66 2.93 1.37c1.562-.196 4.004-1.269 4.004-1.269s1.464.88 3.027 1.171c1.66.295 2.832-1.17 2.832-1.17s.88.879 2.149 1.17c1.367.295 3.32-1.269 3.32-1.269s.78 1.173 2.638 1.367c1.855.294 3.711-1.267 3.711-1.267s1.267 1.464 2.734 1.267c1.075-.098 2.44-1.367 2.44-1.367s2.443.78 3.321 1.076" fill="#006ac8" stroke="none"/><path d="M353.744 301.238c-1.464.1-1.66-.879-1.66-.879s-1.95 1.662-3.808 1.368c-1.953-.29-2.832-1.562-2.832-1.562s-2.052 1.66-3.42 1.367c-1.366-.195-2.341-1.173-2.341-1.173s-1.27 1.467-2.931 1.173c-1.66-.195-3.127-1.173-3.127-1.173s-2.636 1.077-4.298 1.368c-1.66.295-3.027-1.562-3.027-1.562s-3.809 1.271-4.59 1.271c-.879 0-3.615-1.27-3.615-1.27s-1.854 1.173-2.929 1.173c-1.17 0-4.297-1.369-4.297-1.369s-2.931.784-4.298.784c-1.368 0-3.419-.784-3.419-.784s-2.54 1.074-3.906.784c-1.367-.295-2.442-.784-2.442-.784s-2.736 1.074-4.395.784c-1.66-.295-3.615-1.367-3.615-1.367s-.292.68-3.514 1.367h-.1" fill="none" stroke-width=".489"/><path d="M293.091 305.222s-.273.639-2.82 1.2c-.054-.003-.69.15-.69.15.235-.042.426-.075.63-.12-.09.035-.29.108-.72.24 2.88 4.161 7.194 7.938 11.69 10.966 4.496 3.029 9.663 6.645 18.46 9.225 9.25-3.611 11.718-4.986 17.763-9.034 6.045-4.415 9.195-7.166 12.566-11.697-2.64 1.5-2.26 1.517-3.63 1.32-1.367-.29-2.37-1.29-2.37-1.29s-1.248 1.487-2.91 1.29c-1.66-.29-3.12-1.29-3.12-1.29s-2.17 1.476-4.32 1.38c-1.66-.1-3.03-1.56-3.03-1.56s-3.81 1.26-4.59 1.26c-.879 0-3.6-1.26-3.6-1.26s-1.866 1.17-2.94 1.17c-1.17 0-4.29-1.38-4.29-1.38s-2.923.78-4.29.78c-1.368 0-3.42-.78-3.42-.78s-2.436 1.073-3.9.78c-1.368-.29-2.46-.78-2.46-.78s-2.72 1.073-4.38.78c-1.66-.29-3.63-1.35-3.63-1.35z" fill="#5ac800" stroke-width=".586"/><path d="M319.645 326.89c9.555-3.978 11.28-5.06 17.06-8.593-1.008.027-3.94-.92-2.88-1.221 0 0-1.174 1.058-2.345 1.058-1.076 0-4.2-1.363-4.2-1.363s-2.93.779-4.297.779c-1.368 0-3.419-.779-3.419-.779s-2.54 1.072-3.907.779c-1.368-.291-2.442-.779-2.442-.779s-2.831 1.072-4.394.779c-1.66-.291-3.615-1.367-3.615-1.367s-2.403 1.275-3.913 1.421c4.617 3.382 9.478 6.683 18.352 9.286z" fill="#ffd800" stroke-width=".586"/></g><g stroke="#000" stroke-width=".509"><path d="M313.165 248.966c1.898-1.545 2.987-3.032 2.354-4.187-.714-.992-1.83.62-3.086.242 0 0-1.897-1.173-2.414-2.014-1.107-1.23-2.53-2.337-3.35-3.394-.87-.98-4.138-5.301-9.113-10.276-1.43-.933-1.103-4.464-2.128-5.56-.088-.764-9.944-10.522-13.461-14.052-1.422-1.046-2.172-1.725-4.67.54-1.973 1.78-2.683 3.617-.095 5.835l12.822 11.658c1.873 1.82 4.489 2.151 5.586 3.094l13.033 13.328c1.64 1.418 2.428 2.423 1.5 3.635-1.03 1.994.073 2.263.307 2.324.15.082 1.07.08 1.685-.394l1.03-.779z" fill="#b34b00" stroke-width=".489"/><path d="M280.66 214.003l13.399 13.24" fill="none" stroke-width=".48"/><path d="M298.803 220.051c.208-.398.66-1.414 1.14-2.522.188-.437 3.793-6.186 5.59-6.355 0 0 11.21 8.155 11.218 8.263.038.44-4.862 7.77-5.288 7.212-.002 0-13.133-5.513-12.66-6.598z" fill="#fff" stroke-width=".548"/><path d="M305.946 221.971c-1.535-1.192-4.073-2.355-6.12-3.72l-.92 1.92c.74.829 10.067 5.166 11.6 6 0 0-1.777-2.037-4.56-4.2z" fill="#ccb8c8" stroke="none"/><path d="M299.82 218.006c1.2.84 3.48 2.28 4.92 3.12 2.76 1.92 4.508 4.035 6.48 5.16" fill="none" stroke-width=".384"/><path d="M277.107 252.94l25.524-31.587c.478-.438 2.844-.462 3.165 1.985l-24.172 32.943c.001 0-2.753-.273-4.517-3.34z" fill="#782121" stroke-width=".489"/><path d="M362.662 253.286c-.879.687-2.374.864-2.374.864-1.66-1.953-3.03-4.005-5.373-6.543l-25.493-31.356 2.638-2.54 22.95 26.862c.684.683 4.69 4.885 8.5 9.863.002.002.334 1.95-.848 2.85z" fill="#730000" stroke-width=".489"/><path d="M338.115 220.253l-4.103-4.885s-3.125.39-3.71 2.053c0 0-2.247 3.712-8.204 4.103 0 0 1.66 6.934 8.594 10.645 0 0 2.54-7.132 4.981-8.402-.001.001 2.538-1.856 2.442-3.514z" fill="#fff" stroke-width=".489"/><path d="M327.862 241.94c-.584-.198-1.172 0-2.051.488-.78.49-1.757.292-1.66-.686.098-.879 0-.78 1.074-1.463 1.564-.879 3.615-.978 4.884-.49l-2.247 2.15M355.693 214.195c-.196-.681-.389-1.364.293-2.243.684-.782.684-2.15-.979-1.467-1.66.685-2.245 2.54-.877 5.373l1.56-1.663h.003z" fill="#730000" stroke-width=".489"/><path d="M327.277 242.525l28.91-28.719 7.127 7.62s-1.463-.588-2.05-.198c-.488.392.585 1.857.585 1.857s-1.367-.488-1.952-.098c-.684.389 0 2.05 0 2.05s-1.173-.879-1.76-.49c-.487.393 0 2.246 0 2.246s-1.562-.486-1.95-.098c-.392.392 0 2.053 0 2.053s-1.565-.782-2.345 0c-.78.78.39 1.856.39 1.856s-1.953-.782-2.734.39c-.78 1.172.098 2.246.098 2.246s-1.562-.78-1.952-.392c-.39.392 0 2.246 0 2.246s-1.367-.781-2.247.198c-.879 1.074.098 1.954.098 1.954s-1.268-.784-1.954-.395c-.684.395.196 2.247.196 2.247s-1.269-.88-2.148 0c-.88.98 0 1.953 0 1.953s-1.075-.977-2.148 0c-.979 1.076 0 2.15 0 2.15s-1.561-.78-2.147 0c-.683.78.194 1.857.194 1.857s-1.17-.684-1.952-.296c-.78.391 0 2.15 0 2.15s-1.17-1.271-1.66-.585c-.585.683.098 2.344.098 2.344s-1.075-1.271-1.66-.585c-.684.585.39 2.052.39 2.052s-1.953-.88-1.465-.88z" fill="#fff" stroke-width=".489"/><g fill="#7e4b7e" stroke="none"><path d="M354.522 216.154l-2.247 2.246.488 7.717s.489-2.246 1.172-.685c0 0 .196-1.855.684-1.561-.393-.198-.098-7.717-.097-7.717M350.326 220.349l-1.66 1.56.585 7.718s.49-2.929 1.171-.584c0 0-.098-1.953-.098-2.639.002.49.002-6.055.002-6.055M332.845 237.648l-1.563 1.658.392 4.69s.487-3.026 1.17-.685c0 0-.195-1.95-.195-2.636 0 .489.196-3.029.196-3.029"/></g><g fill="none" stroke="#7e4b7e" stroke-width=".916"><path d="M330.886 218.304c1.076 1.074 4.103 4.98 4.103 4.98M332.26 220.454c-.195.588-.584 2.247-1.463 3.126M332.74 220.838c-.099.39-.099 1.661-1.463 2.932M333.229 221.434c-.196.681-.293 1.17-.78 1.661M333.526 222.02c0 .487-.29.585-.388.879M329.917 220.157c-.39.389-3.224 2.244-4.786 2.832M329.13 221.232c-.39.392-2.149 1.759-3.126 2.15M328.842 222.403c-.585.394-1.563 1.367-2.344 1.661M328.256 223.574c-.39.488-.977.88-1.464 1.174" stroke-width=".879"/><path d="M311.302 224.65c.32-.589.875-1.744 1.6-2.8.921-1.342 1.318-1.568 1.8-2.04" stroke-linecap="square" stroke-width=".879"/></g></g><path d="M217.011 303.389c1.465.682 0-4.788.487-6.838.586-2.149 4.785 5.274 6.838 6.253 2.148 1.073 15.235-5.179 15.235-5.179l3.126-5.86 1.66 4.786s3.613-4.2 4.688-5.762c1.075-1.562 0 3.127-1.075 4.688-1.075 1.564 3.126 2.15 2.636 5.276-.487 3.126 4.2-2.15 4.2-2.15l12.11 1.074s2.05-7.326 5.274-11.526l.977 4.691 4.98-5.078c5.568 14.652 17.29 30.575 41.314 39.267 22.561-8.205 34.184-22.76 40.237-36.633l6.74 6.939s5.274-1.566 6.25-2.149c1.074-.49 12.404 4.006 12.404 4.006s2.05.781 3.126 1.564c1.073.78.291-3.42.291-3.42s5.763 1.073 5.274 4.2c0 0 1.269-2.929 2.344-3.418 1.075-.488 3.613 2.638 4.2 3.712.488.979 12.893 2.54 14.65 3.614 0 0 1.368 1.565 1.368 2.638 0 0 2.638-.294 4.69-.294 0 0-1.564.779-1.564 2.442 0 1.564-.781 2.835-2.344 3.613-1.563.783 0 1.367 2.052 1.565 2.148.292 0 2.93-4.2 4.496 0 0-.978 2.341.781 3.122 0 0-3.615.295-4.2-.78 0 0-1.267 2.441-1.267 3.712 0 0-3.906-1.27-4.98-1.855 0 0-1.565 1.56-.49 2.341 0 0-7.128-.778-8.497-3.417 0 0-2.54.78-2.052 1.66 0 0-4.98-3.417-6.542-3.417l-1.074 1.755s-3.419-2.05-4.494-2.05c-.98 0-.196 1.562-.196 1.562l-4.784-2.931-1.855 2.93s-3.908-1.857-4.98-2.635c-.98-.78-1.268 1.562-2.051 1.853 0 0-1.563-2.145-3.712-1.853 0 0-.78 2.636-.487 3.418 0 0-6.056-1.269-7.13-1.565-1.075-.291-.487 1.27 0 2.347 0 0-4.493-1.27-5.47-2.054l-.292 2.054s-3.71-.295-4.492-1.076l-2.344 3.221h-3.419l-.78 2.832s-6.542-1.852-7.13-.778c-.487 1.072.294 2.634.294 2.634l-5.762-.78-.486 2.344s-6.643-2.053-8.205-1.076c0 0-2.052 2.15-3.42 2.638-1.266.585 0-.782 0-.782l-2.05-2.83s-2.343 1.268-3.71.78c-1.27-.588-5.47 2.05-6.839 1.268 0 0 0-1.858-1.072-2.344-.979-.489-2.832-.489-3.616.782 0 0-.78-1.076-2.147-3.127-1.27-2.15-3.127.195-3.127.195l-.293-2.54-3.614-.295c-2.149-.293-2.636-2.15-2.636-2.15s-5.567.586-6.349.296l1.366-1.271s-7.617 1.566-9.18.98c-1.66-.488 1.76-2.638 1.76-2.638s-7.034-1.755-8.401-2.05c-1.269-.293-8.888 1.265-9.963 1.265-1.075 0-1.563-1.758-1.563-1.758s-1.858 1.565-3.42 2.055c0 0-1.269-3.126-.486-3.42 0 0-4.98 1.366-5.275 2.638 0 0-1.269-2.051-1.075-2.93 0 0-2.343 3.712-3.418 4.491-1.076.783-.196-1.855-.196-1.855s-2.928 3.71-4.003 4.005v-2.638s-8.401 4.494-10.744 3.909c0 0 0-1.859.78-2.344l-5.274-.294c-1.267-.195-2.83-.78-4.198-1.074-1.269-.197 1.856-1.562 4.004-.978 0 0-5.86-2.148-7.619-1.076 0 0-.781-2.146 2.342-2.93 0 0-4.005-3.906-6.35-3.614 0 0 2.639-1.562 4.787-.783 0 0-2.442-6.64-4.005-7.421 0 0 5.568-.978 7.13-.193l.002-.002z" fill="#289400" stroke="#060" stroke-width=".488"/><path d="M208.9 188.803l71.1-36.826c.341-1.903-.74-3.399-1.854-4.885-20.333 9.972-38.838 22.072-61.432 29.403-1.27.49-12.502 5.177-18.264 12.114-1.827 1.832-1.962 4.535-1.962 4.535s.14 3.102.792 3.94c0 0 .17.852 1.231 1.532-.011 0 .657.328 1.12.163.516.097 1.356.09 2.529-1.964 1.173-1.955 4.981-6.447 6.74-8.012z" fill="#730000" stroke="#000" stroke-width=".489"/><path d="M266.134 152.371l9.18-4.397s3.127 2.345 2.833 4.983c0 0 .683 6.055 8.205 10.255 0 0-6.35 7.91-17.483 8.596 0 0 1.277-10.44-1.065-13.47 0 0-.39.373-.221-.144.333-1.016-.226-4.5-1.651-5.268-.174-.095.113-.38.202-.555z" fill="#fff" stroke="#000" stroke-width=".489"/><g fill="none" stroke="#7e4b7e" stroke-width=".814"><path d="M276.877 153.638c-1.953.782-8.301 4.102-8.301 4.102M273.853 155.587c-.1.977-.685 3.32 0 4.982M272.97 155.885c0 .487-.78 2.246.098 4.591M272 156.374c-.196.98-.39 1.565 0 2.641M271.213 156.96c-.195.585 0 .88 0 1.268M276.973 156.662c.292.78 2.93 4.883 4.493 6.544M277.366 158.515c.295.782 1.76 3.615 2.833 4.69M277.174 160.176c.39.977 1.173 2.736 1.953 3.711M277.174 162.134c.196.783.586 1.76 1.173 2.445" stroke-width=".781"/></g><g stroke="#000" stroke-width=".509"><path d="M342.291 148.282l26.119 12.789c5.233 2.544 7.114.194 10.067 1.477l51.547 26.257c4.421 1.932 6.897 2.55 6.262 4.838-.108 3.634 1.718 3.689 2.217 3.727.361.097 2.104-.158 2.831-1.125.546-.63.566-.695.566-.695.584-.584.478-.636.66-.897 2.167-3.119 3.368-5.822 1.1-7.588-2.594-1.216-2.893 1.542-5.624 1.251 0 0-4.884-1.855-6.642-3.125-3.24-1.764-7.761-3.855-8.79-5.003-3.29-.616-28.063-14.55-42.097-21.544-1.505-1.26-2.325-5.92-5.283-7.479-.868-1.26-19.866-9.933-29.801-14.899-3.662-1.368-5.711-2.305-8.35 2.189-2.301 4.406-1.742 6.81 5.218 9.827z" fill="#b34b00" stroke-width=".489"/><path d="M344.5 142.81l29.239 14.6" fill="none" stroke-width=".489"/></g><g transform="translate(-40) scale(.96)" fill="#ffa54b" stroke="#000" stroke-width=".509"><path d="M309.73 165.12c-.203.61-.712.203-.712.408-.405 2.135-.305 3.253-.813 4.475-.712 1.424-3.256 2.748-3.154 2.645-2.034.609-4.475 3.054-8.442.814-.204-.101-.406-.306-.61-.508 0 0 1.117 4.169-2.95 6.204-1.424.713-15.77 8.244-15.77 8.244s-1.526 2.748-.509 6.512c.103.61.305 1.118-.305 1.526-.916.71-2.646 2.748-3.662 6.004 0 0-3.053-1.324-3.053-3.256 0-1.934 1.221-2.951 1.526-4.378.304-1.321 1.117-4.679.712-5.698-.406-1.119-2.238-1.526-2.95-1.933-.61-.408-1.425.406-1.322 1.322.103 1.018.813.812 1.628 1.018 0 0-.916 1.932-.813 3.356l-9.258 4.783s1.22 1.626 1.627 2.34c.405.712 1.321 10.175 4.069 14.653 2.747 4.477 3.663 3.256 4.273 3.866.508.508 1.321 1.321 2.034 1.934.712.508 3.865.811 4.477-.916.712-1.631 1.22-2.647 3.154-4.174 1.933-1.524 5.899-5.391 5.899-7.123 0 0 2.34 6.716 2.034 12.313 0 0 8.546 1.731 16.177 1.932 7.632.105 11.497-1.524 11.497-1.524s1.018-6.409.608-7.631c0 0 1.221 4.172 2.137 5.596 1.019 1.727 2.136 5.288 4.374 5.493 2.137.101 3.969-2.135 4.171-3.051v-6.716h8.647c0-.101 3.866 1.424 5.086 1.22 1.221-.102 1.933-1.22.813-1.628l-.405-.303c1.117 0 2.543.71 2.543.71h4.271c.103-.101 0-.408-.103-.508-.305-1.222-2.544-2.24-4.17-2.95-1.629-.609-3.459-1.324-4.681-1.424-1.932-.206-3.256-.101-6.206.408-.813.101-3.865.405-5.799 1.321-.509.306-1.019.406-.813-.916.306-1.426.204-7.835-1.32-10.583-1.12-1.932-1.018-3.562-.814-5.188.104-1.63.204-7.225 0-8.854-.306-1.627-2.544-3.867-6.611-4.375-3.866-.511-7.123-3.664-7.325-6.207-.305-2.542.408-7.223.814-9.257" fill="url(#c)"/><g fill="none"><path d="M292.44 153.63c-.712 3.253-.712 6.104-.609 9.257.102 2.135 1.118 4.577 2.034 6.715.609 1.426 1.425 3.052 2.746 3.867 3.562 2.34 6.919-.203 8.852-1.017.916-.308 2.341-1.626 2.747-2.442.508-1.219.303-2.135.812-4.475-.103.1.813-.408.712-.408.916-1.526.712-2.034 1.221-3.054.509-1.018-.609-2.136-1.832-1.931.609-1.933 1.019-4.072.405-5.904-.202-.608.51-2.235-.608-1.832-4.579 1.832-9.97 1.426-14.854 1.426-.406 0-.712-.815-1.321-.71-.103 0-.204.303-.307.505" fill="url(#d)"/><path d="M292.03 155.35c-.508-.406-.61-1.319 0-3.256.712-1.929 0-2.034 1.119-3.153 1.12-1.12.814-1.629 1.526-1.932.712-.206 2.849-.206 3.562-.508.609-.308 1.525-.714 2.947-.916 1.526-.308 4.579-.206 6.003.608 1.526.812 2.544 2.85 3.46 3.561 1.02.71 1.63 3.661 1.426 7.938-.307 4.272-1.12 3.458-1.12 3.458s-1.222-2.034-2.238-.308c0 0 0-1.626.204-2.848.102-1.219-.61-3.458.102-4.985 0 0-5.8 1.832-8.751 1.729-3.051-.202-7.322-.916-7.526-1.626l-.714 2.238" fill="#000"/><path d="M294.98 151.8c-.305-.61-1.832-2.85-.609-3.561 1.12-.612.406 2.745 1.935 3.458 0 0-.509 1.526-1.321.102l-.005.001z" fill="#fff" stroke="#fff"/><path d="M298.34 160.14c-.508 1.732-.712 2.138-.916 3.156M308.01 164.92c.204.61.404.303.914.405M309.33 161.36c.509-.609 1.221-.303.813 1.223"/><path d="M292.44 157.7c.916.303 1.832.608 2.748 1.02 1.526.61.61 2.845.204 4.271-.204.714-1.019 1.933-.609 2.546.508.811 1.119.303 2.035.403 0-.303.609-.508.813-.508.712-.1 1.12.508 1.627.308.61-.308.51-1.224.306-1.731M299.46 159.53c.102-.403 1.018-.811 1.526-.915 2.136-.405 3.661-.712 5.393.511M300.68 170.21c-1.729.408-3.561.71-5.188-.206M295.49 169.2c.813-.408 1.12-.816 2.137-.308 0-.101 1.12-.405 1.12-.405.812 0 1.322.304 2.136.812M295.39 169.6c.916-.306 3.358-.306 5.394.102"/><path d="M292.34 160.14c.713-.1 1.526-.916 3.154.306 1.12.712-1.832 1.426-1.322 1.324-1.32.202-1.729-.508-1.828-1.122 0-.202-.204-.508 0-.508h-.004zM300.68 160.95c.712-1.426 1.832-1.119 2.849-.816 1.019.306.713.105 1.629.613-1.12.203-.814.303-1.629.71-.916.408-1.729.61-2.341.206-.204-.206-.712-.508-.712-.916-.001.101.102.203.204.203z" fill="#fff" stroke-width=".305"/><path d="M293.76 161.36c.406 0 .712-.406.712-.814 0-.508-.306-.916-.712-.916-.507 0-.812.408-.812.916 0 .408.303.814.812.814zM302.41 161.56c.405 0 .712-.403.712-.916 0-.508-.407-.811-.813-.811-.405 0-.712.303-.712.811-.001.514.407.916.813.916z" fill="#000" stroke-width=".305"/></g><g id="g"><g fill="none"><path d="M345.85 213.66c-.608-.714-1.018-1.02-1.83-1.324l-2.036-1.016c-.712-.408-1.729-.508-2.34-.916M340.05 213.05c-.306-.203-.508-.304-.812-.51-.306-.101-.712-.101-1.02-.203-.102 0-.102-.204-.203-.204-.915-.102-1.831-.51-2.44-1.321M272.8 201.45c.914.71 3.152 2.24 3.356 5.19.204 1.525 1.019 3.051 1.019 3.051M264.05 201.86c.51 1.727.61 7.425 6.003 13.43M265.07 193.92c-.408 1.119-.916 2.137.202 2.951M279.72 207.56c1.12-2.545 4.578-2.342 4.578-4.782"/><path d="M284.81 207.25c-.306-2.849-.916-4.475-.405-8.647.203-1.223.405-5.9 0-8.141 0 0 1.629 7.833-3.662 9.363M315.13 212.34c0-3.97.916-6.209.916-6.209 1.221-5.593-1.119-7.731-.203-9.155.812-1.221 2.035-3.766.407-8.854 0 0 2.847 10.484-4.478 10.484-7.425 0-7.121-2.748-7.121-2.748"/><path d="M284.4 190.46c0 2.135 0 8.447 9.055 8.447 2.746 0 5.698-1.933 7.324-3.256M303.02 192.9c-.306-1.934-.306-4.375-.306-6.92M289.08 182.53c2.441-.308 4.376-.61 8.955-.61M298.34 175.6c.509 2.24-.304 5.8 3.866 6.309M306.58 174.79c-.61 1.629-.61 3.256-.814 4.375M305.97 181.92c1.73 0 4.985-1.121 9.054-.306M316.45 204.4c.813 1.63 1.018 3.765 3.561 6.207M288.27 199.21c.204 1.324-1.729 5.698-.306 9.262 1.322 3.559 1.12 7.631-1.12 11.089M293.46 200.54c-.813 1.626-2.238 3.256-2.544 4.68M297.52 203.59c0 1.018-2.744 8.749-4.68 10.886 0 0 3.561 1.424 3.051 6.614M303.22 200.03c0 1.324-.204 1.63.916 2.44M306.58 202.47c1.32 1.628 5.492 6.514 4.576 9.259M303.83 205.22c.306 1.018.306 6.309-.61 8.955M301.09 213.97c-1.12 0-2.746.814-3.052 2.747M306.78 213.66c1.118-.306 3.355 1.626 3.355 7.123M325.81 210.51c-2.136.61-3.052 1.732-2.44 1.119-1.12.916-2.138 1.526-2.138 1.526"/></g><path d="M289.79 197.99c.608 0 1.118-.408 1.118-.916 0-.411-.507-.816-1.118-.816-.509 0-1.02.405-1.02.816 0 .505.508.916 1.02.916zM312.89 198.3c.51 0 1.02-.405 1.02-.916 0-.505-.508-.811-1.02-.811-.607 0-1.118.306-1.118.811-.001.511.51.916 1.118.916z" fill="#000" stroke-width=".305"/><path d="M280.54 239.81c1.22-7.937 4.985-14.551 5.086-15.162 0 0 3.865.816 10.58 1.424 6.612.71 8.444.408 11.496.202 2.949-.303 6.815-.811 6.815-.811s1.221 2.44 1.322 4.883c.305 5.188 2.236 27.677 2.439 33.679 0 0 .814 3.562.814 12.312 0 9.567 2.645 28.999 2.645 39.381l-2.645.51s-14.446 1.119-14.446-.814c0-2.135-.813-27.066 1.322-42.126 0 0-.508-2.95-1.322-5.496-.813-2.442-4.375-10.073-4.375-11.698 0 0-5.695 16.072-6.001 18.824-.304 2.543-1.12 38.357-1.628 41.312 0 0-8.241 6.308-9.36 6.92-1.118.509-9.054-3.36-9.258-4.375-.306-1.118.814-13.229 4.578-33.176 1.425-7.123.61-8.44.61-10.375 0-1.934.103-27.474 1.322-35.412l.006-.002z" fill="#fff"/><g fill="none"><path d="M294.27 274.92c-.609 2.24-1.628 4.375-3.559 5.803M287.96 227.09c-.304 1.322-2.238 7.325-7.122 10.887M295.08 228.21c-1.12 3.562-5.493 22.693-6.309 45.383M288.47 280.72c-.204 2.135-1.322 18.012-1.628 20.756M286.03 304.53c-.509 1.117-2.746 10.375-2.746 18.619M315.53 287.23c-.204 1.933-1.019 15.668 3.561 27.98M300.58 229.23c-.305 2.237-.813 16.688-.813 17.806 0 1.117 1.628 2.747 2.441 3.054 0 0-1.628.509-1.933 6.003M296.2 243.17c-.308 1.727-1.934 8.547-3.054 11.295M306.27 229.03s4.884 1.018 5.188 0c0 0 1.628 29.512 3.866 45.891M304.14 232.79c0 1.934-.609 16.485-.609 16.485M305.97 251.41s1.931 2.745 1.425 4.066M289.59 227.4c1.629.508 3.053.812 3.053.812M297.83 229.84c-.307.814-.61 4.58-.61 4.58M305.97 273.29c.61.814 1.425 1.936.814 4.377"/></g><path d="M284.91 224.45s0-3.256 1.22-4.886c0 0 3.457.714 8.342 1.222 4.984.508 8.951.916 12.615.508 3.663-.406 7.428-1.322 7.428-1.322s1.017 4.784.506 5.496c0 0-3.968.814-8.341 1.016-4.477.303-11.902-.408-14.445-.812-3.359-.408-6.31-1.02-7.325-1.222z" fill="#9b5f00"/><path d="M288.06 224.85l.608-4.883 1.019.1-.203 5.088-1.424-.305M310.14 220.78l.103 5.496 1.221-.206-.102-5.597-1.222.307M294.47 220.78l-.406 5.291h.713l.712-5.291h-1.019" fill="#fff"/><path d="M276.77 320.81c-.305 1.322-.812 3.154-1.018 5.496 0 .508-.507 3.256 1.018 3.356 1.12.103 1.425-2.849 1.425-2.849s-1.019 3.256.305 3.664c1.832.403 2.034-3.562 2.034-3.562-.204 1.119-1.425 3.969.306 4.271 1.831.307 2.339-3.867 2.339-3.867s-1.525 4.174.305 4.275c1.729.1 1.729-4.072 1.729-4.072s-.916 4.988 1.526 4.58c1.321-.203 1.628-1.934 1.933-2.951.406-1.524 1.322-3.457.204-6.612-.812-2.341-.507-2.951-.507-2.951s-2.85 2.138-5.087 3.562c-1.019.609-6.514-2.34-6.514-2.34zM306.48 316.43c-.508-.307-.406 1.832-.609 2.846-.103 1.021.204 3.257 3.663 3.055 3.355-.307 6.715-1.018 8.851-.509 2.137.61 5.289.711 7.021.711 1.729 0 2.849-.202 3.661-.509.713-.303 2.238.408 2.95.408.713 0 1.831-1.119 1.73-1.832-.103-1.324-1.322-1.324-3.054-1.424-1.628-.203-3.865-.511-4.983-.916-1.12-.408-3.154-1.527-5.698-2.035 0 0-4.883.205-5.898.205-1.019 0-7.022.303-7.634 0z"/></g><g fill="none"><path d="M255.71 189.85c-.507.306-1.12-2.035.406-2.951 0 0 .406-1.931 2.035-2.136 0 0 1.321-1.832 3.257-1.626 0 0 2.235-1.525 3.051-1.324.812.102 2.849 2.136 2.95 2.85.204.711 0 1.933-.511 2.442-.609.608-1.018-.102-1.119-.916 0 0 .407 1.524-.813 2.135-1.219.714-1.119.206-1.219-.61 0 0-.308 1.63-1.12 1.832-.814.305-1.322-.408-1.935-.408 0 0 1.019.816.307 1.426-.713.508-1.526.303-2.036-.102-.509-.508-1.12-1.832-3.257-.61l.004-.002z" fill="#ffb366"/><path d="M265.68 186.09c-.51-1.629-2.137-3.054-4.069-2.848M263.85 187.61c-.306-.408-.408-.816-.712-1.22-.916-1.528-2.849-1.424-4.477-1.832M261.1 189.14c-.609-.406-.813-1.222-1.425-1.524-1.018-.408-2.034-.916-3.255-.714"/></g></g><g transform="translate(-40) scale(.96)" stroke="#000" stroke-width=".509"><path d="M439.14 165.12c.712-.306.51.61.61.916.306 1.321.306 2.748.813 3.967.608 1.119.812 1.526 1.83 2.035 1.627.916 6.407 3.562 9.767 1.424a3.11 3.11 0 0 0 .712-.508s-1.221 4.172 2.95 6.207c1.321.71 15.668 8.241 15.668 8.241s1.525 2.748.609 6.512c-.204.61-.405 1.118.204 1.526 1.019.71 2.644 2.748 3.766 6.004 0 0 2.947-1.324 2.947-3.256 0-1.934-1.219-2.951-1.525-4.375-.202-1.324-1.017-4.682-.608-5.698.405-1.118 2.135-1.526 2.847-1.936.714-.408 1.526.406 1.322 1.322-.102 1.018-.812.816-1.628 1.018 0 0 1.02 1.932.814 3.356l9.358 4.783s-1.221 1.629-1.628 2.34c-.509.715-1.425 10.175-4.171 14.653-2.748 4.477-3.663 3.256-4.171 3.866-.61.508-1.424 1.324-2.137 1.934-.608.508-3.764.814-4.476-.916-.712-1.628-1.221-2.647-3.153-4.174-1.934-1.524-5.9-5.391-5.9-7.123 0 0-2.341 6.719-2.035 12.313 0 0-8.443 1.731-16.176 1.936-7.631.102-11.497-1.528-11.497-1.528s-1.018-6.409-.61-7.631c0 0-1.22 4.172-2.033 5.596-1.118 1.727-2.236 5.291-4.375 5.493-2.236.104-3.968-2.135-4.271-3.051v-6.716h-8.646c0-.101-3.766 1.424-5.087 1.223-1.221-.105-1.832-1.223-.813-1.631l.407-.303c-1.119 0-2.544.71-2.544.71h-4.272c0-.101.103-.408.103-.508.307-1.219 2.545-2.24 4.272-2.95 1.628-.609 3.356-1.324 4.578-1.424 1.933-.203 3.256-.101 6.206.408.812.101 3.967.408 5.798 1.322.508.304 1.118.405.813-.915-.305-1.426-1.221-5.598.307-8.346 1.018-1.933.916-3.559.813-5.189-.204-1.729-1.118-5.598-1.118-7.325 0-5.699 4.375-8.039 8.24-9.262 4.272-1.319 7.121-2.748 6.92-5.288-.104-2.646.608-7.021.202-9.058" fill="url(#e)"/><g fill="none"><path d="M456.34 153.63c.916 3.356 1.12 4.169 1.12 5.291 0 1.219-.509 1.424-.104 2.748.713 2.441-.712 5.088-2.441 7.937-.813 1.32-1.424 3.052-2.746 3.866-3.356 2.135-7.427-.408-9.563-1.327-1.117-.505-1.729-1.319-2.033-2.135-.407-1.219-.509-2.34-.813-3.967 0-.306.103-1.219-.609-.916-1.22-1.424-1.018-2.034-1.524-3.051-.509-1.021.916-2.139 2.034-1.934-.61-1.933-.916-4.072-.306-5.904.204-.608-.508-2.235.51-1.832 4.577 1.832 9.969 1.426 14.854 1.426.404 0 .71-.812 1.32-.71.098-.001.2.305.301.508" fill="url(#f)"/><path d="M456.75 155.35c.508-.406.204-2.34-.306-4.375-.203-1.017-1.018-1.424-2.136-2.542-1.12-1.122-1.525-1.122-2.236-1.424-.609-.206-2.034-.206-2.746-.508-.61-.308-2.238-.105-3.766.101-2.036.304-3.153.202-4.679 1.018-1.526.814-2.746 1.73-3.256 3.256-.406 1.118-1.12 2.542-.814 6.817.204 4.272 1.019 3.458 1.019 3.458s1.12-1.628 1.832-.61c0 0-.103-2.24-.305-3.561-.103-1.222 0-2.748.509-4.58 0 0 4.679 1.732 9.054 1.732 3.053 0 7.021-.306 7.123-1.017l.71 2.235h-.003z" fill="#000"/><path d="M450.44 160.14c.61 1.732.104 1.222.408 2.34M440.57 164.51c0 .812-.61.61-1.019.61"/><path d="M456.85 158.82c-.916-.713-2.645-.204-3.46.102-1.525.71-.712 2.24-.204 3.664.204.71 1.02 1.727.511 2.441-.407.812-.713.408-1.629.51.104-.308-.812 0-1.117 0-.61-.102-.916.403-1.426.202-.608-.304-.508-1.22-.306-1.729M449.32 159.53c0-.403-1.321-.811-2.745-.915-2.238-.102-2.442.104-4.172 1.322M453.9 168.89c-.405-.608-1.018-.916-2.137-.405 0-.204-1.524-.406-1.524-.406-.812 0-1.321.303-2.136.71M453.69 169.4c-.916-.609-3.256-.201-5.596-.201M448.3 170.01c1.73.512 3.46.816 5.188 0"/><path d="M456.44 160.14c-.712-.1-1.018-.916-3.153.306-1.119.61 1.832 1.426 1.425 1.324 1.22.202 1.628-.508 1.729-1.122-.001-.203.203-.508-.001-.508zM448.1 160.95c0-.816-1.829-1.119-2.847-.816-1.019.306-.61.105-1.526.613 1.02.203.712.303 1.526.71.914.408 1.12.814 2.339.206.306-.105.712-.508.813-.916-.101.101-.202.203-.305.203z" fill="#fff" stroke-width=".305"/><path d="M455.12 161.36a.802.802 0 0 1-.813-.814c0-.508.307-.916.813-.916.405 0 .712.408.712.916 0 .408-.307.814-.712.814zM446.37 161.56c-.406 0-.712-.403-.712-.916 0-.508.403-.811.812-.811.409 0 .712.303.712.811 0 .514-.303.916-.812.916z" fill="#000" stroke-width=".305"/></g><use height="100%" width="100%" xlink:href="#g" transform="matrix(-1 0 0 1 748.816 0)" fill="#730000"/><g fill="none"><path d="M491.64 193.51c.508.206 1.934-2.033.508-3.051 0 0-.508-1.932-2.136-2.034 0 0-1.322-1.933-3.257-1.63 0 0-2.136-1.524-2.948-1.421-.916.202-2.951 2.237-3.053 2.95-.102.609 0 1.832.508 2.441.61.51 1.02-.104 1.119-1.02 0 0-.405 1.529.813 2.24 1.221.71 1.119.1 1.221-.71 0 0 .306 1.626 1.12 1.932.812.303 1.321-.408 1.934-.408 0 0-1.018.815-.305 1.324.713.61 1.525.303 2.035-.104.61-.404.306-1.727 2.441-.509z" fill="#730000"/><path d="M482.49 189.75c.506-1.73 2.235-3.153 4.067-2.849M484.42 191.28c.203-.411.305-.816.61-1.224.915-1.524 2.948-1.524 4.576-1.832M487.06 192.7c.61-.408.814-1.118 1.426-1.421 1.018-.512 2.136-.916 3.256-.714"/><path d="M482.31 186.77c-.896.716-1.837 1.798-1.906 2.281-.103.61-.008 1.827.5 2.438.551.461.949-.017 1.095-.781-.059.463-.071 1.465.844 2 1.22.71 1.118.095 1.219-.719 0 0 .312 1.635 1.125 1.938.813.306 1.325-.406 1.938-.406 0 0-1.026.804-.312 1.312.712.61 1.522.309 2.031-.094.61-.408.3-1.722 2.438-.5.267.106.804-.452 1.031-1.156l-7.688-5.531-2.315-.782z" fill="#730000" stroke="none"/><path d="M480.68 188.19c-1.502 2.582.5 4.132 1.164 2.619-.193 2.386 1.606 2.292 2.285 1.538.658 2.512 1.83 1.395 2.909 1.164-1.223 2.29 1.479 1.609 2.12 1.081.924-1.362 1.356-.277 2.036-.416l1.164-1.247M484.38 187.23c-1.686.896-2.512 2.137-2.535 3.699M486.71 188.73c-1.687.896-2.512 2.137-2.535 3.699M489.58 190.68c-1.687.897-1.765 1.722-2.493 2.826"/></g></g><g fill="#5ac800"><path d="M238.496 310.714l-.196-4.493 1.857 1.564.487-3.42c.781-.198 2.052 1.37 2.052 1.37l-.196-3.422 2.832 3.126s-.195-2.638.78-4.202c0 0 2.147 1.858 2.147 4.006 0 1.86 1.857-2.639 1.857-2.639.488 1.565 1.563 4.983 1.563 4.983l1.268-1.857 1.075 3.907 2.344-3.42 1.854 4.008 4.2-.295.489 2.342 1.855-2.05 2.443 1.562s2.051-.585 3.125-.585c1.075 0 2.345 1.37 2.345 1.37s.78-1.37 1.563-1.861c.78-.486 1.857.783 2.146 1.565l1.564-2.832s2.052 2.051 2.343 2.832c0 0 .292-2.343.78-3.127.49-.78 1.27.295 1.857 1.271l1.269-4.2s1.368.29 2.343 1.857c1.072 1.56 1.072-2.344 1.072-2.344s2.344 3.126 2.93 5.274c0 0-16.172 5.552-27.577 4.034-13.423-1.787-24.48-4.326-24.48-4.326M349.347 310.224s.78-2.15 1.858-3.226c0 0 2.05 2.445 2.05 3.226 0 0 .584-.293 1.66-1.076l1.563 1.562 1.858-1.267 1.758 1.56 3.222-1.367 1.27 1.368 4.98-.582 1.855.78 1.76-2.248 1.66 1.759 2.636-2.638s1.27 1.073 1.563 1.857c0 0 2.148-1.072 2.637-1.857 0 0 2.05-.78 2.343.488 0 0 1.269-.977 1.173-2.05-.098-1.073 1.464-.294 1.952 1.073 0 0 .585-2.146 2.147-2.342 0 0 1.073 1.266.78 3.616 0 0 2.344-1.86 3.419-2.056 0 0 .488 2.639-.293 4.986 0 0 2.441-4.007 2.931-2.638.196.78.781 3.418.196 5.272l2.148-1.367.78 2.638 2.342-.489s-13.864 2.124-26.928.878c-13.063-1.246-25.32-5.86-25.32-5.86M339.69 319.92c.634-.392-4.365 10.28-16.484 10.847-16.86.79-31.274-7.622-31.274-7.622s1.76-2.93 2.832-3.713c0 0 2.343 1.859 3.125 4.2 0 0 .294-1.562 1.075-2.929 0 0 2.93 1.365 3.419 3.224 0 0 1.075-1.858 1.857-2.344.78-.588 1.563 2.05 1.563 3.615 0 0 1.854-1.956 2.93-2.053 0 0 2.051.976 2.637 4.396 0 0 1.953-1.855 2.636-1.565 0 0 2.344 1.565 1.757 3.712-.292 1.174 2.344-1.364 5.569-2.147l2.83 2.147s2.637-3.514 3.42-4.69c0 0 2.148.784 2.148 2.056 0 0 .978-3.714 1.758-4.104.78-.488 1.854 1.171 1.854 2.248 0 0 .295-2.834 1.858-3.42 0 0 1.563 1.074 1.563 2.151-.003-.002 1.657-3.226 2.927-4.009z"/></g><g fill="none" stroke="#060" stroke-width=".509"><path d="M238.496 310.714l-.196-4.493 1.857 1.564.487-3.42c.781-.195 2.052 1.37 2.052 1.37l-.196-3.42 2.832 3.126s-.195-2.638.78-4.2c0 0 2.147 1.857 2.147 4.005 0 1.859 1.857-2.638 1.857-2.638.488 1.566 1.563 4.984 1.563 4.984l1.268-1.859 1.074 3.906 2.343-3.417 1.856 4.005 4.2-.295.489 2.345 1.855-2.051 2.443 1.564s2.05-.585 3.125-.585c1.075 0 2.344 1.365 2.344 1.365s.78-1.365 1.563-1.854c.78-.488 1.855.78 2.145 1.561l1.564-2.83s2.052 2.05 2.344 2.83c0 0 .292-2.341.781-3.125.49-.78 1.268.294 1.856 1.27l1.269-4.2s1.367.292 2.342 1.856c1.075 1.561 1.075-2.346 1.075-2.346s2.343 3.128 2.932 5.275M349.347 310.224s.78-2.146 1.856-3.222c0 0 2.05 2.443 2.05 3.222 0 0 .586-.293 1.661-1.072l1.563 1.56 1.856-1.267 1.759 1.562 3.223-1.367 1.266 1.367 4.98-.583 1.859.78 1.756-2.244 1.661 1.755 2.636-2.635s1.27 1.07 1.563 1.855c0 0 2.149-1.074 2.637-1.855 0 0 2.05-.781 2.342.485 0 0 1.269-.976 1.172-2.05-.099-1.073 1.464-.291 1.953 1.078 0 0 .584-2.15 2.148-2.348 0 0 1.073 1.27.78 3.616 0 0 2.343-1.855 3.418-2.052 0 0 .489 2.635-.292 4.982 0 0 2.442-4.005 2.93-2.637.196.78.782 3.42.196 5.273l2.148-1.367.781 2.638 2.342-.49M291.853 323.165s1.759-2.93 2.83-3.712c0 0 2.345 1.857 3.127 4.2 0 0 .295-1.561 1.075-2.929 0 0 2.93 1.364 3.418 3.223 0 0 1.076-1.856 1.857-2.343.78-.589 1.563 2.05 1.563 3.613 0 0 1.856-1.955 2.93-2.052 0 0 2.051.976 2.637 4.397 0 0 1.954-1.856 2.636-1.565 0 0 2.344 1.565 1.758 3.712-.293 1.172 2.344-1.365 5.568-2.147l2.83 2.147s2.637-3.515 3.42-4.69c0 0 2.148.782 2.148 2.054 0 0 .978-3.714 1.759-4.102.78-.488 1.853 1.17 1.853 2.246 0 0 .295-2.833 1.859-3.42 0 0 1.563 1.074 1.563 2.15 0 0 1.66-3.222 2.93-4.007" stroke-width=".489"/></g><g fill="#fff"><path d="M319.462 361.9c21.977.198 34.967-7.815 42.097-12.601 16.7-11.231 20.217-11.623 22.952-11.43 3.127.297 7.714 1.37 7.91 4.106.294 4.2-6.542 6.055-10.45 6.055-4.003 0-14.456-2.638-14.456-2.638l-2.736 1.858c1.857.88 23.247 8.009 27.349 1.27 4.197-6.837 8.399-17.877 8.399-17.877s-4.688-8.4-15.14-8.4c-10.548 0-20.805 6.644-27.64 11.621-6.838 4.982-15.43 11.82-38.287 11.82-22.855 0-31.546-6.838-38.382-11.82-6.836-4.98-17.093-11.622-27.542-11.622-10.547 0-15.237 8.401-15.237 8.401s4.2 11.04 8.4 17.877c4.1 6.739 25.492-.39 27.345-1.27l-2.636-1.858s-10.548 2.638-14.456 2.638c-4.004 0-10.841-1.855-10.548-6.055.196-2.736 4.785-3.811 7.912-4.106 2.734-.193 6.25.199 22.95 11.43 7.134 4.786 20.124 12.504 42.196 12.602"/><path d="M284.106 336.01s0-1.86-.296-4.592c-.39-3.518-2.44-4.397-4.1-3.908-1.074.387-3.222 3.029-3.222 3.029v.098a31.068 31.068 0 0 0-3.028-1.857c.782-.88 5.274-3.614 6.349-3.614.978 0 14.455 5.47 18.75 9.18 1.076.98 1.858 7.035 1.27 8.986-7.227-1.855-11.915-4.59-15.726-7.227v-.098M277.654 349.69s-2.93 2.929-3.026 8.302c-.1 6.348 4.492 6.643 7.52 6.543 3.614-.1 6.542-2.148 6.446-8.889 0 0-5.96-2.54-10.94-5.958M354.723 336.01s.1-1.86.392-4.592c.387-3.518 2.342-4.397 4.003-3.908 1.074.387 3.222 3.029 3.222 3.029v.098c.976-.686 1.95-1.27 3.026-1.857-.78-.88-5.272-3.614-6.25-3.614-1.073 0-14.55 5.47-18.848 9.18-.98.98-1.76 7.035-1.27 8.986 7.326-1.855 11.915-4.59 15.725-7.227v-.098M361.165 349.69s2.93 2.929 3.028 8.302c.195 6.348-4.495 6.643-7.52 6.543-3.615-.1-6.446-2.148-6.446-8.889 0 0 5.958-2.54 10.94-5.958"/></g><g fill="#69f"><path d="M271.309 345.389s-10.452 2.638-14.358 2.638c-4.003 0-10.841-1.853-10.547-6.056.195-2.736 4.785-3.808 7.91-4.1 2.344-.2 5.372.096 16.995 7.518M367.52 345.389s10.45 2.638 14.456 2.638c3.907 0 10.743-1.853 10.45-6.056-.195-2.736-4.784-3.808-7.91-4.1-2.346-.2-5.374.096-16.996 7.518M284.106 336.106c-1.075-.782-2.149-1.566-3.128-2.344-1.464-1.076-2.93-2.053-4.494-3.126 0 0 2.149-2.736 3.223-3.03 1.66-.584 3.71.292 4.1 3.809.294 2.736.294 4.692.294 4.692M276.973 363.658c1.858 1.076 3.907.979 5.178.879 3.614-.098 6.543-2.149 6.446-8.888 0 0 4.491 2.247 11.817 4.005 0 0 1.173 1.464 1.367 4.393.296 2.445-1.367 5.08-3.319 4.887 0 0-10.255-1.857-16.504-2.93-3.615-.682-4.981-2.344-4.981-2.344M354.723 336.106c1.073-.782 2.149-1.566 3.221-2.344 1.369-1.076 2.832-2.053 4.396-3.126 0 0-2.148-2.736-3.222-3.03-1.66-.584-3.614.292-4.003 3.809-.295 2.733-.392 4.69-.392 4.69M361.846 363.658c-1.855 1.076-3.907.979-5.177.879-3.614-.098-6.446-2.149-6.446-8.888 0 0-4.494 2.247-11.72 4.005 0 0-1.27 1.464-1.466 4.393-.196 2.445 1.465 5.08 3.32 4.887 0 0 10.352-1.857 16.506-2.93 3.614-.682 4.98-2.344 4.98-2.344"/></g><g fill="none" stroke="#000" stroke-width=".712"><path d="M319.462 361.9c21.978.196 34.967-7.816 42.097-12.601 16.7-11.233 20.217-11.622 22.951-11.428 3.127.293 7.718 1.368 7.91 4.102.295 4.2-6.542 6.055-10.451 6.055-4.003 0-14.455-2.633-14.455-2.633l-2.734 1.856c1.857.88 23.244 8.01 27.346 1.267 4.2-6.837 8.398-17.874 8.398-17.874s-4.688-8.404-15.14-8.404c-10.546 0-20.802 6.645-27.64 11.626-6.836 4.981-15.429 11.82-38.285 11.82-22.855 0-31.545-6.839-38.382-11.82-6.836-4.98-17.094-11.626-27.543-11.626-10.546 0-15.235 8.404-15.235 8.404s4.198 11.037 8.4 17.874c4.101 6.74 25.492-.387 27.346-1.267l-2.635-1.856s-10.55 2.633-14.454 2.633c-4.006 0-10.842-1.851-10.55-6.055.196-2.736 4.785-3.808 7.912-4.102 2.733-.194 6.248.197 22.95 11.428 7.132 4.788 20.122 12.506 42.194 12.602z" stroke-width=".684"/><path d="M271.309 345.389s-10.453 2.638-14.356 2.638c-4.005 0-10.841-1.856-10.55-6.056.196-2.736 4.786-3.811 7.912-4.1 2.341-.2 5.371.096 16.994 7.518zM367.51 345.389s10.452 2.638 14.456 2.638c3.906 0 10.743-1.856 10.45-6.056-.195-2.736-4.783-3.811-7.908-4.1-2.344-.2-5.374.097-16.994 7.518h-.004zM284.106 336.106c-1.076-.782-2.149-1.566-3.128-2.344-1.462-1.076-2.929-2.053-4.492-3.126 0 0 2.149-2.736 3.222-3.03 1.66-.584 3.71.292 4.1 3.813.298 2.73.298 4.687.298 4.687z" stroke-width=".684"/><path d="M284.106 336.01s0-1.859-.296-4.592c-.388-3.518-2.44-4.397-4.1-3.908-1.075.39-3.224 3.029-3.224 3.029v.098a31.881 31.881 0 0 0-3.028-1.857c.782-.88 5.274-3.614 6.35-3.614.979 0 14.454 5.47 18.751 9.183 1.076.978 1.856 7.032 1.27 8.987-7.228-1.86-11.917-4.593-15.728-7.228M277.654 349.69s-2.929 2.929-3.026 8.302c-.098 6.344 4.492 6.641 7.52 6.543 3.615-.1 6.542-2.148 6.448-8.892 0 0-5.958-2.54-10.94-5.96l-.002.007z" stroke-width=".684"/><path d="M280.102 351.149s-2.341 2.441-2.733 6.446c-.196 3.127 1.855 4.883 4.492 4.688 3.711-.193 5.178-5.272 3.42-8.105l-5.179-3.03" stroke-width=".684"/><path d="M276.973 363.658c1.856 1.074 3.905.977 5.176.879 3.615-.1 6.542-2.15 6.448-8.89 0 0 4.492 2.247 11.818 4.005 0 0 1.173 1.464 1.366 4.397.295 2.442-1.366 5.08-3.318 4.883 0 0-10.257-1.857-16.506-2.93-3.617-.686-4.984-2.344-4.984-2.344zM354.723 336.106c1.075-.782 2.149-1.566 3.223-2.344 1.368-1.076 2.832-2.053 4.395-3.126 0 0-2.148-2.736-3.223-3.03-1.66-.584-3.614.292-4.003 3.813-.294 2.732-.39 4.688-.39 4.688h-.002v-.001z" stroke-width=".684"/><path d="M354.723 336.01s.1-1.859.392-4.592c.389-3.518 2.342-4.397 4.003-3.908 1.075.39 3.222 3.029 3.222 3.029v.098a31.881 31.881 0 0 1 3.028-1.857c-.782-.88-5.274-3.614-6.252-3.614-1.074 0-14.55 5.47-18.848 9.183-.98.978-1.76 7.032-1.27 8.987 7.326-1.86 11.915-4.593 15.725-7.228M361.165 349.69s2.93 2.929 3.028 8.302c.195 6.344-4.495 6.641-7.522 6.543-3.613-.1-6.444-2.148-6.444-8.892 0 0 5.956-2.54 10.938-5.96v.007z" stroke-width=".684"/><path d="M358.726 351.149s2.345 2.441 2.735 6.446c.295 3.127-1.857 4.883-4.493 4.688-3.71-.193-5.078-5.272-3.419-8.105l5.177-3.03" stroke-width=".684"/><path d="M361.846 363.658c-1.855 1.074-3.907.977-5.177.879-3.613-.1-6.444-2.15-6.444-8.89 0 0-4.495 2.247-11.72 4.005 0 0-1.27 1.464-1.465 4.397-.195 2.442 1.465 5.08 3.32 4.883 0 0 10.354-1.857 16.505-2.93 3.615-.686 4.981-2.344 4.981-2.344z" stroke-width=".684"/></g><g fill="none" stroke="#fff" stroke-width=".712"><path d="M299.638 361.411s3.223 2.347-.683 5.276M289.971 359.846l9.864 4.3M291.622 362.093l7.225 3.124M294.166 360.24l5.47 2.445M339.286 361.411s-3.321 2.347.586 5.276M348.858 359.846l-9.865 4.3M347.293 362.093l-7.226 3.124M344.662 360.24l-5.372 2.445" stroke-width=".684"/></g><g stroke="#000" stroke-width=".7"><path d="M261.018 331.363c.14.227.229.464.273.707a2.51 2.51 0 0 1-.029.83 2.346 2.346 0 0 1-1.157 1.644c-.634.372-1.36.475-2.164.321a3.68 3.68 0 0 1-1.087-.386 4.348 4.348 0 0 1-.887-.594c-.107.127-.22.249-.334.376-.157-.028-.313-.06-.469-.089.151-.945.3-1.892.456-2.836l.476.092c.03.367.089.7.167 1.007.073.308.2.598.368.887.16.265.363.495.614.68.245.186.549.317.908.383.27.054.513.063.732.03.213-.033.399-.097.543-.203.147-.104.272-.238.368-.399.093-.157.159-.345.203-.577a1.71 1.71 0 0 0-.107-.973c-.13-.323-.378-.589-.719-.806a48.251 48.251 0 0 0-.812-.503c-.306-.187-.569-.346-.788-.506-.427-.298-.746-.634-.937-1.03-.196-.387-.247-.852-.142-1.398.06-.312.18-.588.362-.837.18-.251.41-.45.69-.62.266-.165.565-.264.898-.324a2.902 2.902 0 0 1 1.001.017c.382.071.721.197 1.001.37.279.176.535.358.754.564.105-.114.212-.23.316-.346l.471.09-.473 2.74-.478-.092c-.025-.329-.064-.647-.114-.954a3.557 3.557 0 0 0-.277-.857c-.125-.26-.3-.477-.514-.657-.214-.181-.503-.301-.859-.37a1.378 1.378 0 0 0-1.02.175c-.304.191-.494.447-.558.788-.066.353-.036.664.088.932.121.27.33.505.623.718.26.193.524.358.782.511.256.153.5.307.738.47.215.143.426.3.618.472.187.168.35.354.475.553M272.998 333.043c-.1-.05-.257-.107-.464-.175-.209-.067-.39-.1-.556-.084-.163.013-.334.133-.516.354a5.674 5.674 0 0 0-.572.874c-.586 1.063-1.175 2.126-1.76 3.19-.225.406-.505.711-.843.918-.337.208-.7.326-1.084.365-.38.04-.741.008-1.095-.074a4.164 4.164 0 0 1-.945-.368c-.445-.246-.815-.52-1.1-.829-.285-.314-.5-.63-.621-.958a2.225 2.225 0 0 1-.155-.971c.02-.319.109-.614.26-.887l2.394-4.34a.904.904 0 0 0 .109-.34c.002-.098-.043-.22-.124-.356a1.497 1.497 0 0 0-.269-.305c-.124-.1-.22-.18-.307-.236.066-.122.135-.246.202-.367 1.035.572 2.065 1.14 3.099 1.708l-.203.367c-.1-.052-.23-.099-.393-.155a1.933 1.933 0 0 0-.372-.104c-.141-.022-.26 0-.35.078a.878.878 0 0 0-.236.28c-.746 1.352-1.493 2.703-2.238 4.056-.108.197-.2.416-.27.653a1.79 1.79 0 0 0-.078.746c.028.267.133.517.3.767.17.25.46.487.866.712.38.211.74.331 1.067.356.324.02.616-.02.876-.134.241-.108.456-.246.623-.418.17-.17.313-.36.427-.564l1.66-3.012c.213-.384.36-.712.435-.988.08-.274.083-.471.019-.611-.07-.156-.205-.315-.385-.476a3.569 3.569 0 0 0-.444-.353l.203-.366 3.042 1.679a19.19 19.19 0 0 1-.202.368M277.309 340.502c.13.267.205.56.21.87.006.313-.083.636-.275.97a1.932 1.932 0 0 1-.73.751 2.166 2.166 0 0 1-.936.278c-.324.03-.65-.006-.988-.09a4.031 4.031 0 0 1-.98-.4l-3.486-2.008.21-.364c.087.043.214.096.388.163.174.07.302.109.386.12a.54.54 0 0 0 .342-.063.712.712 0 0 0 .243-.268c1.002-1.74 2.004-3.482 3.007-5.221a.941.941 0 0 0 .12-.34.557.557 0 0 0-.115-.352 1.678 1.678 0 0 0-.28-.32c-.115-.099-.207-.18-.293-.235.068-.12.14-.242.21-.362 1.13.65 2.263 1.302 3.398 1.957.263.152.5.32.713.51.207.191.385.413.53.665.133.238.213.5.22.778.01.28-.062.571-.23.863a1.806 1.806 0 0 1-.534.596c-.207.15-.439.244-.692.29a2.482 2.482 0 0 1-.743.029 3.325 3.325 0 0 1-.794-.165c-.01.016-.02.03-.027.047a5 5 0 0 1 .62.562c.216.235.388.48.506.74zm-.626-1.818c.217-.075.395-.18.545-.326.146-.146.293-.335.432-.577.228-.399.297-.776.208-1.133-.086-.36-.374-.671-.85-.946-.11-.061-.25-.142-.42-.234-.173-.095-.315-.17-.424-.226-.54.934-1.074 1.863-1.612 2.795l.654.376c.286.166.548.27.791.314.246.043.47.034.676-.043zm-.612 2.733c.247-.427.3-.862.172-1.308-.13-.449-.471-.823-1.018-1.139-.221-.127-.41-.235-.561-.317l-.348-.183-1.475 2.561a.62.62 0 0 0-.018.638c.112.21.326.405.644.586.512.297.993.38 1.438.24.445-.146.831-.496 1.166-1.078zM294.982 345.734a3.455 3.455 0 0 0-.479-.126 1.43 1.43 0 0 0-.561-.03c-.16.03-.318.168-.478.406-.16.24-.321.551-.482.926l-1.434 3.35c-.183.426-.432.758-.746.998a2.572 2.572 0 0 1-1.043.47c-.376.077-.738.081-1.096.032a4.306 4.306 0 0 1-2.156-.986c-.315-.285-.558-.576-.715-.89a2.226 2.226 0 0 1-.25-.95c-.012-.32.045-.623.168-.911l1.951-4.555a.902.902 0 0 0 .077-.347.711.711 0 0 0-.158-.341 1.597 1.597 0 0 0-.3-.278c-.132-.086-.235-.158-.328-.204.056-.128.11-.259.164-.383l3.254 1.393c-.056.127-.11.257-.166.383a3.451 3.451 0 0 0-.407-.116 2.308 2.308 0 0 0-.38-.067c-.144-.01-.259.025-.341.112a.945.945 0 0 0-.207.302c-.608 1.42-1.216 2.839-1.822 4.26-.09.205-.158.43-.207.672-.055.248-.053.5-.001.753.055.262.183.5.376.733.193.23.503.44.932.62.401.174.772.257 1.1.25.322-.013.61-.08.856-.22.23-.134.43-.29.581-.477.151-.184.277-.388.37-.604l1.353-3.16c.173-.404.287-.745.337-1.026.049-.283.034-.478-.044-.61-.088-.15-.235-.294-.432-.437a3.722 3.722 0 0 0-.475-.306l.164-.383c1.063.456 2.13.911 3.192 1.367-.057.124-.113.253-.167.38M304.17 356.525l-3.605-1.043.117-.403c.133.032.302.067.515.105.209.032.361.043.45.027a.81.81 0 0 0 .336-.176.713.713 0 0 0 .181-.323l1.695-5.858a1.379 1.379 0 0 0-.089-.024c-1.576 2.029-3.19 4.028-4.769 6.058-.094-.027-.187-.056-.286-.083-.192-2.59-.435-5.18-.627-7.769a.712.712 0 0 0-.074-.021c-.463 1.601-.927 3.203-1.389 4.808-.135.462-.206.82-.216 1.086-.014.26.03.458.119.6.06.106.216.228.46.38.243.15.405.234.484.262l-.117.403c-1.097-.317-2.195-.634-3.295-.95l.117-.406c.178.032.37.06.571.071.2.017.363-.001.494-.06.162-.07.3-.198.418-.408.112-.205.242-.563.39-1.076l1.19-4.121a1.73 1.73 0 0 0 .084-.608.949.949 0 0 0-.14-.443 1.227 1.227 0 0 0-.373-.352 2.04 2.04 0 0 0-.49-.234l.117-.402 2.778.803c.182 2.243.415 4.482.595 6.727 1.14-1.5 2.314-2.98 3.456-4.48.128-.167.25-.34.36-.533a2.83 2.83 0 0 0 .199-.382c.886.257 1.776.513 2.66.77l-.116.402a3.857 3.857 0 0 0-.422-.066 2.406 2.406 0 0 0-.392-.022.44.44 0 0 0-.33.153.937.937 0 0 0-.168.325c-.56 1.938-1.12 3.871-1.678 5.807a.791.791 0 0 0-.03.354c.02.104.086.207.196.315.06.06.171.127.34.209.168.086.299.141.403.178l-.12.4M312.896 353.875c.22.197.406.437.53.722.125.287.173.62.124 1-.048.383-.18.708-.381.977-.208.264-.46.464-.755.619-.29.152-.607.246-.948.3-.35.048-.7.054-1.058.01-1.33-.168-2.66-.336-3.99-.502l.052-.418c.097.007.233.007.421 0a1.73 1.73 0 0 0 .405-.039.522.522 0 0 0 .29-.19.722.722 0 0 0 .121-.34c.252-1.993.5-3.985.752-5.979a.969.969 0 0 0-.02-.36.569.569 0 0 0-.242-.281 1.662 1.662 0 0 0-.38-.183c-.147-.05-.261-.089-.361-.105.017-.14.033-.278.052-.417 1.296.163 2.592.328 3.891.49.3.04.582.103.858.197.264.096.511.228.74.409.215.166.393.377.509.63.116.255.157.549.115.885-.037.29-.124.543-.257.756a1.735 1.735 0 0 1-.526.538c-.202.137-.43.234-.673.313a3.407 3.407 0 0 1-.796.155l-.009.053c.24.061.5.15.79.277.284.13.538.29.746.483zm-1.28-1.434c.17-.152.297-.32.38-.512.077-.19.138-.42.172-.7.059-.456-.024-.826-.245-1.125-.22-.298-.602-.472-1.15-.541a27.263 27.263 0 0 0-.96-.102c-.135 1.069-.267 2.136-.403 3.203.252.03.5.061.749.094.325.041.612.035.855-.018.238-.053.44-.151.601-.299zm.493 2.758c.06-.492-.058-.913-.346-1.275-.295-.362-.754-.576-1.38-.655-.256-.031-.467-.058-.64-.074-.176-.019-.305-.028-.396-.036l-.369 2.934a.626.626 0 0 0 .232.595c.184.15.46.247.82.292.589.075 1.062-.034 1.417-.337.357-.308.578-.782.662-1.444zM323.542 357.84h-2.291c-.498-.792-.965-1.457-1.366-2.034-.41-.574-.86-1.151-1.337-1.765h-.868v2.659c0 .136.025.26.065.359.043.106.14.187.283.243.07.028.197.051.376.077.181.022.333.036.456.041v.421h-3.59v-.42c.094-.006.232-.023.42-.042.18-.02.305-.049.377-.077a.512.512 0 0 0 .261-.224.742.742 0 0 0 .079-.378v-6.061c0-.133-.019-.26-.059-.368-.043-.103-.134-.186-.283-.24a2.226 2.226 0 0 0-.389-.1c-.161-.026-.293-.05-.406-.053v-.42h3.922c.358 0 .694.033 1.012.106a2.8 2.8 0 0 1 .855.356c.245.16.447.356.592.613.146.254.222.561.222.921 0 .326-.05.608-.149.857-.1.25-.25.46-.444.644a2.532 2.532 0 0 1-.646.438c-.251.124-.528.229-.83.319.412.551.77 1.005 1.047 1.38.27.375.62.824 1.016 1.365a2.526 2.526 0 0 0 .9.8c.1.055.234.089.389.115.156.03.288.044.388.05-.002.137-.002.277-.002.418zm-3.148-6.246c0-.507-.154-.904-.442-1.21-.29-.298-.712-.444-1.25-.444h-1.02v3.592h.785c.55 0 1.016-.166 1.377-.52.36-.353.55-.82.55-1.418zM333.325 357.216l-3.522.268c-.012-.14-.022-.281-.032-.42.31-.042.564-.1.77-.177.197-.077.295-.154.288-.241-.003-.036-.015-.076-.022-.13a.464.464 0 0 0-.046-.133c-.277-.608-.569-1.21-.847-1.82l-2.974.225a9.564 9.564 0 0 0-.214.74c-.055.213-.107.404-.147.58a3.39 3.39 0 0 0-.077.42c-.01.11-.017.196-.01.26.011.158.144.266.403.338.258.07.542.095.86.089l.033.42-3.19.242c-.011-.14-.02-.28-.032-.42.102-.013.23-.045.382-.098.152-.05.275-.107.371-.18.153-.12.265-.238.345-.365.082-.12.153-.282.22-.497.337-1.081.736-2.291 1.14-3.64.404-1.348.791-2.546 1.107-3.597l.478-.035c1.106 2.34 2.26 4.655 3.37 6.991.07.15.15.266.231.358.086.09.194.174.338.25.095.05.217.087.369.11.151.03.273.04.376.036.012.145.022.286.032.426zm-3.665-3.16c-.503-1.048-1.028-2.088-1.533-3.14-.33 1.115-.686 2.221-1.02 3.334.852-.066 1.7-.129 2.553-.194zM345.373 347.443a27.85 27.85 0 0 0-.428.116c-.165-.28-.422-.55-.77-.827-.346-.274-.646-.394-.89-.367-.126.02-.27.043-.432.08-.168.042-.353.087-.565.143-.459.124-.915.25-1.374.373l.88 3.249.94-.256c.284-.077.505-.164.645-.27.135-.1.252-.228.327-.377.054-.109.092-.26.107-.455.016-.19.01-.39-.026-.598l.433-.118c.289 1.065.577 2.125.862 3.184-.14.037-.287.076-.432.118a2.865 2.865 0 0 0-.272-.54c-.13-.192-.246-.326-.348-.4a.874.874 0 0 0-.508-.177 2.285 2.285 0 0 0-.66.1l-.94.256c.254.93.504 1.857.756 2.786.034.124.09.232.171.316.074.086.181.137.327.166.066.016.202.01.402-.008.2-.012.355-.038.455-.06.035.135.074.272.11.406-1.185.32-2.37.643-3.554.964-.035-.134-.074-.272-.11-.406.116-.037.268-.094.454-.165.183-.072.306-.122.358-.167.102-.08.17-.18.193-.287a.808.808 0 0 0-.017-.374l-1.583-5.836a1.099 1.099 0 0 0-.154-.32c-.07-.082-.182-.133-.332-.16a2.428 2.428 0 0 0-.45-.018 2.36 2.36 0 0 0-.443.047l-.11-.407 6.429-1.742c.181.678.366 1.356.549 2.031M354.838 346.723c.311.774.616 1.55.926 2.323l-5.98 2.888-.183-.38c.084-.046.2-.12.36-.219a1.45 1.45 0 0 0 .302-.231.507.507 0 0 0 .142-.32.776.776 0 0 0-.095-.37l-2.61-5.406a.935.935 0 0 0-.214-.291.51.51 0 0 0-.357-.1c-.1-.01-.237.006-.408.037a1.93 1.93 0 0 0-.403.107l-.181-.38 3.227-1.558.183.38a2.79 2.79 0 0 0-.362.238c-.148.11-.253.195-.307.257a.41.41 0 0 0-.144.338.795.795 0 0 0 .09.362l2.449 5.072c.111.23.208.407.298.523.089.122.19.199.31.225.11.027.253.01.427-.059.175-.057.407-.155.7-.3.134-.062.267-.136.412-.21.142-.074.27-.16.387-.238.117-.085.215-.174.306-.26a.589.589 0 0 0 .165-.252c.064-.237.126-.562.16-.994.029-.423.043-.756.017-1 .129-.058.257-.12.383-.182M359.312 338.42a4.184 4.184 0 0 1 1.466.753c.46.372.86.832 1.197 1.402a4.94 4.94 0 0 1 .643 1.724c.094.576.06 1.126-.067 1.654-.124.515-.354.98-.67 1.41-.314.429-.711.78-1.194 1.063-.508.3-1.03.49-1.577.549-.546.06-1.067.028-1.573-.132a4.047 4.047 0 0 1-1.438-.767 5.026 5.026 0 0 1-1.155-1.348 4.968 4.968 0 0 1-.65-1.738 4.353 4.353 0 0 1 .059-1.646c.126-.521.363-.992.682-1.425.319-.433.713-.78 1.182-1.057a3.99 3.99 0 0 1 1.53-.54 3.845 3.845 0 0 1 1.565.097zm2.253 5.574a3.932 3.932 0 0 0-.198-1.3c-.142-.44-.355-.9-.639-1.38a7.213 7.213 0 0 0-.95-1.281c-.34-.354-.7-.617-1.06-.799a2.39 2.39 0 0 0-1.111-.254c-.375 0-.755.119-1.122.335-.41.242-.708.54-.881.901-.175.36-.271.75-.266 1.165.007.401.08.823.235 1.273.153.452.359.896.62 1.339.287.486.596.9.911 1.243.319.341.673.604 1.04.799.366.193.732.275 1.116.281.38 0 .77-.108 1.16-.34.366-.216.653-.504.845-.844.19-.346.297-.727.3-1.138zM372.1 338.275c-.622.44-1.25.885-1.87 1.326-.861-.358-1.63-.63-2.289-.868-.668-.236-1.372-.441-2.107-.667l-.713.504 1.538 2.169c.078.108.174.19.26.254.1.061.222.068.37.034.076-.017.19-.071.354-.156.163-.084.289-.161.394-.23l.243.342c-.976.694-1.952 1.385-2.929 2.077l-.243-.342c.075-.06.178-.15.318-.275.133-.12.22-.215.263-.284a.487.487 0 0 0 .08-.332.744.744 0 0 0-.15-.352c-1.17-1.648-2.34-3.3-3.506-4.946a1.055 1.055 0 0 0-.26-.262c-.095-.063-.217-.079-.366-.036a3.07 3.07 0 0 0-.74.335l-.244-.342 3.197-2.267a4.56 4.56 0 0 1 .887-.496 2.72 2.72 0 0 1 .904-.208c.295-.015.572.036.835.156.271.122.508.332.715.624.19.267.316.525.373.786.066.26.069.517.016.78a2.52 2.52 0 0 1-.276.73 4.856 4.856 0 0 1-.495.74c.658.213 1.211.374 1.655.52.435.15.984.313 1.618.525a2.504 2.504 0 0 0 1.196.132c.115-.013.24-.063.385-.13.145-.064.26-.133.343-.185.08.114.164.23.243.344zm-6.178-3.273c-.294-.415-.653-.651-1.061-.732-.413-.073-.84.047-1.28.36-.276.195-.552.39-.832.59l2.08 2.933c.214-.151.427-.302.642-.456.45-.317.73-.725.818-1.22.09-.5-.023-.99-.367-1.475zM379.098 332.995c.233.79.467 1.582.705 2.37-2.207.82-4.41 1.635-6.615 2.454-.05-.13-.099-.263-.146-.393.111-.047.26-.118.431-.215.178-.095.293-.158.34-.209a.586.586 0 0 0 .17-.308.737.737 0 0 0-.054-.364c-.7-1.885-1.396-3.766-2.097-5.652a.975.975 0 0 0-.181-.303c-.077-.075-.193-.114-.345-.13-.117-.012-.268 0-.448.024-.191.02-.331.05-.437.084-.049-.13-.1-.263-.146-.393l6.165-2.288.702 1.896c-.141.054-.284.105-.42.157-.177-.259-.456-.49-.815-.715-.372-.23-.67-.309-.908-.256a4.274 4.274 0 0 0-.423.12c-.168.058-.35.118-.558.195l-1.25.463c.384 1.04.773 2.083 1.157 3.121.3-.11.596-.22.9-.334.285-.104.49-.208.605-.316a.877.877 0 0 0 .248-.392c.046-.14.06-.306.054-.512-.01-.2-.032-.377-.074-.547.138-.05.28-.102.42-.156l1.143 3.083c-.141.054-.284.105-.42.156a3.172 3.172 0 0 0-.33-.524c-.138-.168-.258-.288-.368-.35a.87.87 0 0 0-.497-.133c-.17.007-.37.059-.612.15l-.9.333c.292.79.58 1.574.875 2.363.088.234.174.41.26.54a.543.543 0 0 0 .308.235c.12.037.275.027.447-.014.177-.049.422-.124.73-.238.125-.047.285-.105.49-.18.203-.075.373-.141.502-.215.134-.07.277-.151.414-.246.137-.1.227-.187.26-.278.108-.242.193-.58.245-1.009.052-.429.083-.737.067-.922.136-.052.267-.1.406-.152M386.202 327.178c.42.338.781.755 1.055 1.268.277.521.464 1.1.55 1.758.089.661.058 1.272-.083 1.838a4.139 4.139 0 0 1-.707 1.497c-.311.423-.71.76-1.169 1.033-.46.271-.96.436-1.512.51-.59.078-1.144.046-1.664-.113-.525-.157-.999-.39-1.401-.735a4.097 4.097 0 0 1-1.019-1.268 4.867 4.867 0 0 1-.539-1.693 4.94 4.94 0 0 1 .082-1.855c.14-.557.385-1.05.704-1.49a3.978 3.978 0 0 1 2.687-1.556 4.063 4.063 0 0 1 1.619.102c.518.146.987.375 1.397.704zm-.109 6.011c.173-.389.291-.81.331-1.274.037-.46.02-.966-.053-1.52a6.983 6.983 0 0 0-.374-1.549 3.884 3.884 0 0 0-.656-1.15 2.422 2.422 0 0 0-.924-.67 2.25 2.25 0 0 0-1.164-.13c-.475.062-.866.218-1.169.485-.3.261-.543.582-.702.968-.144.37-.247.787-.276 1.26-.04.476-.025.967.041 1.476.074.559.196 1.06.356 1.5.155.439.382.818.645 1.14.257.324.56.54.912.698.35.15.755.2 1.205.14a2.29 2.29 0 0 0 1.102-.445 2.38 2.38 0 0 0 .726-.929z" stroke-width=".672"/></g><path d="M366.051 205.114v53.04c0 10.548-1.464 52.554-46.589 68.868-45.22-16.314-46.684-58.316-46.684-68.868v-53.04h93.273" fill="none" stroke="#000" stroke-width=".977"/></svg> |