app-MAIL-temp/static/assets/images/flags/me.svg
Son NK c18d9f5280 create BaseForm to enable CSRF
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
2019-07-02 10:20:12 +03:00

1 line
106 KiB
XML
Executable File

<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480"><path fill="#d3ae3b" d="M0 0h640v480H0z"/><path fill="#c40308" d="M24 24h592v432H24z"/><path d="M424.46 236.1c2.811-.793 12.585-3.65 19.471-9.237 6.887-5.589 8.231-10.066 8.787-12.485.552-2.417.791-4.32-.99-2.932-1.78 1.385-7.123 5.588-10.764 7.61-3.643 2.02-7.008 2.972-8.986 3.529-1.979.552-3.563.909-1.66.156 1.897-.751 8.113-2.934 12.902-7.728 4.788-4.795 8.571-11.982 8.652-16.395.08-4.412-.235-4.098-1.654-2.994-1.419 1.103-6.462 7.329-9.297 9.691-2.837 2.366-7.407 5.517-9.692 6.855-2.286 1.341-5.515 2.838-1.024-.235 4.491-3.07 12.999-10.322 16.468-19.698 3.467-9.377 2.835-14.89 2.757-15.837-.078-.945-.867-2.837-1.654-1.101-.788 1.731-6.464 13.078-11.031 17.962-4.572 4.886-3.468 3.941-4.493 4.728-1.023.788-2.758 2.207-.549-.553 2.207-2.756 6.776-9.14 9.141-15.441 2.361-6.305 2.993-12.609 3.071-16.233.08-3.624-1.496-8.666-2.207-10.161-.708-1.5-1.417-2.601-1.656-.87-.234 1.734-3.859 12.922-5.83 18.358-1.97 5.438-5.907 11.585-6.697 12.767-.786 1.182-2.835 3.624-.63-.473 2.206-4.098 6.46-16.153 7.014-27.577.55-11.426-1.025-17.729-2.601-20.88-1.575-3.153-2.94-4.27-2.94-4.27s.27 7.8-2.058 19.004c-2.33 11.207-5.729 17.123-5.729 17.123s-1.431 1.614-.45-1.075c.665-1.81 2.031-5.79 2.657-12.538.658-7.078.736-15.132-1.331-21.988-2.25-7.467-6.156-11.284-6.156-11.284-1.089 10.712-.873 24.515-4.798 35.704-.735-.657-1.707-1.872-2.094.602-.717 3.676-2.15 10.579-6.981 19.364-4.836 8.786-6.803 9.951-6.803 9.951s-.895-2.152-1.524-3.316c-.625-1.165-.984-1.794-1.791-.18-.802 1.614-3.489 7.8-9.399 14.613-5.907 6.813-9.219 10.13-9.039 15.239.18 5.11 2.864 7.711 6.444 10.04 3.582 2.333 4.21 3.585 3.67 6.365-.536 2.781-3.76 3.765-6.532 3.855-2.778.09-6.268-.18-7.521.537-1.254.718-1.342 2.51-2.596 3.763-1.251 1.257-1.788 1.971-2.954 2.154-.41.063-.742.101-1 .13-.258-13.478 4.965-19.487 4.965-19.487l-14.597-17.15c-.754.371-1.508.718-2.264 1.045a4.084 4.084 0 0 0-.427-.648c-1.943-2.481-2.579-4.584-2.579-7.764.726.072 2.183.597 3.506.331 1.323-.264.33-1.591-.066-2.851-.398-1.263-.795-5.64-.531-7.3.265-1.658.396-2.323.396-2.323s2.12 2.324 3.441 2.324c1.326 0 1.191-1.326 1.39-2.787.299-2.201 1.334-4.979 3.042-6.503 0 0 2.315 1.595 4.964 1.595 2.644 0 6.216-.731 9.06-3.45 2.845-2.72 2.78-3.384 2.78-3.384s5.29 1.857 9.326 2.058c4.035.198 8.336-.467 10.386-4.712 2.051-4.246-.597-8.16-1.057-8.824-.465-.665-1.787-1.196-1.787 0 0 1.195.068 4.378-2.382 5.971-2.448 1.592-4.365 1.524-6.68.795-2.315-.729-5.557-1.659-9.262-1.128-3.322.476-3.772.738-3.829.788.172-.177 3.189-3.27 6.144-4.172 3.043-.928 4.831.332 5.823 1.526.991 1.194 1.851 3.12 2.646.331.793-2.785.331-5.97-.992-8.028-1.324-2.056-4.167-3.384-7.144-3.051-2.978.332-4.034.795-4.034.795s-1.524-4.311-5.359-5.107c-4.68-.972-9.843.787-13.892 3.05 0 0-3.175.733-6.415-.197-2.123-.61-4.245-1.901-5.459-2.717.37-1.24 1.095-3.531 1.095-3.531s.927-.282 1.896-.646c.97-.363.768-.687.89-1.494.12-.807-1.821-2.213-1.821-2.213s-.28-2.425 2.91-4.089c3.189-1.663 2.842-1.386 2.842-1.386s1.871.347 2.634-.208c.762-.555.762-.902.762-.902s1.413-.463 1.932-1.315c.518-.851.614-2.081.234-3.074-.375-.994-.85-1.183-.328-1.657.517-.473.99-1.608 1.036-2.412.048-.807.048-.993.048-.993s1.085-.381 1.035-2.036c-.048-1.657-.943-2.32-1.464-2.463-.517-.141-.846-.141-.846-.141s-.094-.994-.943-2.317c-.852-1.326-1.416-1.893-1.416-1.893s.612-.47.282-1.559-1.086-1.75-1.84-1.99c-.755-.236-1.556 0-1.556 0s-2.5-1.514-3.68-2.129c-1.18-.615-1.464-.756-1.464-.756s-.046-1.041-.47-1.61c-.425-.568-1.417-.805-1.936-.805-.519 0-1.084.285-1.084.285s-4.248-1.09-5.993-1.374c-1.746-.283-1.842-.426-1.842-.426s-3.772-1.798-5.233-2.082c-1.464-.283-1.887-.424-1.887-.424s1.527-1.848 1.62-3.977c.096-2.13-1.319-4.138-2.828-5.037-.852-.505-1.309-.59-1.587-.763l-.031-1.466 2.835.285.234-4.563-2.76.35.423-2.747-5.784-.066.423 2.745-2.783-.19.236 4.497 2.926-.378-.283 1.7s-1.071.182-1.979.851c-1.509.9-2.785 2.652-2.69 4.782.092 2.129 1.366 4.023 1.366 4.023s-.377.095-1.839.377c-1.463.283-5.238 2.082-5.238 2.082s-.095.14-1.84.426c-1.745.283-5.992 1.374-5.992 1.374s-.565-.285-1.086-.285c-.519 0-1.509.237-1.933.805-.425.567-.471 1.61-.471 1.61s-.284.142-1.464.756c-1.18.615-3.68 2.128-3.68 2.128s-.804-.235-1.558 0c-.755.239-1.509.902-1.839 1.99-.33 1.09.282 1.559.282 1.559s-.567.567-1.416 1.893c-.848 1.323-.942 2.318-.942 2.318s-.332 0-.849.14c-.519.143-1.416.806-1.463 2.464-.048 1.654 1.038 2.035 1.038 2.035s0 .188.047.993c.048.806.52 1.94 1.038 2.412.519.474.048.663-.33 1.658-.377.993-.284 2.223.235 3.073.52.852 1.931 1.316 1.931 1.316s0 .346.762.901 2.634.209 2.634.209-.345-.278 2.842 1.386c3.188 1.663 2.91 4.089 2.91 4.089s-1.94 1.406-1.819 2.212c.121.807-.081 1.131.888 1.494.969.364 1.897.646 1.897.646s.725 2.29 1.094 3.532c-1.214.816-3.335 2.107-5.456 2.716-3.241.93-6.418.198-6.418.198-4.046-2.263-9.209-4.023-13.89-3.051-3.837.797-5.36 5.108-5.36 5.108s-1.057-.464-4.033-.795c-2.976-.333-5.822.994-7.146 3.05-1.323 2.059-1.785 5.243-.992 8.029.794 2.788 1.655.862 2.646-.332.993-1.194 2.78-2.454 5.822-1.526 2.955.902 5.971 3.995 6.144 4.172-.059-.05-.506-.312-3.83-.787-3.703-.531-6.945.399-9.259 1.128-2.315.729-4.233.796-6.681-.795-2.448-1.595-2.382-4.778-2.382-5.972 0-1.194-1.323-.664-1.785 0-.462.665-3.11 4.58-1.059 8.825 2.05 4.245 6.35 4.909 10.384 4.711 4.035-.201 9.327-2.058 9.327-2.058s-.064.665 2.78 3.384c2.844 2.72 6.415 3.45 9.063 3.45 2.647 0 4.96-1.595 4.96-1.595 1.709 1.526 2.747 4.304 3.044 6.503.198 1.461.067 2.787 1.39 2.787 1.322 0 3.44-2.324 3.44-2.324s.132.665.396 2.324c.264 1.659-.132 6.036-.53 7.299-.396 1.26-1.389 2.587-.064 2.852 1.323.265 2.778-.26 3.505-.332 0 3.18-.637 5.283-2.58 7.764a4.405 4.405 0 0 0-.408.61 53.879 53.879 0 0 1-2.169-1.006l-14.596 17.15s5.247 6.037 4.963 19.588v-.094c-.265-.026-.619-.068-1.062-.135-1.165-.182-1.7-.897-2.955-2.154-1.252-1.254-1.342-3.045-2.595-3.764-1.252-.718-4.744-.448-7.519-.537-2.777-.091-5.997-1.075-6.536-3.855-.535-2.781.092-4.032 3.671-6.364 3.58-2.331 6.265-4.931 6.445-10.041.179-5.11-3.132-8.427-9.04-15.239-5.909-6.813-8.594-12.999-9.399-14.613-.806-1.614-1.164-.985-1.791.18-.627 1.164-1.521 3.317-1.521 3.317s-1.97-1.166-6.803-9.951c-4.834-8.786-6.267-15.687-6.982-19.365-.389-2.474-1.362-1.257-2.094-.602-3.93-11.188-3.713-24.993-4.8-35.704 0 0-3.906 3.817-6.156 11.284-2.066 6.855-1.988 14.91-1.329 21.989.625 6.747 1.99 10.729 2.653 12.537.984 2.689-.447 1.075-.447 1.075s-3.402-5.916-5.728-17.122c-2.328-11.205-2.06-19.005-2.06-19.005s-1.363 1.117-2.94 4.27c-1.575 3.152-3.15 9.455-2.599 20.88.552 11.426 4.807 23.48 7.014 27.578 2.206 4.096.157 1.654-.632.472-.787-1.182-4.726-7.327-6.697-12.766-1.97-5.436-5.594-16.625-5.83-18.359-.238-1.732-.946-.63-1.657.87-.709 1.497-2.284 6.539-2.206 10.161.08 3.624.71 9.929 3.073 16.233 2.364 6.303 6.933 12.686 9.14 15.441 2.206 2.76.472 1.341-.552.554-1.025-.788.08.156-4.491-4.728-4.57-4.884-10.244-16.232-11.031-17.963-.789-1.735-1.577.156-1.656 1.101-.078.947-.71 6.46 2.758 15.837 3.467 9.377 11.976 16.628 16.469 19.698 4.491 3.074 1.26 1.577-1.025.236-2.284-1.338-6.855-4.49-9.691-6.855-2.837-2.363-7.88-8.59-9.297-9.692-1.419-1.104-1.733-1.419-1.655 2.994.078 4.413 3.863 11.598 8.652 16.395 4.788 4.794 11.001 6.977 12.903 7.728 1.901.753.317.396-1.663-.156-1.977-.555-5.342-1.509-8.984-3.53-3.642-2.023-8.983-6.224-10.765-7.609-1.782-1.387-1.544.515-.99 2.933.555 2.418 1.9 6.897 8.785 12.484 6.887 5.589 16.662 8.444 19.472 9.237 2.811.79.831.79.831.79s-1.109-.155-6.807-1.427c-5.699-1.268-14.328-5.784-16.664-7.251-2.335-1.469-2.689-2.022-2.374 1.069.318 3.09 3.603 9.711 8.866 12.803 5.264 3.091 14.763 4.678 17.217 4.795 2.454.12 1.821.476.713.554-1.109.079-3.84.079-8.312-.434-3.666-.423-9.11-2.203-10.957-2.833-.207-.79-.398-1.554-.485-2.025-.217-1.178-.826-1.004-1.219-.74-.393.258-.61.477-1.914 1.133-1.308.657-1.352-.13-1.395-.522-.044-.396-.305-2.099-.348-2.969-.044-.876-.524-.92-1.131-.657-.61.264-3.528 1.485-4.616 1.968-1.089.479-.087 1.352.479 2.399a147.271 147.271 0 0 0 1.437 2.578s-2.744.743-3.615.962c-.87.219-.609.83-.392 1.443.22.609 1.568 3.667 1.916 4.54.348.873 1.132.35 1.132.35l2.742-1.616.957 3.666c-.046.059-1.267.291-2.655 1.265-1.386.972-1.039 2.224.624 2.712 1.662.486 3.605 1.321 5.753 5.214 2.148 3.895 2.703 10.914 4.02 21.97 1.317 11.05 8.386 16.683 9.357 17.379.97.696.415 1.251.415 1.251s-.97 1.394-.553 3.548c.415 2.152 2.286 3.406 3.256 3.753.97.345.693 1.32.693 1.32s-.486 2.362 0 6.675c.485 4.309 4.02 9.175 4.991 10.01.969.833 1.04 1.252.901 1.6-.138.346-.763.07-1.94.972-1.18.904-2.497 2.155-3.326 3.684-.833 1.531-.555 2.434-.279 4.52.277 2.087 3.327 3.964 3.327 3.964s-.555.139-.692 1.668c-.138 1.53.97 3.267 2.357 4.378 1.386 1.113 4.02 1.67 4.02 1.67s.208 1.32.346 2.223c.138.906 1.872 1.806 2.981 2.433 1.108.625 3.256.279 4.158-.14.9-.415 1.524.07 2.077.972.557.906.348 4.38.348 5.772 0 1.39-.832 2.85-.348 3.546.486.695 1.803.207 3.12-.556 1.317-.767 1.664-.209 2.843.556 1.179.764 3.05 1.461 3.535 1.39.485-.07.278-1.321.278-2.363 0-1.043.187-3.402.672-3.75.23-.165 2.27-.317 3.832-.978.728-.306 1.664-.624 1.733-1.32.069-.695-.97-.695-3.257-1.877-2.287-1.18-2.703-1.88-4.158-2.851-1.456-.972-.762-1.32-.762-1.737 0-.414.692-.903.97-1.46.277-.556.137-1.806.137-1.806s1.18-1.182 1.733-1.809c.555-.624 1.248-1.6 2.01-2.224.762-.624 1.94-3.614 2.703-4.589.762-.972 2.496-2.016 3.534-3.337 1.04-1.322 3.813-3.476 5.407-4.52 1.595-1.042 5.891-3.06 5.891-3.06s-.069 2.573 1.04 3.824c1.108 1.254 2.563-.971 7.484-4.45 4.922-3.475 8.664-4.726 8.664-4.726s1.04 1.598 2.355 3.267c1.317 1.67 2.496-.07 8.526-8.41 4.757-6.582 11.022-12.599 13.455-14.847.449.199.893.399 1.335.603-.114.32-.24.684-.366 1.081-.553 1.728-1.45 2.835-2.625 5.25-1.174 2.417-2.968 2.969-5.041 6.218-2.072 3.246-2.348 5.454-2.556 8.77-.207 3.315 1.657 4.007 1.657 4.007s-3.039 2.968-3.937 5.179c-.897 2.21-1.382 6.7-1.382 6.7s-.484.206-1.588 2.486c-1.106 2.282-3.11 2.624-6.009 5.526-2.903 2.901-6.147 4.145-7.667 5.039-1.519.901-1.105 1.797-.69 2.971.413 1.173 2.486 2.348 4.904 3.246 2.418.897 3.246.552 4.905.483 1.657-.067.345 1.244-.345 1.932-.69.693-1.589 3.108-1.45 5.802.137 2.696 2.141 2.072 4.628 1.658 2.486-.413 5.387-1.658 5.387-1.658l-.276.762c-.276.759-.414 1.31-.414 3.455 0 2.14.345 3.175.967 3.726.623.553 1.866-.62 2.763-.896.899-.28 2.418-1.174 4.628-1.657 2.21-.485 3.037-1.451 3.037-1.451s-.552.689-.69 2.21c-.139 1.52-.069 3.798.278 5.112.343 1.309 1.311 2.899 2.83 4.28 1.52 1.384 1.865.761 2.969-.965 1.105-1.728 3.384-3.94 3.384-3.94s.138.554 1.657 5.458c1.52 4.905 6.492 8.979 6.492 8.979s4.973-4.076 6.492-8.98c1.52-4.903 1.656-5.456 1.656-5.456s2.282 2.21 3.386 3.939c1.105 1.725 1.452 2.347 2.97.966 1.52-1.382 2.485-2.97 2.832-4.281.345-1.314.414-3.593.279-5.112-.141-1.521-.693-2.21-.693-2.21s.83.966 3.039 1.45c2.21.484 3.729 1.379 4.626 1.658.898.276 2.143 1.449 2.764.896.621-.551.968-1.587.968-3.726 0-2.145-.138-2.696-.414-3.455l-.278-.762s2.903 1.245 5.388 1.658c2.486.412 4.488 1.036 4.63-1.658.136-2.694-.763-5.109-1.453-5.802-.691-.688-2.002-2-.345-1.932 1.656.069 2.486.413 4.904-.483 2.416-.898 4.49-2.073 4.905-3.246.414-1.174.83-2.071-.69-2.971-1.52-.896-4.767-2.14-7.667-5.039-2.899-2.902-4.905-3.244-6.01-5.526-1.103-2.281-1.586-2.485-1.586-2.485s-.486-4.491-1.383-6.701c-.898-2.212-3.937-5.18-3.937-5.18s1.866-.691 1.657-4.006c-.207-3.316-.481-5.524-2.554-8.77-2.073-3.248-3.87-3.8-5.045-6.218-1.173-2.415-2.071-3.522-2.623-5.25-.11-.348-.23-.696-.353-1.044.593-.264 1.188-.526 1.782-.781 2.417 2.227 8.71 8.265 13.481 14.866 6.031 8.345 7.21 10.083 8.527 8.412 1.316-1.666 2.355-3.265 2.355-3.265s3.743 1.249 8.664 4.725c4.92 3.477 6.377 5.701 7.484 4.45.586-.658.717-1.752.787-2.59 0 0 2.828.826 6.066 1.96 1.943.681 4.1 1.539 5.702 2.216 4.263 1.804 4.725 2.733 8.116 5.412 3.392 2.679 8.22 2.42 12.794 1.029 4.57-1.39 16.75-5.408 21.63-7.521 4.881-2.117 8.376-3.97 8.89-4.95.513-.978 1.077-3.711 1.077-4.688 0-.98-1.077-2.421-1.438-2.68-.357-.26-.203-1.032-.102-1.649.102-.62-.204-2.473-.974-3.3-.77-.825-.667-1.131-.565-3.505.217-5.027-3.37-11.364-8.454-13.382 0 0-.137-.585-.549-.93-.408-.343-1.095-.652-1.095-.652s.1-2.891.067-3.512c-.033-.62.24-.547.587-.378.342.171.89.861 1.713 1.068.823.206 1.338-.381 1.51-1.308.17-.928.857-2.787 1.166-3.717.31-.927-.07-1.066-.447-1.168-.377-.105-1.611-.24-2.196-.381-.582-.137-.582-.171-.446-.48.14-.308.344-.79 1.097-1.962.756-1.17.07-1.205-.653-1.443-.72-.242-3.976-1.24-4.869-1.379-.894-.138-1.099.62-1.099.998 0 .38.034 2.03.069 2.65.034.62-.548.447-.891.276-.345-.171-1.133-.655-1.749-1.137-.618-.48-1.064-.033-1.305.656-.24.687-.993 3.511-1.233 4.336-.24.827-.173 1.479.171 1.616.343.139 1.954 0 2.916 0 .958 0 .41.552.41.552s-1.03 1.686-1.373 2.338c-.342.656-.926.759-1.715.759s-2.112-.01-2.112-.01-5.27.198-9.151 3.084c-3.879 2.884-4.973 5.27-5.57 6.661-.597 1.395-1.291 1.094-1.891 1.593-.596.498-2.286 2.289-2.286 3.384 0 1.094.397 1.689-1.292 2.783-1.693 1.095-3.085 5.869-.796 8.356 2.287 2.484 3.183 4.97 3.88 6.165.693 1.194 0 1.69-.598 1.69-.596 0-1.842-1.013-2.883-1.79-1.041-.776-6.296-4.88-8.553-6.563-2.26-1.686-.597-1.492-.597-1.492s.574.052 1.893-.503c1.315-.556 1.525-1.25.205-1.668-1.315-.415-3.88-1.876-4.572-2.572-.694-.695-1.039-1.46.278-2.156 1.315-.694 4.227-2.572 1.941-3.198-2.289-.628-4.992-1.111-7.21-1.738-2.219-.626-2.428-1.251-2.428-1.251l1.458-2.087s1.178-1.666-.208-1.876c-1.386-.21-4.713-.626-7.763-1.949-6.091-2.638-9.907-7.113-11.322-12.574l.101-.132c1.138 2.251 3.787 6.459 7.782 6.589 5.46.18 6.085-1.525 4.833-3.318-1.253-1.792-2.685-3.406-3.042-3.943-.36-.539-.45-1.257.982.09 1.433 1.347 4.16 5.916 12.396 5.379 8.234-.537 8.193-2.153 8.193-2.6 0-1.581-1.677-1.831-2.665-2.823-.516-.517-.83-1.269.832-.634 1.662.634 5.736 1.386 11.28.196 2.187-.466 7.986-2.998 8.547-5.943 0 0-3.68-.201-6.252-1.31-2.574-1.111-4.117-2.02-1.386-1.465 2.732.554 8.036 1.662 12.705.08 2.729-.927 6.255-3.135 6.254-7.175 0 0-5.066-1.07-6.926-1.744-1.86-.674-2.454-1.188-2.454-1.188s7.24 2.296 13.812-1.032c6.57-3.329 6.846-7.886 6.846-8.957 0-1.071-.157-1.389-.157-1.389s-5.976 1.469-10.448 1.428c-4.473-.039-5.859-.436-5.859-.436s12.509-.357 18.8-4.202c6.292-3.844 6.651-11.416 6.651-11.416s-7.127 2.536-11.597 3.054c-4.471.513-7.204.513-8.311.433-1.109-.078-1.74-.433.712-.553 2.457-.117 11.952-1.706 17.217-4.796 5.265-3.093 8.549-9.714 8.867-12.802.316-3.092-.039-2.537-2.376-1.07-2.336 1.467-10.962 5.984-16.66 7.251-5.699 1.272-6.808 1.428-6.808 1.428s-2.19-.105.63-.885zm-225.15 14.37c-.609.35-2.525 1.44-2.525 1.44s-1.002-2.052-1.263-2.663c-.26-.612-.13-.874.216-.874.35 0 1.395-.304 2.222-.392.118-.013.226-.031.322-.054.276.788.64 1.641 1.116 2.498-.03.03-.06.045-.09.06zm76.77 44.955c-1.526 2.853-5.684 5.843-8.733 7.162-3.05 1.32-6.377 1.739-7.763 1.946-1.386.208-.208 1.878-.208 1.878l1.455 2.088s-.207.624-2.426 1.251c-2.218.624-4.92 1.11-7.207 1.737-2.288.624.624 2.502 1.94 3.2 1.316.693.97 1.459.277 2.154-.693.696-3.257 2.155-4.574 2.572-1.317.417-1.11 1.115.207 1.67 1.317.553 4.922 1.249 4.922 1.249s-.069.14-2.286 1.809c-2.219 1.668-6.1 2.781-8.664 2.919-2.565.138-6.62.306-11.762.069-5.14-.234-5.731-.352-5.731-.352s-.177-1.716-.533-4.257c-.354-2.54-1.89-6.146-3.072-7.799-1.183-1.656-3.663-4.965-3.663-4.965s.059-.71.236-1.536c.177-.826.058-1.714-.542-3.276-.601-1.563-3.604-3.844-3.604-3.844s-.122-1.682-.122-3.245c0-1.561-1.08-7.689-2.043-10.572-.96-2.883-5.646-10.452-7.809-14.056-2.163-3.603-3.447-8.946-4.1-13.094-.655-4.149-.392-5.502-.175-6.594.096-.478.3-.913.492-1.3a12.887 12.887 0 0 0 3.477 3.123c6.293 3.844 18.8 4.201 18.8 4.201s-1.386.398-5.858.437c-4.471.039-10.447-1.428-10.447-1.428s-.159.318-.159 1.389c0 1.07.279 5.628 6.847 8.956 6.569 3.33 13.812 1.032 13.812 1.032s-.594.515-2.454 1.188c-1.86.675-6.925 1.745-6.925 1.745 0 4.039 3.526 6.247 6.252 7.174 4.671 1.584 9.973.474 12.706-.08 2.73-.554 1.188.353-1.386 1.466-2.57 1.109-6.252 1.31-6.252 1.31.564 2.944 6.363 5.476 8.549 5.943 5.541 1.189 9.616.438 11.28-.197 1.663-.634 1.345.117.831.635-.989.991-2.666 1.242-2.666 2.823 0 .448-.042 2.062 8.193 2.599 8.235.537 10.962-4.032 12.395-5.379 1.432-1.345 1.342-.628.984-.09-.357.536-1.79 2.151-3.042 3.944-1.254 1.792-.627 3.498 4.833 3.318 4.021-.132 6.682-4.398 7.806-6.636l.075.103c.073.1.148.2.22.294-.51 1.32-1.395 3.48-2.37 5.31zm66.42-178.14c-.744-1.417-1.139-2.085-1.139-2.085s3.102 1.455 4.949 3.542c1.845 2.089 1.804 3.19 2.08 4.216.276 1.025 0 2.913-.274 4.686-.276 1.772-.276 2.837.08 3.467.352.63.667.945.667.945s-1.377.354-2.671.867c-1.296.513-2.984.984-3.926.196-.944-.787-1.177-1.34-.588-1.851.588-.513 2.785-1.143 3.062-4.923.27-3.781-1.485-7.641-2.235-9.06zm-16.92 10.286c.708-1.796.999-3.51.458-7.188-.455-3.092-1.055-5.74-1.208-9.071 0 0 2.292.503 5.585 3.512 3.289 3.009 4.042 6.102 4.042 7.608 0 1.503-.793 3.343-.918 4.807-.124 1.463.415 2.759.415 2.759s-1.209.499-2.29 1.25c-1.083.754-1.833 1.214-3.5 1.13-1.668-.084-2.668-.835-3.627-1.338-.958-.502-1.58-.585-1.58-.585s1.904-1.086 2.61-2.884zm-16.05-12.747c3.292-3.008 5.583-3.512 5.583-3.512-.151 3.332-.751 5.979-1.209 9.07-.54 3.679-.249 5.393.459 7.189.71 1.798 2.625 2.884 2.625 2.884s-.624.084-1.584.585c-.957.501-1.958 1.254-3.626 1.338-1.666.083-2.416-.376-3.499-1.13a13.957 13.957 0 0 0-2.292-1.25s.541-1.296.415-2.759c-.124-1.462-.914-3.303-.914-4.808.015-1.505.765-4.598 4.05-7.607zm-11.865 18.295c-.944.788-2.631.317-3.929-.196-1.296-.513-2.67-.867-2.67-.867s.314-.314.668-.945c.354-.629.354-1.694.078-3.467-.275-1.773-.55-3.661-.275-4.686.275-1.026.236-2.127 2.081-4.216 1.846-2.087 4.948-3.542 4.948-3.542s-.393.668-1.138 2.085c-.747 1.419-2.514 5.279-2.238 9.062.276 3.78 2.475 4.408 3.063 4.923.585.51.345 1.062-.6 1.849zm43.86 31.617c-3.243 1.793-5.094 1.394-4.962 2.72.134 1.327 3.04 2.323 3.04 2.323s-2.976 3.185-5.292 4.646c-2.312 1.459-5.029 2.388-5.029 2.388s-.924.133-.396 1.593c.531 1.459 1.456 2.454 2.183 2.853.727.397 1.126.53 1.126.53s-4.035 4.313-5.821 5.707c-1.787 1.393-2.78 1.857-4.233 2.455-1.457.597-.726 2.985-.398 4.049.33 1.059 1.587 2.52 2.316 2.719.725.2.992.729.066 2.19-.693 1.089-3.002 3.986-4.103 5.583l-.067.035c-1.093-1.587-3.433-4.521-4.13-5.618-.925-1.461-.661-1.99.066-2.19.728-.2 1.986-1.659 2.316-2.72.329-1.063 1.058-3.451-.4-4.048-1.454-.598-2.447-1.062-4.232-2.455-1.786-1.394-5.821-5.706-5.821-5.706s.397-.134 1.125-.531c.729-.4 1.654-1.394 2.184-2.853.528-1.46-.398-1.593-.398-1.593s-2.712-.929-5.028-2.388c-2.313-1.461-5.292-4.646-5.292-4.646s2.91-.996 3.044-2.323c.132-1.328-1.72-.929-4.962-2.72-3.242-1.791-4.3-4.047-4.3-4.047s3.77-1.261 5.623-5.043c.655-1.34.813-2.562.744-3.585l.142.048c6.021 1.96 13.06 2.745 19.35 2.745 6.281 0 13.316-.789 19.325-2.745l.142-.048c-.07 1.023.087 2.245.743 3.585 1.852 3.782 5.625 5.043 5.625 5.043s-1.05 2.265-4.29 4.065z" fill="#b96b29"/><path d="M361.205 237.75c0-10.178 4.683-16.614 4.683-16.614l-12.74-14.595c-12.133 4.69-23.25 4.976-33.147-.06-9.897 5.035-21.013 4.75-33.144.06l-12.744 14.595s4.685 6.436 4.685 16.614c0 10.179-1.968 17.73-3.119 22.654-1.149 4.925-2.133 14.117.494 20.685 2.625 6.564 5.416 12.311 16.743 17.072 11.326 4.761 17.236 7.221 21.175 10.506 3.941 3.28 5.91 5.907 5.91 5.907s1.97-2.628 5.91-5.907c3.938-3.283 9.848-5.745 21.176-10.506 11.325-4.761 14.117-10.507 16.743-17.071 2.625-6.569 1.641-15.761.492-20.685-1.14-4.92-3.105-12.465-3.105-22.65z" fill="#d4af3a"/><path d="M357.2 241.95c-1.597-9.722 4.006-18.284 4.006-18.284L350.3 210.915c-8.403 4.72-20.097 4.086-30.261-.59-10.161 4.675-21.86 5.31-30.26.59l-10.906 12.752s5.604 8.561 4.003 18.283c-1.6 9.72-5.044 25.104-4.183 31.378.861 6.276 5.292 13.536 9.845 17.351 4.552 3.814 11.32 7.016 16.117 8.738 4.8 1.722 9.477 5.044 11.693 6.768 2.213 1.721 3.69 3.2 3.69 3.2s1.477-1.477 3.692-3.2c2.216-1.724 6.891-5.045 11.688-6.769 4.8-1.722 11.57-4.923 16.121-8.737 4.554-3.814 8.983-11.076 9.844-17.35.855-6.3-2.595-21.676-4.2-31.396z" fill="#b96b29"/><path d="M356.15 243.105c-1.58-10.497 3.156-18.953 3.156-18.953l-9.845-10.962c-8.32 4.274-18.433 3.17-29.45-.65-11.017 3.82-21.128 4.922-29.45.65l-9.846 10.962s4.739 8.456 3.159 18.953-3.995 22.386-3.531 29.355c.031.478.082.966.151 1.458h8.967s.52-.605 1.518-1.03c.996-.431 1.281-.717 1.281-.717s.191-1.811 1.283-2.192c1.092-.383 1.567-.383 1.995-.383.427 0 .76-.094 1.282-.619.524-.523 1.946-1.809 2.564-3.62.618-1.81.999-2.526.999-3.717 0-1.189.427-3.094.427-3.094s-.238-.572-1.14-.237c-.903.333-1.045-.572-1.138-1.478-.096-.906-.048-2.761.474-3.619.522-.858.713-1.145.713-1.145l-.382-1.426s-5.698 1.141-6.694-3.288c-.998-4.43-1.188-6.576-1.33-7.049-.143-.478-.285-.718-1.046-.667-.76.046-2.374-.476-3.514-2.765-1.14-2.286-1.235-3.238-.903-4.143.332-.906.95-.571 1.14-.286.188.286 1.71 2.478 2.327 1.857.617-.62.285-.62-.57-2.334-.855-1.715-.57-2.285-.475-3.146.094-.856-.284-2-.284-2.476 0-.474.522-.857 1.044-.62.524.239.998.62 1.235.907.237.285.333.717.808.43.476-.286.19-1.86.19-2.382 0-.525.617-.906 1.378-.477.759.429 1.138 1.238 1.138 1.809 0 .573.048 1.097.333 1.097.285 0 .618-.859.665-1.432.046-.568.38-1.428.903-.712.523.712.712 1.764.523 2.857-.19 1.094.19.525-.19 2.43-.378 1.907-.569 2.763-.522 4.193.048 1.428.095 2.238.807 4.002.713 1.762 1.281 3.808 2.611 3.856 1.331.047 1.71.047 1.71.047s1.472-2.857 2.613-3.525c1.14-.666 2.754-.764 3.894-.906 1.14-.144 1.614-.477 1.614-.764 0-.286-.379-.379-1.756-.571-1.376-.189-2.516-.525-2.562-1.572-.048-1.047.235-1.953-.666-2-.902-.048-3.134-.766-3.94-2.239-.808-1.478-.619-1.812-.523-2.619.095-.81 1.139-2.432 1.805-.906.666 1.525 1.093 1.714 1.662 2.047.57.336 1.329.431.951-.619-.381-1.047-.618-1.713-.524-2.474.095-.764.618-1.094 1.236-1.238.617-.144 2.47-.717 3.419-.906.948-.19.997-.284.997-.284s.095-.667 1.33-1.048c1.234-.381 2.041-.428 2.944-.428.901 0 1.566.142 2.754-.43 1.188-.57 2.136-.665 2.896-.618.76.048 1.331.334 1.901.714.57.382.38.906.38 1.429 0 .525.094.81.901.81.81 0 1.522 0 2.281.285.762.286 1.806.714 1.14 1.524-.663.811-.709 1.716-1.14 1.668-.424-.048-.378.429-.57.716-.189.283-.331.523.146.81.471.284.52.571 1.187 1.189.663.62 1.66 1.287.663 2.288-.995.999-2.753 1.81-2.753 1.81s-.999.474.141 1.145c1.14.664 1.664 2.047 2.091 2.284.426.238.855.62 1.14.762.284.144.237 1.095.237 1.095s-.616.43-1.471.763c-.855.335-1.758.716-2.564.716-.808 0-1.236 0-.903.762.332.76.903 1.573 1.044 2 .143.428.333 1.192.333 1.192s1.328.283 2.517.283c1.187 0 1.71.048 4.322-.237 2.611-.283 3.373-.38 5.89-.096 2.519.285 2.895.192 3.561.43.665.238 1.329.574 1.329.574s3.563-.05 5.51-.477c1.947-.429 2.424-1.67 2.14-2.334-.285-.668-.24-1.667-3.658-2.145-3.417-.479-4.796-.287-7.505-.812-2.706-.523-6.934-1.905-7.692-5.286-.762-3.382 1.994-4.81 3.372-5.476 1.377-.669 4.368-1.716 5.747-2.286 1.375-.573 3.895-1.143 6.553-.763 2.658.382 4.178 1.094 5.223.476 1.044-.619 1.9-.144 1.71.809-.187.953-1.234 2.907-4.227 3.812-2.991.906-6.598 1-8.547.477-1.948-.527-3.418-1.287-4.606-.86-1.187.429-2.517 1.907-1.236 3.667 1.285 1.766 7.839 2.288 9.594 2.477 1.758.194 8.263-.285 10.116 2.954 1.85 3.241.378 6.859-1.805 7.67-2.184.809-4.036 1.335-5.698 1.572l-1.662.237s.759 1.716.759 2.432c0 .714-.095 2.047.714 2.57.807.526 1.948.905 3.325.763 1.377-.141 3.039.81 3.135 2.049.093 1.238.474 2.952.615 5.43.144 2.477 0 4.526 0 4.526s-.094.954-.426 1.857c-.333.906-2.043 4.414-2.043 4.414h9.563c.069-.492.12-.978.153-1.458.39-7.065-2.025-18.945-3.6-29.445z" fill="#1d5e91"/><path d="M281.63 278.58c1.875 5.356 5.739 10.78 11.622 14.323 8.175 4.923 11.706 4.274 19.416 9.29 7.712 5.016 7.247 5.853 7.34 5.853.093 0-.372-.839 7.34-5.853 7.71-5.018 11.24-4.367 19.415-9.29 5.885-3.543 9.747-8.967 11.62-14.323h-76.737z" fill="#6d8c3e"/><path d="M288.32 237.195c.877.922 1.526 1.203 2.865 1.065 1.341-.142 1.663.833 1.895 1.895.23 1.063.23 3.557 1.201 5.867.969 2.31 4.205 2.45 4.205 2.45.09-1.115.478-2.613.97-3.836.087-.219.507-1.249-.648-1.249s-1.109-.462-1.802-1.57c-.691-1.109-2.032-4.066-2.354-5.962-.323-1.894.277-4.713.6-5.728.324-1.017.37-1.71 0-1.895-.371-.186-1.109 0-1.109 0s.278.878-.048 1.016c-.323.141-.6-.462-.83-1.107-.232-.648-.508-.555-.97-.51-.462.046-.462.463-.138.925.323.461.138 1.292.138 1.292s-1.017-.738-1.433-.924c-.415-.183-1.386.186-1.479.741-.091.552.371 1.984 1.249 2.724.877.741.877 2.265.6 2.96-.276.691-1.571.598-1.848.277a.788.788 0 0 0-1.202 0c-.375.42-.75.66.135 1.575zM287.81 234.75s-.508-.414-.693-.645a35.123 35.123 0 0 1-.555-.743s-.093.231-.093.786.6 1.157.6 1.157l.735-.555zM289.745 228.33c.417-.184.74-.279.417-.74-.324-.461-.602-.97-.925-1.063-.325-.091-.6-.045-.6-.045s.368.833.46 1.341c.09.51.24.69.645.51zM292.16 226.38c-.046.415.046.602.415.415.371-.185.509-.692.323-1.063-.184-.369-.6-.645-.6-.645l-.278-.188c-.03 0 .166 1.065.12 1.47zM295.61 226.935c.045-.462-.14-.969-.14-.969s0 .553-.23.879c-.231.323-.185.231.046.508.225.285.27.045.315-.42zM301.04 250.425c.68 1.575 2.406-.892 3.975-2.888 1.568-1.993 1.517-.469 1.307 1.156-.209 1.627.418 3.36 1.047 4.462.627 1.098 1.15.47 1.41-.318.262-.783.47-2.41.994-3.198.524-.787 1.046-.105 1.098.576.053.681.888 2.205 1.673 3.095.783.894 1.15-.314 1.411-1.415.261-1.101.575-2.781.785-3.465.208-.681.94-.103.94-.103s.525.525 1.57 1.52c1.043 1 1.15-.577 1.255-1.36.103-.789-.158-2.52.156-2.784.313-.261 1.201.369 2.563 1.053 1.359.68 1.308-.631 1.152-1.367-.159-.732-.94-2.412-2.04-3.355-1.098-.945-1.254-2.046-.888-2.52.365-.47 1.673-.053 2.508-.156.839-.105 1.257-.209 1.884-.312.627-.107.627-.737.627-.737s-.47-.786-1.359-1.572c-.891-.789-1.41-1.416-2.51-1.68-1.099-.262-2.614 0-2.614 0l-.157-.315c-.156-.313-.47-.313-.68 0-.21.315-.732.735-1.152 1.101-.417.368-.68.578-.94.419-.263-.156.208-.525.208-.525s.576-.417 1.1-1.469c.522-1.05.679-2.047.26-2.518-.418-.474-1.568 0-2.195 0-.629 0-.995.103-1.046-.21-.054-.315.627-.156 1.412-.264.786-.104 1.255-1.049 1.516-1.836.261-.788.471-.683.942-.21.47.472.891.367.993.051.102-.315.524-1.1 1.046-1.889.523-.786.837-1.887.26-2.62-.575-.735-1.987-.633-2.561-.156-.575.47-.941.942-1.097 2.095-.157 1.155-.471.524-.471.156 0-.367-.471-.945-.262-1.416.21-.469 0-.997 0-.997s-.104-.995-1.203-1.206c-1.1-.212-2.354.052-3.452.315-1.098.262-.89 1.209-.89 1.209s-.836.05-1.726.156c-.888.103-1.935.47-2.772.68-.835.211-1.15.314-1.15.733 0 .421.157 1.104.157 1.104s.68 0 1.046.208c.366.212.156.578-.263.735-.417.16-.574.21-.574.734 0 .526.21.631.627.631.417 0 1.308 0 2.353.47 1.047.471 1.308 1.414 1.203 1.94-.105.526-1.57 1.207-2.302 1.207s-.941.159-.941.63c0 .472.89.421.89.421s.888.051 2.614.26c1.727.211 1.988.579 2.774 1.26.783.682.208.84-.158 1.048-.366.212-.942.683-1.516.894-.576.209-.942.63-1.466.732-.523.105-1.831.054-4.236 1-2.406.943-3.243 4.093-3.243 4.093s.314-.107 1.412-.686c1.098-.576 2.458-1.206 3.714-1.992 1.254-.784 1.254.37.627 1.469-.627 1.101.576.891.942.577.366-.316.837-.63 2.038-1.26 1.205-.628.785.368.785.368s-.366.733-.47 2.467c-.105 1.731 1.725.104 2.562-.997.837-1.101 1.203 0 .575 1.26-.627 1.26-1.83 2.254-2.51 2.254-.681 0-1.203-.733-1.255-1.153-.053-.42.21-1.68-.209-1.994-.42-.313-1.623.053-2.511.576-.89.525-1.1.107-1.308-.366-.21-.472.314-.63.105-.943-.21-.317-.68 0-1.047.156-.366.156-1.203.63-2.823 1.468-1.623.839-1.516 1.31-1.516 2.517 0 1.208.3 1.485.975 3.06z" fill="#d4af3a"/><path d="M316.73 224.16c.34-.216.959-.464.959-.464s.772-.184 1.482-.279c.709-.093.586-.495.43-.832-.153-.344-.43-.465-1.354-.465-.929 0-1.517.465-2.04.678-.527.217-1.143.372-1.143.372s.124.154.463.65c.33.524.855.584 1.185.36zM320.51 227.91c.37 0 .772-.217.772-.217s.677-.341 1.298-.556c.617-.217.864-.31 1.233-1.051.37-.741-.402-.741-1.48-1.017-1.082-.282-1.607.09-1.729.492-.126.402-.094.864-.526 1.638-.435.765.06.705.435.705zM320.165 228.855c-1.048 0-2.221 1.575-2.655 1.853-.433.277-.186.554-.186.554s.309.65.43 1.266c.127.62.157 1.67.157 1.67s.154.063.77.063c.62 0 .989-.31 1.577-.743.588-.432 1.05-.588 1.884-.742.836-.153 1.235-.308 2.16-.801.929-.494-.493-1.359-1.48-2.162-.99-.765-1.605-.93-2.655-.93zM306.2 232.485c.831-.093 1.202-.507 1.202-.969 0-.462-.42-.97-1.48-.877-2.602.23-5.125-.702-5.59-3.281 0 0-.877 1.614.74 3.419 1.635 1.8 4.305 1.8 5.145 1.71zM297.335 273.465c.132.23.294.372.459.458h3.987c.68-.191.684-.817.717-1.249.039-.514.433-1.975.986-4.626.552-2.647 1.498-4.542 1.891-5.61.393-1.068-.395-1.422-.67-2.095-.276-.67-.71-1.856-.828-2.448-.119-.594-1.064-.514-1.577-.475-.513.038-.593.87-.67 1.66-.078.787-.434 3.122-.827 5.138-.395 2.015-2.68 4.703-3.31 5.294-.632.594-1.143.831-1.577.831-.433 0-1.379 0-1.853.278-.47.278-.943 1.029-.984 1.619-.039.593.908.91.908.91s.749-.435 1.024-.79c.276-.356.906-.436 1.536-.553.63-.118.71.117.473.432-.24.3-.165.375.315 1.215zM291.23 273.255c-.301.106-.522.406-.658.655h2.605c-.032-.213-.102-.466-.252-.655-.315-.39-1.155-.195-1.695 0z" fill="#d4af3a"/><path d="M294.77 273.18c-.318.172-.702.455-.897.734h2.805c.099-.261.13-.611-.213-.891-.63-.526-1.26-.09-1.695.15zM319.1 272.025c-.306 0-.578.273-1.018.578-.44.305-.575.781-.642 1.156a.253.253 0 0 0 .016.162h1.191a.217.217 0 0 0 .08-.162c0-.342.135-.648.645-1.089.524-.45.044-.645-.256-.645zM321.44 273.315c0-.372-.137-.713-.406-.678-.27.035-.711.51-1.083.781a2.367 2.367 0 0 0-.476.504h1.761c.105-.21.21-.435.21-.615z" fill="#d4af3a"/><path d="M332.27 260.37c.845-.612.711-.781.743-1.427.033-.646.033-.848-.305-1.085-.339-.24-1.59-.782-2.775-.782-1.185 0-3.421.272-4.268.848-.847.579-1.254 2.65-1.254 3.735 0 1.084.17 1.257.474 1.257.305 0 .813-.782.813-.782s1.116 1.461 1.794 2.481c.678 1.019.372 1.425.071 2.205-.306.782-1.422 2.853-2.303 3.296-.883.442-1.56.031-2.608-.135-1.049-.171-1.626.135-2.235.745s-.032 1.089.339 1.089c.373 0 .88-.034 1.287.474.282.353.091 1.158-.051 1.623h5.188c.885-.393 1.496-1.608 1.734-2.271.273-.746 1.39-1.73 1.932-2.238.54-.511.61-.85.61-1.971 0-1.12-.305-1.766-.715-2.546-.406-.781-.71-1.903-.576-2.547.09-.69 1.215-1.395 2.055-2.01z" fill="#d4af3a"/><path d="M323.735 247.425c.519.843.261 1.004-.484 1.164a8.541 8.541 0 0 1-2.717.195c-1.163-.098-1.133.065-1.163.648-.031.582-.132 1.812-.81 2.716-.679.906-1.52.551-2.038.195-.518-.355-.809-.26-1.002.387-.194.648-.55 1.101-1.1 2.07-.55.971-.906 1.004-1.294.906-.389-.097-.744-.679-1.133-.712-.388-.033-1.003-.807-1.585-1.748-.582-.936-.873.096-1.26.908-.39.807-.776 1.392-1.521 1.291-.744-.094-1.584-1.486-2.004-2.328-.422-.843-.68-1.65-1.326-1.618-.647.033-1.715 1.392-2.427 1.746-.713.357-.906.228-1.229-.224-.322-.453-.744.162-1.164 1.229-.42 1.068.033 1.971.615 2.263.582.291 1.746-.55 2.523-1.068.776-.516 1.131-.387 1.941-.387.809 0 .744 1.328 1.1 3.266.355 1.941 1.488 2.2 1.488 2.2s.388.324 1.261-1.162c.873-1.488.97-2.945 1.812-2.945.84 0 .906.194 1.746 1.358.842 1.164 1.553 2.037 2.037 1.164.485-.875.906-2.168 1.457-2.619.549-.455 1.066-.584.484.258-.583.841-.841 1.746.356 1.392 1.197-.354 5.757-2.2 7.6-2.555 0 0 2.166-.355 4.658-.484 2.49-.132 3.103-.293 4.075-.293.97 0 1.002-.097 1.068-.744.063-.648-.453-.517-2.265-.517-1.81 0-3.073.226-4.335.421-1.261.194-1.842.161-1.618-.162.228-.324.583-.55 2.04-.775 1.453-.227 4.431-.39 5.983-.422 1.551-.031 1.067.453.936 1.488-.13 1.034.131 2.556.228 3.527.095.969.128 1.261.97 2.619.841 1.357 3.75 2.2 4.592 2.653.842.453.713 0 .68-.81-.033-.807.646-.775 1.39-.355.743.423 1.973.778 2.846 1.005.873.223 1.002.387 1.002.84 0 .453.097 1.456.196 2.395.095.938.063 1.227-.325 1.811-.389.583-2.037 2.262-2.037 2.262s-.744 0-2.33.391c-1.585.389-2.071 1.133-2.231 1.78-.161.646.292.841.357 1.099.034.142.02.492.002.777h.366c.133-.227.322-.524.568-.843.552-.711 1.944-.873 2.847-.453.594.277.602.898.538 1.294h3.623c.489-.943 1.649-3.199 1.953-3.883.387-.872.613-1.422.646-2.619.033-1.197.161-5.822-.064-6.081-.227-.26.064-1.035 0-2.33-.066-1.293 0-2.265-2.394-2.49-2.396-.226-3.138-1.227-3.947-2.038-.811-.807-.615-2.684-1.26-4.947-.648-2.264-2.232-2.62-5.046-3.171-2.815-.548-4.885-.614-6.987-.419-2.101.195-4.72.486-6.177.354-1.425-.18-1.2.24-.675 1.08z" fill="#d4af3a"/><path d="M337.325 273.405c-.246.159-.41.348-.519.513h2.445a.954.954 0 0 0-.24-.708c-.36-.45-1.08-.195-1.68.195zM341.705 273.24a2.222 2.222 0 0 0-.811.678h2.479a.966.966 0 0 0-.014-.286c-.075-.39-.825-.81-1.65-.39zM280.625 274.785c.138.768.318 1.546.541 2.33h77.678c.224-.782.405-1.562.54-2.33h-78.759zM332.975 237.675c2.454 1.633 10.245 1.72 13.903 2.454 3.659.73 3.404 3.53 2.282 4.992-1.119 1.466-6.266 1.641-7.188 1.764.498.345 1.248 1.42 1.248 1.42s.561-.04 2.109-.172c1.548-.128 4.261-.514 6.112-2.066 1.852-1.548 1.721-4.044.088-5.722-1.637-1.68-4.349-1.851-7.104-2.152-2.754-.302-4.907-.518-8.006-1.034-3.097-.516-4.605-1.764-4.605-3.573 0-1.808 1.68-2.754 2.885-3.099 1.204-.344 3.14-.858 4.863-.216 1.722.646 3.745.73 7.146.303 3.402-.432 4.176-2.799 4.176-2.799s-.432.216-2.153.258c-1.722.042-2.971-.73-6.111-.777-3.145-.042-4.264 1.08-5.727 1.595-1.464.517-5.379.906-6.541 3.444-1.155 2.55.18 3.75 2.64 5.385z" fill="#d4af3a"/><ellipse rx="1.466" ry="1.443" cy="225.96" cx="312.56" fill="#b96b29"/><path d="M344.03 228.42c-1.94-.171-4.479.344-4.479.344s.472.388 1.119.344c.645-.043 1.809-.087 3.702.257 1.895.346 3.272-.56 3.272-.56s-1.68-.21-3.615-.39z" fill="#b96b29"/><path d="M325.61 264.57c-.474-.747-.61-.678-1.155-.203-.541.474-1.087-1.156-1.155-2.173-.067-1.016.407-4.138.407-4.138s-2.648.543-4.071 1.017c-1.424.475-2.781.612-3.935.885-1.153.272-1.764.54-2.374.406-.611-.135-1.901-.204-2.918-.204-1.017 0-.948.204-1.968 1.221-1.017 1.016-1.288 1.558-2.103 3.46-.815 1.898-1.086 3.662-1.356 5.969-.179 1.51-.471 2.553-.654 3.096h12.162c.145-.39.334-.88.5-1.244.317-.701.986-1.147 1.465-1.37.478-.224.894-.224 1.115-.762.222-.543.829-.99 1.467-1.277.637-.286 1.752-.127 2.773.159 1.018.285 1.37-.414 1.655-.796.286-.383.415-.924.958-1.623.541-.704.135-1.341.135-1.341s-.495-.33-.975-1.08zM345.125 264.9c-.158-.702-.095-.795-.51-.894-.414-.096-1.115-.222-1.719-.475-.605-.256-.541 1.369-.541 1.369s-1.436.156-3.059-.032c-1.624-.192-3.535-1.656-4.206-2.136-.667-.477-1.402-1.56-1.402-1.56s-.51.477-1.02.765c-.51.288-.797 1.307-.891 2.327-.096 1.02 1.179 2.26 1.273 3.28.096 1.022-1.114 3.06-1.72 3.888-.413.569-.948 1.78-1.244 2.486h5.871c.123-.302.324-.683.63-.987.603-.606 1.626-.734 1.626-.734s0-.255.222-.795c.22-.541.828-1.179 2.292-1.753 1.467-.573 3.219-.669 3.219-.669s.699-.573 1.21-1.37c.51-.795.135-1.995-.03-2.7z" fill="#1d5e91"/><path d="M296.225 329.655c1.093.364 3.136-.436 4.158-1.677 1.02-1.24 1.386-3.14 2.115-4.232.729-1.095 1.259-1.906 1.259-1.906s-.156 1.803-1.124 4.22c-.922 2.303-1.083 5.455-.864 6.805.438 2.698 2.189 3.136 3.21 2.77.776-.276 1.95-1.471 3.029-3.265.34-.569.579-1.355.912-1.986.693-1.313 1.312-3.463 1.618-3.404.675.132.243 1.652-.012 2.673-.511 2.042-1.531 5.034-1.605 6.858-.073 1.824.147 5.106 1.97 5.253 1.824.146 2.772-1.46 3.792-5.18 1.021-3.719 1.242-4.889 1.678-4.889.438 0 .438 2.553.438 3.648 0 .377.015 1.413.164 2.455.283 1.994.865 4.388 1.441 4.914.875.803 1.605.656 1.605.656s.728.148 1.605-.655c.875-.803 1.604-6.277 1.604-7.37 0-1.094 0-3.648.436-3.648.441 0 .657 1.168 1.679 4.888 1.023 3.72 1.969 5.327 3.793 5.181 1.824-.147 2.045-3.429 1.971-5.253-.073-1.824-1.093-4.816-1.606-6.858-.512-2.043.219-1.897 1.606.73.432.82.88 1.825 1.32 2.527.972 1.546 1.917 2.473 2.619 2.724 1.02.366 2.772-.072 3.21-2.77.438-2.702-1.605-10.435-1.605-10.435l.876 1.314c.729 1.094 1.093 2.991 2.116 4.232 1.02 1.24 3.065 2.041 4.158 1.677 1.094-.365 1.241-2.409.437-6.057-.802-3.648-4.086-5.69-6.42-8.609-2.148-2.682-3.803-7.404-4.051-8.143-2.939 1.455-5.516 3.106-7.844 5.538-4.829 5.037-5.877 6.295-5.877 6.295s-1.05-1.258-5.877-6.295c-2.345-2.447-4.936-4.101-7.897-5.564-.273.623-2.28 5.132-4.45 7.845-1.078 1.349-2.565 2.367-3.62 3.662-1.227 1.504-1.974 3.309-2.406 5.27-.78 3.63-.63 5.67.465 6.044z" fill="#d4af3a"/><path d="M296.09 342.015c1.413-1.244 2.14-1.929 2.14-1.929s1.028-.855.771.772c-.258 1.626-.814 4.967-.47 6.42.341 1.457.512 2.697 2.311 1.626 1.798-1.069 2.226-1.713 3.083-2.61.854-.9 1.754-1.282 1.54.13-.216 1.411-.857 3.552-.556 6.42.3 2.866 1.712 3.294 3.551.855a32.263 32.263 0 0 0 3.51-5.864c.557-1.198 1.67-2.224 1.67 0 0 4.788 1.098 11.753 6.377 13.611 5.281-1.859 6.379-8.823 6.379-13.611 0-2.224 1.11-1.198 1.665 0 .558 1.2 1.67 3.425 3.512 5.864 1.84 2.439 3.253 2.011 3.552-.855.298-2.868-.344-5.009-.557-6.42-.213-1.412.686-1.03 1.542-.13.855.899 1.281 1.541 3.081 2.61 1.799 1.071 1.97-.169 2.312-1.626.342-1.455-.215-4.794-.47-6.42-.258-1.627.77-.772.77-.772s.727.685 2.142 1.929c1.41 1.24 3.349 1.315 3.349 1.315s.908-5.026-1.186-8.028c-2.094-3.001-2.864-3.978-2.864-3.978s-1.185-.069-2.092-.417c-.906-.349-1.788-1.005-1.788-1.005v2.782s2.566 2.438 3.166 3.166c.597.724 1.797 1.968.044.77a50.518 50.518 0 0 1-3.212-2.398s-.344 2.526-1.071 3.168c-.726.641-1.755.725-2.181.555l-.427-.172-.13.987s1.583 2.954 1.796 4.152c.216 1.198-.129 1.068-.855-.472-.728-1.538-2.139-3.509-2.781-4.579-.642-1.069-1.584-1.798-1.499-.427.087 1.37-.469 3.85-.942 4.749-.469.9-.769 1.198-.769 1.198s.983 3.47 1.111 4.11c.131.643.042 1.37-.513.556-.556-.813-2.142-4.236-2.142-4.236s-2.097-.086-2.695-.686c-.599-.6-1.54-2.907-1.54-2.907s-.858 2.946-1.57 3.893c-.709.945-2.362 1.888-2.362 1.888s-.118 5.124-.234 6.03c-.12.906-.158 1.299-.541 1.299s-.423-.394-.542-1.299c-.116-.906-.234-6.03-.234-6.03s-1.656-.943-2.365-1.888c-.708-.947-1.568-3.893-1.568-3.893s-.94 2.307-1.54 2.907c-.599.6-2.696.686-2.696.686s-1.584 3.423-2.14 4.236c-.557.814-.642.087-.513-.555s1.113-4.11 1.113-4.11-.3-.299-.771-1.199c-.471-.898-1.028-3.38-.941-4.749.084-1.371-.858-.642-1.5.427-.642 1.07-2.053 3.04-2.781 4.578-.727 1.541-1.07 1.671-.855.473.215-1.198 1.797-4.152 1.797-4.152l-.127-.987-.428.172c-.429.17-1.455.086-2.184-.555-.727-.643-1.07-3.168-1.07-3.168s-1.454 1.199-3.21 2.397c-1.754 1.199-.556-.043.044-.769.599-.728 3.165-3.167 3.165-3.167v-2.781s-.879.656-1.786 1.005c-.908.348-2.094.417-2.094.417s-.768.977-2.862 3.978c-2.094 3.002-1.187 8.028-1.187 8.028s1.95-.06 3.36-1.29zM321.845 375.48c-1.353-1.583-1.804-2.37-1.804-2.37s-.452.787-1.803 2.37c-1.356 1.58-4.515 4.062-4.515 4.062s.282 4.176 1.806 6.43c1.284 1.906 2.512 3.646 4.512 4.967 1.999-1.321 3.229-3.062 4.513-4.966 1.526-2.255 1.806-6.431 1.806-6.431s-3.165-2.49-4.515-4.065z" fill="#d4af3a"/><path d="M319.355 380.595c.124.969.042 3.418.631 3.418.59 0 .505-2.45.632-3.418.125-.969.167-3.292.167-3.292h-1.601c.015-.015.06 2.31.18 3.285z" fill="#b96b29"/><path d="M319.97 151.305c-5.649.096-12.276-.684-15.922-2.042-1.296.287-2.592.572-3.888.857 6.01 2.264 11.032 3.141 19.81 3.23 8.78-.089 13.8-.966 19.809-3.23-1.296-.285-2.593-.57-3.89-.857-3.644 1.352-10.274 2.132-15.93 2.042zM340.52 146.59c-.449-.373-3.02-2.206-3.69-2.54-.67-.338-.148-1.234-.036-1.607.111-.375 3.018-1.197 4.622-1.608 1.6-.411 1.34-.749 1.34-.749s-.932-1.084-6.746-1.719c-5.811-.634-16.02-.486-16.02-.486s-10.211-.15-16.025.486c-5.812.635-6.744 1.72-6.744 1.72s-.261.337 1.343.748c1.601.411 4.507 1.233 4.62 1.608.112.373.634 1.27-.037 1.606-.67.335-3.243 2.168-3.688 2.541-.447.375-.484.972.224 1.01.708.036.72.025 2.719-.375 5.982-1.19 11.613-1.522 17.59-1.605 5.975.083 11.604.415 17.59 1.605 1.998.399 2.01.411 2.719.375.705-.037.675-.634.225-1.01z" fill="#d4af3a"/><path d="M333.905 149.06c-3.989-.473-6.52-.989-13.905-.923-7.383.065-9.914.45-13.905.922 2.513 1.009 6.576 1.516 13.905 1.516 7.335 0 11.4-.51 13.905-1.511zM318.95 91.497l-.18 2.837 3.045-.246-.285-2.661 3.27.454.135-2.626-3.435.316.6-2.836-3.78-.035.66 2.871-3.33-.316v2.626zM325.415 98.64h-4.089v-3.487a6.027 6.027 0 0 0-1.208-.119c-.365 0-.721.032-1.067.095v3.512h-4.23a4.573 4.573 0 0 0-.18 1.997h10.951c.027-.197.039-.395.039-.594a5.396 5.396 0 0 0-.24-1.404z" fill="#d4af3a"/><path d="M320.12 105.048c2.432 0 4.495-1.431 5.228-3.414H314.89c.735 1.984 2.805 3.414 5.235 3.414zM322.37 95.472v2.397h2.712c-.555-1.059-1.515-1.913-2.715-2.397zM317.855 95.472c-1.187.484-2.151 1.338-2.713 2.397h2.713v-2.397z" fill="#1d5e91"/><path d="M323.255 139.968c-1.032-.487-3.282-1.449-3.282-1.449s-2.139 1.054-3.301 1.638c-1.163.582-1.013.412-1.37 1.26-.357.847.036 1.147.543 1.372.507.227 4.185 2.11 4.185 2.11s3.639-1.694 4.52-2.11c.883-.412.717-.826.47-1.468-.24-.638-.734-.863-1.754-1.353z" fill="#b96b29"/><path fill="#d4af3a" d="M319.97 139.333l-3.51 1.707 3.6 1.834 3.555-1.833zM319.97 126.972s-.303 1.27-.71 1.809c-.406.54-.713 1.022-.596 1.679.117.655.867 1.093 1.306 1.093.438 0 1.19-.438 1.305-1.093.119-.657-.189-1.139-.595-1.679-.39-.538-.705-1.809-.705-1.809z"/><circle cy="132.84" cx="320" r=".677" fill="#d4af3a"/><path d="M317.585 129.36s1.17-1.299 1.602-2.123c.433-.821.786-1.558.786-1.558s.351.737.784 1.559c.434.822 1.602 2.122 1.602 2.122s1.646-.867 2.597-4.026c.954-3.16-.219-6.493-.651-10.086-.432-3.592-.78-9.781-.78-9.781-1.247.714-2.424 1.017-3.555 1.036-1.131-.021-2.31-.324-3.557-1.036 0 0-.345 6.189-.778 9.781-.434 3.594-1.602 6.926-.65 10.086.96 3.159 2.595 4.026 2.595 4.026z" fill="#d4af3a"/><ellipse rx="2.841" ry="2.742" cy="122.259" cx="319.97" fill="#b96b29"/><ellipse rx="2.733" ry="2.639" cy="115.83" cx="319.97" fill="#b96b29"/><ellipse rx="2.607" ry="2.516" cy="109.681" cx="319.97" fill="#b96b29"/><ellipse rx="1.506" ry="1.452" cy="121.767" cx="319.97" fill="#d4af3a"/><ellipse rx="1.449" ry="1.397" cy="115.358" cx="319.97" fill="#d4af3a"/><ellipse rx="1.27" ry="1.226" cy="109.23" cx="319.97" fill="#d4af3a"/><path d="M319.895 336.06c.175.036.21-.415.244-1.252.033-.834.141-2.85.347-4.032.208-1.184-.314-1.113-.627-1.043-.312.069-.484.972-.484 1.496 0 .52.137 3.511.137 4.137 0 .625.209.66.383.694z" fill="#b96b29"/><path d="M290.42 359.115c1.262-.801 2.357-1.689 5.217-3.588 2.86-1.9 3.912-4.01 3.912-4.01h-1.01c-.547 0-1.009-.76-1.051-1.519-.043-.76 0-2.32.21-4.136.21-1.813-.294-3.29-.294-3.29s-1.22 1.137-3.07 2.109c-1.851.97-2.61.505-2.61.505l-.464-1.854s-.798 1.689-1.935 3.669c-1.137 1.983-4.207 4.179-6.394 5.823-2.189 1.647-4.587 3.378-6.396 4.011-1.81.631-.757 1.478-.757 1.478s1.81 1.812 6.479 2.656c4.67.845 6.902-1.053 8.163-1.854z" fill="#d4af3a"/><path d="M306.755 357.3c-1.668-.175-2.666-.805-2.988-2.618-.211-1.18.086-5.697.086-5.697s-.548.464-1.18 1.226c-.631.757-2.062.927-2.062.927s-.21.633-.841 1.644c-.632 1.016-1.431 2.24-3.03 3.25-1.598 1.015-3.449 2.197-4.67 3.209-1.221 1.014-2.65 2.196-4.25 3.081-1.598.887-3.03 2.322-3.577 4.683-.546 2.363-.124 3.123 1.725 2.997 1.851-.127 2.063.042 5.049-.718 2.988-.76 7.236-4.092 10.349-6.075 3.118-1.985 5.389-5.909 5.389-5.909z" fill="#d4af3a"/><path d="M315.035 360.03s-1.263-1.6-1.725-3.418c-.464-1.814-1.345-5.4-1.345-5.4s-.422 1.14-1.431 3.288c-1.011 2.154-2.735 2.66-2.735 2.66s-.086.927-1.515 2.742c-1.431 1.814-3.533 3.502-5.68 4.77-2.147 1.263-4.923 2.997-6.438 5.148-1.514 2.153-1.641 4.388-.924 5.359.715.969 1.723-.128 3.154-.845 1.431-.717 5.513-1.35 11.15-4.389 5.637-3.037 7.489-9.915 7.489-9.915z" fill="#d4af3a"/><path d="M317.48 372.66c1.557-2.32 1.81-7.973 1.81-7.973s-.546-.379-1.305-1.015c-.756-.633-2.229-2.868-2.229-2.868s-.925 1.94-1.934 3.755c-1.01 1.816-1.517 2.448-3.62 4.389-2.103 1.942-4.965 3.841-6.186 5.908-1.22 2.067-.546 6.203.254 7.595.799 1.395 1.935.927 3.112-.21 1.179-1.139 1.557-1.434 3.618-3.207s4.925-4.053 6.48-6.374z" fill="#d4af3a"/><path d="M298.97 325.335c.828-1.692 1.764-3.744 2.52-4.785a14.915 14.915 0 0 0 1.294-2.234s-2.015 1.836-2.807 3.132c-.791 1.295-1.295 2.555-1.656 3.96-.357 1.403-.179 1.617.649-.073zM306.965 326.775c.324-1.117.505-1.86.505-1.86s.326-1.08.146-1.152c-.18-.073-1.01.67-1.585 2.505-.578 1.837-1.44 4.498-1.26 4.606.178.11 1.87-2.983 2.194-4.099zM313.265 331.845c.36-.79.36-.827.36-.827s.648-2.087.648-2.52c0-.43-.216-.934-.754.145-.542 1.081-.576 2.122-.686 2.592-.106.468-.719 2.088-.54 2.232.18.144.612-.827.972-1.622zM293.705 351.045l-.843-.507s-.504.676-1.22 1.435c-.715.758-1.516 1.055-2.062 1.773a7.945 7.945 0 0 1-2.692 2.279c-1.304.675-1.81.887-1.556 1.098.252.212 1.135-.295 1.135-.295s.378-.044 1.935-.971c1.557-.927 1.935-1.434 2.945-2.32 1.01-.887 2.358-2.492 2.358-2.492zM300.53 359.115c.59-.633 1.22-1.056.883-1.395-.337-.336-.757-.294-1.305.17-.546.465-2.103 1.939-2.818 2.574-.716.633-1.304 1.014-2.019 1.561-.716.549-2.272 1.392-3.029 1.814-.757.423-.042.468-.042.468s.59-.299 1.22-.51c.63-.21 2.439-1.013 2.439-1.013s.716-.337 1.683-1.012c.968-.674 2.399-2.025 2.988-2.657zM308.39 364.56c.504-1.011-.042-.719-.883-.378-.842.338-2.735 2.406-3.829 3.163-1.093.758-2.02 1.055-2.944 1.521-.925.464-.925.716-.882.928.04.211.418.211.798.042.38-.168 1.683-.929 1.683-.929s.547-.166 1.053-.211c.505-.042 1.22-.594 2.356-1.562 1.133-.97 2.142-1.558 2.648-2.574zM312.05 371.775c-1.389.845-3.786 2.742-4.418 4.01-.633 1.267-1.053 2.152-.843 2.362.21.211.884-.211 1.18-.719.293-.505.925-1.266.925-1.266s2.397-2.36 3.28-2.91c.884-.549 2.315-2.109 2.652-3.037.336-.93.084-1.434.084-1.434s-1.473 2.15-2.86 2.994z" fill="#b96b29"/><path d="M274.985 169.92c-1.272-.747-4.692-2.21-8.334-2.518-3.639-.308-6.453.24-9.474 1.056-2.164.585-3.918.675-5.652.21-2.605-.695-4.626-3.047-5.313-5.928 0 0-2.403 3.08.054 6.424 1.18 1.608 2.718 2.613 4.284 2.93 5.099 1.027 10.1-2.085 14.346-2.357 4.079-.266 7.281 2.32 7.281 2.32s.965.802 2.324.011c1.362-.795 1.756-1.401.484-2.148z" fill="#c52126"/><path d="M260.3 317.49s-.501-.05-1.203-.151c-.702-.101-2.206-.603-2.658-.806-.452-.2-1.153-.25-1.605.252-.451.504-4.113 2.666-4.113 2.666h6.069c2.106 0 3.51-1.961 3.51-1.961z" fill="#d4af3a"/><path d="M277.385 316.455v-.606l-.808-1.742s-.944.593-1.863 1.544c-1.184 1.228-2.457 2.955-3.026 3.684-1.011 1.295-2.424 2.513-1.212.444 1.212-2.067 1.615-2.958 2.584-4.336.971-1.377 1.698-1.985 1.578-2.067-.121-.081-.89-.201-3.436-.525-2.544-.327-4.12-1.298-5.292-1.988-1.172-.688-3.273-1.822-3.273-1.822s-4.323 1.822-5.94 2.227c-1.617.405-2.586.648-1.011 1.419 1.576.77 2.908 1.013 3.676 1.497.767.489 3.152 1.257 4.607 1.257 1.453 0 3.918.039 2.949 1.053-.969 1.016-2.061 2.961-3.111 5.916-1.05 2.961-1.09 5.594-1.09 6.891 0 1.298.16 2.592.16 2.592s1.777-1.983 6.546-4.981c4.767-3 6.544-4.013 7.434-4.42.888-.403 1.335-.403 1.171-1.537-.159-1.135-.643-3.931-.643-4.5z" fill="#d4af3a"/><path d="M295.595 301.965a68.5 68.5 0 0 1-.885-.402c-.08.021-.153.043-.219.078-.56.28-3.468 2.238-4.642 4.141-1.175 1.901-2.35 2.07-1.064 0 1.287-2.073 2.238-3.246 3.245-4.141.388-.345.736-.633 1.015-.854-2.34-1.128-4.881-2.494-7.34-4.206-.317.635-.928 1.76-1.62 2.489-1.006 1.062-3.244 1.959-3.244 1.959s1.79-1.847 2.406-3.246c.392-.893.648-1.854.782-2.432-1.712-1.333-3.351-2.853-4.815-4.597-.299 1.21-1.266 4.156-4.133 7.365-3.747 4.197-11.244 6.321-11.244 6.321s-2.628.28-.502.84c2.125.56 3.636 1.51 7.776.781 4.138-.724 4.417-.894 4.977-1.059.559-.169 2.07-.057 0 .726-2.069.782-6.881 1.508-8.726 1.343-1.846-.167-4.363-.56-1.734.84 2.63 1.4 3.749 1.957 5.37 1.957 1.623 0 2.294.504 3.861.504 1.566 0 2.012-.28 3.132-.504 1.119-.222 1.845.167 1.845.615 0 .447-1.509 1.677-1.453 4.755.055 3.077.279 5.091.558 5.982.282.899.952 2.351 1.399 3.192.447.839.617 1.676 1.062-.112.447-1.791 1.454-4.364 1.847-6.096.391-1.734.615-1.79.783-2.685.166-.896 1.119-1.566.67.055a133.43 133.43 0 0 0-1.285 5.147c-.338 1.455-1.12 4.138.222 2.013 1.342-2.124 6.376-7.775 7.215-8.781.838-1.007 1.51-1.959 2.125-2.796.615-.84 2.349-1.959 3.189-3.189.759-1.113 2.982-3.28 3.936-4.056-1.423-.605-2.925-1.238-4.509-1.947zM226.055 172.845c.134 3.083 3.546 8.98 5.487 12.13 1.941 3.152 2.475 4.421 2.142 4.624-.336.2-1.139-1.407-2.21-2.813-1.07-1.407-3.143-4.69-4.883-7.17-1.74-2.48-4.283-8.376-4.617-8.913-.335-.535-.47-.872-1.338-.203-.87.671-2.543 7.172-.534 11.596 2.007 4.422 5.017 7.636 6.288 9.178 1.272 1.542 2.944 3.954 2.676 4.157-.267.199-.735-.404-2.274-2.012-1.54-1.608-4.083-4.356-5.754-6.366-1.36-1.632-3.203-4.947-3.85-6.132-.242-.449-.556-.327-.79-.093-.55.553-1.432 1.839-1.048 5.354.535 4.893 3.078 7.707 5.352 10.186 2.275 2.48 4.55 4.556 4.216 4.891-.334.337-2.676-1.742-4.282-3.283-1.605-1.54-5.555-5.36-6.423-6.434-.872-1.07-2.141-.537-2.075 3.686.066 4.222 4.75 8.511 6.69 10.857 1.943 2.344 4.35 3.75 4.15 4.22-.2.469-2.141-.736-3.412-1.609-1.27-.871-6.022-3.954-6.958-4.624-.936-.669-1.406.603-.201 4.624 1.204 4.019 4.684 7.236 6.757 8.71 2.075 1.474 5.42 3.281 5.219 3.754-.2.468-1.605-.135-3.546-1.074-1.94-.938-4.281-1.809-5.955-2.277-1.674-.47-1.673.735-1.673.735s-.336 3.417 2.14 6.165c2.477 2.748 5.287 3.82 7.963 4.287 2.676.47 3.078.605 3.01 1.008-.066.402-.334.468-.936.468-.601 0-3.078.269-5.353.269-2.276 0-3.479.533-3.479 1.54 0 1.006-.067 2.346 3.345 4.623 3.411 2.28 7.226 2.615 8.832 2.95 1.605.335 1.671.47 1.338.94-.334.467-1.07.401-3.613.668-2.543.268-4.082 1.274-4.416 1.943-.335.67.2 2.682 2.277 4.088 2.073 1.408 4.749 1.878 8.764 1.609 4.016-.27 5.019-.336 5.153.336.135.669-1.203.872-3.212 1.208-2.007.333-3.547.333-4.684 1.272-1.139.939-.267 2.881 1.672 4.288 1.94 1.407 6.759 1.407 8.766 1.274 2.007-.134 5.085-.872 5.286-.336.201.535-1.471 1.342-3.544 2.077-2.076.74-2.68 1.206-3.078 2.079-.404.87-.068 1.674 2.407 2.611 2.475.94 6.089.94 7.962.068 1.875-.87 2.877-1.208 3.213-.87.333.338 0 .67-.402 1.14-.4.47-2.007 1.741-4.081 2.278-2.075.537-2.276.537-3.012 2.211-.735 1.676 1.137 3.018 4.884 3.153 3.748.132 8.766-1.34 10.372-2.281 1.607-.939 2.208-1.139 2.475-.802.267.334.201.535-.601 1.137-.804.606-3.347 2.413-4.617 2.749-1.271.335-1.406 1.272-1.406 2.143 0 .87-.335 2.614 3.01 3.419 3.347.804 7.293.203 10.907-2.346 1.164-.819 1.84-1.496 2.221-2.082-.292-3.421-.138-5.773.273-7.942-.709-.075-2.055-.28-3.432-.833-2.007-.802-2.809-2.679-3.279-3.685-.469-1.005-1.137-1.005-1.94-.738-.804.271-1.607.604-2.744.538-1.137-.066-3.546-.67-5.286-2.75-1.74-2.077-1.407-4.085-1.473-5.093-.067-1.005-1.672-.267-2.475-.267-.804 0-3.145-.336-5.284-1.81-2.142-1.474-2.142-3.484-2.343-4.29-.201-.802-1.071-1.337-1.74-1.607-.668-.267-1.74-.534-3.213-1.742-1.472-1.206-2.006-3.55-2.073-4.354-.066-.804-.938-.872-3.948-2.412-3.011-1.541-2.744-4.758-2.609-6.03.134-1.275 1.538-2.345 1.538-2.817 0-.47-1.004-.602-2.007-1.206-1.004-.602-3.546-1.608-3.612-5.36-.068-3.753 2.409-4.155 2.409-4.155s-.47-.202-1.473-.804c-1.004-.604-3.746-2.48-3.746-4.692 0-2.211 1.002-3.216 1.738-3.753.737-.535 2.744-1.071 2.744-1.071s-1.272-.805-1.808-2.547c-.535-1.743-.736-3.885.534-5.427 1.272-1.542 3.413-1.542 4.551-1.542 1.139 0 2.141.603 2.543.27.402-.336.468-.603.066-1.474-.4-.87-.468-3.017-.134-3.752.336-.738.402-2.211 3.281-3.15 2.875-.937 5.886 1.005 6.823 1.542.938.537.536-.74.536-1.675 0-.938-1.94-3.284-4.149-6.635-2.208-3.351-3.212-5.094-5.688-10.186-2.477-5.093-4.083-11.66-4.416-13.335-.335-1.676-1.004-.873-1.004-.873s-.669.27-2.208 4.155c-1.536 3.888-1.803 7.44-1.669 10.519z" fill="#d4af3a"/><path d="M276.53 241.38c-1.725-.087-3.965-1.034-5.688-3.537-1.722-2.503-4.31-3.11-8.791-3.024-4.482.087-6.551-2.07-7.671-5.176-1.121-3.11.172-6.65 4.74-8.894 4.567-2.244 6.637-4.747 6.808-8.63.172-3.885-4.566-8.719-9.307-14.157-4.742-5.437-8.447-13.122-8.447-13.122s-1.379 1.814-1.379 3.626c0 1.812.689 3.711 0 4.228-.69.52-.948-.775-3.705-1.984-2.758-1.209-4.999-1.38-6.723.604-1.723 1.985 0 5.438 1.551 7.079 1.553 1.64 2.844 2.85 2.414 3.454-.43.605-2.759-.949-3.534-1.468-.776-.519-2.586-2.502-5.258-2.244-2.671.258-3.62 1.035-3.879 3.28-.258 2.244 2.414 4.227 4.137 5.093 1.724.861 2.414 1.64 1.982 1.983-.43.346-.863 0-1.638-.257-.774-.259-2.93-.517-4.308 0-1.38.518-3.621 2.415-1.553 4.748 2.069 2.331 6.378 3.193 7.241 3.364.861.173 1.293-.087 1.378.603.086.693-1.81.693-4.137.78-2.326.087-3.016 2.33-2.671 4.056.345 1.727 4.222 3.624 6.376 3.971 2.157.345 2.931 0 3.104.603.174.603-.258.862-1.466 1.209-1.206.343-3.534.604-3.966 2.503-.43 1.9-.516 2.762 1.295 4.404 1.81 1.64 4.741 1.38 5.602 1.208.863-.171 1.898-1.124 2.759-.258.861.861-.777 1.552-2.243 2.589-1.465 1.038-1.378 3.022 1.121 4.404 2.499 1.383 5 .861 6.033.517 1.033-.343 2.413-1.984 3.102-.949.69 1.035-2.154 1.381-3.362 2.848-1.206 1.466-.775 3.882 1.638 5.35 2.414 1.468 6.378.431 7.068-.172.689-.603 1.55-.86 2.067-.343.516.514-.258 1.896-.775 3.105-.516 1.209-1.466 4.747 2.155 6.129 3.621 1.38 6.896-1.727 7.499-2.333.603-.603 1.206-.69 1.723-.43.516.261.26.777-.172 1.381-.43.603-1.379 3.192 1.206 5.007 1.765 1.238 3.691 1.146 4.735.966.539-2.022 1.24-4.182 1.953-7.207h-.54c-.345 0-.414.518-.414.725 0 .207.104.379-.208.379-.31 0-.345.172-.794.484-.448.311-.862.689-1.105.518-.242-.172.933-.795 1.243-1.174.312-.381.933-.968.968-1.38.034-.416.241-.657.862-1.175.194-.16.345-.352.465-.538.416-2.013.822-4.37 1.193-7.223.25-1.936.393-3.76.448-5.464l-1.132-.059zM202.865 187.575c3.85 7.79 9.288 12.175 9.288 12.175s-.714-1.935-1.03-3.265c-.314-1.332-.07-2.838-.07-2.838s-1.364-1.75-3.886-5.637c-2.521-3.886-3.852-9.629-3.852-9.629s2.346 5.742 4.167 8.79c1.823 3.047 3.924 5.532 3.924 5.532s.734-2.694 1.26-2.835c.525-.139.91.281 1.365.875.456.596.843.54.843.54s-.622-1.286-1.58-2.828c-.434-.7-1.069-1.456-1.517-2.164-1.436-2.268-4.53-6.577-6.117-10.889-1.587-4.312-5.06-15.124-5.664-18.302-.603-3.176-1.208-1.437-1.812.909-.603 2.344-1.434 5.671-.906 10.662.528 4.99 1.735 11.115 5.587 18.904zM207.845 208.605a135.863 135.863 0 0 0 3.549 2.494s-.335-.781-.546-1.719c-.211-.937-.301-2.868-.301-2.868s-1.69-1.482-2.865-2.508c-1.176-1.027-2.655-2.356-5.58-5.98-2.926-3.626-.574-1.449 1.808 1.149s6.938 6.372 6.938 6.372 0-.06.03-.845a3.123 3.123 0 0 1 .695-1.902c.422-.544.199-.62-2.369-2.586-2.567-1.966-9.213-9.453-11.931-13.917-2.72-4.462-5.664-10.512-5.664-10.512s-1.434 8.925 4.003 18.756c5.436 9.83 10.799 13.007 12.233 14.066zM236.375 264.9c2.979-1.155 2.163-4.093 2.163-4.141 0-.049-1.827.578-3.507 1.202-1.683.629-5.816 1.83-7.449 1.877-1.632.048-1.632-.19-1.681-.432-.049-.239 1.249 0 3.602-.432 2.356-.434 6.488-2.6 7.208-3.08.72-.483.624-.58-.432-.676-1.057-.095-1.97-.578-2.355-.912-.382-.338-1.488.145-4.179.772-2.692.624-8.266 1.587-12.543 1.587-4.276 0-8.263-.721-8.937-.867-.673-.144-1.393.242.674 3.708 2.065 3.464 9.322 5.342 14.367 5.292 5.044-.05 10.09-2.745 13.069-3.898zM222.965 257.745c5.205.043 7.146-1.503 7.146-1.503s0-.266-.705-1.325c-.707-1.058-.573-2.87-.573-2.87s-1.236.22-3.398.53c-2.161.31-4.675.619-7.455.133-2.779-.486-1.587-.795.618-.531 2.207.265 6.44-.531 7.808-1.016 1.366-.486.793-.927-.132-1.239-.926-.306-3.44-1.899-3.44-1.899s-6.307.795-12.174.135c-5.866-.666-9.573-2.166-10.764-2.343-1.19-.177-1.147.31-1.147.31s-.309.528 1.719 3.707c2.03 3.184 6 5.26 9.352 6.231 3.353.974 7.94 1.637 13.145 1.68zM221.63 245.55s-.22-.309-.53-1.371c-.309-1.06.573-1.854.573-1.854s-1.19-.352-5.073-.84c-3.882-.486-4.1-.795-6.484-1.326-2.382-.53-3.969-1.236-3.926-1.502.044-.265.794.134 2.205.662 1.41.531 7.367 1.149 9.881 1.503 2.514.352 3.925.62 4.367.352.44-.265 1.984-.663 1.984-.663s-1.059-.306-2.382-.529c-1.325-.22-2.514-.795-3.219-1.281-.707-.486-.927-.621-4.103-.97-3.176-.353-5.734-1.372-11.425-3.448-5.688-2.077-9.969-4.549-11.115-5.476-1.147-.927-1.059-.264-.75.927.309 1.194.264 2.694 3.132 6.051 2.867 3.358 4.278 4.815 11.511 7.468 7.237 2.65 15.354 2.297 15.354 2.297zM200.24 227.925c6.396 4.506 13.892 6.16 15.482 6.36.357-.417-.387-1.914-.045-2.827.414-1.094 1.104-1.104 2.647-1.193 1.544-.091.53-.399.177-.399-.352 0-.441-.043-3-.706-2.559-.66-5.16-1.061-8.688-2.387-3.53-1.324-4.587-2.296-4.5-2.562.089-.264 1.632.842 4.898 2.078 3.264 1.236 7.057 1.722 9.13 2.166 2.073.437.264-.445-.706-1.019-.971-.576-2.339-2.696-2.339-2.696s-2.293-.397-6.042-1.545c-3.75-1.148-6.88-2.431-10.012-4.196-1.076-.61-2.117-1.394-3.239-2.2-2.146-1.539-4.303-3.112-5.142-3.72-1.281-.927-.882-.177-.75.398s1.014 3.227 3.042 6.141c2.03 2.916 2.691 3.8 9.087 8.307zM199.19 215.25c6.308 4.994 11.732 6.535 12.659 6.934.925.4.838-.131.661-.661-.177-.531-.31-2.251-.31-2.251s-2.25-1.283-4.764-2.741c-2.515-1.46-5.293-3.445-7.145-4.725-1.853-1.281-.75-1.192-.177-.71.573.487 3.132 1.99 5.69 3.58 2.559 1.591 6.439 3.888 6.439 3.888s.089-.839.618-1.37c.53-.531 1.851-.396 1.851-.396s-.661-.663-1.059-1.281c-.396-.621-2.47-1.281-4.807-2.388-2.339-1.102-6.53-4.194-9.617-6.801-3.087-2.605-9.087-9.144-9.483-9.675-.398-.531-.661-.441-.707.22-.043.662-.263 1.105.398 4.109.666 3.003 3.444 9.276 9.753 14.268zM221.51 168.045c.716 1.485 1.498 2.607 2.063 3.575.851 1.46 1.331 2.407 1.331 2.407s.171-.514.036-1.392c-.135-.877-.27-2.094-.033-3.545.125-.777.293-1.55.251-2.24-.05-.785-.312-1.463-.418-1.91-.203-.846-1.112-4.524-1.552-7.122-.437-2.6-.908-6.312-.875-9.588.033-3.275.505-1.621.505-.033 0 1.589.168 4.019.673 7.764.506 3.747 2.09 9.451 2.09 9.451s.1-.877.573-2.126c.472-1.25 1.248-2.666 1.854-4.22.606-1.552.393-1.812.393-1.812s-2.214-10.599-2.796-15.609c-.583-5.009-1.515-18.174-1.515-18.174-3.24 3.26-5.649 11.838-6.078 19.951-.321 6.113.666 11.771.953 14.064.567 4.542 1.356 8.088 2.545 10.559zM214.325 184.77c.1-2.4.652-4.216 2.2-4.749 0 0-1.369-2.401-2.566-5.824-.818-2.345-1.494-5.351-1.837-7.658-.847-5.68-1.525-11.532.169-1.95 1.692 9.58 3.724 12.972 3.724 12.972l2.456 3.986c-.363-1.751-.42-2.981-.327-4.893.093-1.913.338-4.503.92-6.554 0 0-2.964-5.934-4.826-13.059-1.861-7.125-2.926-13.603-2.964-17.466-.17-3.732-.254-5.173-.254-5.173s-3.046 2.289-4.062 13.905c-1.017 11.617 2.033 22.726 3.555 26.967 1.524 4.237 3.812 9.496 3.812 9.496zM247.565 273.36s-.48-.336-1.921-1.251c-1.442-.912-1.009-3.657-1.009-3.657s-.384.288-1.443 1.011c-1.057.722-2.257 1.538-3.699 2.117-1.441.579-2.163.963-3.075 1.25-.913.29-.672-.094.096-.529.768-.432 1.01-.673 2.933-1.443 1.92-.771 5.764-4.14 5.764-4.14s-.913-.096-2.499-.144c-1.585-.048-3.604-.865-3.604-.865s-1.584 1.443-7.976 4.185c-6.391 2.745-11.821 3.465-11.821 3.465s.673 3.274 3.748 4.381c2.547 1.107 6.056 1.78 12.927.146 6.87-1.635 11.579-4.526 11.579-4.526zM255.98 279.915c.53-2.699-1.01-4.575-1.01-4.575s-.336.192-1.296 1.059c-.961.867-2.356 2.504-5.046 3.849-2.689 1.346-3.652 1.251-1.057-.145 2.595-1.397 6.391-5.342 6.391-5.342l-1.007-.386c-1.012-.385-2.741.289-9.949 4.619-7.207 4.332-11.437 4.478-11.437 4.478s3.219 3.898 11.966 3.609c8.746-.285 11.917-4.473 12.445-7.166zM272.51 276.78s-.962 1.345-2.259 2.212c-1.298.867-4.756 1.397-4.756 1.397s-.145.385-.817 1.251c-.673.867-2.163 2.937-3.7 4.044-1.536 1.107-3.94 1.827-4.085 1.537-.143-.289 1.394-.865 2.884-1.78 1.489-.912 2.835-2.6 3.844-3.753 1.01-1.157-.432-.963-.432-.963s-1.826.046-3.509-.096c-1.681-.147-1.345 0-1.825.819s-1.154 1.539-2.403 2.983c-1.524 1.761-2.972 3.357-4.42 5.099-.96 1.156-.24 1.492-.24 1.492s.433.723 4.324 1.155c2.403.269 5.005-.034 7.744-1.614 1.697-.984 3.447-2.542 5.232-4.497 4.658-5.098 4.418-9.286 4.418-9.286zM274.58 287.31c-.962 1.252-1.491 1.782-1.491 1.782s.673-2.07 1.25-3.033c.307-.513.64-1 .888-1.341-.644-1.446-1.172-3-1.562-4.676-.428 1.385-1.758 5.447-3.411 8.088-2.016 3.222-3.797 4.379-2.643 5.243 1.153.867 3.411 1.06 5.96-.192 2.46-1.208 3.17-3.317 3.52-5.019a24.77 24.77 0 0 1-1.212-2.091c-.318.196-.78.564-1.299 1.239z" fill="#d4af3a"/><ellipse rx="1.788" ry="1.638" cy="158.625" cx="274.01" fill="#d4af3a"/><path d="M270.245 155.535c1.632-.039 2.51-.811 4.311-.637 2.126.207 5.005 1.446 8.504 3.303 2.734 1.236 6.344 1.854 9.821.856.974-.28 1.937-.813 2.868-1.338 4.253-2.409 3.224-7.156 3.224-7.156-3.138 2.263-7.017 3.48-10.63 3.234 0 0 .274.207.89.826.618.62 1.748 1.34 1.373 1.653-.373.31-1.92-1.171-3.224-2.134-1.303-.965-3.223-2.271-6.516-3.231-3.292-.966-6.996-1.032-9.465.34-2.469 1.379-2.674 3.099-2.33 3.786.188.386.643.512 1.174.498zM316.46 190.2c-.754-.207-2.057-.412-3.771-1.995-1.716-1.581-5.83-6.123-6.312-6.948-.48-.827-.275-1.583.892-2.066 1.166-.48 1.99-1.995 1.99-1.995s-2.537-.964-4.252-2.203c-1.716-1.236-5.694-4.815-6.243-5.709-.549-.894-.274-1.032.55-1.307.824-.276 1.03-.826 1.03-.826s-1.853-1.169-3.566-2.544c-1.716-1.376-4.047-3.647-4.047-3.647-2.569 1.032-6.601.597-8.779.207-3.842-.687-6.653-2.27-6.653-2.27s-.138.619-.618 1.789c-.48 1.168-2.263 1.858-4.047.687-1.783-1.169-1.372-3.714-1.372-3.714s-1.44-.894-4.389-1.995c-2.949-1.101-5.349-1.239-7.75-.138-2.402 1.1-3.568 4.402-3.568 6.88 0 2.475 1.305 1.445 1.578 1.098.275-.343.824-2.133 3.842-2.613 3.018-.483 5.761.963 9.19 3.782 3.43 2.823 4.184 3.028 5.898 4.816 1.715 1.79.344 2.751-2.605 3.716-2.949.964-6.722-.963-6.86-.893-.567.284 1.272 2.907 3.816 3.899 2.544.99 5.796.348 8.325-.666 1.715-.687 2.034.022 2.537.55 2.785 2.928 3.51 5.672 3.978 9.014 1.423-.438 2.409-1.86 2.607-3.027.094-.56.274-1.79 1.234-.896.96.896 1.715 5.847 1.715 8.118s-.687 5.298-.687 5.298l.687-.069c.412-.069 1.234-.55 2.332-1.168 1.097-.621 1.166.069 1.166 1.306 0 1.238.411 3.578 2.058 7.775 1.647 4.197 4.047 5.571 4.047 5.571s.481-.825.961-2.475c.479-1.652.824-4.884.824-7.706 0-2.821-.755-8.875-.755-8.875s3.431 4.197 6.996 5.23c3.567 1.032 7.134.413 8.643-1.308 1.505-1.719.132-2.475-.622-2.683z" fill="#d4af3a"/><path d="M293 201.06s-1.083 2.396-1.674 3.249c-.591.854-.854.987-.854.987s1.084.918 2.66 1.41c1.577.493 2.988.787 2.988.787s-1.774-2.431-2.397-4.137c-.624-1.707-.723-2.296-.723-2.296zM314.42 199.65a71.58 71.58 0 0 0-.854-2.102c-2.188.439-6.34-.589-8.143-1.673 0 0 1.643 3.346 3.284 4.497 1.642 1.149 1.872 1.215 1.872 1.215s-1.641.264-3.842-1.904c-2.199-2.167-3.184-4.663-3.184-4.663s.492 5.779-.395 9.324c-.886 3.544-1.083 4.005-1.083 4.005s4.66.82 9.849-.624c5.187-1.446 5.58-1.905 5.58-1.905s.622-.164-.197-1.247c-.82-1.081-2.362-3.577-2.887-4.923z" fill="#d4af3a"/><path d="M305 186.96c-1.596-1.835-1.755-2.274-1.755-2.274s-.558.558-.081 1.357c.478.797 2.752 2.79 4.308 3.668a11.1 11.1 0 0 0 3.111 1.156l-.08-.319c0 .001-3.909-1.754-5.503-3.588zM298.67 199.005s-.399-7.26-.399-8.337-.678-.798-.678-.798l-.796.358 1.56 10.616c.169 1.143.732 1.046 1.02.995-.57-.296-.683-2.503-.707-2.834zM288.875 167.58c-.593-.591-1.925-1.034-.64.396 1.282 1.431 2.962 3.21 3.454 4.692.495 1.48.79 3.306-.048 2.912-.84-.397-1.433-.397-2.32-1.136-.89-.741-2.567-1.977-3.258-2.172-.692-.198-1.925 0-.938 1.085.987 1.087 2.075 2.125 3.95 3.505 1.876 1.383 2.962 1.974 3.949 2.666a36.877 36.877 0 0 0 1.974 1.284s-.89-5.924-2.518-8.54c-1.63-2.616-3.012-4.098-3.605-4.692zM256.865 266.805c-1.203.912-2.78 1.286-2.78 1.286s-.747-.04-.747.25.872 0 1.784-.165c.912-.167 2.157-1.08 2.613-1.411.456-.333 1.12-.749.912-1.331-.207-.582-.58.458-1.782 1.371zM267.2 272.34c-.249.288-2.24 1.785-2.24 1.785s-.622.414-1.287.663c-.663.25-.828.625-.828.625s.125.164.828-.04c.705-.21 2.781-1.663 3.443-2.245.663-.584.956-.747.707-.996-.248-.25-.372-.083-.623.208zM225.305 197.895c.372.453.825 1.073 1.032.866.207-.206-.042-.413-.537-.992-.495-.578-.783-.867-.783-.867s-.7-1.116-1.114-1.53c-.413-.412-1.032-.62-.248.33.785.953 1.28 1.737 1.65 2.193zM222.125 204.87c.453.415.866.784 1.36 1.321.495.537.867 1.115 1.155.827.29-.29-.742-.907-1.195-1.488a7.497 7.497 0 0 0-1.404-1.404 9.965 9.965 0 0 0-1.28-.827s.91 1.158 1.364 1.571zM223.31 216.135c.787.83 1.948 1.079 2.115.749.167-.333-.083-.6-.744-.93-.658-.33-1.732-1.033-2.27-1.405-.535-.373-1.072-.786-1.444-1.156-.37-.372-.81-.707-.948-.58-.138.127 1.093 1.452 1.466 1.66.373.207 1.037.831 1.825 1.662zM225.59 225.15c0-.332.081-.496-.582-.54a26.858 26.858 0 0 1-1.577-.164s-1.285-.499-1.369-.25c-.083.25 1.079.75 1.577.833.498.084 1.119.249 1.408.412.293.165.543.039.543-.291zM226.58 234.945c-1.409 0-2.613-.335-2.696-.126-.082.208.664.541 1.37.789.707.25 2.034.333 2.946.373.912.041 1.079-.165 1.036-.62-.042-.46-1.245-.416-2.656-.416zM237.62 245.67c-.207-.207-.705-.04-1.494.124-.786.168-2.073.417-2.82.377-.747-.04-2.364-.084-2.364-.084l-.912.207c0 .208 1.202.166 2.945.373 1.741.209 2.902-.165 3.732-.29.83-.125 1.122-.497.913-.707zM242.18 253.305c-.872.333-1.492.414-2.157.414-.663 0-2.24.291-2.24.291s-.746.084-.622.375c.124.29.373 0 1.035-.084.664-.084 1.163 0 2.324-.04 1.16-.043 1.825-.335 2.53-.458.705-.126 1.492-.5 1.12-.957-.373-.455-1.119.126-1.99.459zM251.06 259.08c-.498.5-2.406 1.786-2.406 1.786s-.373.291-1.12.665c-.747.373-.705.541-.581.748.124.207.58-.29.995-.457.413-.167 1.783-1.083 2.488-1.66.705-.586 1.617-1.042 1.45-1.456-.163-.415-.328-.123-.826.374zM236.285 184.305s.165.38 1.696 2.296c1.533 1.916.713.109.329-.38-.384-.495-2.627-3.666-3.393-4.544-.765-.876-.875-.438-.492.108.384.548 1.86 2.52 1.86 2.52zM233.06 194.145c.219-.219-.275-.438-1.149-1.532-.876-1.094-2.627-3.337-2.627-3.337s-.493-1.04-.656-.931c-.164.109.601 1.75 1.312 2.464.713.711 1.641 2.079 2.135 2.68.493.602.766.875.985.656zM237.305 212.595c0-.535-1.732-.455-2.515-.62-.785-.164-2.187-.454-2.187-.454s-1.652-.29-1.693-.082c-.042.204.33.41 1.238.579.907.163 2.27.577 3.301.742 1.032.165 1.856.374 1.856-.165zM233.06 202.635c1.149.93 1.914 1.368 2.517 1.696.602.327 1.093.822 1.423.438.329-.385-.274-.657-1.258-1.095-.986-.438-1.478-.82-1.478-.82s-.547-.273-1.04-.548c-.494-.273-1.314-.601-.164.329zM242.96 196.065c-.713-.602-1.314-.933-1.314-.933s-.874-.82-1.04-.547c-.163.275.985 1.094 1.532 1.586.547.494 1.533 1.917 2.025 1.643.492-.273-.493-1.147-1.203-1.749zM236.495 221.775s-.956.247-1.577.414c-.62.167-.663.459.458.459 1.12 0 1.577-.291 2.696-.501 1.12-.207 1.495-.332 1.327-.705-.165-.375-.747-.249-1.203-.125-.456.125-1.701.458-1.701.458zM238.235 231.09c-.083.21.787 0 1.368-.207.58-.208 1.784-.83 2.489-1.038.706-.207.706-.333.706-.749 0-.414-.749-.084-1.659.209-.912.291-2.075 1.206-2.075 1.206s-.746.372-.829.579zM250.22 236.73c.831-.501.998-.873.705-1.123-.29-.248-.538-.208-1.202.332-.664.54-1.95 1.454-1.95 1.454s-.662.25-1.16.5c-.498.248-1.121.664-.954.913.165.249 1.203 0 1.741-.458.54-.456 1.992-1.122 2.82-1.618zM255.875 244.215c.332-.292 1.326-.621 1.784-.956.456-.332.747-1.328.373-1.453-.373-.124-.58.414-1.368.995-.789.583-3.485 2.368-3.485 2.368l-.706.291c-.747.29-.414.5.208.415.623-.085 1.037-.085 1.784-.662.745-.582 1.077-.707 1.41-.998zM264.245 251.31c.707-.29 1.743-1.204 2.241-1.659.496-.459 1.119-1.04.747-1.33-.375-.29-.787.084-1.37.62-.58.542-2.116 2.162-2.116 2.162s-.207.04-1.036.707c-.83.663.042.538.331.249.291-.29.5-.458 1.203-.749z" fill="#b96b29"/><path fill="#d4af3a" d="M295.22 143.502l3.15 1.38 3.375-2.397-3.975-1.018z"/><ellipse rx="3.219" ry="3.103" cy="142.074" cx="309.17" fill="#b96b29"/><ellipse cx="309.17" rx="1.942" cy="141.417" ry="1.855" fill="#d4af3a"/><path d="M302.45 131.412c.828.307 1.905.172 1.905.172s.325-1.427-.462-2.123c-.787-.693-1.5-1.194-1.962-1.658-.462-.465-.576-.62-.576-.62s0 1.235-.06 2.008c-.056.774.328 1.91 1.155 2.221z" fill="#d4af3a"/><ellipse cx="304.16" rx=".591" cy="132.975" ry=".559" fill="#d4af3a"/><path d="M299.765 132.375c-.25.348-.787.906-.787.906s.653.02 1.192.405c.538.387 1.231.714 1.866.637.634-.079.904-.678.77-1.1-.134-.425-.442-.866-1.481-1.255-1.04-.383-1.31.059-1.56.407z" fill="#d4af3a"/><path d="M302.015 136.134c-2.022.181-4.694-2.054-4.694-2.054-.249 1.796-1.359 2.727-3.06 3.068l.156.08s1.582.808 3.449 1.091c.845.13 1.596-.016 2.504-.198 1.095-.222 2.326-.534 2.992-.945 1.22-.753.855-2.704.855-2.704s-.178 1.479-2.202 1.662zM294.14 134.106c-.83-.312-2.075-.91-2.594-.938-.519-.025-1.272-.156-1.141.807.129.963 1.115 1.431 2.073 1.457.96.027 1.453-.338 2.023-.625.572-.285.468-.389-.361-.701zM287.81 130.671c-.906-.65-1.713-.831-1.713-.831s-.596 1.562-.26 2.525c.338.962 1.038 1.22 1.893 1.193.857-.024 2.127-.468 1.764-1.117-.361-.648-.777-1.119-1.684-1.77z" fill="#d4af3a"/><ellipse cx="288.635" rx=".699" cy="135.061" ry=".504" fill="#d4af3a"/><path d="M290.57 127.297c-.561-2.66-.467-5.555 2.055-9.244 2.523-3.69 6.91-5.184 6.91-5.184s.14-.28 1.541-1.773c1.401-1.496 4.25-3.361 4.25-3.361s-3.306.815-5.186 1.417l.002.099c0 1.276-1.014 2.312-2.265 2.312-.477 0-.922-.154-1.288-.412-1.02.199-4.416 2.228-5.285 2.953.216.353.342.77.342 1.217 0 1.274-1.015 2.31-2.266 2.31-.375 0-.728-.091-1.04-.257a9.588 9.588 0 0 0-.29.492 23.365 23.365 0 0 0-1.624 3.717c.58.4.969 1.149.969 2.004 0 1.269-.86 2.3-1.921 2.311-.074.747-.068 1.269-.04 1.493.094.748.374 1.215 1.68 1.588 1.309.373 3.083 2.661 3.083 2.661.126 0 1.059-1.68.374-4.342z" fill="#d4af3a"/><path d="M298.61 110.259c.477-.387.561-.98.181-1.319-.374-.34-1.066-.3-1.543.09-.475.39-.56.983-.181 1.322.376.339 1.068.3 1.543-.093zM290.15 115.975c.535-.488.63-1.228.204-1.655-.424-.427-1.204-.376-1.743.113-.537.486-.628 1.227-.204 1.653.424.428 1.204.377 1.743-.11z" fill="#d4af3a"/><ellipse cx="285.11" rx="1.306" cy="123.163" ry="1.284" fill="#d4af3a"/><path d="M313.31 105.025c-.678.149-1.932.557-3.808 1.54h.034c1.305 0 2.319.833 2.319 1.913 0 1.082-1.187 2.257-2.49 2.257-1.304 0-2.192-1.133-2.192-2.215 0-.253.06-.499.167-.722-.556.343-1.15.722-1.784 1.15-4.156 2.802-5.136 4.157-7.189 7.986-2.055 3.826-2.802 8.03-1.916 10.505.888 2.473 4.157 2.988 4.203 2.988.047 0-.373-.374-.421-.839-.047-.47.094-.702.234-1.637.14-.931.046-2.051.046-2.051s.747-.095 1.167.42c.422.512 1.03 1.12 1.448 1.631.42.514 1.54 1.496 1.54 1.496s.656-.936.656-2.057c0-1.118-.747-2.332-.888-4.294-.141-1.962.888-5.465 2.8-8.031 1.916-2.568 5.51-4.902 6.584-5.417 1.074-.511 1.26-1.307 1.308-1.774.046-.467.14-.792.232-1.96.096-1.168-.978-1.121-2.05-.889z" fill="#d4af3a"/><path d="M309.185 109.46c.735 0 1.404-.662 1.404-1.268 0-.607-.572-1.075-1.308-1.075-.735 0-1.332.493-1.332 1.097 0 .605.5 1.246 1.236 1.246zM315.365 133.874c1.002.408 2.133.178 2.666-.177.532-.357.712-1.265.08-1.784-.628-.517-1.565-.5-2.147-.177-.582.324-1.892 1.247-1.892 1.247s.291.486 1.293.89z" fill="#d4af3a"/><path d="M318.575 134.999c-.361.558-.628.897-1.742.945-1.113.048-2.32-.024-3.046-.752-.726-.726-1.233-1.746-1.233-1.746l-1.257-.024s-.41 1.748-.966 2.229c-.556.486-2.491.56-3.337-.072-.846-.631-1.62-1.407-1.764-1.31-.144.098 0 .728.87 1.48.87.75 1.473 1.213 2.877 1.213h7.977s1.62.095 2.08-.874c.459-.97.48-1.577.266-1.818-.217-.242-.362.169-.725.728z" fill="#d4af3a"/><path d="M306.44 133.647c1.197.664 1.859.26 2.293-.276.438-.534.518-.777.518-.777s-1.131-.406-1.68-.73c-.55-.323-.921-.632-1.47-.568-.55.066-.63.147-.63.147s-.227 1.538.969 2.204z" fill="#d4af3a"/><ellipse cx="300.665" rx="2.662" cy="121.86" ry="2.639" fill="#b96b29"/><path d="M305.285 112.716c-1.065-.717-2.63-.43-3.497.639-.864 1.072-.7 2.524.368 3.24 1.065.718 2.632.43 3.498-.639.864-1.068.699-2.52-.369-3.24z" fill="#b96b29"/><ellipse cx="300.56" rx="1.546" cy="121.518" ry="1.474" fill="#d4af3a"/><path d="M304.175 113.007c-.685-.188-1.533.15-1.89.753-.357.605.021 1.248.934 1.434 1.682.344 2.483-1.768.956-2.187zM263.51 319.005s-4.113 1.965-5.417 2.314c-1.303.356-1.605.356-1.605.356s-2.809 2.563-4.866 3.77c-2.16 1.272-4.639 2.194-7.122 2.469-3.211.349-12.037.249-16 .099-3.963-.15-6.418.804-8.126 2.716-1.705 1.913-2.105 4.678.052 6.792 2.157 2.113 4.563 1.057 5.367-.25.8-1.31.4-2.97.049-3.724-.35-.756.703-1.008 1.806-1.057 1.104-.05 2.96.1 4.665.352 1.706.251 4.716 1.257 6.02 1.962 1.304.705.551.806-.352.654-.903-.151-1.905-.502-3.511-1.104-1.605-.603-2.96-.906-3.962-.958-1.002-.05-.654.504-.451.855.2.352.751 1.208.901 1.611.152.403-.3 1.908-.3 1.908l.501.959s.602-.959.803-1.458c.2-.506-.051-1.46.15-1.913.201-.453 1.053-.453 1.705.303.653.753 1.406 1.66 1.755 3.568.351 1.913-.301 3.272-.301 3.272s.804.657.954 1.105c.151.455-.201 2.267-.201 2.267s.552.351 1.054-.707c.501-1.054 1.103-2.916 1.253-3.571.15-.654.601-1.86 1.404-.956.802.905 1.354 2.013 1.506 2.567.148.552.148 1.006.148 1.006s1.806-1.762 2.408-2.769c.601-1.006 1.855-2.515 3.562-3.922 1.706-1.409 4.664-4.226 6.119-5.183 1.453-.955 5.166-2.968 6.32-3.672 1.153-.703 1.354-.753 1.555-2.718.201-1.963 1.155-3.72 1.605-5.08.435-1.365.54-1.86.54-1.86zM197.735 245.28c-.033-.335-.702-1.509-.869-2.112-.168-.602-.769-.235-.769-.235s-1.305.738-2.274 1.006c-.969.269-1.104-.099-1.204-.602-.1-.506-.335-2.08-.501-3.187-.168-1.104-.402-1.036-.803-.873-.4.17-1.605.605-2.44.975-.836.367-.569.771-.302 1.239.267.471 1.238 2.448 1.671 3.153.435.704.033 1.006-.47 1.242-.5.234-1.236.335-2.239.669-1.004.335-.936.57-.837.906.1.338.77 1.712 1.137 2.346.367.638.702.203.702.203s1.071-.971 1.972-1.409c.904-.433.97-.301 1.204.37.234.671 1.272 4.193 1.471 4.863.201.668.535.602 1.004.404.468-.201 1.102-.303 1.638-.471.535-.167.736-1.24.736-1.24s-1.972-3.554-2.508-4.461c-.535-.907 0-1.108.402-1.174.4-.066 1.57-.234 2.574-.469.99-.255.72-.825.69-1.17zM220.025 341.85c-.15-.857 0-1.713-.652-2.365-.653-.656-1.455-1.962-1.755-3.018-.3-1.058.25-1.56.15-2.165-.1-.603-.903-.603-1.704.053-.804.654-1.857 1.257-1.857 3.168 0 1.909.703 4.176 3.361 4.978 2.655.81 2.61.21 2.46-.645zM222.725 340.935s-.552-.351-.802.151c-.251.503-.202.756.5 1.862.702 1.105 1.155 1.359 1.956 1.86.803.504.251-.501.15-.804-.099-.303 0-.704-.199-.957-.201-.252-.303-.553-.303-1.356 0-.795-1.305-.75-1.305-.75z" fill="#d4af3a"/><path d="M225.98 349.995c.501-.757.954-.957 2.157-1.509 1.203-.552 3.41-.855 4.161-.906.753-.051 2.458-1.509 2.207-3.021-.251-1.509-1.355-2.112-2.307-2.313-.953-.201-1.806-.201-2.106.25-.302.455-.854 1.058-1.907 1.409s-1.204.705-1.855.906c-.653.203-.152.605-.702 1.058-.552.451-1.304 0-2.157-.253-.852-.252-.903-.402-1.856-.454-.953-.05-3.46-.2-3.46-.2s-.101-.05-.651-.05c-.552 0-.603.1-.852.705-.251.602.049 2.113.652 2.867.602.753 2.558 1.106 3.861 1.51 1.305.4 1.958.553 3.062.752 1.14.195 1.29-.015 1.784-.765zM238.175 351.195c1.053-.705.45-1.913.201-2.666-.25-.756-1.706-.906-2.458-.906-.753 0-1.154 0-1.556.351-.402.351-.952.855-2.056 1.21-1.101.35-1.956.752-3.461 1.357-1.504.602-1.957 1.608-2.608 2.014-.653.401-1.905 0-1.905 0s-.905-.253-1.205 0c-.301.248 0 .752.602 1.406.603.657 1.755.605 3.058 1.008 1.305.402 1.556.099 2.058-.252.501-.351.903-1.105 1.806-1.66.903-.553 2.859-.655 3.812-.754.975-.105 2.685-.405 3.735-1.11zM238.175 346.62c.45.405.953.959 1.355.301.402-.652 1.053-2.011.601-2.815-.453-.804-1.002-1.51-1.002-1.51s-.753 2.314-1.104 2.919c-.33.615-.285.705.165 1.11zM234.11 339.675c0-1.31-.903-2.919-.903-2.919s-.301 1.208-.852 2.265c-.552 1.054-1.104 1.61-1.104 1.61s1.305.35 1.806.35c.501 0 1.065.016 1.065-1.29zM226.595 342.45c1.404-.301 2.157-.855 2.759-1.357.601-.503.953-1.864.551-2.566-.4-.708-1.404-1.459-1.804-1.459h-.753s-.402 1.308-.953 1.962c-.551.655-1.202 1.105-1.153 1.962.045.84-.06 1.74 1.35 1.44zM229.445 336.06c.051-.654-.203-1.357-.652-1.81-.452-.453-.754-.753-.754-.753s-.1 1.005-.199 1.558c-.1.553-.15.654-.15.654s.402.405.753.555c.345.135.945.45.99-.21zM212.105 300.375l.948-5.928c-.713-5.926-3.795-11.537-6.243-15.411-2.451-3.872-4.98-9.957-6.087-13.198-1.105-3.242-1.848-7.679-1.848-10.001 0-2.325.992-3.52.992-3.52s.43-.63.033-1.03c-.398-.397-1.025-.031-1.655.597-.63.629-1.29 1.792-1.556 2.621-.265.833-.265 1.13-.265 1.13s-1.257-.297-3.276-.131c-2.019.164-2.978.332-3.045.762-.066.432.265.765 1.72 1.395 1.457.63 2.384.895 3.111 1.76.73.862 2.591 5.197 3.16 7.29.568 2.093 1.784 7.77 2.278 12.224.493 4.455 1.996 9.852 4.098 14.36.69 1.485 4.455 8.505 7.635 7.095zM215.78 310.815c-1.373.766-1.321 6.375-.713 9.282.611 2.909 3.458 6.53 4.322 7.498.866.97 1.068.97 1.527.714.459-.253.66-.253.66-.253s1.221-.408 2.138-1.122c.913-.716.557-2.5.404-4.082-.153-1.584-1.372-4.746-3.609-8.415-2.22-3.675-3.345-4.395-4.71-3.63zM217.295 306.27c0-1.83-1.587-3.213-3.411-3.213-.863 0-1.623.217-2.094.642-1.851 1.67-.735 5.836 1.94 5.836.969 0 2.101-.162 2.802-.832.63-.585.764-1.56.764-2.43zM243.815 358.98c-.73-.129-1.161-.427-2.238-1.16-1.075-.73-2.797-2.237-3.099-2.97-.303-.732-.303-.775-1.335-.429-1.034.344-2.498.3-3.615.344-1.119.044.128 1.29.903 2.456.775 1.16.516 5.077.516 5.077s0 .345-.173.906c-.172.558-.042.947.258 1.075.302.13.473-.129 1.248-1.035.776-.903 2.196-3.268 2.196-3.268s.216.04 1.421.343c1.204.303 3.142.13 4.132-.172 1.02-.3.54-1.035-.195-1.17z" fill="#d4af3a"/><path d="M239.21 362.01c-.516-.087-.73-.13-.99.211-.257.347-.472.995-.602 1.337-.128.345-.086.648.217.906.301.26.732.56.732.56s.43.474.862.687c.43.217.515-.428.515-.903 0-.473.258-1.335.258-1.895s-.45-.825-.975-.9z" fill="#d4af3a"/><path d="M434.93 324.165c-1.258-.298-1.792-.777-1.792-.777s-.539-.06-.962.719c-.414.775-2.031 1.792-2.031 1.792s-2.272.6-2.572 2.157c-.299 1.554.778 2.093 1.854 1.913 1.08-.18 3.71-.719 4.843-2.093 1.137-1.377 1.317-2.155 1.556-2.695.21-.525.344-.705-.916-1.005zM438.455 311.775c-.818-3.459-3.051-7.732-7.357-9.873 0 0-1.616 5.685-2.095 7.48-.48 1.793-.48 1.734.897 2.094 1.374.357 5.801 1.314 6.7 1.554.898.24 2.4 1.005 1.86-1.275zM417.935 308.55c1.016.18.897-.24 1.256-1.615.358-1.374 2.152-8.195 2.152-8.195s-4.544-.18-8.493 1.732c-3.95 1.915-5.684 5.444-5.684 5.444s1.019.419 3.711 1.019c2.7.585 6.045 1.425 7.065 1.605zM407.405 317.94c-1.613-.298-2.212-.478-2.212-.478s1.017 3.886 2.692 6.042c1.674 2.153 3.53 3.232 6.999 3.29 3.47.06 6.1-1.854 6.52-3.349.419-1.497 1.138-2.631 1.138-2.631s-6.282-.842-8.855-1.438c-2.61-.6-4.695-1.14-6.315-1.44z" fill="#1d5e91"/><path d="M406.325 315.48c1.557.358 14.358 2.811 15.435 3.051 1.079.237 1.974.477 2.274.177.301-.297.478-.477 1.615-.898 1.137-.416 1.079-1.554 1.079-1.554s.298-1.079.415-2.154c.122-1.076.72-1.436 1.976-.119 1.257 1.314 1.496 3.228 1.734 5.085.24 1.854 3.172 2.333 4.306 2.513 1.139.18 1.674-.18 2.334-1.256.659-1.077 1.019-3.231 1.197-4.608.179-1.374.062-1.255-1.375-1.614-1.435-.357-8.076-1.852-9.274-2.155-1.194-.299-.956-1.076-.777-1.913.178-.837 2.81-9.274 2.81-9.274-1.873-1.158-4.506-1.848-7.656-2.213 0 0-1.914 8.613-2.275 9.932-.357 1.314-1.197 1.314-2.571 1.074-1.377-.237-11.309-2.568-11.309-2.568l-.775 1.85c-.779 1.855-1.137 4.07-1.137 5.206 0 1.135.405 1.11 1.95 1.455z" fill="#d4af3a"/><path d="M440.3 323.265c-1.32-.863-2.29-1.09-2.978.516-.688 1.607-.744 3.96-2.463 5.622-1.719 1.663-4.125 3.384-6.53 3.213-2.405-.172-3.78-.747-3.209-3.5.574-2.752 4.24-3.613 5.098-5.047.858-1.434.63-3.098-.631-4.186-1.26-1.092-3.093-1.32-3.608-.975-.514.343-2.005 1.606-2.748 3.668-.745 2.066-1.203 3.73-2.808 5.05-1.6 1.318-5.725 2.638-8.932 1.891-3.207-.746-4.352-1.72-5.556-4.875-1.203-3.155-2.634-8.373-3.266-8.948-.628-.573-1.43-1.032-2.805-.058-1.375.973-1.489 2.409-1.66 3.558-.173 1.146 0 2.469 1.372 4.131 1.376 1.662 2.808 3.325 3.324 5.044.516 1.721 2.061 4.361-.115 4.475-2.175.114-3.149.171-4.81-1.433-1.661-1.606-8.135-6.024-9.908-7.459-1.776-1.434-2.52-1.892-2.52-1.892-2.996-.052-5.996-1.284-8.991-3.325 0 0 1.719 4.414 2.061 6.078.343 1.663.286 2.58.286 2.58s6.528 3.327 9.107 4.59c2.577 1.261 7.788 4.245 10.306 5.791 2.523 1.551 4.641 3.96 9.108 3.042 4.469-.918 13.515-3.67 16.436-4.531 2.922-.861 10.998-2.868 13.975-4.932 2.978-2.064 3.266-1.95 3.779-4.016.51-2.025 0-3.165-1.32-4.035zM423.065 292.38c.496-.066.696-.134 2.219-.332 1.525-.2.96 1.26.694 1.824-.264.563-.728 1.691-1.355 2.751-.632 1.065.197 1.23.628 1.395.43.168 1.059.233 2.284.566 1.227.33.993-.566 1.028-1.029.033-.467.097-2.888.232-3.749.132-.86.925-.63 1.224-.465.298.165 1.059.594 1.69.926.627.336.926-.032 1.06-.396.133-.364.429-1.028.696-1.99.265-.962-.332-.764-.93-.764-.594 0-1.457 0-2.45-.032-.993-.033-.364-.996-.364-.996s.729-1.192 1.291-2.089c.564-.895.366-1.028-.2-1.196-.56-.166-2.317-.563-2.814-.695-.496-.131-.727-.066-.727.267s-.068 2.055-.068 2.719c0 .661-.064 1.06-.927 1.093-.86.032-1.392-.468-2.086-1.228-.696-.76-.993-.464-1.06-.164-.067.299-.63 2.487-.763 3.084-.165.585.165.555.66.48zM427.865 314.115s-.061 1.736-.24 2.333c-.18.6-.597 1.497.12 1.735.719.24 1.375.537 1.791.418.421-.118.24-.957 0-1.674-.237-.718-.596-1.617-1.135-2.214l-.525-.585zM438.395 321.045c.24.537.719.657 1.079.778.358.119.838.119.838-.538s.118-1.496-.417-2.214c-.538-.719-.825-1.242-1.137-.18-.315 1.08-.6 1.635-.36 2.16zM401.72 314.055c.298.06 1.435.418 1.435.418s0-1.675.239-2.812c.238-1.134.719-1.913.3-1.913-.418 0-.657.359-.96.837-.297.477-1.137.599-1.434 1.974-.3 1.365.12 1.425.42 1.485z" fill="#d4af3a"/><circle cy="311.175" cx="408.905" r="2.334" fill="#b96b29"/><circle cy="312.795" cx="415.475" r="2.392" fill="#b96b29"/><circle cy="316.86" cx="434.63" r="2.394" fill="#b96b29"/><circle cy="314.355" cx="422.06" r="2.394" fill="#b96b29"/><circle cy="308.61" cx="423.8" r="2.394" fill="#b96b29"/><circle cy="302.865" cx="425.48" r="2.394" fill="#b96b29"/><circle cy="310.95" cx="409.07" r="1.165" fill="#d4af3a"/><circle cy="312.555" cx="415.655" r="1.197" fill="#d4af3a"/><circle cy="316.62" cx="434.81" r="1.196" fill="#d4af3a"/><circle cy="314.115" cx="422.24" r="1.196" fill="#d4af3a"/><circle cy="308.37" cx="423.98" r="1.196" fill="#d4af3a"/><circle cy="302.625" cx="425.66" r="1.197" fill="#d4af3a"/><path d="M349.528 359.115c-1.261-.801-2.356-1.689-5.217-3.588-2.86-1.9-3.912-4.01-3.912-4.01h1.01c.547 0 1.01-.76 1.051-1.519.044-.76 0-2.32-.21-4.136-.21-1.813.294-3.29.294-3.29s1.22 1.137 3.071 2.109c1.851.97 2.61.505 2.61.505l.463-1.854s.798 1.689 1.935 3.669c1.137 1.983 4.208 4.179 6.395 5.823 2.188 1.647 4.587 3.378 6.396 4.011 1.809.631.756 1.478.756 1.478s-1.809 1.812-6.479 2.656c-4.669.845-6.901-1.053-8.163-1.854z" fill="#d4af3a"/><path d="M333.193 357.3c1.668-.175 2.666-.805 2.988-2.618.212-1.18-.085-5.697-.085-5.697s.547.464 1.179 1.226c.631.757 2.062.927 2.062.927s.21.633.842 1.644c.631 1.016 1.431 2.24 3.03 3.25 1.597 1.015 3.448 2.197 4.67 3.209 1.22 1.014 2.65 2.196 4.249 3.081 1.599.887 3.03 2.322 3.577 4.683.546 2.363.125 3.123-1.725 2.997-1.85-.127-2.062.042-5.049-.718-2.988-.76-7.236-4.092-10.348-6.075-3.119-1.985-5.39-5.909-5.39-5.909z" fill="#d4af3a"/><path d="M324.913 360.03s1.263-1.6 1.725-3.418c.464-1.814 1.346-5.4 1.346-5.4s.421 1.14 1.431 3.288c1.011 2.154 2.734 2.66 2.734 2.66s.086.927 1.515 2.742c1.431 1.814 3.533 3.502 5.681 4.77 2.146 1.263 4.923 2.997 6.438 5.148 1.513 2.153 1.641 4.388.924 5.359-.716.969-1.724-.128-3.155-.845-1.43-.717-5.512-1.35-11.149-4.389-5.637-3.037-7.49-9.915-7.49-9.915z" fill="#d4af3a"/><path d="M322.468 372.66c-1.557-2.32-1.81-7.973-1.81-7.973s.546-.379 1.305-1.015c.756-.633 2.229-2.868 2.229-2.868s.925 1.94 1.935 3.755c1.01 1.816 1.516 2.448 3.62 4.389 2.102 1.942 4.964 3.841 6.185 5.908 1.22 2.067.546 6.203-.253 7.595-.8 1.395-1.935.927-3.113-.21-1.179-1.139-1.557-1.434-3.618-3.207-2.06-1.773-4.924-4.053-6.48-6.374z" fill="#d4af3a"/><path d="M340.978 325.335c-.828-1.692-1.764-3.744-2.52-4.785a14.915 14.915 0 0 1-1.294-2.234s2.016 1.836 2.808 3.132c.79 1.295 1.294 2.555 1.656 3.96.357 1.403.178 1.617-.65-.073zM332.983 326.775c-.324-1.117-.505-1.86-.505-1.86s-.326-1.08-.146-1.152c.18-.073 1.01.67 1.586 2.505.577 1.837 1.44 4.498 1.26 4.606-.179.11-1.87-2.983-2.195-4.099zM326.683 331.845c-.36-.79-.36-.827-.36-.827s-.648-2.087-.648-2.52c0-.43.216-.934.755.145.541 1.081.576 2.122.685 2.592.107.468.719 2.088.54 2.232-.18.144-.612-.827-.972-1.622zM346.243 351.045l.843-.507s.504.676 1.22 1.435c.715.758 1.516 1.055 2.062 1.773a7.945 7.945 0 0 0 2.693 2.279c1.303.675 1.809.887 1.555 1.098-.252.212-1.135-.295-1.135-.295s-.378-.044-1.935-.971c-1.557-.927-1.935-1.434-2.945-2.32-1.009-.887-2.358-2.492-2.358-2.492zM339.418 359.115c-.589-.633-1.219-1.056-.883-1.395.337-.336.757-.294 1.305.17.546.465 2.103 1.939 2.818 2.574.716.633 1.304 1.014 2.02 1.561.715.549 2.272 1.392 3.028 1.814.757.423.042.468.042.468s-.59-.299-1.22-.51c-.63-.21-2.439-1.013-2.439-1.013s-.715-.337-1.683-1.012c-.967-.674-2.398-2.025-2.988-2.657zM331.558 364.56c-.504-1.011.042-.719.884-.378.841.338 2.734 2.406 3.828 3.163 1.093.758 2.02 1.055 2.944 1.521.926.464.926.716.882.928-.04.211-.418.211-.798.042-.379-.168-1.683-.929-1.683-.929s-.547-.166-1.053-.211c-.505-.042-1.219-.594-2.356-1.562-1.133-.97-2.142-1.558-2.648-2.574zM327.898 371.775c1.39.845 3.786 2.742 4.418 4.01.633 1.267 1.053 2.152.843 2.362-.21.211-.884-.211-1.179-.719-.294-.505-.926-1.266-.926-1.266s-2.397-2.36-3.28-2.91c-.884-.549-2.315-2.109-2.652-3.037-.336-.93-.084-1.434-.084-1.434s1.473 2.15 2.86 2.994z" fill="#b96b29"/><path d="M364.963 169.92c1.272-.747 4.692-2.21 8.334-2.518 3.64-.308 6.453.24 9.474 1.056 2.165.585 3.918.675 5.652.21 2.606-.695 4.626-3.047 5.313-5.928 0 0 2.403 3.08-.054 6.424-1.18 1.608-2.718 2.613-4.284 2.93-5.098 1.027-10.099-2.085-14.346-2.357-4.078-.266-7.28 2.32-7.28 2.32s-.965.802-2.324.011c-1.362-.795-1.757-1.401-.485-2.148z" fill="#c52126"/><path d="M379.648 317.49s.501-.05 1.203-.151c.702-.101 2.207-.603 2.658-.806.452-.2 1.154-.25 1.605.252.452.504 4.113 2.666 4.113 2.666h-6.069c-2.106 0-3.51-1.961-3.51-1.961z" fill="#d4af3a"/><path d="M362.563 316.455v-.606l.809-1.742s.943.593 1.863 1.544c1.183 1.228 2.457 2.955 3.025 3.684 1.011 1.295 2.424 2.513 1.212.444-1.212-2.067-1.615-2.958-2.584-4.336-.97-1.377-1.698-1.985-1.578-2.067.121-.081.891-.201 3.436-.525 2.544-.327 4.121-1.298 5.292-1.988 1.172-.688 3.273-1.822 3.273-1.822s4.323 1.822 5.94 2.227c1.617.405 2.586.648 1.011 1.419-1.576.77-2.908 1.013-3.676 1.497-.767.489-3.152 1.257-4.607 1.257-1.453 0-3.918.039-2.949 1.053.97 1.016 2.061 2.961 3.111 5.916 1.05 2.961 1.091 5.594 1.091 6.891 0 1.298-.16 2.592-.16 2.592s-1.778-1.983-6.547-4.981c-4.767-3-6.544-4.013-7.434-4.42-.888-.403-1.335-.403-1.171-1.537.159-1.135.643-3.931.643-4.5z" fill="#d4af3a"/><path d="M344.353 301.965a68.5 68.5 0 0 0 .885-.402c.08.021.153.043.22.078.559.28 3.467 2.238 4.642 4.141 1.174 1.901 2.349 2.07 1.063 0-1.287-2.073-2.238-3.246-3.244-4.141a23.401 23.401 0 0 0-1.016-.854c2.34-1.128 4.881-2.494 7.34-4.206.318.635.928 1.76 1.62 2.489 1.006 1.062 3.244 1.959 3.244 1.959s-1.789-1.847-2.406-3.246c-.391-.893-.648-1.854-.781-2.432 1.711-1.333 3.351-2.853 4.815-4.597.298 1.21 1.266 4.156 4.132 7.365 3.747 4.197 11.244 6.321 11.244 6.321s2.628.28.503.84c-2.126.56-3.636 1.51-7.776.781-4.139-.724-4.418-.894-4.977-1.059-.56-.169-2.07-.057 0 .726 2.068.782 6.88 1.508 8.725 1.343 1.847-.167 4.364-.56 1.734.84-2.629 1.4-3.748 1.957-5.37 1.957-1.623 0-2.293.504-3.86.504-1.567 0-2.012-.28-3.133-.504-1.119-.222-1.845.167-1.845.615 0 .447 1.51 1.677 1.454 4.755-.056 3.077-.279 5.091-.558 5.982-.282.899-.953 2.351-1.4 3.192-.447.839-.616 1.676-1.062-.112-.447-1.791-1.453-4.364-1.846-6.096-.392-1.734-.615-1.79-.783-2.685-.167-.896-1.119-1.566-.67.055a133.43 133.43 0 0 1 1.285 5.147c.337 1.455 1.119 4.138-.222 2.013-1.343-2.124-6.377-7.775-7.215-8.781-.839-1.007-1.51-1.959-2.126-2.796-.615-.84-2.349-1.959-3.189-3.189-.759-1.113-2.982-3.28-3.936-4.056 1.424-.605 2.925-1.238 4.51-1.947zM413.893 172.845c-.133 3.083-3.546 8.98-5.487 12.13-1.94 3.152-2.475 4.421-2.142 4.624.336.2 1.139-1.407 2.21-2.813 1.071-1.407 3.144-4.69 4.884-7.17 1.74-2.48 4.282-8.376 4.617-8.913.334-.535.47-.872 1.338-.203.87.671 2.542 7.172.534 11.596-2.007 4.422-5.018 7.636-6.288 9.178-1.272 1.542-2.945 3.954-2.676 4.157.267.199.735-.404 2.274-2.012 1.539-1.608 4.083-4.356 5.754-6.366 1.359-1.632 3.202-4.947 3.849-6.132.243-.449.556-.327.79-.093.551.553 1.433 1.839 1.049 5.354-.536 4.893-3.078 7.707-5.352 10.186-2.276 2.48-4.551 4.556-4.217 4.891.335.337 2.676-1.742 4.283-3.283 1.605-1.54 5.554-5.36 6.423-6.434.871-1.07 2.14-.537 2.074 3.686-.066 4.222-4.75 8.511-6.69 10.857-1.942 2.344-4.35 3.75-4.15 4.22.201.469 2.142-.736 3.412-1.609 1.271-.871 6.023-3.954 6.959-4.624.936-.669 1.405.603.201 4.624-1.205 4.019-4.685 7.236-6.758 8.71-2.074 1.474-5.419 3.281-5.218 3.754.2.468 1.605-.135 3.546-1.074 1.94-.938 4.281-1.809 5.955-2.277 1.674-.47 1.672.735 1.672.735s.336 3.417-2.14 6.165c-2.477 2.748-5.286 3.82-7.962 4.287-2.676.47-3.078.605-3.01 1.008.065.402.334.468.935.468.602 0 3.078.269 5.354.269 2.275 0 3.478.533 3.478 1.54 0 1.006.068 2.346-3.345 4.623-3.41 2.28-7.225 2.615-8.832 2.95-1.605.335-1.67.47-1.338.94.335.467 1.07.401 3.614.668 2.542.268 4.081 1.274 4.416 1.943.334.67-.201 2.682-2.277 4.088-2.073 1.408-4.749 1.878-8.765 1.609-4.015-.27-5.019-.336-5.152.336-.135.669 1.203.872 3.211 1.208 2.007.333 3.548.333 4.685 1.272 1.138.939.267 2.881-1.673 4.288-1.939 1.407-6.759 1.407-8.766 1.274-2.007-.134-5.085-.872-5.286-.336-.2.535 1.472 1.342 3.545 2.077 2.076.74 2.679 1.206 3.078 2.079.403.87.067 1.674-2.408 2.611-2.475.94-6.088.94-7.962.068-1.875-.87-2.877-1.208-3.213-.87-.333.338 0 .67.402 1.14.401.47 2.007 1.741 4.082 2.278 2.074.537 2.275.537 3.012 2.211.735 1.676-1.137 3.018-4.884 3.153-3.749.132-8.766-1.34-10.373-2.281-1.606-.939-2.208-1.139-2.475-.802-.267.334-.2.535.602 1.137.804.606 3.346 2.413 4.617 2.749 1.27.335 1.405 1.272 1.405 2.143 0 .87.335 2.614-3.01 3.419-3.347.804-7.293.203-10.907-2.346-1.164-.819-1.84-1.496-2.221-2.082.292-3.421.138-5.773-.273-7.942.71-.075 2.055-.28 3.432-.833 2.007-.802 2.81-2.679 3.279-3.685.47-1.005 1.137-1.005 1.941-.738.804.271 1.606.604 2.743.538 1.137-.066 3.546-.67 5.286-2.75 1.74-2.077 1.407-4.085 1.473-5.093.068-1.005 1.673-.267 2.475-.267.804 0 3.146-.336 5.285-1.81 2.142-1.474 2.142-3.484 2.343-4.29.201-.802 1.071-1.337 1.74-1.607.667-.267 1.74-.534 3.213-1.742 1.471-1.206 2.005-3.55 2.073-4.354.066-.804.937-.872 3.948-2.412 3.01-1.541 2.743-4.758 2.608-6.03-.133-1.275-1.537-2.345-1.537-2.817 0-.47 1.003-.602 2.007-1.206 1.003-.602 3.546-1.608 3.612-5.36.067-3.753-2.409-4.155-2.409-4.155s.47-.202 1.473-.804c1.003-.604 3.745-2.48 3.745-4.692 0-2.211-1.002-3.216-1.738-3.753-.737-.535-2.744-1.071-2.744-1.071s1.272-.805 1.808-2.547c.535-1.743.736-3.885-.534-5.427-1.272-1.542-3.413-1.542-4.551-1.542-1.139 0-2.14.603-2.543.27-.402-.336-.468-.603-.066-1.474.401-.87.468-3.017.134-3.752-.336-.738-.402-2.211-3.28-3.15-2.876-.937-5.887 1.005-6.824 1.542-.938.537-.536-.74-.536-1.675 0-.938 1.94-3.284 4.15-6.635 2.207-3.351 3.211-5.094 5.687-10.186 2.477-5.093 4.083-11.66 4.416-13.335.335-1.676 1.004-.873 1.004-.873s.669.27 2.208 4.155c1.536 3.888 1.803 7.44 1.67 10.519z" fill="#d4af3a"/><path d="M363.418 241.38c1.725-.087 3.965-1.034 5.688-3.537 1.722-2.503 4.31-3.11 8.792-3.024 4.482.087 6.55-2.07 7.671-5.176 1.12-3.11-.173-6.65-4.74-8.894-4.568-2.244-6.638-4.747-6.809-8.63-.172-3.885 4.566-8.719 9.308-14.157 4.741-5.437 8.446-13.122 8.446-13.122s1.379 1.814 1.379 3.626c0 1.812-.689 3.711 0 4.228.69.52.948-.775 3.705-1.984 2.758-1.209 5-1.38 6.723.604 1.723 1.985 0 5.438-1.551 7.079-1.553 1.64-2.844 2.85-2.414 3.454.431.605 2.759-.949 3.534-1.468.776-.519 2.586-2.502 5.258-2.244 2.671.258 3.621 1.035 3.879 3.28.258 2.244-2.414 4.227-4.137 5.093-1.724.861-2.414 1.64-1.982 1.983.431.346.863 0 1.638-.257.774-.259 2.93-.517 4.308 0 1.38.518 3.621 2.415 1.553 4.748-2.069 2.331-6.378 3.193-7.24 3.364-.862.173-1.294-.087-1.379.603-.086.693 1.81.693 4.137.78 2.326.087 3.016 2.33 2.671 4.056-.345 1.727-4.222 3.624-6.376 3.971-2.157.345-2.931 0-3.104.603-.174.603.258.862 1.466 1.209 1.206.343 3.534.604 3.966 2.503.43 1.9.516 2.762-1.295 4.404-1.81 1.64-4.741 1.38-5.602 1.208-.863-.171-1.898-1.124-2.759-.258-.86.861.777 1.552 2.243 2.589 1.465 1.038 1.378 3.022-1.12 4.404-2.5 1.383-5 .861-6.034.517-1.033-.343-2.413-1.984-3.102-.949-.69 1.035 2.154 1.381 3.362 2.848 1.206 1.466.775 3.882-1.638 5.35-2.414 1.468-6.378.431-7.068-.172-.689-.603-1.55-.86-2.067-.343-.516.514.258 1.896.775 3.105.516 1.209 1.466 4.747-2.155 6.129-3.621 1.38-6.896-1.727-7.499-2.333-.603-.603-1.206-.69-1.723-.43-.516.261-.26.777.172 1.381.431.603 1.379 3.192-1.206 5.007-1.765 1.238-3.691 1.146-4.735.966-.539-2.022-1.239-4.182-1.953-7.207h.54c.345 0 .414.518.414.725 0 .207-.104.379.208.379.311 0 .345.172.794.484.448.311.862.689 1.105.518.242-.172-.933-.795-1.243-1.174-.312-.381-.933-.968-.968-1.38-.034-.416-.241-.657-.862-1.175a2.345 2.345 0 0 1-.465-.538 97.893 97.893 0 0 1-1.193-7.223 57.121 57.121 0 0 1-.448-5.464l1.132-.059zM437.083 187.575c-3.85 7.79-9.288 12.175-9.288 12.175s.714-1.935 1.031-3.265c.313-1.332.069-2.838.069-2.838s1.365-1.75 3.886-5.637c2.522-3.886 3.852-9.629 3.852-9.629s-2.346 5.742-4.167 8.79c-1.822 3.047-3.924 5.532-3.924 5.532s-.733-2.694-1.26-2.835c-.525-.139-.91.281-1.365.875-.456.596-.843.54-.843.54s.623-1.286 1.58-2.828c.435-.7 1.07-1.456 1.518-2.164 1.435-2.268 4.53-6.577 6.117-10.889 1.587-4.312 5.06-15.124 5.664-18.302.603-3.176 1.207-1.437 1.812.909.603 2.344 1.434 5.671.906 10.662-.528 4.99-1.736 11.115-5.588 18.904zM432.103 208.605a135.863 135.863 0 0 1-3.549 2.494s.335-.781.546-1.719c.212-.937.302-2.868.302-2.868s1.689-1.482 2.865-2.508c1.176-1.027 2.655-2.356 5.58-5.98 2.925-3.626.573-1.449-1.809 1.149-2.382 2.598-6.938 6.372-6.938 6.372s0-.06-.03-.845a3.123 3.123 0 0 0-.694-1.902c-.423-.544-.2-.62 2.368-2.586 2.567-1.966 9.213-9.453 11.931-13.917 2.72-4.462 5.664-10.512 5.664-10.512s1.434 8.925-4.003 18.756c-5.436 9.83-10.799 13.007-12.233 14.066zM403.573 264.9c-2.979-1.155-2.163-4.093-2.163-4.141 0-.049 1.827.578 3.507 1.202 1.683.629 5.816 1.83 7.45 1.877 1.631.048 1.631-.19 1.681-.432.048-.239-1.25 0-3.603-.432-2.355-.434-6.488-2.6-7.208-3.08-.72-.483-.624-.58.432-.676 1.058-.095 1.97-.578 2.355-.912.383-.338 1.488.145 4.18.772 2.692.624 8.266 1.587 12.542 1.587 4.277 0 8.264-.721 8.937-.867.674-.144 1.394.242-.673 3.708-2.066 3.464-9.323 5.342-14.367 5.292-5.045-.05-10.09-2.745-13.07-3.898zM416.983 257.745c-5.205.043-7.146-1.503-7.146-1.503s0-.266.705-1.325c.707-1.058.573-2.87.573-2.87s1.236.22 3.398.53c2.161.31 4.675.619 7.455.133 2.78-.486 1.587-.795-.618-.531-2.207.265-6.44-.531-7.808-1.016-1.366-.486-.793-.927.132-1.239.926-.306 3.44-1.899 3.44-1.899s6.307.795 12.174.135c5.866-.666 9.573-2.166 10.764-2.343 1.191-.177 1.147.31 1.147.31s.31.528-1.719 3.707c-2.029 3.184-6 5.26-9.352 6.231-3.353.974-7.94 1.637-13.145 1.68zM418.318 245.55s.221-.309.53-1.371c.309-1.06-.573-1.854-.573-1.854s1.191-.352 5.073-.84c3.882-.486 4.101-.795 6.484-1.326 2.382-.53 3.97-1.236 3.926-1.502-.044-.265-.794.134-2.205.662-1.41.531-7.367 1.149-9.88 1.503-2.515.352-3.926.62-4.367.352-.441-.265-1.985-.663-1.985-.663s1.06-.306 2.382-.529c1.325-.22 2.514-.795 3.22-1.281.706-.486.926-.621 4.102-.97 3.177-.353 5.734-1.372 11.425-3.448 5.688-2.077 9.97-4.549 11.115-5.476 1.148-.927 1.06-.264.75.927-.309 1.194-.264 2.694-3.132 6.051-2.866 3.358-4.278 4.815-11.51 7.468-7.238 2.65-15.355 2.297-15.355 2.297zM439.708 227.925c-6.396 4.506-13.891 6.16-15.481 6.36-.357-.417.387-1.914.045-2.827-.414-1.094-1.104-1.104-2.648-1.193-1.543-.091-.529-.399-.177-.399.353 0 .441-.043 3-.706 2.56-.66 5.16-1.061 8.688-2.387 3.53-1.324 4.587-2.296 4.5-2.562-.088-.264-1.632.842-4.897 2.078-3.264 1.236-7.058 1.722-9.13 2.166-2.074.437-.265-.445.706-1.019.97-.576 2.338-2.696 2.338-2.696s2.294-.397 6.042-1.545c3.75-1.148 6.881-2.431 10.013-4.196 1.075-.61 2.116-1.394 3.238-2.2 2.147-1.539 4.304-3.112 5.142-3.72 1.281-.927.882-.177.75.398s-1.014 3.227-3.042 6.141c-2.029 2.916-2.69 3.8-9.087 8.307zM440.758 215.25c-6.307 4.994-11.731 6.535-12.658 6.934-.926.4-.839-.131-.662-.661.177-.531.311-2.251.311-2.251s2.25-1.283 4.764-2.741c2.514-1.46 5.292-3.445 7.144-4.725 1.853-1.281.75-1.192.177-.71-.573.487-3.132 1.99-5.689 3.58-2.559 1.591-6.44 3.888-6.44 3.888s-.088-.839-.618-1.37c-.529-.531-1.85-.396-1.85-.396s.661-.663 1.058-1.281c.396-.621 2.471-1.281 4.808-2.388 2.338-1.102 6.53-4.194 9.616-6.801 3.087-2.605 9.087-9.144 9.483-9.675.398-.531.662-.441.707.22.043.662.264 1.105-.398 4.109-.666 3.003-3.444 9.276-9.753 14.268zM418.438 168.045c-.715 1.485-1.498 2.607-2.062 3.575-.852 1.46-1.332 2.407-1.332 2.407s-.171-.514-.036-1.392c.135-.877.27-2.094.033-3.545-.125-.777-.293-1.55-.25-2.24.049-.785.311-1.463.418-1.91.202-.846 1.111-4.524 1.551-7.122.438-2.6.909-6.312.876-9.588-.033-3.275-.506-1.621-.506-.033 0 1.589-.168 4.019-.673 7.764-.506 3.747-2.09 9.451-2.09 9.451s-.1-.877-.573-2.126c-.472-1.25-1.248-2.666-1.854-4.22-.606-1.552-.393-1.812-.393-1.812s2.214-10.599 2.796-15.609c.584-5.009 1.515-18.174 1.515-18.174 3.24 3.26 5.65 11.838 6.078 19.951.321 6.113-.666 11.771-.952 14.064-.567 4.542-1.356 8.088-2.546 10.559zM425.623 184.77c-.1-2.4-.652-4.216-2.2-4.749 0 0 1.37-2.401 2.566-5.824.818-2.345 1.494-5.351 1.838-7.658.846-5.68 1.524-11.532-.17-1.95-1.692 9.58-3.724 12.972-3.724 12.972l-2.456 3.986c.363-1.751.42-2.981.327-4.893-.093-1.913-.337-4.503-.919-6.554 0 0 2.964-5.934 4.825-13.059 1.862-7.125 2.927-13.603 2.964-17.466.17-3.732.254-5.173.254-5.173s3.046 2.289 4.062 13.905c1.017 11.617-2.033 22.726-3.555 26.967-1.524 4.237-3.812 9.496-3.812 9.496zM392.383 273.36s.48-.336 1.922-1.251c1.441-.912 1.008-3.657 1.008-3.657s.384.288 1.443 1.011c1.057.722 2.257 1.538 3.699 2.117 1.441.579 2.163.963 3.075 1.25.913.29.672-.094-.096-.529-.768-.432-1.01-.673-2.933-1.443-1.92-.771-5.764-4.14-5.764-4.14s.913-.096 2.499-.144c1.585-.048 3.604-.865 3.604-.865s1.584 1.443 7.976 4.185c6.391 2.745 11.821 3.465 11.821 3.465s-.673 3.274-3.748 4.381c-2.547 1.107-6.056 1.78-12.927.146-6.87-1.635-11.579-4.526-11.579-4.526zM383.968 279.915c-.529-2.699 1.01-4.575 1.01-4.575s.336.192 1.296 1.059c.961.867 2.356 2.504 5.046 3.849 2.69 1.346 3.652 1.251 1.057-.145-2.595-1.397-6.391-5.342-6.391-5.342l1.008-.386c1.011-.385 2.74.289 9.948 4.619 7.207 4.332 11.437 4.478 11.437 4.478s-3.219 3.898-11.965 3.609c-8.747-.285-11.918-4.473-12.446-7.166zM367.438 276.78s.962 1.345 2.26 2.212c1.297.867 4.756 1.397 4.756 1.397s.144.385.816 1.251c.673.867 2.163 2.937 3.7 4.044 1.536 1.107 3.941 1.827 4.085 1.537.144-.289-1.394-.865-2.883-1.78-1.49-.912-2.835-2.6-3.845-3.753-1.009-1.157.432-.963.432-.963s1.826.046 3.509-.096c1.681-.147 1.345 0 1.825.819s1.154 1.539 2.403 2.983c1.524 1.761 2.972 3.357 4.421 5.099.96 1.156.24 1.492.24 1.492s-.434.723-4.325 1.155c-2.403.269-5.005-.034-7.744-1.614-1.697-.984-3.447-2.542-5.232-4.497-4.658-5.098-4.418-9.286-4.418-9.286zM365.368 287.31c.962 1.252 1.491 1.782 1.491 1.782s-.673-2.07-1.249-3.033c-.308-.513-.64-1-.888-1.341.643-1.446 1.171-3 1.561-4.676.428 1.385 1.758 5.447 3.411 8.088 2.016 3.222 3.797 4.379 2.643 5.243-1.153.867-3.41 1.06-5.959-.192-2.46-1.208-3.171-3.317-3.52-5.019a24.77 24.77 0 0 0 1.211-2.091c.318.196.78.564 1.3 1.239z" fill="#d4af3a"/><ellipse cx="-365.939" cy="158.625" ry="1.638" rx="1.788" transform="scale(-1 1)" fill="#d4af3a"/><path d="M369.703 155.535c-1.632-.039-2.509-.811-4.31-.637-2.126.207-5.006 1.446-8.504 3.303-2.735 1.236-6.345 1.854-9.822.856-.974-.28-1.937-.813-2.868-1.338-4.253-2.409-3.224-7.156-3.224-7.156 3.138 2.263 7.017 3.48 10.631 3.234 0 0-.275.207-.891.826-.618.62-1.748 1.34-1.373 1.653.374.31 1.92-1.171 3.224-2.134 1.303-.965 3.223-2.271 6.516-3.231 3.292-.966 6.996-1.032 9.465.34 2.469 1.379 2.674 3.099 2.331 3.786-.189.386-.644.512-1.175.498zM323.488 190.2c.755-.207 2.057-.412 3.771-1.995 1.716-1.581 5.831-6.123 6.312-6.948.48-.827.275-1.583-.892-2.066-1.166-.48-1.989-1.995-1.989-1.995s2.536-.964 4.251-2.203c1.716-1.236 5.694-4.815 6.243-5.709.549-.894.274-1.032-.549-1.307-.825-.276-1.03-.826-1.03-.826s1.852-1.169 3.565-2.544c1.716-1.376 4.047-3.647 4.047-3.647 2.57 1.032 6.601.597 8.78.207 3.841-.687 6.652-2.27 6.652-2.27s.138.619.618 1.789c.48 1.168 2.263 1.858 4.047.687 1.783-1.169 1.372-3.714 1.372-3.714s1.44-.894 4.39-1.995c2.948-1.101 5.348-1.239 7.75-.138 2.401 1.1 3.567 4.402 3.567 6.88 0 2.475-1.305 1.445-1.578 1.098-.275-.343-.824-2.133-3.842-2.613-3.018-.483-5.761.963-9.19 3.782-3.429 2.823-4.184 3.028-5.898 4.816-1.715 1.79-.344 2.751 2.605 3.716 2.95.964 6.722-.963 6.86-.893.567.284-1.272 2.907-3.816 3.899-2.544.99-5.796.348-8.325-.666-1.715-.687-2.034.022-2.537.55-2.785 2.928-3.51 5.672-3.978 9.014-1.423-.438-2.409-1.86-2.607-3.027-.094-.56-.274-1.79-1.234-.896-.96.896-1.715 5.847-1.715 8.118s.687 5.298.687 5.298l-.687-.069c-.412-.069-1.234-.55-2.332-1.168-1.097-.621-1.166.069-1.166 1.306 0 1.238-.41 3.578-2.058 7.775-1.647 4.197-4.047 5.571-4.047 5.571s-.481-.825-.961-2.475c-.479-1.652-.824-4.884-.824-7.706 0-2.821.755-8.875.755-8.875s-3.43 4.197-6.996 5.23c-3.567 1.032-7.134.413-8.643-1.308-1.505-1.719-.132-2.475.622-2.683z" fill="#d4af3a"/><path d="M346.948 201.06s1.083 2.396 1.674 3.249c.591.854.854.987.854.987s-1.083.918-2.66 1.41a35.445 35.445 0 0 1-2.988.787s1.775-2.431 2.397-4.137c.624-1.707.723-2.296.723-2.296zM325.528 199.65a71.58 71.58 0 0 1 .854-2.102c2.188.439 6.34-.589 8.143-1.673 0 0-1.642 3.346-3.283 4.497-1.643 1.149-1.872 1.215-1.872 1.215s1.641.264 3.841-1.904c2.2-2.167 3.185-4.663 3.185-4.663s-.492 5.779.394 9.324c.887 3.544 1.083 4.005 1.083 4.005s-4.66.82-9.849-.624c-5.187-1.446-5.58-1.905-5.58-1.905s-.622-.164.197-1.247c.82-1.081 2.362-3.577 2.887-4.923z" fill="#d4af3a"/><path d="M334.948 186.96c1.596-1.835 1.755-2.274 1.755-2.274s.558.558.081 1.357c-.478.797-2.752 2.79-4.308 3.668-1.557.877-3.11 1.156-3.11 1.156l.079-.319c0 .001 3.909-1.754 5.503-3.588zM341.278 199.005s.4-7.26.4-8.337.677-.798.677-.798l.797.358-1.56 10.616c-.17 1.143-.732 1.046-1.02.995.57-.296.682-2.503.706-2.834zM351.073 167.58c.593-.591 1.925-1.034.641.396-1.283 1.431-2.963 3.21-3.455 4.692-.495 1.48-.79 3.306.048 2.912.84-.397 1.433-.397 2.321-1.136.89-.741 2.566-1.977 3.258-2.172.691-.198 1.924 0 .937 1.085-.987 1.087-2.074 2.125-3.949 3.505-1.877 1.383-2.963 1.974-3.95 2.666a36.877 36.877 0 0 1-1.974 1.284s.89-5.924 2.519-8.54c1.629-2.616 3.012-4.098 3.604-4.692zM383.083 266.805c1.203.912 2.78 1.286 2.78 1.286s.747-.04.747.25-.872 0-1.784-.165c-.912-.167-2.157-1.08-2.613-1.411-.456-.333-1.12-.749-.912-1.331.207-.582.581.458 1.782 1.371zM372.748 272.34c.25.288 2.24 1.785 2.24 1.785s.622.414 1.287.663c.663.25.828.625.828.625s-.125.164-.828-.04c-.705-.21-2.781-1.663-3.443-2.245-.663-.584-.955-.747-.706-.996.247-.25.372-.083.622.208zM414.643 197.895c-.372.453-.825 1.073-1.032.866-.207-.206.042-.413.537-.992.495-.578.783-.867.783-.867s.701-1.116 1.115-1.53c.412-.412 1.032-.62.247.33-.784.953-1.279 1.737-1.65 2.193zM417.823 204.87c-.453.415-.865.784-1.36 1.321-.495.537-.867 1.115-1.155.827-.29-.29.742-.907 1.195-1.488.455-.579.825-.95 1.404-1.404a9.965 9.965 0 0 1 1.28-.827s-.909 1.158-1.364 1.571zM416.638 216.135c-.787.83-1.948 1.079-2.115.749-.166-.333.083-.6.744-.93.659-.33 1.733-1.033 2.27-1.405.535-.373 1.072-.786 1.444-1.156.371-.372.81-.707.948-.58.138.127-1.093 1.452-1.465 1.66-.374.207-1.038.831-1.826 1.662zM414.358 225.15c0-.332-.08-.496.582-.54.663-.04 1.577-.164 1.577-.164s1.285-.499 1.37-.25c.082.25-1.079.75-1.577.833-.498.084-1.119.249-1.409.412-.292.165-.543.039-.543-.291zM413.368 234.945c1.409 0 2.613-.335 2.696-.126.082.208-.663.541-1.37.789-.706.25-2.034.333-2.946.373-.912.041-1.078-.165-1.036-.62.042-.46 1.245-.416 2.656-.416zM402.328 245.67c.207-.207.705-.04 1.494.124.786.168 2.073.417 2.82.377.747-.04 2.364-.084 2.364-.084l.912.207c0 .208-1.201.166-2.944.373-1.742.209-2.903-.165-3.732-.29-.831-.125-1.122-.497-.914-.707zM397.768 253.305c.872.333 1.493.414 2.157.414.663 0 2.24.291 2.24.291s.747.084.622.375c-.124.29-.373 0-1.035-.084-.664-.084-1.162 0-2.323-.04-1.161-.043-1.826-.335-2.53-.458-.706-.126-1.493-.5-1.121-.957.373-.455 1.119.126 1.99.459zM388.888 259.08c.498.5 2.406 1.786 2.406 1.786s.374.291 1.121.665c.747.373.705.541.58.748-.124.207-.58-.29-.994-.457-.414-.167-1.784-1.083-2.489-1.66-.705-.586-1.617-1.042-1.45-1.456.163-.415.328-.123.826.374zM403.663 184.305s-.165.38-1.696 2.296c-1.533 1.916-.713.109-.329-.38.384-.495 2.627-3.666 3.393-4.544.765-.876.875-.438.492.108-.384.548-1.86 2.52-1.86 2.52zM406.888 194.145c-.219-.219.275-.438 1.15-1.532.875-1.094 2.626-3.337 2.626-3.337s.493-1.04.657-.931c.163.109-.602 1.75-1.313 2.464-.712.711-1.64 2.079-2.134 2.68-.494.602-.767.875-.986.656zM402.643 212.595c0-.535 1.733-.455 2.516-.62.784-.164 2.187-.454 2.187-.454s1.651-.29 1.692-.082c.042.204-.33.41-1.238.579-.907.163-2.269.577-3.301.742-1.032.165-1.856.374-1.856-.165zM406.888 202.635c-1.149.93-1.914 1.368-2.517 1.696-.601.327-1.093.822-1.423.438-.329-.385.274-.657 1.258-1.095.986-.438 1.478-.82 1.478-.82s.547-.273 1.041-.548c.493-.273 1.314-.601.163.329zM396.988 196.065c.713-.602 1.314-.933 1.314-.933s.875-.82 1.04-.547c.163.275-.984 1.094-1.532 1.586-.547.494-1.533 1.917-2.025 1.643-.492-.273.494-1.147 1.203-1.749zM403.453 221.775s.956.247 1.577.414c.621.167.663.459-.458.459-1.12 0-1.576-.291-2.695-.501-1.12-.207-1.496-.332-1.328-.705.165-.375.747-.249 1.203-.125.456.125 1.701.458 1.701.458zM401.713 231.09c.083.21-.787 0-1.368-.207-.58-.208-1.783-.83-2.488-1.038-.707-.207-.707-.333-.707-.749 0-.414.749-.084 1.66.209.911.291 2.074 1.206 2.074 1.206s.747.372.83.579zM389.728 236.73c-.83-.501-.997-.873-.705-1.123.29-.248.539-.208 1.202.332.664.54 1.95 1.454 1.95 1.454s.663.25 1.161.5c.498.248 1.12.664.954.913-.165.249-1.203 0-1.742-.458-.54-.456-1.992-1.122-2.82-1.618zM384.073 244.215c-.331-.292-1.326-.621-1.783-.956-.456-.332-.747-1.328-.374-1.453.374-.124.581.414 1.368.995.79.583 3.485 2.368 3.485 2.368l.706.291c.747.29.414.5-.208.415-.623-.085-1.037-.085-1.784-.662-.745-.582-1.077-.707-1.41-.998zM375.703 251.31c-.706-.29-1.743-1.204-2.24-1.659-.497-.459-1.12-1.04-.748-1.33.375-.29.788.084 1.37.62.58.542 2.116 2.162 2.116 2.162s.207.04 1.037.707c.83.663-.042.538-.332.249-.29-.29-.499-.458-1.203-.749z" fill="#b96b29"/><path fill="#d4af3a" d="M338.203 142.485l3.975-1.019 2.55 2.036-3.15 1.38z"/><ellipse cx="-330.779" cy="142.074" transform="scale(-1 1)" ry="3.103" rx="3.219" fill="#b96b29"/><ellipse ry="1.855" cy="141.417" rx="1.942" cx="-330.779" transform="scale(-1 1)" fill="#d4af3a"/><path d="M337.498 131.412c-.828.307-1.905.172-1.905.172s-.325-1.427.462-2.123c.788-.693 1.5-1.194 1.962-1.658.462-.465.576-.62.576-.62s0 1.235.06 2.008c.056.774-.328 1.91-1.155 2.221z" fill="#d4af3a"/><ellipse ry=".559" cy="132.975" rx=".591" cx="-335.788" transform="scale(-1 1)" fill="#d4af3a"/><path d="M340.183 132.375c.251.348.788.906.788.906s-.654.02-1.193.405c-.538.387-1.231.714-1.866.637-.634-.079-.904-.678-.769-1.1.133-.425.441-.866 1.48-1.255 1.04-.383 1.31.059 1.56.407z" fill="#d4af3a"/><path d="M337.933 136.134c2.022.181 4.694-2.054 4.694-2.054.249 1.796 1.359 2.727 3.06 3.068l-.156.08s-1.581.808-3.449 1.091c-.844.13-1.596-.016-2.503-.198-1.095-.222-2.327-.534-2.993-.945-1.219-.753-.855-2.704-.855-2.704s.179 1.479 2.202 1.662zM345.808 134.106c.83-.312 2.075-.91 2.594-.938.519-.025 1.272-.156 1.141.807-.129.963-1.114 1.431-2.073 1.457-.96.027-1.453-.338-2.023-.625-.572-.285-.468-.389.361-.701zM352.138 130.671c.906-.65 1.713-.831 1.713-.831s.596 1.562.26 2.525c-.338.962-1.038 1.22-1.893 1.193-.857-.024-2.127-.468-1.764-1.117.361-.648.777-1.119 1.684-1.77z" fill="#d4af3a"/><ellipse ry=".504" cy="135.061" rx=".699" cx="-351.314" transform="scale(-1 1)" fill="#d4af3a"/><path d="M349.378 127.297c.561-2.66.467-5.555-2.055-9.244-2.523-3.69-6.91-5.184-6.91-5.184s-.14-.28-1.54-1.773c-1.402-1.496-4.25-3.361-4.25-3.361s3.306.815 5.185 1.417l-.002.099c0 1.276 1.014 2.312 2.265 2.312.477 0 .923-.154 1.289-.412 1.02.199 4.416 2.228 5.284 2.953a2.332 2.332 0 0 0-.342 1.217c0 1.274 1.016 2.31 2.267 2.31.375 0 .727-.091 1.04-.257.101.162.197.325.289.492a23.365 23.365 0 0 1 1.624 3.717c-.58.4-.969 1.149-.969 2.004 0 1.269.86 2.3 1.922 2.311.073.747.067 1.269.039 1.493-.093.748-.374 1.215-1.68 1.588-1.308.373-3.083 2.661-3.083 2.661-.126 0-1.059-1.68-.373-4.342z" fill="#d4af3a"/><path d="M341.338 110.259c-.477-.387-.56-.98-.181-1.319.375-.34 1.066-.3 1.543.09.476.39.56.983.182 1.322-.377.339-1.068.3-1.544-.093zM349.798 115.975c-.535-.488-.63-1.228-.204-1.655.425-.427 1.205-.376 1.743.113.537.486.629 1.227.204 1.653-.424.428-1.204.377-1.743-.11z" fill="#d4af3a"/><ellipse ry="1.284" cy="123.163" rx="1.306" cx="-354.839" transform="scale(-1 1)" fill="#d4af3a"/><path d="M326.638 105.025c.678.149 1.932.557 3.809 1.54h-.035c-1.305 0-2.319.833-2.319 1.913 0 1.082 1.187 2.257 2.49 2.257 1.304 0 2.192-1.133 2.192-2.215 0-.253-.06-.499-.167-.722.557.343 1.151.722 1.784 1.15 4.156 2.802 5.136 4.157 7.19 7.986 2.054 3.826 2.801 8.03 1.915 10.505-.888 2.473-4.157 2.988-4.203 2.988-.047 0 .373-.374.421-.839.047-.47-.094-.702-.234-1.637-.139-.931-.046-2.051-.046-2.051s-.747-.095-1.167.42c-.422.512-1.029 1.12-1.448 1.631-.42.514-1.54 1.496-1.54 1.496s-.656-.936-.656-2.057c0-1.118.747-2.332.888-4.294.141-1.962-.888-5.465-2.8-8.031-1.916-2.568-5.51-4.902-6.584-5.417-1.074-.511-1.26-1.307-1.308-1.774-.046-.467-.139-.792-.232-1.96-.096-1.168.978-1.121 2.05-.889z" fill="#d4af3a"/><path d="M330.763 109.46c-.735 0-1.404-.662-1.404-1.268 0-.607.572-1.075 1.308-1.075.735 0 1.332.493 1.332 1.097 0 .605-.499 1.246-1.236 1.246zM324.583 133.874c-1.002.408-2.133.178-2.665-.177-.533-.357-.713-1.265-.081-1.784.628-.517 1.566-.5 2.148-.177.582.324 1.891 1.247 1.891 1.247s-.29.486-1.293.89z" fill="#d4af3a"/><path d="M321.373 134.999c.362.558.629.897 1.742.945 1.113.048 2.32-.024 3.046-.752.726-.726 1.233-1.746 1.233-1.746l1.257-.024s.41 1.748.966 2.229c.557.486 2.492.56 3.338-.072.846-.631 1.62-1.407 1.764-1.31.144.098 0 .728-.87 1.48-.87.75-1.473 1.213-2.877 1.213h-7.977s-1.62.095-2.08-.874c-.46-.97-.48-1.577-.266-1.818.216-.242.361.169.724.728z" fill="#d4af3a"/><path d="M333.508 133.647c-1.197.664-1.858.26-2.293-.276-.438-.534-.518-.777-.518-.777s1.131-.406 1.68-.73c.551-.323.921-.632 1.47-.568.551.066.63.147.63.147s.227 1.538-.969 2.204z" fill="#d4af3a"/><ellipse ry="2.639" cy="121.86" rx="2.662" cx="-339.284" transform="scale(-1 1)" fill="#b96b29"/><path d="M334.663 112.716c1.065-.717 2.63-.43 3.497.639.864 1.072.7 2.524-.368 3.24-1.065.718-2.632.43-3.498-.639-.864-1.068-.699-2.52.37-3.24z" fill="#b96b29"/><ellipse ry="1.474" cy="121.518" rx="1.546" cx="-339.388" transform="scale(-1 1)" fill="#d4af3a"/><path d="M335.773 113.007c.686-.188 1.533.15 1.89.753.357.605-.02 1.248-.934 1.434-1.682.344-2.483-1.768-.956-2.187z" fill="#d4af3a"/></svg>