/* ============================================================
 * AUTH v3 — Liquid Navy login + OTP redesign (wow edition)
 * Activates when html.auth-v3 is set (from new_login_app layout).
 * ============================================================ */

html.auth-v3 {
  --av-navy:#002248; --av-navy-deep:#001328; --av-navy-light:#033064;
  --av-navy-mid:#062a5a;
  --av-cobalt:#1E3A8A; --av-violet:#312E81;
  --av-gold:#E0AA4B; --av-gold-soft:#F4DCA6; --av-gold-deep:#C8943A;
  --av-ink-900:#0A1628; --av-ink-700:#334155; --av-ink-600:#475569;
  --av-ink-500:#64748B; --av-ink-400:#94A3B8;
  --av-ink-100:#F1F5F9; --av-ink-50:#F8FAFC;
  --av-border:#E8ECF2;
  --av-success:#16A34A; --av-success-bg:#DCFCE7;
  --av-danger:#DC2626; --av-danger-bg:#FEE2E2;
  --av-ease:cubic-bezier(.16,1,.3,1);
  background: #001328;
}
html.auth-v3 body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  margin: 0; padding: 0;
  min-height: 100vh;
  color: var(--av-ink-900);
  position: relative;
  overflow-x: hidden;
  background: #001328 !important;
  background-image: none !important;
  opacity: 0;
  transition: opacity .35s ease;
}
html.auth-v3 body.av-ready { opacity: 1; }

/* ============================================================
 * AURORA BACKGROUND — three drifting blurred orbs over navy
 * (positioned behind everything via fixed-position layer)
 * ============================================================ */
html.auth-v3 body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 50% at 18% 28%, rgba(224,170,75,.22) 0%, rgba(224,170,75,.0) 70%),
    radial-gradient(35% 45% at 70% 78%, rgba(33,90,180,.30) 0%, rgba(33,90,180,.0) 70%),
    radial-gradient(30% 40% at 92% 8%, rgba(224,170,75,.12) 0%, rgba(224,170,75,.0) 70%),
    linear-gradient(135deg, var(--av-navy-light) 0%, var(--av-navy) 45%, var(--av-navy-deep) 100%);
  animation: av-aurora 22s ease-in-out infinite alternate;
}
@keyframes av-aurora {
  0%   { background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%; filter: none; }
  100% { background-position: 8% -6%, -6% 8%, -4% 4%, 0% 0%; filter: hue-rotate(4deg); }
}

/* Subtle grid noise — adds depth without weight */
html.auth-v3 body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.018) 1px, transparent 1.5px);
  background-size: 18px 18px;
  mix-blend-mode: overlay;
  opacity: .5;
}

html.auth-v3 .loaderOverlay { display: none !important; }

/* Logo: rules live in the base64-inline block appended below. */
html.auth-v3 .logo-login img { display: none !important; }

/* ============================================================
 * GRID WRAPPER — :has() targets the .loginpage that actually
 * contains .loginLeft (login = outer; OTP = nested inner).
 * ============================================================ */
html.auth-v3 .loginpage:has(> .loginLeft) {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  min-height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1;
  float: none !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}
html.auth-v3 .loginpage:has(> .loginpage) {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1;
}
html.auth-v3 .loginLeft, html.auth-v3 .loginRight {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

/* ============================================================
 * LEFT — editorial hero with breathing star + drifting particles
 * ============================================================ */
html.auth-v3 .loginLeft {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 60px !important;
  position: relative;
  background: transparent !important;
  min-height: 100vh;
  z-index: 2;
}
html.auth-v3 .loginLeft center { display: contents !important; }
html.auth-v3 .loginLeft img.img-fluid { display: none !important; }

/* Floating gold particles — pure CSS, GPU-only animation */
html.auth-v3 .loginLeft::before,
html.auth-v3 .loginLeft::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
html.auth-v3 .loginLeft::before {
  /* small constellation of gold dots, layered as multiple radial gradients */
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(224,170,75,.65) 0%, transparent 60%),
    radial-gradient(circle, rgba(224,170,75,.50) 0%, transparent 60%),
    radial-gradient(circle, rgba(224,170,75,.40) 0%, transparent 60%),
    radial-gradient(circle, rgba(255,255,255,.30) 0%, transparent 60%),
    radial-gradient(circle, rgba(224,170,75,.55) 0%, transparent 60%),
    radial-gradient(circle, rgba(255,255,255,.28) 0%, transparent 60%);
  background-size: 3px 3px, 4px 4px, 2px 2px, 2px 2px, 2.5px 2.5px, 2px 2px;
  background-position:
    18% 22%, 68% 16%, 82% 60%, 30% 70%, 12% 86%, 56% 88%;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 6px rgba(224,170,75,.5));
  animation: av-twinkle 4s ease-in-out infinite alternate;
}
@keyframes av-twinkle {
  0%   { opacity: .6; transform: translateY(0); }
  50%  { opacity: 1;  transform: translateY(-3px); }
  100% { opacity: .7; transform: translateY(2px); }
}

/* Big drifting gold orb behind hero */
html.auth-v3 .loginLeft::after {
  bottom: 8%; right: 8%;
  width: 360px; height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(224,170,75,.22) 0%, rgba(224,170,75,.06) 40%, transparent 70%);
  filter: blur(28px);
  animation: av-orb 14s ease-in-out infinite alternate;
}
@keyframes av-orb {
  0%   { transform: translate(0, 0)   scale(1);    opacity: .9; }
  50%  { transform: translate(-22px, -18px) scale(1.08); opacity: 1; }
  100% { transform: translate(14px, 12px)  scale(.94); opacity: .8; }
}

/* The hero container */
html.auth-v3 .av-hero {
  position: relative;
  max-width: 600px;
  color: #fff;
  z-index: 3;
  animation: av-rise .9s var(--av-ease) both;
  /* Cursor parallax target — JS sets --av-mx, --av-my */
  --av-mx: 0;
  --av-my: 0;
  transform: translate3d(calc(var(--av-mx) * 6px), calc(var(--av-my) * 6px), 0);
  transition: transform .35s var(--av-ease);
}
@keyframes av-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* Big breathing serif star ornament — stronger glow, parallax via JS */
html.auth-v3 .av-hero::before {
  content: '\2726';
  position: absolute;
  top: -86px; left: -14px;
  font-family: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  font-size: 96px;
  color: rgba(224,170,75,.65);
  line-height: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 38px rgba(224,170,75,.7)) drop-shadow(0 0 8px rgba(255,250,236,.4));
  animation: av-breathe 5.5s var(--av-ease) infinite alternate;
  transform-origin: center;
  z-index: 4;
}
@keyframes av-breathe {
  0%   { opacity: .55; transform: scale(1) rotate(0deg); }
  50%  { opacity: 1;   transform: scale(1.08) rotate(8deg); }
  100% { opacity: .7;  transform: scale(.96) rotate(-4deg); }
}

html.auth-v3 .av-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  margin-bottom: 22px;
}
html.auth-v3 .av-hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--av-gold);
  box-shadow: 0 0 12px rgba(224,170,75,.85);
  animation: av-pulse 2.4s ease-in-out infinite;
}
@keyframes av-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224,170,75,.7); }
  50%      { box-shadow: 0 0 0 6px rgba(224,170,75,0); }
}

/* Headline — gigantic, dramatic, shimmer on gold serif */
html.auth-v3 .av-hero-title {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -.032em;
  line-height: 1;
  color: #fff;
  margin: 0 0 26px;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
html.auth-v3 .av-hero-title em {
  font-family: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.05em;
  letter-spacing: -.01em;
  background: linear-gradient(110deg,
    var(--av-gold-deep) 0%,
    var(--av-gold) 25%,
    var(--av-gold-soft) 45%,
    #FFFAEC 50%,
    var(--av-gold-soft) 55%,
    var(--av-gold) 75%,
    var(--av-gold-deep) 100%);
  background-size: 280% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: av-shimmer 6s linear infinite;
}
@keyframes av-shimmer {
  0%   { background-position: 100% 50%; }
  100% { background-position: -180% 50%; }
}

html.auth-v3 .av-hero-sub {
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
  margin: 0 0 18px;
  max-width: 480px;
  font-weight: 400;
}

/* Editorial italic tagline — wow detail */
html.auth-v3 .av-hero-tag {
  font-family: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255,255,255,.62);
  margin: 0 0 40px;
  max-width: 460px;
  position: relative;
  padding-left: 22px;
}
html.auth-v3 .av-hero-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--av-gold), transparent);
}

/* Stats — premium chip row */
html.auth-v3 .av-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}
html.auth-v3 .av-stat {
  display: flex; flex-direction: column; gap: 6px;
  padding: 0 22px 0 0;
  border-right: 1px solid rgba(255,255,255,.10);
  position: relative;
}
html.auth-v3 .av-stat:last-child { border-right: 0; padding-right: 0; }
html.auth-v3 .av-stat-num {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.022em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
  background: linear-gradient(135deg, #FFFAEC 0%, var(--av-gold-soft) 60%, var(--av-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
html.auth-v3 .av-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
}

/* ============================================================
 * RIGHT — premium glass FLOATING form card on a navy panel
 * ============================================================ */
html.auth-v3 form#auth-login-form,
html.auth-v3 form#auth-forgot-password,
html.auth-v3 form.auth-login-form,
html.auth-v3 form.auth-forgot-password-form {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 40px !important;
  margin: 0 !important;
  position: relative;
  min-height: 100vh;
  border-radius: 0;
  background:
    radial-gradient(50% 70% at 100% 0%, rgba(224,170,75,.10), transparent 60%),
    radial-gradient(40% 60% at 0% 100%, rgba(33,90,180,.08), transparent 65%),
    linear-gradient(160deg, #FFFFFF 0%, #F8F6F0 100%);
  z-index: 2;
  overflow: hidden;
}
/* Decorative gold ornament top-right of right panel */
html.auth-v3 form#auth-login-form::before,
html.auth-v3 form#auth-forgot-password::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,170,75,.25) 0%, rgba(224,170,75,.06) 40%, transparent 75%);
  pointer-events: none;
  filter: blur(8px);
  animation: av-orb 16s ease-in-out infinite alternate;
}

html.auth-v3 .loginRight {
  width: 100%;
  max-width: 440px;
  display: flex !important;
  flex-direction: column;
  position: relative;
  animation: av-rise .9s var(--av-ease) .12s both;
  z-index: 3;
}

/* Small LISRC crest above the form — uses .av-form-crest div with base64 bg
   (rules in the inline block appended at end of file). The legacy <img>
   approach is hidden; we render the crest as a div with background-image. */
html.auth-v3 .av-form-logo { display: none !important; }

/* Hide legacy bits */
html.auth-v3 .loginRight > center:first-of-type { display: none !important; }
html.auth-v3 img[src*="access-logo"],
html.auth-v3 img[alt="Access"] { display: none !important; }
html.auth-v3 .loginRight > center.card-title { display: none !important; }
html.auth-v3 .loginRight > p:not(.av-form-sub) { display: none !important; }

/* JS-injected headline */
html.auth-v3 .av-form-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--av-ink-500);
  margin-bottom: 14px;
}
html.auth-v3 .av-form-eyebrow::before {
  content: '\2726';
  font-size: 12px;
  color: var(--av-gold);
  text-shadow: 0 0 8px rgba(224,170,75,.5);
}
html.auth-v3 .av-form-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.05;
  color: var(--av-ink-900);
  margin: 0 0 10px;
}
html.auth-v3 .av-form-title em {
  font-family: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--av-navy);
  font-size: 1.04em;
  letter-spacing: -.005em;
}
html.auth-v3 .av-form-sub {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--av-ink-600);
  margin: 0 0 32px;
}

/* ----- Inputs — premium with gold focus ring + subtle background tint ----- */
html.auth-v3 .loginRight .mb-4,
html.auth-v3 .loginRight .input-group {
  margin-bottom: 14px !important;
  position: relative;
}
html.auth-v3 .loginRight input.form-control {
  height: 56px !important;
  background: #FFFFFF !important;
  border: 1px solid var(--av-border) !important;
  border-radius: 14px !important;
  padding: 0 18px !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  color: var(--av-ink-900) !important;
  letter-spacing: -.005em;
  font-family: inherit !important;
  transition: border-color .25s var(--av-ease), box-shadow .25s var(--av-ease), background .25s var(--av-ease), transform .15s var(--av-ease);
  box-shadow: 0 1px 2px rgba(2,12,27,.04), 0 0 0 0 rgba(224,170,75,0);
  width: 100%;
}
html.auth-v3 .loginRight input.form-control::placeholder {
  color: var(--av-ink-400);
  font-weight: 400;
}
html.auth-v3 .loginRight input.form-control:focus {
  border-color: var(--av-gold) !important;
  box-shadow:
    0 0 0 5px rgba(224,170,75,.13),
    0 4px 14px rgba(224,170,75,.10),
    0 1px 2px rgba(2,12,27,.04) !important;
  outline: 0;
  background: #FFFEF9 !important;
}
html.auth-v3 .loginRight input.form-control.is-invalid {
  border-color: var(--av-danger) !important;
  box-shadow: 0 0 0 5px rgba(220,38,38,.10) !important;
}
html.auth-v3 .loginRight input[type="email"] { padding-left: 46px !important; }
html.auth-v3 .loginRight input[type="password"] { padding-left: 46px !important; padding-right: 50px !important; }

/* Icon left of input — JS adds .av-input-icon next to the email/password input */
html.auth-v3 .av-input-icon {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  color: var(--av-ink-400);
  pointer-events: none;
  transition: color .2s ease;
  z-index: 1;
}
html.auth-v3 .av-input-icon svg { width: 18px; height: 18px; display: block; }
html.auth-v3 .mb-4:focus-within .av-input-icon,
html.auth-v3 .input-group:focus-within .av-input-icon {
  color: var(--av-gold-deep);
}

/* Password reveal toggle */
html.auth-v3 .input-group .input-group-append { display: none !important; }
html.auth-v3 .av-pass-toggle {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--av-ink-400);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: color .15s, background .15s;
  z-index: 2;
}
html.auth-v3 .av-pass-toggle:hover {
  color: var(--av-navy);
  background: var(--av-ink-100);
}
html.auth-v3 .av-pass-toggle svg { width: 16px; height: 16px; }

/* Forgot password link */
html.auth-v3 .loginRight .text-end {
  margin: 6px 0 26px !important;
  text-align: right;
}
html.auth-v3 .loginRight .text-end a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--av-navy);
  text-decoration: none;
  letter-spacing: -.005em;
  transition: color .15s;
}
html.auth-v3 .loginRight .text-end a small { font-size: 12.5px; }
html.auth-v3 .loginRight .text-end a:hover {
  color: var(--av-gold-deep);
}

/* ----- Sign in button — gold gradient with continuous ambient glow ----- */
html.auth-v3 .login-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 56px !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, var(--av-gold) 0%, var(--av-gold-deep) 70%, var(--av-gold) 100%) !important;
  background-size: 220% 100%;
  background-position: 0% 50%;
  color: var(--av-navy) !important;
  font-size: 15.5px !important;
  font-weight: 700 !important;
  letter-spacing: -.005em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 18px rgba(224,170,75,.34),
    0 0 0 0 rgba(224,170,75,.4),
    inset 0 1px 0 rgba(255,255,255,.45);
  transition: transform .15s var(--av-ease), box-shadow .25s var(--av-ease), background-position .8s var(--av-ease);
  font-family: inherit !important;
  animation: av-btn-glow 3.6s ease-in-out infinite;
}
@keyframes av-btn-glow {
  0%, 100% {
    box-shadow:
      0 4px 18px rgba(224,170,75,.34),
      0 0 0 0 rgba(224,170,75,0),
      inset 0 1px 0 rgba(255,255,255,.45);
  }
  50% {
    box-shadow:
      0 8px 28px rgba(224,170,75,.45),
      0 0 0 6px rgba(224,170,75,.07),
      inset 0 1px 0 rgba(255,255,255,.5);
  }
}
html.auth-v3 .login-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s var(--av-ease);
  pointer-events: none;
}
html.auth-v3 .login-btn:hover {
  transform: translateY(-2px);
  background-position: 100% 50%;
}
html.auth-v3 .login-btn:hover::after { transform: translateX(100%); }
html.auth-v3 .login-btn:active { transform: scale(0.985); }

/* Trust strip — under the sign-in button, premium feel */
html.auth-v3 .av-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--av-border);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--av-ink-500);
  flex-wrap: wrap;
}
html.auth-v3 .av-trust-item {
  display: inline-flex; align-items: center; gap: 5px;
}
html.auth-v3 .av-trust-item svg {
  width: 12px; height: 12px;
  color: var(--av-gold-deep);
}

/* Footer / sign-up text */
html.auth-v3 .loginRight .sign-txt,
html.auth-v3 .loginRight p.text-center,
html.auth-v3 .loginRight .text-center.sign-txt {
  text-align: center !important;
  font-size: 12.5px;
  color: var(--av-ink-500);
  margin-top: 18px !important;
}
html.auth-v3 .loginRight .sign-txt a,
html.auth-v3 .loginRight p.text-center a {
  color: var(--av-navy);
  font-weight: 600;
  text-decoration: none;
  margin-left: 3px;
  transition: color .15s;
}
html.auth-v3 .loginRight .sign-txt a:hover,
html.auth-v3 .loginRight p.text-center a:hover {
  color: var(--av-gold-deep);
}

/* Alerts */
html.auth-v3 .alert {
  border: 0 !important;
  border-radius: 12px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 10px 14px !important;
  margin-bottom: 16px !important;
  text-align: left;
  letter-spacing: -.005em;
}
html.auth-v3 .alert-success {
  background: var(--av-success-bg) !important;
  color: #166534 !important;
  border-left: 3px solid var(--av-success) !important;
}
html.auth-v3 .alert-danger {
  background: var(--av-danger-bg) !important;
  color: #991B1B !important;
  border-left: 3px solid var(--av-danger) !important;
}

/* ============================================================
 * OTP — 6 digit boxes
 * ============================================================ */
html.auth-v3 .av-otp-grid {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 10px !important;
  margin-bottom: 22px;
  width: 100%;
}
html.auth-v3 .av-otp-box {
  width: 100% !important;
  height: 64px !important;
  text-align: center !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0 !important;
  background: #fff !important;
  border: 1px solid var(--av-border) !important;
  border-radius: 14px !important;
  color: var(--av-ink-900) !important;
  font-family: inherit !important;
  box-shadow: 0 1px 2px rgba(2,12,27,.03);
  transition: border-color .15s var(--av-ease), box-shadow .2s var(--av-ease), background .15s var(--av-ease), transform .12s var(--av-ease);
  padding: 0 !important;
}
html.auth-v3 .av-otp-box:focus {
  border-color: var(--av-gold) !important;
  box-shadow:
    0 0 0 5px rgba(224,170,75,.18),
    0 6px 16px rgba(224,170,75,.14) !important;
  outline: 0;
  transform: translateY(-2px);
}
html.auth-v3 .av-otp-box.is-filled {
  background: linear-gradient(180deg, #FFFEF9, #FFF8E8) !important;
  border-color: rgba(224,170,75,.5) !important;
  color: var(--av-navy) !important;
  box-shadow: 0 4px 12px rgba(224,170,75,.10);
}
html.auth-v3 #otp_code.av-otp-hidden {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

/* ============================================================
 * MOBILE (≤ 768px) — single column, sheet-up form, native feel
 * ============================================================ */
/* End auth v3 ============================================ */
/* ==============================================================
 * LISRC OFFICIAL crest — vector SVG inlined as URL-encoded data URI.
 * Vector = crisp at any size; SVG fill is already brand gold (#E0AA4B)
 * so no CSS filter needed (which kept washing out detail).
 * Source: public/new_assets/img/logo.svg (205×60 horizontal layout).
 * ============================================================== */
html.auth-v3 .logo-login {
  position: absolute !important;
  top: 32px; left: 48px;
  z-index: 12;
  margin: 0 !important;
  width: 270px;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22205%22%20height%3D%2260%22%20viewBox%3D%220%200%20205%2060%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M35.1952%2054.7536L35.0264%2054.7298L35.0308%2054.9006C35.0308%2054.9482%2035.0221%2054.985%2035.0005%2055.0066C34.9789%2055.0283%2034.9529%2055.0304%2034.9378%2055.0304C34.9161%2055.0304%2034.8945%2055.0239%2034.8772%2055.0131C34.57%2054.8033%2034.9616%2054.1803%2035.007%2054.109L35.193%2053.8191L34.8556%2053.8883C34.7626%2053.9078%2034.6717%2053.9164%2034.5852%2053.9164C33.8714%2053.9164%2033.6053%2053.2697%2033.5599%2053.1399L33.4236%2052.7549L33.2873%2053.1399C33.2419%2053.2697%2032.9759%2053.9164%2032.2685%2053.9164C32.182%2053.9164%2032.0912%2053.9078%2031.9981%2053.8883L31.6607%2053.8191L31.8467%2054.109C31.8922%2054.1803%2032.2837%2054.8033%2031.9765%2055.0131C31.9592%2055.0239%2031.9376%2055.0304%2031.916%2055.0304C31.9008%2055.0304%2031.8749%2055.0283%2031.8532%2055.0066C31.8316%2054.985%2031.8208%2054.9482%2031.8229%2054.9006L31.8273%2054.7298L31.6586%2054.7536C31.319%2054.8033%2031.0832%2055.1516%2031.1135%2055.5647C31.1437%2055.9735%2031.4401%2056.3888%2032.0457%2056.3629C32.6016%2056.3391%2032.8439%2055.9476%2032.9239%2055.6253C32.9715%2055.6577%2033.0061%2055.701%2033.0256%2055.7551C33.0905%2055.9303%2033.0061%2056.1747%2032.8915%2056.3283C32.6795%2056.6095%2032.5497%2056.8041%2032.567%2057.2108C32.5843%2057.6153%2032.766%2057.9116%2032.9434%2058.1993C33.0689%2058.4048%2033.2008%2058.619%2033.283%2058.8828L33.4215%2059.3306L33.5577%2058.8828C33.6378%2058.619%2033.7697%2058.4048%2033.8995%2058.1972C34.0769%2057.9095%2034.2607%2057.6131%2034.278%2057.2108C34.2953%2056.8041%2034.1655%2056.6095%2033.9536%2056.3283C33.8389%2056.1747%2033.7567%2055.9303%2033.8195%2055.7551C33.8389%2055.701%2033.8735%2055.6577%2033.9211%2055.6253C34.0012%2055.9476%2034.2434%2056.3391%2034.7993%2056.3629C35.4028%2056.3888%2035.7035%2055.9757%2035.7316%2055.5647C35.7705%2055.1537%2035.5369%2054.8033%2035.1952%2054.7536Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M29.69%2051.1976C29.5559%2051.1197%2029.4196%2051.07%2029.2877%2051.0202C29.1125%2050.9553%2028.9459%2050.8947%2028.7988%2050.7736C28.7036%2050.6957%2028.2948%2050.2718%2028.0785%2050.0447C28.0936%2050.0295%2028.1088%2050.0165%2028.1239%2050.0014C30.2048%2050.9077%2031.0116%2052.119%2031.5026%2053.2417L31.7038%2053.7002L31.7795%2053.2049C32.0304%2051.548%2031.1133%2050.2264%2029.1968%2049.4498C29.2552%2049.4498%2029.3115%2049.4585%2029.3634%2049.4736C29.3915%2049.4823%2029.4239%2049.4888%2029.4629%2049.4974C29.597%2049.5277%2029.796%2049.5731%2029.9885%2049.7224L30.3021%2049.969L30.2545%2049.5731C30.1226%2048.4808%2029.359%2048.3185%2028.9178%2048.3185C28.5825%2048.3185%2028.2753%2048.4051%2028.0763%2048.4786C27.9163%2048.537%2027.7605%2048.6257%2027.6091%2048.7403C27.1419%2048.5262%2026.2615%2047.9378%2026.4129%2047.4901C26.4713%2047.3149%2026.5773%2047.3019%2026.6098%2047.2976C26.8088%2047.2738%2027.1008%2047.4684%2027.276%2047.741L27.4772%2048.0546L27.5399%2047.6891C27.6178%2047.237%2027.5615%2046.8736%2027.3733%2046.614C27.2652%2046.4648%2027.1159%2046.3545%2026.9342%2046.2874C26.8607%2046.2615%2026.7828%2046.242%2026.7006%2046.229C26.3437%2046.1771%2026.0322%2046.2658%2025.8008%2046.4843C25.5218%2046.746%2025.379%2047.1894%2025.4201%2047.6653C25.4807%2048.3942%2026.2529%2049.0518%2026.9624%2049.4368C26.9429%2049.465%2026.9213%2049.4931%2026.9018%2049.5234C26.4065%2049.3352%2025.3682%2049.4044%2024.6176%2049.8089C24.3429%2049.9581%2024.1179%2050.1398%2023.947%2050.3518C24.0595%2050.0382%2024.0552%2049.5969%2023.8324%2049.1902C23.6377%2048.8355%2023.3717%2048.6841%2023.1359%2048.55C22.9823%2048.4635%2022.8374%2048.3813%2022.7249%2048.2493C22.5648%2048.0633%2022.4935%2047.8448%2022.4178%2047.6134L22.262%2047.1418L22.0976%2047.5766C21.7342%2048.5348%2021.9635%2049.4001%2022.7552%2050.116C22.4783%2049.9603%2022.2642%2049.7743%2022.1149%2049.6164C21.4682%2048.9393%2021.3103%2047.7583%2021.7407%2046.8109C21.8575%2046.5513%2022.0976%2046.3372%2022.3788%2046.2377C22.6406%2046.1446%2022.9131%2046.1598%2023.1489%2046.2766C23.3652%2046.3848%2023.4474%2046.5751%2023.4517%2046.7157C23.456%2046.839%2023.4106%2046.9407%2023.3262%2046.9904C23.2138%2047.0575%2023.0386%2047.0293%2022.8352%2046.9104L22.6232%2046.7871L22.6189%2047.0315C22.6124%2047.343%2022.7357%2047.648%2022.9499%2047.8427C23.1489%2048.0244%2023.4041%2048.1044%2023.6896%2048.0741C24.1807%2048.0222%2024.5614%2047.7323%2024.7387%2047.2781C24.9702%2046.6876%2024.8209%2045.9456%2024.371%2045.433C24.1569%2045.1886%2023.88%2045.009%2023.5707%2044.8944C23.0386%2044.6997%2022.4113%2044.7062%2021.8381%2044.9441C20.9382%2045.3162%2020.3845%2046.1555%2020.2936%2047.2435C20.1985%2046.9861%2020.0946%2046.7287%2019.9778%2046.4756C19.848%2045.4806%2020.67%2044.7365%2021.1459%2044.5591L21.4292%2044.4531L21.1675%2044.2996C21.1156%2044.2693%2021.0615%2044.2433%2021.0053%2044.2238C20.7284%2044.1222%2020.3888%2044.1287%2020.0665%2044.2433C19.6642%2044.3882%2019.3311%2044.6867%2019.1277%2045.0739C18.7038%2044.557%2018.189%2044.1395%2017.5487%2043.9059C16.9387%2043.6831%2016.2162%2043.6247%2015.3575%2043.8064L14.6372%2043.9578L15.3618%2044.0897C16.9776%2044.3839%2017.7477%2045.0804%2018.2344%2045.8981C17.5984%2045.725%2017.1507%2045.8094%2016.7722%2046.162C16.4434%2046.4691%2016.3157%2046.8714%2016.4217%2047.2651C16.5191%2047.6307%2016.8024%2047.9184%2017.1442%2047.9984C17.486%2048.0784%2017.8277%2047.9486%2018.1068%2047.6328L18.4485%2047.2478L17.9575%2047.3992C17.8256%2047.4403%2017.6828%2047.4122%2017.6028%2047.3278C17.5617%2047.2868%2017.5206%2047.2132%2017.5573%2047.1029C17.6266%2046.8931%2017.739%2046.865%2017.8191%2046.8606C18.2474%2046.8433%2018.9785%2047.5636%2019.1623%2047.9919H19.1645C19.5063%2048.71%2019.9821%2049.3655%2020.9296%2049.7375L20.9361%2049.7224C21.4552%2050.5314%2022.3053%2051.2149%2023.5642%2051.3122C23.5599%2051.3641%2023.5555%2051.4139%2023.5534%2051.468C23.5361%2052.0585%2023.8216%2052.6165%2024.3148%2052.9605C24.5765%2053.1422%2024.8664%2053.2373%2025.1389%2053.2373C25.2795%2053.2373%2025.4158%2053.2114%2025.5412%2053.1616L25.7748%2053.0665L25.5953%2052.8891C25.3098%2052.6101%2025.1475%2052.1948%2025.1735%2051.8789C25.4028%2052.0888%2025.7337%2052.2769%2026.1166%2052.2986C26.573%2052.3224%2027.0143%2052.1082%2027.4231%2051.6626L27.7216%2051.3382L27.2847%2051.3879C26.6249%2051.4636%2026.2075%2051.2235%2026.0387%2050.9748C25.9263%2050.8082%2025.9068%2050.6265%2025.9868%2050.4773C26.0863%2050.2912%2026.3307%2050.1766%2026.6639%2050.1528C26.666%2050.2934%2026.7006%2050.4383%2026.7699%2050.5616C26.878%2050.7477%2027.051%2050.8558%2027.2479%2050.8558C27.3258%2050.8558%2027.4058%2050.8385%2027.4858%2050.8082L27.5421%2050.7866L27.5702%2050.7347C27.5745%2050.7282%2027.5788%2050.7217%2027.581%2050.7152C28.2148%2051.1954%2028.5738%2051.747%2028.6431%2052.3613C28.7253%2053.0838%2028.3835%2053.6591%2028.1694%2053.8863C27.8925%2054.1783%2027.4253%2054.2453%2027.1224%2054.0355C26.7958%2053.8084%2026.9191%2053.4104%2027.1441%2052.8285L27.2674%2052.5062L27.0121%2052.556C26.2637%2052.6987%2025.7467%2053.3996%2025.8592%2054.1177C25.9717%2054.8423%2026.9148%2055.5259%2027.6956%2055.4502C28.2083%2055.3982%2028.6647%2055.1171%2029.0129%2054.6325C29.4261%2054.0615%2029.6251%2053.3044%2029.6359%2052.8393C29.8479%2052.9799%2030.0101%2053.2503%2030.0469%2053.4774L30.1226%2053.9512L30.3194%2053.5142C30.579%2052.941%2030.5855%2052.3678%2030.3367%2051.9006C30.2048%2051.6734%2029.969%2051.3598%2029.69%2051.1976Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M25.0912%2047.6567L24.8381%2047.7692C24.0745%2048.1088%2023.7998%2048.8681%2024.0983%2049.8003L24.1524%2049.9691L24.3168%2049.902C24.5439%2049.8112%2024.9419%2049.6013%2025.0696%2049.2336C25.1842%2048.907%2025.1453%2048.7145%2025.1063%2048.509C25.0761%2048.3554%2025.0458%2048.1953%2025.0674%2047.9315L25.0912%2047.6567Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M51.5074%2044.0878L52.232%2043.9559L51.5117%2043.8045C50.653%2043.6249%2049.9305%2043.6812%2049.3205%2043.904C48.6824%2044.1376%2048.1654%2044.5551%2047.7415%2045.072C47.5382%2044.6827%2047.205%2044.3863%2046.8027%2044.2414C46.4783%2044.1246%2046.1408%2044.1203%2045.8639%2044.2219C45.8077%2044.2436%2045.7515%2044.2674%2045.7017%2044.2976L45.44%2044.4512L45.7233%2044.5572C46.1971%2044.7346%2047.0212%2045.4787%2046.8914%2046.4737C46.7746%2046.7246%2046.6708%2046.982%2046.5756%2047.2416C46.4847%2046.1536%2045.931%2045.3143%2045.0312%2044.9422C44.4579%2044.7043%2043.8285%2044.6978%2043.2986%2044.8925C42.9892%2045.005%2042.7124%2045.1867%2042.4982%2045.4311C42.0461%2045.9437%2041.899%2046.6857%2042.1305%2047.2762C42.3079%2047.7304%2042.6907%2048.0203%2043.1796%2048.0722C43.4651%2048.1025%2043.7203%2048.0224%2043.9193%2047.8408C44.1335%2047.6439%2044.2568%2047.3411%2044.2503%2047.0296L44.246%2046.7852L44.034%2046.9085C43.8285%2047.0274%2043.6555%2047.0556%2043.543%2046.9885C43.4608%2046.9388%2043.4132%2046.8349%2043.4175%2046.7138C43.424%2046.571%2043.5062%2046.3807%2043.7203%2046.2747C43.9561%2046.1579%2044.2287%2046.1427%2044.4904%2046.2358C44.7716%2046.3353%2045.0117%2046.5494%2045.1285%2046.809C45.559%2047.7564%2045.401%2048.9374%2044.7543%2049.6145C44.605%2049.7702%2044.3909%2049.9584%2044.114%2050.1141C44.9035%2049.3982%2045.1328%2048.5329%2044.7716%2047.5747L44.6072%2047.1399L44.4515%2047.6115C44.3758%2047.8429%2044.3022%2048.0614%2044.1443%2048.2474C44.0318%2048.3794%2043.8869%2048.4615%2043.7333%2048.5481C43.4975%2048.6822%2043.2315%2048.8336%2043.0368%2049.1883C42.814%2049.595%2042.8119%2050.0363%2042.9222%2050.3499C42.7513%2050.1379%2042.5263%2049.9541%2042.2516%2049.807C41.501%2049.4025%2040.4628%2049.3333%2039.9674%2049.5215C39.948%2049.4912%2039.9263%2049.4652%2039.9069%2049.4349C40.6163%2049.0499%2041.3864%2048.3923%2041.4491%2047.6634C41.4902%2047.1875%2041.3475%2046.7441%2041.0684%2046.4823C40.837%2046.2639%2040.5255%2046.1752%2040.1686%2046.2271C40.0864%2046.2401%2040.0085%2046.2595%2039.935%2046.2855C39.7533%2046.3526%2039.604%2046.4629%2039.4959%2046.6121C39.3055%2046.8739%2039.2493%2047.2351%2039.3293%2047.6872L39.3921%2048.0527L39.5932%2047.7391C39.7684%2047.4665%2040.0604%2047.2719%2040.2594%2047.2957C40.294%2047.3%2040.3979%2047.313%2040.4563%2047.4882C40.6077%2047.9359%2039.7273%2048.5243%2039.2601%2048.7384C39.1087%2048.6259%2038.9529%2048.5373%2038.7929%2048.4767C38.5939%2048.4031%2038.2867%2048.3166%2037.9514%2048.3166C37.508%2048.3166%2036.7466%2048.4789%2036.6147%2049.5712L36.5671%2049.967L36.8807%2049.7205C37.0711%2049.5712%2037.2722%2049.5258%2037.4064%2049.4955C37.4453%2049.4868%2037.4799%2049.4782%2037.5059%2049.4717C37.5578%2049.4566%2037.614%2049.4479%2037.6724%2049.4479C35.7559%2050.2244%2034.8388%2051.5461%2035.0897%2053.203L35.1654%2053.6983L35.3666%2053.2398C35.8576%2052.1171%2036.6644%2050.9058%2038.7453%2049.9995C38.7604%2050.0146%2038.7756%2050.0276%2038.7907%2050.0428C38.5723%2050.2699%2038.1656%2050.6917%2038.0704%2050.7717C37.9255%2050.8928%2037.7589%2050.9534%2037.5816%2051.0183C37.4496%2051.068%2037.3133%2051.1178%2037.1792%2051.1957C36.9002%2051.3579%2036.6666%2051.6715%2036.5498%2051.89C36.301%2052.3572%2036.3075%2052.9326%2036.5671%2053.5037L36.7639%2053.9406L36.8396%2053.4669C36.8764%2053.2376%2037.0386%2052.9694%2037.2506%2052.8288C37.2593%2053.296%2037.4604%2054.0509%2037.8736%2054.622C38.2218%2055.1043%2038.6782%2055.3877%2039.1909%2055.4396C39.9696%2055.5175%2040.9127%2054.8318%2041.0273%2054.1072C41.1398%2053.389%2040.6207%2052.6882%2039.8744%2052.5454L39.6192%2052.4957L39.7425%2052.818C39.9674%2053.3998%2040.0907%2053.7978%2039.7641%2054.025C39.4634%2054.2348%2038.994%2054.1677%2038.7172%2053.8757C38.503%2053.6486%2038.1613%2053.0732%2038.2435%2052.3507C38.3127%2051.7364%2038.6696%2051.1849%2039.3055%2050.7046C39.3099%2050.7111%2039.3142%2050.7176%2039.3163%2050.7241L39.3445%2050.776L39.4007%2050.7977C39.4807%2050.8301%2039.5629%2050.8453%2039.6386%2050.8453C39.8355%2050.8453%2040.0085%2050.7371%2040.1167%2050.5511C40.1881%2050.4278%2040.2227%2050.2829%2040.2248%2050.1423C40.5601%2050.1639%2040.8024%2050.2807%2040.9019%2050.4667C40.9819%2050.616%2040.9624%2050.7955%2040.85%2050.9642C40.6812%2051.213%2040.2638%2051.4531%2039.604%2051.3774L39.1671%2051.3276L39.4656%2051.6521C39.8744%2052.0998%2040.3157%2052.314%2040.7721%2052.288C41.1549%2052.2685%2041.4859%2052.0782%2041.7152%2051.8684C41.7411%2052.1842%2041.5789%2052.5995%2041.2934%2052.8785L41.1139%2053.0559L41.3475%2053.1511C41.4729%2053.2008%2041.6092%2053.2268%2041.7498%2053.2268C42.0223%2053.2268%2042.3122%2053.1316%2042.5739%2052.9499C43.0671%2052.606%2043.3526%2052.0479%2043.3353%2051.4574C43.3332%2051.4055%2043.3288%2051.3536%2043.3245%2051.3017C44.5812%2051.2043%2045.4335%2050.5186%2045.9526%2049.7118L45.9591%2049.7269C46.9087%2049.3549%2047.3824%2048.6995%2047.7242%2047.9813H47.7263C47.908%2047.5531%2048.6413%2046.8328%2049.0696%2046.8501C49.1475%2046.8544%2049.2621%2046.8825%2049.3313%2047.0923C49.3681%2047.2026%2049.327%2047.2762%2049.2859%2047.3173C49.2037%2047.3995%2049.061%2047.4298%2048.9312%2047.3887L48.4402%2047.2373L48.7819%2047.6223C49.061%2047.9381%2049.4027%2048.0679%2049.7445%2047.9878C50.0863%2047.9078%2050.3696%2047.618%2050.467%2047.2546C50.5708%2046.8609%2050.4432%2046.4586%2050.1165%2046.1514C49.738%2045.7988%2049.2902%2045.7145%2048.6543%2045.8875C49.1194%2045.0785%2049.8894%2044.382%2051.5074%2044.0878Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M42.5414%2049.9044L42.7058%2049.9715L42.7598%2049.8028C43.0583%2048.8705%2042.7836%2048.1091%2042.0201%2047.7717L41.767%2047.6592L41.7908%2047.9361C41.8124%2048.1999%2041.7821%2048.36%2041.7519%2048.5136C41.7129%2048.7169%2041.674%2048.9094%2041.7886%2049.2382C41.9162%2049.6038%2042.3164%2049.8136%2042.5414%2049.9044Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M75.6392%208.53564L84.189%208.53943V9.47551H82.1462C81.8241%209.47551%2081.5816%209.55889%2081.43%209.72943C81.2746%209.89997%2081.1988%2010.169%2081.1988%2010.5329L81.1912%2025.0781C81.1912%2025.4268%2081.2898%2025.6731%2081.483%2025.8209C81.6763%2025.9649%2082.0705%2026.0407%2082.6579%2026.0407H85.2463C86.622%2026.0407%2087.7514%2025.5821%2088.6268%2024.665C89.5022%2023.7479%2090.1389%2022.1562%2090.5407%2019.8861H91.4123L90.9841%2026.9768L75.6316%2026.9692V26.0331H77.1399C77.6553%2026.0331%2078.0154%2025.9346%2078.2238%2025.7413C78.4322%2025.548%2078.5346%2025.2335%2078.5346%2024.8014L78.5422%2010.4078C78.5422%2010.1008%2078.455%209.86964%2078.2807%209.71047C78.1063%209.5513%2077.8486%209.47172%2077.5075%209.47172H75.6392V8.53564Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M103.934%208.16406C105.488%208.16406%20106.943%208.57336%20108.3%209.39575C109.656%2010.2143%20110.721%2011.3589%20111.487%2012.8255C112.252%2014.2922%20112.639%2015.9445%20112.635%2017.7788C112.635%2019.6168%20112.249%2021.273%20111.472%2022.751C110.699%2024.229%20109.637%2025.3811%20108.285%2026.2073C106.935%2027.0334%20105.503%2027.4465%20103.991%2027.4465C102.513%2027.4465%20101.126%2027.041%2099.8295%2026.23C98.5334%2025.419%2097.495%2024.2593%2096.7105%2022.751C95.926%2021.2426%2095.5356%2019.5713%2095.5356%2017.7333C95.5356%2015.9218%2095.9184%2014.2884%2096.6802%2012.8293C97.4419%2011.3702%2098.4841%2010.2295%2099.803%209.40332C101.129%208.57715%20102.505%208.16406%20103.934%208.16406ZM104.131%209.12288C102.509%209.12288%20101.198%209.79368%20100.19%2011.1391C99.1852%2012.4844%2098.6812%2014.6787%2098.6774%2017.7181C98.6774%2021.0153%2099.189%2023.2967%20100.22%2024.5625C101.251%2025.8245%20102.524%2026.4574%20104.044%2026.4574C105.109%2026.4574%20106.041%2026.1732%20106.848%2025.5971C107.655%2025.0249%20108.296%2024.1153%20108.773%2022.8685C109.251%2021.6216%20109.493%2019.9844%20109.493%2017.9569C109.493%2015.7474%20109.27%2014.0193%20108.823%2012.7762C108.375%2011.5332%20107.735%2010.6123%20106.905%2010.0135C106.079%209.42228%20105.154%209.12288%20104.131%209.12288Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M117.361%208.55811L121.761%208.56189L132.869%2023.0503L132.877%2012.5677C132.877%2011.5141%20132.638%2010.7297%20132.157%2010.2256C131.717%209.75947%20131.061%209.52071%20130.19%209.50176V8.56568L136.644%208.56947V9.50555C135.984%209.50555%20135.492%209.59651%20135.166%209.77842C134.84%209.96033%20134.556%2010.2938%20134.313%2010.7751C134.071%2011.2564%20133.949%2011.7832%20133.949%2012.3593L133.938%2026.9993H132.767L121.272%2011.9159L121.265%2023.0389C121.265%2024.0432%20121.519%2024.7974%20122.023%2025.2901C122.531%2025.7865%20123.315%2026.0404%20124.376%2026.0594V26.9955L117.346%2026.9917V26.0556C118.225%2026.0215%20118.927%2025.7335%20119.442%2025.1915C119.957%2024.6496%20120.215%2023.9826%20120.215%2023.1943L120.223%2010.7107L120.003%2010.4719C119.59%2010.021%20119.294%209.75189%20119.12%209.66851C118.881%209.55103%20118.57%209.49419%20118.188%209.49419H117.354L117.361%208.55811Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M140.281%208.56934L149.801%208.57312C151.215%208.57312%20152.413%208.82325%20153.402%209.3235C154.63%209.9564%20155.676%2011.0062%20156.536%2012.4766C157.396%2013.9471%20157.824%2015.6904%20157.824%2017.699C157.824%2019.3627%20157.567%2020.8558%20157.047%2022.1861C156.657%2023.2093%20156.055%2024.0999%20155.244%2024.8655C154.432%2025.631%20153.447%2026.2033%20152.284%2026.5822C151.412%2026.8627%20150.249%2027.0067%20148.793%2027.0029L140.27%2026.9991V26.063H142.013C142.453%2026.063%20142.76%2025.991%20142.93%2025.8508C143.101%2025.7106%20143.184%2025.4908%20143.184%2025.1914L143.192%2010.3468C143.192%2010.089%20143.101%209.88439%20142.919%209.72901C142.737%209.57363%20142.483%209.49783%20142.161%209.49783H140.278L140.281%208.56934ZM146.963%209.5092C146.588%209.5092%20146.311%209.58879%20146.133%209.74417C145.955%209.90335%20145.864%2010.1383%20145.864%2010.4529L145.856%2025.1573C145.856%2025.4567%20145.959%2025.684%20146.167%2025.8356C146.375%2025.991%20146.728%2026.0668%20147.224%2026.0668H148.793C150.196%2026.0668%20151.427%2025.7068%20152.485%2024.9829C153.174%2024.5016%20153.697%2023.8233%20154.057%2022.9516C154.55%2021.773%20154.793%2020.1434%20154.796%2018.0666C154.796%2014.993%20154.262%2012.7419%20153.193%2011.3094C152.28%2010.1042%20150.9%209.50162%20149.055%209.50162L146.963%209.5092Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M171.332%208.20166C172.885%208.20166%20174.341%208.61096%20175.697%209.43334C177.054%2010.2519%20178.119%2011.3965%20178.885%2012.8631C179.654%2014.3298%20180.037%2015.9821%20180.033%2017.8164C180.033%2019.6544%20179.646%2021.3106%20178.869%2022.7886C178.096%2024.2666%20177.035%2025.4187%20175.682%2026.2449C174.333%2027.071%20172.901%2027.4841%20171.388%2027.4841C169.91%2027.4841%20168.523%2027.0786%20167.227%2026.2676C165.931%2025.4566%20164.893%2024.2969%20164.108%2022.7886C163.324%2021.2802%20162.933%2019.6089%20162.933%2017.7709C162.933%2015.9594%20163.316%2014.326%20164.078%2012.8669C164.84%2011.4078%20165.882%2010.2671%20167.201%209.44092C168.527%208.61474%20169.903%208.20166%20171.332%208.20166ZM171.529%209.16048C169.907%209.16048%20168.595%209.83127%20167.587%2011.1767C166.583%2012.522%20166.079%2014.7163%20166.075%2017.7557C166.075%2021.0529%20166.587%2023.3343%20167.618%2024.6001C168.648%2025.8621%20169.922%2026.495%20171.441%2026.495C172.506%2026.495%20173.439%2026.2108%20174.246%2025.6385C175.053%2025.0662%20175.694%2024.1567%20176.171%2022.9099C176.649%2021.663%20176.891%2020.0258%20176.891%2017.9983C176.891%2015.7888%20176.668%2014.0607%20176.22%2012.8214C175.773%2011.5784%20175.133%2010.6574%20174.303%2010.0587C173.477%209.46366%20172.552%209.16048%20171.529%209.16048Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M184.759%208.59619L189.159%208.59998L200.267%2023.0884L200.274%2012.6058C200.274%2011.5522%20200.035%2010.7678%20199.554%2010.2637C199.114%209.79757%20198.459%209.55881%20197.587%209.53986V8.60378L204.041%208.60757V9.54364C203.382%209.54364%20202.889%209.6346%20202.563%209.81651C202.237%209.99842%20201.953%2010.3319%20201.71%2010.8132C201.468%2011.2945%20201.347%2011.8213%20201.347%2012.3974L201.339%2027.0411H200.168L188.674%2011.9577L188.666%2023.0808C188.666%2024.0851%20188.92%2024.8393%20189.424%2025.3319C189.932%2025.8284%20190.716%2026.0823%20191.777%2026.1013V27.0373L184.747%2027.0336V26.0975C185.627%2026.0634%20186.328%2025.7753%20186.843%2025.2334C187.358%2024.6915%20187.616%2024.0245%20187.616%2023.2362L187.624%2010.7526L187.404%2010.5138C186.991%2010.0629%20186.695%209.79377%20186.521%209.71039C186.282%209.59291%20185.971%209.53606%20185.589%209.53606H184.755L184.759%208.59619Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M77.9431%2043.7148H78.2349L80.5353%2049.589C80.6262%2049.8278%2080.8157%2049.9453%2081.1037%2049.9453H81.3046V50.2712H78.7427V49.9453H78.9474C79.2126%2049.9453%2079.4021%2049.9149%2079.512%2049.8581C79.5878%2049.8164%2079.6257%2049.7558%2079.6257%2049.6724C79.6257%2049.6231%2079.6144%2049.5701%2079.5954%2049.517L79.0648%2048.1527H76.5257L76.2263%2048.9334C76.1467%2049.1418%2076.1088%2049.3086%2076.1088%2049.4299C76.1088%2049.5701%2076.1732%2049.6913%2076.3059%2049.7937C76.4385%2049.896%2076.628%2049.9453%2076.8819%2049.9453H77.0979V50.2712H74.771V49.9453C75.0211%2049.9453%2075.2182%2049.8922%2075.3622%2049.7823C75.5062%2049.6724%2075.6389%2049.4678%2075.7601%2049.1646L77.9431%2043.7148ZM77.818%2044.9541L76.6621%2047.8154H78.9284L77.818%2044.9541Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M82.4225%2043.855H83.9536L87.823%2048.903L87.8267%2045.2534C87.8267%2044.8858%2087.7434%2044.6129%2087.5766%2044.4386C87.425%2044.2757%2087.1938%2044.1923%2086.8907%2044.1847V43.8588H89.138V44.1847C88.9068%2044.1847%2088.7363%2044.215%2088.6226%2044.2794C88.5089%2044.3439%2088.4104%2044.4576%2088.327%2044.6281C88.2436%2044.7949%2088.2019%2044.9805%2088.2019%2045.1814L88.1981%2050.2825H87.7888L83.783%2045.0298L83.7792%2048.9068C83.7792%2049.2554%2083.8664%2049.5207%2084.0445%2049.6913C84.2226%2049.8656%2084.4955%2049.9528%2084.8669%2049.9603V50.2863H82.4187V49.9603C82.7257%2049.949%2082.9682%2049.8504%2083.1463%2049.6609C83.3245%2049.4715%2083.4154%2049.2403%2083.4154%2048.9636L83.4192%2044.6167L83.3434%2044.5334C83.1994%2044.3742%2083.0971%2044.2832%2083.0364%2044.2529C82.9531%2044.2112%2082.8432%2044.1923%2082.7105%2044.1923H82.4187V43.855H82.4225Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M90.4077%2043.8589H93.7238C94.2165%2043.8589%2094.6333%2043.9461%2094.9782%2044.1204C95.4065%2044.3402%2095.7703%2044.7078%2096.0697%2045.2194C96.3691%2045.731%2096.5169%2046.3374%2096.5169%2047.0385C96.5169%2047.6184%2096.4259%2048.1376%2096.2478%2048.5999C96.1114%2048.9562%2095.9029%2049.2669%2095.6187%2049.5322C95.3345%2049.7975%2094.9934%2049.9984%2094.5879%2050.131C94.2847%2050.2295%2093.8792%2050.2788%2093.3714%2050.2788H90.4001V49.9529H91.0065C91.1619%2049.9529%2091.268%2049.9301%2091.3249%2049.8809C91.3855%2049.8316%2091.412%2049.7558%2091.412%2049.6497L91.4158%2044.4804C91.4158%2044.3895%2091.3855%2044.3174%2091.3211%2044.2644C91.2566%2044.2113%2091.1695%2044.1848%2091.0558%2044.1848H90.4001V43.8589H90.4077ZM92.7347%2044.1848C92.6058%2044.1848%2092.5073%2044.2113%2092.4466%2044.2682C92.3822%2044.325%2092.3519%2044.4046%2092.3519%2044.5145L92.3481%2049.6383C92.3481%2049.7406%2092.386%2049.8202%2092.458%2049.8733C92.53%2049.9263%2092.6513%2049.9529%2092.8256%2049.9529H93.3714C93.8602%2049.9529%2094.2885%2049.8278%2094.6561%2049.5777C94.8948%2049.4109%2095.0805%2049.176%2095.2056%2048.869C95.3762%2048.4597%2095.4633%2047.8912%2095.4633%2047.1674C95.4633%2046.0949%2095.2776%2045.3104%2094.9062%2044.8139C94.5879%2044.3932%2094.1066%2044.1848%2093.4661%2044.1848H92.7347Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M101.315%2043.8628L104.631%2043.8666C105.275%2043.8666%20105.772%2044.0144%20106.128%2044.3062C106.48%2044.598%20106.659%2044.9808%20106.659%2045.4583C106.659%2045.7425%20106.587%2045.9965%20106.446%2046.2163C106.306%2046.4361%20106.101%2046.6142%20105.84%2046.7468C105.575%2046.8795%20105.158%2046.9742%20104.593%2047.0311C105.006%2047.1448%20105.29%2047.2547%20105.446%2047.3646C105.601%2047.4745%20105.726%2047.6147%20105.821%2047.7852C105.916%2047.9596%20106.022%2048.3082%20106.147%2048.8388C106.234%2049.2178%20106.329%2049.4755%20106.427%2049.6157C106.503%2049.7218%20106.583%2049.7749%20106.67%2049.7749C106.761%2049.7749%20106.844%2049.7105%20106.92%2049.5778C106.996%2049.4452%20107.045%2049.214%20107.06%2048.8805H107.356C107.299%2049.8658%20106.935%2050.3547%20106.264%2050.3547C106.052%2050.3547%20105.87%2050.3017%20105.715%2050.1955C105.56%2050.0894%20105.442%2049.9303%20105.366%2049.7218C105.306%2049.5664%20105.237%2049.1571%20105.162%2048.4939C105.12%2048.1074%20105.052%2047.8345%20104.957%2047.6715C104.862%2047.5086%20104.718%2047.3797%20104.517%2047.2812C104.316%2047.1827%20104.078%2047.1334%20103.801%2047.1334H103.274V49.6574C103.274%2049.7635%20103.301%2049.8393%20103.358%2049.8848C103.426%2049.9416%20103.536%2049.9682%20103.684%2049.9682H104.301V50.2941H101.319V49.9682H101.948C102.088%2049.9682%20102.19%2049.9416%20102.255%2049.8848C102.319%2049.8279%20102.353%2049.7559%20102.353%2049.6574L102.357%2044.526C102.357%2044.4161%20102.323%2044.3327%20102.259%2044.2797C102.194%2044.2266%20102.092%2044.1963%20101.955%2044.1963H101.326V43.8628H101.315ZM103.274%2046.8188H104.032C104.54%2046.8188%20104.942%2046.7241%20105.23%2046.5308C105.518%2046.3375%20105.662%2045.9964%20105.662%2045.5076C105.662%2045.1703%20105.609%2044.9012%20105.499%2044.7041C105.389%2044.5071%20105.249%2044.3744%20105.071%2044.3024C104.893%2044.2304%20104.548%2044.1925%20104.028%2044.1925C103.687%2044.1925%20103.475%2044.2152%20103.396%2044.2645C103.316%2044.3138%20103.274%2044.3934%20103.274%2044.5109V46.8188Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M108.895%2043.8701L113.984%2043.8739L114.106%2046.0417H113.814C113.7%2045.3595%20113.514%2044.882%20113.268%2044.6091C113.018%2044.3363%20112.692%2044.1998%20112.29%2044.1998H111.032C110.93%2044.1998%20110.854%2044.2264%20110.801%2044.2832C110.748%2044.3363%20110.721%2044.4234%20110.721%2044.5333V46.8224H111.271C111.566%2046.8224%20111.805%2046.7163%20111.987%2046.5078C112.169%2046.2956%20112.271%2045.9734%20112.283%2045.5338H112.582V48.5088H112.283C112.267%2048.0161%20112.169%2047.6637%20111.983%2047.4515C111.798%2047.2392%20111.544%2047.1331%20111.225%2047.1331H110.721V49.6874C110.721%2049.7784%20110.752%2049.8504%20110.816%2049.8997C110.877%2049.949%20110.983%2049.9717%20111.127%2049.9717H112.12C113.196%2049.9717%20113.821%2049.2857%20113.984%2047.9062H114.295L114.185%2050.2976L108.895%2050.2938V49.9679H109.334C109.505%2049.9679%20109.626%2049.9376%20109.694%2049.8807C109.762%2049.8201%20109.8%2049.7367%20109.8%2049.623L109.804%2044.5333C109.804%2044.4196%20109.774%2044.3363%20109.713%2044.2832C109.652%2044.2264%20109.558%2044.1998%20109.425%2044.1998H108.898V43.8701H108.895Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M119.642%2044.3628L120.033%2043.8019H120.351L120.378%2046.1402H120.09C119.911%2045.4239%20119.646%2044.8972%20119.294%2044.5674C118.941%2044.2377%20118.539%2044.071%20118.081%2044.071C117.698%2044.071%20117.387%2044.1847%20117.141%2044.4121C116.899%2044.6394%20116.777%2044.9199%20116.777%2045.2496C116.777%2045.4542%20116.823%2045.6362%20116.917%2045.7915C117.008%2045.9469%20117.149%2046.072%20117.331%2046.1705C117.512%2046.2691%20117.861%2046.3714%20118.369%2046.4813C119.085%2046.6367%20119.585%2046.7958%20119.874%2046.955C120.162%2047.1142%20120.378%2047.315%20120.518%2047.5576C120.658%2047.8001%20120.73%2048.0806%20120.73%2048.4065C120.73%2048.9863%20120.537%2049.4639%20120.146%2049.8466C119.756%2050.2256%20119.256%2050.4189%20118.638%2050.4151C117.975%2050.4151%20117.399%2050.1991%20116.91%2049.7708L116.421%2050.3696H116.106V47.8835H116.421C116.542%2048.5695%20116.815%2049.1114%20117.236%2049.5093C117.656%2049.9073%20118.134%2050.1043%20118.665%2050.1043C119.093%2050.1043%20119.441%2049.9793%20119.714%2049.7253C119.983%2049.4714%20120.12%2049.1645%20120.12%2048.8044C120.12%2048.5998%20120.071%2048.4179%20119.968%2048.2625C119.866%2048.1071%20119.707%2047.9783%20119.487%2047.8721C119.267%2047.766%20118.835%2047.6372%20118.191%2047.4856C117.482%2047.3188%20116.997%2047.1293%20116.739%2046.9209C116.376%2046.6253%20116.197%2046.2084%20116.197%2045.6665C116.197%2045.1018%20116.379%2044.6394%20116.739%2044.2794C117.099%2043.9194%20117.562%2043.7375%20118.123%2043.7413C118.392%2043.7413%20118.649%2043.7905%20118.892%2043.8853C119.131%2043.98%20119.385%2044.1392%20119.642%2044.3628Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M122.515%2043.8779L127.605%2043.8817L127.726%2046.0495H127.434C127.321%2045.3673%20127.135%2044.8898%20126.889%2044.6169C126.638%2044.3441%20126.313%2044.2076%20125.911%2044.2076H124.653C124.55%2044.2076%20124.474%2044.2342%20124.421%2044.291C124.368%2044.3441%20124.342%2044.4312%20124.342%2044.5411V46.8302H124.891C125.187%2046.8302%20125.426%2046.7241%20125.608%2046.5156C125.79%2046.3034%20125.892%2045.9813%20125.903%2045.5417H126.203V48.5166H125.903C125.888%2048.024%20125.79%2047.6715%20125.604%2047.4593C125.418%2047.2471%20125.164%2047.1409%20124.846%2047.1409H124.342V49.6953C124.342%2049.7862%20124.372%2049.8582%20124.437%2049.9075C124.497%2049.9568%20124.603%2049.9795%20124.747%2049.9795H125.74C126.817%2049.9795%20127.442%2049.2935%20127.605%2047.9141H127.916L127.806%2050.3054L122.515%2050.3016V49.9757H122.955C123.125%2049.9757%20123.247%2049.9454%20123.315%2049.8885C123.383%2049.8279%20123.421%2049.7445%20123.421%2049.6308L123.425%2044.5411C123.425%2044.4275%20123.394%2044.3441%20123.334%2044.291C123.273%2044.2342%20123.178%2044.2076%20123.046%2044.2076H122.519V43.8779H122.515Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M132.262%2043.749H132.554L134.855%2049.6232C134.946%2049.862%20135.135%2049.9794%20135.423%2049.9794H135.624V50.3054H133.062V49.9794H133.267C133.532%2049.9794%20133.721%2049.9491%20133.831%2049.8923C133.907%2049.8506%20133.945%2049.79%20133.945%2049.7066C133.945%2049.6573%20133.934%2049.6043%20133.915%2049.5512L133.384%2048.1869H130.845L130.546%2048.9676C130.466%2049.176%20130.428%2049.3428%20130.428%2049.464C130.428%2049.6043%20130.493%2049.7255%20130.625%2049.8279C130.758%2049.9302%20130.947%2049.9794%20131.201%2049.9794H131.417V50.3054H129.09V49.9794C129.34%2049.9794%20129.538%2049.9264%20129.682%2049.8165C129.826%2049.7066%20129.958%2049.5019%20130.079%2049.1988L132.262%2043.749ZM132.134%2044.9845L130.978%2047.8458H133.244L132.134%2044.9845Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M136.602%2043.8853H139.918C140.562%2043.8853%20141.059%2044.0331%20141.415%2044.3249C141.767%2044.6167%20141.945%2044.9995%20141.945%2045.477C141.945%2045.7612%20141.873%2046.0113%20141.733%2046.2349C141.593%2046.4547%20141.388%2046.6329%20141.127%2046.7655C140.862%2046.8981%20140.445%2046.9929%20139.88%2047.0497C140.293%2047.1634%20140.577%2047.2733%20140.733%2047.3832C140.888%2047.4931%20141.013%2047.6334%20141.108%2047.8039C141.203%2047.9744%20141.309%2048.3269%20141.434%2048.8575C141.521%2049.2365%20141.616%2049.4942%20141.714%2049.6344C141.79%2049.7405%20141.87%2049.7935%20141.957%2049.7935C142.048%2049.7935%20142.131%2049.7291%20142.207%2049.5965C142.283%2049.4638%20142.332%2049.2327%20142.347%2048.8992H142.643C142.586%2049.8845%20142.222%2050.3734%20141.551%2050.3734C141.339%2050.3734%20141.157%2050.3203%20141.002%2050.2142C140.846%2050.1081%20140.729%2049.9489%20140.653%2049.7405C140.592%2049.5851%20140.524%2049.1758%20140.448%2048.5126C140.407%2048.126%20140.339%2047.8532%20140.244%2047.6902C140.149%2047.5273%20140.005%2047.3984%20139.804%2047.2999C139.603%2047.2013%20139.365%2047.1521%20139.088%2047.1521H138.561V49.6761C138.561%2049.7822%20138.588%2049.858%20138.645%2049.9035C138.713%2049.9603%20138.823%2049.9868%20138.97%2049.9868H139.588V50.3128H136.606V49.9868H137.235C137.375%2049.9868%20137.477%2049.9603%20137.542%2049.9035C137.606%2049.8466%20137.64%2049.7746%20137.64%2049.6761L137.644%2044.5447C137.644%2044.4348%20137.61%2044.3514%20137.545%2044.2983C137.481%2044.2453%20137.379%2044.215%20137.242%2044.215H136.613V43.8853H136.602ZM138.557%2046.8375H139.315C139.823%2046.8375%20140.225%2046.7428%20140.513%2046.5495C140.801%2046.3562%20140.945%2046.0151%20140.945%2045.5262C140.945%2045.189%20140.892%2044.9199%20140.782%2044.7228C140.672%2044.5257%20140.532%2044.3931%20140.354%2044.3211C140.176%2044.2491%20139.831%2044.2112%20139.312%2044.2112C138.97%2044.2112%20138.758%2044.2339%20138.679%2044.2832C138.599%2044.3325%20138.557%2044.412%20138.557%2044.5295V46.8375Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M148.741%2044.3891L149.04%2043.7676H149.313L149.423%2046.3522H149.131C148.942%2045.6246%20148.699%2045.0902%20148.411%2044.7454C148.051%2044.3133%20147.623%2044.0973%20147.126%2044.0973C146.588%2044.0973%20146.149%2044.3361%20145.811%2044.8174C145.474%2045.2987%20145.304%2046.1097%20145.304%2047.258C145.304%2048.2206%20145.497%2048.9558%20145.883%2049.4637C146.213%2049.8919%20146.675%2050.1079%20147.27%2050.1079C147.793%2050.1079%20148.229%2049.9412%20148.582%2049.6077C148.934%2049.2742%20149.165%2048.7701%20149.271%2048.0955H149.578C149.487%2048.8611%20149.226%2049.4485%20148.79%2049.8578C148.354%2050.2671%20147.809%2050.4717%20147.149%2050.4717C146.615%2050.4717%20146.122%2050.3353%20145.675%2050.0662C145.228%2049.7972%20144.871%2049.4106%20144.602%2048.9028C144.333%2048.3987%20144.201%2047.8454%20144.201%2047.2428C144.201%2046.6024%20144.341%2046.0036%20144.618%2045.4427C144.894%2044.8818%20145.247%2044.4611%20145.679%2044.1769C146.111%2043.8965%20146.573%2043.7524%20147.073%2043.7524C147.35%2043.7524%20147.619%2043.8017%20147.881%2043.8964C148.15%2043.995%20148.434%2044.1579%20148.741%2044.3891Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M151.234%2043.8931H153.978V44.219H153.474C153.296%2044.219%20153.182%2044.2493%20153.129%2044.3137C153.076%2044.3744%20153.049%2044.526%20153.049%2044.7685V46.7468H155.983V44.7685C155.983%2044.5184%20155.956%2044.3668%20155.907%2044.3099C155.858%2044.2531%20155.736%2044.2228%20155.547%2044.2228H155.077V43.8968H157.802V44.2228H157.302C157.177%2044.2228%20157.089%2044.2379%20157.04%2044.272C156.991%2044.3062%20156.949%2044.3592%20156.915%2044.4388C156.896%2044.4881%20156.888%2044.6169%20156.888%2044.8254L156.885%2049.4451C156.885%2049.6687%20156.904%2049.8014%20156.942%2049.8506C157.017%2049.9492%20157.154%2049.9984%20157.355%2049.9984H157.798V50.3243H155.073V49.9984H155.543C155.729%2049.9984%20155.854%2049.9492%20155.922%2049.8468C155.96%2049.79%20155.979%2049.646%20155.979%2049.411V47.1788H153.046V49.4451C153.046%2049.6725%20153.061%2049.8051%20153.099%2049.8544C153.171%2049.9492%20153.296%2049.9984%20153.474%2049.9984H153.978V50.3243H151.234V49.9984H151.761C151.856%2049.9984%20151.928%2049.9795%20151.981%2049.9416C152.034%2049.9037%20152.075%2049.8506%20152.102%2049.7824C152.117%2049.7369%20152.125%2049.6119%20152.125%2049.4148L152.129%2044.7799C152.129%2044.5411%20152.102%2044.3895%20152.049%2044.3251C151.996%2044.2607%20151.878%2044.2304%20151.7%2044.2304H151.242V43.8931H151.234Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M167.439%2044.4008L167.739%2043.7793H168.012L168.122%2046.364H167.83C167.64%2045.6363%20167.398%2045.102%20167.11%2044.7571C166.75%2044.325%20166.321%2044.109%20165.825%2044.109C165.287%2044.109%20164.847%2044.3478%20164.51%2044.8291C164.173%2045.3104%20164.002%2046.1214%20164.002%2047.2697C164.002%2048.2323%20164.195%2048.9675%20164.582%2049.4754C164.912%2049.9036%20165.374%2050.1196%20165.969%2050.1196C166.492%2050.1196%20166.928%2049.9529%20167.28%2049.6194C167.633%2049.2859%20167.864%2048.7818%20167.97%2048.1073H168.277C168.186%2048.8728%20167.924%2049.4602%20167.489%2049.8695C167.053%2050.2788%20166.507%2050.4835%20165.848%2050.4835C165.313%2050.4835%20164.821%2050.347%20164.373%2050.0779C163.926%2049.8089%20163.57%2049.4223%20163.301%2048.9145C163.032%2048.4104%20162.899%2047.8571%20162.899%2047.2546C162.899%2046.6141%20163.039%2046.0153%20163.316%2045.4544C163.593%2044.8935%20163.945%2044.4729%20164.377%2044.1886C164.809%2043.9082%20165.272%2043.7642%20165.772%2043.7642C166.048%2043.7642%20166.318%2043.8134%20166.579%2043.9082C166.848%2044.0067%20167.132%2044.1697%20167.439%2044.4008Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M170.096%2043.9043L175.186%2043.9081L175.307%2046.0758H175.015C174.901%2045.3937%20174.716%2044.9162%20174.469%2044.6433C174.223%2044.3704%20173.893%2044.234%20173.492%2044.234H172.233C172.131%2044.234%20172.055%2044.2605%20172.002%2044.3174C171.949%2044.3742%20171.923%2044.4576%20171.923%2044.5675V46.8565H172.472C172.768%2046.8565%20173.007%2046.7504%20173.188%2046.542C173.37%2046.3298%20173.473%2046.0076%20173.484%2045.568H173.783V48.543H173.484C173.469%2048.0503%20173.37%2047.6979%20173.185%2047.4856C172.999%2047.2734%20172.745%2047.1673%20172.427%2047.1673H171.923V49.7216C171.923%2049.8126%20171.953%2049.8846%20172.017%2049.9339C172.082%2049.9831%20172.184%2050.0059%20172.328%2050.0059H173.321C174.397%2050.0059%20175.023%2049.3199%20175.186%2047.9404H175.496L175.386%2050.3318L170.096%2050.328V50.0021H170.536C170.706%2050.0021%20170.827%2049.9718%20170.896%2049.9149C170.964%2049.8543%20171.002%2049.7709%20171.002%2049.6572L171.005%2044.5675C171.005%2044.4538%20170.975%2044.3704%20170.915%2044.3174C170.854%2044.2605%20170.759%2044.234%20170.627%2044.234H170.1V43.9043H170.096Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M177.103%2043.9082H178.634L182.504%2048.9562L182.508%2045.3066C182.508%2044.939%20182.424%2044.6662%20182.258%2044.4918C182.106%2044.3289%20181.875%2044.2455%20181.572%2044.2379V43.912H183.819V44.2379C183.588%2044.2379%20183.417%2044.2682%20183.304%2044.3327C183.19%2044.3971%20183.091%2044.5108%20183.008%2044.6813C182.925%2044.8519%20182.883%2045.0338%20182.883%2045.2346L182.879%2050.3357H182.47L178.464%2045.083L178.46%2048.96C178.46%2049.3087%20178.547%2049.5702%20178.725%2049.7445C178.904%2049.915%20179.176%2050.006%20179.548%2050.0136V50.3395H177.1V50.0136C177.407%2050.0022%20177.649%2049.9037%20177.827%2049.7142C178.005%2049.5247%20178.096%2049.2935%20178.096%2049.0169L178.1%2044.67L178.024%2044.5866C177.88%2044.4274%20177.778%2044.3365%20177.717%2044.3061C177.634%2044.2645%20177.524%2044.2455%20177.391%2044.2455H177.1V43.9082H177.103Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M185.175%2043.9116L190.39%2043.9154L190.515%2046.3409H190.216C190.019%2044.9159%20189.503%2044.1996%20188.67%2044.1996C188.503%2044.1996%20188.385%2044.23%20188.325%2044.2868C188.26%2044.3437%20188.23%2044.4384%20188.23%2044.5748L188.226%2049.7062C188.226%2049.8085%20188.256%2049.8881%20188.317%2049.9374C188.378%2049.9867%20188.476%2050.0094%20188.616%2050.0094H189.265V50.3353H186.282V50.0094H187.021C187.12%2050.0094%20187.195%2049.9867%20187.248%2049.9374C187.301%2049.8881%20187.328%2049.8237%20187.328%2049.7403L187.332%2044.5332C187.332%2044.4232%20187.298%2044.3399%20187.233%2044.283C187.169%2044.2262%20187.059%2044.1996%20186.911%2044.1996C186.49%2044.1996%20186.142%2044.3967%20185.861%2044.7946C185.63%2045.1206%20185.463%2045.636%20185.361%2046.3409H185.043L185.175%2043.9116Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M192.095%2043.9155L197.185%2043.9193L197.306%2046.0871H197.015C196.901%2045.4049%20196.715%2044.9274%20196.469%2044.6545C196.219%2044.3817%20195.893%2044.2452%20195.491%2044.2452H194.233C194.131%2044.2452%20194.055%2044.2718%20194.002%2044.3286C193.949%2044.3855%20193.922%2044.4688%20193.922%2044.5787V46.8678H194.472C194.767%2046.8678%20195.006%2046.7617%20195.188%2046.5532C195.37%2046.341%20195.472%2046.0189%20195.484%2045.5792H195.783V48.5542H195.484C195.468%2048.0616%20195.37%2047.7091%20195.184%2047.4969C194.998%2047.2846%20194.745%2047.1785%20194.426%2047.1785H193.922V49.7329C193.922%2049.8238%20193.952%2049.8958%20194.017%2049.9451C194.081%2049.9944%20194.184%2050.0171%20194.328%2050.0171H195.321C196.397%2050.0171%20197.022%2049.3311%20197.185%2047.9517H197.496L197.386%2050.343L192.095%2050.3392V50.0133H192.535C192.706%2050.0133%20192.827%2049.983%20192.895%2049.9261C192.963%2049.8655%20193.001%2049.7821%20193.001%2049.6684L193.005%2044.5787C193.005%2044.465%20192.975%2044.3817%20192.914%2044.3248C192.853%2044.268%20192.759%2044.2414%20192.626%2044.2414H192.099V43.9155H192.095Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M198.959%2043.9194H202.275C202.919%2043.9194%20203.416%2044.0672%20203.772%2044.3591C204.124%2044.6509%20204.303%2045.0336%20204.303%2045.5112C204.303%2045.7954%20204.231%2046.0455%20204.09%2046.2691C203.95%2046.4889%20203.745%2046.667%20203.484%2046.7997C203.219%2046.9323%20202.802%2047.0271%20202.237%2047.0839C202.65%2047.1976%20202.934%2047.3075%20203.09%2047.4174C203.245%2047.5273%20203.37%2047.6676%20203.465%2047.8381C203.56%2048.0086%20203.666%2048.3611%20203.791%2048.8917C203.878%2049.2706%20203.973%2049.5283%20204.071%2049.6686C204.147%2049.7747%20204.227%2049.8277%20204.314%2049.8277C204.405%2049.8277%20204.488%2049.7633%20204.564%2049.6307C204.64%2049.498%20204.689%2049.2668%20204.704%2048.9333H205C204.943%2049.9187%20204.579%2050.4076%20203.908%2050.4076C203.696%2050.4076%20203.514%2050.3545%20203.359%2050.2484C203.204%2050.1423%20203.086%2049.9831%20203.01%2049.7747C202.95%2049.6193%20202.881%2049.21%20202.806%2048.5468C202.764%2048.1602%20202.696%2047.8874%20202.601%2047.7244C202.506%2047.5614%20202.362%2047.4326%20202.161%2047.334C201.96%2047.2355%20201.722%2047.1862%20201.445%2047.1862H200.918V49.7103C200.918%2049.8164%20200.945%2049.8922%20201.002%2049.9376C201.07%2049.9945%20201.18%2050.021%20201.328%2050.021H201.945V50.3469H198.963V50.021H199.592C199.732%2050.021%20199.834%2049.9945%20199.899%2049.9376C199.963%2049.8808%20199.997%2049.8088%20199.997%2049.7103L200.001%2044.5789C200.001%2044.469%20199.967%2044.3856%20199.903%2044.3325C199.838%2044.2795%20199.736%2044.2492%20199.599%2044.2492H198.97V43.9194H198.959ZM200.918%2046.8717H201.676C202.184%2046.8717%20202.586%2046.777%20202.874%2046.5837C203.162%2046.3904%20203.306%2046.0493%20203.306%2045.5604C203.306%2045.2231%20203.253%2044.9541%20203.143%2044.757C203.033%2044.5599%20202.893%2044.4273%20202.715%2044.3553C202.537%2044.2833%20202.192%2044.2454%20201.672%2044.2454C201.331%2044.2454%20201.119%2044.2681%20201.04%2044.3174C200.96%2044.3666%20200.918%2044.4462%20200.918%2044.5637V46.8717Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M75.1463%2032.4014H77.9242V32.7083H77.4467C77.2344%2032.7083%2077.1018%2032.7349%2077.0449%2032.7879C76.9881%2032.841%2076.9616%2032.9509%2076.9616%2033.1252L76.9578%2037.6843C76.9578%2037.8663%2076.9805%2037.9799%2077.0298%2038.0254C77.0942%2038.0861%2077.2117%2038.1202%2077.3822%2038.1202H77.9166V38.4271H75.1387V38.1202H75.6655C75.8512%2038.1202%2075.9686%2038.0936%2076.0255%2038.0406C76.0785%2037.9875%2076.1051%2037.87%2076.1051%2037.6881L76.1089%2033.129C76.1089%2032.9547%2076.0861%2032.8486%2076.0369%2032.8069C75.9611%2032.7425%2075.8208%2032.7121%2075.6162%2032.7121H75.1425V32.4014H75.1463Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M79.3225%2032.4048H80.7589L84.3895%2037.1382V33.7161C84.3895%2033.3712%2084.3099%2033.1173%2084.1545%2032.9505C84.0105%2032.7989%2083.7983%2032.7193%2083.5102%2032.7156V32.4086H85.6174V32.7156C85.4014%2032.7156%2085.2422%2032.7459%2085.1361%2032.8065C85.03%2032.8672%2084.9352%2032.9733%2084.8594%2033.1324C84.7798%2033.2916%2084.7419%2033.4621%2084.7419%2033.6478L84.7381%2038.4306H84.3554L80.5997%2033.5038L80.5959%2037.1382C80.5959%2037.468%2080.6793%2037.7105%2080.8422%2037.8735C81.009%2038.0364%2081.2629%2038.1198%2081.6116%2038.1236V38.4306H79.3149V38.1236C79.603%2038.1122%2079.8304%2038.0175%2080.0009%2037.8431C80.1676%2037.665%2080.2548%2037.449%2080.2548%2037.1913L80.2586%2033.1135L80.1866%2033.0339C80.0502%2032.8861%2079.9554%2032.7989%2079.8986%2032.7724C79.819%2032.7345%2079.7204%2032.7156%2079.5954%2032.7156H79.3225V32.4048Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M86.8946%2032.4087L91.7834%2032.4125L91.9009%2034.6901H91.6205C91.4348%2033.3523%2090.9535%2032.6816%2090.169%2032.6816C90.0098%2032.6816%2089.9037%2032.7081%2089.8431%2032.7611C89.7862%2032.8142%2089.7559%2032.9052%2089.7559%2033.0302L89.7521%2037.8433C89.7521%2037.9418%2089.7824%2038.0138%2089.8355%2038.0593C89.8923%2038.1048%2089.9871%2038.1275%2090.1159%2038.1275H90.7223V38.4345H87.9254V38.1275H88.619C88.7099%2038.1275%2088.7819%2038.1048%2088.8312%2038.0593C88.8805%2038.0138%2088.9032%2037.9532%2088.9032%2037.8774L88.907%2032.9961C88.907%2032.8938%2088.8767%2032.8142%2088.8122%2032.7611C88.7516%2032.7081%2088.6493%2032.6816%2088.5128%2032.6816C88.1187%2032.6816%2087.789%2032.8673%2087.5275%2033.2387C87.3115%2033.5456%2087.1523%2034.0269%2087.0576%2034.6864H86.762L86.8946%2032.4087Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M93.3862%2032.4126L98.1576%2032.4164L98.2713%2034.4477H97.9984C97.8885%2033.8072%2097.718%2033.36%2097.483%2033.1023C97.248%2032.8484%2096.9448%2032.7196%2096.5659%2032.7196H95.3872C95.2925%2032.7196%2095.2205%2032.7461%2095.1712%2032.7954C95.122%2032.8446%2095.0992%2032.9242%2095.0992%2033.0303V35.1754H95.6146C95.8913%2035.1754%2096.1149%2035.0768%2096.2854%2034.8797C96.4598%2034.6827%2096.5507%2034.3795%2096.5659%2033.9664H96.8463V36.7557H96.5659C96.5507%2036.2933%2096.4598%2035.9636%2096.2854%2035.7628C96.1111%2035.5619%2095.8723%2035.4634%2095.5729%2035.4634H95.103V37.8585C95.103%2037.9457%2095.1333%2038.0101%2095.1902%2038.0594C95.247%2038.1049%2095.3456%2038.1276%2095.482%2038.1276H96.4143C97.4262%2038.1276%2098.0098%2037.4833%2098.1652%2036.191H98.457L98.3547%2038.4346L93.39%2038.4308V38.1238H93.7993C93.9585%2038.1238%2094.0722%2038.0973%2094.1366%2038.0404C94.201%2037.9836%2094.2351%2037.904%2094.2351%2037.7979L94.2389%2033.0265C94.2389%2032.9204%2094.2124%2032.8408%2094.1556%2032.7916C94.0987%2032.7385%2094.0078%2032.7158%2093.8865%2032.7158H93.3938V32.4126H93.3862Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M99.8215%2032.4165H102.933C103.536%2032.4165%20104.002%2032.5529%20104.335%2032.8296C104.669%2033.1025%20104.835%2033.4625%20104.832%2033.9097C104.832%2034.175%20104.767%2034.4137%20104.635%2034.6184C104.502%2034.8268%20104.312%2034.9898%20104.062%2035.1148C103.812%2035.2399%20103.426%2035.3271%20102.891%2035.3801C103.278%2035.4862%20103.543%2035.5886%20103.691%2035.6909C103.839%2035.7932%20103.956%2035.9259%20104.043%2036.085C104.131%2036.248%20104.233%2036.5739%20104.347%2037.0742C104.43%2037.4304%20104.517%2037.673%20104.608%2037.8018C104.68%2037.9041%20104.756%2037.9534%20104.835%2037.9534C104.919%2037.9534%20104.998%2037.8928%20105.07%2037.7677C105.142%2037.6426%20105.188%2037.4266%20105.203%2037.1159H105.48C105.427%2038.0406%20105.086%2038.4991%20104.456%2038.4991C104.259%2038.4991%20104.085%2038.4499%20103.941%2038.3475C103.797%2038.2452%20103.687%2038.0974%20103.615%2037.9041C103.558%2037.7563%20103.494%2037.3736%20103.426%2036.752C103.384%2036.392%20103.32%2036.1343%20103.232%2035.9827C103.145%2035.8311%20103.005%2035.7098%20102.819%2035.6151C102.634%2035.5203%20102.41%2035.4749%20102.148%2035.4749H101.656V37.8397C101.656%2037.942%20101.682%2038.0103%20101.732%2038.0519C101.796%2038.105%20101.898%2038.1277%20102.039%2038.1277H102.618V38.4347H99.8215V38.1277H100.413C100.542%2038.1277%20100.64%2038.1012%20100.701%2038.0519C100.761%2037.9989%20100.792%2037.9307%20100.792%2037.8397L100.796%2033.0267C100.796%2032.9243%20100.765%2032.8448%20100.701%2032.7955C100.636%2032.7462%20100.542%2032.7197%20100.417%2032.7197H99.8253V32.4165H99.8215ZM101.656%2035.1869H102.368C102.846%2035.1869%20103.221%2035.0959%20103.49%2034.9178C103.759%2034.7359%20103.896%2034.4175%20103.896%2033.9552C103.896%2033.6368%20103.846%2033.3867%20103.744%2033.2048C103.642%2033.0191%20103.509%2032.894%20103.342%2032.8258C103.176%2032.7576%20102.85%2032.7235%20102.364%2032.7235C102.042%2032.7235%20101.845%2032.7462%20101.769%2032.7917C101.694%2032.8372%20101.656%2032.913%20101.656%2033.0229V35.1869Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M106.727%2032.4204H108.163L111.794%2037.1539V33.7317C111.794%2033.3868%20111.714%2033.1329%20111.559%2032.9661C111.415%2032.8145%20111.202%2032.735%20110.914%2032.7312V32.4242H113.021V32.7312C112.805%2032.7312%20112.646%2032.7615%20112.54%2032.8221C112.434%2032.8828%20112.339%2032.9889%20112.263%2033.1481C112.184%2033.3072%20112.146%2033.4778%20112.146%2033.6635L112.142%2038.4462H111.759L108.004%2033.5194L108%2037.1539C108%2037.4836%20108.083%2037.7261%20108.246%2037.8891C108.413%2038.052%20108.667%2038.1354%20109.016%2038.1392V38.4462H106.719V38.1392C107.007%2038.1278%20107.234%2038.0331%20107.405%2037.8588C107.572%2037.6806%20107.659%2037.4646%20107.659%2037.2069L107.663%2033.1291L107.591%2033.0495C107.454%2032.9017%20107.359%2032.8145%20107.303%2032.788C107.223%2032.7501%20107.125%2032.7312%20106.999%2032.7312H106.727V32.4204Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M116.842%2032.2988H117.114L119.271%2037.8092C119.358%2038.0328%20119.536%2038.1427%20119.805%2038.1427H119.991V38.4497H117.588V38.1427H117.778C118.028%2038.1427%20118.202%2038.1162%20118.308%2038.0631C118.38%2038.0252%20118.414%2037.9684%20118.414%2037.8888C118.414%2037.8433%20118.403%2037.794%20118.384%2037.741L117.888%2036.4638H115.508L115.227%2037.1952C115.155%2037.3923%20115.117%2037.5439%20115.117%2037.6614C115.117%2037.794%20115.178%2037.9077%20115.303%2038.0025C115.424%2038.0972%20115.606%2038.1465%20115.841%2038.1465H116.046V38.4535H113.863V38.1465C114.098%2038.1465%20114.28%2038.0972%20114.416%2037.9949C114.553%2037.8926%20114.678%2037.6993%20114.791%2037.4151L116.842%2032.2988ZM116.724%2033.4585L115.64%2036.1417H117.766L116.724%2033.4585Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M120.609%2032.4277L125.498%2032.4315L125.615%2034.7092H125.335C125.149%2033.3714%20124.668%2032.7006%20123.883%2032.7006C123.724%2032.7006%20123.618%2032.7271%20123.557%2032.7802C123.501%2032.8332%20123.47%2032.9242%20123.47%2033.0493L123.466%2037.8623C123.466%2037.9608%20123.497%2038.0328%20123.55%2038.0783C123.607%2038.1238%20123.701%2038.1465%20123.83%2038.1465H124.437V38.4535H121.64V38.1465H122.333C122.424%2038.1465%20122.496%2038.1238%20122.546%2038.0783C122.595%2038.0328%20122.618%2037.9722%20122.618%2037.8964L122.621%2033.0151C122.621%2032.9128%20122.591%2032.8332%20122.527%2032.7802C122.466%2032.7271%20122.364%2032.7006%20122.227%2032.7006C121.833%2032.7006%20121.503%2032.8863%20121.242%2033.2577C121.026%2033.5647%20120.867%2034.046%20120.772%2034.7054H120.476L120.609%2032.4277Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M126.862%2032.4316H129.64V32.7386H129.162C128.95%2032.7386%20128.817%2032.7652%20128.761%2032.8182C128.704%2032.8713%20128.677%2032.985%20128.677%2033.1555L128.673%2037.7146C128.673%2037.8965%20128.696%2038.0102%20128.745%2038.0557C128.81%2038.1163%20128.927%2038.1504%20129.098%2038.1504H129.632V38.4574H126.854V38.1504H127.381C127.567%2038.1504%20127.684%2038.1239%20127.741%2038.0709C127.794%2038.0178%20127.821%2037.9003%20127.821%2037.7184L127.824%2033.1593C127.824%2032.985%20127.802%2032.8788%20127.752%2032.8372C127.677%2032.7727%20127.536%2032.7424%20127.332%2032.7424H126.858V32.4316H126.862Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M133.892%2032.3101C134.399%2032.3101%20134.873%2032.4427%20135.316%2032.7118C135.76%2032.9809%20136.109%2033.3523%20136.359%2033.8336C136.609%2034.3111%20136.734%2034.853%20136.734%2035.4518C136.734%2036.0506%20136.609%2036.5925%20136.355%2037.0776C136.101%2037.5589%20135.756%2037.9379%20135.313%2038.207C134.873%2038.4761%20134.403%2038.6125%20133.91%2038.6125C133.425%2038.6125%20132.974%2038.4799%20132.55%2038.2146C132.125%2037.9493%20131.788%2037.5703%20131.53%2037.0776C131.273%2036.585%20131.148%2036.0392%20131.148%2035.4404C131.148%2034.8492%20131.273%2034.3149%20131.523%2033.8373C131.773%2033.3598%20132.11%2032.9884%20132.542%2032.7194C132.974%2032.4427%20133.425%2032.3101%20133.892%2032.3101ZM133.956%2032.6246C133.425%2032.6246%20132.997%2032.8444%20132.667%2033.284C132.338%2033.7237%20132.175%2034.4399%20132.175%2035.4329C132.175%2036.5092%20132.341%2037.2557%20132.679%2037.6688C133.016%2038.0819%20133.433%2038.2866%20133.929%2038.2866C134.278%2038.2866%20134.581%2038.1918%20134.847%2038.0061C135.108%2037.8204%20135.32%2037.521%20135.476%2037.1155C135.631%2036.71%20135.711%2036.1757%20135.711%2035.5124C135.711%2034.7886%20135.639%2034.2277%20135.491%2033.8222C135.343%2033.4167%20135.135%2033.1173%20134.865%2032.9202C134.596%2032.7232%20134.289%2032.6246%20133.956%2032.6246Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M138.276%2032.439H139.713L143.343%2037.1724V33.7502C143.343%2033.4054%20143.264%2033.1514%20143.108%2032.9847C142.964%2032.8331%20142.752%2032.7535%20142.464%2032.7497V32.4427H144.571V32.7497C144.355%2032.7497%20144.196%2032.78%20144.09%2032.8407C143.984%2032.9013%20143.889%2033.0074%20143.813%2033.1666C143.734%2033.3258%20143.696%2033.4963%20143.696%2033.682L143.692%2038.4647H143.309L139.554%2033.538L139.55%2037.1724C139.55%2037.5021%20139.633%2037.7447%20139.796%2037.9076C139.963%2038.0706%20140.217%2038.154%20140.565%2038.1578V38.4647H138.269V38.1578C138.557%2038.1464%20138.784%2038.0516%20138.955%2037.8773C139.122%2037.6992%20139.209%2037.4832%20139.209%2037.2255L139.212%2033.1477L139.14%2033.0681C139.004%2032.9203%20138.909%2032.8331%20138.852%2032.8066C138.773%2032.7687%20138.674%2032.7497%20138.549%2032.7497H138.276V32.439Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M148.395%2032.3179H148.668L150.825%2037.8282C150.912%2038.0518%20151.09%2038.1617%20151.359%2038.1617H151.545V38.4687H149.142V38.1617H149.331C149.581%2038.1617%20149.756%2038.1352%20149.862%2038.0821C149.934%2038.0442%20149.968%2037.9874%20149.968%2037.9078C149.968%2037.8623%20149.957%2037.8131%20149.938%2037.76L149.441%2036.4829H147.061L146.781%2037.2143C146.709%2037.4113%20146.671%2037.5629%20146.671%2037.6804C146.671%2037.8131%20146.732%2037.9268%20146.857%2038.0215C146.978%2038.1163%20147.16%2038.1655%20147.395%2038.1655H147.599V38.4725H145.417V38.1655C145.651%2038.1655%20145.833%2038.1163%20145.97%2038.0139C146.106%2037.9116%20146.231%2037.7183%20146.345%2037.4341L148.395%2032.3179ZM148.274%2033.4775L147.19%2036.1607H149.316L148.274%2033.4775Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M152.515%2032.4468H155.308V32.7537H154.641C154.535%2032.7537%20154.459%2032.7803%20154.406%2032.8371C154.356%2032.894%20154.33%2032.9811%20154.33%2033.0986L154.326%2037.851C154.326%2037.9647%20154.356%2038.0443%20154.421%2038.0936C154.485%2038.1428%20154.614%2038.1656%20154.804%2038.1656H155.649C156.1%2038.1656%20156.467%2038.0178%20156.752%2037.7146C157.036%2037.4114%20157.244%2036.896%20157.377%2036.1532H157.661L157.521%2038.4688L152.503%2038.465V38.158H152.996C153.163%2038.158%20153.284%2038.1277%20153.352%2038.0633C153.42%2037.9988%20153.454%2037.8965%20153.454%2037.7563L153.458%2033.0531C153.458%2032.9508%20153.432%2032.875%20153.375%2032.8258C153.318%2032.7727%20153.235%2032.75%20153.121%2032.75H152.511V32.4468H152.515Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M165.336%2032.9092L165.703%2032.3824H165.999L166.022%2034.5767H165.753C165.586%2033.9021%20165.336%2033.4132%20165.006%2033.1025C164.676%2032.7917%20164.297%2032.6363%20163.869%2032.6363C163.509%2032.6363%20163.217%2032.7425%20162.99%2032.9585C162.763%2033.1745%20162.649%2033.436%20162.649%2033.7467C162.649%2033.94%20162.691%2034.1106%20162.778%2034.2546C162.865%2034.3986%20162.994%2034.5199%20163.168%2034.6108C163.339%2034.7018%20163.665%2034.8003%20164.142%2034.9026C164.813%2035.0504%20165.283%2035.1982%20165.552%2035.346C165.821%2035.4938%20166.022%2035.6833%20166.154%2035.9107C166.287%2036.1381%20166.355%2036.4034%20166.355%2036.7066C166.355%2037.2485%20166.173%2037.6995%20165.806%2038.0557C165.438%2038.412%20164.968%2038.5901%20164.392%2038.5901C163.771%2038.5901%20163.229%2038.3892%20162.77%2037.9875L162.312%2038.5484H162.02V36.2139H162.312C162.425%2036.8582%20162.679%2037.366%20163.077%2037.7374C163.471%2038.1088%20163.918%2038.2945%20164.415%2038.2945C164.817%2038.2945%20165.143%2038.177%20165.396%2037.9383C165.65%2037.6995%20165.779%2037.4115%20165.779%2037.0742C165.779%2036.8809%20165.734%2036.7142%20165.635%2036.5664C165.54%2036.4223%20165.389%2036.2973%20165.184%2036.1987C164.98%2036.1002%20164.574%2035.9789%20163.968%2035.8387C163.305%2035.6795%20162.85%2035.5052%20162.607%2035.3081C162.266%2035.0315%20162.099%2034.6373%20162.099%2034.1295C162.099%2033.5989%20162.27%2033.1669%20162.607%2032.8296C162.944%2032.4923%20163.377%2032.3218%20163.903%2032.3218C164.157%2032.3218%20164.396%2032.3673%20164.623%2032.4582C164.855%2032.553%20165.093%2032.7008%20165.336%2032.9092Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M167.848%2032.4541L172.737%2032.4579L172.855%2034.7356H172.574C172.389%2033.3978%20171.907%2032.727%20171.123%2032.727C170.964%2032.727%20170.857%2032.7535%20170.797%2032.8066C170.736%2032.8596%20170.71%2032.9506%20170.71%2033.0756L170.706%2037.8887C170.706%2037.9872%20170.736%2038.0592%20170.789%2038.1047C170.846%2038.1502%20170.941%2038.1729%20171.07%2038.1729H171.676V38.4799H168.879V38.1729H169.573C169.664%2038.1729%20169.736%2038.1502%20169.785%2038.1047C169.834%2038.0592%20169.857%2037.9986%20169.857%2037.9228L169.864%2033.0377C169.864%2032.9354%20169.834%2032.8558%20169.77%2032.8028C169.709%2032.7497%20169.607%2032.7232%20169.47%2032.7232C169.076%2032.7232%20168.747%2032.9089%20168.485%2033.2803C168.269%2033.5873%20168.11%2034.0686%20168.015%2034.728H167.719L167.848%2032.4541Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M174.019%2032.458H176.8V32.765H176.243C176.095%2032.765%20175.989%2032.7877%20175.929%2032.837C175.868%2032.8863%20175.838%2032.962%20175.838%2033.0606V36.46C175.838%2036.8163%20175.868%2037.0853%20175.932%2037.2673C176.023%2037.5363%20176.194%2037.7523%20176.436%2037.9115C176.683%2038.0707%20177.001%2038.1503%20177.399%2038.1541C177.949%2038.1541%20178.365%2038.0138%20178.653%2037.7296C178.941%2037.4454%20179.086%2037.0664%20179.086%2036.5927V33.8299C179.086%2033.5874%20179.07%2033.4017%20179.036%2033.2728C179.002%2033.1477%20178.953%2033.0492%20178.888%2032.9772C178.824%2032.9052%20178.744%2032.8559%20178.646%2032.8218C178.547%2032.7877%20178.384%2032.7726%20178.157%2032.7688V32.4618H180.431V32.7688H180.268C180.014%2032.7688%20179.825%2032.837%20179.699%2032.9734C179.574%2033.1098%20179.514%2033.3107%20179.51%2033.5684V36.5282C179.51%2037.1725%20179.324%2037.669%20178.957%2038.0138C178.54%2038.4004%20177.99%2038.5937%20177.301%2038.5937C176.702%2038.5937%20176.236%2038.5065%20175.891%2038.3398C175.55%2038.1692%20175.299%2037.9267%20175.148%2037.6083C175.03%2037.3658%20174.974%2037.0626%20174.974%2036.695V33.0606C174.974%2032.9696%20174.943%2032.8938%20174.879%2032.8446C174.814%2032.7915%20174.72%2032.765%20174.595%2032.765H174.022V32.458H174.019Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M181.624%2032.4619H184.736C185.198%2032.4619%20185.589%2032.5453%20185.911%2032.7082C186.312%2032.9129%20186.653%2033.2578%20186.934%2033.7391C187.214%2034.2204%20187.355%2034.7888%20187.355%2035.4445C187.355%2035.9864%20187.271%2036.4753%20187.101%2036.9111C186.972%2037.2446%20186.779%2037.5364%20186.513%2037.7866C186.248%2038.0367%20185.926%2038.2224%20185.547%2038.3475C185.263%2038.4384%20184.884%2038.4839%20184.406%2038.4839H181.621V38.1769H182.189C182.333%2038.1769%20182.432%2038.1542%20182.488%2038.1087C182.545%2038.0632%20182.572%2037.9912%20182.572%2037.8927L182.576%2033.0455C182.576%2032.9622%20182.545%2032.8939%20182.485%2032.8447C182.424%2032.7954%20182.341%2032.7689%20182.235%2032.7689H181.621V32.4619H181.624ZM183.807%2032.7689C183.686%2032.7689%20183.595%2032.7954%20183.538%2032.8447C183.481%2032.8977%20183.451%2032.9735%20183.451%2033.0759L183.447%2037.8813C183.447%2037.9799%20183.481%2038.0519%20183.55%2038.1049C183.618%2038.1542%20183.732%2038.1807%20183.894%2038.1807H184.406C184.865%2038.1807%20185.266%2038.0632%20185.611%2037.8283C185.835%2037.6691%20186.009%2037.4493%20186.123%2037.1651C186.282%2036.7785%20186.362%2036.2479%20186.365%2035.5695C186.365%2034.5652%20186.191%2033.83%20185.842%2033.3639C185.543%2032.9697%20185.092%2032.7727%20184.489%2032.7727L183.807%2032.7689Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M188.886%2032.4658H191.663V32.7728H191.186C190.974%2032.7728%20190.841%2032.7993%20190.784%2032.8524C190.727%2032.9054%20190.701%2033.0191%20190.701%2033.1897L190.697%2037.7488C190.697%2037.9307%20190.72%2038.0444%20190.769%2038.0899C190.833%2038.1505%20190.951%2038.1846%20191.121%2038.1846H191.656V38.4916H188.878V38.1846H189.405C189.59%2038.1846%20189.708%2038.1581%20189.765%2038.105C189.818%2038.052%20189.844%2037.9345%20189.844%2037.7526L189.848%2033.1935C189.848%2033.0191%20189.825%2032.913%20189.776%2032.8713C189.7%2032.8069%20189.56%2032.7766%20189.355%2032.7766H188.882V32.4658H188.886Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M193.27%2032.4692L198.042%2032.473L198.155%2034.5044H197.882C197.773%2033.8639%20197.602%2033.4167%20197.367%2033.159C197.132%2032.9051%20196.829%2032.7762%20196.45%2032.7762H195.271C195.177%2032.7762%20195.105%2032.8027%20195.055%2032.852C195.006%2032.9051%20194.983%2032.9809%20194.983%2033.087V35.232H195.499C195.775%2035.232%20195.999%2035.1335%20196.169%2034.9364C196.344%2034.7393%20196.435%2034.4324%20196.45%2034.0231H196.73V36.8123H196.45C196.435%2036.35%20196.344%2036.0203%20196.169%2035.8194C195.995%2035.6186%20195.756%2035.52%20195.457%2035.52H194.987V37.9152C194.987%2038.0023%20195.017%2038.0668%20195.074%2038.116C195.131%2038.1653%20195.23%2038.1842%20195.366%2038.1842H196.298C197.31%2038.1842%20197.894%2037.54%20198.049%2036.2477H198.341L198.239%2038.4912L193.274%2038.4874V38.1805H193.683C193.843%2038.1805%20193.956%2038.1539%20194.021%2038.0971C194.085%2038.0402%20194.119%2037.9606%20194.119%2037.8545L194.123%2033.0832C194.123%2032.9771%20194.096%2032.8975%20194.04%2032.8482C193.983%2032.7952%20193.892%2032.7724%20193.771%2032.7724H193.278V32.4692H193.27Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M203.351%2032.9317L203.718%2032.4049H204.014L204.037%2034.5992H203.768C203.601%2033.9246%20203.351%2033.4357%20203.021%2033.1249C202.691%2032.8142%20202.312%2032.6588%20201.884%2032.6588C201.524%2032.6588%20201.232%2032.7649%20201.005%2032.9809C200.777%2033.1969%20200.664%2033.4584%20200.664%2033.7692C200.664%2033.9625%20200.705%2034.133%20200.793%2034.277C200.88%2034.421%20201.009%2034.5423%20201.183%2034.6333C201.354%2034.7242%20201.679%2034.8228%20202.157%2034.9251C202.828%2035.0729%20203.298%2035.2207%20203.567%2035.3685C203.836%2035.5163%20204.037%2035.7058%20204.169%2035.9332C204.302%2036.1606%20204.37%2036.4258%20204.37%2036.729C204.37%2037.271%20204.188%2037.7219%20203.821%2038.0782C203.453%2038.4344%20202.983%2038.6126%20202.407%2038.6126C201.786%2038.6126%20201.244%2038.4117%20200.785%2038.01L200.326%2038.5709H200.035V36.2364H200.326C200.44%2036.8806%20200.694%2037.3884%20201.092%2037.7598C201.486%2038.1312%20201.933%2038.3169%20202.43%2038.3169C202.832%2038.3169%20203.157%2038.1995%20203.411%2037.9607C203.665%2037.7219%20203.794%2037.4339%20203.794%2037.0966C203.794%2036.9034%20203.749%2036.7366%20203.65%2036.5888C203.555%2036.4448%20203.404%2036.3197%20203.199%2036.2212C202.995%2036.1227%20202.589%2036.0014%20201.983%2035.8612C201.319%2035.702%20200.865%2035.5277%20200.622%2035.3306C200.281%2035.0539%20200.114%2034.6598%20200.114%2034.152C200.114%2033.6214%20200.285%2033.1894%20200.622%2032.8521C200.959%2032.5148%20201.391%2032.3442%20201.918%2032.3442C202.172%2032.3442%20202.411%2032.3897%20202.638%2032.4807C202.869%2032.5716%20203.104%2032.7232%20203.351%2032.9317Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M7.48853%2023.7159C7.48853%2023.7159%208.95292%2023.5299%209.04161%2024.8212C9.04161%2024.8212%2010.0345%2024.7066%2010.1967%2026.0953C10.1967%2026.0953%2013.6771%2026.7182%209.48071%2030.6637C9.48071%2030.6637%2012.0786%2029.1128%2012.3706%2026.9583C12.6626%2024.8039%2010.4043%2022.1542%207.48853%2023.7159ZM9.44178%2023.5191C9.36391%2023.5018%209.28604%2023.4845%209.20384%2023.4715C9.20384%2023.4715%209.29469%2023.4823%209.44178%2023.5191C13.1536%2024.3129%2011.8341%2028.042%2011.8341%2028.042C11.9791%2027.3261%2011.992%2026.7226%2011.9185%2026.2099C11.886%2026.1558%2011.5551%2025.641%2010.7223%2025.68C10.7223%2025.68%2011.2999%2025.4961%2011.8817%2025.9915C11.8038%2025.6086%2011.6762%2025.282%2011.514%2025.0073C11.4686%2024.9597%2010.9581%2024.4557%2010.1859%2024.5292C10.1859%2024.5292%2010.7612%2024.3367%2011.328%2024.7261C10.7245%2023.9236%209.85709%2023.6207%209.44178%2023.5191Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M9.48089%2030.6635C9.48089%2030.6635%2011.9143%2028.1565%208.99204%2026.1968C8.99204%2026.1968%209.22349%2027.3886%208.45776%2027.6979C8.45776%2027.6979%209.62798%2027.8753%209.35976%2028.8595C9.35976%2028.8595%2010.2466%2029.0131%209.48089%2030.6635ZM10.119%2029.357C10.4391%2027.672%209.58688%2026.9365%209.43763%2026.8219C9.42898%2026.8154%209.42249%2026.8111%209.416%2026.8046C9.416%2026.8046%209.42465%2026.8111%209.43763%2026.8219C10.6987%2027.7066%2010.119%2029.357%2010.119%2029.357Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M10.7375%2012.4658C10.8188%2012.5749%2010.8616%2012.6498%2010.8616%2012.6498C10.8103%2012.5963%2010.7696%2012.5343%2010.7375%2012.4658Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M6.27298%2016.424C6.27298%2016.424%207.70494%2016.5472%208.6264%2017.393C8.6264%2017.393%207.83039%2016.9388%207.38047%2017.2697C7.38047%2017.2697%209.1888%2018.1479%2010.1557%2019.5755C11.1226%2021.0032%2010.8544%2023.1662%2013.1429%2024.8859C13.1429%2024.8859%2011.8559%2021.7364%2014.0773%2020.1942C14.0773%2020.1942%2012.6627%2020.0319%2012.2604%2020.8842C12.2604%2020.8842%2013.2597%2018.4053%2014.8193%2017.6461C14.8193%2017.6461%2014.1812%2016.9453%2013.6555%2017.486C13.6555%2017.486%2014.7111%2014.9163%2016.0457%2014.6589C16.0457%2014.6589%2011.871%2014.5183%2011.1875%2019.0261C11.1875%2019.0261%2010.9777%2015.6799%2013.091%2014.581C15.2043%2013.4822%2015.3622%2012.4417%2015.3622%2012.4417C15.3622%2012.4417%2014.1617%2012.0762%2013.4176%2012.7554L13.7702%2012.0632C13.7702%2012.0632%2012.8833%2012.1714%2012.3555%2012.9587C12.3555%2012.9587%2012.8595%2012.0957%2012.6454%2011.0509L12.07%2011.5657C12.07%2011.5657%2012.5762%2010.3306%2011.4665%209.57568C11.4665%209.57568%2010.7138%2010.562%2011.0534%2011.4813L10.7311%2010.9427C10.7311%2010.9427%2010.4737%2011.914%2010.7376%2012.4591C10.8198%2012.5694%2010.863%2012.6451%2010.863%2012.6451C10.8111%2012.5932%2010.77%2012.5283%2010.7376%2012.4591C10.4996%2012.1368%209.94804%2011.5008%209.25586%2011.4965L9.47432%2012.074C9.47432%2012.074%208.70211%2011.118%207.84337%2011.3343C7.84337%2011.3343%208.01642%2012.7316%208.77565%2013.0734L8.01209%2013.1036C8.01209%2013.1036%208.67399%2014.0013%209.4873%2014.5118C10.3006%2015.0223%2010.3028%2016.2055%2010.3028%2016.2055C10.3028%2016.2055%209.20394%2015.0677%208.64803%2014.7843C8.09212%2014.501%207.81958%2013.8477%207.81958%2013.8477C7.81958%2013.8477%207.28097%2014.4447%207.60111%2014.8254C7.60111%2014.8254%206.75751%2014.0987%205.93555%2014.5183C5.93555%2014.5183%206.55635%2015.8637%207.30044%2015.7772C7.30044%2015.7815%206.22107%2015.8832%206.27298%2016.424ZM12.8163%2020.9275C12.8163%2020.9275%2011.8277%2022.0112%2012.4161%2023.8065C12.4161%2023.8043%2011.3389%2022.1323%2012.8163%2020.9275ZM13.9324%2015.7988C12.3577%2017.1745%2011.7996%2019.9714%2011.7996%2019.9714C12.0873%2016.9842%2013.9324%2015.7988%2013.9324%2015.7988ZM11.1702%2015.5393C11.0101%2015.1196%2010.8262%2014.7324%2010.6316%2014.3777C10.3093%2014.2566%209.50893%2013.9386%208.88597%2013.519C8.88597%2013.519%209.96318%2014.0251%2010.5623%2014.2501C9.59762%2012.5607%208.3863%2011.663%208.3863%2011.663C9.14986%2012.167%209.7101%2012.7554%2010.1211%2013.32C10.1427%2013.0323%2010.1449%2012.2536%209.59762%2011.8512C9.59762%2011.8512%2010.2963%2012.2449%2010.2379%2013.4865C10.4672%2013.8218%2010.6424%2014.1419%2010.7765%2014.4274V14.4296C11.0815%2015.0785%2011.1702%2015.5393%2011.1702%2015.5393C11.2394%2014.3323%2011.3259%2013.1945%2011.4016%2012.286C10.943%2012.0589%2010.8414%2011.4424%2010.8414%2011.4424C10.9798%2011.8815%2011.2697%2012.0978%2011.4124%2012.1822C11.5098%2011.0293%2011.5898%2010.2722%2011.5898%2010.2722C11.6915%2010.7892%2011.6504%2011.715%2011.5595%2012.6472C12.1544%2012.2211%2012.3772%2011.7409%2012.3772%2011.7409C12.2344%2012.2298%2011.7347%2012.6299%2011.5487%2012.764C11.4081%2014.1635%2011.1702%2015.5393%2011.1702%2015.5393C11.1702%2015.5393%2011.5617%2014.4318%2012.6908%2013.6401C12.7492%2013.3957%2012.9287%2012.7943%2013.3376%2012.4439C13.3376%2012.4439%2012.892%2012.9371%2012.8098%2013.5601C13.2575%2013.268%2013.8134%2013.0279%2014.497%2012.9176C14.4948%2012.9176%2012.1673%2013.4692%2011.1702%2015.5393ZM6.71209%2014.9423C9.69496%2015.5025%2010.3915%2018.0376%2010.3915%2018.0376C9.24937%2015.522%206.71209%2014.9423%206.71209%2014.9423Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M22.1913%208.782C22.1913%208.782%2021.2936%208.63491%2020.8502%209.09997L21.1314%208.55271C21.1314%208.55271%2020.2964%208.23042%2019.6843%208.88582L19.853%208.4186C19.853%208.4186%2018.9034%208.38183%2018.3994%209.23191C17.8954%2010.082%2017.3373%209.55205%2017.77%208.77118C18.2026%207.99031%2017.8781%207.47767%2017.8781%207.47767L17.545%207.79131C17.545%207.79131%2017.5796%207.04722%2017.2227%206.7963L17.0129%207.20728C17.0129%207.20728%2016.6646%206.13008%2015.7843%205.95703C15.7843%205.95703%2015.7605%207.01693%2016.0482%207.3349L15.542%206.97151C15.542%206.97151%2015.3841%207.6161%2015.821%208.04872L15.2997%207.78266C15.2997%207.78266%2015.1721%208.30396%2015.7994%208.83391C16.4289%209.3617%2016.7814%209.75105%2016.4029%2010.56C16.0244%2011.369%2015.5269%2012.1867%2015.7691%2013.3115C15.7691%2013.3115%2016.6949%2010.2594%2018.9207%2010.6357C21.153%2011.0164%2022.1913%208.782%2022.1913%208.782ZM17.0735%208.86419C17.0994%209.23624%2017.0843%209.48499%2017.0843%209.48499C17.0518%209.46985%2017.0021%209.43957%2016.9437%209.39414C16.6581%209.20379%2016.0049%208.73441%2015.6047%208.17201C15.6047%208.17201%2016.5348%209.08699%2016.9437%209.39414C17.0302%209.45255%2017.0843%209.48499%2017.0843%209.48499C17.0605%209.02859%2016.9934%208.6176%2016.9091%208.24988C16.2666%208.09847%2015.7972%207.38249%2015.7972%207.38249C16.351%208.02492%2016.8723%208.11145%2016.8788%208.11145C16.5651%206.8785%2016.0244%206.20146%2016.0244%206.20146C16.4851%206.64489%2016.7468%207.23324%2016.8982%207.78699C17.2097%207.54689%2017.2314%207.09913%2017.2314%207.09913C17.2465%207.55337%2017.0172%207.82808%2016.9307%207.91461C17.0064%208.22609%2017.0475%208.52459%2017.0691%208.77334L17.067%208.75604C17.5774%208.52892%2017.7981%207.78482%2017.7981%207.78482C17.6077%208.63491%2017.0735%208.86636%2017.0735%208.86419ZM21.4385%209.31195C21.4385%209.31195%2020.8783%2010.2594%2019.5458%2010.4108L19.5177%2010.4129C19.4723%2010.4173%2019.4247%2010.4216%2019.3771%2010.4259H19.3706C19.0483%2010.4454%2018.6871%2010.4173%2018.2804%2010.3243C18.2696%2010.3221%2018.2631%2010.3199%2018.2631%2010.3199C18.2631%2010.3199%2019.018%209.78782%2019.3122%208.8166C19.3122%208.8166%2019.2408%209.83974%2018.2631%2010.3199C18.2696%2010.3221%2018.2761%2010.3221%2018.2804%2010.3243C18.3756%2010.3437%2018.8558%2010.4303%2019.4701%2010.3372C19.7275%2010.0971%2020.4067%209.41145%2020.5582%208.72143C20.5582%208.72143%2020.4781%209.48932%2019.6583%2010.3026C20.2207%2010.188%2020.874%209.91544%2021.4385%209.31195Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M11.3671%2032.3873C11.7629%2031.7513%2010.8133%2030.6157%2010.8133%2030.6157C10.0822%2031.1781%2010.3785%2032.251%2010.3785%2032.251C10.1709%2031.7989%209.40084%2032.0304%209.40084%2032.0304C9.40084%2032.0304%209.87455%2032.556%209.89402%2033.1811C9.91348%2033.8041%2010.4716%2035.2858%2010.4716%2035.2858C10.4716%2035.2858%209.40083%2034.7775%209.29052%2033.8236C9.17804%2032.8696%208.64809%2031.8876%208.64809%2031.8876L8.29334%2032.5646C8.30849%2031.7319%207.12096%2030.977%207.12096%2030.977C6.55857%2031.6605%207.09285%2032.768%207.09285%2032.768L6.66239%2032.3224C6.37254%2032.9518%206.70782%2033.7219%206.89817%2034.0745C6.94575%2034.135%206.98685%2034.1978%207.01281%2034.267C7.01281%2034.267%206.96522%2034.1956%206.89817%2034.0745C6.51747%2033.6029%205.52895%2033.4212%205.52895%2033.4212L5.8772%2033.9425C5.18934%2033.2417%203.97803%2033.5013%203.97803%2033.5013C4.18568%2034.8272%205.51813%2034.8964%205.51813%2034.8964L4.80648%2035.1949C5.65873%2035.8352%206.65374%2035.7487%206.65374%2035.7487C5.71497%2035.8893%205.2391%2036.6442%205.2391%2036.6442L6.01564%2036.6204C5.08335%2037.0011%204.8995%2038.2427%204.8995%2038.2427C4.8995%2038.2427%205.90748%2038.5455%207.80449%2037.1049C9.7015%2035.6643%2012.6368%2037.2866%2012.6368%2037.2866C8.26955%2035.978%206.61048%2039.8109%206.61048%2039.8109C7.41514%2038.7142%2010.1882%2038.8592%2010.1882%2038.8592C9.47438%2039.1036%209.83345%2039.9796%209.83345%2039.9796C11.1854%2038.8959%2013.8546%2039.0517%2013.8546%2039.0517C12.9115%2039.0517%2012.4529%2040.3993%2012.4529%2040.3993C14.7977%2039.0517%2017.0927%2041.563%2017.0927%2041.563C16.5152%2038.7597%2014.4473%2038.0761%2013.5712%2036.5923C12.693%2035.1063%2012.6736%2033.0968%2012.6736%2033.0968C12.1825%2033.3607%2012.2518%2034.2756%2012.2518%2034.2756C11.8819%2033.0795%2012.3815%2031.734%2012.3815%2031.734C11.9208%2031.455%2011.3671%2032.3873%2011.3671%2032.3873ZM16.4308%2040.4425C15.0594%2039.1447%2013.6578%2039.573%2013.6578%2039.573C15.3817%2038.7532%2016.4308%2040.4425%2016.4308%2040.4425ZM13.2295%2038.247C13.2295%2038.247%2010.4629%2037.5548%208.54643%2038.3898C8.54643%2038.3898%2010.4067%2037.2282%2013.2295%2038.247ZM5.70199%2037.6652C6.09351%2037.0941%206.54775%2036.6939%207.00416%2036.4149C6.40499%2036.2224%205.76905%2036.4149%205.76905%2036.4149C6.26006%2036.1964%206.88086%2036.2916%207.12745%2036.3435C8.32579%2035.6622%209.49601%2035.7811%209.49601%2035.7811C9.49601%2035.7811%208.15058%2035.4069%206.82679%2034.9354C6.62778%2035.0457%206.05241%2035.3269%205.54842%2035.2468C5.54842%2035.2468%206.0762%2035.2512%206.71647%2034.8964C5.8361%2034.5785%204.98169%2034.2216%204.55773%2033.9079C4.55773%2033.9079%205.27587%2034.1588%206.35957%2034.5633C6.34442%2034.3989%206.27088%2034.0442%205.9356%2033.7305C5.9356%2033.7305%206.44825%2034.0874%206.45906%2034.5979C7.31348%2034.9181%208.37987%2035.3269%209.50034%2035.779C9.50034%2035.779%209.1218%2035.5021%208.66539%2034.9505V34.9483C8.46423%2034.7061%208.25008%2034.4076%208.04459%2034.0593C6.89817%2033.5813%206.83976%2032.781%206.83976%2032.781C6.96955%2033.4472%207.67471%2033.7781%207.94293%2033.882C7.60982%2033.2698%207.3178%2032.5127%207.18802%2031.6042C7.18802%2031.6042%207.48003%2033.0816%208.59618%2034.678C8.64809%2034.0399%208.65241%2032.8502%208.65241%2032.8502C8.76489%2033.5921%208.71082%2034.4508%208.68054%2034.7948C8.91847%2035.1236%209.18885%2035.4545%209.50034%2035.779C7.19451%2035.7963%205.70199%2037.6652%205.70199%2037.6652ZM12.083%2036.1467C12.083%2036.1467%2010.0887%2034.4314%2010.8587%2031.4961C10.8609%2031.4939%2010.3007%2034.0355%2012.083%2036.1467Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M5.45525%2024.7132C2.89202%2021.6849%200%2024.0059%200%2024.0059C3.29435%2023.5321%205.95276%2026.4371%205.95276%2026.4371C4.61599%2025.1523%203.38087%2026.4285%203.38087%2026.4285C6.80717%2026.5799%209.16059%2031.4533%209.16059%2031.4533C9.16059%2031.4533%209.29037%2030.2636%207.76108%2027.7739C6.23396%2025.2842%205.53096%2021.3496%205.53096%2021.3496C4.25043%2022.7405%205.45525%2024.7132%205.45525%2024.7132ZM6.98671%2027.0233C6.98671%2027.0233%206.98454%2027.0212%206.98238%2027.019C7.10567%2027.2094%207.22681%2027.3975%207.34145%2027.5836C7.51449%2027.8669%207.6724%2028.1481%207.81949%2028.4142C7.96441%2028.6824%208.09852%2028.9376%208.21965%2029.1734C8.69985%2030.123%208.96375%2030.7806%208.96375%2030.7806C8.96375%2030.7806%208.88372%2030.6227%208.74095%2030.348C8.60035%2030.0733%208.39054%2029.6839%208.13529%2029.2188C8.00767%2028.9874%207.86491%2028.7365%207.7135%2028.4748C7.62697%2028.3298%207.53829%2028.1806%207.44528%2028.0292C7.44095%2028.0227%206.29236%2026.6102%204.33911%2026.2922C4.33911%2026.2922%205.94411%2026.2425%207.17922%2027.5965C7.01483%2027.3348%206.84178%2027.0709%206.65792%2026.807C6.55842%2026.6643%206.45459%2026.5258%206.35076%2026.3831C6.24261%2026.2446%206.13446%2026.1084%206.0263%2025.9699C5.91166%2025.838%205.79918%2025.6995%205.68454%2025.5741C5.56124%2025.4486%205.44444%2025.3145%205.31682%2025.202C5.07455%2024.9619%204.80201%2024.7543%204.53811%2024.5618C4.2634%2024.3844%203.99302%2024.2178%203.71831%2024.0967C3.4436%2023.9756%203.17538%2023.8804%202.91798%2023.822C2.66274%2023.7571%202.42264%2023.7247%202.21065%2023.7009C1.99651%2023.6814%201.81049%2023.6771%201.65475%2023.6771C1.50117%2023.6792%201.37787%2023.6814%201.29568%2023.6879C1.21348%2023.6922%201.16806%2023.6944%201.16806%2023.6944C1.16806%2023.6944%201.21132%2023.6879%201.29351%2023.6792C1.37571%2023.6684%201.49684%2023.6533%201.65258%2023.6446C1.80832%2023.636%201.99651%2023.6316%202.21282%2023.6381C2.42912%2023.6489%202.67571%2023.6706%202.93744%2023.729C3.20134%2023.7787%203.47821%2023.8696%203.76374%2023.9842C4.04926%2024.0989%204.33478%2024.2568%204.61598%2024.4406C4.89069%2024.6331%205.16757%2024.8408%205.42281%2025.0874C5.55692%2025.2042%205.67156%2025.334%205.79702%2025.4594C5.92031%2025.5914%206.03279%2025.7277%206.15176%2025.8618C6.15176%2025.8618%205.01399%2023.6879%205.41416%2022.31C5.41632%2022.3143%205.17622%2024.2222%206.98671%2027.0233Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M54.492%2026.9583C54.784%2029.1128%2057.3819%2030.6637%2057.3819%2030.6637C53.1855%2026.7182%2056.6659%2026.0953%2056.6659%2026.0953C56.8281%2024.7044%2057.821%2024.8212%2057.821%2024.8212C57.9096%2023.5299%2059.374%2023.7159%2059.374%2023.7159C56.4582%2022.1542%2054.2%2024.8039%2054.492%2026.9583ZM55.5368%2024.7261C56.1035%2024.3367%2056.6789%2024.5292%2056.6789%2024.5292C55.9066%2024.4557%2055.3962%2024.9597%2055.3507%2025.0073C55.1885%2025.2841%2055.0609%2025.6108%2054.983%2025.9915C55.5627%2025.4939%2056.1424%2025.68%2056.1424%2025.68C55.3096%2025.641%2054.9787%2026.1558%2054.9462%2026.2099C54.8727%2026.7204%2054.8857%2027.3239%2055.0306%2028.042C55.0306%2028.042%2053.709%2024.3129%2057.423%2023.5191C57.57%2023.4823%2057.6609%2023.4715%2057.6609%2023.4715C57.5787%2023.4866%2057.5008%2023.5039%2057.423%2023.5191C57.0076%2023.6207%2056.1381%2023.9236%2055.5368%2024.7261Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M57.5033%2028.8595C57.2329%2027.8753%2058.4053%2027.6979%2058.4053%2027.6979C57.6396%2027.3886%2057.871%2026.1968%2057.871%2026.1968C54.9487%2028.1565%2057.3822%2030.6635%2057.3822%2030.6635C56.6164%2029.0131%2057.5033%2028.8595%2057.5033%2028.8595ZM57.4276%2026.8219C57.4427%2026.8111%2057.4492%2026.8046%2057.4492%2026.8046C57.4427%2026.8111%2057.4362%2026.8154%2057.4276%2026.8219C57.2783%2026.9365%2056.4261%2027.672%2056.7462%2029.357C56.7462%2029.357%2056.1644%2027.7066%2057.4276%2026.8219Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M56.1263%2012.4658C56.045%2012.5749%2056.0022%2012.6498%2056.0022%2012.6498C56.0535%2012.5963%2056.092%2012.5343%2056.1263%2012.4658Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M59.5624%2015.7816C60.3065%2015.8681%2060.9273%2014.5227%2060.9273%2014.5227C60.1054%2014.103%2059.2618%2014.8298%2059.2618%2014.8298C59.5797%2014.4491%2059.0433%2013.8521%2059.0433%2013.8521C59.0433%2013.8521%2058.7707%2014.5054%2058.2148%2014.7887C57.6589%2015.0721%2056.5601%2016.2099%2056.5601%2016.2099C56.5601%2016.2099%2056.5622%2015.0267%2057.3756%2014.5162C58.1889%2014.0057%2058.8508%2013.108%2058.8508%2013.108L58.0872%2013.0778C58.8464%2012.736%2059.0195%2011.3387%2059.0195%2011.3387C58.1629%2011.1223%2057.3885%2012.0784%2057.3885%2012.0784L57.607%2011.5009C56.9148%2011.5074%2056.3611%2012.1411%2056.1253%2012.4634C56.0929%2012.5327%2056.0518%2012.5954%2055.9999%2012.6495C55.9999%2012.6495%2056.0453%2012.5738%2056.1253%2012.4634C56.3892%2011.9162%2056.1318%2010.9471%2056.1318%2010.9471L55.8095%2011.4857C56.1491%2010.5643%2055.3964%209.58008%2055.3964%209.58008C54.2867%2010.335%2054.7929%2011.5701%2054.7929%2011.5701L54.2175%2011.0553C54.0033%2012.0979%2054.5073%2012.9631%2054.5073%2012.9631C53.9795%2012.1736%2053.0927%2012.0676%2053.0927%2012.0676L53.4453%2012.7598C52.7012%2012.0806%2051.5007%2012.4461%2051.5007%2012.4461C51.5007%2012.4461%2051.6586%2013.4866%2053.7719%2014.5854C55.8852%2015.6843%2055.6754%2019.0305%2055.6754%2019.0305C54.9897%2014.5227%2050.8171%2014.6633%2050.8171%2014.6633C52.1518%2014.9207%2053.2073%2017.4904%2053.2073%2017.4904C52.6817%2016.9496%2052.0436%2017.6505%2052.0436%2017.6505C53.6032%2018.4097%2054.6025%2020.8886%2054.6025%2020.8886C54.2002%2020.0363%2052.7855%2020.1986%2052.7855%2020.1986C55.0048%2021.7408%2053.72%2024.8903%2053.72%2024.8903C56.0063%2023.1706%2055.7403%2021.0097%2056.7072%2019.5799C57.6741%2018.1523%2059.4824%2017.2741%2059.4824%2017.2741C59.0325%2016.9432%2058.2365%2017.3974%2058.2365%2017.3974C59.1601%2016.5516%2060.5899%2016.4283%2060.5899%2016.4283C60.644%2015.8833%2059.5624%2015.7816%2059.5624%2015.7816ZM54.4468%2023.8044C55.033%2022.0091%2054.0466%2020.9254%2054.0466%2020.9254C55.5261%2022.1324%2054.4468%2023.8044%2054.4468%2023.8044ZM55.0632%2019.9714C55.0632%2019.9714%2054.5052%2017.1746%2052.9305%2015.7989C52.9305%2015.7989%2054.7756%2016.9843%2055.0632%2019.9714ZM52.3681%2012.9177C53.0516%2013.0258%2053.6075%2013.2659%2054.0552%2013.5601C53.9731%2012.9372%2053.5275%2012.444%2053.5275%2012.444C53.9363%2012.7944%2054.1158%2013.3979%2054.1742%2013.6402C55.3033%2014.4318%2055.6949%2015.5393%2055.6949%2015.5393C55.6949%2015.5393%2055.4591%2014.1636%2055.3185%2012.7641C55.1346%2012.63%2054.6328%2012.232%2054.49%2011.741C54.49%2011.741%2054.7107%2012.2212%2055.3077%2012.6473C55.219%2011.715%2055.1757%2010.7914%2055.2774%2010.2723C55.2774%2010.2723%2055.3574%2011.0272%2055.4548%2012.1822C55.5954%2012.0979%2055.8852%2011.8816%2056.0258%2011.4425C56.0258%2011.4425%2055.922%2012.059%2055.4656%2012.2861C55.5413%2013.1946%2055.63%2014.3345%2055.697%2015.5393C55.697%2015.5393%2055.7857%2015.0786%2056.0885%2014.4297V14.4275C56.2226%2014.142%2056.3979%2013.8197%2056.6271%2013.4866C56.5687%2012.245%2057.2674%2011.8513%2057.2674%2011.8513C56.7201%2012.2536%2056.7223%2013.0323%2056.7439%2013.32C57.1549%2012.7576%2057.7152%2012.1693%2058.4787%2011.6631C58.4787%2011.6631%2057.2674%2012.5608%2056.3027%2014.2501C56.9018%2014.023%2057.9791%2013.519%2057.9791%2013.519C57.3561%2013.9387%2056.5558%2014.2566%2056.2335%2014.3778C56.0388%2014.7325%2055.8549%2015.1197%2055.6949%2015.5393C54.6977%2013.4693%2052.3681%2012.9177%2052.3681%2012.9177ZM56.4714%2018.0377C56.4714%2018.0377%2057.1679%2015.5026%2060.1508%2014.9423C60.1529%2014.9423%2057.6157%2015.522%2056.4714%2018.0377Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M47.9383%2010.6401C50.1641%2010.2616%2051.0899%2013.3159%2051.0899%2013.3159C51.3321%2012.1889%2050.8346%2011.3713%2050.4561%2010.5644C50.0776%209.75544%2050.4323%209.36609%2051.0596%208.83831C51.689%208.31052%2051.5593%207.78705%2051.5593%207.78705L51.038%208.05311C51.4749%207.62266%2051.317%206.9759%2051.317%206.9759L50.8108%207.3393C51.0964%207.01917%2051.0747%205.96143%2051.0747%205.96143C50.1944%206.13447%2049.8461%207.21168%2049.8461%207.21168L49.6363%206.8007C49.2815%207.05161%2049.314%207.79571%2049.314%207.79571L48.9809%207.48206C48.9809%207.48206%2048.6543%207.99471%2049.089%208.77558C49.5216%209.55644%2048.9636%2010.0842%2048.4596%209.23631C47.9556%208.38622%2047.006%208.423%2047.006%208.423L47.1747%208.89022C46.5626%208.23481%2045.7276%208.55711%2045.7276%208.55711L46.0088%209.10436C45.5676%208.6393%2044.6677%208.78639%2044.6677%208.78639C44.6677%208.78639%2045.7125%2011.0165%2047.9383%2010.6401ZM49.792%208.86642C49.792%208.86642%2049.2578%208.63498%2049.0696%207.78489C49.0696%207.78489%2049.2902%208.52682%2049.8007%208.75611L49.7985%208.77341C49.8201%208.5225%2049.8613%208.22616%2049.937%207.91467C49.8504%207.82815%2049.6211%207.55344%2049.6363%207.0992C49.6363%207.0992%2049.6579%207.54695%2049.9694%207.78705C50.1187%207.23331%2050.3825%206.64496%2050.8433%206.20153C50.8433%206.20153%2050.3025%206.87857%2049.9889%208.11151C49.9954%208.11151%2050.5167%208.02499%2051.0704%207.38256C51.0704%207.38256%2050.5989%208.09854%2049.9586%208.24995C49.8721%208.61767%2049.8072%209.02865%2049.7834%209.48506C49.7834%209.48506%2049.8375%209.45262%2049.924%209.39421C50.335%209.08706%2051.2629%208.17208%2051.2629%208.17208C50.8627%208.73448%2050.2073%209.20386%2049.924%209.39421C49.8656%209.43964%2049.8158%209.46992%2049.7834%209.48506C49.7812%209.48506%2049.7661%209.23631%2049.792%208.86642ZM47.2093%2010.3027C46.3895%209.48722%2046.3095%208.7215%2046.3095%208.7215C46.4609%209.41152%2047.1401%2010.0972%2047.3975%2010.3373C48.0118%2010.4282%2048.4899%2010.3438%2048.5872%2010.3243C48.5937%2010.3222%2048.6002%2010.3222%2048.6045%2010.32C47.6268%209.8398%2047.5554%208.81667%2047.5554%208.81667C47.8496%209.78789%2048.6045%2010.32%2048.6045%2010.32C48.6045%2010.32%2048.598%2010.3222%2048.5872%2010.3243C48.1805%2010.4195%2047.8172%2010.4455%2047.497%2010.426H47.4905C47.4429%2010.4238%2047.3954%2010.4195%2047.3499%2010.413L47.3218%2010.4109C45.9894%2010.2573%2045.4291%209.31202%2045.4291%209.31202C45.9915%209.91551%2046.6426%2010.1881%2047.2093%2010.3027Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M54.477%2031.7321C54.477%2031.7321%2054.9767%2033.0797%2054.6068%2034.2737C54.6068%2034.2737%2054.676%2033.3609%2054.185%2033.0948C54.185%2033.0948%2054.1655%2035.1043%2053.2873%2036.5903C52.4091%2038.0764%2050.3412%2038.7577%2049.7659%2041.5611C49.7659%2041.5611%2052.0609%2039.0519%2054.4056%2040.3973C54.4056%2040.3973%2053.9471%2039.0497%2053.004%2039.0497C53.004%2039.0497%2055.6732%2038.8918%2057.0251%2039.9777C57.0251%2039.9777%2057.3842%2039.1016%2056.6704%2038.8572C56.6704%2038.8572%2059.4434%2038.7123%2060.2481%2039.809C60.2481%2039.809%2058.589%2035.976%2054.2218%2037.2847C54.2218%2037.2847%2057.1571%2035.6645%2059.0541%2037.103C60.9511%2038.5436%2061.9591%2038.2407%2061.9591%2038.2407C61.9591%2038.2407%2061.7752%2036.9991%2060.8429%2036.6184L61.6195%2036.6422C61.6195%2036.6422%2061.1436%2035.8852%2060.2048%2035.7467C60.2048%2035.7467%2061.1998%2035.8332%2062.0521%2035.193L61.3404%2034.8945C61.3404%2034.8945%2062.6751%2034.8253%2062.8805%2033.4993C62.8805%2033.4993%2061.6671%2033.2397%2060.9814%2033.9406L61.3296%2033.4193C61.3296%2033.4193%2060.3411%2033.601%2059.9604%2034.0725C59.8955%2034.1936%2059.8458%2034.265%2059.8458%2034.265C59.8717%2034.1958%2059.9107%2034.1309%2059.9604%2034.0725C60.1508%2033.7199%2060.4882%2032.9499%2060.1962%2032.3204L59.7657%2032.766C59.7657%2032.766%2060.2978%2031.6585%2059.7376%2030.975C59.7376%2030.975%2058.5501%2031.7299%2058.5652%2032.5627L58.2105%2031.8857C58.2105%2031.8857%2057.6805%2032.8677%2057.5681%2033.8216C57.4556%2034.7755%2056.387%2035.2838%2056.387%2035.2838C56.387%2035.2838%2056.9451%2033.8021%2056.9646%2033.1792C56.984%2032.5562%2057.4577%2032.0284%2057.4577%2032.0284C57.4577%2032.0284%2056.6877%2031.797%2056.48%2032.249C56.48%2032.249%2056.7764%2031.1762%2056.0453%2030.6138C56.0453%2030.6138%2055.0957%2031.7494%2055.4915%2032.3853C55.4958%2032.3875%2054.9421%2031.4552%2054.477%2031.7321ZM53.2051%2039.5732C53.2051%2039.5732%2051.8035%2039.1449%2050.4321%2040.4427C50.4321%2040.4427%2051.4833%2038.7534%2053.2051%2039.5732ZM58.3186%2038.39C56.4022%2037.555%2053.6356%2038.2472%2053.6356%2038.2472C56.4562%2037.2284%2058.3186%2038.39%2058.3186%2038.39ZM57.3712%2035.7813C57.6827%2035.4569%2057.9552%2035.1259%2058.191%2034.7971C58.1607%2034.4532%2058.1088%2033.5945%2058.2191%2032.8525C58.2191%2032.8525%2058.2235%2034.0422%2058.2754%2034.6803C59.3915%2033.084%2059.6835%2031.6066%2059.6835%2031.6066C59.5537%2032.5129%2059.2617%2033.2722%2058.9286%2033.8843C59.199%2033.7805%2059.9042%2033.4495%2060.0318%2032.7833C60.0318%2032.7833%2059.9755%2033.5837%2058.827%2034.0617C58.6215%2034.4121%2058.4073%2034.7085%2058.2062%2034.9507V34.9529C57.7497%2035.5045%2057.3712%2035.7813%2057.3712%2035.7813C58.4917%2035.3271%2059.5581%2034.9183%2060.4125%2034.6003C60.4233%2034.0898%2060.9359%2033.7329%2060.9359%2033.7329C60.5985%2034.0466%2060.5271%2034.4013%2060.512%2034.5657C61.5957%2034.1612%2062.3138%2033.9103%2062.3138%2033.9103C61.8899%2034.2239%2061.0354%2034.5808%2060.1551%2034.8988C60.7953%2035.2557%2061.3231%2035.2492%2061.3231%2035.2492C60.8191%2035.3293%2060.2438%2035.0481%2060.0448%2034.9377C58.7166%2035.4071%2057.3712%2035.7813%2057.3712%2035.7813C57.3712%2035.7813%2058.5393%2035.6624%2059.7398%2036.3437C59.9842%2036.2918%2060.605%2036.1966%2061.0982%2036.4151C61.0982%2036.4151%2060.4601%2036.2226%2059.8631%2036.4151C60.3195%2036.6941%2060.7737%2037.0943%2061.1652%2037.6654C61.1631%2037.6654%2059.6684%2035.7965%2057.3712%2035.7813ZM56.0042%2031.4941C56.7742%2034.4294%2054.7799%2036.1447%2054.7799%2036.1447C56.5644%2034.0357%2056.0042%2031.4941%2056.0042%2031.4941Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M61.3339%2021.3496C61.3339%2021.3496%2060.6309%2025.2842%2059.1038%2027.7739C57.5767%2030.2636%2057.7043%2031.4533%2057.7043%2031.4533C57.7043%2031.4533%2060.0555%2026.5799%2063.484%2026.4285C63.484%2026.4285%2062.2489%2025.1544%2060.9121%2026.4371C60.9121%2026.4371%2063.5727%2023.5321%2066.8649%2024.0059C66.8649%2024.0059%2063.9728%2021.6827%2061.4096%2024.7132C61.4096%2024.7132%2062.6123%2022.7405%2061.3339%2021.3496ZM61.4464%2022.3143C61.8444%2023.6922%2060.7088%2025.8661%2060.7088%2025.8661C60.8277%2025.732%2060.9402%2025.5957%2061.0635%2025.4638C61.189%2025.3383%2061.3036%2025.2085%2061.4377%2025.0917C61.693%2024.8451%2061.9699%2024.6375%2062.2446%2024.445C62.5258%2024.2633%2062.8113%2024.1032%2063.0968%2023.9885C63.3823%2023.8739%2063.6614%2023.7852%2063.9231%2023.7333C64.1848%2023.6749%2064.4293%2023.6533%2064.6477%2023.6425C64.864%2023.6338%2065.0544%2023.6381%2065.208%2023.649C65.3637%2023.6598%2065.4848%2023.6727%2065.567%2023.6836C65.6492%2023.6944%2065.6925%2023.6987%2065.6925%2023.6987C65.6925%2023.6987%2065.6492%2023.6965%2065.5649%2023.6922C65.4827%2023.6857%2065.3615%2023.6836%2065.2058%2023.6814C65.0522%2023.6814%2064.864%2023.6857%2064.6499%2023.7052C64.4379%2023.729%2064.1978%2023.7614%2063.9426%2023.8263C63.6873%2023.8847%2063.4169%2023.9799%2063.1422%2024.101C62.8675%2024.2222%2062.595%2024.3866%2062.3224%2024.5661C62.0564%2024.7564%2061.786%2024.9641%2061.5437%2025.2064C61.4161%2025.3188%2061.2993%2025.4529%2061.176%2025.5784C61.0592%2025.7039%2060.9489%2025.8423%2060.8342%2025.9742C60.7261%2026.1127%2060.6179%2026.2511%2060.5098%2026.3874C60.4081%2026.5302%2060.3021%2026.6686%2060.2026%2026.8114C60.0188%2027.0752%2059.8457%2027.3413%2059.6813%2027.6009C60.9164%2026.2468%2062.5214%2026.2965%2062.5214%2026.2965C60.5682%2026.6145%2059.4196%2028.027%2059.4153%2028.0335C59.3223%2028.1849%2059.2336%2028.3342%2059.147%2028.4791C58.9935%2028.7408%2058.8529%2028.9917%2058.7252%2029.2232C58.47%2029.6882%2058.2602%2030.0776%2058.1196%2030.3523C57.979%2030.627%2057.8968%2030.7849%2057.8968%2030.7849C57.8968%2030.7849%2058.1629%2030.1273%2058.6431%2029.1777C58.7642%2028.942%2058.8983%2028.6867%2059.0432%2028.4185C59.1903%2028.1525%2059.3461%2027.8713%2059.5213%2027.5879C59.6359%2027.4019%2059.7549%2027.2115%2059.8803%2027.0233C59.8782%2027.0255%2059.876%2027.0277%2059.876%2027.0277C61.6865%2024.2222%2061.4464%2022.3143%2061.4464%2022.3143Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M33.4414%2050.6938L33.2727%2050.5726C32.8249%2050.2287%2030.5429%2048.5091%2029.0028%2048.0354C26.4915%2047.2631%2018.8753%2044.1029%2016.8831%2039.8611C14.4756%2034.7368%2016.7209%2029.6623%2016.9848%2029.0999C17.5515%2027.895%2018.7152%2024.5964%2017.3092%2020.0193L15.9941%2015.5569L21.3888%2010.478L21.5316%2010.5754C21.5618%2010.597%2024.6009%2012.6497%2027.3826%2012.587C29.0655%2012.5481%2030.5494%2012.189%2031.6331%2011.9273C32.3988%2011.7434%2033.0023%2011.5963%2033.4327%2011.6136C33.861%2011.5985%2034.4667%2011.7434%2035.2324%2011.9273C36.3161%2012.189%2037.8%2012.5481%2039.4828%2012.587C42.2689%2012.6497%2045.3037%2010.597%2045.3339%2010.5754L45.4767%2010.478L50.8714%2015.5569L49.5584%2020.015C48.1524%2024.5942%2049.3161%2027.8929%2049.8829%2029.0977C50.1468%2029.6601%2052.3899%2034.7347%2049.9845%2039.859C47.9924%2044.1007%2040.3762%2047.261%2037.8649%2048.0332C36.3269%2048.5069%2034.0492%2050.2201%2033.6036%2050.564L33.4414%2050.6938ZM16.4808%2015.691L17.7202%2019.896C19.1695%2024.6137%2017.9603%2028.0335%2017.372%2029.2837C17.1167%2029.8267%2014.9472%2034.7325%2017.2703%2039.6794C19.1954%2043.7806%2026.6645%2046.8673%2029.1282%2047.6244C30.6446%2048.0916%2032.8055%2049.6793%2033.4306%2050.153C34.0557%2049.6793%2036.2166%2048.0916%2037.7329%2047.6244C40.1967%2046.8673%2047.6636%2043.7784%2049.5909%2039.6794C51.914%2034.7347%2049.7444%2029.8267%2049.4892%2029.2837C48.903%2028.0335%2047.6938%2024.6137%2049.1431%2019.8939L50.3804%2015.691L45.4291%2011.0296C44.7867%2011.4449%2042.1694%2013.0218%2039.6126%2013.0218C39.565%2013.0218%2039.5175%2013.0218%2039.4699%2013.0196C37.7394%2012.9785%2036.2296%2012.6151%2035.1286%2012.3469C34.391%2012.1695%2033.8091%2012.0268%2033.4414%2012.0441H33.4327H33.4241C33.0564%2012.0268%2032.4745%2012.1674%2031.7369%2012.3469C30.6337%2012.613%2029.1239%2012.9785%2027.3956%2013.0196C24.7935%2013.0824%2022.0918%2011.4514%2021.4364%2011.0296L16.4808%2015.691Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M45.3054%2011.8452L49.6467%2015.9312L48.5154%2019.7728C47.0142%2024.6613%2048.2796%2028.2304%2048.8939%2029.539C49.1362%2030.0539%2051.1933%2034.7088%2048.9934%2039.3918C47.1353%2043.3502%2039.4889%2046.3937%2037.5443%2046.9928C36.1643%2047.4168%2034.3733%2048.6476%2033.4323%2049.3376C32.4914%2048.6476%2030.7004%2047.4168%2029.3203%2046.9928C27.3757%2046.3937%2019.7293%2043.3502%2017.8712%2039.3918C15.6714%2034.7088%2017.7306%2030.0539%2017.9707%2029.539C18.585%2028.2326%2019.8504%2024.6613%2018.3449%2019.7641L17.2158%2015.9312L21.5571%2011.8452C22.5997%2012.4616%2024.9509%2013.6794%2027.2762%2013.6794C27.3281%2013.6794%2027.3779%2013.6794%2027.4298%2013.6773C29.2165%2013.6362%2030.7544%2013.2641%2031.8792%2012.9916C32.513%2012.838%2033.0624%2012.7061%2033.3609%2012.7061C33.3718%2012.7061%2033.4302%2012.7082%2033.4302%2012.7082C33.4302%2012.7082%2033.4886%2012.7061%2033.4994%2012.7061C33.8%2012.7061%2034.3473%2012.838%2034.9832%2012.9916C36.108%2013.2641%2037.646%2013.6362%2039.4327%2013.6773C39.4846%2013.6794%2039.5343%2013.6794%2039.5862%2013.6794C41.9137%2013.6794%2044.2628%2012.4616%2045.3054%2011.8452ZM21.4771%2011.1313L21.1634%2011.4277L16.8221%2015.5137L16.5647%2015.756L16.6642%2016.0934L17.7933%2019.9264C19.2404%2024.6375%2018.0356%2028.0465%2017.4494%2029.2946C17.1963%2029.8354%2015.0376%2034.7153%2017.3499%2039.6362C18.1978%2041.4424%2020.1944%2043.2334%2023.2832%2044.9531C25.7599%2046.3353%2028.2042%2047.2502%2029.1516%2047.5401C30.4495%2047.9403%2032.1777%2049.1278%2033.0927%2049.8005L33.4323%2050.0514L33.7719%2049.8005C34.6869%2049.1278%2036.4152%2047.9403%2037.713%2047.5401C38.6583%2047.2481%2041.1026%2046.3331%2043.5814%2044.9531C46.6681%2043.2313%2048.6646%2041.4424%2049.5147%2039.6362C51.8249%2034.7153%2049.6683%2029.8354%2049.4152%2029.2946C48.829%2028.0465%2047.6242%2024.6397%2049.067%2019.9415L50.2004%2016.0934L50.2999%2015.756L50.0425%2015.5137L45.7012%2011.4277L45.3876%2011.1313L45.0155%2011.352C44.1244%2011.8798%2041.812%2013.1062%2039.5884%2013.1062C39.5408%2013.1062%2039.4954%2013.1062%2039.45%2013.1041C37.726%2013.063%2036.2205%2012.6996%2035.1217%2012.4357C34.423%2012.267%2033.8714%2012.1328%2033.5037%2012.1328C33.4929%2012.1328%2033.4583%2012.135%2033.4345%2012.135C33.4107%2012.135%2033.3739%2012.1328%2033.3653%2012.1328C32.9975%2012.1328%2032.446%2012.267%2031.7473%2012.4357C30.6485%2012.7017%2029.143%2013.0651%2027.419%2013.1041C27.3714%2013.1062%2027.326%2013.1062%2027.2784%2013.1062C25.0548%2013.1062%2022.7424%2011.8798%2021.8513%2011.352L21.4771%2011.1313Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M45.3071%2013.4415L48.1429%2016.1129L47.2733%2019.0633C45.5753%2024.6008%2047.0375%2028.7063%2047.7449%2030.2139C47.959%2030.6703%2049.7781%2034.7801%2047.8487%2038.89C46.3389%2042.1065%2039.4776%2045.072%2037.1502%2045.788C35.954%2046.1557%2034.5826%2046.9625%2033.4297%2047.7434C32.2768%2046.9625%2030.9054%2046.1557%2029.7092%2045.788C27.3818%2045.072%2020.5205%2042.1065%2019.0107%2038.89C17.0812%2034.7823%2018.9004%2030.6703%2019.1145%2030.2139C19.8218%2028.7063%2021.2841%2024.6008%2019.5839%2019.0547L18.7187%2016.1129L21.5545%2013.4415C22.9907%2014.1618%2025.0391%2014.9492%2027.1417%2014.9492C27.2065%2014.9492%2027.2714%2014.9492%2027.3363%2014.947C29.3372%2014.8994%2031.0092%2014.4971%2032.2313%2014.2007C32.6315%2014.1034%2033.1701%2013.9736%2033.3648%2013.9563L33.434%2013.9585L33.5032%2013.9563C33.6957%2013.9736%2034.2365%2014.1056%2034.6345%2014.2007C35.8566%2014.4971%2037.5287%2014.8994%2039.5295%2014.947C39.5944%2014.9492%2039.6593%2014.9492%2039.7242%2014.9492C41.8224%2014.9492%2043.873%2014.1618%2045.3071%2013.4415ZM45.3828%2012.9224L45.1146%2013.0565C43.7865%2013.7227%2041.7726%2014.5165%2039.7221%2014.5165C39.6593%2014.5165%2039.5988%2014.5165%2039.536%2014.5144C37.5806%2014.469%2035.9345%2014.071%2034.7319%2013.7811C34.1824%2013.6492%2033.7455%2013.5453%2033.5378%2013.5259L33.5097%2013.5237L33.4816%2013.5259L33.4297%2013.528L33.3778%2013.5259L33.3497%2013.5237L33.3215%2013.5259C33.1139%2013.5453%2032.6769%2013.6492%2032.1275%2013.7811C30.9249%2014.071%2029.2788%2014.469%2027.3255%2014.5144C27.2628%2014.5165%2027.2022%2014.5165%2027.1395%2014.5165C25.0889%2014.5165%2023.0751%2013.7227%2021.747%2013.0565L21.4787%2012.9224L21.2603%2013.1279L18.4245%2015.7992L18.232%2015.9809L18.3077%2016.234L19.1729%2019.1758C20.8298%2024.5835%2019.413%2028.5678%2018.7273%2030.0301C18.5045%2030.5038%2016.6118%2034.7845%2018.6235%2039.0717C20.3172%2042.6775%2027.8187%2045.6539%2029.5859%2046.199C30.5593%2046.4975%2031.7706%2047.1378%2033.1918%2048.1003L33.434%2048.2647L33.6763%2048.1003C35.0952%2047.1378%2036.3087%2046.4975%2037.2821%2046.199C39.0493%2045.656%2046.5508%2042.6797%2048.2445%2039.0717C50.2583%2034.7845%2048.3635%2030.5038%2048.1407%2030.0301C47.455%2028.5678%2046.036%2024.5835%2047.6908%2019.1888L48.5603%2016.234L48.636%2015.9809L48.4435%2015.7992L45.6078%2013.1279L45.3828%2012.9224Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M27.5962%208.63915C26.6164%208.10487%2026.2313%207.24397%2026.1167%206.84813C25.8982%206.09322%2026.2422%205.21717%2027.0728%205.0636C27.315%205.01817%2027.5378%205.06792%2027.7455%205.1804C27.4037%205.2626%2027.2458%205.80553%2027.6828%205.86177C28.0786%205.91368%2028.0526%205.29721%2027.9705%205.0809C27.6936%204.35411%2026.9625%204.28057%2026.4433%204.82566C26.532%204.3779%2026.9906%203.96692%2027.4297%203.84795C27.7758%203.75278%2028.5631%203.80253%2028.7621%204.26542C28.6497%203.80253%2029.0585%203.15577%2029.3116%202.88106C30.0535%202.07424%2031.3686%201.50968%2032.528%201.63514C31.6909%202.1997%2030.83%202.98056%2030.2893%203.79604C29.4327%205.08739%2028.4896%206.92816%2030.2179%208.63482C30.1941%208.63482%2030.1703%208.65861%2030.1465%208.65861L27.5962%208.63915Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M30.9471%208.64991C28.9744%206.27702%2030.4669%204.57036%2032.5435%203.07568C31.3365%205.41396%2030.2204%205.76438%2030.9471%208.64991C30.7027%208.35573%2030.8887%208.41413%2030.9471%208.64991Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M39.0932%208.63915C40.073%208.10487%2040.4581%207.24397%2040.5727%206.84813C40.7912%206.09322%2040.4472%205.21717%2039.6166%205.0636C39.3744%205.01817%2039.1516%205.06792%2038.9439%205.1804C39.2857%205.2626%2039.4436%205.80553%2039.0067%205.86177C38.6108%205.91368%2038.6368%205.29721%2038.719%205.0809C38.9958%204.35411%2039.7269%204.28057%2040.2461%204.82566C40.1574%204.3779%2039.6988%203.96692%2039.2597%203.84795C38.9136%203.75278%2038.1263%203.80253%2037.9273%204.26542C38.0398%203.80253%2037.6309%203.15577%2037.3779%202.88106C36.6359%202.07424%2035.3208%201.50968%2034.1614%201.63514C34.9985%202.1997%2035.8594%202.98056%2036.4002%203.79604C37.2567%205.08739%2038.1998%206.92816%2036.4715%208.63482C36.4953%208.63482%2036.5191%208.65861%2036.5429%208.65861L39.0932%208.63915Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M35.7426%208.64991C36.4694%205.76221%2035.3554%205.41828%2034.1462%203.07568C36.2358%204.57901%2037.6915%206.30298%2035.7426%208.64991C35.7988%208.42278%2035.9481%208.40115%2035.7426%208.64991Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M33.5667%204.64202C33.5667%204.76315%2033.4673%204.86265%2033.3461%204.86265C33.2228%204.86265%2033.1255%204.76315%2033.1255%204.64202C33.1255%204.52089%2033.225%204.42139%2033.3461%204.42139C33.4673%204.42139%2033.5667%204.51872%2033.5667%204.64202Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M32.9168%204.64189C32.9168%204.90362%2032.7049%205.11777%2032.441%205.11777C32.1792%205.11777%2031.9651%204.90578%2031.9651%204.64189C31.9651%204.38016%2032.1771%204.16602%2032.441%204.16602C32.7049%204.16602%2032.9168%204.378%2032.9168%204.64189Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M31.3664%206.93289C31.5491%206.93289%2031.6973%206.78472%2031.6973%206.60195C31.6973%206.41917%2031.5491%206.271%2031.3664%206.271C31.1836%206.271%2031.0354%206.41917%2031.0354%206.60195C31.0354%206.78472%2031.1836%206.93289%2031.3664%206.93289Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M32.1906%205.62848C32.1906%205.8556%2032.0067%206.04162%2031.7774%206.04162C31.5503%206.04162%2031.3643%205.85776%2031.3643%205.62848C31.3643%205.40136%2031.5481%205.21533%2031.7774%205.21533C32.0067%205.21533%2032.1906%205.40136%2032.1906%205.62848Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M31.6286%207.51891C31.6286%207.65951%2031.514%207.77415%2031.3734%207.77415C31.2328%207.77415%2031.1182%207.65951%2031.1182%207.51891C31.1182%207.37831%2031.2328%207.26367%2031.3734%207.26367C31.514%207.26367%2031.6286%207.37831%2031.6286%207.51891Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M31.8899%208.26531C31.8899%208.37995%2031.7969%208.47296%2031.6823%208.47296C31.5676%208.47296%2031.4746%208.37995%2031.4746%208.26531C31.4746%208.15067%2031.5676%208.05765%2031.6823%208.05765C31.7969%208.05549%2031.8899%208.15067%2031.8899%208.26531Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M34.2564%205.11777C34.5192%205.11777%2034.7323%204.90471%2034.7323%204.64189C34.7323%204.37907%2034.5192%204.16602%2034.2564%204.16602C33.9936%204.16602%2033.7805%204.37907%2033.7805%204.64189C33.7805%204.90471%2033.9936%205.11777%2034.2564%205.11777Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M35.0024%206.60195C35.0024%206.78364%2035.1495%206.93289%2035.3334%206.93289C35.5151%206.93289%2035.6643%206.78581%2035.6643%206.60195C35.6643%206.42025%2035.5173%206.271%2035.3334%206.271C35.1517%206.27316%2035.0024%206.42025%2035.0024%206.60195Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M34.5098%205.62848C34.5098%205.8556%2034.6936%206.04162%2034.9229%206.04162C35.15%206.04162%2035.3361%205.85776%2035.3361%205.62848C35.3361%205.40136%2035.1522%205.21533%2034.9229%205.21533C34.6936%205.21533%2034.5098%205.40136%2034.5098%205.62848Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M35.327%207.77415C35.468%207.77415%2035.5823%207.65988%2035.5823%207.51891C35.5823%207.37795%2035.468%207.26367%2035.327%207.26367C35.1861%207.26367%2035.0718%207.37795%2035.0718%207.51891C35.0718%207.65988%2035.1861%207.77415%2035.327%207.77415Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M34.8079%208.26531C34.8079%208.37995%2034.9009%208.47296%2035.0155%208.47296C35.1302%208.47296%2035.2232%208.37995%2035.2232%208.26531C35.2232%208.15067%2035.1302%208.05765%2035.0155%208.05765C34.9009%208.05549%2034.8079%208.15067%2034.8079%208.26531Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M39.0049%209.13908C39.0049%209.23641%2038.9335%209.31428%2038.847%209.31428H27.8434C27.7569%209.31428%2027.6855%209.23641%2027.6855%209.13908C27.6855%209.04174%2027.7569%208.96387%2027.8434%208.96387H38.847C38.9335%208.96387%2039.0049%209.04174%2039.0049%209.13908Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M33.3456%204.68945C33.3456%204.68945%2031.9678%206.4026%2031.9678%207.164C31.9678%207.9254%2032.5842%208.76034%2033.3456%208.76034C34.107%208.76034%2034.7235%207.9254%2034.7235%207.164C34.7214%206.40044%2033.3456%204.68945%2033.3456%204.68945ZM33.6636%208.20876C33.5922%208.30394%2033.5165%208.38181%2033.4538%208.43588C33.3932%208.48996%2033.3435%208.52241%2033.3435%208.52241C33.3435%208.52241%2033.2959%208.49212%2033.2332%208.43588C33.1704%208.38181%2033.0947%208.30177%2033.0234%208.20876C32.8828%208.02058%2032.7897%207.76966%2032.7897%207.51874C32.7897%207.26783%2032.8806%207.01691%2033.0234%206.82873C33.0947%206.73355%2033.1704%206.65568%2033.2332%206.6016C33.2959%206.54753%2033.3435%206.51508%2033.3435%206.51508C33.3435%206.51508%2033.3911%206.54753%2033.4538%206.6016C33.5165%206.65568%2033.5944%206.73571%2033.6636%206.82873C33.8064%207.01691%2033.8972%207.26783%2033.8972%207.51874C33.8972%207.76966%2033.8064%208.02058%2033.6636%208.20876Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M38.1541%209.66016H28.535C27.9748%209.66016%2027.5205%209.94136%2027.5205%2010.2874C27.5205%2010.6335%2027.9748%2010.9147%2028.535%2010.9147H38.1541C38.7144%2010.9147%2039.1686%2010.6335%2039.1686%2010.2874C39.1686%209.93919%2038.7144%209.66016%2038.1541%209.66016ZM29.4543%2010.3415C29.4262%2010.374%2029.3872%2010.4129%2029.3396%2010.4497C29.2445%2010.5211%2029.1169%2010.5686%2028.9892%2010.5686C28.8616%2010.5686%2028.734%2010.5211%2028.6388%2010.4497C28.5912%2010.4129%2028.5501%2010.374%2028.5242%2010.3437C28.4961%2010.3134%2028.4809%2010.2874%2028.4809%2010.2874C28.4809%2010.2874%2028.4961%2010.2637%2028.5242%2010.2312C28.5523%2010.1988%2028.5912%2010.1598%2028.6388%2010.1252C28.734%2010.0538%2028.8616%2010.0062%2028.9892%2010.0062C29.1169%2010.0062%2029.2445%2010.0517%2029.3396%2010.1252C29.3872%2010.162%2029.4283%2010.2009%2029.4543%2010.2334C29.4824%2010.2658%2029.4976%2010.2896%2029.4976%2010.2896C29.4976%2010.2896%2029.4824%2010.3112%2029.4543%2010.3415ZM31.5352%2010.3415C31.507%2010.374%2031.4681%2010.4129%2031.4205%2010.4497C31.3253%2010.5211%2031.1977%2010.5686%2031.0701%2010.5686C30.9425%2010.5686%2030.8149%2010.5211%2030.7197%2010.4497C30.6721%2010.4129%2030.631%2010.374%2030.605%2010.3437C30.5769%2010.3134%2030.5618%2010.2874%2030.5618%2010.2874C30.5618%2010.2874%2030.5769%2010.2637%2030.605%2010.2312C30.6332%2010.1988%2030.6721%2010.1598%2030.7197%2010.1252C30.8149%2010.0538%2030.9425%2010.0062%2031.0701%2010.0062C31.1977%2010.0062%2031.3253%2010.0517%2031.4205%2010.1252C31.4681%2010.162%2031.5092%2010.2009%2031.5352%2010.2334C31.5633%2010.2658%2031.5784%2010.2896%2031.5784%2010.2896C31.5784%2010.2896%2031.5611%2010.3112%2031.5352%2010.3415ZM33.8107%2010.3415C33.7826%2010.374%2033.7437%2010.4129%2033.6961%2010.4497C33.6009%2010.5211%2033.4733%2010.5686%2033.3456%2010.5686C33.218%2010.5686%2033.0904%2010.5211%2032.9952%2010.4497C32.9476%2010.4129%2032.9065%2010.374%2032.8806%2010.3437C32.8525%2010.3134%2032.8373%2010.2874%2032.8373%2010.2874C32.8373%2010.2874%2032.8525%2010.2637%2032.8806%2010.2312C32.9087%2010.1988%2032.9476%2010.1598%2032.9952%2010.1252C33.0904%2010.0538%2033.218%2010.0062%2033.3456%2010.0062C33.4733%2010.0062%2033.6009%2010.0517%2033.6961%2010.1252C33.7437%2010.162%2033.7847%2010.2009%2033.8107%2010.2334C33.8388%2010.2658%2033.854%2010.2896%2033.854%2010.2896C33.854%2010.2896%2033.8388%2010.3112%2033.8107%2010.3415ZM36.043%2010.3415C36.0149%2010.374%2035.9759%2010.4129%2035.9283%2010.4497C35.8332%2010.5211%2035.7056%2010.5686%2035.5779%2010.5686C35.4503%2010.5686%2035.3227%2010.5211%2035.2275%2010.4497C35.1799%2010.4129%2035.1388%2010.374%2035.1129%2010.3437C35.0848%2010.3134%2035.0696%2010.2874%2035.0696%2010.2874C35.0696%2010.2874%2035.0848%2010.2637%2035.1129%2010.2312C35.141%2010.1988%2035.1799%2010.1598%2035.2275%2010.1252C35.3227%2010.0538%2035.4503%2010.0062%2035.5779%2010.0062C35.7056%2010.0062%2035.8332%2010.0517%2035.9283%2010.1252C35.9759%2010.162%2036.017%2010.2009%2036.043%2010.2334C36.0711%2010.2658%2036.0863%2010.2896%2036.0863%2010.2896C36.0863%2010.2896%2036.0711%2010.3112%2036.043%2010.3415ZM38.1693%2010.3415C38.1412%2010.374%2038.1022%2010.4129%2038.0546%2010.4497C37.9595%2010.5211%2037.8318%2010.5686%2037.7042%2010.5686C37.5766%2010.5686%2037.449%2010.5211%2037.3538%2010.4497C37.3062%2010.4129%2037.2651%2010.374%2037.2392%2010.3437C37.211%2010.3134%2037.1959%2010.2874%2037.1959%2010.2874C37.1959%2010.2874%2037.211%2010.2637%2037.2392%2010.2312C37.2673%2010.1988%2037.3062%2010.1598%2037.3538%2010.1252C37.449%2010.0538%2037.5766%2010.0062%2037.7042%2010.0062C37.8318%2010.0062%2037.9595%2010.0517%2038.0546%2010.1252C38.1022%2010.162%2038.1433%2010.2009%2038.1693%2010.2334C38.1974%2010.2658%2038.2125%2010.2896%2038.2125%2010.2896C38.2125%2010.2896%2038.1974%2010.3112%2038.1693%2010.3415Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M33.9447%202.00306H33.7933C33.7198%201.8192%2033.6246%201.64615%2033.5662%201.4558C33.4516%201.08592%2033.4537%200.692237%2033.3521%200.318027C33.3088%200.309374%2033.2677%200.664118%2033.2591%200.709542C33.2288%200.897729%2033.2115%201.08808%2033.1682%201.2741C33.1206%201.48176%2033.0406%201.67211%2032.9541%201.86462C32.9346%201.91004%2032.9151%201.95331%2032.8957%201.99873H32.7421C32.6188%201.99873%2032.5193%202.15014%2032.5193%202.33617C32.5193%202.52219%2032.6188%202.67361%2032.7421%202.67361H32.8048C32.8264%202.80772%2032.8675%202.93966%2032.9151%203.06945C32.9844%203.25547%2033.0428%203.44149%2033.0903%203.63617C33.1617%203.939%2033.2331%204.23967%2033.298%204.5425C33.3066%204.57927%2033.3261%204.56413%2033.3629%204.56413C33.391%204.56413%2033.3867%204.55547%2033.391%204.52735C33.4234%204.38243%2033.4559%204.2375%2033.4883%204.09258C33.5381%203.87195%2033.5857%203.64699%2033.6462%203.42852C33.7068%203.20788%2033.8106%203.00239%2033.8625%202.7796C33.8712%202.74499%2033.8777%202.70822%2033.882%202.67144H33.9426C34.0659%202.67144%2034.1654%202.52003%2034.1654%202.334C34.1697%202.15447%2034.068%202.00306%2033.9447%202.00306ZM33.4862%202.75148C33.4559%202.79257%2033.4213%202.82718%2033.3932%202.85098C33.365%202.87477%2033.3456%202.88991%2033.3456%202.88991C33.3456%202.88991%2033.3239%202.87693%2033.298%202.85098C33.2699%202.82718%2033.2374%202.79257%2033.205%202.75148C33.1423%202.66928%2033.1012%202.5568%2033.1012%202.44648C33.1012%202.33617%2033.1423%202.22369%2033.205%202.14149C33.2374%202.10039%2033.2699%202.06578%2033.298%202.04199C33.3261%202.0182%2033.3477%202.00306%2033.3477%202.00306C33.3477%202.00306%2033.3694%202.01603%2033.3975%202.04199C33.4256%202.06578%2033.4602%202.10039%2033.4905%202.14149C33.5532%202.22369%2033.5943%202.33617%2033.5943%202.44648C33.59%202.55896%2033.5489%202.66928%2033.4862%202.75148Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M44.4442%2042.2536H22.1906C20.6894%2041.0726%2019.3007%2039.9067%2018.6799%2038.7603H48.089C47.4184%2040.2787%2045.9562%2041.3992%2044.4442%2042.2536Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M42.2553%2019.9976C42.1038%2020.0625%2041.9978%2020.1144%2041.8875%2020.1576C40.8601%2020.5643%2039.8326%2020.9731%2038.803%2021.3733C38.7381%2021.3992%2038.63%2021.3928%2038.5759%2021.3517C38.0156%2020.9364%2037.3689%2020.7525%2036.7027%2020.6097C35.8007%2020.4151%2034.8857%2020.3653%2033.9685%2020.3977C32.7421%2020.4432%2031.5373%2020.6184%2030.3865%2021.0748C29.9777%2021.237%2029.5948%2021.4447%2029.2595%2021.7345C29.2184%2021.7691%2029.1384%2021.7843%2029.0865%2021.7735C28.9221%2021.7367%2028.7599%2021.6848%2028.5976%2021.635C28.5111%2021.6069%2028.4657%2021.6242%2028.4289%2021.7151C27.912%2023.0497%2027.687%2023.3525%2027.1722%2024.6849C27.1549%2024.7325%2027.157%2024.7996%2027.1765%2024.8472C27.2976%2025.1781%2027.2176%2025.4139%2026.9386%2025.6194C26.8758%2025.6648%2026.8434%2025.7773%2026.8326%2025.8638C26.7634%2026.3916%2026.7071%2026.9216%2026.6336%2027.4493C26.6271%2027.5034%2026.5298%2027.5553%2026.4627%2027.5835C26.4216%2027.6008%2026.3589%2027.5748%2026.3113%2027.5553C25.9652%2027.4234%2025.6191%2027.2914%2025.2752%2027.1508C25.0308%2027.0513%2025.0134%2026.9627%2025.167%2026.7485C25.4763%2026.3224%2025.7835%2025.8919%2026.0842%2025.4593C26.1166%2025.4117%2026.1231%2025.3295%2026.1101%2025.2711C26.0474%2024.9813%2026.1685%2024.7239%2026.4303%2024.5833C26.493%2024.5487%2026.5557%2024.6309%2026.5817%2024.5638C27.09%2023.2725%2027.2955%2022.8615%2027.8016%2021.568C27.8536%2021.436%2027.8298%2021.3906%2027.6892%2021.3517C27.0229%2021.1591%2026.361%2020.9515%2025.6991%2020.7482C25.6494%2020.733%2025.6018%2020.7114%2025.5326%2020.6833C25.5672%2020.653%2025.5867%2020.6249%2025.6148%2020.6097C27.3777%2019.6385%2029.1427%2018.6673%2030.9078%2017.6939C31.7925%2017.2072%2032.6772%2016.7205%2033.5597%2016.2317C33.6679%2016.1711%2033.7566%2016.1733%2033.869%2016.2274C34.213%2016.3917%2034.5634%2016.541%2034.9116%2016.6967C35.9261%2017.151%2036.9428%2017.6009%2037.9572%2018.0573C38.8895%2018.4769%2039.8175%2018.9052%2040.7476%2019.327C41.1629%2019.5152%2041.5804%2019.6948%2041.9978%2019.8786C42.0714%2019.9132%2042.1406%2019.9457%2042.2553%2019.9976Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M36.7394%2025.154C36.8952%2025.1172%2037.0531%2025.087%2037.2088%2025.0459C37.3754%2025.0026%2037.5419%2024.9528%2037.7085%2024.9009C37.7539%2024.888%2037.7972%2024.8642%2037.8361%2024.8382C37.9529%2024.756%2037.9594%2024.6608%2037.8318%2024.5959C37.702%2024.531%2037.5571%2024.4748%2037.4143%2024.4575C36.8714%2024.3948%2036.3263%2024.3104%2035.7812%2024.3083C34.8186%2024.3039%2033.8561%2024.3277%2032.8957%2024.3883C32.0997%2024.438%2031.3015%2024.5289%2030.5358%2024.7798C30.4514%2024.8079%2030.367%2024.8469%2030.2913%2024.8944C30.1897%2024.9593%2030.1853%2025.0718%2030.2935%2025.1107C30.5293%2025.1951%2030.7737%2025.2751%2031.0203%2025.3098C32.1343%2025.4633%2033.2547%2025.4439%2034.3752%2025.3898C34.4682%2025.3855%2034.5634%2025.3833%2034.6932%2025.3768C34.5634%2025.5131%2034.5093%2025.6623%2034.2952%2025.6731C33.3196%2025.7164%2032.3463%2025.7142%2031.3772%2025.6083C30.9446%2025.5607%2030.5141%2025.459%2030.088%2025.3595C29.9279%2025.3227%2029.77%2025.2384%2029.6338%2025.141C29.5602%2025.0891%2029.5061%2024.968%2029.4997%2024.875C29.4694%2024.4445%2029.4564%2024.0141%2029.4391%2023.5836C29.4218%2023.1424%2029.4088%2022.7011%2029.385%2022.2598C29.3785%2022.1387%2029.4023%2022.0565%2029.5126%2021.9808C30.0685%2021.6001%2030.6915%2021.3773%2031.3339%2021.2043C32.2749%2020.9533%2033.2353%2020.8473%2034.2065%2020.8257C34.9982%2020.8084%2035.7855%2020.8668%2036.5664%2021.0052C37.1266%2021.1047%2037.6631%2021.2864%2038.18%2021.5222C38.2666%2021.5612%2038.3509%2021.6109%2038.4245%2021.6693C38.4634%2021.7018%2038.5002%2021.7645%2038.5023%2021.8142C38.5391%2022.7119%2038.5672%2023.6117%2038.6083%2024.5094C38.6148%2024.6738%2038.537%2024.7733%2038.4223%2024.849C38.0351%2025.1064%2037.5895%2025.2232%2037.1396%2025.3054C37.0142%2025.3292%2036.8692%2025.2449%2036.733%2025.2103C36.7394%2025.1908%2036.7394%2025.1713%2036.7394%2025.154Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M24.404%2019.2708C24.4754%2019.0091%2024.5381%2018.782%2024.5987%2018.5548C24.6203%2018.4791%2024.6289%2018.3969%2024.6636%2018.3277C24.7522%2018.159%2024.6549%2018.0811%2024.5273%2018.0033C24.285%2017.854%2024.0471%2017.6983%2023.807%2017.5447C23.7832%2017.5295%2023.7659%2017.5057%2023.7205%2017.4582C24.0687%2017.443%2024.3824%2017.4279%2024.6982%2017.4149C24.9339%2017.4041%2024.9296%2017.4041%2024.988%2017.1705C25.0616%2016.8806%2025.1438%2016.5951%2025.2606%2016.3096C25.3579%2016.5735%2025.4617%2016.8374%2025.5526%2017.1034C25.6413%2017.3695%2025.6369%2017.3738%2025.9138%2017.3608C26.2145%2017.3478%2026.5151%2017.3349%2026.8353%2017.35C26.6882%2017.469%2026.5411%2017.5901%2026.3918%2017.7091C26.2642%2017.8107%2026.1366%2017.9146%2026.0068%2018.0119C25.9419%2018.0617%2025.9333%2018.1071%2025.9657%2018.1871C26.0782%2018.4661%2026.1777%2018.7495%2026.2815%2019.0307C26.2967%2019.0696%2026.3053%2019.1086%2026.3291%2019.1973C26.169%2019.0934%2026.0436%2019.0134%2025.9203%2018.9312C25.7624%2018.8274%2025.6023%2018.7257%2025.4466%2018.6154C25.3687%2018.5592%2025.3125%2018.5635%2025.2389%2018.6241C25.0075%2018.8144%2024.7695%2019.0004%2024.5338%2019.1864C24.5057%2019.2102%2024.4689%2019.2297%2024.404%2019.2708Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M41.8447%2018.0444C42.007%2017.8433%2042.1497%2017.6702%2042.2903%2017.495C42.3379%2017.4366%2042.3768%2017.3674%2042.4352%2017.322C42.578%2017.2073%2042.5218%2017.1035%2042.4417%2016.9867C42.2882%2016.7639%2042.1389%2016.5368%2041.9896%2016.3097C41.9745%2016.288%2041.9702%2016.2599%2041.9485%2016.2015C42.2579%2016.3226%2042.5369%2016.4308%2042.8159%2016.5389C43.0258%2016.6211%2043.0214%2016.6168%2043.162%2016.4373C43.3372%2016.2123%2043.5189%2015.996%2043.7309%2015.7905C43.7136%2016.0587%2043.705%2016.3291%2043.679%2016.5952C43.6552%2016.8612%2043.6487%2016.8634%2043.8953%2016.9586C44.1635%2017.0624%2044.4296%2017.1662%2044.7043%2017.3025C44.5291%2017.3501%2044.3539%2017.3977%2044.1808%2017.4453C44.0294%2017.4842%2043.8802%2017.5253%2043.7288%2017.5621C43.653%2017.5794%2043.6293%2017.6183%2043.6249%2017.6984C43.6163%2017.9839%2043.5946%2018.2694%2043.5773%2018.5571C43.5752%2018.596%2043.5665%2018.635%2043.5557%2018.7193C43.4562%2018.5657%2043.3783%2018.4489%2043.3005%2018.33C43.2031%2018.1786%2043.1015%2018.0271%2043.0106%2017.8714C42.963%2017.7935%2042.9133%2017.7741%2042.8246%2017.7979C42.5499%2017.8757%2042.2709%2017.9449%2041.994%2018.0163C41.9572%2018.0315%2041.9183%2018.0336%2041.8447%2018.0444Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M35.0588%2025.8226C35.1475%2025.7144%2035.2232%2025.6192%2035.3011%2025.5262C35.3271%2025.4938%2035.3487%2025.457%2035.379%2025.4332C35.4568%2025.3705%2035.4266%2025.3143%2035.3833%2025.2515C35.2989%2025.1304%2035.2189%2025.0071%2035.1389%2024.886C35.1302%2024.873%2035.1281%2024.8579%2035.1172%2024.8276C35.2838%2024.8925%2035.4352%2024.9509%2035.5866%2025.0114C35.7013%2025.0569%2035.6991%2025.0547%2035.7748%2024.9574C35.87%2024.8362%2035.9673%2024.7173%2036.082%2024.6069C36.0733%2024.7519%2036.0668%2024.8989%2036.0538%2025.0439C36.0409%2025.1888%2036.0387%2025.1888%2036.1707%2025.2407C36.3156%2025.297%2036.4605%2025.3532%2036.6076%2025.4267C36.5124%2025.4527%2036.4172%2025.4787%2036.3242%2025.5046C36.242%2025.5262%2036.162%2025.5479%2036.0798%2025.5673C36.0387%2025.5782%2036.0257%2025.5976%2036.0236%2025.6409C36.0192%2025.7966%2036.0063%2025.9502%2035.9976%2026.1059C35.9954%2026.1276%2035.9911%2026.147%2035.9868%2026.1946C35.9327%2026.1124%2035.8895%2026.0475%2035.8484%2025.9848C35.7943%2025.9026%2035.7402%2025.8204%2035.6904%2025.7361C35.6645%2025.6928%2035.6385%2025.6841%2035.591%2025.6971C35.4417%2025.7382%2035.2903%2025.7772%2035.141%2025.8161C35.1194%2025.8139%2035.0999%2025.8161%2035.0588%2025.8226Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M37.1399%2027.1207C37.2069%2027.0385%2037.2653%2026.9671%2037.3216%2026.8957C37.3411%2026.8719%2037.3584%2026.8438%2037.38%2026.8243C37.4384%2026.7768%2037.4168%2026.7357%2037.3822%2026.6881C37.3194%2026.5972%2037.2589%2026.5042%2037.1983%2026.4112C37.1918%2026.4025%2037.1896%2026.3896%2037.181%2026.3658C37.3086%2026.4155%2037.4211%2026.4588%2037.5357%2026.5042C37.6223%2026.5388%2037.6201%2026.5367%2037.6763%2026.4631C37.7477%2026.3723%2037.8234%2026.2814%2037.9099%2026.1992C37.9035%2026.3095%2037.8991%2026.4199%2037.8883%2026.528C37.8775%2026.6383%2037.8753%2026.6383%2037.977%2026.6773C38.0873%2026.7205%2038.1955%2026.7616%2038.3079%2026.8179C38.2366%2026.8373%2038.1652%2026.8568%2038.0938%2026.8763C38.0311%2026.8936%2037.9705%2026.9087%2037.9078%2026.9238C37.8753%2026.9303%2037.8667%2026.9455%2037.8645%2026.9801C37.8602%2027.0969%2037.8515%2027.2137%2037.845%2027.3305C37.845%2027.3456%2037.8407%2027.363%2037.8364%2027.3976C37.7953%2027.3348%2037.7629%2027.2872%2037.7326%2027.2375C37.6915%2027.1748%2037.6504%2027.1142%2037.6136%2027.0493C37.5941%2027.0169%2037.5747%2027.0104%2037.5379%2027.019C37.4254%2027.0515%2037.3108%2027.0796%2037.1983%2027.1077C37.1853%2027.1164%2037.1702%2027.1164%2037.1399%2027.1207Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M28.6714%2016.9845C28.7687%2016.8634%2028.8531%2016.7596%2028.9374%2016.6557C28.9656%2016.6211%2028.9894%2016.58%2029.024%2016.5519C29.1083%2016.4849%2029.0759%2016.4221%2029.0283%2016.3507C28.9353%2016.2166%2028.8466%2016.0825%2028.7579%2015.9462C28.7493%2015.9333%2028.7471%2015.916%2028.732%2015.8814C28.918%2015.9527%2029.0845%2016.0176%2029.2511%2016.0825C29.3765%2016.1323%2029.3744%2016.1301%2029.4587%2016.022C29.5626%2015.8878%2029.6729%2015.7581%2029.7983%2015.6348C29.7875%2015.7948%2029.7832%2015.9571%2029.7681%2016.1171C29.7529%2016.2772%2029.7508%2016.2772%2029.8978%2016.3334C30.0579%2016.3962%2030.218%2016.4589%2030.3824%2016.5389C30.2785%2016.567%2030.1726%2016.5952%2030.0687%2016.6233C29.9779%2016.6471%2029.8892%2016.6709%2029.7983%2016.6925C29.7529%2016.7033%2029.7378%2016.725%2029.7356%2016.7747C29.7291%2016.9456%2029.7161%2017.1165%2029.7075%2017.2873C29.7053%2017.3111%2029.701%2017.3328%2029.6945%2017.3847C29.634%2017.2938%2029.5885%2017.2225%2029.5431%2017.1511C29.4847%2017.0602%2029.4241%2016.9694%2029.3701%2016.8764C29.3419%2016.8288%2029.3117%2016.818%2029.2597%2016.8331C29.0953%2016.8785%2028.9288%2016.9218%2028.7622%2016.9651C28.7384%2016.9759%2028.7146%2016.978%2028.6714%2016.9845Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M21.9725%2021.6696C22.0244%2021.4814%2022.0677%2021.3192%2022.1131%2021.157C22.1282%2021.1029%2022.1347%2021.0423%2022.1607%2020.9947C22.2234%2020.8736%2022.1542%2020.8174%2022.0633%2020.7633C21.8903%2020.6573%2021.7194%2020.5448%2021.5464%2020.4345C21.5291%2020.4237%2021.5183%2020.4064%2021.4836%2020.3718C21.7324%2020.361%2021.9574%2020.3501%2022.1845%2020.3415C22.3532%2020.335%2022.3489%2020.3328%2022.3921%2020.1663C22.444%2019.9586%2022.5046%2019.7531%2022.5868%2019.5498C22.656%2019.7402%2022.7317%2019.9283%2022.7966%2020.1187C22.8615%2020.309%2022.8572%2020.3112%2023.0562%2020.3026C23.2725%2020.2917%2023.4866%2020.2831%2023.7181%2020.2939C23.6121%2020.3804%2023.5061%2020.4648%2023.4001%2020.5513C23.3093%2020.6248%2023.2163%2020.6984%2023.1232%2020.7676C23.0757%2020.8022%2023.0713%2020.8368%2023.093%2020.8931C23.173%2021.0921%2023.2444%2021.2954%2023.3201%2021.4987C23.3309%2021.5268%2023.3374%2021.555%2023.3547%2021.6177C23.2401%2021.542%2023.1514%2021.4857%2023.0627%2021.4273C22.948%2021.3516%2022.8334%2021.2803%2022.7231%2021.2002C22.6668%2021.1591%2022.6257%2021.1635%2022.5738%2021.2067C22.4073%2021.343%2022.2364%2021.4771%2022.0677%2021.609C22.046%2021.6263%2022.0201%2021.6393%2021.9725%2021.6696Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M42.623%2021.8165C42.7463%2021.6651%2042.8523%2021.5353%2042.9583%2021.4034C42.9951%2021.3601%2043.0232%2021.3082%2043.0665%2021.2736C43.1746%2021.1871%2043.1314%2021.1092%2043.0708%2021.0227C42.954%2020.8561%2042.8437%2020.6831%2042.7312%2020.5144C42.7204%2020.497%2042.7161%2020.4754%2042.7009%2020.4322C42.9345%2020.523%2043.1443%2020.6052%2043.3542%2020.6874C43.5121%2020.7501%2043.5099%2020.7458%2043.6137%2020.6117C43.7457%2020.443%2043.882%2020.2786%2044.042%2020.125C44.029%2020.3262%2044.0226%2020.5295%2044.0031%2020.7307C43.9858%2020.9318%2043.9815%2020.9318%2044.1653%2021.0032C44.3665%2021.0811%2044.5676%2021.1589%2044.7731%2021.2628C44.6412%2021.2974%2044.5092%2021.3342%2044.3795%2021.3688C44.267%2021.399%2044.1523%2021.4293%2044.0399%2021.4553C43.9815%2021.4683%2043.9641%2021.4964%2043.962%2021.5591C43.9555%2021.7754%2043.9382%2021.9896%2043.9252%2022.2037C43.9231%2022.234%2043.9166%2022.2621%2043.9079%2022.327C43.8322%2022.2124%2043.7738%2022.1237%2043.7176%2022.035C43.644%2021.9203%2043.5683%2021.8079%2043.4991%2021.6911C43.4645%2021.6327%2043.4255%2021.6175%2043.3607%2021.637C43.153%2021.6954%2042.9432%2021.7473%2042.7355%2021.8014C42.7074%2021.8057%2042.6771%2021.8079%2042.623%2021.8165Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M28.6065%2028.0267C28.6065%2028.0267%2026.6446%2027.7411%2025.6107%2028.9892L20.8303%2035.7661C20.8303%2035.7661%2027.7154%2034.9096%2033.03%2038.4051C33.03%2038.4051%2031.1027%2034.8728%2024.2912%2034.0184L28.6065%2028.0267Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M23.5646%2035.2793L23.5191%2035.342L22.3511%2036.9449L27.298%2037.04L23.4218%2036.4928L24.1832%2035.3269L23.5646%2035.2793Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M29.3682%2028.1216L25.8013%2033.354C25.8013%2033.354%2030.7244%2034.4248%2033.0302%2037.1113L33.1492%2030.1678C33.1492%2030.1657%2032.0309%2028.5261%2029.3682%2028.1216Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M38.2626%2028.0267C38.2626%2028.0267%2040.2245%2027.7411%2041.2584%2028.9892L46.0388%2035.7661C46.0388%2035.7661%2039.1538%2034.9096%2033.8391%2038.4051C33.8391%2038.4051%2035.7664%2034.8728%2042.5779%2034.0184L38.2626%2028.0267Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M43.3045%2035.2793L43.3477%2035.342L44.5158%2036.9449L39.5688%2037.04L43.4451%2036.4928L42.6858%2035.3269L43.3045%2035.2793Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M37.501%2028.1216L41.0679%2033.354C41.0679%2033.354%2036.1448%2034.4248%2033.8389%2037.1113L33.72%2030.1678C33.72%2030.1657%2034.8361%2028.5261%2037.501%2028.1216Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M27.0078%2039.3896H28.0872V39.5086H27.8298C27.7887%2039.5086%2027.7584%2039.5194%2027.7389%2039.5411C27.7195%2039.5627%2027.7108%2039.5973%2027.7108%2039.6427V41.4792C27.7108%2041.5224%2027.7238%2041.5549%2027.7476%2041.5722C27.7714%2041.5917%2027.8211%2041.6003%2027.8968%2041.6003H28.2235C28.3965%2041.6003%2028.5393%2041.5419%2028.6496%2041.4273C28.7599%2041.3105%2028.8399%2041.1093%2028.8918%2040.8238H29.0022L28.9481%2041.7193L27.0078%2041.7171V41.5981H27.1982C27.2631%2041.5981%2027.3085%2041.5852%2027.3344%2041.5614C27.3604%2041.5376%2027.3734%2041.4965%2027.3734%2041.4424V39.6233C27.3734%2039.5843%2027.3626%2039.554%2027.3409%2039.5346C27.3193%2039.5151%2027.2868%2039.5043%2027.2436%2039.5043H27.0078V39.3896Z%22%20fill%3D%22%23002248%22%2F%3E%3Cpath%20d%3D%22M29.7578%2039.3896H30.8307V39.5086H30.6468C30.5646%2039.5086%2030.5127%2039.5194%2030.4911%2039.5389C30.4694%2039.5584%2030.4586%2039.6016%2030.4586%2039.6687V41.4316C30.4586%2041.503%2030.4673%2041.5462%2030.4867%2041.5635C30.5127%2041.5873%2030.5581%2041.6003%2030.623%2041.6003H30.8285V41.7193H29.7556V41.6003H29.9589C30.0303%2041.6003%2030.0757%2041.5895%2030.0974%2041.5679C30.119%2041.5462%2030.1298%2041.5008%2030.1298%2041.4316V39.6687C30.1298%2039.6016%2030.1212%2039.5605%2030.1017%2039.5454C30.0714%2039.5216%2030.0173%2039.5086%2029.9395%2039.5086H29.7578V39.3896Z%22%20fill%3D%22%23002248%22%2F%3E%3Cpath%20d%3D%22M33.0213%2039.5693L33.164%2039.366H33.2787L33.2873%2040.2139H33.1835C33.1186%2039.9544%2033.0234%2039.764%2032.8958%2039.6429C32.7682%2039.5239%2032.6211%2039.4633%2032.4567%2039.4633C32.3183%2039.4633%2032.2058%2039.5044%2032.1171%2039.5866C32.0284%2039.6688%2031.9852%2039.7705%2031.9852%2039.8916C31.9852%2039.9652%2032.0025%2040.0322%2032.0349%2040.0885C32.0695%2040.1447%2032.1193%2040.1901%2032.1842%2040.2247C32.2512%2040.2594%2032.3767%2040.2983%2032.5605%2040.3372C32.8201%2040.3935%2033.0018%2040.4519%2033.1056%2040.5081C33.2094%2040.5665%2033.2873%2040.6379%2033.3392%2040.7266C33.3911%2040.8153%2033.4171%2040.9169%2033.4171%2041.0337C33.4171%2041.2436%2033.3457%2041.4166%2033.2051%2041.555C33.0645%2041.6935%2032.8807%2041.7627%2032.6579%2041.7627C32.4178%2041.7627%2032.208%2041.6848%2032.0306%2041.5291L31.8532%2041.7454H31.7407V40.8434H31.8532C31.8965%2041.0921%2031.996%2041.289%2032.1495%2041.4317C32.3031%2041.5745%2032.4762%2041.648%2032.6665%2041.648C32.8223%2041.648%2032.9477%2041.6026%2033.0472%2041.5096C33.1446%2041.4188%2033.1943%2041.3063%2033.1943%2041.1743C33.1943%2041.1008%2033.177%2041.0337%2033.1402%2040.9775C33.1035%2040.9213%2033.0451%2040.8737%2032.965%2040.8347C32.885%2040.7958%2032.7292%2040.7504%2032.4935%2040.6941C32.2361%2040.6336%2032.0609%2040.5643%2031.9678%2040.4886C31.8359%2040.3805%2031.771%2040.2291%2031.771%2040.0344C31.771%2039.8289%2031.8359%2039.6623%2031.9678%2039.5326C32.0976%2039.4028%2032.2664%2039.3379%2032.4697%2039.3379C32.567%2039.3379%2032.66%2039.3552%2032.7487%2039.3898C32.8352%2039.4309%2032.9261%2039.4871%2033.0213%2039.5693Z%22%20fill%3D%22%23002248%22%2F%3E%3Cpath%20d%3D%22M34.2239%2039.3916H35.4265C35.6602%2039.3916%2035.8397%2039.4457%2035.9695%2039.5517C36.0971%2039.6577%2036.162%2039.7961%2036.162%2039.9691C36.162%2040.073%2036.136%2040.1638%2036.0863%2040.2439C36.0344%2040.3239%2035.9608%2040.3888%2035.8656%2040.4364C35.7705%2040.484%2035.6191%2040.5186%2035.4136%2040.5402C35.5628%2040.5813%2035.6666%2040.6224%2035.7229%2040.6613C35.7791%2040.7003%2035.8245%2040.7522%2035.8592%2040.8149C35.8938%2040.8776%2035.9327%2041.0052%2035.976%2041.1978C36.0084%2041.3362%2036.0409%2041.4292%2036.0776%2041.479C36.1057%2041.5179%2036.1339%2041.5374%2036.1663%2041.5374C36.1988%2041.5374%2036.229%2041.5136%2036.2572%2041.466C36.2853%2041.4184%2036.3026%2041.334%2036.3091%2041.2129H36.4151C36.3956%2041.5698%2036.2636%2041.7472%2036.0192%2041.7472C35.9435%2041.7472%2035.8765%2041.7277%2035.8202%2041.6888C35.764%2041.6498%2035.7229%2041.5936%2035.6926%2041.5179C35.671%2041.4617%2035.645%2041.3124%2035.6191%2041.0723C35.6039%2040.9317%2035.578%2040.8344%2035.5455%2040.7738C35.5109%2040.7154%2035.459%2040.6678%2035.3854%2040.631C35.3141%2040.5943%2035.2275%2040.577%2035.1259%2040.577H34.9355V41.4919C34.9355%2041.5309%2034.9463%2041.559%2034.9658%2041.5741C34.9918%2041.5936%2035.0307%2041.6044%2035.0848%2041.6044H35.3076V41.7234H34.226V41.6044H34.4553C34.5051%2041.6044%2034.5418%2041.5936%2034.5656%2041.5741C34.5894%2041.5547%2034.6002%2041.5265%2034.6002%2041.4919V39.6317C34.6002%2039.5928%2034.5873%2039.5625%2034.5635%2039.5409C34.5397%2039.5214%2034.5029%2039.5106%2034.4532%2039.5106H34.2239V39.3916ZM34.9334%2040.4623H35.2081C35.3919%2040.4623%2035.5369%2040.4277%2035.6428%2040.3585C35.7467%2040.2893%2035.7986%2040.166%2035.8008%2039.9864C35.8008%2039.8632%2035.7813%2039.768%2035.7423%2039.6966C35.7034%2039.6252%2035.6515%2039.5776%2035.5866%2039.5495C35.5217%2039.5235%2035.3963%2039.5106%2035.2081%2039.5106C35.0848%2039.5106%2035.0069%2039.5192%2034.9788%2039.5365C34.9485%2039.5538%2034.9355%2039.5841%2034.9355%2039.6252L34.9334%2040.4623Z%22%20fill%3D%22%23002248%22%2F%3E%3Cpath%20d%3D%22M38.9157%2039.5757L39.0238%2039.3507H39.1233L39.1644%2040.2873H39.0585C38.9892%2040.0234%2038.9027%2039.8288%2038.7967%2039.7055C38.6669%2039.5497%2038.5112%2039.4697%2038.3317%2039.4697C38.137%2039.4697%2037.9769%2039.5562%2037.8536%2039.7314C37.7303%2039.9066%2037.6698%2040.2008%2037.6698%2040.6161C37.6698%2040.9665%2037.739%2041.2326%2037.8796%2041.4165C37.9986%2041.5722%2038.1673%2041.6501%2038.3836%2041.6501C38.5718%2041.6501%2038.7318%2041.5895%2038.8595%2041.4684C38.9871%2041.3472%2039.0714%2041.1655%2039.1104%2040.919H39.2229C39.1904%2041.1958%2039.0952%2041.41%2038.9373%2041.5571C38.7794%2041.7063%2038.5804%2041.7799%2038.3425%2041.7799C38.1478%2041.7799%2037.9704%2041.7301%2037.8082%2041.6328C37.646%2041.5354%2037.5162%2041.3948%2037.4188%2041.211C37.3215%2041.0271%2037.2739%2040.8281%2037.2739%2040.6096C37.2739%2040.3782%2037.3237%2040.1597%2037.4253%2039.9564C37.5248%2039.7531%2037.6546%2039.5995%2037.8104%2039.4978C37.9661%2039.3962%2038.1348%2039.3442%2038.3165%2039.3442C38.4182%2039.3442%2038.5155%2039.3615%2038.6085%2039.3962C38.7015%2039.4329%2038.8032%2039.4935%2038.9157%2039.5757Z%22%20fill%3D%22%23002248%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  filter:
    drop-shadow(0 4px 16px rgba(0,0,0,.45))
    drop-shadow(0 0 24px rgba(224,170,75,.20));
  animation: av-rise .9s var(--av-ease) both;
}

/* Hide every legacy/fallback logo element + the breathing star (logo
   carries the brand presence; the star was visual noise). */
html.auth-v3 .logo-login img,
html.auth-v3 .logo-login::before,
html.auth-v3 .logo-login::after,
html.auth-v3 .av-form-crest,
html.auth-v3 .av-form-logo,
html.auth-v3 .loginRight::before,
html.auth-v3 .av-hero::before { display: none !important; }

/* ==============================================================
 * MOBILE (≤ 768px) — native iOS-app sheet experience
 * Desktop remains exactly as designed; everything below applies only
 * on phones / narrow viewports.
 * ============================================================== */
@media (max-width: 768px) {

  /* Lock the body to the viewport so nothing scrolls behind the sheet */
  html.auth-v3, html.auth-v3 body {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
  }

  /* Aurora background: same gradient layer, simplified for paint perf */
  html.auth-v3 body::before {
    background:
      radial-gradient(50% 60% at 90% 10%, rgba(224,170,75,.32) 0%, rgba(224,170,75,.0) 70%),
      radial-gradient(50% 50% at 0% 100%, rgba(33,90,180,.30) 0%, rgba(33,90,180,.0) 70%),
      linear-gradient(170deg, var(--av-navy-light) 0%, var(--av-navy) 50%, var(--av-navy-deep) 100%);
    animation: none;
  }
  html.auth-v3 body::after { display: none; }

  /* Suppress every legacy mobile-head bit */
  html.auth-v3 .loaderOverlay { display: none !important; }

  /* Grid → stack: hero on top (visible part), form sheet on bottom */
  html.auth-v3 .loginpage:has(> .loginLeft) {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: minmax(38vh, auto) 1fr !important;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }
  html.auth-v3 .loginpage:has(> .loginpage) {
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }

  /* ---------- HERO PANEL ---------- */
  html.auth-v3 .loginLeft {
    padding: 0 28px !important;
    padding-top: max(72px, calc(36px + env(safe-area-inset-top, 28px))) !important;
    padding-bottom: 32px !important;
    min-height: auto !important;
    text-align: center;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
  }
  /* Drop the desktop drifting particles overlay on mobile (it fights the bg) */
  html.auth-v3 .loginLeft::before { display: none !important; }
  html.auth-v3 .loginLeft::after {
    bottom: -20%; right: -20%;
    width: 280px; height: 280px;
    filter: blur(34px);
  }

  /* Logo: centered, top of hero, prominent — feels like a status crest */
  html.auth-v3 .logo-login {
    position: absolute !important;
    top: max(20px, env(safe-area-inset-top, 20px));
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: 180px !important;
    height: 54px !important;
    z-index: 12;
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22205%22%20height%3D%2260%22%20viewBox%3D%220%200%20205%2060%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M35.1952%2054.7536L35.0264%2054.7298L35.0308%2054.9006C35.0308%2054.9482%2035.0221%2054.985%2035.0005%2055.0066C34.9789%2055.0283%2034.9529%2055.0304%2034.9378%2055.0304C34.9161%2055.0304%2034.8945%2055.0239%2034.8772%2055.0131C34.57%2054.8033%2034.9616%2054.1803%2035.007%2054.109L35.193%2053.8191L34.8556%2053.8883C34.7626%2053.9078%2034.6717%2053.9164%2034.5852%2053.9164C33.8714%2053.9164%2033.6053%2053.2697%2033.5599%2053.1399L33.4236%2052.7549L33.2873%2053.1399C33.2419%2053.2697%2032.9759%2053.9164%2032.2685%2053.9164C32.182%2053.9164%2032.0912%2053.9078%2031.9981%2053.8883L31.6607%2053.8191L31.8467%2054.109C31.8922%2054.1803%2032.2837%2054.8033%2031.9765%2055.0131C31.9592%2055.0239%2031.9376%2055.0304%2031.916%2055.0304C31.9008%2055.0304%2031.8749%2055.0283%2031.8532%2055.0066C31.8316%2054.985%2031.8208%2054.9482%2031.8229%2054.9006L31.8273%2054.7298L31.6586%2054.7536C31.319%2054.8033%2031.0832%2055.1516%2031.1135%2055.5647C31.1437%2055.9735%2031.4401%2056.3888%2032.0457%2056.3629C32.6016%2056.3391%2032.8439%2055.9476%2032.9239%2055.6253C32.9715%2055.6577%2033.0061%2055.701%2033.0256%2055.7551C33.0905%2055.9303%2033.0061%2056.1747%2032.8915%2056.3283C32.6795%2056.6095%2032.5497%2056.8041%2032.567%2057.2108C32.5843%2057.6153%2032.766%2057.9116%2032.9434%2058.1993C33.0689%2058.4048%2033.2008%2058.619%2033.283%2058.8828L33.4215%2059.3306L33.5577%2058.8828C33.6378%2058.619%2033.7697%2058.4048%2033.8995%2058.1972C34.0769%2057.9095%2034.2607%2057.6131%2034.278%2057.2108C34.2953%2056.8041%2034.1655%2056.6095%2033.9536%2056.3283C33.8389%2056.1747%2033.7567%2055.9303%2033.8195%2055.7551C33.8389%2055.701%2033.8735%2055.6577%2033.9211%2055.6253C34.0012%2055.9476%2034.2434%2056.3391%2034.7993%2056.3629C35.4028%2056.3888%2035.7035%2055.9757%2035.7316%2055.5647C35.7705%2055.1537%2035.5369%2054.8033%2035.1952%2054.7536Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M29.69%2051.1976C29.5559%2051.1197%2029.4196%2051.07%2029.2877%2051.0202C29.1125%2050.9553%2028.9459%2050.8947%2028.7988%2050.7736C28.7036%2050.6957%2028.2948%2050.2718%2028.0785%2050.0447C28.0936%2050.0295%2028.1088%2050.0165%2028.1239%2050.0014C30.2048%2050.9077%2031.0116%2052.119%2031.5026%2053.2417L31.7038%2053.7002L31.7795%2053.2049C32.0304%2051.548%2031.1133%2050.2264%2029.1968%2049.4498C29.2552%2049.4498%2029.3115%2049.4585%2029.3634%2049.4736C29.3915%2049.4823%2029.4239%2049.4888%2029.4629%2049.4974C29.597%2049.5277%2029.796%2049.5731%2029.9885%2049.7224L30.3021%2049.969L30.2545%2049.5731C30.1226%2048.4808%2029.359%2048.3185%2028.9178%2048.3185C28.5825%2048.3185%2028.2753%2048.4051%2028.0763%2048.4786C27.9163%2048.537%2027.7605%2048.6257%2027.6091%2048.7403C27.1419%2048.5262%2026.2615%2047.9378%2026.4129%2047.4901C26.4713%2047.3149%2026.5773%2047.3019%2026.6098%2047.2976C26.8088%2047.2738%2027.1008%2047.4684%2027.276%2047.741L27.4772%2048.0546L27.5399%2047.6891C27.6178%2047.237%2027.5615%2046.8736%2027.3733%2046.614C27.2652%2046.4648%2027.1159%2046.3545%2026.9342%2046.2874C26.8607%2046.2615%2026.7828%2046.242%2026.7006%2046.229C26.3437%2046.1771%2026.0322%2046.2658%2025.8008%2046.4843C25.5218%2046.746%2025.379%2047.1894%2025.4201%2047.6653C25.4807%2048.3942%2026.2529%2049.0518%2026.9624%2049.4368C26.9429%2049.465%2026.9213%2049.4931%2026.9018%2049.5234C26.4065%2049.3352%2025.3682%2049.4044%2024.6176%2049.8089C24.3429%2049.9581%2024.1179%2050.1398%2023.947%2050.3518C24.0595%2050.0382%2024.0552%2049.5969%2023.8324%2049.1902C23.6377%2048.8355%2023.3717%2048.6841%2023.1359%2048.55C22.9823%2048.4635%2022.8374%2048.3813%2022.7249%2048.2493C22.5648%2048.0633%2022.4935%2047.8448%2022.4178%2047.6134L22.262%2047.1418L22.0976%2047.5766C21.7342%2048.5348%2021.9635%2049.4001%2022.7552%2050.116C22.4783%2049.9603%2022.2642%2049.7743%2022.1149%2049.6164C21.4682%2048.9393%2021.3103%2047.7583%2021.7407%2046.8109C21.8575%2046.5513%2022.0976%2046.3372%2022.3788%2046.2377C22.6406%2046.1446%2022.9131%2046.1598%2023.1489%2046.2766C23.3652%2046.3848%2023.4474%2046.5751%2023.4517%2046.7157C23.456%2046.839%2023.4106%2046.9407%2023.3262%2046.9904C23.2138%2047.0575%2023.0386%2047.0293%2022.8352%2046.9104L22.6232%2046.7871L22.6189%2047.0315C22.6124%2047.343%2022.7357%2047.648%2022.9499%2047.8427C23.1489%2048.0244%2023.4041%2048.1044%2023.6896%2048.0741C24.1807%2048.0222%2024.5614%2047.7323%2024.7387%2047.2781C24.9702%2046.6876%2024.8209%2045.9456%2024.371%2045.433C24.1569%2045.1886%2023.88%2045.009%2023.5707%2044.8944C23.0386%2044.6997%2022.4113%2044.7062%2021.8381%2044.9441C20.9382%2045.3162%2020.3845%2046.1555%2020.2936%2047.2435C20.1985%2046.9861%2020.0946%2046.7287%2019.9778%2046.4756C19.848%2045.4806%2020.67%2044.7365%2021.1459%2044.5591L21.4292%2044.4531L21.1675%2044.2996C21.1156%2044.2693%2021.0615%2044.2433%2021.0053%2044.2238C20.7284%2044.1222%2020.3888%2044.1287%2020.0665%2044.2433C19.6642%2044.3882%2019.3311%2044.6867%2019.1277%2045.0739C18.7038%2044.557%2018.189%2044.1395%2017.5487%2043.9059C16.9387%2043.6831%2016.2162%2043.6247%2015.3575%2043.8064L14.6372%2043.9578L15.3618%2044.0897C16.9776%2044.3839%2017.7477%2045.0804%2018.2344%2045.8981C17.5984%2045.725%2017.1507%2045.8094%2016.7722%2046.162C16.4434%2046.4691%2016.3157%2046.8714%2016.4217%2047.2651C16.5191%2047.6307%2016.8024%2047.9184%2017.1442%2047.9984C17.486%2048.0784%2017.8277%2047.9486%2018.1068%2047.6328L18.4485%2047.2478L17.9575%2047.3992C17.8256%2047.4403%2017.6828%2047.4122%2017.6028%2047.3278C17.5617%2047.2868%2017.5206%2047.2132%2017.5573%2047.1029C17.6266%2046.8931%2017.739%2046.865%2017.8191%2046.8606C18.2474%2046.8433%2018.9785%2047.5636%2019.1623%2047.9919H19.1645C19.5063%2048.71%2019.9821%2049.3655%2020.9296%2049.7375L20.9361%2049.7224C21.4552%2050.5314%2022.3053%2051.2149%2023.5642%2051.3122C23.5599%2051.3641%2023.5555%2051.4139%2023.5534%2051.468C23.5361%2052.0585%2023.8216%2052.6165%2024.3148%2052.9605C24.5765%2053.1422%2024.8664%2053.2373%2025.1389%2053.2373C25.2795%2053.2373%2025.4158%2053.2114%2025.5412%2053.1616L25.7748%2053.0665L25.5953%2052.8891C25.3098%2052.6101%2025.1475%2052.1948%2025.1735%2051.8789C25.4028%2052.0888%2025.7337%2052.2769%2026.1166%2052.2986C26.573%2052.3224%2027.0143%2052.1082%2027.4231%2051.6626L27.7216%2051.3382L27.2847%2051.3879C26.6249%2051.4636%2026.2075%2051.2235%2026.0387%2050.9748C25.9263%2050.8082%2025.9068%2050.6265%2025.9868%2050.4773C26.0863%2050.2912%2026.3307%2050.1766%2026.6639%2050.1528C26.666%2050.2934%2026.7006%2050.4383%2026.7699%2050.5616C26.878%2050.7477%2027.051%2050.8558%2027.2479%2050.8558C27.3258%2050.8558%2027.4058%2050.8385%2027.4858%2050.8082L27.5421%2050.7866L27.5702%2050.7347C27.5745%2050.7282%2027.5788%2050.7217%2027.581%2050.7152C28.2148%2051.1954%2028.5738%2051.747%2028.6431%2052.3613C28.7253%2053.0838%2028.3835%2053.6591%2028.1694%2053.8863C27.8925%2054.1783%2027.4253%2054.2453%2027.1224%2054.0355C26.7958%2053.8084%2026.9191%2053.4104%2027.1441%2052.8285L27.2674%2052.5062L27.0121%2052.556C26.2637%2052.6987%2025.7467%2053.3996%2025.8592%2054.1177C25.9717%2054.8423%2026.9148%2055.5259%2027.6956%2055.4502C28.2083%2055.3982%2028.6647%2055.1171%2029.0129%2054.6325C29.4261%2054.0615%2029.6251%2053.3044%2029.6359%2052.8393C29.8479%2052.9799%2030.0101%2053.2503%2030.0469%2053.4774L30.1226%2053.9512L30.3194%2053.5142C30.579%2052.941%2030.5855%2052.3678%2030.3367%2051.9006C30.2048%2051.6734%2029.969%2051.3598%2029.69%2051.1976Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M25.0912%2047.6567L24.8381%2047.7692C24.0745%2048.1088%2023.7998%2048.8681%2024.0983%2049.8003L24.1524%2049.9691L24.3168%2049.902C24.5439%2049.8112%2024.9419%2049.6013%2025.0696%2049.2336C25.1842%2048.907%2025.1453%2048.7145%2025.1063%2048.509C25.0761%2048.3554%2025.0458%2048.1953%2025.0674%2047.9315L25.0912%2047.6567Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M51.5074%2044.0878L52.232%2043.9559L51.5117%2043.8045C50.653%2043.6249%2049.9305%2043.6812%2049.3205%2043.904C48.6824%2044.1376%2048.1654%2044.5551%2047.7415%2045.072C47.5382%2044.6827%2047.205%2044.3863%2046.8027%2044.2414C46.4783%2044.1246%2046.1408%2044.1203%2045.8639%2044.2219C45.8077%2044.2436%2045.7515%2044.2674%2045.7017%2044.2976L45.44%2044.4512L45.7233%2044.5572C46.1971%2044.7346%2047.0212%2045.4787%2046.8914%2046.4737C46.7746%2046.7246%2046.6708%2046.982%2046.5756%2047.2416C46.4847%2046.1536%2045.931%2045.3143%2045.0312%2044.9422C44.4579%2044.7043%2043.8285%2044.6978%2043.2986%2044.8925C42.9892%2045.005%2042.7124%2045.1867%2042.4982%2045.4311C42.0461%2045.9437%2041.899%2046.6857%2042.1305%2047.2762C42.3079%2047.7304%2042.6907%2048.0203%2043.1796%2048.0722C43.4651%2048.1025%2043.7203%2048.0224%2043.9193%2047.8408C44.1335%2047.6439%2044.2568%2047.3411%2044.2503%2047.0296L44.246%2046.7852L44.034%2046.9085C43.8285%2047.0274%2043.6555%2047.0556%2043.543%2046.9885C43.4608%2046.9388%2043.4132%2046.8349%2043.4175%2046.7138C43.424%2046.571%2043.5062%2046.3807%2043.7203%2046.2747C43.9561%2046.1579%2044.2287%2046.1427%2044.4904%2046.2358C44.7716%2046.3353%2045.0117%2046.5494%2045.1285%2046.809C45.559%2047.7564%2045.401%2048.9374%2044.7543%2049.6145C44.605%2049.7702%2044.3909%2049.9584%2044.114%2050.1141C44.9035%2049.3982%2045.1328%2048.5329%2044.7716%2047.5747L44.6072%2047.1399L44.4515%2047.6115C44.3758%2047.8429%2044.3022%2048.0614%2044.1443%2048.2474C44.0318%2048.3794%2043.8869%2048.4615%2043.7333%2048.5481C43.4975%2048.6822%2043.2315%2048.8336%2043.0368%2049.1883C42.814%2049.595%2042.8119%2050.0363%2042.9222%2050.3499C42.7513%2050.1379%2042.5263%2049.9541%2042.2516%2049.807C41.501%2049.4025%2040.4628%2049.3333%2039.9674%2049.5215C39.948%2049.4912%2039.9263%2049.4652%2039.9069%2049.4349C40.6163%2049.0499%2041.3864%2048.3923%2041.4491%2047.6634C41.4902%2047.1875%2041.3475%2046.7441%2041.0684%2046.4823C40.837%2046.2639%2040.5255%2046.1752%2040.1686%2046.2271C40.0864%2046.2401%2040.0085%2046.2595%2039.935%2046.2855C39.7533%2046.3526%2039.604%2046.4629%2039.4959%2046.6121C39.3055%2046.8739%2039.2493%2047.2351%2039.3293%2047.6872L39.3921%2048.0527L39.5932%2047.7391C39.7684%2047.4665%2040.0604%2047.2719%2040.2594%2047.2957C40.294%2047.3%2040.3979%2047.313%2040.4563%2047.4882C40.6077%2047.9359%2039.7273%2048.5243%2039.2601%2048.7384C39.1087%2048.6259%2038.9529%2048.5373%2038.7929%2048.4767C38.5939%2048.4031%2038.2867%2048.3166%2037.9514%2048.3166C37.508%2048.3166%2036.7466%2048.4789%2036.6147%2049.5712L36.5671%2049.967L36.8807%2049.7205C37.0711%2049.5712%2037.2722%2049.5258%2037.4064%2049.4955C37.4453%2049.4868%2037.4799%2049.4782%2037.5059%2049.4717C37.5578%2049.4566%2037.614%2049.4479%2037.6724%2049.4479C35.7559%2050.2244%2034.8388%2051.5461%2035.0897%2053.203L35.1654%2053.6983L35.3666%2053.2398C35.8576%2052.1171%2036.6644%2050.9058%2038.7453%2049.9995C38.7604%2050.0146%2038.7756%2050.0276%2038.7907%2050.0428C38.5723%2050.2699%2038.1656%2050.6917%2038.0704%2050.7717C37.9255%2050.8928%2037.7589%2050.9534%2037.5816%2051.0183C37.4496%2051.068%2037.3133%2051.1178%2037.1792%2051.1957C36.9002%2051.3579%2036.6666%2051.6715%2036.5498%2051.89C36.301%2052.3572%2036.3075%2052.9326%2036.5671%2053.5037L36.7639%2053.9406L36.8396%2053.4669C36.8764%2053.2376%2037.0386%2052.9694%2037.2506%2052.8288C37.2593%2053.296%2037.4604%2054.0509%2037.8736%2054.622C38.2218%2055.1043%2038.6782%2055.3877%2039.1909%2055.4396C39.9696%2055.5175%2040.9127%2054.8318%2041.0273%2054.1072C41.1398%2053.389%2040.6207%2052.6882%2039.8744%2052.5454L39.6192%2052.4957L39.7425%2052.818C39.9674%2053.3998%2040.0907%2053.7978%2039.7641%2054.025C39.4634%2054.2348%2038.994%2054.1677%2038.7172%2053.8757C38.503%2053.6486%2038.1613%2053.0732%2038.2435%2052.3507C38.3127%2051.7364%2038.6696%2051.1849%2039.3055%2050.7046C39.3099%2050.7111%2039.3142%2050.7176%2039.3163%2050.7241L39.3445%2050.776L39.4007%2050.7977C39.4807%2050.8301%2039.5629%2050.8453%2039.6386%2050.8453C39.8355%2050.8453%2040.0085%2050.7371%2040.1167%2050.5511C40.1881%2050.4278%2040.2227%2050.2829%2040.2248%2050.1423C40.5601%2050.1639%2040.8024%2050.2807%2040.9019%2050.4667C40.9819%2050.616%2040.9624%2050.7955%2040.85%2050.9642C40.6812%2051.213%2040.2638%2051.4531%2039.604%2051.3774L39.1671%2051.3276L39.4656%2051.6521C39.8744%2052.0998%2040.3157%2052.314%2040.7721%2052.288C41.1549%2052.2685%2041.4859%2052.0782%2041.7152%2051.8684C41.7411%2052.1842%2041.5789%2052.5995%2041.2934%2052.8785L41.1139%2053.0559L41.3475%2053.1511C41.4729%2053.2008%2041.6092%2053.2268%2041.7498%2053.2268C42.0223%2053.2268%2042.3122%2053.1316%2042.5739%2052.9499C43.0671%2052.606%2043.3526%2052.0479%2043.3353%2051.4574C43.3332%2051.4055%2043.3288%2051.3536%2043.3245%2051.3017C44.5812%2051.2043%2045.4335%2050.5186%2045.9526%2049.7118L45.9591%2049.7269C46.9087%2049.3549%2047.3824%2048.6995%2047.7242%2047.9813H47.7263C47.908%2047.5531%2048.6413%2046.8328%2049.0696%2046.8501C49.1475%2046.8544%2049.2621%2046.8825%2049.3313%2047.0923C49.3681%2047.2026%2049.327%2047.2762%2049.2859%2047.3173C49.2037%2047.3995%2049.061%2047.4298%2048.9312%2047.3887L48.4402%2047.2373L48.7819%2047.6223C49.061%2047.9381%2049.4027%2048.0679%2049.7445%2047.9878C50.0863%2047.9078%2050.3696%2047.618%2050.467%2047.2546C50.5708%2046.8609%2050.4432%2046.4586%2050.1165%2046.1514C49.738%2045.7988%2049.2902%2045.7145%2048.6543%2045.8875C49.1194%2045.0785%2049.8894%2044.382%2051.5074%2044.0878Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M42.5414%2049.9044L42.7058%2049.9715L42.7598%2049.8028C43.0583%2048.8705%2042.7836%2048.1091%2042.0201%2047.7717L41.767%2047.6592L41.7908%2047.9361C41.8124%2048.1999%2041.7821%2048.36%2041.7519%2048.5136C41.7129%2048.7169%2041.674%2048.9094%2041.7886%2049.2382C41.9162%2049.6038%2042.3164%2049.8136%2042.5414%2049.9044Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M75.6392%208.53564L84.189%208.53943V9.47551H82.1462C81.8241%209.47551%2081.5816%209.55889%2081.43%209.72943C81.2746%209.89997%2081.1988%2010.169%2081.1988%2010.5329L81.1912%2025.0781C81.1912%2025.4268%2081.2898%2025.6731%2081.483%2025.8209C81.6763%2025.9649%2082.0705%2026.0407%2082.6579%2026.0407H85.2463C86.622%2026.0407%2087.7514%2025.5821%2088.6268%2024.665C89.5022%2023.7479%2090.1389%2022.1562%2090.5407%2019.8861H91.4123L90.9841%2026.9768L75.6316%2026.9692V26.0331H77.1399C77.6553%2026.0331%2078.0154%2025.9346%2078.2238%2025.7413C78.4322%2025.548%2078.5346%2025.2335%2078.5346%2024.8014L78.5422%2010.4078C78.5422%2010.1008%2078.455%209.86964%2078.2807%209.71047C78.1063%209.5513%2077.8486%209.47172%2077.5075%209.47172H75.6392V8.53564Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M103.934%208.16406C105.488%208.16406%20106.943%208.57336%20108.3%209.39575C109.656%2010.2143%20110.721%2011.3589%20111.487%2012.8255C112.252%2014.2922%20112.639%2015.9445%20112.635%2017.7788C112.635%2019.6168%20112.249%2021.273%20111.472%2022.751C110.699%2024.229%20109.637%2025.3811%20108.285%2026.2073C106.935%2027.0334%20105.503%2027.4465%20103.991%2027.4465C102.513%2027.4465%20101.126%2027.041%2099.8295%2026.23C98.5334%2025.419%2097.495%2024.2593%2096.7105%2022.751C95.926%2021.2426%2095.5356%2019.5713%2095.5356%2017.7333C95.5356%2015.9218%2095.9184%2014.2884%2096.6802%2012.8293C97.4419%2011.3702%2098.4841%2010.2295%2099.803%209.40332C101.129%208.57715%20102.505%208.16406%20103.934%208.16406ZM104.131%209.12288C102.509%209.12288%20101.198%209.79368%20100.19%2011.1391C99.1852%2012.4844%2098.6812%2014.6787%2098.6774%2017.7181C98.6774%2021.0153%2099.189%2023.2967%20100.22%2024.5625C101.251%2025.8245%20102.524%2026.4574%20104.044%2026.4574C105.109%2026.4574%20106.041%2026.1732%20106.848%2025.5971C107.655%2025.0249%20108.296%2024.1153%20108.773%2022.8685C109.251%2021.6216%20109.493%2019.9844%20109.493%2017.9569C109.493%2015.7474%20109.27%2014.0193%20108.823%2012.7762C108.375%2011.5332%20107.735%2010.6123%20106.905%2010.0135C106.079%209.42228%20105.154%209.12288%20104.131%209.12288Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M117.361%208.55811L121.761%208.56189L132.869%2023.0503L132.877%2012.5677C132.877%2011.5141%20132.638%2010.7297%20132.157%2010.2256C131.717%209.75947%20131.061%209.52071%20130.19%209.50176V8.56568L136.644%208.56947V9.50555C135.984%209.50555%20135.492%209.59651%20135.166%209.77842C134.84%209.96033%20134.556%2010.2938%20134.313%2010.7751C134.071%2011.2564%20133.949%2011.7832%20133.949%2012.3593L133.938%2026.9993H132.767L121.272%2011.9159L121.265%2023.0389C121.265%2024.0432%20121.519%2024.7974%20122.023%2025.2901C122.531%2025.7865%20123.315%2026.0404%20124.376%2026.0594V26.9955L117.346%2026.9917V26.0556C118.225%2026.0215%20118.927%2025.7335%20119.442%2025.1915C119.957%2024.6496%20120.215%2023.9826%20120.215%2023.1943L120.223%2010.7107L120.003%2010.4719C119.59%2010.021%20119.294%209.75189%20119.12%209.66851C118.881%209.55103%20118.57%209.49419%20118.188%209.49419H117.354L117.361%208.55811Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M140.281%208.56934L149.801%208.57312C151.215%208.57312%20152.413%208.82325%20153.402%209.3235C154.63%209.9564%20155.676%2011.0062%20156.536%2012.4766C157.396%2013.9471%20157.824%2015.6904%20157.824%2017.699C157.824%2019.3627%20157.567%2020.8558%20157.047%2022.1861C156.657%2023.2093%20156.055%2024.0999%20155.244%2024.8655C154.432%2025.631%20153.447%2026.2033%20152.284%2026.5822C151.412%2026.8627%20150.249%2027.0067%20148.793%2027.0029L140.27%2026.9991V26.063H142.013C142.453%2026.063%20142.76%2025.991%20142.93%2025.8508C143.101%2025.7106%20143.184%2025.4908%20143.184%2025.1914L143.192%2010.3468C143.192%2010.089%20143.101%209.88439%20142.919%209.72901C142.737%209.57363%20142.483%209.49783%20142.161%209.49783H140.278L140.281%208.56934ZM146.963%209.5092C146.588%209.5092%20146.311%209.58879%20146.133%209.74417C145.955%209.90335%20145.864%2010.1383%20145.864%2010.4529L145.856%2025.1573C145.856%2025.4567%20145.959%2025.684%20146.167%2025.8356C146.375%2025.991%20146.728%2026.0668%20147.224%2026.0668H148.793C150.196%2026.0668%20151.427%2025.7068%20152.485%2024.9829C153.174%2024.5016%20153.697%2023.8233%20154.057%2022.9516C154.55%2021.773%20154.793%2020.1434%20154.796%2018.0666C154.796%2014.993%20154.262%2012.7419%20153.193%2011.3094C152.28%2010.1042%20150.9%209.50162%20149.055%209.50162L146.963%209.5092Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M171.332%208.20166C172.885%208.20166%20174.341%208.61096%20175.697%209.43334C177.054%2010.2519%20178.119%2011.3965%20178.885%2012.8631C179.654%2014.3298%20180.037%2015.9821%20180.033%2017.8164C180.033%2019.6544%20179.646%2021.3106%20178.869%2022.7886C178.096%2024.2666%20177.035%2025.4187%20175.682%2026.2449C174.333%2027.071%20172.901%2027.4841%20171.388%2027.4841C169.91%2027.4841%20168.523%2027.0786%20167.227%2026.2676C165.931%2025.4566%20164.893%2024.2969%20164.108%2022.7886C163.324%2021.2802%20162.933%2019.6089%20162.933%2017.7709C162.933%2015.9594%20163.316%2014.326%20164.078%2012.8669C164.84%2011.4078%20165.882%2010.2671%20167.201%209.44092C168.527%208.61474%20169.903%208.20166%20171.332%208.20166ZM171.529%209.16048C169.907%209.16048%20168.595%209.83127%20167.587%2011.1767C166.583%2012.522%20166.079%2014.7163%20166.075%2017.7557C166.075%2021.0529%20166.587%2023.3343%20167.618%2024.6001C168.648%2025.8621%20169.922%2026.495%20171.441%2026.495C172.506%2026.495%20173.439%2026.2108%20174.246%2025.6385C175.053%2025.0662%20175.694%2024.1567%20176.171%2022.9099C176.649%2021.663%20176.891%2020.0258%20176.891%2017.9983C176.891%2015.7888%20176.668%2014.0607%20176.22%2012.8214C175.773%2011.5784%20175.133%2010.6574%20174.303%2010.0587C173.477%209.46366%20172.552%209.16048%20171.529%209.16048Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M184.759%208.59619L189.159%208.59998L200.267%2023.0884L200.274%2012.6058C200.274%2011.5522%20200.035%2010.7678%20199.554%2010.2637C199.114%209.79757%20198.459%209.55881%20197.587%209.53986V8.60378L204.041%208.60757V9.54364C203.382%209.54364%20202.889%209.6346%20202.563%209.81651C202.237%209.99842%20201.953%2010.3319%20201.71%2010.8132C201.468%2011.2945%20201.347%2011.8213%20201.347%2012.3974L201.339%2027.0411H200.168L188.674%2011.9577L188.666%2023.0808C188.666%2024.0851%20188.92%2024.8393%20189.424%2025.3319C189.932%2025.8284%20190.716%2026.0823%20191.777%2026.1013V27.0373L184.747%2027.0336V26.0975C185.627%2026.0634%20186.328%2025.7753%20186.843%2025.2334C187.358%2024.6915%20187.616%2024.0245%20187.616%2023.2362L187.624%2010.7526L187.404%2010.5138C186.991%2010.0629%20186.695%209.79377%20186.521%209.71039C186.282%209.59291%20185.971%209.53606%20185.589%209.53606H184.755L184.759%208.59619Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M77.9431%2043.7148H78.2349L80.5353%2049.589C80.6262%2049.8278%2080.8157%2049.9453%2081.1037%2049.9453H81.3046V50.2712H78.7427V49.9453H78.9474C79.2126%2049.9453%2079.4021%2049.9149%2079.512%2049.8581C79.5878%2049.8164%2079.6257%2049.7558%2079.6257%2049.6724C79.6257%2049.6231%2079.6144%2049.5701%2079.5954%2049.517L79.0648%2048.1527H76.5257L76.2263%2048.9334C76.1467%2049.1418%2076.1088%2049.3086%2076.1088%2049.4299C76.1088%2049.5701%2076.1732%2049.6913%2076.3059%2049.7937C76.4385%2049.896%2076.628%2049.9453%2076.8819%2049.9453H77.0979V50.2712H74.771V49.9453C75.0211%2049.9453%2075.2182%2049.8922%2075.3622%2049.7823C75.5062%2049.6724%2075.6389%2049.4678%2075.7601%2049.1646L77.9431%2043.7148ZM77.818%2044.9541L76.6621%2047.8154H78.9284L77.818%2044.9541Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M82.4225%2043.855H83.9536L87.823%2048.903L87.8267%2045.2534C87.8267%2044.8858%2087.7434%2044.6129%2087.5766%2044.4386C87.425%2044.2757%2087.1938%2044.1923%2086.8907%2044.1847V43.8588H89.138V44.1847C88.9068%2044.1847%2088.7363%2044.215%2088.6226%2044.2794C88.5089%2044.3439%2088.4104%2044.4576%2088.327%2044.6281C88.2436%2044.7949%2088.2019%2044.9805%2088.2019%2045.1814L88.1981%2050.2825H87.7888L83.783%2045.0298L83.7792%2048.9068C83.7792%2049.2554%2083.8664%2049.5207%2084.0445%2049.6913C84.2226%2049.8656%2084.4955%2049.9528%2084.8669%2049.9603V50.2863H82.4187V49.9603C82.7257%2049.949%2082.9682%2049.8504%2083.1463%2049.6609C83.3245%2049.4715%2083.4154%2049.2403%2083.4154%2048.9636L83.4192%2044.6167L83.3434%2044.5334C83.1994%2044.3742%2083.0971%2044.2832%2083.0364%2044.2529C82.9531%2044.2112%2082.8432%2044.1923%2082.7105%2044.1923H82.4187V43.855H82.4225Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M90.4077%2043.8589H93.7238C94.2165%2043.8589%2094.6333%2043.9461%2094.9782%2044.1204C95.4065%2044.3402%2095.7703%2044.7078%2096.0697%2045.2194C96.3691%2045.731%2096.5169%2046.3374%2096.5169%2047.0385C96.5169%2047.6184%2096.4259%2048.1376%2096.2478%2048.5999C96.1114%2048.9562%2095.9029%2049.2669%2095.6187%2049.5322C95.3345%2049.7975%2094.9934%2049.9984%2094.5879%2050.131C94.2847%2050.2295%2093.8792%2050.2788%2093.3714%2050.2788H90.4001V49.9529H91.0065C91.1619%2049.9529%2091.268%2049.9301%2091.3249%2049.8809C91.3855%2049.8316%2091.412%2049.7558%2091.412%2049.6497L91.4158%2044.4804C91.4158%2044.3895%2091.3855%2044.3174%2091.3211%2044.2644C91.2566%2044.2113%2091.1695%2044.1848%2091.0558%2044.1848H90.4001V43.8589H90.4077ZM92.7347%2044.1848C92.6058%2044.1848%2092.5073%2044.2113%2092.4466%2044.2682C92.3822%2044.325%2092.3519%2044.4046%2092.3519%2044.5145L92.3481%2049.6383C92.3481%2049.7406%2092.386%2049.8202%2092.458%2049.8733C92.53%2049.9263%2092.6513%2049.9529%2092.8256%2049.9529H93.3714C93.8602%2049.9529%2094.2885%2049.8278%2094.6561%2049.5777C94.8948%2049.4109%2095.0805%2049.176%2095.2056%2048.869C95.3762%2048.4597%2095.4633%2047.8912%2095.4633%2047.1674C95.4633%2046.0949%2095.2776%2045.3104%2094.9062%2044.8139C94.5879%2044.3932%2094.1066%2044.1848%2093.4661%2044.1848H92.7347Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M101.315%2043.8628L104.631%2043.8666C105.275%2043.8666%20105.772%2044.0144%20106.128%2044.3062C106.48%2044.598%20106.659%2044.9808%20106.659%2045.4583C106.659%2045.7425%20106.587%2045.9965%20106.446%2046.2163C106.306%2046.4361%20106.101%2046.6142%20105.84%2046.7468C105.575%2046.8795%20105.158%2046.9742%20104.593%2047.0311C105.006%2047.1448%20105.29%2047.2547%20105.446%2047.3646C105.601%2047.4745%20105.726%2047.6147%20105.821%2047.7852C105.916%2047.9596%20106.022%2048.3082%20106.147%2048.8388C106.234%2049.2178%20106.329%2049.4755%20106.427%2049.6157C106.503%2049.7218%20106.583%2049.7749%20106.67%2049.7749C106.761%2049.7749%20106.844%2049.7105%20106.92%2049.5778C106.996%2049.4452%20107.045%2049.214%20107.06%2048.8805H107.356C107.299%2049.8658%20106.935%2050.3547%20106.264%2050.3547C106.052%2050.3547%20105.87%2050.3017%20105.715%2050.1955C105.56%2050.0894%20105.442%2049.9303%20105.366%2049.7218C105.306%2049.5664%20105.237%2049.1571%20105.162%2048.4939C105.12%2048.1074%20105.052%2047.8345%20104.957%2047.6715C104.862%2047.5086%20104.718%2047.3797%20104.517%2047.2812C104.316%2047.1827%20104.078%2047.1334%20103.801%2047.1334H103.274V49.6574C103.274%2049.7635%20103.301%2049.8393%20103.358%2049.8848C103.426%2049.9416%20103.536%2049.9682%20103.684%2049.9682H104.301V50.2941H101.319V49.9682H101.948C102.088%2049.9682%20102.19%2049.9416%20102.255%2049.8848C102.319%2049.8279%20102.353%2049.7559%20102.353%2049.6574L102.357%2044.526C102.357%2044.4161%20102.323%2044.3327%20102.259%2044.2797C102.194%2044.2266%20102.092%2044.1963%20101.955%2044.1963H101.326V43.8628H101.315ZM103.274%2046.8188H104.032C104.54%2046.8188%20104.942%2046.7241%20105.23%2046.5308C105.518%2046.3375%20105.662%2045.9964%20105.662%2045.5076C105.662%2045.1703%20105.609%2044.9012%20105.499%2044.7041C105.389%2044.5071%20105.249%2044.3744%20105.071%2044.3024C104.893%2044.2304%20104.548%2044.1925%20104.028%2044.1925C103.687%2044.1925%20103.475%2044.2152%20103.396%2044.2645C103.316%2044.3138%20103.274%2044.3934%20103.274%2044.5109V46.8188Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M108.895%2043.8701L113.984%2043.8739L114.106%2046.0417H113.814C113.7%2045.3595%20113.514%2044.882%20113.268%2044.6091C113.018%2044.3363%20112.692%2044.1998%20112.29%2044.1998H111.032C110.93%2044.1998%20110.854%2044.2264%20110.801%2044.2832C110.748%2044.3363%20110.721%2044.4234%20110.721%2044.5333V46.8224H111.271C111.566%2046.8224%20111.805%2046.7163%20111.987%2046.5078C112.169%2046.2956%20112.271%2045.9734%20112.283%2045.5338H112.582V48.5088H112.283C112.267%2048.0161%20112.169%2047.6637%20111.983%2047.4515C111.798%2047.2392%20111.544%2047.1331%20111.225%2047.1331H110.721V49.6874C110.721%2049.7784%20110.752%2049.8504%20110.816%2049.8997C110.877%2049.949%20110.983%2049.9717%20111.127%2049.9717H112.12C113.196%2049.9717%20113.821%2049.2857%20113.984%2047.9062H114.295L114.185%2050.2976L108.895%2050.2938V49.9679H109.334C109.505%2049.9679%20109.626%2049.9376%20109.694%2049.8807C109.762%2049.8201%20109.8%2049.7367%20109.8%2049.623L109.804%2044.5333C109.804%2044.4196%20109.774%2044.3363%20109.713%2044.2832C109.652%2044.2264%20109.558%2044.1998%20109.425%2044.1998H108.898V43.8701H108.895Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M119.642%2044.3628L120.033%2043.8019H120.351L120.378%2046.1402H120.09C119.911%2045.4239%20119.646%2044.8972%20119.294%2044.5674C118.941%2044.2377%20118.539%2044.071%20118.081%2044.071C117.698%2044.071%20117.387%2044.1847%20117.141%2044.4121C116.899%2044.6394%20116.777%2044.9199%20116.777%2045.2496C116.777%2045.4542%20116.823%2045.6362%20116.917%2045.7915C117.008%2045.9469%20117.149%2046.072%20117.331%2046.1705C117.512%2046.2691%20117.861%2046.3714%20118.369%2046.4813C119.085%2046.6367%20119.585%2046.7958%20119.874%2046.955C120.162%2047.1142%20120.378%2047.315%20120.518%2047.5576C120.658%2047.8001%20120.73%2048.0806%20120.73%2048.4065C120.73%2048.9863%20120.537%2049.4639%20120.146%2049.8466C119.756%2050.2256%20119.256%2050.4189%20118.638%2050.4151C117.975%2050.4151%20117.399%2050.1991%20116.91%2049.7708L116.421%2050.3696H116.106V47.8835H116.421C116.542%2048.5695%20116.815%2049.1114%20117.236%2049.5093C117.656%2049.9073%20118.134%2050.1043%20118.665%2050.1043C119.093%2050.1043%20119.441%2049.9793%20119.714%2049.7253C119.983%2049.4714%20120.12%2049.1645%20120.12%2048.8044C120.12%2048.5998%20120.071%2048.4179%20119.968%2048.2625C119.866%2048.1071%20119.707%2047.9783%20119.487%2047.8721C119.267%2047.766%20118.835%2047.6372%20118.191%2047.4856C117.482%2047.3188%20116.997%2047.1293%20116.739%2046.9209C116.376%2046.6253%20116.197%2046.2084%20116.197%2045.6665C116.197%2045.1018%20116.379%2044.6394%20116.739%2044.2794C117.099%2043.9194%20117.562%2043.7375%20118.123%2043.7413C118.392%2043.7413%20118.649%2043.7905%20118.892%2043.8853C119.131%2043.98%20119.385%2044.1392%20119.642%2044.3628Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M122.515%2043.8779L127.605%2043.8817L127.726%2046.0495H127.434C127.321%2045.3673%20127.135%2044.8898%20126.889%2044.6169C126.638%2044.3441%20126.313%2044.2076%20125.911%2044.2076H124.653C124.55%2044.2076%20124.474%2044.2342%20124.421%2044.291C124.368%2044.3441%20124.342%2044.4312%20124.342%2044.5411V46.8302H124.891C125.187%2046.8302%20125.426%2046.7241%20125.608%2046.5156C125.79%2046.3034%20125.892%2045.9813%20125.903%2045.5417H126.203V48.5166H125.903C125.888%2048.024%20125.79%2047.6715%20125.604%2047.4593C125.418%2047.2471%20125.164%2047.1409%20124.846%2047.1409H124.342V49.6953C124.342%2049.7862%20124.372%2049.8582%20124.437%2049.9075C124.497%2049.9568%20124.603%2049.9795%20124.747%2049.9795H125.74C126.817%2049.9795%20127.442%2049.2935%20127.605%2047.9141H127.916L127.806%2050.3054L122.515%2050.3016V49.9757H122.955C123.125%2049.9757%20123.247%2049.9454%20123.315%2049.8885C123.383%2049.8279%20123.421%2049.7445%20123.421%2049.6308L123.425%2044.5411C123.425%2044.4275%20123.394%2044.3441%20123.334%2044.291C123.273%2044.2342%20123.178%2044.2076%20123.046%2044.2076H122.519V43.8779H122.515Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M132.262%2043.749H132.554L134.855%2049.6232C134.946%2049.862%20135.135%2049.9794%20135.423%2049.9794H135.624V50.3054H133.062V49.9794H133.267C133.532%2049.9794%20133.721%2049.9491%20133.831%2049.8923C133.907%2049.8506%20133.945%2049.79%20133.945%2049.7066C133.945%2049.6573%20133.934%2049.6043%20133.915%2049.5512L133.384%2048.1869H130.845L130.546%2048.9676C130.466%2049.176%20130.428%2049.3428%20130.428%2049.464C130.428%2049.6043%20130.493%2049.7255%20130.625%2049.8279C130.758%2049.9302%20130.947%2049.9794%20131.201%2049.9794H131.417V50.3054H129.09V49.9794C129.34%2049.9794%20129.538%2049.9264%20129.682%2049.8165C129.826%2049.7066%20129.958%2049.5019%20130.079%2049.1988L132.262%2043.749ZM132.134%2044.9845L130.978%2047.8458H133.244L132.134%2044.9845Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M136.602%2043.8853H139.918C140.562%2043.8853%20141.059%2044.0331%20141.415%2044.3249C141.767%2044.6167%20141.945%2044.9995%20141.945%2045.477C141.945%2045.7612%20141.873%2046.0113%20141.733%2046.2349C141.593%2046.4547%20141.388%2046.6329%20141.127%2046.7655C140.862%2046.8981%20140.445%2046.9929%20139.88%2047.0497C140.293%2047.1634%20140.577%2047.2733%20140.733%2047.3832C140.888%2047.4931%20141.013%2047.6334%20141.108%2047.8039C141.203%2047.9744%20141.309%2048.3269%20141.434%2048.8575C141.521%2049.2365%20141.616%2049.4942%20141.714%2049.6344C141.79%2049.7405%20141.87%2049.7935%20141.957%2049.7935C142.048%2049.7935%20142.131%2049.7291%20142.207%2049.5965C142.283%2049.4638%20142.332%2049.2327%20142.347%2048.8992H142.643C142.586%2049.8845%20142.222%2050.3734%20141.551%2050.3734C141.339%2050.3734%20141.157%2050.3203%20141.002%2050.2142C140.846%2050.1081%20140.729%2049.9489%20140.653%2049.7405C140.592%2049.5851%20140.524%2049.1758%20140.448%2048.5126C140.407%2048.126%20140.339%2047.8532%20140.244%2047.6902C140.149%2047.5273%20140.005%2047.3984%20139.804%2047.2999C139.603%2047.2013%20139.365%2047.1521%20139.088%2047.1521H138.561V49.6761C138.561%2049.7822%20138.588%2049.858%20138.645%2049.9035C138.713%2049.9603%20138.823%2049.9868%20138.97%2049.9868H139.588V50.3128H136.606V49.9868H137.235C137.375%2049.9868%20137.477%2049.9603%20137.542%2049.9035C137.606%2049.8466%20137.64%2049.7746%20137.64%2049.6761L137.644%2044.5447C137.644%2044.4348%20137.61%2044.3514%20137.545%2044.2983C137.481%2044.2453%20137.379%2044.215%20137.242%2044.215H136.613V43.8853H136.602ZM138.557%2046.8375H139.315C139.823%2046.8375%20140.225%2046.7428%20140.513%2046.5495C140.801%2046.3562%20140.945%2046.0151%20140.945%2045.5262C140.945%2045.189%20140.892%2044.9199%20140.782%2044.7228C140.672%2044.5257%20140.532%2044.3931%20140.354%2044.3211C140.176%2044.2491%20139.831%2044.2112%20139.312%2044.2112C138.97%2044.2112%20138.758%2044.2339%20138.679%2044.2832C138.599%2044.3325%20138.557%2044.412%20138.557%2044.5295V46.8375Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M148.741%2044.3891L149.04%2043.7676H149.313L149.423%2046.3522H149.131C148.942%2045.6246%20148.699%2045.0902%20148.411%2044.7454C148.051%2044.3133%20147.623%2044.0973%20147.126%2044.0973C146.588%2044.0973%20146.149%2044.3361%20145.811%2044.8174C145.474%2045.2987%20145.304%2046.1097%20145.304%2047.258C145.304%2048.2206%20145.497%2048.9558%20145.883%2049.4637C146.213%2049.8919%20146.675%2050.1079%20147.27%2050.1079C147.793%2050.1079%20148.229%2049.9412%20148.582%2049.6077C148.934%2049.2742%20149.165%2048.7701%20149.271%2048.0955H149.578C149.487%2048.8611%20149.226%2049.4485%20148.79%2049.8578C148.354%2050.2671%20147.809%2050.4717%20147.149%2050.4717C146.615%2050.4717%20146.122%2050.3353%20145.675%2050.0662C145.228%2049.7972%20144.871%2049.4106%20144.602%2048.9028C144.333%2048.3987%20144.201%2047.8454%20144.201%2047.2428C144.201%2046.6024%20144.341%2046.0036%20144.618%2045.4427C144.894%2044.8818%20145.247%2044.4611%20145.679%2044.1769C146.111%2043.8965%20146.573%2043.7524%20147.073%2043.7524C147.35%2043.7524%20147.619%2043.8017%20147.881%2043.8964C148.15%2043.995%20148.434%2044.1579%20148.741%2044.3891Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M151.234%2043.8931H153.978V44.219H153.474C153.296%2044.219%20153.182%2044.2493%20153.129%2044.3137C153.076%2044.3744%20153.049%2044.526%20153.049%2044.7685V46.7468H155.983V44.7685C155.983%2044.5184%20155.956%2044.3668%20155.907%2044.3099C155.858%2044.2531%20155.736%2044.2228%20155.547%2044.2228H155.077V43.8968H157.802V44.2228H157.302C157.177%2044.2228%20157.089%2044.2379%20157.04%2044.272C156.991%2044.3062%20156.949%2044.3592%20156.915%2044.4388C156.896%2044.4881%20156.888%2044.6169%20156.888%2044.8254L156.885%2049.4451C156.885%2049.6687%20156.904%2049.8014%20156.942%2049.8506C157.017%2049.9492%20157.154%2049.9984%20157.355%2049.9984H157.798V50.3243H155.073V49.9984H155.543C155.729%2049.9984%20155.854%2049.9492%20155.922%2049.8468C155.96%2049.79%20155.979%2049.646%20155.979%2049.411V47.1788H153.046V49.4451C153.046%2049.6725%20153.061%2049.8051%20153.099%2049.8544C153.171%2049.9492%20153.296%2049.9984%20153.474%2049.9984H153.978V50.3243H151.234V49.9984H151.761C151.856%2049.9984%20151.928%2049.9795%20151.981%2049.9416C152.034%2049.9037%20152.075%2049.8506%20152.102%2049.7824C152.117%2049.7369%20152.125%2049.6119%20152.125%2049.4148L152.129%2044.7799C152.129%2044.5411%20152.102%2044.3895%20152.049%2044.3251C151.996%2044.2607%20151.878%2044.2304%20151.7%2044.2304H151.242V43.8931H151.234Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M167.439%2044.4008L167.739%2043.7793H168.012L168.122%2046.364H167.83C167.64%2045.6363%20167.398%2045.102%20167.11%2044.7571C166.75%2044.325%20166.321%2044.109%20165.825%2044.109C165.287%2044.109%20164.847%2044.3478%20164.51%2044.8291C164.173%2045.3104%20164.002%2046.1214%20164.002%2047.2697C164.002%2048.2323%20164.195%2048.9675%20164.582%2049.4754C164.912%2049.9036%20165.374%2050.1196%20165.969%2050.1196C166.492%2050.1196%20166.928%2049.9529%20167.28%2049.6194C167.633%2049.2859%20167.864%2048.7818%20167.97%2048.1073H168.277C168.186%2048.8728%20167.924%2049.4602%20167.489%2049.8695C167.053%2050.2788%20166.507%2050.4835%20165.848%2050.4835C165.313%2050.4835%20164.821%2050.347%20164.373%2050.0779C163.926%2049.8089%20163.57%2049.4223%20163.301%2048.9145C163.032%2048.4104%20162.899%2047.8571%20162.899%2047.2546C162.899%2046.6141%20163.039%2046.0153%20163.316%2045.4544C163.593%2044.8935%20163.945%2044.4729%20164.377%2044.1886C164.809%2043.9082%20165.272%2043.7642%20165.772%2043.7642C166.048%2043.7642%20166.318%2043.8134%20166.579%2043.9082C166.848%2044.0067%20167.132%2044.1697%20167.439%2044.4008Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M170.096%2043.9043L175.186%2043.9081L175.307%2046.0758H175.015C174.901%2045.3937%20174.716%2044.9162%20174.469%2044.6433C174.223%2044.3704%20173.893%2044.234%20173.492%2044.234H172.233C172.131%2044.234%20172.055%2044.2605%20172.002%2044.3174C171.949%2044.3742%20171.923%2044.4576%20171.923%2044.5675V46.8565H172.472C172.768%2046.8565%20173.007%2046.7504%20173.188%2046.542C173.37%2046.3298%20173.473%2046.0076%20173.484%2045.568H173.783V48.543H173.484C173.469%2048.0503%20173.37%2047.6979%20173.185%2047.4856C172.999%2047.2734%20172.745%2047.1673%20172.427%2047.1673H171.923V49.7216C171.923%2049.8126%20171.953%2049.8846%20172.017%2049.9339C172.082%2049.9831%20172.184%2050.0059%20172.328%2050.0059H173.321C174.397%2050.0059%20175.023%2049.3199%20175.186%2047.9404H175.496L175.386%2050.3318L170.096%2050.328V50.0021H170.536C170.706%2050.0021%20170.827%2049.9718%20170.896%2049.9149C170.964%2049.8543%20171.002%2049.7709%20171.002%2049.6572L171.005%2044.5675C171.005%2044.4538%20170.975%2044.3704%20170.915%2044.3174C170.854%2044.2605%20170.759%2044.234%20170.627%2044.234H170.1V43.9043H170.096Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M177.103%2043.9082H178.634L182.504%2048.9562L182.508%2045.3066C182.508%2044.939%20182.424%2044.6662%20182.258%2044.4918C182.106%2044.3289%20181.875%2044.2455%20181.572%2044.2379V43.912H183.819V44.2379C183.588%2044.2379%20183.417%2044.2682%20183.304%2044.3327C183.19%2044.3971%20183.091%2044.5108%20183.008%2044.6813C182.925%2044.8519%20182.883%2045.0338%20182.883%2045.2346L182.879%2050.3357H182.47L178.464%2045.083L178.46%2048.96C178.46%2049.3087%20178.547%2049.5702%20178.725%2049.7445C178.904%2049.915%20179.176%2050.006%20179.548%2050.0136V50.3395H177.1V50.0136C177.407%2050.0022%20177.649%2049.9037%20177.827%2049.7142C178.005%2049.5247%20178.096%2049.2935%20178.096%2049.0169L178.1%2044.67L178.024%2044.5866C177.88%2044.4274%20177.778%2044.3365%20177.717%2044.3061C177.634%2044.2645%20177.524%2044.2455%20177.391%2044.2455H177.1V43.9082H177.103Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M185.175%2043.9116L190.39%2043.9154L190.515%2046.3409H190.216C190.019%2044.9159%20189.503%2044.1996%20188.67%2044.1996C188.503%2044.1996%20188.385%2044.23%20188.325%2044.2868C188.26%2044.3437%20188.23%2044.4384%20188.23%2044.5748L188.226%2049.7062C188.226%2049.8085%20188.256%2049.8881%20188.317%2049.9374C188.378%2049.9867%20188.476%2050.0094%20188.616%2050.0094H189.265V50.3353H186.282V50.0094H187.021C187.12%2050.0094%20187.195%2049.9867%20187.248%2049.9374C187.301%2049.8881%20187.328%2049.8237%20187.328%2049.7403L187.332%2044.5332C187.332%2044.4232%20187.298%2044.3399%20187.233%2044.283C187.169%2044.2262%20187.059%2044.1996%20186.911%2044.1996C186.49%2044.1996%20186.142%2044.3967%20185.861%2044.7946C185.63%2045.1206%20185.463%2045.636%20185.361%2046.3409H185.043L185.175%2043.9116Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M192.095%2043.9155L197.185%2043.9193L197.306%2046.0871H197.015C196.901%2045.4049%20196.715%2044.9274%20196.469%2044.6545C196.219%2044.3817%20195.893%2044.2452%20195.491%2044.2452H194.233C194.131%2044.2452%20194.055%2044.2718%20194.002%2044.3286C193.949%2044.3855%20193.922%2044.4688%20193.922%2044.5787V46.8678H194.472C194.767%2046.8678%20195.006%2046.7617%20195.188%2046.5532C195.37%2046.341%20195.472%2046.0189%20195.484%2045.5792H195.783V48.5542H195.484C195.468%2048.0616%20195.37%2047.7091%20195.184%2047.4969C194.998%2047.2846%20194.745%2047.1785%20194.426%2047.1785H193.922V49.7329C193.922%2049.8238%20193.952%2049.8958%20194.017%2049.9451C194.081%2049.9944%20194.184%2050.0171%20194.328%2050.0171H195.321C196.397%2050.0171%20197.022%2049.3311%20197.185%2047.9517H197.496L197.386%2050.343L192.095%2050.3392V50.0133H192.535C192.706%2050.0133%20192.827%2049.983%20192.895%2049.9261C192.963%2049.8655%20193.001%2049.7821%20193.001%2049.6684L193.005%2044.5787C193.005%2044.465%20192.975%2044.3817%20192.914%2044.3248C192.853%2044.268%20192.759%2044.2414%20192.626%2044.2414H192.099V43.9155H192.095Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M198.959%2043.9194H202.275C202.919%2043.9194%20203.416%2044.0672%20203.772%2044.3591C204.124%2044.6509%20204.303%2045.0336%20204.303%2045.5112C204.303%2045.7954%20204.231%2046.0455%20204.09%2046.2691C203.95%2046.4889%20203.745%2046.667%20203.484%2046.7997C203.219%2046.9323%20202.802%2047.0271%20202.237%2047.0839C202.65%2047.1976%20202.934%2047.3075%20203.09%2047.4174C203.245%2047.5273%20203.37%2047.6676%20203.465%2047.8381C203.56%2048.0086%20203.666%2048.3611%20203.791%2048.8917C203.878%2049.2706%20203.973%2049.5283%20204.071%2049.6686C204.147%2049.7747%20204.227%2049.8277%20204.314%2049.8277C204.405%2049.8277%20204.488%2049.7633%20204.564%2049.6307C204.64%2049.498%20204.689%2049.2668%20204.704%2048.9333H205C204.943%2049.9187%20204.579%2050.4076%20203.908%2050.4076C203.696%2050.4076%20203.514%2050.3545%20203.359%2050.2484C203.204%2050.1423%20203.086%2049.9831%20203.01%2049.7747C202.95%2049.6193%20202.881%2049.21%20202.806%2048.5468C202.764%2048.1602%20202.696%2047.8874%20202.601%2047.7244C202.506%2047.5614%20202.362%2047.4326%20202.161%2047.334C201.96%2047.2355%20201.722%2047.1862%20201.445%2047.1862H200.918V49.7103C200.918%2049.8164%20200.945%2049.8922%20201.002%2049.9376C201.07%2049.9945%20201.18%2050.021%20201.328%2050.021H201.945V50.3469H198.963V50.021H199.592C199.732%2050.021%20199.834%2049.9945%20199.899%2049.9376C199.963%2049.8808%20199.997%2049.8088%20199.997%2049.7103L200.001%2044.5789C200.001%2044.469%20199.967%2044.3856%20199.903%2044.3325C199.838%2044.2795%20199.736%2044.2492%20199.599%2044.2492H198.97V43.9194H198.959ZM200.918%2046.8717H201.676C202.184%2046.8717%20202.586%2046.777%20202.874%2046.5837C203.162%2046.3904%20203.306%2046.0493%20203.306%2045.5604C203.306%2045.2231%20203.253%2044.9541%20203.143%2044.757C203.033%2044.5599%20202.893%2044.4273%20202.715%2044.3553C202.537%2044.2833%20202.192%2044.2454%20201.672%2044.2454C201.331%2044.2454%20201.119%2044.2681%20201.04%2044.3174C200.96%2044.3666%20200.918%2044.4462%20200.918%2044.5637V46.8717Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M75.1463%2032.4014H77.9242V32.7083H77.4467C77.2344%2032.7083%2077.1018%2032.7349%2077.0449%2032.7879C76.9881%2032.841%2076.9616%2032.9509%2076.9616%2033.1252L76.9578%2037.6843C76.9578%2037.8663%2076.9805%2037.9799%2077.0298%2038.0254C77.0942%2038.0861%2077.2117%2038.1202%2077.3822%2038.1202H77.9166V38.4271H75.1387V38.1202H75.6655C75.8512%2038.1202%2075.9686%2038.0936%2076.0255%2038.0406C76.0785%2037.9875%2076.1051%2037.87%2076.1051%2037.6881L76.1089%2033.129C76.1089%2032.9547%2076.0861%2032.8486%2076.0369%2032.8069C75.9611%2032.7425%2075.8208%2032.7121%2075.6162%2032.7121H75.1425V32.4014H75.1463Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M79.3225%2032.4048H80.7589L84.3895%2037.1382V33.7161C84.3895%2033.3712%2084.3099%2033.1173%2084.1545%2032.9505C84.0105%2032.7989%2083.7983%2032.7193%2083.5102%2032.7156V32.4086H85.6174V32.7156C85.4014%2032.7156%2085.2422%2032.7459%2085.1361%2032.8065C85.03%2032.8672%2084.9352%2032.9733%2084.8594%2033.1324C84.7798%2033.2916%2084.7419%2033.4621%2084.7419%2033.6478L84.7381%2038.4306H84.3554L80.5997%2033.5038L80.5959%2037.1382C80.5959%2037.468%2080.6793%2037.7105%2080.8422%2037.8735C81.009%2038.0364%2081.2629%2038.1198%2081.6116%2038.1236V38.4306H79.3149V38.1236C79.603%2038.1122%2079.8304%2038.0175%2080.0009%2037.8431C80.1676%2037.665%2080.2548%2037.449%2080.2548%2037.1913L80.2586%2033.1135L80.1866%2033.0339C80.0502%2032.8861%2079.9554%2032.7989%2079.8986%2032.7724C79.819%2032.7345%2079.7204%2032.7156%2079.5954%2032.7156H79.3225V32.4048Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M86.8946%2032.4087L91.7834%2032.4125L91.9009%2034.6901H91.6205C91.4348%2033.3523%2090.9535%2032.6816%2090.169%2032.6816C90.0098%2032.6816%2089.9037%2032.7081%2089.8431%2032.7611C89.7862%2032.8142%2089.7559%2032.9052%2089.7559%2033.0302L89.7521%2037.8433C89.7521%2037.9418%2089.7824%2038.0138%2089.8355%2038.0593C89.8923%2038.1048%2089.9871%2038.1275%2090.1159%2038.1275H90.7223V38.4345H87.9254V38.1275H88.619C88.7099%2038.1275%2088.7819%2038.1048%2088.8312%2038.0593C88.8805%2038.0138%2088.9032%2037.9532%2088.9032%2037.8774L88.907%2032.9961C88.907%2032.8938%2088.8767%2032.8142%2088.8122%2032.7611C88.7516%2032.7081%2088.6493%2032.6816%2088.5128%2032.6816C88.1187%2032.6816%2087.789%2032.8673%2087.5275%2033.2387C87.3115%2033.5456%2087.1523%2034.0269%2087.0576%2034.6864H86.762L86.8946%2032.4087Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M93.3862%2032.4126L98.1576%2032.4164L98.2713%2034.4477H97.9984C97.8885%2033.8072%2097.718%2033.36%2097.483%2033.1023C97.248%2032.8484%2096.9448%2032.7196%2096.5659%2032.7196H95.3872C95.2925%2032.7196%2095.2205%2032.7461%2095.1712%2032.7954C95.122%2032.8446%2095.0992%2032.9242%2095.0992%2033.0303V35.1754H95.6146C95.8913%2035.1754%2096.1149%2035.0768%2096.2854%2034.8797C96.4598%2034.6827%2096.5507%2034.3795%2096.5659%2033.9664H96.8463V36.7557H96.5659C96.5507%2036.2933%2096.4598%2035.9636%2096.2854%2035.7628C96.1111%2035.5619%2095.8723%2035.4634%2095.5729%2035.4634H95.103V37.8585C95.103%2037.9457%2095.1333%2038.0101%2095.1902%2038.0594C95.247%2038.1049%2095.3456%2038.1276%2095.482%2038.1276H96.4143C97.4262%2038.1276%2098.0098%2037.4833%2098.1652%2036.191H98.457L98.3547%2038.4346L93.39%2038.4308V38.1238H93.7993C93.9585%2038.1238%2094.0722%2038.0973%2094.1366%2038.0404C94.201%2037.9836%2094.2351%2037.904%2094.2351%2037.7979L94.2389%2033.0265C94.2389%2032.9204%2094.2124%2032.8408%2094.1556%2032.7916C94.0987%2032.7385%2094.0078%2032.7158%2093.8865%2032.7158H93.3938V32.4126H93.3862Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M99.8215%2032.4165H102.933C103.536%2032.4165%20104.002%2032.5529%20104.335%2032.8296C104.669%2033.1025%20104.835%2033.4625%20104.832%2033.9097C104.832%2034.175%20104.767%2034.4137%20104.635%2034.6184C104.502%2034.8268%20104.312%2034.9898%20104.062%2035.1148C103.812%2035.2399%20103.426%2035.3271%20102.891%2035.3801C103.278%2035.4862%20103.543%2035.5886%20103.691%2035.6909C103.839%2035.7932%20103.956%2035.9259%20104.043%2036.085C104.131%2036.248%20104.233%2036.5739%20104.347%2037.0742C104.43%2037.4304%20104.517%2037.673%20104.608%2037.8018C104.68%2037.9041%20104.756%2037.9534%20104.835%2037.9534C104.919%2037.9534%20104.998%2037.8928%20105.07%2037.7677C105.142%2037.6426%20105.188%2037.4266%20105.203%2037.1159H105.48C105.427%2038.0406%20105.086%2038.4991%20104.456%2038.4991C104.259%2038.4991%20104.085%2038.4499%20103.941%2038.3475C103.797%2038.2452%20103.687%2038.0974%20103.615%2037.9041C103.558%2037.7563%20103.494%2037.3736%20103.426%2036.752C103.384%2036.392%20103.32%2036.1343%20103.232%2035.9827C103.145%2035.8311%20103.005%2035.7098%20102.819%2035.6151C102.634%2035.5203%20102.41%2035.4749%20102.148%2035.4749H101.656V37.8397C101.656%2037.942%20101.682%2038.0103%20101.732%2038.0519C101.796%2038.105%20101.898%2038.1277%20102.039%2038.1277H102.618V38.4347H99.8215V38.1277H100.413C100.542%2038.1277%20100.64%2038.1012%20100.701%2038.0519C100.761%2037.9989%20100.792%2037.9307%20100.792%2037.8397L100.796%2033.0267C100.796%2032.9243%20100.765%2032.8448%20100.701%2032.7955C100.636%2032.7462%20100.542%2032.7197%20100.417%2032.7197H99.8253V32.4165H99.8215ZM101.656%2035.1869H102.368C102.846%2035.1869%20103.221%2035.0959%20103.49%2034.9178C103.759%2034.7359%20103.896%2034.4175%20103.896%2033.9552C103.896%2033.6368%20103.846%2033.3867%20103.744%2033.2048C103.642%2033.0191%20103.509%2032.894%20103.342%2032.8258C103.176%2032.7576%20102.85%2032.7235%20102.364%2032.7235C102.042%2032.7235%20101.845%2032.7462%20101.769%2032.7917C101.694%2032.8372%20101.656%2032.913%20101.656%2033.0229V35.1869Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M106.727%2032.4204H108.163L111.794%2037.1539V33.7317C111.794%2033.3868%20111.714%2033.1329%20111.559%2032.9661C111.415%2032.8145%20111.202%2032.735%20110.914%2032.7312V32.4242H113.021V32.7312C112.805%2032.7312%20112.646%2032.7615%20112.54%2032.8221C112.434%2032.8828%20112.339%2032.9889%20112.263%2033.1481C112.184%2033.3072%20112.146%2033.4778%20112.146%2033.6635L112.142%2038.4462H111.759L108.004%2033.5194L108%2037.1539C108%2037.4836%20108.083%2037.7261%20108.246%2037.8891C108.413%2038.052%20108.667%2038.1354%20109.016%2038.1392V38.4462H106.719V38.1392C107.007%2038.1278%20107.234%2038.0331%20107.405%2037.8588C107.572%2037.6806%20107.659%2037.4646%20107.659%2037.2069L107.663%2033.1291L107.591%2033.0495C107.454%2032.9017%20107.359%2032.8145%20107.303%2032.788C107.223%2032.7501%20107.125%2032.7312%20106.999%2032.7312H106.727V32.4204Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M116.842%2032.2988H117.114L119.271%2037.8092C119.358%2038.0328%20119.536%2038.1427%20119.805%2038.1427H119.991V38.4497H117.588V38.1427H117.778C118.028%2038.1427%20118.202%2038.1162%20118.308%2038.0631C118.38%2038.0252%20118.414%2037.9684%20118.414%2037.8888C118.414%2037.8433%20118.403%2037.794%20118.384%2037.741L117.888%2036.4638H115.508L115.227%2037.1952C115.155%2037.3923%20115.117%2037.5439%20115.117%2037.6614C115.117%2037.794%20115.178%2037.9077%20115.303%2038.0025C115.424%2038.0972%20115.606%2038.1465%20115.841%2038.1465H116.046V38.4535H113.863V38.1465C114.098%2038.1465%20114.28%2038.0972%20114.416%2037.9949C114.553%2037.8926%20114.678%2037.6993%20114.791%2037.4151L116.842%2032.2988ZM116.724%2033.4585L115.64%2036.1417H117.766L116.724%2033.4585Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M120.609%2032.4277L125.498%2032.4315L125.615%2034.7092H125.335C125.149%2033.3714%20124.668%2032.7006%20123.883%2032.7006C123.724%2032.7006%20123.618%2032.7271%20123.557%2032.7802C123.501%2032.8332%20123.47%2032.9242%20123.47%2033.0493L123.466%2037.8623C123.466%2037.9608%20123.497%2038.0328%20123.55%2038.0783C123.607%2038.1238%20123.701%2038.1465%20123.83%2038.1465H124.437V38.4535H121.64V38.1465H122.333C122.424%2038.1465%20122.496%2038.1238%20122.546%2038.0783C122.595%2038.0328%20122.618%2037.9722%20122.618%2037.8964L122.621%2033.0151C122.621%2032.9128%20122.591%2032.8332%20122.527%2032.7802C122.466%2032.7271%20122.364%2032.7006%20122.227%2032.7006C121.833%2032.7006%20121.503%2032.8863%20121.242%2033.2577C121.026%2033.5647%20120.867%2034.046%20120.772%2034.7054H120.476L120.609%2032.4277Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M126.862%2032.4316H129.64V32.7386H129.162C128.95%2032.7386%20128.817%2032.7652%20128.761%2032.8182C128.704%2032.8713%20128.677%2032.985%20128.677%2033.1555L128.673%2037.7146C128.673%2037.8965%20128.696%2038.0102%20128.745%2038.0557C128.81%2038.1163%20128.927%2038.1504%20129.098%2038.1504H129.632V38.4574H126.854V38.1504H127.381C127.567%2038.1504%20127.684%2038.1239%20127.741%2038.0709C127.794%2038.0178%20127.821%2037.9003%20127.821%2037.7184L127.824%2033.1593C127.824%2032.985%20127.802%2032.8788%20127.752%2032.8372C127.677%2032.7727%20127.536%2032.7424%20127.332%2032.7424H126.858V32.4316H126.862Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M133.892%2032.3101C134.399%2032.3101%20134.873%2032.4427%20135.316%2032.7118C135.76%2032.9809%20136.109%2033.3523%20136.359%2033.8336C136.609%2034.3111%20136.734%2034.853%20136.734%2035.4518C136.734%2036.0506%20136.609%2036.5925%20136.355%2037.0776C136.101%2037.5589%20135.756%2037.9379%20135.313%2038.207C134.873%2038.4761%20134.403%2038.6125%20133.91%2038.6125C133.425%2038.6125%20132.974%2038.4799%20132.55%2038.2146C132.125%2037.9493%20131.788%2037.5703%20131.53%2037.0776C131.273%2036.585%20131.148%2036.0392%20131.148%2035.4404C131.148%2034.8492%20131.273%2034.3149%20131.523%2033.8373C131.773%2033.3598%20132.11%2032.9884%20132.542%2032.7194C132.974%2032.4427%20133.425%2032.3101%20133.892%2032.3101ZM133.956%2032.6246C133.425%2032.6246%20132.997%2032.8444%20132.667%2033.284C132.338%2033.7237%20132.175%2034.4399%20132.175%2035.4329C132.175%2036.5092%20132.341%2037.2557%20132.679%2037.6688C133.016%2038.0819%20133.433%2038.2866%20133.929%2038.2866C134.278%2038.2866%20134.581%2038.1918%20134.847%2038.0061C135.108%2037.8204%20135.32%2037.521%20135.476%2037.1155C135.631%2036.71%20135.711%2036.1757%20135.711%2035.5124C135.711%2034.7886%20135.639%2034.2277%20135.491%2033.8222C135.343%2033.4167%20135.135%2033.1173%20134.865%2032.9202C134.596%2032.7232%20134.289%2032.6246%20133.956%2032.6246Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M138.276%2032.439H139.713L143.343%2037.1724V33.7502C143.343%2033.4054%20143.264%2033.1514%20143.108%2032.9847C142.964%2032.8331%20142.752%2032.7535%20142.464%2032.7497V32.4427H144.571V32.7497C144.355%2032.7497%20144.196%2032.78%20144.09%2032.8407C143.984%2032.9013%20143.889%2033.0074%20143.813%2033.1666C143.734%2033.3258%20143.696%2033.4963%20143.696%2033.682L143.692%2038.4647H143.309L139.554%2033.538L139.55%2037.1724C139.55%2037.5021%20139.633%2037.7447%20139.796%2037.9076C139.963%2038.0706%20140.217%2038.154%20140.565%2038.1578V38.4647H138.269V38.1578C138.557%2038.1464%20138.784%2038.0516%20138.955%2037.8773C139.122%2037.6992%20139.209%2037.4832%20139.209%2037.2255L139.212%2033.1477L139.14%2033.0681C139.004%2032.9203%20138.909%2032.8331%20138.852%2032.8066C138.773%2032.7687%20138.674%2032.7497%20138.549%2032.7497H138.276V32.439Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M148.395%2032.3179H148.668L150.825%2037.8282C150.912%2038.0518%20151.09%2038.1617%20151.359%2038.1617H151.545V38.4687H149.142V38.1617H149.331C149.581%2038.1617%20149.756%2038.1352%20149.862%2038.0821C149.934%2038.0442%20149.968%2037.9874%20149.968%2037.9078C149.968%2037.8623%20149.957%2037.8131%20149.938%2037.76L149.441%2036.4829H147.061L146.781%2037.2143C146.709%2037.4113%20146.671%2037.5629%20146.671%2037.6804C146.671%2037.8131%20146.732%2037.9268%20146.857%2038.0215C146.978%2038.1163%20147.16%2038.1655%20147.395%2038.1655H147.599V38.4725H145.417V38.1655C145.651%2038.1655%20145.833%2038.1163%20145.97%2038.0139C146.106%2037.9116%20146.231%2037.7183%20146.345%2037.4341L148.395%2032.3179ZM148.274%2033.4775L147.19%2036.1607H149.316L148.274%2033.4775Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M152.515%2032.4468H155.308V32.7537H154.641C154.535%2032.7537%20154.459%2032.7803%20154.406%2032.8371C154.356%2032.894%20154.33%2032.9811%20154.33%2033.0986L154.326%2037.851C154.326%2037.9647%20154.356%2038.0443%20154.421%2038.0936C154.485%2038.1428%20154.614%2038.1656%20154.804%2038.1656H155.649C156.1%2038.1656%20156.467%2038.0178%20156.752%2037.7146C157.036%2037.4114%20157.244%2036.896%20157.377%2036.1532H157.661L157.521%2038.4688L152.503%2038.465V38.158H152.996C153.163%2038.158%20153.284%2038.1277%20153.352%2038.0633C153.42%2037.9988%20153.454%2037.8965%20153.454%2037.7563L153.458%2033.0531C153.458%2032.9508%20153.432%2032.875%20153.375%2032.8258C153.318%2032.7727%20153.235%2032.75%20153.121%2032.75H152.511V32.4468H152.515Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M165.336%2032.9092L165.703%2032.3824H165.999L166.022%2034.5767H165.753C165.586%2033.9021%20165.336%2033.4132%20165.006%2033.1025C164.676%2032.7917%20164.297%2032.6363%20163.869%2032.6363C163.509%2032.6363%20163.217%2032.7425%20162.99%2032.9585C162.763%2033.1745%20162.649%2033.436%20162.649%2033.7467C162.649%2033.94%20162.691%2034.1106%20162.778%2034.2546C162.865%2034.3986%20162.994%2034.5199%20163.168%2034.6108C163.339%2034.7018%20163.665%2034.8003%20164.142%2034.9026C164.813%2035.0504%20165.283%2035.1982%20165.552%2035.346C165.821%2035.4938%20166.022%2035.6833%20166.154%2035.9107C166.287%2036.1381%20166.355%2036.4034%20166.355%2036.7066C166.355%2037.2485%20166.173%2037.6995%20165.806%2038.0557C165.438%2038.412%20164.968%2038.5901%20164.392%2038.5901C163.771%2038.5901%20163.229%2038.3892%20162.77%2037.9875L162.312%2038.5484H162.02V36.2139H162.312C162.425%2036.8582%20162.679%2037.366%20163.077%2037.7374C163.471%2038.1088%20163.918%2038.2945%20164.415%2038.2945C164.817%2038.2945%20165.143%2038.177%20165.396%2037.9383C165.65%2037.6995%20165.779%2037.4115%20165.779%2037.0742C165.779%2036.8809%20165.734%2036.7142%20165.635%2036.5664C165.54%2036.4223%20165.389%2036.2973%20165.184%2036.1987C164.98%2036.1002%20164.574%2035.9789%20163.968%2035.8387C163.305%2035.6795%20162.85%2035.5052%20162.607%2035.3081C162.266%2035.0315%20162.099%2034.6373%20162.099%2034.1295C162.099%2033.5989%20162.27%2033.1669%20162.607%2032.8296C162.944%2032.4923%20163.377%2032.3218%20163.903%2032.3218C164.157%2032.3218%20164.396%2032.3673%20164.623%2032.4582C164.855%2032.553%20165.093%2032.7008%20165.336%2032.9092Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M167.848%2032.4541L172.737%2032.4579L172.855%2034.7356H172.574C172.389%2033.3978%20171.907%2032.727%20171.123%2032.727C170.964%2032.727%20170.857%2032.7535%20170.797%2032.8066C170.736%2032.8596%20170.71%2032.9506%20170.71%2033.0756L170.706%2037.8887C170.706%2037.9872%20170.736%2038.0592%20170.789%2038.1047C170.846%2038.1502%20170.941%2038.1729%20171.07%2038.1729H171.676V38.4799H168.879V38.1729H169.573C169.664%2038.1729%20169.736%2038.1502%20169.785%2038.1047C169.834%2038.0592%20169.857%2037.9986%20169.857%2037.9228L169.864%2033.0377C169.864%2032.9354%20169.834%2032.8558%20169.77%2032.8028C169.709%2032.7497%20169.607%2032.7232%20169.47%2032.7232C169.076%2032.7232%20168.747%2032.9089%20168.485%2033.2803C168.269%2033.5873%20168.11%2034.0686%20168.015%2034.728H167.719L167.848%2032.4541Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M174.019%2032.458H176.8V32.765H176.243C176.095%2032.765%20175.989%2032.7877%20175.929%2032.837C175.868%2032.8863%20175.838%2032.962%20175.838%2033.0606V36.46C175.838%2036.8163%20175.868%2037.0853%20175.932%2037.2673C176.023%2037.5363%20176.194%2037.7523%20176.436%2037.9115C176.683%2038.0707%20177.001%2038.1503%20177.399%2038.1541C177.949%2038.1541%20178.365%2038.0138%20178.653%2037.7296C178.941%2037.4454%20179.086%2037.0664%20179.086%2036.5927V33.8299C179.086%2033.5874%20179.07%2033.4017%20179.036%2033.2728C179.002%2033.1477%20178.953%2033.0492%20178.888%2032.9772C178.824%2032.9052%20178.744%2032.8559%20178.646%2032.8218C178.547%2032.7877%20178.384%2032.7726%20178.157%2032.7688V32.4618H180.431V32.7688H180.268C180.014%2032.7688%20179.825%2032.837%20179.699%2032.9734C179.574%2033.1098%20179.514%2033.3107%20179.51%2033.5684V36.5282C179.51%2037.1725%20179.324%2037.669%20178.957%2038.0138C178.54%2038.4004%20177.99%2038.5937%20177.301%2038.5937C176.702%2038.5937%20176.236%2038.5065%20175.891%2038.3398C175.55%2038.1692%20175.299%2037.9267%20175.148%2037.6083C175.03%2037.3658%20174.974%2037.0626%20174.974%2036.695V33.0606C174.974%2032.9696%20174.943%2032.8938%20174.879%2032.8446C174.814%2032.7915%20174.72%2032.765%20174.595%2032.765H174.022V32.458H174.019Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M181.624%2032.4619H184.736C185.198%2032.4619%20185.589%2032.5453%20185.911%2032.7082C186.312%2032.9129%20186.653%2033.2578%20186.934%2033.7391C187.214%2034.2204%20187.355%2034.7888%20187.355%2035.4445C187.355%2035.9864%20187.271%2036.4753%20187.101%2036.9111C186.972%2037.2446%20186.779%2037.5364%20186.513%2037.7866C186.248%2038.0367%20185.926%2038.2224%20185.547%2038.3475C185.263%2038.4384%20184.884%2038.4839%20184.406%2038.4839H181.621V38.1769H182.189C182.333%2038.1769%20182.432%2038.1542%20182.488%2038.1087C182.545%2038.0632%20182.572%2037.9912%20182.572%2037.8927L182.576%2033.0455C182.576%2032.9622%20182.545%2032.8939%20182.485%2032.8447C182.424%2032.7954%20182.341%2032.7689%20182.235%2032.7689H181.621V32.4619H181.624ZM183.807%2032.7689C183.686%2032.7689%20183.595%2032.7954%20183.538%2032.8447C183.481%2032.8977%20183.451%2032.9735%20183.451%2033.0759L183.447%2037.8813C183.447%2037.9799%20183.481%2038.0519%20183.55%2038.1049C183.618%2038.1542%20183.732%2038.1807%20183.894%2038.1807H184.406C184.865%2038.1807%20185.266%2038.0632%20185.611%2037.8283C185.835%2037.6691%20186.009%2037.4493%20186.123%2037.1651C186.282%2036.7785%20186.362%2036.2479%20186.365%2035.5695C186.365%2034.5652%20186.191%2033.83%20185.842%2033.3639C185.543%2032.9697%20185.092%2032.7727%20184.489%2032.7727L183.807%2032.7689Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M188.886%2032.4658H191.663V32.7728H191.186C190.974%2032.7728%20190.841%2032.7993%20190.784%2032.8524C190.727%2032.9054%20190.701%2033.0191%20190.701%2033.1897L190.697%2037.7488C190.697%2037.9307%20190.72%2038.0444%20190.769%2038.0899C190.833%2038.1505%20190.951%2038.1846%20191.121%2038.1846H191.656V38.4916H188.878V38.1846H189.405C189.59%2038.1846%20189.708%2038.1581%20189.765%2038.105C189.818%2038.052%20189.844%2037.9345%20189.844%2037.7526L189.848%2033.1935C189.848%2033.0191%20189.825%2032.913%20189.776%2032.8713C189.7%2032.8069%20189.56%2032.7766%20189.355%2032.7766H188.882V32.4658H188.886Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M193.27%2032.4692L198.042%2032.473L198.155%2034.5044H197.882C197.773%2033.8639%20197.602%2033.4167%20197.367%2033.159C197.132%2032.9051%20196.829%2032.7762%20196.45%2032.7762H195.271C195.177%2032.7762%20195.105%2032.8027%20195.055%2032.852C195.006%2032.9051%20194.983%2032.9809%20194.983%2033.087V35.232H195.499C195.775%2035.232%20195.999%2035.1335%20196.169%2034.9364C196.344%2034.7393%20196.435%2034.4324%20196.45%2034.0231H196.73V36.8123H196.45C196.435%2036.35%20196.344%2036.0203%20196.169%2035.8194C195.995%2035.6186%20195.756%2035.52%20195.457%2035.52H194.987V37.9152C194.987%2038.0023%20195.017%2038.0668%20195.074%2038.116C195.131%2038.1653%20195.23%2038.1842%20195.366%2038.1842H196.298C197.31%2038.1842%20197.894%2037.54%20198.049%2036.2477H198.341L198.239%2038.4912L193.274%2038.4874V38.1805H193.683C193.843%2038.1805%20193.956%2038.1539%20194.021%2038.0971C194.085%2038.0402%20194.119%2037.9606%20194.119%2037.8545L194.123%2033.0832C194.123%2032.9771%20194.096%2032.8975%20194.04%2032.8482C193.983%2032.7952%20193.892%2032.7724%20193.771%2032.7724H193.278V32.4692H193.27Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M203.351%2032.9317L203.718%2032.4049H204.014L204.037%2034.5992H203.768C203.601%2033.9246%20203.351%2033.4357%20203.021%2033.1249C202.691%2032.8142%20202.312%2032.6588%20201.884%2032.6588C201.524%2032.6588%20201.232%2032.7649%20201.005%2032.9809C200.777%2033.1969%20200.664%2033.4584%20200.664%2033.7692C200.664%2033.9625%20200.705%2034.133%20200.793%2034.277C200.88%2034.421%20201.009%2034.5423%20201.183%2034.6333C201.354%2034.7242%20201.679%2034.8228%20202.157%2034.9251C202.828%2035.0729%20203.298%2035.2207%20203.567%2035.3685C203.836%2035.5163%20204.037%2035.7058%20204.169%2035.9332C204.302%2036.1606%20204.37%2036.4258%20204.37%2036.729C204.37%2037.271%20204.188%2037.7219%20203.821%2038.0782C203.453%2038.4344%20202.983%2038.6126%20202.407%2038.6126C201.786%2038.6126%20201.244%2038.4117%20200.785%2038.01L200.326%2038.5709H200.035V36.2364H200.326C200.44%2036.8806%20200.694%2037.3884%20201.092%2037.7598C201.486%2038.1312%20201.933%2038.3169%20202.43%2038.3169C202.832%2038.3169%20203.157%2038.1995%20203.411%2037.9607C203.665%2037.7219%20203.794%2037.4339%20203.794%2037.0966C203.794%2036.9034%20203.749%2036.7366%20203.65%2036.5888C203.555%2036.4448%20203.404%2036.3197%20203.199%2036.2212C202.995%2036.1227%20202.589%2036.0014%20201.983%2035.8612C201.319%2035.702%20200.865%2035.5277%20200.622%2035.3306C200.281%2035.0539%20200.114%2034.6598%20200.114%2034.152C200.114%2033.6214%20200.285%2033.1894%20200.622%2032.8521C200.959%2032.5148%20201.391%2032.3442%20201.918%2032.3442C202.172%2032.3442%20202.411%2032.3897%20202.638%2032.4807C202.869%2032.5716%20203.104%2032.7232%20203.351%2032.9317Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M7.48853%2023.7159C7.48853%2023.7159%208.95292%2023.5299%209.04161%2024.8212C9.04161%2024.8212%2010.0345%2024.7066%2010.1967%2026.0953C10.1967%2026.0953%2013.6771%2026.7182%209.48071%2030.6637C9.48071%2030.6637%2012.0786%2029.1128%2012.3706%2026.9583C12.6626%2024.8039%2010.4043%2022.1542%207.48853%2023.7159ZM9.44178%2023.5191C9.36391%2023.5018%209.28604%2023.4845%209.20384%2023.4715C9.20384%2023.4715%209.29469%2023.4823%209.44178%2023.5191C13.1536%2024.3129%2011.8341%2028.042%2011.8341%2028.042C11.9791%2027.3261%2011.992%2026.7226%2011.9185%2026.2099C11.886%2026.1558%2011.5551%2025.641%2010.7223%2025.68C10.7223%2025.68%2011.2999%2025.4961%2011.8817%2025.9915C11.8038%2025.6086%2011.6762%2025.282%2011.514%2025.0073C11.4686%2024.9597%2010.9581%2024.4557%2010.1859%2024.5292C10.1859%2024.5292%2010.7612%2024.3367%2011.328%2024.7261C10.7245%2023.9236%209.85709%2023.6207%209.44178%2023.5191Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M9.48089%2030.6635C9.48089%2030.6635%2011.9143%2028.1565%208.99204%2026.1968C8.99204%2026.1968%209.22349%2027.3886%208.45776%2027.6979C8.45776%2027.6979%209.62798%2027.8753%209.35976%2028.8595C9.35976%2028.8595%2010.2466%2029.0131%209.48089%2030.6635ZM10.119%2029.357C10.4391%2027.672%209.58688%2026.9365%209.43763%2026.8219C9.42898%2026.8154%209.42249%2026.8111%209.416%2026.8046C9.416%2026.8046%209.42465%2026.8111%209.43763%2026.8219C10.6987%2027.7066%2010.119%2029.357%2010.119%2029.357Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M10.7375%2012.4658C10.8188%2012.5749%2010.8616%2012.6498%2010.8616%2012.6498C10.8103%2012.5963%2010.7696%2012.5343%2010.7375%2012.4658Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M6.27298%2016.424C6.27298%2016.424%207.70494%2016.5472%208.6264%2017.393C8.6264%2017.393%207.83039%2016.9388%207.38047%2017.2697C7.38047%2017.2697%209.1888%2018.1479%2010.1557%2019.5755C11.1226%2021.0032%2010.8544%2023.1662%2013.1429%2024.8859C13.1429%2024.8859%2011.8559%2021.7364%2014.0773%2020.1942C14.0773%2020.1942%2012.6627%2020.0319%2012.2604%2020.8842C12.2604%2020.8842%2013.2597%2018.4053%2014.8193%2017.6461C14.8193%2017.6461%2014.1812%2016.9453%2013.6555%2017.486C13.6555%2017.486%2014.7111%2014.9163%2016.0457%2014.6589C16.0457%2014.6589%2011.871%2014.5183%2011.1875%2019.0261C11.1875%2019.0261%2010.9777%2015.6799%2013.091%2014.581C15.2043%2013.4822%2015.3622%2012.4417%2015.3622%2012.4417C15.3622%2012.4417%2014.1617%2012.0762%2013.4176%2012.7554L13.7702%2012.0632C13.7702%2012.0632%2012.8833%2012.1714%2012.3555%2012.9587C12.3555%2012.9587%2012.8595%2012.0957%2012.6454%2011.0509L12.07%2011.5657C12.07%2011.5657%2012.5762%2010.3306%2011.4665%209.57568C11.4665%209.57568%2010.7138%2010.562%2011.0534%2011.4813L10.7311%2010.9427C10.7311%2010.9427%2010.4737%2011.914%2010.7376%2012.4591C10.8198%2012.5694%2010.863%2012.6451%2010.863%2012.6451C10.8111%2012.5932%2010.77%2012.5283%2010.7376%2012.4591C10.4996%2012.1368%209.94804%2011.5008%209.25586%2011.4965L9.47432%2012.074C9.47432%2012.074%208.70211%2011.118%207.84337%2011.3343C7.84337%2011.3343%208.01642%2012.7316%208.77565%2013.0734L8.01209%2013.1036C8.01209%2013.1036%208.67399%2014.0013%209.4873%2014.5118C10.3006%2015.0223%2010.3028%2016.2055%2010.3028%2016.2055C10.3028%2016.2055%209.20394%2015.0677%208.64803%2014.7843C8.09212%2014.501%207.81958%2013.8477%207.81958%2013.8477C7.81958%2013.8477%207.28097%2014.4447%207.60111%2014.8254C7.60111%2014.8254%206.75751%2014.0987%205.93555%2014.5183C5.93555%2014.5183%206.55635%2015.8637%207.30044%2015.7772C7.30044%2015.7815%206.22107%2015.8832%206.27298%2016.424ZM12.8163%2020.9275C12.8163%2020.9275%2011.8277%2022.0112%2012.4161%2023.8065C12.4161%2023.8043%2011.3389%2022.1323%2012.8163%2020.9275ZM13.9324%2015.7988C12.3577%2017.1745%2011.7996%2019.9714%2011.7996%2019.9714C12.0873%2016.9842%2013.9324%2015.7988%2013.9324%2015.7988ZM11.1702%2015.5393C11.0101%2015.1196%2010.8262%2014.7324%2010.6316%2014.3777C10.3093%2014.2566%209.50893%2013.9386%208.88597%2013.519C8.88597%2013.519%209.96318%2014.0251%2010.5623%2014.2501C9.59762%2012.5607%208.3863%2011.663%208.3863%2011.663C9.14986%2012.167%209.7101%2012.7554%2010.1211%2013.32C10.1427%2013.0323%2010.1449%2012.2536%209.59762%2011.8512C9.59762%2011.8512%2010.2963%2012.2449%2010.2379%2013.4865C10.4672%2013.8218%2010.6424%2014.1419%2010.7765%2014.4274V14.4296C11.0815%2015.0785%2011.1702%2015.5393%2011.1702%2015.5393C11.2394%2014.3323%2011.3259%2013.1945%2011.4016%2012.286C10.943%2012.0589%2010.8414%2011.4424%2010.8414%2011.4424C10.9798%2011.8815%2011.2697%2012.0978%2011.4124%2012.1822C11.5098%2011.0293%2011.5898%2010.2722%2011.5898%2010.2722C11.6915%2010.7892%2011.6504%2011.715%2011.5595%2012.6472C12.1544%2012.2211%2012.3772%2011.7409%2012.3772%2011.7409C12.2344%2012.2298%2011.7347%2012.6299%2011.5487%2012.764C11.4081%2014.1635%2011.1702%2015.5393%2011.1702%2015.5393C11.1702%2015.5393%2011.5617%2014.4318%2012.6908%2013.6401C12.7492%2013.3957%2012.9287%2012.7943%2013.3376%2012.4439C13.3376%2012.4439%2012.892%2012.9371%2012.8098%2013.5601C13.2575%2013.268%2013.8134%2013.0279%2014.497%2012.9176C14.4948%2012.9176%2012.1673%2013.4692%2011.1702%2015.5393ZM6.71209%2014.9423C9.69496%2015.5025%2010.3915%2018.0376%2010.3915%2018.0376C9.24937%2015.522%206.71209%2014.9423%206.71209%2014.9423Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M22.1913%208.782C22.1913%208.782%2021.2936%208.63491%2020.8502%209.09997L21.1314%208.55271C21.1314%208.55271%2020.2964%208.23042%2019.6843%208.88582L19.853%208.4186C19.853%208.4186%2018.9034%208.38183%2018.3994%209.23191C17.8954%2010.082%2017.3373%209.55205%2017.77%208.77118C18.2026%207.99031%2017.8781%207.47767%2017.8781%207.47767L17.545%207.79131C17.545%207.79131%2017.5796%207.04722%2017.2227%206.7963L17.0129%207.20728C17.0129%207.20728%2016.6646%206.13008%2015.7843%205.95703C15.7843%205.95703%2015.7605%207.01693%2016.0482%207.3349L15.542%206.97151C15.542%206.97151%2015.3841%207.6161%2015.821%208.04872L15.2997%207.78266C15.2997%207.78266%2015.1721%208.30396%2015.7994%208.83391C16.4289%209.3617%2016.7814%209.75105%2016.4029%2010.56C16.0244%2011.369%2015.5269%2012.1867%2015.7691%2013.3115C15.7691%2013.3115%2016.6949%2010.2594%2018.9207%2010.6357C21.153%2011.0164%2022.1913%208.782%2022.1913%208.782ZM17.0735%208.86419C17.0994%209.23624%2017.0843%209.48499%2017.0843%209.48499C17.0518%209.46985%2017.0021%209.43957%2016.9437%209.39414C16.6581%209.20379%2016.0049%208.73441%2015.6047%208.17201C15.6047%208.17201%2016.5348%209.08699%2016.9437%209.39414C17.0302%209.45255%2017.0843%209.48499%2017.0843%209.48499C17.0605%209.02859%2016.9934%208.6176%2016.9091%208.24988C16.2666%208.09847%2015.7972%207.38249%2015.7972%207.38249C16.351%208.02492%2016.8723%208.11145%2016.8788%208.11145C16.5651%206.8785%2016.0244%206.20146%2016.0244%206.20146C16.4851%206.64489%2016.7468%207.23324%2016.8982%207.78699C17.2097%207.54689%2017.2314%207.09913%2017.2314%207.09913C17.2465%207.55337%2017.0172%207.82808%2016.9307%207.91461C17.0064%208.22609%2017.0475%208.52459%2017.0691%208.77334L17.067%208.75604C17.5774%208.52892%2017.7981%207.78482%2017.7981%207.78482C17.6077%208.63491%2017.0735%208.86636%2017.0735%208.86419ZM21.4385%209.31195C21.4385%209.31195%2020.8783%2010.2594%2019.5458%2010.4108L19.5177%2010.4129C19.4723%2010.4173%2019.4247%2010.4216%2019.3771%2010.4259H19.3706C19.0483%2010.4454%2018.6871%2010.4173%2018.2804%2010.3243C18.2696%2010.3221%2018.2631%2010.3199%2018.2631%2010.3199C18.2631%2010.3199%2019.018%209.78782%2019.3122%208.8166C19.3122%208.8166%2019.2408%209.83974%2018.2631%2010.3199C18.2696%2010.3221%2018.2761%2010.3221%2018.2804%2010.3243C18.3756%2010.3437%2018.8558%2010.4303%2019.4701%2010.3372C19.7275%2010.0971%2020.4067%209.41145%2020.5582%208.72143C20.5582%208.72143%2020.4781%209.48932%2019.6583%2010.3026C20.2207%2010.188%2020.874%209.91544%2021.4385%209.31195Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M11.3671%2032.3873C11.7629%2031.7513%2010.8133%2030.6157%2010.8133%2030.6157C10.0822%2031.1781%2010.3785%2032.251%2010.3785%2032.251C10.1709%2031.7989%209.40084%2032.0304%209.40084%2032.0304C9.40084%2032.0304%209.87455%2032.556%209.89402%2033.1811C9.91348%2033.8041%2010.4716%2035.2858%2010.4716%2035.2858C10.4716%2035.2858%209.40083%2034.7775%209.29052%2033.8236C9.17804%2032.8696%208.64809%2031.8876%208.64809%2031.8876L8.29334%2032.5646C8.30849%2031.7319%207.12096%2030.977%207.12096%2030.977C6.55857%2031.6605%207.09285%2032.768%207.09285%2032.768L6.66239%2032.3224C6.37254%2032.9518%206.70782%2033.7219%206.89817%2034.0745C6.94575%2034.135%206.98685%2034.1978%207.01281%2034.267C7.01281%2034.267%206.96522%2034.1956%206.89817%2034.0745C6.51747%2033.6029%205.52895%2033.4212%205.52895%2033.4212L5.8772%2033.9425C5.18934%2033.2417%203.97803%2033.5013%203.97803%2033.5013C4.18568%2034.8272%205.51813%2034.8964%205.51813%2034.8964L4.80648%2035.1949C5.65873%2035.8352%206.65374%2035.7487%206.65374%2035.7487C5.71497%2035.8893%205.2391%2036.6442%205.2391%2036.6442L6.01564%2036.6204C5.08335%2037.0011%204.8995%2038.2427%204.8995%2038.2427C4.8995%2038.2427%205.90748%2038.5455%207.80449%2037.1049C9.7015%2035.6643%2012.6368%2037.2866%2012.6368%2037.2866C8.26955%2035.978%206.61048%2039.8109%206.61048%2039.8109C7.41514%2038.7142%2010.1882%2038.8592%2010.1882%2038.8592C9.47438%2039.1036%209.83345%2039.9796%209.83345%2039.9796C11.1854%2038.8959%2013.8546%2039.0517%2013.8546%2039.0517C12.9115%2039.0517%2012.4529%2040.3993%2012.4529%2040.3993C14.7977%2039.0517%2017.0927%2041.563%2017.0927%2041.563C16.5152%2038.7597%2014.4473%2038.0761%2013.5712%2036.5923C12.693%2035.1063%2012.6736%2033.0968%2012.6736%2033.0968C12.1825%2033.3607%2012.2518%2034.2756%2012.2518%2034.2756C11.8819%2033.0795%2012.3815%2031.734%2012.3815%2031.734C11.9208%2031.455%2011.3671%2032.3873%2011.3671%2032.3873ZM16.4308%2040.4425C15.0594%2039.1447%2013.6578%2039.573%2013.6578%2039.573C15.3817%2038.7532%2016.4308%2040.4425%2016.4308%2040.4425ZM13.2295%2038.247C13.2295%2038.247%2010.4629%2037.5548%208.54643%2038.3898C8.54643%2038.3898%2010.4067%2037.2282%2013.2295%2038.247ZM5.70199%2037.6652C6.09351%2037.0941%206.54775%2036.6939%207.00416%2036.4149C6.40499%2036.2224%205.76905%2036.4149%205.76905%2036.4149C6.26006%2036.1964%206.88086%2036.2916%207.12745%2036.3435C8.32579%2035.6622%209.49601%2035.7811%209.49601%2035.7811C9.49601%2035.7811%208.15058%2035.4069%206.82679%2034.9354C6.62778%2035.0457%206.05241%2035.3269%205.54842%2035.2468C5.54842%2035.2468%206.0762%2035.2512%206.71647%2034.8964C5.8361%2034.5785%204.98169%2034.2216%204.55773%2033.9079C4.55773%2033.9079%205.27587%2034.1588%206.35957%2034.5633C6.34442%2034.3989%206.27088%2034.0442%205.9356%2033.7305C5.9356%2033.7305%206.44825%2034.0874%206.45906%2034.5979C7.31348%2034.9181%208.37987%2035.3269%209.50034%2035.779C9.50034%2035.779%209.1218%2035.5021%208.66539%2034.9505V34.9483C8.46423%2034.7061%208.25008%2034.4076%208.04459%2034.0593C6.89817%2033.5813%206.83976%2032.781%206.83976%2032.781C6.96955%2033.4472%207.67471%2033.7781%207.94293%2033.882C7.60982%2033.2698%207.3178%2032.5127%207.18802%2031.6042C7.18802%2031.6042%207.48003%2033.0816%208.59618%2034.678C8.64809%2034.0399%208.65241%2032.8502%208.65241%2032.8502C8.76489%2033.5921%208.71082%2034.4508%208.68054%2034.7948C8.91847%2035.1236%209.18885%2035.4545%209.50034%2035.779C7.19451%2035.7963%205.70199%2037.6652%205.70199%2037.6652ZM12.083%2036.1467C12.083%2036.1467%2010.0887%2034.4314%2010.8587%2031.4961C10.8609%2031.4939%2010.3007%2034.0355%2012.083%2036.1467Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M5.45525%2024.7132C2.89202%2021.6849%200%2024.0059%200%2024.0059C3.29435%2023.5321%205.95276%2026.4371%205.95276%2026.4371C4.61599%2025.1523%203.38087%2026.4285%203.38087%2026.4285C6.80717%2026.5799%209.16059%2031.4533%209.16059%2031.4533C9.16059%2031.4533%209.29037%2030.2636%207.76108%2027.7739C6.23396%2025.2842%205.53096%2021.3496%205.53096%2021.3496C4.25043%2022.7405%205.45525%2024.7132%205.45525%2024.7132ZM6.98671%2027.0233C6.98671%2027.0233%206.98454%2027.0212%206.98238%2027.019C7.10567%2027.2094%207.22681%2027.3975%207.34145%2027.5836C7.51449%2027.8669%207.6724%2028.1481%207.81949%2028.4142C7.96441%2028.6824%208.09852%2028.9376%208.21965%2029.1734C8.69985%2030.123%208.96375%2030.7806%208.96375%2030.7806C8.96375%2030.7806%208.88372%2030.6227%208.74095%2030.348C8.60035%2030.0733%208.39054%2029.6839%208.13529%2029.2188C8.00767%2028.9874%207.86491%2028.7365%207.7135%2028.4748C7.62697%2028.3298%207.53829%2028.1806%207.44528%2028.0292C7.44095%2028.0227%206.29236%2026.6102%204.33911%2026.2922C4.33911%2026.2922%205.94411%2026.2425%207.17922%2027.5965C7.01483%2027.3348%206.84178%2027.0709%206.65792%2026.807C6.55842%2026.6643%206.45459%2026.5258%206.35076%2026.3831C6.24261%2026.2446%206.13446%2026.1084%206.0263%2025.9699C5.91166%2025.838%205.79918%2025.6995%205.68454%2025.5741C5.56124%2025.4486%205.44444%2025.3145%205.31682%2025.202C5.07455%2024.9619%204.80201%2024.7543%204.53811%2024.5618C4.2634%2024.3844%203.99302%2024.2178%203.71831%2024.0967C3.4436%2023.9756%203.17538%2023.8804%202.91798%2023.822C2.66274%2023.7571%202.42264%2023.7247%202.21065%2023.7009C1.99651%2023.6814%201.81049%2023.6771%201.65475%2023.6771C1.50117%2023.6792%201.37787%2023.6814%201.29568%2023.6879C1.21348%2023.6922%201.16806%2023.6944%201.16806%2023.6944C1.16806%2023.6944%201.21132%2023.6879%201.29351%2023.6792C1.37571%2023.6684%201.49684%2023.6533%201.65258%2023.6446C1.80832%2023.636%201.99651%2023.6316%202.21282%2023.6381C2.42912%2023.6489%202.67571%2023.6706%202.93744%2023.729C3.20134%2023.7787%203.47821%2023.8696%203.76374%2023.9842C4.04926%2024.0989%204.33478%2024.2568%204.61598%2024.4406C4.89069%2024.6331%205.16757%2024.8408%205.42281%2025.0874C5.55692%2025.2042%205.67156%2025.334%205.79702%2025.4594C5.92031%2025.5914%206.03279%2025.7277%206.15176%2025.8618C6.15176%2025.8618%205.01399%2023.6879%205.41416%2022.31C5.41632%2022.3143%205.17622%2024.2222%206.98671%2027.0233Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M54.492%2026.9583C54.784%2029.1128%2057.3819%2030.6637%2057.3819%2030.6637C53.1855%2026.7182%2056.6659%2026.0953%2056.6659%2026.0953C56.8281%2024.7044%2057.821%2024.8212%2057.821%2024.8212C57.9096%2023.5299%2059.374%2023.7159%2059.374%2023.7159C56.4582%2022.1542%2054.2%2024.8039%2054.492%2026.9583ZM55.5368%2024.7261C56.1035%2024.3367%2056.6789%2024.5292%2056.6789%2024.5292C55.9066%2024.4557%2055.3962%2024.9597%2055.3507%2025.0073C55.1885%2025.2841%2055.0609%2025.6108%2054.983%2025.9915C55.5627%2025.4939%2056.1424%2025.68%2056.1424%2025.68C55.3096%2025.641%2054.9787%2026.1558%2054.9462%2026.2099C54.8727%2026.7204%2054.8857%2027.3239%2055.0306%2028.042C55.0306%2028.042%2053.709%2024.3129%2057.423%2023.5191C57.57%2023.4823%2057.6609%2023.4715%2057.6609%2023.4715C57.5787%2023.4866%2057.5008%2023.5039%2057.423%2023.5191C57.0076%2023.6207%2056.1381%2023.9236%2055.5368%2024.7261Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M57.5033%2028.8595C57.2329%2027.8753%2058.4053%2027.6979%2058.4053%2027.6979C57.6396%2027.3886%2057.871%2026.1968%2057.871%2026.1968C54.9487%2028.1565%2057.3822%2030.6635%2057.3822%2030.6635C56.6164%2029.0131%2057.5033%2028.8595%2057.5033%2028.8595ZM57.4276%2026.8219C57.4427%2026.8111%2057.4492%2026.8046%2057.4492%2026.8046C57.4427%2026.8111%2057.4362%2026.8154%2057.4276%2026.8219C57.2783%2026.9365%2056.4261%2027.672%2056.7462%2029.357C56.7462%2029.357%2056.1644%2027.7066%2057.4276%2026.8219Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M56.1263%2012.4658C56.045%2012.5749%2056.0022%2012.6498%2056.0022%2012.6498C56.0535%2012.5963%2056.092%2012.5343%2056.1263%2012.4658Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M59.5624%2015.7816C60.3065%2015.8681%2060.9273%2014.5227%2060.9273%2014.5227C60.1054%2014.103%2059.2618%2014.8298%2059.2618%2014.8298C59.5797%2014.4491%2059.0433%2013.8521%2059.0433%2013.8521C59.0433%2013.8521%2058.7707%2014.5054%2058.2148%2014.7887C57.6589%2015.0721%2056.5601%2016.2099%2056.5601%2016.2099C56.5601%2016.2099%2056.5622%2015.0267%2057.3756%2014.5162C58.1889%2014.0057%2058.8508%2013.108%2058.8508%2013.108L58.0872%2013.0778C58.8464%2012.736%2059.0195%2011.3387%2059.0195%2011.3387C58.1629%2011.1223%2057.3885%2012.0784%2057.3885%2012.0784L57.607%2011.5009C56.9148%2011.5074%2056.3611%2012.1411%2056.1253%2012.4634C56.0929%2012.5327%2056.0518%2012.5954%2055.9999%2012.6495C55.9999%2012.6495%2056.0453%2012.5738%2056.1253%2012.4634C56.3892%2011.9162%2056.1318%2010.9471%2056.1318%2010.9471L55.8095%2011.4857C56.1491%2010.5643%2055.3964%209.58008%2055.3964%209.58008C54.2867%2010.335%2054.7929%2011.5701%2054.7929%2011.5701L54.2175%2011.0553C54.0033%2012.0979%2054.5073%2012.9631%2054.5073%2012.9631C53.9795%2012.1736%2053.0927%2012.0676%2053.0927%2012.0676L53.4453%2012.7598C52.7012%2012.0806%2051.5007%2012.4461%2051.5007%2012.4461C51.5007%2012.4461%2051.6586%2013.4866%2053.7719%2014.5854C55.8852%2015.6843%2055.6754%2019.0305%2055.6754%2019.0305C54.9897%2014.5227%2050.8171%2014.6633%2050.8171%2014.6633C52.1518%2014.9207%2053.2073%2017.4904%2053.2073%2017.4904C52.6817%2016.9496%2052.0436%2017.6505%2052.0436%2017.6505C53.6032%2018.4097%2054.6025%2020.8886%2054.6025%2020.8886C54.2002%2020.0363%2052.7855%2020.1986%2052.7855%2020.1986C55.0048%2021.7408%2053.72%2024.8903%2053.72%2024.8903C56.0063%2023.1706%2055.7403%2021.0097%2056.7072%2019.5799C57.6741%2018.1523%2059.4824%2017.2741%2059.4824%2017.2741C59.0325%2016.9432%2058.2365%2017.3974%2058.2365%2017.3974C59.1601%2016.5516%2060.5899%2016.4283%2060.5899%2016.4283C60.644%2015.8833%2059.5624%2015.7816%2059.5624%2015.7816ZM54.4468%2023.8044C55.033%2022.0091%2054.0466%2020.9254%2054.0466%2020.9254C55.5261%2022.1324%2054.4468%2023.8044%2054.4468%2023.8044ZM55.0632%2019.9714C55.0632%2019.9714%2054.5052%2017.1746%2052.9305%2015.7989C52.9305%2015.7989%2054.7756%2016.9843%2055.0632%2019.9714ZM52.3681%2012.9177C53.0516%2013.0258%2053.6075%2013.2659%2054.0552%2013.5601C53.9731%2012.9372%2053.5275%2012.444%2053.5275%2012.444C53.9363%2012.7944%2054.1158%2013.3979%2054.1742%2013.6402C55.3033%2014.4318%2055.6949%2015.5393%2055.6949%2015.5393C55.6949%2015.5393%2055.4591%2014.1636%2055.3185%2012.7641C55.1346%2012.63%2054.6328%2012.232%2054.49%2011.741C54.49%2011.741%2054.7107%2012.2212%2055.3077%2012.6473C55.219%2011.715%2055.1757%2010.7914%2055.2774%2010.2723C55.2774%2010.2723%2055.3574%2011.0272%2055.4548%2012.1822C55.5954%2012.0979%2055.8852%2011.8816%2056.0258%2011.4425C56.0258%2011.4425%2055.922%2012.059%2055.4656%2012.2861C55.5413%2013.1946%2055.63%2014.3345%2055.697%2015.5393C55.697%2015.5393%2055.7857%2015.0786%2056.0885%2014.4297V14.4275C56.2226%2014.142%2056.3979%2013.8197%2056.6271%2013.4866C56.5687%2012.245%2057.2674%2011.8513%2057.2674%2011.8513C56.7201%2012.2536%2056.7223%2013.0323%2056.7439%2013.32C57.1549%2012.7576%2057.7152%2012.1693%2058.4787%2011.6631C58.4787%2011.6631%2057.2674%2012.5608%2056.3027%2014.2501C56.9018%2014.023%2057.9791%2013.519%2057.9791%2013.519C57.3561%2013.9387%2056.5558%2014.2566%2056.2335%2014.3778C56.0388%2014.7325%2055.8549%2015.1197%2055.6949%2015.5393C54.6977%2013.4693%2052.3681%2012.9177%2052.3681%2012.9177ZM56.4714%2018.0377C56.4714%2018.0377%2057.1679%2015.5026%2060.1508%2014.9423C60.1529%2014.9423%2057.6157%2015.522%2056.4714%2018.0377Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M47.9383%2010.6401C50.1641%2010.2616%2051.0899%2013.3159%2051.0899%2013.3159C51.3321%2012.1889%2050.8346%2011.3713%2050.4561%2010.5644C50.0776%209.75544%2050.4323%209.36609%2051.0596%208.83831C51.689%208.31052%2051.5593%207.78705%2051.5593%207.78705L51.038%208.05311C51.4749%207.62266%2051.317%206.9759%2051.317%206.9759L50.8108%207.3393C51.0964%207.01917%2051.0747%205.96143%2051.0747%205.96143C50.1944%206.13447%2049.8461%207.21168%2049.8461%207.21168L49.6363%206.8007C49.2815%207.05161%2049.314%207.79571%2049.314%207.79571L48.9809%207.48206C48.9809%207.48206%2048.6543%207.99471%2049.089%208.77558C49.5216%209.55644%2048.9636%2010.0842%2048.4596%209.23631C47.9556%208.38622%2047.006%208.423%2047.006%208.423L47.1747%208.89022C46.5626%208.23481%2045.7276%208.55711%2045.7276%208.55711L46.0088%209.10436C45.5676%208.6393%2044.6677%208.78639%2044.6677%208.78639C44.6677%208.78639%2045.7125%2011.0165%2047.9383%2010.6401ZM49.792%208.86642C49.792%208.86642%2049.2578%208.63498%2049.0696%207.78489C49.0696%207.78489%2049.2902%208.52682%2049.8007%208.75611L49.7985%208.77341C49.8201%208.5225%2049.8613%208.22616%2049.937%207.91467C49.8504%207.82815%2049.6211%207.55344%2049.6363%207.0992C49.6363%207.0992%2049.6579%207.54695%2049.9694%207.78705C50.1187%207.23331%2050.3825%206.64496%2050.8433%206.20153C50.8433%206.20153%2050.3025%206.87857%2049.9889%208.11151C49.9954%208.11151%2050.5167%208.02499%2051.0704%207.38256C51.0704%207.38256%2050.5989%208.09854%2049.9586%208.24995C49.8721%208.61767%2049.8072%209.02865%2049.7834%209.48506C49.7834%209.48506%2049.8375%209.45262%2049.924%209.39421C50.335%209.08706%2051.2629%208.17208%2051.2629%208.17208C50.8627%208.73448%2050.2073%209.20386%2049.924%209.39421C49.8656%209.43964%2049.8158%209.46992%2049.7834%209.48506C49.7812%209.48506%2049.7661%209.23631%2049.792%208.86642ZM47.2093%2010.3027C46.3895%209.48722%2046.3095%208.7215%2046.3095%208.7215C46.4609%209.41152%2047.1401%2010.0972%2047.3975%2010.3373C48.0118%2010.4282%2048.4899%2010.3438%2048.5872%2010.3243C48.5937%2010.3222%2048.6002%2010.3222%2048.6045%2010.32C47.6268%209.8398%2047.5554%208.81667%2047.5554%208.81667C47.8496%209.78789%2048.6045%2010.32%2048.6045%2010.32C48.6045%2010.32%2048.598%2010.3222%2048.5872%2010.3243C48.1805%2010.4195%2047.8172%2010.4455%2047.497%2010.426H47.4905C47.4429%2010.4238%2047.3954%2010.4195%2047.3499%2010.413L47.3218%2010.4109C45.9894%2010.2573%2045.4291%209.31202%2045.4291%209.31202C45.9915%209.91551%2046.6426%2010.1881%2047.2093%2010.3027Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M54.477%2031.7321C54.477%2031.7321%2054.9767%2033.0797%2054.6068%2034.2737C54.6068%2034.2737%2054.676%2033.3609%2054.185%2033.0948C54.185%2033.0948%2054.1655%2035.1043%2053.2873%2036.5903C52.4091%2038.0764%2050.3412%2038.7577%2049.7659%2041.5611C49.7659%2041.5611%2052.0609%2039.0519%2054.4056%2040.3973C54.4056%2040.3973%2053.9471%2039.0497%2053.004%2039.0497C53.004%2039.0497%2055.6732%2038.8918%2057.0251%2039.9777C57.0251%2039.9777%2057.3842%2039.1016%2056.6704%2038.8572C56.6704%2038.8572%2059.4434%2038.7123%2060.2481%2039.809C60.2481%2039.809%2058.589%2035.976%2054.2218%2037.2847C54.2218%2037.2847%2057.1571%2035.6645%2059.0541%2037.103C60.9511%2038.5436%2061.9591%2038.2407%2061.9591%2038.2407C61.9591%2038.2407%2061.7752%2036.9991%2060.8429%2036.6184L61.6195%2036.6422C61.6195%2036.6422%2061.1436%2035.8852%2060.2048%2035.7467C60.2048%2035.7467%2061.1998%2035.8332%2062.0521%2035.193L61.3404%2034.8945C61.3404%2034.8945%2062.6751%2034.8253%2062.8805%2033.4993C62.8805%2033.4993%2061.6671%2033.2397%2060.9814%2033.9406L61.3296%2033.4193C61.3296%2033.4193%2060.3411%2033.601%2059.9604%2034.0725C59.8955%2034.1936%2059.8458%2034.265%2059.8458%2034.265C59.8717%2034.1958%2059.9107%2034.1309%2059.9604%2034.0725C60.1508%2033.7199%2060.4882%2032.9499%2060.1962%2032.3204L59.7657%2032.766C59.7657%2032.766%2060.2978%2031.6585%2059.7376%2030.975C59.7376%2030.975%2058.5501%2031.7299%2058.5652%2032.5627L58.2105%2031.8857C58.2105%2031.8857%2057.6805%2032.8677%2057.5681%2033.8216C57.4556%2034.7755%2056.387%2035.2838%2056.387%2035.2838C56.387%2035.2838%2056.9451%2033.8021%2056.9646%2033.1792C56.984%2032.5562%2057.4577%2032.0284%2057.4577%2032.0284C57.4577%2032.0284%2056.6877%2031.797%2056.48%2032.249C56.48%2032.249%2056.7764%2031.1762%2056.0453%2030.6138C56.0453%2030.6138%2055.0957%2031.7494%2055.4915%2032.3853C55.4958%2032.3875%2054.9421%2031.4552%2054.477%2031.7321ZM53.2051%2039.5732C53.2051%2039.5732%2051.8035%2039.1449%2050.4321%2040.4427C50.4321%2040.4427%2051.4833%2038.7534%2053.2051%2039.5732ZM58.3186%2038.39C56.4022%2037.555%2053.6356%2038.2472%2053.6356%2038.2472C56.4562%2037.2284%2058.3186%2038.39%2058.3186%2038.39ZM57.3712%2035.7813C57.6827%2035.4569%2057.9552%2035.1259%2058.191%2034.7971C58.1607%2034.4532%2058.1088%2033.5945%2058.2191%2032.8525C58.2191%2032.8525%2058.2235%2034.0422%2058.2754%2034.6803C59.3915%2033.084%2059.6835%2031.6066%2059.6835%2031.6066C59.5537%2032.5129%2059.2617%2033.2722%2058.9286%2033.8843C59.199%2033.7805%2059.9042%2033.4495%2060.0318%2032.7833C60.0318%2032.7833%2059.9755%2033.5837%2058.827%2034.0617C58.6215%2034.4121%2058.4073%2034.7085%2058.2062%2034.9507V34.9529C57.7497%2035.5045%2057.3712%2035.7813%2057.3712%2035.7813C58.4917%2035.3271%2059.5581%2034.9183%2060.4125%2034.6003C60.4233%2034.0898%2060.9359%2033.7329%2060.9359%2033.7329C60.5985%2034.0466%2060.5271%2034.4013%2060.512%2034.5657C61.5957%2034.1612%2062.3138%2033.9103%2062.3138%2033.9103C61.8899%2034.2239%2061.0354%2034.5808%2060.1551%2034.8988C60.7953%2035.2557%2061.3231%2035.2492%2061.3231%2035.2492C60.8191%2035.3293%2060.2438%2035.0481%2060.0448%2034.9377C58.7166%2035.4071%2057.3712%2035.7813%2057.3712%2035.7813C57.3712%2035.7813%2058.5393%2035.6624%2059.7398%2036.3437C59.9842%2036.2918%2060.605%2036.1966%2061.0982%2036.4151C61.0982%2036.4151%2060.4601%2036.2226%2059.8631%2036.4151C60.3195%2036.6941%2060.7737%2037.0943%2061.1652%2037.6654C61.1631%2037.6654%2059.6684%2035.7965%2057.3712%2035.7813ZM56.0042%2031.4941C56.7742%2034.4294%2054.7799%2036.1447%2054.7799%2036.1447C56.5644%2034.0357%2056.0042%2031.4941%2056.0042%2031.4941Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M61.3339%2021.3496C61.3339%2021.3496%2060.6309%2025.2842%2059.1038%2027.7739C57.5767%2030.2636%2057.7043%2031.4533%2057.7043%2031.4533C57.7043%2031.4533%2060.0555%2026.5799%2063.484%2026.4285C63.484%2026.4285%2062.2489%2025.1544%2060.9121%2026.4371C60.9121%2026.4371%2063.5727%2023.5321%2066.8649%2024.0059C66.8649%2024.0059%2063.9728%2021.6827%2061.4096%2024.7132C61.4096%2024.7132%2062.6123%2022.7405%2061.3339%2021.3496ZM61.4464%2022.3143C61.8444%2023.6922%2060.7088%2025.8661%2060.7088%2025.8661C60.8277%2025.732%2060.9402%2025.5957%2061.0635%2025.4638C61.189%2025.3383%2061.3036%2025.2085%2061.4377%2025.0917C61.693%2024.8451%2061.9699%2024.6375%2062.2446%2024.445C62.5258%2024.2633%2062.8113%2024.1032%2063.0968%2023.9885C63.3823%2023.8739%2063.6614%2023.7852%2063.9231%2023.7333C64.1848%2023.6749%2064.4293%2023.6533%2064.6477%2023.6425C64.864%2023.6338%2065.0544%2023.6381%2065.208%2023.649C65.3637%2023.6598%2065.4848%2023.6727%2065.567%2023.6836C65.6492%2023.6944%2065.6925%2023.6987%2065.6925%2023.6987C65.6925%2023.6987%2065.6492%2023.6965%2065.5649%2023.6922C65.4827%2023.6857%2065.3615%2023.6836%2065.2058%2023.6814C65.0522%2023.6814%2064.864%2023.6857%2064.6499%2023.7052C64.4379%2023.729%2064.1978%2023.7614%2063.9426%2023.8263C63.6873%2023.8847%2063.4169%2023.9799%2063.1422%2024.101C62.8675%2024.2222%2062.595%2024.3866%2062.3224%2024.5661C62.0564%2024.7564%2061.786%2024.9641%2061.5437%2025.2064C61.4161%2025.3188%2061.2993%2025.4529%2061.176%2025.5784C61.0592%2025.7039%2060.9489%2025.8423%2060.8342%2025.9742C60.7261%2026.1127%2060.6179%2026.2511%2060.5098%2026.3874C60.4081%2026.5302%2060.3021%2026.6686%2060.2026%2026.8114C60.0188%2027.0752%2059.8457%2027.3413%2059.6813%2027.6009C60.9164%2026.2468%2062.5214%2026.2965%2062.5214%2026.2965C60.5682%2026.6145%2059.4196%2028.027%2059.4153%2028.0335C59.3223%2028.1849%2059.2336%2028.3342%2059.147%2028.4791C58.9935%2028.7408%2058.8529%2028.9917%2058.7252%2029.2232C58.47%2029.6882%2058.2602%2030.0776%2058.1196%2030.3523C57.979%2030.627%2057.8968%2030.7849%2057.8968%2030.7849C57.8968%2030.7849%2058.1629%2030.1273%2058.6431%2029.1777C58.7642%2028.942%2058.8983%2028.6867%2059.0432%2028.4185C59.1903%2028.1525%2059.3461%2027.8713%2059.5213%2027.5879C59.6359%2027.4019%2059.7549%2027.2115%2059.8803%2027.0233C59.8782%2027.0255%2059.876%2027.0277%2059.876%2027.0277C61.6865%2024.2222%2061.4464%2022.3143%2061.4464%2022.3143Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M33.4414%2050.6938L33.2727%2050.5726C32.8249%2050.2287%2030.5429%2048.5091%2029.0028%2048.0354C26.4915%2047.2631%2018.8753%2044.1029%2016.8831%2039.8611C14.4756%2034.7368%2016.7209%2029.6623%2016.9848%2029.0999C17.5515%2027.895%2018.7152%2024.5964%2017.3092%2020.0193L15.9941%2015.5569L21.3888%2010.478L21.5316%2010.5754C21.5618%2010.597%2024.6009%2012.6497%2027.3826%2012.587C29.0655%2012.5481%2030.5494%2012.189%2031.6331%2011.9273C32.3988%2011.7434%2033.0023%2011.5963%2033.4327%2011.6136C33.861%2011.5985%2034.4667%2011.7434%2035.2324%2011.9273C36.3161%2012.189%2037.8%2012.5481%2039.4828%2012.587C42.2689%2012.6497%2045.3037%2010.597%2045.3339%2010.5754L45.4767%2010.478L50.8714%2015.5569L49.5584%2020.015C48.1524%2024.5942%2049.3161%2027.8929%2049.8829%2029.0977C50.1468%2029.6601%2052.3899%2034.7347%2049.9845%2039.859C47.9924%2044.1007%2040.3762%2047.261%2037.8649%2048.0332C36.3269%2048.5069%2034.0492%2050.2201%2033.6036%2050.564L33.4414%2050.6938ZM16.4808%2015.691L17.7202%2019.896C19.1695%2024.6137%2017.9603%2028.0335%2017.372%2029.2837C17.1167%2029.8267%2014.9472%2034.7325%2017.2703%2039.6794C19.1954%2043.7806%2026.6645%2046.8673%2029.1282%2047.6244C30.6446%2048.0916%2032.8055%2049.6793%2033.4306%2050.153C34.0557%2049.6793%2036.2166%2048.0916%2037.7329%2047.6244C40.1967%2046.8673%2047.6636%2043.7784%2049.5909%2039.6794C51.914%2034.7347%2049.7444%2029.8267%2049.4892%2029.2837C48.903%2028.0335%2047.6938%2024.6137%2049.1431%2019.8939L50.3804%2015.691L45.4291%2011.0296C44.7867%2011.4449%2042.1694%2013.0218%2039.6126%2013.0218C39.565%2013.0218%2039.5175%2013.0218%2039.4699%2013.0196C37.7394%2012.9785%2036.2296%2012.6151%2035.1286%2012.3469C34.391%2012.1695%2033.8091%2012.0268%2033.4414%2012.0441H33.4327H33.4241C33.0564%2012.0268%2032.4745%2012.1674%2031.7369%2012.3469C30.6337%2012.613%2029.1239%2012.9785%2027.3956%2013.0196C24.7935%2013.0824%2022.0918%2011.4514%2021.4364%2011.0296L16.4808%2015.691Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M45.3054%2011.8452L49.6467%2015.9312L48.5154%2019.7728C47.0142%2024.6613%2048.2796%2028.2304%2048.8939%2029.539C49.1362%2030.0539%2051.1933%2034.7088%2048.9934%2039.3918C47.1353%2043.3502%2039.4889%2046.3937%2037.5443%2046.9928C36.1643%2047.4168%2034.3733%2048.6476%2033.4323%2049.3376C32.4914%2048.6476%2030.7004%2047.4168%2029.3203%2046.9928C27.3757%2046.3937%2019.7293%2043.3502%2017.8712%2039.3918C15.6714%2034.7088%2017.7306%2030.0539%2017.9707%2029.539C18.585%2028.2326%2019.8504%2024.6613%2018.3449%2019.7641L17.2158%2015.9312L21.5571%2011.8452C22.5997%2012.4616%2024.9509%2013.6794%2027.2762%2013.6794C27.3281%2013.6794%2027.3779%2013.6794%2027.4298%2013.6773C29.2165%2013.6362%2030.7544%2013.2641%2031.8792%2012.9916C32.513%2012.838%2033.0624%2012.7061%2033.3609%2012.7061C33.3718%2012.7061%2033.4302%2012.7082%2033.4302%2012.7082C33.4302%2012.7082%2033.4886%2012.7061%2033.4994%2012.7061C33.8%2012.7061%2034.3473%2012.838%2034.9832%2012.9916C36.108%2013.2641%2037.646%2013.6362%2039.4327%2013.6773C39.4846%2013.6794%2039.5343%2013.6794%2039.5862%2013.6794C41.9137%2013.6794%2044.2628%2012.4616%2045.3054%2011.8452ZM21.4771%2011.1313L21.1634%2011.4277L16.8221%2015.5137L16.5647%2015.756L16.6642%2016.0934L17.7933%2019.9264C19.2404%2024.6375%2018.0356%2028.0465%2017.4494%2029.2946C17.1963%2029.8354%2015.0376%2034.7153%2017.3499%2039.6362C18.1978%2041.4424%2020.1944%2043.2334%2023.2832%2044.9531C25.7599%2046.3353%2028.2042%2047.2502%2029.1516%2047.5401C30.4495%2047.9403%2032.1777%2049.1278%2033.0927%2049.8005L33.4323%2050.0514L33.7719%2049.8005C34.6869%2049.1278%2036.4152%2047.9403%2037.713%2047.5401C38.6583%2047.2481%2041.1026%2046.3331%2043.5814%2044.9531C46.6681%2043.2313%2048.6646%2041.4424%2049.5147%2039.6362C51.8249%2034.7153%2049.6683%2029.8354%2049.4152%2029.2946C48.829%2028.0465%2047.6242%2024.6397%2049.067%2019.9415L50.2004%2016.0934L50.2999%2015.756L50.0425%2015.5137L45.7012%2011.4277L45.3876%2011.1313L45.0155%2011.352C44.1244%2011.8798%2041.812%2013.1062%2039.5884%2013.1062C39.5408%2013.1062%2039.4954%2013.1062%2039.45%2013.1041C37.726%2013.063%2036.2205%2012.6996%2035.1217%2012.4357C34.423%2012.267%2033.8714%2012.1328%2033.5037%2012.1328C33.4929%2012.1328%2033.4583%2012.135%2033.4345%2012.135C33.4107%2012.135%2033.3739%2012.1328%2033.3653%2012.1328C32.9975%2012.1328%2032.446%2012.267%2031.7473%2012.4357C30.6485%2012.7017%2029.143%2013.0651%2027.419%2013.1041C27.3714%2013.1062%2027.326%2013.1062%2027.2784%2013.1062C25.0548%2013.1062%2022.7424%2011.8798%2021.8513%2011.352L21.4771%2011.1313Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M45.3071%2013.4415L48.1429%2016.1129L47.2733%2019.0633C45.5753%2024.6008%2047.0375%2028.7063%2047.7449%2030.2139C47.959%2030.6703%2049.7781%2034.7801%2047.8487%2038.89C46.3389%2042.1065%2039.4776%2045.072%2037.1502%2045.788C35.954%2046.1557%2034.5826%2046.9625%2033.4297%2047.7434C32.2768%2046.9625%2030.9054%2046.1557%2029.7092%2045.788C27.3818%2045.072%2020.5205%2042.1065%2019.0107%2038.89C17.0812%2034.7823%2018.9004%2030.6703%2019.1145%2030.2139C19.8218%2028.7063%2021.2841%2024.6008%2019.5839%2019.0547L18.7187%2016.1129L21.5545%2013.4415C22.9907%2014.1618%2025.0391%2014.9492%2027.1417%2014.9492C27.2065%2014.9492%2027.2714%2014.9492%2027.3363%2014.947C29.3372%2014.8994%2031.0092%2014.4971%2032.2313%2014.2007C32.6315%2014.1034%2033.1701%2013.9736%2033.3648%2013.9563L33.434%2013.9585L33.5032%2013.9563C33.6957%2013.9736%2034.2365%2014.1056%2034.6345%2014.2007C35.8566%2014.4971%2037.5287%2014.8994%2039.5295%2014.947C39.5944%2014.9492%2039.6593%2014.9492%2039.7242%2014.9492C41.8224%2014.9492%2043.873%2014.1618%2045.3071%2013.4415ZM45.3828%2012.9224L45.1146%2013.0565C43.7865%2013.7227%2041.7726%2014.5165%2039.7221%2014.5165C39.6593%2014.5165%2039.5988%2014.5165%2039.536%2014.5144C37.5806%2014.469%2035.9345%2014.071%2034.7319%2013.7811C34.1824%2013.6492%2033.7455%2013.5453%2033.5378%2013.5259L33.5097%2013.5237L33.4816%2013.5259L33.4297%2013.528L33.3778%2013.5259L33.3497%2013.5237L33.3215%2013.5259C33.1139%2013.5453%2032.6769%2013.6492%2032.1275%2013.7811C30.9249%2014.071%2029.2788%2014.469%2027.3255%2014.5144C27.2628%2014.5165%2027.2022%2014.5165%2027.1395%2014.5165C25.0889%2014.5165%2023.0751%2013.7227%2021.747%2013.0565L21.4787%2012.9224L21.2603%2013.1279L18.4245%2015.7992L18.232%2015.9809L18.3077%2016.234L19.1729%2019.1758C20.8298%2024.5835%2019.413%2028.5678%2018.7273%2030.0301C18.5045%2030.5038%2016.6118%2034.7845%2018.6235%2039.0717C20.3172%2042.6775%2027.8187%2045.6539%2029.5859%2046.199C30.5593%2046.4975%2031.7706%2047.1378%2033.1918%2048.1003L33.434%2048.2647L33.6763%2048.1003C35.0952%2047.1378%2036.3087%2046.4975%2037.2821%2046.199C39.0493%2045.656%2046.5508%2042.6797%2048.2445%2039.0717C50.2583%2034.7845%2048.3635%2030.5038%2048.1407%2030.0301C47.455%2028.5678%2046.036%2024.5835%2047.6908%2019.1888L48.5603%2016.234L48.636%2015.9809L48.4435%2015.7992L45.6078%2013.1279L45.3828%2012.9224Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M27.5962%208.63915C26.6164%208.10487%2026.2313%207.24397%2026.1167%206.84813C25.8982%206.09322%2026.2422%205.21717%2027.0728%205.0636C27.315%205.01817%2027.5378%205.06792%2027.7455%205.1804C27.4037%205.2626%2027.2458%205.80553%2027.6828%205.86177C28.0786%205.91368%2028.0526%205.29721%2027.9705%205.0809C27.6936%204.35411%2026.9625%204.28057%2026.4433%204.82566C26.532%204.3779%2026.9906%203.96692%2027.4297%203.84795C27.7758%203.75278%2028.5631%203.80253%2028.7621%204.26542C28.6497%203.80253%2029.0585%203.15577%2029.3116%202.88106C30.0535%202.07424%2031.3686%201.50968%2032.528%201.63514C31.6909%202.1997%2030.83%202.98056%2030.2893%203.79604C29.4327%205.08739%2028.4896%206.92816%2030.2179%208.63482C30.1941%208.63482%2030.1703%208.65861%2030.1465%208.65861L27.5962%208.63915Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M30.9471%208.64991C28.9744%206.27702%2030.4669%204.57036%2032.5435%203.07568C31.3365%205.41396%2030.2204%205.76438%2030.9471%208.64991C30.7027%208.35573%2030.8887%208.41413%2030.9471%208.64991Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M39.0932%208.63915C40.073%208.10487%2040.4581%207.24397%2040.5727%206.84813C40.7912%206.09322%2040.4472%205.21717%2039.6166%205.0636C39.3744%205.01817%2039.1516%205.06792%2038.9439%205.1804C39.2857%205.2626%2039.4436%205.80553%2039.0067%205.86177C38.6108%205.91368%2038.6368%205.29721%2038.719%205.0809C38.9958%204.35411%2039.7269%204.28057%2040.2461%204.82566C40.1574%204.3779%2039.6988%203.96692%2039.2597%203.84795C38.9136%203.75278%2038.1263%203.80253%2037.9273%204.26542C38.0398%203.80253%2037.6309%203.15577%2037.3779%202.88106C36.6359%202.07424%2035.3208%201.50968%2034.1614%201.63514C34.9985%202.1997%2035.8594%202.98056%2036.4002%203.79604C37.2567%205.08739%2038.1998%206.92816%2036.4715%208.63482C36.4953%208.63482%2036.5191%208.65861%2036.5429%208.65861L39.0932%208.63915Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M35.7426%208.64991C36.4694%205.76221%2035.3554%205.41828%2034.1462%203.07568C36.2358%204.57901%2037.6915%206.30298%2035.7426%208.64991C35.7988%208.42278%2035.9481%208.40115%2035.7426%208.64991Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M33.5667%204.64202C33.5667%204.76315%2033.4673%204.86265%2033.3461%204.86265C33.2228%204.86265%2033.1255%204.76315%2033.1255%204.64202C33.1255%204.52089%2033.225%204.42139%2033.3461%204.42139C33.4673%204.42139%2033.5667%204.51872%2033.5667%204.64202Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M32.9168%204.64189C32.9168%204.90362%2032.7049%205.11777%2032.441%205.11777C32.1792%205.11777%2031.9651%204.90578%2031.9651%204.64189C31.9651%204.38016%2032.1771%204.16602%2032.441%204.16602C32.7049%204.16602%2032.9168%204.378%2032.9168%204.64189Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M31.3664%206.93289C31.5491%206.93289%2031.6973%206.78472%2031.6973%206.60195C31.6973%206.41917%2031.5491%206.271%2031.3664%206.271C31.1836%206.271%2031.0354%206.41917%2031.0354%206.60195C31.0354%206.78472%2031.1836%206.93289%2031.3664%206.93289Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M32.1906%205.62848C32.1906%205.8556%2032.0067%206.04162%2031.7774%206.04162C31.5503%206.04162%2031.3643%205.85776%2031.3643%205.62848C31.3643%205.40136%2031.5481%205.21533%2031.7774%205.21533C32.0067%205.21533%2032.1906%205.40136%2032.1906%205.62848Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M31.6286%207.51891C31.6286%207.65951%2031.514%207.77415%2031.3734%207.77415C31.2328%207.77415%2031.1182%207.65951%2031.1182%207.51891C31.1182%207.37831%2031.2328%207.26367%2031.3734%207.26367C31.514%207.26367%2031.6286%207.37831%2031.6286%207.51891Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M31.8899%208.26531C31.8899%208.37995%2031.7969%208.47296%2031.6823%208.47296C31.5676%208.47296%2031.4746%208.37995%2031.4746%208.26531C31.4746%208.15067%2031.5676%208.05765%2031.6823%208.05765C31.7969%208.05549%2031.8899%208.15067%2031.8899%208.26531Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M34.2564%205.11777C34.5192%205.11777%2034.7323%204.90471%2034.7323%204.64189C34.7323%204.37907%2034.5192%204.16602%2034.2564%204.16602C33.9936%204.16602%2033.7805%204.37907%2033.7805%204.64189C33.7805%204.90471%2033.9936%205.11777%2034.2564%205.11777Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M35.0024%206.60195C35.0024%206.78364%2035.1495%206.93289%2035.3334%206.93289C35.5151%206.93289%2035.6643%206.78581%2035.6643%206.60195C35.6643%206.42025%2035.5173%206.271%2035.3334%206.271C35.1517%206.27316%2035.0024%206.42025%2035.0024%206.60195Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M34.5098%205.62848C34.5098%205.8556%2034.6936%206.04162%2034.9229%206.04162C35.15%206.04162%2035.3361%205.85776%2035.3361%205.62848C35.3361%205.40136%2035.1522%205.21533%2034.9229%205.21533C34.6936%205.21533%2034.5098%205.40136%2034.5098%205.62848Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M35.327%207.77415C35.468%207.77415%2035.5823%207.65988%2035.5823%207.51891C35.5823%207.37795%2035.468%207.26367%2035.327%207.26367C35.1861%207.26367%2035.0718%207.37795%2035.0718%207.51891C35.0718%207.65988%2035.1861%207.77415%2035.327%207.77415Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M34.8079%208.26531C34.8079%208.37995%2034.9009%208.47296%2035.0155%208.47296C35.1302%208.47296%2035.2232%208.37995%2035.2232%208.26531C35.2232%208.15067%2035.1302%208.05765%2035.0155%208.05765C34.9009%208.05549%2034.8079%208.15067%2034.8079%208.26531Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M39.0049%209.13908C39.0049%209.23641%2038.9335%209.31428%2038.847%209.31428H27.8434C27.7569%209.31428%2027.6855%209.23641%2027.6855%209.13908C27.6855%209.04174%2027.7569%208.96387%2027.8434%208.96387H38.847C38.9335%208.96387%2039.0049%209.04174%2039.0049%209.13908Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M33.3456%204.68945C33.3456%204.68945%2031.9678%206.4026%2031.9678%207.164C31.9678%207.9254%2032.5842%208.76034%2033.3456%208.76034C34.107%208.76034%2034.7235%207.9254%2034.7235%207.164C34.7214%206.40044%2033.3456%204.68945%2033.3456%204.68945ZM33.6636%208.20876C33.5922%208.30394%2033.5165%208.38181%2033.4538%208.43588C33.3932%208.48996%2033.3435%208.52241%2033.3435%208.52241C33.3435%208.52241%2033.2959%208.49212%2033.2332%208.43588C33.1704%208.38181%2033.0947%208.30177%2033.0234%208.20876C32.8828%208.02058%2032.7897%207.76966%2032.7897%207.51874C32.7897%207.26783%2032.8806%207.01691%2033.0234%206.82873C33.0947%206.73355%2033.1704%206.65568%2033.2332%206.6016C33.2959%206.54753%2033.3435%206.51508%2033.3435%206.51508C33.3435%206.51508%2033.3911%206.54753%2033.4538%206.6016C33.5165%206.65568%2033.5944%206.73571%2033.6636%206.82873C33.8064%207.01691%2033.8972%207.26783%2033.8972%207.51874C33.8972%207.76966%2033.8064%208.02058%2033.6636%208.20876Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M38.1541%209.66016H28.535C27.9748%209.66016%2027.5205%209.94136%2027.5205%2010.2874C27.5205%2010.6335%2027.9748%2010.9147%2028.535%2010.9147H38.1541C38.7144%2010.9147%2039.1686%2010.6335%2039.1686%2010.2874C39.1686%209.93919%2038.7144%209.66016%2038.1541%209.66016ZM29.4543%2010.3415C29.4262%2010.374%2029.3872%2010.4129%2029.3396%2010.4497C29.2445%2010.5211%2029.1169%2010.5686%2028.9892%2010.5686C28.8616%2010.5686%2028.734%2010.5211%2028.6388%2010.4497C28.5912%2010.4129%2028.5501%2010.374%2028.5242%2010.3437C28.4961%2010.3134%2028.4809%2010.2874%2028.4809%2010.2874C28.4809%2010.2874%2028.4961%2010.2637%2028.5242%2010.2312C28.5523%2010.1988%2028.5912%2010.1598%2028.6388%2010.1252C28.734%2010.0538%2028.8616%2010.0062%2028.9892%2010.0062C29.1169%2010.0062%2029.2445%2010.0517%2029.3396%2010.1252C29.3872%2010.162%2029.4283%2010.2009%2029.4543%2010.2334C29.4824%2010.2658%2029.4976%2010.2896%2029.4976%2010.2896C29.4976%2010.2896%2029.4824%2010.3112%2029.4543%2010.3415ZM31.5352%2010.3415C31.507%2010.374%2031.4681%2010.4129%2031.4205%2010.4497C31.3253%2010.5211%2031.1977%2010.5686%2031.0701%2010.5686C30.9425%2010.5686%2030.8149%2010.5211%2030.7197%2010.4497C30.6721%2010.4129%2030.631%2010.374%2030.605%2010.3437C30.5769%2010.3134%2030.5618%2010.2874%2030.5618%2010.2874C30.5618%2010.2874%2030.5769%2010.2637%2030.605%2010.2312C30.6332%2010.1988%2030.6721%2010.1598%2030.7197%2010.1252C30.8149%2010.0538%2030.9425%2010.0062%2031.0701%2010.0062C31.1977%2010.0062%2031.3253%2010.0517%2031.4205%2010.1252C31.4681%2010.162%2031.5092%2010.2009%2031.5352%2010.2334C31.5633%2010.2658%2031.5784%2010.2896%2031.5784%2010.2896C31.5784%2010.2896%2031.5611%2010.3112%2031.5352%2010.3415ZM33.8107%2010.3415C33.7826%2010.374%2033.7437%2010.4129%2033.6961%2010.4497C33.6009%2010.5211%2033.4733%2010.5686%2033.3456%2010.5686C33.218%2010.5686%2033.0904%2010.5211%2032.9952%2010.4497C32.9476%2010.4129%2032.9065%2010.374%2032.8806%2010.3437C32.8525%2010.3134%2032.8373%2010.2874%2032.8373%2010.2874C32.8373%2010.2874%2032.8525%2010.2637%2032.8806%2010.2312C32.9087%2010.1988%2032.9476%2010.1598%2032.9952%2010.1252C33.0904%2010.0538%2033.218%2010.0062%2033.3456%2010.0062C33.4733%2010.0062%2033.6009%2010.0517%2033.6961%2010.1252C33.7437%2010.162%2033.7847%2010.2009%2033.8107%2010.2334C33.8388%2010.2658%2033.854%2010.2896%2033.854%2010.2896C33.854%2010.2896%2033.8388%2010.3112%2033.8107%2010.3415ZM36.043%2010.3415C36.0149%2010.374%2035.9759%2010.4129%2035.9283%2010.4497C35.8332%2010.5211%2035.7056%2010.5686%2035.5779%2010.5686C35.4503%2010.5686%2035.3227%2010.5211%2035.2275%2010.4497C35.1799%2010.4129%2035.1388%2010.374%2035.1129%2010.3437C35.0848%2010.3134%2035.0696%2010.2874%2035.0696%2010.2874C35.0696%2010.2874%2035.0848%2010.2637%2035.1129%2010.2312C35.141%2010.1988%2035.1799%2010.1598%2035.2275%2010.1252C35.3227%2010.0538%2035.4503%2010.0062%2035.5779%2010.0062C35.7056%2010.0062%2035.8332%2010.0517%2035.9283%2010.1252C35.9759%2010.162%2036.017%2010.2009%2036.043%2010.2334C36.0711%2010.2658%2036.0863%2010.2896%2036.0863%2010.2896C36.0863%2010.2896%2036.0711%2010.3112%2036.043%2010.3415ZM38.1693%2010.3415C38.1412%2010.374%2038.1022%2010.4129%2038.0546%2010.4497C37.9595%2010.5211%2037.8318%2010.5686%2037.7042%2010.5686C37.5766%2010.5686%2037.449%2010.5211%2037.3538%2010.4497C37.3062%2010.4129%2037.2651%2010.374%2037.2392%2010.3437C37.211%2010.3134%2037.1959%2010.2874%2037.1959%2010.2874C37.1959%2010.2874%2037.211%2010.2637%2037.2392%2010.2312C37.2673%2010.1988%2037.3062%2010.1598%2037.3538%2010.1252C37.449%2010.0538%2037.5766%2010.0062%2037.7042%2010.0062C37.8318%2010.0062%2037.9595%2010.0517%2038.0546%2010.1252C38.1022%2010.162%2038.1433%2010.2009%2038.1693%2010.2334C38.1974%2010.2658%2038.2125%2010.2896%2038.2125%2010.2896C38.2125%2010.2896%2038.1974%2010.3112%2038.1693%2010.3415Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M33.9447%202.00306H33.7933C33.7198%201.8192%2033.6246%201.64615%2033.5662%201.4558C33.4516%201.08592%2033.4537%200.692237%2033.3521%200.318027C33.3088%200.309374%2033.2677%200.664118%2033.2591%200.709542C33.2288%200.897729%2033.2115%201.08808%2033.1682%201.2741C33.1206%201.48176%2033.0406%201.67211%2032.9541%201.86462C32.9346%201.91004%2032.9151%201.95331%2032.8957%201.99873H32.7421C32.6188%201.99873%2032.5193%202.15014%2032.5193%202.33617C32.5193%202.52219%2032.6188%202.67361%2032.7421%202.67361H32.8048C32.8264%202.80772%2032.8675%202.93966%2032.9151%203.06945C32.9844%203.25547%2033.0428%203.44149%2033.0903%203.63617C33.1617%203.939%2033.2331%204.23967%2033.298%204.5425C33.3066%204.57927%2033.3261%204.56413%2033.3629%204.56413C33.391%204.56413%2033.3867%204.55547%2033.391%204.52735C33.4234%204.38243%2033.4559%204.2375%2033.4883%204.09258C33.5381%203.87195%2033.5857%203.64699%2033.6462%203.42852C33.7068%203.20788%2033.8106%203.00239%2033.8625%202.7796C33.8712%202.74499%2033.8777%202.70822%2033.882%202.67144H33.9426C34.0659%202.67144%2034.1654%202.52003%2034.1654%202.334C34.1697%202.15447%2034.068%202.00306%2033.9447%202.00306ZM33.4862%202.75148C33.4559%202.79257%2033.4213%202.82718%2033.3932%202.85098C33.365%202.87477%2033.3456%202.88991%2033.3456%202.88991C33.3456%202.88991%2033.3239%202.87693%2033.298%202.85098C33.2699%202.82718%2033.2374%202.79257%2033.205%202.75148C33.1423%202.66928%2033.1012%202.5568%2033.1012%202.44648C33.1012%202.33617%2033.1423%202.22369%2033.205%202.14149C33.2374%202.10039%2033.2699%202.06578%2033.298%202.04199C33.3261%202.0182%2033.3477%202.00306%2033.3477%202.00306C33.3477%202.00306%2033.3694%202.01603%2033.3975%202.04199C33.4256%202.06578%2033.4602%202.10039%2033.4905%202.14149C33.5532%202.22369%2033.5943%202.33617%2033.5943%202.44648C33.59%202.55896%2033.5489%202.66928%2033.4862%202.75148Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M44.4442%2042.2536H22.1906C20.6894%2041.0726%2019.3007%2039.9067%2018.6799%2038.7603H48.089C47.4184%2040.2787%2045.9562%2041.3992%2044.4442%2042.2536Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M42.2553%2019.9976C42.1038%2020.0625%2041.9978%2020.1144%2041.8875%2020.1576C40.8601%2020.5643%2039.8326%2020.9731%2038.803%2021.3733C38.7381%2021.3992%2038.63%2021.3928%2038.5759%2021.3517C38.0156%2020.9364%2037.3689%2020.7525%2036.7027%2020.6097C35.8007%2020.4151%2034.8857%2020.3653%2033.9685%2020.3977C32.7421%2020.4432%2031.5373%2020.6184%2030.3865%2021.0748C29.9777%2021.237%2029.5948%2021.4447%2029.2595%2021.7345C29.2184%2021.7691%2029.1384%2021.7843%2029.0865%2021.7735C28.9221%2021.7367%2028.7599%2021.6848%2028.5976%2021.635C28.5111%2021.6069%2028.4657%2021.6242%2028.4289%2021.7151C27.912%2023.0497%2027.687%2023.3525%2027.1722%2024.6849C27.1549%2024.7325%2027.157%2024.7996%2027.1765%2024.8472C27.2976%2025.1781%2027.2176%2025.4139%2026.9386%2025.6194C26.8758%2025.6648%2026.8434%2025.7773%2026.8326%2025.8638C26.7634%2026.3916%2026.7071%2026.9216%2026.6336%2027.4493C26.6271%2027.5034%2026.5298%2027.5553%2026.4627%2027.5835C26.4216%2027.6008%2026.3589%2027.5748%2026.3113%2027.5553C25.9652%2027.4234%2025.6191%2027.2914%2025.2752%2027.1508C25.0308%2027.0513%2025.0134%2026.9627%2025.167%2026.7485C25.4763%2026.3224%2025.7835%2025.8919%2026.0842%2025.4593C26.1166%2025.4117%2026.1231%2025.3295%2026.1101%2025.2711C26.0474%2024.9813%2026.1685%2024.7239%2026.4303%2024.5833C26.493%2024.5487%2026.5557%2024.6309%2026.5817%2024.5638C27.09%2023.2725%2027.2955%2022.8615%2027.8016%2021.568C27.8536%2021.436%2027.8298%2021.3906%2027.6892%2021.3517C27.0229%2021.1591%2026.361%2020.9515%2025.6991%2020.7482C25.6494%2020.733%2025.6018%2020.7114%2025.5326%2020.6833C25.5672%2020.653%2025.5867%2020.6249%2025.6148%2020.6097C27.3777%2019.6385%2029.1427%2018.6673%2030.9078%2017.6939C31.7925%2017.2072%2032.6772%2016.7205%2033.5597%2016.2317C33.6679%2016.1711%2033.7566%2016.1733%2033.869%2016.2274C34.213%2016.3917%2034.5634%2016.541%2034.9116%2016.6967C35.9261%2017.151%2036.9428%2017.6009%2037.9572%2018.0573C38.8895%2018.4769%2039.8175%2018.9052%2040.7476%2019.327C41.1629%2019.5152%2041.5804%2019.6948%2041.9978%2019.8786C42.0714%2019.9132%2042.1406%2019.9457%2042.2553%2019.9976Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M36.7394%2025.154C36.8952%2025.1172%2037.0531%2025.087%2037.2088%2025.0459C37.3754%2025.0026%2037.5419%2024.9528%2037.7085%2024.9009C37.7539%2024.888%2037.7972%2024.8642%2037.8361%2024.8382C37.9529%2024.756%2037.9594%2024.6608%2037.8318%2024.5959C37.702%2024.531%2037.5571%2024.4748%2037.4143%2024.4575C36.8714%2024.3948%2036.3263%2024.3104%2035.7812%2024.3083C34.8186%2024.3039%2033.8561%2024.3277%2032.8957%2024.3883C32.0997%2024.438%2031.3015%2024.5289%2030.5358%2024.7798C30.4514%2024.8079%2030.367%2024.8469%2030.2913%2024.8944C30.1897%2024.9593%2030.1853%2025.0718%2030.2935%2025.1107C30.5293%2025.1951%2030.7737%2025.2751%2031.0203%2025.3098C32.1343%2025.4633%2033.2547%2025.4439%2034.3752%2025.3898C34.4682%2025.3855%2034.5634%2025.3833%2034.6932%2025.3768C34.5634%2025.5131%2034.5093%2025.6623%2034.2952%2025.6731C33.3196%2025.7164%2032.3463%2025.7142%2031.3772%2025.6083C30.9446%2025.5607%2030.5141%2025.459%2030.088%2025.3595C29.9279%2025.3227%2029.77%2025.2384%2029.6338%2025.141C29.5602%2025.0891%2029.5061%2024.968%2029.4997%2024.875C29.4694%2024.4445%2029.4564%2024.0141%2029.4391%2023.5836C29.4218%2023.1424%2029.4088%2022.7011%2029.385%2022.2598C29.3785%2022.1387%2029.4023%2022.0565%2029.5126%2021.9808C30.0685%2021.6001%2030.6915%2021.3773%2031.3339%2021.2043C32.2749%2020.9533%2033.2353%2020.8473%2034.2065%2020.8257C34.9982%2020.8084%2035.7855%2020.8668%2036.5664%2021.0052C37.1266%2021.1047%2037.6631%2021.2864%2038.18%2021.5222C38.2666%2021.5612%2038.3509%2021.6109%2038.4245%2021.6693C38.4634%2021.7018%2038.5002%2021.7645%2038.5023%2021.8142C38.5391%2022.7119%2038.5672%2023.6117%2038.6083%2024.5094C38.6148%2024.6738%2038.537%2024.7733%2038.4223%2024.849C38.0351%2025.1064%2037.5895%2025.2232%2037.1396%2025.3054C37.0142%2025.3292%2036.8692%2025.2449%2036.733%2025.2103C36.7394%2025.1908%2036.7394%2025.1713%2036.7394%2025.154Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M24.404%2019.2708C24.4754%2019.0091%2024.5381%2018.782%2024.5987%2018.5548C24.6203%2018.4791%2024.6289%2018.3969%2024.6636%2018.3277C24.7522%2018.159%2024.6549%2018.0811%2024.5273%2018.0033C24.285%2017.854%2024.0471%2017.6983%2023.807%2017.5447C23.7832%2017.5295%2023.7659%2017.5057%2023.7205%2017.4582C24.0687%2017.443%2024.3824%2017.4279%2024.6982%2017.4149C24.9339%2017.4041%2024.9296%2017.4041%2024.988%2017.1705C25.0616%2016.8806%2025.1438%2016.5951%2025.2606%2016.3096C25.3579%2016.5735%2025.4617%2016.8374%2025.5526%2017.1034C25.6413%2017.3695%2025.6369%2017.3738%2025.9138%2017.3608C26.2145%2017.3478%2026.5151%2017.3349%2026.8353%2017.35C26.6882%2017.469%2026.5411%2017.5901%2026.3918%2017.7091C26.2642%2017.8107%2026.1366%2017.9146%2026.0068%2018.0119C25.9419%2018.0617%2025.9333%2018.1071%2025.9657%2018.1871C26.0782%2018.4661%2026.1777%2018.7495%2026.2815%2019.0307C26.2967%2019.0696%2026.3053%2019.1086%2026.3291%2019.1973C26.169%2019.0934%2026.0436%2019.0134%2025.9203%2018.9312C25.7624%2018.8274%2025.6023%2018.7257%2025.4466%2018.6154C25.3687%2018.5592%2025.3125%2018.5635%2025.2389%2018.6241C25.0075%2018.8144%2024.7695%2019.0004%2024.5338%2019.1864C24.5057%2019.2102%2024.4689%2019.2297%2024.404%2019.2708Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M41.8447%2018.0444C42.007%2017.8433%2042.1497%2017.6702%2042.2903%2017.495C42.3379%2017.4366%2042.3768%2017.3674%2042.4352%2017.322C42.578%2017.2073%2042.5218%2017.1035%2042.4417%2016.9867C42.2882%2016.7639%2042.1389%2016.5368%2041.9896%2016.3097C41.9745%2016.288%2041.9702%2016.2599%2041.9485%2016.2015C42.2579%2016.3226%2042.5369%2016.4308%2042.8159%2016.5389C43.0258%2016.6211%2043.0214%2016.6168%2043.162%2016.4373C43.3372%2016.2123%2043.5189%2015.996%2043.7309%2015.7905C43.7136%2016.0587%2043.705%2016.3291%2043.679%2016.5952C43.6552%2016.8612%2043.6487%2016.8634%2043.8953%2016.9586C44.1635%2017.0624%2044.4296%2017.1662%2044.7043%2017.3025C44.5291%2017.3501%2044.3539%2017.3977%2044.1808%2017.4453C44.0294%2017.4842%2043.8802%2017.5253%2043.7288%2017.5621C43.653%2017.5794%2043.6293%2017.6183%2043.6249%2017.6984C43.6163%2017.9839%2043.5946%2018.2694%2043.5773%2018.5571C43.5752%2018.596%2043.5665%2018.635%2043.5557%2018.7193C43.4562%2018.5657%2043.3783%2018.4489%2043.3005%2018.33C43.2031%2018.1786%2043.1015%2018.0271%2043.0106%2017.8714C42.963%2017.7935%2042.9133%2017.7741%2042.8246%2017.7979C42.5499%2017.8757%2042.2709%2017.9449%2041.994%2018.0163C41.9572%2018.0315%2041.9183%2018.0336%2041.8447%2018.0444Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M35.0588%2025.8226C35.1475%2025.7144%2035.2232%2025.6192%2035.3011%2025.5262C35.3271%2025.4938%2035.3487%2025.457%2035.379%2025.4332C35.4568%2025.3705%2035.4266%2025.3143%2035.3833%2025.2515C35.2989%2025.1304%2035.2189%2025.0071%2035.1389%2024.886C35.1302%2024.873%2035.1281%2024.8579%2035.1172%2024.8276C35.2838%2024.8925%2035.4352%2024.9509%2035.5866%2025.0114C35.7013%2025.0569%2035.6991%2025.0547%2035.7748%2024.9574C35.87%2024.8362%2035.9673%2024.7173%2036.082%2024.6069C36.0733%2024.7519%2036.0668%2024.8989%2036.0538%2025.0439C36.0409%2025.1888%2036.0387%2025.1888%2036.1707%2025.2407C36.3156%2025.297%2036.4605%2025.3532%2036.6076%2025.4267C36.5124%2025.4527%2036.4172%2025.4787%2036.3242%2025.5046C36.242%2025.5262%2036.162%2025.5479%2036.0798%2025.5673C36.0387%2025.5782%2036.0257%2025.5976%2036.0236%2025.6409C36.0192%2025.7966%2036.0063%2025.9502%2035.9976%2026.1059C35.9954%2026.1276%2035.9911%2026.147%2035.9868%2026.1946C35.9327%2026.1124%2035.8895%2026.0475%2035.8484%2025.9848C35.7943%2025.9026%2035.7402%2025.8204%2035.6904%2025.7361C35.6645%2025.6928%2035.6385%2025.6841%2035.591%2025.6971C35.4417%2025.7382%2035.2903%2025.7772%2035.141%2025.8161C35.1194%2025.8139%2035.0999%2025.8161%2035.0588%2025.8226Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M37.1399%2027.1207C37.2069%2027.0385%2037.2653%2026.9671%2037.3216%2026.8957C37.3411%2026.8719%2037.3584%2026.8438%2037.38%2026.8243C37.4384%2026.7768%2037.4168%2026.7357%2037.3822%2026.6881C37.3194%2026.5972%2037.2589%2026.5042%2037.1983%2026.4112C37.1918%2026.4025%2037.1896%2026.3896%2037.181%2026.3658C37.3086%2026.4155%2037.4211%2026.4588%2037.5357%2026.5042C37.6223%2026.5388%2037.6201%2026.5367%2037.6763%2026.4631C37.7477%2026.3723%2037.8234%2026.2814%2037.9099%2026.1992C37.9035%2026.3095%2037.8991%2026.4199%2037.8883%2026.528C37.8775%2026.6383%2037.8753%2026.6383%2037.977%2026.6773C38.0873%2026.7205%2038.1955%2026.7616%2038.3079%2026.8179C38.2366%2026.8373%2038.1652%2026.8568%2038.0938%2026.8763C38.0311%2026.8936%2037.9705%2026.9087%2037.9078%2026.9238C37.8753%2026.9303%2037.8667%2026.9455%2037.8645%2026.9801C37.8602%2027.0969%2037.8515%2027.2137%2037.845%2027.3305C37.845%2027.3456%2037.8407%2027.363%2037.8364%2027.3976C37.7953%2027.3348%2037.7629%2027.2872%2037.7326%2027.2375C37.6915%2027.1748%2037.6504%2027.1142%2037.6136%2027.0493C37.5941%2027.0169%2037.5747%2027.0104%2037.5379%2027.019C37.4254%2027.0515%2037.3108%2027.0796%2037.1983%2027.1077C37.1853%2027.1164%2037.1702%2027.1164%2037.1399%2027.1207Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M28.6714%2016.9845C28.7687%2016.8634%2028.8531%2016.7596%2028.9374%2016.6557C28.9656%2016.6211%2028.9894%2016.58%2029.024%2016.5519C29.1083%2016.4849%2029.0759%2016.4221%2029.0283%2016.3507C28.9353%2016.2166%2028.8466%2016.0825%2028.7579%2015.9462C28.7493%2015.9333%2028.7471%2015.916%2028.732%2015.8814C28.918%2015.9527%2029.0845%2016.0176%2029.2511%2016.0825C29.3765%2016.1323%2029.3744%2016.1301%2029.4587%2016.022C29.5626%2015.8878%2029.6729%2015.7581%2029.7983%2015.6348C29.7875%2015.7948%2029.7832%2015.9571%2029.7681%2016.1171C29.7529%2016.2772%2029.7508%2016.2772%2029.8978%2016.3334C30.0579%2016.3962%2030.218%2016.4589%2030.3824%2016.5389C30.2785%2016.567%2030.1726%2016.5952%2030.0687%2016.6233C29.9779%2016.6471%2029.8892%2016.6709%2029.7983%2016.6925C29.7529%2016.7033%2029.7378%2016.725%2029.7356%2016.7747C29.7291%2016.9456%2029.7161%2017.1165%2029.7075%2017.2873C29.7053%2017.3111%2029.701%2017.3328%2029.6945%2017.3847C29.634%2017.2938%2029.5885%2017.2225%2029.5431%2017.1511C29.4847%2017.0602%2029.4241%2016.9694%2029.3701%2016.8764C29.3419%2016.8288%2029.3117%2016.818%2029.2597%2016.8331C29.0953%2016.8785%2028.9288%2016.9218%2028.7622%2016.9651C28.7384%2016.9759%2028.7146%2016.978%2028.6714%2016.9845Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M21.9725%2021.6696C22.0244%2021.4814%2022.0677%2021.3192%2022.1131%2021.157C22.1282%2021.1029%2022.1347%2021.0423%2022.1607%2020.9947C22.2234%2020.8736%2022.1542%2020.8174%2022.0633%2020.7633C21.8903%2020.6573%2021.7194%2020.5448%2021.5464%2020.4345C21.5291%2020.4237%2021.5183%2020.4064%2021.4836%2020.3718C21.7324%2020.361%2021.9574%2020.3501%2022.1845%2020.3415C22.3532%2020.335%2022.3489%2020.3328%2022.3921%2020.1663C22.444%2019.9586%2022.5046%2019.7531%2022.5868%2019.5498C22.656%2019.7402%2022.7317%2019.9283%2022.7966%2020.1187C22.8615%2020.309%2022.8572%2020.3112%2023.0562%2020.3026C23.2725%2020.2917%2023.4866%2020.2831%2023.7181%2020.2939C23.6121%2020.3804%2023.5061%2020.4648%2023.4001%2020.5513C23.3093%2020.6248%2023.2163%2020.6984%2023.1232%2020.7676C23.0757%2020.8022%2023.0713%2020.8368%2023.093%2020.8931C23.173%2021.0921%2023.2444%2021.2954%2023.3201%2021.4987C23.3309%2021.5268%2023.3374%2021.555%2023.3547%2021.6177C23.2401%2021.542%2023.1514%2021.4857%2023.0627%2021.4273C22.948%2021.3516%2022.8334%2021.2803%2022.7231%2021.2002C22.6668%2021.1591%2022.6257%2021.1635%2022.5738%2021.2067C22.4073%2021.343%2022.2364%2021.4771%2022.0677%2021.609C22.046%2021.6263%2022.0201%2021.6393%2021.9725%2021.6696Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M42.623%2021.8165C42.7463%2021.6651%2042.8523%2021.5353%2042.9583%2021.4034C42.9951%2021.3601%2043.0232%2021.3082%2043.0665%2021.2736C43.1746%2021.1871%2043.1314%2021.1092%2043.0708%2021.0227C42.954%2020.8561%2042.8437%2020.6831%2042.7312%2020.5144C42.7204%2020.497%2042.7161%2020.4754%2042.7009%2020.4322C42.9345%2020.523%2043.1443%2020.6052%2043.3542%2020.6874C43.5121%2020.7501%2043.5099%2020.7458%2043.6137%2020.6117C43.7457%2020.443%2043.882%2020.2786%2044.042%2020.125C44.029%2020.3262%2044.0226%2020.5295%2044.0031%2020.7307C43.9858%2020.9318%2043.9815%2020.9318%2044.1653%2021.0032C44.3665%2021.0811%2044.5676%2021.1589%2044.7731%2021.2628C44.6412%2021.2974%2044.5092%2021.3342%2044.3795%2021.3688C44.267%2021.399%2044.1523%2021.4293%2044.0399%2021.4553C43.9815%2021.4683%2043.9641%2021.4964%2043.962%2021.5591C43.9555%2021.7754%2043.9382%2021.9896%2043.9252%2022.2037C43.9231%2022.234%2043.9166%2022.2621%2043.9079%2022.327C43.8322%2022.2124%2043.7738%2022.1237%2043.7176%2022.035C43.644%2021.9203%2043.5683%2021.8079%2043.4991%2021.6911C43.4645%2021.6327%2043.4255%2021.6175%2043.3607%2021.637C43.153%2021.6954%2042.9432%2021.7473%2042.7355%2021.8014C42.7074%2021.8057%2042.6771%2021.8079%2042.623%2021.8165Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M28.6065%2028.0267C28.6065%2028.0267%2026.6446%2027.7411%2025.6107%2028.9892L20.8303%2035.7661C20.8303%2035.7661%2027.7154%2034.9096%2033.03%2038.4051C33.03%2038.4051%2031.1027%2034.8728%2024.2912%2034.0184L28.6065%2028.0267Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M23.5646%2035.2793L23.5191%2035.342L22.3511%2036.9449L27.298%2037.04L23.4218%2036.4928L24.1832%2035.3269L23.5646%2035.2793Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M29.3682%2028.1216L25.8013%2033.354C25.8013%2033.354%2030.7244%2034.4248%2033.0302%2037.1113L33.1492%2030.1678C33.1492%2030.1657%2032.0309%2028.5261%2029.3682%2028.1216Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M38.2626%2028.0267C38.2626%2028.0267%2040.2245%2027.7411%2041.2584%2028.9892L46.0388%2035.7661C46.0388%2035.7661%2039.1538%2034.9096%2033.8391%2038.4051C33.8391%2038.4051%2035.7664%2034.8728%2042.5779%2034.0184L38.2626%2028.0267Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M43.3045%2035.2793L43.3477%2035.342L44.5158%2036.9449L39.5688%2037.04L43.4451%2036.4928L42.6858%2035.3269L43.3045%2035.2793Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M37.501%2028.1216L41.0679%2033.354C41.0679%2033.354%2036.1448%2034.4248%2033.8389%2037.1113L33.72%2030.1678C33.72%2030.1657%2034.8361%2028.5261%2037.501%2028.1216Z%22%20fill%3D%22%23E0AA4B%22%2F%3E%3Cpath%20d%3D%22M27.0078%2039.3896H28.0872V39.5086H27.8298C27.7887%2039.5086%2027.7584%2039.5194%2027.7389%2039.5411C27.7195%2039.5627%2027.7108%2039.5973%2027.7108%2039.6427V41.4792C27.7108%2041.5224%2027.7238%2041.5549%2027.7476%2041.5722C27.7714%2041.5917%2027.8211%2041.6003%2027.8968%2041.6003H28.2235C28.3965%2041.6003%2028.5393%2041.5419%2028.6496%2041.4273C28.7599%2041.3105%2028.8399%2041.1093%2028.8918%2040.8238H29.0022L28.9481%2041.7193L27.0078%2041.7171V41.5981H27.1982C27.2631%2041.5981%2027.3085%2041.5852%2027.3344%2041.5614C27.3604%2041.5376%2027.3734%2041.4965%2027.3734%2041.4424V39.6233C27.3734%2039.5843%2027.3626%2039.554%2027.3409%2039.5346C27.3193%2039.5151%2027.2868%2039.5043%2027.2436%2039.5043H27.0078V39.3896Z%22%20fill%3D%22%23002248%22%2F%3E%3Cpath%20d%3D%22M29.7578%2039.3896H30.8307V39.5086H30.6468C30.5646%2039.5086%2030.5127%2039.5194%2030.4911%2039.5389C30.4694%2039.5584%2030.4586%2039.6016%2030.4586%2039.6687V41.4316C30.4586%2041.503%2030.4673%2041.5462%2030.4867%2041.5635C30.5127%2041.5873%2030.5581%2041.6003%2030.623%2041.6003H30.8285V41.7193H29.7556V41.6003H29.9589C30.0303%2041.6003%2030.0757%2041.5895%2030.0974%2041.5679C30.119%2041.5462%2030.1298%2041.5008%2030.1298%2041.4316V39.6687C30.1298%2039.6016%2030.1212%2039.5605%2030.1017%2039.5454C30.0714%2039.5216%2030.0173%2039.5086%2029.9395%2039.5086H29.7578V39.3896Z%22%20fill%3D%22%23002248%22%2F%3E%3Cpath%20d%3D%22M33.0213%2039.5693L33.164%2039.366H33.2787L33.2873%2040.2139H33.1835C33.1186%2039.9544%2033.0234%2039.764%2032.8958%2039.6429C32.7682%2039.5239%2032.6211%2039.4633%2032.4567%2039.4633C32.3183%2039.4633%2032.2058%2039.5044%2032.1171%2039.5866C32.0284%2039.6688%2031.9852%2039.7705%2031.9852%2039.8916C31.9852%2039.9652%2032.0025%2040.0322%2032.0349%2040.0885C32.0695%2040.1447%2032.1193%2040.1901%2032.1842%2040.2247C32.2512%2040.2594%2032.3767%2040.2983%2032.5605%2040.3372C32.8201%2040.3935%2033.0018%2040.4519%2033.1056%2040.5081C33.2094%2040.5665%2033.2873%2040.6379%2033.3392%2040.7266C33.3911%2040.8153%2033.4171%2040.9169%2033.4171%2041.0337C33.4171%2041.2436%2033.3457%2041.4166%2033.2051%2041.555C33.0645%2041.6935%2032.8807%2041.7627%2032.6579%2041.7627C32.4178%2041.7627%2032.208%2041.6848%2032.0306%2041.5291L31.8532%2041.7454H31.7407V40.8434H31.8532C31.8965%2041.0921%2031.996%2041.289%2032.1495%2041.4317C32.3031%2041.5745%2032.4762%2041.648%2032.6665%2041.648C32.8223%2041.648%2032.9477%2041.6026%2033.0472%2041.5096C33.1446%2041.4188%2033.1943%2041.3063%2033.1943%2041.1743C33.1943%2041.1008%2033.177%2041.0337%2033.1402%2040.9775C33.1035%2040.9213%2033.0451%2040.8737%2032.965%2040.8347C32.885%2040.7958%2032.7292%2040.7504%2032.4935%2040.6941C32.2361%2040.6336%2032.0609%2040.5643%2031.9678%2040.4886C31.8359%2040.3805%2031.771%2040.2291%2031.771%2040.0344C31.771%2039.8289%2031.8359%2039.6623%2031.9678%2039.5326C32.0976%2039.4028%2032.2664%2039.3379%2032.4697%2039.3379C32.567%2039.3379%2032.66%2039.3552%2032.7487%2039.3898C32.8352%2039.4309%2032.9261%2039.4871%2033.0213%2039.5693Z%22%20fill%3D%22%23002248%22%2F%3E%3Cpath%20d%3D%22M34.2239%2039.3916H35.4265C35.6602%2039.3916%2035.8397%2039.4457%2035.9695%2039.5517C36.0971%2039.6577%2036.162%2039.7961%2036.162%2039.9691C36.162%2040.073%2036.136%2040.1638%2036.0863%2040.2439C36.0344%2040.3239%2035.9608%2040.3888%2035.8656%2040.4364C35.7705%2040.484%2035.6191%2040.5186%2035.4136%2040.5402C35.5628%2040.5813%2035.6666%2040.6224%2035.7229%2040.6613C35.7791%2040.7003%2035.8245%2040.7522%2035.8592%2040.8149C35.8938%2040.8776%2035.9327%2041.0052%2035.976%2041.1978C36.0084%2041.3362%2036.0409%2041.4292%2036.0776%2041.479C36.1057%2041.5179%2036.1339%2041.5374%2036.1663%2041.5374C36.1988%2041.5374%2036.229%2041.5136%2036.2572%2041.466C36.2853%2041.4184%2036.3026%2041.334%2036.3091%2041.2129H36.4151C36.3956%2041.5698%2036.2636%2041.7472%2036.0192%2041.7472C35.9435%2041.7472%2035.8765%2041.7277%2035.8202%2041.6888C35.764%2041.6498%2035.7229%2041.5936%2035.6926%2041.5179C35.671%2041.4617%2035.645%2041.3124%2035.6191%2041.0723C35.6039%2040.9317%2035.578%2040.8344%2035.5455%2040.7738C35.5109%2040.7154%2035.459%2040.6678%2035.3854%2040.631C35.3141%2040.5943%2035.2275%2040.577%2035.1259%2040.577H34.9355V41.4919C34.9355%2041.5309%2034.9463%2041.559%2034.9658%2041.5741C34.9918%2041.5936%2035.0307%2041.6044%2035.0848%2041.6044H35.3076V41.7234H34.226V41.6044H34.4553C34.5051%2041.6044%2034.5418%2041.5936%2034.5656%2041.5741C34.5894%2041.5547%2034.6002%2041.5265%2034.6002%2041.4919V39.6317C34.6002%2039.5928%2034.5873%2039.5625%2034.5635%2039.5409C34.5397%2039.5214%2034.5029%2039.5106%2034.4532%2039.5106H34.2239V39.3916ZM34.9334%2040.4623H35.2081C35.3919%2040.4623%2035.5369%2040.4277%2035.6428%2040.3585C35.7467%2040.2893%2035.7986%2040.166%2035.8008%2039.9864C35.8008%2039.8632%2035.7813%2039.768%2035.7423%2039.6966C35.7034%2039.6252%2035.6515%2039.5776%2035.5866%2039.5495C35.5217%2039.5235%2035.3963%2039.5106%2035.2081%2039.5106C35.0848%2039.5106%2035.0069%2039.5192%2034.9788%2039.5365C34.9485%2039.5538%2034.9355%2039.5841%2034.9355%2039.6252L34.9334%2040.4623Z%22%20fill%3D%22%23002248%22%2F%3E%3Cpath%20d%3D%22M38.9157%2039.5757L39.0238%2039.3507H39.1233L39.1644%2040.2873H39.0585C38.9892%2040.0234%2038.9027%2039.8288%2038.7967%2039.7055C38.6669%2039.5497%2038.5112%2039.4697%2038.3317%2039.4697C38.137%2039.4697%2037.9769%2039.5562%2037.8536%2039.7314C37.7303%2039.9066%2037.6698%2040.2008%2037.6698%2040.6161C37.6698%2040.9665%2037.739%2041.2326%2037.8796%2041.4165C37.9986%2041.5722%2038.1673%2041.6501%2038.3836%2041.6501C38.5718%2041.6501%2038.7318%2041.5895%2038.8595%2041.4684C38.9871%2041.3472%2039.0714%2041.1655%2039.1104%2040.919H39.2229C39.1904%2041.1958%2039.0952%2041.41%2038.9373%2041.5571C38.7794%2041.7063%2038.5804%2041.7799%2038.3425%2041.7799C38.1478%2041.7799%2037.9704%2041.7301%2037.8082%2041.6328C37.646%2041.5354%2037.5162%2041.3948%2037.4188%2041.211C37.3215%2041.0271%2037.2739%2040.8281%2037.2739%2040.6096C37.2739%2040.3782%2037.3237%2040.1597%2037.4253%2039.9564C37.5248%2039.7531%2037.6546%2039.5995%2037.8104%2039.4978C37.9661%2039.3962%2038.1348%2039.3442%2038.3165%2039.3442C38.4182%2039.3442%2038.5155%2039.3615%2038.6085%2039.3962C38.7015%2039.4329%2038.8032%2039.4935%2038.9157%2039.5757Z%22%20fill%3D%22%23002248%22%2F%3E%3C%2Fsvg%3E") !important;
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: 0 !important;
    filter:
      drop-shadow(0 4px 14px rgba(0,0,0,.40))
      drop-shadow(0 0 22px rgba(224,170,75,.18)) !important;
    animation: av-rise .5s var(--av-ease) both;
  }
  /* Kill any leftover LI-monogram caption */
  html.auth-v3 .logo-login::before,
  html.auth-v3 .logo-login::after { display: none !important; }

  /* Hero content (eyebrow + title + sub) */
  html.auth-v3 .av-hero {
    max-width: 92%;
    text-align: center;
    margin: 0 auto;
    padding-top: 60px;       /* leave room under the logo */
    transform: none !important; /* disable cursor parallax math on touch */
  }
  html.auth-v3 .av-hero-eyebrow {
    justify-content: center;
    font-size: 9.5px;
    letter-spacing: .22em;
    margin-bottom: 12px;
  }
  html.auth-v3 .av-hero-title {
    font-size: 36px;
    line-height: 1.04;
    letter-spacing: -.028em;
    margin-bottom: 14px;
  }
  html.auth-v3 .av-hero-title em { font-size: 1.06em; }
  html.auth-v3 .av-hero-sub {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 90%;
    color: rgba(255,255,255,.74);
  }
  /* Hide tagline + stats on mobile — sheet needs the room, content speaks for itself */
  html.auth-v3 .av-hero-tag,
  html.auth-v3 .av-hero-stats { display: none !important; }

  /* ---------- FORM SHEET ---------- */
  html.auth-v3 form#auth-login-form,
  html.auth-v3 form#auth-forgot-password,
  html.auth-v3 form.auth-login-form,
  html.auth-v3 form.auth-forgot-password-form {
    padding: 22px 22px 32px !important;
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px)) !important;
    border-radius: 28px 28px 0 0 !important;
    background:
      linear-gradient(180deg, #FFFFFF 0%, #FAFBFD 100%) !important;
    background-image: linear-gradient(180deg, #FFFFFF 0%, #FAFBFD 100%) !important;
    box-shadow:
      0 -1px 0 rgba(255,255,255,.6) inset,
      0 -2px 14px rgba(0,0,0,.10),
      0 -10px 40px rgba(0,0,0,.20);
    min-height: auto !important;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    position: relative;
    margin: 0 !important;
  }
  /* iOS-style sheet handle */
  html.auth-v3 form#auth-login-form::before,
  html.auth-v3 form#auth-forgot-password::before {
    content: '' !important;
    position: absolute !important;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 38px; height: 4px;
    border-radius: 999px;
    background: rgba(0,34,72,.18);
    pointer-events: none;
    height: 4px !important;
    background-image: none !important;
    background-color: rgba(0,34,72,.18) !important;
  }

  html.auth-v3 .loginRight {
    max-width: 100%;
    width: 100%;
    padding-top: 18px;
    animation: av-sheet-rise .5s var(--av-ease) both;
  }
  @keyframes av-sheet-rise {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: none; }
  }

  /* Eyebrow + title scaled for mobile */
  html.auth-v3 .av-form-eyebrow {
    font-size: 10px;
    letter-spacing: .22em;
    margin-bottom: 10px;
  }
  html.auth-v3 .av-form-title {
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -.022em;
    margin-bottom: 6px;
  }
  html.auth-v3 .av-form-title em { font-size: 1.04em; }
  html.auth-v3 .av-form-sub {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  /* Inputs: native iOS field feel */
  html.auth-v3 .loginRight input.form-control {
    height: 54px !important;
    font-size: 16px !important;          /* prevents iOS auto-zoom */
    border-radius: 14px !important;
    background: var(--av-ink-50) !important;
    border-color: transparent !important;
    padding: 0 18px !important;
  }
  html.auth-v3 .loginRight input.form-control:focus {
    background: #fff !important;
    border-color: var(--av-gold) !important;
    box-shadow: 0 0 0 4px rgba(224,170,75,.14) !important;
  }
  html.auth-v3 .loginRight input[type="email"] { padding-left: 46px !important; }
  html.auth-v3 .loginRight input[type="password"] { padding-left: 46px !important; padding-right: 50px !important; }

  /* Forgot link: inline meta */
  html.auth-v3 .loginRight .text-end {
    margin: 4px 0 18px !important;
  }
  html.auth-v3 .loginRight .text-end a {
    font-size: 13px;
  }

  /* Sign-in button: tactile, big, with active scale */
  html.auth-v3 .login-btn {
    height: 54px !important;
    font-size: 16px !important;
    border-radius: 14px !important;
    animation: av-btn-glow 4s ease-in-out infinite;
  }
  html.auth-v3 .login-btn:active {
    transform: scale(0.985);
    box-shadow:
      0 2px 8px rgba(224,170,75,.30),
      inset 0 1px 0 rgba(255,255,255,.45);
  }

  /* Trust strip: compact, single line, tap-safe spacing */
  html.auth-v3 .av-trust-strip {
    margin-top: 16px;
    padding-top: 16px;
    gap: 16px;
    font-size: 9.5px;
    letter-spacing: .14em;
  }
  html.auth-v3 .av-trust-item svg { width: 11px; height: 11px; }

  /* Resend / Back-to-login links on OTP */
  html.auth-v3 .loginRight .sign-txt,
  html.auth-v3 .loginRight p.text-center {
    font-size: 13px;
    margin-top: 14px !important;
  }
  html.auth-v3 .loginRight .sign-txt a,
  html.auth-v3 .loginRight p.text-center a {
    color: var(--av-gold-deep);
  }

  /* OTP boxes: roomy on mobile */
  html.auth-v3 .av-otp-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px !important;
    margin: 8px 0 22px;
  }
  html.auth-v3 .av-otp-box {
    height: 64px !important;
    font-size: 26px !important;
    border-radius: 14px !important;
    background: var(--av-ink-50) !important;
  }
  html.auth-v3 .av-otp-box:focus {
    background: #fff !important;
    border-color: var(--av-gold) !important;
    transform: translateY(-2px);
  }

  /* Hide alerts default chrome — keep our restyled ones */
  html.auth-v3 .alert {
    margin: 0 0 14px !important;
    font-size: 12.5px !important;
  }

  /* Native press feedback on every tappable surface */
  html.auth-v3 button, html.auth-v3 a, html.auth-v3 [role="button"] {
    -webkit-tap-highlight-color: transparent;
  }
}

/* Very narrow phones (≤ 380px) — final tightening */
@media (max-width: 380px) {
  html.auth-v3 .av-hero-title { font-size: 30px; }
  html.auth-v3 .av-form-title { font-size: 24px; }
  html.auth-v3 .logo-login { width: 160px !important; height: 48px !important; }
  html.auth-v3 .av-otp-box { height: 58px; font-size: 22px !important; }
  html.auth-v3 .av-trust-strip { gap: 10px; font-size: 9px; }
}
