/* ============================================================

   Sanli - BadouCMS Template

   Main Stylesheet (style.css)

   ============================================================ */



/* ============================================================

   CSS VARIABLES

   ============================================================ */

:root {

  /* Brand Colors */

  --color-primary: #9a5d09;        /* Caramel gold - main CTA */

  --color-primary-hover: #572b10;  /* Dark brown hover */

  --color-primary-active: #331605; /* Pressed/active state */

  --color-text: #642f0d;           /* Body text */

  --color-text-light: #9a5d09;     /* Lighter accent */

  --color-bg: #fef3e2;             /* Cream background */

  --color-bg-soft: #fdecd2;        /* Soft cream (footer) */

  --color-bg-light: #fefaf1;       /* Light hover */

  --color-white: #ffffff;

  --color-border: rgba(100, 47, 13, 0.15);

  --color-accent: #b3121d;         /* Emphasis red (hover/focus shadows) */



  /* Accent Gradient Colors (Product category backgrounds) */

  --bg-sahnebonbons: #a33536;

  --bg-karamellcreme: #a15927;

  --bg-soft-caramel: #a33473;

  --bg-chewy-caramels: #a33536;

  --bg-caramel-popcorn: #bb4a22;

  --bg-zuckerfrei: #a33536;



  /* Typography */

  --font-body: "Lato", Arial, sans-serif;

  --font-body-medium: "Lato Medium", Arial, sans-serif;

  --font-body-bold: "Lato Bold", Arial, sans-serif;

  --font-heading: "Lobster", "Lobster Regular", cursive;



  /* Layout */

  --container-max: 1200px;

  --header-height: 88px;

  --header-height-lg: 100px;

  --border-radius: 4px;

  --border-radius-lg: 8px;



  /* Transitions */

  --transition-base: all 0.3s ease;

}



/* ============================================================

   RESET & BASE

   ============================================================ */

* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



html {

  scroll-behavior: smooth;

  -webkit-text-size-adjust: 100%;

  /* 防止移动端离屏侧边抽屉(.mobile-nav-panel, position:fixed)撑出横向滚动条 */

  overflow-x: hidden;

}



body {

  background-color: var(--color-bg);

  color: var(--color-text);

  font-family: var(--font-body);

  font-size: 15px;

  line-height: 1.6;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

  margin: 0;

  padding-top: var(--header-height);

  transition: padding-top 0.4s ease-in-out;

  width: 100%;

}



@media (max-width: 1024px) {

  :root {

    --header-height: 72px;

  }

}



@media (min-width: 1440px) {

  body {

    font-size: 18px;

    line-height: 24px;

    padding-top: var(--header-height-lg);

  }

}



a {

  color: var(--color-primary);

  text-decoration: none;

  transition: color 0.2s ease;

  outline: none;

}



a:hover {

  color: var(--color-primary-hover);

}



a:focus {

  outline: 0;

}



img {

  max-width: 100%;

  height: auto;

  display: block;

  border: 0;

}



ul, ol {

  list-style: none;

}



button {

  cursor: pointer;

  border: none;

  background: none;

  font-family: inherit;

  font-size: inherit;

}



/* ============================================================

   LAYOUT HELPERS

   ============================================================ */

.container {

  width: 100%;

  max-width: 1200px;

  margin-left: auto;

  margin-right: auto;

  padding-left: 20px;

  padding-right: 20px;

}



.text-center {

  text-align: center;

}



/* ============================================================

   BUTTONS

   ============================================================ */

.btn {

  display: inline-block;

  background-color: var(--color-primary);

  color: #FFFFFF;

  padding: 16px 36px;

  border-radius: 4px;

  font-family: "Lato", Arial, sans-serif;

  font-weight: 700;

  font-size: 16px;

  text-transform: uppercase;

  letter-spacing: 1.5px;

  text-align: center;

  border: 2px solid var(--color-primary);

  cursor: pointer;

  transition: all 0.2s ease;

  text-decoration: none;

  line-height: 1.2;

}



.btn:hover {

  background-color: var(--color-primary-hover);

  transform: translateY(-2px);

  box-shadow: 0 4px 16px rgba(154, 93, 9, 0.3);

  color: #FFFFFF;

}



.btn:active {

  transform: translateY(0);

  box-shadow: none;

}



.btn-primary {

  background-color: var(--color-primary);

  color: #FFFFFF;

}



/* ============================================================

   HEADER

   ============================================================ */

.site-header {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 1100;

  background-color: rgba(255, 255, 255, 0.92);

  -webkit-backdrop-filter: saturate(1.4) blur(10px);

  backdrop-filter: saturate(1.4) blur(10px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.06);

  transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;

  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);

}



.site-header--solid {

  background-color: #ffffff;

  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);

  border-bottom: none;

}



body.page-inner {

  padding-top: 88px;

}



.site-header.scrolled {

  background-color: #ffffff;

  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);

  border-bottom: none;

}



.header-inner {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;

  max-width: 1200px;

  margin: 0 auto;

  padding: 16px 20px;

}



.site-logo {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -ms-flex-negative: 0;

  flex-shrink: 0;

  z-index: 1101;

}



.site-logo img {

  height: 52px;

  width: auto;

}



.site-logo a {

  display: block;

}



/* --- Navigation (Desktop) --- */

.main-nav {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

}



.nav-list {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  list-style: none;

}



.nav-list > li {

  position: relative;

  margin: 0 8px;

}



.nav-list > li > a {

  display: block;

  position: relative;

  padding: 22px 6px;

  color: #4d4d4d;

  font-family: "Microsoft YaHei", var(--font-body);

  font-size: 16px;

  font-weight: 400;

  letter-spacing: 0.5px;

  transition: color 0.2s ease;

  border-radius: 0;

}



.nav-list > li > a::after {

  content: "";

  position: absolute;

  left: 50%;

  bottom: 12px;

  width: 0;

  height: 3px;

  background-color: #f13a3a;

  border-radius: 2px;

  transform: translateX(-50%);

  transition: width 0.25s ease;

}



.nav-list > li > a:hover,

.nav-list > li.active > a {

  color: #f13a3a;

}



.nav-list > li > a:hover::after,

.nav-list > li.active > a::after {

  width: 22px;

}



/* Dropdown Submenu */

.submenu {

  position: absolute;

  top: 100%;

  left: 0;

  min-width: 240px;

  background-color: #FFFFFF;

  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);

  border-radius: 0 0 8px 8px;

  border-top: 2px solid #f13a3a;

  opacity: 0;

  visibility: hidden;

  transform: translateY(8px);

  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;

  z-index: 100;

  padding: 6px 0;

  list-style: none;

}



.nav-list > li:hover .submenu {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);

}



.submenu li {

  display: block;

  float: none;

}



.submenu li a {

  display: block;

  padding: 12px 24px;

  color: #4d4d4d;

  font-size: 15px;

  font-weight: 400;

  transition: background-color 0.2s ease, color 0.2s ease;

}



.submenu li a:hover {

  background-color: rgba(241, 58, 58, 0.06);

  color: #f13a3a;

}



/* Search icon in header */

.header-search {

  margin-left: 12px;

}



.header-search a {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  width: 40px;

  height: 40px;

  color: #4d4d4d;

  font-size: 16px;

  border-radius: 50%;

  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;

}



.header-search a:hover {

  color: #f13a3a;

  background-color: rgba(241, 58, 58, 0.08);

  transform: translateY(-1px);

}



/* --- Language Switcher --- */

.header-lang {

  margin-left: 12px;

  position: relative;

}



.header-lang .lang-current {

  display: flex;

  align-items: center;

  gap: 6px;

  padding: 8px 12px;

  font-size: 14px;

  color: #4d4d4d;

  cursor: pointer;

  border-radius: 20px;

  transition: color 0.2s ease, background-color 0.2s ease;

  white-space: nowrap;

}



.header-lang .lang-current:hover {

  color: #f13a3a;

  background-color: rgba(241, 58, 58, 0.08);

}



.header-lang .lang-current i.fa-globe {

  font-size: 16px;

  color: #f13a3a;

}



.header-lang .lang-current i.fa-caret-down {

  font-size: 12px;

  color: #f13a3a;

  transition: transform 0.3s ease;

}



.header-lang:hover .lang-current i.fa-caret-down {

  transform: rotate(180deg);

}



.header-lang .lang-dropdown {

  position: absolute;

  top: 100%;

  right: 0;

  min-width: 120px;

  background: #fff;

  border-radius: 8px;

  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);

  list-style: none;

  margin: 4px 0 0;

  padding: 4px 0;

  opacity: 0;

  visibility: hidden;

  transform: translateY(-8px);

  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;

  z-index: 1102;

}



.header-lang:hover .lang-dropdown,

.header-lang .lang-dropdown.is-open {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);

}



.header-lang .lang-dropdown li a {

  display: block;

  padding: 8px 16px;

  font-size: 14px;

  color: #4d4d4d;

  text-decoration: none;

  transition: background-color 0.2s ease, color 0.2s ease;

}



.header-lang .lang-dropdown li a:hover {

  background-color: rgba(241, 58, 58, 0.06);

  color: #f13a3a;

}



.header-lang .lang-dropdown li.active a {

  color: #f13a3a;

  font-weight: 600;

}



/* --- Hamburger (Mobile) --- */

.hamburger {

  display: none;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  width: 32px;

  height: 32px;

  cursor: pointer;

  z-index: 1101;

  gap: 5px;

}



.hamburger span {

  display: block;

  width: 24px;

  height: 2.5px;

  background-color: #4d4d4d;

  border-radius: 2px;

  transition: transform 0.35s ease, opacity 0.2s ease, background-color 0.2s ease;

  -webkit-transform-origin: center;

  transform-origin: center;

}



.hamburger:hover span {

  background-color: #f13a3a;

}



.hamburger.active span:nth-child(1) {

  -webkit-transform: translateY(7.5px) rotate(45deg);

  transform: translateY(7.5px) rotate(45deg);

}



.hamburger.active span:nth-child(2) {

  opacity: 0;

}



.hamburger.active span:nth-child(3) {

  -webkit-transform: translateY(-7.5px) rotate(-45deg);

  transform: translateY(-7.5px) rotate(-45deg);

}



/* ============================================================

   MOBILE NAV PANEL

   ============================================================ */

.mobile-nav-panel {

  position: fixed;

  top: 0;

  right: -320px;

  width: 320px;

  height: 100vh;

  background-color: #ffffff;

  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);

  z-index: 1050;

  overflow-y: auto;

  transition: right 0.35s ease;

  padding: 100px 24px 30px;

}



.mobile-nav-panel.is-open {

  right: 0;

}



.mobile-nav-overlay {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-color: rgba(0, 0, 0, 0.4);

  z-index: 1040;

  opacity: 0;

  visibility: hidden;

  transition: opacity 0.35s ease, visibility 0.35s ease;

}



.mobile-nav-overlay.is-visible {

  opacity: 1;

  visibility: visible;

}



.mobile-nav-list {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;

  gap: 4px;

  list-style: none;

}



.mobile-nav-list > li > a {

  display: block;

  padding: 14px 16px;

  color: #4d4d4d;

  font-size: 16px;

  font-weight: 400;

  letter-spacing: 0.5px;

  border-bottom: 1px solid rgba(0, 0, 0, 0.06);

  transition: color 0.2s ease, background-color 0.2s ease;

  text-decoration: none;

}



.mobile-nav-list > li.active > a,

.mobile-nav-list > li > a:hover {

  color: #f13a3a;

  background-color: rgba(241, 58, 58, 0.05);

}



/* Mobile brand center submenu */

.mobile-nav-sub {

  list-style: none;

  margin: 0;

  padding: 2px 0 8px 20px;

  background-color: rgba(0, 0, 0, 0.02);

}

.mobile-nav-sub li a {

  display: block;

  padding: 11px 16px;

  color: #666666;

  font-size: 14px;

  letter-spacing: 0.4px;

  border-bottom: 1px solid rgba(0, 0, 0, 0.05);

  text-decoration: none;

  transition: color 0.2s ease, background-color 0.2s ease;

}

.mobile-nav-sub li a:hover {

  color: #f13a3a;

  background-color: rgba(241, 58, 58, 0.05);

}



/* ============================================================

   SEARCH BOX (Overlay)

   ============================================================ */

.searchBox {

  display: none;

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-color: rgba(255, 255, 255, 0.98);

  z-index: 2000;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

}



.searchBox .search-pup {

  width: 100%;

  max-width: 600px;

  padding: 0 24px;

  position: relative;

}



.search-close {

  position: absolute;

  top: -50px;

  right: 24px;

  font-size: 28px;

  color: #4d4d4d;

  cursor: pointer;

  text-decoration: none;

  transition: color 0.2s ease;

}



.search-close:hover {

  color: #f13a3a;

}



.search-form {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  background-color: #FFFFFF;

  border-radius: 6px;

  border: 1px solid rgba(241, 58, 58, 0.25);

  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);

  overflow: hidden;

}



.search-input {

  -webkit-box-flex: 1;

  -ms-flex: 1;

  flex: 1;

  padding: 18px 24px;

  border: none;

  font-size: 16px;

  font-family: "Microsoft YaHei", "Lato", Arial, sans-serif;

  color: #4d4d4d;

  background: transparent;

  outline: none;

}



.search-form button {

  padding: 18px 28px;

  background-color: #f13a3a;

  color: #FFFFFF;

  font-size: 18px;

  cursor: pointer;

  border: none;

  transition: background-color 0.2s ease;

}



.search-form button:hover {

  background-color: #d92c2c;

}



/* ============================================================

   HERO - 垂直堆叠全宽媒体卡片

   ============================================================ */

.hero-stack {

  position: relative;

  width: 100%;

}



.hero-card {

  position: relative;

  width: 100%;

  height: 76vh;

  min-height: 480px;

  max-height: 760px;

  overflow: hidden;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: end;

  -ms-flex-align: end;

  align-items: flex-end;

  -webkit-box-pack: start;

  -ms-flex-pack: start;

  justify-content: flex-start;

}



/* 无缝垂直堆叠：卡片紧密相接，构成连续媒体墙 */

.hero-card + .hero-card {

  margin-top: 0;

}



.hero-card__media {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-size: cover;

  background-position: center center;

  background-repeat: no-repeat;

  /* 缓慢 ken-burns 呼吸缩放，让静态背景"活"起来 */

  -webkit-transform: scale(1.02);

  transform: scale(1.02);

  -webkit-transform-origin: 50% 40%;

  transform-origin: 50% 40%;

  -webkit-animation: heroKen 16s ease-in-out infinite alternate;

  animation: heroKen 16s ease-in-out infinite alternate;

  will-change: transform;

}



/* 各卡错峰，避免整齐划一的机械感 */

.hero-card:nth-child(2) .hero-card__media {

  -webkit-animation-delay: -5s;

  animation-delay: -5s;

  -webkit-transform-origin: 60% 50%;

  transform-origin: 60% 50%;

}

.hero-card:nth-child(3) .hero-card__media {

  -webkit-animation-delay: -10s;

  animation-delay: -10s;

  -webkit-transform-origin: 40% 60%;

  transform-origin: 40% 60%;

}



@-webkit-keyframes heroKen {

  from { -webkit-transform: scale(1.02); transform: scale(1.02); }

  to   { -webkit-transform: scale(1.14); transform: scale(1.14); }

}

@keyframes heroKen {

  from { transform: scale(1.02); }

  to   { transform: scale(1.14); }

}



/* 文案入场：首屏加载即上浮淡入 */

.hero-card__content > * {

  -webkit-animation: heroRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;

  animation: heroRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;

}

.hero-card__content > *:nth-child(1) { -webkit-animation-delay: 0.15s; animation-delay: 0.15s; }

.hero-card__content > *:nth-child(2) { -webkit-animation-delay: 0.30s; animation-delay: 0.30s; }

.hero-card__content > *:nth-child(3) { -webkit-animation-delay: 0.45s; animation-delay: 0.45s; }



@-webkit-keyframes heroRise {

  from { opacity: 0; -webkit-transform: translateY(28px); transform: translateY(28px); }

  to   { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }

}

@keyframes heroRise {

  from { opacity: 0; transform: translateY(28px); }

  to   { opacity: 1; transform: translateY(0); }

}



.hero-card__overlay {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(to top, rgba(51, 22, 5, 0.55) 0%, rgba(51, 22, 5, 0.08) 45%, rgba(51, 22, 5, 0.14) 100%);

  z-index: 1;

}



.hero-card__content {

  position: relative;

  z-index: 2;

  padding: 0 40px 56px;

  max-width: 700px;

}



.hero-card__title {

  font-family: "Lobster", cursive;

  font-weight: normal;

  font-size: 48px;

  line-height: 1.15;

  color: var(--color-white);

  margin: 0 0 14px;

  text-shadow: 0 2px 18px rgba(51, 22, 5, 0.5);

}



.hero-card__subline {

  font-family: "Lato", Arial, sans-serif;

  font-size: 17px;

  line-height: 1.6;

  color: rgba(255, 255, 255, 0.95);

  max-width: 560px;

  margin: 0 0 26px;

  text-shadow: 0 1px 8px rgba(51, 22, 5, 0.45);

}



.hero-card__btn {

  display: inline-block;

  background-color: var(--color-primary);

  color: var(--color-white);

  font-family: "Lato", Arial, sans-serif;

  font-weight: 700;

  font-size: 16px;

  text-transform: uppercase;

  letter-spacing: 0.08em;

  padding: 14px 24px;

  border-radius: 5px;

  text-decoration: none;

  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;

}



.hero-card__btn:hover {

  background-color: var(--color-primary-hover);

  color: var(--color-white);

  -webkit-transform: translateY(-2px);

  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(51, 22, 5, 0.35);

}



.hero-card__btn:active {

  background-color: var(--color-primary-active);

  -webkit-transform: translateY(0);

  transform: translateY(0);

}



@media (max-width: 768px) {

  .hero-card {

    height: 62vh;

    min-height: 400px;

  }

  .hero-card + .hero-card {

    margin-top: 12px;

  }

  .hero-card__content {

    padding: 0 24px 44px;

  }

  .hero-card__title {

    font-size: 34px;

  }

  .hero-card__subline {

    font-size: 15px;

  }

  .hero-stack__wave svg {

    height: 48px;

  }

}



/* Wave Bottom Decoration */

.hero-stack__wave {

  position: absolute;

  bottom: -1px;

  left: 0;

  width: 100%;

  z-index: 4;

  line-height: 0;

  pointer-events: none;

}



.hero-stack__wave svg {

  width: 100%;

  height: 80px;

  display: block;

}



/* ============================================================

   SECTION COMMON

   ============================================================ */

.section-header {

  margin-bottom: 50px;

}



.section-subline {

  font-size: 14px;

  color: var(--color-primary);

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 2px;

  margin-bottom: 10px;

}



.section-headline {

  font-family: "Lobster", cursive;

  font-size: 34px;

  color: var(--color-text);

  line-height: 1.2;

  font-weight: normal;

  max-width: 720px;

  margin: 0 auto;

}



/* ============================================================

   HOME VIDEO — 1:1 replica of reference m-video-carousel

   Full-width video + bottom-right play/pause toggle

   ============================================================ */

.home-video {

  position: relative;

  z-index: 9;

  max-width: 100vw;

}

.home-video__box {

  position: relative;

  width: 100%;

}

.home-video__player {

  display: block;

  width: 100%;

  object-fit: cover;

  object-position: center top;

  pointer-events: none;

  user-select: none;

}

/* Responsive aspect-ratio — matching reference breakpoints */

@media (max-width: 767.9px) {

  .home-video__player { aspect-ratio: 120 / 151; }

}

@media (min-width: 768px) and (max-width: 1023.9px) {

  .home-video__player { aspect-ratio: 384 / 335; }

}

@media (min-width: 1024px) and (max-width: 1439.9px) {

  .home-video__player { aspect-ratio: 1024 / 349; }

}

@media (min-width: 1440px) {

  .home-video__player { aspect-ratio: 96 / 35; }

}



/* Play/Pause controls — absolute bottom-right */

.home-video__controls {

  position: absolute;

  z-index: 2;

  display: flex;

  flex-wrap: wrap;

}

@media (max-width: 767.9px) {

  .home-video__controls { right: 24px; bottom: 46px; }

  /* On mobile when paused (e.g. WeChat blocks autoplay): center and enlarge the play button for visibility */

  .home-video__player.paused ~ .home-video__controls {

    left: 50%;

    top: 50%;

    right: auto;

    bottom: auto;

    transform: translate(-50%, -50%);

  }

  .home-video__player.paused ~ .home-video__controls .home-video__toggle {

    width: 76px;

    height: 76px;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.45);

    border: 2px solid rgba(255, 255, 255, 0.9);

    opacity: 1;

    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);

  }

  .home-video__player.paused ~ .home-video__controls .home-video__icon-play {

    border-width: 16px 0 16px 28px;

  }

  .home-video__player.paused ~ .home-video__controls .home-video__icon-pause {

    width: 26px;

    height: 32px;

    border-left-width: 8px;

    border-right-width: 8px;

  }

}

@media (min-width: 768px) and (max-width: 1023.9px) {

  .home-video__controls { right: 40px; bottom: 46px; }

}

@media (min-width: 1024px) and (max-width: 1439.9px) {

  .home-video__controls { right: 40px; bottom: 48px; }

}

@media (min-width: 1440px) {

  .home-video__controls { right: 48px; bottom: 64px; }

}



.home-video__toggle {

  position: relative;

  width: 48px;

  height: 48px;

  padding: 0;

  border: none;

  background: transparent;

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;

  opacity: 0.85;

  transition: opacity 0.25s ease;

}

.home-video__toggle:hover { opacity: 1; }



/* Play icon — CSS triangle */

.home-video__icon-play,

.home-video__icon-pause {

  position: absolute;

  top: 50%;

  left: 50%;

  transition: opacity 0.2s ease, visibility 0.2s ease;

}

.home-video__icon-play {

  width: 0;

  height: 0;

  border-style: solid;

  border-width: 10px 0 10px 18px;

  border-color: transparent transparent transparent rgba(255, 255, 255, 0.9);

  transform: translate(-40%, -50%);

  opacity: 0;

  visibility: hidden;

}

.home-video__icon-pause {

  width: 16px;

  height: 20px;

  transform: translate(-50%, -50%);

  border-left: 5px solid rgba(255, 255, 255, 0.9);

  border-right: 5px solid rgba(255, 255, 255, 0.9);

  opacity: 1;

  visibility: visible;

}

/* Paused state: show play icon, hide pause icon */

.home-video__player.paused ~ .home-video__controls .home-video__icon-play {

  opacity: 1;

  visibility: visible;

}

.home-video__player.paused ~ .home-video__controls .home-video__icon-pause {

  opacity: 0;

  visibility: hidden;

}



/* ============================================================

   BRAND BANNERS — 三张竖排全宽 Banner + 悬浮按钮

   ============================================================ */

.brand-banners {

  display: flex;

  flex-direction: column;

  gap: 0;

}

.brand-banner {

  position: relative;

  width: 100%;

  overflow: hidden;

  line-height: 0;

  aspect-ratio: 16 / 9;

}

.brand-banner__img {

  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}

.brand-banner:hover .brand-banner__img {

  transform: scale(1.03);

}



/* 悬浮按钮 — 绝对定位在图片上 */

.brand-banner__btn {

  position: absolute;

  bottom: 12%;

  left: 50%;

  transform: translateX(-50%);

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 14px 36px;

  border-radius: 50px;

  font-size: 1rem;

  font-weight: 700;

  letter-spacing: 0.04em;

  text-decoration: none;

  color: #fff;

  background: rgba(0, 0, 0, 0.55);

  backdrop-filter: blur(6px);

  -webkit-backdrop-filter: blur(6px);

  border: 2px solid rgba(255, 255, 255, 0.35);

  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;

  z-index: 2;

  line-height: 1.4;

  white-space: nowrap;

}

.brand-banner__btn:hover {

  transform: translateX(-50%) translateY(-3px);

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);

}

.brand-banner__btn-icon {

  font-size: 0.9em;

  transition: transform 0.3s ease;

}

.brand-banner__btn:hover .brand-banner__btn-icon {

  transform: translateX(4px);

}



/* 品牌专属按钮色 */

.brand-banner__btn--aolipop {

  background: rgba(211, 47, 47, 0.75);

  border-color: rgba(255, 255, 255, 0.4);

}

.brand-banner__btn--aolipop:hover {

  background: #d32f2f;

}

.brand-banner__btn--shuletang {

  background: rgba(21, 101, 192, 0.75);

  border-color: rgba(255, 255, 255, 0.4);

}

.brand-banner__btn--shuletang:hover {

  background: #1565c0;

}

.brand-banner__btn--yoomiggo {

  background: rgba(238, 40, 104, 0.75);

  border-color: rgba(255, 255, 255, 0.4);

}

.brand-banner__btn--yoomiggo:hover {

  background: #ee2868;

}



/* 响应式 */

@media (max-width: 768px) {

  .brand-banner__btn {

    padding: 10px 24px;

    font-size: 0.85rem;

    bottom: 8%;

  }

}



/* ============================================================

   CATEGORY SECTION

   ============================================================ */

.category-section {

  background-color: var(--color-bg);

  padding: 20px 0 40px;

  position: relative;

}



.category-grid {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  gap: 28px;

  max-width: 1180px;

  margin: 0 auto;

}



/* 三品牌均分撑满容器，圆形放大，与宽背景比例协调 */

.category-item {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  text-align: center;

  -webkit-box-flex: 1;

  -ms-flex: 1 1 0;

  flex: 1 1 0;

  max-width: 360px;

  padding: 30px 18px;

  border-radius: 28px;

  background: transparent;

  -webkit-transition: background-color 0.35s ease, box-shadow 0.35s ease, -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  transition: background-color 0.35s ease, box-shadow 0.35s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  text-decoration: none;

  box-sizing: border-box;

}



/* hover 浮现柔光卡片底，让品牌"咬合"进背景容器 */

.category-item:hover {

  -webkit-transform: translateY(-8px);

  transform: translateY(-8px);

  background: rgba(255, 255, 255, 0.72);

  box-shadow: 0 18px 44px rgba(100, 47, 13, 0.12);

}



.category-image-wrap {

  position: relative;

  width: 210px;

  height: 210px;

  margin: 0 auto 20px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

}



.category-image-bg {

  position: absolute;

  top: 0;

  left: 0;

  width: 210px;

  height: 210px;

  background-color: #FFFFFF;

  border-radius: 50%;

  box-shadow: 0 6px 26px rgba(100, 47, 13, 0.10);

}



.category-image {

  position: relative;

  z-index: 1;

  width: 158px;

  height: 158px;

  object-fit: contain;

  mix-blend-mode: multiply;

}



/* 环境层：细点纹理 + 顶部柔光，呼应奶油暖调，让分区有呼吸感 */

.category-section {

  padding: 72px 0 84px;

  overflow: hidden;

}

.category-section::before {

  content: '';

  position: absolute;

  inset: 0;

  background-image: radial-gradient(rgba(154, 93, 9, 0.05) 1.4px, transparent 1.4px);

  background-size: 24px 24px;

  pointer-events: none;

}

.category-section::after {

  content: '';

  position: absolute;

  top: -160px;

  left: 50%;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  width: 720px;

  height: 360px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(154, 93, 9, 0.08) 0%, transparent 70%);

  pointer-events: none;

}

.category-section .container {

  position: relative;

  z-index: 1;

}



/* 圆形底 hover 变暖 + 阴影加深 */

.category-image-bg {

  transition: background-color 0.35s ease, box-shadow 0.35s ease, -webkit-transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);

  transition: background-color 0.35s ease, box-shadow 0.35s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);

}

.category-item:hover .category-image-bg {

  background-color: var(--color-bg-soft);

  box-shadow: 0 12px 30px rgba(100, 47, 13, 0.16);

  -webkit-transform: scale(1.05);

  transform: scale(1.05);

}



/* 产品图 hover 轻微旋转缩放，带俏皮感 */

.category-image {

  transition: -webkit-transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);

  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);

}

.category-item:hover .category-image {

  -webkit-transform: rotate(-5deg) scale(1.08);

  transform: rotate(-5deg) scale(1.08);

}



/* 分类标签：方括号包裹的焦糖色文字（1:1 参考站 [ Category ] 风格） */

.category-label {

  position: relative;

  display: inline-block;

  font-family: "Lato", Arial, sans-serif;

  font-weight: 700;

  font-size: 16px;

  color: var(--color-primary);

  letter-spacing: 0.3px;

  padding: 0 14px;

  transition: color 0.25s ease, letter-spacing 0.25s ease;

}

.category-label::before,

.category-label::after {

  position: absolute;

  top: 50%;

  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

  font-family: "Lobster", cursive;

  font-size: 22px;

  font-weight: normal;

  color: var(--color-primary);

  opacity: 0.55;

  transition: opacity 0.25s ease, -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

}

.category-label::before { content: '['; left: 0; }

.category-label::after  { content: ']'; right: 0; }



.category-item:hover .category-label {

  color: var(--color-primary-hover);

  letter-spacing: 0.8px;

}

.category-item:hover .category-label::before,

.category-item:hover .category-label::after {

  opacity: 1;

  color: var(--color-primary-hover);

}

.category-item:hover .category-label::before { -webkit-transform: translateY(-50%) translateX(-4px); transform: translateY(-50%) translateX(-4px); }

.category-item:hover .category-label::after  { -webkit-transform: translateY(-50%) translateX(4px); transform: translateY(-50%) translateX(4px); }



/* ============================================================

   STORY TEASER (Full-width)

   ============================================================ */

.story-teaser {

  position: relative;

  width: 100%;

  min-height: 500px;

  overflow: hidden;

}



.story-teaser__image {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

}



.story-teaser__image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: left center;

}



.story-teaser__overlay {

  position: relative;

  z-index: 2;

  min-height: 500px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: end;

  -ms-flex-pack: end;

  justify-content: flex-end;

  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(60%, rgba(100, 47, 13, 0.75)), to(rgba(100, 47, 13, 0.85)));

  background: linear-gradient(to right, transparent 0%, rgba(100, 47, 13, 0.75) 60%, rgba(100, 47, 13, 0.85) 100%);

}



.story-teaser__content {

  max-width: 520px;

  padding: 60px 80px 60px 40px;

  color: #FFFFFF;

}



.story-teaser__subline {

  font-size: 16px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1.5px;

  margin-bottom: 12px;

  opacity: 0.9;

}



.story-teaser__title {

  font-family: "Lobster", cursive;

  font-size: 44px;

  font-weight: normal;

  line-height: 1.2;

  margin-bottom: 28px;

}



/* Wave bottom for story */

.story-wave-bottom {

  position: absolute;

  bottom: -1px;

  left: 0;

  width: 100%;

  z-index: 3;

  line-height: 0;

}



.story-wave-bottom svg {

  width: 100%;

  height: 70px;

  display: block;

}



/* ============================================================

   STAGE / KI CHEF SECTION

   参考目标网站 stage 模块

   ============================================================ */

.stage-section {

  background-color: var(--color-bg);

  padding: 60px 0 80px;

}



.stage-wrapper {

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 40px;

}



@media (min-width: 1024px) {

  .stage-wrapper {

    flex-direction: row;

    align-items: stretch;

    gap: 60px;

  }

}



.stage-content {

  flex: 1;

  display: flex;

  flex-direction: column;

  justify-content: center;

  text-align: center;

  max-width: 500px;

  padding: 0 20px;

}



@media (min-width: 1024px) {

  .stage-content {

    text-align: left;

    padding: 0;

  }

}



.stage-subline {

  font-size: 14px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 2px;

  color: var(--color-primary);

  margin-bottom: 12px;

  font-family: var(--font-body);

}



.stage-title {

  font-family: var(--font-heading);

  font-size: 38px;

  line-height: 1.2;

  color: var(--color-text);

  margin-bottom: 20px;

  font-weight: normal;

}



@media (min-width: 1024px) {

  .stage-title {

    font-size: 48px;

  }

}



.stage-desc {

  font-size: 16px;

  line-height: 1.6;

  color: var(--color-text);

  margin-bottom: 28px;

}



.stage-content .btn {

  align-self: center;

  width: auto;

}



@media (min-width: 1024px) {

  .stage-content .btn {

    align-self: flex-start;

  }

}



.stage-background {

  flex: 1;

  border-radius: 12px;

  overflow: hidden;

  background-color: var(--color-bg-soft);

  min-height: 300px;

  position: relative;

  max-width: 600px;

  width: 100%;

}



.stage-image {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

}



/* Story teaser link wrapping */

.story-teaser__link {

  display: block;

  position: relative;

  width: 100%;

  height: 100%;

  text-decoration: none;

  color: var(--color-white);

}



.story-teaser__link:hover {

  color: var(--color-white);

}



.story-teaser__background {

  position: absolute;

  inset: 0;

  background-size: cover;

  background-position: center;

  z-index: 1;

}



.story-teaser__cta {

  display: inline-block;

}



.story-teaser__cta .btn {

  pointer-events: none;

}



/* ============================================================

   FOOTER

   ============================================================ */

.site-footer {

  background-color: var(--color-bg);

  padding: 40px 0 50px;

  color: var(--color-text);

  text-align: center;

}



.footer-inner {

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 20px;

}



/* Back to Top in footer area */

.back-to-top {

  text-align: center;

  margin-bottom: 40px;

}



.back-to-top a {

  display: -webkit-inline-box;

  display: -ms-inline-flexbox;

  display: inline-flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  gap: 8px;

  color: var(--color-primary);

  font-weight: 700;

  text-transform: uppercase;

  font-size: 15px;

  letter-spacing: 1px;

  transition: color 0.2s ease;

  text-decoration: none;

}



.back-to-top a:hover {

  color: var(--color-primary-hover);

}



.back-to-top__icon {

  width: 36px;

  height: 36px;

  border: 2px solid var(--color-primary);

  border-radius: 50%;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  position: relative;

}



.back-to-top__icon::before {

  content: "";

  display: block;

  width: 0;

  height: 0;

  border-left: 6px solid transparent;

  border-right: 6px solid transparent;

  border-bottom: 8px solid var(--color-primary);

}



.back-to-top__text {

  font-size: 14px;

}



/* Footer Brand (Storck) */

.footer-brand {

  margin-bottom: 36px;

}



.footer-brand a {

  display: -webkit-inline-box;

  display: -ms-inline-flexbox;

  display: inline-flex;

  -webkit-box-align: baseline;

  -ms-flex-align: baseline;

  align-items: baseline;

  gap: 12px;

  text-decoration: none;

}



.storck-logo {

  font-size: 32px;

  font-weight: 900;

  letter-spacing: 1px;

  color: var(--color-text);

}



.storck-tagline {

  font-family: "Lobster", cursive;

  font-size: 22px;

  color: var(--color-text);

  font-style: italic;

}



/* Footer Links */

.footer-links {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  gap: 8px 36px;

}



.footer-links a {

  color: var(--color-primary);

  font-size: 14px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.8px;

  transition: color 0.2s ease;

  text-decoration: none;

}



.footer-links a:hover {

  color: var(--color-primary-hover);

  text-decoration: underline;

}



/* ============================================================

   BRAND BAR (Sister Brands)

   参考目标网站 brandbar 模块 - Storck 旗下品牌

   ============================================================ */

.brandbar {

  background-color: #F5F5F5;

  padding: 40px 0;

  border-top: 1px solid rgba(0, 0, 0, 0.05);

}



.brandbar-inner {

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 20px;

  text-align: center;

}



.brandbar-headline {

  margin: 0 0 28px;

  display: block;

}



.brandbar-headline__img {

  display: inline-block;

  height: 32px;

  width: auto;

  margin: 0 auto;

}



.brandbar-title {

  font-family: var(--font-heading);

  font-size: 26px;

  color: #666666;

  margin-bottom: 28px;

  font-style: italic;

  text-decoration: underline;

  text-underline-offset: 6px;

}



.brandbar-logos {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  gap: 48px;

  -ms-flex-wrap: wrap;

  flex-wrap: wrap;

}



.brandbar-item {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  transition: opacity 0.3s ease, transform 0.3s ease;

  text-decoration: none;

  opacity: 0.7;

}



.brandbar-item:hover {

  opacity: 1;

  -webkit-transform: translateY(-2px);

  transform: translateY(-2px);

}



.brandbar-logo {

  height: 64px;

  width: auto;

  display: block;

  filter: grayscale(30%);

  transition: filter 0.3s ease;

}



.brandbar-item:hover .brandbar-logo {

  filter: grayscale(0);

}



.brand-logo {

  font-size: 28px;

  font-weight: 700;

  color: #666666;

  opacity: 0.6;

  transition: opacity 0.2s ease;

}



.brandbar-item:hover .brand-logo {

  opacity: 1;

}



.brand-logo--merci {

  font-family: "Lobster", cursive;

  font-size: 32px;

  font-style: italic;

  font-weight: normal;

}



.brand-logo--toffifee {

  font-family: "Lobster", cursive;

  font-size: 28px;

  font-weight: normal;

}



.brand-logo--mamba {

  font-family: "Lobster", cursive;

  font-size: 30px;

  font-weight: normal;

}



.brand-logo--riesen {

  font-size: 28px;

  font-weight: 900;

  letter-spacing: 1px;

}



.brand-logo--knoppers {

  font-size: 24px;

  font-weight: 900;

  letter-spacing: 0.5px;

}



/* ============================================================

   ABOUT PAGE - Hero Section

   ============================================================ */

/* ============================================================

   ABOUT PAGE - Page Header

   ============================================================ */

.about-page-header {

  background-color: #ffffff;

  padding: 60px 0 40px;

  text-align: center;

}



.about-page-header__title {

  font-family: "Lobster", cursive;

  font-size: 50px;

  font-weight: normal;

  color: var(--color-text);

  line-height: 1.2;

  margin: 0;

}



/* ============================================================

   ABOUT PAGE - What Makes Us Special Section

   ============================================================ */

.about-special {

  background-color: var(--color-bg);

  padding: 60px 0 80px;

  text-align: center;

}



.about-special__title {

  font-family: "Lobster", cursive;

  font-size: 34px;

  font-weight: normal;

  color: var(--color-text);

  line-height: 1.2;

  margin: 0 0 24px 0;

}



.about-special__desc {

  font-size: 16px;

  line-height: 1.75;

  color: var(--color-text);

  max-width: 780px;

  margin: 0 auto 40px;

  opacity: 0.9;

}



.about-special__image {

  position: relative;

  max-width: 900px;

  margin: 0 auto;

}



.about-special__image img {

  width: 100%;

  display: block;

  border-radius: 4px;

}



.about-special__quote {

  position: absolute;

  top: 50%;

  left: 50%;

  -webkit-transform: translate(-50%, -50%);

  transform: translate(-50%, -50%);

  font-family: "Lobster", cursive;

  font-size: 28px;

  color: #ffffff;

  text-align: center;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);

  max-width: 80%;

  line-height: 1.3;

}



/* ============================================================

   ABOUT PAGE - Today Section

   ============================================================ */

.about-today {

  background-color: var(--color-bg);

  padding: 60px 0 80px;

  text-align: center;

}



.about-today__title {

  font-family: "Lobster", cursive;

  font-size: 34px;

  font-weight: normal;

  color: var(--color-text);

  line-height: 1.2;

  margin: 0 0 40px 0;

}



.about-today__grid {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  gap: 60px;

  max-width: 900px;

  margin: 0 auto;

  text-align: left;

}



.about-today__text {

  -webkit-box-flex: 1;

  -ms-flex: 1;

  flex: 1;

  font-size: 16px;

  line-height: 1.75;

  color: var(--color-text);

}



.about-today__text p {

  margin: 0 0 16px 0;

  opacity: 0.9;

}



/* ============================================================

   PRODUCT LIST PAGE - HERO

   ============================================================ */

.product-hero {

  position: relative;

  width: 100%;

  height: 420px;

  overflow: hidden;

}



.product-hero__bg {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

}



.product-hero__wave {

  position: absolute;

  bottom: -1px;

  left: 0;

  width: 100%;

  z-index: 2;

  line-height: 0;

}



.product-hero__wave svg {

  width: 100%;

  height: 100px;

  display: block;

}



/* ============================================================

   PRODUCT LIST PAGE - INTRO

   ============================================================ */

.product-intro {

  padding: 30px 0 20px;

  background: var(--color-bg);

  text-align: center;

}



.product-intro__title {

  font-family: "Lobster", cursive;

  font-size: 50px;

  font-weight: normal;

  color: var(--color-text);

  margin: 0 0 20px 0;

  line-height: 1.2;

}



.product-intro__desc {

  font-family: "Lato", Arial, sans-serif;

  font-size: 18px;

  color: var(--color-text);

  max-width: 800px;

  margin: 0 auto;

  line-height: 1.5;

}



/* ============================================================

   PRODUCT LIST PAGE - GRID

   ============================================================ */

.product-list-section {

  padding: 30px 0 80px;

  background: var(--color-bg);

}



.product-category {

  padding: 30px 0;

}



.product-category__title {

  font-family: "Lobster", cursive;

  font-size: 34px;

  font-weight: normal;

  color: var(--color-text);

  text-align: center;

  margin: 0 0 45px 0;

  line-height: 1.2;

}



.product-grid {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  gap: 0 87px;

  max-width: 560px;

  margin: 0 auto;

}



.product-card {

  width: 233px;

  display: block;

  text-align: center;

  text-decoration: none;

  color: var(--color-text);

  margin-bottom: 40px;

  -webkit-transition: transform 0.3s ease;

  transition: transform 0.3s ease;

}



.product-card:hover {

  -webkit-transform: translateY(-4px);

  transform: translateY(-4px);

}



.product-card__image-wrap {

  position: relative;

  width: 233px;

  height: 173px;

  margin-bottom: 10px;

}



.product-card__image-bg {

  position: absolute;

  top: 0;

  left: 50%;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  width: 160px;

  height: 160px;

  border-radius: 50%;

  background-color: var(--color-primary);

  z-index: 1;

}



.product-card__image {

  position: relative;

  z-index: 2;

  width: 233px;

  height: 173px;

  object-fit: contain;

  display: block;

  margin: 0 auto;

}



.product-card__title {

  font-family: "Lobster", cursive;

  font-size: 30px;

  font-weight: normal;

  color: var(--color-text);

  margin: 0 0 10px 0;

  line-height: 1.2;

  text-align: center;

}



.product-card__desc {

  font-family: "Lato", Arial, sans-serif;

  font-size: 15px;

  color: var(--color-text);

  margin: 0;

  line-height: 1.5;

  text-align: center;

}



.product-card__spec {

  font-family: "Lato", Arial, sans-serif;

  font-size: 13px;

  color: var(--color-text-light, #888);

  margin: 2px 0 0;

  text-align: center;

}



/* ============================================================

   BRAND INTRO & PRODUCTS LIST PAGE

   ============================================================ */

.brand-intro-section {

  padding: 50px 0 30px;

  background: var(--color-bg);

}

.brand-intro-card {

  max-width: 800px;

  margin: 0 auto;

  text-align: center;

}

.brand-intro-card__text {

  font-family: "Lato", Arial, sans-serif;

  font-size: 16px;

  line-height: 1.8;

  color: var(--color-text);

  margin-bottom: 16px;

}

.brand-intro-card__text--en,

.brand-intro-card__text--cn {

  font-size: 14px;

  color: var(--color-text-light, #888);

  font-style: italic;

}

.brand-products-section {

  padding: 40px 0 80px;

  background: var(--color-bg);

}



/* ============================================================

   BRAND SHOWCASE - Multi-brand product switcher

   ============================================================ */

.brand-showcase {

  position: relative;

  padding: 70px 0 90px;

  background: var(--color-bg);

  overflow: hidden;

}



/* Ambient dot texture layered behind the content */

.brand-showcase::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-image: radial-gradient(rgba(154, 93, 9, 0.06) 1.5px, transparent 1.5px);

  background-size: 26px 26px;

  pointer-events: none;

}



/* Soft caramel glow accents */

.brand-showcase::after {

  content: '';

  position: absolute;

  top: -120px;

  right: -120px;

  width: 380px;

  height: 380px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(154, 93, 9, 0.10) 0%, transparent 70%);

  pointer-events: none;

}



.brand-showcase .container {

  position: relative;

  z-index: 1;

}



/* --- Brand Tabs (segmented control) --- */

.brand-tabs {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  gap: 16px;

  max-width: 820px;

  margin: 0 auto 60px;

}



.brand-tab {

  position: relative;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  gap: 14px;

  -webkit-box-flex: 1;

  -ms-flex: 1 1 0;

  flex: 1 1 0;

  max-width: 250px;

  padding: 13px 24px;

  background: var(--color-white);

  border: 2px solid var(--color-border);

  border-radius: 999px;

  cursor: pointer;

  font-family: var(--font-body);

  color: var(--color-text);

  text-align: left;

  box-shadow: 0 2px 8px rgba(100, 47, 13, 0.06);

  -webkit-transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;

  transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;

}



.brand-tab:hover {

  border-color: var(--color-primary);

  -webkit-transform: translateY(-3px);

  transform: translateY(-3px);

  box-shadow: 0 10px 22px rgba(154, 93, 9, 0.16);

}



.brand-tab:focus-visible {

  outline: 3px solid rgba(154, 93, 9, 0.4);

  outline-offset: 2px;

}



.brand-tab.is-active {

  background: var(--color-primary);

  border-color: var(--color-primary);

  color: var(--color-white);

  -webkit-transform: translateY(-3px);

  transform: translateY(-3px);

  box-shadow: 0 12px 26px rgba(154, 93, 9, 0.35);

}



.brand-tab__icon-wrap {

  -ms-flex-negative: 0;

  flex-shrink: 0;

  width: 52px;

  height: 52px;

  border-radius: 50%;

  background: var(--color-bg);

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  overflow: hidden;

  -webkit-transition: background-color 0.35s ease, transform 0.35s ease;

  transition: background-color 0.35s ease, transform 0.35s ease;

}



.brand-tab:hover .brand-tab__icon-wrap {

  -webkit-transform: rotate(-8deg) scale(1.06);

  transform: rotate(-8deg) scale(1.06);

}



.brand-tab.is-active .brand-tab__icon-wrap {

  background: var(--color-white);

}



.brand-tab__icon {

  width: 40px;

  height: 40px;

  object-fit: contain;

  display: block;

}



.brand-tab__name {

  font-size: 16px;

  font-weight: 700;

  letter-spacing: 0.4px;

  line-height: 1.25;

}



/* --- Brand Panels --- */

.brand-panel {

  display: none;

}



.brand-panel.is-active {

  display: block;

  -webkit-animation: brandPanelIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  animation: brandPanelIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);

}



@-webkit-keyframes brandPanelIn {

  from { opacity: 0; -webkit-transform: translateY(26px); transform: translateY(26px); }

  to   { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }

}

@keyframes brandPanelIn {

  from { opacity: 0; transform: translateY(26px); }

  to   { opacity: 1; transform: translateY(0); }

}



.brand-panel__grid {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  gap: 48px 44px;

}



/* Staggered card reveal when a panel becomes active.

   fill-mode: backwards keeps cards hidden during their delay,

   then releases so the hover lift transition still works. */

.brand-panel.is-active .product-card {

  -webkit-animation: brandCardReveal 0.55s cubic-bezier(0.4, 0, 0.2, 1) backwards;

  animation: brandCardReveal 0.55s cubic-bezier(0.4, 0, 0.2, 1) backwards;

}

.brand-panel.is-active .product-card:nth-child(1)  { -webkit-animation-delay: 0.05s; animation-delay: 0.05s; }

.brand-panel.is-active .product-card:nth-child(2)  { -webkit-animation-delay: 0.12s; animation-delay: 0.12s; }

.brand-panel.is-active .product-card:nth-child(3)  { -webkit-animation-delay: 0.19s; animation-delay: 0.19s; }

.brand-panel.is-active .product-card:nth-child(4)  { -webkit-animation-delay: 0.26s; animation-delay: 0.26s; }

.brand-panel.is-active .product-card:nth-child(5)  { -webkit-animation-delay: 0.33s; animation-delay: 0.33s; }

.brand-panel.is-active .product-card:nth-child(6)  { -webkit-animation-delay: 0.40s; animation-delay: 0.40s; }

.brand-panel.is-active .product-card:nth-child(7)  { -webkit-animation-delay: 0.47s; animation-delay: 0.47s; }

.brand-panel.is-active .product-card:nth-child(8)  { -webkit-animation-delay: 0.54s; animation-delay: 0.54s; }

.brand-panel.is-active .product-card:nth-child(9)  { -webkit-animation-delay: 0.61s; animation-delay: 0.61s; }

.brand-panel.is-active .product-card:nth-child(10) { -webkit-animation-delay: 0.68s; animation-delay: 0.68s; }

.brand-panel.is-active .product-card:nth-child(11) { -webkit-animation-delay: 0.75s; animation-delay: 0.75s; }

.brand-panel.is-active .product-card:nth-child(12) { -webkit-animation-delay: 0.82s; animation-delay: 0.82s; }



@-webkit-keyframes brandCardReveal {

  from { opacity: 0; -webkit-transform: translateY(22px) scale(0.96); transform: translateY(22px) scale(0.96); }

  to   { opacity: 1; -webkit-transform: translateY(0) scale(1); transform: translateY(0) scale(1); }

}

@keyframes brandCardReveal {

  from { opacity: 0; transform: translateY(22px) scale(0.96); }

  to   { opacity: 1; transform: translateY(0) scale(1); }

}



/* ============================================================

   PRODUCT LIST PAGE - PAGINATION

   ============================================================ */

.list-pagination {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  gap: 8px;

  margin-top: 30px;

  -ms-flex-wrap: wrap;

  flex-wrap: wrap;

}



.list-pagination a,

.list-pagination span {

  display: -webkit-inline-box;

  display: -ms-inline-flexbox;

  display: inline-flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  min-width: 40px;

  height: 40px;

  padding: 0 14px;

  border: 1px solid #f0d5d8;

  border-radius: 8px;

  font-family: "Lato", Arial, sans-serif;

  font-size: 14px;

  color: var(--color-primary);

  text-decoration: none;

  background: #FFFFFF;

  -webkit-transition: all 0.3s ease;

  transition: all 0.3s ease;

}



.list-pagination a:hover {

  border-color: var(--color-primary);

  color: var(--color-text);

  background: #fdf0f1;

}



.list-pagination .page-num-current,

.list-pagination .active {

  background: var(--color-text);

  color: #FFFAF0;

  border-color: var(--color-text);

}



.list-pagination .page-status {

  border: none;

  background: transparent;

  color: var(--color-primary);

  cursor: default;

}



/* ============================================================

   UTILITY CLASSES

   ============================================================ */

.mt-20 { margin-top: 20px; }

.mb-20 { margin-bottom: 20px; }

.mt-40 { margin-top: 40px; }

.mb-40 { margin-bottom: 40px; }



.hidden { display: none !important; }



.sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  overflow: hidden;

  clip: rect(0,0,0,0);

  white-space: nowrap;

}



/* ============================================================

   DESKTOP LARGE (1440px+)

   ============================================================ */

@media (min-width: 1440px) {

  .container,

  .header-inner,

  .footer-inner,

  .brandbar-inner {

    max-width: 1320px;

  }



  .section-headline {

    font-size: 48px;

  }



  .hero-slide {

    min-height: 620px;

  }



  .hero-slide-content {

    padding: 0 80px;

    max-width: 1320px;

  }



  .hero-play-toggle {

    right: 80px;

    bottom: 80px;

  }



  .story-teaser,

  .story-teaser__overlay {

    min-height: 560px;

  }



  .story-teaser__content {

    padding-right: 100px;

    max-width: 580px;

  }



  .story-teaser__title {

    font-size: 52px;

  }



  .category-image-wrap {

    width: 200px;

    height: 200px;

  }



  .category-image-bg {

    width: 170px;

    height: 170px;

  }



  .category-image {

    width: 180px;

    height: 180px;

  }



  .hero-wave-bottom svg {

    height: 100px;

  }



  .story-wave-bottom svg {

    height: 90px;

  }



  /* About Page - Hero */

  .about-hero {

    min-height: 560px;

  }



  .about-hero__image {

    object-fit: cover;

    height: 100%;

  }



  .about-hero__title {

    font-size: 64px;

  }



  .about-hero__wave svg {

    height: 100px;

  }



  /* About Page - Timeline */

  .about-timeline {

    padding: 80px 0 100px;

  }



  .about-timeline__title {

    font-size: 48px;

  }



  .timeline {

    max-width: 1200px;

  }



  .timeline__year {

    font-size: 36px;

  }



  .timeline__content h3 {

    font-size: 22px;

  }



  .timeline__content p {

    font-size: 16px;

  }



  .timeline__image img {

    max-width: 320px;

  }



  /* About Page - Feature */

  .about-feature {

    padding: 80px 0 100px;

  }



  .about-feature__title {

    font-size: 48px;

  }



  .about-feature__grid {

    max-width: 1200px;

    gap: 80px;

  }



  .about-feature__text h3 {

    font-size: 32px;

  }



  .about-feature__text p {

    font-size: 17px;

  }

}



/* ============================================================

   PAGE HERO (通用页面横幅)

   ============================================================ */

.page-hero {

  position: relative;

  width: 100%;

  height: 320px;

  overflow: hidden;

}



.page-hero__bg {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.page-hero__overlay {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(135deg, rgba(100, 10, 20, 0.82), rgba(179, 18, 29, 0.65));

  z-index: 1;

}



.page-hero__content {

  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  height: 100%;

  text-align: center;

  padding: 0 20px;

}



.page-hero__subline {

  font-size: 14px;

  color: var(--color-primary);

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 2px;

  margin-bottom: 10px;

}



.page-hero__title {

  font-family: "Lobster", cursive;

  font-size: 48px;

  font-weight: normal;

  color: #FFFAF0;

  margin: 0 0 12px 0;

  line-height: 1.2;

}



.page-hero__subtitle {

  font-family: "Lato", Arial, sans-serif;

  font-size: 16px;

  color: rgba(255, 250, 240, 0.85);

  max-width: 600px;

  margin: 0 auto;

  line-height: 1.7;

}



.page-hero__wave {

  position: absolute;

  bottom: -1px;

  left: 0;

  width: 100%;

  z-index: 2;

  line-height: 0;

}



.page-hero__wave svg {

  width: 100%;

  height: 80px;

  display: block;

}



/* ============================================================

   PAGE CONTENT SECTION (通用内容区)

   ============================================================ */

.page-content {

  padding: 80px 0;

  background: var(--color-bg);

}



.page-section__header {

  text-align: center;

  margin-bottom: 60px;

}



.page-section__subline {

  font-size: 14px;

  color: var(--color-primary);

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 2px;

  margin-bottom: 10px;

}



.page-section__title {

  font-family: "Lobster", cursive;

  font-size: 36px;

  font-weight: normal;

  color: var(--color-text);

  margin: 0 0 16px 0;

  line-height: 1.2;

}



.page-section__subtitle {

  font-family: "Lato", Arial, sans-serif;

  font-size: 16px;

  color: var(--color-primary);

  max-width: 640px;

  margin: 0 auto;

  line-height: 1.8;

}



.page-section__divider {

  width: 60px;

  height: 3px;

  background: var(--color-primary);

  margin: 24px auto 0;

}



/* ============================================================

   NEWS PAGE - 新闻列表

   ============================================================ */

/* ============================================================

   NEWS PAGE - 新闻页面

   ============================================================ */

.news-header {

  background-color: var(--color-bg);

  padding: 60px 0 40px;

  text-align: center;

}



.news-social {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  gap: 16px;

  margin-bottom: 32px;

}



.news-social__link {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  width: 56px;

  height: 56px;

  border-radius: 50%;

  background-color: var(--color-primary);

  color: var(--color-bg);

  text-decoration: none;

  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;

  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;

  transition: background-color 0.3s ease, transform 0.3s ease;

  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;

}



.news-social__link:hover {

  background-color: var(--color-text);

  -webkit-transform: translateY(-2px);

  -ms-transform: translateY(-2px);

  transform: translateY(-2px);

}



.news-page-title {

  font-family: "Lobster", cursive;

  font-size: 50px;

  font-weight: normal;

  color: var(--color-text);

  margin: 0;

  line-height: 1.2;

}



.news-list-section {

  background-color: var(--color-bg);

  padding: 20px 0 80px;

}



.news-list {

  max-width: 900px;

  margin: 0 auto;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;

  gap: 30px;

}



.news-item {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-orient: horizontal;

  -webkit-box-direction: normal;

  -ms-flex-direction: row;

  flex-direction: row;

  background-color: #FFFFFF;

  overflow: hidden;

  -webkit-transition: -webkit-transform 0.3s ease;

  transition: -webkit-transform 0.3s ease;

  transition: transform 0.3s ease;

  transition: transform 0.3s ease, -webkit-transform 0.3s ease;

}



.news-item:hover {

  -webkit-transform: translateY(-4px);

  -ms-transform: translateY(-4px);

  transform: translateY(-4px);

}



.news-item__image-wrap {

  width: 50%;

  -ms-flex-negative: 0;

  flex-shrink: 0;

  overflow: hidden;

}



.news-item__image {

  width: 100%;

  height: 100%;

  -o-object-fit: cover;

  object-fit: cover;

  -webkit-transition: -webkit-transform 0.5s ease;

  transition: -webkit-transform 0.5s ease;

  transition: transform 0.5s ease;

  transition: transform 0.5s ease, -webkit-transform 0.5s ease;

  display: block;

}



.news-item:hover .news-item__image {

  -webkit-transform: scale(1.05);

  -ms-transform: scale(1.05);

  transform: scale(1.05);

}



.news-item__text {

  width: 50%;

  padding: 40px;

  -webkit-box-sizing: border-box;

  box-sizing: border-box;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

}



.news-item__date {

  font-family: "Lato", Arial, sans-serif;

  font-size: 16px;

  font-weight: 700;

  color: var(--color-primary);

  margin: 0 0 16px 0;

  text-transform: uppercase;

  letter-spacing: 1px;

}



.news-item__title {

  font-family: "Lobster", cursive;

  font-size: 30px;

  font-weight: normal;

  color: var(--color-text);

  margin: 0 0 24px 0;

  line-height: 1.3;

}



.news-item__title a {

  color: inherit;

  text-decoration: none;

  -webkit-transition: color 0.3s ease;

  transition: color 0.3s ease;

}



.news-item__title a:hover {

  color: var(--color-primary);

}



.news-item__btn {

  -ms-flex-item-align: start;

  align-self: flex-start;

}



.news-pagination {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  gap: 8px;

  margin-top: 60px;

  -ms-flex-wrap: wrap;

  flex-wrap: wrap;

}



.news-pagination a,

.news-pagination span {

  display: -webkit-inline-box;

  display: -ms-inline-flexbox;

  display: inline-flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  min-width: 40px;

  height: 40px;

  padding: 0 14px;

  border: 1px solid #f0d5d8;

  border-radius: 8px;

  font-family: "Lato", Arial, sans-serif;

  font-size: 14px;

  color: var(--color-primary);

  text-decoration: none;

  background: #FFFFFF;

  -webkit-transition: all 0.3s ease;

  transition: all 0.3s ease;

}



.news-pagination a:hover {

  border-color: var(--color-primary);

  color: var(--color-text);

  background: #fdf0f1;

}



.news-pagination .page-num-current,

.news-pagination .active {

  background: var(--color-text);

  color: #FFFAF0;

  border-color: var(--color-text);

}



.news-pagination .page-status {

  border: none;

  background: transparent;

  color: var(--color-primary);

  cursor: default;

}



/* ============================================================

   CONTACT PAGE - 联系我们

   ============================================================ */

.contact-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: start;

}



.contact-info {

  display: flex;

  flex-direction: column;

  gap: 24px;

}



.contact-info__card {

  background: var(--color-bg-soft);

  padding: 32px;

  border-radius: 12px;

}



.contact-info__title {

  font-family: "Lobster", cursive;

  font-size: 28px;

  color: var(--color-text);

  margin-bottom: 16px;

  font-weight: normal;

}



.contact-info__text {

  font-size: 15px;

  line-height: 1.8;

  color: var(--color-text);

}



.contact-info__map {

  border-radius: 12px;

  overflow: hidden;

}



.contact-info__map img {

  width: 100%;

  height: auto;

  display: block;

}



/* ============================================================

   FAQ PAGE - 常见问题

   ============================================================ */

.faq-container {

  max-width: 960px;

  margin: 0 auto;

}



.faq-list {

  display: flex;

  flex-direction: column;

  gap: 12px;

}



.faq-item {

  background-color: #FFFFFF;

  border-radius: 12px;

  overflow: hidden;

  box-shadow: 0 2px 12px rgba(100, 47, 13, 0.06);

  transition: box-shadow 0.3s ease;

}



.faq-item:hover {

  box-shadow: 0 4px 20px rgba(100, 47, 13, 0.1);

}



.faq-question {

  cursor: pointer;

  padding: 24px 60px 24px 24px;

  font-size: 16px;

  font-weight: 700;

  color: var(--color-text);

  position: relative;

  user-select: none;

  line-height: 1.5;

  transition: color 0.3s ease;

  font-family: "Lato", Arial, sans-serif;

}



.faq-question:hover {

  color: var(--color-primary);

}



.faq-question__icon {

  position: absolute;

  right: 24px;

  top: 50%;

  transform: translateY(-50%);

  width: 24px;

  height: 24px;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: transform 0.3s ease;

}



.faq-question__icon::before,

.faq-question__icon::after {

  content: '';

  position: absolute;

  background-color: var(--color-primary);

  border-radius: 2px;

  transition: all 0.3s ease;

}



.faq-question__icon::before {

  width: 16px;

  height: 2px;

}



.faq-question__icon::after {

  width: 2px;

  height: 16px;

}



.faq-item.active .faq-question__icon::after {

  height: 0;

}



.faq-answer {

  max-height: 0;

  overflow: hidden;

  transition: max-height 0.4s ease, padding 0.3s ease;

  padding: 0 24px;

}



.faq-item.active .faq-answer {

  max-height: 500px;

  padding-bottom: 24px;

}



.faq-answer__inner {

  font-size: 15px;

  color: var(--color-text);

  line-height: 1.8;

  opacity: 0.9;

}



.faq-answer__inner a {

  color: var(--color-primary);

  text-decoration: underline;

}



.faq-answer__inner a:hover {

  color: var(--color-primary-hover);

}



/* ============================================================

   RECIPES PAGE - 食谱列表

   ============================================================ */

.recipe-filter {

  text-align: center;

  margin-bottom: 48px;

}



.recipe-filter__label {

  font-family: "Lato", Arial, sans-serif;

  font-size: 14px;

  font-weight: 700;

  color: var(--color-text);

  text-transform: uppercase;

  letter-spacing: 1px;

  margin: 0 0 16px 0;

}



.recipe-filter__grid {

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 10px;

}



.recipe-filter__btn {

  font-family: "Lato", Arial, sans-serif;

  font-size: 14px;

  font-weight: 700;

  padding: 10px 22px;

  border-radius: 50px;

  border: 2px solid #f0d5d8;

  background: transparent;

  color: var(--color-primary);

  cursor: pointer;

  transition: all 0.3s ease;

  letter-spacing: 0.5px;

  text-transform: uppercase;

}



.recipe-filter__btn:hover {

  border-color: var(--color-primary);

  color: var(--color-text);

  background: #fdf0f1;

}



.recipe-filter__btn.active {

  border-color: var(--color-primary);

  background: var(--color-primary);

  color: #FFFFFF;

}



.recipe-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 32px;

}



.recipe-card {

  background: transparent;

  border-radius: 0;

  overflow: hidden;

  transition: transform 0.3s ease;

  cursor: pointer;

}



.recipe-card:hover {

  transform: translateY(-4px);

}



.recipe-card__image-wrap {

  position: relative;

  overflow: hidden;

  aspect-ratio: 4/3;

  border-radius: 8px;

}



.recipe-card__image {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;

}



.recipe-card:hover .recipe-card__image {

  transform: scale(1.06);

}



.recipe-card__body {

  padding: 16px 0 0 0;

}



.recipe-card__category {

  margin: 0 0 6px 0;

}



.recipe-card__category a {

  font-family: "Lato", Arial, sans-serif;

  font-size: 13px;

  font-weight: 700;

  color: var(--color-primary);

  text-decoration: none;

  letter-spacing: 0.5px;

  text-transform: uppercase;

  transition: color 0.3s;

}



.recipe-card__category a:hover {

  color: var(--color-text);

}



.recipe-card__title {

  font-family: "Lobster", cursive;

  font-size: 20px;

  font-weight: normal;

  color: var(--color-text);

  margin: 0;

  line-height: 1.4;

}



.recipe-card__title a {

  color: inherit;

  text-decoration: none;

  transition: color 0.3s;

}



.recipe-card:hover .recipe-card__title a {

  color: var(--color-primary);

}



.recipe-pagination {

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 8px;

  margin-top: 60px;

  flex-wrap: wrap;

}



.recipe-pagination a,

.recipe-pagination span {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-width: 40px;

  height: 40px;

  padding: 0 14px;

  border: 1px solid #f0d5d8;

  border-radius: 8px;

  font-family: "Lato", Arial, sans-serif;

  font-size: 14px;

  color: var(--color-primary);

  text-decoration: none;

  background: #FFFFFF;

  transition: all 0.3s ease;

}



.recipe-pagination a:hover {

  border-color: var(--color-primary);

  color: var(--color-text);

  background: #fdf0f1;

}



.recipe-pagination .page-num-current,

.recipe-pagination .active {

  background: var(--color-text);

  color: #FFFAF0;

  border-color: var(--color-text);

}



.recipe-pagination .page-status {

  border: none;

  background: transparent;

  color: var(--color-primary);

  cursor: default;

}



/* ============================================================

   WHERE TO BUY PAGE - 门店购买

   ============================================================ */

.buy-section {

  margin-bottom: 80px;

}



.buy-section:last-child {

  margin-bottom: 0;

}



.online-retailers {

  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));

  gap: 24px;

  margin-top: 28px;

}



.online-retailer-card {

  background: var(--color-bg-soft);

  border-radius: 12px;

  padding: 24px 16px;

  text-align: center;

  display: flex;

  flex-direction: column;

  align-items: center;

  transition: box-shadow 0.25s ease, transform 0.25s ease;

}



.online-retailer-card:hover {

  box-shadow: 0 6px 20px rgba(154, 93, 9, 0.15);

  transform: translateY(-3px);

}



.online-retailer-card__logo {

  width: 140px;

  height: 56px;

  overflow: hidden;

  border-radius: 8px;

  margin-bottom: 12px;

  background: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

}



.online-retailer-card__logo img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.online-retailer-card__name {

  font-size: 1.1rem;

  font-weight: 700;

  color: var(--color-text);

  margin: 0 0 4px;

  font-family: "Lato", Arial, sans-serif;

}



.online-retailer-card__note {

  font-size: 0.85rem;

  color: var(--color-primary);

  margin: 0 0 16px;

  font-family: "Lato", Arial, sans-serif;

}



.store-locator-form {

  background: var(--color-bg-soft);

  border-radius: 12px;

  padding: 28px 24px;

  margin-top: 20px;

}



.store-locator-form__row {

  display: flex;

  flex-wrap: wrap;

  gap: 16px;

  margin-bottom: 16px;

}



.store-locator-form__row:last-child {

  margin-bottom: 0;

}



.store-locator-form__group {

  flex: 1 1 220px;

  display: flex;

  flex-direction: column;

}



.store-locator-form__group label {

  font-size: 14px;

  font-weight: 700;

  color: var(--color-text);

  margin-bottom: 6px;

  text-transform: uppercase;

  letter-spacing: 0.5px;

  font-family: "Lato", Arial, sans-serif;

}



.store-locator-form__group select,

.store-locator-form__group input[type="text"] {

  padding: 10px 12px;

  border: 1px solid #d4b896;

  border-radius: 6px;

  font-size: 15px;

  color: var(--color-text);

  background: #fff;

  transition: border-color 0.2s ease, box-shadow 0.2s ease;

  outline: none;

  width: 100%;

  box-sizing: border-box;

  font-family: "Lato", Arial, sans-serif;

}



.store-locator-form__group select:focus,

.store-locator-form__group input[type="text"]:focus {

  border-color: var(--color-primary);

  box-shadow: 0 0 0 3px rgba(154, 93, 9, 0.15);

}



.store-locator-form__group--zip {

  flex: 0 1 180px;

}



.store-locator-form__group--radius {

  flex: 0 1 160px;

}



.store-locator-form__group--action {

  flex: 0 1 auto;

  justify-content: flex-end;

}



.store-locator-form__group--action label {

  visibility: hidden;

}



.store-locator-results {

  margin-top: 28px;

  display: flex;

  flex-direction: column;

  gap: 20px;

}



.store-locator-result-card {

  display: flex;

  gap: 20px;

  background: var(--color-bg-soft);

  border-radius: 12px;

  padding: 20px;

  transition: box-shadow 0.25s ease;

}



.store-locator-result-card:hover {

  box-shadow: 0 4px 16px rgba(179, 18, 29, 0.12);

}



.store-locator-result-card__image {

  width: 120px;

  min-width: 120px;

  height: 120px;

  border-radius: 10px;

  overflow: hidden;

}



.store-locator-result-card__image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.store-locator-result-card__info {

  flex: 1;

  min-width: 0;

}



.store-locator-result-card__product {

  font-size: 1.1rem;

  font-weight: 700;

  color: var(--color-text);

  margin: 0 0 12px;

  font-family: "Lato", Arial, sans-serif;

}



.store-locator-result-card__stores {

  list-style: none;

  margin: 0;

  padding: 0;

}



.store-locator-result-card__stores li {

  padding: 8px 0;

  border-bottom: 1px solid #e8d5b8;

  display: flex;

  flex-wrap: wrap;

  gap: 4px 16px;

  align-items: baseline;

}



.store-locator-result-card__stores li:last-child {

  border-bottom: none;

}



.store-locator-result-card__stores li strong {

  font-size: 0.95rem;

  color: var(--color-text);

  min-width: 140px;

  font-weight: 700;

}



.store-locator-result-card__stores li span {

  font-size: 0.88rem;

  color: #6a4a2e;

  font-family: "Lato", Arial, sans-serif;

}



.store-locator-result-card__distance {

  font-size: 0.85rem;

  font-weight: 700;

  color: var(--color-primary);

  margin-left: auto;

}



/* ============================================================

   SEARCH PAGE - 搜索结果

   ============================================================ */

.search-page {

  max-width: 800px;

  margin: 0 auto;

}



.search-page__form {

  margin-bottom: 48px;

}



.search-page-form {

  display: flex;

  gap: 12px;

  align-items: stretch;

}



.search-page-form__input-wrap {

  flex: 1;

  position: relative;

}



.search-page-form__input {

  width: 100%;

  padding: 16px 20px 16px 52px;

  border: 2px solid #f0d5d8;

  border-radius: 12px;

  font-family: "Lato", Arial, sans-serif;

  font-size: 16px;

  color: var(--color-text);

  background: #FFFFFF;

  outline: none;

  transition: border-color 0.3s ease, box-shadow 0.3s ease;

  box-sizing: border-box;

}



.search-page-form__input:focus {

  border-color: var(--color-primary);

  box-shadow: 0 0 0 4px rgba(154, 93, 9, 0.15);

}



.search-page-form__icon {

  position: absolute;

  left: 18px;

  top: 50%;

  transform: translateY(-50%);

  width: 20px;

  height: 20px;

  color: var(--color-primary);

  pointer-events: none;

}



.search-page-form__button {

  padding: 16px 32px;

  border: none;

  border-radius: 12px;

  background: var(--color-primary);

  color: #FFFFFF;

  font-family: "Lato", Arial, sans-serif;

  font-size: 16px;

  font-weight: 700;

  letter-spacing: 0.5px;

  cursor: pointer;

  transition: background 0.3s ease, transform 0.2s ease;

  white-space: nowrap;

}



.search-page-form__button:hover {

  background: var(--color-primary-hover);

  transform: translateY(-1px);

}



.search-page-form__button:active {

  transform: translateY(0);

}



.search-results__list {

  display: flex;

  flex-direction: column;

  gap: 20px;

}



.search-result-item {

  background: #FFFFFF;

  border-radius: 12px;

  padding: 28px 32px;

  box-shadow: 0 2px 12px rgba(100, 47, 13, 0.06);

  border: 1px solid #f0d5d8;

  transition: box-shadow 0.3s ease, border-color 0.3s ease;

}



.search-result-item:hover {

  box-shadow: 0 6px 24px rgba(100, 47, 13, 0.1);

  border-color: var(--color-primary);

}



.search-result-item__image {

  width: 100%;

  max-height: 220px;

  object-fit: cover;

  border-radius: 8px;

  margin-bottom: 16px;

}



.search-result-item__title {

  font-family: "Lobster", cursive;

  font-size: 20px;

  font-weight: normal;

  color: var(--color-text);

  margin: 0 0 8px 0;

  line-height: 1.4;

}



.search-result-item__title a {

  color: inherit;

  text-decoration: none;

  transition: color 0.3s ease;

}



.search-result-item:hover .search-result-item__title a {

  color: var(--color-primary);

}



.search-result-item__snippet {

  font-family: "Lato", Arial, sans-serif;

  font-size: 15px;

  color: var(--color-text);

  opacity: 0.85;

  line-height: 1.7;

  margin: 0 0 12px 0;

}



.search-result-item__link {

  font-family: "Lato", Arial, sans-serif;

  font-size: 13px;

  color: var(--color-primary);

  text-decoration: none;

  letter-spacing: 0.5px;

  font-weight: 700;

  transition: color 0.3s ease;

  text-transform: uppercase;

}



.search-result-item__link:hover {

  color: var(--color-text);

}



.search-empty {

  text-align: center;

  padding: 60px 20px;

}



.search-empty__icon {

  width: 64px;

  height: 64px;

  color: var(--color-primary);

  margin: 0 auto 20px;

}



.search-empty__title {

  font-family: "Lobster", cursive;

  font-size: 24px;

  font-weight: normal;

  color: var(--color-text);

  margin: 0 0 12px 0;

}



.search-empty__text {

  font-family: "Lato", Arial, sans-serif;

  font-size: 16px;

  color: var(--color-primary);

  max-width: 480px;

  margin: 0 auto;

  line-height: 1.7;

}



.search-results__pagination {

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 8px;

  margin-top: 40px;

  flex-wrap: wrap;

}



.search-results__pagination a,

.search-results__pagination span {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-width: 40px;

  height: 40px;

  padding: 0 14px;

  border: 1px solid #f0d5d8;

  border-radius: 8px;

  font-family: "Lato", Arial, sans-serif;

  font-size: 14px;

  color: var(--color-primary);

  text-decoration: none;

  background: #FFFFFF;

  transition: all 0.3s ease;

}



.search-results__pagination a:hover {

  border-color: var(--color-primary);

  color: var(--color-text);

  background: #fdf0f1;

}



.search-results__pagination .page-num-current,

.search-results__pagination .active {

  background: var(--color-text);

  color: #FFFAF0;

  border-color: var(--color-text);

}



.search-results__pagination .page-status {

  border: none;

  background: transparent;

  color: var(--color-primary);

  cursor: default;

}



/* ============================================================

   RESPONSIVE - Tablet (≤992px)

   ============================================================ */

@media (max-width: 992px) {

  .page-hero {

    height: 260px;

  }



  .page-hero__title {

    font-size: 36px;

  }



  .page-hero__wave svg {

    height: 60px;

  }



  .page-content {

    padding: 60px 0;

  }



  .page-section__title {

    font-size: 30px;

  }



  .news-page-title {

    font-size: 40px;

  }



  .news-item {

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    -ms-flex-direction: column;

    flex-direction: column;

  }



  .news-item__image-wrap {

    width: 100%;

    aspect-ratio: 16 / 9;

  }



  .news-item__text {

    width: 100%;

    padding: 30px;

  }



  .news-item__title {

    font-size: 26px;

  }



  .recipe-grid {

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;

  }



  .contact-grid {

    grid-template-columns: 1fr;

    gap: 40px;

  }



  .store-locator-result-card {

    flex-direction: column;

    align-items: center;

    text-align: center;

  }



  .store-locator-result-card__image {

    width: 100px;

    min-width: 100px;

    height: 100px;

  }



  .store-locator-result-card__stores li {

    flex-direction: column;

    align-items: center;

    gap: 2px;

  }



  .store-locator-result-card__distance {

    margin-left: 0;

  }

}



/* ============================================================

   RESPONSIVE - Mobile (≤768px)

   ============================================================ */

@media (max-width: 768px) {

  .page-hero {

    height: 220px;

  }



  .page-hero__title {

    font-size: 30px;

  }



  .page-hero__subtitle {

    font-size: 14px;

  }



  .page-hero__subline {

    font-size: 12px;

    letter-spacing: 1.5px;

  }



  .page-content {

    padding: 48px 0;

  }



  .page-section__header {

    margin-bottom: 40px;

  }



  .page-section__title {

    font-size: 26px;

  }



  .news-header {

    padding: 40px 0 30px;

  }



  .news-page-title {

    font-size: 32px;

  }



  .news-social__link {

    width: 48px;

    height: 48px;

  }



  .news-item__text {

    padding: 24px;

  }



  .news-item__title {

    font-size: 22px;

  }



  .news-item__date {

    font-size: 14px;

  }



  .recipe-grid {

    grid-template-columns: 1fr;

    gap: 20px;

  }



  .contact-form__row {

    flex-direction: column;

    gap: 0;

  }



  .contact-info__card {

    padding: 24px;

  }



  .contact-info__title {

    font-size: 24px;

  }



  .faq-question {

    padding: 18px 50px 18px 18px;

    font-size: 15px;

  }



  .faq-question__icon {

    right: 18px;

  }



  .faq-answer {

    padding: 0 18px;

  }



  .faq-item.active .faq-answer {

    padding-bottom: 18px;

  }



  .recipe-filter__grid {

    gap: 8px;

  }



  .recipe-filter__btn {

    font-size: 12px;

    padding: 8px 16px;

  }



  .online-retailers {

    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));

    gap: 16px;

  }



  .store-locator-form__row {

    flex-direction: column;

    gap: 12px;

  }



  .store-locator-form__group,

  .store-locator-form__group--zip,

  .store-locator-form__group--radius,

  .store-locator-form__group--action {

    flex: 1 1 auto;

    width: 100%;

  }



  .store-locator-form__group--action .btn {

    width: 100%;

  }



  .search-page-form {

    flex-direction: column;

  }



  .search-page-form__button {

    width: 100%;

  }



  .search-result-item {

    padding: 20px;

  }

}



/* ============================================================

   RESPONSIVE - Small Mobile (≤480px)

   ============================================================ */

@media (max-width: 480px) {

  .page-hero {

    height: 180px;

  }



  .page-hero__title {

    font-size: 26px;

  }



  .page-hero__wave svg {

    height: 50px;

  }



  .online-retailers {

    grid-template-columns: 1fr 1fr;

    gap: 12px;

  }



  .online-retailer-card__logo {

    width: 100px;

    height: 44px;

  }



  .online-retailer-card__name {

    font-size: 1rem;

  }

}



/* ============================================================

   DETAIL PAGE - Breadcrumb

   ============================================================ */

.detail-breadcrumb {

  background-color: #FFFFFF;

  border-bottom: 1px solid #f0d5d8;

  padding: 16px 0;

  margin-top: 88px;

}



.breadcrumb-nav {

  font-family: "Lato", Arial, sans-serif;

  font-size: 13px;

}



.breadcrumb-nav a {

  color: var(--color-primary);

  text-decoration: none;

  transition: color 0.2s ease;

}



.breadcrumb-nav a:hover {

  color: var(--color-primary-hover);

}



.breadcrumb-nav span {

  margin: 0 8px;

  color: #C4A882;

}



/* ============================================================

   DETAIL PAGE - Hero Section

   ============================================================ */

.detail-hero {

  background-color: var(--color-bg);

  padding: 60px 0 40px;

}



.detail-hero__grid {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  gap: 60px;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

}



.detail-hero__image {

  -webkit-box-flex: 1;

  -ms-flex: 1;

  flex: 1;

}



.detail-hero__image img {

  width: 100%;

  border-radius: 12px;

  -webkit-box-shadow: 0 8px 32px rgba(100, 47, 13, 0.15);

  box-shadow: 0 8px 32px rgba(100, 47, 13, 0.15);

  display: block;

  object-fit: cover;

}



.detail-hero__content {

  -webkit-box-flex: 1;

  -ms-flex: 1;

  flex: 1;

}



.detail-hero__title {

  font-family: "Lobster", cursive;

  font-size: 42px;

  font-weight: normal;

  color: var(--color-text);

  line-height: 1.2;

  margin: 0 0 16px 0;

}



.detail-hero__subtitle {

  font-family: "Lato", Arial, sans-serif;

  font-size: 18px;

  color: var(--color-primary);

  line-height: 1.6;

  margin: 0 0 24px 0;

  font-style: italic;

}



.detail-hero__meta {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

  flex-wrap: wrap;

  gap: 20px;

  margin-bottom: 24px;

  padding-bottom: 24px;

  border-bottom: 1px solid #f0d5d8;

}



.detail-hero__meta-item {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  gap: 8px;

  font-family: "Lato", Arial, sans-serif;

  font-size: 14px;

  color: var(--color-primary);

}



.detail-hero__meta-item i {

  font-size: 14px;

}



.detail-hero__tags {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

  flex-wrap: wrap;

  gap: 10px;

  margin-bottom: 32px;

}



.detail-tag {

  display: inline-block;

  padding: 6px 16px;

  font-family: "Lato", Arial, sans-serif;

  font-size: 13px;

  font-weight: 700;

  color: var(--color-primary);

  background-color: #FFFFFF;

  border: 1px solid #f0d5d8;

  border-radius: 20px;

  text-decoration: none;

  text-transform: uppercase;

  letter-spacing: 0.5px;

  -webkit-transition: all 0.2s ease;

  transition: all 0.2s ease;

}



.detail-tag:hover {

  background-color: var(--color-primary);

  color: #FFFFFF;

  border-color: var(--color-primary);

}



.detail-hero__actions {

  margin-top: 8px;

}



.detail-back-btn {

  display: -webkit-inline-box;

  display: -ms-inline-flexbox;

  display: inline-flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  gap: 10px;

}



/* ============================================================

   DETAIL PAGE - Content Section

   ============================================================ */

.detail-content {

  background-color: var(--color-bg);

  padding: 40px 0 80px;

}



.detail-content__wrapper {

  max-width: 800px;

  margin: 0 auto;

}



.detail-content__body {

  background-color: #FFFFFF;

  padding: 50px 60px;

  border-radius: 12px;

  -webkit-box-shadow: 0 4px 20px rgba(100, 47, 13, 0.06);

  box-shadow: 0 4px 20px rgba(100, 47, 13, 0.06);

  font-family: "Lato", Arial, sans-serif;

  font-size: 16px;

  line-height: 1.8;

  color: var(--color-text);

}



.detail-content__body h1,

.detail-content__body h2,

.detail-content__body h3,

.detail-content__body h4,

.detail-content__body h5,

.detail-content__body h6 {

  font-family: "Lobster", cursive;

  font-weight: normal;

  color: var(--color-text);

  margin-top: 32px;

  margin-bottom: 16px;

  line-height: 1.3;

}



.detail-content__body h1 { font-size: 32px; }

.detail-content__body h2 { font-size: 28px; }

.detail-content__body h3 { font-size: 24px; }

.detail-content__body h4 { font-size: 20px; }



.detail-content__body p {

  margin-bottom: 20px;

}



.detail-content__body a {

  color: var(--color-primary);

  text-decoration: underline;

  -webkit-transition: color 0.2s ease;

  transition: color 0.2s ease;

}



.detail-content__body a:hover {

  color: var(--color-primary-hover);

}



.detail-content__body img {

  max-width: 100%;

  height: auto;

  border-radius: 8px;

  margin: 20px auto;

  display: block;

}



.detail-content__body ul,

.detail-content__body ol {

  margin-bottom: 20px;

  padding-left: 24px;

}



.detail-content__body ul {

  list-style: disc;

}



.detail-content__body ol {

  list-style: decimal;

}



.detail-content__body li {

  margin-bottom: 8px;

}



.detail-content__body blockquote {

  border-left: 4px solid var(--color-primary);

  padding: 16px 24px;

  margin: 24px 0;

  background-color: #fdf0f1;

  font-style: italic;

  color: var(--color-text);

  border-radius: 0 8px 8px 0;

}



.detail-content__body table {

  width: 100%;

  border-collapse: collapse;

  margin: 24px 0;

}



.detail-content__body th,

.detail-content__body td {

  border: 1px solid #f0d5d8;

  padding: 12px 16px;

  text-align: left;

}



.detail-content__body th {

  background-color: #fdf0f1;

  font-weight: 700;

  color: var(--color-text);

}



/* ============================================================

   DETAIL PAGE - Gallery

   ============================================================ */

.detail-gallery {

  display: -ms-grid;

  display: grid;

  -ms-grid-columns: 1fr 1fr 1fr;

  grid-template-columns: repeat(3, 1fr);

  gap: 16px;

  margin-top: 40px;

}



.detail-gallery__item {

  overflow: hidden;

  border-radius: 8px;

  -webkit-box-shadow: 0 4px 16px rgba(100, 47, 13, 0.1);

  box-shadow: 0 4px 16px rgba(100, 47, 13, 0.1);

  cursor: pointer;

  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.detail-gallery__item:hover {

  -webkit-transform: translateY(-4px);

  transform: translateY(-4px);

  -webkit-box-shadow: 0 8px 24px rgba(100, 47, 13, 0.16);

  box-shadow: 0 8px 24px rgba(100, 47, 13, 0.16);

}



.detail-gallery__item img {

  width: 100%;

  height: 160px;

  object-fit: cover;

  display: block;

  -webkit-transition: -webkit-transform 0.5s ease;

  transition: transform 0.5s ease;

}



.detail-gallery__item:hover img {

  -webkit-transform: scale(1.08);

  transform: scale(1.08);

}



/* ============================================================

   DETAIL PAGE - Related Section

   ============================================================ */

.detail-related {

  background-color: #fdf0f1;

  padding: 80px 0;

}



.detail-related__grid {

  display: -ms-grid;

  display: grid;

  -ms-grid-columns: 1fr 1fr 1fr 1fr;

  grid-template-columns: repeat(4, 1fr);

  gap: 28px;

}



.detail-related__item {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  text-align: center;

  text-decoration: none;

  -webkit-transition: -webkit-transform 0.3s ease;

  transition: transform 0.3s ease;

}



.detail-related__item:hover {

  -webkit-transform: translateY(-8px);

  transform: translateY(-8px);

}



.detail-related__image-wrap {

  position: relative;

  width: 100%;

  max-width: 220px;

  aspect-ratio: 1;

  margin-bottom: 20px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

}



.detail-related__image-bg {

  position: absolute;

  top: 50%;

  left: 50%;

  -webkit-transform: translate(-50%, -50%);

  transform: translate(-50%, -50%);

  width: 85%;

  height: 85%;

  background-color: #FFFFFF;

  border-radius: 50%;

  -webkit-box-shadow: 0 4px 20px rgba(100, 47, 13, 0.08);

  box-shadow: 0 4px 20px rgba(100, 47, 13, 0.08);

}



.detail-related__image {

  position: relative;

  z-index: 1;

  width: 70%;

  height: 70%;

  object-fit: contain;

}



.detail-related__title {

  font-family: "Lobster", cursive;

  font-size: 20px;

  font-weight: normal;

  color: var(--color-text);

  margin: 0 0 12px 0;

  line-height: 1.3;

  -webkit-transition: color 0.2s ease;

  transition: color 0.2s ease;

}



.detail-related__item:hover .detail-related__title {

  color: var(--color-primary);

}



.detail-related__link {

  display: -webkit-inline-box;

  display: -ms-inline-flexbox;

  display: inline-flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  gap: 8px;

  font-family: "Lato", Arial, sans-serif;

  font-size: 13px;

  font-weight: 700;

  color: var(--color-primary);

  text-transform: uppercase;

  letter-spacing: 1px;

  -webkit-transition: gap 0.3s ease, color 0.2s ease;

  transition: gap 0.3s ease, color 0.2s ease;

}



.detail-related__item:hover .detail-related__link {

  gap: 12px;

  color: var(--color-text);

}



.detail-related__link i {

  -webkit-transition: -webkit-transform 0.3s ease;

  transition: transform 0.3s ease;

}



.detail-related__item:hover .detail-related__link i {

  -webkit-transform: translateX(4px);

  transform: translateX(4px);

}



/* ============================================================

   DETAIL PAGE - Pagination (Prev/Next)

   ============================================================ */

.detail-pagination {

  background-color: var(--color-bg);

  padding: 40px 0;

}



.detail-pagination__wrap {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;

  gap: 30px;

  padding: 30px 0;

  border-top: 1px solid #f0d5d8;

  border-bottom: 1px solid #f0d5d8;

}



.detail-pagination__prev,

.detail-pagination__next {

  -webkit-box-flex: 1;

  -ms-flex: 1;

  flex: 1;

}



.detail-pagination__next {

  text-align: right;

}



.detail-pagination__label {

  display: block;

  font-family: "Lato", Arial, sans-serif;

  font-size: 12px;

  font-weight: 700;

  color: var(--color-primary);

  text-transform: uppercase;

  letter-spacing: 1.5px;

  margin-bottom: 8px;

}



.detail-pagination__content {

  font-family: "Lato", Arial, sans-serif;

  font-size: 16px;

  color: var(--color-text);

}



.detail-pagination__content a {

  color: var(--color-text);

  text-decoration: none;

  -webkit-transition: color 0.2s ease;

  transition: color 0.2s ease;

}



.detail-pagination__content a:hover {

  color: var(--color-primary);

}



/* ============================================================

   DETAIL PAGE - Bottom Actions

   ============================================================ */

.detail-bottom-actions {

  background-color: var(--color-bg);

  padding: 40px 0 80px;

}



/* ============================================================

   FACTORY PAGE - Full-width single column layout

   Slider + Title + Text full-width stacked

   ============================================================ */

.factory-page {

  position: relative;

  width: 100%;

  overflow: hidden;

}



/* --- Content area --- */

.factory-main {

  width: 100%;

  padding-bottom: 60px;

}



/* --- 轮播 --- */

.factory-slider {

  position: relative;

  width: 100%;

  overflow: hidden;

  margin-bottom: 0;

}



.factory-slider__track {

  display: flex;

  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  width: 100%;

}



.factory-slider__slide {

  flex: 0 0 100%;

  width: 100%;

}



.factory-slider__slide img {

  display: block;

  width: 100%;

  height: auto;

  aspect-ratio: 4 / 3;

  object-fit: cover;

  object-position: center;

}



.factory-slider__arrow {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 44px;

  height: 44px;

  border-radius: 50%;

  background-color: rgba(255, 255, 255, 0.85);

  border: none;

  color: var(--color-text);

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;

  z-index: 10;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);

  transition: background-color 0.3s ease, transform 0.2s ease;

}



.factory-slider__arrow:hover {

  background-color: #ffffff;

  transform: translateY(-50%) scale(1.1);

}



.factory-slider__arrow--prev { left: 16px; }

.factory-slider__arrow--next { right: 16px; }



.factory-slider__dots {

  position: absolute;

  bottom: 16px;

  left: 50%;

  transform: translateX(-50%);

  display: flex;

  gap: 8px;

  z-index: 10;

}



.factory-slider__dot {

  width: 12px;

  height: 12px;

  border-radius: 50%;

  background-color: rgba(255, 255, 255, 0.5);

  border: none;

  padding: 0;

  cursor: pointer;

  transition: background-color 0.3s ease, transform 0.2s ease;

}



.factory-slider__dot:hover {

  background-color: rgba(255, 255, 255, 0.85);

  transform: scale(1.2);

}



.factory-slider__dot.active {

  background-color: #ffffff;

  transform: scale(1.2);

}



/* --- 标题 + 正文 --- */

.factory-article {

  padding: 50px 30px;

}



.factory-article__title {

  font-family: var(--font-heading);

  font-size: 33px;

  color: var(--color-primary);

  text-transform: uppercase;

  letter-spacing: 2px;

  margin: 0 0 24px;

  font-weight: normal;

}



.factory-article__body p {

  font-size: 15px;

  line-height: 1.7;

  color: var(--color-text);

  margin: 0 0 16px;

}



.factory-article__body p:last-child {

  margin-bottom: 0;

}



/* --- Widescreen (≥1030px) --- */

@media (min-width: 1030px) {

  .factory-article {

    padding: 60px 80px;

  }

}



/* --- 超宽屏 (≥1240px) --- */

@media (min-width: 1240px) {

  .factory-article {

    padding: 80px;

  }



  .factory-article__title {

    font-size: 38px;

  }



  .factory-article__body p {

    font-size: 16px;

  }

}



/* --- 平板 (≤1029px) --- */

@media (max-width: 1029px) {

  .factory-slider__slide img {

    aspect-ratio: 16 / 9;

  }

}



/* --- 移动端 (≤768px) --- */

@media (max-width: 768px) {

  .factory-article {

    padding: 36px 20px;

  }

  .factory-article__title {

    font-size: 26px;

  }

  .factory-article__body p {

    font-size: 14px;

  }

  .factory-slider__arrow {

    width: 36px;

    height: 36px;

  }

  .factory-slider__arrow--prev { left: 10px; }

  .factory-slider__arrow--next { right: 10px; }

  .factory-slider__dots { bottom: 12px; gap: 6px; }

  .factory-slider__dot { width: 10px; height: 10px; }

}



/* --- 小屏手机 (≤480px) --- */

@media (max-width: 480px) {

  .factory-slider__slide img {

    aspect-ratio: 3 / 2;

  }

  .factory-slider__arrow {

    width: 30px;

    height: 30px;

  }

  .factory-slider__arrow svg {

    width: 16px;

    height: 16px;

  }

  .factory-article__title {

    font-size: 22px;

  }

}



/* ============================================================

   CONTACT PAGE - Hero

   ============================================================ */

.contact-hero {

  position: relative;

  width: 100%;

  height: 400px;

  overflow: hidden;

}



.contact-hero__bg {

  width: 100%;

  height: 100%;

  -o-object-fit: cover;

  object-fit: cover;

  -o-object-position: center;

  object-position: center;

  display: block;

}



.contact-hero__wave {

  position: absolute;

  bottom: -1px;

  left: 0;

  width: 100%;

  height: 80px;

  line-height: 0;

}



.contact-hero__wave svg {

  width: 100%;

  height: 100%;

  display: block;

}



/* ============================================================

   CONTACT PAGE - Section

   ============================================================ */

.contact-section {

  background-color: var(--color-bg);

  padding: 20px 0 80px;

}



.contact-header {

  text-align: center;

  margin-bottom: 40px;

}



.contact-header__title {

  font-family: "Lato", Arial, sans-serif;

  font-size: 50px;

  font-weight: 900;

  color: var(--color-text);

  margin: 0 0 20px;

  font-style: italic;

  letter-spacing: 1px;

}



.contact-header__subtitle {

  max-width: 700px;

  margin: 0 auto;

  font-family: "Lato", Arial, sans-serif;

  font-size: 24px;

  line-height: 1.5;

  color: var(--color-text);

  font-weight: 700;

}



.contact-address {

  text-align: center;

  margin-bottom: 50px;

  color: var(--color-primary);

}



.contact-address__label {

  font-family: "Lato", Arial, sans-serif;

  font-size: 22px;

  font-weight: 700;

  color: var(--color-text);

  margin: 0 0 8px;

}



.contact-address__text {

  font-family: "Lato", Arial, sans-serif;

  font-size: 20px;

  line-height: 1.6;

  color: var(--color-primary);

  margin: 0;

  font-weight: 700;

}



/* ============================================================

   CONTACT PAGE - Form

   ============================================================ */

.contact-form {

  max-width: 626px;

  margin: 0 auto;

}



.contact-form__group {

  margin-bottom: 20px;

}



.contact-form__row {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  gap: 20px;

  margin-bottom: 20px;

}



.contact-form__group--half {

  -webkit-box-flex: 1;

  -ms-flex: 1;

  flex: 1;

  margin-bottom: 0;

}



.contact-form__label {

  display: block;

  font-family: "Lato", Arial, sans-serif;

  font-size: 18px;

  font-weight: 700;

  color: var(--color-text);

  margin-bottom: 8px;

}



.contact-form__required {

  color: var(--color-primary);

  font-weight: 900;

}



.contact-form__input {

  width: 100%;

  height: 48px;

  padding: 7px 15px 11px;

  font-family: "Lato", Arial, sans-serif;

  font-size: 20px;

  color: var(--color-text);

  background-color: #fff;

  border: none;

  border-radius: 5px;

  -webkit-box-sizing: border-box;

  box-sizing: border-box;

  outline: none;

  -webkit-transition: -webkit-box-shadow 0.3s ease;

  transition: -webkit-box-shadow 0.3s ease;

  transition: box-shadow 0.3s ease;

  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;

}



.contact-form__input:focus {

  -webkit-box-shadow: 0 0 0 3px rgba(179, 18, 29, 0.2);

  box-shadow: 0 0 0 3px rgba(179, 18, 29, 0.2);

}



.contact-form__input::-webkit-input-placeholder {

  color: var(--color-text-light);

}



.contact-form__input::-moz-placeholder {

  color: var(--color-text-light);

}



.contact-form__input:-ms-input-placeholder {

  color: var(--color-text-light);

}



.contact-form__input::-ms-input-placeholder {

  color: var(--color-text-light);

}



.contact-form__input::placeholder {

  color: var(--color-text-light);

}



select.contact-form__input {

  -webkit-appearance: none;

  -moz-appearance: none;

  appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23642F0D' d='M6 8L0 0h12z'/%3E%3C/svg%3E");

  background-repeat: no-repeat;

  background-position: right 15px center;

  background-size: 12px 8px;

  padding-right: 40px;

  cursor: pointer;

}



.contact-form__textarea {

  height: auto;

  min-height: 280px;

  padding-top: 12px;

  padding-bottom: 12px;

  resize: vertical;

  line-height: 1.6;

}



.contact-form__captcha-row {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  gap: 15px;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

}



.contact-form__input--captcha {

  -webkit-box-flex: 1;

  -ms-flex: 1;

  flex: 1;

}



.contact-form__captcha-img {

  height: 48px;

  border-radius: 5px;

  cursor: pointer;

  border: 1px solid var(--color-border);

}



.contact-form__submit {

  text-align: center;

  margin-top: 30px;

}



.contact-form__btn {

  display: inline-block;

  padding: 14px 60px;

  font-family: "Lato", Arial, sans-serif;

  font-size: 18px;

  font-weight: 900;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #fff;

  background-color: var(--color-primary);

  border: 3px solid var(--color-primary);

  border-radius: 5px;

  cursor: pointer;

  -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.2s ease;

  transition: background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.2s ease;

  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;

  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;

}



.contact-form__btn:hover {

  background-color: var(--color-primary-hover);

  border-color: var(--color-primary-hover);

  -webkit-transform: translateY(-2px);

  transform: translateY(-2px);

}



.contact-form__note {

  text-align: right;

  font-family: "Lato", Arial, sans-serif;

  font-size: 14px;

  color: var(--color-text);

  margin-top: 15px;

  margin-bottom: 0;

}



/* ============================================================

   DETAIL CONTENT META

   ============================================================ */

.detail-content__meta {

  display: flex;

  flex-wrap: wrap;

  gap: 24px;

  margin-top: 40px;

  padding: 20px 0;

  border-top: 1px solid var(--color-border);

  border-bottom: 1px solid var(--color-border);

  color: var(--color-text);

  font-size: 14px;

}



.detail-content__date,

.detail-content__author {

  display: inline-flex;

  align-items: center;

  gap: 8px;

}



.detail-content__date i,

.detail-content__author i {

  color: var(--color-primary);

}



.detail-content__body {

  color: var(--color-text);

  line-height: 1.7;

}



.detail-content__body h2,

.detail-content__body h3,

.detail-content__body h4 {

  font-family: var(--font-heading);

  color: var(--color-text);

  margin-top: 32px;

  margin-bottom: 16px;

  font-weight: normal;

}



.detail-content__body h2 {

  font-size: 32px;

}



.detail-content__body h3 {

  font-size: 26px;

}



.detail-content__body p {

  margin-bottom: 18px;

}



.detail-content__body img {

  max-width: 100%;

  height: auto;

  border-radius: var(--border-radius);

  margin: 20px 0;

}



.detail-content__body a {

  color: var(--color-primary);

  text-decoration: underline;

  text-underline-offset: 3px;

}



.detail-content__body a:hover {

  color: var(--color-primary-hover);

}



/* ============================================================

   ABOUT HERO (Default styles, desktop in @media below)

   ============================================================ */

.about-hero {

  position: relative;

  min-height: 320px;

  background-color: var(--color-bg-soft);

  overflow: hidden;

  margin-top: -1px;

}



.about-hero__image {

  width: 100%;

  height: 320px;

  object-fit: cover;

  display: block;

}



.about-hero__wave {

  position: absolute;

  bottom: -1px;

  left: 0;

  width: 100%;

  z-index: 2;

  line-height: 0;

}



.about-hero__wave svg {

  width: 100%;

  height: 50px;

  display: block;

}



/* ============================================================

   ABOUT TIMELINE

   ============================================================ */

.about-timeline {

  padding: 40px 0 60px;

  background-color: var(--color-bg);

}



.about-timeline__header {

  text-align: center;

  margin-bottom: 40px;

}



.about-timeline__title {

  font-family: var(--font-heading);

  font-size: 32px;

  color: var(--color-text);

  font-weight: normal;

  line-height: 1.2;

  margin: 0;

}



.timeline-slider {

  position: relative;

  max-width: 1024px;

  margin: 0 auto;

}



.timeline-slider__viewport {

  overflow: hidden;

  margin: 0 60px;

}



.timeline-slider__track {

  display: flex;

  transition: transform 0.5s ease;

  width: 100%;

}



.timeline-slider__slide {

  flex: 0 0 100%;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 30px;

  padding: 0 10px;

}



.timeline-card {

  background-color: var(--color-bg-soft);

  border-radius: var(--border-radius-lg);

  padding: 24px;

  text-align: center;

}



.timeline-card--empty {

  background: transparent;

}



.timeline-card__image-wrap {

  width: 140px;

  height: 140px;

  margin: 0 auto 20px;

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

}



.timeline-card__image-bg {

  position: absolute;

  inset: 0;

  background: radial-gradient(circle, var(--color-bg-soft) 0%, transparent 70%);

  border-radius: 50%;

  z-index: 1;

}



.timeline-card__image {

  position: relative;

  z-index: 2;

  max-width: 90%;

  max-height: 90%;

  object-fit: contain;

}



.timeline-card__year {

  font-size: 22px;

  font-weight: 700;

  color: var(--color-primary);

  margin: 0 0 8px;

}



.timeline-card__title {

  font-family: var(--font-body-bold);

  font-size: 18px;

  color: var(--color-text);

  margin: 0 0 12px;

  line-height: 1.3;

  font-weight: 700;

}



.timeline-card__desc {

  font-size: 14px;

  line-height: 1.6;

  color: var(--color-text);

  margin: 0;

}



.timeline-slider__btn {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 44px;

  height: 44px;

  background-color: var(--color-white);

  border: 1px solid var(--color-border);

  border-radius: 50%;

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--color-primary);

  z-index: 5;

  transition: all 0.2s ease;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

}



.timeline-slider__btn:hover {

  background-color: var(--color-primary);

  color: var(--color-white);

}



.timeline-slider__btn svg {

  width: 20px;

  height: 20px;

}



.timeline-slider__btn--prev {

  left: 0;

}



.timeline-slider__btn--next {

  right: 0;

}



.timeline-slider__dots {

  display: flex;

  justify-content: center;

  gap: 8px;

  margin-top: 30px;

}



.timeline-slider__dot {

  width: 10px;

  height: 10px;

  border-radius: 50%;

  background-color: rgba(100, 47, 13, 0.2);

  border: none;

  cursor: pointer;

  padding: 0;

  transition: all 0.2s ease;

}



.timeline-slider__dot.is-active {

  background-color: var(--color-primary);

  width: 28px;

  border-radius: 5px;

}



/* ============================================================

   ABOUT TODAY SECTION

   ============================================================ */

.about-today {

  padding: 60px 0 80px;

  background-color: var(--color-bg);

}



.about-today__title {

  font-family: var(--font-heading);

  font-size: 36px;

  text-align: center;

  color: var(--color-text);

  font-weight: normal;

  margin: 0 0 40px;

}



.about-today__grid {

  display: grid;

  grid-template-columns: 1fr;

  gap: 30px;

  max-width: 900px;

  margin: 0 auto;

}



@media (min-width: 768px) {

  .about-today__grid {

    grid-template-columns: 1fr 1fr;

    gap: 50px;

  }

}



.about-today__text p {

  font-size: 16px;

  line-height: 1.7;

  color: var(--color-text);

  margin: 0;

}





/* ============================================================

   SANLI PRODUCTS PAGE - 1:1 Replica of sanli.us/home/products

   Series = green title band + colored product band

   Effects: parallax fruit + texture backscroll + button pulse

   ============================================================ */



/* --- Root: clips floating fruit that drifts out of bounds --- */

.sanli-root {

  position: relative;

  width: 100%;

  overflow: hidden;

  font-size: 10px;

}

@media (min-width: 768px) { .sanli-root { font-size: 12px; } }

@media (min-width: 1280px) { .sanli-root { font-size: 14px; } }



.sanli-products {

  position: relative;

  width: 100%;

}



.sanli-family {

  position: relative;

  width: 100%;

}



/* --- Band base --- */

.sanli-band {

  position: relative;

  width: 100%;

}

.sanli-band-inner {

  position: relative;

  z-index: 2;

  width: 64em;

  max-width: 100%;

  margin: 0 auto;

  text-align: center;

}



/* --- Green Title Band --- */

.sanli-band-title {

  background-color: #39b54a;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='rgba(255,255,255,0.07)' stroke-width='1'/%3E%3C/svg%3E");

  background-size: 6em 6em;

  padding: 5em 2em 4.2em;

  text-align: center;

}



.sanli-title {

  font-family: "Arial Black", "Lato", Arial, sans-serif;

  font-weight: 900;

  font-size: 3.2em;

  line-height: 1.15;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  color: #ffffff;

  margin: 0 0 0.5em;

  text-shadow: 0 0.08em 0 rgba(0, 0, 0, 0.18);

}



.sanli-subtitle {

  font-family: "Lato", Arial, sans-serif;

  font-size: 1.3em;

  line-height: 1.4;

  letter-spacing: 0.22em;

  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.92);

  margin: 0 auto;

  max-width: 46em;

  font-weight: 700;

}



/* --- Floating Fruit Decorations (parallax, injected by JS) --- */

.sanli-decorator {

  position: absolute;

  width: 9em;

  height: 9em;

  background-size: contain;

  background-repeat: no-repeat;

  background-position: center;

  pointer-events: none;

  z-index: 1;

  will-change: transform;

}



/* --- Product Band (colored + texture, backscroll via JS) --- */

.sanli-band-products {

  padding: 5em 2em;

  background-repeat: repeat;

  background-size: 12em 12em;

}



/* Theme colors */

.sanli-theme-pink .sanli-band-products {

  background-color: #ee2868;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.10)'/%3E%3Ccircle cx='90' cy='80' r='2' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");

}

.sanli-theme-cyan .sanli-band-products {

  background-color: #36dadc;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.12)'/%3E%3Ccircle cx='90' cy='80' r='2' fill='rgba(255,255,255,0.10)'/%3E%3C/svg%3E");

}

.sanli-theme-yellow .sanli-band-products {

  background-color: #ffcc02;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(0,0,0,0.06)'/%3E%3Ccircle cx='90' cy='80' r='2' fill='rgba(0,0,0,0.05)'/%3E%3C/svg%3E");

}

.sanli-theme-green .sanli-band-products {

  background-color: #4caf50;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.10)'/%3E%3Ccircle cx='90' cy='80' r='2' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");

}

.sanli-theme-red .sanli-band-products {

  background-color: #d32f2f;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.10)'/%3E%3Ccircle cx='90' cy='80' r='2' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");

}

.sanli-theme-blue .sanli-band-products {

  background-color: #1565c0;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.10)'/%3E%3Ccircle cx='90' cy='80' r='2' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");

}



/* --- Product List (flex, no inline-block gaps) --- */

.sanli-product-list {

  position: relative;

  z-index: 2;

  list-style: none;

  margin: 0 auto;

  padding: 0;

  width: 64em;

  max-width: 100%;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

}



/* --- Product Item --- */

.sanli-product {

  position: relative;

  width: 100%;

  padding: 2em 1.5em;

  text-align: center;

  list-style: none;

}

/* classic layout: first two side by side, third = full-width scatter panel */

.sanli-layout-classic .sanli-product { width: 49%; }

.sanli-layout-classic .sanli-product-scatter { width: 100%; }



/* --- Dark Circle Badge --- */

.sanli-badge {

  position: relative;

  z-index: 3;

  width: 13.25em;

  height: 13.25em;

  margin: 0 auto 1.5em;

  border-radius: 50%;

  background-color: #363636;

  border: 0.5em solid #ee2868;

  color: #ffffff;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  text-align: center;

  padding: 1em;

}



.sanli-product-title {

  font-family: "Arial Black", "Lato", Arial, sans-serif;

  font-weight: 900;

  font-size: 1.35em;

  line-height: 1.2;

  text-transform: uppercase;

  letter-spacing: 0.04em;

  color: #ffffff;

  margin: 0 0 0.4em;

}

.sanli-product-title::after {

  content: '';

  display: block;

  width: 3em;

  height: 0.2em;

  background: #ffffff;

  margin: 0.45em auto 0;

}



.sanli-product-subtitle {

  display: block;

  font-family: "Lato", Arial, sans-serif;

  font-style: italic;

  font-size: 1.05em;

  line-height: 1.3;

  color: rgba(255, 255, 255, 0.9);

}



/* --- Details + invitation (Behind the Chew) --- */

.sanli-product-details {

  position: relative;

  z-index: 3;

  max-width: 32em;

  margin: 0 auto 1.5em;

  font-size: 1.25em;

  line-height: 1.6;

  color: #ffffff;

}

.sanli-theme-cyan .sanli-product-details,

.sanli-theme-yellow .sanli-product-details { color: #3a2a05; }



.sanli-product-details p {

  margin: 0;

  max-height: 0;

  opacity: 0;

  overflow: hidden;

  transition: max-height 0.5s ease, opacity 0.4s ease;

}



.sanli-invitation {

  display: -webkit-inline-box;

  display: -ms-inline-flexbox;

  display: inline-flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  gap: 0.6em;

  font-family: "Lato", Arial, sans-serif;

  font-size: 1.05em;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.12em;

  color: inherit;

  cursor: pointer;

  margin: 0 0 0.8em;

  padding: 0;

  border: none;

  background: none;

  transition: transform 0.25s ease;

}

.sanli-invitation::before {

  content: '';

  display: inline-block;

  width: 1.7em;

  height: 1.7em;

  border-radius: 50%;

  border: 0.136em solid #ffffff;

  background-color: #39b54a;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23ffffff' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");

  background-size: 58%;

  background-position: center;

  background-repeat: no-repeat;

  -webkit-box-flex: 0;

  -ms-flex: none;

  flex: none;

}

.sanli-invitation:hover {

  -webkit-animation: sanli-pulse-wobble 0.4s 1 both;

  animation: sanli-pulse-wobble 0.4s 1 both;

}

@-webkit-keyframes sanli-pulse-wobble {

  0% { -webkit-transform: scale(1); transform: scale(1); }

  65% { -webkit-transform: scale(1.15) rotate(-1deg); transform: scale(1.15) rotate(-1deg); }

  100% { -webkit-transform: rotate(0) scale(1.05); transform: rotate(0) scale(1.05); }

}

@keyframes sanli-pulse-wobble {

  0% { -webkit-transform: scale(1); transform: scale(1); }

  65% { -webkit-transform: scale(1.15) rotate(-1deg); transform: scale(1.15) rotate(-1deg); }

  100% { -webkit-transform: rotate(0) scale(1.05); transform: rotate(0) scale(1.05); }

}



/* --- Product Image --- */

.sanli-product-images {

  position: relative;

  z-index: 3;

  display: block;

  max-width: 24em;

  margin: 0 auto;

  text-align: center;

}

.sanli-product-image {

  max-width: 100%;

  height: auto;

  display: inline-block;

  mix-blend-mode: multiply;

}



/* --- Scatter Panel (classic 3rd product) --- */

.sanli-product-scatter {

  background-color: #ffdd14;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M0 50 L50 0 L100 50 L50 100 Z' fill='rgba(255,255,255,0.14)'/%3E%3C/svg%3E");

  background-size: cover;

  border-radius: 0.5em;

  padding: 3em 2em;

  margin-top: 1em;

}

.sanli-product-scatter .sanli-product-details { color: #3a2a05; }

.sanli-scatter {

  position: relative;

  height: 16em;

  margin: 1em auto 0;

  max-width: 50em;

}

.sanli-scatter-pack {

  position: absolute;

  height: auto;

  transition: transform 0.35s ease;

}



/* --- Brand switch tabs (JS-enhanced; visible without JS) --- */

.sanli-tabs {

  display: flex;

  position: relative;

  z-index: 5;

  overflow: hidden;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -ms-flex-wrap: wrap;

  flex-wrap: wrap;

  gap: 0.7em;

  min-height: 24em;

  /* Same ratio as banner image (1280×658) for complete display */

  aspect-ratio: 1280 / 658;

  padding: 2.4em 1.2em;

  background-color: #2e1a10;

  box-shadow: 0 0.5em 1.6em rgba(40, 20, 8, 0.38);

}



/* Module background: three full-width banners stacked,

   default shows first brand (aolipop); JS toggles to correct brand */

.sanli-tabs__bg {

  position: absolute;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 0;

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;

  pointer-events: none;

  opacity: 0;

  -webkit-transition: opacity 0.55s ease;

  transition: opacity 0.55s ease;

}

.sanli-tabs__bg--aolipop { background-image: url("../images/banners/banner-aolipop.jpg"); opacity: 1; }

.sanli-tabs__bg--shuletang { background-image: url("../images/banners/shuletang.jpg"); }

.sanli-tabs__bg--yoomiggo { background-image: url("../images/banners/yoomiggo.jpg"); }



/* JS activated: hide all banners first, then show the correct brand */

.sanli-page.sanli-tabs-on .sanli-tabs__bg { opacity: 0; }

.sanli-page.sanli-tabs-on .sanli-tabs.is-brand-aolipop .sanli-tabs__bg--aolipop,

.sanli-page.sanli-tabs-on .sanli-tabs.is-brand-shuletang .sanli-tabs__bg--shuletang,

.sanli-page.sanli-tabs-on .sanli-tabs.is-brand-yoomiggo .sanli-tabs__bg--yoomiggo { opacity: 1; }



/* banner container adapts to each brand's image ratio so it shows fully without cropping */

.sanli-tabs.is-brand-aolipop { aspect-ratio: 1280 / 658; }

/* Default min-height: 24em fallback; only remove min-height when aspect-ratio is supported */

.sanli-tabs.is-brand-shuletang { aspect-ratio: 1680 / 399; }

.sanli-tabs.is-brand-yoomiggo { aspect-ratio: 1680 / 460; }

@supports (aspect-ratio: 1/1) {

  .sanli-tabs.is-brand-shuletang { min-height: auto; }

  .sanli-tabs.is-brand-yoomiggo { min-height: auto; }

}

.sanli-tab {

  position: relative;

  z-index: 1;

  display: -webkit-inline-box;

  display: -ms-inline-flexbox;

  display: inline-flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  gap: 0.6em;

  font-family: "Arial Black", "Lato", Arial, sans-serif;

  font-weight: 900;

  font-size: 1.05em;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.92);

  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);

  background: rgba(24, 12, 5, 0.55);

  border: 0.18em solid rgba(255, 255, 255, 0.32);

  border-radius: 999px;

  padding: 0.7em 1.6em;

  cursor: pointer;

  -webkit-transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, -webkit-transform 0.25s ease;

  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;

}

.sanli-tab__dot {

  width: 0.95em;

  height: 0.95em;

  border-radius: 50%;

  background: currentColor;

  -webkit-box-flex: 0;

  -ms-flex: none;

  flex: none;

  -webkit-transition: -webkit-transform 0.3s ease, background 0.25s ease;

  transition: transform 0.3s ease, background 0.25s ease;

}

.sanli-tab--pink .sanli-tab__dot { color: #ee2868; }

.sanli-tab--red .sanli-tab__dot { color: #d32f2f; }

.sanli-tab--blue .sanli-tab__dot { color: #1565c0; }

.sanli-tab--cyan .sanli-tab__dot { color: #36dadc; }

.sanli-tab--yellow .sanli-tab__dot { color: #ffcc02; }

.sanli-tab--green .sanli-tab__dot { color: #4caf50; }

.sanli-tab:hover {

  color: #ffffff;

  background: rgba(24, 12, 5, 0.75);

  border-color: rgba(255, 255, 255, 0.55);

  -webkit-transform: translateY(-2px);

  transform: translateY(-2px);

}

.sanli-tab.is-active { color: #ffffff; }

.sanli-tab--pink.is-active { background: #ee2868; border-color: rgba(255, 255, 255, 0.55); }

.sanli-tab--red.is-active { background: #d32f2f; border-color: rgba(255, 255, 255, 0.55); }

.sanli-tab--blue.is-active { background: #1565c0; border-color: rgba(255, 255, 255, 0.55); }

.sanli-tab--cyan.is-active { background: #36dadc; border-color: rgba(255, 255, 255, 0.55); color: #103a3b; }

.sanli-tab--yellow.is-active { background: #ffcc02; border-color: rgba(255, 255, 255, 0.55); color: #3a2a05; }

.sanli-tab--green.is-active { background: #4caf50; border-color: rgba(255, 255, 255, 0.55); }

.sanli-tab.is-active .sanli-tab__dot { background: #ffffff; -webkit-transform: scale(1.3); transform: scale(1.3); }

.sanli-tab--cyan.is-active .sanli-tab__dot,

.sanli-tab--yellow.is-active .sanli-tab__dot { background: currentColor; }



/* Temporarily hide brand switch tab buttons (keep DOM so current brand still shows correctly) */

.sanli-tabs .sanli-tab { display: none; }



/* Tab-driven band visibility (only when JS enables tabs) */

.sanli-page.sanli-tabs-on .sanli-family { display: none; }

.sanli-page.sanli-tabs-on .sanli-family.is-active {

  display: block;

  -webkit-animation: sanli-band-in 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) both;

  animation: sanli-band-in 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) both;

}

@-webkit-keyframes sanli-band-in {

  from { opacity: 0; -webkit-transform: translateY(26px); transform: translateY(26px); }

  to { opacity: 1; -webkit-transform: none; transform: none; }

}

@keyframes sanli-band-in {

  from { opacity: 0; -webkit-transform: translateY(26px); transform: translateY(26px); }

  to { opacity: 1; -webkit-transform: none; transform: none; }

}



/* --- Full product grid (show all products of a brand) --- */

.sanli-all-grid {

  position: relative;

  z-index: 2;

  display: -ms-grid;

  display: grid;

  -ms-grid-columns: (minmax(26em, 1fr))[auto-fill];

  grid-template-columns: repeat(auto-fill, minmax(26em, 1fr));

  gap: 2.4em 1.4em;

  width: 70em;

  max-width: 100%;

  margin: 0 auto;

}

/* 产品分类：当产品数量为奇数、最后一个产品单独占一行时，将其独立居中展示。

   排除含整盒主图的自定义分类（婴美高 156g、舒乐唐 礼盒装），避免破坏其专属布局。 */

.sanli-all-grid > .sanli-card:last-child:nth-child(odd) {

  grid-column: 1 / -1;

  justify-self: center;

  width: calc((100% - 1.4em) / 2);

  max-width: 100%;

}

/* 兼容旧浏览器（IE11 等不支持 :has()）：含整盒主图的口味带（156g / 礼盒装：240g / 钻石糖 150g）不参与奇数居中，恢复默认网格布局 */

.sanli-band--flavor.has-156g > .sanli-band-products > .sanli-all-grid > .sanli-card:last-child:nth-child(odd),

.sanli-band--flavor.has-giftbox > .sanli-band-products > .sanli-all-grid > .sanli-card:last-child:nth-child(odd),

.sanli-band--flavor.has-diamond150 > .sanli-band-products > .sanli-all-grid > .sanli-card:last-child:nth-child(odd) {

  grid-column: auto;

  justify-self: auto;

  width: auto;

  max-width: none;

}

.sanli-card {

  position: relative;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  text-align: center;

  text-decoration: none;

  color: #ffffff;

  cursor: pointer;

  padding: 1em 0.6em;

  border-radius: 1em;

  -webkit-transition: -webkit-transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;

  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;

}

.sanli-theme-cyan .sanli-card,

.sanli-theme-yellow .sanli-card { color: #3a2a05; }

.sanli-card:hover {

  -webkit-transform: translateY(-8px);

  transform: translateY(-8px);

  background: rgba(255, 255, 255, 0.14);

  box-shadow: 0 1.2em 2.4em rgba(0, 0, 0, 0.22);

}

.sanli-theme-cyan .sanli-card:hover,

.sanli-theme-yellow .sanli-card:hover { background: rgba(255, 255, 255, 0.34); }

.sanli-card__media {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  height: 24em;

  margin-bottom: 0.8em;

}

.sanli-card__media img {

  max-height: 100%;

  max-width: 100%;

  width: auto;

  height: auto;

  -o-object-fit: contain;

  object-fit: contain;

  mix-blend-mode: multiply;

  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);

  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);

}

.sanli-card:hover .sanli-card__media img {

  -webkit-transform: scale(1.08) rotate(-3deg);

  transform: scale(1.08) rotate(-3deg);

}

/* Brand Center - AOLIPOP "Canned Pillow Candy" product images scaled 1.5x */

.sanli-family.sanli-theme-red .sanli-band--flavor.is-canned-pillow .sanli-card__media img {

  -webkit-transform: scale(1.5);

  transform: scale(1.5);

}

.sanli-family.sanli-theme-red .sanli-band--flavor.is-canned-pillow .sanli-card:hover .sanli-card__media img {

  -webkit-transform: scale(1.62) rotate(-3deg);

  transform: scale(1.62) rotate(-3deg);

}

.sanli-card__name {

  font-family: "Arial Black", "Lato", Arial, sans-serif;

  font-weight: 900;

  font-size: 1.53em;

  line-height: 1.25;

  letter-spacing: 0.02em;

  margin: 0 0 0.3em;

  max-width: 12em;

}

.sanli-card__flavor {

  display: block;

  font-family: "Lato", Arial, sans-serif;

  font-style: italic;

  font-size: 0.92em;

  line-height: 1.3;

  opacity: 0.92;

  margin-bottom: 0.2em;

}

.sanli-card__spec {

  display: inline-block;

  font-size: 0.78em;

  letter-spacing: 0.04em;

  background: rgba(0, 0, 0, 0.22);

  color: #ffffff;

  border-radius: 999px;

  padding: 0.2em 0.8em;

  margin-top: 0.3em;

}

.sanli-theme-cyan .sanli-card__spec,

.sanli-theme-yellow .sanli-card__spec { background: rgba(0, 0, 0, 0.12); color: #3a2a05; }



/* Empty scatter (no data / no JS fill) collapses cleanly */

.sanli-scatter:empty { display: none; }



/* --- Flavor bands: each flavor rendered as a full sanli band (JS-built) --- */

/* When JS is active the brand band yields to the stacked flavor bands:

   its green title band is hidden (the tab already names the brand) and its

   colored product band becomes a transparent, padding-less container. */

.sanli-band.is-stack-host > .sanli-band-title { display: none; }

.sanli-band.is-stack-host > .sanli-band-products {

  padding: 0;

  min-height: 0;

  background: transparent none;

}

/* Flavor band: same sanli language as the reference, slightly tighter rhythm

   so a stack of many flavors reads as sub-sections rather than full heroes. */

.sanli-band--flavor .sanli-band-title { padding: 2.8em 1.5em 2.3em; }

.sanli-band--flavor .sanli-title {

  font-size: 2.3em;

  letter-spacing: 0.08em;

  margin-bottom: 0;

  text-transform: none;

}

.sanli-band--flavor .sanli-band-products { padding: 3.6em 2em 4em; }

/* seamless vertical stack, edge-to-edge like the reference site */

.sanli-band.is-stack-host .sanli-band--flavor { margin: 0; }



/* Flavor bands are nested inside the brand family's theme scope. The ancestor

   `.sanli-theme-X .sanli-band-products` / `.sanli-card` rules would otherwise

   win by source order and paint every flavor with the brand color. Bind each

   flavor band's colored band + card text to its OWN tone via higher specificity

   (compound class + direct child), decoupling it from the ancestor theme.

   This also supplies the green product-band color (the reference only used

   pink/cyan/yellow bands, so green had none). */

.sanli-band--flavor.sanli-theme-pink > .sanli-band-products {

  background-color: #ee2868;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.10)'/%3E%3Ccircle cx='90' cy='80' r='2' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");

}

.sanli-band--flavor.sanli-theme-cyan > .sanli-band-products {

  background-color: #36dadc;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.12)'/%3E%3Ccircle cx='90' cy='80' r='2' fill='rgba(255,255,255,0.10)'/%3E%3C/svg%3E");

}

.sanli-band--flavor.sanli-theme-yellow > .sanli-band-products {

  background-color: #ffcc02;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(0,0,0,0.06)'/%3E%3Ccircle cx='90' cy='80' r='2' fill='rgba(0,0,0,0.05)'/%3E%3C/svg%3E");

}

.sanli-band--flavor.sanli-theme-green > .sanli-band-products {

  background-color: #39b54a;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.10)'/%3E%3Ccircle cx='90' cy='80' r='2' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");

}

.sanli-band--flavor.sanli-theme-red > .sanli-band-products {

  background-color: #d32f2f;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.10)'/%3E%3Ccircle cx='90' cy='80' r='2' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");

}

.sanli-band--flavor.sanli-theme-blue > .sanli-band-products {

  background-color: #1565c0;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.10)'/%3E%3Ccircle cx='90' cy='80' r='2' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");

}

/* AOLIPOP: SVG pattern on ALL flavor sub-bands (JS rotates themes, override each) */

.sanli-family.sanli-theme-red .sanli-band--flavor > .sanli-band-products {

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.10)'/%3E%3Ccircle cx='90' cy='80' r='2' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");

}

/* AOLIPOP: 品牌水印（内嵌 data:URI SVG，不使用外部URL，避免触发浮动元素 BUG） */

.sanli-family.sanli-theme-red .sanli-band--flavor > .sanli-band-products::before {

  content: "";

  position: absolute;

  left: 0;

  right: 0;

  top: 0;

  bottom: 0;

  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20705%20405%22%3E%20%3Cg%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m54.23,9.5c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m62.12,22.59c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m71.48,20.35c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m48.83,20.32c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m16.3,27.61c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m29.65,29.1c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m100.88,103.97c-2.33,0-4.79-.2-7.32-.58-1.86-.29-3.57-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.56-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.03-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.28-2.53-2.89-4.31-1.52-4.37-.16-9.54,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.02.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.27,6.61,3.66,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.69,1.5,5.7,2.69,9.23,3.62,1.63.43,3.31.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.47-.95-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.88-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.78l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.16,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.01.35,2.06.51,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m115.28,62.51c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m102.51,84.59c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m93.9,95.3c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m94.99,96.9c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m94.72,87.94c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m54.23,107.31c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m62.12,120.4c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m71.48,118.16c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m48.83,118.12c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m16.3,125.42c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m29.65,126.91c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m100.88,201.78c-2.33,0-4.79-.2-7.32-.58-1.86-.29-3.57-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.57-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.03-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.27-2.53-2.89-4.31-1.52-4.38-.16-9.55,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.02.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.27,6.61,3.66,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.68,1.5,5.7,2.68,9.23,3.62,1.63.43,3.31.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.47-.95-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.88-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.77l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.17,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.01.35,2.06.51,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m115.28,160.32c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m102.51,182.4c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m93.9,193.1c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m94.99,194.71c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m94.72,185.75c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m54.23,205.12c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m62.12,218.21c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m71.48,215.97c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m48.83,215.93c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m16.3,223.22c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m29.65,224.72c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m100.88,299.58c-2.33,0-4.79-.2-7.32-.58-1.87-.29-3.58-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.56-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.04-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.27-2.53-2.89-4.31-1.52-4.38-.16-9.55,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.01.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.26,6.61,3.65,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.68,1.5,5.7,2.68,9.23,3.62,1.62.43,3.3.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.46-.96-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.88-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.78l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.17,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.02.35,2.07.5,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m115.28,258.12c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m102.51,280.21c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m93.9,290.91c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m94.99,292.51c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m94.72,283.56c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m54.23,302.93c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m62.12,316.01c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m71.48,313.78c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m48.83,313.74c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m16.3,321.03c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m29.65,322.52c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m100.88,397.39c-2.33,0-4.79-.2-7.32-.58-1.87-.29-3.58-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.56-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.04-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.27-2.53-2.89-4.31-1.52-4.38-.16-9.55,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.01.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.26,6.61,3.65,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.68,1.5,5.7,2.68,9.23,3.62,1.62.43,3.3.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.46-.96-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.87-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.78l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.17,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.02.35,2.07.51,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m115.28,355.93c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m102.51,378.01c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m93.9,388.72c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m94.99,390.32c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m94.72,381.37c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m168.88,9.5c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m176.77,22.59c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m186.14,20.35c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m163.49,20.32c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m130.96,27.61c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m144.3,29.1c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m215.54,103.97c-2.33,0-4.79-.2-7.32-.58-1.86-.29-3.57-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.56-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.03-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.28-2.53-2.89-4.31-1.52-4.37-.16-9.54,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.02.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.27,6.61,3.66,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.69,1.5,5.7,2.69,9.23,3.62,1.63.43,3.31.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.47-.95-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.88-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.78l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.16,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.01.35,2.06.51,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m229.93,62.51c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m217.16,84.59c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m208.56,95.3c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m209.64,96.9c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m209.38,87.94c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m168.88,107.31c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m176.77,120.4c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m186.14,118.16c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m163.49,118.12c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m130.96,125.42c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m144.3,126.91c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m215.54,201.78c-2.33,0-4.79-.2-7.32-.58-1.86-.29-3.57-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.57-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.03-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.27-2.53-2.89-4.31-1.52-4.38-.16-9.55,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.02.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.27,6.61,3.66,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.68,1.5,5.7,2.68,9.23,3.62,1.63.43,3.31.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.47-.95-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.88-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.77l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.17,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.01.35,2.06.51,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m229.93,160.32c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m217.16,182.4c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m208.56,193.1c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m209.64,194.71c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m209.38,185.75c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m168.88,205.12c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m176.77,218.21c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m186.14,215.97c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m163.49,215.93c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m130.96,223.22c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m144.3,224.72c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m215.54,299.58c-2.33,0-4.79-.2-7.32-.58-1.87-.29-3.58-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.56-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.04-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.27-2.53-2.89-4.31-1.52-4.38-.16-9.55,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.01.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.26,6.61,3.65,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.68,1.5,5.7,2.68,9.23,3.62,1.62.43,3.3.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.46-.96-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.88-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.78l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.17,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.02.35,2.07.5,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m229.93,258.12c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m217.16,280.21c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m208.56,290.91c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m209.64,292.51c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m209.38,283.56c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m168.88,302.93c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m176.77,316.01c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m186.14,313.78c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m163.49,313.74c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m130.96,321.03c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m144.3,322.52c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m215.54,397.39c-2.33,0-4.79-.2-7.32-.58-1.87-.29-3.58-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.56-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.04-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.27-2.53-2.89-4.31-1.52-4.38-.16-9.55,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.01.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.26,6.61,3.65,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.68,1.5,5.7,2.68,9.23,3.62,1.62.43,3.3.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.46-.96-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.87-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.78l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.17,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.02.35,2.07.51,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m229.93,355.93c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m217.16,378.01c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m208.56,388.72c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m209.64,390.32c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m209.38,381.37c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m283.54,9.5c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m291.43,22.59c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m300.79,20.35c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m278.14,20.32c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m245.61,27.61c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m258.96,29.1c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m330.2,103.97c-2.33,0-4.79-.2-7.32-.58-1.86-.29-3.57-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.56-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.03-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.28-2.53-2.89-4.31-1.52-4.37-.16-9.54,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.02.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.27,6.61,3.66,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.69,1.5,5.7,2.69,9.23,3.62,1.63.43,3.31.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.47-.95-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.88-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.78l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.16,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.01.35,2.06.51,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m344.59,62.51c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m331.82,84.59c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m323.21,95.3c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m324.3,96.9c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m324.04,87.94c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m283.54,107.31c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m291.43,120.4c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m300.79,118.16c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m278.14,118.12c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m245.61,125.42c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m258.96,126.91c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m330.2,201.78c-2.33,0-4.79-.2-7.32-.58-1.86-.29-3.57-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.57-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.03-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.27-2.53-2.89-4.31-1.52-4.38-.16-9.55,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.02.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.27,6.61,3.66,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.68,1.5,5.7,2.68,9.23,3.62,1.63.43,3.31.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.47-.95-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.88-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.77l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.17,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.01.35,2.06.51,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m344.59,160.32c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m331.82,182.4c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m323.21,193.1c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m324.3,194.71c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m324.04,185.75c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m283.54,205.12c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m291.43,218.21c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m300.79,215.97c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m278.14,215.93c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m245.61,223.22c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m258.96,224.72c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m330.2,299.58c-2.33,0-4.79-.2-7.32-.58-1.87-.29-3.58-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.56-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.04-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.27-2.53-2.89-4.31-1.52-4.38-.16-9.55,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.01.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.26,6.61,3.65,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.68,1.5,5.7,2.68,9.23,3.62,1.62.43,3.3.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.46-.96-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.88-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.78l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.17,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.02.35,2.07.5,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m344.59,258.12c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m331.82,280.21c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m323.21,290.91c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m324.3,292.51c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m324.04,283.56c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m283.54,302.93c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m291.43,316.01c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m300.79,313.78c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m278.14,313.74c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m245.61,321.03c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m258.96,322.52c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m330.2,397.39c-2.33,0-4.79-.2-7.32-.58-1.87-.29-3.58-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.56-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.04-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.27-2.53-2.89-4.31-1.52-4.38-.16-9.55,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.01.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.26,6.61,3.65,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.68,1.5,5.7,2.68,9.23,3.62,1.62.43,3.3.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.46-.96-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.87-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.78l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.17,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.02.35,2.07.51,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m344.59,355.93c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m331.82,378.01c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m323.21,388.72c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m324.3,390.32c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m324.04,381.37c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m398.19,9.5c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m406.08,22.59c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m415.45,20.35c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m392.8,20.32c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m360.27,27.61c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m373.61,29.1c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m444.85,103.97c-2.33,0-4.79-.2-7.32-.58-1.86-.29-3.57-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.56-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.03-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.28-2.53-2.89-4.31-1.52-4.37-.16-9.54,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.02.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.27,6.61,3.66,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.69,1.5,5.7,2.69,9.23,3.62,1.63.43,3.31.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.47-.95-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.88-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.78l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.16,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.01.35,2.06.51,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m459.24,62.51c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m446.48,84.59c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m437.87,95.3c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m438.95,96.9c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m438.69,87.94c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m398.19,107.31c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m406.08,120.4c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m415.45,118.16c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m392.8,118.12c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m360.27,125.42c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m373.61,126.91c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m444.85,201.78c-2.33,0-4.79-.2-7.32-.58-1.86-.29-3.57-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.57-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.03-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.27-2.53-2.89-4.31-1.52-4.38-.16-9.55,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.02.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.27,6.61,3.66,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.68,1.5,5.7,2.68,9.23,3.62,1.63.43,3.31.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.47-.95-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.88-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.77l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.17,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.01.35,2.06.51,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m459.24,160.32c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m446.48,182.4c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m437.87,193.1c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m438.95,194.71c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m438.69,185.75c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m398.19,205.12c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m406.08,218.21c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m415.45,215.97c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m392.8,215.93c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m360.27,223.22c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m373.61,224.72c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m444.85,299.58c-2.33,0-4.79-.2-7.32-.58-1.87-.29-3.58-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.56-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.04-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.27-2.53-2.89-4.31-1.52-4.38-.16-9.55,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.01.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.26,6.61,3.65,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.68,1.5,5.7,2.68,9.23,3.62,1.62.43,3.3.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.46-.96-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.88-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.78l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.17,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.02.35,2.07.5,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m459.24,258.12c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m446.48,280.21c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m437.87,290.91c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m438.95,292.51c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m438.69,283.56c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m398.19,302.93c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m406.08,316.01c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m415.45,313.78c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m392.8,313.74c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m360.27,321.03c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m373.61,322.52c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m444.85,397.39c-2.33,0-4.79-.2-7.32-.58-1.87-.29-3.58-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.56-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.04-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.27-2.53-2.89-4.31-1.52-4.38-.16-9.55,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.01.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.26,6.61,3.65,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.68,1.5,5.7,2.68,9.23,3.62,1.62.43,3.3.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.46-.96-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.87-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.78l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.17,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.02.35,2.07.51,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m459.24,355.93c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m446.48,378.01c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m437.87,388.72c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m438.95,390.32c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m438.69,381.37c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m512.85,9.5c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m520.74,22.59c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m530.11,20.35c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m507.46,20.32c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m474.92,27.61c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m488.27,29.1c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m559.51,103.97c-2.33,0-4.79-.2-7.32-.58-1.86-.29-3.57-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.56-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.03-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.28-2.53-2.89-4.31-1.52-4.37-.16-9.54,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.02.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.27,6.61,3.66,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.69,1.5,5.7,2.69,9.23,3.62,1.63.43,3.31.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.47-.95-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.88-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.78l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.16,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.01.35,2.06.51,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m573.9,62.51c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m561.13,84.59c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m552.53,95.3c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m553.61,96.9c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m553.35,87.94c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m512.85,107.31c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m520.74,120.4c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m530.11,118.16c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m507.46,118.12c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m474.92,125.42c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m488.27,126.91c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m559.51,201.78c-2.33,0-4.79-.2-7.32-.58-1.86-.29-3.57-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.57-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.03-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.27-2.53-2.89-4.31-1.52-4.38-.16-9.55,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.02.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.27,6.61,3.66,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.68,1.5,5.7,2.68,9.23,3.62,1.63.43,3.31.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.47-.95-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.88-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.77l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.17,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.01.35,2.06.51,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m573.9,160.32c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m561.13,182.4c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m552.53,193.1c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m553.61,194.71c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m553.35,185.75c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m512.85,205.12c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m520.74,218.21c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m530.11,215.97c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m507.46,215.93c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m474.92,223.22c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m488.27,224.72c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m559.51,299.58c-2.33,0-4.79-.2-7.32-.58-1.87-.29-3.58-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.56-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.04-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.27-2.53-2.89-4.31-1.52-4.38-.16-9.55,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.01.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.26,6.61,3.65,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.68,1.5,5.7,2.68,9.23,3.62,1.62.43,3.3.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.46-.96-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.88-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.78l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.17,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.02.35,2.07.5,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m573.9,258.12c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m561.13,280.21c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m552.53,290.91c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m553.61,292.51c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m553.35,283.56c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m512.85,302.93c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m520.74,316.01c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m530.11,313.78c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m507.46,313.74c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m474.92,321.03c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m488.27,322.52c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m559.51,397.39c-2.33,0-4.79-.2-7.32-.58-1.87-.29-3.58-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.56-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.04-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.27-2.53-2.89-4.31-1.52-4.38-.16-9.55,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.01.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.26,6.61,3.65,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.68,1.5,5.7,2.68,9.23,3.62,1.62.43,3.3.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.46-.96-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.87-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.78l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.17,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.02.35,2.07.51,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m573.9,355.93c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m561.13,378.01c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m552.53,388.72c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m553.61,390.32c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m553.35,381.37c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m627.5,9.5c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m635.4,22.59c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m644.76,20.35c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m622.11,20.32c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m589.58,27.61c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m602.93,29.1c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m674.16,103.97c-2.33,0-4.79-.2-7.32-.58-1.86-.29-3.57-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.56-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.03-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.28-2.53-2.89-4.31-1.52-4.37-.16-9.54,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.02.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.27,6.61,3.66,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.69,1.5,5.7,2.69,9.23,3.62,1.63.43,3.31.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.47-.95-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.88-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.78l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.16,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.01.35,2.06.51,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m688.56,62.51c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m675.79,84.59c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m667.18,95.3c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m668.27,96.9c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m668,87.94c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m627.5,107.31c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m635.4,120.4c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m644.76,118.16c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m622.11,118.12c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m589.58,125.42c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m602.93,126.91c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m674.16,201.78c-2.33,0-4.79-.2-7.32-.58-1.86-.29-3.57-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.57-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.03-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.27-2.53-2.89-4.31-1.52-4.38-.16-9.55,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.02.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.27,6.61,3.66,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.68,1.5,5.7,2.68,9.23,3.62,1.63.43,3.31.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.47-.95-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.88-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.77l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.17,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.01.35,2.06.51,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m688.56,160.32c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m675.79,182.4c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m667.18,193.1c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m668.27,194.71c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m668,185.75c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m627.5,205.12c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m635.4,218.21c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m644.76,215.97c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m622.11,215.93c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m589.58,223.22c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m602.93,224.72c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m674.16,299.58c-2.33,0-4.79-.2-7.32-.58-1.87-.29-3.58-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.56-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.04-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.27-2.53-2.89-4.31-1.52-4.38-.16-9.55,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.01.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.26,6.61,3.65,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.68,1.5,5.7,2.68,9.23,3.62,1.62.43,3.3.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.46-.96-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.88-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.78l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.17,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.02.35,2.07.5,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m688.56,258.12c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m675.79,280.21c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m667.18,290.91c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m668.27,292.51c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m668,283.56c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m627.5,302.93c.18,0,.36,0,.53,0,.67.03,1.22-.44,1.42-1.08.09-.29.27-.57.54-.74.34-.21.77-.16,1.1.12.21.17.4.36.61.54.11.1.23.19.35.27.36.23.6.21.87-.12.21-.26.36-.56.58-.82.18-.22.39-.43.62-.58.21-.13.45-.05.66.09.32.22.55.54.8.83.14.16.29.31.46.44.26.2.56.14.84.04.55-.19,1.08-.4,1.63-.6.32-.12.6-.09.87.16.49.44.4.77.22,1.27-.05.15-.1.29-.14.44-.13.51-.26,1.02-.4,1.53-.13.46-.28.92-.42,1.38-.22.73.05,1.08.8,1.09,1.12.02,2.24.08,3.36.13.59.02,1.19.05,1.78.08.75.04,1.47.19,2.16.51.11.05.23.08.34.13.54.25,1.02.6,1.46,1.01.44.41.85.85,1.15,1.38.2.34.34.72.5,1.08.06.13.1.27.13.41.05.22.13.45.13.68.01.48-.01.96-.02,1.44,0,0,0,.01,0,.02-.14.45-.22.92-.48,1.33-.17.27-.32.55-.5.81-.3.44-.64.84-1.05,1.19-.32.26-.62.55-.96.78-.38.25-.78.45-1.2.63-.26.12-.56.15-.84.23-.29.08-.57.16-.86.24-.17.05-.28.17-.32.34-.03.14-.06.29-.06.43.01.82.02,1.65.05,2.47.02.57.05,1.15.1,1.72.03.36-.16.65-.53.68-.5.04-1,.18-1.51.25-.89.12-1.78.12-2.67.03-.93-.1-1.86-.21-2.79-.32-.36-.04-.49-.29-.33-.62.06-.12.14-.23.2-.35.19-.41-.11-.9-.56-.88-.38.02-.76.08-1.14.11-.69.06-1.39.07-2.07-.06-.7-.13-1.38-.3-2.06-.5-.45-.13-.87-.34-1.3-.53-.34-.15-.66-.08-.89.22-.14.18-.13.46.01.68.16.24.31.49.44.74.14.26.05.43-.23.49-.21.05-.41.13-.62.2-.18.06-.37.12-.55.19-.17.07-.34.17-.5.26-.3.17-.6.36-.91.52-.3.16-.6.3-.91.44-.32.14-.65.27-.99.39-.48.17-.72.55-.56,1.03.15.47.02.91-.06,1.35-.16.89-.68,1.55-1.35,2.09-.37.29-.8.44-1.26.57-.83.24-1.62.1-2.38-.22-.64-.27-1.12-.75-1.5-1.33-.07-.1-.14-.2-.2-.3-.13-.23-.32-.3-.57-.3-.57,0-1.11.12-1.65.27-.29.08-.6.11-.89.19-.7.19-1.39.4-2.08.6-.26.08-.53.14-.79.23-.7.23-1.4.46-2.1.69-.59.2-1.17.4-1.75.6-.25.09-.51.16-.77.24-.09.03-.17.09-.26.12-.1.03-.23.07-.32.04-.06-.02-.11-.18-.09-.26.08-.53.2-1.06.27-1.59.05-.42.09-.86.06-1.28-.04-.52-.54-.72-.95-.4-.47.37-1.01.61-1.53.87-.06.03-.14.04-.21.06-.9.2-1.81.24-2.73.09-.2-.03-.4-.04-.6-.07-.12-.02-.24-.03-.35-.07-.33-.11-.66-.22-.99-.35-.75-.31-1.43-.75-2.03-1.3-.1-.09-.21-.18-.32-.27-.27-.2-.51-.16-.74.09-.22.24-.25.51-.21.81.12,1.11.08,2.21.04,3.32-.04,1.02-.05,2.04-.08,3.06,0,.13.02.27-.12.34-.15.07-.26-.01-.39-.09-.33-.2-.67-.37-1.01-.55-.12-.06-.24-.13-.36-.19-.05-.03-.1-.06-.15-.09-.37-.19-.74-.38-1.11-.57-.5-.26-1-.52-1.51-.78-.46-.24-.92-.48-1.38-.73-.33-.18-.66-.37-.99-.54-.58-.3-1.17-.6-1.76-.89-.26-.13-.36-.35-.24-.63.06-.14.15-.27.21-.42.25-.66.5-1.32.74-1.98.17-.46.31-.93.46-1.4.15-.48.08-.79-.32-1.08-.47-.35-.96-.67-1.45-.99-.31-.2-.64-.38-.96-.57-.31-.19-.7-.12-.94.23-.3.43-.59.88-.87,1.33-.23.38-.45.78-.65,1.18-.17.35-.3.72-.44,1.09-.12.31-.34.35-.58.11-.64-.65-1.28-1.3-1.92-1.95-1.43-1.44-2.85-2.87-4.28-4.31-.3-.3-.62-.59-.93-.88-.22-.2-.19-.44.06-.58.42-.23.83-.48,1.25-.71.31-.17.63-.33.93-.51.29-.17.56-.37.84-.56.27-.18.55-.36.83-.53.24-.15.48-.29.72-.44.59-.37,1.18-.73,1.75-1.12.66-.44,1.31-.91,1.96-1.37.17-.12.35-.24.52-.36.57-.4,1.13-.8,1.7-1.21.52-.38,1.04-.76,1.54-1.15.62-.48,1.24-.97,1.86-1.46.56-.45,1.13-.89,1.68-1.35.67-.56,1.33-1.15,2-1.72.24-.21.48-.43.71-.66.14-.13.3-.14.45-.07.39.16.76.34,1.15.5.31.13.62.26.93.39.51.22,1.02.44,1.53.66.27.12.53.24.79.37.23.11.32.36.27.62-.16.8-.33,1.6-.44,2.41-.06.43-.15.85-.25,1.28-.08.3-.13.62.16.87.19.16.4.22.64.12.19-.08.38-.18.57-.27.17-.07.34-.14.51-.2.32-.12.61-.22.71-.25.99-.32,2.5-.22,2.96.12.02.02.12.09.26.15.18.07.37.1.57.08.27-.02.48-.22.48-.5,0-.24-.03-.47-.08-.7-.03-.15-.03-.25.01-.33.07-.12.23-.15.28-.15.79-.13,1.78-.92,4.27-1.01.86-.03,1.72-.17,2.58-.11.2.01.39-.03.57-.13.39-.23.79-.43,1.19-.65.31-.17.62-.35.93-.52.11-.06.23-.11.34-.16.4-.2.78-.42,1.19-.61.43-.2.87-.37,1.31-.56.09-.04.18-.09.27-.14.28-.16.51-.08.66.2.13.25.26.49.39.73.2.36.52.45.89.28.26-.12.54-.21.81-.31.02,0,.03,0,.05-.02.52-.2,1.03-.4,1.55-.6,1-.38,2.02-.56,3.09-.48.69.05,1.32.26,1.97.46.27.09.51.28.77.41.24.12.5.08.69-.1.22-.21.27-.42.12-.69-.1-.18-.24-.34-.36-.5-.18-.24-.37-.48-.56-.72-.15-.19-.32-.38-.47-.57-.23-.29-.45-.58-.67-.87-.15-.2-.3-.41-.47-.59-.31-.34-.28-.83.05-1.15.24-.23.53-.31.84-.36.15-.02.3-.03.44-.04.23,0,.46,0,.69,0h0Zm14.47,18.69s-.03,0-.05,0c.03-1.08.06-2.16.08-3.24.01-.51.12-.61.62-.57.02,0,.03,0,.03,0,1.26.15,2.48-.32,2.48-.32.2-.08.67-.27,1.2-.66.45-.33,1.76-1.29,2.04-2.97.03-.2.1-.79-.05-1.51-.19-.95-.73-1.71-1.45-2.35-.19-.17-.39-.34-.61-.47-.22-.13-.57-.35-1.1-.56-2.15-.84-4.48-.56-5.34-.65-.06,0-.22-.02-.34.07-.07.06-.11.16-.13.32-.01.08-.02.16-.02.24-.04.55-.09,1.1-.13,1.65-.04.57-.08,1.15-.12,1.72-.02.25-.04.5-.09.74-.02.08-.11.15-.17.22-.05-.07-.12-.12-.15-.2-.14-.34-.24-.7-.4-1.03-.17-.38-.35-.75-.57-1.11-.17-.29-.38-.56-.6-.82-.19-.23-.41-.45-.63-.66-.21-.19-.43-.38-.67-.53-.06-.04-.4-.27-.83-.44-1.41-.59-2.84-.29-2.92-.27-.18.04-.61.14-1.1.4-.3.16-.59.34-.85.54-.51.38-.97.84-1.34,1.36-.22.31-.46.61-.59.97-.04.12-.12.24-.22.33-.15.14-.35.08-.4-.12-.12-.45-.4-.78-.73-1.07-.24-.22-.5-.43-.78-.59-.26-.15-.58-.36-1.04-.5-.07-.02-.34-.1-.9-.15-.3-.03-.85-.08-1.57,0-1.02.1-1.78.37-2.31.56-.85.31-.76.31-1.28.52-.42.17-.84.34-1.25.51-.23.09-.28.29-.16.51.1.19.17.4.25.6.03.06.04.13.06.2.22.64.45,1.29.68,1.93.19.54.38,1.08.57,1.62.14.42.28.85.41,1.27.12.39.24.77.35,1.16.06.2.1.4.16.6.06.19.12.38.18.58.06.21.12.42.17.63.05.2.1.39.15.59.06.21.14.41.19.61.07.29.12.59.19.88.06.27.14.54.19.81.05.27.07.55.13.82.13.57.27,1.14.25,1.73,0,.18.04.3.13.36.14.1.35.01.44-.02.41-.16,2.05-.79,2.6-.99.42-.15.79-.43,1.18-.65.2-.11.23-.21.14-.42-.13-.29-.28-.58-.41-.87-.23-.5-.46-.99-.68-1.49-.17-.37-.31-.76-.48-1.13-.17-.4-.36-.79-.54-1.18-.11-.24-.02-.49.19-.57.28-.1.44-.2.76-.29.97-.27,1.82-1.35,1.93-1.62.01-.03.08-.19.21-.23.04-.01.08-.02.13-.01.18.02.25.17.27.33.12.76.36,1.47.69,2.16.28.57.65,1.07,1.07,1.52.36.38.74.73,1.2.97.41.22.82.47,1.26.62,1.31.46,2.44.29,2.83.22.37-.06.67-.15.83-.19.74-.22,1.07-.38,1.39-.57.39-.23.72-.55,1-.91.03-.04.1-.08.14-.07.04.01.08.08.1.13.07.22.03.43-.06.64-.1.24-.18.5-.26.75-.07.22-.14.44-.21.66-.05.16-.13.32-.17.49-.04.19.05.35.08.41.19.39.99.1,2.41.24.68.07,1.36-.02,2.04-.03.19,0,.27-.08.29-.27.01-.11,0-.22,0-.33,0-.52,0-1.03,0-1.55Zm-54.34,8.1s-.02.02-.03.03c.08.1.15.21.24.28.1.08.22.13.34.17.65.26,1.31.51,1.97.77.65.26,1.31.51,1.96.77.51.2,1.03.37,1.5.67.06.04.19.03.25-.02.05-.03.07-.15.06-.23-.04-.33-.11-.66-.13-1-.04-.71-.08-1.41-.08-2.12,0-.92.04-1.83.09-2.75.04-.83.12-1.67.19-2.5.04-.44.1-.87.15-1.31.05-.47.06-.95.12-1.42.14-1.01.3-2.01.45-3.01.19-1.25.38-2.51.59-3.76.15-.91.34-1.81.46-2.72.07-.54.19-1.07.34-1.59.09-.33.04-.49-.28-.61-.21-.08-.41-.16-.62-.24-.37-.14-.74-.28-1.1-.43-.27-.11-.55-.23-.8-.39-.29-.18-.44-.21-.71.01-.14.12-.27.25-.41.37-.47.39-.94.79-1.42,1.18-.59.49-1.18.98-1.77,1.46-.36.3-.73.58-1.09.88-.38.31-.76.63-1.15.94-.57.45-1.15.88-1.72,1.32-.39.3-.77.61-1.17.91-.61.45-1.22.89-1.83,1.34-.21.15-.42.3-.63.45-.28.2-.56.4-.84.6-.27.19-.54.37-.81.55-.3.2-.61.39-.91.58-.3.19-.61.37-.91.55-.3.18-.61.37-.91.54-.25.14-.51.26-.77.39-.23.12-.26.3-.08.49.1.1.21.18.3.28.99,1,2.01,1.96,3.09,2.86.41.34.81.7,1.21,1.05.19.17.4.12.51-.1.03-.06.04-.13.07-.19.09-.17.17-.34.28-.49.19-.26.4-.51.62-.75.46-.51.92-1.02,1.38-1.52.12-.13.29-.2.47-.13.19.07.37.15.55.24.43.22.87.43,1.29.68.51.31,1.02.64,1.51.99.52.37.98.79,1.39,1.28.12.15.15.3.1.48-.17.6-.35,1.21-.5,1.82-.1.41-.2.82-.37,1.21-.15.33-.26.68-.39,1.02-.02.05-.02.1-.04.15Zm11.3-14.88c-.7.27-1.16.64-1.5.95-.7.64-1.32,1.35-1.72,2.23-.27.59-.52,1.18-.64,1.83-.16.85-.28,1.7-.21,2.56.05.56.11,1.13.27,1.66.19.64.47,1.26.86,1.81.3.43.62.85,1.02,1.19.36.3.71.6,1.11.85.44.27.84.42,1.11.52,0,0,1.46.51,2.91.25.09-.02.18-.04.18-.04.28-.09.56-.16.83-.27.35-.14.71-.26,1.02-.45.53-.33.98-.76,1.34-1.28.28-.4.56-.79.64-1.29.01-.08.05-.15.09-.22.06-.1.13-.12.19,0,.05.09.1.19.11.29.03.31.04.62.04.94.01.69.03,1.38.03,2.07,0,.4-.04.8-.06,1.2,0,.11,0,.22.03.33.05.2.15.24.34.16.13-.06.26-.11.4-.16.21-.08.41-.16.63-.23.18-.06.36-.1.54-.15.15-.05.3-.1.45-.15.2-.07.39-.14.59-.21.18-.06.37-.1.56-.16.19-.06.37-.14.56-.19.26-.08.52-.13.77-.21.2-.06.39-.13.59-.18.32-.08.64-.16.96-.23.59-.12,1.17-.25,1.76-.35.37-.06.74-.07,1.11-.11.03,0,.08.01.1,0,.09-.06.21-.11.25-.2.03-.07-.02-.21-.08-.27-.17-.15-.32-.32-.35-.55,0-.03-.03-.05-.04-.08-.18-.41-.37-.81-.53-1.22-.21-.55-.4-1.11-.6-1.67-.11-.3-.36-.38-.62-.19-.12.09-.23.18-.35.26-.31.2-.62.41-.94.6-.26.15-.52.29-.8.4-.25.1-.39,0-.45-.27-.13-.61-.25-1.23-.37-1.84-.07-.34-.16-.68-.23-1.02-.14-.71-.26-1.42-.41-2.13-.11-.56-.24-1.12-.36-1.68-.09-.41-.17-.82-.26-1.22-.1-.45-.21-.9-.31-1.35-.08-.35-.13-.69-.21-1.04-.04-.17-.13-.33-.14-.5-.03-.59-.26-1.13-.43-1.68-.05-.15-.16-.2-.31-.18-.21.03-.42.06-.63.1-.62.12-1.23.25-1.85.36-.32.06-.62.2-.96.12-.17-.04-.28.1-.29.29-.02.39.02.76.17,1.13.06.15.08.31.11.47.08.43.12.88.24,1.3.13.47.21.94.2,1.42,0,.07-.08.15-.12.22-.07-.05-.19-.09-.21-.16-.13-.38-.41-.64-.66-.92-.32-.37-.69-.7-1.12-.94-.23-.13-.61-.36-1.11-.53-.36-.12-1.74-.55-3.28.04Zm17.39-5.19c-.24.09-.44.15-.63.25-.42.21-.83.44-1.24.66-.42.22-.85.43-1.26.66-.52.28-1.04.58-1.56.86-.37.2-.43.39-.2.75.04.06.1.12.14.18.19.3.38.61.55.92.18.34.34.7.51,1.05.19.4.39.8.59,1.19,0,.02.01.03.02.05.17.4.33.81.51,1.21.2.45.41.9.61,1.35.06.13.09.27.15.41.21.51.43,1.01.64,1.52.04.09.05.19.09.28.19.44.4.88.58,1.33.18.46.34.93.51,1.4.21.57.2.45.27.66.04.12.43,1.34.49,1.54.02.05.06.17.16.22.08.04.17.05.27.01.14-.05.24-.18.37-.27.09-.06.17-.11.34-.21.08-.04.35-.19.69-.29.48-.15,1.27-.28,1.59-.35.13-.03.22-.09.23-.22,0-.1-.02-.22-.06-.32-.1-.28-.21-.55-.32-.82-.1-.26-.22-.52-.31-.79-.16-.48-.3-.97-.45-1.46-.21-.68-.43-1.36-.62-2.04-.13-.46-.22-.93-.33-1.4-.49-2.16-.43-1.95-.55-2.46-.43-1.84-.85-3.24-.98-3.64-.02-.06-.08-.24-.15-.48-.07-.24-.13-.48-.2-.72-.05-.17-.1-.34-.14-.52-.03-.11-.04-.22-.09-.32-.05-.08-.14-.14-.22-.21Zm21.69-4.58s0,0,.01,0c0,.23,0,.45,0,.68,0,.06.07.12.11.18.04-.05.1-.1.13-.16.06-.14.09-.3.14-.44.04-.11.14-.21.16-.32.07-.45.16-.9.32-1.33.12-.33.19-.69.27-1.04.07-.29-.19-.55-.47-.46-.32.1-.62.23-.93.35-.34.13-.67.27-1.01.38-.31.1-.61.03-.87-.14-.18-.12-.36-.27-.51-.43-.25-.27-.48-.57-.73-.85-.12-.14-.28-.15-.43-.04-.06.05-.11.1-.15.16-.18.25-.35.5-.54.74-.14.18-.31.34-.46.51-.26.3-.54.39-.9.22-.51-.23-.93-.59-1.29-1.01-.27-.31-.6-.28-.78.08-.12.24-.23.48-.37.71-.08.14-.18.29-.3.4-.15.15-.34.25-.5.39-.22.2-.48.26-.76.26-.31,0-.63-.02-.94-.03-.28-.01-.57-.01-.85-.04-.26-.02-.44.12-.45.38,0,.27.08.51.3.68.06.05.1.11.15.17.08.1.15.19.23.29.04.05.09.11.13.16.18.25.35.49.54.74.07.09.16.16.23.25.18.23.34.47.52.69.18.23.38.46.56.68.03.03.04.07.06.11.15.28.35.31.58.11.24-.21.48-.41.73-.6.57-.42,1.17-.8,1.85-1,.4-.11.83-.21,1.23-.17.77.08,1.53.27,2.29.42.04,0,.09.02.13.04.22.07.43.15.65.21.48.13.95.24,1.43.36.12.03.16-.02.14-.14-.03-.22-.18-.33-.35-.42-.16-.09-.33-.16-.49-.25-.59-.32-1.22-.53-1.86-.71-.91-.26-1.84-.28-2.77-.18-.72.08-1.4.34-2.05.64-.17.08-.32.18-.49.26-.27.13-.5.07-.66-.14-.2-.26-.41-.51-.62-.76-.12-.14-.25-.27-.36-.42-.13-.19-.04-.38.19-.39.17,0,.33,0,.5,0,.66-.03,1.25-.23,1.68-.76.1-.12.18-.27.27-.4.19-.26.42-.29.68-.11.07.05.15.1.23.12.29.08.59.15.89.2.11.02.24,0,.36-.01.52-.08.93-.39,1.34-.69.3-.21.48-.2.78.01.27.19.56.36.87.48.43.16.88.08,1.33.06.12,0,.24-.03.35-.07.37-.13.52-.04.57.35,0,.06,0,.13,0,.19-.01.28-.02.57-.04.85Zm-15.8,22.67c.04-.43-.4-1-.92-1.49-.24-.23-.58-.34-.91-.42-.62-.15-1.2-.06-1.76.29-.71.44-1.06,1.07-1.03,1.91,0,.25.11.51.17.76.15.62.53,1.08,1.08,1.35.76.37,1.54.35,2.28-.12.69-.44,1.05-1.07,1.09-2.27Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m635.4,316.01c-.07.5-.09,1.03-.21,1.52-.16.64-.47,1.2-1.02,1.62-.58.45-1.35.57-1.97.18-.27-.17-.53-.41-.7-.68-.61-.97-.76-2.04-.56-3.17.09-.48.12-.97.3-1.43.21-.56.45-1.1.94-1.46.4-.3.86-.44,1.36-.36.14.02.29.11.4.21.23.21.46.42.65.66.34.44.53.96.64,1.5.09.45.12.92.18,1.4Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m644.76,313.78c0,.36-.07.61-.26.83-.14.16-.25.36-.41.51-.2.18-.43.33-.7.37-.39.07-.71-.11-.98-.36-.08-.08-.12-.25-.1-.37.07-.62.18-1.24.26-1.86.07-.52.48-.67.91-.59.35.07.64.25.86.53.23.3.47.59.44.93Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m622.11,313.74c.02-.45.61-.81,1.02-.63.35.15.63.39.85.68.12.16.16.39.19.6.03.17,0,.35-.04.52-.1.49-.4.84-.83,1.07-.26.15-.47.07-.6-.2-.07-.15-.12-.31-.17-.47-.12-.4-.24-.8-.35-1.2-.03-.12-.05-.25-.08-.37Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m589.58,321.03c-.06-.01-.16-.03-.24-.06-.38-.16-.78-.31-1.14-.5-.29-.15-.55-.37-.83-.55-.11-.08-.22-.16-.34-.24-.15-.1-.19-.2-.1-.35.07-.12.17-.22.27-.32.46-.45.92-.89,1.38-1.33.38-.35.77-.7,1.15-1.05.29-.27.56-.55.85-.8.11-.1.25-.16.38-.21.05-.02.15,0,.18.04.03.04.03.13.01.19-.1.32-.24.64-.31.97-.15.66-.26,1.33-.39,1.99-.07.35-.18.68-.26,1.03-.05.23-.09.46-.11.69-.03.29-.21.51-.5.51Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m602.93,322.52c.05.61-.06,1.2-.21,1.77-.07.27-.23.53-.4.76-.32.44-.72.81-1.25.93-.71.16-1.33-.08-1.8-.64-.51-.61-.78-1.34-.77-2.15,0-.53,0-1.07.08-1.6.11-.71.3-1.41.71-2.01.39-.57.94-.85,1.6-.91.31-.03.57.16.79.34.36.29.63.65.82,1.08.33.71.41,1.45.42,2.22,0,.07,0,.14,0,.21Z%22/%3E%20%3C/g%3E%20%3Cg%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m674.16,397.39c-2.33,0-4.79-.2-7.32-.58-1.87-.29-3.58-.64-5.23-1.07-3.59-.95-6.67-2.16-9.42-3.69-1.32-.74-2.53-1.56-3.61-2.46-.61-.51-1.15-1.11-1.6-1.79-1.07.04-2.14-.14-3.18-.5-4.22-1.46-7.12-6.12-6.6-10.6.19-1.64.72-3.1,1.57-4.33-1.3-1.09-2.27-2.53-2.89-4.31-1.52-4.38-.16-9.55,3.31-12.57,1.19-1.03,2.5-1.71,3.92-2.01.36-1.38.88-2.62,1.34-3.66,1-2.23,2.03-3.95,3.26-5.39,1.59-1.87,3.57-3.35,5.9-4.39,3.42-1.54,7-2.07,10.54-1.57,4.58.65,8.33,2.64,11.13,5.92.59.69,1.11,1.43,1.55,2.22,2.48-1.62,5.46-2.01,8.04-1.01,2.28.88,3.94,2.5,4.93,4.81.75,1.74.98,3.57.74,5.76-.03.37-.11.8-.22,1.24,3.73,1.26,6.61,3.65,8.57,7.11.94,1.65,1.43,3.46,1.45,5.36.02,1.56-.32,2.99-1.02,4.25.94.95,1.66,2.17,2.14,3.63.88,2.65.8,5.47-.21,8.36-.76,2.17-1.87,3.84-3.37,5.1-1.51,1.27-3.22,1.92-5.06,1.92h-.15c-.76-.02-1.48-.16-2.21-.45-.82.81-1.84,1.51-3.1,2.14-2.23,1.11-4.7,1.8-8.01,2.23-1.7.22-3.45.33-5.21.33Zm-26.74-10.43l.13.2c.42.68.94,1.29,1.55,1.79,1.04.86,2.22,1.66,3.49,2.38,2.68,1.5,5.7,2.68,9.23,3.62,1.62.43,3.3.77,5.15,1.06,4.36.67,8.44.75,12.31.25,3.22-.42,5.61-1.09,7.76-2.16,1.28-.64,2.28-1.35,3.07-2.17l.19-.2.25.11c.72.31,1.42.47,2.16.49h.14c1.65,0,3.17-.58,4.54-1.73,1.39-1.17,2.41-2.72,3.12-4.75.96-2.72,1.03-5.35.21-7.83-.48-1.45-1.21-2.64-2.16-3.52l-.24-.23.17-.29c.73-1.2,1.08-2.58,1.06-4.1-.02-1.76-.48-3.43-1.35-4.96-1.92-3.39-4.78-5.69-8.49-6.86l-.38-.12.12-.39c.16-.52.27-1.03.3-1.46.23-2.06.02-3.76-.67-5.36-.91-2.1-2.42-3.58-4.48-4.38-2.46-.96-5.33-.51-7.66,1.17l-.37.27-.21-.41c-.45-.87-1.01-1.7-1.66-2.46-2.67-3.13-6.25-5.03-10.64-5.65-3.4-.48-6.82.03-10.1,1.51-2.22,1-4.11,2.41-5.62,4.18-1.17,1.38-2.17,3.03-3.14,5.19-.48,1.07-1.02,2.36-1.36,3.78l-.06.26-.26.05c-1.37.25-2.64.88-3.79,1.88-3.23,2.81-4.49,7.62-3.08,11.68.61,1.76,1.6,3.17,2.93,4.18l.32.25-.25.33c-.9,1.19-1.45,2.62-1.64,4.26-.48,4.11,2.19,8.39,6.06,9.73,1.02.35,2.07.51,3.11.45h.24Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m688.56,355.93c-.06.7-.33,1.66-.78,2.55-.13.25-.06.31.2.37,4,.89,7.12,3.04,9.19,6.67.76,1.34,1.17,2.82,1.19,4.37.02,1.65-.47,3.13-1.56,4.37-.19.22-.18.3.07.46,1.39.85,2.22,2.16,2.72,3.68.78,2.36.61,4.71-.2,7.03-.57,1.63-1.42,3.1-2.76,4.22-1.13.95-2.41,1.48-3.89,1.45-.93-.02-1.76-.35-2.54-.84-.14-.09-.21-.1-.32.05-.87,1.22-2.05,2.04-3.36,2.69-2.33,1.16-4.83,1.71-7.38,2.04-4,.52-7.99.37-11.97-.24-1.69-.26-3.37-.6-5.03-1.03-3.11-.82-6.12-1.92-8.95-3.5-1.17-.65-2.28-1.4-3.31-2.25-.68-.56-1.22-1.27-1.61-2.07-.12-.24-.22-.29-.5-.25-1.12.16-2.22.05-3.29-.32-3.35-1.16-5.67-4.87-5.26-8.43.22-1.91,1-3.54,2.49-4.79.17-.14.24-.22-.02-.34-1.93-.89-3.19-2.42-3.89-4.43-1.24-3.56-.1-7.89,2.73-10.35,1.16-1.01,2.49-1.62,4.03-1.7.23-.01.26-.13.29-.3.26-1.54.83-2.97,1.46-4.38.79-1.76,1.71-3.43,2.95-4.9,1.44-1.69,3.19-2.96,5.19-3.86,3.02-1.36,6.18-1.88,9.45-1.41,3.9.55,7.28,2.18,9.9,5.24.98,1.15,1.72,2.45,2.2,3.89.03.08.03.21.12.24.12.04.15-.11.22-.17,2.05-2.21,5.1-3.24,7.85-2.18,1.78.69,3.04,1.95,3.81,3.73.61,1.42.79,2.89.58,4.72Zm-12.23-1.75c-.15-.28-.13-.54-.16-.78-.39-3.09-1.66-5.75-3.86-7.91-2.84-2.79-6.34-3.99-10.23-4.12-1.76-.06-3.5.18-5.19.71-1.67.53-3.26,1.22-4.6,2.39-1.51,1.32-2.8,2.84-3.84,4.58-1.32,2.22-2.15,4.61-2.3,7.21-.07,1.25.11,2.46.6,3.61.58,1.35,1.53,2.26,2.97,2.61.9.22,1.81.22,2.72.08,1.58-.25,3.02-.86,4.39-1.68.93-.55,1.75-1.25,2.56-1.96.16-.14.32-.32.55-.36-.71.87-1.27,1.85-2.16,2.57-1.7,1.38-3.52,2.48-5.7,2.87-3.34.59-6.47-1.32-7.21-4.82-.17-.81-.21-1.63-.18-2.46,0-.24-.05-.34-.31-.25-.81.28-1.58.64-2.26,1.17-1.58,1.23-2.53,2.86-2.97,4.81-.63,2.78.19,6.81,3.78,8.57.19.09.34.12.54.04.49-.2,1-.3,1.52-.35.33-.03.67-.03,1.08-.04-2.1-2.14-2.7-4.66-2.18-7.6.03.12.04.15.04.19.03.99.27,1.94.52,2.9.58,2.24,1.86,3.88,3.89,4.93,2.17,1.12,4.48,1.37,6.85,1.1,3.12-.36,6.05-1.39,8.76-3.01.4-.24.57-.23.93.05.1.08.21.15.33.21.85.38,1.74.64,2.66.71,1.59.13,3.19.1,4.75-.25,2.12-.48,4.1-1.2,5.46-3.09.31-.44.85-.32.99.19.4,1.45,1.09,2.72,2.11,3.82.69.74,1.36,1.49,2.19,2.08,1.21.86,2.54,1.45,3.93,1.94,2.03.71,4.06.72,6.06-.06,1.69-.66,2.85-1.87,3.28-3.69.36-1.55.09-3.03-.58-4.45-.83-1.75-2.05-3.17-3.54-4.37-1.5-1.21-3.18-2.03-5.04-2.5-.23-.06-.38-.03-.53.2-.58.89-1.33,1.63-2.2,2.23-1.35.93-2.83,1.44-4.48,1.29-2.51-.23-4.23-1.63-5.39-3.83-.1-.18-.15-.2-.28-.05-.35.39-.71.77-1.15,1.07-1.74,1.18-3.62,1.72-5.71,1.27-2.21-.48-3.81-1.75-4.67-3.86-1.12-2.75-.2-6.06,2.11-7.96.08-.07.18-.19.28-.07.12.13-.03.21-.11.3-1.13,1.32-1.88,2.81-1.93,4.59-.08,2.81,1.72,5.34,4.77,5.81,2.04.32,3.87-.23,5.53-1.44.87-.63,1.57-1.44,2.15-2.36.06.1.02.19,0,.27-.08.44-.24.86-.45,1.26-.06.11-.11.21-.05.34.33.68.64,1.39,1.18,1.94,1.88,1.95,4.38,2.28,6.76,1.06,1.9-.97,3.13-2.56,3.77-4.61.69-2.22.61-4.37-.56-6.42-1.21-2.12-3.47-3.13-5.82-2.57-1.56.37-2.78,1.28-3.76,2.53-.38.49-.63,1.06-.52,1.73.04.25.02.51,0,.76-.02.3-.03.6-.16.93Zm-24.01,21.14c-.01.2-.12.26-.2.33-.52.44-.97.94-1.39,1.47-1.22,1.54-2.07,3.24-2.21,5.24-.12,1.71.37,3.19,1.62,4.38,1.29,1.24,2.74,2.24,4.3,3.1,3.89,2.13,8.09,3.28,12.42,3.98,2.14.35,4.29.51,6.46.54,3.02.03,6-.24,8.93-.99,1.93-.5,3.79-1.19,5.44-2.37.9-.64,1.71-1.38,2.25-2.37.76-1.39,1.14-2.88,1.04-4.48-.11-1.88-.62-3.58-2.18-4.78-.05-.04-.14-.09-.08-.17.06-.08.15-.03.22,0,.28.16.56.33.77.57.16.18.27.18.46.01,1.24-1.07,3.29-1.27,4.72-.47.41.23.75.54,1,.95.04.06.08.13.03.2-.07.07-.12,0-.17-.05-.76-.71-1.65-1.02-2.68-1.05-.98-.03-1.8.31-2.51.97-.13.12-.14.21-.03.35.73,1.03,1.04,2.21,1.12,3.46.1,1.7-.3,3.31-1.01,4.84-.09.2-.07.29.11.41,1.11.75,2.3.86,3.53.41,1.35-.5,2.34-1.47,3.12-2.66,1.39-2.12,1.82-4.47,1.52-6.97-.25-1.99-.96-3.76-2.68-4.95-.17-.12-.26-.11-.41,0-1.55,1.12-3.3,1.58-5.19,1.5-.93-.04-1.85-.18-2.77-.37-2.03-.43-3.76-1.45-5.39-2.72-1.48-1.15-2.64-2.54-3.47-4.22-.22-.45-.43-.91-.65-1.38-.04.04-.07.06-.1.09-1.53,1.84-3.51,2.88-5.83,3.31-1.69.31-3.39.27-5.07-.09-1.16-.24-2.25-.66-3.26-1.28-.16-.1-.24,0-.34.07-.65.47-1.34.9-2.04,1.28-2.7,1.49-5.59,2.15-8.65,2.02-2.05-.09-4-.61-5.75-1.75-.08-.05-.15-.11-.24-.1-.53.06-1.06.01-1.59.1-2.19.35-3.82,1.47-4.68,3.6-.99,2.45-.27,5.59,1.71,7.49,1.33,1.27,2.9,1.94,4.74,1.86.4-.02.4-.03.37-.43-.18-2.13.35-4.07,1.64-5.75.45-.58.44-1.13.15-1.69-.78-1.48-1.95-2.37-3.67-2.34-.14,0-.28.02-.43.03.63-.33,1.3-.25,1.93-.07,1.45.41,2.52,1.28,3,2.83.66-.7,1.3-1.34,2.09-1.88Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m675.79,378.01c-.5-.06-1-.11-1.49-.17-.22-.03-.3.03-.3.27.04,2.71-.54,5.27-1.77,7.67-.44.86-.93,1.69-1.75,2.25-.52.36-1.06.65-1.73.56-.56-.07-1-.35-1.37-.75-.77-.82-1.11-1.85-1.33-2.92-.52-2.49-.29-4.95.3-7.4.09-.38.1-.39-.28-.42-.91-.09-1.82-.13-2.72-.26-.75-.11-1.08-.6-.84-1.31.11-.34.36-.5.71-.48,2.73.21,5.45.43,8.18.63,2.02.15,4.03.36,6.05.42.55.02.96.47.94,1.02-.03.69-.41,1.08-1.06,1.03-.51-.03-1.02-.11-1.52-.17,0,.01,0,.03,0,.04Zm-2.48,2.35c.09-.9.14-1.6.16-2.3,0-.21-.07-.28-.27-.3-2.04-.18-4.09-.37-6.13-.56-.2-.02-.28.04-.32.24-.42,2.14-.6,4.28-.28,6.45.17,1.13.45,2.23,1.09,3.2.78,1.18,1.93,1.32,2.95.34.8-.77,1.38-1.69,1.77-2.72.56-1.47.9-2.99,1.04-4.35Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m667.18,388.72c1.14,1.06,2.35.99,3.62.31-.41.53-.93.87-1.6.89-.8.02-1.72-.53-2.02-1.2Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m668.27,390.32c.48.27.98.21,1.49.09-.18.51-1.06.44-1.49-.09Z%22/%3E%20%3Cpath%20fill=%22%23ff9700%22%20d=%22m668,381.37c.13-.77.27-1.49.54-2.17.12-.31.27-.61.5-.86.35-.37.79-.36,1.12.03.26.3.36.67.45,1.05.33,1.46.25,2.92-.05,4.38-.08.37-.17.73-.3,1.08-.11.3-.25.58-.45.82-.42.51-.97.46-1.31-.1-.29-.48-.41-1.01-.49-1.56-.13-.91-.12-1.82-.02-2.68Z%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3C/g%3E%3C/svg%3E");

  background-repeat: repeat;

  background-size: 1150px auto;

  background-position: 0 0;

  opacity: 0.73;

  z-index: 0;

  pointer-events: none;

}

/* AOLIPOP: 保证产品内容层位于水印之上，sanli-decorator 在父层 .sanli-band 中不受影响 */

.sanli-theme-red .sanli-band-products,

.sanli-family.sanli-theme-red .sanli-band--flavor > .sanli-band-products {

  position: relative;

}

.sanli-theme-red .sanli-band-products > *,

.sanli-family.sanli-theme-red .sanli-band--flavor > .sanli-band-products > * {

  position: relative;

  z-index: 1;

}

.sanli-band--flavor.sanli-theme-pink .sanli-card,

.sanli-band--flavor.sanli-theme-green .sanli-card,

.sanli-band--flavor.sanli-theme-red .sanli-card,

.sanli-band--flavor.sanli-theme-blue .sanli-card { color: #ffffff; }

.sanli-band--flavor.sanli-theme-cyan .sanli-card,

.sanli-band--flavor.sanli-theme-yellow .sanli-card { color: #3a2a05; }

.sanli-band--flavor.sanli-theme-pink .sanli-card:hover,

.sanli-band--flavor.sanli-theme-green .sanli-card:hover,

.sanli-band--flavor.sanli-theme-red .sanli-card:hover,

.sanli-band--flavor.sanli-theme-blue .sanli-card:hover { background: rgba(255, 255, 255, 0.14); }

.sanli-band--flavor.sanli-theme-cyan .sanli-card:hover,

.sanli-band--flavor.sanli-theme-yellow .sanli-card:hover { background: rgba(255, 255, 255, 0.34); }

.sanli-band--flavor.sanli-theme-pink .sanli-card__spec,

.sanli-band--flavor.sanli-theme-green .sanli-card__spec,

.sanli-band--flavor.sanli-theme-red .sanli-card__spec,

.sanli-band--flavor.sanli-theme-blue .sanli-card__spec { background: rgba(0, 0, 0, 0.22); color: #ffffff; }

.sanli-band--flavor.sanli-theme-cyan .sanli-card__spec,

.sanli-band--flavor.sanli-theme-yellow .sanli-card__spec { background: rgba(0, 0, 0, 0.12); color: #3a2a05; }



/* ============================================================

   SHULETANG：产品带背景采用参考网站「淡蓝 / 米白」交替

   （参考 http://www.xn--ehquem2s5r3f.com/col.jsp?id=112 ）

   仅改动产品区背景色及浅底下的文字/标签颜色，其余布局、标题、交互均不变。

   ============================================================ */

.sanli-family.sanli-theme-blue > .sanli-band > .sanli-band-products > .sanli-band--flavor:nth-child(odd) > .sanli-band-products {

  background-color: #f4fbff; /* 淡蓝 */

  background-image: none;

}

.sanli-family.sanli-theme-blue > .sanli-band > .sanli-band-products > .sanli-band--flavor:nth-child(even) > .sanli-band-products {

  background-color: #ffffff; /* 米白 */

  background-image: none;

}

/* 浅色底需深色文字/标签方可读（卡片结构保持不变） */

.sanli-family.sanli-theme-blue > .sanli-band > .sanli-band-products > .sanli-band--flavor .sanli-card { color: #3a2a05; }

.sanli-family.sanli-theme-blue > .sanli-band > .sanli-band-products > .sanli-band--flavor .sanli-card:hover { background: rgba(0, 0, 0, 0.05); }

.sanli-family.sanli-theme-blue > .sanli-band > .sanli-band-products > .sanli-band--flavor .sanli-card__spec { background: rgba(0, 0, 0, 0.08); color: #3a2a05; }

/* SHULETANG 口味标题栏背景与对应产品带一致（淡蓝/米白交替），标题文字深色可读 */

.sanli-family.sanli-theme-blue > .sanli-band > .sanli-band-products > .sanli-band--flavor:nth-child(odd) > .sanli-band-title {

  background-color: #f4fbff; /* 淡蓝 */

  background-image: none;

}

.sanli-family.sanli-theme-blue > .sanli-band > .sanli-band-products > .sanli-band--flavor:nth-child(even) > .sanli-band-title {

  background-color: #ffffff; /* 米白 */

  background-image: none;

}

.sanli-family.sanli-theme-blue > .sanli-band > .sanli-band-products > .sanli-band--flavor > .sanli-band-title .sanli-title {

  color: #3a2a05;

  text-shadow: none;

}

/* SHULETANG 产品卡片：参考 col.jsp?id=112 —— 方形产品图 + 深色加粗标题（仅改图片/标题/排列，其余不变） */

.sanli-family.sanli-theme-blue > .sanli-band > .sanli-band-products > .sanli-band--flavor .sanli-card__media {

  aspect-ratio: 1 / 1;

  height: auto;

}

.sanli-family.sanli-theme-blue > .sanli-band > .sanli-band-products > .sanli-band--flavor .sanli-card__media img {

  mix-blend-mode: normal;

}

.sanli-family.sanli-theme-blue > .sanli-band > .sanli-band-products > .sanli-band--flavor .sanli-card__name {

  font-family: "Lato", "Microsoft YaHei", Arial, sans-serif;

  font-weight: 700;

  font-size: 1.18em;

  line-height: 1.35;

  color: #212121;

}

/* SHULETANG 机器糖棒棒糖分类：礼盒装产品独立一行居中，在该分类第一排展示 */

.sanli-family.sanli-theme-blue > .sanli-band > .sanli-band-products > .sanli-band--flavor.has-giftbox > .sanli-band-products > .sanli-all-grid .sanli-card.is-giftbox {

  grid-column: 1 / -1;

  order: -1;

}

.sanli-family.sanli-theme-blue > .sanli-band > .sanli-band-products > .sanli-band--flavor.has-giftbox > .sanli-band-products > .sanli-all-grid .sanli-card.is-giftbox .sanli-card__media {

  max-width: 26em;

  margin-left: auto;

  margin-right: auto;

}

/* AOLIPOP 钻石糖糖果分类：150g(5g×30支) 整盒产品独占第一行居中，其余 6 支小包装正常排列 */

.sanli-family.sanli-theme-red .sanli-band--flavor.has-diamond150 > .sanli-band-products > .sanli-all-grid .sanli-card:first-child {

  grid-column: 1 / -1;

}

.sanli-family.sanli-theme-red .sanli-band--flavor.has-diamond150 > .sanli-band-products > .sanli-all-grid .sanli-card:first-child .sanli-card__name {

  max-width: none;

}

.sanli-family.sanli-theme-red .sanli-band--flavor.has-diamond150 > .sanli-band-products > .sanli-all-grid .sanli-card:first-child .sanli-card__media {

  max-width: 26em;

  margin-left: auto;

  margin-right: auto;

}

.sanli-family.sanli-theme-red .sanli-band--flavor.has-diamond150 > .sanli-band-products > .sanli-all-grid .sanli-card:first-child .sanli-card__media img {

  -webkit-transform: scale(1.5);

  transform: scale(1.5);

}

.sanli-family.sanli-theme-red .sanli-band--flavor.has-diamond150 > .sanli-band-products > .sanli-all-grid .sanli-card:first-child:hover .sanli-card__media img {

  -webkit-transform: scale(1.62) rotate(-3deg);

  transform: scale(1.62) rotate(-3deg);

}

/* ============================================================

   YOOMIGGO：产品带背景采用参考网站「淡粉 / 淡绿」交替

   （参考 http://www.xn--ehquem2s5r3f.com/col.jsp?id=111 ）

   产品区与标题栏背景一致，浅底文字/标签深色可读，其余样式不变。

   ============================================================ */

.sanli-family.sanli-theme-pink > .sanli-band > .sanli-band-products > .sanli-band--flavor:nth-child(odd) > .sanli-band-products {

  background-color: #fde7eb; /* 淡粉 */

  background-image: none;

}

.sanli-family.sanli-theme-pink > .sanli-band > .sanli-band-products > .sanli-band--flavor:nth-child(even) > .sanli-band-products {

  background-color: #f2fbf5; /* 淡绿 */

  background-image: none;

}

.sanli-family.sanli-theme-pink > .sanli-band > .sanli-band-products > .sanli-band--flavor:nth-child(odd) > .sanli-band-title {

  background-color: #fde7eb; /* 淡粉 */

  background-image: none;

}

.sanli-family.sanli-theme-pink > .sanli-band > .sanli-band-products > .sanli-band--flavor:nth-child(even) > .sanli-band-title {

  background-color: #f2fbf5; /* 淡绿 */

  background-image: none;

}

/* 浅底需深色文字/标签方可读（卡片结构保持不变） */

.sanli-family.sanli-theme-pink > .sanli-band > .sanli-band-products > .sanli-band--flavor .sanli-card { color: #3a2a05; }

.sanli-family.sanli-theme-pink > .sanli-band > .sanli-band-products > .sanli-band--flavor .sanli-card:hover { background: rgba(0, 0, 0, 0.05); }

.sanli-family.sanli-theme-pink > .sanli-band > .sanli-band-products > .sanli-band--flavor .sanli-card__spec { background: rgba(0, 0, 0, 0.08); color: #3a2a05; }

.sanli-family.sanli-theme-pink > .sanli-band > .sanli-band-products > .sanli-band--flavor > .sanli-band-title .sanli-title {

  color: #3a2a05;

  text-shadow: none;

}

/* 移除婴美高内部误带上的 AOLIPOP 品牌 SVG 底图（首块口味带被 JS 分配为 theme-red 所致） */

.sanli-family.sanli-theme-pink .sanli-band--flavor > .sanli-band-products::before {

  content: none;

}

/* 婴美高「扭蛋糖」分类：156g 整盒产品独占一行，其余 6 支小包装并排一行（共上下两行） */

.sanli-family.sanli-theme-pink .sanli-band--flavor.has-156g > .sanli-band-products > .sanli-all-grid {

  grid-template-columns: repeat(3, minmax(0, 1fr));

}

.sanli-family.sanli-theme-pink .sanli-band--flavor.has-156g > .sanli-band-products > .sanli-all-grid .sanli-card:first-child {

  grid-column: 1 / -1;

}

/* 放大 6 支小包装图片：收窄该分类产品区左右内边距，使每列更宽（保持 6 个一排） */

.sanli-family.sanli-theme-pink .sanli-band--flavor.has-156g > .sanli-band-products {

  padding-left: 0.6em;

  padding-right: 0.6em;

}

/* 婴美高产品卡片：参考 col.jsp?id=111 —— 方形产品图 + 简洁标题（仅改图片/排列/标题，其余不动） */

.sanli-family.sanli-theme-pink .sanli-band--flavor .sanli-card__media {

  aspect-ratio: 1 / 1;

  height: auto;

}

.sanli-family.sanli-theme-pink .sanli-band--flavor .sanli-card__media img {

  mix-blend-mode: normal;

}

.sanli-family.sanli-theme-pink .sanli-band--flavor .sanli-card__name {

  font-family: "Lato", "Microsoft YaHei", Arial, sans-serif;

  font-weight: 400;

  font-size: 1.2em;

  line-height: 1.35;

  color: #e0506e;

}

/* 扭蛋糖分类：156g 整盒产品（独占一行）方形图限宽居中，避免过大致卡片过高 */

.sanli-family.sanli-theme-pink .sanli-band--flavor.has-156g > .sanli-band-products > .sanli-all-grid .sanli-card:first-child .sanli-card__media {

  max-width: 26em;

  margin-left: auto;

  margin-right: auto;

}

@media (max-width: 768px) {

  .sanli-family.sanli-theme-pink .sanli-band--flavor.has-156g > .sanli-band-products > .sanli-all-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }

}



@media (max-width: 768px) {

  /* keep position: relative so .sanli-tabs__bg (position:absolute) is contained within banner */

  /* min-height: 200px as fallback when aspect-ratio is not supported (legacy WeChat browsers etc.) */

  .sanli-tabs { position: relative; top: auto; gap: 0.45em; padding: 1.4em 0.7em; min-height: 200px; }

  .sanli-tabs__bg { background-size: cover; }

  .sanli-tab { font-size: 0.88em; padding: 0.55em 1.1em; }

  .sanli-all-grid { grid-template-columns: repeat(auto-fill, minmax(18em, 1fr)); gap: 1.6em 0.7em; }

  .sanli-card__media { height: 18em; }

  /* On mobile's two-column layout, the canned pillow candy's 1.5x zoomed image overflows into the adjacent card; reduce zoom to avoid overlap */

  .sanli-family.sanli-theme-red .sanli-band--flavor.is-canned-pillow .sanli-card__media img {

    -webkit-transform: scale(1.08);

    transform: scale(1.08);

  }

  .sanli-family.sanli-theme-red .sanli-band--flavor.is-canned-pillow .sanli-card:hover .sanli-card__media img {

    -webkit-transform: scale(1.14) rotate(-3deg);

    transform: scale(1.14) rotate(-3deg);

  }

  /* Diamond 150g box image: 1.5x zoom on its own row overflows the page horizontally on mobile; reduce zoom */

  .sanli-family.sanli-theme-red .sanli-band--flavor.has-diamond150 > .sanli-band-products > .sanli-all-grid .sanli-card:first-child .sanli-card__media img {

    -webkit-transform: scale(1.15);

    transform: scale(1.15);

  }

  .sanli-card__name { font-size: 1.38em; }

  .sanli-band--flavor .sanli-band-title { padding: 2em 1em 1.6em; }

  .sanli-band--flavor .sanli-title { font-size: 1.7em; }

  .sanli-band--flavor .sanli-band-products { padding: 2.4em 1em 2.8em; }

}



/* For browsers that support aspect-ratio: let banner height be determined entirely by aspect-ratio */

@supports (aspect-ratio: 1/1) {

  @media (max-width: 768px) {

    .sanli-tabs { min-height: auto; }

  }

}

@media (max-width: 480px) {

  .sanli-all-grid { grid-template-columns: repeat(2, 1fr); }

  .sanli-tab { font-size: 0.8em; padding: 0.5em 0.9em; letter-spacing: 0.04em; }

  .sanli-band--flavor .sanli-title { font-size: 1.35em; letter-spacing: 0.05em; }

  .sanli-band--flavor .sanli-band-products { padding: 1.8em 0.7em 2.2em; }

}



/* --- Newsletter Section --- */

.sanli-newsletter {

  background-color: #39b54a;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0v60M0 30h60' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E");

  padding: 60px 20px;

  text-align: center;

}



.sanli-newsletter__inner {

  max-width: 560px;

  margin: 0 auto;

}



.sanli-newsletter__title {

  font-family: "Lato", Arial, sans-serif;

  font-size: 28px;

  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  color: #ffffff;

  margin: 0 0 12px;

}



.sanli-newsletter__text {

  font-size: 16px;

  color: rgba(255, 255, 255, 0.9);

  margin: 0 0 28px;

}



.sanli-newsletter__form {

  display: flex;

  gap: 0;

  max-width: 460px;

  margin: 0 auto;

}



.sanli-newsletter__input {

  flex: 1;

  padding: 14px 18px;

  font-size: 15px;

  border: none;

  border-radius: 4px 0 0 4px;

  outline: none;

  font-family: "Lato", Arial, sans-serif;

}



.sanli-newsletter__btn {

  padding: 14px 28px;

  font-size: 14px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  background-color: #000000;

  color: #ffffff;

  border: none;

  border-radius: 0 4px 4px 0;

  cursor: pointer;

  transition: background-color 0.3s ease;

  font-family: "Lato", Arial, sans-serif;

}



.sanli-newsletter__btn:hover {

  background-color: #2f2e2e;

}



/* --- Responsive --- */

@media (max-width: 1024px) {

  .sanli-title { font-size: 2.6em; }

  .sanli-decorator { width: 7em; height: 7em; }

}



@media (max-width: 768px) {

  .sanli-band-title { padding: 4em 1.5em 3.2em; }

  .sanli-title { font-size: 2.1em; letter-spacing: 0.08em; }

  .sanli-subtitle { font-size: 1.1em; letter-spacing: 0.14em; }

  .sanli-decorator { width: 5.5em; height: 5.5em; opacity: 0.8; }

  .sanli-band-products { padding: 3.5em 1.2em; }

  .sanli-layout-classic .sanli-product { width: 100%; }

  .sanli-badge { width: 11em; height: 11em; }

  .sanli-product-images { max-width: 19em; }

  .sanli-scatter { height: 13em; }

  .sanli-newsletter__form { flex-direction: column; gap: 12px; }

  .sanli-newsletter__input { border-radius: 4px; }

  .sanli-newsletter__btn { border-radius: 4px; }

}



@media (max-width: 480px) {

  .sanli-title { font-size: 1.7em; }

  .sanli-decorator { display: none; }

  .sanli-product-images { max-width: 15em; }

  .sanli-scatter { height: 11em; }

}



/* ============================================================

   MISSING CLASSES - Styles for HTML classes used in templates

   ============================================================ */



/* Breadcrumb section - used in detail, faq, recipes, where-to-buy, search */

.breadcrumb-section {

  background-color: var(--color-bg-soft);

  padding: 12px 0;

  margin-top: 0;

}



.breadcrumb-section .container {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  align-items: center;

  gap: 8px;

  font-size: 14px;

  color: var(--color-text-light);

}



.breadcrumb-section a {

  color: var(--color-primary);

  text-decoration: none;

  transition: color 0.2s ease;

}



.breadcrumb-section a:hover {

  color: var(--color-primary-hover);

}



/* Submenu indicator - desktop nav items with children */

.has-submenu > a::after {

  content: '\f0d7';

  font-family: 'FontAwesome';

  font-size: 10px;

  margin-left: 6px;

  display: inline-block;

}



/* Mobile nav container */

.mobile-nav {

  display: block;

  width: 100%;

}



/* FAQ question text */

.faq-question__text {

  display: block;

  font-size: 16px;

  font-weight: 600;

  color: var(--color-text);

  line-height: 1.5;

}



/* Store locator results title */

.store-locator-results__title {

  font-family: var(--font-heading);

  font-size: 24px;

  color: var(--color-text);

  margin-bottom: 16px;

}



/* Sanli product portrait image */

.sanli-product-portrait {

  width: 100%;

  max-width: 400px;

  height: auto;

  display: block;

  margin: 0 auto;

}



/* --- Sanli interaction states (JS-driven) --- */

.sanli-product-details.is-open p {

  max-height: 30em;

  opacity: 1;

}

.sanli-invitation[aria-expanded="true"]::before {

  -webkit-transform: rotate(135deg);

  transform: rotate(135deg);

  background-color: #2a8f38;

}

.sanli-invitation[aria-expanded="true"] {

  -webkit-transform: scale(1.05);

  transform: scale(1.05);

}



/* scroll reveal: only hidden once JS marks root .js-on (no-JS safe) */

.sanli-root.js-on .sanli-reveal {

  opacity: 0;

  -webkit-transform: translateY(34px);

  transform: translateY(34px);

  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);

  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);

}

.sanli-root.js-on .sanli-reveal.is-in {

  opacity: 1;

  -webkit-transform: none;

  transform: none;

}



/* --- Scatter packs: scattered layout via nth-child --- */

.sanli-scatter-pack img {

  width: 100%;

  height: auto;

  display: block;

  mix-blend-mode: multiply;

}

.sanli-scatter-pack:nth-child(1) { left: 4%;   top: 16%;  width: 24%; -webkit-transform: rotate(-8deg); transform: rotate(-8deg); }

.sanli-scatter-pack:nth-child(2) { left: 38%;  top: 2%;   width: 27%; -webkit-transform: rotate(5deg);  transform: rotate(5deg); }

.sanli-scatter-pack:nth-child(3) { right: 4%;  top: 18%;  width: 23%; -webkit-transform: rotate(9deg);  transform: rotate(9deg); }

.sanli-scatter-pack:nth-child(4) { left: 18%;  bottom: 0; width: 22%; -webkit-transform: rotate(-5deg); transform: rotate(-5deg); }

.sanli-scatter-pack:nth-child(5) { right: 16%; bottom: -2%; width: 24%; -webkit-transform: rotate(7deg); transform: rotate(7deg); }

.sanli-scatter-pack:hover {

  z-index: 5;

  -webkit-transform: rotate(0) scale(1.1);

  transform: rotate(0) scale(1.1);

}



/* Sanli layout helpers */

.l-panel {

  position: relative;

  width: 100%;

}



.l-content {

  width: 100%;

}



/* ============================================================

   MOBILE NAV - Search & Language entries

   ============================================================ */

.mobile-nav-search {

  padding: 16px 20px;

  border-top: 1px solid rgba(100, 47, 13, 0.1);

  margin-top: 12px;

}



.mobile-nav-search a {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  gap: 10px;

  font-size: 16px;

  color: var(--color-text);

  text-decoration: none;

  padding: 8px 0;

  transition: color 0.2s ease;

}



.mobile-nav-search a:hover {

  color: var(--color-primary);

}



.mobile-nav-search i {

  font-size: 16px;

}



.mobile-nav-lang {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  gap: 12px;

  padding: 12px 20px 24px;

  border-top: 1px solid rgba(100, 47, 13, 0.1);

}



.mobile-nav-lang a {

  font-size: 15px;

  color: var(--color-text-light);

  text-decoration: none;

  padding: 6px 12px;

  border-radius: 4px;

  transition: color 0.2s ease, background-color 0.2s ease;

}



.mobile-nav-lang a:hover {

  color: var(--color-primary);

  background-color: rgba(154, 93, 9, 0.08);

}



.mobile-nav-lang a.active {

  color: var(--color-primary);

  font-weight: 700;

}



.mobile-nav-lang__divider {

  color: rgba(100, 47, 13, 0.2);

  font-size: 14px;

}



/* ============================================================

   HOME STORY - 明亮分栏品牌故事（左文右图）

   1:1 参考站首页 story 的明亮调性

   ============================================================ */

.home-story {

  position: relative;

  padding: 96px 0;

  background: var(--color-bg);

  overflow: hidden;

}



/* 暖色环境光晕，营造焦糖氛围 */

.home-story::before {

  content: '';

  position: absolute;

  bottom: -180px;

  left: -120px;

  width: 460px;

  height: 460px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(154, 93, 9, 0.10) 0%, transparent 70%);

  pointer-events: none;

}

.home-story::after {

  content: '';

  position: absolute;

  top: -140px;

  right: -100px;

  width: 380px;

  height: 380px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(187, 74, 34, 0.08) 0%, transparent 70%);

  pointer-events: none;

}



.home-story .container {

  position: relative;

  z-index: 1;

}



.home-story__wrap {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  gap: 72px;

}



.home-story__text {

  -webkit-box-flex: 1;

  -ms-flex: 1 1 0;

  flex: 1 1 0;

  max-width: 520px;

}



.home-story__subline {

  font-size: 14px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 2.5px;

  color: var(--color-primary);

  margin: 0 0 16px;

  position: relative;

  padding-left: 44px;

}

.home-story__subline::before {

  content: '';

  position: absolute;

  left: 0;

  top: 50%;

  width: 32px;

  height: 2px;

  background: var(--color-primary);

  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

}



.home-story__title {

  font-family: "Lobster", cursive;

  font-weight: normal;

  font-size: 52px;

  line-height: 1.12;

  color: var(--color-text);

  margin: 0 0 22px;

}



.home-story__desc {

  font-size: 16px;

  line-height: 1.8;

  color: var(--color-text);

  margin: 0 0 34px;

  opacity: 0.92;

}



/* 胶囊 CTA：焦糖金 + 光泽扫过 + 箭头右移 */

.home-story__btn {

  position: relative;

  display: -webkit-inline-box;

  display: -ms-inline-flexbox;

  display: inline-flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  gap: 12px;

  padding: 15px 32px;

  background: var(--color-primary);

  color: var(--color-white);

  font-weight: 700;

  font-size: 15px;

  text-transform: uppercase;

  letter-spacing: 1px;

  border-radius: 999px;

  text-decoration: none;

  overflow: hidden;

  box-shadow: 0 8px 22px rgba(154, 93, 9, 0.28);

  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;

  transition: background-color 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;

}

.home-story__btn::before {

  content: '';

  position: absolute;

  top: 0;

  left: -75%;

  width: 50%;

  height: 100%;

  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);

  -webkit-transform: skewX(-20deg);

  transform: skewX(-20deg);

  -webkit-transition: left 0.6s ease;

  transition: left 0.6s ease;

}

.home-story__btn:hover {

  background: var(--color-primary-hover);

  color: var(--color-white);

  -webkit-transform: translateY(-3px);

  transform: translateY(-3px);

  box-shadow: 0 14px 30px rgba(154, 93, 9, 0.38);

}

.home-story__btn:hover::before { left: 130%; }

.home-story__btn i {

  -webkit-transition: -webkit-transform 0.3s ease;

  transition: transform 0.3s ease;

}

.home-story__btn:hover i {

  -webkit-transform: translateX(5px);

  transform: translateX(5px);

}



/* 右栏图片：圆角 + 暖阴影 + hover 放大 */

.home-story__media {

  -webkit-box-flex: 1;

  -ms-flex: 1 1 0;

  flex: 1 1 0;

  position: relative;

}

.home-story__frame {

  position: relative;

  border-radius: 28px;

  overflow: hidden;

  aspect-ratio: 4 / 3;

  box-shadow: 0 24px 60px rgba(100, 47, 13, 0.22);

}

.home-story__frame::after {

  content: '';

  position: absolute;

  inset: 0;

  border-radius: 28px;

  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);

  pointer-events: none;

}

.home-story__img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);

  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);

}

.home-story__frame:hover .home-story__img {

  -webkit-transform: scale(1.06);

  transform: scale(1.06);

}



/* Home Page - Our Factory right image: match the top page-hero banner height (320px) + cover crop */

.home-factory__gallery {

  aspect-ratio: auto;     /* Override the universal 4/3 aspect-ratio to fix height */

  height: 320px;          /* Same as .page-hero height for visual consistency */

  width: 100%;

}

.home-factory__img-main {

  object-fit: cover;

  object-position: center center;

}

@media (max-width: 768px) {

  .home-factory__gallery { height: 240px; }

}

@media (min-width: 1440px) {

  .home-factory__gallery { height: 360px; }

}







/* ============================================================

   SCROLL REVEAL - 滚动揭示（JS 加 .js-reveal 后才隐藏，无 JS 则保持可见）

   ============================================================ */

.js-reveal {

  opacity: 0;

  -webkit-transform: translateY(34px);

  transform: translateY(34px);

  -webkit-transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);

  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);

}

.js-reveal.reveal-in {

  opacity: 1;

  -webkit-transform: none;

  transform: none;

}

/* 分类卡错峰揭示 */

.category-grid > .js-reveal:nth-child(1) { -webkit-transition-delay: 0.05s; transition-delay: 0.05s; }

.category-grid > .js-reveal:nth-child(2) { -webkit-transition-delay: 0.13s; transition-delay: 0.13s; }

.category-grid > .js-reveal:nth-child(3) { -webkit-transition-delay: 0.21s; transition-delay: 0.21s; }

.category-grid > .js-reveal:nth-child(4) { -webkit-transition-delay: 0.29s; transition-delay: 0.29s; }

.category-grid > .js-reveal:nth-child(5) { -webkit-transition-delay: 0.37s; transition-delay: 0.37s; }



/* ============================================================

   PRODUCT OVERVIEW PAGE

   ============================================================ */

.product-stage {

  position: relative;

  overflow: hidden;

}



.product-stage__image-wrap {

  width: 100%;

  height: 40vh;

  min-height: 280px;

  max-height: 450px;

}



.product-stage__image {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.product-stage__wave {

  position: absolute;

  bottom: -1px;

  left: 0;

  width: 100%;

  line-height: 0;

}



.product-stage__wave svg {

  width: 100%;

  height: 80px;

}



.product-overview {

  padding: 3rem 0 4rem;

}



.product-overview__header {

  text-align: center;

  max-width: 700px;

  margin: 0 auto 3rem;

}



.product-overview__title {

  font-family: var(--font-heading);

  font-size: 2.5rem;

  color: var(--color-text);

  margin-bottom: 1rem;

}



.product-overview__intro {

  font-size: 1rem;

  line-height: 1.7;

  color: var(--color-text);

  opacity: 0.85;

}



.product-family {

  margin-bottom: 3.5rem;

  padding-bottom: 3.5rem;

  border-bottom: 1px solid var(--color-border);

}



.product-family:last-child {

  border-bottom: none;

  margin-bottom: 0;

}



.product-family__header {

  margin-bottom: 1.5rem;

}



.product-family__title {

  font-family: var(--font-heading);

  font-size: 1.8rem;

  color: var(--color-text);

}



.product-family__grid {

  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));

  gap: 1.5rem;

  margin-bottom: 1.5rem;

}



.product-family__footer {

  text-align: center;

}



.product-family__cta {

  display: inline-block;

}



/* Product Tile Card */

.product-tile {

  display: block;

  background: var(--color-white);

  border-radius: var(--border-radius-lg);

  overflow: hidden;

  text-decoration: none;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  box-shadow: 0 2px 8px rgba(100, 47, 13, 0.06);

}



.product-tile:hover {

  transform: translateY(-4px);

  box-shadow: 0 8px 24px rgba(100, 47, 13, 0.12);

}



.product-tile__image-wrap {

  position: relative;

  padding: 1.5rem;

  display: flex;

  align-items: center;

  justify-content: center;

  min-height: 160px;

  background: linear-gradient(135deg, #fef9f0 0%, #fdecd2 100%);

}



.product-tile__image-bg {

  position: absolute;

  inset: 0;

  background: radial-gradient(circle at center, rgba(154, 93, 9, 0.05) 0%, transparent 70%);

}



.product-tile__image {

  position: relative;

  max-width: 120px;

  max-height: 120px;

  object-fit: contain;

  transition: transform 0.3s ease;

}



.product-tile:hover .product-tile__image {

  transform: scale(1.05);

}



.product-tile__body {

  padding: 1rem 1.25rem 1.25rem;

}



.product-tile__name {

  font-size: 1rem;

  font-weight: 700;

  color: var(--color-text);

  margin-bottom: 0.4rem;

}



.product-tile__desc {

  font-size: 0.85rem;

  color: var(--color-text);

  opacity: 0.7;

  line-height: 1.5;

}



/* ============================================================

   PRODUCT DETAIL PAGE

   ============================================================ */

.product-detail {

  padding: 2rem 0 3rem;

}



.product-detail__wrapper {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 3rem;

  align-items: start;

}



.product-detail__image-wrap {

  position: relative;

  background: linear-gradient(135deg, #fef9f0 0%, #fdecd2 100%);

  border-radius: var(--border-radius-lg);

  padding: 3rem;

  display: flex;

  align-items: center;

  justify-content: center;

  min-height: 350px;

}



.product-detail__image-bg {

  position: absolute;

  inset: 0;

  background: radial-gradient(circle at center, rgba(154, 93, 9, 0.06) 0%, transparent 70%);

  border-radius: var(--border-radius-lg);

}



.product-detail__image {

  position: relative;

  max-width: 280px;

  max-height: 280px;

  object-fit: contain;

}



.product-detail__title {

  font-family: var(--font-heading);

  font-size: 2.2rem;

  color: var(--color-text);

  margin-bottom: 0.5rem;

}



.product-detail__subtitle {

  font-size: 1.1rem;

  color: var(--color-text-light);

  margin-bottom: 1.5rem;

}



.product-detail__description {

  font-size: 1rem;

  line-height: 1.8;

  color: var(--color-text);

  margin-bottom: 1.5rem;

}



.product-detail__meta {

  margin-bottom: 2rem;

}



.product-meta-item {

  display: flex;

  align-items: baseline;

  padding: 0.5rem 0;

  border-bottom: 1px solid var(--color-border);

}



.product-meta-item__label {

  font-weight: 700;

  min-width: 80px;

  color: var(--color-text);

}



.product-meta-item__value {

  color: var(--color-text);

  opacity: 0.8;

}



.product-detail__actions {

  margin-top: 1.5rem;

}



/* Product Gallery */

.product-gallery {

  padding: 2rem 0 3rem;

}



.product-gallery__title {

  font-family: var(--font-heading);

  font-size: 1.8rem;

  color: var(--color-text);

  margin-bottom: 1.5rem;

  text-align: center;

}



.product-gallery__grid {

  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));

  gap: 1rem;

}



.product-gallery__item {

  border-radius: var(--border-radius-lg);

  overflow: hidden;

}



.product-gallery__image {

  width: 100%;

  height: 200px;

  object-fit: cover;

  transition: transform 0.3s ease;

}



.product-gallery__item:hover .product-gallery__image {

  transform: scale(1.05);

}



/* Related Products */

.related-products {

  padding: 3rem 0 4rem;

  background: var(--color-bg-soft);

}



.related-products__title {

  font-family: var(--font-heading);

  font-size: 1.8rem;

  color: var(--color-text);

  margin-bottom: 1.5rem;

  text-align: center;

}



.related-products__grid {

  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));

  gap: 1.5rem;

}



/* ============================================================

   SPECIAL SECTION (Homepage)

   ============================================================ */

.special-section {

  padding: 4rem 0;

}



.special-wrapper {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 3rem;

  align-items: center;

}



.special-title {

  font-family: var(--font-heading);

  font-size: 2rem;

  color: var(--color-text);

  margin-bottom: 1rem;

}



.special-desc {

  font-size: 1rem;

  line-height: 1.8;

  color: var(--color-text);

  margin-bottom: 1rem;

}



.special-highlight {

  font-size: 1.05rem;

  font-weight: 700;

  color: var(--color-primary);

  margin-bottom: 1.5rem;

  font-style: italic;

}



.special-image {

  border-radius: var(--border-radius-lg);

  overflow: hidden;

}



.special-image__img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: var(--border-radius-lg);

}



/* ============================================================

   RECIPES TEASER (Homepage)

   ============================================================ */

.recipes-teaser {

  padding: 4rem 0;

  background: var(--color-bg-soft);

}



.recipes-teaser__grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1.5rem;

  margin-top: 2rem;

}



.recipe-teaser-card {

  display: block;

  background: var(--color-white);

  border-radius: var(--border-radius-lg);

  overflow: hidden;

  text-decoration: none;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  box-shadow: 0 2px 8px rgba(100, 47, 13, 0.06);

}



.recipe-teaser-card:hover {

  transform: translateY(-4px);

  box-shadow: 0 8px 24px rgba(100, 47, 13, 0.12);

}



.recipe-teaser-card__image-wrap {

  height: 180px;

  overflow: hidden;

}



.recipe-teaser-card__image {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.3s ease;

}



.recipe-teaser-card:hover .recipe-teaser-card__image {

  transform: scale(1.05);

}



.recipe-teaser-card__body {

  padding: 1rem 1.25rem;

}



.recipe-teaser-card__title {

  font-size: 1rem;

  font-weight: 700;

  color: var(--color-text);

}



/* Recipe card time */

.recipe-card__time {

  display: flex;

  align-items: center;

  gap: 0.4rem;

  font-size: 0.8rem;

  color: var(--color-text-light);

  margin-top: 0.5rem;

}



.recipe-card__time-icon {

  display: inline-block;

  width: 14px;

  height: 14px;

  border: 2px solid var(--color-text-light);

  border-radius: 50%;

  position: relative;

}



.recipe-card__time-icon::after {

  content: '';

  position: absolute;

  top: 2px;

  left: 50%;

  width: 1.5px;

  height: 4px;

  background: var(--color-text-light);

  transform-origin: bottom center;

  transform: rotate(30deg);

}



/* ============================================================

   ABOUT SPECIAL SECTION

   ============================================================ */

.about-special {

  padding: 4rem 0;

  background: var(--color-bg-soft);

}



.about-special__title {

  font-family: var(--font-heading);

  font-size: 2rem;

  color: var(--color-text);

  text-align: center;

  margin-bottom: 2rem;

}



.about-special__grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 2.5rem;

  align-items: center;

  margin-bottom: 2rem;

}



.about-special__text p {

  font-size: 1rem;

  line-height: 1.8;

  color: var(--color-text);

}



.about-special__img {

  width: 100%;

  border-radius: var(--border-radius-lg);

  object-fit: cover;

}



.about-special__highlight {

  text-align: center;

  font-size: 1.1rem;

  font-weight: 700;

  font-style: italic;

  color: var(--color-primary);

  max-width: 600px;

  margin: 0 auto;

}





/* ============================================================

   COMPLAINT MODAL

   ============================================================ */

.complaint-modal {

  position: fixed;

  inset: 0;

  z-index: 9999;

  display: flex;

  align-items: center;

  justify-content: center;

}



.complaint-modal__overlay {

  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.5);

}



.complaint-modal__content {

  position: relative;

  background: var(--color-white);

  border-radius: var(--border-radius-lg);

  padding: 2.5rem;

  max-width: 480px;

  width: 90%;

  text-align: center;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);

}



.complaint-modal__close {

  position: absolute;

  top: 1rem;

  right: 1rem;

  background: none;

  border: none;

  font-size: 1.5rem;

  color: var(--color-text);

  cursor: pointer;

  opacity: 0.6;

  transition: opacity 0.2s;

}



.complaint-modal__close:hover {

  opacity: 1;

}



.complaint-modal__title {

  font-family: var(--font-heading);

  font-size: 1.4rem;

  color: var(--color-text);

  margin-bottom: 1rem;

}



.complaint-modal__text {

  font-size: 0.95rem;

  line-height: 1.7;

  color: var(--color-text);

  margin-bottom: 1.5rem;

}



/* ============================================================

   RESPONSIVE: New Components

   ============================================================ */

@media (max-width: 768px) {

  .product-detail__wrapper {

    grid-template-columns: 1fr;

    gap: 2rem;

  }



  .special-wrapper {

    grid-template-columns: 1fr;

    gap: 2rem;

  }



  .recipes-teaser__grid {

    grid-template-columns: 1fr;

  }



  .about-special__grid {

    grid-template-columns: 1fr;

  }



  .factory-gallery__grid {

    grid-template-columns: 1fr 1fr;

  }



  .factory-gallery__item--wide {

    grid-column: span 2;

  }



  .product-family__grid {

    grid-template-columns: repeat(2, 1fr);

  }

}



@media (max-width: 480px) {

  .product-family__grid {

    grid-template-columns: 1fr;

  }



  .factory-gallery__grid {

    grid-template-columns: 1fr;

  }



  .factory-gallery__item--wide {

    grid-column: span 1;

  }

}



/* ============================================================

   CUSTOM PRODUCTS PAGE —— 1:1 参考 fank col.jsp?id=103

   白色底 + 顶部标题/三分类卡片 + 三大品类产品网格 + 一站式服务

   ============================================================ */

.custom-page {

  background: #ffffff;

  overflow: hidden;

}



/* 顶部标题区（参考页 定制款 / Custom models） */

.custom-hero {

  padding: 70px 0 40px;

  text-align: center;

  background: #ffffff;

}



.custom-hero__subline {

  font-size: 14px;

  color: var(--color-primary);

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 2px;

  margin-bottom: 10px;

}



.custom-hero__title {

  font-family: "Lobster", cursive;

  font-size: 44px;

  color: var(--color-text);

  font-weight: normal;

  line-height: 1.2;

  margin: 0 0 6px;

}



.custom-hero__en {

  font-size: 16px;

  color: var(--color-primary);

  letter-spacing: 1px;

  margin: 0 0 40px;

}



/* 产品区块 */

.custom-product-section {

  padding: 60px 0 70px;

  background: #ffffff;

}



.custom-product-section:nth-child(even) {

  background: #faf7f1;

}



.custom-product-section__head {

  text-align: center;

  margin-bottom: 44px;

}



.custom-product-section__en {

  font-size: 14px;

  color: var(--color-primary);

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 2px;

  margin-bottom: 8px;

}



.custom-product-section__title {

  font-family: "Lobster", cursive;

  font-size: 32px;

  color: var(--color-text);

  font-weight: normal;

  line-height: 1.2;

  margin: 0;

}



/* 产品网格 */

.custom-grid {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  gap: 24px;

  max-width: 1180px;

  margin: 0 auto 44px;

}



.custom-card {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  width: 216px;

  padding: 18px 14px;

  background: #ffffff;

  border-radius: 18px;

  box-shadow: 0 6px 22px rgba(100, 47, 13, 0.08);

  -webkit-transition: -webkit-transform 0.3s ease, box-shadow 0.3s ease;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.custom-card:hover {

  -webkit-transform: translateY(-4px);

  transform: translateY(-4px);

  box-shadow: 0 12px 30px rgba(100, 47, 13, 0.14);

}



.custom-card__media {

  width: 178px;

  height: 178px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  margin-bottom: 12px;

}



.custom-card__img {

  max-width: 100%;

  max-height: 100%;

  object-fit: contain;

}



.custom-card__name {

  font-size: 14px;

  font-weight: 700;

  color: var(--color-text);

  text-align: center;

  line-height: 1.4;

}



/* 钻石糖网格 - 一行三个并放大图片 */

.custom-grid--diamond {

  max-width: 990px;

}



.custom-card--diamond {

  width: 306px;

}



.custom-card--diamond .custom-card__media {

  width: 260px;

  height: 260px;

}



/* Handmade candy duo images - side-by-side on desktop, stacked on mobile */

.custom-handmade-duo {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-orient: horizontal;

  -webkit-box-direction: normal;

  -ms-flex-direction: row;

  flex-direction: row;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  gap: 30px;

  max-width: 1100px;

  margin: 0 auto;

}



.custom-handmade-duo__item {

  -webkit-box-flex: 1;

  -ms-flex: 1 1 0%;

  flex: 1 1 0%;

  min-width: 0;

  max-width: 480px;

}



.custom-handmade-duo__img {

  display: block;

  width: 100%;

  height: auto;

}



/* 一站式定制服务 CTA */

.custom-service {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  gap: 10px;

  width: -webkit-max-content;

  width: -moz-max-content;

  width: max-content;

  margin: 0 auto;

  padding: 14px 36px;

  border-radius: 999px;

  background: var(--color-primary);

  color: #fff;

  font-size: 17px;

  font-weight: 700;

  letter-spacing: 1px;

  box-shadow: 0 12px 28px rgba(154, 93, 9, 0.28);

}



.custom-service__icon {

  font-size: 20px;

}



/* 手工颗粒糖 造型标签列表 */

.custom-shapes {

  max-width: 880px;

  margin: 0 auto 44px;

  text-align: center;

}



.custom-shapes__title {

  font-size: 15px;

  font-weight: 700;

  color: var(--color-primary);

  letter-spacing: 1px;

  margin: 0 0 18px;

}



.custom-shapes__list {

  list-style: none;

  margin: 0;

  padding: 0;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  gap: 10px;

}



.custom-shapes__list li {

  padding: 8px 16px;

  border-radius: 999px;

  background: #f5efe4;

  color: var(--color-text);

  font-size: 14px;

  font-weight: 600;

}



/* 定制页响应式 */

@media (max-width: 768px) {

  .custom-hero {

    padding: 50px 0 30px;

  }



  .custom-hero__title {

    font-size: 34px;

  }



  .custom-product-section {

    padding: 46px 0 54px;

  }



  .custom-card {

    width: 150px;

    padding: 10px 8px;

  }



  .custom-card--diamond {

    width: 250px;

  }



  .custom-card--diamond .custom-card__media {

    width: 210px;

    height: 210px;

  }



  .custom-card--handmade {

    width: 160px;

    padding: 8px 6px;

  }



  .custom-card--handmade .custom-card__media {

    width: 140px;

    height: 140px;

  }



  /* Handmade candy stacked on mobile */

  .custom-handmade-duo {

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    -ms-flex-direction: column;

    flex-direction: column;

    gap: 20px;

  }



  .custom-handmade-duo__item {

    max-width: 100%;

  }



  .custom-card__media {

    width: 128px;

    height: 128px;

  }

}
