:root {
  --bg:        #eaeef6;
  --bg-2:      #f6f8fc;
  --paper:     #ffffff;
  --ink:       #1f2547;
  --ink-soft:  #5b6486;
  --line:      #e3e7f0;
  --line-2:    #ccd3e4;
  --navy:      #2b2f77;
  --navy-2:    #3a3f95;
  --yellow:    #ffd60a;
  --yellow-d:  #f5c400;
  --good:      #16a34a;
  --warn:      #d97706;
  --bad:       #dc2626;
  --radius:    18px;
  --shadow:    0 6px 22px rgba(43, 47, 119, 0.10);
  --shadow-lg: 0 14px 40px rgba(43, 47, 119, 0.18);
  --font:      "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  touch-action: manipulation;
  /* Kill the translucent grey box mobile browsers paint over a tap target
     between tap and navigation. Inherited, so this covers the whole tree;
     re-stated on interactive elements below for stubborn Android browsers. */
  -webkit-tap-highlight-color: transparent;
}

a, button, .rp-btn, .rp-card-link, [role="button"], summary, label {
  -webkit-tap-highlight-color: transparent;
}

/* Hub scroll-lock — the underlying fix for "the backdrop scrolls a bit then
   locks". The hub used to scroll the document itself; on mobile that first bit
   of scroll collapses the URL bar, and because every backdrop is position:fixed
   the shrinking visual viewport drags it along until the bar finishes hiding
   ("scrolls then locks"). Fix: lock <html> so the viewport (and the URL bar)
   can't scroll, and let the page scroll INSIDE <body> instead. The backdrop —
   the CSS ::before stripes, the synthwave/sixties scenery layers, AND the live
   JS canvas — is position:fixed relative to the viewport, so it now stays put
   for every current theme and any added later. Scoped to the hub via
   :has(.rp-shell) so games keep their own normal scrolling; later state rules
   (.rp-saver-on, .rp-game-open) still override overflow to freeze the hub.
   NB: body stays statically positioned — making it position:fixed stops it
   being a scroll container. */
html:has(.rp-shell) { overflow: hidden; height: 100%; }
body:has(.rp-shell) {
  height: 100%;
  overflow: hidden auto;
  -webkit-overflow-scrolling: touch;
}

/* Backdrop colour themes. Default = synthwave. Switch live with
   document.documentElement.dataset.bgTheme = 'seventies' | 'nineties' (or set
   <html data-bg-theme="…">). Full-saturation colours — tune intensity with
   --rp-bg-opacity. */
:root {
  --bg-c1: #ff2e88; --bg-c2: #ff8c42; --bg-c3: #ffd60a; --bg-c4: #00d4ff; --bg-c5: #9d4edd;
}
/* synthwave is a full deep-sunset scene — built in the GEN-THEMES region below */
[data-bg-theme="seventies"] {   /* warm, earthy 70s: burnt orange / gold / avocado / brown / ochre.
   Earthy hues read faint at the default 0.3, so this theme runs a touch stronger. */
  --bg-c1: #d2511a; --bg-c2: #eda516; --bg-c3: #869021; --bg-c4: #8a4a14; --bg-c5: #e08a23;
  --rp-bg-opacity: 0.64;
}
[data-bg-theme="nineties"] {    /* fluoro 90s: neon magenta / aqua / lime / yellow / electric blue-violet */
  --bg-c1: #ff00a8; --bg-c2: #00ffd5; --bg-c3: #aaff00; --bg-c4: #ffe600; --bg-c5: #6a2cff;
  --rp-bg-opacity: 0.5;
}
[data-bg-theme="candy"] {       /* soft pastel rainbow: the default hot palette read faint over white
   (pink / orange / yellow / cyan / purple at low opacity) — gentle candy stripes */
  --bg-c1: #ff2e88; --bg-c2: #ff8c42; --bg-c3: #ffd60a; --bg-c4: #00d4ff; --bg-c5: #9d4edd;
  --rp-bg-opacity: 0.3;
}

/* Retro: mostly warm cream with a saturated diagonal band of
   teal / orange / red / navy. Unlike the full-bleed themes above, the page base
   is cream and the stripe gaps are transparent, so the off-white dominates and
   the colours stay vivid. Keeps the 170px colour cycle for a seamless drift. */
[data-bg-theme="retro"] { --rp-bg-opacity: 0.92; }
[data-bg-theme="retro"] body { background: #ece3cd; }
[data-bg-theme="retro"] body::before {
  background: repeating-linear-gradient(45deg,
    transparent 0 102px, #2f9e8f 102px 119px, #f2a52c 119px 136px,
    #d63d35 136px 153px, #22357e 153px 170px);
}

/* Animated retro backdrop: slow diagonal stripes drifting down the page in a
   seamless loop. Fixed + behind all content; --rp-bg-opacity tunes intensity. */
body::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: -260px;     /* overscan top so the downward drift never reveals a gap */
  bottom: -10px;
  z-index: -1;
  pointer-events: none;
  opacity: var(--rp-bg-opacity, 0.3);
  background: repeating-linear-gradient(45deg,
    var(--bg-c1) 0 34px, var(--bg-c2) 34px 68px, var(--bg-c3) 68px 102px,
    var(--bg-c4) 102px 136px, var(--bg-c5) 136px 170px);
  animation: rp-bg-scroll 26s linear infinite;
  will-change: transform;
}
/* Drift one CONTINUOUS oversized layer (no background tiling → no seam). The
   45° stripes have a 170px colour cycle; a vertical move of 170×√2 = 240.416px
   lands exactly one cycle on, so the loop is invisible. */
@keyframes rp-bg-scroll {
  from { transform: translateY(0); }
  to   { transform: translateY(240.416px); }
}
@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
}
/* A live JS (Canvas/WebGL) backdrop is the ONLY backdrop — kill the CSS
   body::before stripes so nothing paints behind the canvas. Use a dark themed
   base (not pure black) so a mobile toolbar resize / overscroll never reveals the
   stripe layer, and so the brief hold before the canvas module mounts (and the
   page-fade snapshot) is a soft glow rather than a black flash. */
html[data-bg-js] body::before { content: none; display: none; }
html[data-bg-js] body { background: radial-gradient(125% 125% at 50% 0%, #1a1140 0%, #0a0618 58%, #050109 100%); }
/* Per-theme body colour so the iOS safe-area / overscroll blends with the live
   backdrop instead of a generic dark gradient. Overrides the rule above per
   theme (same specificity, later wins). EXPERIMENTAL — revert this block if it
   doesn't look right. Tune each colour to the theme's dominant edge tone. */
html[data-bg-js="twirlcolor"] body { background: #ffffff; }
html[data-bg-js="lavalamp"]   body { background: #000000; }
html[data-bg-js="twirlblack"] body { background: #000000; }
html[data-bg-js="zxbars"]     body { background: #000000; }
html[data-bg-js="stars"]      body { background: #000000; }
html[data-bg-js="neon"]       body { background: #05010a; }
html[data-bg-js="plasma"]     body { background: #0a0618; }
/* No animated backdrop inside a game — keep the play area clean and white. The
   `html` prefix raises specificity above the per-theme `[data-bg-theme=X] body`
   background rules (which come later in the file) so the white always wins. */
html body:has(.rp-game)::before { content: none; display: none; }
html body:has(.rp-game) { background: #fff; }
/* In the game shell the game runs in an iframe; stop its document rubber-banding
   (iOS overscroll), which would slide the game down and reveal the hub through
   the frame. Normal scrolling of long game content is unaffected. */
html:has(.rp-game), html:has(.rp-game) body { overscroll-behavior: none; }
/* iOS auto-zooms inputs under 16px on focus — keep form fields at 16px+ */
input, select, textarea { font-size: 16px; }
a { color: var(--navy-2); text-decoration: none; font-weight: 600; }
a:hover { text-decoration: underline; }

/* ---- App shell ---- */
.rp-shell { max-width: 1120px; margin: 0 auto; padding: 18px 20px 72px; }

.rp-topbar {
  display: flex; align-items: center; gap: 16px;
  padding: 4px 2px; margin-bottom: 22px;
}
/* Daily completion shows as a green tick on the Daily toggle segment (see
   .rp-daily-box near .rp-toggle), not a badge. Only the answer-reveal note (on a
   loss) still renders in the recap area. */
.rp-complete-note { font-size: 13px; color: var(--ink-soft); font-weight: 600; text-align: center; margin: 0 0 10px; }

/* Reduce-motion notice: shown on launch when the OS asks for reduced motion, so
   the user knows the animated backdrops are intentionally paused. Dismissible. */
.rp-rm-notice { display: flex; align-items: flex-start; gap: 10px; margin: 0 0 14px;
  padding: 11px 13px; border-radius: 12px; border: 1.5px solid var(--line-2);
  background: var(--paper); color: var(--ink); box-shadow: 0 4px 12px rgba(8,30,50,.12); }
.rp-rm-notice .rp-rm-ico { font-size: 18px; line-height: 1.3; flex: none; }
.rp-rm-notice .rp-rm-body { flex: 1; font-size: 13.5px; line-height: 1.45; color: var(--ink-soft); }
.rp-rm-notice .rp-rm-body b { color: var(--navy); font-weight: 800; }
.rp-rm-notice .rp-rm-x { flex: none; width: 26px; height: 26px; padding: 0; border-radius: 8px;
  border: none; background: var(--bg-2); color: var(--ink-soft); font-size: 17px; line-height: 1; cursor: pointer; }
.rp-rm-notice .rp-rm-x:hover { background: var(--line-2); }

.rp-brand { display: flex; align-items: center; gap: 11px; font-weight: 900; font-size: 23px; color: var(--navy); letter-spacing: -0.5px; }
.rp-logo-img { height: 104px; width: auto; max-width: 60vw; display: block; }
@media (max-width: 600px) {
  .rp-logo-img { height: 64px; }
}
.rp-brand .logo {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--navy); color: var(--yellow);
  display: grid; place-items: center; font-size: 18px;
}
.rp-brand small { color: #6c5a00; font-weight: 700; font-size: 12px; letter-spacing: 0; }
.rp-spacer { flex: 1; }
/* Back-to-hub: a square glyph button matching the other header controls
   (help/fullscreen). The "‹ Hub" label is hidden; only the chevron shows. */
/* Centered SVG chevron (not a text glyph) so it sits dead-centre regardless of
   font metrics — matches the fullscreen button's approach. */
.rp-back { flex: none; display: inline-block; width: 40px; height: 40px; padding: 0; font-size: 0;
  border: 2px solid var(--line-2); border-radius: 10px;
  background: var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f2547' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E") center / 19px 19px no-repeat; }
.rp-back::before { content: none; }
/* background-color (not the `background` shorthand) so the home icon image survives hover */
.rp-back:hover { text-decoration: none; opacity: 1; border-color: var(--navy); background-color: var(--bg-2); }
/* Games flip this header button to a back arrow once you're in a submenu/options
   screen or a live game (it returns to the game's front page, not all the way to
   the hub — see installHomeBack in game-shell.js). `.bs-as-back` is the legacy
   alias kept so older markup keeps working. */
.rp-back.rp-as-back, .rp-back.bs-as-back { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f2547' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 6l-6 6 6 6'/%3E%3C/svg%3E"); }
/* The profile/account button lives on the hub; games don't need it. */
.rp-game-head #account-slot { display: none; }
/* Larger tap targets for in-game header controls on touch devices */
@media (pointer: coarse) {
  .rp-game-head .rp-back { width: 44px; height: 44px; }
  .rp-game-head .rp-avatar { width: 44px; height: 44px; }
}

/* ---- Hero ---- */
.rp-hero { margin: 4px 2px 24px; }
.rp-hero h1 { font-size: clamp(28px, 5vw, 42px); margin: 0 0 8px; line-height: 1.04; color: var(--navy); letter-spacing: -1px; }
.rp-hero p { color: var(--ink-soft); margin: 0; font-size: 16px; max-width: 60ch; }

/* ---- Buttons ---- */
.rp-btn {
  appearance: none; border: 2px solid var(--line-2); cursor: pointer;
  background: var(--paper); color: var(--ink);
  padding: 9px 16px; border-radius: 12px; font-weight: 800; font-size: 14px;
  font-family: inherit; transition: transform .08s ease, background .15s, border-color .15s, box-shadow .15s;
}
.rp-btn:hover { border-color: var(--navy); }
.rp-btn:active { transform: translateY(1px); }
.rp-btn:disabled { opacity: .5; cursor: default; }
.rp-btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: var(--shadow); }
.rp-btn-primary:hover { background: var(--navy-2); border-color: var(--navy-2); }
.rp-btn-ghost { background: transparent; border-color: transparent; }
.rp-btn-sm { padding: 7px 12px; font-size: 13px; border-radius: 10px; }
.rp-btn-accent { background: var(--g, var(--navy)); color: #fff; border-color: transparent; }
.rp-btn-yellow { background: var(--yellow); color: var(--navy); border-color: var(--yellow-d); }
.rp-btn-yellow:hover { background: var(--yellow-d); border-color: var(--yellow-d); }

/* ---- Account avatar (opens the profile sheet) ---- */
.rp-avatar { position: relative; flex: none; width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--line-2); background: var(--paper); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; }
.rp-avatar:hover { border-color: var(--navy); background: var(--bg-2); }
.rp-avatar svg { display: block; }
.rp-avatar-dot { position: absolute; right: -1px; bottom: -1px; width: 11px; height: 11px;
  border-radius: 50%; background: var(--good); border: 2px solid var(--paper); }

/* ---- Profile sheet ---- */
.rp-profile-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.rp-profile-ava { flex: none; width: 48px; height: 48px; border-radius: 50%; background: var(--bg-2);
  border: 2px solid var(--line-2); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; }
.rp-profile-name { font-weight: 800; font-size: 19px; color: var(--ink); }
.rp-profile-sub { font-size: 13px; color: var(--ink-soft); }
.rp-profile-admin { display: inline-flex; margin-bottom: 4px; }
.rp-profile-h { margin: 16px 0 8px; font-size: 14px; color: var(--ink-soft); }
.rp-profile-rule { border: none; border-top: 1px solid var(--line); margin: 18px 0 14px; }
.rp-ok { color: var(--good); font-weight: 700; font-size: 14px; margin: 2px 0 0; }
.rp-btn-danger { background: var(--bad); border-color: var(--bad); color: #fff; width: 100%; }
.rp-btn-danger:hover { filter: brightness(0.94); }

/* ---- Sections / groups ---- */
.rp-group { margin: 8px 0 6px; }
.rp-group-h { display: flex; align-items: center; gap: 10px; margin: 26px 2px 14px; }
.rp-group-h h2 { font-size: 15px; margin: 0; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); font-weight: 800; }
.rp-group-h::after { content: ""; flex: 1; height: 2px; background: var(--line); border-radius: 2px; }

/* ---- Game grid ---- */
.rp-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); }
.rp-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--paper); border: 2px solid var(--line);
  border-radius: var(--radius); padding: 18px; min-height: 172px; overflow: hidden;
  border-top: 6px solid var(--g, var(--navy));
  transition: transform .14s ease, box-shadow .14s, border-color .14s;
}
.rp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
/* Touch press feedback — replaces the removed grey tap-highlight box. */
.rp-card:active { transform: translateY(0) scale(.985); box-shadow: var(--shadow); }
.rp-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rp-card-ico {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  font-size: 26px; flex: none;
  background: color-mix(in srgb, var(--g, var(--navy)) 16%, white);
  border: 2px solid color-mix(in srgb, var(--g, var(--navy)) 35%, white);
}

/* Four-tile icon (Quordle = four boards). Sizes to the container's font. */
.ico-quad { display: inline-grid; grid-template-columns: repeat(2, 1fr);
  gap: .1em; width: 1.3em; height: 1.3em; vertical-align: -.18em; }
.ico-quad i { display: block; border-radius: .12em; }
.ico-quad i:nth-child(1) { background: #6aaa64; }
.ico-quad i:nth-child(2) { background: #c9b458; }
.ico-quad i:nth-child(3) { background: #a855f7; }
.ico-quad i:nth-child(4) { background: #5a9fd4; }
.rp-card h3 { margin: 0 0 5px; font-size: 19px; color: var(--navy); }
.rp-card p { margin: 0 0 14px; color: var(--ink-soft); font-size: 13.5px; line-height: 1.45; flex: 1; }
.rp-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.rp-card-best { font-size: 12.5px; color: var(--ink-soft); }
.rp-card-best b { color: var(--ink); }
.rp-card-play { font-weight: 800; font-size: 13px; color: var(--g, var(--navy)); display: inline-flex; align-items: center; gap: 5px; }
.rp-card a.rp-card-link { position: absolute; inset: 0; z-index: 1; }

/* Hub tools row + compact (icon grid) view */
.rp-hub-tools { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin: 8px 2px 2px; flex-wrap: wrap; }
.rp-hub-tools .rp-btn { white-space: nowrap; }
.rp-compact .rp-grid { grid-template-columns: repeat(auto-fill, minmax(82px, 1fr)); gap: 14px; }
.rp-compact .rp-card { min-height: 0; padding: 0; background: none; border: none; box-shadow: none;
  border-radius: 0; overflow: visible; align-items: center; text-align: center; }
.rp-compact .rp-card:hover { transform: none; box-shadow: none; }
.rp-compact .rp-card p, .rp-compact .rp-card-foot,
.rp-compact .rp-card-badges { display: none; }
.rp-compact .rp-card-top { margin: 0; justify-content: center; width: 100%; }
.rp-compact .rp-card-ico { width: 100%; height: auto; aspect-ratio: 1; font-size: 30px; transition: transform .14s ease; }
.rp-compact .rp-card:hover .rp-card-ico { transform: translateY(-3px); }
.rp-compact .rp-card h3 { font-size: 12.5px; margin: 7px 0 0; line-height: 1.2; color: var(--navy); }
/* Grid view: favourites star top-left, "completed today" check top-right. */
.rp-compact .rp-fav { position: absolute; top: 4px; left: 4px; z-index: 3; width: 30px; height: 30px; font-size: 21px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25)); }
.rp-compact .rp-card-done { top: 5px; right: 5px; }
.rp-fav { position: relative; z-index: 2; flex: none; width: 34px; height: 34px;
  display: grid; place-items: center; border: none; background: none; cursor: pointer;
  color: var(--ink-soft); font-size: 25px; line-height: 1; padding: 0;
  transition: transform .12s ease, color .12s ease; }
.rp-fav:hover { transform: scale(1.18); }
.rp-fav.on { color: #f5a623; }
.rp-card-badges { position: absolute; top: 12px; right: 12px; display: flex; gap: 6px; z-index: 2; }
.rp-badge { font-size: 10.5px; font-weight: 800; padding: 3px 8px; border-radius: 999px; text-transform: uppercase; letter-spacing: .03em; }
.rp-badge-daily { background: var(--yellow); color: #6c5a00; }
.rp-badge-streak { background: var(--navy); color: #fff; }
.rp-badge-done { background: var(--good); color: #fff; }
/* Daily completion check: empty circle waiting for the green tick, then filled. */
.rp-badge-check { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%;
  border: 2px dashed var(--line-2); color: #fff; font-size: 12px; font-weight: 900; line-height: 1; }
.rp-badge-check.done { background: var(--good); border: 2px solid var(--good);
  box-shadow: 0 1px 4px rgba(0,0,0,.18); }
/* Compact "completed today" check — only shown in grid view (see .rp-compact). */
.rp-card-done { display: none; position: absolute; place-items: center; width: 22px; height: 22px;
  border-radius: 50%; background: var(--good); color: #fff; font-size: 13px; font-weight: 900;
  border: 2px solid var(--paper); z-index: 3; box-shadow: 0 1px 3px rgba(0,0,0,.18); }
/* Not done yet: an empty circle sitting where the green tick will land. */
.rp-card-done.todo { background: rgba(255,255,255,.78); border: 2px dashed var(--line-2); }
.rp-compact .rp-card-done { display: grid; }

/* ---- Daily strip ---- */
.rp-daily-strip {
  background: var(--paper); border: 2px solid var(--line); border-radius: var(--radius);
  padding: 14px 18px; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; flex-wrap: nowrap;
  box-shadow: var(--shadow);
}
[hidden] { display: none !important; }
/* One line at any width: the label shrinks (and ellipsises) while the pills stay
   whole and sit to the right. */
.rp-daily-strip .lead { font-weight: 800; color: var(--navy); flex: 0 1 auto; min-width: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rp-daily-strip .pill { flex: none; white-space: nowrap; font-size: 13px; font-weight: 700; color: var(--ink-soft);
  background: var(--bg); border-radius: 999px; padding: 5px 12px; }
.rp-daily-strip .pill:first-of-type { margin-left: auto; }
@media (max-width: 460px) { .rp-daily-strip { padding: 11px 13px; gap: 7px; } .rp-daily-strip .pill { font-size: 12px; padding: 4px 9px; } }

/* News: small dismissible announcements (e.g. a game leaving development). Hidden
   entirely when nothing is active, so it never adds clutter on a normal visit. */
.rp-news { display: block; margin: 0 0 14px; padding: 12px 16px; background: var(--paper);
  border: 2px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.rp-news-h { font-weight: 800; font-size: 12px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-soft); margin: 0 0 8px; }
.rp-news-item { display: flex; align-items: flex-start; gap: 10px; }
.rp-news-item + .rp-news-item { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line-2); }
.rp-news-ico { font-size: 20px; line-height: 1.25; flex: none; }
.rp-news-text { flex: 1; min-width: 0; }
.rp-news-title { font-weight: 800; color: var(--navy); font-size: 15px; }
a.rp-news-title:hover { text-decoration: underline; }
.rp-news-text p { margin: 2px 0 0; font-size: 13px; color: var(--ink-soft); line-height: 1.4; }
.rp-news-x { flex: none; width: 26px; height: 26px; padding: 0; border-radius: 8px; border: none;
  background: var(--bg-2); color: var(--ink-soft); font-size: 18px; line-height: 1; cursor: pointer; }
.rp-news-x:hover { background: var(--line-2); }

/* ---- Modal ---- */
.rp-modal { position: fixed; inset: 0; z-index: 60; display: none; }
.rp-modal.open { display: block; }
/* Lock the page behind an open modal so dragging the sheet doesn't scroll it. */
body:has(.rp-modal.open) { overflow: hidden; }
.rp-modal-backdrop { position: absolute; inset: 0; background: rgba(31, 37, 71, 0.45); backdrop-filter: blur(3px); }
/* Tall sheets (profile, etc.) scroll internally; overscroll-contain stops the
   scroll from chaining out to the page behind once the sheet hits its end. */
.rp-modal-card { position: relative; z-index: 1; width: min(420px, calc(100vw - 32px)); margin: 13vh auto 24px; max-height: calc(100dvh - 13vh - 24px); overflow-y: auto; overscroll-behavior: contain; background: var(--paper); border: 2px solid var(--navy); border-radius: 18px; padding: 28px 26px 24px; box-shadow: var(--shadow-lg); animation: rp-pop .16s ease; }
.rp-modal-card-wide { width: min(560px, calc(100vw - 32px)); margin-top: 9vh; max-height: calc(100dvh - 9vh - 24px); }
@keyframes rp-pop { from { transform: translateY(8px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.rp-modal-x { position: absolute; top: 12px; right: 14px; border: none; background: none; color: var(--ink-soft); font-size: 26px; line-height: 1; cursor: pointer; }
.rp-modal-x:hover { color: var(--ink); }
.rp-modal-title { margin: 0 0 6px; font-size: 22px; color: var(--navy); }
.rp-modal-sub { margin: 0 0 20px; color: var(--ink-soft); font-size: 14px; }
/* Challenge-a-friend picker: a tidy 3-column grid of group-member name buttons. */
.rp-challenge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 0 0 14px; }
.rp-challenge-grid .rp-btn { width: 100%; text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rp-challenge-btn { flex: none; }
.rp-modal-switch { margin: 16px 0 0; text-align: center; color: var(--ink-soft); font-size: 13.5px; }
.rp-link { background: none; border: none; color: var(--navy-2); font: inherit; font-weight: 700; cursor: pointer; padding: 0; }
.rp-link:hover { text-decoration: underline; }
.rp-form { display: flex; flex-direction: column; gap: 14px; }
.rp-field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.rp-field input { font: inherit; font-size: 16px; color: var(--ink); font-weight: 600; background: var(--bg-2); border: 2px solid var(--line-2); border-radius: 11px; padding: 12px 14px; outline: none; transition: border-color .15s; }
.rp-field input:focus { border-color: var(--navy); }
.rp-error { color: var(--bad); font-size: 13px; margin: -4px 0 0; font-weight: 600; }

/* ---- Leaderboard ---- */
.rp-board { width: 100%; border-collapse: collapse; font-size: 14px; }
.rp-board th { text-align: left; color: var(--ink-soft); font-weight: 800; font-size: 12px; padding: 6px 10px; text-transform: uppercase; letter-spacing: .04em; }
.rp-board td { padding: 9px 10px; border-top: 2px solid var(--line); }
.rp-board tr.you td { background: color-mix(in srgb, var(--yellow) 35%, white); }
.rp-board .rank { color: var(--ink-soft); width: 38px; font-variant-numeric: tabular-nums; font-weight: 700; }
.rp-board .val { text-align: right; font-weight: 800; font-variant-numeric: tabular-nums; }
.rp-empty { color: var(--ink-soft); text-align: center; padding: 22px; font-size: 14px; }

/* ---- Mode toggle ---- */
.rp-toggle { display: inline-flex; background: var(--bg); border: 2px solid var(--line-2); border-radius: 999px; padding: 3px; }
.rp-toggle button { border: none; background: none; font: inherit; font-weight: 800; font-size: 13px; color: var(--ink-soft); padding: 7px 16px; border-radius: 999px; cursor: pointer; }
.rp-toggle button.on { background: var(--navy); color: #fff; }
/* The Daily segment carries a small checkbox that ticks green once today's daily
   is done (lit by .rp-daily-box's parent #mode getting .daily-done). Visible from
   either tab, so you can see at a glance whether you've played today. */
#mode button[data-mode="daily"] { display: inline-flex; align-items: center; gap: 7px; }
.rp-daily-box { width: 15px; height: 15px; border-radius: 4px; border: 1.6px solid currentColor;
  opacity: .45; display: inline-grid; place-items: center; font-size: 11px; line-height: 1; }
.rp-daily-box::before { content: '✓'; color: transparent; }
#mode.daily-done button[data-mode="daily"] .rp-daily-box { opacity: 1; background: #16a34a; border-color: #16a34a; }
#mode.daily-done button[data-mode="daily"] .rp-daily-box::before { color: #fff; }

/* Admin shortcut button in the hub header (admins only), with a red "new change
   requests" count badge. */
.rp-admin-btn { position: relative; flex: none; display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px; border: 2px solid var(--line-2);
  background: var(--paper); color: var(--navy); font-size: 20px; text-decoration: none; }
.rp-admin-btn:hover { border-color: var(--navy); text-decoration: none; }
.rp-admin-badge { position: absolute; top: -7px; right: -7px; min-width: 19px; height: 19px;
  padding: 0 5px; border-radius: 999px; background: var(--bad); color: #fff; font-size: 11px;
  font-weight: 900; display: inline-grid; place-items: center; line-height: 1;
  box-shadow: 0 0 0 2px var(--paper); }

/* ---- Game page chrome ---- */
/* Gameplay involves rapid taps and long-presses on the board/controls; without
   this, mobile (esp. iOS) text-selects the score/board and pops the
   Copy/Look-Up callout mid-game. Kill selection + the touch callout on the game
   shell, but keep real text inputs selectable. */
.rp-game { max-width: 760px; margin: 0 auto; padding: 16px 16px 80px;
  -webkit-user-select: none; user-select: none; -webkit-touch-callout: none; }
.rp-game input, .rp-game textarea, input, textarea, [contenteditable] {
  -webkit-user-select: text; user-select: text; }
/* Stop iOS long-press from "lifting" a canvas/image for drag-and-drop (the
   translucent floating blob over the board). user-drag doesn't inherit, so it
   must sit on the elements themselves. */
.rp-game canvas, .rp-game img { -webkit-user-drag: none; user-drag: none; -webkit-tap-highlight-color: transparent; }
.rp-game-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.rp-game-title { font-size: 22px; font-weight: 900; margin: 0; color: var(--navy); }
.rp-help-btn { flex: none; width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--line-2);
  background: var(--paper); color: var(--navy); font-weight: 900; font-size: 18px; line-height: 1; cursor: pointer; }
.rp-help-btn:hover { border-color: var(--navy); }
@media (pointer: coarse) { .rp-game-head .rp-help-btn { width: 44px; height: 44px; } }
.rp-fs-btn { flex: none; width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--line-2);
  background: var(--paper); color: var(--navy); cursor: pointer; display: inline-grid; place-items: center; padding: 0; }
.rp-fs-btn:hover { border-color: var(--navy); }
.rp-fs-btn svg { width: 19px; height: 19px; display: block; }
@media (pointer: coarse) { .rp-game-head .rp-fs-btn { width: 44px; height: 44px; } }
.rp-sound-btn { flex: none; width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--line-2);
  background: var(--paper); color: var(--navy); cursor: pointer; display: inline-grid; place-items: center; padding: 0; }
.rp-sound-btn:hover { border-color: var(--navy); }
.rp-sound-btn svg { width: 20px; height: 20px; display: block; }
.rp-sound-btn.muted { color: var(--muted, #8a93a6); }
@media (pointer: coarse) { .rp-game-head .rp-sound-btn { width: 44px; height: 44px; } }

/* Focus / fullscreen mode: strip everything but the board and its controls. */
.rp-game.rp-focus { display: flex; flex-direction: column; min-height: 100dvh; max-width: none; margin: 0; padding: 8px 12px 12px; position: relative; }
.rp-game.rp-focus > *:not(.rp-stage):not(.rp-game-head) { display: none !important; }
/* Don't waste a strip across the top on the chrome row: float the header
   controls (fullscreen + any game pause button) as a compact, de-emphasised
   cluster in the top-right corner so the board gets the full height. */
.rp-game.rp-focus > .rp-game-head { position: absolute; top: 6px; right: 8px; left: auto;
  width: auto; margin: 0; padding: 0; gap: 8px; z-index: 7; justify-content: flex-end; }
.rp-game.rp-focus > .rp-game-head > *:not(.rp-fs-btn) { display: none !important; }
.rp-game.rp-focus .rp-fs-btn { width: 38px; height: 38px; opacity: .55; background: rgba(255, 255, 255, 0.78); }
.rp-game.rp-focus .rp-fs-btn:hover, .rp-game.rp-focus .rp-fs-btn:active { opacity: 1; }
.rp-game.rp-focus > .rp-stage { margin: auto 0; }
.rp-help-list { margin: 4px 0 0; padding-left: 20px; color: var(--ink); font-size: 14.5px; line-height: 1.6; }
.rp-help-list li { margin-bottom: 8px; }
/* Enable-notifications prompt — buttons row under the message. */
.rp-push-actions { display: flex; gap: 10px; justify-content: center; margin-top: 4px; }
.rp-req-text { width: 100%; box-sizing: border-box; font: inherit; color: var(--ink); background: var(--paper);
  border: 2px solid var(--line-2); border-radius: 12px; padding: 10px 12px; resize: vertical; margin-bottom: 10px; }
.rp-req-text:focus { border-color: var(--navy); outline: none; }

/* "New version found — refreshing…" notice */
.rp-update-banner { position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 9999;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: #fff; color: var(--navy); border: 2px solid var(--navy);
  padding: 13px 26px; border-radius: 14px; box-shadow: var(--shadow-lg);
  font-weight: 700; font-size: 14px; width: min(420px, calc(100% - 24px)); }
.rp-update-spin { width: 16px; height: 16px; flex: none; border-radius: 50%;
  border: 2px solid var(--line-2); border-top-color: var(--navy); animation: rp-spin .7s linear infinite; }
@keyframes rp-spin { to { transform: rotate(360deg); } }
/* Manual fallback prompt — shown only when the silent auto-update didn't take
   (mainly installed iOS PWAs). Tapping it forces a clean refresh. */
button.rp-update-banner { font: inherit; font-weight: 700; font-size: 14px; -webkit-appearance: none; appearance: none; }
.rp-update-banner.tappable { cursor: pointer; animation: rp-update-pop .25s ease; }
.rp-update-banner.tappable:active { transform: translateX(-50%) scale(.97); }
@keyframes rp-update-pop { from { opacity: 0; transform: translateX(-50%) translateY(8px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
.rp-scorebar { display: flex; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.rp-stat { background: var(--paper); border: 2px solid var(--line); border-radius: 12px; padding: 7px 16px; min-width: 84px; }
.rp-stat .label { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); font-weight: 700; }
.rp-stat .value { font-size: 22px; font-weight: 900; font-variant-numeric: tabular-nums; color: var(--navy); }
.rp-controls-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 14px; }
.rp-select { font: inherit; color: var(--ink); background: var(--paper); border: 2px solid var(--line-2); border-radius: 10px; padding: 8px 12px; font-weight: 700; }

.rp-stage { position: relative; min-height: 320px; }

/* Game-over / win overlay */
.rp-overlay { position: absolute; inset: 0; display: none; place-items: center; z-index: 5; background: rgba(255, 255, 255, 0.86); backdrop-filter: blur(2px); border-radius: var(--radius); }
.rp-overlay.show { display: grid; }
.rp-overlay-card { text-align: center; padding: 26px; max-width: 340px; }
.rp-overlay-card h2 { margin: 0 0 6px; font-size: 26px; color: var(--navy); }
.rp-overlay-card .big { font-size: 44px; font-weight: 900; margin: 8px 0; color: var(--navy); }
.rp-overlay-card .msg { color: var(--ink-soft); margin: 0 0 18px; min-height: 20px; font-weight: 600; }
.rp-overlay-card .rp-btn { margin: 4px; }

/* Non-covering end-of-game result bar: sits above the board so the finished
   board stays visible (replaces the old covering overlay card). */
.rp-result-bar { background: var(--paper); border: 2px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 14px 16px;
  margin-bottom: 14px; text-align: center; }
.rp-result-bar-main { display: flex; align-items: baseline; justify-content: center;
  gap: 10px; flex-wrap: wrap; }
.rp-result-bar-title { font-size: 20px; font-weight: 900; color: var(--navy); }
.rp-result-bar-val { font-size: 22px; font-weight: 900; color: var(--navy); }
.rp-result-bar .msg { color: var(--ink-soft); margin: 6px 0 10px; font-weight: 600; min-height: 18px; }
.rp-result-bar-actions { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 4px; }

/* End-of-game result shown as a bold centered modal over the finished board
   (Battleship-style). Reuses the shared .rp-modal / .rp-modal-card chrome.
   Held back a beat after the game ends, then faded in (the .in class). */
.rp-result-modal { opacity: 0; transition: opacity .45s ease; }
.rp-result-modal.in { opacity: 1; }
/* The result modal is informational and covers the whole viewport, but gameOver
   tells players to leave via the header's Hub/back link — so lift that link above
   the modal while it's up (incl. its near-invisible fade-in) or a tap just hits
   the backdrop and dismisses the modal instead of navigating. */
body:has(.rp-result-modal) .rp-back { position: relative; z-index: 61; }
.rp-result-card { text-align: center; border: none; border-top: 9px solid var(--navy);
  animation: rp-pop .45s cubic-bezier(.2,1.35,.5,1); }
.rp-result-modal.win .rp-result-card { border-top-color: #22c55e; }
.rp-result-modal.lose .rp-result-card { border-top-color: #ef4444;
  animation: rp-pop .45s cubic-bezier(.2,1.35,.5,1), rp-shake .5s .15s; }
.rp-result-emoji { font-size: 58px; line-height: 1; animation: rp-bob 1.8s ease-in-out infinite; }
/* The result content sits flush inside the card — drop the bar's own frame. */
.rp-result-card .rp-result-bar { background: none; border: none; box-shadow: none;
  margin: 2px 0 0; padding: 0; }
.rp-result-card .rp-result-bar-title { font-size: 30px; }
.rp-result-card .rp-result-bar-val { font-size: 30px; }
.rp-result-card .rp-result-bar-actions { margin-top: 14px; }
.rp-result-card .rp-result-bar-actions .rp-btn { flex: 1 1 auto; }
.rp-result-continue { display: block; margin: 16px auto 0; min-width: 160px; }
@keyframes rp-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes rp-shake { 0%, 100% { transform: translateX(0); } 20% { transform: translateX(-9px); }
  40% { transform: translateX(9px); } 60% { transform: translateX(-6px); } 80% { transform: translateX(6px); } }
@media (prefers-reduced-motion: reduce) {
  .rp-result-card, .rp-result-modal.lose .rp-result-card, .rp-result-emoji { animation: none; }
  .rp-result-modal { transition: none; }
}

/* On-screen dpad */
.rp-dpad { display: none; grid-template-columns: repeat(3, 58px); grid-template-rows: repeat(3, 58px); gap: 8px; justify-content: center; margin: 18px auto 0; }
.rp-dpad button { border: 2px solid var(--line-2); background: var(--paper); color: var(--navy); border-radius: 12px; font-size: 22px; cursor: pointer; }
.rp-dpad button:active { background: var(--navy); color: #fff; }
.rp-dpad .up { grid-area: 1 / 2; } .rp-dpad .left { grid-area: 2 / 1; }
.rp-dpad .right { grid-area: 2 / 3; } .rp-dpad .down { grid-area: 3 / 2; }
@media (hover: none) and (pointer: coarse) { .rp-dpad.touch { display: grid; } }

.rp-hint { color: var(--ink-soft); font-size: 13px; text-align: center; margin-top: 14px; }
.rp-section-h { display: flex; align-items: center; justify-content: space-between; margin: 28px 2px 14px; gap: 12px; flex-wrap: wrap; }
.rp-section-h h2 { font-size: 18px; margin: 0; color: var(--navy); }
.rp-panel { background: var(--paper); border: 2px solid var(--line); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow); }
.rp-note { color: var(--ink-soft); font-size: 13px; }

/* Boxed sections: the logo header, hero blurb and each game group sit on the
   backdrop as distinct white panels. */
.rp-box { background: var(--paper); border: 2px solid var(--line);
  border-radius: var(--radius); box-shadow: 0 2px 7px rgba(31, 37, 71, 0.14); padding: 18px 20px; }
.rp-topbar.rp-box { margin-bottom: 18px; }
.rp-hero.rp-box { margin: 0 0 18px; }
.rp-section-box { padding: 16px 18px; margin-bottom: 18px; }
.rp-section-box .rp-group-h { margin: 2px 2px 14px; }

/* Shared on-screen keyboard (Wordle/Quordle) */
.rp-kb { display: flex; flex-direction: column; gap: 6px; align-items: center; margin-top: 16px; user-select: none; }
.rp-kb-row { display: flex; gap: 5px; }
.rp-key { min-width: 30px; height: 48px; padding: 0 9px; border-radius: 7px; border: none; background: #c8cfe0; color: var(--ink); font-weight: 800; font-size: 14px; cursor: pointer; }
.rp-key.wide { padding: 0 12px; font-size: 12px; }
.rp-key.correct { background: #16a34a; color: #fff; }
.rp-key.present { background: #eab308; color: #fff; }
.rp-key.absent { background: #8a93a6; color: #fff; }

/* ---- Wordle/Quordle end-of-game coloured recap ---- */
.rp-result { margin: 4px 0 2px; }
.rp-result-grids { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 18px; }
.rp-result-grids.quad { max-width: 270px; margin: 0 auto; }
/* End-score recap: lay the four Quordle boards out 2×2, matching the board. */
.rp-result .rp-result-grids.quad { display: grid; grid-template-columns: repeat(2, max-content); justify-content: center; }
.rp-sq-grid { display: inline-flex; flex-direction: column; gap: 3px; }
.rp-sq-row { display: flex; gap: 3px; justify-content: center; }
.rp-sq { width: 16px; height: 16px; border-radius: 3px; background: #8a93a6; }
.rp-sq.correct { background: #16a34a; }
.rp-sq.present { background: #eab308; }
.rp-sq.absent { background: #8a93a6; }
.rp-result-board { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.rp-result-ans { font-weight: 800; font-size: 12px; letter-spacing: 1.5px; color: var(--ink); }
.rp-result-grids.quad .rp-sq { width: 11px; height: 11px; border-radius: 2px; }
.rp-result-grids.quad .rp-sq-grid, .rp-result-grids.quad .rp-sq-row { gap: 2px; }
.rp-result-word { margin: 12px 0 2px; color: var(--ink-soft); font-size: 14px; }
.rp-result-word b { color: var(--ink); letter-spacing: 2px; font-size: 16px; }
.rp-result-defs { margin: 6px auto 2px; max-width: 320px; }
.rp-result-def { margin: 4px 0; color: var(--ink-soft); font-size: 13px; line-height: 1.35; }
.rp-result-def b { color: var(--ink); letter-spacing: 1px; }
.rp-result-pos { color: var(--accent, #6b7280); font-style: italic; }

/* ---- "Today's grids": how everyone did, as spoiler-free boxes ---- */
.rp-grid-entry { display: flex; align-items: center; gap: 14px; padding: 10px 6px; border-bottom: 1px solid var(--line); }
.rp-grid-entry:last-child { border-bottom: none; }
.rp-grid-entry.you { background: var(--bg-2); border-radius: 10px; }
.rp-grid-who { min-width: 84px; display: flex; flex-direction: column; gap: 1px; }
.rp-grid-name { font-weight: 800; color: var(--ink); font-size: 14px; word-break: break-word; }
.rp-grid-score { color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.rp-grid-entry .rp-result-grids { justify-content: flex-start; margin: 0; gap: 10px; }
.rp-grid-entry .rp-sq { width: 13px; height: 13px; }
.rp-grid-entry .rp-result-grids.quad { max-width: none; }
.rp-grid-entry .rp-result-grids.quad .rp-sq { width: 9px; height: 9px; }

/* --- Leaderboard groups (profile sheet) + board scope caption ------------- */
.rp-groups { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }
.rp-groups-note { font-size: 12px; color: var(--ink-soft); margin: 0; }
.rp-group { border: 1.5px solid var(--line-2); border-radius: 10px; padding: 8px 11px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.rp-group-col { flex-direction: column; align-items: stretch; gap: 8px; }
.rp-group-h { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-width: 0; }
.rp-group-h strong { color: var(--navy); }
.rp-group-mem { font-size: 12px; color: var(--ink-soft); }
.rp-mem-list { display: flex; flex-wrap: wrap; gap: 6px; }
.rp-mem { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700;
  background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 999px; padding: 3px 5px 3px 11px; color: var(--navy); }
.rp-mem-x { border: none; background: none; cursor: pointer; font-size: 16px; line-height: 1; color: var(--ink-soft); padding: 0 4px; }
.rp-mem-x:hover { color: #d4344a; }
.rp-group-add { display: flex; gap: 6px; }
.rp-group-add .rp-input-sm { flex: 1; }
.rp-input-sm { padding: 6px 9px; font-size: 14px; }
.rp-group-new { display: flex; gap: 6px; }
.rp-group-new .rp-input { flex: 1; }
/* Manager group list: one collapsible row per group (name + member count); the
   members, add field and a small delete live in the expanded body. */
.rp-group-d { border: 1.5px solid var(--line-2); border-radius: 10px; overflow: hidden; }
.rp-group-sum { display: flex; align-items: center; gap: 8px; padding: 9px 11px; cursor: pointer;
  list-style: none; font-weight: 800; color: var(--navy); }
.rp-group-sum::-webkit-details-marker { display: none; }
.rp-group-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rp-group-count { flex: none; font-size: 11px; font-weight: 700; color: var(--ink-soft);
  background: var(--bg-2); border-radius: 999px; padding: 1px 8px; }
.rp-group-sum::after { content: "\25B8"; flex: none; color: var(--ink-soft); font-size: 12px; transition: transform .15s; }
.rp-group-d[open] .rp-group-sum::after { transform: rotate(90deg); }
.rp-group-body { display: flex; flex-direction: column; gap: 8px; padding: 0 11px 11px; }
.rp-group-foot { display: flex; justify-content: flex-end; }
.rp-group-del { border: none; background: none; cursor: pointer; font-size: 12px; font-weight: 700;
  color: #d4344a; padding: 2px 4px; }
.rp-group-del:hover { text-decoration: underline; }
.rp-board-scope { text-align: center; font-size: 12px; font-weight: 700; color: var(--ink-soft); margin: 0 0 6px; }

/* --- Battleship invite banner -------------------------------------------- */
.rp-invite-banner { position: fixed; top: 12px; left: 50%; transform: translateX(-50%); z-index: 9999;
  display: flex; align-items: center; gap: 10px; max-width: calc(100vw - 24px);
  background: var(--navy); color: #fff; padding: 9px 12px; border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.28); animation: rp-invite-in .25s ease; }
.rp-invite-text { font-weight: 800; font-size: 14px; }
.rp-invite-x { border: none; background: none; color: #fff; opacity: .8; font-size: 20px; line-height: 1; cursor: pointer; padding: 0 2px; }
.rp-invite-x:hover { opacity: 1; }
@keyframes rp-invite-in { from { opacity: 0; } to { opacity: 1; } }

/* SYNTHWAVE-LOCK: the generated synthwave theme paints its sky gradient + city
   skyline on the BODY background, which scrolls on a tall page (and
   background-attachment:fixed is ignored on iOS). Re-render them here on a
   position:fixed body::after (behind the fixed icon ::before) so they stay
   locked to the viewport. Hand-written + OUTSIDE the GEN markers so the theme
   builder never touches it; the city data-URI is copied from the generated
   rule (the city is deterministic, so it stays in sync). The global
   body:has(.rp-game)::after rule already hides this inside games. */
[data-bg-theme="synthwave"] body::after {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 586 155%22 preserveAspectRatio=%22none%22%3E%3Cg fill=%22%23000%22%3E%3Cg transform=%22translate(0.000000,155.000000) scale(0.100000,-0.100000)%22 %3E %3Cpath d=%22M4050 1471 l-125 -78 -5 -404 -5 -404 -32 -3 -33 -3 0 -80 0 -79 -33 0 -34 0 -6 152 -7 151 0 79 0 78 -40 0 -40 0 0 24 0 24 -27 5 -28 5 -67 -5 -68 -6 0 -23 0 -24 -33 0 -33 0 -9 -9 -10 -9 -51 5 -51 5 -7 61 -6 60 0 88 0 89 -27 7 -28 8 -55 -1 -55 -1 -35 -9 -35 -10 -3 -276 -2 -276 -20 -5 -20 -5 0 -51 0 -51 -25 0 -25 0 -2 203 -3 202 -62 3 -63 3 0 239 0 240 -37 16 -38 15 -17 -10 -17 -11 -27 11 -28 10 -20 -21 -20 -20 -3 -182 -3 -183 0 -197 0 -198 -45 0 -45 0 0 203 0 202 -9 14 -9 13 -30 -7 -31 -6 -20 11 -21 11 0 54 0 55 -10 0 -10 0 0 -60 0 -60 -30 0 -30 0 -20 -20 -20 -20 -2 -277 -3 -278 -30 0 -30 0 -5 225 -5 225 -25 3 -25 4 -9 9 -10 9 -62 0 -62 0 -5 -14 -6 -14 -23 -4 -23 -3 3 -77 4 -78 -7 -30 -7 -30 -18 0 -19 0 -3 -37 -3 -38 -22 -3 -22 -3 -3 83 -3 83 -50 0 -50 0 -3 -27 -3 -28 -35 0 -34 0 0 201 0 201 -20 5 -20 5 0 39 0 38 -52 3 -53 3 -3 150 -3 150 -9 9 -10 10 0 -89 0 -90 -6 -67 -7 -67 -41 -3 -41 -3 -3 -42 -3 -43 -13 0 -13 0 -6 -272 -7 -271 0 -104 0 -103 -30 0 -30 0 0 274 0 274 -6 16 -6 16 -16 0 -15 0 -19 17 -19 17 -8 -13 -8 -13 -7 11 -7 11 -25 0 -24 0 0 -8 0 -9 -30 0 -30 0 -5 -4 -4 -5 -3 -219 -3 -220 -35 0 -35 0 -6 45 -6 45 -11 28 -12 27 -10 0 -10 0 0 25 0 25 -40 0 -40 0 0 -14 0 -15 -32 -3 -33 -3 -3 -173 -2 -172 -20 0 -20 0 0 334 0 334 -30 7 -30 7 0 19 0 19 -58 0 -57 0 -13 -20 -12 -20 -25 0 -25 0 -2 -422 -3 -423 -25 0 -25 0 -8 150 -8 150 -4 12 -4 13 -39 0 -39 0 -7 -38 -6 -37 0 -41 0 -42 -15 -6 -15 -5 -15 5 -15 6 0 123 0 122 -6 32 -6 31 -94 0 -94 0 0 -35 0 -35 -20 -20 -20 -20 0 -120 0 -120 -30 0 -30 0 0 -145 0 -145 2930 0 2930 0 0 200 0 200 -22 0 -23 0 -23 6 -22 6 -6 24 -6 24 -28 0 -27 0 -6 123 -7 122 6 22 6 23 -6 54 -7 54 -59 6 -59 7 -31 -16 -30 -16 0 -259 0 -260 -30 0 -30 0 0 34 0 34 -15 12 -14 12 -20 -7 -20 -6 -3 28 -3 28 -22 3 -23 3 0 -15 0 -16 -20 0 -20 0 0 109 0 110 -16 15 -15 16 -30 0 -29 0 0 -25 0 -26 -15 -5 -15 -6 0 -58 0 -58 -15 -12 -14 -12 -18 4 -18 3 -5 45 -5 45 -57 3 -58 3 0 -59 0 -60 -20 -5 -20 -5 0 -111 0 -111 -20 0 -20 0 0 495 0 495 -27 5 -28 6 -40 9 -40 8 -35 -3 -35 -3 -35 -9 -35 -9 -3 -267 -2 -267 -30 0 -29 0 -3 78 -3 77 -23 3 -23 4 -9 24 -10 24 -69 0 -70 0 -6 -10 -6 -10 -39 0 -40 0 -2 -303 -3 -302 -27 -3 -28 -3 0 640 0 641 -12 -1 -13 -1 -125 -77z%22/%3E %3C/g%3E%3C/g%3E%3C/svg%3E") repeat-x bottom / 1134px 300px,
    linear-gradient(180deg,#ffe66d 0%,#ffb03a 14%,#ff8a5b 26%,#ff5d8f 44%,#e0357f 62%,#b3266f 80%,#7d2a9e 100%);
}

/* ── Arcade high-score board (hub Leaderboards modal) ──────────────────────
   The Leaderboards modal is styled as a CRT screen on an arcade cabinet, with a
   pixel font and an end-credits roll of each game's champion. */
@font-face {
  font-family: 'Press Start 2P'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('/fonts/PressStart2P.woff2') format('woff2');
}
.arcade-modal .rp-modal-backdrop { background: rgba(4, 2, 12, 0.78); backdrop-filter: blur(4px); }
.arcade-cab { position: relative; z-index: 1; width: min(540px, calc(100vw - 28px));
  margin: 8vh auto 24px; max-height: calc(100dvh - 8vh - 24px); display: flex; flex-direction: column;
  background: linear-gradient(180deg, #2a2150, #150f33); border: 3px solid #0a0720; border-radius: 22px;
  padding: 18px 18px 14px; box-shadow: 0 0 0 4px #ffffff14, 0 24px 60px #000a, inset 0 2px 0 #ffffff1a;
  animation: rp-pop .18s ease; }
.arcade-x { position: absolute; top: 9px; right: 15px; z-index: 3; border: none; background: none;
  color: #ff5dbb; font-size: 25px; line-height: 1; cursor: pointer; text-shadow: 0 0 8px #ff2a9c; }
.arcade-x:hover { color: #fff; }
.arcade-screen { position: relative; overflow: hidden; border-radius: 12px;
  background: radial-gradient(120% 100% at 50% 0%, #0b1230 0%, #050618 70%, #02030d 100%);
  border: 2px solid #000; box-shadow: inset 0 0 60px #000b, inset 0 0 12px #4af6ff33;
  height: min(58vh, 460px); }
.arcade-scanlines { position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: repeating-linear-gradient(0deg, #0000 0 2px, #00000061 2px 4px); }
.arcade-glass { position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: radial-gradient(120% 80% at 50% 0%, #ffffff14, #0000 60%); }
.arcade-roll { position: absolute; inset: 0; overflow: hidden; padding: 0 18px; z-index: 1; }
.arcade-roll-track { display: flex; flex-direction: column; will-change: transform;
  animation: arcade-scroll linear infinite; }
.arcade-roll:hover .arcade-roll-track { animation-play-state: paused; }
@keyframes arcade-scroll { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.arcade-title { font-family: 'Press Start 2P', monospace; text-align: center; color: #ffe14d;
  font-size: 30px; letter-spacing: 1px; padding: 24px 0 8px; text-shadow: 0 0 10px #ffae00, 0 0 22px #ff7b00; }
.arcade-sub { font-family: 'Press Start 2P', monospace; text-align: center; color: #4af6ff;
  font-size: 14px; line-height: 1.7; letter-spacing: .5px; padding-bottom: 20px; text-shadow: 0 0 8px #14b3ff; }
.arcade-row { display: grid; grid-template-columns: 1fr auto; gap: 5px 10px; align-items: baseline;
  font-family: 'Press Start 2P', monospace; font-size: 18px; line-height: 1.5; padding: 8px 0; border-bottom: 1px dashed #ffffff14; }
.arcade-row .ag { color: #fff; display: flex; gap: 7px; align-items: center; text-shadow: 0 0 6px #ffffff55; }
.arcade-row .asc { color: var(--arc, #56ff9e); justify-self: end; text-shadow: 0 0 8px currentColor; white-space: nowrap; }
.arcade-row .awho { grid-column: 1 / -1; color: #ff8de0; font-size: 16px; padding-top: 3px; text-shadow: 0 0 7px #ff3db0; }
.arcade-row .anone { grid-column: 1 / -1; color: #7e86b8; font-size: 16px; padding-top: 3px; }
.arcade-msg { font-family: 'Press Start 2P', monospace; color: #4af6ff; text-align: center; font-size: 20px;
  line-height: 1.9; padding: 40% 20px 0; text-shadow: 0 0 10px #14b3ff; }
.arcade-deck { font-family: 'Press Start 2P', monospace; text-align: center; color: #ffd84d; font-size: 8px;
  letter-spacing: 1px; padding: 13px 0 3px; text-shadow: 0 0 8px #ff9d00; animation: arcade-blink 1.1s steps(1) infinite; }
.arcade-coin { color: #4af6ff; }
@keyframes arcade-blink { 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) {
  .arcade-roll { overflow-y: auto; }
  .arcade-roll-track { animation: none; }
  .arcade-deck { animation: none; }
}

/* ── Idle screensaver (hub) ────────────────────────────────────────────────
   After a stretch with no interaction the page fades out to reveal just the
   live backdrop with the Replay logo drifting over it; any input dismisses. */
/* Slow (~5s) fade when going to sleep, but a quick wake-up — the slow timing
   lives on the .rp-saver-on state, the fast default applies when it's removed. */
.rp-shell { transition: opacity .4s ease; }
body.rp-saver-on { overflow: hidden; }
body.rp-saver-on .rp-shell { opacity: 0; pointer-events: none; transition: opacity 5s ease; }
#rp-screensaver { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center;
  opacity: 0; pointer-events: none; transition: opacity .5s ease; }
body.rp-saver-on #rp-screensaver { opacity: 1; transition: opacity 5s ease; }
.rp-saver-logo { width: min(62vw, 380px); animation: rp-saver-bob 7s ease-in-out infinite; }
/* Tight, bright halo that hugs the letterforms — wider spreads bloomed into a
   rectangular white plate behind the text. */
.rp-saver-logo img { width: 100%; height: auto; display: block;
  filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 9px #fff) drop-shadow(0 0 16px #ffffffe6); }
@keyframes rp-saver-bob { 0%, 100% { transform: translateY(-12px); } 50% { transform: translateY(12px); } }
@media (prefers-reduced-motion: reduce) { .rp-saver-logo { animation: none; } }

/* ── Page reveal ───────────────────────────────────────────────────────────
   The hub builds its grid after a fetch, so it stays hidden until built (CSS
   keeps .rp-shell at opacity 0 until <html> gets .rp-ready) — no watching it
   populate. hub.js sets RP_DEFER_REVEAL and calls rpReveal() when ready; the 3s
   keyframe is the failsafe. Game↔hub transitions are handled by the SPA game
   shell below (persistent backdrop + an iframe that crossfades by opacity), not
   by cross-document View Transitions (those aren't supported cross-browser). */
html:not(.rp-ready) .rp-shell {
  opacity: 0; animation: rp-page-failsafe .01s linear 3s forwards;
}
@keyframes rp-page-failsafe { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  html:not(.rp-ready) .rp-shell { opacity: 1; animation: none; }
}

/* ── Single-page game shell ────────────────────────────────────────────────
   Games open in this full-screen iframe over the persistent backdrop + hub and
   crossfade by opacity (works on every browser; the backdrop never reloads). */
.rp-game-frame { position: fixed; inset: 0; width: 100%; height: 100%; border: 0;
  z-index: 60; opacity: 0; transition: opacity 0.4s ease; background: #fff; }
.rp-game-frame.show { opacity: 1; }
/* Lock the hub in place while a game is open so it can't scroll or rubber-band
   behind the frame — otherwise an iOS overscroll drag reveals the hub above the
   game. (The hub is hidden behind the opaque frame; scroll is restored on exit.) */
body.rp-game-open { position: fixed; inset: 0; width: 100%; overflow: hidden; }
@media (prefers-reduced-motion: reduce) { .rp-game-frame { transition: none; } }

/* GEN-THEMES:START — generated by tools/build-themes.mjs; do not hand-edit */
/* Synthwave — Retrosun sunset-sky gradient (kept bright enough at the bottom for
   black silhouettes to read) + a full-width black city skyline locked to the
   bottom, and big BLACK Outrun silhouettes (cars, palms, mountains, cassettes,
   etc.) scattered without overlap, tiling + drifting. */
[data-bg-theme="synthwave"] body {
  background:
    url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 586 155%22 preserveAspectRatio=%22none%22%3E%3Cg fill=%22%23000%22%3E%3Cg transform=%22translate(0.000000,155.000000) scale(0.100000,-0.100000)%22 %3E %3Cpath d=%22M4050 1471 l-125 -78 -5 -404 -5 -404 -32 -3 -33 -3 0 -80 0 -79 -33 0 -34 0 -6 152 -7 151 0 79 0 78 -40 0 -40 0 0 24 0 24 -27 5 -28 5 -67 -5 -68 -6 0 -23 0 -24 -33 0 -33 0 -9 -9 -10 -9 -51 5 -51 5 -7 61 -6 60 0 88 0 89 -27 7 -28 8 -55 -1 -55 -1 -35 -9 -35 -10 -3 -276 -2 -276 -20 -5 -20 -5 0 -51 0 -51 -25 0 -25 0 -2 203 -3 202 -62 3 -63 3 0 239 0 240 -37 16 -38 15 -17 -10 -17 -11 -27 11 -28 10 -20 -21 -20 -20 -3 -182 -3 -183 0 -197 0 -198 -45 0 -45 0 0 203 0 202 -9 14 -9 13 -30 -7 -31 -6 -20 11 -21 11 0 54 0 55 -10 0 -10 0 0 -60 0 -60 -30 0 -30 0 -20 -20 -20 -20 -2 -277 -3 -278 -30 0 -30 0 -5 225 -5 225 -25 3 -25 4 -9 9 -10 9 -62 0 -62 0 -5 -14 -6 -14 -23 -4 -23 -3 3 -77 4 -78 -7 -30 -7 -30 -18 0 -19 0 -3 -37 -3 -38 -22 -3 -22 -3 -3 83 -3 83 -50 0 -50 0 -3 -27 -3 -28 -35 0 -34 0 0 201 0 201 -20 5 -20 5 0 39 0 38 -52 3 -53 3 -3 150 -3 150 -9 9 -10 10 0 -89 0 -90 -6 -67 -7 -67 -41 -3 -41 -3 -3 -42 -3 -43 -13 0 -13 0 -6 -272 -7 -271 0 -104 0 -103 -30 0 -30 0 0 274 0 274 -6 16 -6 16 -16 0 -15 0 -19 17 -19 17 -8 -13 -8 -13 -7 11 -7 11 -25 0 -24 0 0 -8 0 -9 -30 0 -30 0 -5 -4 -4 -5 -3 -219 -3 -220 -35 0 -35 0 -6 45 -6 45 -11 28 -12 27 -10 0 -10 0 0 25 0 25 -40 0 -40 0 0 -14 0 -15 -32 -3 -33 -3 -3 -173 -2 -172 -20 0 -20 0 0 334 0 334 -30 7 -30 7 0 19 0 19 -58 0 -57 0 -13 -20 -12 -20 -25 0 -25 0 -2 -422 -3 -423 -25 0 -25 0 -8 150 -8 150 -4 12 -4 13 -39 0 -39 0 -7 -38 -6 -37 0 -41 0 -42 -15 -6 -15 -5 -15 5 -15 6 0 123 0 122 -6 32 -6 31 -94 0 -94 0 0 -35 0 -35 -20 -20 -20 -20 0 -120 0 -120 -30 0 -30 0 0 -145 0 -145 2930 0 2930 0 0 200 0 200 -22 0 -23 0 -23 6 -22 6 -6 24 -6 24 -28 0 -27 0 -6 123 -7 122 6 22 6 23 -6 54 -7 54 -59 6 -59 7 -31 -16 -30 -16 0 -259 0 -260 -30 0 -30 0 0 34 0 34 -15 12 -14 12 -20 -7 -20 -6 -3 28 -3 28 -22 3 -23 3 0 -15 0 -16 -20 0 -20 0 0 109 0 110 -16 15 -15 16 -30 0 -29 0 0 -25 0 -26 -15 -5 -15 -6 0 -58 0 -58 -15 -12 -14 -12 -18 4 -18 3 -5 45 -5 45 -57 3 -58 3 0 -59 0 -60 -20 -5 -20 -5 0 -111 0 -111 -20 0 -20 0 0 495 0 495 -27 5 -28 6 -40 9 -40 8 -35 -3 -35 -3 -35 -9 -35 -9 -3 -267 -2 -267 -30 0 -29 0 -3 78 -3 77 -23 3 -23 4 -9 24 -10 24 -69 0 -70 0 -6 -10 -6 -10 -39 0 -40 0 -2 -303 -3 -302 -27 -3 -28 -3 0 640 0 641 -12 -1 -13 -1 -125 -77z%22/%3E %3C/g%3E%3C/g%3E%3C/svg%3E") repeat-x bottom / 1134px 300px,
    linear-gradient(180deg,#ffe66d 0%,#ffb03a 14%,#ff8a5b 26%,#ff5d8f 44%,#e0357f 62%,#b3266f 80%,#7d2a9e 100%);
}
[data-bg-theme="synthwave"] body::before {
  background:url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%221700%22 height=%221700%22 viewBox=%220 0 1700 1700%22%3E%3Cdefs%3E%3Cg id=%22ic_mountains%22 transform=%22translate(0.000000,107.000000) scale(0.100000,-0.100000)%22 %3E %3Cpath d=%22M1547 1038 c-15 -18 -111 -120 -216 -227 l-189 -194 -126 129 -126 128 -61 -59 c-33 -33 -99 -104 -146 -157 -52 -60 -94 -98 -105 -98 -29 0 -211 -155 -303 -256 -44 -49 -124 -133 -177 -187 -54 -54 -98 -103 -98 -108 0 -5 547 -9 1389 -9 l1390 0 -18 53 c-10 29 -22 73 -26 97 -6 37 -20 59 -77 119 -38 41 -100 111 -138 155 -38 45 -93 110 -124 146 -31 36 -84 100 -118 142 -35 42 -68 77 -75 77 -6 1 -34 -26 -63 -59 -28 -33 -69 -73 -89 -89 -38 -30 -38 -30 -127 48 -49 43 -145 146 -214 229 -68 84 -128 152 -131 152 -4 0 -18 -15 -32 -32z m18 -110 c-8 -73 -25 -150 -50 -230 -10 -32 -16 -60 -14 -63 3 -2 22 0 43 6 20 6 41 9 47 7 5 -2 -14 -43 -43 -93 -48 -84 -52 -96 -57 -175 l-6 -85 -39 82 c-39 81 -39 81 -92 55 -29 -14 -56 -24 -58 -21 -3 3 -1 22 5 43 6 20 9 44 7 52 -3 14 -155 -84 -393 -253 -55 -40 -102 -70 -104 -68 -4 5 260 285 514 545 89 91 179 186 199 213 21 26 41 47 43 47 3 0 2 -28 -2 -62z m-720 -287 c-39 -157 -57 -191 -100 -191 -15 0 -54 -24 -102 -63 -107 -87 -106 -86 -98 -43 7 36 7 36 -38 17 -24 -11 -81 -42 -126 -70 -72 -44 -80 -47 -63 -23 11 15 65 71 120 125 74 70 108 97 126 97 34 0 72 35 201 184 60 69 111 123 113 121 3 -2 -12 -72 -33 -154z m1371 15 c5 -33 3 -42 -16 -56 -20 -15 -21 -20 -11 -75 14 -77 50 -153 96 -204 21 -23 35 -44 32 -47 -10 -10 -55 27 -100 84 -47 59 -73 89 -139 158 -38 40 -38 40 38 123 82 88 87 89 100 17z%22/%3E %3C/g%3E%3Cg id=%22ic_joystick2%22 transform=%22translate(0.000000,253.000000) scale(0.100000,-0.100000)%22 %3E %3Cpath d=%22M935 2519 c-87 -22 -169 -97 -201 -186 -17 -49 -17 -157 0 -206 18 -50 60 -103 107 -136 38 -26 38 -26 39 -399 0 -373 0 -373 23 -396 40 -40 149 -45 205 -10 22 14 22 14 22 392 0 377 0 377 53 423 78 69 102 123 102 234 0 74 -4 98 -23 132 -63 120 -200 184 -327 152z m21 -115 c31 -30 27 -67 -12 -101 -31 -28 -68 -29 -94 -3 -24 24 -25 51 -5 90 24 47 72 54 111 14z%22/%3E %3Cpath d=%22M795 1481 c-6 -4 -149 -79 -320 -166 -466 -237 -479 -245 -460 -264 10 -10 107 -66 630 -366 226 -129 321 -179 352 -183 50 -5 39 -11 543 283 206 120 392 228 413 239 72 40 65 45 -388 276 -187 95 -344 177 -349 181 -27 24 -36 8 -36 -60 0 -68 0 -68 60 -90 74 -27 161 -104 185 -164 62 -153 -33 -285 -245 -338 -111 -28 -292 -23 -388 11 -138 49 -222 137 -222 234 1 103 76 200 195 252 65 28 65 28 65 96 0 67 -9 83 -35 59z m-371 -345 c46 -19 68 -51 54 -82 -18 -38 -71 -57 -149 -52 -58 3 -73 8 -95 30 -21 20 -25 32 -20 53 13 53 135 82 210 51z%22/%3E %3Cpath d=%22M770 1281 c-168 -90 -74 -229 175 -262 77 -10 102 -10 169 4 86 18 146 45 189 85 21 20 27 35 27 68 0 35 -5 47 -32 70 -32 26 -87 54 -108 54 -5 0 -10 -22 -10 -49 0 -77 -36 -113 -130 -131 -69 -13 -142 3 -186 42 -31 27 -34 35 -34 84 0 60 -5 64 -60 35z%22/%3E %3Cpath d=%22M626 1125 c-15 -40 -6 -93 24 -133 66 -92 207 -138 393 -129 144 6 218 31 288 96 53 49 70 90 61 149 -4 32 -22 45 -22 17 0 -24 -60 -85 -109 -109 -68 -34 -145 -49 -247 -49 -174 1 -307 54 -364 146 -14 23 -19 25 -24 12z%22/%3E %3Cpath d=%22M1 949 c0 -61 10 -149 32 -294 13 -81 20 -104 39 -120 13 -11 214 -134 446 -274 389 -234 427 -255 477 -259 68 -6 19 -33 720 393 116 70 220 136 233 148 14 13 22 32 22 53 0 18 7 65 15 104 8 39 18 124 22 187 6 117 6 117 -28 96 -19 -11 -106 -62 -194 -113 -88 -51 -218 -128 -290 -170 -178 -106 -329 -192 -394 -225 -103 -52 -97 -54 -607 239 -246 142 -459 265 -471 273 -23 15 -23 15 -22 -38z%22/%3E %3C/g%3E%3Cg id=%22ic_palm5%22 transform=%22translate(0.000000,267.000000) scale(0.100000,-0.100000)%22 %3E %3Cpath d=%22M1310 2660 c0 -5 20 -23 44 -40 51 -34 70 -57 40 -47 -10 4 -1 -7 20 -25 38 -31 38 -33 16 -38 -21 -5 -20 -8 23 -40 26 -19 47 -39 47 -43 0 -5 -4 -5 -10 -2 -15 9 -12 0 11 -45 12 -23 20 -43 18 -45 -2 -2 -32 18 -67 44 -75 56 -181 111 -225 116 -18 2 -59 7 -91 11 -41 5 -57 4 -52 -4 4 -6 -13 -14 -44 -21 -69 -15 -114 -40 -201 -109 -81 -65 -118 -102 -101 -102 6 0 48 9 94 20 93 22 110 24 88 10 -24 -16 10 -13 60 5 56 20 67 19 46 -4 -18 -20 -17 -20 75 -15 61 3 87 1 74 -5 -22 -10 -26 -8 68 -35 31 -9 57 -19 57 -21 0 -2 -44 -3 -98 -3 -149 1 -253 -35 -363 -126 -54 -45 -118 -126 -153 -194 -17 -33 -17 -33 53 3 39 19 77 35 84 35 8 0 39 18 71 40 31 22 59 40 62 40 2 0 -3 -11 -12 -25 -23 -34 -3 -33 61 5 69 41 82 39 55 -7 -50 -83 -61 -106 -80 -163 -11 -33 -20 -76 -20 -97 0 -38 0 -38 33 17 21 34 40 54 49 52 9 -1 29 18 47 47 39 60 61 81 61 57 0 -25 13 -19 60 29 36 37 46 42 53 30 6 -11 -5 -32 -37 -72 -25 -32 -41 -60 -36 -63 5 -3 -8 -30 -28 -59 -37 -53 -37 -53 -37 -179 0 -91 3 -126 13 -129 6 -3 12 -17 12 -31 0 -42 19 -98 41 -124 20 -23 20 -23 15 32 -3 30 -2 80 3 110 8 55 8 55 23 21 15 -33 15 -33 22 -1 3 18 6 46 6 62 0 16 7 45 16 66 16 37 16 37 28 7 11 -27 13 -28 19 -10 3 11 9 40 12 65 9 54 34 120 46 120 5 0 9 -15 10 -32 0 -30 3 -27 24 27 13 33 29 59 35 57 6 -1 20 19 31 45 21 46 22 47 32 24 8 -17 7 -66 -6 -190 -41 -415 -150 -885 -293 -1274 -31 -84 -59 -156 -63 -160 -4 -4 -16 11 -26 33 -10 22 -25 46 -33 53 -13 10 -15 9 -9 -13 4 -14 9 -43 12 -65 6 -40 5 -40 -24 20 -17 33 -55 114 -84 181 -29 66 -90 183 -134 260 -119 205 -179 321 -208 397 -38 101 -33 109 29 48 45 -44 55 -50 58 -35 3 14 13 5 43 -40 36 -53 40 -57 44 -35 3 20 8 14 32 -36 19 -41 28 -53 29 -37 0 38 15 17 35 -48 24 -80 39 -58 33 49 -6 97 -40 167 -117 239 -45 43 -51 51 -28 42 16 -5 35 -10 44 -10 13 0 13 2 2 16 -12 15 -11 16 11 9 14 -4 38 -14 54 -22 22 -12 30 -12 36 -2 6 9 17 6 44 -10 20 -12 40 -20 45 -17 5 4 28 -1 50 -10 71 -28 70 -11 -4 63 -85 84 -158 121 -270 138 -80 11 -80 11 -35 27 25 8 44 21 43 27 -2 7 14 11 43 11 32 0 43 3 38 12 -5 8 5 9 39 5 37 -5 45 -4 41 8 -5 11 3 11 51 -1 32 -9 60 -13 63 -9 3 3 -8 19 -24 36 -74 78 -187 111 -284 83 -76 -22 -118 -43 -164 -84 -35 -32 -38 -33 -31 -11 4 13 8 30 9 37 1 8 15 27 31 44 25 27 26 30 9 30 -16 0 -15 5 11 28 17 15 40 37 50 50 19 23 19 23 -10 16 -86 -20 -150 -78 -181 -163 -10 -28 -21 -50 -24 -48 -70 41 -147 67 -195 67 -56 0 -155 -33 -155 -51 0 -5 18 -9 41 -9 24 0 38 -4 34 -10 -4 -6 13 -10 45 -10 30 0 49 -4 45 -9 -3 -6 9 -13 27 -16 18 -4 44 -14 57 -24 24 -18 24 -19 -45 -14 -55 4 -81 1 -126 -17 -61 -23 -144 -90 -177 -143 -19 -32 -44 -117 -36 -126 2 -2 28 17 56 43 38 34 54 43 60 34 6 -9 14 -7 33 11 14 14 41 26 58 27 18 1 45 6 60 9 24 6 22 2 -22 -43 -26 -27 -63 -80 -81 -118 -31 -62 -34 -76 -34 -156 1 -105 15 -130 34 -59 7 27 18 52 25 54 7 3 18 23 25 46 6 23 18 41 25 41 7 0 16 12 19 27 4 16 11 35 17 43 9 13 11 13 19 0 8 -11 12 -9 20 13 20 51 29 27 14 -35 -19 -82 -14 -229 11 -280 10 -20 33 -54 52 -75 35 -38 35 -38 30 -8 -3 17 -8 53 -12 80 -5 48 -5 49 10 25 15 -24 15 -22 9 37 -4 44 -2 63 6 63 6 0 12 -6 12 -12 1 -7 5 12 9 42 5 30 13 56 19 58 6 2 11 17 11 33 0 18 5 29 14 29 9 0 17 15 21 38 11 67 21 68 41 6 32 -106 84 -226 179 -416 51 -104 107 -223 124 -266 35 -91 73 -222 64 -222 -4 0 -15 7 -25 17 -28 25 -30 10 -4 -26 14 -19 24 -46 24 -66 0 -30 -3 -34 -36 -40 -76 -13 -212 -95 -212 -126 0 -5 194 -9 457 -9 457 0 457 0 418 41 -22 22 -68 54 -102 71 -67 33 -68 37 -21 77 39 32 28 38 -22 12 -59 -30 -50 10 18 82 39 40 37 45 -9 21 -17 -8 -33 -13 -36 -10 -3 2 13 80 36 173 51 215 85 384 111 553 30 199 69 574 76 738 7 140 17 176 30 107 3 -19 11 -33 17 -32 6 1 13 -9 15 -23 6 -54 12 -69 26 -64 15 6 26 -23 26 -68 0 -19 4 -26 14 -22 10 4 15 -15 22 -78 9 -83 9 -83 25 -54 16 29 17 29 24 7 4 -12 4 -49 0 -82 -7 -61 -2 -71 22 -41 13 15 14 4 9 -87 -6 -104 -6 -104 14 -86 12 11 40 57 63 104 41 82 42 88 46 197 3 122 -12 190 -65 296 -29 57 -18 62 25 13 35 -41 41 -43 41 -14 0 36 27 4 46 -54 23 -72 26 -75 40 -42 13 30 13 30 50 -52 34 -75 54 -102 54 -72 0 29 22 -10 41 -72 30 -100 43 -78 37 68 -4 105 -8 126 -36 193 -42 98 -90 161 -154 205 -29 19 -46 35 -37 35 21 0 112 -30 124 -41 15 -14 35 -10 35 6 0 10 22 -1 66 -35 58 -45 78 -55 87 -47 1 1 27 -15 56 -37 54 -38 54 -38 48 -1 -13 81 -65 166 -151 251 -46 44 -103 92 -128 106 -57 32 -178 53 -255 44 -58 -7 -58 -7 -16 18 24 13 55 26 70 28 17 2 28 9 28 18 0 11 12 15 48 13 26 -1 45 3 42 7 -5 8 45 16 135 23 35 2 35 2 -22 35 -31 18 -89 39 -127 48 -62 12 -80 12 -140 0 -79 -17 -139 -44 -198 -92 -23 -19 -44 -34 -47 -34 -3 0 -8 17 -12 38 -20 110 -117 225 -215 254 -75 23 -119 29 -119 18z%22/%3E %3C/g%3E%3Cg id=%22ic_arcade%22 transform=%22translate(0.000000,266.000000) scale(0.100000,-0.100000)%22 %3E %3Cpath d=%22M1033 2641 c-23 -19 -54 -21 -516 -38 -168 -5 -193 -4 -243 13 -53 18 -56 18 -69 1 -18 -24 -40 -289 -26 -315 6 -10 50 -47 99 -80 49 -33 94 -67 101 -75 9 -12 3 -53 -29 -203 -47 -223 -95 -422 -103 -431 -3 -3 -59 -33 -124 -67 -118 -61 -118 -61 -121 -153 -4 -127 8 -153 90 -194 35 -17 66 -37 70 -43 4 -6 8 -178 8 -382 0 -287 3 -374 13 -382 11 -9 294 -113 692 -252 120 -42 120 -42 195 -2 41 22 183 95 315 162 132 68 252 132 268 142 27 19 27 19 25 1056 l-3 1036 -85 32 c-162 62 -521 194 -528 194 -4 -1 -17 -9 -29 -19z m24 -113 c-4 -46 -10 -108 -13 -138 -6 -55 -6 -55 85 -135 51 -43 96 -86 102 -96 6 -12 -1 -60 -21 -151 -16 -73 -52 -240 -80 -370 -28 -130 -53 -244 -56 -252 -3 -8 -57 -49 -120 -91 -115 -75 -115 -75 -112 -172 3 -98 3 -98 36 -118 18 -11 52 -34 75 -51 42 -30 42 -30 45 -455 1 -233 0 -430 -3 -436 -2 -7 -11 -10 -20 -7 -13 5 -15 58 -15 430 0 424 0 424 -47 454 -54 34 -99 48 -258 80 -60 13 -168 36 -239 51 -70 16 -134 29 -142 29 -12 0 -14 -63 -14 -388 0 -214 -3 -391 -6 -395 -3 -3 -12 -3 -20 0 -11 4 -14 52 -15 262 -1 141 -4 316 -8 390 -6 135 -6 135 -77 163 -71 29 -71 29 -78 120 -4 65 -3 95 6 106 7 8 64 39 126 69 82 39 116 60 120 76 5 20 6 20 13 1 14 -36 9 -42 -69 -84 -42 -23 -81 -45 -85 -49 -8 -8 205 -52 503 -105 135 -24 135 -24 223 32 48 31 84 59 80 63 -5 4 -70 17 -146 28 -76 12 -143 22 -150 24 -15 3 -22 -52 -8 -66 18 -18 12 -27 -19 -27 -27 0 -30 2 -24 25 3 14 4 35 0 48 -5 21 -15 25 -101 36 -92 13 -117 24 -99 41 11 9 141 -7 167 -21 13 -7 17 -5 17 10 0 31 32 36 55 8 18 -23 35 -27 189 -47 102 -13 172 -18 178 -12 8 8 23 74 123 545 20 92 33 172 30 177 -10 16 -59 19 -378 24 -308 6 -308 6 -316 -17 -5 -12 -35 -139 -66 -282 -33 -155 -62 -264 -70 -271 -8 -6 -19 -22 -24 -35 -6 -16 -10 -18 -10 -7 -1 17 49 261 93 457 38 168 41 157 -66 239 -137 103 -129 88 -116 217 6 61 12 112 14 114 2 2 10 1 19 -3 13 -5 15 -20 9 -112 l-7 -106 361 4 c198 1 363 6 367 9 3 4 12 56 19 117 14 114 20 132 38 132 8 0 9 -26 5 -82z m57 -469 c11 -10 -100 -526 -118 -548 -13 -16 -55 -13 -330 23 -118 16 -192 30 -197 38 -5 7 -6 22 -3 33 2 11 27 117 54 235 35 148 55 219 67 228 13 9 73 11 268 6 137 -4 254 -10 259 -15z m-722 -595 c-3 -56 -1 -62 18 -67 32 -8 14 -27 -25 -27 -33 0 -60 20 -37 28 15 5 15 57 0 81 -16 26 -3 53 24 49 21 -3 23 -7 20 -64z m394 -129 c4 -9 17 -14 36 -12 17 1 33 -3 35 -9 5 -15 -52 -26 -80 -15 -12 5 -30 12 -41 15 -15 5 -16 9 -6 21 16 19 49 19 56 0z m-186 -438 l105 -23 3 -149 c1 -82 -1 -152 -5 -156 -12 -12 -223 45 -234 62 -10 16 -12 249 -3 273 8 20 8 20 134 -7z%22/%3E %3Cpath d=%22M330 2311 c0 -5 33 -34 73 -64 72 -55 72 -55 405 -60 182 -3 332 -3 332 1 0 5 -31 36 -69 70 -70 62 -70 62 -405 62 -191 0 -336 -4 -336 -9z%22/%3E %3Cpath d=%22M100 1257 c0 -75 0 -75 133 -106 137 -32 552 -121 561 -121 3 0 6 38 6 84 0 85 0 85 -52 95 -29 6 -174 33 -323 61 -148 28 -282 53 -297 56 -28 6 -28 6 -28 -69z%22/%3E %3Cpath d=%22M518 838 c-3 -18 -3 -40 0 -50 8 -34 27 -12 30 35 2 36 0 47 -11 47 -9 0 -17 -13 -19 -32z%22/%3E %3Cpath d=%22M627 844 c-4 -4 -7 -27 -7 -51 0 -56 26 -60 33 -5 4 36 -11 70 -26 56z%22/%3E %3C/g%3E%3Cg id=%22ic_cube%22 transform=%22translate(0.000000,227.000000) scale(0.100000,-0.100000)%22 %3E %3Cpath d=%22M585 2061 c-242 -114 -462 -219 -490 -233 -50 -26 -50 -26 58 -77 60 -28 110 -51 111 -51 2 0 99 -47 217 -104 243 -117 405 -195 498 -238 63 -29 63 -29 105 -10 181 86 291 139 491 236 127 62 281 136 343 166 62 29 109 57 105 61 -17 16 -971 459 -986 458 -7 0 -210 -94 -452 -208z%22/%3E %3Cpath d=%22M5 1728 c-3 -13 -4 -290 -3 -617 3 -595 3 -595 58 -626 106 -61 928 -485 939 -485 9 0 11 158 9 618 -3 531 -5 622 -18 637 -10 12 -845 436 -972 493 -4 2 -10 -7 -13 -20z%22/%3E %3Cpath d=%22M1580 1510 c-307 -155 -480 -247 -490 -262 -13 -20 -15 -111 -18 -635 -2 -475 0 -613 9 -613 7 0 80 35 163 79 83 43 300 156 481 251 182 95 336 177 343 182 16 13 13 1230 -3 1234 -5 2 -224 -104 -485 -236z%22/%3E %3C/g%3E%3Cg id=%22ic_sun_half%22 transform=%22translate(0.000000,182.000000) scale(0.100000,-0.100000)%22 %3E %3Cpath d=%22M820 1805 c-323 -72 -601 -291 -726 -572 -28 -64 -74 -215 -74 -244 0 -19 27 -19 1010 -19 810 0 1010 3 1010 13 0 29 -43 163 -78 244 -50 118 -109 202 -206 298 -133 132 -279 216 -461 266 -105 28 -375 36 -475 14z%22/%3E %3Cpath d=%22M20 920 c-9 -6 -14 -27 -15 -62 l0 -53 1028 -3 c1027 -2 1027 -2 1027 37 0 22 -4 51 -10 65 -10 26 -10 26 -1012 26 -593 0 -1009 -4 -1018 -10z%22/%3E %3Cpath d=%22M7 733 c-2 -5 -2 -29 1 -56 4 -47 4 -47 1020 -45 1016 3 1016 3 1024 47 4 24 5 48 2 52 -6 11 -2041 12 -2047 2z%22/%3E %3Cpath d=%22M40 521 c0 -4 5 -22 11 -40 11 -31 11 -31 979 -31 968 0 968 0 979 31 6 18 11 36 11 40 0 5 -445 9 -990 9 -545 0 -990 -4 -990 -9z%22/%3E %3Cpath d=%22M155 270 c16 -30 16 -30 875 -30 859 0 859 0 874 22 9 12 16 26 16 30 0 5 -401 8 -890 8 -891 0 -891 0 -875 -30z%22/%3E %3Cpath d=%22M360 25 c23 -25 23 -25 670 -25 647 0 647 0 670 25 23 25 23 25 -670 25 -693 0 -693 0 -670 -25z%22/%3E %3C/g%3E%3Cg id=%22ic_cassette2%22 transform=%22translate(0.000000,169.000000) scale(0.100000,-0.100000)%22 %3E %3Cpath d=%22M38 1661 c-33 -29 -33 -29 -36 -795 -3 -829 -4 -815 51 -850 20 -14 52 -16 192 -14 l168 3 60 200 c32 110 64 206 69 213 8 9 176 12 778 12 768 0 768 0 784 -42 15 -40 61 -192 100 -330 17 -58 17 -58 191 -58 173 0 173 0 203 30 20 20 31 42 35 72 3 24 4 201 2 393 -2 193 -4 527 -4 743 -1 394 -1 394 -30 423 -29 29 -29 29 -1280 29 -1251 0 -1251 0 -1283 -29z m2518 -74 c9 -29 -28 -59 -59 -48 -32 12 -36 58 -6 70 32 11 57 3 65 -22z m-2398 6 c19 -36 -21 -73 -58 -53 -19 10 -27 49 -13 63 13 14 62 7 71 -10z m2214 -132 c33 -29 33 -29 36 -432 2 -292 -1 -411 -9 -432 -25 -60 26 -57 -1077 -57 -711 0 -1018 3 -1041 11 -17 6 -36 19 -41 29 -6 11 -10 183 -10 436 0 418 0 418 27 446 27 28 27 28 1055 28 1028 0 1028 0 1060 -29z m-2212 -1315 c30 -37 -10 -83 -57 -65 -25 9 -31 47 -11 67 16 16 53 15 68 -2z m2384 -2 c32 -32 8 -68 -41 -62 -20 2 -29 9 -31 26 -7 46 40 69 72 36z%22/%3E %3Cpath d=%22M643 1134 c-54 -20 -118 -90 -133 -146 -23 -82 8 -191 65 -236 68 -53 59 -53 756 -50 646 3 646 3 694 33 144 89 133 306 -20 388 -40 22 -46 22 -680 24 -546 1 -646 0 -682 -13z m971 -70 c14 -5 16 -27 16 -140 l0 -134 -192 0 -193 0 0 140 0 140 177 0 c97 0 183 -3 192 -6z m-584 -52 c13 -47 13 -158 0 -181 -5 -10 -15 -21 -22 -24 -10 -3 -13 23 -11 122 2 69 3 127 3 129 0 2 4 1 10 -3 5 -3 14 -22 20 -43z m-305 21 c6 -17 7 -17 19 0 18 24 50 21 83 -7 22 -20 26 -27 16 -37 -19 -19 -16 -27 9 -31 39 -5 36 -88 -2 -88 -22 0 -26 -10 -9 -27 12 -12 -23 -38 -65 -49 -20 -5 -26 -2 -26 10 0 9 -4 16 -10 16 -5 0 -10 -7 -10 -15 0 -19 -23 -19 -61 1 -23 11 -29 20 -24 35 5 14 2 19 -14 19 -15 0 -22 9 -27 34 -7 39 0 56 22 56 17 0 18 12 2 29 -11 10 -7 18 20 42 37 33 67 37 77 12z m1155 2 c0 -8 5 -15 10 -15 6 0 10 7 10 15 0 25 47 17 82 -14 27 -24 31 -32 21 -42 -19 -19 -16 -29 8 -29 18 0 20 -5 17 -42 -3 -36 -7 -44 -26 -46 -18 -3 -21 -7 -12 -17 8 -10 4 -18 -16 -34 -33 -26 -62 -27 -80 -3 -13 16 -13 16 -14 0 0 -23 -32 -23 -66 -2 -16 11 -23 23 -19 34 4 12 -1 19 -15 23 -16 4 -20 13 -20 46 0 31 4 41 16 41 12 0 15 6 10 23 -3 13 0 31 7 39 28 35 87 51 87 23z%22/%3E %3Cpath d=%22M561 358 c-55 -175 -101 -332 -101 -344 0 -12 123 -14 855 -14 808 0 855 1 855 18 0 9 -23 97 -52 195 l-52 177 -747 0 c-747 0 -747 0 -758 -32z m779 -56 c17 -13 21 -24 16 -40 -9 -26 -50 -39 -71 -22 -20 17 -19 57 3 69 23 14 27 14 52 -7z m-357 -83 c16 -26 0 -68 -30 -75 -14 -4 -33 -2 -42 3 -20 13 -27 73 -9 85 20 13 70 5 81 -13z m746 12 c8 -5 14 -24 14 -41 0 -35 -15 -50 -53 -50 -32 0 -50 17 -50 46 0 43 51 69 89 45z m-980 -75 c7 -8 11 -27 9 -43 -4 -33 -48 -54 -76 -37 -18 11 -28 55 -18 80 7 19 70 18 85 0z m1221 -12 c13 -34 13 -40 -6 -58 -18 -19 -65 -21 -82 -4 -7 7 -12 24 -12 38 0 35 17 50 57 50 27 0 35 -5 43 -26z%22/%3E %3C/g%3E%3Cg id=%22ic_swoosh2%22 transform=%22translate(0.000000,192.000000) scale(0.100000,-0.100000)%22 %3E %3Cpath d=%22M2424 1910 c-11 -4 -152 -140 -314 -300 -163 -163 -306 -298 -324 -305 -24 -10 -216 -13 -863 -14 -483 0 -842 -5 -856 -10 -28 -11 -67 -56 -67 -78 0 -34 31 -73 68 -83 26 -8 296 -10 897 -8 860 3 860 3 911 32 55 30 337 302 524 505 117 127 140 157 140 186 0 24 -27 58 -57 74 -25 13 -30 13 -59 1z m61 -77 c0 -28 -579 -623 -629 -647 -31 -14 -126 -16 -912 -16 -514 0 -881 3 -887 9 -5 5 -7 17 -5 27 3 18 36 19 879 24 876 5 876 5 911 32 20 15 161 156 314 313 235 240 283 285 304 283 18 -2 25 -9 25 -25z%22/%3E %3Cpath d=%22M725 781 c-62 -15 -97 -46 -376 -325 -337 -336 -358 -366 -293 -427 27 -25 74 -28 108 -6 12 9 143 137 290 285 147 149 280 275 294 281 18 7 312 11 884 13 848 3 857 3 884 24 50 37 50 101 1 138 -28 21 -33 21 -895 22 -477 1 -880 -1 -897 -5z m1786 -67 c9 -11 10 -20 2 -32 -9 -16 -83 -17 -895 -22 -804 -5 -886 -7 -909 -22 -14 -9 -149 -143 -300 -297 -151 -154 -280 -283 -286 -286 -21 -8 -43 6 -43 27 0 22 531 572 591 612 20 13 47 26 60 29 13 2 416 5 895 6 784 1 873 -1 885 -15z%22/%3E %3C/g%3E%3Cg id=%22ic_xchev%22 transform=%22translate(0.000000,240.000000) scale(0.100000,-0.100000)%22 %3E %3Cpath d=%22M660 1825 c316 -316 575 -573 576 -572 1 1 260 258 575 572 l572 570 -117 3 -118 3 -455 -451 -454 -450 -457 450 -457 450 -120 0 -120 0 575 -575z%22/%3E %3Cpath d=%22M863 2033 l367 -368 367 368 368 367 -120 0 c-120 0 -120 0 -365 -245 l-245 -245 -245 245 c-245 245 -245 245 -370 245 l-125 0 368 -367z%22/%3E %3Cpath d=%22M965 2318 c44 -46 123 -124 175 -176 l94 -93 176 176 175 175 -350 0 -350 0 80 -82z%22/%3E %3Cpath d=%22M7 2364 c-4 -4 -7 -57 -7 -117 0 -109 0 -109 463 -574 254 -255 463 -467 465 -471 1 -4 -207 -216 -463 -472 l-465 -465 0 -113 c0 -63 4 -112 9 -110 4 2 271 263 592 580 l584 578 -585 585 c-322 322 -589 583 -593 579z%22/%3E %3Cpath d=%22M1957 1872 c-270 -269 -520 -515 -555 -548 -35 -32 -75 -74 -89 -92 -25 -33 -25 -33 564 -617 l588 -584 3 116 3 117 -461 461 c-253 253 -460 467 -460 475 0 8 207 222 460 475 l460 460 0 112 c0 69 -4 113 -10 113 -6 0 -232 -220 -503 -488z%22/%3E %3Cpath d=%22M0 1835 c0 -116 0 -116 257 -376 l257 -260 -154 -153 c-85 -84 -201 -200 -258 -258 -102 -105 -102 -105 -102 -216 0 -61 4 -113 8 -116 5 -3 177 164 383 370 l374 374 -375 375 c-206 206 -378 375 -382 375 -5 0 -8 -52 -8 -115z%22/%3E %3Cpath d=%22M2080 1575 l-375 -375 375 -375 c206 -206 378 -375 382 -375 5 0 8 53 8 117 0 118 0 118 -257 375 l-257 257 257 261 c257 261 257 261 257 375 0 63 -3 115 -8 115 -4 0 -176 -169 -382 -375z%22/%3E %3Cpath d=%22M7 1576 c-20 -50 -9 -67 138 -216 80 -81 145 -151 145 -156 0 -5 -63 -72 -139 -149 -112 -113 -140 -147 -145 -175 -12 -75 6 -63 199 130 l190 190 -66 67 c-298 308 -316 326 -322 309z%22/%3E %3Cpath d=%22M2267 1402 c-103 -103 -187 -191 -187 -195 0 -11 372 -397 383 -397 4 0 7 21 7 47 0 45 -2 48 -113 162 -141 144 -167 173 -167 186 1 5 64 75 140 155 134 140 140 147 140 188 0 23 -3 42 -8 42 -4 0 -92 -84 -195 -188z%22/%3E %3Cpath d=%22M10 1212 c0 -94 3 -172 6 -172 11 0 164 153 164 164 0 6 -38 49 -85 96 l-85 85 0 -173z%22/%3E %3Cpath d=%22M2368 1288 l-76 -83 77 -81 c42 -45 82 -82 89 -83 9 -1 12 38 12 164 0 127 -3 165 -13 165 -7 0 -47 -37 -89 -82z%22/%3E %3Cpath d=%22M657 582 c-312 -312 -567 -570 -567 -574 0 -5 55 -8 123 -8 l122 0 446 450 c246 247 451 450 456 450 4 0 211 -202 458 -450 l450 -450 125 0 125 0 -575 575 c-316 316 -579 575 -585 575 -5 0 -265 -256 -578 -568z%22/%3E %3Cpath d=%22M873 378 c-200 -200 -363 -366 -363 -371 0 -4 51 -7 113 -7 112 0 112 0 360 247 l248 247 247 -247 c248 -248 248 -248 367 -245 l120 3 -365 368 -365 367 -362 -362z%22/%3E %3Cpath d=%22M1068 185 c-93 -91 -168 -170 -168 -175 0 -6 129 -10 340 -10 187 0 340 3 340 7 0 8 -332 343 -340 343 -3 0 -80 -75 -172 -165z%22/%3E %3C/g%3E%3Cg id=%22ic_sparkle%22 transform=%22translate(0.000000,124.000000) scale(0.100000,-0.100000)%22 %3E %3Cpath d=%22M590 1177 c-22 -111 -81 -351 -95 -384 -8 -20 -28 -39 -52 -52 -36 -18 -244 -72 -387 -101 -32 -7 -54 -15 -50 -20 5 -4 85 -24 179 -45 181 -40 256 -63 286 -91 24 -22 48 -101 98 -319 27 -120 40 -163 45 -145 3 14 24 101 46 195 59 247 64 262 110 285 48 24 146 51 315 86 72 14 133 29 138 33 4 4 -70 24 -165 45 -222 49 -289 70 -317 100 -17 18 -35 75 -72 223 -27 109 -49 208 -49 220 0 47 -18 29 -30 -30z%22/%3E %3C/g%3E%3Cg id=%22ic_car5%22 transform=%22translate(0.000000,175.000000) scale(0.100000,-0.100000)%22 %3E %3Cpath d=%22M3380 1743 c-51 -5 -70 -17 -70 -45 0 -25 6 -27 142 -36 65 -5 121 -12 125 -16 4 -4 2 -15 -4 -24 -12 -20 -1 -20 -306 2 -272 20 -830 21 -1047 2 -189 -17 -267 -41 -750 -236 -95 -38 -177 -67 -181 -62 -4 4 -9 16 -11 27 -2 15 -12 21 -41 23 -34 3 -39 0 -52 -31 -8 -19 -11 -43 -8 -55 7 -28 -13 -35 -143 -57 -139 -23 -223 -49 -339 -105 -123 -59 -176 -94 -380 -246 -155 -115 -284 -228 -274 -239 3 -3 53 -12 110 -20 57 -8 174 -25 259 -39 85 -14 288 -43 450 -66 162 -22 355 -49 429 -60 74 -11 144 -20 157 -20 14 0 91 47 187 114 206 145 541 355 676 423 57 29 147 67 200 84 87 29 113 32 286 40 414 18 455 24 1004 155 490 116 702 149 826 126 44 -9 36 -10 -66 -11 -135 -1 -278 -24 -504 -81 -218 -54 -205 -49 -205 -74 0 -41 13 -48 54 -31 21 9 52 15 69 13 30 -3 32 -6 40 -58 10 -70 0 -196 -18 -214 -16 -16 -83 -11 -155 10 -36 11 -47 11 -53 2 -130 -212 -176 -292 -173 -295 6 -7 488 67 507 77 8 5 21 26 27 47 25 82 189 325 260 383 112 92 247 104 321 28 27 -27 78 -135 69 -144 -2 -1 -18 26 -37 62 -44 86 -78 109 -156 108 -121 -1 -202 -61 -322 -239 -64 -96 -123 -205 -123 -229 0 -27 -29 -44 -87 -51 -53 -6 -1045 -157 -1120 -170 -31 -6 -33 -9 -34 -48 0 -23 -4 -60 -8 -82 -7 -34 -9 -27 -10 45 -1 47 -6 114 -12 150 -14 90 -75 270 -104 306 -22 28 -27 29 -113 32 -145 6 -329 -51 -387 -120 -13 -15 -58 -97 -101 -180 -100 -199 -174 -328 -188 -328 -6 0 -100 -9 -208 -21 -108 -12 -203 -19 -212 -16 -8 3 -38 40 -66 81 -31 47 -59 78 -73 81 -12 2 -166 25 -342 49 -176 25 -412 59 -525 76 -171 26 -353 51 -527 74 -26 4 -32 1 -37 -18 -3 -13 -2 -36 3 -52 18 -62 34 -83 70 -95 39 -13 61 -27 61 -39 0 -5 -16 -27 -35 -50 -52 -63 -48 -76 33 -93 91 -21 357 -72 612 -117 30 -5 89 -16 130 -24 518 -100 620 -107 930 -62 102 15 200 31 219 36 56 15 78 55 151 270 64 189 132 332 181 381 42 42 95 62 228 85 112 19 153 13 179 -24 51 -74 79 -212 66 -331 -8 -76 -8 -76 -15 34 -11 159 -56 283 -109 300 -19 6 -179 -17 -244 -36 -83 -23 -158 -129 -229 -324 -14 -38 -44 -121 -67 -183 -24 -66 -39 -121 -35 -132 9 -30 103 -108 143 -121 69 -20 223 -23 285 -5 70 20 139 85 188 176 34 64 34 64 259 101 124 21 306 52 405 69 99 18 308 54 464 81 156 26 293 54 305 62 72 48 121 119 176 257 48 123 118 232 177 277 50 37 136 59 176 44 47 -18 97 -146 97 -248 0 -70 -16 -76 -23 -9 -13 124 -66 226 -119 226 -117 0 -207 -98 -299 -327 -45 -112 -102 -189 -166 -221 -34 -18 -34 -18 3 -60 54 -64 91 -78 219 -86 141 -9 196 2 242 45 51 50 102 163 110 244 4 49 12 74 29 95 38 44 46 78 39 157 -7 72 -7 72 35 131 61 88 89 208 60 262 -12 22 -184 91 -303 121 -45 12 -86 25 -90 29 -5 4 0 45 10 90 l18 82 155 -4 c85 -3 169 -1 185 3 28 8 65 52 65 77 0 6 -83 10 -217 10 -194 1 -473 8 -1070 28 -101 3 -183 10 -183 15 0 9 -42 9 -130 2z m738 -119 c193 -4 292 -10 292 -17 0 -14 -80 -117 -91 -117 -5 0 -92 25 -195 55 -102 30 -214 57 -249 61 -59 6 -64 5 -86 -20 -12 -14 -31 -26 -41 -26 -14 0 -18 8 -18 41 0 41 0 41 48 35 26 -4 179 -9 340 -12z m-197 -59 c79 -30 170 -57 264 -78 11 -3 -1 -5 -27 -6 -33 -1 -48 -5 -48 -14 0 -7 -7 -36 -15 -64 -15 -51 -15 -51 -58 -48 -23 1 -89 23 -146 49 -57 25 -108 43 -114 39 -6 -4 -7 -1 -2 7 6 10 4 12 -9 7 -9 -4 -14 -3 -11 2 3 5 -5 13 -17 17 -13 4 -50 20 -82 35 -33 16 -67 29 -77 29 -10 0 -21 5 -24 10 -4 6 5 10 21 10 43 0 188 -32 195 -42 4 -6 11 4 17 21 7 19 18 31 29 32 10 0 13 3 6 6 -15 5 -17 23 -4 23 5 0 51 -16 102 -35z m-1281 -1 c217 -15 250 -19 250 -33 0 -4 -33 -43 -73 -87 -40 -43 -117 -130 -171 -191 -98 -113 -98 -113 -197 -113 -55 0 -162 -8 -237 -17 -170 -22 -156 -22 -517 11 -485 43 -495 45 -524 80 -10 12 -9 16 7 25 43 23 638 258 767 303 140 48 140 48 310 42 94 -3 267 -12 385 -20z m892 -61 c68 -66 73 -61 -77 -82 -150 -22 -334 -50 -367 -56 -34 -6 -34 -6 -56 58 -28 83 -28 93 6 102 47 12 254 33 345 34 88 1 88 1 149 -56z m128 -28 c55 -33 109 -71 198 -142 19 -15 14 -21 -27 -33 -31 -9 -34 -6 -141 103 -61 61 -110 112 -110 114 0 5 0 5 80 -42z m-680 12 c0 -1 9 -29 21 -61 11 -32 24 -78 28 -103 9 -43 9 -43 -60 -94 -38 -28 -71 -60 -74 -70 -7 -21 -22 -22 -127 -12 -46 4 -68 10 -68 19 0 13 163 219 228 287 31 31 52 46 52 34z m1019 -153 c10 -10 -46 14 -128 55 -45 23 -81 43 -81 46 0 5 200 -91 209 -101z m-345 29 c20 -32 36 -63 36 -70 0 -7 -17 -17 -37 -22 -108 -28 -169 -42 -278 -65 -154 -33 -151 -33 -159 9 -10 51 -29 65 -92 65 -49 0 -54 2 -60 26 -4 14 -3 29 2 34 5 5 81 18 169 29 88 12 196 27 240 35 140 24 138 24 179 -41z m-2122 -281 c236 -24 293 -34 277 -45 -2 -2 -53 -39 -114 -83 -147 -106 -273 -207 -432 -347 -73 -64 -135 -113 -137 -108 -9 14 342 309 552 464 120 88 134 77 -138 102 -91 9 -205 20 -254 25 -89 9 -89 9 -255 -75 -181 -92 -372 -197 -579 -319 -73 -43 -135 -76 -138 -73 -12 12 368 233 661 384 168 86 207 103 245 102 25 0 165 -12 312 -27z m-941 -91 c30 -5 88 -15 129 -21 74 -13 74 -13 45 -37 -17 -13 -52 -37 -80 -52 -50 -29 -50 -29 -155 -10 -58 10 -117 18 -132 19 -16 0 -28 5 -28 10 0 13 -11 13 142 -10 131 -21 131 -21 186 15 29 20 52 39 49 41 -3 3 -61 14 -128 25 -68 11 -126 22 -128 25 -7 7 42 5 100 -5z m4101 -38 c89 -85 82 -346 -13 -445 -30 -32 -42 -38 -77 -38 -83 0 -132 92 -132 246 0 123 49 237 114 265 32 13 77 2 108 -28z m-2852 -99 c74 -9 141 -20 149 -24 11 -6 -7 -22 -65 -60 -77 -51 -80 -52 -134 -45 -249 29 -293 34 -296 38 -3 2 28 29 68 60 64 49 78 56 108 52 19 -3 96 -12 170 -21z m-1384 -15 c85 -11 117 -23 98 -36 -143 -98 -133 -95 -250 -75 -60 10 -109 23 -108 28 0 5 29 31 64 57 49 36 70 47 89 43 15 -3 62 -10 107 -17z m2189 -122 c95 -54 143 -271 93 -420 -16 -48 -75 -133 -105 -153 -73 -47 -155 -36 -219 31 -58 60 -79 126 -78 245 1 142 49 247 139 302 43 26 120 24 170 -5z m-1026 -17 c63 -11 119 -24 124 -29 6 -6 -22 -30 -74 -65 -84 -55 -84 -55 -229 -32 -80 12 -143 26 -140 31 6 11 62 62 104 93 36 27 68 28 215 2z m-809 -40 c13 -9 11 -13 -10 -30 -46 -36 -80 -19 -43 22 18 20 31 22 53 8z m-646 -120 c64 -10 66 -12 70 -32 1 -7 5 -19 10 -26 16 -25 -9 -29 -94 -15 -47 8 -86 16 -88 18 -2 2 -5 17 -7 34 -4 28 -1 31 23 31 15 0 53 -4 86 -10z m102 -136 c66 -17 66 -17 60 -48 -10 -47 -24 -56 -71 -47 -22 5 -57 12 -77 15 -37 7 -37 7 -15 51 12 24 26 44 30 45 4 0 37 -7 73 -16z m993 -19 c57 -8 108 -18 112 -22 4 -4 11 -28 15 -52 7 -44 7 -44 -22 -38 -16 3 -87 13 -157 23 -121 17 -129 19 -138 43 -6 14 -8 35 -5 47 7 25 -3 25 195 -1z m-731 -40 c219 -35 528 -86 544 -91 28 -8 32 -53 7 -80 -19 -20 -28 -22 -68 -17 -25 3 -57 10 -70 15 -24 9 -24 8 -4 71 4 13 -1 17 -23 17 -16 0 -94 11 -174 25 -80 14 -162 28 -182 31 -33 6 -39 4 -47 -18 -16 -42 -32 -49 -86 -35 -27 7 -50 17 -52 22 -4 14 34 75 47 75 6 0 54 -7 108 -15z m902 -125 c21 -6 25 -12 24 -43 -2 -45 -19 -67 -53 -67 -37 0 -211 27 -218 34 -3 3 11 26 31 51 37 45 37 45 114 38 42 -3 88 -9 102 -13z%22/%3E %3Cpath d=%22M3880 1550 c8 -5 20 -10 25 -10 6 0 3 5 -5 10 -8 5 -19 10 -25 10 -5 0 -3 -5 5 -10z%22/%3E %3Cpath d=%22M3917 1409 c7 -7 15 -10 18 -7 3 3 -2 9 -12 12 -14 6 -15 5 -6 -5z%22/%3E %3Cpath d=%22M4000 1370 c8 -5 20 -10 25 -10 6 0 3 5 -5 10 -8 5 -19 10 -25 10 -5 0 -3 -5 5 -10z%22/%3E %3Cpath d=%22M4628 945 c116 -50 102 -377 -18 -437 -19 -10 -27 -18 -18 -18 28 0 79 51 100 99 30 68 36 202 13 275 -19 60 -53 96 -89 96 -16 -1 -14 -4 12 -15z%22/%3E %3Cpath d=%22M4551 915 c-37 -42 -51 -88 -58 -185 -6 -84 7 -144 38 -184 28 -35 52 -33 87 9 38 46 55 123 50 216 -4 82 -27 139 -63 163 -22 15 -25 14 -54 -19z m-16 -85 c3 -5 1 -10 -4 -10 -6 0 -11 5 -11 10 0 6 2 10 4 10 3 0 8 -4 11 -10z m3 -102 c15 -15 16 -54 2 -63 -6 -4 -9 -1 -8 7 2 8 -4 12 -14 10 -14 -2 -18 4 -18 28 0 31 17 39 38 18z%22/%3E %3Cpath d=%22M1582 819 c-29 -23 -52 -42 -50 -44 2 -2 62 -11 133 -20 72 -8 140 -18 151 -20 29 -6 154 74 133 85 -12 6 -273 41 -304 40 -5 0 -34 -19 -63 -41z%22/%3E %3Cpath d=%22M2563 707 c80 -25 135 -116 144 -240 11 -154 -80 -307 -184 -307 -17 0 -35 5 -38 10 -3 6 3 10 15 10 90 0 165 126 165 275 -1 137 -61 225 -154 225 -39 0 -52 -5 -73 -27 -62 -65 -94 -223 -69 -331 18 -73 62 -137 112 -163 37 -18 47 -20 80 -10 75 23 126 87 155 196 46 172 -42 377 -161 374 -29 -1 -29 -1 8 -12z m-68 -158 c0 -15 -7 -25 -17 -27 -13 -3 -18 3 -18 21 0 13 3 27 7 31 13 12 28 -1 28 -25z m73 -71 c-3 -36 -30 -46 -36 -15 -5 26 5 47 23 47 12 0 15 -8 13 -32z m-124 -21 c8 -13 6 -21 -7 -34 -17 -17 -19 -17 -32 1 -10 14 -11 24 -4 38 12 22 27 20 43 -5z m66 -7 c9 -33 -8 -70 -32 -70 -22 0 -25 19 -12 78 6 31 36 25 44 -8z m38 -98 c2 -14 -2 -22 -12 -22 -19 0 -29 17 -22 36 8 22 30 12 34 -14z m-74 -17 c8 -23 -4 -45 -25 -45 -14 0 -19 7 -19 30 0 23 5 30 19 30 10 0 21 -7 25 -15z%22/%3E %3Cpath d=%22M3680 1199 c-221 -51 -471 -99 -564 -109 -50 -5 -153 -10 -229 -10 -76 0 -137 -3 -135 -7 2 -5 28 -46 59 -93 72 -108 104 -169 163 -305 26 -60 51 -114 55 -118 4 -4 127 11 272 33 264 42 264 42 295 77 46 52 177 274 167 283 -4 4 -50 17 -100 30 -51 12 -93 26 -93 31 0 14 43 38 96 54 27 8 76 30 109 48 57 31 60 34 63 75 4 51 11 50 -158 11z%22/%3E %3Cpath d=%22M3880 1150 c-85 -47 -192 -98 -222 -105 -15 -4 -32 -13 -38 -20 -9 -10 -4 -15 22 -20 18 -4 80 -18 137 -32 58 -13 126 -27 152 -30 44 -5 48 -4 54 18 3 13 5 67 3 119 -3 93 -3 95 -28 98 -14 1 -50 -12 -80 -28z%22/%3E %3Cpath d=%22M2560 1051 c-82 -23 -148 -50 -250 -101 -207 -104 -820 -501 -820 -531 0 -5 21 -41 46 -80 46 -70 46 -70 118 -64 157 15 327 34 335 39 15 9 85 135 169 301 102 203 128 233 229 274 106 42 162 53 270 53 71 1 98 -3 119 -17 45 -29 102 -175 139 -357 5 -25 10 -28 45 -28 22 0 40 5 40 11 0 43 -167 383 -228 464 -37 49 -39 50 -92 52 -30 1 -84 -6 -120 -16z%22/%3E %3C/g%3E%3Cg id=%22ic_sun_full%22 transform=%22translate(0.000000,145.000000) scale(0.100000,-0.100000)%22 %3E %3Cpath d=%22M1235 1440 c-171 -18 -373 -103 -502 -210 -76 -63 -183 -184 -183 -207 0 -11 149 -13 801 -13 800 0 800 0 782 31 -10 17 -45 60 -77 96 -157 172 -371 277 -616 303 -104 11 -104 11 -205 0z%22/%3E %3Cpath d=%22M501 949 c-13 -22 -21 -42 -19 -44 6 -6 1719 -7 1725 -2 2 3 -5 23 -17 46 -20 41 -20 41 -843 41 -823 0 -823 0 -846 -41z%22/%3E %3Cpath d=%22M440 818 c-11 -24 -20 -49 -20 -55 0 -10 192 -13 926 -13 925 0 925 0 918 23 -3 12 -12 37 -20 55 -13 32 -13 32 -899 32 -886 0 -886 0 -905 -42z%22/%3E %3Cpath d=%22M396 659 c-3 -17 -6 -40 -6 -50 0 -18 28 -19 955 -19 955 0 955 0 955 28 0 15 -3 37 -6 50 -6 22 -6 22 -949 22 -942 0 -942 0 -949 -31z%22/%3E %3Cpath d=%22M5 510 c-3 -5 -3 -14 0 -20 4 -7 464 -10 1346 -10 1271 0 1340 1 1337 18 -3 16 -76 17 -1340 20 -886 1 -1339 -1 -1343 -8z%22/%3E %3Cpath d=%22M10 385 c0 -25 0 -25 1338 -23 1329 3 1337 3 1337 23 0 20 -8 20 -1337 23 -1338 2 -1338 2 -1338 -23z%22/%3E %3Cpath d=%22M40 253 c0 -16 4 -34 8 -41 7 -10 274 -12 1303 -10 1294 3 1294 3 1297 41 3 37 3 37 -1302 37 -1306 0 -1306 0 -1306 -27z%22/%3E %3Cpath d=%22M90 93 c0 -10 5 -35 11 -56 10 -37 10 -37 1247 -35 1236 3 1236 3 1249 47 7 24 10 48 7 52 -3 5 -565 9 -1260 9 -1188 0 -1254 -1 -1254 -17z%22/%3E %3C/g%3E%3C/defs%3E%3Cg transform=%22translate(244.2 262.9) rotate(-3.3) scale(1.7338 1.7338)%22%3E%3Cuse href=%22%23ic_mountains%22 transform=%22translate(-139 -53.5)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(244.2 1962.9) rotate(-3.3) scale(1.7338 1.7338)%22%3E%3Cuse href=%22%23ic_mountains%22 transform=%22translate(-139 -53.5)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(1944.2 262.9) rotate(-3.3) scale(1.7338 1.7338)%22%3E%3Cuse href=%22%23ic_mountains%22 transform=%22translate(-139 -53.5)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(1944.2 1962.9) rotate(-3.3) scale(1.7338 1.7338)%22%3E%3Cuse href=%22%23ic_mountains%22 transform=%22translate(-139 -53.5)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(-148.0 941.3) rotate(1.9) scale(1.4030 1.4030)%22%3E%3Cuse href=%22%23ic_joystick2%22 transform=%22translate(-100.5 -126.5)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(1552.0 941.3) rotate(1.9) scale(1.4030 1.4030)%22%3E%3Cuse href=%22%23ic_joystick2%22 transform=%22translate(-100.5 -126.5)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(606.9 723.0) rotate(-7.7) scale(1.5537 1.5537)%22%3E%3Cuse href=%22%23ic_palm5%22 transform=%22translate(-121 -133.5)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(1170.1 562.1) rotate(-2.3) scale(2.0238 2.0238)%22%3E%3Cuse href=%22%23ic_arcade%22 transform=%22translate(-84 -133)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(900.9 1103.6) rotate(6.3) scale(0.9423 0.9423)%22%3E%3Cuse href=%22%23ic_cube%22 transform=%22translate(-104 -113.5)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(-317.0 -235.3) rotate(3.8) scale(2.1165 2.1165)%22%3E%3Cuse href=%22%23ic_sun_half%22 transform=%22translate(-103 -91)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(-317.0 1464.7) rotate(3.8) scale(2.1165 2.1165)%22%3E%3Cuse href=%22%23ic_sun_half%22 transform=%22translate(-103 -91)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(1383.0 -235.3) rotate(3.8) scale(2.1165 2.1165)%22%3E%3Cuse href=%22%23ic_sun_half%22 transform=%22translate(-103 -91)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(1383.0 1464.7) rotate(3.8) scale(2.1165 2.1165)%22%3E%3Cuse href=%22%23ic_sun_half%22 transform=%22translate(-103 -91)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(428.7 -294.4) rotate(5.2) scale(1.7765 1.7765)%22%3E%3Cuse href=%22%23ic_cassette2%22 transform=%22translate(-132 -84.5)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(428.7 1405.6) rotate(5.2) scale(1.7765 1.7765)%22%3E%3Cuse href=%22%23ic_cassette2%22 transform=%22translate(-132 -84.5)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(908.8 -93.9) rotate(-5.3) scale(1.3828 1.3828)%22%3E%3Cuse href=%22%23ic_swoosh2%22 transform=%22translate(-128 -96)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(908.8 1606.1) rotate(-5.3) scale(1.3828 1.3828)%22%3E%3Cuse href=%22%23ic_swoosh2%22 transform=%22translate(-128 -96)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(783.9 259.6) rotate(-0.7) scale(0.7368 0.7368)%22%3E%3Cuse href=%22%23ic_xchev%22 transform=%22translate(-123.5 -120)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(783.9 1959.6) rotate(-0.7) scale(0.7368 0.7368)%22%3E%3Cuse href=%22%23ic_xchev%22 transform=%22translate(-123.5 -120)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(-65.2 566.8) rotate(5.8) scale(0.9187 0.9187)%22%3E%3Cuse href=%22%23ic_sparkle%22 transform=%22translate(-61.5 -62)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(1634.8 566.8) rotate(5.8) scale(0.9187 0.9187)%22%3E%3Cuse href=%22%23ic_sparkle%22 transform=%22translate(-61.5 -62)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(234.9 1020.2) rotate(1.2) scale(0.3213 0.3213)%22%3E%3Cuse href=%22%23ic_car5%22 transform=%22translate(-249 -87.5)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(1934.9 1020.2) rotate(1.2) scale(0.3213 0.3213)%22%3E%3Cuse href=%22%23ic_car5%22 transform=%22translate(-249 -87.5)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(179.8 695.7) rotate(4.5) scale(0.9593 0.9593)%22%3E%3Cuse href=%22%23ic_sparkle%22 transform=%22translate(-61.5 -62)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(1879.8 695.7) rotate(4.5) scale(0.9593 0.9593)%22%3E%3Cuse href=%22%23ic_sparkle%22 transform=%22translate(-61.5 -62)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(-240.9 178.6) rotate(-3.7) scale(1.6829 1.6829)%22%3E%3Cuse href=%22%23ic_sparkle%22 transform=%22translate(-61.5 -62)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(-240.9 1878.6) rotate(-3.7) scale(1.6829 1.6829)%22%3E%3Cuse href=%22%23ic_sparkle%22 transform=%22translate(-61.5 -62)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(1459.1 178.6) rotate(-3.7) scale(1.6829 1.6829)%22%3E%3Cuse href=%22%23ic_sparkle%22 transform=%22translate(-61.5 -62)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(1459.1 1878.6) rotate(-3.7) scale(1.6829 1.6829)%22%3E%3Cuse href=%22%23ic_sparkle%22 transform=%22translate(-61.5 -62)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(1230.7 1085.6) rotate(-5.3) scale(0.6059 0.6059)%22%3E%3Cuse href=%22%23ic_sun_full%22 transform=%22translate(-134.5 -72.5)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(574.2 1060.7) rotate(3.7) scale(0.2886 0.2886)%22%3E%3Cuse href=%22%23ic_joystick2%22 transform=%22translate(-100.5 -126.5)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(50.9 1249.7) rotate(0.1) scale(0.5938 0.5938)%22%3E%3Cuse href=%22%23ic_swoosh2%22 transform=%22translate(-128 -96)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(1750.9 1249.7) rotate(0.1) scale(0.5938 0.5938)%22%3E%3Cuse href=%22%23ic_swoosh2%22 transform=%22translate(-128 -96)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(601.4 77.0) rotate(3.5) scale(0.4167 0.4167)%22%3E%3Cuse href=%22%23ic_cassette2%22 transform=%22translate(-132 -84.5)%22 fill=%22%23000000%22/%3E%3C/g%3E%3Cg transform=%22translate(601.4 1777.0) rotate(3.5) scale(0.4167 0.4167)%22%3E%3Cuse href=%22%23ic_cassette2%22 transform=%22translate(-132 -84.5)%22 fill=%22%23000000%22/%3E%3C/g%3E%3C/svg%3E") repeat; background-size:1700px 1700px;
  opacity:0.82; animation:rp-bg-synth 120s linear infinite;
}
@keyframes rp-bg-synth { from { background-position:0 0; } to { background-position:1700px 1700px; } }

/* Sixties — Austin Powers flower power (105 varied petalled flowers) */
[data-bg-theme="sixties"] { --rp-bg-opacity: 0.62; }
[data-bg-theme="sixties"] body { background:#ffd23f; }
[data-bg-theme="sixties"] body::before { background:url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22560%22 height=%22560%22 viewBox=%220 0 560 560%22%3E%3Cdefs%3E%3Cg id=%22d0%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(45.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(90.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(135.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(225.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(270.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(315.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Ccircle r=%227%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d1%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(45.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(90.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(135.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(225.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(270.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(315.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Ccircle r=%227%22 fill=%22%23ffd23d%22/%3E%3C/g%3E%3Cg id=%22d2%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(45.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(90.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(135.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(225.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(270.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(315.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Ccircle r=%227%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d3%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Ccircle r=%228.5%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg id=%22d4%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Ccircle r=%228.5%22 fill=%22%23ffd23d%22/%3E%3C/g%3E%3Cg id=%22d5%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Ccircle r=%228%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg id=%22d6%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Ccircle r=%226.5%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg id=%22d7%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(45.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(90.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(135.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(225.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(270.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(315.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Ccircle r=%227%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg id=%22d8%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(45.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(90.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(135.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(225.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(270.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(315.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Ccircle r=%227%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d9%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Ccircle r=%229%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d10%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Ccircle r=%228%22 fill=%22%23ffd23d%22/%3E%3C/g%3E%3Cg id=%22d11%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Ccircle r=%229%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d12%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Ccircle r=%229%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg id=%22d13%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(45.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(90.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(135.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(225.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(270.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(315.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Ccircle r=%227%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d14%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Ccircle r=%228.5%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d15%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Ccircle r=%226.5%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d16%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Ccircle r=%229%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d17%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Ccircle r=%226.5%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d18%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Ccircle r=%229%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg id=%22d19%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Ccircle r=%228%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg id=%22d20%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Ccircle r=%229%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d21%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(45.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(90.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(135.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(225.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(270.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(315.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Ccircle r=%227%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg id=%22d22%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Ccircle r=%226.5%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d23%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Ccircle r=%229%22 fill=%22%23ffd23d%22/%3E%3C/g%3E%3Cg id=%22d24%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(45.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(90.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(135.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(225.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(270.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(315.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Ccircle r=%227%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg id=%22d25%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Ccircle r=%228.5%22 fill=%22%23ffd23d%22/%3E%3C/g%3E%3Cg id=%22d26%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Ccircle r=%228%22 fill=%22%23ffd23d%22/%3E%3C/g%3E%3Cg id=%22d27%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Ccircle r=%229%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d28%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Ccircle r=%226.5%22 fill=%22%23ffd23d%22/%3E%3C/g%3E%3Cg id=%22d29%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(45.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(90.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(135.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(225.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(270.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(315.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Ccircle r=%227%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d30%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(45.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(90.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(135.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(225.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(270.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(315.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Ccircle r=%227%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d31%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(45.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(90.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(135.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(225.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(270.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(315.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Ccircle r=%227%22 fill=%22%23ffd23d%22/%3E%3C/g%3E%3Cg id=%22d32%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Ccircle r=%228.5%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg id=%22d33%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Ccircle r=%229%22 fill=%22%23ffd23d%22/%3E%3C/g%3E%3Cg id=%22d34%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(45.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(90.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(135.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(225.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(270.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(315.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Ccircle r=%227%22 fill=%22%23ffd23d%22/%3E%3C/g%3E%3Cg id=%22d35%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff00a8%22/%3E%3C/g%3E%3Ccircle r=%226.5%22 fill=%22%23ffd23d%22/%3E%3C/g%3E%3Cg id=%22d36%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Ccircle r=%228.5%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d37%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Ccircle r=%226.5%22 fill=%22%23ffd23d%22/%3E%3C/g%3E%3Cg id=%22d38%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Ccircle r=%226.5%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d39%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Ccircle r=%228.5%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d40%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Ccircle r=%226.5%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d41%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Ccircle r=%228%22 fill=%22%23ffd23d%22/%3E%3C/g%3E%3Cg id=%22d42%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%2338b6ff%22/%3E%3C/g%3E%3Ccircle r=%228.5%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d43%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(45.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(90.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(135.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(225.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(270.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(315.0)%22%3E%3Cpath d=%22M0 -2 C9 -10 8 -26 0 -30 C-8 -26 -9 -10 0 -2 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Ccircle r=%227%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg id=%22d44%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Ccircle r=%226.5%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg id=%22d45%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Ccircle r=%228%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d46%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Ccircle r=%228%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d47%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Ccircle r=%228.5%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d48%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Cpath d=%22M0 0 C13 -9 12 -30 0 -30 C-12 -30 -13 -9 0 0 Z%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3Ccircle r=%229%22 fill=%22%23ffd23d%22/%3E%3C/g%3E%3Cg id=%22d49%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 2 C14 -6 14 -28 0 -32 C-14 -28 -14 -6 0 2 Z%22 fill=%22%231ec9b0%22/%3E%3C/g%3E%3Ccircle r=%228.5%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg id=%22d50%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Ccircle r=%228%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d51%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%239bd636%22/%3E%3C/g%3E%3Ccircle r=%228%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d52%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Cpath d=%22M0 -4 C10 -12 8 -28 0 -32 C-8 -28 -10 -12 0 -4 Z%22 fill=%22%239b4dff%22/%3E%3C/g%3E%3Ccircle r=%226.5%22 fill=%22%23fff7e6%22/%3E%3C/g%3E%3Cg id=%22d53%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 0 Q9 -16 0 -34 Q-9 -16 0 0 Z%22 fill=%22%23ff7a1a%22/%3E%3C/g%3E%3Ccircle r=%228%22 fill=%22%23ff3ea5%22/%3E%3C/g%3E%3C/defs%3E%3Cuse href=%22%23d0%22 transform=%22translate(163.9 221.7) scale(1.94)%22/%3E%3Cuse href=%22%23d1%22 transform=%22translate(69.1 416.8) scale(1.72)%22/%3E%3Cuse href=%22%23d1%22 transform=%22translate(629.1 416.8) scale(1.72)%22/%3E%3Cuse href=%22%23d2%22 transform=%22translate(340.5 -30.9) scale(1.11)%22/%3E%3Cuse href=%22%23d2%22 transform=%22translate(340.5 529.1) scale(1.11)%22/%3E%3Cuse href=%22%23d3%22 transform=%22translate(487.4 260.1) scale(2.23)%22/%3E%3Cuse href=%22%23d4%22 transform=%22translate(292.9 135.0) scale(1.98)%22/%3E%3Cuse href=%22%23d5%22 transform=%22translate(226.0 389.2) scale(1.06)%22/%3E%3Cuse href=%22%23d6%22 transform=%22translate(409.6 92.6) scale(1.45)%22/%3E%3Cuse href=%22%23d7%22 transform=%22translate(434.9 -0.3) scale(1.29)%22/%3E%3Cuse href=%22%23d7%22 transform=%22translate(434.9 559.7) scale(1.29)%22/%3E%3Cuse href=%22%23d8%22 transform=%22translate(76.8 51.7) scale(1.03)%22/%3E%3Cuse href=%22%23d8%22 transform=%22translate(76.8 611.7) scale(1.03)%22/%3E%3Cuse href=%22%23d9%22 transform=%22translate(37.8 484.5) scale(0.86)%22/%3E%3Cuse href=%22%23d9%22 transform=%22translate(597.8 484.5) scale(0.86)%22/%3E%3Cuse href=%22%23d10%22 transform=%22translate(-30.8 -17.8) scale(0.94)%22/%3E%3Cuse href=%22%23d10%22 transform=%22translate(-30.8 542.2) scale(0.94)%22/%3E%3Cuse href=%22%23d10%22 transform=%22translate(529.2 -17.8) scale(0.94)%22/%3E%3Cuse href=%22%23d10%22 transform=%22translate(529.2 542.2) scale(0.94)%22/%3E%3Cuse href=%22%23d11%22 transform=%22translate(480.9 87.5) scale(1.27)%22/%3E%3Cuse href=%22%23d12%22 transform=%22translate(132.2 80.3) scale(0.83)%22/%3E%3Cuse href=%22%23d12%22 transform=%22translate(71.0 270.2) scale(1.33)%22/%3E%3Cuse href=%22%23d13%22 transform=%22translate(286.7 42.2) scale(0.85)%22/%3E%3Cuse href=%22%23d13%22 transform=%22translate(286.7 602.2) scale(0.85)%22/%3E%3Cuse href=%22%23d14%22 transform=%22translate(27.5 89.1) scale(0.79)%22/%3E%3Cuse href=%22%23d14%22 transform=%22translate(587.5 89.1) scale(0.79)%22/%3E%3Cuse href=%22%23d9%22 transform=%22translate(227.0 63.8) scale(1.17)%22/%3E%3Cuse href=%22%23d9%22 transform=%22translate(227.0 623.8) scale(1.17)%22/%3E%3Cuse href=%22%23d15%22 transform=%22translate(-18.3 351.9) scale(0.79)%22/%3E%3Cuse href=%22%23d15%22 transform=%22translate(541.7 351.9) scale(0.79)%22/%3E%3Cuse href=%22%23d16%22 transform=%22translate(39.5 62.3) scale(0.55)%22/%3E%3Cuse href=%22%23d16%22 transform=%22translate(39.5 622.3) scale(0.55)%22/%3E%3Cuse href=%22%23d16%22 transform=%22translate(599.5 62.3) scale(0.55)%22/%3E%3Cuse href=%22%23d16%22 transform=%22translate(599.5 622.3) scale(0.55)%22/%3E%3Cuse href=%22%23d17%22 transform=%22translate(446.0 351.9) scale(0.66)%22/%3E%3Cuse href=%22%23d18%22 transform=%22translate(447.6 121.0) scale(0.66)%22/%3E%3Cuse href=%22%23d19%22 transform=%22translate(-61.2 174.0) scale(0.51)%22/%3E%3Cuse href=%22%23d19%22 transform=%22translate(498.8 174.0) scale(0.51)%22/%3E%3Cuse href=%22%23d20%22 transform=%22translate(298.7 303.2) scale(0.53)%22/%3E%3Cuse href=%22%23d4%22 transform=%22translate(-6.5 11.2) scale(0.57)%22/%3E%3Cuse href=%22%23d4%22 transform=%22translate(-6.5 571.2) scale(0.57)%22/%3E%3Cuse href=%22%23d4%22 transform=%22translate(553.5 11.2) scale(0.57)%22/%3E%3Cuse href=%22%23d4%22 transform=%22translate(553.5 571.2) scale(0.57)%22/%3E%3Cuse href=%22%23d12%22 transform=%22translate(-29.8 431.3) scale(0.73)%22/%3E%3Cuse href=%22%23d12%22 transform=%22translate(530.2 431.3) scale(0.73)%22/%3E%3Cuse href=%22%23d21%22 transform=%22translate(-5.1 382.5) scale(0.65)%22/%3E%3Cuse href=%22%23d21%22 transform=%22translate(554.9 382.5) scale(0.65)%22/%3E%3Cuse href=%22%23d14%22 transform=%22translate(398.7 170.6) scale(0.57)%22/%3E%3Cuse href=%22%23d22%22 transform=%22translate(176.9 -7.5) scale(0.70)%22/%3E%3Cuse href=%22%23d22%22 transform=%22translate(176.9 552.5) scale(0.70)%22/%3E%3Cuse href=%22%23d19%22 transform=%22translate(480.6 -42.6) scale(0.66)%22/%3E%3Cuse href=%22%23d19%22 transform=%22translate(480.6 517.4) scale(0.66)%22/%3E%3Cuse href=%22%23d23%22 transform=%22translate(270.7 290.6) scale(0.68)%22/%3E%3Cuse href=%22%23d19%22 transform=%22translate(450.0 477.1) scale(0.62)%22/%3E%3Cuse href=%22%23d24%22 transform=%22translate(-3.4 417.1) scale(0.57)%22/%3E%3Cuse href=%22%23d24%22 transform=%22translate(556.6 417.1) scale(0.57)%22/%3E%3Cuse href=%22%23d25%22 transform=%22translate(49.2 191.3) scale(0.54)%22/%3E%3Cuse href=%22%23d25%22 transform=%22translate(609.2 191.3) scale(0.54)%22/%3E%3Cuse href=%22%23d26%22 transform=%22translate(315.6 259.8) scale(0.61)%22/%3E%3Cuse href=%22%23d27%22 transform=%22translate(-34.7 486.4) scale(0.72)%22/%3E%3Cuse href=%22%23d27%22 transform=%22translate(525.3 486.4) scale(0.72)%22/%3E%3Cuse href=%22%23d20%22 transform=%22translate(-42.9 70.5) scale(0.60)%22/%3E%3Cuse href=%22%23d20%22 transform=%22translate(517.1 70.5) scale(0.60)%22/%3E%3Cuse href=%22%23d28%22 transform=%22translate(-58.6 381.5) scale(0.52)%22/%3E%3Cuse href=%22%23d28%22 transform=%22translate(501.4 381.5) scale(0.52)%22/%3E%3Cuse href=%22%23d22%22 transform=%22translate(440.4 156.9) scale(0.71)%22/%3E%3Cuse href=%22%23d29%22 transform=%22translate(388.9 141.7) scale(0.62)%22/%3E%3Cuse href=%22%23d11%22 transform=%22translate(177.8 35.8) scale(0.57)%22/%3E%3Cuse href=%22%23d11%22 transform=%22translate(177.8 595.8) scale(0.57)%22/%3E%3Cuse href=%22%23d30%22 transform=%22translate(256.7 210.7) scale(0.67)%22/%3E%3Cuse href=%22%23d31%22 transform=%22translate(259.4 361.6) scale(0.71)%22/%3E%3Cuse href=%22%23d9%22 transform=%22translate(4.3 -50.2) scale(0.55)%22/%3E%3Cuse href=%22%23d9%22 transform=%22translate(4.3 509.8) scale(0.55)%22/%3E%3Cuse href=%22%23d9%22 transform=%22translate(564.3 -50.2) scale(0.55)%22/%3E%3Cuse href=%22%23d9%22 transform=%22translate(564.3 509.8) scale(0.55)%22/%3E%3Cuse href=%22%23d1%22 transform=%22translate(110.5 238.1) scale(0.67)%22/%3E%3Cuse href=%22%23d8%22 transform=%22translate(181.7 139.8) scale(0.54)%22/%3E%3Cuse href=%22%23d32%22 transform=%22translate(423.9 178.2) scale(0.54)%22/%3E%3Cuse href=%22%23d33%22 transform=%22translate(204.6 312.3) scale(0.73)%22/%3E%3Cuse href=%22%23d34%22 transform=%22translate(438.1 436.7) scale(0.53)%22/%3E%3Cuse href=%22%23d16%22 transform=%22translate(87.4 12.2) scale(0.66)%22/%3E%3Cuse href=%22%23d16%22 transform=%22translate(87.4 572.2) scale(0.66)%22/%3E%3Cuse href=%22%23d14%22 transform=%22translate(193.4 107.6) scale(0.67)%22/%3E%3Cuse href=%22%23d35%22 transform=%22translate(332.5 414.5) scale(0.62)%22/%3E%3Cuse href=%22%23d36%22 transform=%22translate(114.8 125.7) scale(0.56)%22/%3E%3Cuse href=%22%23d25%22 transform=%22translate(440.5 411.0) scale(0.54)%22/%3E%3Cuse href=%22%23d37%22 transform=%22translate(120.0 34.6) scale(0.64)%22/%3E%3Cuse href=%22%23d37%22 transform=%22translate(120.0 594.6) scale(0.64)%22/%3E%3Cuse href=%22%23d38%22 transform=%22translate(365.6 291.5) scale(0.66)%22/%3E%3Cuse href=%22%23d36%22 transform=%22translate(145.3 -2.6) scale(0.73)%22/%3E%3Cuse href=%22%23d36%22 transform=%22translate(145.3 557.4) scale(0.73)%22/%3E%3Cuse href=%22%23d25%22 transform=%22translate(181.6 419.6) scale(0.48)%22/%3E%3Cuse href=%22%23d39%22 transform=%22translate(-28.2 46.3) scale(0.45)%22/%3E%3Cuse href=%22%23d39%22 transform=%22translate(-28.2 606.3) scale(0.45)%22/%3E%3Cuse href=%22%23d39%22 transform=%22translate(531.8 46.3) scale(0.45)%22/%3E%3Cuse href=%22%23d39%22 transform=%22translate(531.8 606.3) scale(0.45)%22/%3E%3Cuse href=%22%23d34%22 transform=%22translate(129.2 368.0) scale(0.44)%22/%3E%3Cuse href=%22%23d40%22 transform=%22translate(82.4 -47.7) scale(0.52)%22/%3E%3Cuse href=%22%23d40%22 transform=%22translate(82.4 512.3) scale(0.52)%22/%3E%3Cuse href=%22%23d41%22 transform=%22translate(22.2 179.5) scale(0.41)%22/%3E%3Cuse href=%22%23d41%22 transform=%22translate(582.2 179.5) scale(0.41)%22/%3E%3Cuse href=%22%23d31%22 transform=%22translate(338.6 69.4) scale(0.42)%22/%3E%3Cuse href=%22%23d31%22 transform=%22translate(338.6 629.4) scale(0.42)%22/%3E%3Cuse href=%22%23d16%22 transform=%22translate(368.1 434.3) scale(0.52)%22/%3E%3Cuse href=%22%23d4%22 transform=%22translate(440.3 212.1) scale(0.41)%22/%3E%3Cuse href=%22%23d41%22 transform=%22translate(312.9 352.5) scale(0.52)%22/%3E%3Cuse href=%22%23d1%22 transform=%22translate(122.8 -25.4) scale(0.45)%22/%3E%3Cuse href=%22%23d1%22 transform=%22translate(122.8 534.6) scale(0.45)%22/%3E%3Cuse href=%22%23d35%22 transform=%22translate(340.4 385.0) scale(0.53)%22/%3E%3Cuse href=%22%23d42%22 transform=%22translate(329.5 3.7) scale(0.44)%22/%3E%3Cuse href=%22%23d42%22 transform=%22translate(329.5 563.7) scale(0.44)%22/%3E%3Cuse href=%22%23d43%22 transform=%22translate(360.6 26.8) scale(0.46)%22/%3E%3Cuse href=%22%23d43%22 transform=%22translate(360.6 586.8) scale(0.46)%22/%3E%3Cuse href=%22%23d21%22 transform=%22translate(412.5 49.1) scale(0.50)%22/%3E%3Cuse href=%22%23d21%22 transform=%22translate(412.5 609.1) scale(0.50)%22/%3E%3Cuse href=%22%23d44%22 transform=%22translate(317.7 387.3) scale(0.44)%22/%3E%3Cuse href=%22%23d45%22 transform=%22translate(192.4 379.4) scale(0.51)%22/%3E%3Cuse href=%22%23d12%22 transform=%22translate(200.6 439.1) scale(0.54)%22/%3E%3Cuse href=%22%23d46%22 transform=%22translate(216.6 181.3) scale(0.43)%22/%3E%3Cuse href=%22%23d22%22 transform=%22translate(145.9 60.1) scale(0.44)%22/%3E%3Cuse href=%22%23d22%22 transform=%22translate(145.9 620.1) scale(0.44)%22/%3E%3Cuse href=%22%23d14%22 transform=%22translate(100.8 348.3) scale(0.52)%22/%3E%3Cuse href=%22%23d39%22 transform=%22translate(468.5 -11.7) scale(0.50)%22/%3E%3Cuse href=%22%23d39%22 transform=%22translate(468.5 548.3) scale(0.50)%22/%3E%3Cuse href=%22%23d5%22 transform=%22translate(260.4 439.5) scale(0.43)%22/%3E%3Cuse href=%22%23d1%22 transform=%22translate(180.2 332.6) scale(0.41)%22/%3E%3Cuse href=%22%23d47%22 transform=%22translate(32.8 -27.3) scale(0.49)%22/%3E%3Cuse href=%22%23d47%22 transform=%22translate(32.8 532.7) scale(0.49)%22/%3E%3Cuse href=%22%23d47%22 transform=%22translate(592.8 -27.3) scale(0.49)%22/%3E%3Cuse href=%22%23d47%22 transform=%22translate(592.8 532.7) scale(0.49)%22/%3E%3Cuse href=%22%23d46%22 transform=%22translate(-6.5 316.3) scale(0.51)%22/%3E%3Cuse href=%22%23d46%22 transform=%22translate(553.5 316.3) scale(0.51)%22/%3E%3Cuse href=%22%23d27%22 transform=%22translate(487.2 -14.4) scale(0.43)%22/%3E%3Cuse href=%22%23d27%22 transform=%22translate(487.2 545.6) scale(0.43)%22/%3E%3Cuse href=%22%23d29%22 transform=%22translate(394.5 357.4) scale(0.41)%22/%3E%3Cuse href=%22%23d48%22 transform=%22translate(394.5 387.6) scale(0.53)%22/%3E%3Cuse href=%22%23d35%22 transform=%22translate(205.1 40.7) scale(0.42)%22/%3E%3Cuse href=%22%23d35%22 transform=%22translate(205.1 600.7) scale(0.42)%22/%3E%3Cuse href=%22%23d9%22 transform=%22translate(453.5 190.5) scale(0.46)%22/%3E%3Cuse href=%22%23d49%22 transform=%22translate(106.2 482.5) scale(0.44)%22/%3E%3Cuse href=%22%23d8%22 transform=%22translate(363.0 321.3) scale(0.51)%22/%3E%3Cuse href=%22%23d4%22 transform=%22translate(246.5 122.7) scale(0.48)%22/%3E%3Cuse href=%22%23d50%22 transform=%22translate(62.7 90.1) scale(0.51)%22/%3E%3Cuse href=%22%23d50%22 transform=%22translate(622.7 90.1) scale(0.51)%22/%3E%3Cuse href=%22%23d32%22 transform=%22translate(-20.1 155.7) scale(0.54)%22/%3E%3Cuse href=%22%23d32%22 transform=%22translate(539.9 155.7) scale(0.54)%22/%3E%3Cuse href=%22%23d24%22 transform=%22translate(37.6 278.8) scale(0.42)%22/%3E%3Cuse href=%22%23d24%22 transform=%22translate(597.6 278.8) scale(0.42)%22/%3E%3Cuse href=%22%23d25%22 transform=%22translate(386.0 43.4) scale(0.41)%22/%3E%3Cuse href=%22%23d25%22 transform=%22translate(386.0 603.4) scale(0.41)%22/%3E%3Cuse href=%22%23d51%22 transform=%22translate(219.6 105.1) scale(0.45)%22/%3E%3Cuse href=%22%23d31%22 transform=%22translate(188.6 285.0) scale(0.52)%22/%3E%3Cuse href=%22%23d4%22 transform=%22translate(362.9 228.9) scale(0.46)%22/%3E%3Cuse href=%22%23d23%22 transform=%22translate(170.3 -56.6) scale(0.53)%22/%3E%3Cuse href=%22%23d23%22 transform=%22translate(170.3 503.4) scale(0.53)%22/%3E%3Cuse href=%22%23d52%22 transform=%22translate(191.8 -41.4) scale(0.49)%22/%3E%3Cuse href=%22%23d52%22 transform=%22translate(191.8 518.6) scale(0.49)%22/%3E%3Cuse href=%22%23d42%22 transform=%22translate(402.3 432.9) scale(0.41)%22/%3E%3Cuse href=%22%23d10%22 transform=%22translate(243.0 17.8) scale(0.52)%22/%3E%3Cuse href=%22%23d10%22 transform=%22translate(243.0 577.8) scale(0.52)%22/%3E%3Cuse href=%22%23d46%22 transform=%22translate(370.8 464.4) scale(0.45)%22/%3E%3Cuse href=%22%23d49%22 transform=%22translate(220.5 -68.5) scale(0.50)%22/%3E%3Cuse href=%22%23d49%22 transform=%22translate(220.5 491.5) scale(0.50)%22/%3E%3Cuse href=%22%23d26%22 transform=%22translate(278.5 248.4) scale(0.53)%22/%3E%3Cuse href=%22%23d53%22 transform=%22translate(7.3 107.5) scale(0.51)%22/%3E%3Cuse href=%22%23d53%22 transform=%22translate(567.3 107.5) scale(0.51)%22/%3E%3Cuse href=%22%23d9%22 transform=%22translate(16.2 51.5) scale(0.45)%22/%3E%3Cuse href=%22%23d9%22 transform=%22translate(16.2 611.5) scale(0.45)%22/%3E%3Cuse href=%22%23d9%22 transform=%22translate(576.2 51.5) scale(0.45)%22/%3E%3Cuse href=%22%23d9%22 transform=%22translate(576.2 611.5) scale(0.45)%22/%3E%3C/svg%3E") repeat; background-size:560px 560px; animation:rp-bg-flowers 72s linear infinite; }
@keyframes rp-bg-flowers { from { background-position:0 0; } to { background-position:560px 560px; } }

/* Star / space — steady starfield + nebula + planets on ::before, twinkling stars on ::after */
[data-bg-theme="space"] body { background:#070b22; }
[data-bg-theme="space"] body::before {
  background:
    radial-gradient(circle at 22% 18%, rgba(120,80,200,0.45), transparent 45%),
    radial-gradient(circle at 82% 72%, rgba(30,140,180,0.40), transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22180%22 height=%22120%22 viewBox=%220 0 180 120%22%3E%3Cdefs%3E%3CradialGradient id=%22p%22 cx=%2240%%22 cy=%2238%%22 r=%2270%%22%3E%3Cstop offset=%220%%22 stop-color=%22%23f0c98a%22/%3E%3Cstop offset=%2260%%22 stop-color=%22%23d59a52%22/%3E%3Cstop offset=%22100%%22 stop-color=%22%239c5f2a%22/%3E%3C/radialGradient%3E%3C/defs%3E%3Cellipse cx=%2290%22 cy=%2260%22 rx=%2278%22 ry=%2220%22 fill=%22none%22 stroke=%22%23caa46a%22 stroke-width=%227%22 opacity=%220.85%22/%3E%3Ccircle cx=%2290%22 cy=%2260%22 r=%2238%22 fill=%22url(%23p)%22/%3E%3Cellipse cx=%2290%22 cy=%2260%22 rx=%2278%22 ry=%2220%22 fill=%22none%22 stroke=%22%23e6c590%22 stroke-width=%223%22 opacity=%220.6%22/%3E%3C/svg%3E") no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2290%22 height=%2290%22 viewBox=%220 0 90 90%22%3E%3Cdefs%3E%3CradialGradient id=%22m%22 cx=%2238%%22 cy=%2236%%22 r=%2270%%22%3E%3Cstop offset=%220%%22 stop-color=%22%23eef1f6%22/%3E%3Cstop offset=%22100%%22 stop-color=%22%239aa3b4%22/%3E%3C/radialGradient%3E%3C/defs%3E%3Ccircle cx=%2245%22 cy=%2245%22 r=%2234%22 fill=%22url(%23m)%22/%3E%3Ccircle cx=%2236%22 cy=%2234%22 r=%226%22 fill=%22%238b94a6%22 opacity=%220.6%22/%3E%3Ccircle cx=%2255%22 cy=%2252%22 r=%228%22 fill=%22%238b94a6%22 opacity=%220.5%22/%3E%3Ccircle cx=%2252%22 cy=%2230%22 r=%223.5%22 fill=%22%238b94a6%22 opacity=%220.5%22/%3E%3C/svg%3E") no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22110%22 height=%22110%22 viewBox=%220 0 110 110%22%3E%3Cdefs%3E%3CradialGradient id=%22r%22 cx=%2240%%22 cy=%2238%%22 r=%2270%%22%3E%3Cstop offset=%220%%22 stop-color=%22%23e08a63%22/%3E%3Cstop offset=%22100%%22 stop-color=%22%239c3f2a%22/%3E%3C/radialGradient%3E%3C/defs%3E%3Ccircle cx=%2255%22 cy=%2255%22 r=%2240%22 fill=%22url(%23r)%22/%3E%3Cellipse cx=%2255%22 cy=%2248%22 rx=%2240%22 ry=%227%22 fill=%22%237e2f1f%22 opacity=%220.35%22/%3E%3Cellipse cx=%2255%22 cy=%2266%22 rx=%2238%22 ry=%226%22 fill=%22%237e2f1f%22 opacity=%220.3%22/%3E%3C/svg%3E") no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22320%22 height=%22320%22 viewBox=%220 0 320 320%22%3E%3Ccircle cx=%223.7%22 cy=%2219.8%22 r=%222.16%22 fill=%22%23ffffff%22 opacity=%220.75%22/%3E%3Ccircle cx=%22149.2%22 cy=%2276.8%22 r=%221.44%22 fill=%22%23ffe6b0%22 opacity=%220.76%22/%3E%3Ccircle cx=%22244.5%22 cy=%22165.9%22 r=%220.84%22 fill=%22%23ffffff%22 opacity=%220.58%22/%3E%3Ccircle cx=%2294.8%22 cy=%22312.9%22 r=%220.92%22 fill=%22%23ffe6b0%22 opacity=%220.84%22/%3E%3Ccircle cx=%2249.5%22 cy=%2293.1%22 r=%221.43%22 fill=%22%23bcd2ff%22 opacity=%220.78%22/%3E%3Ccircle cx=%22292.1%22 cy=%22177.2%22 r=%221.56%22 fill=%22%23ffffff%22 opacity=%220.74%22/%3E%3Ccircle cx=%22294.8%22 cy=%22264.8%22 r=%220.57%22 fill=%22%23ffffff%22 opacity=%220.49%22/%3E%3Ccircle cx=%226.5%22 cy=%2228.2%22 r=%221.81%22 fill=%22%23ffffff%22 opacity=%220.58%22/%3E%3Ccircle cx=%22302.8%22 cy=%22225.0%22 r=%221.67%22 fill=%22%23ffe6b0%22 opacity=%220.57%22/%3E%3Ccircle cx=%2242.7%22 cy=%22292.2%22 r=%221.05%22 fill=%22%23ffffff%22 opacity=%220.50%22/%3E%3Ccircle cx=%2214.0%22 cy=%22219.0%22 r=%222.07%22 fill=%22%23ffffff%22 opacity=%220.67%22/%3E%3Ccircle cx=%22294.4%22 cy=%2237.5%22 r=%221.40%22 fill=%22%23ffffff%22 opacity=%220.72%22/%3E%3Ccircle cx=%22268.1%22 cy=%22190.2%22 r=%222.14%22 fill=%22%23ffffff%22 opacity=%220.88%22/%3E%3Ccircle cx=%221.8%22 cy=%22165.1%22 r=%221.06%22 fill=%22%23ffffff%22 opacity=%220.76%22/%3E%3Ccircle cx=%22312.6%22 cy=%22178.4%22 r=%221.90%22 fill=%22%23ffffff%22 opacity=%220.61%22/%3E%3Ccircle cx=%22176.5%22 cy=%22100.0%22 r=%220.90%22 fill=%22%23bcd2ff%22 opacity=%220.40%22/%3E%3Ccircle cx=%22301.9%22 cy=%22266.7%22 r=%221.57%22 fill=%22%23ffffff%22 opacity=%220.41%22/%3E%3Ccircle cx=%22229.4%22 cy=%22318.4%22 r=%220.97%22 fill=%22%23ffffff%22 opacity=%220.89%22/%3E%3Ccircle cx=%22199.8%22 cy=%22265.6%22 r=%220.74%22 fill=%22%23ffffff%22 opacity=%220.90%22/%3E%3Ccircle cx=%2251.5%22 cy=%22126.8%22 r=%220.86%22 fill=%22%23ffffff%22 opacity=%220.81%22/%3E%3Ccircle cx=%22210.7%22 cy=%22316.9%22 r=%221.54%22 fill=%22%23ffffff%22 opacity=%220.77%22/%3E%3Ccircle cx=%2273.5%22 cy=%22186.9%22 r=%221.85%22 fill=%22%23ffffff%22 opacity=%220.83%22/%3E%3Ccircle cx=%22152.9%22 cy=%22168.2%22 r=%220.81%22 fill=%22%23ffffff%22 opacity=%220.53%22/%3E%3Ccircle cx=%2254.7%22 cy=%221.0%22 r=%220.79%22 fill=%22%23bcd2ff%22 opacity=%220.41%22/%3E%3Ccircle cx=%22280.4%22 cy=%22314.5%22 r=%220.60%22 fill=%22%23ffffff%22 opacity=%220.49%22/%3E%3Ccircle cx=%22234.3%22 cy=%22117.8%22 r=%221.11%22 fill=%22%23ffffff%22 opacity=%220.80%22/%3E%3Ccircle cx=%22169.6%22 cy=%22255.5%22 r=%221.20%22 fill=%22%23ffffff%22 opacity=%220.68%22/%3E%3Ccircle cx=%22248.5%22 cy=%2225.6%22 r=%220.93%22 fill=%22%23ffffff%22 opacity=%220.81%22/%3E%3Ccircle cx=%22137.5%22 cy=%22114.2%22 r=%222.06%22 fill=%22%23ffffff%22 opacity=%220.53%22/%3E%3Ccircle cx=%22265.7%22 cy=%22129.3%22 r=%222.16%22 fill=%22%23ffffff%22 opacity=%220.68%22/%3E%3Ccircle cx=%22171.9%22 cy=%2293.8%22 r=%222.00%22 fill=%22%23ffffff%22 opacity=%220.69%22/%3E%3Ccircle cx=%22158.6%22 cy=%22139.8%22 r=%221.69%22 fill=%22%23ffffff%22 opacity=%220.87%22/%3E%3Ccircle cx=%2252.0%22 cy=%22221.9%22 r=%221.16%22 fill=%22%23ffffff%22 opacity=%220.70%22/%3E%3Ccircle cx=%2294.5%22 cy=%2229.0%22 r=%221.66%22 fill=%22%23ffffff%22 opacity=%220.77%22/%3E%3Ccircle cx=%2283.1%22 cy=%2221.6%22 r=%221.72%22 fill=%22%23ffffff%22 opacity=%220.86%22/%3E%3Ccircle cx=%22308.1%22 cy=%2272.5%22 r=%222.16%22 fill=%22%23ffffff%22 opacity=%220.54%22/%3E%3Ccircle cx=%22228.3%22 cy=%22243.2%22 r=%221.56%22 fill=%22%23ffffff%22 opacity=%220.76%22/%3E%3Ccircle cx=%2287.0%22 cy=%22266.2%22 r=%221.32%22 fill=%22%23ffffff%22 opacity=%220.47%22/%3E%3Ccircle cx=%22179.1%22 cy=%22176.4%22 r=%222.01%22 fill=%22%23ffe6b0%22 opacity=%220.88%22/%3E%3Ccircle cx=%2291.8%22 cy=%22167.6%22 r=%221.17%22 fill=%22%23ffffff%22 opacity=%220.86%22/%3E%3Ccircle cx=%22290.5%22 cy=%2289.2%22 r=%221.34%22 fill=%22%23ffffff%22 opacity=%220.86%22/%3E%3Ccircle cx=%22106.7%22 cy=%22291.1%22 r=%222.15%22 fill=%22%23bcd2ff%22 opacity=%220.82%22/%3E%3Ccircle cx=%2253.6%22 cy=%22240.8%22 r=%220.68%22 fill=%22%23ffe6b0%22 opacity=%220.44%22/%3E%3Ccircle cx=%22188.6%22 cy=%2283.9%22 r=%221.85%22 fill=%22%23bcd2ff%22 opacity=%220.76%22/%3E%3Ccircle cx=%22142.9%22 cy=%22313.4%22 r=%220.64%22 fill=%22%23ffffff%22 opacity=%220.44%22/%3E%3Ccircle cx=%22221.2%22 cy=%2287.0%22 r=%221.35%22 fill=%22%23ffffff%22 opacity=%220.45%22/%3E%3Ccircle cx=%22174.2%22 cy=%2253.8%22 r=%221.81%22 fill=%22%23ffffff%22 opacity=%220.55%22/%3E%3Ccircle cx=%2211.8%22 cy=%2258.3%22 r=%221.72%22 fill=%22%23ffffff%22 opacity=%220.85%22/%3E%3Ccircle cx=%22206.2%22 cy=%22103.2%22 r=%220.66%22 fill=%22%23ffffff%22 opacity=%220.45%22/%3E%3Ccircle cx=%2282.5%22 cy=%22165.7%22 r=%220.62%22 fill=%22%23ffffff%22 opacity=%220.66%22/%3E%3Ccircle cx=%2251.9%22 cy=%22237.2%22 r=%220.79%22 fill=%22%23ffffff%22 opacity=%220.52%22/%3E%3Ccircle cx=%229.9%22 cy=%2210.7%22 r=%222.10%22 fill=%22%23ffffff%22 opacity=%220.86%22/%3E%3Ccircle cx=%22225.6%22 cy=%2254.6%22 r=%221.38%22 fill=%22%23ffffff%22 opacity=%220.44%22/%3E%3Ccircle cx=%22270.5%22 cy=%2222.3%22 r=%221.47%22 fill=%22%23bcd2ff%22 opacity=%220.59%22/%3E%3Ccircle cx=%22294.5%22 cy=%2287.3%22 r=%220.76%22 fill=%22%23ffffff%22 opacity=%220.54%22/%3E%3Ccircle cx=%22263.6%22 cy=%22277.1%22 r=%221.82%22 fill=%22%23ffffff%22 opacity=%220.75%22/%3E%3Ccircle cx=%22224.7%22 cy=%22220.2%22 r=%221.02%22 fill=%22%23ffffff%22 opacity=%220.60%22/%3E%3Ccircle cx=%2277.4%22 cy=%22158.9%22 r=%221.52%22 fill=%22%23ffffff%22 opacity=%220.74%22/%3E%3Ccircle cx=%2277.3%22 cy=%22236.1%22 r=%221.38%22 fill=%22%23ffffff%22 opacity=%220.62%22/%3E%3Ccircle cx=%2239.9%22 cy=%22177.2%22 r=%221.42%22 fill=%22%23ffe6b0%22 opacity=%220.73%22/%3E%3C/svg%3E") repeat;
  background-position: 0 0, 0 0, right 7% top 14%, left 9% top 46%, right 24% bottom 16%, 0 0;
  background-size: auto, auto, 200px auto, 96px auto, 118px auto, 320px 320px;
  background-color:#070b22; opacity:1;
}
[data-bg-theme="space"] body::after {
  content:""; position:fixed; inset:0; z-index:-1; pointer-events:none;
  background:url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22300%22 height=%22300%22 viewBox=%220 0 300 300%22%3E%3Ccircle cx=%2278.1%22 cy=%22241.4%22 r=%221.80%22 fill=%22%23bcd2ff%22 opacity=%220.91%22/%3E%3Ccircle cx=%22245.3%22 cy=%223.4%22 r=%220.75%22 fill=%22%23ffffff%22 opacity=%220.82%22/%3E%3Ccircle cx=%2219.3%22 cy=%22101.7%22 r=%222.24%22 fill=%22%23ffffff%22 opacity=%220.78%22/%3E%3Ccircle cx=%22229.8%22 cy=%22147.5%22 r=%221.16%22 fill=%22%23ffffff%22 opacity=%220.87%22/%3E%3Ccircle cx=%22232.0%22 cy=%22291.4%22 r=%221.75%22 fill=%22%23ffe6b0%22 opacity=%220.78%22/%3E%3Ccircle cx=%22136.8%22 cy=%22206.5%22 r=%221.44%22 fill=%22%23ffffff%22 opacity=%220.79%22/%3E%3Ccircle cx=%22118.3%22 cy=%22270.9%22 r=%220.96%22 fill=%22%23ffffff%22 opacity=%220.94%22/%3E%3Ccircle cx=%22210.4%22 cy=%22227.6%22 r=%221.17%22 fill=%22%23ffffff%22 opacity=%220.88%22/%3E%3Ccircle cx=%2247.5%22 cy=%226.3%22 r=%222.05%22 fill=%22%23ffe6b0%22 opacity=%221.00%22/%3E%3Ccircle cx=%22216.6%22 cy=%22246.3%22 r=%221.70%22 fill=%22%23ffffff%22 opacity=%220.91%22/%3E%3Ccircle cx=%22184.1%22 cy=%22230.3%22 r=%220.86%22 fill=%22%23bcd2ff%22 opacity=%220.92%22/%3E%3Ccircle cx=%2282.6%22 cy=%22189.3%22 r=%221.40%22 fill=%22%23ffe6b0%22 opacity=%220.80%22/%3E%3Ccircle cx=%22233.6%22 cy=%2211.0%22 r=%221.86%22 fill=%22%23ffe6b0%22 opacity=%220.87%22/%3E%3Ccircle cx=%22299.5%22 cy=%22249.7%22 r=%220.94%22 fill=%22%23ffffff%22 opacity=%220.87%22/%3E%3Ccircle cx=%2241.3%22 cy=%2222.7%22 r=%221.48%22 fill=%22%23ffffff%22 opacity=%220.91%22/%3E%3Ccircle cx=%22118.7%22 cy=%22133.1%22 r=%220.69%22 fill=%22%23ffffff%22 opacity=%220.71%22/%3E%3Ccircle cx=%22216.9%22 cy=%22275.3%22 r=%222.29%22 fill=%22%23ffffff%22 opacity=%220.94%22/%3E%3Ccircle cx=%2211.0%22 cy=%22251.7%22 r=%221.94%22 fill=%22%23ffffff%22 opacity=%220.95%22/%3E%3Ccircle cx=%22107.4%22 cy=%227.3%22 r=%221.79%22 fill=%22%23ffffff%22 opacity=%220.80%22/%3E%3Ccircle cx=%2247.4%22 cy=%22144.3%22 r=%222.20%22 fill=%22%23ffffff%22 opacity=%220.75%22/%3E%3Ccircle cx=%22252.1%22 cy=%22202.1%22 r=%221.96%22 fill=%22%23bcd2ff%22 opacity=%220.77%22/%3E%3Ccircle cx=%22297.9%22 cy=%22131.3%22 r=%221.80%22 fill=%22%23ffffff%22 opacity=%220.90%22/%3E%3Ccircle cx=%2280.0%22 cy=%22235.4%22 r=%221.28%22 fill=%22%23ffffff%22 opacity=%220.98%22/%3E%3Ccircle cx=%22283.8%22 cy=%22151.7%22 r=%221.02%22 fill=%22%23ffffff%22 opacity=%220.81%22/%3E%3Ccircle cx=%2246.0%22 cy=%22194.1%22 r=%222.61%22 fill=%22%23bcd2ff%22 opacity=%220.79%22/%3E%3Ccircle cx=%22209.8%22 cy=%2232.7%22 r=%222.85%22 fill=%22%23ffffff%22 opacity=%220.84%22/%3E%3C/svg%3E") repeat; background-size:300px 300px;
  /* slow seamless diagonal drift (one full 300px tile per cycle = invisible loop)
     + a gentle twinkle that never fades the stars fully out */
  animation:rp-space-drift 150s linear infinite, rp-twinkle 5.5s ease-in-out infinite;
}
@keyframes rp-space-drift { from { background-position:0 0; } to { background-position:300px -300px; } }
@keyframes rp-twinkle { 0%,100% { opacity:0.6; } 50% { opacity:1; } }
body:has(.rp-game)::after { content:none; display:none; }

/* Gradient RGB — tight repeating rainbow bands scrolling. The 60deg gradient
   has a 182px period ALONG its axis, so to loop seamlessly we shift background-
   position by exactly one period in the gradient direction: 182*(sin60,-cos60)
   = (157.62, -91). A plain horizontal 182px shift leaves a visible seam. */
[data-bg-theme="rgb"] body::before {
  background: repeating-linear-gradient(60deg,#ff0040 0,#ff8c00 26px,#ffe600 52px,#00d44a 78px,#00b4ff 104px,#7a2cff 130px,#ff00a8 156px,#ff0040 182px);
  opacity:0.5; animation:rp-bg-rgb 7s linear infinite;
}
@keyframes rp-bg-rgb { from { background-position:0 0; } to { background-position:157.62px -91px; } }

/* twirlblack — spinning black & white Archimedean spiral (reversed, thin lines) */
[data-bg-theme="twirlblack"] body { background:#fff; }
[data-bg-theme="twirlblack"] body::before {
  left:50%; top:50%; right:auto; bottom:auto; width:300vmax; height:300vmax; transform:translate(-50%,-50%);
  background:url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%221000%22 height=%221000%22 viewBox=%220 0 1000 1000%22%3E%3Crect width=%221000%22 height=%221000%22 fill=%22%23fff%22/%3E%3Cpolyline points=%22500.0,500.0 500.1,500.0 500.2,500.0 500.3,500.0 500.4,500.1 500.4,500.1 500.5,500.1 500.6,500.2 500.7,500.2 500.8,500.3 500.8,500.4 500.9,500.4 501.0,500.5 501.0,500.6 501.1,500.7 501.1,500.8 501.2,500.9 501.2,501.0 501.2,501.1 501.2,501.2 501.3,501.3 501.3,501.4 501.3,501.5 501.3,501.6 501.2,501.8 501.2,501.9 501.2,502.0 501.1,502.1 501.1,502.3 501.0,502.4 501.0,502.5 500.9,502.6 500.8,502.8 500.7,502.9 500.6,503.0 500.5,503.1 500.4,503.2 500.3,503.3 500.2,503.4 500.0,503.5 499.9,503.6 499.7,503.7 499.6,503.8 499.4,503.8 499.3,503.9 499.1,503.9 498.9,504.0 498.7,504.0 498.5,504.1 498.3,504.1 498.1,504.1 497.9,504.1 497.7,504.1 497.5,504.1 497.3,504.0 497.1,504.0 496.9,504.0 496.7,503.9 496.4,503.8 496.2,503.7 496.0,503.6 495.8,503.5 495.6,503.4 495.4,503.3 495.2,503.2 495.0,503.0 494.8,502.9 494.6,502.7 494.4,502.5 494.2,502.3 494.1,502.1 493.9,501.9 493.7,501.7 493.6,501.4 493.4,501.2 493.3,501.0 493.2,500.7 493.1,500.4 493.0,500.2 492.9,499.9 492.8,499.6 492.7,499.3 492.7,499.0 492.6,498.7 492.6,498.4 492.6,498.0 492.6,497.7 492.6,497.4 492.6,497.1 492.7,496.7 492.7,496.4 492.8,496.1 492.9,495.8 493.0,495.4 493.1,495.1 493.2,494.8 493.4,494.4 493.5,494.1 493.7,493.8 493.9,493.5 494.1,493.2 494.3,492.9 494.6,492.6 494.8,492.3 495.1,492.0 495.4,491.8 495.7,491.5 496.0,491.3 496.3,491.0 496.6,490.8 497.0,490.6 497.3,490.4 497.7,490.2 498.1,490.0 498.4,489.9 498.8,489.7 499.2,489.6 499.7,489.5 500.1,489.4 500.5,489.3 500.9,489.2 501.4,489.2 501.8,489.2 502.3,489.2 502.7,489.2 503.2,489.2 503.6,489.3 504.1,489.3 504.6,489.4 505.0,489.5 505.5,489.7 505.9,489.8 506.4,490.0 506.8,490.2 507.3,490.4 507.7,490.6 508.1,490.9 508.6,491.1 509.0,491.4 509.4,491.7 509.8,492.0 510.2,492.4 510.5,492.8 510.9,493.1 511.2,493.5 511.6,493.9 511.9,494.4 512.2,494.8 512.5,495.3 512.7,495.7 513.0,496.2 513.2,496.7 513.4,497.2 513.6,497.8 513.8,498.3 513.9,498.8 514.0,499.4 514.1,500.0 514.2,500.5 514.3,501.1 514.3,501.7 514.3,502.3 514.3,502.9 514.3,503.4 514.2,504.0 514.1,504.6 514.0,505.2 513.9,505.8 513.7,506.4 513.5,507.0 513.3,507.6 513.1,508.1 512.8,508.7 512.5,509.3 512.2,509.8 511.9,510.3 511.5,510.9 511.1,511.4 510.7,511.9 510.3,512.4 509.9,512.9 509.4,513.3 508.9,513.8 508.4,514.2 507.9,514.6 507.3,515.0 506.7,515.3 506.1,515.7 505.5,516.0 504.9,516.3 504.3,516.6 503.7,516.8 503.0,517.0 502.3,517.2 501.6,517.4 500.9,517.5 500.2,517.6 499.5,517.7 498.8,517.8 498.1,517.8 497.4,517.8 496.7,517.8 495.9,517.7 495.2,517.6 494.5,517.5 493.7,517.4 493.0,517.2 492.3,517.0 491.6,516.7 490.9,516.5 490.2,516.2 489.5,515.8 488.8,515.5 488.2,515.1 487.5,514.7 486.9,514.2 486.2,513.7 485.6,513.2 485.1,512.7 484.5,512.2 483.9,511.6 483.4,511.0 482.9,510.4 482.4,509.7 482.0,509.0 481.5,508.3 481.1,507.6 480.8,506.9 480.4,506.2 480.1,505.4 479.8,504.6 479.6,503.8 479.3,503.0 479.1,502.2 479.0,501.4 478.9,500.5 478.8,499.7 478.7,498.8 478.7,498.0 478.7,497.1 478.7,496.2 478.8,495.4 478.9,494.5 479.1,493.6 479.3,492.8 479.5,491.9 479.7,491.1 480.0,490.2 480.4,489.4 480.7,488.6 481.1,487.8 481.6,487.0 482.0,486.2 482.5,485.4 483.0,484.7 483.6,483.9 484.2,483.2 484.8,482.5 485.5,481.9 486.2,481.2 486.9,480.6 487.6,480.0 488.4,479.5 489.2,479.0 490.0,478.5 490.8,478.0 491.7,477.6 492.5,477.2 493.4,476.8 494.3,476.5 495.3,476.2 496.2,475.9 497.2,475.7 498.1,475.5 499.1,475.4 500.1,475.3 501.1,475.2 502.1,475.2 503.1,475.2 504.1,475.2 505.1,475.3 506.1,475.5 507.1,475.6 508.1,475.9 509.1,476.1 510.1,476.4 511.1,476.8 512.0,477.1 513.0,477.6 513.9,478.0 514.8,478.5 515.7,479.1 516.6,479.6 517.5,480.3 518.3,480.9 519.1,481.6 519.9,482.3 520.7,483.1 521.4,483.8 522.1,484.7 522.8,485.5 523.4,486.4 524.0,487.3 524.6,488.2 525.1,489.2 525.6,490.2 526.1,491.2 526.5,492.2 526.9,493.2 527.2,494.3 527.5,495.4 527.8,496.5 528.0,497.6 528.1,498.7 528.3,499.8 528.3,501.0 528.4,502.1 528.3,503.2 528.3,504.4 528.2,505.5 528.0,506.7 527.8,507.8 527.6,508.9 527.3,510.1 526.9,511.2 526.5,512.3 526.1,513.4 525.6,514.5 525.1,515.5 524.5,516.6 523.9,517.6 523.3,518.6 522.6,519.6 521.9,520.5 521.1,521.4 520.3,522.3 519.4,523.2 518.5,524.0 517.6,524.8 516.6,525.6 515.7,526.3 514.6,527.0 513.6,527.6 512.5,528.2 511.4,528.8 510.3,529.3 509.1,529.8 507.9,530.2 506.7,530.6 505.5,530.9 504.3,531.2 503.1,531.4 501.8,531.6 500.5,531.8 499.3,531.9 498.0,531.9 496.7,531.9 495.4,531.8 494.1,531.7 492.9,531.5 491.6,531.3 490.3,531.0 489.0,530.7 487.8,530.3 486.6,529.9 485.3,529.4 484.1,528.9 482.9,528.3 481.8,527.7 480.6,527.0 479.5,526.2 478.4,525.5 477.4,524.7 476.3,523.8 475.3,522.9 474.4,521.9 473.4,521.0 472.5,519.9 471.7,518.9 470.9,517.8 470.1,516.6 469.4,515.5 468.7,514.3 468.1,513.0 467.5,511.8 467.0,510.5 466.5,509.2 466.1,507.9 465.7,506.5 465.4,505.2 465.1,503.8 464.9,502.4 464.7,501.0 464.6,499.6 464.6,498.2 464.6,496.7 464.7,495.3 464.8,493.9 465.0,492.5 465.2,491.0 465.5,489.6 465.9,488.2 466.3,486.8 466.8,485.5 467.3,484.1 467.9,482.8 468.5,481.5 469.2,480.2 469.9,478.9 470.7,477.7 471.6,476.5 472.5,475.3 473.4,474.1 474.4,473.0 475.5,472.0 476.6,470.9 477.7,469.9 478.8,469.0 480.1,468.1 481.3,467.3 482.6,466.4 483.9,465.7 485.3,465.0 486.6,464.4 488.0,463.8 489.5,463.2 490.9,462.7 492.4,462.3 493.9,462.0 495.4,461.7 497.0,461.4 498.5,461.2 500.0,461.1 501.6,461.1 503.2,461.1 504.7,461.1 506.3,461.3 507.9,461.5 509.4,461.7 511.0,462.0 512.5,462.4 514.0,462.9 515.5,463.4 517.0,463.9 518.5,464.6 519.9,465.3 521.4,466.0 522.8,466.8 524.1,467.7 525.4,468.6 526.7,469.6 528.0,470.6 529.2,471.7 530.4,472.8 531.5,474.0 532.6,475.2 533.6,476.5 534.6,477.8 535.6,479.2 536.5,480.6 537.3,482.0 538.1,483.5 538.8,485.0 539.4,486.5 540.0,488.1 540.6,489.7 541.0,491.3 541.4,492.9 541.8,494.6 542.0,496.2 542.2,497.9 542.4,499.6 542.5,501.3 542.5,503.0 542.4,504.7 542.3,506.4 542.1,508.1 541.8,509.8 541.5,511.5 541.0,513.2 540.6,514.8 540.0,516.5 539.4,518.1 538.7,519.7 538.0,521.3 537.2,522.8 536.3,524.4 535.4,525.8 534.4,527.3 533.4,528.7 532.3,530.1 531.1,531.4 529.9,532.7 528.6,533.9 527.3,535.1 525.9,536.2 524.5,537.3 523.0,538.4 521.5,539.3 520.0,540.2 518.4,541.1 516.7,541.9 515.1,542.6 513.4,543.2 511.7,543.8 509.9,544.4 508.2,544.8 506.4,545.2 504.6,545.5 502.8,545.7 500.9,545.9 499.1,546.0 497.3,546.0 495.4,545.9 493.6,545.8 491.7,545.6 489.9,545.3 488.1,545.0 486.2,544.5 484.4,544.0 482.7,543.5 480.9,542.8 479.2,542.1 477.4,541.3 475.8,540.5 474.1,539.5 472.5,538.5 470.9,537.5 469.4,536.4 467.9,535.2 466.5,533.9 465.1,532.6 463.7,531.3 462.4,529.8 461.2,528.4 460.0,526.8 458.9,525.3 457.8,523.6 456.9,522.0 455.9,520.3 455.1,518.5 454.3,516.7 453.6,514.9 452.9,513.1 452.3,511.2 451.8,509.3 451.4,507.4 451.1,505.5 450.8,503.5 450.6,501.5 450.5,499.6 450.5,497.6 450.5,495.6 450.6,493.6 450.8,491.6 451.1,489.6 451.5,487.7 451.9,485.7 452.5,483.8 453.1,481.9 453.8,480.0 454.5,478.1 455.3,476.2 456.3,474.4 457.2,472.7 458.3,470.9 459.4,469.2 460.6,467.6 461.9,466.0 463.2,464.4 464.6,462.9 466.0,461.4 467.6,460.0 469.1,458.7 470.7,457.4 472.4,456.2 474.2,455.1 475.9,454.0 477.8,453.0 479.6,452.0 481.5,451.2 483.5,450.4 485.4,449.7 487.4,449.1 489.5,448.5 491.5,448.0 493.6,447.7 495.7,447.3 497.8,447.1 499.9,447.0 502.0,446.9 504.1,447.0 506.3,447.1 508.4,447.3 510.5,447.6 512.6,448.0 514.7,448.4 516.8,449.0 518.9,449.6 520.9,450.3 522.9,451.1 524.9,452.0 526.8,452.9 528.7,454.0 530.6,455.1 532.4,456.3 534.2,457.5 535.9,458.9 537.6,460.3 539.2,461.7 540.8,463.3 542.3,464.9 543.8,466.5 545.1,468.3 546.4,470.1 547.7,471.9 548.8,473.8 549.9,475.7 550.9,477.7 551.9,479.7 552.7,481.8 553.5,483.9 554.2,486.0 554.8,488.2 555.3,490.3 555.8,492.6 556.1,494.8 556.4,497.0 556.5,499.3 556.6,501.5 556.6,503.8 556.5,506.1 556.3,508.3 556.0,510.6 555.6,512.9 555.1,515.1 554.6,517.3 553.9,519.5 553.2,521.7 552.3,523.8 551.4,525.9 550.4,528.0 549.3,530.1 548.2,532.1 546.9,534.0 545.6,535.9 544.2,537.8 542.7,539.6 541.2,541.3 539.5,543.0 537.8,544.6 536.1,546.2 534.3,547.6 532.4,549.0 530.4,550.4 528.4,551.6 526.4,552.8 524.3,553.9 522.2,554.9 520.0,555.8 517.8,556.7 515.5,557.4 513.2,558.1 510.9,558.7 508.5,559.1 506.2,559.5 503.8,559.8 501.4,560.0 499.0,560.1 496.6,560.1 494.2,560.0 491.8,559.8 489.4,559.5 487.0,559.2 484.6,558.7 482.3,558.1 479.9,557.4 477.6,556.7 475.3,555.8 473.1,554.9 470.8,553.8 468.7,552.7 466.5,551.5 464.5,550.2 462.4,548.8 460.5,547.3 458.5,545.7 456.7,544.1 454.9,542.4 453.1,540.6 451.5,538.8 449.9,536.9 448.4,534.9 447.0,532.8 445.6,530.7 444.4,528.6 443.2,526.4 442.1,524.1 441.1,521.8 440.2,519.5 439.4,517.1 438.6,514.6 438.0,512.2 437.5,509.7 437.1,507.2 436.7,504.7 436.5,502.2 436.4,499.6 436.3,497.1 436.4,494.5 436.6,492.0 436.9,489.4 437.3,486.9 437.8,484.4 438.3,481.9 439.0,479.4 439.8,477.0 440.7,474.5 441.7,472.1 442.8,469.8 443.9,467.5 445.2,465.2 446.6,463.0 448.0,460.8 449.6,458.7 451.2,456.7 452.9,454.7 454.7,452.8 456.5,451.0 458.5,449.2 460.5,447.5 462.6,445.9 464.7,444.4 466.9,442.9 469.2,441.6 471.5,440.3 473.9,439.1 476.3,438.0 478.8,437.1 481.3,436.2 483.8,435.4 486.4,434.7 489.0,434.1 491.7,433.7 494.3,433.3 497.0,433.0 499.7,432.9 502.3,432.8 505.0,432.9 507.7,433.0 510.4,433.3 513.1,433.7 515.8,434.2 518.4,434.8 521.0,435.5 523.6,436.3 526.2,437.2 528.7,438.2 531.2,439.3 533.6,440.5 536.0,441.9 538.4,443.3 540.7,444.8 542.9,446.4 545.1,448.1 547.2,449.9 549.2,451.7 551.2,453.7 553.0,455.7 554.8,457.8 556.6,460.0 558.2,462.2 559.7,464.5 561.2,466.9 562.5,469.3 563.8,471.8 565.0,474.4 566.0,476.9 567.0,479.6 567.8,482.3 568.6,485.0 569.2,487.7 569.7,490.5 570.1,493.3 570.4,496.1 570.6,498.9 570.7,501.7 570.7,504.5 570.5,507.4 570.3,510.2 569.9,513.0 569.4,515.8 568.8,518.6 568.1,521.4 567.3,524.1 566.3,526.8 565.3,529.5 564.1,532.1 562.9,534.7 561.5,537.2 560.1,539.7 558.5,542.1 556.8,544.5 555.1,546.8 553.2,549.0 551.3,551.2 549.3,553.2 547.2,555.2 545.0,557.1 542.7,559.0 540.4,560.7 537.9,562.4 535.5,563.9 532.9,565.3 530.3,566.7 527.7,567.9 525.0,569.1 522.2,570.1 519.4,571.0 516.6,571.8 513.7,572.5 510.8,573.1 507.9,573.6 504.9,573.9 502.0,574.1 499.0,574.2 496.0,574.2 493.1,574.1 490.1,573.9 487.1,573.5 484.2,573.0 481.3,572.4 478.4,571.7 475.5,570.8 472.6,569.9 469.8,568.8 467.1,567.6 464.3,566.3 461.7,564.9 459.0,563.4 456.5,561.8 454.0,560.1 451.6,558.3 449.2,556.4 446.9,554.4 444.7,552.3 442.6,550.1 440.6,547.8 438.7,545.4 436.8,543.0 435.1,540.5 433.4,537.9 431.9,535.2 430.5,532.5 429.1,529.8 427.9,526.9 426.8,524.1 425.8,521.1 424.9,518.2 424.2,515.2 423.6,512.1 423.0,509.1 422.7,506.0 422.4,502.9 422.2,499.8 422.2,496.7 422.3,493.6 422.6,490.5 422.9,487.4 423.4,484.3 424.0,481.2 424.7,478.1 425.6,475.1 426.5,472.1 427.6,469.2 428.8,466.3 430.2,463.4 431.6,460.6 433.2,457.9 434.8,455.2 436.6,452.5 438.5,450.0 440.5,447.5 442.5,445.1 444.7,442.8 447.0,440.6 449.3,438.4 451.8,436.4 454.3,434.4 456.9,432.6 459.6,430.8 462.4,429.2 465.2,427.7 468.1,426.2 471.0,424.9 474.0,423.8 477.1,422.7 480.2,421.7 483.3,420.9 486.4,420.2 489.6,419.7 492.8,419.2 496.1,418.9 499.3,418.7 502.6,418.7 505.8,418.8 509.1,419.0 512.3,419.3 515.6,419.8 518.8,420.4 522.0,421.1 525.1,422.0 528.3,422.9 531.4,424.1 534.4,425.3 537.4,426.6 540.4,428.1 543.3,429.7 546.1,431.4 548.8,433.3 551.5,435.2 554.1,437.2 556.7,439.4 559.1,441.6 561.5,444.0 563.7,446.4 565.9,449.0 567.9,451.6 569.9,454.3 571.8,457.1 573.5,459.9 575.1,462.9 576.6,465.9 578.0,468.9 579.3,472.0 580.4,475.2 581.4,478.4 582.3,481.7 583.1,485.0 583.7,488.3 584.2,491.6 584.5,495.0 584.8,498.4 584.9,501.8 584.8,505.2 584.6,508.6 584.3,512.0 583.8,515.3 583.2,518.7 582.5,522.0 581.7,525.3 580.7,528.6 579.5,531.9 578.3,535.0 576.9,538.2 575.4,541.3 573.8,544.3 572.0,547.3 570.1,550.2 568.1,553.0 566.0,555.7 563.8,558.4 561.5,560.9 559.1,563.4 556.5,565.8 553.9,568.1 551.2,570.3 548.4,572.3 545.5,574.3 542.6,576.1 539.5,577.8 536.4,579.4 533.3,580.9 530.0,582.3 526.7,583.5 523.4,584.6 520.0,585.5 516.6,586.3 513.1,587.0 509.7,587.6 506.2,588.0 502.6,588.3 499.1,588.4 495.6,588.4 492.0,588.2 488.5,587.9 485.0,587.5 481.5,586.9 478.0,586.2 474.5,585.3 471.1,584.3 467.7,583.2 464.4,581.9 461.1,580.5 457.9,578.9 454.7,577.3 451.6,575.5 448.6,573.5 445.6,571.5 442.8,569.3 440.0,567.1 437.3,564.7 434.7,562.2 432.2,559.6 429.8,556.9 427.5,554.1 425.3,551.2 423.2,548.2 421.3,545.1 419.5,542.0 417.8,538.8 416.2,535.5 414.8,532.1 413.5,528.7 412.3,525.3 411.3,521.8 410.4,518.2 409.6,514.6 409.0,511.0 408.6,507.4 408.3,503.7 408.1,500.1 408.1,496.4 408.2,492.7 408.5,489.0 408.9,485.4 409.5,481.7 410.2,478.1 411.1,474.5 412.1,470.9 413.2,467.4 414.5,463.9 415.9,460.5 417.5,457.1 419.2,453.8 421.0,450.6 423.0,447.4 425.1,444.3 427.3,441.3 429.7,438.4 432.1,435.6 434.7,432.8 437.4,430.2 440.1,427.7 443.0,425.3 446.0,423.0 449.1,420.8 452.2,418.8 455.5,416.8 458.8,415.1 462.2,413.4 465.7,411.9 469.2,410.5 472.8,409.2 476.4,408.1 480.1,407.2 483.8,406.4 487.5,405.7 491.3,405.2 495.1,404.8 498.9,404.6 502.7,404.5 506.5,404.6 510.4,404.9 514.2,405.3 518.0,405.8 521.7,406.6 525.5,407.4 529.2,408.4 532.9,409.6 536.5,410.9 540.1,412.3 543.6,413.9 547.0,415.6 550.4,417.5 553.7,419.5 556.9,421.7 560.1,423.9 563.1,426.3 566.1,428.8 568.9,431.5 571.7,434.2 574.3,437.1 576.9,440.1 579.3,443.1 581.6,446.3 583.7,449.6 585.7,452.9 587.6,456.3 589.4,459.8 591.0,463.4 592.5,467.0 593.8,470.7 595.0,474.5 596.0,478.3 596.9,482.1 597.6,486.0 598.2,489.9 598.6,493.8 598.9,497.8 599.0,501.8 598.9,505.7 598.7,509.7 598.3,513.6 597.8,517.6 597.1,521.5 596.3,525.4 595.2,529.2 594.1,533.0 592.8,536.8 591.3,540.5 589.7,544.2 587.9,547.8 586.0,551.3 584.0,554.8 581.8,558.1 579.5,561.4 577.0,564.6 574.5,567.7 571.8,570.7 568.9,573.5 566.0,576.3 563.0,579.0 559.8,581.5 556.5,583.9 553.2,586.2 549.7,588.3 546.2,590.3 542.6,592.1 538.9,593.9 535.2,595.4 531.4,596.8 527.5,598.1 523.6,599.2 519.6,600.2 515.6,601.0 511.5,601.6 507.5,602.1 503.4,602.4 499.3,602.5 495.2,602.5 491.1,602.3 487.0,602.0 482.9,601.4 478.8,600.8 474.8,599.9 470.8,598.9 466.9,597.8 462.9,596.4 459.1,595.0 455.3,593.3 451.5,591.6 447.9,589.6 444.3,587.5 440.8,585.3 437.3,582.9 434.0,580.4 430.8,577.8 427.7,575.0 424.7,572.2 421.8,569.1 419.0,566.0 416.4,562.8 413.8,559.4 411.5,556.0 409.2,552.5 407.1,548.8 405.1,545.1 403.3,541.3 401.7,537.4 400.2,533.5 398.8,529.5 397.6,525.5 396.6,521.4 395.8,517.2 395.1,513.1 394.5,508.9 394.2,504.6 394.0,500.4 394.0,496.2 394.1,491.9 394.4,487.7 394.9,483.5 395.6,479.3 396.4,475.1 397.4,470.9 398.5,466.8 399.9,462.8 401.4,458.7 403.0,454.8 404.8,450.9 406.8,447.1 408.9,443.4 411.1,439.7 413.6,436.2 416.1,432.7 418.8,429.3 421.6,426.1 424.6,422.9 427.7,419.9 430.9,417.0 434.2,414.3 437.6,411.6 441.1,409.1 444.8,406.8 448.5,404.6 452.3,402.5 456.2,400.6 460.2,398.8 464.3,397.2 468.4,395.8 472.5,394.5 476.8,393.4 481.0,392.5 485.3,391.7 489.7,391.1 494.0,390.7 498.4,390.5 502.8,390.4 507.2,390.5 511.5,390.8 515.9,391.3 520.3,391.9 524.6,392.7 528.9,393.7 533.1,394.8 537.3,396.2 541.5,397.7 545.6,399.3 549.6,401.1 553.6,403.1 557.5,405.3 561.3,407.6 565.0,410.0 568.6,412.6 572.1,415.4 575.4,418.3 578.7,421.3 581.9,424.4 584.9,427.7 587.8,431.1 590.5,434.6 593.2,438.2 595.6,442.0 598.0,445.8 600.1,449.7 602.1,453.7 604.0,457.8 605.7,462.0 607.2,466.2 608.6,470.5 609.7,474.8 610.7,479.2 611.6,483.7 612.2,488.1 612.7,492.6 613.0,497.1 613.1,501.6 613.1,506.2 612.8,510.7 612.4,515.2 611.8,519.7 611.0,524.2 610.0,528.6 608.9,533.0 607.5,537.4 606.0,541.7 604.4,545.9 602.5,550.1 600.5,554.2 598.4,558.2 596.0,562.2 593.5,566.0 590.9,569.7 588.1,573.4 585.2,576.9 582.1,580.3 578.9,583.6 575.5,586.8 572.0,589.8 568.5,592.7 564.7,595.4 560.9,598.0 557.0,600.4 553.0,602.7 548.9,604.8 544.7,606.8 540.4,608.6 536.1,610.2 531.6,611.6 527.2,612.9 522.7,614.0 518.1,614.9 513.5,615.6 508.9,616.1 504.2,616.5 499.6,616.6 494.9,616.6 490.2,616.4 485.6,616.0 480.9,615.4 476.3,614.7 471.7,613.7 467.2,612.6 462.7,611.3 458.2,609.8 453.8,608.1 449.5,606.2 445.3,604.2 441.1,602.0 437.0,599.7 433.0,597.1 429.1,594.4 425.4,591.6 421.7,588.6 418.1,585.5 414.7,582.2 411.4,578.8 408.3,575.2 405.3,571.6 402.4,567.8 399.7,563.9 397.2,559.8 394.8,555.7 392.6,551.5 390.5,547.2 388.6,542.8 386.9,538.4 385.4,533.8 384.0,529.3 382.9,524.6 381.9,519.9 381.1,515.2 380.5,510.4 380.1,505.6 379.9,500.9 379.8,496.0 380.0,491.2 380.3,486.4 380.9,481.6 381.6,476.9 382.6,472.1 383.7,467.4 385.0,462.8 386.5,458.2 388.2,453.7 390.0,449.2 392.1,444.8 394.3,440.5 396.7,436.2 399.2,432.1 402.0,428.1 404.8,424.2 407.9,420.4 411.1,416.7 414.4,413.1 417.9,409.7 421.5,406.4 425.3,403.3 429.1,400.3 433.1,397.5 437.2,394.8 441.5,392.3 445.8,390.0 450.2,387.8 454.7,385.8 459.2,384.0 463.9,382.4 468.6,381.0 473.4,379.7 478.2,378.6 483.0,377.8 487.9,377.1 492.9,376.6 497.8,376.4 502.7,376.3 507.7,376.4 512.6,376.7 517.6,377.2 522.5,377.9 527.4,378.9 532.2,380.0 537.0,381.3 541.8,382.7 546.4,384.4 551.1,386.3 555.6,388.3 560.1,390.6 564.5,393.0 568.7,395.6 572.9,398.3 577.0,401.3 580.9,404.4 584.7,407.6 588.4,411.0 592.0,414.5 595.4,418.2 598.7,422.1 601.8,426.0 604.7,430.1 607.5,434.3 610.1,438.6 612.6,443.0 614.8,447.5 616.9,452.1 618.8,456.8 620.6,461.6 622.1,466.4 623.4,471.3 624.6,476.2 625.5,481.2 626.2,486.2 626.8,491.3 627.1,496.4 627.3,501.4 627.2,506.5 626.9,511.6 626.4,516.7 625.8,521.8 624.9,526.8 623.8,531.8 622.5,536.7 621.0,541.6 619.3,546.5 617.5,551.2 615.4,555.9 613.2,560.6 610.7,565.1 608.1,569.5 605.3,573.8 602.4,578.0 599.2,582.1 595.9,586.1 592.5,589.9 588.9,593.6 585.1,597.1 581.2,600.5 577.2,603.8 573.0,606.9 568.7,609.8 564.3,612.5 559.8,615.1 555.2,617.4 550.5,619.6 545.7,621.7 540.8,623.5 535.9,625.1 530.9,626.5 525.8,627.7 520.7,628.8 515.6,629.6 510.4,630.2 505.2,630.6 499.9,630.8 494.7,630.8 489.5,630.5 484.2,630.1 479.0,629.4 473.9,628.6 468.7,627.5 463.6,626.3 458.6,624.8 453.6,623.1 448.7,621.2 443.8,619.2 439.1,616.9 434.4,614.5 429.8,611.8 425.3,609.0 421.0,606.0 416.8,602.8 412.7,599.5 408.7,596.0 404.9,592.3 401.2,588.5 397.6,584.5 394.3,580.4 391.1,576.2 388.0,571.8 385.2,567.3 382.5,562.7 380.0,558.0 377.7,553.2 375.6,548.3 373.7,543.3 371.9,538.3 370.4,533.1 369.1,527.9 368.0,522.7 367.1,517.4 366.4,512.1 366.0,506.7 365.7,501.4 365.7,496.0 365.9,490.6 366.3,485.3 366.9,479.9 367.7,474.6 368.7,469.3 370.0,464.0 371.4,458.9 373.1,453.7 375.0,448.6 377.0,443.6 379.3,438.7 381.8,433.9 384.4,429.2 387.3,424.6 390.3,420.1 393.5,415.7 396.9,411.4 400.5,407.3 404.2,403.4 408.1,399.5 412.1,395.9 416.3,392.4 420.6,389.0 425.1,385.9 429.6,382.9 434.3,380.1 439.1,377.5 444.0,375.1 449.1,372.8 454.2,370.8 459.3,369.0 464.6,367.4 469.9,366.0 475.3,364.8 480.7,363.8 486.1,363.1 491.6,362.6 497.1,362.2 502.6,362.1 508.1,362.3 513.6,362.6 519.1,363.2 524.6,364.0 530.0,365.0 535.4,366.2 540.8,367.6 546.1,369.3 551.3,371.1 556.5,373.2 561.5,375.5 566.5,378.0 571.4,380.7 576.1,383.5 580.8,386.6 585.3,389.8 589.7,393.3 594.0,396.9 598.1,400.7 602.0,404.6 605.8,408.7 609.5,412.9 612.9,417.3 616.2,421.9 619.3,426.5 622.2,431.3 625.0,436.2 627.5,441.2 629.8,446.3 632.0,451.6 633.9,456.8 635.6,462.2 637.1,467.6 638.4,473.1 639.4,478.7 640.2,484.2 640.8,489.9 641.2,495.5 641.4,501.2 641.3,506.8 641.0,512.5 640.5,518.1 639.8,523.7 638.8,529.3 637.6,534.9 636.2,540.4 634.5,545.8 632.7,551.2 630.6,556.5 628.3,561.7 625.8,566.8 623.1,571.8 620.2,576.8 617.1,581.6 613.9,586.2 610.4,590.8 606.7,595.2 602.9,599.4 598.9,603.5 594.8,607.5 590.4,611.2 586.0,614.8 581.4,618.3 576.6,621.5 571.7,624.5 566.8,627.4 561.6,630.0 556.4,632.5 551.1,634.7 545.7,636.7 540.2,638.5 534.7,640.1 529.1,641.5 523.4,642.6 517.7,643.5 511.9,644.2 506.2,644.7 500.4,644.9 494.6,644.9 488.8,644.6 483.0,644.2 477.2,643.5 471.5,642.5 465.8,641.4 460.2,640.0 454.6,638.3 449.0,636.5 443.6,634.4 438.2,632.2 432.9,629.7 427.8,627.0 422.7,624.0 417.7,620.9 412.9,617.6 408.2,614.1 403.7,610.4 399.3,606.5 395.0,602.5 391.0,598.3 387.0,593.9 383.3,589.3 379.8,584.7 376.4,579.8 373.2,574.9 370.2,569.8 367.5,564.6 364.9,559.3 362.6,553.8 360.4,548.3 358.5,542.7 356.9,537.1 355.4,531.3 354.2,525.6 353.2,519.7 352.4,513.8 351.9,507.9 351.6,502.0 351.6,496.1 351.7,490.1 352.2,484.2 352.8,478.3 353.7,472.4 354.9,466.5 356.2,460.7 357.8,455.0 359.7,449.3 361.7,443.7 364.0,438.2 366.5,432.8 369.2,427.4 372.1,422.2 375.3,417.1 378.6,412.1 382.2,407.3 385.9,402.6 389.8,398.1 393.9,393.7 398.2,389.4 402.6,385.4 407.2,381.5 412.0,377.8 416.9,374.3 421.9,371.0 427.1,367.9 432.4,365.0 437.8,362.4 443.4,359.9 449.0,357.7 454.7,355.7 460.5,353.9 466.3,352.3 472.2,351.0 478.2,349.9 484.2,349.1 490.3,348.5 496.3,348.1 502.4,348.0 508.5,348.1 514.6,348.5 520.6,349.1 526.6,350.0 532.6,351.1 538.6,352.4 544.5,354.0 550.3,355.8 556.1,357.8 561.8,360.1 567.3,362.6 572.8,365.3 578.2,368.3 583.5,371.4 588.6,374.8 593.6,378.4 598.4,382.1 603.1,386.1 607.6,390.3 612.0,394.6 616.2,399.1 620.2,403.8 624.0,408.6 627.7,413.6 631.1,418.7 634.3,424.0 637.3,429.4 640.1,434.9 642.7,440.5 645.1,446.2 647.2,452.0 649.1,457.9 650.7,463.9 652.1,469.9 653.3,476.0 654.2,482.2 654.9,488.4 655.3,494.6 655.5,500.8 655.5,507.0 655.1,513.2 654.6,519.4 653.8,525.6 652.7,531.7 651.4,537.8 649.9,543.9 648.1,549.9 646.0,555.8 643.8,561.6 641.3,567.4 638.5,573.0 635.6,578.5 632.4,583.9 629.0,589.2 625.4,594.4 621.6,599.4 617.6,604.2 613.4,608.9 609.0,613.4 604.5,617.7 599.7,621.9 594.8,625.9 589.8,629.6 584.6,633.2 579.2,636.5 573.8,639.7 568.1,642.6 562.4,645.3 556.6,647.7 550.7,650.0 544.7,652.0 538.6,653.7 532.4,655.2 526.2,656.5 519.9,657.5 513.6,658.3 507.3,658.8 500.9,659.0 494.6,659.0 488.2,658.8 481.9,658.3 475.5,657.5 469.2,656.5 463.0,655.2 456.8,653.7 450.6,651.9 444.6,649.9 438.6,647.7 432.7,645.2 426.9,642.4 421.2,639.5 415.7,636.3 410.2,632.9 404.9,629.3 399.8,625.4 394.8,621.4 389.9,617.2 385.3,612.7 380.8,608.1 376.5,603.3 372.4,598.3 368.5,593.2 364.8,587.9 361.3,582.5 358.0,576.9 355.0,571.2 352.2,565.4 349.6,559.5 347.3,553.5 345.2,547.3 343.3,541.1 341.7,534.8 340.3,528.5 339.2,522.1 338.4,515.7 337.8,509.2 337.5,502.7 337.4,496.2 337.6,489.7 338.1,483.2 338.8,476.7 339.7,470.3 341.0,463.9 342.5,457.5 344.2,451.2 346.2,445.0 348.4,438.9 350.9,432.8 353.6,426.9 356.6,421.0 359.8,415.3 363.2,409.7 366.9,404.3 370.7,399.0 374.8,393.8 379.1,388.8 383.6,384.0 388.2,379.4 393.1,375.0 398.1,370.7 403.3,366.7 408.7,362.8 414.2,359.2 419.8,355.8 425.6,352.6 431.5,349.7 437.6,347.0 443.7,344.5 449.9,342.3 456.3,340.4 462.7,338.7 469.1,337.2 475.6,336.0 482.2,335.1 488.8,334.4 495.4,334.0 502.1,333.9 508.7,334.0 515.4,334.4 522.0,335.1 528.6,336.0 535.1,337.2 541.7,338.6 548.1,340.3 554.5,342.3 560.8,344.5 567.0,347.0 573.1,349.7 579.1,352.7 585.0,355.9 590.7,359.3 596.3,363.0 601.8,366.9 607.1,371.0 612.2,375.3 617.2,379.8 621.9,384.5 626.5,389.4 630.9,394.5 635.1,399.8 639.1,405.2 642.8,410.8 646.4,416.5 649.7,422.4 652.7,428.4 655.5,434.6 658.1,440.8 660.4,447.1 662.5,453.6 664.3,460.1 665.9,466.7 667.2,473.3 668.2,480.0 669.0,486.8 669.4,493.5 669.6,500.3 669.6,507.1 669.3,513.9 668.7,520.6 667.8,527.4 666.6,534.1 665.2,540.7 663.6,547.3 661.6,553.9 659.4,560.3 657.0,566.7 654.3,573.0 651.3,579.1 648.1,585.1 644.6,591.0 641.0,596.8 637.0,602.4 632.9,607.9 628.6,613.2 624.0,618.3 619.2,623.2 614.3,627.9 609.1,632.5 603.8,636.8 598.3,640.9 592.6,644.8 586.8,648.5 580.8,651.9 574.7,655.1 568.5,658.1 562.2,660.7 555.7,663.2 549.2,665.4 542.5,667.3 535.8,669.0 529.1,670.3 522.2,671.5 515.4,672.3 508.5,672.9 501.6,673.2 494.6,673.2 487.7,672.9 480.8,672.4 473.9,671.5 467.0,670.5 460.2,669.1 453.5,667.4 446.8,665.5 440.2,663.4 433.7,660.9 427.2,658.2 420.9,655.3 414.7,652.1 408.7,648.6 402.8,644.9 397.0,641.0 391.4,636.8 385.9,632.4 380.7,627.8 375.6,623.0 370.7,618.0 366.0,612.8 361.5,607.4 357.3,601.8 353.3,596.1 349.5,590.2 345.9,584.2 342.6,578.0 339.5,571.6 336.7,565.2 334.1,558.6 331.8,552.0 329.8,545.2 328.0,538.4 326.5,531.5 325.3,524.6 324.4,517.6 323.7,510.6 323.4,503.5 323.3,496.4 323.5,489.4 323.9,482.3 324.7,475.3 325.7,468.3 327.1,461.3 328.7,454.4 330.5,447.5 332.7,440.8 335.1,434.1 337.8,427.5 340.7,421.1 343.9,414.7 347.4,408.5 351.1,402.4 355.1,396.5 359.2,390.7 363.7,385.1 368.3,379.7 373.1,374.5 378.2,369.4 383.5,364.6 388.9,360.0 394.6,355.6 400.4,351.4 406.3,347.4 412.5,343.7 418.7,340.3 425.2,337.1 431.7,334.1 438.4,331.5 445.1,329.0 452.0,326.9 458.9,325.0 465.9,323.4 473.0,322.1 480.1,321.1 487.3,320.4 494.5,319.9 501.7,319.7 508.9,319.9 516.1,320.3 523.3,321.0 530.5,322.0 537.6,323.2 544.6,324.8 551.6,326.6 558.5,328.7 565.4,331.1 572.1,333.8 578.7,336.7 585.2,339.9 591.6,343.4 597.9,347.1 604.0,351.1 609.9,355.3 615.6,359.7 621.2,364.4 626.6,369.3 631.8,374.4 636.8,379.7 641.6,385.2 646.1,390.9 650.4,396.8 654.5,402.8 658.3,409.0 661.9,415.4 665.3,421.9 668.3,428.5 671.2,435.3 673.7,442.2 675.9,449.1 677.9,456.2 679.6,463.3 681.0,470.5 682.2,477.8 683.0,485.1 683.5,492.4 683.8,499.7 683.7,507.1 683.4,514.4 682.8,521.8 681.8,529.1 680.6,536.3 679.1,543.6 677.3,550.7 675.2,557.8 672.8,564.8 670.2,571.7 667.3,578.5 664.1,585.1 660.6,591.7 656.9,598.1 652.9,604.3 648.7,610.4 644.3,616.3 639.6,622.1 634.6,627.6 629.5,632.9 624.1,638.1 618.6,643.0 612.8,647.7 606.9,652.2 600.7,656.4 594.4,660.4 588.0,664.1 581.4,667.6 574.7,670.8 567.8,673.7 560.8,676.4 553.8,678.7 546.6,680.8 539.4,682.6 532.0,684.2 524.7,685.4 517.2,686.3 509.8,686.9 502.3,687.3 494.8,687.3 487.3,687.0 479.8,686.5 472.4,685.6 465.0,684.4 457.6,683.0 450.3,681.2 443.0,679.2 435.9,676.8 428.8,674.2 421.9,671.3 415.1,668.1 408.4,664.7 401.8,661.0 395.4,657.0 389.1,652.7 383.1,648.3 377.2,643.5 371.5,638.6 366.0,633.4 360.7,628.0 355.6,622.4 350.8,616.5 346.1,610.5 341.8,604.3 337.6,598.0 333.8,591.5 330.2,584.8 326.8,578.0 323.8,571.0 321.0,563.9 318.5,556.7 316.3,549.5 314.4,542.1 312.7,534.7 311.4,527.2 310.4,519.6 309.7,512.0 309.3,504.4 309.1,496.8 309.3,489.1 309.8,481.5 310.6,473.9 311.7,466.3 313.1,458.8 314.9,451.3 316.9,444.0 319.2,436.6 321.8,429.4 324.6,422.3 327.8,415.3 331.3,408.5 335.0,401.7 339.0,395.2 343.2,388.8 347.7,382.5 352.5,376.5 357.4,370.6 362.7,365.0 368.1,359.5 373.8,354.3 379.7,349.3 385.7,344.5 392.0,340.0 398.4,335.7 405.0,331.7 411.8,328.0 418.7,324.5 425.8,321.3 432.9,318.4 440.2,315.8 447.6,313.4 455.1,311.4 462.6,309.7 470.3,308.3 478.0,307.1 485.7,306.3 493.4,305.8 501.2,305.6 509.0,305.7 516.8,306.1 524.5,306.9 532.2,307.9 539.9,309.3 547.5,310.9 555.1,312.9 562.5,315.2 569.9,317.7 577.2,320.6 584.3,323.7 591.3,327.2 598.2,330.9 605.0,334.9 611.5,339.1 617.9,343.6 624.1,348.4 630.2,353.4 636.0,358.7 641.6,364.2 647.0,369.9 652.1,375.8 657.0,381.9 661.7,388.3 666.1,394.8 670.3,401.5 674.2,408.3 677.8,415.3 681.1,422.4 684.1,429.7 686.9,437.1 689.3,444.6 691.5,452.2 693.3,459.9 694.9,467.6 696.1,475.4 697.0,483.3 697.6,491.2 697.9,499.1 697.9,507.0 697.5,514.9 696.9,522.8 695.9,530.7 694.6,538.5 693.0,546.3 691.1,554.0 688.8,561.6 686.3,569.1 683.5,576.6 680.3,583.9 676.9,591.1 673.2,598.1 669.2,605.0 665.0,611.8 660.4,618.3 655.7,624.7 650.6,630.9 645.3,636.9 639.8,642.6 634.0,648.2 628.1,653.5 621.9,658.5 615.5,663.4 608.9,667.9 602.2,672.2 595.2,676.3 588.2,680.0 580.9,683.5 573.6,686.6 566.1,689.5 558.5,692.1 550.7,694.4 543.0,696.3 535.1,698.0 527.2,699.3 519.2,700.3 511.1,701.0 503.1,701.4 495.0,701.4 487.0,701.2 478.9,700.6 470.9,699.7 462.9,698.4 455.0,696.9 447.2,695.0 439.4,692.8 431.7,690.3 424.1,687.5 416.6,684.4 409.3,681.0 402.1,677.3 395.0,673.4 388.1,669.1 381.4,664.6 374.8,659.8 368.5,654.7 362.3,649.4 356.4,643.8 350.7,638.0 345.2,632.0 340.0,625.8 335.0,619.3 330.3,612.7 325.9,605.8 321.7,598.8 317.8,591.7 314.2,584.3 310.9,576.9 307.9,569.3 305.2,561.6 302.8,553.8 300.7,545.9 299.0,537.9 297.5,529.8 296.4,521.7 295.6,513.5 295.1,505.4 295.0,497.2 295.2,489.0 295.7,480.8 296.5,472.6 297.7,464.5 299.2,456.4 301.0,448.4 303.2,440.4 305.6,432.6 308.4,424.8 311.5,417.2 314.8,409.7 318.5,402.3 322.5,395.1 326.8,388.0 331.3,381.1 336.1,374.4 341.2,367.9 346.5,361.6 352.1,355.5 358.0,349.7 364.0,344.0 370.3,338.7 376.8,333.5 383.5,328.7 390.4,324.1 397.5,319.7 404.8,315.7 412.2,312.0 419.7,308.5 427.4,305.4 435.2,302.5 443.1,300.0 451.2,297.8 459.3,295.9 467.5,294.4 475.7,293.2 484.0,292.3 492.3,291.7 500.6,291.5 509.0,291.6 517.3,292.0 525.6,292.8 533.9,293.9 542.1,295.3 550.3,297.1 558.4,299.2 566.4,301.6 574.3,304.3 582.1,307.3 589.8,310.7 597.4,314.4 604.7,318.3 612.0,322.6 619.0,327.1 625.9,332.0 632.6,337.1 639.0,342.4 645.3,348.0 651.3,353.9 657.1,360.0 662.7,366.4 667.9,372.9 673.0,379.7 677.7,386.7 682.2,393.8 686.4,401.1 690.2,408.6 693.8,416.3 697.1,424.1 700.1,432.0 702.7,440.0 705.0,448.1 707.0,456.4 708.7,464.7 710.0,473.0 711.0,481.4 711.7,489.9 712.0,498.4 712.0,506.8 711.7,515.3 711.0,523.8 709.9,532.2 708.6,540.6 706.9,548.9 704.8,557.2 702.5,565.4 699.8,573.4 696.8,581.4 693.4,589.2 689.8,596.9 685.8,604.5 681.6,611.9 677.1,619.1 672.2,626.2 667.1,633.0 661.7,639.6 656.1,646.0 650.2,652.2 644.0,658.2 637.6,663.9 631.0,669.3 624.2,674.5 617.2,679.4 610.0,684.0 602.6,688.4 595.0,692.4 587.2,696.1 579.4,699.5 571.4,702.6 563.2,705.4 555.0,707.9 546.6,710.0 538.2,711.8 529.7,713.2 521.2,714.3 512.6,715.1 504.0,715.5 495.4,715.6 486.8,715.3 478.1,714.7 469.6,713.8 461.0,712.5 452.5,710.8 444.1,708.8 435.8,706.5 427.6,703.9 419.4,700.9 411.4,697.6 403.6,694.0 395.8,690.0 388.3,685.8 380.9,681.3 373.7,676.4 366.7,671.3 359.9,665.9 353.3,660.2 346.9,654.3 340.8,648.1 334.9,641.7 329.3,635.0 324.0,628.2 318.9,621.1 314.2,613.8 309.7,606.3 305.5,598.6 301.6,590.8 298.1,582.8 294.9,574.7 291.9,566.5 289.4,558.2 287.1,549.7 285.2,541.2 283.6,532.6 282.4,523.9 281.6,515.2 281.0,506.4 280.9,497.7 281.0,488.9 281.6,480.1 282.4,471.4 283.7,462.7 285.3,454.1 287.2,445.5 289.4,437.0 292.0,428.6 295.0,420.3 298.2,412.2 301.8,404.1 305.7,396.2 310.0,388.5 314.5,380.9 319.3,373.6 324.5,366.4 329.9,359.4 335.6,352.7 341.5,346.2 347.8,339.9 354.2,333.8 360.9,328.1 367.9,322.6 375.0,317.4 382.4,312.4 389.9,307.8 397.6,303.5 405.5,299.5 413.6,295.8 421.8,292.4 430.1,289.3 438.6,286.6 447.2,284.3 455.8,282.2 464.5,280.5 473.3,279.2 482.2,278.2 491.1,277.6 500.0,277.3 508.9,277.4 517.8,277.9 526.7,278.7 535.5,279.8 544.3,281.3 553.0,283.2 561.7,285.4 570.2,287.9 578.7,290.8 587.0,294.1 595.2,297.6 603.3,301.5 611.2,305.7 618.9,310.3 626.5,315.1 633.8,320.2 640.9,325.7 647.9,331.4 654.5,337.3 661.0,343.6 667.2,350.1 673.1,356.8 678.8,363.8 684.1,371.0 689.2,378.4 694.0,386.1 698.5,393.9 702.7,401.9 706.5,410.0 710.0,418.3 713.2,426.7 716.1,435.3 718.6,444.0 720.7,452.7 722.5,461.6 724.0,470.5 725.1,479.5 725.8,488.5 726.2,497.5 726.2,506.6 725.8,515.6 725.1,524.6 724.0,533.6 722.6,542.6 720.8,551.5 718.6,560.3 716.1,569.0 713.3,577.6 710.1,586.1 706.6,594.5 702.7,602.7 698.5,610.8 694.0,618.7 689.2,626.4 684.0,633.9 678.6,641.2 672.9,648.3 666.9,655.2 660.6,661.8 654.1,668.1 647.3,674.2 640.3,680.1 633.0,685.6 625.5,690.8 617.8,695.8 609.9,700.4 601.9,704.7 593.7,708.7 585.3,712.4 576.7,715.7 568.1,718.7 559.3,721.3 550.4,723.6 541.5,725.5 532.4,727.1 523.3,728.3 514.2,729.2 505.0,729.6 495.8,729.7 486.6,729.5 477.4,728.8 468.3,727.8 459.2,726.5 450.2,724.8 441.2,722.7 432.3,720.2 423.5,717.4 414.9,714.3 406.3,710.8 397.9,707.0 389.7,702.8 381.6,698.3 373.7,693.5 366.0,688.3 358.6,682.9 351.3,677.2 344.3,671.1 337.5,664.8 331.0,658.3 324.7,651.5 318.7,644.4 313.0,637.1 307.6,629.5 302.5,621.8 297.7,613.8 293.2,605.7 289.1,597.4 285.3,588.9 281.8,580.3 278.7,571.5 275.9,562.6 273.5,553.6 271.5,544.6 269.8,535.4 268.5,526.2 267.5,516.9 266.9,507.6 266.7,498.3 266.9,488.9 267.4,479.6 268.3,470.3 269.6,461.1 271.3,451.9 273.3,442.7 275.7,433.7 278.4,424.7 281.5,415.9 285.0,407.2 288.8,398.6 292.9,390.2 297.4,382.0 302.2,373.9 307.3,366.1 312.8,358.4 318.5,351.0 324.6,343.8 330.9,336.8 337.5,330.1 344.3,323.7 351.5,317.6 358.8,311.7 366.4,306.1 374.2,300.9 382.2,295.9 390.5,291.3 398.8,287.0 407.4,283.0 416.1,279.4 425.0,276.2 434.0,273.3 443.1,270.7 452.3,268.5 461.5,266.7 470.9,265.3 480.3,264.2 489.7,263.5 499.2,263.2 508.7,263.3 518.1,263.7 527.6,264.6 537.0,265.8 546.4,267.3 555.6,269.3 564.8,271.6 574.0,274.3 583.0,277.4 591.8,280.8 600.6,284.5 609.1,288.6 617.5,293.1 625.8,297.9 633.8,303.0 641.6,308.4 649.2,314.2 656.6,320.2 663.7,326.6 670.6,333.2 677.2,340.1 683.5,347.3 689.6,354.7 695.3,362.3 700.7,370.2 705.8,378.3 710.6,386.5 715.1,395.0 719.2,403.7 722.9,412.5 726.3,421.4 729.4,430.5 732.1,439.7 734.4,449.0 736.3,458.4 737.9,467.9 739.1,477.4 739.9,487.0 740.3,496.6 740.3,506.2 740.0,515.8 739.2,525.4 738.1,535.0 736.6,544.5 734.7,553.9 732.5,563.3 729.8,572.6 726.8,581.7 723.5,590.8 719.7,599.7 715.7,608.4 711.2,617.0 706.5,625.4 701.4,633.6 695.9,641.6 690.2,649.4 684.1,656.9 677.8,664.2 671.1,671.3 664.2,678.0 657.0,684.5 649.5,690.7 641.9,696.6 633.9,702.2 625.8,707.5 617.4,712.4 608.9,717.0 600.1,721.3 591.2,725.2 582.2,728.8 573.0,732.0 563.7,734.8 554.3,737.2 544.8,739.3 535.2,741.0 525.5,742.3 515.8,743.2 506.1,743.7 496.3,743.9 486.6,743.6 476.8,743.0 467.1,741.9 457.5,740.5 447.9,738.7 438.3,736.5 428.9,734.0 419.6,731.0 410.4,727.7 401.3,724.0 392.4,720.0 383.6,715.6 375.0,710.8 366.7,705.7 358.5,700.3 350.5,694.6 342.8,688.5 335.3,682.1 328.1,675.5 321.2,668.5 314.5,661.3 308.2,653.8 302.1,646.1 296.3,638.1 290.9,629.9 285.8,621.4 281.0,612.8 276.6,604.0 272.5,595.0 268.8,585.9 265.5,576.6 262.5,567.2 260.0,557.7 257.8,548.0 255.9,538.3 254.5,528.5 253.5,518.7 252.8,508.8 252.6,498.9 252.7,489.0 253.3,479.2 254.2,469.3 255.6,459.5 257.3,449.7 259.4,440.0 261.9,430.4 264.8,420.9 268.1,411.6 271.7,402.3 275.7,393.2 280.1,384.3 284.8,375.6 289.9,367.0 295.3,358.7 301.0,350.5 307.1,342.6 313.5,335.0 320.2,327.6 327.1,320.5 334.4,313.7 341.9,307.1 349.7,300.9 357.7,294.9 366.0,289.3 374.5,284.1 383.2,279.2 392.1,274.6 401.1,270.4 410.4,266.5 419.7,263.0 429.3,259.9 438.9,257.2 448.6,254.9 458.5,252.9 468.4,251.4 478.3,250.2 488.3,249.4 498.4,249.1 508.4,249.1 518.4,249.6 528.4,250.4 538.4,251.7 548.3,253.3 558.2,255.4 567.9,257.8 577.6,260.6 587.1,263.8 596.5,267.4 605.8,271.4 614.9,275.7 623.8,280.4 632.6,285.5 641.1,290.9 649.4,296.6 657.5,302.7 665.3,309.1 672.8,315.8 680.1,322.7 687.1,330.0 693.9,337.6 700.3,345.4 706.4,353.5 712.1,361.8 717.6,370.4 722.7,379.1 727.4,388.1 731.8,397.2 735.8,406.6 739.4,416.0 742.7,425.6 745.5,435.4 748.0,445.2 750.1,455.2 751.8,465.2 753.0,475.3 753.9,485.4 754.4,495.6 754.5,505.8 754.1,515.9 753.4,526.1 752.2,536.2 750.6,546.3 748.7,556.3 746.3,566.2 743.6,576.1 740.4,585.8 736.9,595.3 732.9,604.8 728.6,614.0 724.0,623.1 719.0,632.0 713.6,640.7 707.9,649.2 701.8,657.5 695.4,665.5 688.7,673.2 681.7,680.7 674.4,687.9 666.8,694.8 658.9,701.3 650.8,707.6 642.4,713.6 633.8,719.2 625.0,724.4 615.9,729.3 606.7,733.8 597.3,738.0 587.7,741.8 578.0,745.2 568.2,748.2 558.2,750.8 548.2,753.0 538.0,754.8 527.8,756.3 517.6,757.3 507.3,757.8 496.9,758.0 486.6,757.8 476.3,757.1 466.0,756.1 455.8,754.6 445.6,752.7 435.6,750.4 425.6,747.7 415.7,744.6 405.9,741.1 396.3,737.3 386.9,733.0 377.6,728.4 368.5,723.4 359.7,718.0 351.0,712.3 342.6,706.3 334.4,699.9 326.5,693.2 318.8,686.1 311.5,678.8 304.4,671.2 297.6,663.3 291.2,655.1 285.1,646.7 279.3,638.0 273.9,629.1 268.8,620.0 264.1,610.7 259.8,601.2 255.9,591.6 252.3,581.8 249.2,571.8 246.4,561.8 244.1,551.6 242.1,541.3 240.6,531.0 239.5,520.6 238.7,510.2 238.5,499.7 238.6,489.3 239.1,478.8 240.1,468.4 241.5,458.0 243.3,447.7 245.5,437.4 248.1,427.3 251.1,417.2 254.6,407.3 258.4,397.5 262.6,387.9 267.2,378.5 272.2,369.2 277.5,360.2 283.2,351.3 289.2,342.7 295.6,334.4 302.3,326.3 309.4,318.4 316.7,310.9 324.4,303.7 332.3,296.7 340.5,290.1 349.0,283.8 357.7,277.9 366.7,272.3 375.8,267.1 385.2,262.2 394.8,257.7 404.5,253.6 414.4,249.9 424.5,246.6 434.6,243.7 444.9,241.2 455.3,239.1 465.7,237.4 476.3,236.2 486.8,235.4 497.4,235.0 508.0,235.0 518.6,235.4 529.2,236.3 539.7,237.6 550.2,239.3 560.6,241.4 570.9,244.0 581.1,246.9 591.2,250.3 601.2,254.0 611.0,258.2 620.6,262.8 630.0,267.7 639.3,273.0 648.3,278.7 657.1,284.7 665.6,291.1 673.9,297.8 681.9,304.9 689.6,312.2 697.0,319.9 704.1,327.9 710.9,336.1 717.4,344.6 723.5,353.4 729.3,362.4 734.7,371.6 739.7,381.1 744.3,390.7 748.6,400.6 752.5,410.5 755.9,420.7 759.0,431.0 761.6,441.4 763.8,451.8 765.6,462.4 767.0,473.1 768.0,483.8 768.5,494.5 768.6,505.2 768.3,516.0 767.5,526.7 766.3,537.4 764.7,548.0 762.6,558.6 760.2,569.1 757.3,579.4 754.0,589.7 750.3,599.8 746.2,609.8 741.7,619.6 736.8,629.2 731.5,638.6 725.8,647.8 719.8,656.8 713.5,665.5 706.7,673.9 699.7,682.1 692.3,690.0 684.6,697.6 676.6,704.9 668.3,711.9 659.8,718.5 651.0,724.8 641.9,730.8 632.6,736.3 623.1,741.5 613.4,746.3 603.5,750.8 593.4,754.8 583.1,758.4 572.8,761.6 562.3,764.4 551.7,766.8 541.0,768.7 530.2,770.2 519.4,771.3 508.5,771.9 497.6,772.1 486.8,771.9 475.9,771.3 465.0,770.2 454.2,768.7 443.5,766.7 432.9,764.3 422.3,761.5 411.9,758.3 401.6,754.6 391.5,750.6 381.5,746.1 371.7,741.3 362.1,736.0 352.8,730.4 343.6,724.4 334.7,718.0 326.1,711.3 317.7,704.3 309.6,696.9 301.8,689.2 294.4,681.1 287.2,672.8 280.4,664.2 273.9,655.4 267.8,646.3 262.1,636.9 256.7,627.3 251.7,617.5 247.1,607.5 243.0,597.4 239.2,587.0 235.8,576.6 232.9,566.0 230.4,555.2 228.3,544.4 226.7,533.5 225.4,522.6 224.7,511.6 224.3,500.6 224.4,489.6 225.0,478.5 226.0,467.5 227.4,456.6 229.3,445.7 231.6,434.9 234.3,424.2 237.5,413.6 241.0,403.2 245.0,392.8 249.4,382.7 254.3,372.7 259.5,363.0 265.1,353.4 271.0,344.1 277.4,335.0 284.1,326.2 291.1,317.6 298.5,309.3 306.3,301.4 314.3,293.7 322.6,286.4 331.3,279.4 340.2,272.7 349.3,266.5 358.8,260.5 368.4,255.0 378.3,249.9 388.3,245.1 398.6,240.8 409.0,236.8 419.6,233.3 430.3,230.2 441.1,227.6 452.0,225.3 463.0,223.5 474.1,222.2 485.2,221.3 496.4,220.8 507.6,220.8 518.7,221.3 529.9,222.2 541.0,223.5 552.0,225.2 563.0,227.5 573.8,230.1 584.6,233.2 595.2,236.7 605.7,240.6 616.1,245.0 626.2,249.8 636.1,254.9 645.9,260.5 655.4,266.4 664.7,272.8 673.7,279.5 682.4,286.5 690.9,293.9 699.0,301.7 706.9,309.7 714.4,318.1 721.5,326.7 728.4,335.7 734.8,344.9 740.9,354.4 746.6,364.1 752.0,374.0 756.9,384.1 761.4,394.5 765.5,405.0 769.2,415.6 772.4,426.5 775.2,437.4 777.6,448.4 779.5,459.6 781.0,470.8 782.0,482.0 782.6,493.3 782.7,504.6 782.4,515.9 781.6,527.2 780.4,538.5 778.8,549.7 776.6,560.8 774.1,571.8 771.1,582.7 767.6,593.6 763.7,604.2 759.5,614.7 754.7,625.0 749.6,635.2 744.1,645.1 738.2,654.8 731.9,664.2 725.2,673.4 718.1,682.4 710.7,691.0 703.0,699.3 694.9,707.3 686.5,715.0 677.8,722.4 668.9,729.4 659.6,736.1 650.1,742.3 640.3,748.2 630.3,753.7 620.1,758.8 609.7,763.5 599.1,767.7 588.3,771.6 577.4,775.0 566.4,777.9 555.2,780.5 544.0,782.5 532.7,784.1 521.3,785.3 509.9,786.0 498.4,786.3 487.0,786.1 475.5,785.4 464.1,784.3 452.8,782.7 441.5,780.7 430.3,778.2 419.2,775.3 408.2,771.9 397.4,768.1 386.7,763.9 376.2,759.2 365.9,754.2 355.8,748.7 345.9,742.8 336.3,736.5 326.9,729.8 317.8,722.8 309.0,715.4 300.4,707.7 292.2,699.6 284.4,691.2 276.8,682.4 269.6,673.4 262.8,664.1 256.3,654.6 250.3,644.7 244.6,634.7 239.4,624.4 234.5,613.9 230.1,603.2 226.1,592.4 222.5,581.4 219.4,570.2 216.7,559.0 214.5,547.6 212.7,536.2 211.4,524.7 210.6,513.1 210.2,501.5 210.3,489.9 210.8,478.4 211.8,466.8 213.3,455.3 215.2,443.8 217.6,432.5 220.5,421.2 223.7,410.1 227.5,399.1 231.7,388.2 236.3,377.5 241.3,367.0 246.7,356.8 252.6,346.7 258.8,336.9 265.5,327.3 272.5,318.0 279.9,309.0 287.6,300.3 295.7,291.9 304.2,283.8 312.9,276.1 322.0,268.7 331.3,261.7 340.9,255.1 350.8,248.8 360.9,243.0 371.2,237.6 381.8,232.5 392.6,227.9 403.5,223.8 414.6,220.1 425.8,216.8 437.2,214.0 448.7,211.6 460.2,209.7 471.9,208.2 483.6,207.2 495.3,206.7 507.0,206.7 518.7,207.1 530.4,208.0 542.1,209.4 553.7,211.2 565.2,213.5 576.7,216.2 588.0,219.4 599.2,223.1 610.2,227.2 621.1,231.7 631.7,236.7 642.2,242.1 652.4,247.9 662.4,254.2 672.2,260.8 681.7,267.8 690.9,275.2 699.8,282.9 708.4,291.0 716.6,299.5 724.5,308.2 732.1,317.3 739.3,326.7 746.1,336.3 752.5,346.3 758.6,356.4 764.2,366.8 769.4,377.5 774.1,388.3 778.5,399.3 782.4,410.5 785.8,421.9 788.8,433.3 791.3,444.9 793.4,456.6 794.9,468.4 796.1,480.2 796.7,492.0 796.9,503.9 796.6,515.8 795.8,527.6 794.6,539.4 792.8,551.2 790.6,562.9 788.0,574.5 784.9,586.0 781.3,597.3 777.2,608.5 772.8,619.6 767.8,630.4 762.5,641.1 756.7,651.5 750.5,661.7 743.9,671.6 736.9,681.3 729.6,690.7 721.8,699.8 713.7,708.5 705.3,717.0 696.5,725.1 687.4,732.8 678.0,740.2 668.3,747.2 658.3,753.8 648.1,760.0 637.6,765.8 626.9,771.2 616.0,776.1 604.9,780.6 593.6,784.7 582.2,788.3 570.6,791.4 558.9,794.1 547.1,796.3 535.2,798.1 523.3,799.3 511.3,800.1 499.3,800.4 487.3,800.2 475.3,799.6 463.3,798.4 451.4,796.8 439.5,794.7 427.8,792.2 416.1,789.1 404.6,785.6 393.2,781.7 382.0,777.3 371.0,772.4 360.2,767.1 349.5,761.4 339.2,755.2 329.0,748.7 319.2,741.7 309.6,734.3 300.3,726.6 291.4,718.5 282.7,710.1 274.4,701.3 266.5,692.1 258.9,682.7 251.7,673.0 244.9,662.9 238.5,652.7 232.6,642.1 227.0,631.4 221.9,620.4 217.2,609.2 213.0,597.8 209.2,586.3 205.9,574.6 203.1,562.8 200.7,550.9 198.8,538.9 197.4,526.8 196.5,514.7 196.1,502.6 196.1,490.4 196.7,478.3 197.7,466.1 199.2,454.1 201.2,442.1 203.7,430.1 206.6,418.3 210.0,406.6 213.9,395.1 218.2,383.7 223.0,372.5 228.3,361.5 234.0,350.7 240.1,340.1 246.6,329.8 253.5,319.7 260.9,310.0 268.6,300.5 276.7,291.3 285.1,282.5 294.0,274.0 303.1,265.9 312.6,258.1 322.3,250.8 332.4,243.8 342.7,237.2 353.3,231.0 364.1,225.3 375.2,220.0 386.5,215.2 397.9,210.8 409.5,206.8 421.3,203.4 433.2,200.4 445.2,197.8 457.4,195.8 469.5,194.3 481.8,193.2 494.1,192.6 506.4,192.5 518.7,192.9 530.9,193.8 543.2,195.2 555.3,197.1 567.4,199.5 579.4,202.3 591.3,205.7 603.0,209.5 614.6,213.7 626.0,218.5 637.2,223.6 648.2,229.3 658.9,235.3 669.4,241.8 679.7,248.7 689.6,256.1 699.3,263.8 708.6,271.9 717.6,280.3 726.3,289.1 734.6,298.3 742.6,307.8 750.2,317.6 757.3,327.7 764.1,338.1 770.4,348.7 776.3,359.6 781.8,370.7 786.8,382.1 791.4,393.6 795.5,405.3 799.2,417.2 802.3,429.2 805.0,441.3 807.2,453.5 808.9,465.9 810.1,478.2 810.8,490.6 811.0,503.1 810.7,515.5 810.0,527.9 808.7,540.3 806.9,552.7 804.7,564.9 801.9,577.1 798.7,589.1 794.9,601.0 790.8,612.7 786.1,624.3 781.0,635.7 775.4,646.9 769.4,657.8 762.9,668.5 756.1,678.9 748.8,689.1 741.1,698.9 733.0,708.5 724.5,717.7 715.7,726.6 706.5,735.1 697.0,743.2 687.2,751.0 677.1,758.3 666.6,765.3 655.9,771.8 645.0,777.9 633.8,783.6 622.4,788.8 610.8,793.5 599.0,797.8 587.0,801.6 574.9,804.9 562.7,807.8 550.3,810.1 537.9,812.0 525.4,813.3 512.8,814.2 500.3,814.5 487.7,814.4 475.1,813.7 462.6,812.6 450.1,810.9 437.7,808.8 425.4,806.1 413.2,803.0 401.1,799.4 389.2,795.2 377.4,790.7 365.8,785.6 354.5,780.1 343.4,774.1 332.5,767.7 321.9,760.9 311.5,753.6 301.5,745.9 291.7,737.9 282.3,729.4 273.3,720.6 264.5,711.4 256.2,701.9 248.3,692.0 240.7,681.9 233.6,671.4 226.9,660.7 220.6,649.6 214.7,638.4 209.3,626.9 204.4,615.2 200.0,603.3 196.0,591.3 192.5,579.1 189.5,566.7 187.0,554.3 185.0,541.7 183.5,529.1 182.5,516.4 182.0,503.7 182.0,491.0 182.5,478.3 183.5,465.6 185.1,452.9 187.1,440.4 189.7,427.9 192.7,415.5 196.3,403.3 200.3,391.2 204.8,379.2 209.8,367.5 215.2,355.9 221.1,344.6 227.5,333.6 234.3,322.7 241.5,312.2 249.2,302.0 257.2,292.0 265.7,282.4 274.5,273.2 283.7,264.3 293.2,255.7 303.1,247.6 313.3,239.8 323.8,232.5 334.6,225.6 345.7,219.1 357.0,213.1 368.5,207.5 380.3,202.4 392.3,197.8 404.4,193.6 416.7,190.0 429.1,186.8 441.7,184.1 454.4,182.0 467.1,180.3 479.9,179.1 492.8,178.5 505.6,178.4 518.5,178.8 531.3,179.7 544.1,181.1 556.9,183.0 569.5,185.5 582.1,188.4 594.5,191.9 606.8,195.8 618.9,200.2 630.8,205.2 642.5,210.5 654.0,216.4 665.3,222.7 676.3,229.5 687.0,236.6 697.5,244.3 707.6,252.3 717.4,260.7 726.9,269.6 736.0,278.7 744.7,288.3 753.0,298.2 761.0,308.4 768.5,319.0 775.6,329.8 782.3,340.9 788.5,352.3 794.2,363.9 799.5,375.7 804.3,387.8 808.7,400.0 812.5,412.4 815.8,425.0 818.7,437.6 821.0,450.4 822.8,463.3 824.1,476.2 824.9,489.2 825.2,502.2 824.9,515.2 824.1,528.2 822.8,541.1 821.0,554.0 818.7,566.8 815.8,579.6 812.5,592.1 808.6,604.6 804.3,616.9 799.5,629.0 794.2,640.9 788.4,652.6 782.1,664.1 775.4,675.3 768.2,686.2 760.7,696.8 752.6,707.1 744.2,717.1 735.4,726.8 726.2,736.1 716.7,745.0 706.7,753.5 696.5,761.7 685.9,769.4 675.0,776.7 663.9,783.6 652.5,790.0 640.8,795.9 628.9,801.4 616.7,806.4 604.4,810.9 591.9,814.9 579.3,818.4 566.5,821.4 553.6,823.9 540.6,825.9 527.6,827.3 514.5,828.3 501.3,828.7 488.2,828.6 475.0,827.9 461.9,826.7 448.9,825.0 435.9,822.8 423.0,820.1 410.3,816.9 397.7,813.1 385.2,808.8 372.9,804.1 360.8,798.8 348.9,793.1 337.3,786.9 325.9,780.3 314.8,773.1 303.9,765.6 293.4,757.6 283.2,749.2 273.4,740.4 263.9,731.2 254.7,721.6 246.0,711.7 237.7,701.4 229.8,690.8 222.3,679.9 215.2,668.7 208.6,657.2 202.5,645.5 196.8,633.5 191.6,621.3 186.9,608.9 182.7,596.4 179.1,583.6 175.9,570.7 173.2,557.7 171.1,544.6 169.5,531.4 168.4,518.2 167.8,504.9 167.8,491.6 168.3,478.4 169.4,465.1 170.9,451.9 173.0,438.8 175.7,425.7 178.8,412.8 182.5,400.0 186.6,387.3 191.3,374.9 196.5,362.6 202.1,350.5 208.3,338.7 214.9,327.1 222.0,315.8 229.5,304.8 237.4,294.0 245.8,283.6 254.6,273.6 263.8,263.9 273.3,254.6 283.3,245.6 293.6,237.1 304.2,229.0 315.1,221.3 326.4,214.0 337.9,207.3 349.7,200.9 361.8,195.1 374.0,189.7 386.5,184.8 399.2,180.5 412.0,176.6 425.0,173.2 438.1,170.4 451.3,168.1 464.6,166.4 478.0,165.1 491.4,164.4 504.8,164.2 518.2,164.6 531.7,165.5 545.0,167.0 558.3,168.9 571.5,171.5 584.6,174.5 597.6,178.0 610.4,182.1 623.1,186.7 635.5,191.8 647.8,197.4 659.8,203.5 671.6,210.0 683.1,217.0 694.3,224.5 705.3,232.4 715.8,240.8 726.1,249.6 736.0,258.7 745.5,268.3 754.7,278.2 763.4,288.5 771.7,299.2 779.6,310.2 787.0,321.5 794.0,333.0 800.6,344.9 806.6,357.0 812.2,369.3 817.2,381.9 821.8,394.6 825.8,407.6 829.3,420.6 832.3,433.9 834.8,447.2 836.7,460.6 838.1,474.1 839.0,487.6 839.3,501.2 839.1,514.8 838.3,528.3 837.0,541.8 835.1,555.3 832.7,568.7 829.8,582.0 826.4,595.1 822.4,608.1 817.9,620.9 812.9,633.6 807.4,646.0 801.4,658.3 794.9,670.2 787.9,681.9 780.5,693.3 772.6,704.5 764.3,715.3 755.5,725.7 746.3,735.8 736.8,745.5 726.8,754.9 716.5,763.8 705.8,772.3 694.8,780.4 683.5,788.1 671.9,795.2 660.0,802.0 647.8,808.2 635.4,813.9 622.8,819.2 610.0,823.9 596.9,828.2 583.8,831.9 570.4,835.0 557.0,837.7 543.5,839.8 529.9,841.3 516.2,842.3 502.5,842.8 488.8,842.7 475.1,842.1 461.4,840.9 447.8,839.2 434.2,836.9 420.8,834.1 407.5,830.7 394.3,826.9 381.3,822.5 368.4,817.5 355.8,812.1 343.4,806.2 331.2,799.7 319.4,792.8 307.7,785.4 296.4,777.6 285.4,769.3 274.8,760.6 264.5,751.4 254.5,741.9 245.0,731.9 235.9,721.6 227.1,710.9 218.8,699.9 211.0,688.5 203.6,676.9 196.7,664.9 190.3,652.7 184.3,640.2 178.9,627.5 174.0,614.6 169.6,601.5 165.7,588.2 162.3,574.8 159.5,561.3 157.2,547.6 155.5,533.9 154.4,520.1 153.7,506.2 153.7,492.4 154.2,478.5 155.2,464.7 156.8,451.0 159.0,437.2 161.6,423.6 164.9,410.1 168.7,396.8 173.0,383.6 177.8,370.6 183.2,357.8 189.0,345.2 195.4,332.8 202.2,320.7 209.6,308.9 217.4,297.4 225.6,286.2 234.3,275.3 243.5,264.8 253.0,254.7 262.9,244.9 273.3,235.6 284.0,226.7 295.0,218.2 306.4,210.1 318.1,202.5 330.1,195.4 342.4,188.8 354.9,182.7 367.7,177.0 380.7,171.9 393.9,167.3 407.2,163.3 420.7,159.7 434.4,156.7 448.2,154.3 462.0,152.4 475.9,151.1 489.9,150.3 503.9,150.1 517.9,150.4 531.9,151.4 545.8,152.8 559.7,154.8 573.4,157.4 587.1,160.5 600.6,164.2 614.0,168.4 627.2,173.2 640.2,178.4 653.0,184.2 665.5,190.5 677.8,197.3 689.9,204.6 701.6,212.3 713.0,220.5 724.0,229.2 734.7,238.3 745.1,247.8 755.0,257.8 764.6,268.1 773.7,278.8 782.4,289.9 790.7,301.3 798.4,313.0 805.8,325.1 812.6,337.4 818.9,350.0 824.8,362.8 830.1,375.9 834.8,389.2 839.1,402.6 842.8,416.2 846.0,430.0 848.6,443.9 850.6,457.9 852.1,471.9 853.1,486.0 853.4,500.1 853.2,514.3 852.5,528.4 851.1,542.5 849.3,556.5 846.8,570.4 843.8,584.3 840.2,598.0 836.1,611.5 831.5,624.9 826.3,638.1 820.6,651.1 814.4,663.8 807.7,676.3 800.4,688.5 792.7,700.4 784.6,712.0 775.9,723.3 766.8,734.2 757.3,744.8 747.4,754.9 737.1,764.7 726.3,774.0 715.3,782.9 703.8,791.4 692.1,799.4 680.0,806.9 667.6,813.9 655.0,820.4 642.1,826.5 628.9,832.0 615.6,836.9 602.0,841.4 588.3,845.3 574.5,848.6 560.5,851.4 546.4,853.6 532.2,855.3 518.0,856.4 503.7,856.9 489.4,856.9 475.2,856.3 460.9,855.1 446.8,853.3 432.7,851.0 418.7,848.1 404.8,844.7 391.0,840.7 377.5,836.1 364.1,831.0 350.9,825.4 338.0,819.3 325.3,812.6 312.9,805.5 300.8,797.8 289.0,789.7 277.5,781.1 266.4,772.0 255.6,762.5 245.3,752.6 235.3,742.3 225.8,731.6 216.7,720.5 208.0,709.0 199.8,697.2 192.1,685.1 184.8,672.7 178.1,660.0 171.9,647.0 166.2,633.8 161.0,620.4 156.4,606.8 152.3,593.0 148.8,579.0 145.8,564.9 143.4,550.7 141.6,536.4 140.3,522.0 139.6,507.7 139.5,493.2 140.0,478.8 141.0,464.4 142.7,450.1 144.9,435.8 147.6,421.7 150.9,407.6 154.8,393.7 159.3,379.9 164.3,366.4 169.8,353.0 175.9,339.9 182.4,327.0 189.5,314.4 197.1,302.1 205.2,290.1 213.8,278.4 222.8,267.1 232.3,256.1 242.2,245.6 252.5,235.4 263.2,225.6 274.3,216.3 285.8,207.4 297.6,199.0 309.7,191.1 322.2,183.7 335.0,176.7 348.0,170.3 361.3,164.4 374.8,159.0 388.5,154.2 402.4,149.9 416.4,146.2 430.6,143.1 444.9,140.5 459.3,138.5 473.8,137.1 488.3,136.2 502.9,136.0 517.5,136.3 532.0,137.2 546.5,138.7 560.9,140.7 575.3,143.4 589.5,146.6 603.6,150.3 617.5,154.7 631.3,159.6 644.8,165.0 658.1,171.0 671.2,177.5 684.0,184.5 696.5,192.0 708.7,200.1 720.6,208.6 732.1,217.6 743.3,227.0 754.1,236.9 764.5,247.2 774.4,257.9 784.0,269.0 793.0,280.5 801.7,292.4 809.8,304.6 817.4,317.1 824.6,329.9 831.2,342.9 837.3,356.3 842.9,369.8 847.9,383.6 852.4,397.6 856.3,411.8 859.6,426.1 862.3,440.5 864.5,455.0 866.1,469.6 867.1,484.3 867.6,499.0 867.4,513.7 866.6,528.4 865.3,543.0 863.4,557.6 860.9,572.1 857.8,586.5 854.1,600.8 849.9,614.9 845.1,628.8 839.8,642.5 833.9,656.0 827.5,669.3 820.5,682.3 813.0,695.0 805.1,707.4 796.6,719.5 787.6,731.3 778.2,742.6 768.4,753.6 758.1,764.2 747.4,774.4 736.3,784.2 724.8,793.4 712.9,802.3 700.7,810.6 688.1,818.5 675.3,825.8 662.2,832.7 648.8,839.0 635.1,844.7 621.3,849.9 607.2,854.6 593.0,858.7 578.6,862.2 564.0,865.1 549.4,867.5 534.7,869.3 519.9,870.4 505.1,871.0 490.2,871.0 475.4,870.4 460.6,869.2 445.8,867.5 431.2,865.1 416.6,862.1 402.2,858.6 387.9,854.5 373.7,849.8 359.8,844.5 346.1,838.7 332.7,832.4 319.5,825.5 306.5,818.1 293.9,810.2 281.6,801.8 269.7,792.9 258.1,783.5 246.9,773.7 236.1,763.4 225.7,752.7 215.7,741.6 206.2,730.1 197.2,718.2 188.6,706.0 180.6,693.4 173.0,680.5 166.0,667.3 159.5,653.9 153.5,640.2 148.1,626.2 143.2,612.1 139.0,597.8 135.3,583.3 132.1,568.6 129.6,553.9 127.6,539.0 126.3,524.1 125.5,509.1 125.4,494.2 125.8,479.2 126.9,464.2 128.5,449.3 130.7,434.5 133.6,419.8 137.0,405.1 141.0,390.7 145.6,376.4 150.7,362.3 156.4,348.4 162.7,334.7 169.5,321.3 176.8,308.2 184.6,295.4 193.0,282.9 201.9,270.7 211.2,258.9 221.0,247.5 231.3,236.5 242.0,225.9 253.1,215.7 264.6,206.0 276.5,196.7 288.7,188.0 301.3,179.7 314.2,171.9 327.5,164.7 341.0,158.0 354.7,151.8 368.8,146.2 383.0,141.1 397.4,136.7 412.0,132.8 426.7,129.4 441.6,126.7 456.6,124.6 471.6,123.1 486.7,122.1 501.8,121.8 516.9,122.1 532.0,123.0 547.1,124.5 562.1,126.6 577.0,129.3 591.8,132.6 606.4,136.4 620.9,140.9 635.2,145.9 649.3,151.6 663.1,157.7 676.7,164.4 690.1,171.7 703.1,179.5 715.8,187.8 728.2,196.6 740.2,205.9 751.8,215.7 763.0,225.9 773.8,236.6 784.2,247.7 794.2,259.2 803.6,271.1 812.6,283.4 821.1,296.0 829.1,308.9 836.5,322.2 843.5,335.8 849.8,349.6 855.7,363.7 860.9,378.0 865.6,392.5 869.7,407.2 873.2,422.0 876.1,437.0 878.4,452.1 880.1,467.2 881.2,482.5 881.7,497.7 881.6,513.0 880.8,528.2 879.5,543.4 877.5,558.6 875.0,573.7 871.8,588.6 868.1,603.4 863.7,618.1 858.8,632.6 853.3,646.9 847.2,660.9 840.6,674.7 833.4,688.2 825.7,701.5 817.4,714.4 808.7,727.0 799.4,739.2 789.7,751.0 779.5,762.5 768.8,773.5 757.7,784.1 746.2,794.2 734.3,803.9 722.0,813.1 709.4,821.8 696.4,830.0 683.1,837.7 669.5,844.8 655.6,851.4 641.4,857.4 627.1,862.9 612.5,867.8 597.7,872.0 582.8,875.7 567.7,878.8 552.5,881.3 537.2,883.2 521.9,884.5 506.5,885.1 491.1,885.2 475.7,884.6 460.3,883.4 445.0,881.6 429.7,879.2 414.6,876.2 399.6,872.5 384.8,868.3 370.1,863.5 355.6,858.1 341.4,852.1 327.4,845.6 313.7,838.5 300.2,830.8 287.1,822.7 274.3,814.0 261.9,804.8 249.9,795.1 238.2,784.9 227.0,774.3 216.1,763.2 205.8,751.7 195.9,739.8 186.5,727.5 177.5,714.8 169.1,701.8 161.2,688.4 153.9,674.8 147.1,660.8 140.9,646.6 135.2,632.2 130.1,617.5 125.6,602.6 121.8,587.6 118.5,572.4 115.8,557.1 113.7,541.7 112.3,526.2 111.4,510.7 111.2,495.2 111.6,479.6 112.7,464.1 114.3,448.6 116.6,433.2 119.5,417.9 123.0,402.8 127.1,387.7 131.8,372.9 137.1,358.2 143.0,343.8 149.4,329.6 156.4,315.7 164.0,302.0 172.1,288.7 180.8,275.7 189.9,263.1 199.6,250.8 209.7,238.9 220.3,227.5 231.4,216.4 242.9,205.9 254.8,195.7 267.1,186.1 279.8,177.0 292.8,168.3 306.2,160.2 319.9,152.7 333.9,145.7 348.2,139.2 362.7,133.4 377.4,128.1 392.4,123.4 407.5,119.3 422.8,115.8 438.2,113.0 453.7,110.7 469.3,109.1 484.9,108.1 500.6,107.7 516.3,107.9 532.0,108.8 547.6,110.3 563.2,112.4 578.6,115.2 594.0,118.6 609.2,122.5 624.2,127.1 639.1,132.3 653.7,138.1 668.1,144.4 682.2,151.4 696.1,158.8 709.6,166.9 722.8,175.5 735.7,184.6 748.1,194.2 760.2,204.3 771.9,214.8 783.2,225.9 794.0,237.4 804.3,249.3 814.2,261.6 823.5,274.3 832.4,287.4 840.7,300.8 848.4,314.5 855.7,328.6 862.3,342.9 868.4,357.5 873.9,372.3 878.8,387.3 883.1,402.5 886.8,417.9 889.8,433.4 892.3,449.0 894.1,464.8 895.3,480.5 895.8,496.4 895.7,512.2 895.0,528.0 893.7,543.8 891.7,559.5 889.1,575.2 885.8,590.7 882.0,606.1 877.5,621.3 872.5,636.3 866.8,651.1 860.6,665.7 853.7,680.0 846.3,694.1 838.4,707.8 829.8,721.2 820.8,734.3 811.3,747.0 801.2,759.3 790.6,771.2 779.6,782.7 768.2,793.7 756.3,804.3 743.9,814.3 731.2,823.9 718.1,833.0 704.7,841.5 690.9,849.5 676.8,856.9 662.5,863.8 647.8,870.1 632.9,875.8 617.8,880.9 602.5,885.4 587.0,889.3 571.4,892.5 555.7,895.2 539.8,897.2 523.9,898.5 508.0,899.3 492.0,899.3 476.0,898.8 460.1,897.6 444.2,895.8 428.4,893.3 412.7,890.2 397.2,886.5 381.8,882.2 366.6,877.2 351.5,871.7 336.8,865.5 322.2,858.8 308.0,851.5 294.0,843.6 280.4,835.2 267.1,826.2 254.2,816.7 241.7,806.7 229.6,796.2 217.9,785.2 206.6,773.7 195.9,761.8 185.6,749.5 175.8,736.8 166.5,723.7 157.7,710.2 149.5,696.4 141.9,682.3 134.8,667.8 128.3,653.1 122.4,638.2 117.1,623.0 112.4,607.6 108.3,592.0 104.8,576.3 102.0,560.5 99.8,544.5 98.3,528.5 97.4,512.4 97.1,496.3 97.5,480.2 98.5,464.1 100.2,448.0 102.5,432.1 105.4,416.2 109.0,400.5 113.2,384.9 118.0,369.5 123.5,354.3 129.5,339.3 136.2,324.6 143.4,310.1 151.2,296.0 159.5,282.2 168.5,268.7 177.9,255.5 187.9,242.8 198.3,230.5 209.3,218.5 220.7,207.1 232.6,196.1 244.9,185.6 257.6,175.5 270.7,166.0 284.2,157.0 298.1,148.6 312.2,140.7 326.7,133.4 341.5,126.7 356.5,120.6 371.8,115.1 387.2,110.2 402.9,105.9 418.7,102.2 434.7,99.2 450.7,96.8 466.9,95.1 483.1,94.0 499.4,93.6 515.6,93.8 531.9,94.6 548.1,96.1 564.2,98.3 580.2,101.1 596.1,104.5 611.9,108.6 627.5,113.3 642.9,118.6 658.0,124.6 673.0,131.1 687.6,138.2 702.0,145.9 716.0,154.2 729.7,163.1 743.1,172.5 756.0,182.4 768.6,192.8 780.7,203.7 792.4,215.1 803.6,227.0 814.4,239.3 824.6,252.0 834.4,265.1 843.6,278.6 852.2,292.5 860.3,306.7 867.8,321.2 874.8,336.1 881.1,351.1 886.8,366.5 891.9,382.0 896.4,397.8 900.3,413.7 903.5,429.7 906.1,445.9 908.0,462.2 909.3,478.5 909.9,494.9 909.9,511.3 909.2,527.7 907.8,544.1 905.8,560.4 903.2,576.6 899.9,592.6 896.0,608.6 891.4,624.3 886.2,639.9 880.4,655.3 873.9,670.4 866.9,685.3 859.3,699.8 851.1,714.1 842.3,728.0 833.0,741.6 823.1,754.8 812.8,767.5 801.9,779.9 790.5,791.8 778.7,803.2 766.4,814.2 753.6,824.7 740.5,834.6 727.0,844.1 713.1,853.0 698.9,861.3 684.3,869.0 669.4,876.2 654.3,882.7 638.9,888.7 623.2,894.0 607.4,898.7 591.4,902.8 575.2,906.2 559.0,909.0 542.6,911.1 526.1,912.5 509.6,913.3 493.0,913.5 476.5,913.0 460.0,911.8 443.6,910.0 427.2,907.5 410.9,904.3 394.8,900.5 378.9,896.1 363.1,891.0 347.5,885.3 332.2,879.0 317.1,872.0 302.4,864.5 287.9,856.4 273.8,847.7 260.0,838.4 246.6,828.6 233.6,818.3 221.0,807.5 208.9,796.1 197.2,784.3 186.0,772.0 175.3,759.3 165.1,746.2 155.5,732.7 146.4,718.7 137.8,704.5 129.9,689.9 122.5,674.9 115.7,659.7 109.6,644.3 104.0,628.6 99.1,612.7 94.8,596.6 91.2,580.3 88.2,563.9 85.9,547.4 84.3,530.8 83.3,514.2 82.9,497.5 83.3,480.8 84.3,464.1 86.0,447.5 88.3,431.0 91.3,414.6 95.0,398.3 99.3,382.1 104.2,366.2 109.8,350.4 116.0,334.9 122.8,319.7 130.3,304.7 138.3,290.0 146.9,275.7 156.1,261.7 165.8,248.1 176.1,234.8 186.9,222.0 198.2,209.7 210.0,197.8 222.3,186.4 235.0,175.4 248.1,165.0 261.6,155.1 275.6,145.8 289.9,137.0 304.5,128.8 319.5,121.2 334.7,114.2 350.3,107.9 366.0,102.1 382.0,97.0 398.2,92.5 414.6,88.7 431.1,85.5 447.7,83.0 464.4,81.1 481.2,79.9 498.0,79.4 514.8,79.6 531.6,80.4 548.4,82.0 565.1,84.1 581.7,87.0 598.1,90.5 614.5,94.7 630.6,99.5 646.6,104.9 662.3,111.0 677.7,117.7 692.9,125.1 707.8,133.0 722.4,141.5 736.6,150.6 750.4,160.3 763.8,170.5 776.9,181.3 789.5,192.5 801.6,204.3 813.2,216.5 824.4,229.2 835.0,242.4 845.1,255.9 854.7,269.9 863.7,284.2 872.1,298.9 879.9,313.9 887.2,329.2 893.8,344.7 899.7,360.6 905.1,376.7 909.8,392.9 913.8,409.4 917.2,426.0 919.9,442.7 922.0,459.6 923.3,476.5 924.0,493.4 924.0,510.4 923.4,527.3 922.0,544.2 920.0,561.1 917.3,577.9 914.0,594.5 909.9,611.0 905.3,627.3 899.9,643.5 894.0,659.4 887.4,675.0 880.1,690.4 872.3,705.5 863.8,720.3 854.8,734.7 845.2,748.8 835.1,762.4 824.4,775.7 813.2,788.5 801.4,800.9 789.2,812.7 776.5,824.1 763.4,835.0 749.9,845.3 735.9,855.1 721.6,864.3 706.9,873.0 691.8,881.0 676.5,888.5 660.8,895.3 644.9,901.5 628.8,907.1 612.4,912.0 595.9,916.2 579.2,919.8 562.3,922.8 545.4,925.0 528.3,926.6 511.3,927.4 494.2,927.6 477.1,927.2 460.0,926.0 443.0,924.1 426.0,921.6 409.2,918.4 392.5,914.5 376.0,910.0 359.7,904.8 343.6,898.9 327.7,892.4 312.1,885.3 296.8,877.6 281.9,869.2 267.2,860.3 252.9,850.8 239.1,840.7 225.6,830.0 212.5,818.9 200.0,807.2 187.9,795.0 176.2,782.3 165.1,769.2 154.6,755.7 144.5,741.7 135.1,727.3 126.2,712.6 117.9,697.5 110.3,682.1 103.2,666.4 96.8,650.5 91.0,634.2 85.9,617.8 81.4,601.2 77.6,584.4 74.5,567.4 72.0,550.4 70.3,533.2 69.2,516.0 68.8,498.8 69.1,481.5 70.1,464.3 71.8,447.1 74.2,430.0 77.2,413.0 80.9,396.2 85.3,379.5 90.4,363.0 96.1,346.7 102.5,330.6 109.5,314.8 117.1,299.3 125.4,284.1 134.3,269.2 143.7,254.8 153.7,240.6 164.3,227.0 175.4,213.7 187.1,200.9 199.2,188.5 211.9,176.7 225.0,165.4 238.5,154.6 252.5,144.3 266.9,134.6 281.6,125.5 296.7,117.0 312.2,109.1 327.9,101.8 343.9,95.2 360.2,89.1 376.7,83.8 393.5,79.1 410.3,75.1 427.4,71.8 444.6,69.1 461.8,67.2 479.2,65.9 496.5,65.3 513.9,65.4 531.3,66.2 548.6,67.8 565.9,70.0 583.1,72.9 600.1,76.4 617.0,80.7 633.7,85.6 650.2,91.2 666.4,97.5 682.4,104.3 698.2,111.9 713.6,120.0 728.6,128.8 743.3,138.2 757.7,148.1 771.6,158.6 785.1,169.7 798.1,181.3 810.7,193.4 822.8,206.0 834.3,219.1 845.4,232.6 855.9,246.6 865.8,261.0 875.1,275.8 883.9,290.9 892.0,306.4 899.5,322.2 906.4,338.3 912.6,354.6 918.2,371.2 923.1,388.0 927.3,405.0 930.9,422.2 933.7,439.4 935.9,456.8 937.4,474.3 938.1,491.8 938.2,509.3 937.6,526.8 936.2,544.3 934.2,561.7 931.5,579.1 928.1,596.3 923.9,613.3 919.2,630.2 913.7,646.9 907.6,663.4 900.8,679.6 893.4,695.5 885.3,711.1 876.7,726.4 867.4,741.4 857.5,755.9 847.1,770.0 836.0,783.8 824.5,797.0 812.4,809.8 799.8,822.2 786.8,834.0 773.2,845.2 759.3,856.0 744.9,866.1 730.1,875.7 714.9,884.7 699.4,893.0 683.6,900.8 667.4,907.9 651.0,914.3 634.4,920.1 617.5,925.3 600.4,929.7 583.2,933.5 565.8,936.5 548.3,938.9 530.7,940.6 513.0,941.5 495.4,941.8 477.7,941.3 460.1,940.2 442.5,938.3 425.0,935.8 407.6,932.5 390.4,928.5 373.3,923.9 356.4,918.6 339.8,912.6 323.3,905.9 307.2,898.6 291.4,890.7 275.9,882.1 260.7,872.9 246.0,863.1 231.6,852.7 217.6,841.8 204.1,830.3 191.1,818.3 178.6,805.7 166.5,792.7 155.0,779.2 144.1,765.2 133.7,750.8 123.8,736.0 114.6,720.8 106.0,705.3 98.1,689.4 90.7,673.2 84.0,656.7 78.0,640.0 72.7,623.0 68.0,605.9 64.0,588.5 60.7,571.0 58.2,553.4 56.3,535.7 55.1,518.0 54.7,500.2 54.9,482.3 55.9,464.5 57.6,446.8 60.0,429.1 63.1,411.6 66.9,394.2 71.4,376.9 76.6,359.8 82.4,343.0 88.9,326.4 96.1,310.0 104.0,294.0 112.5,278.3 121.6,262.9 131.3,247.9 141.6,233.3 152.4,219.1 163.9,205.4 175.9,192.1 188.4,179.4 201.4,167.1 214.9,155.3 228.8,144.1 243.2,133.5 258.0,123.5 273.3,114.0 288.8,105.2 304.7,97.0 321.0,89.4 337.5,82.5 354.3,76.2 371.3,70.7 388.6,65.8 406.0,61.6 423.6,58.1 441.3,55.3 459.2,53.2 477.1,51.8 495.0,51.2 513.0,51.3 530.9,52.1 548.8,53.6 566.6,55.8 584.4,58.7 602.0,62.3 619.4,66.7 636.7,71.7 653.7,77.4 670.5,83.8 687.1,90.9 703.3,98.6 719.2,107.0 734.8,116.0 750.0,125.6 764.9,135.9 779.3,146.7 793.2,158.1 806.7,170.0 819.7,182.5 832.3,195.4 844.2,208.9 855.7,222.9 866.5,237.3 876.8,252.1 886.5,267.3 895.6,282.9 904.0,298.8 911.8,315.1 919.0,331.7 925.5,348.6 931.3,365.7 936.4,383.0 940.8,400.5 944.5,418.2 947.5,436.1 949.8,454.0 951.4,472.0 952.2,490.1 952.4,508.2 951.8,526.3 950.4,544.3 948.4,562.3 945.6,580.2 942.2,598.0 938.0,615.6 933.1,633.1 927.5,650.3 921.2,667.3 914.3,684.1 906.7,700.5 898.4,716.7 889.5,732.5 880.0,747.9 869.8,762.9 859.1,777.6 847.8,791.8 835.9,805.5 823.5,818.8 810.5,831.5 797.1,843.7 783.2,855.4 768.8,866.5 753.9,877.0 738.7,887.0 723.1,896.3 707.1,905.0 690.8,913.0 674.1,920.4 657.2,927.1 640.1,933.1 622.6,938.5 605.0,943.1 587.2,947.1 569.3,950.3 551.3,952.8 533.1,954.6 514.9,955.6 496.7,955.9 478.4,955.5 460.2,954.4 442.1,952.5 424.0,949.9 406.1,946.6 388.3,942.6 370.6,937.9 353.2,932.4 336.0,926.3 319.0,919.5 302.4,912.0 286.0,903.8 270.0,895.0 254.3,885.6 239.1,875.5 224.2,864.9 209.8,853.6 195.8,841.8 182.3,829.4 169.3,816.5 156.9,803.1 145.0,789.2 133.6,774.8 122.8,760.0 112.7,744.8 103.1,729.1 94.2,713.1 85.9,696.7 78.3,680.1 71.3,663.1 65.1,645.8 59.5,628.3 54.6,610.7 50.5,592.8 47.0,574.7 44.3,556.6 42.3,538.3 41.1,520.0 40.6,501.6 40.8,483.2 41.7,464.9 43.4,446.6 45.8,428.3 48.9,410.2 52.8,392.2 57.4,374.4 62.7,356.8 68.7,339.4 75.4,322.2 82.7,305.3 90.8,288.8 99.5,272.5 108.8,256.7 118.8,241.2 129.4,226.1 140.5,211.4 152.3,197.2 164.6,183.5 177.5,170.3 190.9,157.6 204.7,145.4 219.1,133.8 233.9,122.8 249.2,112.4 264.8,102.6 280.9,93.4 297.3,84.9 314.0,77.0 331.0,69.9 348.3,63.4 365.9,57.6 383.7,52.5 401.6,48.1 419.8,44.4 438.0,41.5 456.4,39.3 474.9,37.8 493.4,37.1 511.9,37.1 530.4,37.9 548.9,39.4 567.3,41.6 585.6,44.6 603.7,48.3 621.7,52.7 639.5,57.8 657.1,63.7 674.5,70.2 691.6,77.5 708.4,85.4 724.8,94.0 740.9,103.2 756.7,113.1 772.0,123.6 786.9,134.7 801.3,146.4 815.3,158.6 828.7,171.5 841.7,184.8 854.1,198.7 865.9,213.0 877.2,227.8 887.8,243.1 897.9,258.7 907.3,274.8 916.0,291.2 924.1,308.0 931.6,325.1 938.3,342.4 944.3,360.1 949.7,377.9 954.3,396.0 958.1,414.2 961.3,432.6 963.7,451.1 965.4,469.7 966.3,488.3 966.5,506.9 965.9,525.6 964.6,544.2 962.6,562.8 959.8,581.2 956.3,599.6 952.0,617.8 947.0,635.8 941.3,653.6 934.9,671.1 927.8,688.4 920.0,705.4 911.5,722.1 902.4,738.4 892.6,754.4 882.2,769.9 871.2,785.0 859.6,799.7 847.3,813.9 834.6,827.6 821.3,840.8 807.4,853.4 793.1,865.5 778.3,877.0 763.1,887.9 747.4,898.2 731.3,907.9 714.9,916.9 698.1,925.2 680.9,932.9 663.5,939.9 645.8,946.1 627.9,951.7 609.7,956.5 591.4,960.6 572.9,964.0 554.3,966.6 535.6,968.5 516.9,969.7 498.1,970.1 479.3,969.7 460.5,968.6 441.8,966.7 423.2,964.1 404.6,960.8 386.3,956.7 368.1,951.8 350.1,946.3 332.3,940.0 314.8,933.0 297.6,925.4 280.7,917.0 264.2,908.0 248.0,898.3 232.2,888.0 216.9,877.0 202.0,865.5 187.5,853.3 173.6,840.6 160.2,827.4 147.3,813.6 134.9,799.3 123.2,784.5 112.0,769.2 101.5,753.6 91.6,737.5 82.4,721.0 73.8,704.2 65.9,687.0 58.7,669.5 52.2,651.8 46.4,633.7 41.3,615.5 36.9,597.1 33.3,578.5 30.5,559.8 28.4,541.0 27.0,522.1 26.4,503.2 26.6,484.2 27.5,465.3 29.2,446.4 31.6,427.6 34.8,408.9 38.7,390.4 43.4,372.0 48.8,353.8 54.9,335.9 61.7,318.2 69.3,300.7 77.5,283.6 86.4,266.9 96.0,250.5 106.2,234.5 117.1,218.9 128.6,203.7 140.6,189.1 153.3,174.9 166.5,161.2 180.3,148.1 194.5,135.5 209.3,123.5 224.5,112.1 240.2,101.3 256.3,91.2 272.8,81.7 289.7,72.9 306.9,64.7 324.4,57.3 342.3,50.5 360.3,44.5 378.6,39.2 397.1,34.6 415.8,30.8 434.6,27.7 453.6,25.4 472.6,23.8 491.6,23.0 510.7,22.9 529.8,23.7 548.8,25.1 567.8,27.4 586.7,30.4 605.4,34.1 624.0,38.6 642.3,43.9 660.5,49.9 678.4,56.6 696.0,64.0 713.4,72.1 730.3,80.9 747.0,90.3 763.2,100.5 779.0,111.2 794.4,122.6 809.3,134.6 823.7,147.2 837.6,160.4 851.0,174.1 863.8,188.3 876.1,203.1 887.7,218.3 898.8,234.0 909.2,250.1 918.9,266.6 928.0,283.5 936.4,300.8 944.1,318.3 951.1,336.2 957.3,354.4 962.9,372.7 967.7,391.3 971.8,410.1 975.1,429.0 977.6,448.1 979.4,467.2 980.4,486.4 980.7,505.6 980.1,524.8 978.8,544.0 976.8,563.2 974.0,582.2 970.4,601.1 966.1,619.9 961.0,638.4 955.2,656.8 948.6,674.9 941.3,692.7 933.4,710.3 924.7,727.5 915.3,744.3 905.3,760.8 894.6,776.8 883.3,792.4 871.4,807.6 858.9,822.2 845.7,836.4 832.1,850.0 817.9,863.1 803.2,875.6 788.0,887.5 772.3,898.8 756.2,909.4 739.6,919.4 722.7,928.7 705.4,937.4 687.8,945.3 669.9,952.6 651.7,959.1 633.2,964.9 614.5,969.9 595.7,974.2 576.7,977.7 557.5,980.5 538.2,982.5 518.9,983.7 499.6,984.2 480.2,983.9 460.9,982.8 441.6,980.9 422.4,978.3 403.3,974.9 384.4,970.7 365.6,965.8 347.0,960.2 328.7,953.8 310.7,946.6 292.9,938.8 275.5,930.2 258.4,921.0 241.8,911.1 225.5,900.5 209.6,889.3 194.2,877.4 179.3,865.0 164.9,851.9 151.1,838.3 137.7,824.1 125.0,809.4 112.9,794.2 101.3,778.6 90.4,762.5 80.2,745.9 70.6,729.0 61.7,711.7 53.5,694.0 46.0,676.0 39.3,657.8 33.2,639.2 28.0,620.5 23.4,601.5 19.7,582.4 16.7,563.1 14.4,543.8 13.0,524.3 12.3,504.8 12.4,485.3 13.3,465.8 15.0,446.4 17.4,427.0 20.6,407.8 24.6,388.6 29.4,369.7 34.9,351.0 41.1,332.4 48.1,314.2 55.8,296.2 64.2,278.6 73.4,261.3 83.2,244.4 93.6,227.9 104.8,211.8 116.6,196.1 128.9,181.0 141.9,166.4 155.5,152.2 169.6,138.7 184.3,125.7 199.4,113.3 215.1,101.5 231.2,90.4 247.8,79.9 264.7,70.0 282.1,60.9 299.8,52.4 317.8,44.7 336.1,37.7 354.7,31.4 373.5,25.9 392.6,21.1 411.8,17.1 431.2,13.9 450.6,11.4 470.2,9.8 489.8,8.9 509.5,8.8 529.1,9.5 548.7,10.9 568.3,13.2 587.7,16.2 607.0,20.0 626.1,24.6 645.1,29.9 663.8,36.0 682.2,42.9 700.4,50.4 718.3,58.7 735.8,67.7 752.9,77.4 769.7,87.8 786.0,98.8 801.8,110.5 817.2,122.8 832.1,135.8 846.5,149.3 860.3,163.3 873.5,178.0 886.2,193.1 898.2,208.7 909.6,224.8 920.4,241.4 930.5,258.4 939.9,275.7 948.6,293.5 956.6,311.5 963.8,329.9 970.3,348.6 976.1,367.5 981.1,386.6 985.3,405.9 988.8,425.4 991.5,445.0 993.4,464.7 994.5,484.4 994.8,504.2 994.3,524.0 993.1,543.8 991.0,563.5 988.2,583.1 984.5,602.5 980.1,621.8 975.0,641.0 969.0,659.9 962.4,678.5 954.9,696.9 946.8,715.0 937.9,732.7 928.3,750.1 918.0,767.1 907.1,783.6 895.5,799.7 883.3,815.4 870.4,830.5 857.0,845.1 843.0,859.2 828.4,872.7 813.3,885.6 797.6,897.9 781.6,909.5 765.0,920.5 748.0,930.9 730.6,940.5 712.9,949.5 694.8,957.7 676.3,965.2 657.6,972.0 638.6,978.0 619.4,983.3 600.0,987.7 580.5,991.4 560.8,994.3 540.9,996.5 521.1,997.8 501.1,998.3 481.2,998.1 461.3,997.0 441.4,995.1 421.7,992.5 402.0,989.1 382.5,984.8 363.2,979.8 344.1,974.1 325.2,967.5 306.6,960.3 288.4,952.2 270.4,943.5 252.8,934.0 235.6,923.9 218.8,913.0 202.5,901.5 186.6,889.4 171.2,876.6 156.3,863.2 142.0,849.3 128.3,834.7 115.1,819.7 102.6,804.1 90.7,788.0 79.4,771.4 68.8,754.4 58.9,737.0 49.7,719.2 41.2,701.1 33.4,682.6 26.4,663.8 20.2,644.8 14.7,625.5 9.9,606.0 6.0,586.4 2.9,566.6 0.5,546.6 -1.0,526.6 -1.8,506.6 -1.7,486.5 -0.9,466.4 0.8,446.4 3.2,426.5 6.5,406.7 10.5,387.0 15.3,367.5 20.9,348.2 27.3,329.1 34.4,310.3 42.3,291.8 50.9,273.6 60.2,255.8 70.3,238.4 81.0,221.3 92.4,204.7 104.5,188.6 117.2,173.0 130.5,157.9 144.4,143.3 158.9,129.3 173.9,115.9 189.5,103.1 205.6,90.9 222.1,79.4 239.1,68.6 256.5,58.4 274.3,48.9 292.5,40.2 311.0,32.2 329.9,24.9 349.0,18.4 368.3,12.7 387.9,7.7 407.7,3.5 427.6,0.1 447.6,-2.4 467.7,-4.2 487.9,-5.2 508.2,-5.4 528.4,-4.7 548.5,-3.3 568.6,-1.0 588.6,2.0 608.5,5.9 628.2,10.5 647.7,16.0 666.9,22.2 686.0,29.1 704.7,36.9 723.1,45.3 741.1,54.5 758.8,64.5 776.0,75.1 792.9,86.4 809.2,98.4 825.1,111.0 840.5,124.2 855.3,138.1 869.5,152.5 883.2,167.5 896.3,183.0 908.7,199.1 920.5,215.6 931.6,232.6 942.0,250.0 951.7,267.9 960.7,286.1 969.0,304.7 976.5,323.5 983.3,342.7 989.3,362.1 994.5,381.8 998.9,401.6 1002.5,421.6 1005.3,441.8 1007.4,462.0 1008.6,482.4 1008.9,502.7 1008.5,523.1 1007.3,543.4 1005.2,563.7 1002.4,583.8 998.7,603.9 994.2,623.7 989.0,643.4 982.9,662.9 976.1,682.1 968.5,701.0 960.2,719.7 951.1,737.9 941.3,755.8 930.8,773.3 919.6,790.4 907.8,807.0 895.2,823.1 882.0,838.7 868.3,853.8 853.9,868.3 838.9,882.2 823.4,895.5 807.4,908.2 790.9,920.3 773.9,931.6 756.5,942.3 738.6,952.3 720.4,961.6 701.8,970.1 682.9,977.9 663.6,984.9 644.1,991.1 624.4,996.6 604.5,1001.2 584.3,1005.1 564.1,1008.2 543.7,1010.4 523.3,1011.8 502.8,1012.5 482.3,1012.2 461.8,1011.2 441.4,1009.4 421.1,1006.7 400.9,1003.2 380.8,999.0 360.9,993.9 341.2,988.0 321.8,981.3 302.7,973.9 283.8,965.7 265.4,956.8 247.2,947.1 229.5,936.7 212.2,925.6 195.4,913.9 179.0,901.4 163.1,888.3 147.8,874.6 133.1,860.3 118.9,845.4 105.3,829.9 92.3,813.9 80.0,797.4 68.4,780.5 57.5,763.0 47.2,745.2 37.7,726.9 28.9,708.3 20.9,689.3 13.6,670.0 7.1,650.5 1.4,630.6 -3.5,610.6 -7.6,590.4 -10.9,570.1 -13.4,549.6 -15.1,529.0 -15.9,508.4 -15.9,487.8 -15.1,467.1 -13.5,446.5 -11.0,426.0 -7.7,405.6 -3.6,385.4 1.3,365.3 7.0,345.5 13.5,325.8 20.7,306.5 28.8,287.4 37.6,268.7 47.1,250.4 57.4,232.4 68.3,214.9 80.0,197.8 92.4,181.2 105.4,165.1 119.0,149.5 133.3,134.5 148.1,120.1 163.5,106.2 179.5,93.0 196.0,80.4 212.9,68.5 230.4,57.3 248.3,46.8 266.5,37.0 285.2,28.0 304.2,19.7 323.6,12.2 343.2,5.4 363.1,-0.5 383.2,-5.7 403.5,-10.1 423.9,-13.6 444.5,-16.3 465.2,-18.2 485.9,-19.3 506.7,-19.5 527.5,-18.9 548.2,-17.5 568.9,-15.3 589.5,-12.2 609.9,-8.3 630.2,-3.6 650.2,2.0 670.0,8.3 689.6,15.4 708.9,23.3 727.8,31.9 746.4,41.3 764.6,51.5 782.3,62.3 799.7,73.9 816.5,86.2 832.9,99.1 848.7,112.6 864.0,126.8 878.7,141.6 892.8,157.0 906.2,172.9 919.1,189.4 931.2,206.3 942.7,223.8 953.5,241.6 963.5,259.9 972.8,278.6 981.4,297.7 989.2,317.1 996.2,336.7 1002.4,356.7 1007.8,376.9 1012.4,397.3 1016.2,417.8 1019.2,438.5 1021.3,459.3 1022.6,480.2 1023.1,501.1 1022.7,522.0 1021.5,542.9 1019.5,563.8 1016.6,584.5 1012.9,605.1 1008.3,625.6 1003.0,645.8 996.9,665.8 989.9,685.6 982.2,705.1 973.7,724.2 964.4,743.0 954.4,761.5 943.7,779.5 932.2,797.0 920.0,814.1 907.2,830.7 893.7,846.8 879.6,862.4 864.9,877.3 849.6,891.7 833.7,905.4 817.3,918.5 800.3,930.9 782.9,942.7 765.0,953.7 746.7,964.0 728.0,973.6 708.9,982.4 689.5,990.5 669.7,997.7 649.7,1004.2 629.5,1009.9 609.0,1014.7 588.3,1018.8 567.5,1022.0 546.6,1024.3 525.6,1025.9 504.6,1026.6 483.5,1026.4 462.4,1025.4 441.5,1023.6 420.6,1020.9 399.8,1017.4 379.1,1013.1 358.7,1007.9 338.5,1002.0 318.5,995.2 298.8,987.6 279.4,979.3 260.4,970.1 241.7,960.3 223.5,949.6 205.7,938.3 188.3,926.2 171.5,913.5 155.2,900.1 139.4,886.1 124.2,871.4 109.5,856.1 95.5,840.3 82.2,823.9 69.5,807.0 57.5,789.6 46.2,771.7 35.6,753.4 25.8,734.6 16.7,715.5 8.4,696.1 0.8,676.3 -5.9,656.2 -11.8,635.9 -16.9,615.3 -21.2,594.6 -24.7,573.6 -27.3,552.6 -29.1,531.5 -30.0,510.3 -30.1,489.1 -29.3,467.9 -27.7,446.8 -25.2,425.7 -21.9,404.7 -17.8,383.9 -12.8,363.3 -7.0,342.9 -0.4,322.7 7.0,302.8 15.2,283.2 24.2,263.9 33.9,245.0 44.4,226.6 55.6,208.5 67.6,190.9 80.2,173.8 93.5,157.2 107.5,141.2 122.1,125.7 137.3,110.8 153.1,96.6 169.4,83.0 186.3,70.0 203.7,57.7 221.6,46.2 239.9,35.3 258.7,25.2 277.8,15.8 297.3,7.3 317.2,-0.5 337.3,-7.5 357.7,-13.7 378.3,-19.1 399.2,-23.6 420.2,-27.3 441.3,-30.2 462.6,-32.2 483.9,-33.4 505.2,-33.7 526.5,-33.1 547.9,-31.7 569.1,-29.5 590.2,-26.4 611.2,-22.4 632.0,-17.7 652.7,-12.1 673.1,-5.6 693.2,1.6 713.0,9.7 732.5,18.5 751.6,28.1 770.3,38.4 788.6,49.5 806.4,61.4 823.8,73.9 840.6,87.1 856.9,101.0 872.6,115.5 887.8,130.7 902.3,146.4 916.2,162.7 929.4,179.6 941.9,197.0 953.8,214.8 964.9,233.2 975.3,251.9 984.9,271.1 993.8,290.6 1001.8,310.5 1009.1,330.7 1015.5,351.2 1021.2,371.9 1025.9,392.8 1029.9,413.9 1033.0,435.2 1035.3,456.5 1036.7,478.0 1037.2,499.4 1036.9,520.9 1035.7,542.4 1033.7,563.8 1030.8,585.1 1027.1,606.3 1022.5,627.3 1017.0,648.1 1010.8,668.7 1003.7,689.0 995.9,709.0 987.2,728.7 977.7,748.1 967.5,767.0 956.5,785.6 944.8,803.6 932.4,821.2 919.3,838.3 905.5,854.9 891.0,870.9 875.9,886.3 860.2,901.1 844.0,915.2 827.2,928.7 809.8,941.5 791.9,953.6 773.6,965.0 754.8,975.7 735.7,985.6 716.1,994.7 696.2,1003.0 675.9,1010.5 655.4,1017.3 634.6,1023.1 613.6,1028.2 592.4,1032.4 571.0,1035.8 549.6,1038.3 528.0,1039.9 506.4,1040.7 484.8,1040.6 463.2,1039.6 441.6,1037.8 420.1,1035.2 398.8,1031.6 377.6,1027.2 356.6,1022.0 335.8,1015.9 315.2,1009.0 295.0,1001.3 275.1,992.8 255.5,983.5 236.3,973.4 217.6,962.6 199.2,951.0 181.4,938.7 164.1,925.6 147.2,911.9 131.0,897.6 115.3,882.6 100.3,866.9 85.8,850.7 72.1,833.9 59.0,816.6 46.6,798.8 34.9,780.4 24.0,761.7 13.9,742.5 4.5,722.9 -4.1,702.9 -11.9,682.6 -18.9,662.0 -25.0,641.2 -30.4,620.1 -34.8,598.8 -38.4,577.3 -41.2,555.7 -43.1,534.1 -44.1,512.3 -44.2,490.5 -43.5,468.8 -41.9,447.1 -39.5,425.4 -36.1,403.9 -32.0,382.5 -26.9,361.3 -21.0,340.3 -14.3,319.6 -6.8,299.1 1.6,279.0 10.7,259.2 20.7,239.8 31.4,220.8 42.9,202.2 55.1,184.1 68.0,166.5 81.6,149.5 95.9,132.9 110.8,117.0 126.4,101.7 142.5,87.0 159.3,73.0 176.6,59.6 194.4,47.0 212.7,35.0 231.5,23.8 250.7,13.4 270.3,3.7 290.3,-5.1 310.7,-13.2 331.3,-20.5 352.2,-26.9 373.4,-32.4 394.8,-37.2 416.3,-41.0 438.0,-44.0 459.8,-46.2 481.7,-47.4 503.6,-47.8 525.5,-47.3 547.4,-46.0 569.2,-43.7 590.9,-40.6 612.5,-36.6 633.8,-31.8 655.0,-26.1 676.0,-19.6 696.6,-12.2 717.0,-4.0 737.0,5.0 756.7,14.8 775.9,25.4 794.7,36.7 813.1,48.8 830.9,61.6 848.2,75.1 865.0,89.3 881.2,104.2 896.8,119.7 911.7,135.8 926.1,152.5 939.7,169.7 952.6,187.5 964.8,205.8 976.3,224.6 987.0,243.8 996.9,263.5 1006.1,283.5 1014.4,303.9 1021.9,324.6 1028.6,345.6 1034.5,366.8 1039.4,388.3 1043.6,409.9 1046.8,431.7 1049.2,453.6 1050.7,475.6 1051.3,497.7 1051.1,519.7 1049.9,541.8 1047.9,563.7 1045.0,585.6 1041.2,607.3 1036.6,628.9 1031.1,650.3 1024.8,671.4 1017.6,692.3 1009.6,712.9 1000.7,733.1 991.1,753.0 980.6,772.5 969.4,791.6 957.5,810.1 944.8,828.2 931.4,845.8 917.3,862.9 902.5,879.3 887.1,895.2 871.0,910.4 854.3,925.0 837.1,938.9 819.4,952.1 801.1,964.6 782.3,976.3 763.1,987.3 743.4,997.5 723.4,1006.9 702.9,1015.5 682.2,1023.3 661.1,1030.3 639.8,1036.4 618.3,1041.6 596.6,1046.0 574.7,1049.5 552.6,1052.2 530.5,1053.9 508.3,1054.8 486.1,1054.8 464.0,1053.9 441.8,1052.1 419.8,1049.4 397.9,1045.8 376.1,1041.4 354.5,1036.1 333.2,1029.9 312.1,1022.9 291.3,1015.1 270.8,1006.4 250.7,996.9 231.0,986.6 211.7,975.6 192.9,963.7 174.5,951.1 156.7,937.8 139.4,923.8 122.7,909.1 106.6,893.8 91.1,877.8 76.2,861.2 62.0,844.0 48.6,826.3 35.8,808.0 23.8,789.2 12.5,770.0 2.0,750.3 -7.7,730.3 -16.6,709.8 -24.6,689.0 -31.9,667.9 -38.2,646.5 -43.7,624.9 -48.4,603.1 -52.2,581.1 -55.1,559.0 -57.1,536.7 -58.2,514.4 -58.4,492.1 -57.7,469.8 -56.2,447.5 -53.7,425.3 -50.4,403.2 -46.1,381.2 -41.0,359.4 -35.1,337.9 -28.2,316.6 -20.6,295.6 -12.1,274.9 -2.7,254.6 7.4,234.6 18.3,215.1 30.0,196.0 42.5,177.4 55.7,159.3 69.6,141.7 84.2,124.8 99.5,108.4 115.4,92.6 131.9,77.5 149.1,63.0 166.8,49.3 185.0,36.2 203.8,23.9 223.0,12.4 242.7,1.6 262.8,-8.3 283.3,-17.5 304.1,-25.8 325.3,-33.3 346.7,-40.0 368.4,-45.8 390.3,-50.7 412.4,-54.7 434.6,-57.9 457.0,-60.1 479.4,-61.5 501.9,-62.0 524.4,-61.5 546.8,-60.2 569.2,-58.0 591.5,-54.8 613.6,-50.8 635.6,-45.9 657.3,-40.2 678.8,-33.5 700.0,-26.0 720.9,-17.7 741.5,-8.5 761.7,1.5 781.5,12.3 800.8,23.8 819.6,36.2 838.0,49.2 855.8,63.0 873.0,77.6 889.7,92.7 905.7,108.6 921.1,125.1 935.9,142.2 949.9,159.8 963.2,178.0 975.8,196.8 987.6,216.0 998.7,235.7 1008.9,255.8 1018.4,276.3 1027.0,297.2 1034.7,318.4 1041.7,339.9 1047.7,361.7 1052.9,383.6 1057.2,405.8 1060.6,428.2 1063.1,450.6 1064.7,473.2 1065.5,495.8 1065.3,518.4 1064.2,541.0 1062.2,563.6 1059.3,586.0 1055.5,608.3 1050.8,630.5 1045.2,652.4 1038.8,674.1 1031.4,695.6 1023.3,716.7 1014.3,737.5 1004.5,757.9 993.8,777.9 982.4,797.5 970.2,816.6 957.2,835.2 943.5,853.2 929.1,870.8 914.0,887.7 898.2,904.0 881.8,919.7 864.8,934.7 847.2,949.0 829.0,962.6 810.3,975.4 791.1,987.5 771.4,998.9 751.2,1009.4 730.7,1019.1 709.8,1028.0 688.5,1036.1 667.0,1043.3 645.2,1049.6 623.1,1055.0 600.8,1059.6 578.4,1063.3 555.8,1066.1 533.1,1067.9 510.4,1068.9 487.6,1068.9 464.9,1068.1 442.2,1066.3 419.5,1063.6 397.1,1060.0 374.7,1055.6 352.6,1050.2 330.7,1044.0 309.0,1036.8 287.7,1028.8 266.7,1020.0 246.0,1010.3 225.8,999.9 205.9,988.6 186.6,976.5 167.7,963.7 149.4,950.1 131.6,935.8 114.4,920.7 97.9,905.1 81.9,888.7 66.6,871.7 52.0,854.2 38.2,836.0 25.0,817.3 12.6,798.1 1.0,778.5 -9.8,758.3 -19.8,737.8 -29.0,716.8 -37.3,695.5 -44.8,673.9 -51.4,652.0 -57.1,629.9 -61.9,607.5 -65.9,584.9 -68.9,562.3 -71.0,539.5 -72.2,516.6 -72.5,493.7 -71.9,470.8 -70.4,448.0 -67.9,425.2 -64.6,402.5 -60.3,380.0 -55.2,357.7 -49.1,335.5 -42.2,313.7 -34.4,292.1 -25.7,270.9 -16.2,250.0 -5.9,229.5 5.3,209.5 17.2,189.9 29.9,170.7 43.4,152.2 57.6,134.1 72.5,116.7 88.1,99.8 104.4,83.6 121.3,68.0 138.8,53.2 156.9,39.0 175.6,25.6 194.8,12.9 214.4,1.0 234.6,-10.1 255.1,-20.4 276.1,-29.8 297.5,-38.4 319.1,-46.2 341.1,-53.1 363.3,-59.1 385.8,-64.2 408.4,-68.4 431.2,-71.7 454.1,-74.1 477.1,-75.5 500.1,-76.1 523.2,-75.7 546.2,-74.4 569.1,-72.2 592.0,-69.1 614.7,-65.0 637.2,-60.1 659.5,-54.2 681.6,-47.5 703.3,-39.9 724.8,-31.4 745.9,-22.1 766.6,-11.9 786.9,-0.9 806.8,10.9 826.1,23.5 845.0,36.8 863.3,50.9 881.0,65.8 898.1,81.3 914.6,97.5 930.5,114.3 945.6,131.8 960.1,149.8 973.8,168.5 986.7,187.6 998.9,207.3 1010.3,227.4 1020.9,248.0 1030.6,269.0 1039.5,290.4 1047.5,312.1 1054.7,334.1 1061.0,356.4 1066.4,378.9 1070.8,401.7 1074.4,424.6 1077.0,447.6 1078.8,470.7 1079.6,493.9 1079.4,517.0 1078.4,540.2 1076.4,563.3 1073.5,586.3 1069.7,609.2 1064.9,631.9 1059.3,654.4 1052.8,676.7 1045.3,698.7 1037.0,720.4 1027.9,741.7 1017.9,762.7 1007.0,783.2 995.4,803.3 982.9,822.9 969.7,842.0 955.7,860.6 941.0,878.6 925.6,896.0 909.5,912.8 892.7,928.9 875.3,944.3 857.3,959.0 838.7,973.0 819.5,986.3 799.9,998.7 779.8,1010.4 759.2,1021.2 738.1,1031.3 716.7,1040.5 695.0,1048.8 672.9,1056.2 650.6,1062.8 627.9,1068.4 605.1,1073.2 582.1,1077.0 559.0,1079.9 535.8,1081.9 512.5,1083.0 489.1,1083.1 465.8,1082.3 442.6,1080.5 419.4,1077.9 396.3,1074.3 373.4,1069.8 350.7,1064.3 328.2,1058.0 306.0,1050.8 284.1,1042.7 262.6,1033.7 241.4,1023.8 220.6,1013.1 200.3,1001.6 180.4,989.3 161.0,976.2 142.2,962.4 123.9,947.8 106.3,932.4 89.2,916.4 72.8,899.7 57.1,882.4 42.1,864.4 27.8,845.8 14.3,826.7 1.6,807.1 -10.4,787.0 -21.5,766.4 -31.9,745.3 -41.3,723.9 -49.9,702.1 -57.7,680.0 -64.5,657.6 -70.4,634.9 -75.5,612.0 -79.6,588.9 -82.8,565.7 -85.0,542.3 -86.3,518.9 -86.7,495.4 -86.1,472.0 -84.6,448.5 -82.2,425.2 -78.8,401.9 -74.5,378.9 -69.3,356.0 -63.2,333.3 -56.1,310.9 -48.2,288.7 -39.4,267.0 -29.8,245.5 -19.2,224.5 -7.9,203.9 4.3,183.8 17.3,164.2 31.0,145.1 45.5,126.6 60.7,108.6 76.7,91.3 93.3,74.6 110.6,58.6 128.5,43.4 147.0,28.8 166.0,15.0 185.7,1.9 205.8,-10.3 226.4,-21.7 247.4,-32.4 268.9,-42.1 290.7,-51.0 312.9,-59.0 335.4,-66.1 358.1,-72.4 381.1,-77.7 404.3,-82.0 427.6,-85.5 451.1,-88.0 474.6,-89.6 498.2,-90.2 521.8,-89.9 545.4,-88.7 568.9,-86.5 592.3,-83.3 615.6,-79.2 638.7,-74.2 661.6,-68.3 684.2,-61.5 706.6,-53.8 728.6,-45.1 750.2,-35.6 771.5,-25.3 792.3,-14.1 812.7,-2.1 832.6,10.8 851.9,24.4 870.7,38.8 888.9,53.9 906.5,69.7 923.5,86.3 939.7,103.5 955.3,121.3 970.2,139.8 984.3,158.8 997.6,178.4 1010.1,198.5 1021.9,219.1 1032.8,240.2 1042.8,261.6 1052.0,283.5 1060.3,305.7 1067.7,328.3 1074.2,351.1 1079.8,374.1 1084.4,397.4 1088.2,420.8 1090.9,444.4 1092.8,468.1 1093.7,491.8 1093.6,515.6 1092.6,539.3 1090.7,563.0 1087.8,586.6 1083.9,610.0 1079.1,633.3 1073.4,656.4 1066.8,679.2 1059.3,701.8 1050.8,724.0 1041.5,745.9 1031.3,767.4 1020.3,788.5 1008.4,809.1 995.7,829.2 982.2,848.8 968.0,867.9 953.0,886.4 937.2,904.2 920.8,921.4 903.6,938.0 885.8,953.9 867.4,969.0 848.5,983.4 828.9,997.0 808.8,1009.8 788.2,1021.9 767.1,1033.1 745.7,1043.4 723.8,1052.9 701.5,1061.5 678.9,1069.1 656.0,1075.9 632.9,1081.8 609.5,1086.7 586.0,1090.7 562.3,1093.8 538.5,1095.9 514.7,1097.1 490.8,1097.3 466.9,1096.5 443.1,1094.8 419.3,1092.1 395.7,1088.5 372.2,1084.0 348.9,1078.5 325.9,1072.1 303.1,1064.7 280.7,1056.5 258.6,1047.3 236.8,1037.3 215.5,1026.5 194.6,1014.7 174.3,1002.2 154.4,988.8 135.1,974.7 116.3,959.8 98.2,944.2 80.7,927.8 63.8,910.7 47.7,893.0 32.3,874.7 17.6,855.7 3.7,836.2 -9.5,816.1 -21.8,795.6 -33.3,774.5 -43.9,753.0 -53.7,731.1 -62.5,708.8 -70.5,686.1 -77.6,663.2 -83.7,640.0 -89.0,616.6 -93.2,592.9 -96.6,569.1 -99.0,545.2 -100.4,521.2 -100.8,497.2 -100.3,473.2 -98.9,449.2 -96.4,425.3 -93.1,401.5 -88.7,377.8 -83.5,354.4 -77.3,331.1 -70.1,308.1 -62.1,285.5 -53.1,263.1 -43.3,241.1 -32.6,219.6 -21.0,198.5 -8.6,177.8 4.6,157.7 18.6,138.1 33.4,119.1 48.9,100.7 65.2,82.9 82.1,65.8 99.8,49.3 118.1,33.6 137.0,18.6 156.5,4.4 176.5,-9.0 197.1,-21.6 218.1,-33.4 239.6,-44.3 261.6,-54.4 283.9,-63.5 306.6,-71.8 329.6,-79.2 352.9,-85.6 376.4,-91.1 400.1,-95.7 424.0,-99.3 448.0,-101.9 472.1,-103.6 496.3,-104.3 520.4,-104.1 544.6,-102.9 568.7,-100.7 592.7,-97.6 616.5,-93.5 640.2,-88.4 663.6,-82.4 686.8,-75.5 709.7,-67.7 732.3,-58.9 754.5,-49.3 776.3,-38.7 797.6,-27.3 818.5,-15.1 838.9,-2.0 858.8,11.9 878.1,26.5 896.7,42.0 914.8,58.1 932.2,75.0 948.9,92.6 964.9,110.8 980.2,129.6 994.7,149.1 1008.4,169.1 1021.3,189.7 1033.4,210.7 1044.6,232.2 1055.0,254.2 1064.4,276.5 1073.0,299.3 1080.7,322.3 1087.4,345.6 1093.2,369.2 1098.0,393.1 1101.9,417.0 1104.8,441.2 1106.8,465.4 1107.8,489.7 1107.8,514.0 1106.8,538.3 1104.9,562.5 1102.0,586.7 1098.1,610.7 1093.3,634.6 1087.6,658.2 1080.9,681.6 1073.2,704.7 1064.6,727.5 1055.2,749.9 1044.8,772.0 1033.6,793.6 1021.5,814.8 1008.6,835.4 994.8,855.5 980.3,875.1 965.0,894.0 948.9,912.4 932.1,930.1 914.6,947.1 896.5,963.4 877.7,978.9 858.3,993.7 838.3,1007.7 817.8,1020.9 796.7,1033.3 775.2,1044.8 753.2,1055.5 730.9,1065.2 708.1,1074.1 685.0,1082.0 661.6,1089.1 637.9,1095.1 614.1,1100.3 590.0,1104.4 565.7,1107.6 541.4,1109.9 517.0,1111.1 492.5,1111.4 468.1,1110.7 443.7,1109.0 419.3,1106.4 395.1,1102.8 371.1,1098.2 347.3,1092.6 323.7,1086.1 300.3,1078.7 277.3,1070.3 254.7,1061.1 232.4,1050.9 210.5,1039.8 189.1,1027.9 168.2,1015.1 147.8,1001.5 128.0,987.1 108.8,971.9 90.1,955.9 72.2,939.2 54.9,921.8 38.3,903.8 22.5,885.0 7.4,865.7 -6.9,845.7 -20.4,825.2 -33.1,804.2 -44.9,782.7 -55.9,760.7 -65.9,738.3 -75.1,715.5 -83.3,692.4 -90.7,668.9 -97.0,645.2 -102.4,621.2 -106.9,597.0 -110.4,572.7 -112.9,548.2 -114.4,523.7 -115.0,499.1 -114.5,474.5 -113.1,450.0 -110.7,425.5 -107.3,401.1 -103.0,376.9 -97.7,352.8 -91.4,329.0 -84.2,305.5 -76.0,282.2 -66.9,259.4 -56.9,236.8 -46.0,214.7 -34.3,193.1 -21.6,171.9 -8.2,151.3 6.1,131.2 21.2,111.7 37.0,92.8 53.6,74.5 70.9,56.9 88.9,40.1 107.6,23.9 126.9,8.5 146.8,-6.1 167.3,-19.9 188.3,-32.8 209.8,-44.9 231.8,-56.2 254.2,-66.6 277.0,-76.0 300.2,-84.6 323.7,-92.2 347.5,-98.8 371.6,-104.5 395.8,-109.3 420.3,-113.0 444.8,-115.8 469.5,-117.6 494.2,-118.5 519.0,-118.3 543.7,-117.1 568.3,-115.0 592.9,-111.8 617.3,-107.7 641.5,-102.6 665.5,-96.6 689.3,-89.6 712.7,-81.6 735.8,-72.7 758.6,-62.9 780.9,-52.2 802.8,-40.6 824.3,-28.1 845.2,-14.8 865.5,-0.7 885.3,14.3 904.5,30.0 923.0,46.5 940.9,63.7 958.1,81.6 974.5,100.2 990.2,119.5 1005.1,139.3 1019.2,159.7 1032.4,180.7 1044.9,202.2 1056.4,224.2 1067.1,246.7 1076.8,269.5 1085.7,292.7 1093.6,316.3 1100.5,340.1 1106.5,364.3 1111.6,388.6 1115.6,413.1 1118.7,437.8 1120.8,462.6 1121.9,487.5 1122.0,512.3 1121.1,537.2 1119.2,562.0 1116.3,586.8 1112.4,611.3 1107.5,635.8 1101.7,660.0 1094.9,683.9 1087.2,707.6 1078.5,731.0 1068.9,753.9 1058.3,776.5 1046.9,798.7 1034.6,820.4 1021.5,841.5 1007.5,862.2 992.6,882.2 977.0,901.7 960.6,920.5 943.5,938.6 925.7,956.1 907.2,972.8 888.0,988.8 868.2,1004.0 847.8,1018.4 826.8,1031.9 805.3,1044.7 783.4,1056.5 760.9,1067.5 738.0,1077.6 714.8,1086.7 691.2,1094.9 667.3,1102.2 643.1,1108.5 618.6,1113.8 594.0,1118.1 569.2,1121.5 544.3,1123.8 519.4,1125.2 494.3,1125.6 469.3,1124.9 444.3,1123.3 419.5,1120.7 394.7,1117.0 370.1,1112.4 345.7,1106.8 321.5,1100.2 297.6,1092.7 274.0,1084.2 250.8,1074.8 228.0,1064.5 205.6,1053.2 183.7,1041.1 162.2,1028.1 141.3,1014.2 121.0,999.5 101.3,984.0 82.2,967.8 63.7,950.8 46.0,933.0 29.0,914.6 12.7,895.5 -2.8,875.7 -17.5,855.4 -31.4,834.4 -44.4,813.0 -56.5,791.0 -67.8,768.5 -78.2,745.6 -87.6,722.4 -96.1,698.7 -103.7,674.7 -110.3,650.5 -115.9,626.0 -120.5,601.3 -124.2,576.4 -126.8,551.4 -128.5,526.3 -129.1,501.1 -128.7,475.9 -127.4,450.8 -125.0,425.7 -121.6,400.8 -117.2,376.0 -111.9,351.4 -105.5,327.0 -98.2,302.9 -89.9,279.1 -80.7,255.7 -70.5,232.6 -59.5,210.0 -47.5,187.8 -34.7,166.1 -21.0,144.9 -6.4,124.3 8.9,104.3 25.1,84.9 42.0,66.2 59.7,48.2 78.0,30.9 97.1,14.3 116.7,-1.5 137.1,-16.5 158.0,-30.7 179.4,-44.0 201.4,-56.5 223.8,-68.0 246.7,-78.7 270.0,-88.5 293.7,-97.3 317.7,-105.1 342.1,-112.0 366.6,-117.9 391.5,-122.9 416.4,-126.8 441.6,-129.7 466.8,-131.6 492.1,-132.6 517.4,-132.5 542.7,-131.4 567.9,-129.2 593.0,-126.1 618.0,-122.0 642.8,-116.8 667.4,-110.7 691.7,-103.6 715.7,-95.6 739.4,-86.5 762.7,-76.6 785.6,-65.7 808.0,-53.9 829.9,-41.2 851.4,-27.7 872.2,-13.3 892.5,1.9 912.2,18.0 931.2,34.8 949.5,52.3 967.1,70.6 984.0,89.6 1000.1,109.2 1015.4,129.5 1029.9,150.3 1043.5,171.7 1056.3,193.7 1068.2,216.1 1079.1,239.0 1089.2,262.4 1098.3,286.1 1106.5,310.2 1113.7,334.6 1119.9,359.2 1125.1,384.1 1129.3,409.2 1132.5,434.4 1134.8,459.7 1135.9,485.2 1136.1,510.6 1135.3,536.0 1133.4,561.4 1130.5,586.7 1126.7,611.9 1121.8,636.9 1115.9,661.6 1109.0,686.2 1101.2,710.4 1092.4,734.3 1082.6,757.8 1071.9,781.0 1060.3,803.7 1047.8,825.9 1034.4,847.6 1020.1,868.7 1005.0,889.3 989.1,909.2 972.5,928.5 955.0,947.1 936.8,965.0 917.9,982.2 898.4,998.6 878.2,1014.2 857.4,1029.0 836.0,1042.9 814.0,1056.0 791.6,1068.2 768.7,1079.5 745.3,1089.8 721.6,1099.3 697.4,1107.7 673.0,1115.2 648.3,1121.7 623.3,1127.3 598.2,1131.8 572.8,1135.3 547.4,1137.8 521.8,1139.3 496.2,1139.7 470.7,1139.1 445.1,1137.5 419.7,1134.9 394.3,1131.3 369.1,1126.7 344.2,1121.0 319.4,1114.4 295.0,1106.7 270.8,1098.1 247.1,1088.6 223.7,1078.1 200.8,1066.6 178.3,1054.3 156.3,1041.1 134.9,1027.0 114.1,1012.0 93.9,996.2 74.3,979.7 55.4,962.3 37.2,944.2 19.7,925.4 3.0,906.0 -12.9,885.8 -28.0,865.0 -42.2,843.7 -55.6,821.8 -68.1,799.3 -79.7,776.4 -90.4,753.0 -100.1,729.3 -108.9,705.1 -116.7,680.6 -123.5,655.8 -129.3,630.8 -134.1,605.5 -137.9,580.1 -140.7,554.5 -142.5,528.9 -143.2,503.2 -142.9,477.4 -141.6,451.7 -139.2,426.1 -135.9,400.6 -131.5,375.2 -126.1,350.1 -119.7,325.1 -112.3,300.5 -103.9,276.1 -94.5,252.1 -84.2,228.5 -73.0,205.3 -60.8,182.6 -47.7,160.4 -33.8,138.7 -19.0,117.6 -3.3,97.1 13.1,77.2 30.3,58.0 48.3,39.5 67.0,21.7 86.5,4.7 106.5,-11.5 127.3,-26.9 148.6,-41.4 170.5,-55.1 192.9,-67.9 215.8,-79.8 239.2,-90.8 263.0,-100.9 287.2,-110.0 311.7,-118.1 336.5,-125.2 361.7,-131.3 387.0,-136.4 412.5,-140.5 438.2,-143.6 464.0,-145.6 489.8,-146.7 515.7,-146.6 541.6,-145.6 567.3,-143.5 593.0,-140.4 618.6,-136.2 644.0,-131.1 669.1,-124.9 694.0,-117.7 718.6,-109.6 742.8,-100.4 766.6,-90.3 790.1,-79.2 813.1,-67.3 835.5,-54.4 857.5,-40.6 878.9,-25.9 899.6,-10.4 919.8,5.9 939.3,23.0 958.1,40.9 976.1,59.5 993.4,78.9 1009.9,98.9 1025.7,119.5 1040.5,140.8 1054.5,162.7 1067.7,185.1 1079.9,208.0 1091.2,231.4 1101.5,255.2 1110.9,279.4 1119.3,304.0 1126.8,328.9 1133.2,354.1 1138.6,379.5 1143.0,405.1 1146.4,430.9 1148.7,456.8 1150.0,482.8 1150.3,508.8 1149.5,534.8 1147.7,560.7 1144.8,586.6 1140.9,612.3 1136.0,637.9 1130.1,663.2 1123.1,688.3 1115.2,713.1 1106.3,737.6 1096.4,761.7 1085.5,785.3 1073.7,808.6 1061.0,831.3 1047.4,853.5 1032.9,875.2 1017.5,896.2 1001.3,916.7 984.3,936.5 966.5,955.5 948.0,973.9 928.8,991.5 908.8,1008.3 888.2,1024.3 867.0,1039.5 845.2,1053.8 822.8,1067.3 799.9,1079.8 776.5,1091.4 752.7,1102.1 728.4,1111.8 703.8,1120.5 678.8,1128.3 653.6,1135.0 628.1,1140.7 602.4,1145.4 576.5,1149.1 550.5,1151.7 524.4,1153.3 498.2,1153.8 472.1,1153.3 446.0,1151.8 420.0,1149.2 394.0,1145.6 368.3,1140.9 342.7,1135.2 317.4,1128.5 292.4,1120.8 267.7,1112.1 243.4,1102.4 219.5,1091.7 196.0,1080.1 173.0,1067.6 150.5,1054.1 128.6,1039.8 107.3,1024.6 86.5,1008.5 66.5,991.6 47.1,974.0 28.4,955.5 10.5,936.4 -6.6,916.5 -22.9,896.0 -38.4,874.8 -53.0,853.0 -66.8,830.7 -79.6,807.8 -91.6,784.4 -102.5,760.5 -112.6,736.3 -121.6,711.6 -129.7,686.6 -136.7,661.3 -142.7,635.7 -147.7,609.9 -151.7,584.0 -154.6,557.8 -156.5,531.6 -157.3,505.3 -157.1,479.0 -155.8,452.8 -153.5,426.6 -150.1,400.5 -145.7,374.6 -140.3,348.8 -133.8,323.3 -126.3,298.1 -117.8,273.2 -108.4,248.6 -97.9,224.4 -86.5,200.7 -74.1,177.4 -60.8,154.7 -46.7,132.5 -31.6,110.9 -15.7,89.9 1.1,69.5 18.6,49.8 36.9,30.9 56.0,12.7 75.8,-4.8 96.3,-21.4 117.4,-37.2 139.1,-52.1 161.4,-66.2 184.3,-79.4 207.7,-91.6 231.5,-102.9 255.8,-113.2 280.5,-122.6 305.6,-131.0 330.9,-138.3 356.6,-144.7 382.5,-150.0 408.5,-154.2 434.8,-157.5 461.1,-159.6 487.5,-160.8 513.9,-160.8 540.4,-159.8 566.7,-157.8 593.0,-154.7 619.1,-150.5 645.0,-145.3 670.8,-139.1 696.2,-131.8 721.3,-123.6 746.1,-114.3 770.5,-104.0 794.5,-92.8 818.0,-80.6 841.0,-67.5 863.5,-53.5 885.4,-38.6 906.7,-22.8 927.3,-6.2 947.3,11.2 966.6,29.4 985.1,48.4 1002.8,68.1 1019.7,88.5 1035.9,109.5 1051.1,131.2 1065.5,153.5 1079.0,176.4 1091.5,199.7 1103.2,223.6 1113.8,247.9 1123.5,272.6 1132.2,297.7 1139.8,323.1 1146.5,348.8 1152.1,374.8 1156.7,400.9 1160.2,427.3 1162.7,453.7 1164.1,480.3 1164.4,506.8 1163.7,533.4 1161.9,559.9 1159.1,586.4 1155.2,612.7 1150.3,638.8 1144.3,664.7 1137.3,690.4 1129.2,715.7 1120.2,740.8 1110.1,765.4 1099.1,789.6 1087.1,813.4 1074.2,836.7 1060.4,859.4 1045.6,881.6 1030.0,903.2 1013.5,924.1 996.2,944.3 978.1,963.9 959.3,982.7 939.6,1000.8 919.3,1018.0 898.3,1034.4 876.7,1050.0 854.4,1064.7 831.6,1078.5 808.3,1091.4 784.4,1103.3 760.1,1114.3 735.3,1124.3 710.2,1133.3 684.8,1141.3 659.0,1148.2 632.9,1154.2 606.7,1159.0 580.3,1162.9 553.7,1165.6 527.0,1167.3 500.3,1168.0 473.6,1167.5 446.9,1166.0 420.3,1163.5 393.9,1159.9 367.5,1155.2 341.4,1149.4 315.6,1142.7 290.0,1134.9 264.7,1126.0 239.8,1116.2 215.4,1105.4 191.3,1093.6 167.8,1080.9 144.8,1067.2 122.3,1052.6 100.5,1037.1 79.3,1020.8 58.7,1003.6 38.9,985.6 19.8,966.9 1.4,947.4 -16.1,927.1 -32.9,906.2 -48.8,884.6 -63.8,862.4 -77.9,839.6 -91.1,816.3 -103.4,792.4 -114.7,768.1 -125.0,743.3 -134.3,718.2 -142.6,692.7 -149.9,666.8 -156.1,640.7 -161.3,614.4 -165.4,587.9 -168.5,561.2 -170.5,534.4 -171.4,507.6 -171.3,480.7 -170.1,453.9 -167.8,427.1 -164.4,400.5 -160.0,374.0 -154.5,347.6 -148.0,321.6 -140.4,295.8 -131.8,270.3 -122.2,245.2 -111.6,220.5 -100.0,196.2 -87.5,172.4 -74.0,149.1 -59.6,126.4 -44.3,104.3 -28.1,82.8 -11.0,61.9 6.8,41.8 25.5,22.3 44.9,3.7 65.1,-14.2 85.9,-31.2 107.4,-47.4 129.6,-62.8 152.3,-77.2 175.7,-90.7 199.5,-103.3 223.8,-114.9 248.6,-125.6 273.8,-135.2 299.4,-143.8 325.2,-151.4 351.4,-158.0 377.8,-163.5 404.4,-167.9 431.2,-171.3 458.1,-173.6 485.1,-174.8 512.1,-175.0 539.1,-174.0 566.0,-172.0 592.8,-168.9 619.5,-164.8 646.0,-159.6 672.3,-153.3 698.3,-146.0 724.0,-137.6 749.4,-128.2 774.3,-117.8 798.9,-106.4 822.9,-94.1 846.5,-80.8 869.5,-66.5 891.9,-51.4 913.7,-35.3 934.8,-18.4 955.2,-0.7 975.0,17.9 993.9,37.2 1012.1,57.2 1029.5,78.0 1046.0,99.5 1061.7,121.6 1076.4,144.3 1090.3,167.6 1103.2,191.4 1115.1,215.7 1126.1,240.5 1136.0,265.7 1145.0,291.3 1152.9,317.3 1159.8,343.5 1165.6,370.0 1170.3,396.7 1174.0,423.6 1176.6,450.6 1178.1,477.7 1178.6,504.8 1177.9,532.0 1176.2,559.1 1173.4,586.1 1169.5,612.9 1164.5,639.6 1158.5,666.1 1151.4,692.3 1143.3,718.3 1134.1,743.9 1124.0,769.0 1112.8,793.8 1100.6,818.1 1087.5,841.9 1073.4,865.2 1058.4,887.9 1042.6,910.0 1025.8,931.4 1008.2,952.1 989.8,972.2 970.6,991.4 950.6,1009.9 929.9,1027.6 908.5,1044.5 886.5,1060.4 863.8,1075.5 840.5,1089.7 816.7,1102.9 792.4,1115.2 767.6,1126.5 742.4,1136.7 716.7,1146.0 690.7,1154.2 664.5,1161.4 637.9,1167.6 611.1,1172.6 584.1,1176.6 557.0,1179.5 529.8,1181.4 502.5,1182.1 475.2,1181.8 448.0,1180.3 420.8,1177.8 393.8,1174.1 366.9,1169.5 340.2,1163.7 313.7,1156.8 287.6,1149.0 261.8,1140.0 236.3,1130.1 211.3,1119.1 186.8,1107.1 162.7,1094.2 139.1,1080.3 116.2,1065.5 93.8,1049.8 72.1,1033.2 51.1,1015.7 30.7,997.4 11.2,978.3 -7.6,958.4 -25.6,937.8 -42.8,916.5 -59.1,894.5 -74.5,871.9 -89.0,848.7 -102.5,824.9 -115.1,800.6 -126.7,775.8 -137.3,750.5 -146.9,724.8 -155.5,698.8 -163.0,672.5 -169.5,645.8 -174.9,619.0 -179.2,591.9 -182.4,564.7 -184.5,537.3 -185.5,509.9 -185.5,482.5 -184.3,455.1 -182.1,427.8 -178.7,400.5 -174.3,373.5 -168.8,346.6 -162.2,319.9 -154.6,293.6 -145.9,267.5 -136.1,241.8 -125.4,216.6 -113.6,191.8 -100.9,167.4 -87.2,143.6 -72.5,120.4 -57.0,97.7 -40.5,75.7 -23.2,54.4 -5.0,33.8 14.0,13.9 33.7,-5.2 54.3,-23.6 75.5,-41.0 97.4,-57.7 120.0,-73.4 143.2,-88.2 166.9,-102.1 191.2,-115.0 216.1,-126.9 241.3,-137.9 267.0,-147.8 293.1,-156.7 319.5,-164.5 346.2,-171.3 373.1,-177.0 400.3,-181.6 427.6,-185.1 455.0,-187.6 482.6,-188.9 510.1,-189.1 537.7,-188.3 565.2,-186.3 592.6,-183.2 619.9,-179.1 646.9,-173.8 673.8,-167.5 700.4,-160.1 726.6,-151.7 752.6,-142.1 778.1,-131.6 803.1,-120.1 827.7,-107.5 851.8,-94.0 875.3,-79.6 898.3,-64.2 920.6,-47.8 942.2,-30.7 963.1,-12.6 983.3,6.2 1002.7,25.9 1021.4,46.3 1039.2,67.5 1056.1,89.3 1072.1,111.9 1087.3,135.0 1101.5,158.7 1114.7,183.0 1127.0,207.8 1138.3,233.1 1148.5,258.8 1157.7,284.9 1165.9,311.3 1173.0,338.1 1179.0,365.1 1184.0,392.4 1187.8,419.8 1190.5,447.4 1192.2,475.0 1192.7,502.7 1192.2,530.4 1190.5,558.1 1187.7,585.7 1183.8,613.1 1178.8,640.4 1172.7,667.4 1165.6,694.2 1157.4,720.7 1148.1,746.9 1137.8,772.6 1126.5,797.9 1114.1,822.8 1100.8,847.1 1086.5,870.9 1071.3,894.1 1055.2,916.7 1038.1,938.7 1020.2,959.9 1001.5,980.4 981.9,1000.1 961.6,1019.1 940.5,1037.2 918.8,1054.4 896.3,1070.8 873.2,1086.3 849.5,1100.8 825.2,1114.4 800.5,1127.0 775.2,1138.6 749.5,1149.2 723.3,1158.7 696.8,1167.2 670.0,1174.6 642.9,1181.0 615.6,1186.2 588.1,1190.4 560.4,1193.4 532.6,1195.4 504.8,1196.2 476.9,1195.9 449.1,1194.6 421.4,1192.1 393.8,1188.4 366.3,1183.7 339.0,1177.9 312.0,1171.0 285.3,1163.1 258.9,1154.0 232.9,1144.0 207.4,1132.8 182.3,1120.7 157.6,1107.6 133.6,1093.5 110.1,1078.4 87.2,1062.5 65.0,1045.6 43.5,1027.8 22.7,1009.2 2.6,989.8 -16.6,969.5 -35.1,948.6 -52.7,926.9 -69.4,904.5 -85.2,881.4 -100.0,857.8 -113.9,833.5 -126.8,808.8 -138.8,783.5 -149.7,757.7 -159.6,731.6 -168.4,705.0 -176.1,678.2 -182.8,651.0 -188.4,623.6 -192.9,596.0 -196.2,568.2 -198.5,540.3 -199.6,512.4 -199.7,484.4 -198.6,456.4 -196.4,428.5 -193.0,400.7 -188.6,373.0 -183.1,345.6 -176.4,318.4 -168.7,291.4 -159.9,264.8 -150.1,238.6 -139.2,212.8 -127.3,187.4 -114.3,162.5 -100.4,138.2 -85.5,114.4 -69.7,91.3 -53.0,68.7 -35.4,46.9 -16.9,25.8 2.4,5.5 22.5,-14.1 43.4,-32.9 65.0,-50.8 87.3,-67.8 110.3,-83.9 133.9,-99.1 158.2,-113.3 182.9,-126.6 208.2,-138.9 233.9,-150.1 260.1,-160.3 286.7,-169.5 313.6,-177.5 340.8,-184.5 368.3,-190.5 396.0,-195.3 423.9,-198.9 451.9,-201.5 480.0,-203.0 508.1,-203.3 536.2,-202.5 564.3,-200.6 592.3,-197.5 620.1,-193.4 647.8,-188.1 675.2,-181.7 702.3,-174.3 729.2,-165.7 755.6,-156.1 781.7,-145.5 807.3,-133.8 832.5,-121.0 857.1,-107.3 881.1,-92.6 904.6,-77.0 927.4,-60.4 949.5,-42.9 970.9,-24.6 991.6,-5.4 1011.5,14.6 1030.5,35.4 1048.8,56.9 1066.1,79.1 1082.6,102.1 1098.1,125.6 1112.7,149.8 1126.3,174.5 1138.9,199.8 1150.4,225.6 1161.0,251.8 1170.5,278.4 1178.9,305.3 1186.2,332.6 1192.4,360.2 1197.6,388.0 1201.6,415.9 1204.5,444.0 1206.2,472.3 1206.9,500.5 1206.4,528.8 1204.7,557.0 1202.0,585.2 1198.1,613.2 1193.1,641.0 1187.0,668.7 1179.8,696.0 1171.5,723.1 1162.1,749.8 1151.7,776.1 1140.2,802.0 1127.7,827.4 1114.2,852.3 1099.7,876.6 1084.2,900.3 1067.8,923.4 1050.5,945.8 1032.3,967.6 1013.2,988.5 993.4,1008.7 972.7,1028.1 951.2,1046.7 929.1,1064.3 906.2,1081.1 882.7,1097.0 858.6,1111.9 833.8,1125.8 808.6,1138.7 782.8,1150.7 756.6,1161.5 730.0,1171.3 703.0,1180.1 675.7,1187.8 648.0,1194.3 620.2,1199.8 592.1,1204.1 563.9,1207.3 535.5,1209.4 507.1,1210.3 478.7,1210.1 450.3,1208.8 422.0,1206.3 393.8,1202.8 365.8,1198.0 338.0,1192.2 310.4,1185.3 283.1,1177.2 256.2,1168.1 229.6,1157.9 203.5,1146.6 177.8,1134.3 152.7,1121.0 128.1,1106.7 104.1,1091.4 80.7,1075.2 58.0,1058.0 35.9,1040.0 14.7,1021.1 -5.9,1001.3 -25.6,980.7 -44.4,959.4 -62.4,937.3 -79.6,914.5 -95.7,891.0 -111.0,867.0 -125.2,842.3 -138.5,817.0 -150.8,791.3 -162.0,765.1 -172.1,738.4 -181.2,711.4 -189.2,684.0 -196.1,656.3 -201.9,628.3 -206.5,600.2 -210.1,571.9 -212.5,543.4 -213.7,514.9 -213.8,486.3 -212.8,457.8 -210.6,429.3 -207.3,400.9 -202.9,372.7 -197.3,344.7 -190.7,316.9 -182.9,289.4 -174.0,262.2 -164.0,235.4 -153.0,209.1 -140.9,183.1 -127.8,157.7 -113.7,132.8 -98.6,108.6 -82.5,84.9 -65.5,61.9 -47.6,39.5 -28.9,17.9 -9.2,-2.9 11.2,-22.9 32.5,-42.1 54.5,-60.4 77.2,-77.9 100.6,-94.4 124.6,-110.0 149.3,-124.6 174.5,-138.2 200.2,-150.8 226.5,-162.3 253.1,-172.8 280.2,-182.2 307.7,-190.6 335.4,-197.8 363.4,-203.9 391.7,-208.9 420.1,-212.7 448.6,-215.5 477.3,-217.0 506.0,-217.5 534.7,-216.7 563.3,-214.9 591.9,-211.8 620.3,-207.7 648.5,-202.4 676.5,-196.0 704.2,-188.5 731.6,-179.8 758.6,-170.1 785.3,-159.3 811.4,-147.5 837.1,-134.6 862.3,-120.7 886.9,-105.7 910.8,-89.9 934.1,-73.0 956.8,-55.3 978.7,-36.6 999.8,-17.1 1020.1,3.2 1039.7,24.3 1058.3,46.2 1076.1,68.9 1092.9,92.2 1108.9,116.2 1123.8,140.8 1137.7,166.0%22 fill=%22none%22 stroke=%22%23000%22 stroke-width=%227.1%22/%3E%3Ccircle cx=%22500%22 cy=%22500%22 r=%226%22 fill=%22%23000%22/%3E%3C/svg%3E") center/cover no-repeat; opacity:1;
  animation:rp-bg-twirl 10s linear infinite reverse;
}
@keyframes rp-bg-twirl { from { transform:translate(-50%,-50%) rotate(0); } to { transform:translate(-50%,-50%) rotate(360deg); } }

/* twirlcolor — rainbow spiral: arm coloured along its length so the hue spirals
   outward (no radial line-up), spinning. */
[data-bg-theme="twirlcolor"] body { background:#fff; }
[data-bg-theme="twirlcolor"] body::before {
  left:50%; top:50%; right:auto; bottom:auto; width:300vmax; height:300vmax; transform:translate(-50%,-50%);
  background:url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%221000%22 height=%221000%22 viewBox=%220 0 1000 1000%22%3E%3Crect width=%221000%22 height=%221000%22 fill=%22%23fff%22/%3E%3Cg fill=%22none%22 stroke-width=%227.1%22 stroke-linecap=%22round%22%3E%3Cpolyline points=%22500.0,500.0 500.1,500.0 500.1,500.0 500.2,500.0 500.3,500.0 500.3,500.1 500.4,500.1 500.5,500.1 500.5,500.1 500.6,500.2 500.6,500.2 500.7,500.2 500.8,500.3 500.8,500.3 500.9,500.4 500.9,500.4 501.0,500.5 501.0,500.6 501.0,500.6 501.1,500.7 501.1,500.8 501.1,500.8 501.2,500.9 501.2,501.0 501.2,501.1 501.2,501.2 501.2,501.2 501.3,501.3 501.3,501.4 501.3,501.5 501.3,501.6 501.3,501.7 501.2,501.8 501.2,501.9 501.2,502.0 501.2,502.0 501.1,502.1 501.1,502.2 501.1,502.3 501.0,502.4 501.0,502.5 500.9,502.6 500.9,502.7 500.8,502.8 500.7,502.9 500.7,503.0 500.6,503.0 500.5,503.1 500.4,503.2 500.3,503.3 500.2,503.4 500.1,503.4 500.0,503.5 499.9,503.6 499.8,503.6 499.7,503.7 499.6,503.8 499.5,503.8 499.3,503.9 499.2,503.9 499.1,503.9 498.9,504.0 498.8,504.0 498.7,504.0%22 stroke=%22%23ff0a00%22/%3E%3Cpolyline points=%22498.7,504.0 498.5,504.1 498.4,504.1 498.2,504.1 498.1,504.1 497.9,504.1 497.8,504.1 497.6,504.1 497.5,504.1 497.3,504.0 497.1,504.0 497.0,504.0 496.8,503.9 496.7,503.9 496.5,503.8 496.3,503.8 496.2,503.7 496.0,503.6 495.9,503.6 495.7,503.5 495.5,503.4 495.4,503.3 495.2,503.2 495.1,503.1 494.9,503.0 494.8,502.9 494.6,502.7 494.5,502.6 494.4,502.5 494.2,502.3 494.1,502.2 494.0,502.0 493.9,501.8 493.7,501.7 493.6,501.5 493.5,501.3%22 stroke=%22%23ff1f00%22/%3E%3Cpolyline points=%22493.5,501.3 493.4,501.1 493.3,501.0 493.2,500.8 493.1,500.6 493.1,500.4 493.0,500.2 492.9,499.9 492.9,499.7 492.8,499.5 492.7,499.3 492.7,499.1 492.7,498.8 492.6,498.6 492.6,498.4 492.6,498.1 492.6,497.9 492.6,497.6 492.6,497.4 492.6,497.2 492.7,496.9 492.7,496.7 492.7,496.4 492.8,496.2 492.8,495.9 492.9,495.7 493.0,495.4%22 stroke=%22%23ff3400%22/%3E%3Cpolyline points=%22493.0,495.4 493.1,495.2 493.2,494.9 493.3,494.7 493.4,494.4 493.5,494.2 493.6,494.0 493.8,493.7 493.9,493.5 494.1,493.3 494.2,493.0 494.4,492.8 494.6,492.6 494.8,492.4 495.0,492.2 495.2,492.0 495.4,491.8 495.6,491.6 495.8,491.4 496.0,491.2 496.3,491.0 496.5,490.8 496.8,490.7%22 stroke=%22%23ff4900%22/%3E%3Cpolyline points=%22496.8,490.7 497.0,490.5 497.3,490.4 497.6,490.2 497.9,490.1 498.2,490.0 498.4,489.9 498.7,489.7 499.0,489.6 499.3,489.6 499.7,489.5 500.0,489.4 500.3,489.3 500.6,489.3 500.9,489.2 501.3,489.2 501.6,489.2 501.9,489.2 502.3,489.2 502.6,489.2%22 stroke=%22%23ff5e00%22/%3E%3Cpolyline points=%22502.6,489.2 503.0,489.2 503.3,489.2 503.6,489.3 504.0,489.3 504.3,489.4 504.7,489.4 505.0,489.5 505.4,489.6 505.7,489.7 506.0,489.9 506.4,490.0 506.7,490.1 507.1,490.3 507.4,490.4 507.7,490.6 508.0,490.8 508.4,491.0%22 stroke=%22%23ff7300%22/%3E%3Cpolyline points=%22508.4,491.0 508.7,491.2 509.0,491.4 509.3,491.6 509.6,491.9 509.9,492.1 510.2,492.4 510.4,492.7 510.7,492.9 511.0,493.2 511.2,493.5 511.5,493.8 511.7,494.1 511.9,494.5 512.2,494.8 512.4,495.2 512.6,495.5%22 stroke=%22%23ff8800%22/%3E%3Cpolyline points=%22512.6,495.5 512.8,495.9 513.0,496.2 513.1,496.6 513.3,497.0 513.4,497.4 513.6,497.8 513.7,498.2 513.8,498.6 513.9,499.0 514.0,499.4 514.1,499.8 514.2,500.2 514.2,500.7 514.3,501.1 514.3,501.5%22 stroke=%22%23ff9d00%22/%3E%3Cpolyline points=%22514.3,501.5 514.3,502.0 514.3,502.4 514.3,502.9 514.3,503.3 514.2,503.7 514.2,504.2 514.1,504.6 514.0,505.1 513.9,505.5 513.8,506.0 513.7,506.4 513.6,506.8 513.4,507.3 513.2,507.7%22 stroke=%22%23ffb300%22/%3E%3Cpolyline points=%22513.2,507.7 513.1,508.1 512.9,508.6 512.7,509.0 512.4,509.4 512.2,509.8 512.0,510.2 511.7,510.6 511.4,511.0 511.1,511.4 510.8,511.8 510.5,512.1 510.2,512.5 509.9,512.9%22 stroke=%22%23ffc800%22/%3E%3Cpolyline points=%22509.9,512.9 509.5,513.2 509.1,513.5 508.8,513.9 508.4,514.2 508.0,514.5 507.6,514.8 507.2,515.1 506.7,515.3 506.3,515.6 505.8,515.8 505.4,516.1 504.9,516.3%22 stroke=%22%23ffdd00%22/%3E%3Cpolyline points=%22504.9,516.3 504.5,516.5 504.0,516.7 503.5,516.9 503.0,517.0 502.5,517.2 502.0,517.3 501.5,517.4 500.9,517.5 500.4,517.6 499.9,517.7 499.4,517.7 498.8,517.8%22 stroke=%22%23fff200%22/%3E%3Cpolyline points=%22498.8,517.8 498.3,517.8 497.7,517.8 497.2,517.8 496.7,517.8 496.1,517.7 495.6,517.7 495.0,517.6 494.5,517.5 493.9,517.4 493.4,517.3 492.8,517.1%22 stroke=%22%23f7ff00%22/%3E%3Cpolyline points=%22492.8,517.1 492.3,517.0 491.8,516.8 491.2,516.6 490.7,516.4 490.2,516.2 489.7,515.9 489.2,515.6 488.7,515.4 488.2,515.1 487.7,514.8 487.2,514.4%22 stroke=%22%23e2ff00%22/%3E%3Cpolyline points=%22487.2,514.4 486.7,514.1 486.2,513.7 485.8,513.4 485.3,513.0 484.9,512.6 484.5,512.2 484.1,511.7 483.7,511.3 483.3,510.8 482.9,510.4 482.6,509.9%22 stroke=%22%23cdff00%22/%3E%3Cpolyline points=%22482.6,509.9 482.2,509.4 481.9,508.9 481.5,508.3 481.2,507.8 481.0,507.3 480.7,506.7 480.4,506.2 480.2,505.6 480.0,505.0 479.8,504.4%22 stroke=%22%23b7ff00%22/%3E%3Cpolyline points=%22479.8,504.4 479.6,503.8 479.4,503.2 479.2,502.6 479.1,502.0 479.0,501.4 478.9,500.7 478.8,500.1 478.7,499.5 478.7,498.8 478.7,498.2%22 stroke=%22%23a2ff00%22/%3E%3Cpolyline points=%22478.7,498.2 478.7,497.5 478.7,496.9 478.7,496.2 478.8,495.6 478.9,494.9 479.0,494.3 479.1,493.6 479.2,493.0 479.4,492.3 479.5,491.7%22 stroke=%22%238cff00%22/%3E%3Cpolyline points=%22479.5,491.7 479.7,491.1 480.0,490.4 480.2,489.8 480.4,489.2 480.7,488.6 481.0,488.0 481.3,487.4 481.7,486.8 482.0,486.2%22 stroke=%22%2376ff00%22/%3E%3Cpolyline points=%22482.0,486.2 482.4,485.6 482.8,485.0 483.2,484.5 483.6,483.9 484.0,483.4 484.5,482.9 485.0,482.4 485.5,481.9 486.0,481.4%22 stroke=%22%2361ff00%22/%3E%3Cpolyline points=%22486.0,481.4 486.5,480.9 487.1,480.5 487.6,480.0 488.2,479.6 488.8,479.2 489.4,478.8 490.0,478.5 490.6,478.1 491.2,477.8%22 stroke=%22%234cff00%22/%3E%3Cpolyline points=%22491.2,477.8 491.9,477.5 492.5,477.2 493.2,476.9 493.9,476.6 494.6,476.4 495.3,476.2 496.0,476.0 496.7,475.8 497.4,475.6%22 stroke=%22%2336ff00%22/%3E%3Cpolyline points=%22497.4,475.6 498.1,475.5 498.9,475.4 499.6,475.3 500.4,475.2 501.1,475.2 501.9,475.2 502.6,475.2 503.4,475.2 504.1,475.2%22 stroke=%22%231fff00%22/%3E%3Cpolyline points=%22504.1,475.2 504.9,475.3 505.6,475.4 506.4,475.5 507.1,475.6 507.9,475.8 508.6,476.0 509.4,476.2 510.1,476.4%22 stroke=%22%2309ff00%22/%3E%3Cpolyline points=%22510.1,476.4 510.8,476.7 511.5,476.9 512.3,477.2 513.0,477.6 513.7,477.9 514.4,478.3 515.1,478.7 515.7,479.1%22 stroke=%22%2300ff0c%22/%3E%3Cpolyline points=%22515.7,479.1 516.4,479.5 517.0,479.9 517.7,480.4 518.3,480.9 518.9,481.4 519.5,481.9 520.1,482.5 520.7,483.1%22 stroke=%22%2300ff21%22/%3E%3Cpolyline points=%22520.7,483.1 521.2,483.6 521.8,484.3 522.3,484.9 522.8,485.5 523.3,486.2 523.7,486.8 524.2,487.5 524.6,488.2%22 stroke=%22%2300ff37%22/%3E%3Cpolyline points=%22524.6,488.2 525.0,488.9 525.4,489.7 525.7,490.4 526.1,491.2 526.4,491.9 526.7,492.7 527.0,493.5 527.2,494.3%22 stroke=%22%2300ff4d%22/%3E%3Cpolyline points=%22527.2,494.3 527.4,495.1 527.6,495.9 527.8,496.7 528.0,497.6 528.1,498.4 528.2,499.3 528.3,500.1 528.3,501.0%22 stroke=%22%2300ff64%22/%3E%3Cpolyline points=%22528.3,501.0 528.4,501.8 528.4,502.7 528.3,503.5 528.3,504.4 528.2,505.2 528.1,506.1 528.0,507.0%22 stroke=%22%2300ff7a%22/%3E%3Cpolyline points=%22528.0,507.0 527.8,507.8 527.6,508.7 527.4,509.5 527.2,510.3 526.9,511.2 526.6,512.0 526.3,512.8%22 stroke=%22%2300ff8e%22/%3E%3Cpolyline points=%22526.3,512.8 526.0,513.7 525.6,514.5 525.2,515.3 524.8,516.0 524.4,516.8 523.9,517.6 523.4,518.3%22 stroke=%22%2300ffa3%22/%3E%3Cpolyline points=%22523.4,518.3 522.9,519.1 522.4,519.8 521.9,520.5 521.3,521.2 520.7,521.9 520.1,522.5 519.4,523.2%22 stroke=%22%2300ffb9%22/%3E%3Cpolyline points=%22519.4,523.2 518.8,523.8 518.1,524.4 517.4,525.0 516.6,525.6 515.9,526.1 515.2,526.6 514.4,527.1%22 stroke=%22%2300ffce%22/%3E%3Cpolyline points=%22514.4,527.1 513.6,527.6 512.8,528.1 512.0,528.5 511.1,528.9 510.3,529.3 509.4,529.7 508.5,530.0%22 stroke=%22%2300ffe4%22/%3E%3Cpolyline points=%22508.5,530.0 507.6,530.3 506.7,530.6 505.8,530.8 504.9,531.1 504.0,531.3 503.1,531.4 502.1,531.6%22 stroke=%22%2300fffb%22/%3E%3Cpolyline points=%22502.1,531.6 501.2,531.7 500.2,531.8 499.3,531.9 498.3,531.9 497.4,531.9 496.4,531.9 495.4,531.8%22 stroke=%22%2300edff%22/%3E%3Cpolyline points=%22495.4,531.8 494.5,531.7 493.5,531.6 492.5,531.5 491.6,531.3 490.6,531.1 489.7,530.9 488.7,530.6%22 stroke=%22%2300d6ff%22/%3E%3Cpolyline points=%22488.7,530.6 487.8,530.3 486.9,530.0 485.9,529.6 485.0,529.3 484.1,528.9 483.2,528.4 482.4,528.0%22 stroke=%22%2300beff%22/%3E%3Cpolyline points=%22482.4,528.0 481.5,527.5 480.6,527.0 479.8,526.4 479.0,525.9 478.1,525.3 477.4,524.7%22 stroke=%22%2300a8ff%22/%3E%3Cpolyline points=%22477.4,524.7 476.6,524.0 475.8,523.4 475.1,522.7 474.4,521.9 473.7,521.2 473.0,520.5%22 stroke=%22%230094ff%22/%3E%3Cpolyline points=%22473.0,520.5 472.3,519.7 471.7,518.9 471.1,518.0 470.5,517.2 469.9,516.3 469.4,515.5%22 stroke=%22%23007fff%22/%3E%3Cpolyline points=%22469.4,515.5 468.9,514.6 468.4,513.7 467.9,512.7 467.5,511.8 467.1,510.8 466.7,509.9%22 stroke=%22%23006aff%22/%3E%3Cpolyline points=%22466.7,509.9 466.4,508.9 466.1,507.9 465.8,506.9 465.5,505.8 465.3,504.8 465.1,503.8%22 stroke=%22%230055ff%22/%3E%3Cpolyline points=%22465.1,503.8 464.9,502.7 464.8,501.7 464.7,500.6 464.6,499.6 464.6,498.5 464.6,497.4%22 stroke=%22%23003fff%22/%3E%3Cpolyline points=%22464.6,497.4 464.6,496.4 464.7,495.3 464.8,494.2 464.9,493.2 465.0,492.1 465.2,491.0%22 stroke=%22%23002aff%22/%3E%3Cpolyline points=%22465.2,491.0 465.4,490.0 465.7,488.9 466.0,487.9 466.3,486.8 466.6,485.8 467.0,484.8%22 stroke=%22%230013ff%22/%3E%3Cpolyline points=%22467.0,484.8 467.4,483.8 467.9,482.8 468.3,481.8 468.8,480.8 469.4,479.9 469.9,478.9%22 stroke=%22%230300ff%22/%3E%3Cpolyline points=%22469.9,478.9 470.5,478.0 471.2,477.1 471.8,476.2 472.5,475.3 473.2,474.4 473.9,473.6%22 stroke=%22%231900ff%22/%3E%3Cpolyline points=%22473.9,473.6 474.7,472.8 475.5,472.0 476.3,471.2 477.1,470.4 478.0,469.7 478.8,469.0%22 stroke=%22%233000ff%22/%3E%3Cpolyline points=%22478.8,469.0 479.8,468.3 480.7,467.7 481.6,467.0 482.6,466.4 483.6,465.9 484.6,465.3%22 stroke=%22%234700ff%22/%3E%3Cpolyline points=%22484.6,465.3 485.6,464.8 486.6,464.4 487.7,463.9 488.8,463.5 489.8,463.1 490.9,462.7%22 stroke=%22%235e00ff%22/%3E%3Cpolyline points=%22490.9,462.7 492.0,462.4 493.2,462.1 494.3,461.9 495.4,461.7 496.6,461.5 497.7,461.3%22 stroke=%22%237600ff%22/%3E%3Cpolyline points=%22497.7,461.3 498.9,461.2 500.0,461.1 501.2,461.1 502.4,461.1 503.6,461.1 504.7,461.1%22 stroke=%22%238e00ff%22/%3E%3Cpolyline points=%22504.7,461.1 505.9,461.2 507.1,461.4 508.3,461.5 509.4,461.7 510.6,462.0 511.7,462.2%22 stroke=%22%23a600ff%22/%3E%3Cpolyline points=%22511.7,462.2 512.9,462.5 514.0,462.9 515.2,463.2 516.3,463.7 517.4,464.1 518.5,464.6%22 stroke=%22%23be00ff%22/%3E%3Cpolyline points=%22518.5,464.6 519.6,465.1 520.7,465.6 521.7,466.2 522.8,466.8 523.8,467.5%22 stroke=%22%23d400ff%22/%3E%3Cpolyline points=%22523.8,467.5 524.8,468.1 525.8,468.8 526.7,469.6 527.7,470.4 528.6,471.1%22 stroke=%22%23e900ff%22/%3E%3Cpolyline points=%22528.6,471.1 529.5,472.0 530.4,472.8 531.2,473.7 532.1,474.6 532.9,475.5%22 stroke=%22%23fe00ff%22/%3E%3Cpolyline points=%22532.9,475.5 533.6,476.5 534.4,477.5 535.1,478.5 535.8,479.5 536.5,480.6%22 stroke=%22%23ff00eb%22/%3E%3Cpolyline points=%22536.5,480.6 537.1,481.6 537.7,482.7 538.2,483.9 538.8,485.0 539.3,486.1%22 stroke=%22%23ff00d6%22/%3E%3Cpolyline points=%22539.3,486.1 539.7,487.3 540.2,488.5 540.6,489.7 540.9,490.9 541.2,492.1%22 stroke=%22%23ff00c1%22/%3E%3Cpolyline points=%22541.2,492.1 541.5,493.3 541.8,494.6 542.0,495.8 542.2,497.1 542.3,498.3%22 stroke=%22%23ff00ac%22/%3E%3Cpolyline points=%22542.3,498.3 542.4,499.6 542.4,500.9 542.5,502.1 542.5,503.4 542.4,504.7%22 stroke=%22%23ff0096%22/%3E%3Cpolyline points=%22542.4,504.7 542.3,506.0 542.2,507.3 542.0,508.5 541.8,509.8 541.5,511.1%22 stroke=%22%23ff0080%22/%3E%3Cpolyline points=%22541.5,511.1 541.3,512.3 540.9,513.6 540.6,514.8 540.2,516.1 539.7,517.3%22 stroke=%22%23ff006a%22/%3E%3Cpolyline points=%22539.7,517.3 539.3,518.5 538.7,519.7 538.2,520.9 537.6,522.1 537.0,523.2%22 stroke=%22%23ff0054%22/%3E%3Cpolyline points=%22537.0,523.2 536.3,524.4 535.6,525.5 534.9,526.6 534.2,527.6 533.4,528.7%22 stroke=%22%23ff003e%22/%3E%3Cpolyline points=%22533.4,528.7 532.5,529.7 531.7,530.7 530.8,531.7 529.9,532.7 528.9,533.6%22 stroke=%22%23ff0027%22/%3E%3Cpolyline points=%22528.9,533.6 527.9,534.5 526.9,535.4 525.9,536.2 524.8,537.1 523.7,537.9%22 stroke=%22%23ff0011%22/%3E%3Cpolyline points=%22523.7,537.9 522.6,538.6 521.5,539.3 520.3,540.0 519.2,540.7 518.0,541.3%22 stroke=%22%23ff0600%22/%3E%3Cpolyline points=%22518.0,541.3 516.7,541.9 515.5,542.4 514.2,542.9 513.0,543.4 511.7,543.8%22 stroke=%22%23ff1d00%22/%3E%3Cpolyline points=%22511.7,543.8 510.4,544.2 509.1,544.6 507.7,544.9 506.4,545.2 505.0,545.4%22 stroke=%22%23ff3400%22/%3E%3Cpolyline points=%22505.0,545.4 503.7,545.6 502.3,545.8 500.9,545.9 499.6,546.0 498.2,546.0%22 stroke=%22%23ff4c00%22/%3E%3Cpolyline points=%22498.2,546.0 496.8,546.0 495.4,545.9 494.0,545.8 492.6,545.7 491.3,545.5%22 stroke=%22%23ff6300%22/%3E%3Cpolyline points=%22491.3,545.5 489.9,545.3 488.5,545.1 487.1,544.8 485.8,544.4 484.4,544.0%22 stroke=%22%23ff7b00%22/%3E%3Cpolyline points=%22484.4,544.0 483.1,543.6 481.8,543.2 480.5,542.6 479.2,542.1 477.9,541.5%22 stroke=%22%23ff9300%22/%3E%3Cpolyline points=%22477.9,541.5 476.6,540.9 475.4,540.2 474.1,539.5 472.9,538.8 471.7,538.0%22 stroke=%22%23ffab00%22/%3E%3Cpolyline points=%22471.7,538.0 470.5,537.2 469.4,536.4 468.3,535.5 467.2,534.6 466.1,533.6%22 stroke=%22%23ffc300%22/%3E%3Cpolyline points=%22466.1,533.6 465.1,532.6 464.1,531.6 463.1,530.5 462.1,529.5 461.2,528.4%22 stroke=%22%23ffdb00%22/%3E%3Cpolyline points=%22461.2,528.4 460.3,527.2 459.5,526.1 458.6,524.9 457.8,523.6 457.1,522.4%22 stroke=%22%23fff400%22/%3E%3Cpolyline points=%22457.1,522.4 456.4,521.1 455.7,519.8 455.1,518.5 454.5,517.2 453.9,515.8%22 stroke=%22%23f2ff00%22/%3E%3Cpolyline points=%22453.9,515.8 453.4,514.5 452.9,513.1 452.5,511.7 452.1,510.3 451.7,508.8%22 stroke=%22%23d9ff00%22/%3E%3Cpolyline points=%22451.7,508.8 451.4,507.4 451.2,505.9 450.9,504.5 450.7,503.0 450.6,501.5%22 stroke=%22%23c0ff00%22/%3E%3Cpolyline points=%22450.6,501.5 450.5,500.1 450.5,498.6 450.5,497.1 450.5,495.6 450.6,494.1%22 stroke=%22%23a6ff00%22/%3E%3Cpolyline points=%22450.6,494.1 450.7,492.6 450.9,491.1 451.1,489.6 451.4,488.2 451.7,486.7%22 stroke=%22%238dff00%22/%3E%3Cpolyline points=%22451.7,486.7 452.1,485.2 452.5,483.8 452.9,482.3 453.4,480.9%22 stroke=%22%2376ff00%22/%3E%3Cpolyline points=%22453.4,480.9 453.9,479.5 454.5,478.1 455.1,476.7 455.8,475.3%22 stroke=%22%2362ff00%22/%3E%3Cpolyline points=%22455.8,475.3 456.5,474.0 457.2,472.7 458.0,471.3 458.8,470.1%22 stroke=%22%234dff00%22/%3E%3Cpolyline points=%22458.8,470.1 459.7,468.8 460.6,467.6 461.5,466.4 462.5,465.2%22 stroke=%22%2338ff00%22/%3E%3Cpolyline points=%22462.5,465.2 463.5,464.0 464.6,462.9 465.7,461.8 466.8,460.7%22 stroke=%22%2323ff00%22/%3E%3Cpolyline points=%22466.8,460.7 467.9,459.7 469.1,458.7 470.3,457.7 471.6,456.8%22 stroke=%22%230eff00%22/%3E%3Cpolyline points=%22471.6,456.8 472.9,455.9 474.2,455.1 475.5,454.2 476.8,453.5%22 stroke=%22%2300ff07%22/%3E%3Cpolyline points=%22476.8,453.5 478.2,452.7 479.6,452.0 481.0,451.4 482.5,450.8%22 stroke=%22%2300ff1c%22/%3E%3Cpolyline points=%22482.5,450.8 483.9,450.2 485.4,449.7 486.9,449.2 488.4,448.8%22 stroke=%22%2300ff32%22/%3E%3Cpolyline points=%22488.4,448.8 490.0,448.4 491.5,448.0 493.1,447.7 494.6,447.5%22 stroke=%22%2300ff47%22/%3E%3Cpolyline points=%22494.6,447.5 496.2,447.3 497.8,447.1 499.4,447.0 501.0,447.0%22 stroke=%22%2300ff5d%22/%3E%3Cpolyline points=%22501.0,447.0 502.6,446.9 504.1,447.0 505.7,447.1 507.3,447.2%22 stroke=%22%2300ff72%22/%3E%3Cpolyline points=%22507.3,447.2 508.9,447.4 510.5,447.6 512.1,447.9 513.7,448.2%22 stroke=%22%2300ff88%22/%3E%3Cpolyline points=%22513.7,448.2 515.2,448.5 516.8,449.0 518.3,449.4 519.9,449.9%22 stroke=%22%2300ff9e%22/%3E%3Cpolyline points=%22519.9,449.9 521.4,450.5 522.9,451.1 524.4,451.7 525.9,452.4%22 stroke=%22%2300ffb4%22/%3E%3Cpolyline points=%22525.9,452.4 527.3,453.2 528.7,454.0 530.1,454.8 531.5,455.7%22 stroke=%22%2300ffca%22/%3E%3Cpolyline points=%22531.5,455.7 532.9,456.6 534.2,457.5 535.5,458.5 536.8,459.6%22 stroke=%22%2300ffe0%22/%3E%3Cpolyline points=%22536.8,459.6 538.0,460.6 539.2,461.7 540.4,462.9 541.6,464.1%22 stroke=%22%2300fff6%22/%3E%3Cpolyline points=%22541.6,464.1 542.7,465.3 543.8,466.5 544.8,467.8 545.8,469.2%22 stroke=%22%2300f1ff%22/%3E%3Cpolyline points=%22545.8,469.2 546.8,470.5 547.7,471.9 548.6,473.3 549.4,474.7%22 stroke=%22%2300dbff%22/%3E%3Cpolyline points=%22549.4,474.7 550.2,476.2 550.9,477.7 551.7,479.2 552.3,480.7%22 stroke=%22%2300c4ff%22/%3E%3Cpolyline points=%22552.3,480.7 552.9,482.3 553.5,483.9 554.0,485.5 554.5,487.1%22 stroke=%22%2300adff%22/%3E%3Cpolyline points=%22554.5,487.1 554.9,488.7 555.3,490.3 555.7,492.0 555.9,493.7%22 stroke=%22%230096ff%22/%3E%3Cpolyline points=%22555.9,493.7 556.2,495.3 556.4,497.0 556.5,498.7 556.6,500.4%22 stroke=%22%23007fff%22/%3E%3Cpolyline points=%22556.6,500.4 556.6,502.1 556.6,503.8 556.5,505.5 556.4,507.2%22 stroke=%22%230068ff%22/%3E%3Cpolyline points=%22556.4,507.2 556.2,508.9 556.0,510.6 555.7,512.3 555.4,514.0%22 stroke=%22%230051ff%22/%3E%3Cpolyline points=%22555.4,514.0 555.0,515.6 554.6,517.3 554.1,519.0 553.5,520.6%22 stroke=%22%23003aff%22/%3E%3Cpolyline points=%22553.5,520.6 553.0,522.2 552.3,523.8 551.7,525.4 550.9,527.0%22 stroke=%22%230022ff%22/%3E%3Cpolyline points=%22550.9,527.0 550.2,528.5 549.3,530.1 548.5,531.6 547.6,533.0%22 stroke=%22%23000bff%22/%3E%3Cpolyline points=%22547.6,533.0 546.6,534.5 545.6,535.9 544.6,537.3 543.5,538.7%22 stroke=%22%230d00ff%22/%3E%3Cpolyline points=%22543.5,538.7 542.3,540.0 541.2,541.3 540.0,542.6 538.7,543.8%22 stroke=%22%232500ff%22/%3E%3Cpolyline points=%22538.7,543.8 537.4,545.0 536.1,546.2 534.7,547.3 533.3,548.4%22 stroke=%22%233d00ff%22/%3E%3Cpolyline points=%22533.3,548.4 531.9,549.4 530.4,550.4 528.9,551.3 527.4,552.2%22 stroke=%22%235500ff%22/%3E%3Cpolyline points=%22527.4,552.2 525.9,553.1 524.3,553.9 522.7,554.7 521.1,555.4%22 stroke=%22%236d00ff%22/%3E%3Cpolyline points=%22521.1,555.4 519.4,556.1 517.8,556.7 516.1,557.3 514.4,557.8%22 stroke=%22%238500ff%22/%3E%3Cpolyline points=%22514.4,557.8 512.6,558.2 510.9,558.7 509.1,559.0 507.4,559.3%22 stroke=%22%239d00ff%22/%3E%3Cpolyline points=%22507.4,559.3 505.6,559.6 503.8,559.8 502.0,560.0 500.2,560.1%22 stroke=%22%23b600ff%22/%3E%3Cpolyline points=%22500.2,560.1 498.4,560.1 496.6,560.1 494.8,560.1 493.0,559.9%22 stroke=%22%23ce00ff%22/%3E%3Cpolyline points=%22493.0,559.9 491.2,559.8 489.4,559.5 487.6,559.3 485.8,558.9%22 stroke=%22%23e700ff%22/%3E%3Cpolyline points=%22485.8,558.9 484.0,558.5 482.3,558.1 480.5,557.6 478.8,557.1%22 stroke=%22%23ff00fe%22/%3E%3Cpolyline points=%22478.8,557.1 477.0,556.5 475.3,555.8 473.6,555.1 472.0,554.3%22 stroke=%22%23ff00e6%22/%3E%3Cpolyline points=%22472.0,554.3 470.3,553.5 468.7,552.7 467.1,551.8 465.5,550.8%22 stroke=%22%23ff00cd%22/%3E%3Cpolyline points=%22465.5,550.8 463.9,549.8 462.4,548.8 460.9,547.7 459.5,546.5%22 stroke=%22%23ff00b4%22/%3E%3Cpolyline points=%22459.5,546.5 458.1,545.3 456.7,544.1 455.3,542.8 454.0,541.5%22 stroke=%22%23ff009a%22/%3E%3Cpolyline points=%22454.0,541.5 452.7,540.2 451.5,538.8 450.3,537.3 449.1,535.9%22 stroke=%22%23ff0081%22/%3E%3Cpolyline points=%22449.1,535.9 448.0,534.4 447.0,532.8 446.0,531.3 445.0,529.7%22 stroke=%22%23ff0068%22/%3E%3Cpolyline points=%22445.0,529.7 444.1,528.0 443.2,526.4 442.3,524.7 441.6,523.0%22 stroke=%22%23ff004e%22/%3E%3Cpolyline points=%22441.6,523.0 440.8,521.2 440.2,519.5 439.6,517.7 439.0,515.9%22 stroke=%22%23ff0035%22/%3E%3Cpolyline points=%22439.0,515.9 438.5,514.0 438.0,512.2 437.6,510.3 437.3,508.5%22 stroke=%22%23ff001b%22/%3E%3Cpolyline points=%22437.3,508.5 437.0,506.6 436.7,504.7 436.5,502.8 436.4,500.9%22 stroke=%22%23ff0001%22/%3E%3Cpolyline points=%22436.4,500.9 436.4,499.0 436.3,497.1 436.4,495.2 436.5,493.3%22 stroke=%22%23ff1900%22/%3E%3Cpolyline points=%22436.5,493.3 436.7,491.4 436.9,489.4 437.2,487.5 437.5,485.7%22 stroke=%22%23ff3300%22/%3E%3Cpolyline points=%22437.5,485.7 437.9,483.8 438.3,481.9 438.9,480.0 439.4,478.2%22 stroke=%22%23ff4d00%22/%3E%3Cpolyline points=%22439.4,478.2 440.0,476.3 440.7,474.5 441.4,472.7 442.2,471.0%22 stroke=%22%23ff6800%22/%3E%3Cpolyline points=%22442.2,471.0 443.1,469.2 443.9,467.5 444.9,465.8 445.9,464.1%22 stroke=%22%23ff8200%22/%3E%3Cpolyline points=%22445.9,464.1 446.9,462.5 448.0,460.8 449.2,459.3 450.4,457.7%22 stroke=%22%23ff9c00%22/%3E%3Cpolyline points=%22450.4,457.7 451.6,456.2 452.9,454.7 454.2,453.3 455.6,451.9%22 stroke=%22%23ffb700%22/%3E%3Cpolyline points=%22455.6,451.9 457.0,450.5 458.5,449.2 460.0,447.9 461.5,446.7%22 stroke=%22%23ffd200%22/%3E%3Cpolyline points=%22461.5,446.7 463.1,445.5 464.7,444.4 466.4,443.3 468.1,442.2%22 stroke=%22%23ffed00%22/%3E%3Cpolyline points=%22468.1,442.2 469.8,441.2 471.5,440.3 473.3,439.4 475.1,438.6%22 stroke=%22%23f6ff00%22/%3E%3Cpolyline points=%22475.1,438.6 476.9,437.8 478.8,437.1 480.7,436.4 482.6,435.8%22 stroke=%22%23dbff00%22/%3E%3Cpolyline points=%22482.6,435.8 484.5,435.2 486.4,434.7 488.4,434.3%22 stroke=%22%23c4ff00%22/%3E%3Cpolyline points=%22488.4,434.3 490.3,433.9 492.3,433.6 494.3,433.3%22 stroke=%22%23afff00%22/%3E%3Cpolyline points=%22494.3,433.3 496.3,433.1 498.3,432.9 500.3,432.8%22 stroke=%22%239bff00%22/%3E%3Cpolyline points=%22500.3,432.8 502.3,432.8 504.4,432.8 506.4,432.9%22 stroke=%22%2386ff00%22/%3E%3Cpolyline points=%22506.4,432.9 508.4,433.1 510.4,433.3 512.4,433.6%22 stroke=%22%2371ff00%22/%3E%3Cpolyline points=%22512.4,433.6 514.4,433.9 516.4,434.3 518.4,434.8%22 stroke=%22%235dff00%22/%3E%3Cpolyline points=%22518.4,434.8 520.4,435.3 522.3,435.9 524.3,436.5%22 stroke=%22%2348ff00%22/%3E%3Cpolyline points=%22524.3,436.5 526.2,437.2 528.1,437.9 530.0,438.8%22 stroke=%22%2333ff00%22/%3E%3Cpolyline points=%22530.0,438.8 531.8,439.6 533.6,440.5 535.4,441.5%22 stroke=%22%231eff00%22/%3E%3Cpolyline points=%22535.4,441.5 537.2,442.6 539.0,443.6 540.7,444.8%22 stroke=%22%2309ff00%22/%3E%3Cpolyline points=%22540.7,444.8 542.4,446.0 544.0,447.2 545.6,448.5%22 stroke=%22%2300ff0c%22/%3E%3Cpolyline points=%22545.6,448.5 547.2,449.9 548.7,451.2 550.2,452.7%22 stroke=%22%2300ff21%22/%3E%3Cpolyline points=%22550.2,452.7 551.6,454.2 553.0,455.7 554.4,457.3%22 stroke=%22%2300ff36%22/%3E%3Cpolyline points=%22554.4,457.3 555.7,458.9 557.0,460.5 558.2,462.2%22 stroke=%22%2300ff4b%22/%3E%3Cpolyline points=%22558.2,462.2 559.4,463.9 560.5,465.7 561.5,467.5%22 stroke=%22%2300ff60%22/%3E%3Cpolyline points=%22561.5,467.5 562.5,469.3 563.5,471.2 564.4,473.1%22 stroke=%22%2300ff75%22/%3E%3Cpolyline points=%22564.4,473.1 565.2,475.0 566.0,476.9 566.7,478.9%22 stroke=%22%2300ff8b%22/%3E%3Cpolyline points=%22566.7,478.9 567.4,480.9 568.0,482.9 568.6,485.0%22 stroke=%22%2300ffa0%22/%3E%3Cpolyline points=%22568.6,485.0 569.1,487.0 569.5,489.1 569.8,491.2%22 stroke=%22%2300ffb6%22/%3E%3Cpolyline points=%22569.8,491.2 570.1,493.3 570.4,495.4 570.6,497.5%22 stroke=%22%2300ffcb%22/%3E%3Cpolyline points=%22570.6,497.5 570.7,499.6 570.7,501.7 570.7,503.8%22 stroke=%22%2300ffe1%22/%3E%3Cpolyline points=%22570.7,503.8 570.6,506.0 570.5,508.1 570.3,510.2%22 stroke=%22%2300fff7%22/%3E%3Cpolyline points=%22570.3,510.2 570.0,512.3 569.7,514.4 569.3,516.5%22 stroke=%22%2300f2ff%22/%3E%3Cpolyline points=%22569.3,516.5 568.8,518.6 568.3,520.7 567.7,522.7%22 stroke=%22%2300dcff%22/%3E%3Cpolyline points=%22567.7,522.7 567.0,524.8 566.3,526.8 565.6,528.8%22 stroke=%22%2300c6ff%22/%3E%3Cpolyline points=%22565.6,528.8 564.7,530.8 563.8,532.8 562.9,534.7%22 stroke=%22%2300b0ff%22/%3E%3Cpolyline points=%22562.9,534.7 561.9,536.6 560.8,538.5 559.7,540.3%22 stroke=%22%23009aff%22/%3E%3Cpolyline points=%22559.7,540.3 558.5,542.1 557.3,543.9 556.0,545.6%22 stroke=%22%230084ff%22/%3E%3Cpolyline points=%22556.0,545.6 554.6,547.3 553.2,549.0 551.8,550.6%22 stroke=%22%23006eff%22/%3E%3Cpolyline points=%22551.8,550.6 550.3,552.2 548.8,553.7 547.2,555.2%22 stroke=%22%230058ff%22/%3E%3Cpolyline points=%22547.2,555.2 545.5,556.7 543.8,558.1 542.1,559.4%22 stroke=%22%230042ff%22/%3E%3Cpolyline points=%22542.1,559.4 540.4,560.7 538.6,561.9 536.7,563.1%22 stroke=%22%23002bff%22/%3E%3Cpolyline points=%22536.7,563.1 534.8,564.3 532.9,565.3 531.0,566.4%22 stroke=%22%230015ff%22/%3E%3Cpolyline points=%22531.0,566.4 529.0,567.3 527.0,568.2 525.0,569.1%22 stroke=%22%230200ff%22/%3E%3Cpolyline points=%22525.0,569.1 522.9,569.9 520.8,570.6 518.7,571.2%22 stroke=%22%231800ff%22/%3E%3Cpolyline points=%22518.7,571.2 516.6,571.8 514.4,572.4 512.3,572.8%22 stroke=%22%232f00ff%22/%3E%3Cpolyline points=%22512.3,572.8 510.1,573.2 507.9,573.6 505.7,573.8%22 stroke=%22%234500ff%22/%3E%3Cpolyline points=%22505.7,573.8 503.5,574.0 501.2,574.2 499.0,574.2%22 stroke=%22%235c00ff%22/%3E%3Cpolyline points=%22499.0,574.2 496.8,574.2 494.6,574.2 492.3,574.1%22 stroke=%22%237300ff%22/%3E%3Cpolyline points=%22492.3,574.1 490.1,573.9 487.9,573.6 485.7,573.3%22 stroke=%22%238900ff%22/%3E%3Cpolyline points=%22485.7,573.3 483.5,572.9 481.3,572.4 479.1,571.9%22 stroke=%22%23a000ff%22/%3E%3Cpolyline points=%22479.1,571.9 476.9,571.3 474.8,570.6 472.6,569.9%22 stroke=%22%23b700ff%22/%3E%3Cpolyline points=%22472.6,569.9 470.5,569.1 468.4,568.2 466.4,567.3%22 stroke=%22%23ce00ff%22/%3E%3Cpolyline points=%22466.4,567.3 464.3,566.3 462.3,565.3 460.3,564.2%22 stroke=%22%23e500ff%22/%3E%3Cpolyline points=%22460.3,564.2 458.4,563.0 456.5,561.8 454.6,560.5%22 stroke=%22%23fc00ff%22/%3E%3Cpolyline points=%22454.6,560.5 452.8,559.2 451.0,557.8 449.2,556.4%22 stroke=%22%23ff00eb%22/%3E%3Cpolyline points=%22449.2,556.4 447.5,554.9 445.8,553.3 444.2,551.7%22 stroke=%22%23ff00d3%22/%3E%3Cpolyline points=%22444.2,551.7 442.6,550.1 441.1,548.4 439.6,546.6%22 stroke=%22%23ff00bc%22/%3E%3Cpolyline points=%22439.6,546.6 438.2,544.8 436.8,543.0 435.5,541.1%22 stroke=%22%23ff00a5%22/%3E%3Cpolyline points=%22435.5,541.1 434.2,539.2 433.0,537.2 431.9,535.2%22 stroke=%22%23ff008d%22/%3E%3Cpolyline points=%22431.9,535.2 430.8,533.2 429.8,531.1 428.8,529.1%22 stroke=%22%23ff0076%22/%3E%3Cpolyline points=%22428.8,529.1 427.9,526.9 427.1,524.8 426.3,522.6%22 stroke=%22%23ff005e%22/%3E%3Cpolyline points=%22426.3,522.6 425.6,520.4 424.9,518.2 424.4,515.9%22 stroke=%22%23ff0047%22/%3E%3Cpolyline points=%22424.4,515.9 423.9,513.7 423.4,511.4 423.0,509.1%22 stroke=%22%23ff002f%22/%3E%3Cpolyline points=%22423.0,509.1 422.7,506.8 422.5,504.5 422.3,502.1%22 stroke=%22%23ff0017%22/%3E%3Cpolyline points=%22422.3,502.1 422.2,499.8 422.2,497.5 422.3,495.1%22 stroke=%22%23ff0000%22/%3E%3Cpolyline points=%22422.3,495.1 422.4,492.8 422.6,490.5 422.8,488.1%22 stroke=%22%23ff1800%22/%3E%3Cpolyline points=%22422.8,488.1 423.1,485.8 423.5,483.5 424.0,481.2%22 stroke=%22%23ff3000%22/%3E%3Cpolyline points=%22424.0,481.2 424.5,478.9 425.1,476.6 425.8,474.4%22 stroke=%22%23ff4800%22/%3E%3Cpolyline points=%22425.8,474.4 426.5,472.1 427.3,469.9 428.2,467.7%22 stroke=%22%23ff6000%22/%3E%3Cpolyline points=%22428.2,467.7 429.2,465.6 430.2,463.4 431.2,461.3%22 stroke=%22%23ff7800%22/%3E%3Cpolyline points=%22431.2,461.3 432.4,459.2 433.6,457.2 434.8,455.2%22 stroke=%22%23ff9000%22/%3E%3Cpolyline points=%22434.8,455.2 436.1,453.2 437.5,451.3 439.0,449.4%22 stroke=%22%23ffa900%22/%3E%3Cpolyline points=%22439.0,449.4 440.5,447.5 442.0,445.7 443.6,443.9%22 stroke=%22%23ffc100%22/%3E%3Cpolyline points=%22443.6,443.9 445.3,442.2 447.0,440.6 448.7,438.9%22 stroke=%22%23ffd900%22/%3E%3Cpolyline points=%22448.7,438.9 450.6,437.4 452.4,435.9 454.3,434.4%22 stroke=%22%23fff200%22/%3E%3Cpolyline points=%22454.3,434.4 456.3,433.0 458.3,431.7 460.3,430.4%22 stroke=%22%23f4ff00%22/%3E%3Cpolyline points=%22460.3,430.4 462.4,429.2 464.5,428.0 466.6,426.9%22 stroke=%22%23dbff00%22/%3E%3Cpolyline points=%22466.6,426.9 468.8,425.9 471.0,424.9 473.3,424.0%22 stroke=%22%23c3ff00%22/%3E%3Cpolyline points=%22473.3,424.0 475.5,423.2 477.8,422.4 480.2,421.7%22 stroke=%22%23aaff00%22/%3E%3Cpolyline points=%22480.2,421.7 482.5,421.1 484.9,420.6 487.2,420.1%22 stroke=%22%2391ff00%22/%3E%3Cpolyline points=%22487.2,420.1 489.6,419.7 492.0,419.3 494.5,419.1%22 stroke=%22%2379ff00%22/%3E%3Cpolyline points=%22494.5,419.1 496.9,418.9 499.3,418.7 501.8,418.7%22 stroke=%22%2360ff00%22/%3E%3Cpolyline points=%22501.8,418.7 504.2,418.7 506.6,418.8 509.1,419.0%22 stroke=%22%2347ff00%22/%3E%3Cpolyline points=%22509.1,419.0 511.5,419.2 514.0,419.5 516.4,419.9%22 stroke=%22%232eff00%22/%3E%3Cpolyline points=%22516.4,419.9 518.8,420.4 521.2,420.9 523.6,421.5%22 stroke=%22%2315ff00%22/%3E%3Cpolyline points=%22523.6,421.5 525.9,422.2 528.3,422.9 530.6,423.8%22 stroke=%22%2300ff04%22/%3E%3Cpolyline points=%22530.6,423.8 532.9,424.7 535.2,425.6 537.4,426.6%22 stroke=%22%2300ff1d%22/%3E%3Cpolyline points=%22537.4,426.6 539.6,427.7 541.8,428.9 544.0,430.1%22 stroke=%22%2300ff37%22/%3E%3Cpolyline points=%22544.0,430.1 546.1,431.4 548.2,432.8 550.2,434.2%22 stroke=%22%2300ff50%22/%3E%3Cpolyline points=%22550.2,434.2 552.2,435.7 554.1,437.2 556.0,438.8%22 stroke=%22%2300ff69%22/%3E%3Cpolyline points=%22556.0,438.8 557.9,440.5 559.7,442.2 561.5,444.0%22 stroke=%22%2300ff83%22/%3E%3Cpolyline points=%22561.5,444.0 563.2,445.8 564.8,447.7 566.4,449.6%22 stroke=%22%2300ff9c%22/%3E%3Cpolyline points=%22566.4,449.6 567.9,451.6 569.4,453.6 570.8,455.7%22 stroke=%22%2300ffb6%22/%3E%3Cpolyline points=%22570.8,455.7 572.2,457.8 573.5,459.9 574.7,462.1%22 stroke=%22%2300ffcf%22/%3E%3Cpolyline points=%22574.7,462.1 575.9,464.4 577.0,466.6 578.0,468.9%22 stroke=%22%2300ffe9%22/%3E%3Cpolyline points=%22578.0,468.9 579.0,471.3 579.9,473.6 580.7,476.0%22 stroke=%22%2300fcff%22/%3E%3Cpolyline points=%22580.7,476.0 581.4,478.4 582.1,480.9 582.7,483.3%22 stroke=%22%2300e2ff%22/%3E%3Cpolyline points=%22582.7,483.3 583.2,485.8 583.7,488.3 584.1,490.8%22 stroke=%22%2300c8ff%22/%3E%3Cpolyline points=%22584.1,490.8 584.4,493.3 584.6,495.8 584.8,498.4%22 stroke=%22%2300aeff%22/%3E%3Cpolyline points=%22584.8,498.4 584.8,500.9 584.8,503.5 584.8,506.0%22 stroke=%22%230094ff%22/%3E%3Cpolyline points=%22584.8,506.0 584.6,508.6 584.4,511.1 584.1,513.6%22 stroke=%22%23007aff%22/%3E%3Cpolyline points=%22584.1,513.6 583.7,516.2 583.2,518.7 582.7,521.2%22 stroke=%22%230060ff%22/%3E%3Cpolyline points=%22582.7,521.2 582.1,523.7 581.4,526.2 580.7,528.6%22 stroke=%22%230046ff%22/%3E%3Cpolyline points=%22580.7,528.6 579.8,531.0 578.9,533.5 578.0,535.8%22 stroke=%22%23002cff%22/%3E%3Cpolyline points=%22578.0,535.8 576.9,538.2 575.8,540.5 574.6,542.8%22 stroke=%22%230011ff%22/%3E%3Cpolyline points=%22574.6,542.8 573.3,545.0 572.0,547.3 570.6,549.4%22 stroke=%22%230900ff%22/%3E%3Cpolyline points=%22570.6,549.4 569.1,551.6 567.6,553.7 566.0,555.7%22 stroke=%22%232300ff%22/%3E%3Cpolyline points=%22566.0,555.7 564.4,557.7 562.7,559.7 560.9,561.6%22 stroke=%22%233e00ff%22/%3E%3Cpolyline points=%22560.9,561.6 559.1,563.4 557.2,565.2 555.2,567.0%22 stroke=%22%235800ff%22/%3E%3Cpolyline points=%22555.2,567.0 553.3,568.6 551.2,570.3 549.1,571.8%22 stroke=%22%237300ff%22/%3E%3Cpolyline points=%22549.1,571.8 547.0,573.3 544.8,574.7 542.6,576.1%22 stroke=%22%238d00ff%22/%3E%3Cpolyline points=%22542.6,576.1 540.3,577.4 538.0,578.7 535.6,579.8%22 stroke=%22%23a800ff%22/%3E%3Cpolyline points=%22535.6,579.8 533.3,580.9 530.8,581.9 528.4,582.9%22 stroke=%22%23c300ff%22/%3E%3Cpolyline points=%22528.4,582.9 525.9,583.8 523.4,584.6 520.9,585.3%22 stroke=%22%23de00ff%22/%3E%3Cpolyline points=%22520.9,585.3 518.3,586.0 515.7,586.5 513.1,587.0%22 stroke=%22%23f900ff%22/%3E%3Cpolyline points=%22513.1,587.0 510.5,587.5 507.9,587.8 505.3,588.1%22 stroke=%22%23ff00ea%22/%3E%3Cpolyline points=%22505.3,588.1 502.6,588.3 500.0,588.4 497.3,588.4%22 stroke=%22%23ff00cf%22/%3E%3Cpolyline points=%22497.3,588.4 494.7,588.3 492.0,588.2 489.4,588.0%22 stroke=%22%23ff00b4%22/%3E%3Cpolyline points=%22489.4,588.0 486.7,587.7 484.1,587.3 481.5,586.9%22 stroke=%22%23ff0099%22/%3E%3Cpolyline points=%22481.5,586.9 478.9,586.3 476.3,585.7 473.7,585.1%22 stroke=%22%23ff007e%22/%3E%3Cpolyline points=%22473.7,585.1 471.1,584.3 468.6,583.4 466.1,582.5%22 stroke=%22%23ff0063%22/%3E%3Cpolyline points=%22466.1,582.5 463.6,581.5 461.1,580.5 458.7,579.3%22 stroke=%22%23ff0048%22/%3E%3Cpolyline points=%22458.7,579.3 456.3,578.1 453.9,576.8 451.6,575.5%22 stroke=%22%23ff002c%22/%3E%3Cpolyline points=%22451.6,575.5 449.3,574.0 447.1,572.5 444.9,571.0%22 stroke=%22%23ff0011%22/%3E%3Cpolyline points=%22444.9,571.0 442.8,569.3 440.7,567.6 438.6,565.9%22 stroke=%22%23ff0b00%22/%3E%3Cpolyline points=%22438.6,565.9 436.6,564.1 434.7,562.2 432.8,560.2%22 stroke=%22%23ff2600%22/%3E%3Cpolyline points=%22432.8,560.2 431.0,558.2 429.2,556.2 427.5,554.1%22 stroke=%22%23ff4200%22/%3E%3Cpolyline points=%22427.5,554.1 425.8,551.9 424.3,549.7 422.7,547.4%22 stroke=%22%23ff5e00%22/%3E%3Cpolyline points=%22422.7,547.4 421.3,545.1 419.9,542.8 418.6,540.4%22 stroke=%22%23ff7900%22/%3E%3Cpolyline points=%22418.6,540.4 417.4,538.0 416.2,535.5 415.1,533.0%22 stroke=%22%23ff9500%22/%3E%3Cpolyline points=%22415.1,533.0 414.1,530.4 413.2,527.9 412.3,525.3%22 stroke=%22%23ffb100%22/%3E%3Cpolyline points=%22412.3,525.3 411.5,522.7 410.8,520.0 410.2,517.3%22 stroke=%22%23ffcd00%22/%3E%3Cpolyline points=%22410.2,517.3 409.6,514.6 409.2,511.9 408.8,509.2%22 stroke=%22%23ffe900%22/%3E%3Cpolyline points=%22408.8,509.2 408.5,506.5 408.3,503.7 408.1,501.0%22 stroke=%22%23f9ff00%22/%3E%3Cpolyline points=%22408.1,501.0 408.1,498.2 408.1,495.5 408.2,492.7%22 stroke=%22%23ddff00%22/%3E%3Cpolyline points=%22408.2,492.7 408.4,489.9 408.7,487.2 409.0,484.5%22 stroke=%22%23c1ff00%22/%3E%3Cpolyline points=%22409.0,484.5 409.5,481.7 410.0,479.0 410.6,476.3%22 stroke=%22%23a4ff00%22/%3E%3Cpolyline points=%22410.6,476.3 411.3,473.6 412.1,470.9 412.9,468.3%22 stroke=%22%2388ff00%22/%3E%3Cpolyline points=%22412.9,468.3 413.8,465.7 414.9,463.1 415.9,460.5%22 stroke=%22%236cff00%22/%3E%3Cpolyline points=%22415.9,460.5 417.1,458.0 418.3,455.5 419.7,453.0%22 stroke=%22%234fff00%22/%3E%3Cpolyline points=%22419.7,453.0 421.0,450.6 422.5,448.2 424.0,445.9%22 stroke=%22%2333ff00%22/%3E%3Cpolyline points=%22424.0,445.9 425.6,443.6 427.3,441.3 429.1,439.1%22 stroke=%22%2316ff00%22/%3E%3Cpolyline points=%22429.1,439.1 430.9,437.0 432.7,434.9 434.7,432.8%22 stroke=%22%2300ff06%22/%3E%3Cpolyline points=%22434.7,432.8 436.7,430.9 438.7,428.9 440.9,427.1%22 stroke=%22%2300ff23%22/%3E%3Cpolyline points=%22440.9,427.1 443.0,425.3 445.3,423.6 447.5,421.9%22 stroke=%22%2300ff40%22/%3E%3Cpolyline points=%22447.5,421.9 449.9,420.3 452.2,418.8 454.7,417.3%22 stroke=%22%2300ff5d%22/%3E%3Cpolyline points=%22454.7,417.3 457.1,415.9 459.6,414.6 462.2,413.4%22 stroke=%22%2300ff79%22/%3E%3Cpolyline points=%22462.2,413.4 464.8,412.2 467.4,411.2 470.1,410.1%22 stroke=%22%2300ff96%22/%3E%3Cpolyline points=%22470.1,410.1 472.8,409.2 475.5,408.4 478.2,407.6%22 stroke=%22%2300ffb3%22/%3E%3Cpolyline points=%22478.2,407.6 481.0,406.9 483.8,406.4 486.6,405.8%22 stroke=%22%2300ffd0%22/%3E%3Cpolyline points=%22486.6,405.8 489.4,405.4 492.2,405.1 495.1,404.8%22 stroke=%22%2300ffee%22/%3E%3Cpolyline points=%22495.1,404.8 497.9,404.6 500.8,404.6 503.7,404.6%22 stroke=%22%2300f3ff%22/%3E%3Cpolyline points=%22503.7,404.6 506.5,404.6 509.4,404.8 512.3,405.1%22 stroke=%22%2300d6ff%22/%3E%3Cpolyline points=%22512.3,405.1 515.1,405.4 518.0,405.8 520.8,406.4%22 stroke=%22%2300b9ff%22/%3E%3Cpolyline points=%22520.8,406.4 523.6,407.0 526.4,407.6 529.2,408.4%22 stroke=%22%23009bff%22/%3E%3Cpolyline points=%22529.2,408.4 531.9,409.3 534.7,410.2 537.4,411.2%22 stroke=%22%23007eff%22/%3E%3Cpolyline points=%22537.4,411.2 540.1,412.3 542.7,413.5 545.3,414.8%22 stroke=%22%230061ff%22/%3E%3Cpolyline points=%22545.3,414.8 547.9,416.1 550.4,417.5 552.9,419.0%22 stroke=%22%230043ff%22/%3E%3Cpolyline points=%22552.9,419.0 555.3,420.6 557.7,422.2 560.1,423.9%22 stroke=%22%230025ff%22/%3E%3Cpolyline points=%22560.1,423.9 562.4,425.7 564.6,427.6 566.8,429.5%22 stroke=%22%230008ff%22/%3E%3Cpolyline points=%22566.8,429.5 568.9,431.5 571.0,433.5 573.0,435.7%22 stroke=%22%231600ff%22/%3E%3Cpolyline points=%22573.0,435.7 575.0,437.8 576.9,440.1 578.7,442.4%22 stroke=%22%233400ff%22/%3E%3Cpolyline points=%22578.7,442.4 580.4,444.7 582.1,447.1 583.7,449.6%22 stroke=%22%235200ff%22/%3E%3Cpolyline points=%22583.7,449.6 585.3,452.1 586.7,454.6 588.1,457.2%22 stroke=%22%237000ff%22/%3E%3Cpolyline points=%22588.1,457.2 589.4,459.8 590.6,462.5 591.8,465.2%22 stroke=%22%238e00ff%22/%3E%3Cpolyline points=%22591.8,465.2 592.8,468.0 593.8,470.7 594.7,473.5%22 stroke=%22%23ac00ff%22/%3E%3Cpolyline points=%22594.7,473.5 595.5,476.4 596.3,479.2 596.9,482.1%22 stroke=%22%23ca00ff%22/%3E%3Cpolyline points=%22596.9,482.1 597.5,485.0 597.9,488.0 598.3,490.9%22 stroke=%22%23e800ff%22/%3E%3Cpolyline points=%22598.3,490.9 598.6,493.8 598.8,496.8 599.0,499.8%22 stroke=%22%23ff00f8%22/%3E%3Cpolyline points=%22599.0,499.8 599.0,502.7 598.9,505.7 598.8,508.7%22 stroke=%22%23ff00da%22/%3E%3Cpolyline points=%22598.8,508.7 598.5,511.7 598.2,514.6 597.8,517.6%22 stroke=%22%23ff00bb%22/%3E%3Cpolyline points=%22597.8,517.6 597.3,520.5 596.7,523.4 596.0,526.3%22 stroke=%22%23ff009d%22/%3E%3Cpolyline points=%22596.0,526.3 595.2,529.2 594.4,532.1 593.5,534.9%22 stroke=%22%23ff007e%22/%3E%3Cpolyline points=%22593.5,534.9 592.4,537.7 591.3,540.5 590.1,543.3%22 stroke=%22%23ff0060%22/%3E%3Cpolyline points=%22590.1,543.3 588.8,546.0 587.5,548.7%22 stroke=%22%23ff0046%22/%3E%3Cpolyline points=%22587.5,548.7 586.0,551.3 584.5,553.9%22 stroke=%22%23ff0032%22/%3E%3Cpolyline points=%22584.5,553.9 582.9,556.4 581.2,558.9%22 stroke=%22%23ff001d%22/%3E%3Cpolyline points=%22581.2,558.9 579.5,561.4 577.7,563.8%22 stroke=%22%23ff0009%22/%3E%3Cpolyline points=%22577.7,563.8 575.8,566.1 573.8,568.4%22 stroke=%22%23ff0c00%22/%3E%3Cpolyline points=%22573.8,568.4 571.8,570.7 569.7,572.8%22 stroke=%22%23ff2000%22/%3E%3Cpolyline points=%22569.7,572.8 567.5,574.9 565.2,577.0%22 stroke=%22%23ff3500%22/%3E%3Cpolyline points=%22565.2,577.0 563.0,579.0 560.6,580.9%22 stroke=%22%23ff4900%22/%3E%3Cpolyline points=%22560.6,580.9 558.2,582.7 555.7,584.5%22 stroke=%22%23ff5e00%22/%3E%3Cpolyline points=%22555.7,584.5 553.2,586.2 550.6,587.8%22 stroke=%22%23ff7200%22/%3E%3Cpolyline points=%22550.6,587.8 548.0,589.3 545.3,590.8%22 stroke=%22%23ff8700%22/%3E%3Cpolyline points=%22545.3,590.8 542.6,592.1 539.8,593.4%22 stroke=%22%23ff9c00%22/%3E%3Cpolyline points=%22539.8,593.4 537.1,594.7 534.2,595.8%22 stroke=%22%23ffb100%22/%3E%3Cpolyline points=%22534.2,595.8 531.4,596.8 528.5,597.8%22 stroke=%22%23ffc500%22/%3E%3Cpolyline points=%22528.5,597.8 525.5,598.7 522.6,599.5%22 stroke=%22%23ffda00%22/%3E%3Cpolyline points=%22522.6,599.5 519.6,600.2 516.6,600.8%22 stroke=%22%23ffef00%22/%3E%3Cpolyline points=%22516.6,600.8 513.6,601.3 510.5,601.7%22 stroke=%22%23faff00%22/%3E%3Cpolyline points=%22510.5,601.7 507.5,602.1 504.4,602.3%22 stroke=%22%23e5ff00%22/%3E%3Cpolyline points=%22504.4,602.3 501.3,602.5 498.3,602.5%22 stroke=%22%23d0ff00%22/%3E%3Cpolyline points=%22498.3,602.5 495.2,602.5 492.1,602.4%22 stroke=%22%23bcff00%22/%3E%3Cpolyline points=%22492.1,602.4 489.0,602.1 486.0,601.8%22 stroke=%22%23a7ff00%22/%3E%3Cpolyline points=%22486.0,601.8 482.9,601.4 479.9,600.9%22 stroke=%22%2392ff00%22/%3E%3Cpolyline points=%22479.9,600.9 476.8,600.4 473.8,599.7%22 stroke=%22%237dff00%22/%3E%3Cpolyline points=%22473.8,599.7 470.8,598.9 467.8,598.1%22 stroke=%22%2368ff00%22/%3E%3Cpolyline points=%22467.8,598.1 464.9,597.1 462.0,596.1%22 stroke=%22%2353ff00%22/%3E%3Cpolyline points=%22462.0,596.1 459.1,595.0 456.2,593.8%22 stroke=%22%233dff00%22/%3E%3Cpolyline points=%22456.2,593.8 453.4,592.5 450.6,591.1%22 stroke=%22%2328ff00%22/%3E%3Cpolyline points=%22450.6,591.1 447.9,589.6 445.2,588.1%22 stroke=%22%2313ff00%22/%3E%3Cpolyline points=%22445.2,588.1 442.5,586.4 439.9,584.7%22 stroke=%22%2300ff02%22/%3E%3Cpolyline points=%22439.9,584.7 437.3,582.9 434.8,581.1%22 stroke=%22%2300ff17%22/%3E%3Cpolyline points=%22434.8,581.1 432.4,579.1 430.0,577.1%22 stroke=%22%2300ff2c%22/%3E%3Cpolyline points=%22430.0,577.1 427.7,575.0 425.4,572.9%22 stroke=%22%2300ff42%22/%3E%3Cpolyline points=%22425.4,572.9 423.2,570.7 421.1,568.4%22 stroke=%22%2300ff57%22/%3E%3Cpolyline points=%22421.1,568.4 419.0,566.0 417.0,563.6%22 stroke=%22%2300ff6c%22/%3E%3Cpolyline points=%22417.0,563.6 415.1,561.1 413.2,558.6%22 stroke=%22%2300ff82%22/%3E%3Cpolyline points=%22413.2,558.6 411.5,556.0 409.8,553.3%22 stroke=%22%2300ff97%22/%3E%3Cpolyline points=%22409.8,553.3 408.1,550.6 406.6,547.9%22 stroke=%22%2300ffac%22/%3E%3Cpolyline points=%22406.6,547.9 405.1,545.1 403.8,542.3%22 stroke=%22%2300ffc2%22/%3E%3Cpolyline points=%22403.8,542.3 402.5,539.4 401.3,536.5%22 stroke=%22%2300ffd7%22/%3E%3Cpolyline points=%22401.3,536.5 400.2,533.5 399.2,530.5%22 stroke=%22%2300ffed%22/%3E%3Cpolyline points=%22399.2,530.5 398.2,527.5 397.4,524.5%22 stroke=%22%2300fcff%22/%3E%3Cpolyline points=%22397.4,524.5 396.6,521.4 396.0,518.3%22 stroke=%22%2300e6ff%22/%3E%3Cpolyline points=%22396.0,518.3 395.4,515.2 394.9,512.0%22 stroke=%22%2300d1ff%22/%3E%3Cpolyline points=%22394.9,512.0 394.5,508.9 394.2,505.7%22 stroke=%22%2300bbff%22/%3E%3Cpolyline points=%22394.2,505.7 394.1,502.5 394.0,499.4%22 stroke=%22%2300a6ff%22/%3E%3Cpolyline points=%22394.0,499.4 394.0,496.2 394.1,493.0%22 stroke=%22%230090ff%22/%3E%3Cpolyline points=%22394.1,493.0 394.2,489.8 394.5,486.6%22 stroke=%22%23007aff%22/%3E%3Cpolyline points=%22394.5,486.6 394.9,483.5 395.4,480.3%22 stroke=%22%230065ff%22/%3E%3Cpolyline points=%22395.4,480.3 396.0,477.2 396.6,474.0%22 stroke=%22%23004fff%22/%3E%3Cpolyline points=%22396.6,474.0 397.4,470.9 398.2,467.8%22 stroke=%22%230039ff%22/%3E%3Cpolyline points=%22398.2,467.8 399.2,464.8 400.2,461.7%22 stroke=%22%230023ff%22/%3E%3Cpolyline points=%22400.2,461.7 401.4,458.7 402.6,455.8%22 stroke=%22%23000eff%22/%3E%3Cpolyline points=%22402.6,455.8 403.9,452.8 405.3,450.0%22 stroke=%22%230800ff%22/%3E%3Cpolyline points=%22405.3,450.0 406.8,447.1 408.3,444.3%22 stroke=%22%231e00ff%22/%3E%3Cpolyline points=%22408.3,444.3 410.0,441.5 411.7,438.8%22 stroke=%22%233400ff%22/%3E%3Cpolyline points=%22411.7,438.8 413.6,436.2 415.5,433.6%22 stroke=%22%234a00ff%22/%3E%3Cpolyline points=%22415.5,433.6 417.4,431.0 419.5,428.5%22 stroke=%22%236000ff%22/%3E%3Cpolyline points=%22419.5,428.5 421.6,426.1 423.8,423.7%22 stroke=%22%237600ff%22/%3E%3Cpolyline points=%22423.8,423.7 426.1,421.4 428.5,419.2%22 stroke=%22%238c00ff%22/%3E%3Cpolyline points=%22428.5,419.2 430.9,417.0 433.3,414.9%22 stroke=%22%23a200ff%22/%3E%3Cpolyline points=%22433.3,414.9 435.9,412.9 438.5,411.0%22 stroke=%22%23b800ff%22/%3E%3Cpolyline points=%22438.5,411.0 441.1,409.1 443.9,407.3%22 stroke=%22%23ce00ff%22/%3E%3Cpolyline points=%22443.9,407.3 446.6,405.6 449.5,404.0%22 stroke=%22%23e400ff%22/%3E%3Cpolyline points=%22449.5,404.0 452.3,402.5 455.2,401.0%22 stroke=%22%23fa00ff%22/%3E%3Cpolyline points=%22455.2,401.0 458.2,399.7 461.2,398.4%22 stroke=%22%23ff00ee%22/%3E%3Cpolyline points=%22461.2,398.4 464.3,397.2 467.3,396.1%22 stroke=%22%23ff00d7%22/%3E%3Cpolyline points=%22467.3,396.1 470.4,395.1 473.6,394.2%22 stroke=%22%23ff00c1%22/%3E%3Cpolyline points=%22473.6,394.2 476.8,393.4 480.0,392.7%22 stroke=%22%23ff00ab%22/%3E%3Cpolyline points=%22480.0,392.7 483.2,392.1 486.4,391.6%22 stroke=%22%23ff0095%22/%3E%3Cpolyline points=%22486.4,391.6 489.7,391.1 492.9,390.8%22 stroke=%22%23ff007e%22/%3E%3Cpolyline points=%22492.9,390.8 496.2,390.6 499.5,390.4%22 stroke=%22%23ff0068%22/%3E%3Cpolyline points=%22499.5,390.4 502.8,390.4 506.1,390.5%22 stroke=%22%23ff0052%22/%3E%3Cpolyline points=%22506.1,390.5 509.4,390.6 512.6,390.9%22 stroke=%22%23ff003b%22/%3E%3Cpolyline points=%22512.6,390.9 515.9,391.3 519.2,391.7%22 stroke=%22%23ff0025%22/%3E%3Cpolyline points=%22519.2,391.7 522.4,392.3 525.7,392.9%22 stroke=%22%23ff000f%22/%3E%3Cpolyline points=%22525.7,392.9 528.9,393.7 532.1,394.5%22 stroke=%22%23ff0800%22/%3E%3Cpolyline points=%22532.1,394.5 535.3,395.5 538.4,396.5%22 stroke=%22%23ff1e00%22/%3E%3Cpolyline points=%22538.4,396.5 541.5,397.7 544.6,398.9%22 stroke=%22%23ff3500%22/%3E%3Cpolyline points=%22544.6,398.9 547.6,400.2 550.6,401.6%22 stroke=%22%23ff4b00%22/%3E%3Cpolyline points=%22550.6,401.6 553.6,403.1 556.5,404.7%22 stroke=%22%23ff6200%22/%3E%3Cpolyline points=%22556.5,404.7 559.4,406.4 562.2,408.2%22 stroke=%22%23ff7900%22/%3E%3Cpolyline points=%22562.2,408.2 565.0,410.0 567.7,412.0%22 stroke=%22%23ff8f00%22/%3E%3Cpolyline points=%22567.7,412.0 570.3,414.0 572.9,416.1%22 stroke=%22%23ffa600%22/%3E%3Cpolyline points=%22572.9,416.1 575.4,418.3 577.9,420.5%22 stroke=%22%23ffbd00%22/%3E%3Cpolyline points=%22577.9,420.5 580.3,422.8 582.6,425.2%22 stroke=%22%23ffd300%22/%3E%3Cpolyline points=%22582.6,425.2 584.9,427.7 587.1,430.2%22 stroke=%22%23ffea00%22/%3E%3Cpolyline points=%22587.1,430.2 589.2,432.8 591.2,435.5%22 stroke=%22%23fdff00%22/%3E%3Cpolyline points=%22591.2,435.5 593.2,438.2 595.0,441.0%22 stroke=%22%23e6ff00%22/%3E%3Cpolyline points=%22595.0,441.0 596.8,443.9 598.5,446.8%22 stroke=%22%23d0ff00%22/%3E%3Cpolyline points=%22598.5,446.8 600.1,449.7 601.7,452.7%22 stroke=%22%23b9ff00%22/%3E%3Cpolyline points=%22601.7,452.7 603.1,455.7 604.4,458.8%22 stroke=%22%23a2ff00%22/%3E%3Cpolyline points=%22604.4,458.8 605.7,462.0 606.8,465.1%22 stroke=%22%238bff00%22/%3E%3Cpolyline points=%22606.8,465.1 607.9,468.3 608.9,471.6%22 stroke=%22%2374ff00%22/%3E%3Cpolyline points=%22608.9,471.6 609.7,474.8 610.5,478.1%22 stroke=%22%235dff00%22/%3E%3Cpolyline points=%22610.5,478.1 611.2,481.4 611.8,484.8%22 stroke=%22%2346ff00%22/%3E%3Cpolyline points=%22611.8,484.8 612.2,488.1 612.6,491.5%22 stroke=%22%232fff00%22/%3E%3Cpolyline points=%22612.6,491.5 612.9,494.9 613.0,498.2%22 stroke=%22%2318ff00%22/%3E%3Cpolyline points=%22613.0,498.2 613.1,501.6 613.1,505.0%22 stroke=%22%2301ff00%22/%3E%3Cpolyline points=%22613.1,505.0 613.0,508.4 612.7,511.8%22 stroke=%22%2300ff16%22/%3E%3Cpolyline points=%22612.7,511.8 612.4,515.2 611.9,518.6%22 stroke=%22%2300ff2d%22/%3E%3Cpolyline points=%22611.9,518.6 611.4,521.9 610.8,525.3%22 stroke=%22%2300ff44%22/%3E%3Cpolyline points=%22610.8,525.3 610.0,528.6 609.2,531.9%22 stroke=%22%2300ff5c%22/%3E%3Cpolyline points=%22609.2,531.9 608.2,535.2 607.2,538.5%22 stroke=%22%2300ff73%22/%3E%3Cpolyline points=%22607.2,538.5 606.0,541.7 604.8,544.9%22 stroke=%22%2300ff8a%22/%3E%3Cpolyline points=%22604.8,544.9 603.5,548.0 602.0,551.1%22 stroke=%22%2300ffa1%22/%3E%3Cpolyline points=%22602.0,551.1 600.5,554.2 598.9,557.2%22 stroke=%22%2300ffb9%22/%3E%3Cpolyline points=%22598.9,557.2 597.2,560.2 595.4,563.1%22 stroke=%22%2300ffd0%22/%3E%3Cpolyline points=%22595.4,563.1 593.5,566.0 591.6,568.8%22 stroke=%22%2300ffe7%22/%3E%3Cpolyline points=%22591.6,568.8 589.5,571.6 587.4,574.3%22 stroke=%22%2300ffff%22/%3E%3Cpolyline points=%22587.4,574.3 585.2,576.9 582.9,579.5%22 stroke=%22%2300e8ff%22/%3E%3Cpolyline points=%22582.9,579.5 580.5,582.0 578.0,584.4%22 stroke=%22%2300d1ff%22/%3E%3Cpolyline points=%22578.0,584.4 575.5,586.8 572.9,589.0%22 stroke=%22%2300b9ff%22/%3E%3Cpolyline points=%22572.9,589.0 570.3,591.2 567.5,593.4%22 stroke=%22%2300a2ff%22/%3E%3Cpolyline points=%22567.5,593.4 564.7,595.4 561.9,597.4%22 stroke=%22%23008aff%22/%3E%3Cpolyline points=%22561.9,597.4 559.0,599.2 556.0,601.0%22 stroke=%22%230073ff%22/%3E%3Cpolyline points=%22556.0,601.0 553.0,602.7 549.9,604.3%22 stroke=%22%23005bff%22/%3E%3Cpolyline points=%22549.9,604.3 546.8,605.8 543.6,607.2%22 stroke=%22%230043ff%22/%3E%3Cpolyline points=%22543.6,607.2 540.4,608.6 537.1,609.8%22 stroke=%22%23002cff%22/%3E%3Cpolyline points=%22537.1,609.8 533.9,610.9 530.5,611.9%22 stroke=%22%230014ff%22/%3E%3Cpolyline points=%22530.5,611.9 527.2,612.9 523.8,613.7%22 stroke=%22%230400ff%22/%3E%3Cpolyline points=%22523.8,613.7 520.4,614.4 517.0,615.1%22 stroke=%22%231b00ff%22/%3E%3Cpolyline points=%22517.0,615.1 513.5,615.6 510.0,616.0%22 stroke=%22%233300ff%22/%3E%3Cpolyline points=%22510.0,616.0 506.6,616.3 503.1,616.5%22 stroke=%22%234b00ff%22/%3E%3Cpolyline points=%22503.1,616.5 499.6,616.6 496.1,616.6%22 stroke=%22%236300ff%22/%3E%3Cpolyline points=%22496.1,616.6 492.6,616.5 489.1,616.3%22 stroke=%22%237a00ff%22/%3E%3Cpolyline points=%22489.1,616.3 485.6,616.0 482.1,615.6%22 stroke=%22%239200ff%22/%3E%3Cpolyline points=%22482.1,615.6 478.6,615.1 475.2,614.4%22 stroke=%22%23aa00ff%22/%3E%3Cpolyline points=%22475.2,614.4 471.7,613.7 468.3,612.9%22 stroke=%22%23c200ff%22/%3E%3Cpolyline points=%22468.3,612.9 464.9,611.9 461.6,610.9%22 stroke=%22%23da00ff%22/%3E%3Cpolyline points=%22461.6,610.9 458.2,609.8 454.9,608.5%22 stroke=%22%23f200ff%22/%3E%3Cpolyline points=%22454.9,608.5 451.7,607.2 448.4,605.7%22 stroke=%22%23ff00f4%22/%3E%3Cpolyline points=%22448.4,605.7 445.3,604.2 442.1,602.6%22 stroke=%22%23ff00dc%22/%3E%3Cpolyline points=%22442.1,602.6 439.0,600.9 436.0,599.0%22 stroke=%22%23ff00c4%22/%3E%3Cpolyline points=%22436.0,599.0 433.0,597.1 430.1,595.1%22 stroke=%22%23ff00ac%22/%3E%3Cpolyline points=%22430.1,595.1 427.2,593.0 424.4,590.9%22 stroke=%22%23ff0094%22/%3E%3Cpolyline points=%22424.4,590.9 421.7,588.6 419.0,586.3%22 stroke=%22%23ff007c%22/%3E%3Cpolyline points=%22419.0,586.3 416.4,583.9 413.9,581.4%22 stroke=%22%23ff0064%22/%3E%3Cpolyline points=%22413.9,581.4 411.4,578.8 409.1,576.1%22 stroke=%22%23ff004c%22/%3E%3Cpolyline points=%22409.1,576.1 406.8,573.4 404.6,570.6%22 stroke=%22%23ff0033%22/%3E%3Cpolyline points=%22404.6,570.6 402.4,567.8 400.4,564.9%22 stroke=%22%23ff001b%22/%3E%3Cpolyline points=%22400.4,564.9 398.4,561.9 396.6,558.8%22 stroke=%22%23ff0003%22/%3E%3Cpolyline points=%22396.6,558.8 394.8,555.7 393.1,552.6%22 stroke=%22%23ff1500%22/%3E%3Cpolyline points=%22393.1,552.6 391.5,549.4 390.0,546.1%22 stroke=%22%23ff2e00%22/%3E%3Cpolyline points=%22390.0,546.1 388.6,542.8 387.3,539.5%22 stroke=%22%23ff4600%22/%3E%3Cpolyline points=%22387.3,539.5 386.1,536.1 385.0,532.7%22 stroke=%22%23ff5e00%22/%3E%3Cpolyline points=%22385.0,532.7 384.0,529.3 383.1,525.8%22 stroke=%22%23ff7700%22/%3E%3Cpolyline points=%22383.1,525.8 382.3,522.3 381.7,518.7%22 stroke=%22%23ff8f00%22/%3E%3Cpolyline points=%22381.7,518.7 381.1,515.2 380.6,511.6%22 stroke=%22%23ffa800%22/%3E%3Cpolyline points=%22380.6,511.6 380.3,508.0 380.0,504.5%22 stroke=%22%23ffc000%22/%3E%3Cpolyline points=%22380.0,504.5 379.9,500.9 379.8,497.2%22 stroke=%22%23ffd900%22/%3E%3Cpolyline points=%22379.8,497.2 379.9,493.6 380.1,490.0%22 stroke=%22%23fff100%22/%3E%3Cpolyline points=%22380.1,490.0 380.3,486.4 380.7,482.8%22 stroke=%22%23f4ff00%22/%3E%3Cpolyline points=%22380.7,482.8 381.2,479.3 381.9,475.7%22 stroke=%22%23dcff00%22/%3E%3Cpolyline points=%22381.9,475.7 382.6,472.1 383.4,468.6%22 stroke=%22%23c3ff00%22/%3E%3Cpolyline points=%22383.4,468.6 384.3,465.1 385.4,461.6%22 stroke=%22%23aaff00%22/%3E%3Cpolyline points=%22385.4,461.6 386.5,458.2 387.7,454.8%22 stroke=%22%2392ff00%22/%3E%3Cpolyline points=%22387.7,454.8 389.1,451.4 390.5,448.1%22 stroke=%22%2379ff00%22/%3E%3Cpolyline points=%22390.5,448.1 392.1,444.8 393.7,441.5%22 stroke=%22%2360ff00%22/%3E%3Cpolyline points=%22393.7,441.5 395.5,438.3 397.3,435.2%22 stroke=%22%2348ff00%22/%3E%3Cpolyline points=%22397.3,435.2 399.2,432.1 401.3,429.1%22 stroke=%22%232fff00%22/%3E%3Cpolyline points=%22401.3,429.1 403.4,426.1 405.6,423.2%22 stroke=%22%2316ff00%22/%3E%3Cpolyline points=%22405.6,423.2 407.9,420.4 410.3,417.6%22 stroke=%22%2300ff03%22/%3E%3Cpolyline points=%22410.3,417.6 412.7,414.9 415.3,412.3%22 stroke=%22%2300ff1c%22/%3E%3Cpolyline points=%22415.3,412.3 417.9,409.7 420.6,407.2%22 stroke=%22%2300ff34%22/%3E%3Cpolyline points=%22420.6,407.2 423.4,404.8 426.2,402.5%22 stroke=%22%2300ff4d%22/%3E%3Cpolyline points=%22426.2,402.5 429.1,400.3 432.1,398.2%22 stroke=%22%2300ff66%22/%3E%3Cpolyline points=%22432.1,398.2 435.2,396.1 438.3,394.2%22 stroke=%22%2300ff7f%22/%3E%3Cpolyline points=%22438.3,394.2 441.5,392.3 444.7,390.5%22 stroke=%22%2300ff98%22/%3E%3Cpolyline points=%22444.7,390.5 448.0,388.9 451.3,387.3%22 stroke=%22%2300ffb1%22/%3E%3Cpolyline points=%22451.3,387.3 454.7,385.8 458.1,384.4%22 stroke=%22%2300ffca%22/%3E%3Cpolyline points=%22458.1,384.4 461.6,383.2 465.1,382.0%22 stroke=%22%2300ffe3%22/%3E%3Cpolyline points=%22465.1,382.0 468.6,381.0 472.2,380.0%22 stroke=%22%2300fffd%22/%3E%3Cpolyline points=%22472.2,380.0 475.8,379.2 479.4,378.4%22 stroke=%22%2300e8ff%22/%3E%3Cpolyline points=%22479.4,378.4 483.0,377.8 486.7,377.3%22 stroke=%22%2300cfff%22/%3E%3Cpolyline points=%22486.7,377.3 490.4,376.8 494.1,376.5%22 stroke=%22%2300b6ff%22/%3E%3Cpolyline points=%22494.1,376.5 497.8,376.4 501.5,376.3%22 stroke=%22%23009dff%22/%3E%3Cpolyline points=%22501.5,376.3 505.2,376.3 508.9,376.5%22 stroke=%22%230083ff%22/%3E%3Cpolyline points=%22508.9,376.5 512.6,376.7 516.3,377.1%22 stroke=%22%23006aff%22/%3E%3Cpolyline points=%22516.3,377.1 520.0,377.6 523.7,378.2%22 stroke=%22%230051ff%22/%3E%3Cpolyline points=%22523.7,378.2 527.4,378.9 531.0,379.7%22 stroke=%22%230038ff%22/%3E%3Cpolyline points=%22531.0,379.7 534.6,380.6 538.2,381.6%22 stroke=%22%23001eff%22/%3E%3Cpolyline points=%22538.2,381.6 541.8,382.7 545.3,384.0%22 stroke=%22%230005ff%22/%3E%3Cpolyline points=%22545.3,384.0 548.8,385.3 552.2,386.8%22 stroke=%22%231500ff%22/%3E%3Cpolyline points=%22552.2,386.8 555.6,388.3 559.0,390.0%22 stroke=%22%232e00ff%22/%3E%3Cpolyline points=%22559.0,390.0 562.3,391.8 565.5,393.6%22 stroke=%22%234700ff%22/%3E%3Cpolyline points=%22565.5,393.6 568.7,395.6 571.9,397.6%22 stroke=%22%236100ff%22/%3E%3Cpolyline points=%22571.9,397.6 574.9,399.8 578.0,402.0%22 stroke=%22%237a00ff%22/%3E%3Cpolyline points=%22578.0,402.0 580.9,404.4 583.8,406.8%22 stroke=%22%239400ff%22/%3E%3Cpolyline points=%22583.8,406.8 586.6,409.3 589.3,411.9%22 stroke=%22%23ae00ff%22/%3E%3Cpolyline points=%22589.3,411.9 592.0,414.5 594.6,417.3%22 stroke=%22%23c700ff%22/%3E%3Cpolyline points=%22594.6,417.3 597.0,420.1 599.4,423.0%22 stroke=%22%23e100ff%22/%3E%3Cpolyline points=%22599.4,423.0 601.8,426.0 604.0,429.1%22 stroke=%22%23fa00ff%22/%3E%3Cpolyline points=%22604.0,429.1 606.1,432.2 608.2,435.4%22 stroke=%22%23ff00ea%22/%3E%3Cpolyline points=%22608.2,435.4 610.1,438.6 612.0,441.9%22 stroke=%22%23ff00d0%22/%3E%3Cpolyline points=%22612.0,441.9 613.7,445.2 615.4,448.7%22 stroke=%22%23ff00b6%22/%3E%3Cpolyline points=%22615.4,448.7 616.9,452.1 618.4,455.6%22 stroke=%22%23ff009d%22/%3E%3Cpolyline points=%22618.4,455.6 619.7,459.2 621.0,462.8%22 stroke=%22%23ff0083%22/%3E%3Cpolyline points=%22621.0,462.8 622.1,466.4 623.1,470.0%22 stroke=%22%23ff0069%22/%3E%3Cpolyline points=%22623.1,470.0 624.0,473.7 624.8,477.5%22 stroke=%22%23ff004f%22/%3E%3Cpolyline points=%22624.8,477.5 625.5,481.2 626.1,485.0%22 stroke=%22%23ff0035%22/%3E%3Cpolyline points=%22626.1,485.0 626.5,488.8 626.9,492.5%22 stroke=%22%23ff001b%22/%3E%3Cpolyline points=%22626.9,492.5 627.1,496.4 627.2,500.2%22 stroke=%22%23ff0001%22/%3E%3Cpolyline points=%22627.2,500.2 627.2,504.0 627.1,507.8%22 stroke=%22%23ff1800%22/%3E%3Cpolyline points=%22627.1,507.8 626.9,511.6 626.6,515.4%22 stroke=%22%23ff3200%22/%3E%3Cpolyline points=%22626.6,515.4 626.1,519.2 625.5,523.0%22 stroke=%22%23ff4d00%22/%3E%3Cpolyline points=%22625.5,523.0 624.9,526.8 624.1,530.5%22 stroke=%22%23ff6700%22/%3E%3Cpolyline points=%22624.1,530.5 623.2,534.3 622.1,538.0%22 stroke=%22%23ff8100%22/%3E%3Cpolyline points=%22622.1,538.0 621.0,541.6 619.8,545.3%22 stroke=%22%23ff9b00%22/%3E%3Cpolyline points=%22619.8,545.3 618.4,548.9 617.0,552.4%22 stroke=%22%23ffb500%22/%3E%3Cpolyline points=%22617.0,552.4 615.4,555.9 613.7,559.4%22 stroke=%22%23ffcf00%22/%3E%3Cpolyline points=%22613.7,559.4 612.0,562.8 610.1,566.2%22 stroke=%22%23ffe900%22/%3E%3Cpolyline points=%22610.1,566.2 608.1,569.5 606.0,572.7%22 stroke=%22%23fbff00%22/%3E%3Cpolyline points=%22606.0,572.7 603.9,575.9 601.6,579.1%22 stroke=%22%23e0ff00%22/%3E%3Cpolyline points=%22601.6,579.1 599.2,582.1 596.8,585.1%22 stroke=%22%23c6ff00%22/%3E%3Cpolyline points=%22596.8,585.1 594.2,588.0 591.6,590.8%22 stroke=%22%23acff00%22/%3E%3Cpolyline points=%22591.6,590.8 588.9,593.6 586.1,596.3%22 stroke=%22%2392ff00%22/%3E%3Cpolyline points=%22586.1,596.3 583.2,598.9 580.2,601.4%22 stroke=%22%2377ff00%22/%3E%3Cpolyline points=%22580.2,601.4 577.2,603.8 574.1,606.1%22 stroke=%22%235dff00%22/%3E%3Cpolyline points=%22574.1,606.1 570.9,608.3 567.6,610.5%22 stroke=%22%2342ff00%22/%3E%3Cpolyline points=%22567.6,610.5 564.3,612.5 561.0,614.4%22 stroke=%22%2328ff00%22/%3E%3Cpolyline points=%22561.0,614.4 557.5,616.3 554.0,618.0%22 stroke=%22%230eff00%22/%3E%3Cpolyline points=%22554.0,618.0 550.5,619.6 546.9,621.2%22 stroke=%22%2300ff0d%22/%3E%3Cpolyline points=%22546.9,621.2 543.3,622.6 539.6,623.9%22 stroke=%22%2300ff27%22/%3E%3Cpolyline points=%22539.6,623.9 535.9,625.1 532.1,626.2%22 stroke=%22%2300ff42%22/%3E%3Cpolyline points=%22532.1,626.2 528.4,627.2 524.5,628.0%22 stroke=%22%2300ff5d%22/%3E%3Cpolyline points=%22524.5,628.0 520.7,628.8 516.8,629.4%22 stroke=%22%2300ff77%22/%3E%3Cpolyline points=%22516.8,629.4 513.0,629.9 509.1,630.3%22 stroke=%22%2300ff92%22/%3E%3Cpolyline points=%22509.1,630.3 505.2,630.6 501.2,630.7%22 stroke=%22%2300ffac%22/%3E%3Cpolyline points=%22501.2,630.7 497.3,630.8 493.4,630.7%22 stroke=%22%2300ffc7%22/%3E%3Cpolyline points=%22493.4,630.7 489.5,630.5 485.5,630.2%22 stroke=%22%2300ffe2%22/%3E%3Cpolyline points=%22485.5,630.2 481.6,629.8 477.7,629.2%22 stroke=%22%2300fffd%22/%3E%3Cpolyline points=%22477.7,629.2 473.9,628.6 470.0,627.8%22 stroke=%22%2300e7ff%22/%3E%3Cpolyline points=%22470.0,627.8 466.2,626.9 462.4,625.9%22 stroke=%22%2300ccff%22/%3E%3Cpolyline points=%22462.4,625.9 458.6,624.8 454.8,623.6%22 stroke=%22%2300b1ff%22/%3E%3Cpolyline points=%22454.8,623.6 451.1,622.2 447.4,620.7%22 stroke=%22%230096ff%22/%3E%3Cpolyline points=%22447.4,620.7 443.8,619.2 440.2,617.5%22 stroke=%22%23007bff%22/%3E%3Cpolyline points=%22440.2,617.5 436.7,615.7 433.2,613.8%22 stroke=%22%230060ff%22/%3E%3Cpolyline points=%22433.2,613.8 429.8,611.8 426.4,609.7%22 stroke=%22%230046ff%22/%3E%3Cpolyline points=%22426.4,609.7 423.1,607.5 419.9,605.2%22 stroke=%22%23002bff%22/%3E%3Cpolyline points=%22419.9,605.2 416.8,602.8 413.7,600.3%22 stroke=%22%230010ff%22/%3E%3Cpolyline points=%22413.7,600.3 410.6,597.8 407.7,595.1%22 stroke=%22%230b00ff%22/%3E%3Cpolyline points=%22407.7,595.1 404.9,592.3 402.1,589.5%22 stroke=%22%232600ff%22/%3E%3Cpolyline points=%22402.1,589.5 399.4,586.5 396.8,583.5%22 stroke=%22%234100ff%22/%3E%3Cpolyline points=%22396.8,583.5 394.3,580.4 391.8,577.3%22 stroke=%22%235d00ff%22/%3E%3Cpolyline points=%22391.8,577.3 389.5,574.0 387.3,570.7%22 stroke=%22%237800ff%22/%3E%3Cpolyline points=%22387.3,570.7 385.2,567.3 383.1,563.9%22 stroke=%22%239300ff%22/%3E%3Cpolyline points=%22383.1,563.9 381.2,560.4 379.4,556.8%22 stroke=%22%23ae00ff%22/%3E%3Cpolyline points=%22379.4,556.8 377.7,553.2 376.1,549.5%22 stroke=%22%23c900ff%22/%3E%3Cpolyline points=%22376.1,549.5 374.6,545.8 373.2,542.1%22 stroke=%22%23e400ff%22/%3E%3Cpolyline points=%22373.2,542.1 371.9,538.3 370.8,534.4%22 stroke=%22%23ff00fe%22/%3E%3Cpolyline points=%22370.8,534.4 369.7,530.5 368.8,526.6%22 stroke=%22%23ff00e3%22/%3E%3Cpolyline points=%22368.8,526.6 368.0,522.7 367.3,518.7%22 stroke=%22%23ff00c8%22/%3E%3Cpolyline points=%22367.3,518.7 366.8,514.8 366.3,510.8%22 stroke=%22%23ff00ac%22/%3E%3Cpolyline points=%22366.3,510.8 366.0,506.7 365.8,502.7%22 stroke=%22%23ff0091%22/%3E%3Cpolyline points=%22365.8,502.7 365.7,498.7 365.7,494.7%22 stroke=%22%23ff0076%22/%3E%3Cpolyline points=%22365.7,494.7 365.9,490.6 366.1,486.6%22 stroke=%22%23ff005a%22/%3E%3Cpolyline points=%22366.1,486.6 366.5,482.6 367.1,478.6%22 stroke=%22%23ff003f%22/%3E%3Cpolyline points=%22367.1,478.6 367.7,474.6 368.4,470.6%22 stroke=%22%23ff0023%22/%3E%3Cpolyline points=%22368.4,470.6 369.3,466.7 370.3,462.7%22 stroke=%22%23ff0008%22/%3E%3Cpolyline points=%22370.3,462.7 371.4,458.9 372.7,455.0%22 stroke=%22%23ff1400%22/%3E%3Cpolyline points=%22372.7,455.0 374.0,451.2 375.5,447.4%22 stroke=%22%23ff2f00%22/%3E%3Cpolyline points=%22375.5,447.4 377.0,443.6 378.7,439.9%22 stroke=%22%23ff4b00%22/%3E%3Cpolyline points=%22378.7,439.9 380.5,436.3 382.4,432.7%22 stroke=%22%23ff6600%22/%3E%3Cpolyline points=%22382.4,432.7 384.4,429.2 386.6,425.7%22 stroke=%22%23ff8200%22/%3E%3Cpolyline points=%22386.6,425.7 388.8,422.3 391.1,419.0%22 stroke=%22%23ff9e00%22/%3E%3Cpolyline points=%22391.1,419.0 393.5,415.7 396.1,412.5%22 stroke=%22%23ffb900%22/%3E%3Cpolyline points=%22396.1,412.5 398.7,409.4 401.4,406.3%22 stroke=%22%23ffd500%22/%3E%3Cpolyline points=%22401.4,406.3 404.2,403.4 407.1,400.5%22 stroke=%22%23fff100%22/%3E%3Cpolyline points=%22407.1,400.5 410.1,397.7 413.1,395.0%22 stroke=%22%23f1ff00%22/%3E%3Cpolyline points=%22413.1,395.0 416.3,392.4 419.5,389.9%22 stroke=%22%23d5ff00%22/%3E%3Cpolyline points=%22419.5,389.9 422.8,387.4 426.2,385.1%22 stroke=%22%23baff00%22/%3E%3Cpolyline points=%22426.2,385.1 429.6,382.9 433.1,380.8%22 stroke=%22%239eff00%22/%3E%3Cpolyline points=%22433.1,380.8 436.7,378.8 440.4,376.9%22 stroke=%22%2382ff00%22/%3E%3Cpolyline points=%22440.4,376.9 444.0,375.1 447.8,373.4%22 stroke=%22%2366ff00%22/%3E%3Cpolyline points=%22447.8,373.4 451.6,371.8 455.4,370.4%22 stroke=%22%234aff00%22/%3E%3Cpolyline points=%22455.4,370.4 459.3,369.0 463.3,367.8%22 stroke=%22%232eff00%22/%3E%3Cpolyline points=%22463.3,367.8 467.2,366.7 471.2,365.7%22 stroke=%22%2312ff00%22/%3E%3Cpolyline points=%22471.2,365.7 475.3,364.8 479.3,364.1%22 stroke=%22%2300ff0a%22/%3E%3Cpolyline points=%22479.3,364.1 483.4,363.4 487.5,362.9%22 stroke=%22%2300ff26%22/%3E%3Cpolyline points=%22487.5,362.9 491.6,362.6 495.7,362.3%22 stroke=%22%2300ff42%22/%3E%3Cpolyline points=%22495.7,362.3 499.9,362.2 504.0,362.2%22 stroke=%22%2300ff5e%22/%3E%3Cpolyline points=%22504.0,362.2 508.1,362.3 512.3,362.5%22 stroke=%22%2300ff7a%22/%3E%3Cpolyline points=%22512.3,362.5 516.4,362.9 520.5,363.4%22 stroke=%22%2300ff96%22/%3E%3Cpolyline points=%22520.5,363.4 524.6,364.0 528.7,364.7%22 stroke=%22%2300ffb3%22/%3E%3Cpolyline points=%22528.7,364.7 532.8,365.6 536.8,366.5%22 stroke=%22%2300ffcf%22/%3E%3Cpolyline points=%22536.8,366.5 540.8,367.6 544.8,368.9%22 stroke=%22%2300ffeb%22/%3E%3Cpolyline points=%22544.8,368.9 548.7,370.2 552.6,371.6%22 stroke=%22%2300f7ff%22/%3E%3Cpolyline points=%22552.6,371.6 556.5,373.2 560.3,374.9%22 stroke=%22%2300daff%22/%3E%3Cpolyline points=%22560.3,374.9 564.0,376.7 567.7,378.6%22 stroke=%22%2300beff%22/%3E%3Cpolyline points=%22567.7,378.6 571.4,380.7 574.9,382.8%22 stroke=%22%2300a2ff%22/%3E%3Cpolyline points=%22574.9,382.8 578.5,385.0 581.9,387.4%22 stroke=%22%230085ff%22/%3E%3Cpolyline points=%22581.9,387.4 585.3,389.8 588.6,392.4%22 stroke=%22%230069ff%22/%3E%3Cpolyline points=%22588.6,392.4 591.8,395.1 595.0,397.8%22 stroke=%22%23004cff%22/%3E%3Cpolyline points=%22595.0,397.8 598.1,400.7 601.1,403.6%22 stroke=%22%230030ff%22/%3E%3Cpolyline points=%22601.1,403.6 603.9,406.6 606.8,409.7%22 stroke=%22%230013ff%22/%3E%3Cpolyline points=%22606.8,409.7 609.5,412.9 612.1,416.2%22 stroke=%22%230900ff%22/%3E%3Cpolyline points=%22612.1,416.2 614.6,419.6 617.0,423.0%22 stroke=%22%232600ff%22/%3E%3Cpolyline points=%22617.0,423.0 619.3,426.5 621.5,430.1%22 stroke=%22%234200ff%22/%3E%3Cpolyline points=%22621.5,430.1 623.6,433.8 625.6,437.5%22 stroke=%22%235f00ff%22/%3E%3Cpolyline points=%22625.6,437.5 627.5,441.2 629.3,445.1%22 stroke=%22%237b00ff%22/%3E%3Cpolyline points=%22629.3,445.1 630.9,448.9 632.5,452.9%22 stroke=%22%239800ff%22/%3E%3Cpolyline points=%22632.5,452.9 633.9,456.8 635.2,460.9%22 stroke=%22%23b500ff%22/%3E%3Cpolyline points=%22635.2,460.9 636.4,464.9 637.4,469.0%22 stroke=%22%23d200ff%22/%3E%3Cpolyline points=%22637.4,469.0 638.4,473.1 639.2,477.3%22 stroke=%22%23ee00ff%22/%3E%3Cpolyline points=%22639.2,477.3 639.9,481.5 640.4,485.6%22 stroke=%22%23ff00f3%22/%3E%3Cpolyline points=%22640.4,485.6 640.8,489.9 641.2,494.1%22 stroke=%22%23ff00d6%22/%3E%3Cpolyline points=%22641.2,494.1 641.3,498.3 641.4,502.6%22 stroke=%22%23ff00b9%22/%3E%3Cpolyline points=%22641.4,502.6 641.3,506.8 641.1,511.1%22 stroke=%22%23ff009d%22/%3E%3Cpolyline points=%22641.1,511.1 640.8,515.3 640.3,519.5%22 stroke=%22%23ff0080%22/%3E%3Cpolyline points=%22640.3,519.5 639.8,523.7 639.0,527.9%22 stroke=%22%23ff0063%22/%3E%3Cpolyline points=%22639.0,527.9 638.2,532.1 637.2,536.2%22 stroke=%22%23ff0046%22/%3E%3Cpolyline points=%22637.2,536.2 636.2,540.4 635.0,544.4%22 stroke=%22%23ff0029%22/%3E%3Cpolyline points=%22635.0,544.4 633.6,548.5 632.2,552.5%22 stroke=%22%23ff000c%22/%3E%3Cpolyline points=%22632.2,552.5 630.6,556.5 628.9,560.4%22 stroke=%22%23ff1100%22/%3E%3Cpolyline points=%22628.9,560.4 627.1,564.3 625.2,568.1%22 stroke=%22%23ff2e00%22/%3E%3Cpolyline points=%22625.2,568.1 623.1,571.8 621.0,575.5%22 stroke=%22%23ff4b00%22/%3E%3Cpolyline points=%22621.0,575.5 618.7,579.2 616.3,582.7%22 stroke=%22%23ff6800%22/%3E%3Cpolyline points=%22616.3,582.7 613.9,586.2 611.3,589.6%22 stroke=%22%23ff8600%22/%3E%3Cpolyline points=%22611.3,589.6 608.6,593.0 605.8,596.2%22 stroke=%22%23ffa300%22/%3E%3Cpolyline points=%22605.8,596.2 602.9,599.4 599.9,602.5%22 stroke=%22%23ffc000%22/%3E%3Cpolyline points=%22599.9,602.5 596.9,605.5 593.7,608.4%22 stroke=%22%23ffdd00%22/%3E%3Cpolyline points=%22593.7,608.4 590.4,611.2 587.1,614.0%22 stroke=%22%23fffa00%22/%3E%3Cpolyline points=%22587.1,614.0 583.7,616.6 580.2,619.1%22 stroke=%22%23e6ff00%22/%3E%3Cpolyline points=%22580.2,619.1 576.6,621.5 573.0,623.8%22 stroke=%22%23c9ff00%22/%3E%3Cpolyline points=%22573.0,623.8 569.3,626.0 565.5,628.1%22 stroke=%22%23acff00%22/%3E%3Cpolyline points=%22565.5,628.1 561.6,630.0 557.7,631.9%22 stroke=%22%238eff00%22/%3E%3Cpolyline points=%22557.7,631.9 553.8,633.6 549.8,635.2%22 stroke=%22%2371ff00%22/%3E%3Cpolyline points=%22549.8,635.2 545.7,636.7 541.6,638.1%22 stroke=%22%2354ff00%22/%3E%3Cpolyline points=%22541.6,638.1 537.5,639.4 533.3,640.5%22 stroke=%22%2336ff00%22/%3E%3Cpolyline points=%22533.3,640.5 529.1,641.5 524.8,642.4%22 stroke=%22%2319ff00%22/%3E%3Cpolyline points=%22524.8,642.4 520.6,643.1 516.3,643.7%22 stroke=%22%2300ff05%22/%3E%3Cpolyline points=%22516.3,643.7 511.9,644.2 507.6,644.6%22 stroke=%22%2300ff22%22/%3E%3Cpolyline points=%22507.6,644.6 503.3,644.8 498.9,644.9%22 stroke=%22%2300ff40%22/%3E%3Cpolyline points=%22498.9,644.9 494.6,644.9 490.2,644.7%22 stroke=%22%2300ff5d%22/%3E%3Cpolyline points=%22490.2,644.7 485.9,644.4 481.6,644.0%22 stroke=%22%2300ff7b%22/%3E%3Cpolyline points=%22481.6,644.0 477.2,643.5 472.9,642.8%22 stroke=%22%2300ff98%22/%3E%3Cpolyline points=%22472.9,642.8 468.6,642.0 464.4,641.0%22 stroke=%22%2300ffb6%22/%3E%3Cpolyline points=%22464.4,641.0 460.2,640.0 456.0,638.8%22 stroke=%22%2300ffd4%22/%3E%3Cpolyline points=%22456.0,638.8 451.8,637.5 447.7,636.0%22 stroke=%22%2300fff2%22/%3E%3Cpolyline points=%22447.7,636.0 443.6,634.4 439.5,632.7%22 stroke=%22%2300efff%22/%3E%3Cpolyline points=%22439.5,632.7 435.6,630.9 431.6,629.0%22 stroke=%22%2300d1ff%22/%3E%3Cpolyline points=%22431.6,629.0 427.8,627.0 423.9,624.8%22 stroke=%22%2300b3ff%22/%3E%3Cpolyline points=%22423.9,624.8 420.2,622.5 416.5,620.1%22 stroke=%22%230095ff%22/%3E%3Cpolyline points=%22416.5,620.1 412.9,617.6 409.4,615.0%22 stroke=%22%230078ff%22/%3E%3Cpolyline points=%22409.4,615.0 405.9,612.3 402.6,609.5%22 stroke=%22%23005aff%22/%3E%3Cpolyline points=%22402.6,609.5 399.3,606.5 396.1,603.5%22 stroke=%22%23003cff%22/%3E%3Cpolyline points=%22396.1,603.5 393.0,600.4 390.0,597.2%22 stroke=%22%23001eff%22/%3E%3Cpolyline points=%22390.0,597.2 387.0,593.9 384.2,590.5%22 stroke=%22%230000ff%22/%3E%3Cpolyline points=%22384.2,590.5 381.5,587.0 378.9,583.5%22 stroke=%22%231e00ff%22/%3E%3Cpolyline points=%22378.9,583.5 376.4,579.8 374.0,576.1%22 stroke=%22%233c00ff%22/%3E%3Cpolyline points=%22374.0,576.1 371.7,572.3 369.5,568.5%22 stroke=%22%235a00ff%22/%3E%3Cpolyline points=%22369.5,568.5 367.5,564.6 365.5,560.6%22 stroke=%22%237800ff%22/%3E%3Cpolyline points=%22365.5,560.6 363.7,556.6 362.0,552.5%22 stroke=%22%239600ff%22/%3E%3Cpolyline points=%22362.0,552.5 360.4,548.3 359.0,544.2%22 stroke=%22%23b400ff%22/%3E%3Cpolyline points=%22359.0,544.2 357.7,539.9 356.5,535.6%22 stroke=%22%23d300ff%22/%3E%3Cpolyline points=%22356.5,535.6 355.4,531.3 354.5,527.0%22 stroke=%22%23f100ff%22/%3E%3Cpolyline points=%22354.5,527.0 353.6,522.6 353.0,518.2%22 stroke=%22%23ff00ef%22/%3E%3Cpolyline points=%22353.0,518.2 352.4,513.8 352.0,509.4%22 stroke=%22%23ff00d1%22/%3E%3Cpolyline points=%22352.0,509.4 351.7,505.0 351.6,500.5%22 stroke=%22%23ff00b3%22/%3E%3Cpolyline points=%22351.6,500.5 351.6,496.1 351.7,491.6%22 stroke=%22%23ff0094%22/%3E%3Cpolyline points=%22351.7,491.6 351.9,487.2 352.3,482.7%22 stroke=%22%23ff0076%22/%3E%3Cpolyline points=%22352.3,482.7 352.8,478.3 353.5,473.9%22 stroke=%22%23ff0058%22/%3E%3Cpolyline points=%22353.5,473.9 354.3,469.5 355.2,465.1%22 stroke=%22%23ff0039%22/%3E%3Cpolyline points=%22355.2,465.1 356.2,460.7 357.4,456.4%22 stroke=%22%23ff001b%22/%3E%3Cpolyline points=%22357.4,456.4 358.7,452.1 360.1,447.9%22 stroke=%22%23ff0300%22/%3E%3Cpolyline points=%22360.1,447.9 361.7,443.7 363.4,439.6%22 stroke=%22%23ff2200%22/%3E%3Cpolyline points=%22363.4,439.6 365.2,435.5 367.1,431.4%22 stroke=%22%23ff4000%22/%3E%3Cpolyline points=%22367.1,431.4 369.2,427.4 371.4,423.5%22 stroke=%22%23ff5f00%22/%3E%3Cpolyline points=%22371.4,423.5 373.7,419.6 376.1,415.9%22 stroke=%22%23ff7d00%22/%3E%3Cpolyline points=%22376.1,415.9 378.6,412.1 381.3,408.5%22 stroke=%22%23ff9c00%22/%3E%3Cpolyline points=%22381.3,408.5 384.0,404.9 386.8,401.4%22 stroke=%22%23ffbb00%22/%3E%3Cpolyline points=%22386.8,401.4 389.8,398.1 392.9,394.7%22 stroke=%22%23ffd900%22/%3E%3Cpolyline points=%22392.9,394.7 396.0,391.5 399.3,388.4%22 stroke=%22%23fff800%22/%3E%3Cpolyline points=%22399.3,388.4 402.6,385.4 406.1,382.5%22 stroke=%22%23e7ff00%22/%3E%3Cpolyline points=%22406.1,382.5 409.6,379.6 413.2,376.9%22 stroke=%22%23c9ff00%22/%3E%3Cpolyline points=%22413.2,376.9 416.9,374.3 420.7,371.8%22 stroke=%22%23aaff00%22/%3E%3Cpolyline points=%22420.7,371.8 424.5,369.5 428.4,367.2%22 stroke=%22%238bff00%22/%3E%3Cpolyline points=%22428.4,367.2 432.4,365.0 436.5,363.0%22 stroke=%22%236dff00%22/%3E%3Cpolyline points=%22436.5,363.0 440.6,361.1 444.8,359.3%22 stroke=%22%234eff00%22/%3E%3Cpolyline points=%22444.8,359.3 449.0,357.7 453.2,356.1%22 stroke=%22%232fff00%22/%3E%3Cpolyline points=%22453.2,356.1 457.6,354.7 461.9,353.5%22 stroke=%22%2310ff00%22/%3E%3Cpolyline points=%22461.9,353.5 466.3,352.3 470.7,351.3%22 stroke=%22%2300ff0f%22/%3E%3Cpolyline points=%22470.7,351.3 475.2,350.4 479.7,349.7%22 stroke=%22%2300ff2e%22/%3E%3Cpolyline points=%22479.7,349.7 484.2,349.1 488.7,348.6%22 stroke=%22%2300ff4d%22/%3E%3Cpolyline points=%22488.7,348.6 493.3,348.3 497.8,348.1%22 stroke=%22%2300ff6c%22/%3E%3Cpolyline points=%22497.8,348.1 502.4,348.0 507.0,348.1%22 stroke=%22%2300ff8b%22/%3E%3Cpolyline points=%22507.0,348.1 511.5,348.3 516.1,348.6%22 stroke=%22%2300ffaa%22/%3E%3Cpolyline points=%22516.1,348.6 520.6,349.1 525.1,349.7%22 stroke=%22%2300ffc9%22/%3E%3Cpolyline points=%22525.1,349.7 529.6,350.5 534.1,351.4%22 stroke=%22%2300ffe8%22/%3E%3Cpolyline points=%22534.1,351.4 538.6,352.4 543.0,353.6%22 stroke=%22%2300f7ff%22/%3E%3Cpolyline points=%22543.0,353.6 547.4,354.9 551.8,356.3%22 stroke=%22%2300d8ff%22/%3E%3Cpolyline points=%22551.8,356.3 556.1,357.8 560.3,359.5%22 stroke=%22%2300b9ff%22/%3E%3Cpolyline points=%22560.3,359.5 564.6,361.3 568.7,363.3%22 stroke=%22%23009aff%22/%3E%3Cpolyline points=%22568.7,363.3 572.8,365.3 576.9,367.5%22 stroke=%22%23007aff%22/%3E%3Cpolyline points=%22576.9,367.5 580.8,369.8 584.7,372.3%22 stroke=%22%23005bff%22/%3E%3Cpolyline points=%22584.7,372.3 588.6,374.8 592.3,377.5%22 stroke=%22%23003cff%22/%3E%3Cpolyline points=%22592.3,377.5 596.0,380.2 599.6,383.1%22 stroke=%22%23001dff%22/%3E%3Cpolyline points=%22599.6,383.1 603.1,386.1 606.5,389.2%22 stroke=%22%230300ff%22/%3E%3Cpolyline points=%22606.5,389.2 609.8,392.4 613.1,395.7%22 stroke=%22%232200ff%22/%3E%3Cpolyline points=%22613.1,395.7 616.2,399.1 619.2,402.6%22 stroke=%22%234200ff%22/%3E%3Cpolyline points=%22619.2,402.6 622.2,406.2 625.0,409.8%22 stroke=%22%236100ff%22/%3E%3Cpolyline points=%22625.0,409.8 627.7,413.6 630.3,417.4%22 stroke=%22%238000ff%22/%3E%3Cpolyline points=%22630.3,417.4 632.7,421.3 635.1,425.3%22 stroke=%22%23a000ff%22/%3E%3Cpolyline points=%22635.1,425.3 637.3,429.4 639.5,433.5%22 stroke=%22%23bf00ff%22/%3E%3Cpolyline points=%22639.5,433.5 641.5,437.7 643.3,441.9%22 stroke=%22%23df00ff%22/%3E%3Cpolyline points=%22643.3,441.9 645.1,446.2 646.7,450.6%22 stroke=%22%23fe00ff%22/%3E%3Cpolyline points=%22646.7,450.6 648.2,455.0 649.5,459.4%22 stroke=%22%23ff00e0%22/%3E%3Cpolyline points=%22649.5,459.4 650.7,463.9 651.8,468.4%22 stroke=%22%23ff00c0%22/%3E%3Cpolyline points=%22651.8,468.4 652.7,473.0 653.6,477.6%22 stroke=%22%23ff00a1%22/%3E%3Cpolyline points=%22653.6,477.6 654.2,482.2 654.8,486.8%22 stroke=%22%23ff0081%22/%3E%3Cpolyline points=%22654.8,486.8 655.1,491.5 655.4,496.1%22 stroke=%22%23ff0061%22/%3E%3Cpolyline points=%22655.4,496.1 655.5,500.8 655.5,505.4%22 stroke=%22%23ff0042%22/%3E%3Cpolyline points=%22655.5,505.4 655.3,510.1 655.0,514.8%22 stroke=%22%23ff0022%22/%3E%3Cpolyline points=%22655.0,514.8 654.6,519.4 654.0,524.1%22 stroke=%22%23ff0002%22/%3E%3Cpolyline points=%22654.0,524.1 653.3,528.7 652.4,533.3%22 stroke=%22%23ff1e00%22/%3E%3Cpolyline points=%22652.4,533.3 651.4,537.8 650.3,542.4%22 stroke=%22%23ff3d00%22/%3E%3Cpolyline points=%22650.3,542.4 649.0,546.9 647.6,551.4%22 stroke=%22%23ff5d00%22/%3E%3Cpolyline points=%22647.6,551.4 646.0,555.8 644.4,560.2%22 stroke=%22%23ff7d00%22/%3E%3Cpolyline points=%22644.4,560.2 642.5,564.5 640.6,568.8%22 stroke=%22%23ff9d00%22/%3E%3Cpolyline points=%22640.6,568.8 638.5,573.0 636.3,577.2%22 stroke=%22%23ffbd00%22/%3E%3Cpolyline points=%22636.3,577.2 634.0,581.2 631.6,585.3%22 stroke=%22%23ffdd00%22/%3E%3Cpolyline points=%22631.6,585.3 629.0,589.2 626.3,593.1%22 stroke=%22%23fffd00%22/%3E%3Cpolyline points=%22626.3,593.1 623.6,596.9 620.6,600.6%22 stroke=%22%23e1ff00%22/%3E%3Cpolyline points=%22620.6,600.6 617.6,604.2 614.5,607.7%22 stroke=%22%23c1ff00%22/%3E%3Cpolyline points=%22614.5,607.7 611.3,611.2 607.9,614.5%22 stroke=%22%23a1ff00%22/%3E%3Cpolyline points=%22607.9,614.5 604.5,617.7 600.9,620.9%22 stroke=%22%2381ff00%22/%3E%3Cpolyline points=%22600.9,620.9 597.3,623.9 593.6,626.8%22 stroke=%22%2361ff00%22/%3E%3Cpolyline points=%22593.6,626.8 589.8,629.6 585.9,632.3%22 stroke=%22%2341ff00%22/%3E%3Cpolyline points=%22585.9,632.3 581.9,634.9 577.9,637.3%22 stroke=%22%2320ff00%22/%3E%3Cpolyline points=%22577.9,637.3 573.8,639.7 569.6,641.9%22 stroke=%22%2300ff00%22/%3E%3Cpolyline points=%22569.6,641.9 565.3,644.0 561.0,645.9%22 stroke=%22%2300ff20%22/%3E%3Cpolyline points=%22561.0,645.9 556.6,647.7 552.2,649.4%22 stroke=%22%2300ff40%22/%3E%3Cpolyline points=%22552.2,649.4 547.7,651.0 543.1,652.4%22 stroke=%22%2300ff61%22/%3E%3Cpolyline points=%22543.1,652.4 538.6,653.7 534.0,654.9%22 stroke=%22%2300ff81%22/%3E%3Cpolyline points=%22534.0,654.9 529.3,655.9 524.6,656.8%22 stroke=%22%2300ffa1%22/%3E%3Cpolyline points=%22524.6,656.8 519.9,657.5 515.2,658.1%22 stroke=%22%2300ffc2%22/%3E%3Cpolyline points=%22515.2,658.1 510.5,658.6 505.7,658.9%22 stroke=%22%2300ffe2%22/%3E%3Cpolyline points=%22505.7,658.9 500.9,659.0 496.2,659.1%22 stroke=%22%2300fbff%22/%3E%3Cpolyline points=%22496.2,659.1 491.4,658.9 486.6,658.7%22 stroke=%22%2300dbff%22/%3E%3Cpolyline points=%22486.6,658.7 481.9,658.3 477.1,657.7%22 stroke=%22%2300bbff%22/%3E%3Cpolyline points=%22477.1,657.7 472.4,657.0 467.7,656.2%22 stroke=%22%23009aff%22/%3E%3Cpolyline points=%22467.7,656.2 463.0,655.2 458.3,654.1%22 stroke=%22%230079ff%22/%3E%3Cpolyline points=%22458.3,654.1 453.7,652.8 449.1,651.5%22 stroke=%22%230059ff%22/%3E%3Cpolyline points=%22449.1,651.5 444.6,649.9 440.1,648.3%22 stroke=%22%230038ff%22/%3E%3Cpolyline points=%22440.1,648.3 435.6,646.4 431.2,644.5%22 stroke=%22%230018ff%22/%3E%3Cpolyline points=%22431.2,644.5 426.9,642.4 422.6,640.2%22 stroke=%22%230900ff%22/%3E%3Cpolyline points=%22422.6,640.2 418.4,637.9 414.3,635.5%22 stroke=%22%232a00ff%22/%3E%3Cpolyline points=%22414.3,635.5 410.2,632.9 406.2,630.2%22 stroke=%22%234a00ff%22/%3E%3Cpolyline points=%22406.2,630.2 402.3,627.4 398.5,624.4%22 stroke=%22%236b00ff%22/%3E%3Cpolyline points=%22398.5,624.4 394.8,621.4 391.1,618.2%22 stroke=%22%238c00ff%22/%3E%3Cpolyline points=%22391.1,618.2 387.6,615.0 384.1,611.6%22 stroke=%22%23ad00ff%22/%3E%3Cpolyline points=%22384.1,611.6 380.8,608.1 377.6,604.5%22 stroke=%22%23cd00ff%22/%3E%3Cpolyline points=%22377.6,604.5 374.4,600.8 371.4,597.1%22 stroke=%22%23ee00ff%22/%3E%3Cpolyline points=%22371.4,597.1 368.5,593.2 365.7,589.3%22 stroke=%22%23ff00ef%22/%3E%3Cpolyline points=%22365.7,589.3 363.0,585.2 360.5,581.1%22 stroke=%22%23ff00ce%22/%3E%3Cpolyline points=%22360.5,581.1 358.0,576.9 355.7,572.7%22 stroke=%22%23ff00ad%22/%3E%3Cpolyline points=%22355.7,572.7 353.6,568.3 351.5,563.9%22 stroke=%22%23ff008c%22/%3E%3Cpolyline points=%22351.5,563.9 349.6,559.5 347.8,555.0%22 stroke=%22%23ff006b%22/%3E%3Cpolyline points=%22347.8,555.0 346.2,550.4 344.7,545.8%22 stroke=%22%23ff004a%22/%3E%3Cpolyline points=%22344.7,545.8 343.3,541.1 342.1,536.4%22 stroke=%22%23ff0029%22/%3E%3Cpolyline points=%22342.1,536.4 341.0,531.7 340.0,526.9%22 stroke=%22%23ff0008%22/%3E%3Cpolyline points=%22340.0,526.9 339.2,522.1 338.6,517.3%22 stroke=%22%23ff1900%22/%3E%3Cpolyline points=%22338.6,517.3 338.1,512.4 337.7,507.6%22 stroke=%22%23ff3a00%22/%3E%3Cpolyline points=%22337.7,507.6 337.5,502.7 337.4,497.8%22 stroke=%22%23ff5b00%22/%3E%3Cpolyline points=%22337.4,497.8 337.5,492.9 337.7,488.1%22 stroke=%22%23ff7d00%22/%3E%3Cpolyline points=%22337.7,488.1 338.1,483.2 338.6,478.3%22 stroke=%22%23ff9e00%22/%3E%3Cpolyline points=%22338.6,478.3 339.2,473.5 340.0,468.7%22 stroke=%22%23ffbf00%22/%3E%3Cpolyline points=%22340.0,468.7 341.0,463.9 342.1,459.1%22 stroke=%22%23ffe000%22/%3E%3Cpolyline points=%22342.1,459.1 343.3,454.4 344.7,449.7%22 stroke=%22%23fcff00%22/%3E%3Cpolyline points=%22344.7,449.7 346.2,445.0 347.8,440.4%22 stroke=%22%23dbff00%22/%3E%3Cpolyline points=%22347.8,440.4 349.6,435.8 351.6,431.3%22 stroke=%22%23baff00%22/%3E%3Cpolyline points=%22351.6,431.3 353.6,426.9 355.8,422.5%22 stroke=%22%2398ff00%22/%3E%3Cpolyline points=%22355.8,422.5 358.2,418.2 360.6,413.9%22 stroke=%22%2377ff00%22/%3E%3Cpolyline points=%22360.6,413.9 363.2,409.7 365.9,405.6%22 stroke=%22%2356ff00%22/%3E%3Cpolyline points=%22365.9,405.6 368.8,401.6 371.7,397.7%22 stroke=%22%2334ff00%22/%3E%3Cpolyline points=%22371.7,397.7 374.8,393.8 378.0,390.1%22 stroke=%22%2313ff00%22/%3E%3Cpolyline points=%22378.0,390.1 381.3,386.4 384.7,382.9%22 stroke=%22%2300ff0f%22/%3E%3Cpolyline points=%22384.7,382.9 388.2,379.4 391.9,376.1%22 stroke=%22%2300ff30%22/%3E%3Cpolyline points=%22391.9,376.1 395.6,372.8 399.4,369.7%22 stroke=%22%2300ff52%22/%3E%3Cpolyline points=%22399.4,369.7 403.3,366.7 407.3,363.8%22 stroke=%22%2300ff73%22/%3E%3Cpolyline points=%22407.3,363.8 411.4,361.0 415.6,358.3%22 stroke=%22%2300ff95%22/%3E%3Cpolyline points=%22415.6,358.3 419.8,355.8 424.2,353.4%22 stroke=%22%2300ffb7%22/%3E%3Cpolyline points=%22424.2,353.4 428.6,351.1 433.0,349.0%22 stroke=%22%2300ffd8%22/%3E%3Cpolyline points=%22433.0,349.0 437.6,347.0 442.2,345.1%22 stroke=%22%2300fffa%22/%3E%3Cpolyline points=%22442.2,345.1 446.8,343.4 451.5,341.8%22 stroke=%22%2300e2ff%22/%3E%3Cpolyline points=%22451.5,341.8 456.3,340.4 461.1,339.1%22 stroke=%22%2300c0ff%22/%3E%3Cpolyline points=%22461.1,339.1 465.9,337.9 470.8,336.9%22 stroke=%22%23009fff%22/%3E%3Cpolyline points=%22470.8,336.9 475.6,336.0 480.6,335.3%22 stroke=%22%23007dff%22/%3E%3Cpolyline points=%22480.6,335.3 485.5,334.7 490.5,334.3%22 stroke=%22%23005bff%22/%3E%3Cpolyline points=%22490.5,334.3 495.4,334.0 500.4,333.9%22 stroke=%22%230039ff%22/%3E%3Cpolyline points=%22500.4,333.9 505.4,333.9 510.4,334.1%22 stroke=%22%230017ff%22/%3E%3Cpolyline points=%22510.4,334.1 515.4,334.4 520.3,334.9%22 stroke=%22%230b00ff%22/%3E%3Cpolyline points=%22520.3,334.9 525.3,335.5 530.2,336.2%22 stroke=%22%232d00ff%22/%3E%3Cpolyline points=%22530.2,336.2 535.1,337.2 540.0,338.2%22 stroke=%22%234f00ff%22/%3E%3Cpolyline points=%22540.0,338.2 544.9,339.4 549.7,340.8%22 stroke=%22%237100ff%22/%3E%3Cpolyline points=%22549.7,340.8 554.5,342.3 559.2,343.9%22 stroke=%22%239300ff%22/%3E%3Cpolyline points=%22559.2,343.9 563.9,345.7 568.5,347.6%22 stroke=%22%23b500ff%22/%3E%3Cpolyline points=%22568.5,347.6 573.1,349.7 577.6,351.9%22 stroke=%22%23d700ff%22/%3E%3Cpolyline points=%22577.6,351.9 582.0,354.2 586.4,356.7%22 stroke=%22%23f900ff%22/%3E%3Cpolyline points=%22586.4,356.7 590.7,359.3 594.9,362.0%22 stroke=%22%23ff00e3%22/%3E%3Cpolyline points=%22594.9,362.0 599.1,364.9 603.1,367.9%22 stroke=%22%23ff00c1%22/%3E%3Cpolyline points=%22603.1,367.9 607.1,371.0 610.9,374.2%22 stroke=%22%23ff009f%22/%3E%3Cpolyline points=%22610.9,374.2 614.7,377.5 618.4,381.0%22 stroke=%22%23ff007c%22/%3E%3Cpolyline points=%22618.4,381.0 621.9,384.5 625.4,388.2%22 stroke=%22%23ff005a%22/%3E%3Cpolyline points=%22625.4,388.2 628.7,392.0 632.0,395.8%22 stroke=%22%23ff0038%22/%3E%3Cpolyline points=%22632.0,395.8 635.1,399.8 638.1,403.8%22 stroke=%22%23ff0016%22/%3E%3Cpolyline points=%22638.1,403.8 641.0,408.0 643.7,412.2%22 stroke=%22%23ff0d00%22/%3E%3Cpolyline points=%22643.7,412.2 646.4,416.5 648.9,420.9%22 stroke=%22%23ff2f00%22/%3E%3Cpolyline points=%22648.9,420.9 651.2,425.4 653.5,430.0%22 stroke=%22%23ff5100%22/%3E%3Cpolyline points=%22653.5,430.0 655.5,434.6 657.5,439.2%22 stroke=%22%23ff7400%22/%3E%3Cpolyline points=%22657.5,439.2 659.3,444.0 661.0,448.7%22 stroke=%22%23ff9600%22/%3E%3Cpolyline points=%22661.0,448.7 662.5,453.6 663.9,458.5%22 stroke=%22%23ffb900%22/%3E%3Cpolyline points=%22663.9,458.5 665.1,463.4 666.2,468.3%22 stroke=%22%23ffdb00%22/%3E%3Cpolyline points=%22666.2,468.3 667.2,473.3 668.0,478.3%22 stroke=%22%23fffe00%22/%3E%3Cpolyline points=%22668.0,478.3 668.6,483.4 669.1,488.4%22 stroke=%22%23deff00%22/%3E%3Cpolyline points=%22669.1,488.4 669.4,493.5 669.6,498.6%22 stroke=%22%23bbff00%22/%3E%3Cpolyline points=%22669.6,498.6 669.7,503.7 669.5,508.8%22 stroke=%22%2398ff00%22/%3E%3Cpolyline points=%22669.5,508.8 669.3,513.9 668.8,519.0%22 stroke=%22%2376ff00%22/%3E%3Cpolyline points=%22668.8,519.0 668.3,524.0 667.5,529.1%22 stroke=%22%2353ff00%22/%3E%3Cpolyline points=%22667.5,529.1 666.6,534.1 665.6,539.1%22 stroke=%22%2330ff00%22/%3E%3Cpolyline points=%22665.6,539.1 664.4,544.1 663.1,549.0%22 stroke=%22%230eff00%22/%3E%3Cpolyline points=%22663.1,549.0 661.6,553.9 660.0,558.7%22 stroke=%22%2300ff15%22/%3E%3Cpolyline points=%22660.0,558.7 658.2,563.5 656.3,568.3%22 stroke=%22%2300ff38%22/%3E%3Cpolyline points=%22656.3,568.3 654.3,573.0 652.1,577.6%22 stroke=%22%2300ff5b%22/%3E%3Cpolyline points=%22652.1,577.6 649.7,582.1 647.3,586.6%22 stroke=%22%2300ff7d%22/%3E%3Cpolyline points=%22647.3,586.6 644.6,591.0 641.9,595.4%22 stroke=%22%2300ffa0%22/%3E%3Cpolyline points=%22641.9,595.4 639.0,599.6 636.0,603.8%22 stroke=%22%2300ffc3%22/%3E%3Cpolyline points=%22636.0,603.8 632.9,607.9 629.7,611.9%22 stroke=%22%2300ffe6%22/%3E%3Cpolyline points=%22629.7,611.9 626.3,615.7 622.8,619.5%22 stroke=%22%2300f5ff%22/%3E%3Cpolyline points=%22622.8,619.5 619.2,623.2 615.5,626.8%22 stroke=%22%2300d2ff%22/%3E%3Cpolyline points=%22615.5,626.8 611.7,630.2 607.8,633.6%22 stroke=%22%2300afff%22/%3E%3Cpolyline points=%22607.8,633.6 603.8,636.8 599.7,639.9%22 stroke=%22%23008cff%22/%3E%3Cpolyline points=%22599.7,639.9 595.5,642.9 591.2,645.8%22 stroke=%22%230069ff%22/%3E%3Cpolyline points=%22591.2,645.8 586.8,648.5 582.3,651.1%22 stroke=%22%230046ff%22/%3E%3Cpolyline points=%22582.3,651.1 577.8,653.5 573.2,655.9%22 stroke=%22%230023ff%22/%3E%3Cpolyline points=%22573.2,655.9 568.5,658.1 563.8,660.1%22 stroke=%22%230000ff%22/%3E%3Cpolyline points=%22563.8,660.1 559.0,662.0 554.1,663.8%22 stroke=%22%232300ff%22/%3E%3Cpolyline points=%22554.1,663.8 549.2,665.4 544.2,666.8%22 stroke=%22%234700ff%22/%3E%3Cpolyline points=%22544.2,666.8 539.2,668.2 534.2,669.3%22 stroke=%22%236a00ff%22/%3E%3Cpolyline points=%22534.2,669.3 529.1,670.3 524.0,671.2%22 stroke=%22%238d00ff%22/%3E%3Cpolyline points=%22524.0,671.2 518.8,671.9 513.7,672.5%22 stroke=%22%23b000ff%22/%3E%3Cpolyline points=%22513.7,672.5 508.5,672.9 503.3,673.1%22 stroke=%22%23d400ff%22/%3E%3Cpolyline points=%22503.3,673.1 498.1,673.2 492.9,673.1%22 stroke=%22%23f700ff%22/%3E%3Cpolyline points=%22492.9,673.1 487.7,672.9 482.5,672.5%22 stroke=%22%23ff00e4%22/%3E%3Cpolyline points=%22482.5,672.5 477.3,672.0 472.2,671.3%22 stroke=%22%23ff00c0%22/%3E%3Cpolyline points=%22472.2,671.3 467.0,670.5 461.9,669.5%22 stroke=%22%23ff009d%22/%3E%3Cpolyline points=%22461.9,669.5 456.8,668.3 451.8,667.0%22 stroke=%22%23ff0079%22/%3E%3Cpolyline points=%22451.8,667.0 446.8,665.5 441.8,663.9%22 stroke=%22%23ff0056%22/%3E%3Cpolyline points=%22441.8,663.9 436.9,662.2 432.1,660.3%22 stroke=%22%23ff0033%22/%3E%3Cpolyline points=%22432.1,660.3 427.2,658.2 422.5,656.0%22 stroke=%22%23ff000f%22/%3E%3Cpolyline points=%22422.5,656.0 417.8,653.7 413.2,651.2%22 stroke=%22%23ff1500%22/%3E%3Cpolyline points=%22413.2,651.2 408.7,648.6 404.2,645.9%22 stroke=%22%23ff3800%22/%3E%3Cpolyline points=%22404.2,645.9 399.9,643.0 395.6,640.0%22 stroke=%22%23ff5c00%22/%3E%3Cpolyline points=%22395.6,640.0 391.4,636.8 387.3,633.6%22 stroke=%22%23ff7f00%22/%3E%3Cpolyline points=%22387.3,633.6 383.3,630.2 379.4,626.7%22 stroke=%22%23ffa300%22/%3E%3Cpolyline points=%22379.4,626.7 375.6,623.0 371.9,619.3%22 stroke=%22%23ffc700%22/%3E%3Cpolyline points=%22371.9,619.3 368.3,615.4 364.9,611.5%22 stroke=%22%23ffea00%22/%3E%3Cpolyline points=%22364.9,611.5 361.5,607.4 358.3,603.2%22 stroke=%22%23f0ff00%22/%3E%3Cpolyline points=%22358.3,603.2 355.2,599.0 352.3,594.6%22 stroke=%22%23ccff00%22/%3E%3Cpolyline points=%22352.3,594.6 349.5,590.2 346.8,585.7%22 stroke=%22%23a8ff00%22/%3E%3Cpolyline points=%22346.8,585.7 344.2,581.1 341.8,576.4%22 stroke=%22%2385ff00%22/%3E%3Cpolyline points=%22341.8,576.4 339.5,571.6 337.4,566.8%22 stroke=%22%2361ff00%22/%3E%3Cpolyline points=%22337.4,566.8 335.4,561.9 333.5,557.0%22 stroke=%22%233dff00%22/%3E%3Cpolyline points=%22333.5,557.0 331.8,552.0 330.3,546.9%22 stroke=%22%2319ff00%22/%3E%3Cpolyline points=%22330.3,546.9 328.9,541.8 327.6,536.7%22 stroke=%22%2300ff0b%22/%3E%3Cpolyline points=%22327.6,536.7 326.5,531.5 325.6,526.3%22 stroke=%22%2300ff2f%22/%3E%3Cpolyline points=%22325.6,526.3 324.8,521.1 324.2,515.8%22 stroke=%22%2300ff53%22/%3E%3Cpolyline points=%22324.2,515.8 323.7,510.6 323.4,505.3%22 stroke=%22%2300ff77%22/%3E%3Cpolyline points=%22323.4,505.3 323.3,500.0 323.3,494.7%22 stroke=%22%2300ff9b%22/%3E%3Cpolyline points=%22323.3,494.7 323.5,489.4 323.8,484.1%22 stroke=%22%2300ffbf%22/%3E%3Cpolyline points=%22323.8,484.1 324.3,478.8 324.9,473.5%22 stroke=%22%2300ffe3%22/%3E%3Cpolyline points=%22324.9,473.5 325.7,468.3 326.7,463.0%22 stroke=%22%2300f7ff%22/%3E%3Cpolyline points=%22326.7,463.0 327.8,457.8 329.1,452.7%22 stroke=%22%2300d3ff%22/%3E%3Cpolyline points=%22329.1,452.7 330.5,447.5 332.1,442.5%22 stroke=%22%2300aeff%22/%3E%3Cpolyline points=%22332.1,442.5 333.9,437.4 335.8,432.5%22 stroke=%22%23008aff%22/%3E%3Cpolyline points=%22335.8,432.5 337.8,427.5 340.0,422.7%22 stroke=%22%230066ff%22/%3E%3Cpolyline points=%22340.0,422.7 342.3,417.9 344.8,413.1%22 stroke=%22%230042ff%22/%3E%3Cpolyline points=%22344.8,413.1 347.4,408.5 350.2,403.9%22 stroke=%22%23001dff%22/%3E%3Cpolyline points=%22350.2,403.9 353.1,399.4 356.1,395.0%22 stroke=%22%230700ff%22/%3E%3Cpolyline points=%22356.1,395.0 359.2,390.7 362.5,386.5%22 stroke=%22%232b00ff%22/%3E%3Cpolyline points=%22362.5,386.5 365.9,382.4 369.5,378.4%22 stroke=%22%235000ff%22/%3E%3Cpolyline points=%22369.5,378.4 373.1,374.5 376.9,370.7%22 stroke=%22%237400ff%22/%3E%3Cpolyline points=%22376.9,370.7 380.8,367.0 384.8,363.4%22 stroke=%22%239800ff%22/%3E%3Cpolyline points=%22384.8,363.4 388.9,360.0 393.1,356.6%22 stroke=%22%23bd00ff%22/%3E%3Cpolyline points=%22393.1,356.6 397.4,353.4 401.8,350.4%22 stroke=%22%23e100ff%22/%3E%3Cpolyline points=%22401.8,350.4 406.3,347.4 410.9,344.6%22 stroke=%22%23ff00f8%22/%3E%3Cpolyline points=%22410.9,344.6 415.6,342.0 420.3,339.5%22 stroke=%22%23ff00d4%22/%3E%3Cpolyline points=%22420.3,339.5 425.2,337.1 430.1,334.9%22 stroke=%22%23ff00af%22/%3E%3Cpolyline points=%22430.1,334.9 435.0,332.8 440.0,330.8%22 stroke=%22%23ff008a%22/%3E%3Cpolyline points=%22440.0,330.8 445.1,329.0 450.3,327.4%22 stroke=%22%23ff0066%22/%3E%3Cpolyline points=%22450.3,327.4 455.4,325.9 460.7,324.6%22 stroke=%22%23ff0041%22/%3E%3Cpolyline points=%22460.7,324.6 465.9,323.4 471.2,322.4%22 stroke=%22%23ff001d%22/%3E%3Cpolyline points=%22471.2,322.4 476.6,321.6 481.9,320.9%22 stroke=%22%23ff0800%22/%3E%3Cpolyline points=%22481.9,320.9 487.3,320.4 492.7,320.0%22 stroke=%22%23ff2d00%22/%3E%3Cpolyline points=%22492.7,320.0 498.1,319.8 503.5,319.7%22 stroke=%22%23ff5200%22/%3E%3Cpolyline points=%22503.5,319.7 508.9,319.9 514.3,320.1%22 stroke=%22%23ff7600%22/%3E%3Cpolyline points=%22514.3,320.1 519.7,320.6 525.1,321.2%22 stroke=%22%23ff9b00%22/%3E%3Cpolyline points=%22525.1,321.2 530.5,322.0 535.8,322.9%22 stroke=%22%23ffc000%22/%3E%3Cpolyline points=%22535.8,322.9 541.1,324.0 546.4,325.2%22 stroke=%22%23ffe500%22/%3E%3Cpolyline points=%22546.4,325.2 551.6,326.6 556.8,328.2%22 stroke=%22%23f4ff00%22/%3E%3Cpolyline points=%22556.8,328.2 562.0,329.9 567.1,331.8%22 stroke=%22%23cfff00%22/%3E%3Cpolyline points=%22567.1,331.8 572.1,333.8 577.1,336.0%22 stroke=%22%23aaff00%22/%3E%3Cpolyline points=%22577.1,336.0 582.0,338.3 586.9,340.8%22 stroke=%22%2385ff00%22/%3E%3Cpolyline points=%22586.9,340.8 591.6,343.4 596.3,346.2%22 stroke=%22%2360ff00%22/%3E%3Cpolyline points=%22596.3,346.2 600.9,349.1 605.5,352.1%22 stroke=%22%233bff00%22/%3E%3Cpolyline points=%22605.5,352.1 609.9,355.3 614.2,358.6%22 stroke=%22%2316ff00%22/%3E%3Cpolyline points=%22614.2,358.6 618.4,362.0 622.6,365.6%22 stroke=%22%2300ff0f%22/%3E%3Cpolyline points=%22622.6,365.6 626.6,369.3 630.5,373.1%22 stroke=%22%2300ff34%22/%3E%3Cpolyline points=%22630.5,373.1 634.3,377.0 638.0,381.1%22 stroke=%22%2300ff59%22/%3E%3Cpolyline points=%22638.0,381.1 641.6,385.2 645.0,389.5%22 stroke=%22%2300ff7e%22/%3E%3Cpolyline points=%22645.0,389.5 648.3,393.8 651.5,398.3%22 stroke=%22%2300ffa3%22/%3E%3Cpolyline points=%22651.5,398.3 654.5,402.8 657.4,407.5%22 stroke=%22%2300ffc9%22/%3E%3Cpolyline points=%22657.4,407.5 660.2,412.2 662.8,417.0%22 stroke=%22%2300ffee%22/%3E%3Cpolyline points=%22662.8,417.0 665.3,421.9 667.6,426.9%22 stroke=%22%2300ebff%22/%3E%3Cpolyline points=%22667.6,426.9 669.8,431.9 671.8,437.0%22 stroke=%22%2300c5ff%22/%3E%3Cpolyline points=%22671.8,437.0 673.7,442.2 675.4,447.4%22 stroke=%22%2300a0ff%22/%3E%3Cpolyline points=%22675.4,447.4 677.0,452.7 678.4,458.0%22 stroke=%22%23007bff%22/%3E%3Cpolyline points=%22678.4,458.0 679.6,463.3 680.7,468.7%22 stroke=%22%230055ff%22/%3E%3Cpolyline points=%22680.7,468.7 681.6,474.1 682.4,479.6%22 stroke=%22%230030ff%22/%3E%3Cpolyline points=%22682.4,479.6 683.0,485.1 683.4,490.6%22 stroke=%22%23000bff%22/%3E%3Cpolyline points=%22683.4,490.6 683.7,496.1 683.8,501.6%22 stroke=%22%231b00ff%22/%3E%3Cpolyline points=%22683.8,501.6 683.7,507.1 683.5,512.6%22 stroke=%22%234000ff%22/%3E%3Cpolyline points=%22683.5,512.6 683.1,518.1 682.6,523.6%22 stroke=%22%236600ff%22/%3E%3Cpolyline points=%22682.6,523.6 681.8,529.1 680.9,534.5%22 stroke=%22%238b00ff%22/%3E%3Cpolyline points=%22680.9,534.5 679.9,540.0 678.7,545.4%22 stroke=%22%23b100ff%22/%3E%3Cpolyline points=%22678.7,545.4 677.3,550.7 675.8,556.0%22 stroke=%22%23d700ff%22/%3E%3Cpolyline points=%22675.8,556.0 674.1,561.3 672.2,566.5%22 stroke=%22%23fc00ff%22/%3E%3Cpolyline points=%22672.2,566.5 670.2,571.7 668.0,576.8%22 stroke=%22%23ff00dc%22/%3E%3Cpolyline points=%22668.0,576.8 665.7,581.8 663.3,586.8%22 stroke=%22%23ff00b6%22/%3E%3Cpolyline points=%22663.3,586.8 660.6,591.7 657.9,596.5%22 stroke=%22%23ff0091%22/%3E%3Cpolyline points=%22657.9,596.5 655.0,601.2 651.9,605.9%22 stroke=%22%23ff006b%22/%3E%3Cpolyline points=%22651.9,605.9 648.7,610.4 645.4,614.9%22 stroke=%22%23ff0045%22/%3E%3Cpolyline points=%22645.4,614.9 641.9,619.2 638.3,623.5%22 stroke=%22%23ff001f%22/%3E%3Cpolyline points=%22638.3,623.5 634.6,627.6 630.8,631.6%22 stroke=%22%23ff0700%22/%3E%3Cpolyline points=%22630.8,631.6 626.8,635.5 622.8,639.3%22 stroke=%22%23ff2c00%22/%3E%3Cpolyline points=%22622.8,639.3 618.6,643.0 614.3,646.6%22 stroke=%22%23ff5200%22/%3E%3Cpolyline points=%22614.3,646.6 609.9,650.0 605.3,653.2%22 stroke=%22%23ff7800%22/%3E%3Cpolyline points=%22605.3,653.2 600.7,656.4 596.0,659.4%22 stroke=%22%23ff9e00%22/%3E%3Cpolyline points=%22596.0,659.4 591.2,662.3 586.4,665.0%22 stroke=%22%23ffc400%22/%3E%3Cpolyline points=%22586.4,665.0 581.4,667.6 576.4,670.0%22 stroke=%22%23ffea00%22/%3E%3Cpolyline points=%22576.4,670.0 571.3,672.3 566.1,674.4%22 stroke=%22%23eeff00%22/%3E%3Cpolyline points=%22566.1,674.4 560.8,676.4 555.5,678.2%22 stroke=%22%23c8ff00%22/%3E%3Cpolyline points=%22555.5,678.2 550.2,679.8 544.8,681.3%22 stroke=%22%23a2ff00%22/%3E%3Cpolyline points=%22544.8,681.3 539.4,682.6 533.9,683.8%22 stroke=%22%237cff00%22/%3E%3Cpolyline points=%22533.9,683.8 528.3,684.8 522.8,685.6%22 stroke=%22%2356ff00%22/%3E%3Cpolyline points=%22522.8,685.6 517.2,686.3 511.6,686.8%22 stroke=%22%232fff00%22/%3E%3Cpolyline points=%22511.6,686.8 506.0,687.1 500.4,687.3%22 stroke=%22%2309ff00%22/%3E%3Cpolyline points=%22500.4,687.3 494.8,687.3 489.2,687.1%22 stroke=%22%2300ff1d%22/%3E%3Cpolyline points=%22489.2,687.1 483.6,686.8 478.0,686.3%22 stroke=%22%2300ff43%22/%3E%3Cpolyline points=%22478.0,686.3 472.4,685.6 466.8,684.8%22 stroke=%22%2300ff6a%22/%3E%3Cpolyline points=%22466.8,684.8 461.3,683.7 455.7,682.6%22 stroke=%22%2300ff90%22/%3E%3Cpolyline points=%22455.7,682.6 450.3,681.2 444.8,679.7%22 stroke=%22%2300ffb6%22/%3E%3Cpolyline points=%22444.8,679.7 439.5,678.0 434.1,676.2%22 stroke=%22%2300ffdc%22/%3E%3Cpolyline points=%22434.1,676.2 428.8,674.2 423.6,672.1%22 stroke=%22%2300fbff%22/%3E%3Cpolyline points=%22423.6,672.1 418.5,669.8 413.4,667.3%22 stroke=%22%2300d5ff%22/%3E%3Cpolyline points=%22413.4,667.3 408.4,664.7 403.4,661.9%22 stroke=%22%2300aeff%22/%3E%3Cpolyline points=%22403.4,661.9 398.6,659.0 393.8,655.9%22 stroke=%22%230088ff%22/%3E%3Cpolyline points=%22393.8,655.9 389.1,652.7 384.6,649.4%22 stroke=%22%230061ff%22/%3E%3Cpolyline points=%22384.6,649.4 380.1,645.9 375.7,642.3%22 stroke=%22%23003bff%22/%3E%3Cpolyline points=%22375.7,642.3 371.5,638.6 367.3,634.7%22 stroke=%22%230014ff%22/%3E%3Cpolyline points=%22367.3,634.7 363.3,630.7 359.4,626.6%22 stroke=%22%231200ff%22/%3E%3Cpolyline points=%22359.4,626.6 355.6,622.4 351.9,618.0%22 stroke=%22%233900ff%22/%3E%3Cpolyline points=%22351.9,618.0 348.4,613.6 345.0,609.0%22 stroke=%22%235f00ff%22/%3E%3Cpolyline points=%22345.0,609.0 341.8,604.3 338.7,599.6%22 stroke=%22%238600ff%22/%3E%3Cpolyline points=%22338.7,599.6 335.7,594.7 332.9,589.8%22 stroke=%22%23ad00ff%22/%3E%3Cpolyline points=%22332.9,589.8 330.2,584.8 327.6,579.7%22 stroke=%22%23d400ff%22/%3E%3Cpolyline points=%22327.6,579.7 325.3,574.5 323.1,569.2%22 stroke=%22%23fa00ff%22/%3E%3Cpolyline points=%22323.1,569.2 321.0,563.9 319.1,558.5%22 stroke=%22%23ff00dd%22/%3E%3Cpolyline points=%22319.1,558.5 317.4,553.1 315.8,547.6%22 stroke=%22%23ff00b6%22/%3E%3Cpolyline points=%22315.8,547.6 314.4,542.1 313.1,536.5%22 stroke=%22%23ff008f%22/%3E%3Cpolyline points=%22313.1,536.5 312.0,530.9 311.1,525.3%22 stroke=%22%23ff0069%22/%3E%3Cpolyline points=%22311.1,525.3 310.4,519.6 309.8,513.9%22 stroke=%22%23ff0042%22/%3E%3Cpolyline points=%22309.8,513.9 309.4,508.2 309.2,502.5%22 stroke=%22%23ff001b%22/%3E%3Cpolyline points=%22309.2,502.5 309.1,496.8 309.3,491.0%22 stroke=%22%23ff0c00%22/%3E%3Cpolyline points=%22309.3,491.0 309.5,485.3 310.0,479.6%22 stroke=%22%23ff3300%22/%3E%3Cpolyline points=%22310.0,479.6 310.6,473.9 311.4,468.2%22 stroke=%22%23ff5a00%22/%3E%3Cpolyline points=%22311.4,468.2 312.4,462.6 313.5,456.9%22 stroke=%22%23ff8100%22/%3E%3Cpolyline points=%22313.5,456.9 314.9,451.3 316.3,445.8%22 stroke=%22%23ffa800%22/%3E%3Cpolyline points=%22316.3,445.8 318.0,440.3 319.8,434.8%22 stroke=%22%23ffcf00%22/%3E%3Cpolyline points=%22319.8,434.8 321.8,429.4 323.9,424.1%22 stroke=%22%23fff600%22/%3E%3Cpolyline points=%22323.9,424.1 326.2,418.8 328.6,413.6%22 stroke=%22%23e1ff00%22/%3E%3Cpolyline points=%22328.6,413.6 331.3,408.5 334.0,403.4%22 stroke=%22%23b9ff00%22/%3E%3Cpolyline points=%22334.0,403.4 336.9,398.4 340.0,393.6%22 stroke=%22%2392ff00%22/%3E%3Cpolyline points=%22340.0,393.6 343.2,388.8 346.6,384.1%22 stroke=%22%236bff00%22/%3E%3Cpolyline points=%22346.6,384.1 350.1,379.5 353.7,375.0%22 stroke=%22%2344ff00%22/%3E%3Cpolyline points=%22353.7,375.0 357.4,370.6 361.3,366.4%22 stroke=%22%231dff00%22/%3E%3Cpolyline points=%22361.3,366.4 365.4,362.2 369.5,358.2%22 stroke=%22%2300ff0b%22/%3E%3Cpolyline points=%22369.5,358.2 373.8,354.3 378.2,350.5%22 stroke=%22%2300ff32%22/%3E%3Cpolyline points=%22378.2,350.5 382.7,346.9 387.3,343.4%22 stroke=%22%2300ff59%22/%3E%3Cpolyline points=%22387.3,343.4 392.0,340.0 396.8,336.8%22 stroke=%22%2300ff81%22/%3E%3Cpolyline points=%22396.8,336.8 401.7,333.7 406.7,330.8%22 stroke=%22%2300ffa8%22/%3E%3Cpolyline points=%22406.7,330.8 411.8,328.0 417.0,325.3%22 stroke=%22%2300ffd0%22/%3E%3Cpolyline points=%22417.0,325.3 422.2,322.9 427.5,320.6%22 stroke=%22%2300fff7%22/%3E%3Cpolyline points=%22427.5,320.6 432.9,318.4 438.4,316.4%22 stroke=%22%2300dfff%22/%3E%3Cpolyline points=%22438.4,316.4 443.9,314.6 449.5,312.9%22 stroke=%22%2300b8ff%22/%3E%3Cpolyline points=%22449.5,312.9 455.1,311.4 460.8,310.1%22 stroke=%22%230090ff%22/%3E%3Cpolyline points=%22460.8,310.1 466.5,308.9 472.2,307.9%22 stroke=%22%230069ff%22/%3E%3Cpolyline points=%22472.2,307.9 478.0,307.1 483.7,306.5%22 stroke=%22%230041ff%22/%3E%3Cpolyline points=%22483.7,306.5 489.6,306.0 495.4,305.7%22 stroke=%22%23001aff%22/%3E%3Cpolyline points=%22495.4,305.7 501.2,305.6 507.0,305.7%22 stroke=%22%230e00ff%22/%3E%3Cpolyline points=%22507.0,305.7 512.9,305.9 518.7,306.3%22 stroke=%22%233600ff%22/%3E%3Cpolyline points=%22518.7,306.3 524.5,306.9 530.3,307.6%22 stroke=%22%235d00ff%22/%3E%3Cpolyline points=%22530.3,307.6 536.1,308.6 541.8,309.7%22 stroke=%22%238500ff%22/%3E%3Cpolyline points=%22541.8,309.7 547.5,310.9 553.2,312.4%22 stroke=%22%23ad00ff%22/%3E%3Cpolyline points=%22553.2,312.4 558.8,314.0 564.4,315.8%22 stroke=%22%23d500ff%22/%3E%3Cpolyline points=%22564.4,315.8 569.9,317.7 575.4,319.8%22 stroke=%22%23fc00ff%22/%3E%3Cpolyline points=%22575.4,319.8 580.8,322.1 586.1,324.6%22 stroke=%22%23ff00da%22/%3E%3Cpolyline points=%22586.1,324.6 591.3,327.2 596.5,329.9%22 stroke=%22%23ff00b2%22/%3E%3Cpolyline points=%22596.5,329.9 601.6,332.8 606.6,335.9%22 stroke=%22%23ff008a%22/%3E%3Cpolyline points=%22606.6,335.9 611.5,339.1 616.3,342.5%22 stroke=%22%23ff0062%22/%3E%3Cpolyline points=%22616.3,342.5 621.1,346.0 625.7,349.6%22 stroke=%22%23ff003a%22/%3E%3Cpolyline points=%22625.7,349.6 630.2,353.4 634.5,357.4%22 stroke=%22%23ff0012%22/%3E%3Cpolyline points=%22634.5,357.4 638.8,361.4 643.0,365.6%22 stroke=%22%23ff1600%22/%3E%3Cpolyline points=%22643.0,365.6 647.0,369.9 650.9,374.3%22 stroke=%22%23ff3e00%22/%3E%3Cpolyline points=%22650.9,374.3 654.6,378.9 658.2,383.5%22 stroke=%22%23ff6600%22/%3E%3Cpolyline points=%22658.2,383.5 661.7,388.3 665.1,393.1%22 stroke=%22%23ff8e00%22/%3E%3Cpolyline points=%22665.1,393.1 668.2,398.1 671.3,403.2%22 stroke=%22%23ffb600%22/%3E%3Cpolyline points=%22671.3,403.2 674.2,408.3 676.9,413.5%22 stroke=%22%23ffde00%22/%3E%3Cpolyline points=%22676.9,413.5 679.5,418.9 681.9,424.3%22 stroke=%22%23f7ff00%22/%3E%3Cpolyline points=%22681.9,424.3 684.1,429.7 686.2,435.3%22 stroke=%22%23cfff00%22/%3E%3Cpolyline points=%22686.2,435.3 688.2,440.8 689.9,446.5%22 stroke=%22%23a7ff00%22/%3E%3Cpolyline points=%22689.9,446.5 691.5,452.2 692.9,458.0%22 stroke=%22%237fff00%22/%3E%3Cpolyline points=%22692.9,458.0 694.1,463.7 695.2,469.6%22 stroke=%22%2357ff00%22/%3E%3Cpolyline points=%22695.2,469.6 696.1,475.4 696.8,481.3%22 stroke=%22%232eff00%22/%3E%3Cpolyline points=%22696.8,481.3 697.4,487.2 697.7,493.2%22 stroke=%22%2306ff00%22/%3E%3Cpolyline points=%22697.7,493.2 697.9,499.1 697.9,505.0%22 stroke=%22%2300ff22%22/%3E%3Cpolyline points=%22697.9,505.0 697.7,511.0 697.4,516.9%22 stroke=%22%2300ff4b%22/%3E%3Cpolyline points=%22697.4,516.9 696.9,522.8 696.2,528.7%22 stroke=%22%2300ff73%22/%3E%3Cpolyline points=%22696.2,528.7 695.3,534.6 694.2,540.5%22 stroke=%22%2300ff9c%22/%3E%3Cpolyline points=%22694.2,540.5 693.0,546.3 691.6,552.1%22 stroke=%22%2300ffc4%22/%3E%3Cpolyline points=%22691.6,552.1 690.0,557.8 688.2,563.5%22 stroke=%22%2300ffed%22/%3E%3Cpolyline points=%22688.2,563.5 686.3,569.1 684.2,574.7%22 stroke=%22%2300e9ff%22/%3E%3Cpolyline points=%22684.2,574.7 681.9,580.3 679.5,585.7%22 stroke=%22%2300c0ff%22/%3E%3Cpolyline points=%22679.5,585.7 676.9,591.1 674.2,596.4%22 stroke=%22%230098ff%22/%3E%3Cpolyline points=%22674.2,596.4 671.3,601.6 668.2,606.7%22 stroke=%22%23006fff%22/%3E%3Cpolyline points=%22668.2,606.7 665.0,611.8 661.6,616.7%22 stroke=%22%230046ff%22/%3E%3Cpolyline points=%22661.6,616.7 658.1,621.5 654.4,626.3%22 stroke=%22%23001eff%22/%3E%3Cpolyline points=%22654.4,626.3 650.6,630.9 646.7,635.4%22 stroke=%22%230b00ff%22/%3E%3Cpolyline points=%22646.7,635.4 642.6,639.8 638.4,644.0%22 stroke=%22%233400ff%22/%3E%3Cpolyline points=%22638.4,644.0 634.0,648.2 629.6,652.2%22 stroke=%22%235c00ff%22/%3E%3Cpolyline points=%22629.6,652.2 625.0,656.0 620.3,659.8%22 stroke=%22%238500ff%22/%3E%3Cpolyline points=%22620.3,659.8 615.5,663.4%22 stroke=%22%23a400ff%22/%3E%3Cpolyline points=%22615.5,663.4 610.6,666.8%22 stroke=%22%23b800ff%22/%3E%3Cpolyline points=%22610.6,666.8 605.6,670.1%22 stroke=%22%23cd00ff%22/%3E%3Cpolyline points=%22605.6,670.1 600.4,673.3%22 stroke=%22%23e100ff%22/%3E%3Cpolyline points=%22600.4,673.3 595.2,676.3%22 stroke=%22%23f500ff%22/%3E%3Cpolyline points=%22595.2,676.3 589.9,679.1%22 stroke=%22%23ff00f4%22/%3E%3Cpolyline points=%22589.9,679.1 584.6,681.8%22 stroke=%22%23ff00e0%22/%3E%3Cpolyline points=%22584.6,681.8 579.1,684.3%22 stroke=%22%23ff00cb%22/%3E%3Cpolyline points=%22579.1,684.3 573.6,686.6%22 stroke=%22%23ff00b7%22/%3E%3Cpolyline points=%22573.6,686.6 567.9,688.8%22 stroke=%22%23ff00a2%22/%3E%3Cpolyline points=%22567.9,688.8 562.3,690.8%22 stroke=%22%23ff008e%22/%3E%3Cpolyline points=%22562.3,690.8 556.5,692.7%22 stroke=%22%23ff0079%22/%3E%3Cpolyline points=%22556.5,692.7 550.7,694.4%22 stroke=%22%23ff0065%22/%3E%3Cpolyline points=%22550.7,694.4 544.9,695.9%22 stroke=%22%23ff0050%22/%3E%3Cpolyline points=%22544.9,695.9 539.0,697.2%22 stroke=%22%23ff003c%22/%3E%3Cpolyline points=%22539.0,697.2 533.1,698.3%22 stroke=%22%23ff0027%22/%3E%3Cpolyline points=%22533.1,698.3 527.2,699.3%22 stroke=%22%23ff0013%22/%3E%3Cpolyline points=%22527.2,699.3 521.2,700.1%22 stroke=%22%23ff0200%22/%3E%3Cpolyline points=%22521.2,700.1 515.2,700.7%22 stroke=%22%23ff1600%22/%3E%3Cpolyline points=%22515.2,700.7 509.1,701.1%22 stroke=%22%23ff2b00%22/%3E%3Cpolyline points=%22509.1,701.1 503.1,701.4%22 stroke=%22%23ff3f00%22/%3E%3Cpolyline points=%22503.1,701.4 497.1,701.5%22 stroke=%22%23ff5400%22/%3E%3Cpolyline points=%22497.1,701.5 491.0,701.4%22 stroke=%22%23ff6800%22/%3E%3Cpolyline points=%22491.0,701.4 485.0,701.1%22 stroke=%22%23ff7d00%22/%3E%3Cpolyline points=%22485.0,701.1 478.9,700.6%22 stroke=%22%23ff9100%22/%3E%3Cpolyline points=%22478.9,700.6 472.9,699.9%22 stroke=%22%23ffa600%22/%3E%3Cpolyline points=%22472.9,699.9 466.9,699.1%22 stroke=%22%23ffbb00%22/%3E%3Cpolyline points=%22466.9,699.1 461.0,698.1%22 stroke=%22%23ffcf00%22/%3E%3Cpolyline points=%22461.0,698.1 455.0,696.9%22 stroke=%22%23ffe400%22/%3E%3Cpolyline points=%22455.0,696.9 449.1,695.5%22 stroke=%22%23fff800%22/%3E%3Cpolyline points=%22449.1,695.5 443.3,694.0%22 stroke=%22%23f1ff00%22/%3E%3Cpolyline points=%22443.3,694.0 437.4,692.2%22 stroke=%22%23dcff00%22/%3E%3Cpolyline points=%22437.4,692.2 431.7,690.3%22 stroke=%22%23c8ff00%22/%3E%3Cpolyline points=%22431.7,690.3 426.0,688.3%22 stroke=%22%23b3ff00%22/%3E%3Cpolyline points=%22426.0,688.3 420.3,686.0%22 stroke=%22%239fff00%22/%3E%3Cpolyline points=%22420.3,686.0 414.8,683.6%22 stroke=%22%238aff00%22/%3E%3Cpolyline points=%22414.8,683.6 409.3,681.0%22 stroke=%22%2375ff00%22/%3E%3Cpolyline points=%22409.3,681.0 403.8,678.3%22 stroke=%22%2361ff00%22/%3E%3Cpolyline points=%22403.8,678.3 398.5,675.4%22 stroke=%22%234cff00%22/%3E%3Cpolyline points=%22398.5,675.4 393.3,672.3%22 stroke=%22%2337ff00%22/%3E%3Cpolyline points=%22393.3,672.3 388.1,669.1%22 stroke=%22%2323ff00%22/%3E%3Cpolyline points=%22388.1,669.1 383.0,665.7%22 stroke=%22%230eff00%22/%3E%3Cpolyline points=%22383.0,665.7 378.1,662.2%22 stroke=%22%2300ff07%22/%3E%3Cpolyline points=%22378.1,662.2 373.2,658.5%22 stroke=%22%2300ff1c%22/%3E%3Cpolyline points=%22373.2,658.5 368.5,654.7%22 stroke=%22%2300ff30%22/%3E%3Cpolyline points=%22368.5,654.7 363.9,650.7%22 stroke=%22%2300ff45%22/%3E%3Cpolyline points=%22363.9,650.7 359.4,646.6%22 stroke=%22%2300ff5a%22/%3E%3Cpolyline points=%22359.4,646.6 355.0,642.4%22 stroke=%22%2300ff6e%22/%3E%3Cpolyline points=%22355.0,642.4 350.7,638.0%22 stroke=%22%2300ff83%22/%3E%3Cpolyline points=%22350.7,638.0 346.6,633.5%22 stroke=%22%2300ff98%22/%3E%3Cpolyline points=%22346.6,633.5 342.6,628.9%22 stroke=%22%2300ffad%22/%3E%3Cpolyline points=%22342.6,628.9 338.8,624.2%22 stroke=%22%2300ffc1%22/%3E%3Cpolyline points=%22338.8,624.2 335.0,619.3%22 stroke=%22%2300ffd6%22/%3E%3Cpolyline points=%22335.0,619.3 331.5,614.3%22 stroke=%22%2300ffeb%22/%3E%3Cpolyline points=%22331.5,614.3 328.1,609.3%22 stroke=%22%2300feff%22/%3E%3Cpolyline points=%22328.1,609.3 324.8,604.1%22 stroke=%22%2300eaff%22/%3E%3Cpolyline points=%22324.8,604.1 321.7,598.8%22 stroke=%22%2300d5ff%22/%3E%3Cpolyline points=%22321.7,598.8 318.8,593.5%22 stroke=%22%2300c0ff%22/%3E%3Cpolyline points=%22318.8,593.5 316.0,588.0%22 stroke=%22%2300abff%22/%3E%3Cpolyline points=%22316.0,588.0 313.4,582.5%22 stroke=%22%230096ff%22/%3E%3Cpolyline points=%22313.4,582.5 310.9,576.9%22 stroke=%22%230082ff%22/%3E%3Cpolyline points=%22310.9,576.9 308.6,571.2%22 stroke=%22%23006dff%22/%3E%3Cpolyline points=%22308.6,571.2 306.5,565.5%22 stroke=%22%230058ff%22/%3E%3Cpolyline points=%22306.5,565.5 304.6,559.6%22 stroke=%22%230043ff%22/%3E%3Cpolyline points=%22304.6,559.6 302.8,553.8%22 stroke=%22%23002eff%22/%3E%3Cpolyline points=%22302.8,553.8 301.2,547.8%22 stroke=%22%230019ff%22/%3E%3Cpolyline points=%22301.2,547.8 299.8,541.9%22 stroke=%22%230005ff%22/%3E%3Cpolyline points=%22299.8,541.9 298.6,535.9%22 stroke=%22%231000ff%22/%3E%3Cpolyline points=%22298.6,535.9 297.5,529.8%22 stroke=%22%232500ff%22/%3E%3Cpolyline points=%22297.5,529.8 296.7,523.7%22 stroke=%22%233a00ff%22/%3E%3Cpolyline points=%22296.7,523.7 296.0,517.6%22 stroke=%22%234f00ff%22/%3E%3Cpolyline points=%22296.0,517.6 295.5,511.5%22 stroke=%22%236400ff%22/%3E%3Cpolyline points=%22295.5,511.5 295.1,505.4%22 stroke=%22%237900ff%22/%3E%3Cpolyline points=%22295.1,505.4 295.0,499.2%22 stroke=%22%238e00ff%22/%3E%3Cpolyline points=%22295.0,499.2 295.1,493.1%22 stroke=%22%23a300ff%22/%3E%3Cpolyline points=%22295.1,493.1 295.3,486.9%22 stroke=%22%23b700ff%22/%3E%3Cpolyline points=%22295.3,486.9 295.7,480.8%22 stroke=%22%23cc00ff%22/%3E%3Cpolyline points=%22295.7,480.8 296.3,474.7%22 stroke=%22%23e100ff%22/%3E%3Cpolyline points=%22296.3,474.7 297.1,468.5%22 stroke=%22%23f600ff%22/%3E%3Cpolyline points=%22297.1,468.5 298.1,462.5%22 stroke=%22%23ff00f3%22/%3E%3Cpolyline points=%22298.1,462.5 299.2,456.4%22 stroke=%22%23ff00de%22/%3E%3Cpolyline points=%22299.2,456.4 300.5,450.4%22 stroke=%22%23ff00c9%22/%3E%3Cpolyline points=%22300.5,450.4 302.1,444.4%22 stroke=%22%23ff00b4%22/%3E%3Cpolyline points=%22302.1,444.4 303.7,438.5%22 stroke=%22%23ff009f%22/%3E%3Cpolyline points=%22303.7,438.5 305.6,432.6%22 stroke=%22%23ff008a%22/%3E%3Cpolyline points=%22305.6,432.6 307.7,426.8%22 stroke=%22%23ff0075%22/%3E%3Cpolyline points=%22307.7,426.8 309.9,421.0%22 stroke=%22%23ff0060%22/%3E%3Cpolyline points=%22309.9,421.0 312.3,415.3%22 stroke=%22%23ff004b%22/%3E%3Cpolyline points=%22312.3,415.3 314.8,409.7%22 stroke=%22%23ff0036%22/%3E%3Cpolyline points=%22314.8,409.7 317.6,404.1%22 stroke=%22%23ff0021%22/%3E%3Cpolyline points=%22317.6,404.1 320.5,398.7%22 stroke=%22%23ff000c%22/%3E%3Cpolyline points=%22320.5,398.7 323.5,393.3%22 stroke=%22%23ff0900%22/%3E%3Cpolyline points=%22323.5,393.3 326.8,388.0%22 stroke=%22%23ff1e00%22/%3E%3Cpolyline points=%22326.8,388.0 330.1,382.8%22 stroke=%22%23ff3300%22/%3E%3Cpolyline points=%22330.1,382.8 333.7,377.8%22 stroke=%22%23ff4800%22/%3E%3Cpolyline points=%22333.7,377.8 337.4,372.8%22 stroke=%22%23ff5d00%22/%3E%3Cpolyline points=%22337.4,372.8 341.2,367.9%22 stroke=%22%23ff7200%22/%3E%3Cpolyline points=%22341.2,367.9 345.2,363.2%22 stroke=%22%23ff8700%22/%3E%3Cpolyline points=%22345.2,363.2 349.3,358.5%22 stroke=%22%23ff9c00%22/%3E%3Cpolyline points=%22349.3,358.5 353.6,354.0%22 stroke=%22%23ffb200%22/%3E%3Cpolyline points=%22353.6,354.0 358.0,349.7%22 stroke=%22%23ffc700%22/%3E%3Cpolyline points=%22358.0,349.7 362.5,345.4%22 stroke=%22%23ffdc00%22/%3E%3Cpolyline points=%22362.5,345.4 367.2,341.3%22 stroke=%22%23fff100%22/%3E%3Cpolyline points=%22367.2,341.3 371.9,337.3%22 stroke=%22%23f8ff00%22/%3E%3Cpolyline points=%22371.9,337.3 376.8,333.5%22 stroke=%22%23e3ff00%22/%3E%3Cpolyline points=%22376.8,333.5 381.8,329.8%22 stroke=%22%23ceff00%22/%3E%3Cpolyline points=%22381.8,329.8 387.0,326.3%22 stroke=%22%23b9ff00%22/%3E%3Cpolyline points=%22387.0,326.3 392.2,323.0%22 stroke=%22%23a4ff00%22/%3E%3Cpolyline points=%22392.2,323.0 397.5,319.7%22 stroke=%22%238eff00%22/%3E%3Cpolyline points=%22397.5,319.7 402.9,316.7%22 stroke=%22%2379ff00%22/%3E%3Cpolyline points=%22402.9,316.7 408.4,313.8%22 stroke=%22%2364ff00%22/%3E%3Cpolyline points=%22408.4,313.8 414.0,311.1%22 stroke=%22%234fff00%22/%3E%3Cpolyline points=%22414.0,311.1 419.7,308.5%22 stroke=%22%233aff00%22/%3E%3Cpolyline points=%22419.7,308.5 425.5,306.1%22 stroke=%22%2325ff00%22/%3E%3Cpolyline points=%22425.5,306.1 431.3,303.9%22 stroke=%22%230fff00%22/%3E%3Cpolyline points=%22431.3,303.9 437.2,301.9%22 stroke=%22%2300ff06%22/%3E%3Cpolyline points=%22437.2,301.9 443.1,300.0%22 stroke=%22%2300ff1b%22/%3E%3Cpolyline points=%22443.1,300.0 449.2,298.3%22 stroke=%22%2300ff30%22/%3E%3Cpolyline points=%22449.2,298.3 455.2,296.8%22 stroke=%22%2300ff45%22/%3E%3Cpolyline points=%22455.2,296.8 461.3,295.5%22 stroke=%22%2300ff5b%22/%3E%3Cpolyline points=%22461.3,295.5 467.5,294.4%22 stroke=%22%2300ff70%22/%3E%3Cpolyline points=%22467.5,294.4 473.6,293.4%22 stroke=%22%2300ff85%22/%3E%3Cpolyline points=%22473.6,293.4 479.8,292.7%22 stroke=%22%2300ff9a%22/%3E%3Cpolyline points=%22479.8,292.7 486.1,292.1%22 stroke=%22%2300ffb0%22/%3E%3Cpolyline points=%22486.1,292.1 492.3,291.7%22 stroke=%22%2300ffc5%22/%3E%3Cpolyline points=%22492.3,291.7 498.5,291.5%22 stroke=%22%2300ffda%22/%3E%3Cpolyline points=%22498.5,291.5 504.8,291.5%22 stroke=%22%2300ffef%22/%3E%3Cpolyline points=%22504.8,291.5 511.1,291.7%22 stroke=%22%2300f9ff%22/%3E%3Cpolyline points=%22511.1,291.7 517.3,292.0%22 stroke=%22%2300e4ff%22/%3E%3Cpolyline points=%22517.3,292.0 523.5,292.6%22 stroke=%22%2300cfff%22/%3E%3Cpolyline points=%22523.5,292.6 529.8,293.3%22 stroke=%22%2300baff%22/%3E%3Cpolyline points=%22529.8,293.3 536.0,294.2%22 stroke=%22%2300a4ff%22/%3E%3Cpolyline points=%22536.0,294.2 542.1,295.3%22 stroke=%22%23008fff%22/%3E%3Cpolyline points=%22542.1,295.3 548.3,296.6%22 stroke=%22%23007aff%22/%3E%3Cpolyline points=%22548.3,296.6 554.4,298.1%22 stroke=%22%230064ff%22/%3E%3Cpolyline points=%22554.4,298.1 560.4,299.7%22 stroke=%22%23004fff%22/%3E%3Cpolyline points=%22560.4,299.7 566.4,301.6%22 stroke=%22%23003aff%22/%3E%3Cpolyline points=%22566.4,301.6 572.4,303.6%22 stroke=%22%230024ff%22/%3E%3Cpolyline points=%22572.4,303.6 578.3,305.8%22 stroke=%22%23000fff%22/%3E%3Cpolyline points=%22578.3,305.8 584.1,308.2%22 stroke=%22%230600ff%22/%3E%3Cpolyline points=%22584.1,308.2 589.8,310.7%22 stroke=%22%231c00ff%22/%3E%3Cpolyline points=%22589.8,310.7 595.5,313.4%22 stroke=%22%233100ff%22/%3E%3Cpolyline points=%22595.5,313.4 601.1,316.3%22 stroke=%22%234700ff%22/%3E%3Cpolyline points=%22601.1,316.3 606.6,319.4%22 stroke=%22%235c00ff%22/%3E%3Cpolyline points=%22606.6,319.4 612.0,322.6%22 stroke=%22%237100ff%22/%3E%3Cpolyline points=%22612.0,322.6 617.3,326.0%22 stroke=%22%238700ff%22/%3E%3Cpolyline points=%22617.3,326.0 622.5,329.5%22 stroke=%22%239c00ff%22/%3E%3Cpolyline points=%22622.5,329.5 627.6,333.2%22 stroke=%22%23b200ff%22/%3E%3Cpolyline points=%22627.6,333.2 632.6,337.1%22 stroke=%22%23c700ff%22/%3E%3Cpolyline points=%22632.6,337.1 637.4,341.1%22 stroke=%22%23dc00ff%22/%3E%3Cpolyline points=%22637.4,341.1 642.2,345.2%22 stroke=%22%23f200ff%22/%3E%3Cpolyline points=%22642.2,345.2 646.8,349.5%22 stroke=%22%23ff00f7%22/%3E%3Cpolyline points=%22646.8,349.5 651.3,353.9%22 stroke=%22%23ff00e1%22/%3E%3Cpolyline points=%22651.3,353.9 655.7,358.5%22 stroke=%22%23ff00cc%22/%3E%3Cpolyline points=%22655.7,358.5 659.9,363.2%22 stroke=%22%23ff00b6%22/%3E%3Cpolyline points=%22659.9,363.2 664.0,368.0%22 stroke=%22%23ff00a1%22/%3E%3Cpolyline points=%22664.0,368.0 667.9,372.9%22 stroke=%22%23ff008b%22/%3E%3Cpolyline points=%22667.9,372.9 671.7,378.0%22 stroke=%22%23ff0076%22/%3E%3Cpolyline points=%22671.7,378.0 675.4,383.1%22 stroke=%22%23ff0060%22/%3E%3Cpolyline points=%22675.4,383.1 678.9,388.4%22 stroke=%22%23ff004b%22/%3E%3Cpolyline points=%22678.9,388.4 682.2,393.8%22 stroke=%22%23ff0035%22/%3E%3Cpolyline points=%22682.2,393.8 685.3,399.3%22 stroke=%22%23ff0020%22/%3E%3Cpolyline points=%22685.3,399.3 688.3,404.9%22 stroke=%22%23ff000a%22/%3E%3Cpolyline points=%22688.3,404.9 691.2,410.5%22 stroke=%22%23ff0b00%22/%3E%3Cpolyline points=%22691.2,410.5 693.8,416.3%22 stroke=%22%23ff2100%22/%3E%3Cpolyline points=%22693.8,416.3 696.3,422.1%22 stroke=%22%23ff3600%22/%3E%3Cpolyline points=%22696.3,422.1 698.6,428.0%22 stroke=%22%23ff4c00%22/%3E%3Cpolyline points=%22698.6,428.0 700.8,434.0%22 stroke=%22%23ff6100%22/%3E%3Cpolyline points=%22700.8,434.0 702.7,440.0%22 stroke=%22%23ff7700%22/%3E%3Cpolyline points=%22702.7,440.0 704.5,446.1%22 stroke=%22%23ff8c00%22/%3E%3Cpolyline points=%22704.5,446.1 706.1,452.2%22 stroke=%22%23ffa200%22/%3E%3Cpolyline points=%22706.1,452.2 707.5,458.4%22 stroke=%22%23ffb800%22/%3E%3Cpolyline points=%22707.5,458.4 708.7,464.7%22 stroke=%22%23ffcd00%22/%3E%3Cpolyline points=%22708.7,464.7 709.7,470.9%22 stroke=%22%23ffe300%22/%3E%3Cpolyline points=%22709.7,470.9 710.6,477.2%22 stroke=%22%23fff800%22/%3E%3Cpolyline points=%22710.6,477.2 711.2,483.5%22 stroke=%22%23f0ff00%22/%3E%3Cpolyline points=%22711.2,483.5 711.7,489.9%22 stroke=%22%23daff00%22/%3E%3Cpolyline points=%22711.7,489.9 712.0,496.2%22 stroke=%22%23c5ff00%22/%3E%3Cpolyline points=%22712.0,496.2 712.1,502.6%22 stroke=%22%23afff00%22/%3E%3Cpolyline points=%22712.1,502.6 712.0,509.0%22 stroke=%22%239aff00%22/%3E%3Cpolyline points=%22712.0,509.0 711.7,515.3%22 stroke=%22%2384ff00%22/%3E%3Cpolyline points=%22711.7,515.3 711.2,521.7%22 stroke=%22%236eff00%22/%3E%3Cpolyline points=%22711.2,521.7 710.5,528.0%22 stroke=%22%2359ff00%22/%3E%3Cpolyline points=%22710.5,528.0 709.6,534.3%22 stroke=%22%2343ff00%22/%3E%3Cpolyline points=%22709.6,534.3 708.6,540.6%22 stroke=%22%232dff00%22/%3E%3Cpolyline points=%22708.6,540.6 707.3,546.8%22 stroke=%22%2318ff00%22/%3E%3Cpolyline points=%22707.3,546.8 705.9,553.1%22 stroke=%22%2302ff00%22/%3E%3Cpolyline points=%22705.9,553.1 704.3,559.2%22 stroke=%22%2300ff14%22/%3E%3Cpolyline points=%22704.3,559.2 702.5,565.4%22 stroke=%22%2300ff29%22/%3E%3Cpolyline points=%22702.5,565.4 700.5,571.4%22 stroke=%22%2300ff3f%22/%3E%3Cpolyline points=%22700.5,571.4 698.3,577.4%22 stroke=%22%2300ff55%22/%3E%3Cpolyline points=%22698.3,577.4 696.0,583.4%22 stroke=%22%2300ff6b%22/%3E%3Cpolyline points=%22696.0,583.4 693.4,589.2%22 stroke=%22%2300ff80%22/%3E%3Cpolyline points=%22693.4,589.2 690.7,595.0%22 stroke=%22%2300ff96%22/%3E%3Cpolyline points=%22690.7,595.0 687.9,600.7%22 stroke=%22%2300ffac%22/%3E%3Cpolyline points=%22687.9,600.7 684.8,606.4%22 stroke=%22%2300ffc1%22/%3E%3Cpolyline points=%22684.8,606.4 681.6,611.9%22 stroke=%22%2300ffd7%22/%3E%3Cpolyline points=%22681.6,611.9 678.2,617.3%22 stroke=%22%2300ffed%22/%3E%3Cpolyline points=%22678.2,617.3 674.7,622.7%22 stroke=%22%2300fbff%22/%3E%3Cpolyline points=%22674.7,622.7 671.0,627.9%22 stroke=%22%2300e5ff%22/%3E%3Cpolyline points=%22671.0,627.9 667.1,633.0%22 stroke=%22%2300d0ff%22/%3E%3Cpolyline points=%22667.1,633.0 663.1,638.0%22 stroke=%22%2300baff%22/%3E%3Cpolyline points=%22663.1,638.0 658.9,642.9%22 stroke=%22%2300a4ff%22/%3E%3Cpolyline points=%22658.9,642.9 654.6,647.6%22 stroke=%22%23008eff%22/%3E%3Cpolyline points=%22654.6,647.6 650.2,652.2%22 stroke=%22%230079ff%22/%3E%3Cpolyline points=%22650.2,652.2 645.6,656.7%22 stroke=%22%230063ff%22/%3E%3Cpolyline points=%22645.6,656.7 640.9,661.1%22 stroke=%22%23004dff%22/%3E%3Cpolyline points=%22640.9,661.1 636.0,665.3%22 stroke=%22%230037ff%22/%3E%3Cpolyline points=%22636.0,665.3 631.0,669.3%22 stroke=%22%230021ff%22/%3E%3Cpolyline points=%22631.0,669.3 625.9,673.2%22 stroke=%22%23000bff%22/%3E%3Cpolyline points=%22625.9,673.2 620.7,677.0%22 stroke=%22%230a00ff%22/%3E%3Cpolyline points=%22620.7,677.0 615.4,680.6%22 stroke=%22%232000ff%22/%3E%3Cpolyline points=%22615.4,680.6 610.0,684.0%22 stroke=%22%233600ff%22/%3E%3Cpolyline points=%22610.0,684.0 604.4,687.3%22 stroke=%22%234c00ff%22/%3E%3Cpolyline points=%22604.4,687.3 598.8,690.4%22 stroke=%22%236200ff%22/%3E%3Cpolyline points=%22598.8,690.4 593.1,693.4%22 stroke=%22%237800ff%22/%3E%3Cpolyline points=%22593.1,693.4 587.2,696.1%22 stroke=%22%238e00ff%22/%3E%3Cpolyline points=%22587.2,696.1 581.4,698.7%22 stroke=%22%23a400ff%22/%3E%3Cpolyline points=%22581.4,698.7 575.4,701.1%22 stroke=%22%23b900ff%22/%3E%3Cpolyline points=%22575.4,701.1 569.3,703.4%22 stroke=%22%23cf00ff%22/%3E%3Cpolyline points=%22569.3,703.4 563.2,705.4%22 stroke=%22%23e500ff%22/%3E%3Cpolyline points=%22563.2,705.4 557.0,707.3%22 stroke=%22%23fb00ff%22/%3E%3Cpolyline points=%22557.0,707.3 550.8,709.0%22 stroke=%22%23ff00ed%22/%3E%3Cpolyline points=%22550.8,709.0 544.5,710.5%22 stroke=%22%23ff00d7%22/%3E%3Cpolyline points=%22544.5,710.5 538.2,711.8%22 stroke=%22%23ff00c1%22/%3E%3Cpolyline points=%22538.2,711.8 531.9,712.9%22 stroke=%22%23ff00ab%22/%3E%3Cpolyline points=%22531.9,712.9 525.5,713.8%22 stroke=%22%23ff0095%22/%3E%3Cpolyline points=%22525.5,713.8 519.1,714.5%22 stroke=%22%23ff007f%22/%3E%3Cpolyline points=%22519.1,714.5 512.6,715.1%22 stroke=%22%23ff0069%22/%3E%3Cpolyline points=%22512.6,715.1 506.2,715.4%22 stroke=%22%23ff0053%22/%3E%3Cpolyline points=%22506.2,715.4 499.7,715.6%22 stroke=%22%23ff003d%22/%3E%3Cpolyline points=%22499.7,715.6 493.2,715.6%22 stroke=%22%23ff0027%22/%3E%3Cpolyline points=%22493.2,715.6 486.8,715.3%22 stroke=%22%23ff0011%22/%3E%3Cpolyline points=%22486.8,715.3 480.3,714.9%22 stroke=%22%23ff0500%22/%3E%3Cpolyline points=%22480.3,714.9 473.9,714.3%22 stroke=%22%23ff1b00%22/%3E%3Cpolyline points=%22473.9,714.3 467.4,713.5%22 stroke=%22%23ff3100%22/%3E%3Cpolyline points=%22467.4,713.5 461.0,712.5%22 stroke=%22%23ff4700%22/%3E%3Cpolyline points=%22461.0,712.5 454.7,711.3%22 stroke=%22%23ff5d00%22/%3E%3Cpolyline points=%22454.7,711.3 448.3,709.9%22 stroke=%22%23ff7300%22/%3E%3Cpolyline points=%22448.3,709.9 442.0,708.3%22 stroke=%22%23ff8900%22/%3E%3Cpolyline points=%22442.0,708.3 435.8,706.5%22 stroke=%22%23ff9f00%22/%3E%3Cpolyline points=%22435.8,706.5 429.6,704.6%22 stroke=%22%23ffb500%22/%3E%3Cpolyline points=%22429.6,704.6 423.5,702.4%22 stroke=%22%23ffcb00%22/%3E%3Cpolyline points=%22423.5,702.4 417.4,700.1%22 stroke=%22%23ffe100%22/%3E%3Cpolyline points=%22417.4,700.1 411.4,697.6%22 stroke=%22%23fff700%22/%3E%3Cpolyline points=%22411.4,697.6 405.5,694.9%22 stroke=%22%23f1ff00%22/%3E%3Cpolyline points=%22405.5,694.9 399.7,692.0%22 stroke=%22%23daff00%22/%3E%3Cpolyline points=%22399.7,692.0 393.9,689.0%22 stroke=%22%23c4ff00%22/%3E%3Cpolyline points=%22393.9,689.0 388.3,685.8%22 stroke=%22%23aeff00%22/%3E%3Cpolyline points=%22388.3,685.8 382.7,682.4%22 stroke=%22%2398ff00%22/%3E%3Cpolyline points=%22382.7,682.4 377.2,678.9%22 stroke=%22%2382ff00%22/%3E%3Cpolyline points=%22377.2,678.9 371.9,675.2%22 stroke=%22%236cff00%22/%3E%3Cpolyline points=%22371.9,675.2 366.7,671.3%22 stroke=%22%2356ff00%22/%3E%3Cpolyline points=%22366.7,671.3 361.5,667.3%22 stroke=%22%2340ff00%22/%3E%3Cpolyline points=%22361.5,667.3 356.5,663.1%22 stroke=%22%2329ff00%22/%3E%3Cpolyline points=%22356.5,663.1 351.7,658.8%22 stroke=%22%2313ff00%22/%3E%3Cpolyline points=%22351.7,658.8 346.9,654.3%22 stroke=%22%2300ff03%22/%3E%3Cpolyline points=%22346.9,654.3 342.3,649.7%22 stroke=%22%2300ff19%22/%3E%3Cpolyline points=%22342.3,649.7 337.8,644.9%22 stroke=%22%2300ff2f%22/%3E%3Cpolyline points=%22337.8,644.9 333.5,640.0%22 stroke=%22%2300ff45%22/%3E%3Cpolyline points=%22333.5,640.0 329.3,635.0%22 stroke=%22%2300ff5c%22/%3E%3Cpolyline points=%22329.3,635.0 325.3,629.9%22 stroke=%22%2300ff72%22/%3E%3Cpolyline points=%22325.3,629.9 321.4,624.6%22 stroke=%22%2300ff88%22/%3E%3Cpolyline points=%22321.4,624.6 317.7,619.3%22 stroke=%22%2300ff9e%22/%3E%3Cpolyline points=%22317.7,619.3 314.2,613.8%22 stroke=%22%2300ffb4%22/%3E%3Cpolyline points=%22314.2,613.8 310.8,608.2%22 stroke=%22%2300ffcb%22/%3E%3Cpolyline points=%22310.8,608.2 307.6,602.5%22 stroke=%22%2300ffe1%22/%3E%3Cpolyline points=%22307.6,602.5 304.5,596.7%22 stroke=%22%2300fff7%22/%3E%3Cpolyline points=%22304.5,596.7 301.6,590.8%22 stroke=%22%2300f1ff%22/%3E%3Cpolyline points=%22301.6,590.8 298.9,584.9%22 stroke=%22%2300daff%22/%3E%3Cpolyline points=%22298.9,584.9 296.4,578.8%22 stroke=%22%2300c4ff%22/%3E%3Cpolyline points=%22296.4,578.8 294.1,572.7%22 stroke=%22%2300aeff%22/%3E%3Cpolyline points=%22294.1,572.7 291.9,566.5%22 stroke=%22%230098ff%22/%3E%3Cpolyline points=%22291.9,566.5 290.0,560.3%22 stroke=%22%230081ff%22/%3E%3Cpolyline points=%22290.0,560.3 288.2,553.9%22 stroke=%22%23006bff%22/%3E%3Cpolyline points=%22288.2,553.9 286.6,547.6%22 stroke=%22%230055ff%22/%3E%3Cpolyline points=%22286.6,547.6 285.2,541.2%22 stroke=%22%23003eff%22/%3E%3Cpolyline points=%22285.2,541.2 284.0,534.7%22 stroke=%22%230028ff%22/%3E%3Cpolyline points=%22284.0,534.7 283.0,528.2%22 stroke=%22%230012ff%22/%3E%3Cpolyline points=%22283.0,528.2 282.2,521.7%22 stroke=%22%230400ff%22/%3E%3Cpolyline points=%22282.2,521.7 281.6,515.2%22 stroke=%22%231b00ff%22/%3E%3Cpolyline points=%22281.6,515.2 281.1,508.6%22 stroke=%22%233100ff%22/%3E%3Cpolyline points=%22281.1,508.6 280.9,502.1%22 stroke=%22%234700ff%22/%3E%3Cpolyline points=%22280.9,502.1 280.9,495.5%22 stroke=%22%235e00ff%22/%3E%3Cpolyline points=%22280.9,495.5 281.0,488.9%22 stroke=%22%237400ff%22/%3E%3Cpolyline points=%22281.0,488.9 281.4,482.3%22 stroke=%22%238b00ff%22/%3E%3Cpolyline points=%22281.4,482.3 282.0,475.8%22 stroke=%22%23a100ff%22/%3E%3Cpolyline points=%22282.0,475.8 282.7,469.2%22 stroke=%22%23b700ff%22/%3E%3Cpolyline points=%22282.7,469.2 283.7,462.7%22 stroke=%22%23ce00ff%22/%3E%3Cpolyline points=%22283.7,462.7 284.8,456.2%22 stroke=%22%23e400ff%22/%3E%3Cpolyline points=%22284.8,456.2 286.2,449.8%22 stroke=%22%23fa00ff%22/%3E%3Cpolyline points=%22286.2,449.8 287.7,443.4%22 stroke=%22%23ff00ed%22/%3E%3Cpolyline points=%22287.7,443.4 289.4,437.0%22 stroke=%22%23ff00d7%22/%3E%3Cpolyline points=%22289.4,437.0 291.4,430.7%22 stroke=%22%23ff00c0%22/%3E%3Cpolyline points=%22291.4,430.7 293.5,424.5%22 stroke=%22%23ff00aa%22/%3E%3Cpolyline points=%22293.5,424.5 295.8,418.3%22 stroke=%22%23ff0093%22/%3E%3Cpolyline points=%22295.8,418.3 298.2,412.2%22 stroke=%22%23ff007d%22/%3E%3Cpolyline points=%22298.2,412.2 300.9,406.1%22 stroke=%22%23ff0067%22/%3E%3Cpolyline points=%22300.9,406.1 303.8,400.2%22 stroke=%22%23ff0050%22/%3E%3Cpolyline points=%22303.8,400.2 306.8,394.3%22 stroke=%22%23ff003a%22/%3E%3Cpolyline points=%22306.8,394.3 310.0,388.5%22 stroke=%22%23ff0023%22/%3E%3Cpolyline points=%22310.0,388.5 313.3,382.8%22 stroke=%22%23ff000d%22/%3E%3Cpolyline points=%22313.3,382.8 316.9,377.2%22 stroke=%22%23ff0a00%22/%3E%3Cpolyline points=%22316.9,377.2 320.6,371.8%22 stroke=%22%23ff2000%22/%3E%3Cpolyline points=%22320.6,371.8 324.5,366.4%22 stroke=%22%23ff3700%22/%3E%3Cpolyline points=%22324.5,366.4 328.5,361.1%22 stroke=%22%23ff4d00%22/%3E%3Cpolyline points=%22328.5,361.1 332.7,356.0%22 stroke=%22%23ff6400%22/%3E%3Cpolyline points=%22332.7,356.0 337.0,351.0%22 stroke=%22%23ff7a00%22/%3E%3Cpolyline points=%22337.0,351.0 341.5,346.2%22 stroke=%22%23ff9100%22/%3E%3Cpolyline points=%22341.5,346.2 346.2,341.4%22 stroke=%22%23ffa700%22/%3E%3Cpolyline points=%22346.2,341.4 351.0,336.8%22 stroke=%22%23ffbe00%22/%3E%3Cpolyline points=%22351.0,336.8 355.9,332.4%22 stroke=%22%23ffd400%22/%3E%3Cpolyline points=%22355.9,332.4 360.9,328.1%22 stroke=%22%23ffeb00%22/%3E%3Cpolyline points=%22360.9,328.1 366.1,323.9%22 stroke=%22%23fcff00%22/%3E%3Cpolyline points=%22366.1,323.9 371.4,319.9%22 stroke=%22%23e6ff00%22/%3E%3Cpolyline points=%22371.4,319.9 376.8,316.1%22 stroke=%22%23cfff00%22/%3E%3Cpolyline points=%22376.8,316.1 382.4,312.4%22 stroke=%22%23b9ff00%22/%3E%3Cpolyline points=%22382.4,312.4 388.0,308.9%22 stroke=%22%23a2ff00%22/%3E%3Cpolyline points=%22388.0,308.9 393.8,305.6%22 stroke=%22%238cff00%22/%3E%3Cpolyline points=%22393.8,305.6 399.6,302.4%22 stroke=%22%2375ff00%22/%3E%3Cpolyline points=%22399.6,302.4 405.5,299.5%22 stroke=%22%235eff00%22/%3E%3Cpolyline points=%22405.5,299.5 411.6,296.7%22 stroke=%22%2348ff00%22/%3E%3Cpolyline points=%22411.6,296.7 417.7,294.0%22 stroke=%22%2331ff00%22/%3E%3Cpolyline points=%22417.7,294.0 423.9,291.6%22 stroke=%22%231bff00%22/%3E%3Cpolyline points=%22423.9,291.6 430.1,289.3%22 stroke=%22%2304ff00%22/%3E%3Cpolyline points=%22430.1,289.3 436.5,287.3%22 stroke=%22%2300ff13%22/%3E%3Cpolyline points=%22436.5,287.3 442.9,285.4%22 stroke=%22%2300ff29%22/%3E%3Cpolyline points=%22442.9,285.4 449.3,283.7%22 stroke=%22%2300ff40%22/%3E%3Cpolyline points=%22449.3,283.7 455.8,282.2%22 stroke=%22%2300ff57%22/%3E%3Cpolyline points=%22455.8,282.2 462.4,280.9%22 stroke=%22%2300ff6d%22/%3E%3Cpolyline points=%22462.4,280.9 468.9,279.8%22 stroke=%22%2300ff84%22/%3E%3Cpolyline points=%22468.9,279.8 475.5,278.9%22 stroke=%22%2300ff9b%22/%3E%3Cpolyline points=%22475.5,278.9 482.2,278.2%22 stroke=%22%2300ffb1%22/%3E%3Cpolyline points=%22482.2,278.2 488.8,277.7%22 stroke=%22%2300ffc8%22/%3E%3Cpolyline points=%22488.8,277.7 495.5,277.4%22 stroke=%22%2300ffdf%22/%3E%3Cpolyline points=%22495.5,277.4 502.2,277.3%22 stroke=%22%2300fff5%22/%3E%3Cpolyline points=%22502.2,277.3 508.9,277.4%22 stroke=%22%2300f2ff%22/%3E%3Cpolyline points=%22508.9,277.4 515.5,277.7%22 stroke=%22%2300dbff%22/%3E%3Cpolyline points=%22515.5,277.7 522.2,278.2%22 stroke=%22%2300c4ff%22/%3E%3Cpolyline points=%22522.2,278.2 528.9,278.9%22 stroke=%22%2300aeff%22/%3E%3Cpolyline points=%22528.9,278.9 535.5,279.8%22 stroke=%22%230097ff%22/%3E%3Cpolyline points=%22535.5,279.8 542.1,280.9%22 stroke=%22%230080ff%22/%3E%3Cpolyline points=%22542.1,280.9 548.7,282.2%22 stroke=%22%230069ff%22/%3E%3Cpolyline points=%22548.7,282.2 555.2,283.7%22 stroke=%22%230053ff%22/%3E%3Cpolyline points=%22555.2,283.7 561.7,285.4%22 stroke=%22%23003cff%22/%3E%3Cpolyline points=%22561.7,285.4 568.1,287.3%22 stroke=%22%230025ff%22/%3E%3Cpolyline points=%22568.1,287.3 574.5,289.4%22 stroke=%22%23000eff%22/%3E%3Cpolyline points=%22574.5,289.4 580.8,291.6%22 stroke=%22%230900ff%22/%3E%3Cpolyline points=%22580.8,291.6 587.0,294.1%22 stroke=%22%231f00ff%22/%3E%3Cpolyline points=%22587.0,294.1 593.2,296.7%22 stroke=%22%233600ff%22/%3E%3Cpolyline points=%22593.2,296.7 599.3,299.5%22 stroke=%22%234d00ff%22/%3E%3Cpolyline points=%22599.3,299.5 605.3,302.5%22 stroke=%22%236400ff%22/%3E%3Cpolyline points=%22605.3,302.5 611.2,305.7%22 stroke=%22%237b00ff%22/%3E%3Cpolyline points=%22611.2,305.7 617.0,309.1%22 stroke=%22%239100ff%22/%3E%3Cpolyline points=%22617.0,309.1 622.7,312.6%22 stroke=%22%23a800ff%22/%3E%3Cpolyline points=%22622.7,312.6 628.3,316.4%22 stroke=%22%23bf00ff%22/%3E%3Cpolyline points=%22628.3,316.4 633.8,320.2%22 stroke=%22%23d600ff%22/%3E%3Cpolyline points=%22633.8,320.2 639.2,324.3%22 stroke=%22%23ed00ff%22/%3E%3Cpolyline points=%22639.2,324.3 644.4,328.5%22 stroke=%22%23ff00fa%22/%3E%3Cpolyline points=%22644.4,328.5 649.6,332.8%22 stroke=%22%23ff00e3%22/%3E%3Cpolyline points=%22649.6,332.8 654.5,337.3%22 stroke=%22%23ff00cd%22/%3E%3Cpolyline points=%22654.5,337.3 659.4,342.0%22 stroke=%22%23ff00b6%22/%3E%3Cpolyline points=%22659.4,342.0 664.1,346.8%22 stroke=%22%23ff009f%22/%3E%3Cpolyline points=%22664.1,346.8 668.7,351.8%22 stroke=%22%23ff0088%22/%3E%3Cpolyline points=%22668.7,351.8 673.1,356.8%22 stroke=%22%23ff0071%22/%3E%3Cpolyline points=%22673.1,356.8 677.4,362.1%22 stroke=%22%23ff005a%22/%3E%3Cpolyline points=%22677.4,362.1 681.5,367.4%22 stroke=%22%23ff0043%22/%3E%3Cpolyline points=%22681.5,367.4 685.4,372.9%22 stroke=%22%23ff002c%22/%3E%3Cpolyline points=%22685.4,372.9 689.2,378.4%22 stroke=%22%23ff0015%22/%3E%3Cpolyline points=%22689.2,378.4 692.9,384.1%22 stroke=%22%23ff0200%22/%3E%3Cpolyline points=%22692.9,384.1 696.3,389.9%22 stroke=%22%23ff1900%22/%3E%3Cpolyline points=%22696.3,389.9 699.6,395.9%22 stroke=%22%23ff3000%22/%3E%3Cpolyline points=%22699.6,395.9 702.7,401.9%22 stroke=%22%23ff4600%22/%3E%3Cpolyline points=%22702.7,401.9 705.6,408.0%22 stroke=%22%23ff5d00%22/%3E%3Cpolyline points=%22705.6,408.0 708.3,414.1%22 stroke=%22%23ff7400%22/%3E%3Cpolyline points=%22708.3,414.1 710.9,420.4%22 stroke=%22%23ff8b00%22/%3E%3Cpolyline points=%22710.9,420.4 713.2,426.7%22 stroke=%22%23ffa200%22/%3E%3Cpolyline points=%22713.2,426.7 715.4,433.1%22 stroke=%22%23ffb900%22/%3E%3Cpolyline points=%22715.4,433.1 717.4,439.6%22 stroke=%22%23ffd000%22/%3E%3Cpolyline points=%22717.4,439.6 719.1,446.2%22 stroke=%22%23ffe700%22/%3E%3Cpolyline points=%22719.1,446.2 720.7,452.7%22 stroke=%22%23fffe00%22/%3E%3Cpolyline points=%22720.7,452.7 722.1,459.4%22 stroke=%22%23e9ff00%22/%3E%3Cpolyline points=%22722.1,459.4 723.3,466.0%22 stroke=%22%23d2ff00%22/%3E%3Cpolyline points=%22723.3,466.0 724.3,472.7%22 stroke=%22%23baff00%22/%3E%3Cpolyline points=%22724.3,472.7 725.1,479.5%22 stroke=%22%23a3ff00%22/%3E%3Cpolyline points=%22725.1,479.5 725.6,486.2%22 stroke=%22%238cff00%22/%3E%3Cpolyline points=%22725.6,486.2 726.0,493.0%22 stroke=%22%2375ff00%22/%3E%3Cpolyline points=%22726.0,493.0 726.2,499.8%22 stroke=%22%235eff00%22/%3E%3Cpolyline points=%22726.2,499.8 726.2,506.6%22 stroke=%22%2347ff00%22/%3E%3Cpolyline points=%22726.2,506.6 725.9,513.4%22 stroke=%22%2330ff00%22/%3E%3Cpolyline points=%22725.9,513.4 725.5,520.1%22 stroke=%22%2319ff00%22/%3E%3Cpolyline points=%22725.5,520.1 724.9,526.9%22 stroke=%22%2302ff00%22/%3E%3Cpolyline points=%22724.9,526.9 724.0,533.6%22 stroke=%22%2300ff15%22/%3E%3Cpolyline points=%22724.0,533.6 723.0,540.4%22 stroke=%22%2300ff2c%22/%3E%3Cpolyline points=%22723.0,540.4 721.7,547.0%22 stroke=%22%2300ff43%22/%3E%3Cpolyline points=%22721.7,547.0 720.3,553.7%22 stroke=%22%2300ff5b%22/%3E%3Cpolyline points=%22720.3,553.7 718.6,560.3%22 stroke=%22%2300ff72%22/%3E%3Cpolyline points=%22718.6,560.3 716.8,566.8%22 stroke=%22%2300ff89%22/%3E%3Cpolyline points=%22716.8,566.8 714.8,573.3%22 stroke=%22%2300ffa0%22/%3E%3Cpolyline points=%22714.8,573.3 712.5,579.8%22 stroke=%22%2300ffb7%22/%3E%3Cpolyline points=%22712.5,579.8 710.1,586.1%22 stroke=%22%2300ffce%22/%3E%3Cpolyline points=%22710.1,586.1 707.5,592.4%22 stroke=%22%2300ffe5%22/%3E%3Cpolyline points=%22707.5,592.4 704.7,598.6%22 stroke=%22%2300fffd%22/%3E%3Cpolyline points=%22704.7,598.6 701.7,604.8%22 stroke=%22%2300eaff%22/%3E%3Cpolyline points=%22701.7,604.8 698.5,610.8%22 stroke=%22%2300d3ff%22/%3E%3Cpolyline points=%22698.5,610.8 695.2,616.7%22 stroke=%22%2300bcff%22/%3E%3Cpolyline points=%22695.2,616.7 691.6,622.6%22 stroke=%22%2300a5ff%22/%3E%3Cpolyline points=%22691.6,622.6 687.9,628.3%22 stroke=%22%23008eff%22/%3E%3Cpolyline points=%22687.9,628.3 684.0,633.9%22 stroke=%22%230076ff%22/%3E%3Cpolyline points=%22684.0,633.9 680.0,639.4%22 stroke=%22%23005fff%22/%3E%3Cpolyline points=%22680.0,639.4 675.8,644.8%22 stroke=%22%230048ff%22/%3E%3Cpolyline points=%22675.8,644.8 671.4,650.1%22 stroke=%22%230031ff%22/%3E%3Cpolyline points=%22671.4,650.1 666.9,655.2%22 stroke=%22%230019ff%22/%3E%3Cpolyline points=%22666.9,655.2 662.2,660.2%22 stroke=%22%230002ff%22/%3E%3Cpolyline points=%22662.2,660.2 657.4,665.0%22 stroke=%22%231500ff%22/%3E%3Cpolyline points=%22657.4,665.0 652.4,669.7%22 stroke=%22%232c00ff%22/%3E%3Cpolyline points=%22652.4,669.7 647.3,674.2%22 stroke=%22%234400ff%22/%3E%3Cpolyline points=%22647.3,674.2 642.0,678.6%22 stroke=%22%235b00ff%22/%3E%3Cpolyline points=%22642.0,678.6 636.7,682.9%22 stroke=%22%237200ff%22/%3E%3Cpolyline points=%22636.7,682.9 631.1,686.9%22 stroke=%22%238900ff%22/%3E%3Cpolyline points=%22631.1,686.9 625.5,690.8%22 stroke=%22%23a100ff%22/%3E%3Cpolyline points=%22625.5,690.8 619.8,694.6%22 stroke=%22%23b800ff%22/%3E%3Cpolyline points=%22619.8,694.6 613.9,698.1%22 stroke=%22%23cf00ff%22/%3E%3Cpolyline points=%22613.9,698.1 608.0,701.5%22 stroke=%22%23e700ff%22/%3E%3Cpolyline points=%22608.0,701.5 601.9,704.7%22 stroke=%22%23fe00ff%22/%3E%3Cpolyline points=%22601.9,704.7 595.7,707.8%22 stroke=%22%23ff00e9%22/%3E%3Cpolyline points=%22595.7,707.8 589.5,710.6%22 stroke=%22%23ff00d1%22/%3E%3Cpolyline points=%22589.5,710.6 583.1,713.3%22 stroke=%22%23ff00ba%22/%3E%3Cpolyline points=%22583.1,713.3 576.7,715.7%22 stroke=%22%23ff00a3%22/%3E%3Cpolyline points=%22576.7,715.7 570.3,718.0%22 stroke=%22%23ff008b%22/%3E%3Cpolyline points=%22570.3,718.0 563.7,720.1%22 stroke=%22%23ff0074%22/%3E%3Cpolyline points=%22563.7,720.1 557.1,721.9%22 stroke=%22%23ff005d%22/%3E%3Cpolyline points=%22557.1,721.9 550.4,723.6%22 stroke=%22%23ff0045%22/%3E%3Cpolyline points=%22550.4,723.6 543.7,725.1%22 stroke=%22%23ff002e%22/%3E%3Cpolyline points=%22543.7,725.1 536.9,726.4%22 stroke=%22%23ff0016%22/%3E%3Cpolyline points=%22536.9,726.4 530.1,727.4%22 stroke=%22%23ff0100%22/%3E%3Cpolyline points=%22530.1,727.4 523.3,728.3%22 stroke=%22%23ff1800%22/%3E%3Cpolyline points=%22523.3,728.3 516.5,729.0%22 stroke=%22%23ff3000%22/%3E%3Cpolyline points=%22516.5,729.0 509.6,729.4%22 stroke=%22%23ff4700%22/%3E%3Cpolyline points=%22509.6,729.4 502.7,729.7%22 stroke=%22%23ff5f00%22/%3E%3Cpolyline points=%22502.7,729.7 495.8,729.7%22 stroke=%22%23ff7600%22/%3E%3Cpolyline points=%22495.8,729.7 488.9,729.6%22 stroke=%22%23ff8d00%22/%3E%3Cpolyline points=%22488.9,729.6 482.0,729.2%22 stroke=%22%23ffa500%22/%3E%3Cpolyline points=%22482.0,729.2 475.2,728.6%22 stroke=%22%23ffbc00%22/%3E%3Cpolyline points=%22475.2,728.6 468.3,727.8%22 stroke=%22%23ffd400%22/%3E%3Cpolyline points=%22468.3,727.8 461.5,726.9%22 stroke=%22%23ffeb00%22/%3E%3Cpolyline points=%22461.5,726.9 454.7,725.7%22 stroke=%22%23fbff00%22/%3E%3Cpolyline points=%22454.7,725.7 447.9,724.3%22 stroke=%22%23e4ff00%22/%3E%3Cpolyline points=%22447.9,724.3 441.2,722.7%22 stroke=%22%23ccff00%22/%3E%3Cpolyline points=%22441.2,722.7 434.5,720.9%22 stroke=%22%23b5ff00%22/%3E%3Cpolyline points=%22434.5,720.9 427.9,718.9%22 stroke=%22%239dff00%22/%3E%3Cpolyline points=%22427.9,718.9 421.3,716.7%22 stroke=%22%2386ff00%22/%3E%3Cpolyline points=%22421.3,716.7 414.9,714.3%22 stroke=%22%236eff00%22/%3E%3Cpolyline points=%22414.9,714.3 408.4,711.7%22 stroke=%22%2357ff00%22/%3E%3Cpolyline points=%22408.4,711.7 402.1,708.9%22 stroke=%22%233fff00%22/%3E%3Cpolyline points=%22402.1,708.9 395.8,705.9%22 stroke=%22%2328ff00%22/%3E%3Cpolyline points=%22395.8,705.9 389.7,702.8%22 stroke=%22%2310ff00%22/%3E%3Cpolyline points=%22389.7,702.8 383.6,699.4%22 stroke=%22%2300ff07%22/%3E%3Cpolyline points=%22383.6,699.4 377.6,695.9%22 stroke=%22%2300ff1f%22/%3E%3Cpolyline points=%22377.6,695.9 371.8,692.2%22 stroke=%22%2300ff37%22/%3E%3Cpolyline points=%22371.8,692.2 366.0,688.3%22 stroke=%22%2300ff4e%22/%3E%3Cpolyline points=%22366.0,688.3 360.4,684.3%22 stroke=%22%2300ff66%22/%3E%3Cpolyline points=%22360.4,684.3 354.9,680.1%22 stroke=%22%2300ff7d%22/%3E%3Cpolyline points=%22354.9,680.1 349.5,675.7%22 stroke=%22%2300ff95%22/%3E%3Cpolyline points=%22349.5,675.7 344.3,671.1%22 stroke=%22%2300ffac%22/%3E%3Cpolyline points=%22344.3,671.1 339.2,666.4%22 stroke=%22%2300ffc4%22/%3E%3Cpolyline points=%22339.2,666.4 334.2,661.6%22 stroke=%22%2300ffdc%22/%3E%3Cpolyline points=%22334.2,661.6 329.4,656.6%22 stroke=%22%2300fff3%22/%3E%3Cpolyline points=%22329.4,656.6 324.7,651.5%22 stroke=%22%2300f3ff%22/%3E%3Cpolyline points=%22324.7,651.5 320.2,646.2%22 stroke=%22%2300dcff%22/%3E%3Cpolyline points=%22320.2,646.2 315.8,640.8%22 stroke=%22%2300c4ff%22/%3E%3Cpolyline points=%22315.8,640.8 311.6,635.2%22 stroke=%22%2300acff%22/%3E%3Cpolyline points=%22311.6,635.2 307.6,629.5%22 stroke=%22%230095ff%22/%3E%3Cpolyline points=%22307.6,629.5 303.8,623.7%22 stroke=%22%23007dff%22/%3E%3Cpolyline points=%22303.8,623.7 300.1,617.8%22 stroke=%22%230065ff%22/%3E%3Cpolyline points=%22300.1,617.8 296.6,611.8%22 stroke=%22%23004eff%22/%3E%3Cpolyline points=%22296.6,611.8 293.2,605.7%22 stroke=%22%230036ff%22/%3E%3Cpolyline points=%22293.2,605.7 290.1,599.5%22 stroke=%22%23001eff%22/%3E%3Cpolyline points=%22290.1,599.5 287.2,593.2%22 stroke=%22%230007ff%22/%3E%3Cpolyline points=%22287.2,593.2 284.4,586.8%22 stroke=%22%231100ff%22/%3E%3Cpolyline points=%22284.4,586.8 281.8,580.3%22 stroke=%22%232900ff%22/%3E%3Cpolyline points=%22281.8,580.3 279.5,573.7%22 stroke=%22%234100ff%22/%3E%3Cpolyline points=%22279.5,573.7 277.3,567.1%22 stroke=%22%235800ff%22/%3E%3Cpolyline points=%22277.3,567.1 275.3,560.4%22 stroke=%22%237000ff%22/%3E%3Cpolyline points=%22275.3,560.4 273.5,553.6%22 stroke=%22%238800ff%22/%3E%3Cpolyline points=%22273.5,553.6 272.0,546.8%22 stroke=%22%23a000ff%22/%3E%3Cpolyline points=%22272.0,546.8 270.6,540.0%22 stroke=%22%23b700ff%22/%3E%3Cpolyline points=%22270.6,540.0 269.4,533.1%22 stroke=%22%23cf00ff%22/%3E%3Cpolyline points=%22269.4,533.1 268.5,526.2%22 stroke=%22%23e700ff%22/%3E%3Cpolyline points=%22268.5,526.2 267.7,519.2%22 stroke=%22%23ff00ff%22/%3E%3Cpolyline points=%22267.7,519.2 267.2,512.2%22 stroke=%22%23ff00e8%22/%3E%3Cpolyline points=%22267.2,512.2 266.8,505.3%22 stroke=%22%23ff00d0%22/%3E%3Cpolyline points=%22266.8,505.3 266.7,498.3%22 stroke=%22%23ff00b8%22/%3E%3Cpolyline points=%22266.7,498.3 266.8,491.3%22 stroke=%22%23ff00a0%22/%3E%3Cpolyline points=%22266.8,491.3 267.1,484.3%22 stroke=%22%23ff0089%22/%3E%3Cpolyline points=%22267.1,484.3 267.6,477.3%22 stroke=%22%23ff0071%22/%3E%3Cpolyline points=%22267.6,477.3 268.3,470.3%22 stroke=%22%23ff0059%22/%3E%3Cpolyline points=%22268.3,470.3 269.3,463.4%22 stroke=%22%23ff0041%22/%3E%3Cpolyline points=%22269.3,463.4 270.4,456.5%22 stroke=%22%23ff0029%22/%3E%3Cpolyline points=%22270.4,456.5 271.8,449.6%22 stroke=%22%23ff0011%22/%3E%3Cpolyline points=%22271.8,449.6 273.3,442.7%22 stroke=%22%23ff0600%22/%3E%3Cpolyline points=%22273.3,442.7 275.1,435.9%22 stroke=%22%23ff1e00%22/%3E%3Cpolyline points=%22275.1,435.9 277.0,429.2%22 stroke=%22%23ff3600%22/%3E%3Cpolyline points=%22277.0,429.2 279.2,422.5%22 stroke=%22%23ff4e00%22/%3E%3Cpolyline points=%22279.2,422.5 281.5,415.9%22 stroke=%22%23ff6600%22/%3E%3Cpolyline points=%22281.5,415.9 284.1,409.4%22 stroke=%22%23ff7e00%22/%3E%3Cpolyline points=%22284.1,409.4 286.8,402.9%22 stroke=%22%23ff9600%22/%3E%3Cpolyline points=%22286.8,402.9 289.8,396.5%22 stroke=%22%23ffae00%22/%3E%3Cpolyline points=%22289.8,396.5 292.9,390.2%22 stroke=%22%23ffc500%22/%3E%3Cpolyline points=%22292.9,390.2 296.3,384.0%22 stroke=%22%23ffdd00%22/%3E%3Cpolyline points=%22296.3,384.0 299.8,377.9%22 stroke=%22%23fff500%22/%3E%3Cpolyline points=%22299.8,377.9 303.5,372.0%22 stroke=%22%23f1ff00%22/%3E%3Cpolyline points=%22303.5,372.0 307.3,366.1%22 stroke=%22%23d9ff00%22/%3E%3Cpolyline points=%22307.3,366.1 311.4,360.3%22 stroke=%22%23c1ff00%22/%3E%3Cpolyline points=%22311.4,360.3 315.6,354.7%22 stroke=%22%23a9ff00%22/%3E%3Cpolyline points=%22315.6,354.7 320.0,349.2%22 stroke=%22%2391ff00%22/%3E%3Cpolyline points=%22320.0,349.2 324.6,343.8%22 stroke=%22%2379ff00%22/%3E%3Cpolyline points=%22324.6,343.8 329.3,338.6%22 stroke=%22%2361ff00%22/%3E%3Cpolyline points=%22329.3,338.6 334.1,333.5%22 stroke=%22%2349ff00%22/%3E%3Cpolyline points=%22334.1,333.5 339.2,328.5%22 stroke=%22%2331ff00%22/%3E%3Cpolyline points=%22339.2,328.5 344.3,323.7%22 stroke=%22%2319ff00%22/%3E%3Cpolyline points=%22344.3,323.7 349.7,319.1%22 stroke=%22%2301ff00%22/%3E%3Cpolyline points=%22349.7,319.1 355.1,314.6%22 stroke=%22%2300ff17%22/%3E%3Cpolyline points=%22355.1,314.6 360.7,310.3%22 stroke=%22%2300ff2f%22/%3E%3Cpolyline points=%22360.7,310.3 366.4,306.1%22 stroke=%22%2300ff47%22/%3E%3Cpolyline points=%22366.4,306.1 372.2,302.2%22 stroke=%22%2300ff5f%22/%3E%3Cpolyline points=%22372.2,302.2 378.2,298.4%22 stroke=%22%2300ff77%22/%3E%3Cpolyline points=%22378.2,298.4 384.3,294.7%22 stroke=%22%2300ff8f%22/%3E%3Cpolyline points=%22384.3,294.7 390.5,291.3%22 stroke=%22%2300ffa7%22/%3E%3Cpolyline points=%22390.5,291.3 396.7,288.0%22 stroke=%22%2300ffbf%22/%3E%3Cpolyline points=%22396.7,288.0 403.1,285.0%22 stroke=%22%2300ffd7%22/%3E%3Cpolyline points=%22403.1,285.0 409.6,282.1%22 stroke=%22%2300ffef%22/%3E%3Cpolyline points=%22409.6,282.1 416.1,279.4%22 stroke=%22%2300f7ff%22/%3E%3Cpolyline points=%22416.1,279.4 422.8,276.9%22 stroke=%22%2300dfff%22/%3E%3Cpolyline points=%22422.8,276.9 429.5,274.7%22 stroke=%22%2300c7ff%22/%3E%3Cpolyline points=%22429.5,274.7 436.2,272.6%22 stroke=%22%2300afff%22/%3E%3Cpolyline points=%22436.2,272.6 443.1,270.7%22 stroke=%22%230097ff%22/%3E%3Cpolyline points=%22443.1,270.7 450.0,269.0%22 stroke=%22%23007fff%22/%3E%3Cpolyline points=%22450.0,269.0 456.9,267.6%22 stroke=%22%230066ff%22/%3E%3Cpolyline points=%22456.9,267.6 463.9,266.3%22 stroke=%22%23004eff%22/%3E%3Cpolyline points=%22463.9,266.3 470.9,265.3%22 stroke=%22%230036ff%22/%3E%3Cpolyline points=%22470.9,265.3 477.9,264.4%22 stroke=%22%23001eff%22/%3E%3Cpolyline points=%22477.9,264.4 485.0,263.8%22 stroke=%22%230006ff%22/%3E%3Cpolyline points=%22485.0,263.8 492.1,263.4%22 stroke=%22%231200ff%22/%3E%3Cpolyline points=%22492.1,263.4 499.2,263.2%22 stroke=%22%232a00ff%22/%3E%3Cpolyline points=%22499.2,263.2 506.3,263.2%22 stroke=%22%234200ff%22/%3E%3Cpolyline points=%22506.3,263.2 513.4,263.5%22 stroke=%22%235b00ff%22/%3E%3Cpolyline points=%22513.4,263.5 520.5,263.9%22 stroke=%22%237300ff%22/%3E%3Cpolyline points=%22520.5,263.9 527.6,264.6%22 stroke=%22%238b00ff%22/%3E%3Cpolyline points=%22527.6,264.6 534.6,265.4%22 stroke=%22%23a300ff%22/%3E%3Cpolyline points=%22534.6,265.4 541.7,266.5%22 stroke=%22%23bb00ff%22/%3E%3Cpolyline points=%22541.7,266.5 548.7,267.8%22 stroke=%22%23d400ff%22/%3E%3Cpolyline points=%22548.7,267.8 555.6,269.3%22 stroke=%22%23ec00ff%22/%3E%3Cpolyline points=%22555.6,269.3 562.6,271.0%22 stroke=%22%23ff00fa%22/%3E%3Cpolyline points=%22562.6,271.0 569.4,272.9%22 stroke=%22%23ff00e2%22/%3E%3Cpolyline points=%22569.4,272.9 576.2,275.0%22 stroke=%22%23ff00ca%22/%3E%3Cpolyline points=%22576.2,275.0 583.0,277.4%22 stroke=%22%23ff00b1%22/%3E%3Cpolyline points=%22583.0,277.4 589.6,279.9%22 stroke=%22%23ff0099%22/%3E%3Cpolyline points=%22589.6,279.9 596.2,282.6%22 stroke=%22%23ff0081%22/%3E%3Cpolyline points=%22596.2,282.6 602.7,285.5%22 stroke=%22%23ff0069%22/%3E%3Cpolyline points=%22602.7,285.5 609.1,288.6%22 stroke=%22%23ff0050%22/%3E%3Cpolyline points=%22609.1,288.6 615.5,292.0%22 stroke=%22%23ff0038%22/%3E%3Cpolyline points=%22615.5,292.0 621.7,295.5%22 stroke=%22%23ff0020%22/%3E%3Cpolyline points=%22621.7,295.5 627.8,299.1%22 stroke=%22%23ff0008%22/%3E%3Cpolyline points=%22627.8,299.1 633.8,303.0%22 stroke=%22%23ff1100%22/%3E%3Cpolyline points=%22633.8,303.0 639.7,307.1%22 stroke=%22%23ff2900%22/%3E%3Cpolyline points=%22639.7,307.1 645.5,311.3%22 stroke=%22%23ff4100%22/%3E%3Cpolyline points=%22645.5,311.3 651.1,315.7%22 stroke=%22%23ff5a00%22/%3E%3Cpolyline points=%22651.1,315.7 656.6,320.2%22 stroke=%22%23ff7200%22/%3E%3Cpolyline points=%22656.6,320.2 662.0,325.0%22 stroke=%22%23ff8a00%22/%3E%3Cpolyline points=%22662.0,325.0 667.2,329.9%22 stroke=%22%23ffa300%22/%3E%3Cpolyline points=%22667.2,329.9 672.3,334.9%22 stroke=%22%23ffbb00%22/%3E%3Cpolyline points=%22672.3,334.9 677.2,340.1%22 stroke=%22%23ffd300%22/%3E%3Cpolyline points=%22677.2,340.1 682.0,345.4%22 stroke=%22%23ffec00%22/%3E%3Cpolyline points=%22682.0,345.4 686.6,350.9%22 stroke=%22%23faff00%22/%3E%3Cpolyline points=%22686.6,350.9 691.0,356.5%22 stroke=%22%23e2ff00%22/%3E%3Cpolyline points=%22691.0,356.5 695.3,362.3%22 stroke=%22%23c9ff00%22/%3E%3Cpolyline points=%22695.3,362.3 699.4,368.2%22 stroke=%22%23b1ff00%22/%3E%3Cpolyline points=%22699.4,368.2 703.3,374.2%22 stroke=%22%2399ff00%22/%3E%3Cpolyline points=%22703.3,374.2 707.0,380.3%22 stroke=%22%2380ff00%22/%3E%3Cpolyline points=%22707.0,380.3 710.6,386.5%22 stroke=%22%2368ff00%22/%3E%3Cpolyline points=%22710.6,386.5 714.0,392.9%22 stroke=%22%234fff00%22/%3E%3Cpolyline points=%22714.0,392.9 717.1,399.3%22 stroke=%22%2337ff00%22/%3E%3Cpolyline points=%22717.1,399.3 720.1,405.9%22 stroke=%22%231fff00%22/%3E%3Cpolyline points=%22720.1,405.9 722.9,412.5%22 stroke=%22%2306ff00%22/%3E%3Cpolyline points=%22722.9,412.5 725.5,419.2%22 stroke=%22%2300ff12%22/%3E%3Cpolyline points=%22725.5,419.2 727.9,426.0%22 stroke=%22%2300ff2b%22/%3E%3Cpolyline points=%22727.9,426.0 730.1,432.8%22 stroke=%22%2300ff43%22/%3E%3Cpolyline points=%22730.1,432.8 732.1,439.7%22 stroke=%22%2300ff5c%22/%3E%3Cpolyline points=%22732.1,439.7 733.8,446.7%22 stroke=%22%2300ff74%22/%3E%3Cpolyline points=%22733.8,446.7 735.4,453.7%22 stroke=%22%2300ff8c%22/%3E%3Cpolyline points=%22735.4,453.7 736.7,460.8%22 stroke=%22%2300ffa5%22/%3E%3Cpolyline points=%22736.7,460.8 737.9,467.9%22 stroke=%22%2300ffbd%22/%3E%3Cpolyline points=%22737.9,467.9 738.8,475.0%22 stroke=%22%2300ffd6%22/%3E%3Cpolyline points=%22738.8,475.0 739.5,482.2%22 stroke=%22%2300ffee%22/%3E%3Cpolyline points=%22739.5,482.2 740.0,489.4%22 stroke=%22%2300f7ff%22/%3E%3Cpolyline points=%22740.0,489.4 740.3,496.6%22 stroke=%22%2300dfff%22/%3E%3Cpolyline points=%22740.3,496.6 740.3,503.8%22 stroke=%22%2300c6ff%22/%3E%3Cpolyline points=%22740.3,503.8 740.2,511.0%22 stroke=%22%2300aeff%22/%3E%3Cpolyline points=%22740.2,511.0 739.8,518.2%22 stroke=%22%230095ff%22/%3E%3Cpolyline points=%22739.8,518.2 739.2,525.4%22 stroke=%22%23007dff%22/%3E%3Cpolyline points=%22739.2,525.4 738.4,532.6%22 stroke=%22%230064ff%22/%3E%3Cpolyline points=%22738.4,532.6 737.4,539.7%22 stroke=%22%23004bff%22/%3E%3Cpolyline points=%22737.4,539.7 736.2,546.9%22 stroke=%22%230033ff%22/%3E%3Cpolyline points=%22736.2,546.9 734.7,553.9%22 stroke=%22%23001aff%22/%3E%3Cpolyline points=%22734.7,553.9 733.1,561.0%22 stroke=%22%230002ff%22/%3E%3Cpolyline points=%22733.1,561.0 731.2,567.9%22 stroke=%22%231700ff%22/%3E%3Cpolyline points=%22731.2,567.9 729.1,574.9%22 stroke=%22%232f00ff%22/%3E%3Cpolyline points=%22729.1,574.9 726.8,581.7%22 stroke=%22%234800ff%22/%3E%3Cpolyline points=%22726.8,581.7 724.3,588.5%22 stroke=%22%236100ff%22/%3E%3Cpolyline points=%22724.3,588.5 721.6,595.2%22 stroke=%22%237900ff%22/%3E%3Cpolyline points=%22721.6,595.2 718.8,601.9%22 stroke=%22%239200ff%22/%3E%3Cpolyline points=%22718.8,601.9 715.7,608.4%22 stroke=%22%23aa00ff%22/%3E%3Cpolyline points=%22715.7,608.4 712.4,614.9%22 stroke=%22%23c300ff%22/%3E%3Cpolyline points=%22712.4,614.9 708.9,621.2%22 stroke=%22%23dc00ff%22/%3E%3Cpolyline points=%22708.9,621.2 705.2,627.5%22 stroke=%22%23f400ff%22/%3E%3Cpolyline points=%22705.2,627.5 701.4,633.6%22 stroke=%22%23ff00f1%22/%3E%3Cpolyline points=%22701.4,633.6 697.3,639.6%22 stroke=%22%23ff00d8%22/%3E%3Cpolyline points=%22697.3,639.6 693.1,645.5%22 stroke=%22%23ff00c0%22/%3E%3Cpolyline points=%22693.1,645.5 688.7,651.3%22 stroke=%22%23ff00a7%22/%3E%3Cpolyline points=%22688.7,651.3 684.1,656.9%22 stroke=%22%23ff008e%22/%3E%3Cpolyline points=%22684.1,656.9 679.4,662.4%22 stroke=%22%23ff0076%22/%3E%3Cpolyline points=%22679.4,662.4 674.5,667.8%22 stroke=%22%23ff005d%22/%3E%3Cpolyline points=%22674.5,667.8 669.4,673.0%22 stroke=%22%23ff0044%22/%3E%3Cpolyline points=%22669.4,673.0 664.2,678.0%22 stroke=%22%23ff002c%22/%3E%3Cpolyline points=%22664.2,678.0 658.8,682.9%22 stroke=%22%23ff0013%22/%3E%3Cpolyline points=%22658.8,682.9 653.3,687.7%22 stroke=%22%23ff0600%22/%3E%3Cpolyline points=%22653.3,687.7 647.6,692.2%22 stroke=%22%23ff1e00%22/%3E%3Cpolyline points=%22647.6,692.2 641.9,696.6%22 stroke=%22%23ff3700%22/%3E%3Cpolyline points=%22641.9,696.6 635.9,700.9%22 stroke=%22%23ff5000%22/%3E%3Cpolyline points=%22635.9,700.9 629.9,704.9%22 stroke=%22%23ff6900%22/%3E%3Cpolyline points=%22629.9,704.9 623.7,708.8%22 stroke=%22%23ff8100%22/%3E%3Cpolyline points=%22623.7,708.8 617.4,712.4%22 stroke=%22%23ff9a00%22/%3E%3Cpolyline points=%22617.4,712.4 611.0,715.9%22 stroke=%22%23ffb300%22/%3E%3Cpolyline points=%22611.0,715.9 604.5,719.2%22 stroke=%22%23ffcc00%22/%3E%3Cpolyline points=%22604.5,719.2 597.9,722.3%22 stroke=%22%23ffe400%22/%3E%3Cpolyline points=%22597.9,722.3 591.2,725.2%22 stroke=%22%23fffd00%22/%3E%3Cpolyline points=%22591.2,725.2 584.5,727.9%22 stroke=%22%23e8ff00%22/%3E%3Cpolyline points=%22584.5,727.9 577.6,730.4%22 stroke=%22%23cfff00%22/%3E%3Cpolyline points=%22577.6,730.4 570.7,732.7%22 stroke=%22%23b6ff00%22/%3E%3Cpolyline points=%22570.7,732.7 563.7,734.8%22 stroke=%22%239eff00%22/%3E%3Cpolyline points=%22563.7,734.8 556.6,736.7%22 stroke=%22%2385ff00%22/%3E%3Cpolyline points=%22556.6,736.7 549.5,738.3%22 stroke=%22%236cff00%22/%3E%3Cpolyline points=%22549.5,738.3 542.4,739.8%22 stroke=%22%2353ff00%22/%3E%3Cpolyline points=%22542.4,739.8 535.2,741.0%22 stroke=%22%233aff00%22/%3E%3Cpolyline points=%22535.2,741.0 527.9,742.0%22 stroke=%22%2321ff00%22/%3E%3Cpolyline points=%22527.9,742.0 520.7,742.8%22 stroke=%22%2309ff00%22/%3E%3Cpolyline points=%22520.7,742.8 513.4,743.4%22 stroke=%22%2300ff10%22/%3E%3Cpolyline points=%22513.4,743.4 506.1,743.7%22 stroke=%22%2300ff29%22/%3E%3Cpolyline points=%22506.1,743.7 498.8,743.9%22 stroke=%22%2300ff42%22/%3E%3Cpolyline points=%22498.8,743.9 491.5,743.8%22 stroke=%22%2300ff5b%22/%3E%3Cpolyline points=%22491.5,743.8 484.1,743.5%22 stroke=%22%2300ff74%22/%3E%3Cpolyline points=%22484.1,743.5 476.8,743.0%22 stroke=%22%2300ff8d%22/%3E%3Cpolyline points=%22476.8,743.0 469.5,742.2%22 stroke=%22%2300ffa6%22/%3E%3Cpolyline points=%22469.5,742.2 462.3,741.3%22 stroke=%22%2300ffbe%22/%3E%3Cpolyline points=%22462.3,741.3 455.1,740.1%22 stroke=%22%2300ffd7%22/%3E%3Cpolyline points=%22455.1,740.1 447.9,738.7%22 stroke=%22%2300fff0%22/%3E%3Cpolyline points=%22447.9,738.7 440.7,737.1%22 stroke=%22%2300f5ff%22/%3E%3Cpolyline points=%22440.7,737.1 433.6,735.3%22 stroke=%22%2300dcff%22/%3E%3Cpolyline points=%22433.6,735.3 426.6,733.3%22 stroke=%22%2300c3ff%22/%3E%3Cpolyline points=%22426.6,733.3 419.6,731.0%22 stroke=%22%2300aaff%22/%3E%3Cpolyline points=%22419.6,731.0 412.6,728.6%22 stroke=%22%230091ff%22/%3E%3Cpolyline points=%22412.6,728.6 405.8,725.9%22 stroke=%22%230078ff%22/%3E%3Cpolyline points=%22405.8,725.9 399.0,723.0%22 stroke=%22%23005fff%22/%3E%3Cpolyline points=%22399.0,723.0 392.4,720.0%22 stroke=%22%230046ff%22/%3E%3Cpolyline points=%22392.4,720.0 385.8,716.7%22 stroke=%22%23002dff%22/%3E%3Cpolyline points=%22385.8,716.7 379.3,713.2%22 stroke=%22%230014ff%22/%3E%3Cpolyline points=%22379.3,713.2 372.9,709.6%22 stroke=%22%230500ff%22/%3E%3Cpolyline points=%22372.9,709.6 366.7,705.7%22 stroke=%22%231e00ff%22/%3E%3Cpolyline points=%22366.7,705.7 360.5,701.7%22 stroke=%22%233700ff%22/%3E%3Cpolyline points=%22360.5,701.7 354.5,697.5%22 stroke=%22%235000ff%22/%3E%3Cpolyline points=%22354.5,697.5 348.6,693.1%22 stroke=%22%236900ff%22/%3E%3Cpolyline points=%22348.6,693.1 342.8,688.5%22 stroke=%22%238200ff%22/%3E%3Cpolyline points=%22342.8,688.5 337.2,683.7%22 stroke=%22%239b00ff%22/%3E%3Cpolyline points=%22337.2,683.7 331.7,678.8%22 stroke=%22%23b400ff%22/%3E%3Cpolyline points=%22331.7,678.8 326.4,673.7%22 stroke=%22%23cd00ff%22/%3E%3Cpolyline points=%22326.4,673.7 321.2,668.5%22 stroke=%22%23e600ff%22/%3E%3Cpolyline points=%22321.2,668.5 316.2,663.1%22 stroke=%22%23ff00ff%22/%3E%3Cpolyline points=%22316.2,663.1 311.3,657.6%22 stroke=%22%23ff00e6%22/%3E%3Cpolyline points=%22311.3,657.6 306.6,651.9%22 stroke=%22%23ff00cd%22/%3E%3Cpolyline points=%22306.6,651.9 302.1,646.1%22 stroke=%22%23ff00b4%22/%3E%3Cpolyline points=%22302.1,646.1 297.7,640.1%22 stroke=%22%23ff009b%22/%3E%3Cpolyline points=%22297.7,640.1 293.6,634.0%22 stroke=%22%23ff0082%22/%3E%3Cpolyline points=%22293.6,634.0 289.6,627.8%22 stroke=%22%23ff0068%22/%3E%3Cpolyline points=%22289.6,627.8 285.8,621.4%22 stroke=%22%23ff004f%22/%3E%3Cpolyline points=%22285.8,621.4 282.2,615.0%22 stroke=%22%23ff0036%22/%3E%3Cpolyline points=%22282.2,615.0 278.8,608.4%22 stroke=%22%23ff001d%22/%3E%3Cpolyline points=%22278.8,608.4 275.6,601.8%22 stroke=%22%23ff0004%22/%3E%3Cpolyline points=%22275.6,601.8 272.5,595.0%22 stroke=%22%23ff1500%22/%3E%3Cpolyline points=%22272.5,595.0 269.7,588.2%22 stroke=%22%23ff2e00%22/%3E%3Cpolyline points=%22269.7,588.2 267.1,581.3%22 stroke=%22%23ff4800%22/%3E%3Cpolyline points=%22267.1,581.3 264.7,574.3%22 stroke=%22%23ff6100%22/%3E%3Cpolyline points=%22264.7,574.3 262.5,567.2%22 stroke=%22%23ff7a00%22/%3E%3Cpolyline points=%22262.5,567.2 260.6,560.1%22 stroke=%22%23ff9300%22/%3E%3Cpolyline points=%22260.6,560.1 258.8,552.9%22 stroke=%22%23ffac00%22/%3E%3Cpolyline points=%22258.8,552.9 257.3,545.6%22 stroke=%22%23ffc500%22/%3E%3Cpolyline points=%22257.3,545.6 255.9,538.3%22 stroke=%22%23ffdf00%22/%3E%3Cpolyline points=%22255.9,538.3 254.8,531.0%22 stroke=%22%23fff800%22/%3E%3Cpolyline points=%22254.8,531.0 253.9,523.6%22 stroke=%22%23edff00%22/%3E%3Cpolyline points=%22253.9,523.6 253.3,516.2%22 stroke=%22%23d4ff00%22/%3E%3Cpolyline points=%22253.3,516.2 252.8,508.8%22 stroke=%22%23bbff00%22/%3E%3Cpolyline points=%22252.8,508.8 252.6,501.4%22 stroke=%22%23a1ff00%22/%3E%3Cpolyline points=%22252.6,501.4 252.6,494.0%22 stroke=%22%2388ff00%22/%3E%3Cpolyline points=%22252.6,494.0 252.8,486.6%22 stroke=%22%236fff00%22/%3E%3Cpolyline points=%22252.8,486.6 253.3,479.2%22 stroke=%22%2356ff00%22/%3E%3Cpolyline points=%22253.3,479.2 254.0,471.8%22 stroke=%22%233cff00%22/%3E%3Cpolyline points=%22254.0,471.8 254.8,464.4%22 stroke=%22%2323ff00%22/%3E%3Cpolyline points=%22254.8,464.4 256.0,457.0%22 stroke=%22%230aff00%22/%3E%3Cpolyline points=%22256.0,457.0 257.3,449.7%22 stroke=%22%2300ff0f%22/%3E%3Cpolyline points=%22257.3,449.7 258.8,442.5%22 stroke=%22%2300ff29%22/%3E%3Cpolyline points=%22258.8,442.5 260.6,435.2%22 stroke=%22%2300ff42%22/%3E%3Cpolyline points=%22260.6,435.2 262.6,428.1%22 stroke=%22%2300ff5b%22/%3E%3Cpolyline points=%22262.6,428.1 264.8,420.9%22 stroke=%22%2300ff75%22/%3E%3Cpolyline points=%22264.8,420.9 267.2,413.9%22 stroke=%22%2300ff8e%22/%3E%3Cpolyline points=%22267.2,413.9 269.8,406.9%22 stroke=%22%2300ffa7%22/%3E%3Cpolyline points=%22269.8,406.9 272.7,400.0%22 stroke=%22%2300ffc1%22/%3E%3Cpolyline points=%22272.7,400.0 275.7,393.2%22 stroke=%22%2300ffda%22/%3E%3Cpolyline points=%22275.7,393.2 279.0,386.5%22 stroke=%22%2300fff3%22/%3E%3Cpolyline points=%22279.0,386.5 282.4,379.9%22 stroke=%22%2300f1ff%22/%3E%3Cpolyline points=%22282.4,379.9 286.0,373.4%22 stroke=%22%2300d8ff%22/%3E%3Cpolyline points=%22286.0,373.4 289.9,367.0%22 stroke=%22%2300bfff%22/%3E%3Cpolyline points=%22289.9,367.0 293.9,360.7%22 stroke=%22%2300a5ff%22/%3E%3Cpolyline points=%22293.9,360.7 298.1,354.6%22 stroke=%22%23008cff%22/%3E%3Cpolyline points=%22298.1,354.6 302.5,348.5%22 stroke=%22%230073ff%22/%3E%3Cpolyline points=%22302.5,348.5 307.1,342.6%22 stroke=%22%230059ff%22/%3E%3Cpolyline points=%22307.1,342.6 311.9,336.9%22 stroke=%22%230040ff%22/%3E%3Cpolyline points=%22311.9,336.9 316.8,331.3%22 stroke=%22%230026ff%22/%3E%3Cpolyline points=%22316.8,331.3 321.9,325.8%22 stroke=%22%23000dff%22/%3E%3Cpolyline points=%22321.9,325.8 327.1,320.5%22 stroke=%22%230c00ff%22/%3E%3Cpolyline points=%22327.1,320.5 332.6,315.3%22 stroke=%22%232600ff%22/%3E%3Cpolyline points=%22332.6,315.3 338.1,310.3%22 stroke=%22%233f00ff%22/%3E%3Cpolyline points=%22338.1,310.3 343.8,305.5%22 stroke=%22%235900ff%22/%3E%3Cpolyline points=%22343.8,305.5 349.7,300.9%22 stroke=%22%237200ff%22/%3E%3Cpolyline points=%22349.7,300.9 355.7,296.4%22 stroke=%22%238c00ff%22/%3E%3Cpolyline points=%22355.7,296.4 361.8,292.1%22 stroke=%22%23a500ff%22/%3E%3Cpolyline points=%22361.8,292.1 368.1,288.0%22 stroke=%22%23be00ff%22/%3E%3Cpolyline points=%22368.1,288.0 374.5,284.1%22 stroke=%22%23d800ff%22/%3E%3Cpolyline points=%22374.5,284.1 381.0,280.4%22 stroke=%22%23f100ff%22/%3E%3Cpolyline points=%22381.0,280.4 387.6,276.8%22 stroke=%22%23ff00f3%22/%3E%3Cpolyline points=%22387.6,276.8 394.3,273.5%22 stroke=%22%23ff00da%22/%3E%3Cpolyline points=%22394.3,273.5 401.1,270.4%22 stroke=%22%23ff00c0%22/%3E%3Cpolyline points=%22401.1,270.4 408.0,267.4%22 stroke=%22%23ff00a7%22/%3E%3Cpolyline points=%22408.0,267.4 415.0,264.7%22 stroke=%22%23ff008d%22/%3E%3Cpolyline points=%22415.0,264.7 422.1,262.2%22 stroke=%22%23ff0074%22/%3E%3Cpolyline points=%22422.1,262.2 429.3,259.9%22 stroke=%22%23ff005a%22/%3E%3Cpolyline points=%22429.3,259.9 436.5,257.8%22 stroke=%22%23ff0041%22/%3E%3Cpolyline points=%22436.5,257.8 443.8,256.0%22 stroke=%22%23ff0027%22/%3E%3Cpolyline points=%22443.8,256.0 451.1,254.3%22 stroke=%22%23ff000e%22/%3E%3Cpolyline points=%22451.1,254.3 458.5,252.9%22 stroke=%22%23ff0c00%22/%3E%3Cpolyline points=%22458.5,252.9 465.9,251.7%22 stroke=%22%23ff2600%22/%3E%3Cpolyline points=%22465.9,251.7 473.3,250.7%22 stroke=%22%23ff3f00%22/%3E%3Cpolyline points=%22473.3,250.7 480.8,250.0%22 stroke=%22%23ff5900%22/%3E%3Cpolyline points=%22480.8,250.0 488.3,249.4%22 stroke=%22%23ff7200%22/%3E%3Cpolyline points=%22488.3,249.4 495.9,249.1%22 stroke=%22%23ff8c00%22/%3E%3Cpolyline points=%22495.9,249.1 503.4,249.1%22 stroke=%22%23ffa500%22/%3E%3Cpolyline points=%22503.4,249.1 510.9,249.2%22 stroke=%22%23ffbf00%22/%3E%3Cpolyline points=%22510.9,249.2 518.4,249.6%22 stroke=%22%23ffd900%22/%3E%3Cpolyline points=%22518.4,249.6 525.9,250.2%22 stroke=%22%23fff200%22/%3E%3Cpolyline points=%22525.9,250.2 533.4,251.0%22 stroke=%22%23f2ff00%22/%3E%3Cpolyline points=%22533.4,251.0 540.9,252.0%22 stroke=%22%23d8ff00%22/%3E%3Cpolyline points=%22540.9,252.0 548.3,253.3%22 stroke=%22%23bfff00%22/%3E%3Cpolyline points=%22548.3,253.3 555.7,254.8%22 stroke=%22%23a5ff00%22/%3E%3Cpolyline points=%22555.7,254.8 563.1,256.5%22 stroke=%22%238cff00%22/%3E%3Cpolyline points=%22563.1,256.5 570.4,258.5%22 stroke=%22%2372ff00%22/%3E%3Cpolyline points=%22570.4,258.5 577.6,260.6%22 stroke=%22%2358ff00%22/%3E%3Cpolyline points=%22577.6,260.6 584.8,263.0%22 stroke=%22%233fff00%22/%3E%3Cpolyline points=%22584.8,263.0 591.9,265.6%22 stroke=%22%2325ff00%22/%3E%3Cpolyline points=%22591.9,265.6 598.9,268.4%22 stroke=%22%230bff00%22/%3E%3Cpolyline points=%22598.9,268.4 605.8,271.4%22 stroke=%22%2300ff0e%22/%3E%3Cpolyline points=%22605.8,271.4 612.6,274.6%22 stroke=%22%2300ff28%22/%3E%3C/g%3E%3Ccircle cx=%22500%22 cy=%22500%22 r=%226%22 fill=%22%23000%22/%3E%3C/svg%3E") center/cover no-repeat; opacity:1;
  animation:rp-bg-twirl 10s linear infinite reverse;
}

/* Psychedelic 70s tie-dye swirl */
[data-bg-theme="psych"] body { background:#1a0830; }
[data-bg-theme="psych"] body::before {
  left:50%; top:50%; right:auto; bottom:auto; width:320vmax; height:320vmax; transform:translate(-50%,-50%);
  background:
    repeating-radial-gradient(circle at 38% 42%, #ff006e 0 22px, #ff7a00 22px 44px, #ffd400 44px 66px, #00d4a0 66px 88px, #00a3ff 88px 110px, #7a2cff 110px 132px),
    repeating-radial-gradient(circle at 70% 64%, rgba(255,0,110,0.5) 0 26px, rgba(0,212,160,0.5) 26px 52px, rgba(122,44,255,0.5) 52px 78px);
  background-blend-mode:screen; opacity:0.5; filter:blur(1px) saturate(1.2);
  animation:rp-bg-twirl 90s linear infinite;
}

/* Sunflowers — improved blooms on a white background. Own keyframe: the tile is
   440px, so it must drift exactly 440px (reusing the 560px flower keyframe jumped). */
[data-bg-theme="sunflowers"] body { background:#ffffff; }
[data-bg-theme="sunflowers"] body::before { background:url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22440%22 height=%22440%22 viewBox=%220 0 440 440%22%3E%3Cdefs%3E%3Cg id=%22sf%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -10 Q6 -30 0 -52 Q-6 -30 0 -10 Z%22 fill=%22%23e0961f%22/%3E%3C/g%3E%3Cg transform=%22rotate(18.0)%22%3E%3Cpath d=%22M0 -10 Q6 -30 0 -52 Q-6 -30 0 -10 Z%22 fill=%22%23e0961f%22/%3E%3C/g%3E%3Cg transform=%22rotate(36.0)%22%3E%3Cpath d=%22M0 -10 Q6 -30 0 -52 Q-6 -30 0 -10 Z%22 fill=%22%23e0961f%22/%3E%3C/g%3E%3Cg transform=%22rotate(54.0)%22%3E%3Cpath d=%22M0 -10 Q6 -30 0 -52 Q-6 -30 0 -10 Z%22 fill=%22%23e0961f%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 -10 Q6 -30 0 -52 Q-6 -30 0 -10 Z%22 fill=%22%23e0961f%22/%3E%3C/g%3E%3Cg transform=%22rotate(90.0)%22%3E%3Cpath d=%22M0 -10 Q6 -30 0 -52 Q-6 -30 0 -10 Z%22 fill=%22%23e0961f%22/%3E%3C/g%3E%3Cg transform=%22rotate(108.0)%22%3E%3Cpath d=%22M0 -10 Q6 -30 0 -52 Q-6 -30 0 -10 Z%22 fill=%22%23e0961f%22/%3E%3C/g%3E%3Cg transform=%22rotate(126.0)%22%3E%3Cpath d=%22M0 -10 Q6 -30 0 -52 Q-6 -30 0 -10 Z%22 fill=%22%23e0961f%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 -10 Q6 -30 0 -52 Q-6 -30 0 -10 Z%22 fill=%22%23e0961f%22/%3E%3C/g%3E%3Cg transform=%22rotate(162.0)%22%3E%3Cpath d=%22M0 -10 Q6 -30 0 -52 Q-6 -30 0 -10 Z%22 fill=%22%23e0961f%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -10 Q6 -30 0 -52 Q-6 -30 0 -10 Z%22 fill=%22%23e0961f%22/%3E%3C/g%3E%3Cg transform=%22rotate(198.0)%22%3E%3Cpath d=%22M0 -10 Q6 -30 0 -52 Q-6 -30 0 -10 Z%22 fill=%22%23e0961f%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 -10 Q6 -30 0 -52 Q-6 -30 0 -10 Z%22 fill=%22%23e0961f%22/%3E%3C/g%3E%3Cg transform=%22rotate(234.0)%22%3E%3Cpath d=%22M0 -10 Q6 -30 0 -52 Q-6 -30 0 -10 Z%22 fill=%22%23e0961f%22/%3E%3C/g%3E%3Cg transform=%22rotate(252.0)%22%3E%3Cpath d=%22M0 -10 Q6 -30 0 -52 Q-6 -30 0 -10 Z%22 fill=%22%23e0961f%22/%3E%3C/g%3E%3Cg transform=%22rotate(270.0)%22%3E%3Cpath d=%22M0 -10 Q6 -30 0 -52 Q-6 -30 0 -10 Z%22 fill=%22%23e0961f%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 -10 Q6 -30 0 -52 Q-6 -30 0 -10 Z%22 fill=%22%23e0961f%22/%3E%3C/g%3E%3Cg transform=%22rotate(306.0)%22%3E%3Cpath d=%22M0 -10 Q6 -30 0 -52 Q-6 -30 0 -10 Z%22 fill=%22%23e0961f%22/%3E%3C/g%3E%3Cg transform=%22rotate(324.0)%22%3E%3Cpath d=%22M0 -10 Q6 -30 0 -52 Q-6 -30 0 -10 Z%22 fill=%22%23e0961f%22/%3E%3C/g%3E%3Cg transform=%22rotate(342.0)%22%3E%3Cpath d=%22M0 -10 Q6 -30 0 -52 Q-6 -30 0 -10 Z%22 fill=%22%23e0961f%22/%3E%3C/g%3E%3Cg transform=%22rotate(9)%22%3E%3Cg transform=%22rotate(0.0)%22%3E%3Cpath d=%22M0 -8 Q5 -24 0 -44 Q-5 -24 0 -8 Z%22 fill=%22%23ffc83d%22/%3E%3C/g%3E%3Cg transform=%22rotate(18.0)%22%3E%3Cpath d=%22M0 -8 Q5 -24 0 -44 Q-5 -24 0 -8 Z%22 fill=%22%23ffc83d%22/%3E%3C/g%3E%3Cg transform=%22rotate(36.0)%22%3E%3Cpath d=%22M0 -8 Q5 -24 0 -44 Q-5 -24 0 -8 Z%22 fill=%22%23ffc83d%22/%3E%3C/g%3E%3Cg transform=%22rotate(54.0)%22%3E%3Cpath d=%22M0 -8 Q5 -24 0 -44 Q-5 -24 0 -8 Z%22 fill=%22%23ffc83d%22/%3E%3C/g%3E%3Cg transform=%22rotate(72.0)%22%3E%3Cpath d=%22M0 -8 Q5 -24 0 -44 Q-5 -24 0 -8 Z%22 fill=%22%23ffc83d%22/%3E%3C/g%3E%3Cg transform=%22rotate(90.0)%22%3E%3Cpath d=%22M0 -8 Q5 -24 0 -44 Q-5 -24 0 -8 Z%22 fill=%22%23ffc83d%22/%3E%3C/g%3E%3Cg transform=%22rotate(108.0)%22%3E%3Cpath d=%22M0 -8 Q5 -24 0 -44 Q-5 -24 0 -8 Z%22 fill=%22%23ffc83d%22/%3E%3C/g%3E%3Cg transform=%22rotate(126.0)%22%3E%3Cpath d=%22M0 -8 Q5 -24 0 -44 Q-5 -24 0 -8 Z%22 fill=%22%23ffc83d%22/%3E%3C/g%3E%3Cg transform=%22rotate(144.0)%22%3E%3Cpath d=%22M0 -8 Q5 -24 0 -44 Q-5 -24 0 -8 Z%22 fill=%22%23ffc83d%22/%3E%3C/g%3E%3Cg transform=%22rotate(162.0)%22%3E%3Cpath d=%22M0 -8 Q5 -24 0 -44 Q-5 -24 0 -8 Z%22 fill=%22%23ffc83d%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Cpath d=%22M0 -8 Q5 -24 0 -44 Q-5 -24 0 -8 Z%22 fill=%22%23ffc83d%22/%3E%3C/g%3E%3Cg transform=%22rotate(198.0)%22%3E%3Cpath d=%22M0 -8 Q5 -24 0 -44 Q-5 -24 0 -8 Z%22 fill=%22%23ffc83d%22/%3E%3C/g%3E%3Cg transform=%22rotate(216.0)%22%3E%3Cpath d=%22M0 -8 Q5 -24 0 -44 Q-5 -24 0 -8 Z%22 fill=%22%23ffc83d%22/%3E%3C/g%3E%3Cg transform=%22rotate(234.0)%22%3E%3Cpath d=%22M0 -8 Q5 -24 0 -44 Q-5 -24 0 -8 Z%22 fill=%22%23ffc83d%22/%3E%3C/g%3E%3Cg transform=%22rotate(252.0)%22%3E%3Cpath d=%22M0 -8 Q5 -24 0 -44 Q-5 -24 0 -8 Z%22 fill=%22%23ffc83d%22/%3E%3C/g%3E%3Cg transform=%22rotate(270.0)%22%3E%3Cpath d=%22M0 -8 Q5 -24 0 -44 Q-5 -24 0 -8 Z%22 fill=%22%23ffc83d%22/%3E%3C/g%3E%3Cg transform=%22rotate(288.0)%22%3E%3Cpath d=%22M0 -8 Q5 -24 0 -44 Q-5 -24 0 -8 Z%22 fill=%22%23ffc83d%22/%3E%3C/g%3E%3Cg transform=%22rotate(306.0)%22%3E%3Cpath d=%22M0 -8 Q5 -24 0 -44 Q-5 -24 0 -8 Z%22 fill=%22%23ffc83d%22/%3E%3C/g%3E%3Cg transform=%22rotate(324.0)%22%3E%3Cpath d=%22M0 -8 Q5 -24 0 -44 Q-5 -24 0 -8 Z%22 fill=%22%23ffc83d%22/%3E%3C/g%3E%3Cg transform=%22rotate(342.0)%22%3E%3Cpath d=%22M0 -8 Q5 -24 0 -44 Q-5 -24 0 -8 Z%22 fill=%22%23ffc83d%22/%3E%3C/g%3E%3C/g%3E%3Ccircle r=%2220%22 fill=%22%236b4321%22/%3E%3Ccircle r=%2220%22 fill=%22%23000%22 opacity=%220.18%22/%3E%3Ccircle r=%2213%22 fill=%22%237d5128%22/%3E%3Cg transform=%22rotate(0.0)%22%3E%3Ccircle cx=%220%22 cy=%22-12%22 r=%221.6%22 fill=%22%233a2410%22/%3E%3C/g%3E%3Cg transform=%22rotate(30.0)%22%3E%3Ccircle cx=%220%22 cy=%22-12%22 r=%221.6%22 fill=%22%233a2410%22/%3E%3C/g%3E%3Cg transform=%22rotate(60.0)%22%3E%3Ccircle cx=%220%22 cy=%22-12%22 r=%221.6%22 fill=%22%233a2410%22/%3E%3C/g%3E%3Cg transform=%22rotate(90.0)%22%3E%3Ccircle cx=%220%22 cy=%22-12%22 r=%221.6%22 fill=%22%233a2410%22/%3E%3C/g%3E%3Cg transform=%22rotate(120.0)%22%3E%3Ccircle cx=%220%22 cy=%22-12%22 r=%221.6%22 fill=%22%233a2410%22/%3E%3C/g%3E%3Cg transform=%22rotate(150.0)%22%3E%3Ccircle cx=%220%22 cy=%22-12%22 r=%221.6%22 fill=%22%233a2410%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Ccircle cx=%220%22 cy=%22-12%22 r=%221.6%22 fill=%22%233a2410%22/%3E%3C/g%3E%3Cg transform=%22rotate(210.0)%22%3E%3Ccircle cx=%220%22 cy=%22-12%22 r=%221.6%22 fill=%22%233a2410%22/%3E%3C/g%3E%3Cg transform=%22rotate(240.0)%22%3E%3Ccircle cx=%220%22 cy=%22-12%22 r=%221.6%22 fill=%22%233a2410%22/%3E%3C/g%3E%3Cg transform=%22rotate(270.0)%22%3E%3Ccircle cx=%220%22 cy=%22-12%22 r=%221.6%22 fill=%22%233a2410%22/%3E%3C/g%3E%3Cg transform=%22rotate(300.0)%22%3E%3Ccircle cx=%220%22 cy=%22-12%22 r=%221.6%22 fill=%22%233a2410%22/%3E%3C/g%3E%3Cg transform=%22rotate(330.0)%22%3E%3Ccircle cx=%220%22 cy=%22-12%22 r=%221.6%22 fill=%22%233a2410%22/%3E%3C/g%3E%3Cg transform=%22rotate(0.0)%22%3E%3Ccircle cx=%220%22 cy=%22-6%22 r=%221.5%22 fill=%22%233a2410%22/%3E%3C/g%3E%3Cg transform=%22rotate(45.0)%22%3E%3Ccircle cx=%220%22 cy=%22-6%22 r=%221.5%22 fill=%22%233a2410%22/%3E%3C/g%3E%3Cg transform=%22rotate(90.0)%22%3E%3Ccircle cx=%220%22 cy=%22-6%22 r=%221.5%22 fill=%22%233a2410%22/%3E%3C/g%3E%3Cg transform=%22rotate(135.0)%22%3E%3Ccircle cx=%220%22 cy=%22-6%22 r=%221.5%22 fill=%22%233a2410%22/%3E%3C/g%3E%3Cg transform=%22rotate(180.0)%22%3E%3Ccircle cx=%220%22 cy=%22-6%22 r=%221.5%22 fill=%22%233a2410%22/%3E%3C/g%3E%3Cg transform=%22rotate(225.0)%22%3E%3Ccircle cx=%220%22 cy=%22-6%22 r=%221.5%22 fill=%22%233a2410%22/%3E%3C/g%3E%3Cg transform=%22rotate(270.0)%22%3E%3Ccircle cx=%220%22 cy=%22-6%22 r=%221.5%22 fill=%22%233a2410%22/%3E%3C/g%3E%3Cg transform=%22rotate(315.0)%22%3E%3Ccircle cx=%220%22 cy=%22-6%22 r=%221.5%22 fill=%22%233a2410%22/%3E%3C/g%3E%3C/g%3E%3C/defs%3E%3Cuse href=%22%23sf%22 transform=%22translate(225.1 233.2) scale(1.21)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(259.7 -65.7) scale(1.17)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(259.7 374.3) scale(1.17)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(35.2 233.4) scale(1.21)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(475.2 233.4) scale(1.21)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(70.8 78.5) scale(1.02)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(70.8 518.5) scale(1.02)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(510.8 78.5) scale(1.02)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(510.8 518.5) scale(1.02)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(338.3 139.7) scale(1.22)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(-9.8 130.6) scale(0.94)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(430.2 130.6) scale(0.94)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(-66.1 -79.1) scale(1.08)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(-66.1 360.9) scale(1.08)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(373.9 -79.1) scale(1.08)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(373.9 360.9) scale(1.08)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(283.4 19.8) scale(1.12)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(283.4 459.8) scale(1.12)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(205.1 155.3) scale(0.88)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(132.2 244.1) scale(1.06)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(-64.7 277.2) scale(1.10)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(375.3 277.2) scale(1.10)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(286.8 286.4) scale(0.78)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(284.6 -12.3) scale(0.60)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(284.6 427.7) scale(0.60)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(292.2 216.6) scale(0.68)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(99.1 316.0) scale(0.59)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(539.1 316.0) scale(0.59)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(79.7 -80.7) scale(0.76)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(79.7 359.3) scale(0.76)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(519.7 -80.7) scale(0.76)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(519.7 359.3) scale(0.76)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(216.1 71.8) scale(0.73)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(216.1 511.8) scale(0.73)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(28.0 37.3) scale(0.78)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(28.0 477.3) scale(0.78)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(468.0 37.3) scale(0.78)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(468.0 477.3) scale(0.78)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(-35.8 -7.8) scale(0.51)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(-35.8 432.2) scale(0.51)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(404.2 -7.8) scale(0.51)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(404.2 432.2) scale(0.51)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(183.6 319.5) scale(0.62)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(-82.5 43.9) scale(0.52)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(-82.5 483.9) scale(0.52)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(357.5 43.9) scale(0.52)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(357.5 483.9) scale(0.52)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(150.8 42.7) scale(0.75)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(150.8 482.7) scale(0.75)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(332.8 310.9) scale(0.61)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(-7.6 61.1) scale(0.75)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(-7.6 501.1) scale(0.75)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(432.4 61.1) scale(0.75)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(432.4 501.1) scale(0.75)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(207.8 -32.1) scale(0.78)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(207.8 407.9) scale(0.78)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(171.1 203.6) scale(0.62)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(38.9 -27.7) scale(0.65)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(38.9 412.3) scale(0.65)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(478.9 -27.7) scale(0.65)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(478.9 412.3) scale(0.65)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(34.0 -72.1) scale(0.58)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(34.0 367.9) scale(0.58)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(474.0 -72.1) scale(0.58)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(474.0 367.9) scale(0.58)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(61.7 163.7) scale(0.54)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(501.7 163.7) scale(0.54)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(239.2 113.8) scale(0.64)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(326.2 70.3) scale(0.56)%22/%3E%3Cuse href=%22%23sf%22 transform=%22translate(326.2 510.3) scale(0.56)%22/%3E%3C/svg%3E") repeat; background-size:440px 440px; opacity:1; animation:rp-bg-sun 80s linear infinite; }
@keyframes rp-bg-sun { from { background-position:0 0; } to { background-position:440px 440px; } }
/* GEN-THEMES:END */
