Files
claude cdd4503164 research: Arc 1 — trend regime vs H1 breakout, campaign path, results page
Two std-vocabulary blueprints (bo_h1 donchian-style H1 breakout; bo_h1_trend
adds a post-latch EMA 12/48 regime gate). First real use of the campaign
path: process + campaign documents registered and run as executable intent
(screen 490d14df.., curves da886931.. with persisted taps).

Finding: the gate reshapes the R-distribution per instrument (GER40 flips
sign, EURUSD deteriorates); no deployable edge (best P(E[R]<=0)=0.08,
generalization floor negative, sign agreement 0/4, all gross of costs).

site/: build.py bakes a fully static index.html from the runs/ registry
(aura.css embedded verbatim, inline SVG, zero external requests);
adversarially verified — all baked figures re-derived from the registry.
2026-07-13 16:23:51 +02:00

214 lines
357 KiB
HTML
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1"><title>aura-quadriga — Arc 1</title><style>
/* aura.css — the single source of aura's frontend style: palette tokens +
* shared components. Embedded verbatim into every runtime page (render.rs
* SHELL_HEAD) and inlined into ad-hoc demo/report pages. New components
* extend this file; never fork the palette. Design record: issue #209. */
/* ---------------------------------------------------------------------------
* :root tokens
* Catppuccin-Mocha-derived palette; the page background (--bg) is
* deliberately darker than the Mocha base. --border3 (#585b70, Mocha
* surface2) completes the border ladder used by the shell tooltip.
* ------------------------------------------------------------------------- */
:root {
--bg: #16161a; --bg2: #1e1e2e; --bg3: #24243a;
--border: #313244; --border2: #45475a; --border3: #585b70;
--fg: #cdd6f4; --dim: #7f849c; --dim2: #6c7086;
--accent: #f5e0dc; --blue: #89b4fa; --green: #a6e3a1;
--red: #f38ba8; --orange: #fab387; --yellow: #f9e2af;
--mauve: #cba6f7; --teal: #94e2d5;
--mono: ui-monospace, 'JetBrains Mono', 'Cascadia Code', Menlo, monospace;
--sans: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
/* ---------------------------------------------------------------------------
* shell
* Rules for the runtime viewer pages (graph / chart). Values are identical
* to the pre-token literals; only colors with a token were migrated to
* var(...). The font stays the literal `ui-monospace, monospace` (the
* --mono token carries a longer fallback chain and would change the
* computed value).
* ------------------------------------------------------------------------- */
html, body { margin: 0; height: 100%; background: var(--bg); color: var(--fg);
font-family: ui-monospace, monospace; }
header { padding: 8px 14px; border-bottom: 1px solid var(--border); font-size: 13px;
display: flex; gap: 16px; align-items: baseline; flex-wrap: nowrap;
white-space: nowrap; overflow: hidden; }
header b { color: var(--accent); } .sub { color: var(--dim2); }
#crumb a { color: var(--blue); cursor: pointer; text-decoration: none; }
#crumb a:hover { text-decoration: underline; }
#crumb .sep { color: var(--dim2); }
#status { color: var(--dim2); margin-left: auto; }
#stage { width: 100%; height: calc(100% - 44px); }
#stage svg { width: 100%; height: 100%; cursor: default; }
#stage svg text { cursor: inherit; user-select: none; -webkit-user-select: none; }
#stage svg a { cursor: inherit; }
#err { padding: 14px; color: var(--red); white-space: pre-wrap; }
#tip { position: fixed; display: none; pointer-events: none; z-index: 10;
background: var(--bg2); border: 1px solid var(--border3); border-radius: 6px; padding: 6px 9px;
font-family: ui-monospace, monospace; font-size: 12px; color: var(--fg);
max-width: 420px; box-shadow: 0 6px 18px rgba(0,0,0,.55); line-height: 1.5; }
#tip b { color: var(--accent); } #tip code { color: var(--blue); } #tip .dim { color: var(--dim); }
/* ---------------------------------------------------------------------------
* components (opt-in, class-scoped)
* Shared component library for ad-hoc document pages (demos, reports).
* Every rule is scoped to a class, so the runtime viewer pages — which use
* none of these classes — render pixel-identically with this block present.
* Element-level typography is scoped under .aura-doc: only pages that opt
* in via <body class="aura-doc"> get the sans document register.
* ------------------------------------------------------------------------- */
/* document register — opt-in via body.aura-doc */
body.aura-doc { font-family: var(--sans); line-height: 1.6; }
.aura-doc, .aura-doc * { box-sizing: border-box; }
.aura-doc a { color: var(--blue); text-decoration: none; }
.aura-doc a:hover { text-decoration: underline; }
.aura-doc code { font-family: var(--mono); font-size: 0.92em; background: var(--bg2);
border: 1px solid var(--border); border-radius: 4px; padding: 1px 5px; }
/* centered content column */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
/* status pill */
.badge { display: inline-block; font-family: var(--mono); font-size: 12.5px;
padding: 3px 10px; border-radius: 20px; border: 1px solid; margin-right: 8px; }
.badge.green { color: var(--green); border-color: var(--green); background: rgba(166,227,161,.08); }
.badge.dim { color: var(--dim); border-color: var(--border2); }
/* headline-number tiles */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 12px; margin-top: 28px; }
.stat { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px;
padding: 14px 16px; }
.stat .n { font-family: var(--mono); font-size: 24px; color: var(--accent); }
.stat .l { color: var(--dim); font-size: 12.5px; margin-top: 2px; }
/* card grid */
.cards { display: grid; gap: 16px; margin: 20px 0; }
.cards.c3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.cards.c2 { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
.card { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px;
padding: 18px 20px; }
.card h3 { margin: 0 0 4px; font-size: 16px; }
.card h3 .tag { font-family: var(--mono); font-size: 11px; color: var(--dim);
font-weight: 400; margin-left: 6px; }
.card .cid { font-family: var(--mono); font-size: 11.5px; color: var(--teal);
word-break: break-all; margin: 4px 0 10px; }
.card .cid b { color: var(--accent); }
.card p { color: var(--dim); font-size: 14px; margin: 6px 0; }
.card pre { background: #131320; border: 1px solid var(--border); border-radius: 8px;
padding: 12px; overflow-x: auto; font-family: var(--mono); font-size: 12px;
line-height: 1.5; margin: 10px 0 0; }
/* terminal transcript */
.term { background: #131320; border: 1px solid var(--border); border-radius: 10px;
overflow: hidden; margin: 16px 0; }
.term .bar { display: flex; gap: 8px; align-items: center; padding: 7px 12px;
background: var(--bg2); border-bottom: 1px solid var(--border);
font-family: var(--mono); font-size: 12px; color: var(--dim); }
.term .bar .dots { display: inline-flex; gap: 5px; margin-right: 4px; }
.term .bar .dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--border2); }
.term pre { margin: 0; padding: 14px 16px; overflow-x: auto; font-family: var(--mono);
font-size: 13px; line-height: 1.55; }
.term pre .p { color: var(--green); }
.term pre .cmd { color: var(--fg); font-weight: 600; }
.term pre .out { color: #b6bdd8; }
.term pre .err { color: var(--red); }
.term pre .hi { color: var(--yellow); }
.term pre .ok { color: var(--green); }
.term pre .dim { color: var(--dim2); }
/* attention block */
.callout { border-left: 3px solid var(--yellow); background: rgba(249,226,175,.06);
border-radius: 0 8px 8px 0; padding: 12px 18px; margin: 20px 0; color: var(--fg);
font-size: 14.5px; }
.callout.green { border-color: var(--green); background: rgba(166,227,161,.06); }
.callout b { color: var(--yellow); }
.callout.green b { color: var(--green); }
/* results table */
table.res { border-collapse: collapse; width: 100%; margin: 16px 0; font-size: 14px; }
table.res th, table.res td { border: 1px solid var(--border); padding: 8px 12px; text-align: left; }
table.res th { background: var(--bg2); color: var(--dim); font-weight: 600; font-size: 12.5px; }
table.res td { font-family: var(--mono); font-size: 13px; }
table.res td.neg { color: var(--red); }
table.res td.pos { color: var(--green); }
table.res td:first-child { color: var(--dim); font-family: var(--sans); font-size: 13.5px; }
/* pipeline stages */
.pipe { display: flex; flex-wrap: wrap; gap: 10px; align-items: stretch; margin: 24px 0; }
.pipe .stage { flex: 1 1 170px; background: var(--bg2); border: 1px solid var(--border2);
border-radius: 10px; padding: 12px 14px; position: relative; }
.pipe .stage.ann { border-style: dashed; }
.pipe .stage b { font-family: var(--mono); font-size: 14px; color: var(--accent); display: block; }
.pipe .stage i { font-style: normal; font-size: 11px; color: var(--mauve); font-family: var(--mono); }
.pipe .stage p { margin: 6px 0 0; font-size: 12.5px; color: var(--dim); line-height: 1.45; }
.pipe .arr { align-self: center; color: var(--dim2); font-family: var(--mono); font-size: 18px; }
</style><style>
/* page-specific rules — consume aura.css tokens only; series colors are the
* established palette slots #89b4fa (A) and #cba6f7 (B). */
.wrap { padding-top: 44px; padding-bottom: 28px; }
.hero h1 { margin: 0 0 4px; font-size: 30px; letter-spacing: -0.5px; }
.subtitle { margin: 0 0 18px; color: var(--dim); font-size: 16.5px; }
.badges { margin: 14px 0 4px; line-height: 2.2; }
.badge.warn { color: var(--yellow); border-color: var(--yellow);
background: rgba(249,226,175,.08); }
.sec { margin-top: 54px; }
.sec .kick { font-family: var(--mono); font-size: 11.5px; color: var(--dim2);
letter-spacing: 2px; }
.sec h2 { margin: 2px 0 8px; font-size: 21px; }
.sec .sub { margin: 0; color: var(--dim); font-size: 14px; max-width: 74ch; }
.fnote { color: var(--dim); font-size: 13px; max-width: 74ch; }
.fnote.foot { margin-top: 40px; border-top: 1px solid var(--border);
padding-top: 14px; font-family: var(--mono); font-size: 12px; max-width: none; }
.mini { color: var(--dim2); font-size: 11.5px; font-family: var(--mono);
margin: 4px 0 0; }
.chartbox { margin: 14px 0; }
.legend { display: flex; gap: 22px; margin: 16px 0 4px; font-family: var(--mono);
font-size: 12.5px; color: var(--fg); }
.legend .lk { color: var(--dim); }
.legend .sw { display: inline-block; width: 10px; height: 10px; border-radius: 3px;
margin-right: 7px; vertical-align: -1px; }
.legend .swA { background: #89b4fa; }
.legend .swB { background: #cba6f7; }
/* chart internals */
.chart { display: block; }
.chart text { font-family: var(--mono); }
.chart .tick { fill: var(--dim); font-size: 10.5px; }
.chart .grid { stroke: var(--border); stroke-width: 1; }
.chart .zero { stroke: var(--dim2); stroke-width: 1; }
.chart .zero-d { stroke: var(--dim2); stroke-width: 1; stroke-dasharray: 4 4; }
.chart .base { stroke: var(--border2); stroke-width: 1; }
.chart .inst { fill: var(--accent); font-size: 13px; }
.chart .vlab { fill: var(--dim); font-size: 11px; }
.chart .ro { font-size: 11.5px; }
.chart .ro-p { fill: var(--fg); }
.chart .ro-n { fill: var(--dim); }
.chart .endlab { fill: var(--fg); font-size: 11px; }
.chart .med { stroke: var(--accent); stroke-width: 2; }
.chart .sA { stroke: #89b4fa; } .chart .sB { stroke: #cba6f7; }
.chart .fA { fill: #89b4fa; } .chart .fB { fill: #cba6f7; }
.chart .wh { stroke-width: 1.5; fill: none; }
.chart .box { fill: var(--bg3); stroke-width: 1; }
.chart .mean { stroke: var(--bg); stroke-width: 2; }
.chart .ln { fill: none; stroke-width: 2; stroke-linejoin: round;
stroke-linecap: round; }
.chart .mid { fill: none; stroke-width: 1.6; stroke-linejoin: round; }
.chart .band { stroke: none; fill-opacity: 0.16; }
.chart .pb { fill: var(--green); } .chart .nb { fill: var(--red); }
.chart [data-tip] { cursor: default; }
.card .chart { margin-top: 6px; }
@media (max-width: 640px) { .legend { flex-wrap: wrap; gap: 10px; } }
</style></head><body class="aura-doc"><div id="tip"></div><div class="wrap"><div class="hero"><h1>aura-quadriga — Arc&#8201;1</h1><p class="subtitle">Does an EMA trend regime reshape an H1 breakout&#8217;s R-distribution?</p><div class="badges"><span class="badge dim">engine 1ebb94c</span><span class="badge dim">project 221c408</span><span class="badge dim">2018-01 &#8594; 2026-06 · m1</span><span class="badge dim">GER40 · US500 · EURUSD · XAUUSD</span><span class="badge warn">gross R — no cost model</span><span class="badge dim">seed 0</span></div><div class="stats"><div class="stat"><div class="n">8</div><div class="l">cells — 2 strategies &#215; 4 instruments</div></div><div class="stat"><div class="n">100</div><div class="l">walk-forward rolls per cell (90&#8201;d IS / 30&#8201;d OOS)</div></div><div class="stat"><div class="n">17640 / 20163</div><div class="l">pooled OOS trades — bo_h1 / bo_h1_trend</div></div><div class="stat"><div class="n">0.080</div><div class="l">best-cell P(E[R]&#8804;0) — US500, bo_h1_trend</div></div><div class="stat"><div class="n">0&#8201;/&#8201;4</div><div class="l">cross-instrument sign agreement, either variant</div></div><div class="stat"><div class="n">1.06</div><div class="l">worst generalization floor (E[R], bo_h1_trend)</div></div></div><div class="callout"><b>The gate reshapes the R-distribution — per instrument, not uniformly.</b> On the pooled walk-forward OOS bootstrap, GER40 flips sign: mean E[R] 0.151 (P(E[R]&#8804;0)&#8201;=&#8201;0.895) without the gate, +0.139 (0.177) with it. US500 improves, EURUSD deteriorates sharply, XAUUSD stays roughly flat. That per-instrument conditionality — B reshapes A, instrument-dependently — is the finding of this arc. <b>No variant survives as a deployable edge:</b> the best cell still shows P(E[R]&#8804;0)&#8201;=&#8201;0.080 across eight unadjusted comparisons, the cross-instrument worst case is deeply negative for both variants (0.75 plain, 1.06 gated), sign agreement is 0/4 — and every figure on this page is gross of costs.</div></div><section class="sec"><div class="kick">02</div><h2>The experiment</h2><p class="sub">Two blueprint variants over an identical data / window / risk / seed matrix; the comparison is per cell. Risk regime Vol{length:&#8201;3, k:&#8201;2.0} — the protective stop defines 1&#8201;R. No cost block: net&#8201;==&#8201;gross everywhere.</p></section><div class="cards c2"><div class="card"><h3>bo_h1 <span class="tag">variant A — base signal</span></h3><div class="cid">82515a31bfe58ae087b4bd09eb4adb032cc2cabddd71a2761c543066bd237d3d</div><p>H1-resampled donchian-style breakout: RollingMax/Min(24) over Delay(1) high/low, close vs channel (Gt), an SR-latch pair holds the breakout state; bias = latch_long &#8722; latch_short &#8712; {&#8722;1, 0, +1}.</p><pre>h1.period_minutes = 60 prev_high/low.lag = 1
channel_hi.length = 24 channel_lo.length = 24
risk = Vol { length: 3, k: 2.0 } (shared)</pre></div><div class="card"><h3>bo_h1_trend <span class="tag">variant B — gated</span></h3><div class="cid">82d61d13bf21984068d6fd3ae9de9766fe99edb5163ea50ffb3485bfae9f56bc</div><p>The same breakout, gated post-latch by an EMA(12) vs EMA(48) trend-regime latch (Mul per side): a held breakout is suppressed the moment the regime flips against it. Same channel params, same risk, same seed.</p><pre>ema_fast.length = 12 ema_slow.length = 48
channel_hi.length = 24 channel_lo.length = 24
risk = Vol { length: 3, k: 2.0 } (shared)</pre></div></div><div class="pipe"><div class="stage"><b>std::sweep</b> <i>9 trials</i><p>3&#215;3 channel grid (hi/lo &#8712; {24, 48, 96}), argmax on sqn_normalized, deflated (1&#8201;000 resamples, block 5).</p></div><span class="arr">&#8594;</span><div class="stage"><b>std::walk_forward</b> <i>100 rolls</i><p>Rolling 90-day IS refit over the same axes, 30-day OOS, 30-day step; argmax on sqn_normalized per roll.</p></div><span class="arr">&#8594;</span><div class="stage"><b>std::monte_carlo</b> <i>1000 &#215; block 5</i><p>Block bootstrap of the R-series pooled over all walk-forward OOS trades: E[R] quantiles and P(E[R]&#8804;0) per cell.</p></div><span class="arr">&#8594;</span><div class="stage"><b>std::generalize</b> <i>expectancy_r</i><p>Cross-instrument floor: apply each instrument&#8217;s winner to the other three; worst case and sign agreement.</p></div></div><p class="fnote">Screen campaign <code>490d14df&#8230;</code> runs the full pipeline; curves campaign <code>da886931&#8230;</code> re-runs both variants at default params (channel 24/24, EMA 12/48), selection-free, persisting equity / exposure / r_equity taps for sections 4 and 6.</p><section class="sec"><div class="kick">03</div><h2>R-distribution — pooled-OOS bootstrap</h2><p class="sub">1000-resample block-5 bootstrap of per-trade R, pooled over each cell&#8217;s 100 walk-forward OOS windows (screen campaign). Whisker p5&#8211;p95, box p25&#8211;p75, tick median, dot mean. The dashed line is E[R]&#8201;=&#8201;0 — mass to its right is what an edge would look like. Gross R.</p></section><div class="legend"><span><i class="sw swA"></i>bo_h1 <span class="lk">(A — breakout)</span></span><span><i class="sw swB"></i>bo_h1_trend <span class="lk">(B — gated)</span></span></div><div class="chartbox"><svg class="chart" viewBox="0 0 1080 384" width="100%" preserveAspectRatio="xMidYMid meet" role="img"><line class="grid" x1="348.4" y1="16" x2="348.4" y2="332"/><text class="tick" x="348.4" y="350" text-anchor="middle">0.2</text><line class="grid" x1="478.5" y1="16" x2="478.5" y2="332"/><text class="tick" x="478.5" y="350" text-anchor="middle">0</text><line class="grid" x1="608.7" y1="16" x2="608.7" y2="332"/><text class="tick" x="608.7" y="350" text-anchor="middle">+0.2</text><line class="grid" x1="738.8" y1="16" x2="738.8" y2="332"/><text class="tick" x="738.8" y="350" text-anchor="middle">+0.4</text><line class="zero-d" x1="478.5" y1="12" x2="478.5" y2="336"/><text class="tick" x="816" y="370" text-anchor="end">pooled walk-forward OOS E[R] per trade (gross)</text><text class="inst" x="12" y="52">GER40</text><circle class="fA" cx="102" cy="32" r="4"/><text class="vlab" x="112" y="36">bo_h1</text><line class="sA wh" x1="260.3" y1="32" x2="508.2" y2="32"/><line class="sA wh" x1="260.3" y1="28" x2="260.3" y2="36"/><line class="sA wh" x1="508.2" y1="28" x2="508.2" y2="36"/><rect class="sA box" x="326.3" y="25" width="105.0" height="14" rx="2"/><line class="med" x1="375.4" y1="23" x2="375.4" y2="41"/><circle class="fA mean" cx="380.0" cy="32" r="4.5"/><text class="ro" x="1068" y="36" text-anchor="end"><tspan class="ro-p">P(&#8804;0)0.895</tspan><tspan class="ro-n">&#160;&#183;&#160;n4576</tspan></text><rect x="96" y="17" width="976" height="30" fill="transparent" data-tip="GER40 / bo_h1 — mean 0.1514 · p5 0.3355 · p25 0.2340 · p50 0.1586 · p75 0.0726 · p95 +0.0457 · P(E[R]&#8804;0) 0.895 · 4576 trades"/><circle class="fB" cx="102" cy="64" r="4"/><text class="vlab" x="112" y="68">bo_h1_trend</text><line class="sB wh" x1="416.9" y1="64" x2="722.8" y2="64"/><line class="sB wh" x1="416.9" y1="60" x2="416.9" y2="68"/><line class="sB wh" x1="722.8" y1="60" x2="722.8" y2="68"/><rect class="sB box" x="507.3" y="57" width="122.8" height="14" rx="2"/><line class="med" x1="564.8" y1="55" x2="564.8" y2="73"/><circle class="fB mean" cx="569.2" cy="64" r="4.5"/><text class="ro" x="1068" y="68" text-anchor="end"><tspan class="ro-p">P(&#8804;0)0.177</tspan><tspan class="ro-n">&#160;&#183;&#160;n4893</tspan></text><rect x="96" y="49" width="976" height="30" fill="transparent" data-tip="GER40 / bo_h1_trend — mean +0.1394 · p5 0.0947 · p25 +0.0442 · p50 +0.1326 · p75 +0.2330 · p95 +0.3754 · P(E[R]&#8804;0) 0.177 · 4893 trades"/><text class="inst" x="12" y="136">US500</text><circle class="fA" cx="102" cy="116" r="4"/><text class="vlab" x="112" y="120">bo_h1</text><line class="sA wh" x1="441.1" y1="116" x2="790.4" y2="116"/><line class="sA wh" x1="441.1" y1="112" x2="441.1" y2="120"/><line class="sA wh" x1="790.4" y1="112" x2="790.4" y2="120"/><rect class="sA box" x="531.0" y="109" width="140.2" height="14" rx="2"/><line class="med" x1="596.9" y1="107" x2="596.9" y2="125"/><circle class="fA mean" cx="604.1" cy="116" r="4.5"/><text class="ro" x="1068" y="120" text-anchor="end"><tspan class="ro-p">P(&#8804;0)0.104</tspan><tspan class="ro-n">&#160;&#183;&#160;n4362</tspan></text><rect x="96" y="101" width="976" height="30" fill="transparent" data-tip="US500 / bo_h1 — mean +0.1930 · p5 0.0575 · p25 +0.0807 · p50 +0.1819 · p75 +0.2961 · p95 +0.4793 · P(E[R]&#8804;0) 0.104 · 4362 trades"/><circle class="fB" cx="102" cy="148" r="4"/><text class="vlab" x="112" y="152">bo_h1_trend</text><line class="sB wh" x1="458.7" y1="148" x2="775.0" y2="148"/><line class="sB wh" x1="458.7" y1="144" x2="458.7" y2="152"/><line class="sB wh" x1="775.0" y1="144" x2="775.0" y2="152"/><rect class="sB box" x="543.4" y="141" width="135.2" height="14" rx="2"/><line class="med" x1="606.7" y1="139" x2="606.7" y2="157"/><circle class="fB mean" cx="611.9" cy="148" r="4.5"/><text class="ro" x="1068" y="152" text-anchor="end"><tspan class="ro-p">P(&#8804;0)0.080</tspan><tspan class="ro-n">&#160;&#183;&#160;n4947</tspan></text><rect x="96" y="133" width="976" height="30" fill="transparent" data-tip="US500 / bo_h1_trend — mean +0.2051 · p5 0.0305 · p25 +0.0996 · p50 +0.1970 · p75 +0.3076 · p95 +0.4556 · P(E[R]&#8804;0) 0.080 · 4947 trades"/><text class="inst" x="12" y="220">EURUSD</text><circle class="fA" cx="102" cy="200" r="4"/><text class="vlab" x="112" y="204">bo_h1</text><line class="sA wh" x1="249.6" y1="200" x2="512.3" y2="200"/><line class="sA wh" x1="249.6" y1="196" x2="249.6" y2="204"/><line class="sA wh" x1="512.3" y1="196" x2="512.3" y2="204"/><rect class="sA box" x="324.1" y="193" width="114.7" height="14" rx="2"/><line class="med" x1="378.5" y1="191" x2="378.5" y2="209"/><circle class="fA mean" cx="381.1" cy="200" r="4.5"/><text class="ro" x="1068" y="204" text-anchor="end"><tspan class="ro-p">P(&#8804;0)0.884</tspan><tspan class="ro-n">&#160;&#183;&#160;n4700</tspan></text><rect x="96" y="185" width="976" height="30" fill="transparent" data-tip="EURUSD / bo_h1 — mean 0.1498 · p5 0.3519 · p25 0.2374 · p50 0.1537 · p75 0.0611 · p95 +0.0519 · P(E[R]&#8804;0) 0.884 · 4700 trades"/><circle class="fB" cx="102" cy="232" r="4"/><text class="vlab" x="112" y="236">bo_h1_trend</text><line class="sB wh" x1="252.5" y1="232" x2="448.8" y2="232"/><line class="sB wh" x1="252.5" y1="228" x2="252.5" y2="236"/><line class="sB wh" x1="448.8" y1="228" x2="448.8" y2="236"/><rect class="sB box" x="305.4" y="225" width="80.4" height="14" rx="2"/><line class="med" x1="345.2" y1="223" x2="345.2" y2="241"/><circle class="fB mean" cx="345.8" cy="232" r="4.5"/><text class="ro" x="1068" y="236" text-anchor="end"><tspan class="ro-p">P(&#8804;0)0.988</tspan><tspan class="ro-n">&#160;&#183;&#160;n5442</tspan></text><rect x="96" y="217" width="976" height="30" fill="transparent" data-tip="EURUSD / bo_h1_trend — mean 0.2040 · p5 0.3474 · p25 0.2662 · p50 0.2050 · p75 0.1426 · p95 0.0457 · P(E[R]&#8804;0) 0.988 · 5442 trades"/><text class="inst" x="12" y="304">XAUUSD</text><circle class="fA" cx="102" cy="284" r="4"/><text class="vlab" x="112" y="288">bo_h1</text><line class="sA wh" x1="431.1" y1="284" x2="768.5" y2="284"/><line class="sA wh" x1="431.1" y1="280" x2="431.1" y2="288"/><line class="sA wh" x1="768.5" y1="280" x2="768.5" y2="288"/><rect class="sA box" x="514.3" y="277" width="141.6" height="14" rx="2"/><line class="med" x1="583.6" y1="275" x2="583.6" y2="293"/><circle class="fA mean" cx="589.0" cy="284" r="4.5"/><text class="ro" x="1068" y="288" text-anchor="end"><tspan class="ro-p">P(&#8804;0)0.142</tspan><tspan class="ro-n">&#160;&#183;&#160;n4002</tspan></text><rect x="96" y="269" width="976" height="30" fill="transparent" data-tip="XAUUSD / bo_h1 — mean +0.1698 · p5 0.0729 · p25 +0.0550 · p50 +0.1615 · p75 +0.2727 · p95 +0.4457 · P(E[R]&#8804;0) 0.142 · 4002 trades"/><circle class="fB" cx="102" cy="316" r="4"/><text class="vlab" x="112" y="320">bo_h1_trend</text><line class="sB wh" x1="423.2" y1="316" x2="696.4" y2="316"/><line class="sB wh" x1="423.2" y1="312" x2="423.2" y2="320"/><line class="sB wh" x1="696.4" y1="312" x2="696.4" y2="320"/><rect class="sB box" x="505.0" y="309" width="108.4" height="14" rx="2"/><line class="med" x1="557.1" y1="307" x2="557.1" y2="325"/><circle class="fB mean" cx="559.0" cy="316" r="4.5"/><text class="ro" x="1068" y="320" text-anchor="end"><tspan class="ro-p">P(&#8804;0)0.150</tspan><tspan class="ro-n">&#160;&#183;&#160;n4881</tspan></text><rect x="96" y="301" width="976" height="30" fill="transparent" data-tip="XAUUSD / bo_h1_trend — mean +0.1238 · p5 0.0850 · p25 +0.0407 · p50 +0.1208 · p75 +0.2073 · p95 +0.3349 · P(E[R]&#8804;0) 0.150 · 4881 trades"/></svg></div><p class="fnote">GER40 is the reshaping case: the gate moves essentially the whole interval across zero. EURUSD moves the other way — the gate makes it decisively worse. A conditioner, not an improvement.</p><section class="sec"><div class="kick">04</div><h2>Per-instrument metrics — default params, full window</h2><p class="sub">Single members from the curves campaign (channel 24/24, EMA 12/48, no selection), full 2018&#8211;2026 window, gross R. This isolates the gate&#8217;s effect from the screen&#8217;s parameter selection. The shape is classic vol-stop breakout: ~10&#8201;% hit rate, average win an order of magnitude larger than average loss.</p></section><div class="cards c2"><div class="card"><h3>GER40 <span class="tag">default params · gross</span></h3><table class="res"><thead><tr><th></th><th>bo_h1</th><th>bo_h1_trend</th></tr></thead><tbody><tr><td>expectancy_r</td><td class="pos">+0.0716</td><td class="pos">+0.0563</td></tr><tr><td>win_rate</td><td>9.9&#8201;%</td><td>11.6&#8201;%</td></tr><tr><td>profit_factor</td><td>1.058</td><td>1.046</td></tr><tr><td>sqn_normalized</td><td class="pos">+0.0761</td><td class="pos">+0.0606</td></tr><tr><td>max_r_drawdown</td><td>751.5&#8201;R</td><td>756.4&#8201;R</td></tr><tr><td>n_trades</td><td>6435</td><td>6664</td></tr><tr><td>bias_sign_flips</td><td>861</td><td>1882</td></tr></tbody></table><svg class="chart" viewBox="0 0 336 122" width="100%" preserveAspectRatio="xMidYMid meet" role="img"><line class="base" x1="6" y1="56.0" x2="330" y2="56.0"/><text class="tick" x="60.0" y="116" text-anchor="middle">T1</text><path class="pb" d="M39.0,56.0 L39.0,35.9 Q39.0,32.9 42.0,32.9 L56.0,32.9 Q59.0,32.9 59.0,35.9 L59.0,56.0 Z" data-tip="GER40 / bo_h1 — conviction tercile T1: mean +0.1874 R per trade"/><path class="pb" d="M61.0,56.0 L61.0,45.3 Q61.0,42.3 64.0,42.3 L78.0,42.3 Q81.0,42.3 81.0,45.3 L81.0,56.0 Z" data-tip="GER40 / bo_h1_trend — conviction tercile T1: mean +0.1108 R per trade"/><text class="tick" x="168.0" y="116" text-anchor="middle">T2</text><path class="nb" d="M147.0,56.0 L147.0,77.8 Q147.0,80.8 150.0,80.8 L164.0,80.8 Q167.0,80.8 167.0,77.8 L167.0,56.0 Z" data-tip="GER40 / bo_h1 — conviction tercile T2: mean 0.2008 R per trade"/><path class="nb" d="M169.0,56.0 L169.0,70.6 Q169.0,73.6 172.0,73.6 L186.0,73.6 Q189.0,73.6 189.0,70.6 L189.0,56.0 Z" data-tip="GER40 / bo_h1_trend — conviction tercile T2: mean 0.1428 R per trade"/><text class="tick" x="276.0" y="116" text-anchor="middle">T3</text><path class="pb" d="M255.0,56.0 L255.0,30.8 Q255.0,27.8 258.0,27.8 L272.0,27.8 Q275.0,27.8 275.0,30.8 L275.0,56.0 Z" data-tip="GER40 / bo_h1 — conviction tercile T3: mean +0.2282 R per trade"/><path class="pb" d="M277.0,56.0 L277.0,34.2 Q277.0,31.2 280.0,31.2 L294.0,31.2 Q297.0,31.2 297.0,34.2 L297.0,56.0 Z" data-tip="GER40 / bo_h1_trend — conviction tercile T3: mean +0.2008 R per trade"/></svg><p class="mini">conviction terciles — mean R per trade by tercile; within each group: left bar bo_h1, right bar bo_h1_trend; green/red by sign</p></div><div class="card"><h3>US500 <span class="tag">default params · gross</span></h3><table class="res"><thead><tr><th></th><th>bo_h1</th><th>bo_h1_trend</th></tr></thead><tbody><tr><td>expectancy_r</td><td class="pos">+0.0450</td><td class="pos">+0.1572</td></tr><tr><td>win_rate</td><td>9.6&#8201;%</td><td>11.3&#8201;%</td></tr><tr><td>profit_factor</td><td>1.036</td><td>1.128</td></tr><tr><td>sqn_normalized</td><td class="pos">+0.0494</td><td class="pos">+0.1448</td></tr><tr><td>max_r_drawdown</td><td>804.8&#8201;R</td><td>440.8&#8201;R</td></tr><tr><td>n_trades</td><td>7293</td><td>7157</td></tr><tr><td>bias_sign_flips</td><td>977</td><td>2001</td></tr></tbody></table><svg class="chart" viewBox="0 0 336 122" width="100%" preserveAspectRatio="xMidYMid meet" role="img"><line class="base" x1="6" y1="56.0" x2="330" y2="56.0"/><text class="tick" x="60.0" y="116" text-anchor="middle">T1</text><path class="pb" d="M39.0,56.0 L39.0,18.8 Q39.0,15.8 42.0,15.8 L56.0,15.8 Q59.0,15.8 59.0,18.8 L59.0,56.0 Z" data-tip="US500 / bo_h1 — conviction tercile T1: mean +0.3255 R per trade"/><path class="pb" d="M61.0,56.0 L61.0,30.9 Q61.0,27.9 64.0,27.9 L78.0,27.9 Q81.0,27.9 81.0,30.9 L81.0,56.0 Z" data-tip="US500 / bo_h1_trend — conviction tercile T1: mean +0.2275 R per trade"/><text class="tick" x="168.0" y="116" text-anchor="middle">T2</text><path class="pb" d="M147.0,56.0 L147.0,57.6 Q147.0,54.6 150.0,54.6 L164.0,54.6 Q167.0,54.6 167.0,57.6 L167.0,56.0 Z" data-tip="US500 / bo_h1 — conviction tercile T2: mean +0.0113 R per trade"/><path class="pb" d="M169.0,56.0 L169.0,28.3 Q169.0,25.3 172.0,25.3 L186.0,25.3 Q189.0,25.3 189.0,28.3 L189.0,56.0 Z" data-tip="US500 / bo_h1_trend — conviction tercile T2: mean +0.2490 R per trade"/><text class="tick" x="276.0" y="116" text-anchor="middle">T3</text><path class="nb" d="M255.0,56.0 L255.0,77.9 Q255.0,80.9 258.0,80.9 L272.0,80.9 Q275.0,80.9 275.0,77.9 L275.0,56.0 Z" data-tip="US500 / bo_h1 — conviction tercile T3: mean 0.2016 R per trade"/><path class="nb" d="M277.0,56.0 L277.0,53.6 Q277.0,56.6 280.0,56.6 L294.0,56.6 Q297.0,56.6 297.0,53.6 L297.0,56.0 Z" data-tip="US500 / bo_h1_trend — conviction tercile T3: mean 0.0048 R per trade"/></svg><p class="mini">conviction terciles — mean R per trade by tercile; within each group: left bar bo_h1, right bar bo_h1_trend; green/red by sign</p></div><div class="card"><h3>EURUSD <span class="tag">default params · gross</span></h3><table class="res"><thead><tr><th></th><th>bo_h1</th><th>bo_h1_trend</th></tr></thead><tbody><tr><td>expectancy_r</td><td class="neg">0.0866</td><td class="neg">0.0771</td></tr><tr><td>win_rate</td><td>10.3&#8201;%</td><td>11.5&#8201;%</td></tr><tr><td>profit_factor</td><td>0.931</td><td>0.937</td></tr><tr><td>sqn_normalized</td><td class="neg">0.1100</td><td class="neg">0.0969</td></tr><tr><td>max_r_drawdown</td><td>1005.4&#8201;R</td><td>1313.6&#8201;R</td></tr><tr><td>n_trades</td><td>6788</td><td>7398</td></tr><tr><td>bias_sign_flips</td><td>914</td><td>2055</td></tr></tbody></table><svg class="chart" viewBox="0 0 336 122" width="100%" preserveAspectRatio="xMidYMid meet" role="img"><line class="base" x1="6" y1="56.0" x2="330" y2="56.0"/><text class="tick" x="60.0" y="116" text-anchor="middle">T1</text><path class="pb" d="M39.0,56.0 L39.0,43.1 Q39.0,40.1 42.0,40.1 L56.0,40.1 Q59.0,40.1 59.0,43.1 L59.0,56.0 Z" data-tip="EURUSD / bo_h1 — conviction tercile T1: mean +0.1284 R per trade"/><path class="pb" d="M61.0,56.0 L61.0,41.7 Q61.0,38.7 64.0,38.7 L78.0,38.7 Q81.0,38.7 81.0,41.7 L81.0,56.0 Z" data-tip="EURUSD / bo_h1_trend — conviction tercile T1: mean +0.1405 R per trade"/><text class="tick" x="168.0" y="116" text-anchor="middle">T2</text><path class="nb" d="M147.0,56.0 L147.0,89.4 Q147.0,92.4 150.0,92.4 L164.0,92.4 Q167.0,92.4 167.0,89.4 L167.0,56.0 Z" data-tip="EURUSD / bo_h1 — conviction tercile T2: mean 0.2950 R per trade"/><path class="nb" d="M169.0,56.0 L169.0,92.1 Q169.0,95.1 172.0,95.1 L186.0,95.1 Q189.0,95.1 189.0,92.1 L189.0,56.0 Z" data-tip="EURUSD / bo_h1_trend — conviction tercile T2: mean 0.3164 R per trade"/><text class="tick" x="276.0" y="116" text-anchor="middle">T3</text><path class="nb" d="M255.0,56.0 L255.0,64.5 Q255.0,67.5 258.0,67.5 L272.0,67.5 Q275.0,67.5 275.0,64.5 L275.0,56.0 Z" data-tip="EURUSD / bo_h1 — conviction tercile T3: mean 0.0932 R per trade"/><path class="nb" d="M277.0,56.0 L277.0,59.8 Q277.0,62.8 280.0,62.8 L294.0,62.8 Q297.0,62.8 297.0,59.8 L297.0,56.0 Z" data-tip="EURUSD / bo_h1_trend — conviction tercile T3: mean 0.0554 R per trade"/></svg><p class="mini">conviction terciles — mean R per trade by tercile; within each group: left bar bo_h1, right bar bo_h1_trend; green/red by sign</p></div><div class="card"><h3>XAUUSD <span class="tag">default params · gross</span></h3><table class="res"><thead><tr><th></th><th>bo_h1</th><th>bo_h1_trend</th></tr></thead><tbody><tr><td>expectancy_r</td><td class="pos">+0.1406</td><td class="pos">+0.0299</td></tr><tr><td>win_rate</td><td>10.1&#8201;%</td><td>12.2&#8201;%</td></tr><tr><td>profit_factor</td><td>1.114</td><td>1.024</td></tr><tr><td>sqn_normalized</td><td class="pos">+0.1435</td><td class="pos">+0.0361</td></tr><tr><td>max_r_drawdown</td><td>451.9&#8201;R</td><td>586.4&#8201;R</td></tr><tr><td>n_trades</td><td>6201</td><td>6825</td></tr><tr><td>bias_sign_flips</td><td>869</td><td>2029</td></tr></tbody></table><svg class="chart" viewBox="0 0 336 122" width="100%" preserveAspectRatio="xMidYMid meet" role="img"><line class="base" x1="6" y1="56.0" x2="330" y2="56.0"/><text class="tick" x="60.0" y="116" text-anchor="middle">T1</text><path class="pb" d="M39.0,56.0 L39.0,57.9 Q39.0,54.9 42.0,54.9 L56.0,54.9 Q59.0,54.9 59.0,57.9 L59.0,56.0 Z" data-tip="XAUUSD / bo_h1 — conviction tercile T1: mean +0.0088 R per trade"/><path class="nb" d="M61.0,56.0 L61.0,57.2 Q61.0,60.2 64.0,60.2 L78.0,60.2 Q81.0,60.2 81.0,57.2 L81.0,56.0 Z" data-tip="XAUUSD / bo_h1_trend — conviction tercile T1: mean 0.0340 R per trade"/><text class="tick" x="168.0" y="116" text-anchor="middle">T2</text><path class="pb" d="M147.0,56.0 L147.0,48.8 Q147.0,45.8 150.0,45.8 L164.0,45.8 Q167.0,45.8 167.0,48.8 L167.0,56.0 Z" data-tip="XAUUSD / bo_h1 — conviction tercile T2: mean +0.0829 R per trade"/><path class="nb" d="M169.0,56.0 L169.0,67.8 Q169.0,70.8 172.0,70.8 L186.0,70.8 Q189.0,70.8 189.0,67.8 L189.0,56.0 Z" data-tip="XAUUSD / bo_h1_trend — conviction tercile T2: mean 0.1198 R per trade"/><text class="tick" x="276.0" y="116" text-anchor="middle">T3</text><path class="pb" d="M255.0,56.0 L255.0,18.3 Q255.0,15.3 258.0,15.3 L272.0,15.3 Q275.0,15.3 275.0,18.3 L275.0,56.0 Z" data-tip="XAUUSD / bo_h1 — conviction tercile T3: mean +0.3301 R per trade"/><path class="pb" d="M277.0,56.0 L277.0,29.0 Q277.0,26.0 280.0,26.0 L294.0,26.0 Q297.0,26.0 297.0,29.0 L297.0,56.0 Z" data-tip="XAUUSD / bo_h1_trend — conviction tercile T3: mean +0.2434 R per trade"/></svg><p class="mini">conviction terciles — mean R per trade by tercile; within each group: left bar bo_h1, right bar bo_h1_trend; green/red by sign</p></div></div><section class="sec"><div class="kick">05</div><h2>Walk-forward — stitched OOS R</h2><p class="sub">Cumulative out-of-sample R across the 100 rolled windows (per-window expectancy&#8201;&#215;&#8201;trades, refit each roll). The IS winner is unstable: in every one of the eight cells the per-roll argmax visits all 9 cells of the 3&#215;3 channel grid at least once over the 100 rolls — the full-window screen winner is not a stable optimum, which is exactly what the deflated sweep scores already hinted at.</p></section><div class="legend"><span><i class="sw swA"></i>bo_h1 <span class="lk">(A — breakout)</span></span><span><i class="sw swB"></i>bo_h1_trend <span class="lk">(B — gated)</span></span></div><div class="cards c2"><div class="card"><h3>GER40 <span class="tag">OOS, refit per roll</span></h3><svg class="chart" viewBox="0 0 560 206" width="100%" preserveAspectRatio="xMidYMid meet" role="img"><line class="grid" x1="52" y1="151.1" x2="482" y2="151.1"/><text class="tick" x="46" y="154.6" text-anchor="end">500</text><line class="grid" x1="52" y1="95.2" x2="482" y2="95.2"/><text class="tick" x="46" y="98.7" text-anchor="end">0</text><line class="grid" x1="52" y1="39.2" x2="482" y2="39.2"/><text class="tick" x="46" y="42.7" text-anchor="end">+500</text><line class="zero" x1="52" y1="95.2" x2="482" y2="95.2"/><line class="grid" x1="91.4" y1="180" x2="91.4" y2="184"/><text class="tick" x="91.4" y="196" text-anchor="middle">2019</text><line class="grid" x1="196.2" y1="180" x2="196.2" y2="184"/><text class="tick" x="196.2" y="196" text-anchor="middle">2021</text><line class="grid" x1="300.8" y1="180" x2="300.8" y2="184"/><text class="tick" x="300.8" y="196" text-anchor="middle">2023</text><line class="grid" x1="405.6" y1="180" x2="405.6" y2="184"/><text class="tick" x="405.6" y="196" text-anchor="middle">2025</text><polyline class="sA ln" points="52.0,95.2 56.3,98.6 60.6,99.8 64.9,104.4 69.2,108.4 73.5,103.9 77.8,100.2 82.1,103.9 86.4,99.0 90.7,101.8 95.0,103.7 99.3,105.0 103.6,106.7 107.9,97.6 112.2,99.6 116.5,96.8 120.8,84.1 125.1,71.5 129.4,71.6 133.7,65.4 138.0,70.3 142.3,74.7 146.6,77.9 150.9,73.8 155.2,76.9 159.5,77.0 163.8,90.6 168.1,92.3 172.4,92.1 176.7,93.6 181.0,97.1 185.3,96.5 189.6,82.9 193.9,85.0 198.2,91.9 202.5,103.7 206.8,116.1 211.1,107.3 215.4,115.9 219.7,126.1 224.0,138.3 228.3,138.6 232.6,148.3 236.9,147.8 241.2,146.9 245.5,131.2 249.8,131.0 254.1,128.3 258.4,124.5 262.7,133.6 267.0,132.3 271.3,132.2 275.6,136.3 279.9,137.1 284.2,139.0 288.5,140.6 292.8,133.7 297.1,135.4 301.4,138.4 305.7,131.0 310.0,133.4 314.3,132.9 318.6,131.2 322.9,129.6 327.2,122.4 331.5,126.4 335.8,135.5 340.1,136.0 344.4,134.4 348.7,135.3 353.0,143.4 357.3,144.1 361.6,135.1 365.9,130.5 370.2,138.8 374.5,134.9 378.8,143.3 383.1,152.3 387.4,148.0 391.7,152.5 396.0,159.1 400.3,162.0 404.6,155.8 408.9,142.5 413.2,144.0 417.5,145.9 421.8,148.3 426.1,145.7 430.4,150.6 434.7,151.7 439.0,159.0 443.3,162.2 447.6,160.9 451.9,154.0 456.2,159.9 460.5,155.8 464.8,160.3 469.1,170.0 473.4,169.4 477.7,168.6 482.0,171.0"/><polyline class="sB ln" points="52.0,95.2 56.3,98.5 60.6,100.5 64.9,103.3 69.2,106.4 73.5,106.5 77.8,103.2 82.1,101.0 86.4,105.1 90.7,104.7 95.0,108.6 99.3,110.1 103.6,110.9 107.9,107.9 112.2,113.9 116.5,109.8 120.8,92.9 125.1,88.7 129.4,89.1 133.7,87.7 138.0,70.0 142.3,75.7 146.6,78.7 150.9,76.7 155.2,48.7 159.5,46.8 163.8,39.2 168.1,34.7 172.4,37.2 176.7,42.1 181.0,50.4 185.3,51.3 189.6,29.8 193.9,34.0 198.2,36.8 202.5,44.8 206.8,57.6 211.1,52.8 215.4,56.9 219.7,64.3 224.0,74.0 228.3,75.7 232.6,85.3 236.9,80.1 241.2,80.1 245.5,64.3 249.8,62.5 254.1,65.3 258.4,55.2 262.7,61.1 267.0,59.5 271.3,54.5 275.6,57.4 279.9,57.2 284.2,62.9 288.5,65.5 292.8,63.8 297.1,65.6 301.4,62.3 305.7,55.5 310.0,64.9 314.3,62.2 318.6,69.4 322.9,66.3 327.2,60.5 331.5,60.4 335.8,66.5 340.1,71.0 344.4,65.9 348.7,62.6 353.0,66.4 357.3,65.2 361.6,39.0 365.9,35.4 370.2,38.4 374.5,34.5 378.8,46.1 383.1,47.6 387.4,40.3 391.7,39.7 396.0,45.3 400.3,52.5 404.6,46.4 408.9,32.0 413.2,30.9 417.5,35.1 421.8,30.1 426.1,25.1 430.4,26.1 434.7,25.8 439.0,35.7 443.3,40.7 447.6,38.3 451.9,40.1 456.2,37.3 460.5,28.9 464.8,35.3 469.1,37.2 473.4,21.0 477.7,22.9 482.0,24.9"/><circle class="fA mean" cx="482.0" cy="171.0" r="3.5"/><text class="endlab" x="489.0" y="174.5"><tspan class="ro-n">A</tspan> 678R</text><circle class="fB mean" cx="482.0" cy="24.9" r="3.5"/><text class="endlab" x="489.0" y="28.4"><tspan class="ro-n">B</tspan> +628R</text></svg><table class="res"><thead><tr><th></th><th>windows</th><th>positive</th><th>stitched R</th></tr></thead><tbody><tr><td>bo_h1</td><td>100</td><td>40&#8201;%</td><td class="neg">678.0</td></tr><tr><td>bo_h1_trend</td><td>100</td><td>49&#8201;%</td><td class="pos">+627.9</td></tr></tbody></table></div><div class="card"><h3>US500 <span class="tag">OOS, refit per roll</span></h3><svg class="chart" viewBox="0 0 560 206" width="100%" preserveAspectRatio="xMidYMid meet" role="img"><line class="grid" x1="52" y1="156.0" x2="482" y2="156.0"/><text class="tick" x="46" y="159.5" text-anchor="end">0</text><line class="grid" x1="52" y1="103.0" x2="482" y2="103.0"/><text class="tick" x="46" y="106.5" text-anchor="end">+500</text><line class="grid" x1="52" y1="50.1" x2="482" y2="50.1"/><text class="tick" x="46" y="53.6" text-anchor="end">+1000</text><line class="zero" x1="52" y1="156.0" x2="482" y2="156.0"/><line class="grid" x1="91.4" y1="180" x2="91.4" y2="184"/><text class="tick" x="91.4" y="196" text-anchor="middle">2019</text><line class="grid" x1="196.2" y1="180" x2="196.2" y2="184"/><text class="tick" x="196.2" y="196" text-anchor="middle">2021</text><line class="grid" x1="300.8" y1="180" x2="300.8" y2="184"/><text class="tick" x="300.8" y="196" text-anchor="middle">2023</text><line class="grid" x1="405.6" y1="180" x2="405.6" y2="184"/><text class="tick" x="405.6" y="196" text-anchor="middle">2025</text><polyline class="sA ln" points="52.0,156.0 56.3,157.9 60.6,163.1 64.9,164.4 69.2,164.7 73.5,166.2 77.8,171.0 82.1,142.8 86.4,104.6 90.7,97.3 95.0,104.9 99.3,90.0 103.6,74.5 107.9,61.4 112.2,61.9 116.5,58.1 120.8,58.3 125.1,36.0 129.4,39.6 133.7,46.3 138.0,46.7 142.3,50.0 146.6,54.3 150.9,53.0 155.2,59.3 159.5,61.6 163.8,71.0 168.1,73.1 172.4,76.7 176.7,76.8 181.0,68.7 185.3,65.8 189.6,63.3 193.9,62.6 198.2,63.9 202.5,64.3 206.8,68.7 211.1,58.7 215.4,62.5 219.7,58.2 224.0,61.9 228.3,64.0 232.6,62.9 236.9,64.7 241.2,47.4 245.5,40.9 249.8,42.2 254.1,37.7 258.4,36.4 262.7,35.9 267.0,32.5 271.3,31.3 275.6,26.8 279.9,30.4 284.2,31.8 288.5,40.0 292.8,40.5 297.1,50.5 301.4,59.8 305.7,57.8 310.0,63.2 314.3,65.7 318.6,71.5 322.9,70.8 327.2,70.1 331.5,70.3 335.8,72.6 340.1,68.8 344.4,63.2 348.7,64.3 353.0,66.5 357.3,64.6 361.6,69.1 365.9,75.4 370.2,76.3 374.5,69.8 378.8,68.6 383.1,67.3 387.4,68.5 391.7,61.3 396.0,61.3 400.3,58.8 404.6,60.9 408.9,65.4 413.2,67.5 417.5,64.2 421.8,65.5 426.1,59.7 430.4,67.3 434.7,60.9 439.0,69.8 443.3,70.5 447.6,70.0 451.9,71.6 456.2,71.2 460.5,75.8 464.8,74.1 469.1,74.5 473.4,64.0 477.7,67.5 482.0,68.6"/><polyline class="sB ln" points="52.0,156.0 56.3,159.3 60.6,164.3 64.9,166.0 69.2,165.6 73.5,161.3 77.8,167.9 82.1,154.6 86.4,151.5 90.7,146.5 95.0,150.7 99.3,152.7 103.6,150.2 107.9,141.9 112.2,144.7 116.5,137.8 120.8,137.2 125.1,114.7 129.4,118.2 133.7,126.1 138.0,128.0 142.3,126.7 146.6,131.6 150.9,124.3 155.2,126.4 159.5,124.6 163.8,127.4 168.1,129.1 172.4,133.3 176.7,136.7 181.0,130.6 185.3,128.9 189.6,116.4 193.9,116.2 198.2,121.2 202.5,122.3 206.8,126.0 211.1,115.1 215.4,117.6 219.7,121.4 224.0,117.3 228.3,114.5 232.6,115.2 236.9,118.7 241.2,100.0 245.5,96.9 249.8,96.8 254.1,94.4 258.4,94.6 262.7,91.2 267.0,92.2 271.3,96.6 275.6,95.1 279.9,92.1 284.2,84.0 288.5,81.6 292.8,85.5 297.1,94.0 301.4,100.1 305.7,105.2 310.0,107.3 314.3,106.8 318.6,113.6 322.9,66.6 327.2,65.3 331.5,63.9 335.8,64.7 340.1,53.7 344.4,56.3 348.7,51.4 353.0,42.9 357.3,29.6 361.6,32.7 365.9,43.3 370.2,46.3 374.5,39.4 378.8,40.6 383.1,30.2 387.4,27.8 391.7,21.0 396.0,24.4 400.3,22.1 404.6,24.4 408.9,23.0 413.2,30.9 417.5,21.3 421.8,24.4 426.1,24.9 430.4,33.3 434.7,32.8 439.0,42.8 443.3,43.3 447.6,40.5 451.9,37.6 456.2,39.0 460.5,44.1 464.8,47.3 469.1,51.3 473.4,42.2 477.7,42.9 482.0,43.3"/><circle class="fA mean" cx="482.0" cy="68.6" r="3.5"/><text class="endlab" x="489.0" y="72.1"><tspan class="ro-n">A</tspan> +825R</text><circle class="fB mean" cx="482.0" cy="43.3" r="3.5"/><text class="endlab" x="489.0" y="46.8"><tspan class="ro-n">B</tspan> +1064R</text></svg><table class="res"><thead><tr><th></th><th>windows</th><th>positive</th><th>stitched R</th></tr></thead><tbody><tr><td>bo_h1</td><td>100</td><td>42&#8201;%</td><td class="pos">+825.1</td></tr><tr><td>bo_h1_trend</td><td>100</td><td>48&#8201;%</td><td class="pos">+1063.6</td></tr></tbody></table></div><div class="card"><h3>EURUSD <span class="tag">OOS, refit per roll</span></h3><svg class="chart" viewBox="0 0 560 206" width="100%" preserveAspectRatio="xMidYMid meet" role="img"><line class="grid" x1="52" y1="155.2" x2="482" y2="155.2"/><text class="tick" x="46" y="158.7" text-anchor="end">1000</text><line class="grid" x1="52" y1="106.9" x2="482" y2="106.9"/><text class="tick" x="46" y="110.4" text-anchor="end">500</text><line class="grid" x1="52" y1="58.7" x2="482" y2="58.7"/><text class="tick" x="46" y="62.2" text-anchor="end">0</text><line class="zero" x1="52" y1="58.7" x2="482" y2="58.7"/><line class="grid" x1="91.4" y1="180" x2="91.4" y2="184"/><text class="tick" x="91.4" y="196" text-anchor="middle">2019</text><line class="grid" x1="196.2" y1="180" x2="196.2" y2="184"/><text class="tick" x="196.2" y="196" text-anchor="middle">2021</text><line class="grid" x1="300.8" y1="180" x2="300.8" y2="184"/><text class="tick" x="300.8" y="196" text-anchor="middle">2023</text><line class="grid" x1="405.6" y1="180" x2="405.6" y2="184"/><text class="tick" x="405.6" y="196" text-anchor="middle">2025</text><polyline class="sA ln" points="52.0,58.7 56.3,66.8 60.6,46.3 64.9,50.6 69.2,56.1 73.5,47.9 77.8,46.2 82.1,51.4 86.4,53.3 90.7,59.2 95.0,73.6 99.3,75.3 103.6,74.1 107.9,76.4 112.2,81.2 116.5,69.7 120.8,69.5 125.1,67.8 129.4,60.1 133.7,60.0 138.0,56.9 142.3,54.5 146.6,60.7 150.9,43.7 155.2,35.4 159.5,34.6 163.8,33.8 168.1,27.4 172.4,30.1 176.7,25.0 181.0,28.0 185.3,26.7 189.6,22.9 193.9,37.2 198.2,39.1 202.5,32.2 206.8,32.1 211.1,24.5 215.4,21.0 219.7,27.7 224.0,33.8 228.3,32.3 232.6,31.2 236.9,22.7 241.2,28.6 245.5,34.2 249.8,42.5 254.1,38.5 258.4,34.8 262.7,39.8 267.0,45.5 271.3,46.4 275.6,45.3 279.9,48.3 284.2,51.3 288.5,47.2 292.8,49.3 297.1,64.9 301.4,69.0 305.7,76.7 310.0,80.6 314.3,88.9 318.6,92.8 322.9,100.8 327.2,108.7 331.5,95.7 335.8,100.2 340.1,102.0 344.4,111.1 348.7,108.7 353.0,108.1 357.3,113.6 361.6,114.6 365.9,118.1 370.2,116.0 374.5,119.2 378.8,130.8 383.1,127.4 387.4,119.9 391.7,126.1 396.0,125.1 400.3,122.9 404.6,127.4 408.9,127.5 413.2,133.3 417.5,129.7 421.8,121.7 426.1,121.9 430.4,121.7 434.7,120.0 439.0,120.5 443.3,121.3 447.6,123.3 451.9,122.5 456.2,121.8 460.5,127.6 464.8,127.6 469.1,132.0 473.4,124.6 477.7,123.0 482.0,125.9"/><polyline class="sB ln" points="52.0,58.7 56.3,62.5 60.6,52.9 64.9,58.6 69.2,61.4 73.5,53.7 77.8,54.0 82.1,55.7 86.4,57.6 90.7,63.0 95.0,70.5 99.3,75.0 103.6,71.9 107.9,74.2 112.2,80.1 116.5,72.2 120.8,71.7 125.1,74.7 129.4,82.4 133.7,85.0 138.0,82.8 142.3,81.0 146.6,80.2 150.9,61.4 155.2,44.7 159.5,45.3 163.8,45.0 168.1,38.8 172.4,38.7 176.7,36.4 181.0,37.0 185.3,38.5 189.6,39.9 193.9,47.6 198.2,54.9 202.5,57.4 206.8,54.8 211.1,55.0 215.4,54.1 219.7,61.5 224.0,67.5 228.3,66.8 232.6,64.5 236.9,62.1 241.2,68.8 245.5,74.2 249.8,84.7 254.1,79.0 258.4,87.5 262.7,84.4 267.0,91.1 271.3,90.3 275.6,91.5 279.9,96.6 284.2,95.2 288.5,97.2 292.8,100.1 297.1,105.5 301.4,112.2 305.7,122.9 310.0,125.7 314.3,125.9 318.6,126.0 322.9,129.1 327.2,133.4 331.5,126.1 335.8,129.8 340.1,129.9 344.4,135.6 348.7,135.9 353.0,133.2 357.3,140.7 361.6,144.5 365.9,145.0 370.2,148.8 374.5,153.1 378.8,166.3 383.1,161.4 387.4,166.1 391.7,171.0 396.0,167.5 400.3,161.5 404.6,170.3 408.9,160.5 413.2,162.6 417.5,157.0 421.8,158.9 426.1,163.7 430.4,169.0 434.7,157.9 439.0,158.4 443.3,159.2 447.6,157.7 451.9,149.0 456.2,152.8 460.5,159.0 464.8,154.5 469.1,159.6 473.4,158.5 477.7,157.3 482.0,166.0"/><circle class="fA mean" cx="482.0" cy="125.9" r="3.5"/><text class="endlab" x="489.0" y="129.4"><tspan class="ro-n">A</tspan> 696R</text><circle class="fB mean" cx="482.0" cy="166.0" r="3.5"/><text class="endlab" x="489.0" y="169.5"><tspan class="ro-n">B</tspan> 1112R</text></svg><table class="res"><thead><tr><th></th><th>windows</th><th>positive</th><th>stitched R</th></tr></thead><tbody><tr><td>bo_h1</td><td>100</td><td>47&#8201;%</td><td class="neg">696.1</td></tr><tr><td>bo_h1_trend</td><td>100</td><td>36&#8201;%</td><td class="neg">1111.7</td></tr></tbody></table></div><div class="card"><h3>XAUUSD <span class="tag">OOS, refit per roll</span></h3><svg class="chart" viewBox="0 0 560 206" width="100%" preserveAspectRatio="xMidYMid meet" role="img"><line class="grid" x1="52" y1="138.4" x2="482" y2="138.4"/><text class="tick" x="46" y="141.9" text-anchor="end">0</text><line class="grid" x1="52" y1="95.0" x2="482" y2="95.0"/><text class="tick" x="46" y="98.5" text-anchor="end">+250</text><line class="grid" x1="52" y1="51.7" x2="482" y2="51.7"/><text class="tick" x="46" y="55.2" text-anchor="end">+500</text><line class="zero" x1="52" y1="138.4" x2="482" y2="138.4"/><line class="grid" x1="91.4" y1="180" x2="91.4" y2="184"/><text class="tick" x="91.4" y="196" text-anchor="middle">2019</text><line class="grid" x1="196.2" y1="180" x2="196.2" y2="184"/><text class="tick" x="196.2" y="196" text-anchor="middle">2021</text><line class="grid" x1="300.8" y1="180" x2="300.8" y2="184"/><text class="tick" x="300.8" y="196" text-anchor="middle">2023</text><line class="grid" x1="405.6" y1="180" x2="405.6" y2="184"/><text class="tick" x="405.6" y="196" text-anchor="middle">2025</text><polyline class="sA ln" points="52.0,138.4 56.3,130.3 60.6,127.8 64.9,111.1 69.2,108.6 73.5,105.5 77.8,112.8 82.1,96.3 86.4,97.1 90.7,113.0 95.0,117.9 99.3,116.8 103.6,116.3 107.9,117.9 112.2,124.0 116.5,101.3 120.8,117.3 125.1,121.3 129.4,128.2 133.7,132.9 138.0,137.7 142.3,137.7 146.6,118.1 150.9,116.1 155.2,107.7 159.5,102.8 163.8,105.4 168.1,109.5 172.4,116.9 176.7,92.6 181.0,96.1 185.3,104.5 189.6,98.1 193.9,93.0 198.2,96.9 202.5,108.0 206.8,107.1 211.1,109.7 215.4,112.6 219.7,129.3 224.0,129.1 228.3,119.1 232.6,116.0 236.9,121.3 241.2,120.7 245.5,135.4 249.8,137.6 254.1,129.4 258.4,109.2 262.7,111.2 267.0,123.6 271.3,133.6 275.6,147.4 279.9,156.2 284.2,150.8 288.5,135.8 292.8,136.6 297.1,144.6 301.4,138.0 305.7,133.7 310.0,133.3 314.3,118.7 318.6,119.3 322.9,119.7 327.2,113.0 331.5,121.6 335.8,114.6 340.1,98.6 344.4,86.1 348.7,75.3 353.0,71.3 357.3,86.2 361.6,97.8 365.9,98.8 370.2,99.7 374.5,97.3 378.8,108.0 383.1,97.3 387.4,107.2 391.7,105.2 396.0,99.3 400.3,86.0 404.6,86.8 408.9,83.0 413.2,88.8 417.5,91.0 421.8,86.4 426.1,91.3 430.4,99.3 434.7,96.4 439.0,113.6 443.3,83.1 447.6,88.9 451.9,92.2 456.2,79.3 460.5,76.2 464.8,28.6 469.1,25.9 473.4,21.0 477.7,21.7 482.0,22.6"/><polyline class="sB ln" points="52.0,138.4 56.3,138.9 60.6,140.3 64.9,136.3 69.2,132.1 73.5,125.6 77.8,137.2 82.1,147.0 86.4,143.8 90.7,151.1 95.0,156.2 99.3,154.4 103.6,158.6 107.9,162.7 112.2,167.6 116.5,137.2 120.8,151.4 125.1,154.4 129.4,161.2 133.7,171.0 138.0,165.8 142.3,170.2 146.6,157.1 150.9,130.1 155.2,126.9 159.5,122.0 163.8,130.0 168.1,124.8 172.4,136.4 176.7,119.4 181.0,122.1 185.3,124.2 189.6,114.9 193.9,108.5 198.2,98.3 202.5,94.2 206.8,90.0 211.1,94.2 215.4,106.9 219.7,116.2 224.0,99.1 228.3,98.8 232.6,104.2 236.9,102.3 241.2,106.4 245.5,104.9 249.8,109.2 254.1,104.6 258.4,98.1 262.7,105.0 267.0,108.8 271.3,121.5 275.6,136.5 279.9,137.4 284.2,143.2 288.5,123.9 292.8,129.4 297.1,136.5 301.4,132.3 305.7,125.6 310.0,111.4 314.3,92.8 318.6,98.1 322.9,105.3 327.2,124.4 331.5,133.6 335.8,128.4 340.1,107.5 344.4,88.0 348.7,84.4 353.0,74.4 357.3,87.6 361.6,101.8 365.9,108.9 370.2,112.2 374.5,105.8 378.8,119.6 383.1,116.1 387.4,121.5 391.7,122.2 396.0,117.0 400.3,103.5 404.6,97.7 408.9,82.7 413.2,53.3 417.5,52.2 421.8,42.4 426.1,46.7 430.4,53.2 434.7,52.9 439.0,64.4 443.3,29.9 447.6,33.8 451.9,40.5 456.2,42.2 460.5,41.8 464.8,38.0 469.1,29.1 473.4,35.0 477.7,37.0 482.0,37.3"/><circle class="fA mean" cx="482.0" cy="22.6" r="3.5"/><text class="endlab" x="489.0" y="26.1"><tspan class="ro-n">A</tspan> +668R</text><circle class="fB mean" cx="482.0" cy="37.3" r="3.5"/><text class="endlab" x="489.0" y="40.8"><tspan class="ro-n">B</tspan> +583R</text></svg><table class="res"><thead><tr><th></th><th>windows</th><th>positive</th><th>stitched R</th></tr></thead><tbody><tr><td>bo_h1</td><td>100</td><td>50&#8201;%</td><td class="pos">+668.0</td></tr><tr><td>bo_h1_trend</td><td>100</td><td>48&#8201;%</td><td class="pos">+583.0</td></tr></tbody></table></div></div><section class="sec"><div class="kick">06</div><h2>Full-period R-curves — default params</h2><p class="sub">Cumulative realized&#8201;+&#8201;unrealized R from the persisted r_equity taps (curves campaign, default params — gate-effect isolation, no selection), ~2.6&#8201;M m1 points per member decimated to &#8804;1100 min&#8211;max envelope buckets: the band is the per-bucket min&#8211;max range (drawdown spikes survive the decimation), the line its midpoint. Gross R.</p></section><div class="legend"><span><i class="sw swA"></i>bo_h1 <span class="lk">(A — breakout)</span></span><span><i class="sw swB"></i>bo_h1_trend <span class="lk">(B — gated)</span></span></div><div class="cards c2"><div class="card"><h3>GER40 <span class="tag">r_equity · full window</span></h3><svg class="chart" viewBox="0 0 560 232" width="100%" preserveAspectRatio="xMidYMid meet" role="img"><line class="grid" x1="54" y1="145.6" x2="468" y2="145.6"/><text class="tick" x="48" y="149.1" text-anchor="end">0</text><line class="grid" x1="54" y1="57.9" x2="468" y2="57.9"/><text class="tick" x="48" y="61.4" text-anchor="end">+500</text><line class="zero" x1="54" y1="145.6" x2="468" y2="145.6"/><line class="grid" x1="102.6" y1="208" x2="102.6" y2="212"/><text class="tick" x="102.6" y="224" text-anchor="middle">2019</text><line class="grid" x1="200.2" y1="208" x2="200.2" y2="212"/><text class="tick" x="200.2" y="224" text-anchor="middle">2021</text><line class="grid" x1="297.7" y1="208" x2="297.7" y2="212"/><text class="tick" x="297.7" y="224" text-anchor="middle">2023</text><line class="grid" x1="395.3" y1="208" x2="395.3" y2="212"/><text class="tick" x="395.3" y="224" text-anchor="middle">2025</text><polygon class="fA band" points="54.0,144.9 54.4,137.9 54.8,136.3 55.1,133.7 55.5,134.1 55.9,135.6 56.3,139.7 56.6,138.0 57.0,127.4 57.4,129.5 57.8,132.5 58.1,128.4 58.5,116.7 58.9,124.5 59.3,126.0 59.7,130.0 60.0,130.8 60.4,130.4 60.8,133.4 61.2,137.7 61.5,137.6 61.9,132.2 62.3,128.2 62.7,131.9 63.0,135.7 63.4,133.8 63.8,136.6 64.2,137.3 64.5,137.6 64.9,138.1 65.3,137.0 65.7,139.8 66.1,140.5 66.4,140.8 66.8,142.2 67.2,141.4 67.6,140.0 67.9,140.3 68.3,141.3 68.7,143.9 69.1,140.9 69.4,142.2 69.8,142.0 70.2,136.5 70.6,133.7 71.0,131.8 71.3,131.7 71.7,132.2 72.1,129.2 72.8,127.4 73.2,130.7 73.6,131.9 74.0,132.0 74.3,133.4 74.7,133.8 75.1,135.3 75.5,137.1 75.8,137.7 76.2,128.5 76.6,119.3 77.0,121.0 77.4,105.2 77.7,116.7 78.1,118.7 78.5,117.8 78.9,117.5 79.2,116.9 79.6,116.7 80.0,120.1 80.4,118.3 80.7,107.2 81.1,108.2 81.5,122.6 81.9,124.1 82.3,113.1 82.6,116.0 83.0,114.8 83.4,118.2 83.8,119.1 84.1,117.2 84.5,117.5 84.9,117.7 85.3,117.7 85.6,114.3 86.0,112.1 86.4,115.5 86.8,112.7 87.2,111.1 87.5,111.6 87.9,112.4 88.3,112.5 88.7,111.0 89.0,109.2 89.4,109.6 89.8,110.1 90.2,114.2 90.5,114.7 90.9,114.3 91.3,113.6 91.7,108.5 92.0,109.0 92.4,105.3 92.8,112.0 93.2,113.4 93.6,113.1 93.9,113.3 94.3,114.8 94.7,113.5 95.1,114.4 95.4,115.8 95.8,118.6 96.2,118.7 96.6,122.1 96.9,119.4 97.3,120.6 97.7,125.7 98.1,125.7 98.5,125.9 98.8,127.0 99.2,117.7 99.6,115.9 100.0,117.4 100.3,119.4 100.7,119.4 101.1,118.9 101.8,118.4 102.2,118.7 102.6,118.7 103.0,119.0 103.3,120.5 103.7,120.4 104.1,120.4 104.5,119.8 104.9,115.1 105.2,115.8 105.6,116.1 106.0,116.1 106.4,116.8 106.7,119.1 107.1,119.5 107.5,118.8 107.9,119.1 108.2,119.4 108.6,119.4 109.0,119.5 109.4,118.8 109.8,118.4 110.1,118.0 110.5,119.5 110.9,118.2 111.3,118.4 111.6,119.7 112.0,116.0 112.4,120.2 112.8,119.3 113.1,118.9 113.5,118.5 113.9,118.3 114.3,119.0 114.6,116.9 115.0,115.0 115.4,115.2 115.8,115.5 116.2,115.4 116.5,115.9 116.9,114.1 117.7,113.1 118.0,113.5 118.4,112.8 118.8,112.1 119.2,114.5 119.5,101.8 119.9,103.2 120.3,109.2 120.7,109.9 121.1,107.5 121.4,109.5 121.8,115.0 122.2,114.2 122.6,112.1 122.9,111.7 123.3,108.3 123.7,107.9 124.1,105.2 124.4,107.4 124.8,109.1 125.2,105.4 125.6,105.2 126.0,106.2 126.3,107.2 126.7,108.2 127.1,107.6 127.5,105.6 127.8,98.9 128.2,96.9 128.6,96.4 129.0,96.9 129.3,100.3 129.7,97.2 130.1,96.9 130.5,97.1 130.8,96.1 131.2,96.3 131.6,91.0 132.0,95.3 132.4,96.1 132.7,97.9 133.1,105.5 133.5,104.4 133.9,93.2 134.2,86.6 134.6,103.6 135.0,104.0 135.4,97.3 135.7,94.9 136.1,88.5 136.5,78.0 136.9,77.9 137.3,88.1 137.6,91.2 138.0,90.9 138.4,90.1 138.8,90.1 139.1,67.0 139.5,63.1 139.9,69.0 140.3,73.7 140.6,76.7 141.0,76.1 141.4,76.1 141.8,74.3 142.1,74.5 142.5,70.9 142.9,71.6 143.3,77.8 143.7,80.6 144.0,79.4 144.4,77.7 144.8,79.1 145.2,82.3 145.5,85.8 145.9,93.2 146.3,95.6 146.7,95.0 147.0,93.7 147.4,79.9 147.8,97.4 148.2,98.0 148.6,86.9 148.9,100.9 149.3,99.8 149.7,97.1 150.1,98.8 150.4,99.3 150.8,100.4 151.2,98.6 151.6,95.9 151.9,98.4 152.3,98.8 152.7,102.6 153.1,103.4 153.5,103.7 153.8,104.7 154.2,99.7 154.6,108.1 155.0,111.1 155.3,108.4 155.7,106.9 156.1,85.3 156.5,87.0 156.8,84.9 157.2,84.7 157.6,84.0 158.0,84.3 158.3,87.8 158.7,73.2 159.1,63.0 159.5,63.3 159.9,72.6 160.2,65.6 160.6,59.7 161.0,54.3 161.4,50.2 161.7,55.8 162.1,58.7 162.5,56.9 162.9,57.1 163.2,57.9 163.6,63.5 164.0,66.2 164.4,57.7 164.8,56.2 165.1,54.5 165.5,53.5 165.9,53.3 166.3,56.2 166.6,56.3 167.0,51.5 167.4,40.7 167.8,46.6 168.1,46.2 168.5,49.8 168.9,43.8 169.3,30.8 169.6,32.2 170.0,30.7 170.4,31.6 170.8,31.0 171.2,28.4 171.5,24.2 171.9,32.9 172.3,30.3 172.7,29.7 173.0,23.2 173.4,21.1 173.8,20.9 174.2,26.0 174.5,25.5 174.9,25.9 175.3,30.4 175.7,32.0 176.1,32.0 176.4,35.1 176.8,37.3 177.2,39.3 177.6,41.6 177.9,42.3 178.3,39.5 178.7,39.0 179.1,38.8 179.4,41.9 179.8,41.3 180.2,39.8 180.6,44.2 180.9,45.9 181.3,45.7 181.7,42.8 182.1,43.3 182.5,48.4 182.8,55.2 183.2,52.6 183.6,53.8 184.0,51.2 184.3,55.4 184.7,56.6 185.1,54.4 185.5,66.8 185.8,66.3 186.2,69.2 186.6,68.9 187.0,63.6 187.4,65.7 187.7,72.2 188.1,72.8 188.5,74.8 188.9,75.7 189.2,77.7 189.6,73.6 190.0,72.5 190.4,72.8 190.7,73.9 191.1,70.8 191.5,50.6 191.9,47.0 192.3,47.6 192.6,44.1 193.0,42.6 193.4,43.1 193.8,43.1 194.1,44.5 194.5,48.8 194.9,46.6 195.3,45.2 195.6,46.6 196.0,48.6 196.4,53.7 196.8,55.4 197.1,48.0 197.5,52.7 197.9,53.8 198.3,51.5 198.7,43.9 199.0,49.2 199.8,44.4 200.2,42.8 200.5,44.8 200.9,40.3 201.3,35.7 201.7,37.0 202.0,34.7 202.4,35.3 202.8,37.3 203.2,39.2 203.6,38.5 203.9,40.2 204.3,49.2 204.7,51.1 205.1,50.8 205.4,49.7 205.8,54.7 206.2,57.3 206.6,52.7 206.9,54.0 207.3,57.1 207.7,67.4 208.1,71.1 208.4,68.3 208.8,75.2 209.2,70.7 209.6,70.7 210.0,73.2 210.3,74.8 210.7,77.2 211.1,77.9 211.5,76.6 211.8,73.9 212.2,69.6 212.6,69.0 213.0,67.6 213.3,71.5 213.7,72.8 214.1,66.3 214.5,64.8 214.9,59.3 215.2,62.0 215.6,66.7 216.0,67.0 216.4,67.6 216.7,75.7 217.1,71.9 217.5,70.3 217.9,67.8 218.2,69.2 218.6,67.7 219.0,66.4 219.4,63.6 219.8,64.8 220.1,69.8 220.5,71.5 220.9,79.0 221.3,80.3 221.6,79.9 222.0,81.2 222.4,81.3 222.8,77.1 223.1,74.4 223.5,80.8 223.9,83.5 224.3,87.0 224.6,94.1 225.0,93.1 225.4,100.9 225.8,100.7 226.2,97.8 226.5,95.5 226.9,86.3 227.3,87.2 227.7,87.4 228.0,87.6 228.4,90.5 228.8,91.2 229.2,97.3 229.5,97.4 229.9,95.7 230.3,95.1 230.7,93.7 231.1,98.0 231.4,92.3 231.8,96.3 232.2,97.9 232.6,98.5 232.9,102.0 233.3,102.2 233.7,102.4 234.1,105.0 234.4,102.7 234.8,100.7 235.2,100.0 235.6,95.4 235.9,98.9 236.3,98.6 236.7,103.8 237.1,103.5 237.5,104.8 237.8,113.0 238.2,111.8 238.6,103.5 239.0,102.7 239.3,108.6 239.7,108.9 240.1,106.4 240.5,104.7 240.8,96.2 241.2,90.1 241.6,91.1 242.0,89.3 242.4,88.4 242.7,76.9 243.1,75.0 243.5,84.6 243.9,83.4 244.2,80.8 244.6,80.5 245.0,81.5 245.4,83.9 245.7,78.5 246.1,80.8 246.5,80.2 246.9,84.6 247.3,85.3 247.6,87.7 248.0,87.6 248.4,86.4 248.8,81.7 249.1,86.2 249.5,83.5 249.9,86.3 250.3,85.4 250.6,86.7 251.0,88.9 251.4,87.1 251.8,89.4 252.1,86.4 252.5,87.8 252.9,99.7 253.3,96.2 253.7,90.7 254.0,91.1 254.4,91.9 254.8,93.9 255.2,92.5 255.5,94.0 255.9,90.8 256.3,95.4 256.7,98.5 257.0,96.2 257.4,93.4 257.8,52.3 258.2,58.2 258.6,80.2 258.9,85.3 259.3,84.4 259.7,87.7 260.1,93.2 260.4,92.8 260.8,93.3 261.2,95.4 261.6,95.7 261.9,99.8 262.3,99.0 262.7,99.2 263.4,96.4 263.8,94.2 264.2,97.0 264.6,97.5 265.0,98.5 265.3,99.6 265.7,100.5 266.1,98.3 266.5,100.7 266.8,102.8 267.2,93.2 267.6,93.8 268.0,100.2 268.3,100.8 268.7,99.1 269.1,98.6 269.5,98.0 269.9,95.2 270.2,85.2 270.6,74.8 271.0,70.2 271.4,78.7 271.7,68.2 272.1,59.7 272.5,72.0 272.9,72.3 273.2,74.3 273.6,74.1 274.0,72.0 274.4,73.0 274.7,75.8 275.1,77.2 275.5,76.2 275.9,77.5 276.3,80.5 276.6,80.7 277.0,79.9 277.4,79.9 277.8,77.6 278.1,77.7 278.5,73.2 278.9,79.8 279.3,80.6 279.6,79.6 280.0,75.1 280.4,67.4 280.8,70.6 281.2,70.3 281.5,79.4 281.9,82.6 282.3,85.4 282.7,94.6 283.0,93.3 283.4,91.1 283.8,90.4 284.2,93.8 284.5,99.7 284.9,97.4 285.3,100.7 285.7,102.1 286.1,102.3 286.4,105.7 286.8,105.5 287.2,109.2 287.6,112.1 287.9,117.7 288.3,117.8 288.7,118.2 289.1,117.3 289.4,117.3 289.8,115.4 290.2,114.1 290.6,112.6 290.9,101.5 291.3,99.7 291.7,103.2 292.1,104.5 292.5,102.5 292.8,102.1 293.2,102.6 293.6,101.3 294.0,106.0 294.3,103.8 294.7,105.6 295.1,103.6 295.5,100.9 295.8,101.6 296.2,99.5 296.6,100.3 297.0,104.1 297.4,104.6 297.7,107.6 298.1,111.9 298.5,111.9 298.9,111.5 299.2,111.1 299.6,111.0 300.0,105.8 300.4,106.7 300.7,106.6 301.1,110.5 301.5,113.4 301.9,110.5 302.2,110.9 302.6,111.1 303.0,112.0 303.4,115.7 303.8,109.6 304.1,114.7 304.5,120.2 304.9,121.2 305.3,121.7 305.6,126.0 306.0,127.5 306.4,126.3 306.8,126.2 307.1,123.6 307.5,124.8 307.9,127.6 308.3,129.9 308.7,130.5 309.0,132.8 309.4,134.0 309.8,132.2 310.2,132.3 310.5,138.4 310.9,138.4 311.3,137.0 311.7,135.5 312.0,135.1 312.4,133.2 312.8,139.2 313.2,138.0 313.6,141.3 313.9,140.7 314.3,142.4 314.7,145.0 315.1,145.1 315.4,146.4 315.8,146.8 316.2,146.2 316.6,146.3 316.9,142.8 317.3,142.0 317.7,138.7 318.1,126.6 318.4,142.5 318.8,145.7 319.2,149.4 319.6,149.5 320.0,150.8 320.3,151.5 320.7,145.7 321.1,145.4 321.5,143.7 321.8,145.7 322.2,130.2 322.6,79.8 323.0,107.0 323.3,103.2 323.7,103.3 324.1,102.4 324.5,105.1 324.9,109.1 325.2,108.1 325.6,111.7 326.0,110.2 326.4,106.7 326.7,107.7 327.1,112.0 327.5,117.8 327.9,116.1 328.2,120.2 328.6,121.5 329.0,119.3 329.4,122.2 329.7,119.5 330.1,118.5 330.5,120.3 330.9,119.6 331.3,117.6 331.6,120.6 332.0,121.1 332.4,120.7 332.8,120.0 333.1,122.9 333.5,118.8 333.9,116.0 334.3,115.4 334.6,112.4 335.0,116.3 335.4,114.9 335.8,114.4 336.2,115.3 336.5,114.0 336.9,112.5 337.3,110.8 337.7,112.9 338.0,121.4 338.4,117.0 338.8,117.4 339.2,117.1 339.5,119.6 339.9,116.6 340.3,113.0 340.7,112.9 341.1,113.9 341.4,116.7 341.8,116.9 342.2,112.7 342.6,107.5 342.9,100.4 343.3,98.4 343.7,97.0 344.1,97.3 344.4,103.0 344.8,103.6 345.2,106.6 345.6,108.7 345.9,108.6 346.7,106.6 347.1,107.0 347.5,108.1 347.8,105.6 348.2,111.7 348.6,111.8 349.0,111.7 349.3,110.8 349.7,110.2 350.1,111.1 350.5,113.5 350.8,110.3 351.2,108.4 351.6,117.0 352.0,118.7 352.4,119.8 352.7,117.9 353.1,121.0 353.5,121.2 353.9,121.0 354.2,117.2 355.0,116.3 355.4,116.3 355.7,113.8 356.1,115.7 356.5,118.5 356.9,118.7 357.2,116.2 357.6,113.6 358.0,109.9 358.8,106.3 359.1,108.3 359.5,109.7 359.9,104.6 360.3,111.6 360.6,115.1 361.0,122.2 361.4,123.3 361.8,100.8 362.1,120.1 362.5,124.1 362.9,124.7 363.3,126.3 363.7,123.9 364.0,124.2 364.4,121.6 364.8,122.5 365.2,123.1 365.5,126.8 365.9,130.7 366.3,130.1 366.7,130.5 367.0,131.1 367.4,129.4 367.8,131.5 368.2,130.4 368.5,133.3 368.9,133.5 369.3,132.8 369.7,130.5 370.1,132.9 370.4,145.3 370.8,147.2 371.2,149.3 371.6,149.3 371.9,144.6 372.3,133.4 372.7,135.4 373.1,139.4 373.4,139.8 373.8,140.2 374.2,141.9 374.6,143.3 375.0,148.7 375.3,148.3 375.7,149.7 376.1,153.4 376.5,152.8 376.8,150.6 377.2,150.1 377.6,149.5 378.0,141.1 378.3,128.8 378.7,121.8 379.1,122.3 379.5,120.2 379.9,132.4 380.2,132.1 380.6,132.0 381.0,132.3 381.4,130.1 381.7,130.8 382.1,130.0 382.5,123.8 382.9,124.0 383.2,127.2 383.6,127.2 384.0,128.3 384.4,130.5 384.7,127.0 385.1,128.0 385.5,131.5 385.9,130.5 386.3,131.2 386.6,133.2 387.0,121.3 387.4,126.7 387.8,127.5 388.1,132.5 388.5,133.7 388.9,137.5 389.3,138.7 389.6,140.3 390.0,145.4 390.4,147.4 390.8,135.5 391.2,124.5 391.5,105.8 391.9,99.5 392.3,97.3 392.7,103.7 393.0,105.4 393.4,102.5 393.8,98.1 394.2,100.1 394.5,100.0 394.9,99.4 395.3,99.7 395.7,100.8 396.0,101.5 396.4,105.5 396.8,101.6 397.2,98.5 397.6,93.8 397.9,88.4 398.3,81.0 398.7,81.8 399.1,86.1 399.4,85.9 399.8,78.2 400.2,83.3 400.6,83.7 400.9,80.1 401.3,80.3 401.7,78.5 402.1,77.6 402.5,78.2 402.8,77.7 403.2,79.4 403.6,78.5 404.0,81.9 404.3,80.3 404.7,78.9 405.1,80.6 405.5,81.3 405.8,79.0 406.2,80.7 406.6,85.6 407.0,88.2 407.4,86.2 407.7,76.3 408.1,67.6 408.5,70.2 408.9,82.5 409.2,81.5 409.6,81.3 410.0,81.8 410.4,79.6 410.7,79.4 411.1,78.9 411.5,79.0 411.9,77.0 412.2,76.3 412.6,73.3 413.0,74.1 413.4,72.8 413.8,68.4 414.1,67.1 414.5,78.6 414.9,77.2 415.3,78.0 415.6,77.5 416.0,71.8 416.4,74.7 416.8,64.5 417.1,56.1 417.5,58.9 417.9,59.5 418.3,69.0 418.7,68.0 419.0,69.0 419.4,69.9 419.8,71.6 420.2,75.2 420.5,63.1 420.9,56.5 421.3,48.5 421.7,46.7 422.0,59.6 422.4,58.3 422.8,62.4 423.2,61.1 423.5,74.0 423.9,65.7 424.3,70.5 424.7,70.9 425.1,70.0 425.4,72.1 425.8,73.0 426.2,74.4 426.6,72.8 426.9,74.7 427.3,76.1 427.7,77.0 428.1,72.3 428.4,74.5 428.8,77.7 429.2,80.8 429.6,83.5 430.0,78.9 430.3,82.9 430.7,83.2 431.1,85.1 431.5,89.9 431.8,84.1 432.2,84.2 432.6,85.1 433.0,73.1 433.3,76.2 433.7,82.9 434.1,82.4 434.5,81.2 434.8,82.8 435.2,82.3 435.6,83.3 436.0,84.6 436.4,84.4 436.7,88.4 437.1,85.3 437.5,74.7 437.9,76.3 438.2,68.7 438.6,72.1 439.0,76.1 439.4,73.4 439.7,73.1 440.1,76.0 440.5,78.5 440.9,78.2 441.3,76.4 441.6,77.4 442.0,76.3 442.4,77.0 442.8,77.5 443.5,77.0 443.9,75.6 444.3,75.4 444.6,73.2 445.0,71.4 445.4,70.3 445.8,69.3 446.2,69.8 446.5,63.5 446.9,62.0 447.3,66.7 447.7,62.2 448.0,62.2 448.4,61.5 448.8,63.5 449.2,65.2 449.5,64.9 449.9,70.1 450.3,68.8 450.7,69.4 451.0,70.9 451.4,68.9 451.8,74.6 452.2,50.4 452.6,57.4 452.9,59.8 453.3,64.3 453.7,66.9 454.1,65.3 454.4,61.8 454.8,60.7 455.2,63.1 455.6,69.2 455.9,69.1 456.3,71.3 456.7,71.3 457.1,68.7 457.5,69.4 457.8,65.5 458.2,44.9 458.6,50.9 459.0,51.7 459.3,59.7 459.7,60.5 460.1,62.5 460.5,65.8 460.8,54.3 461.2,54.2 461.6,49.7 462.0,52.7 462.3,51.6 462.7,53.5 463.1,51.8 463.5,50.2 463.9,47.5 464.2,53.1 464.6,53.7 465.0,47.5 465.4,49.7 465.7,53.6 466.1,55.2 466.5,54.5 466.9,56.8 467.2,54.5 467.6,60.9 468.0,64.7 468.0,65.9 467.6,65.3 467.2,62.0 466.9,60.9 466.5,61.1 466.1,55.8 465.7,56.4 465.4,55.9 465.0,54.7 464.6,57.3 464.2,55.6 463.9,53.2 463.5,52.4 463.1,54.2 462.7,57.7 462.3,57.7 462.0,56.3 461.6,56.1 461.2,57.8 460.8,72.0 460.5,71.5 460.1,67.6 459.7,67.0 459.3,61.5 459.0,61.8 458.6,60.5 458.2,67.6 457.8,73.0 457.5,72.3 457.1,71.8 456.7,71.6 456.3,72.0 455.9,72.4 455.6,69.4 455.2,69.4 454.8,66.8 454.4,69.2 454.1,69.2 453.7,67.4 453.3,67.4 452.9,65.2 452.6,65.4 452.2,74.0 451.8,77.3 451.4,77.0 451.0,74.0 450.7,73.5 450.3,73.9 449.9,71.4 449.5,70.9 449.2,68.0 448.8,69.4 448.4,69.0 448.0,67.3 447.7,72.7 447.3,70.2 446.9,67.5 446.5,68.5 446.2,71.4 445.8,71.5 445.4,71.8 445.0,73.6 444.6,75.8 444.3,77.0 443.9,77.7 443.5,78.1 442.8,78.5 442.4,79.3 442.0,79.1 441.6,78.1 441.3,79.5 440.9,79.4 440.5,80.6 440.1,81.6 439.7,73.7 439.4,77.3 439.0,80.3 438.6,77.7 438.2,81.0 437.9,80.9 437.5,86.1 437.1,92.6 436.7,92.4 436.4,90.1 436.0,86.5 435.6,89.0 435.2,86.6 434.8,87.4 434.5,86.8 434.1,84.7 433.7,87.5 433.3,86.3 433.0,87.5 432.6,87.6 432.2,85.9 431.8,91.3 431.5,91.7 431.1,91.6 430.7,87.7 430.3,83.6 430.0,87.0 429.6,86.1 429.2,84.0 428.8,81.8 428.4,78.0 428.1,77.3 427.7,78.0 427.3,78.9 426.9,79.6 426.6,76.8 426.2,77.1 425.8,76.1 425.4,76.3 425.1,75.6 424.7,71.9 424.3,73.5 423.9,71.9 423.5,78.6 423.2,76.2 422.8,65.7 422.4,64.3 422.0,60.7 421.7,60.7 421.3,61.1 420.9,68.5 420.5,77.9 420.2,78.7 419.8,78.3 419.4,72.8 419.0,72.5 418.7,71.4 418.3,70.1 417.9,69.1 417.5,65.7 417.1,71.4 416.8,81.1 416.4,79.7 416.0,78.9 415.6,79.6 415.3,80.7 414.9,81.1 414.5,79.6 414.1,78.9 413.8,77.2 413.4,78.5 413.0,78.3 412.6,76.8 412.2,80.0 411.9,81.3 411.5,82.5 411.1,82.0 410.7,79.8 410.4,81.9 410.0,82.2 409.6,81.9 409.2,82.8 408.9,84.0 408.5,84.0 408.1,78.9 407.7,87.1 407.4,89.4 407.0,90.1 406.6,92.2 406.2,86.0 405.8,84.6 405.5,84.1 405.1,84.5 404.7,83.6 404.3,86.6 404.0,86.6 403.6,85.5 403.2,80.6 402.8,80.6 402.5,80.3 402.1,80.2 401.7,80.8 401.3,81.0 400.9,84.0 400.6,84.6 400.2,86.2 399.8,84.9 399.4,87.4 399.1,89.4 398.7,87.5 398.3,89.2 397.9,95.0 397.6,100.5 397.2,108.5 396.8,106.6 396.4,107.5 396.0,106.6 395.7,103.0 395.3,102.9 394.9,102.7 394.5,102.3 394.2,101.9 393.8,104.0 393.4,107.9 393.0,108.0 392.7,107.5 392.3,106.0 391.9,107.4 391.5,128.4 391.2,139.1 390.8,150.7 390.4,150.2 390.0,149.3 389.6,147.9 389.3,141.7 388.9,142.4 388.5,140.6 388.1,139.6 387.8,133.1 387.4,129.8 387.0,134.9 386.6,135.4 386.3,135.8 385.9,134.8 385.5,132.1 385.1,133.1 384.7,131.3 384.4,134.1 384.0,133.7 383.6,129.8 383.2,129.9 382.9,127.0 382.5,133.7 382.1,135.6 381.7,132.8 381.4,133.0 381.0,133.1 380.6,134.7 380.2,133.3 379.9,133.8 379.5,134.5 379.1,133.4 378.7,137.7 378.3,148.5 378.0,155.3 377.6,156.6 377.2,150.9 376.8,153.2 376.5,154.0 376.1,154.3 375.7,155.4 375.3,152.7 375.0,155.5 374.6,149.8 374.2,145.2 373.8,145.0 373.4,144.3 373.1,146.1 372.7,147.1 372.3,147.8 371.9,153.2 371.6,151.9 371.2,153.5 370.8,150.4 370.4,148.8 370.1,146.5 369.7,136.0 369.3,137.6 368.9,137.4 368.5,137.8 368.2,137.1 367.8,134.0 367.4,134.8 367.0,134.5 366.7,132.1 366.3,133.2 365.9,131.5 365.5,131.5 365.2,127.3 364.8,125.8 364.4,126.2 364.0,124.6 363.7,126.5 363.3,128.8 362.9,129.1 362.5,127.9 362.1,126.7 361.8,126.1 361.4,127.7 361.0,127.0 360.6,125.1 360.3,115.2 359.9,113.5 359.5,113.3 359.1,111.1 358.8,112.3 358.0,114.1 357.6,117.9 357.2,120.6 356.9,122.7 356.5,121.1 356.1,120.6 355.7,120.5 355.4,120.0 355.0,118.2 354.2,121.9 353.9,122.1 353.5,125.9 353.1,126.2 352.7,122.6 352.4,126.0 352.0,122.3 351.6,121.6 351.2,118.2 350.8,116.6 350.5,116.3 350.1,114.7 349.7,113.7 349.3,112.0 349.0,112.5 348.6,114.8 348.2,114.6 347.8,112.3 347.5,111.8 347.1,109.9 346.7,112.0 345.9,110.1 345.6,109.3 345.2,110.6 344.8,107.2 344.4,105.9 344.1,105.3 343.7,100.1 343.3,103.4 342.9,109.2 342.6,109.4 342.2,119.9 341.8,119.1 341.4,118.4 341.1,118.8 340.7,114.1 340.3,116.9 339.9,121.2 339.5,121.8 339.2,122.9 338.8,118.5 338.4,122.8 338.0,123.9 337.7,120.2 337.3,116.1 336.9,115.0 336.5,120.6 336.2,120.2 335.8,117.0 335.4,117.8 335.0,118.0 334.6,117.6 334.3,120.5 333.9,120.8 333.5,124.1 333.1,124.3 332.8,125.6 332.4,123.6 332.0,123.9 331.6,124.3 331.3,122.6 330.9,123.8 330.5,126.8 330.1,122.6 329.7,127.7 329.4,125.7 329.0,124.1 328.6,124.6 328.2,125.0 327.9,125.1 327.5,120.7 327.1,120.0 326.7,112.3 326.4,113.2 326.0,115.7 325.6,113.9 325.2,114.7 324.9,111.9 324.5,112.7 324.1,106.1 323.7,106.0 323.3,107.8 323.0,108.8 322.6,134.7 322.2,149.7 321.8,150.7 321.5,149.6 321.1,148.2 320.7,153.0 320.3,155.5 320.0,154.0 319.6,151.1 319.2,151.6 318.8,150.6 318.4,146.4 318.1,144.6 317.7,144.4 317.3,143.9 316.9,146.9 316.6,148.7 316.2,147.6 315.8,149.1 315.4,148.5 315.1,147.8 314.7,147.2 314.3,147.7 313.9,146.6 313.6,142.5 313.2,144.5 312.8,142.6 312.4,140.7 312.0,137.9 311.7,138.0 311.3,140.0 310.9,140.5 310.5,140.5 310.2,139.2 309.8,134.4 309.4,142.2 309.0,137.3 308.7,135.2 308.3,135.1 307.9,131.0 307.5,129.1 307.1,127.6 306.8,128.8 306.4,128.8 306.0,130.8 305.6,129.8 305.3,128.0 304.9,124.4 304.5,124.3 304.1,121.3 303.8,117.7 303.4,117.6 303.0,117.4 302.6,115.7 302.2,112.3 301.9,115.8 301.5,115.8 301.1,115.1 300.7,111.2 300.4,109.7 300.0,111.4 299.6,111.2 299.2,111.5 298.9,112.0 298.5,112.4 298.1,113.3 297.7,112.9 297.4,110.9 297.0,106.6 296.6,104.4 296.2,103.2 295.8,103.0 295.5,107.3 295.1,108.2 294.7,108.3 294.3,107.7 294.0,106.1 293.6,106.1 293.2,104.6 292.8,103.9 292.5,106.9 292.1,107.4 291.7,106.7 291.3,104.9 290.9,113.9 290.6,116.2 290.2,118.4 289.8,120.5 289.4,118.2 289.1,119.5 288.7,121.2 288.3,121.5 287.9,120.3 287.6,118.7 287.2,112.4 286.8,109.6 286.4,109.9 286.1,110.0 285.7,106.9 285.3,106.3 284.9,101.3 284.5,101.1 284.2,103.9 283.8,94.5 283.4,94.5 283.0,96.9 282.7,97.8 282.3,94.7 281.9,88.0 281.5,84.2 281.2,80.9 280.8,78.5 280.4,77.2 280.0,79.8 279.6,82.6 279.3,83.5 278.9,82.6 278.5,80.1 278.1,81.1 277.8,80.3 277.4,81.8 277.0,81.8 276.6,84.0 276.3,83.8 275.9,82.1 275.5,87.1 275.1,87.4 274.7,83.2 274.4,77.3 274.0,78.8 273.6,78.6 273.2,74.8 272.9,77.0 272.5,75.9 272.1,79.5 271.7,83.4 271.4,80.5 271.0,81.1 270.6,84.5 270.2,105.7 269.9,103.5 269.5,102.6 269.1,102.0 268.7,101.0 268.3,107.1 268.0,105.1 267.6,104.5 267.2,108.5 266.8,106.4 266.5,106.9 266.1,103.4 265.7,104.2 265.3,102.1 265.0,100.4 264.6,101.0 264.2,100.7 263.8,99.5 263.4,102.0 262.7,101.3 262.3,101.3 261.9,101.4 261.6,102.0 261.2,97.9 260.8,96.5 260.4,97.7 260.1,98.2 259.7,95.9 259.3,91.3 258.9,87.2 258.6,86.3 258.2,84.7 257.8,97.5 257.4,97.2 257.0,99.5 256.7,101.1 256.3,98.0 255.9,95.9 255.5,96.1 255.2,96.5 254.8,95.6 254.4,96.4 254.0,96.3 253.7,101.0 253.3,102.7 252.9,103.5 252.5,100.2 252.1,90.1 251.8,90.8 251.4,91.2 251.0,89.3 250.6,89.3 250.3,87.9 249.9,87.5 249.5,88.0 249.1,88.8 248.8,89.0 248.4,88.3 248.0,87.9 247.6,90.6 247.3,90.0 246.9,91.2 246.5,86.0 246.1,82.8 245.7,86.9 245.4,87.2 245.0,84.6 244.6,82.4 244.2,84.1 243.9,84.8 243.5,85.0 243.1,85.0 242.7,92.5 242.4,93.0 242.0,99.4 241.6,93.6 241.2,98.1 240.8,107.5 240.5,109.4 240.1,109.2 239.7,110.0 239.3,110.4 239.0,109.0 238.6,112.3 238.2,115.8 237.8,116.4 237.5,113.9 237.1,106.7 236.7,106.9 236.3,106.1 235.9,103.3 235.6,105.9 235.2,108.1 234.8,110.6 234.4,107.9 234.1,107.0 233.7,105.8 233.3,105.6 232.9,104.3 232.6,103.9 232.2,103.3 231.8,100.7 231.4,100.7 231.1,99.6 230.7,98.8 230.3,96.1 229.9,98.0 229.5,98.3 229.2,98.6 228.8,99.2 228.4,93.2 228.0,90.9 227.7,89.4 227.3,91.4 226.9,96.1 226.5,100.2 226.2,102.5 225.8,102.8 225.4,104.1 225.0,101.2 224.6,95.2 224.3,94.6 223.9,87.8 223.5,88.1 223.1,82.5 222.8,84.1 222.4,84.0 222.0,82.3 221.6,83.3 221.3,81.2 220.9,81.4 220.5,80.1 220.1,71.7 219.8,70.3 219.4,67.5 219.0,70.5 218.6,72.0 218.2,71.5 217.9,73.7 217.5,74.9 217.1,80.3 216.7,80.6 216.4,79.7 216.0,75.8 215.6,71.6 215.2,67.7 214.9,71.1 214.5,69.2 214.1,75.9 213.7,74.7 213.3,73.8 213.0,72.6 212.6,70.2 212.2,75.1 211.8,79.4 211.5,81.2 211.1,82.0 210.7,81.1 210.3,81.3 210.0,80.1 209.6,73.3 209.2,79.0 208.8,79.0 208.4,76.9 208.1,76.0 207.7,71.9 207.3,70.4 206.9,58.0 206.6,59.2 206.2,58.2 205.8,58.2 205.4,55.8 205.1,52.0 204.7,55.6 204.3,56.6 203.9,52.7 203.6,47.5 203.2,41.1 202.8,40.8 202.4,40.2 202.0,42.6 201.7,41.8 201.3,41.3 200.9,50.0 200.5,46.8 200.2,47.7 199.8,52.1 199.0,56.3 198.7,57.4 198.3,55.1 197.9,59.5 197.5,57.3 197.1,58.2 196.8,56.3 196.4,56.2 196.0,54.5 195.6,49.2 195.3,49.8 194.9,50.5 194.5,51.0 194.1,49.7 193.8,44.8 193.4,47.4 193.0,50.1 192.6,52.7 192.3,56.1 191.9,57.3 191.5,72.7 191.1,78.8 190.7,78.6 190.4,79.0 190.0,76.6 189.6,79.9 189.2,78.6 188.9,79.4 188.5,76.0 188.1,74.9 187.7,76.1 187.4,75.4 187.0,74.5 186.6,74.2 186.2,74.3 185.8,71.0 185.5,69.0 185.1,68.0 184.7,63.9 184.3,60.7 184.0,59.2 183.6,58.6 183.2,59.6 182.8,57.1 182.5,55.2 182.1,49.2 181.7,47.6 181.3,47.9 180.9,48.2 180.6,47.8 180.2,46.2 179.8,45.2 179.4,46.6 179.1,42.7 178.7,42.0 178.3,43.7 177.9,43.2 177.6,44.5 177.2,42.3 176.8,41.5 176.4,40.0 176.1,35.4 175.7,34.4 175.3,34.1 174.9,32.1 174.5,30.1 174.2,27.2 173.8,27.4 173.4,27.9 173.0,34.3 172.7,35.6 172.3,34.6 171.9,38.9 171.5,27.7 171.2,32.7 170.8,36.2 170.4,36.1 170.0,35.3 169.6,41.8 169.3,48.3 168.9,54.7 168.5,53.8 168.1,51.5 167.8,47.9 167.4,54.3 167.0,61.0 166.6,60.6 166.3,58.8 165.9,58.3 165.5,57.3 165.1,59.2 164.8,61.5 164.4,66.5 164.0,71.1 163.6,70.4 163.2,63.9 162.9,62.1 162.5,64.8 162.1,63.6 161.7,60.3 161.4,57.5 161.0,62.4 160.6,69.6 160.2,73.8 159.9,76.7 159.5,74.4 159.1,76.7 158.7,88.4 158.3,94.1 158.0,94.8 157.6,91.8 157.2,92.1 156.8,89.9 156.5,89.9 156.1,107.1 155.7,112.9 155.3,116.1 155.0,115.5 154.6,115.1 154.2,111.1 153.8,105.7 153.5,105.4 153.1,104.7 152.7,103.5 152.3,104.9 151.9,100.8 151.6,100.7 151.2,104.5 150.8,103.8 150.4,102.3 150.1,99.8 149.7,101.3 149.3,102.6 148.9,103.3 148.6,105.0 148.2,102.4 147.8,102.0 147.4,100.9 147.0,99.9 146.7,96.6 146.3,96.5 145.9,97.6 145.5,95.8 145.2,87.5 144.8,85.8 144.4,81.1 144.0,81.7 143.7,82.4 143.3,79.2 142.9,79.9 142.5,76.3 142.1,81.1 141.8,78.8 141.4,77.7 141.0,76.8 140.6,77.0 140.3,77.8 139.9,75.4 139.5,75.4 139.1,92.0 138.8,91.3 138.4,91.6 138.0,91.6 137.6,92.0 137.3,91.8 136.9,89.0 136.5,91.6 136.1,96.2 135.7,101.9 135.4,108.1 135.0,105.5 134.6,107.8 134.2,106.4 133.9,111.7 133.5,109.0 133.1,108.3 132.7,107.2 132.4,100.9 132.0,98.0 131.6,97.1 131.2,100.3 130.8,100.8 130.5,101.3 130.1,99.4 129.7,102.3 129.3,102.6 129.0,101.9 128.6,102.0 128.2,102.0 127.8,108.1 127.5,110.3 127.1,108.7 126.7,108.6 126.3,110.6 126.0,110.0 125.6,111.5 125.2,112.7 124.8,111.9 124.4,111.5 124.1,108.6 123.7,110.1 123.3,113.9 122.9,113.5 122.6,114.9 122.2,117.0 121.8,116.2 121.4,115.9 121.1,112.8 120.7,115.7 120.3,113.5 119.9,110.3 119.5,116.7 119.2,117.6 118.8,113.7 118.4,114.1 118.0,114.4 117.7,115.0 116.9,116.2 116.5,117.4 116.2,118.5 115.8,116.9 115.4,115.7 115.0,116.6 114.6,118.1 114.3,120.2 113.9,120.6 113.5,119.4 113.1,121.9 112.8,120.9 112.4,121.7 112.0,122.2 111.6,121.0 111.3,122.4 110.9,121.7 110.5,122.1 110.1,120.0 109.8,119.8 109.4,122.0 109.0,122.7 108.6,122.2 108.2,120.1 107.9,119.8 107.5,120.9 107.1,120.9 106.7,121.0 106.4,120.6 106.0,118.1 105.6,120.0 105.2,118.8 104.9,121.6 104.5,121.7 104.1,120.5 103.7,120.6 103.3,120.7 103.0,121.0 102.6,119.2 102.2,119.2 101.8,119.3 101.1,119.7 100.7,119.9 100.3,119.9 100.0,121.6 99.6,119.2 99.2,129.3 98.8,131.4 98.5,127.6 98.1,126.0 97.7,126.0 97.3,124.3 96.9,124.3 96.6,124.7 96.2,124.0 95.8,119.6 95.4,119.0 95.1,116.5 94.7,114.9 94.3,116.7 93.9,117.1 93.6,113.7 93.2,114.1 92.8,114.0 92.4,112.6 92.0,111.4 91.7,115.9 91.3,117.4 90.9,118.4 90.5,114.9 90.2,114.4 89.8,114.8 89.4,111.1 89.0,111.5 88.7,113.3 88.3,113.3 87.9,114.2 87.5,115.0 87.2,113.2 86.8,116.4 86.4,116.5 86.0,117.8 85.6,117.9 85.3,119.7 84.9,120.4 84.5,119.2 84.1,120.5 83.8,120.8 83.4,121.5 83.0,120.6 82.6,118.7 82.3,126.3 81.9,126.2 81.5,125.0 81.1,124.2 80.7,119.5 80.4,120.7 80.0,120.8 79.6,120.9 79.2,118.6 78.9,118.3 78.5,119.3 78.1,120.3 77.7,120.5 77.4,123.1 77.0,126.1 76.6,133.1 76.2,139.6 75.8,140.3 75.5,140.5 75.1,138.0 74.7,139.5 74.3,134.5 74.0,134.5 73.6,135.1 73.2,132.1 72.8,132.9 72.1,133.3 71.7,134.5 71.3,133.5 71.0,136.3 70.6,137.5 70.2,142.4 69.8,144.0 69.4,145.4 69.1,145.8 68.7,145.2 68.3,144.9 67.9,144.5 67.6,141.9 67.2,144.3 66.8,144.6 66.4,145.7 66.1,141.6 65.7,140.8 65.3,142.7 64.9,139.8 64.5,141.9 64.2,139.0 63.8,138.5 63.4,138.0 63.0,137.9 62.7,140.2 62.3,134.5 61.9,134.7 61.5,139.8 61.2,138.7 60.8,138.8 60.4,134.4 60.0,131.3 59.7,131.6 59.3,130.8 58.9,132.0 58.5,129.0 58.1,131.9 57.8,135.5 57.4,133.5 57.0,139.3 56.6,140.8 56.3,143.3 55.9,140.8 55.5,137.2 55.1,138.1 54.8,138.0 54.4,145.5 54.0,145.9"/><polygon class="fB band" points="54.0,145.6 54.4,135.1 54.8,132.3 55.1,132.0 55.5,134.0 55.9,134.1 56.3,141.5 56.6,139.8 57.0,139.3 57.4,140.2 57.8,141.3 58.1,136.3 58.5,124.6 58.9,132.5 59.3,135.7 59.7,139.1 60.0,138.5 60.4,139.5 60.8,143.6 61.2,147.7 61.5,147.5 61.9,142.0 62.3,139.8 62.7,144.5 63.0,146.6 63.4,145.7 63.8,150.1 64.2,150.9 64.5,151.5 64.9,151.5 65.3,151.4 65.7,148.6 66.1,154.0 66.4,151.0 66.8,154.7 67.2,153.9 67.6,152.5 67.9,152.3 68.3,151.6 68.7,154.2 69.1,153.2 69.4,156.6 69.8,157.8 70.2,156.3 70.6,155.5 71.0,155.0 71.3,155.0 71.7,155.1 72.1,153.7 72.8,147.9 73.2,150.1 73.6,155.6 74.0,155.6 74.3,157.0 74.7,157.4 75.1,158.5 75.5,158.4 75.8,161.7 76.2,161.8 76.6,159.2 77.0,159.7 77.4,155.3 77.7,158.6 78.1,158.6 78.5,157.4 78.9,157.0 79.2,156.0 79.6,157.3 80.0,160.7 80.4,159.3 80.7,158.0 81.1,158.3 81.5,163.9 81.9,165.3 82.3,163.8 82.6,165.2 83.0,164.6 83.4,169.0 83.8,169.8 84.1,167.9 84.5,168.2 84.9,165.4 85.3,165.4 85.6,158.6 86.0,159.6 86.4,160.8 86.8,155.8 87.2,153.1 87.5,153.9 87.9,150.9 88.3,151.2 88.7,145.1 89.0,137.8 89.4,139.7 89.8,142.1 90.2,147.0 90.5,147.5 90.9,146.7 91.3,143.5 91.7,138.5 92.0,139.0 92.4,138.2 92.8,142.1 93.2,143.5 93.6,143.2 93.9,143.1 94.3,144.8 94.7,143.5 95.1,144.5 95.4,145.6 95.8,147.4 96.2,146.3 96.6,151.6 96.9,148.8 97.3,150.0 97.7,153.0 98.1,152.2 98.5,154.2 98.8,159.6 99.2,153.5 99.6,152.2 100.0,153.5 100.3,155.6 100.7,157.5 101.1,156.9 101.8,156.2 102.2,156.7 102.6,155.8 103.0,157.8 103.3,157.7 103.7,156.0 104.1,156.1 104.5,157.1 104.9,158.0 105.2,158.5 105.6,159.3 106.0,159.6 106.4,160.3 106.7,161.8 107.1,163.6 107.5,161.3 107.9,159.0 108.2,160.8 108.6,163.6 109.0,164.3 109.4,163.6 109.8,163.2 110.1,162.8 110.5,164.3 110.9,162.6 111.3,162.8 111.6,165.5 112.0,162.6 112.4,164.2 112.8,162.9 113.1,163.7 113.5,163.3 113.9,163.5 114.3,162.5 114.6,156.4 115.0,151.1 115.4,151.7 115.8,152.2 116.2,154.8 116.5,154.6 116.9,153.5 117.7,152.9 118.0,153.1 118.4,152.7 118.8,152.3 119.2,152.3 119.5,141.5 119.9,142.9 120.3,147.2 120.7,150.1 121.1,151.5 121.4,152.7 121.8,155.3 122.2,155.3 122.6,152.3 122.9,151.6 123.3,146.3 123.7,145.4 124.1,139.5 124.4,144.2 124.8,147.5 125.2,144.8 125.6,146.2 126.0,145.8 126.3,145.1 126.7,147.0 127.1,146.3 127.5,145.2 127.8,134.8 128.2,132.0 128.6,131.3 129.0,130.3 129.3,137.0 129.7,135.6 130.1,134.5 130.5,136.0 130.8,133.8 131.2,132.3 131.6,126.9 132.0,131.7 132.4,131.5 132.7,133.2 133.1,139.6 133.5,138.5 133.9,140.9 134.2,143.6 134.6,145.7 135.0,146.1 135.4,139.9 135.7,137.5 136.1,131.1 136.5,120.6 136.9,120.5 137.3,125.3 137.6,134.5 138.0,132.9 138.4,138.5 138.8,138.5 139.1,122.8 139.5,119.9 139.9,128.2 140.3,129.6 140.6,131.8 141.0,131.3 141.4,130.7 141.8,128.3 142.1,128.7 142.5,127.3 142.9,128.0 143.3,133.6 143.7,99.2 144.0,74.5 144.4,87.6 144.8,94.9 145.2,97.9 145.5,102.0 145.9,108.3 146.3,110.2 146.7,109.6 147.0,107.9 147.4,94.7 147.8,112.1 148.2,116.1 148.6,104.2 148.9,117.0 149.3,116.6 149.7,114.3 150.1,116.9 150.4,117.2 150.8,115.7 151.2,112.8 151.6,108.6 151.9,115.8 152.3,117.8 152.7,120.6 153.1,120.6 153.5,121.8 153.8,120.9 154.2,124.0 154.6,126.6 155.0,127.1 155.3,124.9 155.7,125.8 156.1,117.7 156.5,118.5 156.8,115.8 157.2,115.6 157.6,119.4 158.0,120.0 158.3,117.0 158.7,102.4 159.1,92.1 159.5,92.4 159.9,100.0 160.2,90.4 160.6,82.4 161.0,74.9 161.4,69.3 161.7,75.7 162.1,76.6 162.5,74.7 162.9,74.8 163.2,75.6 163.6,81.2 164.0,87.1 164.4,82.5 164.8,81.6 165.1,80.7 165.5,78.8 165.9,80.8 166.3,82.9 166.6,81.4 167.0,79.9 167.4,69.1 167.8,75.3 168.1,76.2 168.5,80.1 168.9,79.6 169.3,80.5 169.6,77.6 170.0,76.7 170.4,76.4 170.8,75.5 171.2,72.9 171.5,73.9 171.9,73.0 172.3,70.4 172.7,69.8 173.0,63.1 173.4,61.0 173.8,64.2 174.2,66.7 174.5,66.5 174.9,69.6 175.3,72.9 175.7,74.8 176.1,74.8 176.4,73.6 176.8,75.9 177.2,78.9 177.6,81.6 177.9,81.8 178.3,79.0 178.7,78.4 179.1,78.3 179.4,80.2 179.8,79.7 180.2,80.7 180.6,83.2 180.9,88.0 181.3,87.7 181.7,87.3 182.1,85.6 182.5,92.2 182.8,96.2 183.2,95.7 183.6,101.7 184.0,98.6 184.3,103.1 184.7,104.7 185.1,101.8 185.5,112.3 185.8,113.7 186.2,116.3 186.6,107.2 187.0,109.9 187.4,112.4 187.7,113.7 188.1,108.9 188.5,116.4 188.9,118.1 189.2,117.8 189.6,113.7 190.0,112.6 190.4,116.2 190.7,114.2 191.1,111.3 191.5,91.1 191.9,87.5 192.3,89.4 192.6,85.5 193.0,80.9 193.4,81.3 193.8,79.5 194.1,83.0 194.5,86.7 194.9,85.8 195.3,84.4 195.6,85.8 196.0,87.6 196.4,91.9 196.8,92.9 197.1,88.2 197.5,78.2 197.9,84.3 198.3,76.8 198.7,79.3 199.0,84.5 199.8,79.7 200.2,83.6 200.5,76.6 200.9,79.4 201.3,74.8 201.7,76.2 202.0,79.5 202.4,78.6 202.8,78.8 203.2,81.3 203.6,79.0 203.9,86.5 204.3,85.9 204.7,85.7 205.1,85.2 205.4,83.6 205.8,89.5 206.2,92.3 206.6,88.2 206.9,89.3 207.3,92.8 207.7,103.1 208.1,105.9 208.4,103.0 208.8,109.6 209.2,105.6 209.6,105.5 210.0,110.1 210.3,111.1 210.7,113.6 211.1,110.5 211.5,114.3 211.8,110.3 212.2,104.8 212.6,104.1 213.0,102.2 213.3,107.6 213.7,111.8 214.1,104.3 214.5,102.8 214.9,103.5 215.2,105.1 215.6,109.3 216.0,110.7 216.4,114.2 216.7,117.5 217.1,118.5 217.5,118.0 217.9,116.3 218.2,116.1 218.6,114.0 219.0,115.9 219.4,113.6 219.8,114.6 220.1,118.4 220.5,119.0 220.9,125.0 221.3,126.2 221.6,125.6 222.0,124.4 222.4,124.5 222.8,124.5 223.1,123.0 223.5,127.4 223.9,128.1 224.3,129.8 224.6,137.7 225.0,137.9 225.4,144.2 225.8,146.1 226.2,146.2 226.5,145.3 226.9,141.1 227.3,139.2 227.7,139.4 228.0,139.5 228.4,143.5 228.8,144.1 229.2,148.0 229.5,148.1 229.9,146.4 230.3,145.8 230.7,143.6 231.1,149.1 231.4,147.5 231.8,146.8 232.2,148.3 232.6,149.0 232.9,152.3 233.3,154.9 233.7,149.9 234.1,154.4 234.4,154.7 234.8,153.2 235.2,151.0 235.6,144.6 235.9,151.9 236.3,150.3 236.7,155.6 237.1,153.8 237.5,155.1 237.8,161.6 238.2,157.7 238.6,150.5 239.0,149.7 239.3,157.5 239.7,159.1 240.1,156.7 240.5,156.4 240.8,147.4 241.2,141.6 241.6,142.5 242.0,142.3 242.4,149.5 242.7,148.2 243.1,148.0 243.5,149.9 243.9,148.8 244.2,146.2 244.6,145.8 245.0,146.9 245.4,150.0 245.7,144.6 246.1,146.1 246.5,146.6 246.9,150.3 247.3,150.1 247.6,149.0 248.0,148.9 248.4,145.7 248.8,146.3 249.1,148.0 249.5,145.3 249.9,148.7 250.3,147.9 250.6,149.0 251.0,151.2 251.4,145.6 251.8,147.2 252.1,136.8 252.5,144.0 252.9,155.0 253.3,150.8 253.7,145.3 254.0,145.7 254.4,144.5 254.8,142.4 255.2,147.7 255.5,144.6 255.9,134.7 256.3,142.9 256.7,147.1 257.0,140.1 257.4,132.5 257.8,89.6 258.2,96.2 258.6,120.8 258.9,123.2 259.3,123.9 259.7,125.0 260.1,132.0 260.4,130.6 260.8,131.2 261.2,133.3 261.6,133.6 261.9,136.4 262.3,137.1 262.7,137.0 263.4,131.9 263.8,127.5 264.2,134.0 264.6,133.6 265.0,134.9 265.3,137.9 265.7,138.8 266.1,136.6 266.5,140.5 266.8,141.7 267.2,141.9 267.6,138.2 268.0,142.5 268.3,142.9 268.7,141.3 269.1,141.5 269.5,141.2 269.9,139.6 270.2,127.5 270.6,117.0 271.0,112.5 271.4,120.1 271.7,120.7 272.1,118.1 272.5,116.9 272.9,119.3 273.2,120.9 273.6,117.7 274.0,119.0 274.4,119.5 274.7,119.8 275.1,120.8 275.5,119.2 275.9,120.5 276.3,125.1 276.6,124.1 277.0,125.2 277.4,125.2 277.8,122.9 278.1,124.6 278.5,124.2 278.9,126.1 279.3,126.4 279.6,126.7 280.0,123.1 280.4,122.8 280.8,119.1 281.2,118.8 281.5,130.1 281.9,133.5 282.3,135.6 282.7,142.3 283.0,139.4 283.4,140.7 283.8,139.3 284.2,143.7 284.5,147.2 284.9,145.0 285.3,148.3 285.7,149.1 286.1,151.9 286.4,152.7 286.8,152.4 287.2,152.6 287.6,158.2 287.9,160.0 288.3,160.1 288.7,160.6 289.1,159.6 289.4,159.7 289.8,156.2 290.2,162.3 290.6,162.0 290.9,160.0 291.3,159.6 291.7,157.5 292.1,164.1 292.5,163.1 292.8,162.7 293.2,163.3 293.6,163.0 294.0,167.7 294.3,165.4 294.7,167.2 295.1,161.4 295.5,161.1 295.8,161.8 296.2,159.7 296.6,163.1 297.0,166.3 297.4,168.9 297.7,170.4 298.1,173.3 298.5,174.7 298.9,174.3 299.2,173.8 299.6,173.7 300.0,171.6 300.4,172.1 300.7,172.1 301.1,175.8 301.5,178.0 301.9,162.9 302.2,164.5 302.6,168.3 303.0,172.7 303.4,176.1 303.8,173.0 304.1,177.8 304.5,179.9 304.9,180.2 305.3,181.8 305.6,189.1 306.0,189.9 306.4,188.6 306.8,181.5 307.1,164.1 307.5,172.2 307.9,183.0 308.3,181.4 308.7,181.3 309.0,184.3 309.4,181.3 309.8,179.5 310.2,179.6 310.5,182.5 310.9,182.5 311.3,181.1 311.7,179.6 312.0,179.2 312.4,177.1 312.8,183.1 313.2,179.2 313.6,187.6 313.9,187.3 314.3,189.4 314.7,191.8 315.1,194.2 315.4,196.6 315.8,192.2 316.2,189.7 316.6,189.2 316.9,181.1 317.3,181.4 317.7,175.2 318.1,184.6 318.4,184.5 318.8,189.0 319.2,193.7 319.6,194.1 320.0,194.3 320.3,192.4 320.7,186.6 321.1,186.3 321.5,185.0 321.8,185.8 322.2,178.2 322.6,149.2 323.0,163.5 323.3,151.6 323.7,151.9 324.1,152.6 324.5,155.1 324.9,158.3 325.2,156.5 325.6,159.9 326.0,145.9 326.4,134.1 326.7,137.5 327.1,148.9 327.5,154.2 327.9,151.4 328.2,151.7 328.6,153.6 329.0,156.3 329.4,157.1 329.7,153.9 330.1,152.9 330.5,153.2 330.9,152.5 331.3,154.2 331.6,154.4 332.0,155.5 332.4,156.5 332.8,156.2 333.1,158.4 333.5,154.3 333.9,151.6 334.3,152.7 334.6,153.5 335.0,155.7 335.4,145.3 335.8,142.8 336.2,151.7 336.5,141.5 336.9,137.9 337.3,133.7 337.7,140.4 338.0,145.8 338.4,142.1 338.8,142.5 339.2,142.2 339.5,146.7 339.9,144.6 340.3,142.0 340.7,141.9 341.1,141.9 341.4,141.0 341.8,137.5 342.2,137.0 342.6,131.8 342.9,124.8 343.3,122.7 343.7,121.3 344.1,121.7 344.4,125.0 344.8,124.6 345.2,129.5 345.6,129.8 345.9,129.7 346.7,126.8 347.1,126.0 347.5,128.3 347.8,126.1 348.2,133.8 348.6,133.2 349.0,131.5 349.3,127.8 349.7,125.5 350.1,128.1 350.5,127.8 350.8,130.4 351.2,127.2 351.6,133.9 352.0,139.8 352.4,139.6 352.7,136.9 353.1,140.0 353.5,139.7 353.9,139.5 354.2,135.7 355.0,135.6 355.4,137.9 355.7,135.1 356.1,140.3 356.5,142.9 356.9,143.1 357.2,140.7 357.6,138.1 358.0,134.4 358.8,133.8 359.1,135.5 359.5,137.8 359.9,137.0 360.3,141.0 360.6,144.0 361.0,146.4 361.4,144.8 361.8,143.0 362.1,145.6 362.5,145.6 362.9,146.1 363.3,144.9 363.7,140.6 364.0,141.0 364.4,138.4 364.8,136.9 365.2,141.9 365.5,142.5 365.9,148.0 366.3,141.6 366.7,142.8 367.0,145.4 367.4,146.8 367.8,147.0 368.2,145.9 368.5,146.7 368.9,146.9 369.3,150.0 369.7,151.5 370.1,152.0 370.4,159.1 370.8,160.4 371.2,160.0 371.6,160.1 371.9,159.0 372.3,153.1 372.7,154.2 373.1,143.5 373.4,144.4 373.8,150.3 374.2,152.0 374.6,151.4 375.0,156.0 375.3,155.6 375.7,157.0 376.1,160.2 376.5,159.2 376.8,155.3 377.2,154.4 377.6,150.5 378.0,142.1 378.3,129.8 378.7,122.8 379.1,123.3 379.5,121.2 379.9,128.7 380.2,128.4 380.6,128.4 381.0,128.6 381.4,126.4 381.7,127.1 382.1,126.3 382.5,119.1 382.9,119.3 383.2,119.1 383.6,119.2 384.0,123.0 384.4,122.5 384.7,119.0 385.1,120.1 385.5,124.2 385.9,122.7 386.3,123.4 386.6,124.4 387.0,115.1 387.4,120.6 387.8,120.8 388.1,127.3 388.5,130.0 388.9,130.5 389.3,134.1 389.6,135.4 390.0,140.7 390.4,144.6 390.8,132.6 391.2,121.6 391.5,102.9 391.9,96.5 392.3,94.3 392.7,102.7 393.0,105.2 393.4,102.3 393.8,97.9 394.2,99.9 394.5,99.8 394.9,101.1 395.3,99.8 395.7,103.5 396.0,104.4 396.4,106.6 396.8,103.4 397.2,99.6 397.6,94.9 397.9,89.5 398.3,82.1 398.7,83.3 399.1,86.4 399.4,86.3 399.8,86.0 400.2,89.2 400.6,90.1 400.9,86.4 401.3,86.6 401.7,84.9 402.1,79.5 402.5,81.5 402.8,81.0 403.2,83.0 403.6,86.6 404.0,88.6 404.3,91.7 404.7,91.0 405.1,92.4 405.5,90.4 405.8,89.7 406.2,91.5 406.6,94.2 407.0,96.8 407.4,94.7 407.7,84.9 408.1,76.2 408.5,78.8 408.9,91.2 409.2,90.1 409.6,89.8 410.0,90.8 410.4,82.1 410.7,81.0 411.1,78.7 411.5,78.4 411.9,76.4 412.2,76.8 412.6,75.2 413.0,75.7 413.4,73.4 413.8,74.4 414.1,73.8 414.5,80.5 414.9,79.1 415.3,79.1 415.6,77.1 416.0,75.9 416.4,78.7 416.8,67.2 417.1,58.8 417.5,61.6 417.9,62.9 418.3,72.1 418.7,68.7 419.0,72.3 419.4,72.0 419.8,73.7 420.2,76.8 420.5,64.7 420.9,66.2 421.3,66.9 421.7,66.6 422.0,68.6 422.4,65.7 422.8,69.0 423.2,67.8 423.5,81.8 423.9,79.8 424.3,77.8 424.7,79.0 425.1,79.2 425.4,81.5 425.8,82.5 426.2,84.8 426.6,84.3 426.9,86.2 427.3,87.6 427.7,88.5 428.1,83.8 428.4,84.1 428.8,88.9 429.2,93.1 429.6,97.7 430.0,93.6 430.3,96.3 430.7,97.6 431.1,103.3 431.5,107.3 431.8,101.5 432.2,101.6 432.6,101.5 433.0,100.0 433.3,101.1 433.7,100.3 434.1,99.7 434.5,99.6 434.8,101.7 435.2,100.9 435.6,101.9 436.0,102.6 436.4,102.7 436.7,108.6 437.1,108.1 437.5,100.1 437.9,101.0 438.2,93.5 438.6,96.8 439.0,96.3 439.4,90.2 439.7,89.5 440.1,95.6 440.5,97.7 440.9,97.4 441.3,96.5 441.6,98.9 442.0,97.2 442.4,96.5 442.8,96.5 443.5,95.3 443.9,91.9 444.3,91.6 444.6,86.4 445.0,81.9 445.4,79.4 445.8,78.2 446.2,80.5 446.5,74.2 446.9,72.7 447.3,78.8 447.7,74.4 448.0,74.3 448.4,73.6 448.8,77.7 449.2,78.5 449.5,78.1 449.9,82.7 450.3,82.0 450.7,83.4 451.0,85.7 451.4,83.1 451.8,87.5 452.2,82.8 452.6,84.1 452.9,81.4 453.3,84.5 453.7,86.1 454.1,85.4 454.4,79.5 454.8,78.0 455.2,83.1 455.6,88.1 455.9,84.2 456.3,81.9 456.7,81.7 457.1,75.1 457.5,78.2 457.8,73.8 458.2,53.2 458.6,59.1 459.0,59.9 459.3,68.0 459.7,68.8 460.1,68.9 460.5,72.5 460.8,60.8 461.2,68.4 461.6,67.8 462.0,67.6 462.3,68.4 462.7,69.6 463.1,68.0 463.5,66.4 463.9,63.7 464.2,69.2 464.6,68.7 465.0,70.8 465.4,71.2 465.7,71.8 466.1,74.2 466.5,69.8 466.9,72.0 467.2,73.7 467.6,76.6 468.0,79.7 468.0,80.9 467.6,80.6 467.2,77.8 466.9,76.3 466.5,76.3 466.1,75.0 465.7,75.8 465.4,74.1 465.0,72.2 464.6,72.3 464.2,71.7 463.9,69.4 463.5,68.5 463.1,70.3 462.7,73.9 462.3,73.9 462.0,72.0 461.6,68.6 461.2,68.8 460.8,78.5 460.5,78.1 460.1,73.7 459.7,73.4 459.3,69.8 459.0,70.2 458.6,68.7 458.2,75.8 457.8,81.2 457.5,78.2 457.1,85.9 456.7,84.0 456.3,87.2 455.9,88.8 455.6,88.4 455.2,88.4 454.8,86.5 454.4,89.7 454.1,89.3 453.7,86.6 453.3,86.8 452.9,86.7 452.6,87.0 452.2,89.8 451.8,89.3 451.4,89.8 451.0,88.2 450.7,86.7 450.3,86.7 449.9,83.1 449.5,83.3 449.2,81.2 448.8,81.5 448.4,80.6 448.0,79.4 447.7,84.9 447.3,81.7 446.9,79.4 446.5,79.2 446.2,82.1 445.8,82.2 445.4,83.1 445.0,87.2 444.6,92.5 444.3,95.2 443.9,97.0 443.5,98.1 442.8,98.9 442.4,100.3 442.0,100.0 441.6,99.3 441.3,100.0 440.9,98.6 440.5,99.8 440.1,100.7 439.7,90.8 439.4,98.8 439.0,103.3 438.6,101.5 438.2,105.8 437.9,105.6 437.5,108.7 437.1,113.4 436.7,112.5 436.4,109.7 436.0,104.5 435.6,107.0 435.2,105.2 434.8,106.0 434.5,103.2 434.1,102.1 433.7,104.9 433.3,103.7 433.0,102.6 432.6,103.7 432.2,103.2 431.8,108.7 431.5,109.1 431.1,109.2 430.7,105.7 430.3,98.9 430.0,100.9 429.6,100.6 429.2,98.0 428.8,94.1 428.4,89.3 428.1,88.8 427.7,89.5 427.3,90.4 426.9,91.1 426.6,88.3 426.2,88.1 425.8,86.1 425.4,85.8 425.1,85.0 424.7,82.0 424.3,85.0 423.9,82.4 423.5,84.9 423.2,82.9 422.8,72.3 422.4,71.1 422.0,68.6 421.7,69.1 421.3,68.9 420.9,69.2 420.5,79.5 420.2,80.3 419.8,80.0 419.4,74.1 419.0,74.0 418.7,74.0 418.3,73.9 417.9,72.2 417.5,69.3 417.1,74.0 416.8,83.8 416.4,82.4 416.0,83.0 415.6,83.8 415.3,83.3 414.9,81.6 414.5,81.5 414.1,80.7 413.8,78.5 413.4,78.7 413.0,77.6 412.6,77.3 412.2,79.4 411.9,80.7 411.5,81.9 411.1,82.0 410.7,82.7 410.4,90.9 410.0,91.1 409.6,90.7 409.2,92.1 408.9,92.5 408.5,92.4 408.1,87.5 407.7,95.7 407.4,97.9 407.0,98.7 406.6,100.8 406.2,94.6 405.8,92.3 405.5,93.2 405.1,93.6 404.7,93.4 404.3,93.8 404.0,93.1 403.6,92.3 403.2,86.9 402.8,86.7 402.5,85.9 402.1,86.5 401.7,87.2 401.3,87.4 400.9,90.4 400.6,91.0 400.2,92.5 399.8,89.6 399.4,87.8 399.1,89.8 398.7,88.4 398.3,90.2 397.9,96.1 397.6,101.6 397.2,109.6 396.8,108.4 396.4,109.3 396.0,107.7 395.7,104.6 395.3,104.6 394.9,102.4 394.5,102.1 394.2,101.7 393.8,103.8 393.4,107.7 393.0,107.8 392.7,107.3 392.3,104.4 391.9,104.5 391.5,125.4 391.2,136.1 390.8,147.8 390.4,145.7 390.0,146.6 389.6,143.2 389.3,136.6 388.9,137.1 388.5,134.0 388.1,132.5 387.8,127.9 387.4,123.6 387.0,129.0 386.6,129.7 386.3,127.8 385.9,127.1 385.5,124.8 385.1,125.8 384.7,123.3 384.4,126.1 384.0,125.7 383.6,123.4 383.2,124.6 382.9,122.3 382.5,129.0 382.1,130.9 381.7,128.9 381.4,129.3 381.0,129.5 380.6,131.0 380.2,129.7 379.9,130.1 379.5,131.6 379.1,134.4 378.7,138.7 378.3,149.5 378.0,156.3 377.6,157.6 377.2,155.9 376.8,159.8 376.5,161.2 376.1,161.7 375.7,162.0 375.3,160.0 375.0,162.8 374.6,157.2 374.2,154.6 373.8,155.1 373.4,154.1 373.1,158.0 372.7,160.1 372.3,160.8 371.9,163.3 371.6,162.6 371.2,165.0 370.8,163.8 370.4,161.4 370.1,160.7 369.7,152.7 369.3,152.9 368.9,151.2 368.5,152.8 368.2,152.6 367.8,149.5 367.4,150.2 367.0,148.2 366.7,147.2 366.3,149.8 365.9,148.8 365.5,149.2 365.2,145.4 364.8,144.1 364.4,144.6 364.0,141.8 363.7,145.2 363.3,149.5 362.9,150.1 362.5,149.3 362.1,148.0 361.8,148.1 361.4,152.2 361.0,151.3 360.6,150.2 360.3,144.1 359.9,141.9 359.5,141.8 359.1,139.2 358.8,136.7 358.0,138.6 357.6,142.3 357.2,145.0 356.9,147.2 356.5,144.7 356.1,144.9 355.7,144.8 355.4,142.1 355.0,139.6 354.2,140.5 353.9,140.7 353.5,144.4 353.1,144.8 352.7,141.5 352.4,144.9 352.0,143.4 351.6,141.3 351.2,135.1 350.8,132.1 350.5,129.8 350.1,128.5 349.7,128.5 349.3,132.5 349.0,134.5 348.6,136.3 348.2,136.3 347.8,134.8 347.5,130.8 347.1,130.4 346.7,133.6 345.9,132.1 345.6,130.7 345.2,132.1 344.8,130.1 344.4,127.9 344.1,128.0 343.7,124.4 343.3,127.8 342.9,133.6 342.6,133.7 342.2,144.3 341.8,143.9 341.4,142.7 341.1,143.1 340.7,142.7 340.3,144.7 339.9,147.8 339.5,148.3 339.2,148.3 338.8,143.6 338.4,147.9 338.0,149.0 337.7,144.5 337.3,143.7 336.9,144.1 336.5,155.1 336.2,154.7 335.8,153.4 335.4,157.5 335.0,157.7 334.6,156.8 334.3,157.1 333.9,157.7 333.5,159.5 333.1,159.8 332.8,161.0 332.4,158.0 332.0,158.6 331.6,158.4 331.3,157.3 330.9,156.8 330.5,159.8 330.1,157.0 329.7,162.0 329.4,161.4 329.0,159.6 328.6,158.2 328.2,158.4 327.9,158.7 327.5,156.0 327.1,156.4 326.7,149.3 326.4,155.9 326.0,163.8 325.6,162.1 325.2,162.9 324.9,160.4 324.5,160.7 324.1,156.1 323.7,154.4 323.3,164.6 323.0,164.2 322.6,180.9 322.2,187.4 321.8,188.5 321.5,190.9 321.1,189.1 320.7,193.9 320.3,196.4 320.0,196.0 319.6,195.6 319.2,196.2 318.8,195.0 318.4,189.8 318.1,186.5 317.7,186.5 317.3,186.0 316.9,190.0 316.6,192.8 316.2,195.3 315.8,199.1 315.4,197.8 315.1,196.9 314.7,194.7 314.3,194.4 313.9,193.7 313.6,188.3 313.2,188.8 312.8,186.1 312.4,184.6 312.0,182.1 311.7,182.1 311.3,184.1 310.9,184.6 310.5,184.6 310.2,183.3 309.8,181.7 309.4,189.5 309.0,188.0 308.7,186.5 308.3,188.4 307.9,185.0 307.5,183.5 307.1,191.3 306.8,193.6 306.4,192.6 306.0,193.1 305.6,192.8 305.3,189.7 304.9,185.8 304.5,183.4 304.1,181.2 303.8,178.9 303.4,178.3 303.0,177.8 302.6,176.4 302.2,170.8 301.9,179.3 301.5,179.1 301.1,179.7 300.7,176.4 300.4,173.8 300.0,174.8 299.6,173.9 299.2,174.3 298.9,174.8 298.5,175.2 298.1,176.0 297.7,175.0 297.4,173.7 297.0,169.2 296.6,166.5 296.2,164.6 295.8,163.2 295.5,168.3 295.1,170.1 294.7,169.5 294.3,169.4 294.0,167.8 293.6,167.9 293.2,166.3 292.8,164.5 292.5,166.5 292.1,167.0 291.7,166.4 291.3,160.6 290.9,162.2 290.6,162.6 290.2,163.0 289.8,163.3 289.4,160.5 289.1,161.8 288.7,163.5 288.3,163.9 287.9,162.7 287.6,161.2 287.2,160.2 286.8,156.0 286.4,156.9 286.1,157.0 285.7,153.4 285.3,153.2 284.9,148.8 284.5,148.7 284.2,151.4 283.8,144.1 283.4,142.6 283.0,143.0 282.7,143.9 282.3,142.6 281.9,136.9 281.5,135.1 281.2,131.6 280.8,127.0 280.4,125.7 280.0,126.8 279.6,129.1 279.3,129.4 278.9,128.3 278.5,128.3 278.1,126.6 277.8,125.3 277.4,127.1 277.0,127.1 276.6,129.3 276.3,127.6 275.9,125.6 275.5,130.1 275.1,130.4 274.7,126.7 274.4,121.5 274.0,122.5 273.6,122.4 273.2,121.5 272.9,123.6 272.5,123.2 272.1,124.1 271.7,124.3 271.4,121.9 271.0,123.4 270.6,126.7 270.2,147.9 269.9,146.6 269.5,145.8 269.1,144.1 268.7,143.1 268.3,149.2 268.0,146.5 267.6,146.8 267.2,145.2 266.8,144.8 266.5,145.8 266.1,141.3 265.7,142.5 265.3,140.3 265.0,138.6 264.6,138.1 264.2,136.4 263.8,137.5 263.4,139.4 262.7,139.0 262.3,138.7 261.9,138.0 261.6,138.6 261.2,135.8 260.8,134.3 260.4,135.6 260.1,136.0 259.7,133.8 259.3,128.6 258.9,125.1 258.6,124.7 258.2,125.3 257.8,140.6 257.4,143.0 257.0,149.4 256.7,150.4 256.3,145.2 255.9,149.3 255.5,151.2 255.2,151.3 254.8,149.3 254.4,150.9 254.0,150.7 253.7,155.6 253.3,157.2 252.9,158.6 252.5,156.4 252.1,149.4 251.8,152.0 251.4,152.4 251.0,151.6 250.6,151.6 250.3,150.2 249.9,150.0 249.5,150.5 249.1,150.7 248.8,150.8 248.4,150.6 248.0,149.6 247.6,154.9 247.3,154.9 246.9,156.1 246.5,151.7 246.1,149.3 245.7,153.0 245.4,153.3 245.0,150.7 244.6,147.8 244.2,149.4 243.9,150.2 243.5,150.4 243.1,150.4 242.7,150.0 242.4,150.0 242.0,150.3 241.6,145.0 241.2,149.2 240.8,158.1 240.5,159.7 240.1,159.5 239.7,160.2 239.3,160.7 239.0,158.2 238.6,159.3 238.2,163.9 237.8,163.9 237.5,162.4 237.1,157.0 236.7,157.2 236.3,157.8 235.9,154.7 235.6,158.9 235.2,161.3 234.8,164.4 234.4,160.4 234.1,156.6 233.7,157.8 233.3,157.5 232.9,155.7 232.6,154.7 232.2,153.8 231.8,151.1 231.4,151.3 231.1,150.7 230.7,150.6 230.3,146.8 229.9,148.7 229.5,149.0 229.2,149.3 228.8,149.9 228.4,146.2 228.0,144.8 227.7,141.4 227.3,143.4 226.9,145.6 226.5,147.4 226.2,147.6 225.8,147.9 225.4,148.0 225.0,145.4 224.6,137.9 224.3,137.4 223.9,132.4 223.5,132.7 223.1,128.9 222.8,127.3 222.4,128.2 222.0,126.8 221.6,127.6 221.3,127.1 220.9,127.3 220.5,126.0 220.1,119.2 219.8,118.9 219.4,116.8 219.0,117.9 218.6,118.4 218.2,118.3 217.9,120.5 217.5,120.5 217.1,122.2 216.7,122.0 216.4,118.6 216.0,117.3 215.6,113.9 215.2,110.3 214.9,108.9 214.5,107.2 214.1,114.3 213.7,113.7 213.3,112.9 213.0,108.7 212.6,105.6 212.2,111.9 211.8,117.4 211.5,119.1 211.1,118.6 210.7,116.7 210.3,117.7 210.0,116.5 209.6,110.3 209.2,113.8 208.8,113.8 208.4,111.5 208.1,110.8 207.7,107.6 207.3,106.2 206.9,93.7 206.6,93.9 206.2,93.2 205.8,93.1 205.4,90.1 205.1,87.1 204.7,92.6 204.3,93.9 203.9,89.5 203.6,88.4 203.2,83.2 202.8,82.8 202.4,81.3 202.0,81.9 201.7,80.9 201.3,80.4 200.9,89.2 200.5,87.2 200.2,86.5 199.8,87.5 199.0,91.6 198.7,92.8 198.3,88.5 197.9,97.6 197.5,97.0 197.1,97.9 196.8,94.3 196.4,93.9 196.0,92.8 195.6,88.7 195.3,89.0 194.9,89.7 194.5,90.2 194.1,87.2 193.8,84.3 193.4,85.6 193.0,88.3 192.6,94.9 192.3,96.5 191.9,97.7 191.5,113.2 191.1,119.3 190.7,119.0 190.4,119.4 190.0,117.5 189.6,120.0 189.2,118.7 188.9,119.5 188.5,119.0 188.1,116.4 187.7,117.8 187.4,116.7 187.0,115.9 186.6,120.5 186.2,120.7 185.8,118.1 185.5,114.0 185.1,112.7 184.7,111.3 184.3,108.7 184.0,105.6 183.6,103.8 183.2,102.3 182.8,99.9 182.5,97.7 182.1,92.4 181.7,88.9 181.3,89.1 180.9,90.2 180.6,89.6 180.2,85.2 179.8,83.5 179.4,85.0 179.1,81.7 178.7,81.4 178.3,83.1 177.9,82.6 177.6,83.7 177.2,82.2 176.8,81.0 176.4,78.6 176.1,75.7 175.7,77.2 175.3,76.9 174.9,74.6 174.5,72.4 174.2,68.6 173.8,67.0 173.4,67.4 173.0,74.2 172.7,75.5 172.3,74.7 171.9,79.0 171.5,75.0 171.2,76.6 170.8,80.7 170.4,80.8 170.0,79.4 169.6,83.1 169.3,83.8 168.9,84.8 168.5,84.1 168.1,82.5 167.8,77.2 167.4,82.7 167.0,89.4 166.6,89.3 166.3,84.8 165.9,84.0 165.5,83.2 165.1,83.2 164.8,84.5 164.4,87.2 164.0,88.9 163.6,88.0 163.2,81.5 162.9,79.9 162.5,82.9 162.1,81.9 161.7,78.8 161.4,79.4 161.0,86.1 160.6,95.9 160.2,101.6 159.9,105.1 159.5,102.1 159.1,105.9 158.7,117.6 158.3,123.3 158.0,124.0 157.6,121.1 157.2,121.1 156.8,120.8 156.5,120.7 156.1,127.3 155.7,129.3 155.3,132.5 155.0,131.6 154.6,131.5 154.2,128.4 153.8,125.0 153.5,125.1 153.1,124.1 152.7,121.5 152.3,122.9 151.9,118.4 151.6,118.2 151.2,118.8 150.8,119.0 150.4,117.6 150.1,117.5 149.7,117.6 149.3,118.6 148.9,119.4 148.6,121.2 148.2,119.3 147.8,118.8 147.4,115.7 147.0,112.1 146.7,111.2 146.3,111.1 145.9,112.2 145.5,110.8 145.2,102.4 144.8,99.3 144.4,95.2 144.0,110.5 143.7,134.8 143.3,134.1 142.9,134.1 142.5,132.6 142.1,137.5 141.8,134.3 141.4,133.1 141.0,131.9 140.6,132.1 140.3,132.9 139.9,130.9 139.5,127.7 139.1,141.4 138.8,139.9 138.4,140.4 138.0,139.9 137.6,135.4 137.3,135.1 136.9,132.1 136.5,134.2 136.1,138.8 135.7,144.5 135.4,150.7 135.0,147.6 134.6,149.9 134.2,148.0 133.9,145.0 133.5,143.9 133.1,142.4 132.7,141.3 132.4,136.3 132.0,133.4 131.6,133.1 131.2,136.3 130.8,136.7 130.5,139.0 130.1,137.8 129.7,137.9 129.3,137.0 129.0,139.2 128.6,139.1 128.2,139.2 127.8,147.9 127.5,148.4 127.1,147.6 126.7,147.4 126.3,149.8 126.0,149.3 125.6,148.8 125.2,151.1 124.8,150.2 124.4,150.0 124.1,146.9 123.7,150.3 123.3,154.8 122.9,154.3 122.6,156.3 122.2,158.4 121.8,156.5 121.4,156.2 121.1,153.1 120.7,152.6 120.3,151.1 119.9,149.8 119.5,156.3 119.2,157.3 118.8,153.3 118.4,153.5 118.0,153.7 117.7,154.1 116.9,154.8 116.5,155.5 116.2,156.2 115.8,155.1 115.4,153.1 115.0,155.7 114.6,159.9 114.3,165.8 113.9,166.2 113.5,164.2 113.1,166.8 112.8,165.6 112.4,167.0 112.0,166.6 111.6,165.8 111.3,166.2 110.9,166.1 110.5,166.5 110.1,164.8 109.8,164.6 109.4,166.8 109.0,167.5 108.6,167.0 108.2,165.1 107.9,162.9 107.5,166.1 107.1,165.8 106.7,164.4 106.4,163.3 106.0,161.6 105.6,163.5 105.2,159.8 104.9,162.1 104.5,161.5 104.1,157.8 103.7,158.8 103.3,159.7 103.0,160.9 102.6,158.3 102.2,157.3 101.8,157.5 101.1,158.0 100.7,158.3 100.3,158.1 100.0,155.9 99.6,154.6 99.2,161.7 98.8,161.6 98.5,157.1 98.1,155.1 97.7,154.9 97.3,153.1 96.9,153.7 96.6,154.1 96.2,153.4 95.8,149.1 95.4,148.0 95.1,146.3 94.7,144.9 94.3,146.8 93.9,147.1 93.6,143.8 93.2,144.3 92.8,144.2 92.4,142.7 92.0,141.4 91.7,145.9 91.3,147.3 90.9,148.3 90.5,147.6 90.2,147.1 89.8,147.5 89.4,142.7 89.0,147.2 88.7,154.5 88.3,154.6 87.9,156.4 87.5,155.8 87.2,156.8 86.8,162.5 86.4,162.5 86.0,164.8 85.6,165.8 85.3,169.5 84.9,171.0 84.5,170.0 84.1,171.2 83.8,171.5 83.4,172.2 83.0,169.6 82.6,166.5 82.3,166.3 81.9,166.5 81.5,166.2 81.1,166.5 80.7,160.5 80.4,161.3 80.0,161.4 79.6,161.5 79.2,159.1 78.9,158.4 78.5,160.0 78.1,158.6 77.7,158.6 77.4,160.3 77.0,161.1 76.6,163.0 76.2,164.1 75.8,164.3 75.5,164.5 75.1,162.1 74.7,161.0 74.3,158.1 74.0,158.0 73.6,158.6 73.2,156.5 72.8,157.3 72.1,156.5 71.7,156.8 71.3,155.5 71.0,156.2 70.6,156.6 70.2,157.9 69.8,158.4 69.4,158.7 69.1,158.1 68.7,156.4 68.3,155.2 67.9,154.8 67.6,154.4 67.2,156.8 66.8,157.1 66.4,158.1 66.1,154.1 65.7,152.9 65.3,153.5 64.9,153.2 64.5,155.3 64.2,152.3 63.8,151.3 63.4,150.9 63.0,148.7 62.7,151.0 62.3,145.2 61.9,144.5 61.5,149.6 61.2,148.6 60.8,148.8 60.4,144.2 60.0,141.8 59.7,141.4 59.3,139.4 58.9,141.7 58.5,136.9 58.1,139.8 57.8,143.4 57.4,142.5 57.0,142.0 56.6,142.6 56.3,145.1 55.9,142.8 55.5,135.8 55.1,135.7 54.8,135.3 54.4,145.6 54.0,145.6"/><polyline class="sA mid" points="54.0,145.4 54.4,141.7 54.8,137.2 55.1,135.9 55.5,135.6 55.9,138.2 56.3,141.5 56.6,139.4 57.0,133.4 57.4,131.5 57.8,134.0 58.1,130.1 58.5,122.8 58.9,128.3 59.3,128.4 59.7,130.8 60.0,131.0 60.4,132.4 60.8,136.1 61.2,138.2 61.5,138.7 61.9,133.5 62.3,131.4 62.7,136.0 63.0,136.8 63.4,135.9 63.8,137.6 64.2,138.1 64.5,139.8 64.9,139.0 65.3,139.8 65.7,140.3 66.1,141.1 66.4,143.2 66.8,143.4 67.2,142.8 67.6,140.9 67.9,142.4 68.3,143.1 68.7,144.5 69.1,143.3 69.4,143.8 69.8,143.0 70.2,139.4 70.6,135.6 71.0,134.1 71.3,132.6 71.7,133.3 72.1,131.3 72.8,130.2 73.2,131.4 73.6,133.5 74.0,133.3 74.3,134.0 74.7,136.6 75.1,136.7 75.5,138.8 75.8,139.0 76.2,134.0 76.6,126.2 77.0,123.5 77.4,114.1 77.7,118.6 78.1,119.5 78.5,118.5 78.9,117.9 79.2,117.8 79.6,118.8 80.0,120.4 80.4,119.5 80.7,113.4 81.1,116.2 81.5,123.8 81.9,125.1 82.3,119.7 82.6,117.3 83.0,117.7 83.4,119.9 83.8,119.9 84.1,118.8 84.5,118.3 84.9,119.1 85.3,118.7 85.6,116.1 86.0,115.0 86.4,116.0 86.8,114.5 87.2,112.2 87.5,113.3 87.9,113.3 88.3,112.9 88.7,112.1 89.0,110.4 89.4,110.4 89.8,112.4 90.2,114.3 90.5,114.8 90.9,116.4 91.3,115.5 91.7,112.2 92.0,110.2 92.4,108.9 92.8,113.0 93.2,113.8 93.6,113.4 93.9,115.2 94.3,115.7 94.7,114.2 95.1,115.4 95.4,117.4 95.8,119.1 96.2,121.3 96.6,123.4 96.9,121.8 97.3,122.4 97.7,125.9 98.1,125.8 98.5,126.7 98.8,129.2 99.2,123.5 99.6,117.5 100.0,119.5 100.3,119.7 100.7,119.6 101.1,119.3 101.8,118.9 102.2,119.0 102.6,118.9 103.0,120.0 103.3,120.6 103.7,120.5 104.1,120.5 104.5,120.7 104.9,118.3 105.2,117.3 105.6,118.0 106.0,117.1 106.4,118.7 106.7,120.0 107.1,120.2 107.5,119.9 107.9,119.5 108.2,119.8 108.6,120.8 109.0,121.1 109.4,120.4 109.8,119.1 110.1,119.0 110.5,120.8 110.9,120.0 111.3,120.4 111.6,120.3 112.0,119.1 112.4,120.9 112.8,120.1 113.1,120.4 113.5,119.0 113.9,119.4 114.3,119.6 114.6,117.5 115.0,115.8 115.4,115.5 115.8,116.2 116.2,117.0 116.5,116.7 116.9,115.2 117.7,114.1 118.0,113.9 118.4,113.5 118.8,112.9 119.2,116.0 119.5,109.2 119.9,106.8 120.3,111.3 120.7,112.8 121.1,110.1 121.4,112.7 121.8,115.6 122.2,115.6 122.6,113.5 122.9,112.6 123.3,111.1 123.7,109.0 124.1,106.9 124.4,109.4 124.8,110.5 125.2,109.1 125.6,108.3 126.0,108.1 126.3,108.9 126.7,108.4 127.1,108.2 127.5,107.9 127.8,103.5 128.2,99.4 128.6,99.2 129.0,99.4 129.3,101.4 129.7,99.8 130.1,98.1 130.5,99.2 130.8,98.5 131.2,98.3 131.6,94.1 132.0,96.6 132.4,98.5 132.7,102.5 133.1,106.9 133.5,106.7 133.9,102.5 134.2,96.5 134.6,105.7 135.0,104.7 135.4,102.7 135.7,98.4 136.1,92.3 136.5,84.8 136.9,83.4 137.3,89.9 137.6,91.6 138.0,91.2 138.4,90.9 138.8,90.7 139.1,79.5 139.5,69.3 139.9,72.2 140.3,75.7 140.6,76.8 141.0,76.5 141.4,76.9 141.8,76.5 142.1,77.8 142.5,73.6 142.9,75.7 143.3,78.5 143.7,81.5 144.0,80.6 144.4,79.4 144.8,82.5 145.2,84.9 145.5,90.8 145.9,95.4 146.3,96.1 146.7,95.8 147.0,96.8 147.4,90.4 147.8,99.7 148.2,100.2 148.6,96.0 148.9,102.1 149.3,101.2 149.7,99.2 150.1,99.3 150.4,100.8 150.8,102.1 151.2,101.6 151.6,98.3 151.9,99.6 152.3,101.9 152.7,103.0 153.1,104.0 153.5,104.6 153.8,105.2 154.2,105.4 154.6,111.6 155.0,113.3 155.3,112.3 155.7,109.9 156.1,96.2 156.5,88.4 156.8,87.4 157.2,88.4 157.6,87.9 158.0,89.6 158.3,91.0 158.7,80.8 159.1,69.8 159.5,68.8 159.9,74.7 160.2,69.7 160.6,64.7 161.0,58.4 161.4,53.9 161.7,58.0 162.1,61.2 162.5,60.9 162.9,59.6 163.2,60.9 163.6,66.9 164.0,68.6 164.4,62.1 164.8,58.8 165.1,56.9 165.5,55.4 165.9,55.8 166.3,57.5 166.6,58.5 167.0,56.3 167.4,47.5 167.8,47.2 168.1,48.9 168.5,51.8 168.9,49.2 169.3,39.5 169.6,37.0 170.0,33.0 170.4,33.8 170.8,33.6 171.2,30.5 171.5,26.0 171.9,35.9 172.3,32.4 172.7,32.7 173.0,28.8 173.4,24.5 173.8,24.2 174.2,26.6 174.5,27.8 174.9,29.0 175.3,32.2 175.7,33.2 176.1,33.7 176.4,37.5 176.8,39.4 177.2,40.8 177.6,43.1 177.9,42.8 178.3,41.6 178.7,40.5 179.1,40.8 179.4,44.3 179.8,43.2 180.2,43.0 180.6,46.0 180.9,47.1 181.3,46.8 181.7,45.2 182.1,46.2 182.5,51.8 182.8,56.1 183.2,56.1 183.6,56.2 184.0,55.2 184.3,58.0 184.7,60.2 185.1,61.2 185.5,67.9 185.8,68.7 186.2,71.8 186.6,71.6 187.0,69.1 187.4,70.6 187.7,74.2 188.1,73.9 188.5,75.4 188.9,77.5 189.2,78.2 189.6,76.8 190.0,74.6 190.4,75.9 190.7,76.3 191.1,74.8 191.5,61.7 191.9,52.2 192.3,51.9 192.6,48.4 193.0,46.4 193.4,45.2 193.8,43.9 194.1,47.1 194.5,49.9 194.9,48.6 195.3,47.5 195.6,47.9 196.0,51.5 196.4,54.9 196.8,55.8 197.1,53.1 197.5,55.0 197.9,56.7 198.3,53.3 198.7,50.7 199.0,52.7 199.8,48.3 200.2,45.3 200.5,45.8 200.9,45.1 201.3,38.5 201.7,39.4 202.0,38.6 202.4,37.7 202.8,39.1 203.2,40.2 203.6,43.0 203.9,46.5 204.3,52.9 204.7,53.4 205.1,51.4 205.4,52.8 205.8,56.4 206.2,57.7 206.6,56.0 206.9,56.0 207.3,63.8 207.7,69.6 208.1,73.6 208.4,72.6 208.8,77.1 209.2,74.9 209.6,72.0 210.0,76.6 210.3,78.1 210.7,79.1 211.1,80.0 211.5,78.9 211.8,76.6 212.2,72.3 212.6,69.6 213.0,70.1 213.3,72.7 213.7,73.7 214.1,71.1 214.5,67.0 214.9,65.2 215.2,64.8 215.6,69.2 216.0,71.4 216.4,73.7 216.7,78.2 217.1,76.1 217.5,72.6 217.9,70.7 218.2,70.4 218.6,69.8 219.0,68.4 219.4,65.5 219.8,67.5 220.1,70.8 220.5,75.8 220.9,80.2 221.3,80.7 221.6,81.6 222.0,81.8 222.4,82.6 222.8,80.6 223.1,78.4 223.5,84.5 223.9,85.7 224.3,90.8 224.6,94.7 225.0,97.1 225.4,102.5 225.8,101.7 226.2,100.2 226.5,97.8 226.9,91.2 227.3,89.3 227.7,88.4 228.0,89.2 228.4,91.9 228.8,95.2 229.2,98.0 229.5,97.8 229.9,96.8 230.3,95.6 230.7,96.2 231.1,98.8 231.4,96.5 231.8,98.5 232.2,100.6 232.6,101.2 232.9,103.1 233.3,103.9 233.7,104.1 234.1,106.0 234.4,105.3 234.8,105.7 235.2,104.1 235.6,100.7 235.9,101.1 236.3,102.3 236.7,105.4 237.1,105.1 237.5,109.3 237.8,114.7 238.2,113.8 238.6,107.9 239.0,105.8 239.3,109.5 239.7,109.4 240.1,107.8 240.5,107.0 240.8,101.8 241.2,94.1 241.6,92.4 242.0,94.3 242.4,90.7 242.7,84.7 243.1,80.0 243.5,84.8 243.9,84.1 244.2,82.5 244.6,81.4 245.0,83.1 245.4,85.5 245.7,82.7 246.1,81.8 246.5,83.1 246.9,87.9 247.3,87.6 247.6,89.1 248.0,87.8 248.4,87.4 248.8,85.3 249.1,87.5 249.5,85.7 249.9,86.9 250.3,86.7 250.6,88.0 251.0,89.1 251.4,89.2 251.8,90.1 252.1,88.2 252.5,94.0 252.9,101.6 253.3,99.4 253.7,95.9 254.0,93.7 254.4,94.2 254.8,94.8 255.2,94.5 255.5,95.1 255.9,93.4 256.3,96.7 256.7,99.8 257.0,97.8 257.4,95.3 257.8,74.9 258.2,71.4 258.6,83.2 258.9,86.3 259.3,87.9 259.7,91.8 260.1,95.7 260.4,95.3 260.8,94.9 261.2,96.7 261.6,98.9 261.9,100.6 262.3,100.1 262.7,100.3 263.4,99.2 263.8,96.9 264.2,98.8 264.6,99.3 265.0,99.5 265.3,100.8 265.7,102.4 266.1,100.9 266.5,103.8 266.8,104.6 267.2,100.8 267.6,99.2 268.0,102.6 268.3,103.9 268.7,100.0 269.1,100.3 269.5,100.3 269.9,99.4 270.2,95.4 270.6,79.6 271.0,75.7 271.4,79.6 271.7,75.8 272.1,69.6 272.5,74.0 272.9,74.6 273.2,74.6 273.6,76.3 274.0,75.4 274.4,75.1 274.7,79.5 275.1,82.3 275.5,81.6 275.9,79.8 276.3,82.1 276.6,82.4 277.0,80.8 277.4,80.9 277.8,78.9 278.1,79.4 278.5,76.7 278.9,81.2 279.3,82.0 279.6,81.1 280.0,77.4 280.4,72.3 280.8,74.5 281.2,75.6 281.5,81.8 281.9,85.3 282.3,90.1 282.7,96.2 283.0,95.1 283.4,92.8 283.8,92.5 284.2,98.8 284.5,100.4 284.9,99.3 285.3,103.5 285.7,104.5 286.1,106.2 286.4,107.8 286.8,107.5 287.2,110.8 287.6,115.4 287.9,119.0 288.3,119.6 288.7,119.7 289.1,118.4 289.4,117.8 289.8,118.0 290.2,116.3 290.6,114.4 290.9,107.7 291.3,102.3 291.7,105.0 292.1,105.9 292.5,104.7 292.8,103.0 293.2,103.6 293.6,103.7 294.0,106.0 294.3,105.8 294.7,106.9 295.1,105.9 295.5,104.1 295.8,102.3 296.2,101.4 296.6,102.3 297.0,105.4 297.4,107.8 297.7,110.3 298.1,112.6 298.5,112.2 298.9,111.8 299.2,111.3 299.6,111.1 300.0,108.6 300.4,108.2 300.7,108.9 301.1,112.8 301.5,114.6 301.9,113.1 302.2,111.6 302.6,113.4 303.0,114.7 303.4,116.6 303.8,113.6 304.1,118.0 304.5,122.3 304.9,122.8 305.3,124.8 305.6,127.9 306.0,129.1 306.4,127.5 306.8,127.5 307.1,125.6 307.5,127.0 307.9,129.3 308.3,132.5 308.7,132.8 309.0,135.0 309.4,138.1 309.8,133.3 310.2,135.7 310.5,139.4 310.9,139.5 311.3,138.5 311.7,136.8 312.0,136.5 312.4,137.0 312.8,140.9 313.2,141.3 313.6,141.9 313.9,143.7 314.3,145.0 314.7,146.1 315.1,146.4 315.4,147.5 315.8,148.0 316.2,146.9 316.6,147.5 316.9,144.9 317.3,143.0 317.7,141.5 318.1,135.6 318.4,144.4 318.8,148.1 319.2,150.5 319.6,150.3 320.0,152.4 320.3,153.5 320.7,149.3 321.1,146.8 321.5,146.7 321.8,148.2 322.2,139.9 322.6,107.2 323.0,107.9 323.3,105.5 323.7,104.7 324.1,104.3 324.5,108.9 324.9,110.5 325.2,111.4 325.6,112.8 326.0,113.0 326.4,110.0 326.7,110.0 327.1,116.0 327.5,119.2 327.9,120.6 328.2,122.6 328.6,123.0 329.0,121.7 329.4,123.9 329.7,123.6 330.1,120.6 330.5,123.6 330.9,121.7 331.3,120.1 331.6,122.5 332.0,122.5 332.4,122.2 332.8,122.8 333.1,123.6 333.5,121.5 333.9,118.4 334.3,117.9 334.6,115.0 335.0,117.2 335.4,116.3 335.8,115.7 336.2,117.7 336.5,117.3 336.9,113.7 337.3,113.4 337.7,116.5 338.0,122.6 338.4,119.9 338.8,118.0 339.2,120.0 339.5,120.7 339.9,118.9 340.3,114.9 340.7,113.5 341.1,116.4 341.4,117.6 341.8,118.0 342.2,116.3 342.6,108.5 342.9,104.8 343.3,100.9 343.7,98.5 344.1,101.3 344.4,104.4 344.8,105.4 345.2,108.6 345.6,109.0 345.9,109.3 346.7,109.3 347.1,108.4 347.5,109.9 347.8,109.0 348.2,113.2 348.6,113.3 349.0,112.1 349.3,111.4 349.7,111.9 350.1,112.9 350.5,114.9 350.8,113.5 351.2,113.3 351.6,119.3 352.0,120.5 352.4,122.9 352.7,120.3 353.1,123.6 353.5,123.5 353.9,121.5 354.2,119.5 355.0,117.3 355.4,118.2 355.7,117.2 356.1,118.1 356.5,119.8 356.9,120.7 357.2,118.4 357.6,115.8 358.0,112.0 358.8,109.3 359.1,109.7 359.5,111.5 359.9,109.0 360.3,113.4 360.6,120.1 361.0,124.6 361.4,125.5 361.8,113.4 362.1,123.4 362.5,126.0 362.9,126.9 363.3,127.5 363.7,125.2 364.0,124.4 364.4,123.9 364.8,124.1 365.2,125.2 365.5,129.2 365.9,131.1 366.3,131.6 366.7,131.3 367.0,132.8 367.4,132.1 367.8,132.8 368.2,133.8 368.5,135.6 368.9,135.4 369.3,135.2 369.7,133.2 370.1,139.7 370.4,147.1 370.8,148.8 371.2,151.4 371.6,150.6 371.9,148.9 372.3,140.6 372.7,141.3 373.1,142.8 373.4,142.1 373.8,142.6 374.2,143.5 374.6,146.6 375.0,152.1 375.3,150.5 375.7,152.6 376.1,153.9 376.5,153.4 376.8,151.9 377.2,150.5 377.6,153.0 378.0,148.2 378.3,138.7 378.7,129.7 379.1,127.8 379.5,127.4 379.9,133.1 380.2,132.7 380.6,133.3 381.0,132.7 381.4,131.5 381.7,131.8 382.1,132.8 382.5,128.7 382.9,125.5 383.2,128.5 383.6,128.5 384.0,131.0 384.4,132.3 384.7,129.1 385.1,130.6 385.5,131.8 385.9,132.6 386.3,133.5 386.6,134.3 387.0,128.1 387.4,128.2 387.8,130.3 388.1,136.1 388.5,137.2 388.9,139.9 389.3,140.2 389.6,144.1 390.0,147.4 390.4,148.8 390.8,143.1 391.2,131.8 391.5,117.1 391.9,103.4 392.3,101.6 392.7,105.6 393.0,106.7 393.4,105.2 393.8,101.0 394.2,101.0 394.5,101.2 394.9,101.0 395.3,101.3 395.7,101.9 396.0,104.0 396.4,106.5 396.8,104.1 397.2,103.5 397.6,97.2 397.9,91.7 398.3,85.1 398.7,84.7 399.1,87.8 399.4,86.7 399.8,81.5 400.2,84.7 400.6,84.2 400.9,82.0 401.3,80.6 401.7,79.7 402.1,78.9 402.5,79.3 402.8,79.1 403.2,80.0 403.6,82.0 404.0,84.2 404.3,83.4 404.7,81.2 405.1,82.6 405.5,82.7 405.8,81.8 406.2,83.4 406.6,88.9 407.0,89.2 407.4,87.8 407.7,81.7 408.1,73.3 408.5,77.1 408.9,83.3 409.2,82.2 409.6,81.6 410.0,82.0 410.4,80.8 410.7,79.6 411.1,80.4 411.5,80.8 411.9,79.2 412.2,78.1 412.6,75.1 413.0,76.2 413.4,75.6 413.8,72.8 414.1,73.0 414.5,79.1 414.9,79.2 415.3,79.4 415.6,78.6 416.0,75.4 416.4,77.2 416.8,72.8 417.1,63.7 417.5,62.3 417.9,64.3 418.3,69.6 418.7,69.7 419.0,70.8 419.4,71.4 419.8,75.0 420.2,77.0 420.5,70.5 420.9,62.5 421.3,54.8 421.7,53.7 422.0,60.1 422.4,61.3 422.8,64.0 423.2,68.7 423.5,76.3 423.9,68.8 424.3,72.0 424.7,71.4 425.1,72.8 425.4,74.2 425.8,74.6 426.2,75.7 426.6,74.8 426.9,77.1 427.3,77.5 427.7,77.5 428.1,74.8 428.4,76.3 428.8,79.7 429.2,82.4 429.6,84.8 430.0,83.0 430.3,83.2 430.7,85.4 431.1,88.4 431.5,90.8 431.8,87.7 432.2,85.0 432.6,86.3 433.0,80.3 433.3,81.2 433.7,85.2 434.1,83.5 434.5,84.0 434.8,85.1 435.2,84.4 435.6,86.2 436.0,85.6 436.4,87.2 436.7,90.4 437.1,88.9 437.5,80.4 437.9,78.6 438.2,74.9 438.6,74.9 439.0,78.2 439.4,75.3 439.7,73.4 440.1,78.8 440.5,79.6 440.9,78.8 441.3,77.9 441.6,77.7 442.0,77.7 442.4,78.2 442.8,78.0 443.5,77.6 443.9,76.6 444.3,76.2 444.6,74.5 445.0,72.5 445.4,71.1 445.8,70.4 446.2,70.6 446.5,66.0 446.9,64.7 447.3,68.4 447.7,67.5 448.0,64.7 448.4,65.2 448.8,66.5 449.2,66.6 449.5,67.9 449.9,70.8 450.3,71.3 450.7,71.5 451.0,72.4 451.4,72.9 451.8,76.0 452.2,62.2 452.6,61.4 452.9,62.5 453.3,65.9 453.7,67.1 454.1,67.2 454.4,65.5 454.8,63.7 455.2,66.3 455.6,69.3 455.9,70.7 456.3,71.7 456.7,71.5 457.1,70.3 457.5,70.8 457.8,69.3 458.2,56.3 458.6,55.7 459.0,56.8 459.3,60.6 459.7,63.7 460.1,65.0 460.5,68.7 460.8,63.2 461.2,56.0 461.6,52.9 462.0,54.5 462.3,54.7 462.7,55.6 463.1,53.0 463.5,51.3 463.9,50.4 464.2,54.3 464.6,55.5 465.0,51.1 465.4,52.8 465.7,55.0 466.1,55.5 466.5,57.8 466.9,58.8 467.2,58.2 467.6,63.1 468.0,65.3"/><polyline class="sB mid" points="54.0,145.6 54.4,140.3 54.8,133.8 55.1,133.9 55.5,134.9 55.9,138.4 56.3,143.3 56.6,141.2 57.0,140.6 57.4,141.3 57.8,142.4 58.1,138.1 58.5,130.8 58.9,137.1 59.3,137.5 59.7,140.3 60.0,140.1 60.4,141.8 60.8,146.2 61.2,148.2 61.5,148.6 61.9,143.2 62.3,142.5 62.7,147.8 63.0,147.6 63.4,148.3 63.8,150.7 64.2,151.6 64.5,153.4 64.9,152.3 65.3,152.4 65.7,150.7 66.1,154.1 66.4,154.6 66.8,155.9 67.2,155.4 67.6,153.5 67.9,153.5 68.3,153.4 68.7,155.3 69.1,155.6 69.4,157.6 69.8,158.1 70.2,157.1 70.6,156.0 71.0,155.6 71.3,155.2 71.7,155.9 72.1,155.1 72.8,152.6 73.2,153.3 73.6,157.1 74.0,156.8 74.3,157.5 74.7,159.2 75.1,160.3 75.5,161.5 75.8,163.0 76.2,162.9 76.6,161.1 77.0,160.4 77.4,157.8 77.7,158.6 78.1,158.6 78.5,158.7 78.9,157.7 79.2,157.5 79.6,159.4 80.0,161.1 80.4,160.3 80.7,159.3 81.1,162.4 81.5,165.1 81.9,165.9 82.3,165.1 82.6,165.8 83.0,167.1 83.4,170.6 83.8,170.7 84.1,169.6 84.5,169.1 84.9,168.2 85.3,167.4 85.6,162.2 86.0,162.2 86.4,161.6 86.8,159.1 87.2,155.0 87.5,154.8 87.9,153.6 88.3,152.9 88.7,149.8 89.0,142.5 89.4,141.2 89.8,144.8 90.2,147.1 90.5,147.5 90.9,147.5 91.3,145.4 91.7,142.2 92.0,140.2 92.4,140.5 92.8,143.1 93.2,143.9 93.6,143.5 93.9,145.1 94.3,145.8 94.7,144.2 95.1,145.4 95.4,146.8 95.8,148.3 96.2,149.9 96.6,152.8 96.9,151.3 97.3,151.6 97.7,153.9 98.1,153.6 98.5,155.6 98.8,160.6 99.2,157.6 99.6,153.4 100.0,154.7 100.3,156.9 100.7,157.9 101.1,157.4 101.8,156.9 102.2,157.0 102.6,157.1 103.0,159.4 103.3,158.7 103.7,157.4 104.1,157.0 104.5,159.3 104.9,160.0 105.2,159.1 105.6,161.4 106.0,160.6 106.4,161.8 106.7,163.1 107.1,164.7 107.5,163.7 107.9,160.9 108.2,163.0 108.6,165.3 109.0,165.9 109.4,165.2 109.8,163.9 110.1,163.8 110.5,165.4 110.9,164.4 111.3,164.5 111.6,165.6 112.0,164.6 112.4,165.6 112.8,164.2 113.1,165.2 113.5,163.8 113.9,164.8 114.3,164.1 114.6,158.1 115.0,153.4 115.4,152.4 115.8,153.7 116.2,155.5 116.5,155.1 116.9,154.1 117.7,153.5 118.0,153.4 118.4,153.1 118.8,152.8 119.2,154.8 119.5,148.9 119.9,146.4 120.3,149.1 120.7,151.4 121.1,152.3 121.4,154.4 121.8,155.9 122.2,156.8 122.6,154.3 122.9,153.0 123.3,150.5 123.7,147.8 124.1,143.2 124.4,147.1 124.8,148.9 125.2,147.9 125.6,147.5 126.0,147.6 126.3,147.5 126.7,147.2 127.1,147.0 127.5,146.8 127.8,141.3 128.2,135.6 128.6,135.2 129.0,134.8 129.3,137.0 129.7,136.8 130.1,136.1 130.5,137.5 130.8,135.3 131.2,134.3 131.6,130.0 132.0,132.5 132.4,133.9 132.7,137.3 133.1,141.0 133.5,141.2 133.9,142.9 134.2,145.8 134.6,147.8 135.0,146.8 135.4,145.3 135.7,141.0 136.1,134.9 136.5,127.4 136.9,126.3 137.3,130.2 137.6,135.0 138.0,136.4 138.4,139.4 138.8,139.2 139.1,132.1 139.5,123.8 139.9,129.5 140.3,131.3 140.6,132.0 141.0,131.6 141.4,131.9 141.8,131.3 142.1,133.1 142.5,129.9 142.9,131.0 143.3,133.9 143.7,117.0 144.0,92.5 144.4,91.4 144.8,97.1 145.2,100.1 145.5,106.4 145.9,110.3 146.3,110.7 146.7,110.4 147.0,110.0 147.4,105.2 147.8,115.5 148.2,117.7 148.6,112.7 148.9,118.2 149.3,117.6 149.7,115.9 150.1,117.2 150.4,117.4 150.8,117.3 151.2,115.8 151.6,113.4 151.9,117.1 152.3,120.4 152.7,121.1 153.1,122.3 153.5,123.4 153.8,123.0 154.2,126.2 154.6,129.1 155.0,129.3 155.3,128.7 155.7,127.6 156.1,122.5 156.5,119.6 156.8,118.3 157.2,118.4 157.6,120.2 158.0,122.0 158.3,120.2 158.7,110.0 159.1,99.0 159.5,97.3 159.9,102.5 160.2,96.0 160.6,89.2 161.0,80.5 161.4,74.4 161.7,77.2 162.1,79.2 162.5,78.8 162.9,77.3 163.2,78.6 163.6,84.6 164.0,88.0 164.4,84.8 164.8,83.0 165.1,82.0 165.5,81.0 165.9,82.4 166.3,83.8 166.6,85.4 167.0,84.7 167.4,75.9 167.8,76.2 168.1,79.4 168.5,82.1 168.9,82.2 169.3,82.2 169.6,80.3 170.0,78.0 170.4,78.6 170.8,78.1 171.2,74.7 171.5,74.5 171.9,76.0 172.3,72.5 172.7,72.7 173.0,68.7 173.4,64.2 173.8,65.6 174.2,67.7 174.5,69.4 174.9,72.1 175.3,74.9 175.7,76.0 176.1,75.2 176.4,76.1 176.8,78.5 177.2,80.6 177.6,82.6 177.9,82.2 178.3,81.0 178.7,79.9 179.1,80.0 179.4,82.6 179.8,81.6 180.2,83.0 180.6,86.4 180.9,89.1 181.3,88.4 181.7,88.1 182.1,89.0 182.5,95.0 182.8,98.1 183.2,99.0 183.6,102.8 184.0,102.1 184.3,105.9 184.7,108.0 185.1,107.3 185.5,113.1 185.8,115.9 186.2,118.5 186.6,113.9 187.0,112.9 187.4,114.5 187.7,115.8 188.1,112.6 188.5,117.7 188.9,118.8 189.2,118.3 189.6,116.9 190.0,115.0 190.4,117.8 190.7,116.6 191.1,115.3 191.5,102.1 191.9,92.6 192.3,92.9 192.6,90.2 193.0,84.6 193.4,83.4 193.8,81.9 194.1,85.1 194.5,88.4 194.9,87.8 195.3,86.7 195.6,87.2 196.0,90.2 196.4,92.9 196.8,93.6 197.1,93.1 197.5,87.6 197.9,90.9 198.3,82.6 198.7,86.0 199.0,88.1 199.8,83.6 200.2,85.0 200.5,81.9 200.9,84.3 201.3,77.6 201.7,78.6 202.0,80.7 202.4,80.0 202.8,80.8 203.2,82.2 203.6,83.7 203.9,88.0 204.3,89.9 204.7,89.2 205.1,86.1 205.4,86.9 205.8,91.3 206.2,92.7 206.6,91.1 206.9,91.5 207.3,99.5 207.7,105.4 208.1,108.3 208.4,107.2 208.8,111.7 209.2,109.7 209.6,107.9 210.0,113.3 210.3,114.4 210.7,115.2 211.1,114.6 211.5,116.7 211.8,113.9 212.2,108.4 212.6,104.8 213.0,105.5 213.3,110.2 213.7,112.8 214.1,109.3 214.5,105.0 214.9,106.2 215.2,107.7 215.6,111.6 216.0,114.0 216.4,116.4 216.7,119.8 217.1,120.3 217.5,119.2 217.9,118.4 218.2,117.2 218.6,116.2 219.0,116.9 219.4,115.2 219.8,116.8 220.1,118.8 220.5,122.5 220.9,126.1 221.3,126.7 221.6,126.6 222.0,125.6 222.4,126.3 222.8,125.9 223.1,125.9 223.5,130.1 223.9,130.3 224.3,133.6 224.6,137.8 225.0,141.6 225.4,146.1 225.8,147.0 226.2,146.9 226.5,146.3 226.9,143.4 227.3,141.3 227.7,140.4 228.0,142.2 228.4,144.8 228.8,147.0 229.2,148.6 229.5,148.5 229.9,147.5 230.3,146.3 230.7,147.1 231.1,149.9 231.4,149.4 231.8,148.9 232.2,151.0 232.6,151.8 232.9,154.0 233.3,156.2 233.7,153.9 234.1,155.5 234.4,157.5 234.8,158.8 235.2,156.1 235.6,151.7 235.9,153.3 236.3,154.1 236.7,156.4 237.1,155.4 237.5,158.8 237.8,162.7 238.2,160.8 238.6,154.9 239.0,153.9 239.3,159.1 239.7,159.7 240.1,158.1 240.5,158.0 240.8,152.7 241.2,145.4 241.6,143.7 242.0,146.3 242.4,149.8 242.7,149.1 243.1,149.2 243.5,150.2 243.9,149.5 244.2,147.8 244.6,146.8 245.0,148.8 245.4,151.6 245.7,148.8 246.1,147.7 246.5,149.2 246.9,153.2 247.3,152.5 247.6,152.0 248.0,149.2 248.4,148.2 248.8,148.6 249.1,149.4 249.5,147.9 249.9,149.4 250.3,149.1 250.6,150.3 251.0,151.4 251.4,149.0 251.8,149.6 252.1,143.1 252.5,150.2 252.9,156.8 253.3,154.0 253.7,150.4 254.0,148.2 254.4,147.7 254.8,145.9 255.2,149.5 255.5,147.9 255.9,142.0 256.3,144.1 256.7,148.8 257.0,144.7 257.4,137.8 257.8,115.1 258.2,110.8 258.6,122.8 258.9,124.1 259.3,126.2 259.7,129.4 260.1,134.0 260.4,133.1 260.8,132.7 261.2,134.5 261.6,136.1 261.9,137.2 262.3,137.9 262.7,138.0 263.4,135.7 263.8,132.5 264.2,135.2 264.6,135.8 265.0,136.8 265.3,139.1 265.7,140.6 266.1,138.9 266.5,143.1 266.8,143.3 267.2,143.6 267.6,142.5 268.0,144.5 268.3,146.1 268.7,142.2 269.1,142.8 269.5,143.5 269.9,143.1 270.2,137.7 270.6,121.9 271.0,117.9 271.4,121.0 271.7,122.5 272.1,121.1 272.5,120.0 272.9,121.4 273.2,121.2 273.6,120.0 274.0,120.7 274.4,120.5 274.7,123.3 275.1,125.6 275.5,124.7 275.9,123.0 276.3,126.3 276.6,126.7 277.0,126.1 277.4,126.2 277.8,124.1 278.1,125.6 278.5,126.3 278.9,127.2 279.3,127.9 279.6,127.9 280.0,125.0 280.4,124.3 280.8,123.1 281.2,125.2 281.5,132.6 281.9,135.2 282.3,139.1 282.7,143.1 283.0,141.2 283.4,141.7 283.8,141.7 284.2,147.6 284.5,147.9 284.9,146.9 285.3,150.8 285.7,151.2 286.1,154.4 286.4,154.8 286.8,154.2 287.2,156.4 287.6,159.7 287.9,161.4 288.3,162.0 288.7,162.0 289.1,160.7 289.4,160.1 289.8,159.7 290.2,162.6 290.6,162.3 290.9,161.1 291.3,160.1 291.7,161.9 292.1,165.6 292.5,164.8 292.8,163.6 293.2,164.8 293.6,165.5 294.0,167.8 294.3,167.4 294.7,168.4 295.1,165.8 295.5,164.7 295.8,162.5 296.2,162.2 296.6,164.8 297.0,167.7 297.4,171.3 297.7,172.7 298.1,174.7 298.5,174.9 298.9,174.5 299.2,174.1 299.6,173.8 300.0,173.2 300.4,173.0 300.7,174.3 301.1,177.7 301.5,178.6 301.9,171.1 302.2,167.7 302.6,172.3 303.0,175.3 303.4,177.2 303.8,176.0 304.1,179.5 304.5,181.7 304.9,183.0 305.3,185.8 305.6,191.0 306.0,191.5 306.4,190.6 306.8,187.5 307.1,177.7 307.5,177.9 307.9,184.0 308.3,184.9 308.7,183.9 309.0,186.1 309.4,185.4 309.8,180.6 310.2,181.4 310.5,183.6 310.9,183.6 311.3,182.6 311.7,180.9 312.0,180.6 312.4,180.9 312.8,184.6 313.2,184.0 313.6,187.9 313.9,190.5 314.3,191.9 314.7,193.2 315.1,195.6 315.4,197.2 315.8,195.6 316.2,192.5 316.6,191.0 316.9,185.6 317.3,183.7 317.7,180.8 318.1,185.5 318.4,187.1 318.8,192.0 319.2,194.9 319.6,194.8 320.0,195.1 320.3,194.4 320.7,190.2 321.1,187.7 321.5,188.0 321.8,187.2 322.2,182.8 322.6,165.0 323.0,163.8 323.3,158.1 323.7,153.2 324.1,154.4 324.5,157.9 324.9,159.4 325.2,159.7 325.6,161.0 326.0,154.8 326.4,145.0 326.7,143.4 327.1,152.7 327.5,155.1 327.9,155.0 328.2,155.1 328.6,155.9 329.0,157.9 329.4,159.2 329.7,158.0 330.1,154.9 330.5,156.5 330.9,154.6 331.3,155.7 331.6,156.4 332.0,157.1 332.4,157.3 332.8,158.6 333.1,159.1 333.5,156.9 333.9,154.7 334.3,154.9 334.6,155.2 335.0,156.7 335.4,151.4 335.8,148.1 336.2,153.2 336.5,148.3 336.9,141.0 337.3,138.7 337.7,142.5 338.0,147.4 338.4,145.0 338.8,143.1 339.2,145.3 339.5,147.5 339.9,146.2 340.3,143.4 340.7,142.3 341.1,142.5 341.4,141.9 341.8,140.7 342.2,140.6 342.6,132.8 342.9,129.2 343.3,125.3 343.7,122.9 344.1,124.8 344.4,126.5 344.8,127.4 345.2,130.8 345.6,130.2 345.9,130.9 346.7,130.2 347.1,128.2 347.5,129.6 347.8,130.4 348.2,135.0 348.6,134.7 349.0,133.0 349.3,130.2 349.7,127.0 350.1,128.3 350.5,128.8 350.8,131.2 351.2,131.2 351.6,137.6 352.0,141.6 352.4,142.3 352.7,139.2 353.1,142.4 353.5,142.1 353.9,140.1 354.2,138.1 355.0,137.6 355.4,140.0 355.7,140.0 356.1,142.6 356.5,143.8 356.9,145.2 357.2,142.8 357.6,140.2 358.0,136.5 358.8,135.3 359.1,137.4 359.5,139.8 359.9,139.5 360.3,142.5 360.6,147.1 361.0,148.9 361.4,148.5 361.8,145.6 362.1,146.8 362.5,147.5 362.9,148.1 363.3,147.2 363.7,142.9 364.0,141.4 364.4,141.5 364.8,140.5 365.2,143.7 365.5,145.8 365.9,148.4 366.3,145.7 366.7,145.0 367.0,146.8 367.4,148.5 367.8,148.2 368.2,149.3 368.5,149.8 368.9,149.1 369.3,151.5 369.7,152.1 370.1,156.4 370.4,160.2 370.8,162.1 371.2,162.5 371.6,161.4 371.9,161.2 372.3,156.9 372.7,157.1 373.1,150.8 373.4,149.2 373.8,152.7 374.2,153.3 374.6,154.3 375.0,159.4 375.3,157.8 375.7,159.5 376.1,160.9 376.5,160.2 376.8,157.6 377.2,155.2 377.6,154.0 378.0,149.2 378.3,139.7 378.7,130.7 379.1,128.8 379.5,126.4 379.9,129.4 380.2,129.1 380.6,129.7 381.0,129.0 381.4,127.9 381.7,128.0 382.1,128.6 382.5,124.0 382.9,120.8 383.2,121.9 383.6,121.3 384.0,124.4 384.4,124.3 384.7,121.1 385.1,122.9 385.5,124.5 385.9,124.9 386.3,125.6 386.6,127.1 387.0,122.1 387.4,122.1 387.8,124.3 388.1,129.9 388.5,132.0 388.9,133.8 389.3,135.3 389.6,139.3 390.0,143.7 390.4,145.1 390.8,140.2 391.2,128.8 391.5,114.1 391.9,100.5 392.3,99.3 392.7,105.0 393.0,106.5 393.4,105.0 393.8,100.8 394.2,100.8 394.5,101.0 394.9,101.8 395.3,102.2 395.7,104.0 396.0,106.1 396.4,107.9 396.8,105.9 397.2,104.6 397.6,98.2 397.9,92.8 398.3,86.1 398.7,85.8 399.1,88.1 399.4,87.0 399.8,87.8 400.2,90.9 400.6,90.5 400.9,88.4 401.3,87.0 401.7,86.0 402.1,83.0 402.5,83.7 402.8,83.9 403.2,84.9 403.6,89.5 404.0,90.9 404.3,92.8 404.7,92.2 405.1,93.0 405.5,91.8 405.8,91.0 406.2,93.0 406.6,97.5 407.0,97.8 407.4,96.3 407.7,90.3 408.1,81.9 408.5,85.6 408.9,91.8 409.2,91.1 409.6,90.2 410.0,90.9 410.4,86.5 410.7,81.9 411.1,80.3 411.5,80.2 411.9,78.6 412.2,78.1 412.6,76.3 413.0,76.7 413.4,76.1 413.8,76.5 414.1,77.3 414.5,81.0 414.9,80.4 415.3,81.2 415.6,80.4 416.0,79.5 416.4,80.6 416.8,75.5 417.1,66.4 417.5,65.4 417.9,67.6 418.3,73.0 418.7,71.4 419.0,73.2 419.4,73.0 419.8,76.9 420.2,78.6 420.5,72.1 420.9,67.7 421.3,67.9 421.7,67.8 422.0,68.6 422.4,68.4 422.8,70.7 423.2,75.3 423.5,83.3 423.9,81.1 424.3,81.4 424.7,80.5 425.1,82.1 425.4,83.7 425.8,84.3 426.2,86.4 426.6,86.3 426.9,88.6 427.3,89.0 427.7,89.0 428.1,86.3 428.4,86.7 428.8,91.5 429.2,95.6 429.6,99.1 430.0,97.2 430.3,97.6 430.7,101.6 431.1,106.2 431.5,108.2 431.8,105.1 432.2,102.4 432.6,102.6 433.0,101.3 433.3,102.4 433.7,102.6 434.1,100.9 434.5,101.4 434.8,103.9 435.2,103.0 435.6,104.5 436.0,103.6 436.4,106.2 436.7,110.6 437.1,110.7 437.5,104.4 437.9,103.3 438.2,99.6 438.6,99.2 439.0,99.8 439.4,94.5 439.7,90.1 440.1,98.2 440.5,98.7 440.9,98.0 441.3,98.3 441.6,99.1 442.0,98.6 442.4,98.4 442.8,97.7 443.5,96.7 443.9,94.5 444.3,93.4 444.6,89.4 445.0,84.6 445.4,81.3 445.8,80.2 446.2,81.3 446.5,76.7 446.9,76.0 447.3,80.2 447.7,79.6 448.0,76.8 448.4,77.1 448.8,79.6 449.2,79.9 449.5,80.7 449.9,82.9 450.3,84.4 450.7,85.0 451.0,86.9 451.4,86.4 451.8,88.4 452.2,86.3 452.6,85.5 452.9,84.1 453.3,85.6 453.7,86.3 454.1,87.3 454.4,84.6 454.8,82.2 455.2,85.7 455.6,88.3 455.9,86.5 456.3,84.6 456.7,82.9 457.1,80.5 457.5,78.2 457.8,77.5 458.2,64.5 458.6,63.9 459.0,65.0 459.3,68.9 459.7,71.1 460.1,71.3 460.5,75.3 460.8,69.7 461.2,68.6 461.6,68.2 462.0,69.8 462.3,71.1 462.7,71.7 463.1,69.2 463.5,67.5 463.9,66.5 464.2,70.5 464.6,70.5 465.0,71.5 465.4,72.6 465.7,73.8 466.1,74.6 466.5,73.1 466.9,74.2 467.2,75.8 467.6,78.6 468.0,80.3"/><circle class="fA mean" cx="468.2" cy="64.8" r="3.5"/><text class="endlab" x="475.2" y="68.3"><tspan class="ro-n">A</tspan> +460.6R</text><circle class="fB mean" cx="468.2" cy="79.8" r="3.5"/><text class="endlab" x="475.2" y="83.3"><tspan class="ro-n">B</tspan> +375.1R</text></svg></div><div class="card"><h3>US500 <span class="tag">r_equity · full window</span></h3><svg class="chart" viewBox="0 0 560 232" width="100%" preserveAspectRatio="xMidYMid meet" role="img"><line class="grid" x1="54" y1="190.1" x2="468" y2="190.1"/><text class="tick" x="48" y="193.6" text-anchor="end">0</text><line class="grid" x1="54" y1="132.4" x2="468" y2="132.4"/><text class="tick" x="48" y="135.9" text-anchor="end">+500</text><line class="grid" x1="54" y1="74.6" x2="468" y2="74.6"/><text class="tick" x="48" y="78.1" text-anchor="end">+1000</text><line class="grid" x1="54" y1="16.8" x2="468" y2="16.8"/><text class="tick" x="48" y="20.3" text-anchor="end">+1500</text><line class="zero" x1="54" y1="190.1" x2="468" y2="190.1"/><line class="grid" x1="102.6" y1="208" x2="102.6" y2="212"/><text class="tick" x="102.6" y="224" text-anchor="middle">2019</text><line class="grid" x1="200.2" y1="208" x2="200.2" y2="212"/><text class="tick" x="200.2" y="224" text-anchor="middle">2021</text><line class="grid" x1="297.7" y1="208" x2="297.7" y2="212"/><text class="tick" x="297.7" y="224" text-anchor="middle">2023</text><line class="grid" x1="395.3" y1="208" x2="395.3" y2="212"/><text class="tick" x="395.3" y="224" text-anchor="middle">2025</text><polygon class="fA band" points="54.0,188.0 54.4,183.1 54.8,182.2 55.1,180.5 55.5,179.9 55.9,178.7 56.3,182.2 56.6,185.5 57.0,185.4 57.4,185.2 57.8,184.4 58.1,183.1 58.5,178.0 58.9,180.1 59.3,181.2 59.7,182.2 60.0,181.1 60.4,180.5 60.8,181.1 61.2,184.0 61.5,181.8 61.9,182.6 62.3,183.1 62.7,183.4 63.0,182.4 63.4,182.4 63.8,183.6 64.2,181.6 64.5,177.0 64.9,175.8 65.3,177.0 65.7,182.0 66.1,182.3 66.4,184.4 66.8,187.9 67.2,188.6 67.6,190.8 67.9,189.7 68.3,189.0 68.7,189.0 69.1,189.4 69.4,190.7 69.8,190.3 70.2,187.7 70.6,188.5 71.0,188.9 71.3,188.5 71.7,187.0 72.1,187.3 72.5,189.5 72.8,189.1 73.2,192.1 73.6,193.0 74.0,192.4 74.3,190.6 74.7,184.1 75.1,185.1 75.5,192.5 75.8,191.3 76.2,189.9 76.6,189.1 77.0,191.2 77.4,183.0 77.7,191.3 78.1,192.9 78.5,195.4 78.9,195.9 79.2,195.0 79.6,195.7 80.0,195.7 80.4,196.2 80.7,196.2 81.1,191.5 81.5,191.6 81.9,191.3 82.3,192.2 82.6,194.6 83.0,192.8 83.4,187.1 83.8,185.9 84.1,182.2 84.5,190.2 84.9,189.8 85.3,190.9 85.6,187.2 86.0,185.3 86.4,188.2 86.8,188.4 87.2,188.9 87.5,189.5 87.9,189.3 88.3,189.6 88.7,188.6 89.0,187.4 89.4,187.9 89.8,188.2 90.2,189.5 90.5,189.0 90.9,179.9 91.3,178.4 91.7,143.6 92.0,151.1 92.4,150.9 92.8,160.0 93.2,160.4 93.6,159.7 93.9,162.4 94.3,161.7 94.7,160.7 95.1,160.4 95.4,150.3 95.8,137.4 96.2,121.7 96.6,131.4 96.9,137.6 97.3,137.4 97.7,136.9 98.1,132.7 98.5,132.2 98.8,128.7 99.2,125.0 99.6,129.6 100.0,127.7 100.3,130.9 100.7,129.6 101.1,126.9 101.5,125.3 101.8,124.3 102.2,123.6 102.6,121.3 103.0,123.2 103.3,124.6 103.7,124.0 104.1,126.8 104.5,126.9 104.9,128.3 105.2,129.5 105.6,126.4 106.0,128.9 106.4,129.7 106.7,128.9 107.1,127.9 107.5,120.0 107.9,119.0 108.2,112.3 108.6,112.5 109.0,116.9 109.4,118.0 109.8,120.4 110.1,120.8 110.5,121.6 110.9,123.3 111.3,116.9 111.6,116.8 112.0,103.3 112.4,101.1 112.8,95.5 113.1,99.4 113.5,103.2 113.9,103.2 114.3,105.4 114.6,100.5 115.0,97.3 115.4,96.9 115.8,96.8 116.2,98.4 116.5,100.1 116.9,99.6 117.3,101.8 117.7,102.8 118.0,101.8 118.4,102.9 118.8,108.1 119.2,112.9 119.5,111.8 119.9,111.4 120.3,110.4 120.7,110.2 121.1,111.4 121.4,111.7 121.8,112.0 122.2,112.5 122.6,111.8 122.9,113.8 123.3,109.4 123.7,107.3 124.1,105.7 124.4,106.9 124.8,108.7 125.2,103.1 125.6,102.5 126.0,100.3 126.3,99.6 126.7,100.1 127.1,98.0 127.5,95.3 127.8,95.2 128.2,97.1 128.6,96.9 129.0,95.9 129.3,97.3 129.7,92.6 130.1,91.2 130.5,97.3 130.8,82.7 131.2,74.1 131.6,45.7 132.0,65.9 132.4,68.6 132.7,69.1 133.1,72.2 133.5,71.6 133.9,68.1 134.2,66.3 134.6,71.2 135.0,71.3 135.4,67.0 135.7,64.7 136.1,64.2 136.5,66.4 136.9,66.7 137.3,68.9 137.6,72.3 138.0,70.3 138.4,69.9 138.8,74.8 139.1,72.3 139.5,70.3 139.9,69.6 140.3,69.3 140.6,71.8 141.0,73.4 141.4,74.0 141.8,74.9 142.1,78.3 142.5,78.8 142.9,78.4 143.3,78.7 143.7,77.1 144.0,76.8 144.4,80.3 144.8,80.9 145.2,82.2 145.5,80.3 145.9,81.4 146.3,82.4 146.7,79.8 147.0,80.2 147.4,79.5 147.8,78.5 148.2,78.7 148.6,77.3 148.9,79.7 149.3,79.1 149.7,78.1 150.1,77.9 150.4,77.9 150.8,77.4 151.2,76.6 151.6,78.8 151.9,75.5 152.3,78.6 152.7,82.6 153.1,83.4 153.5,83.4 153.8,83.5 154.2,83.0 154.6,88.4 155.0,87.7 155.3,87.5 155.7,90.4 156.1,86.3 156.5,86.8 156.8,84.0 157.2,83.9 157.6,91.4 158.0,90.2 158.3,91.4 158.7,85.6 159.1,79.0 159.5,80.7 159.9,79.0 160.2,76.9 160.6,74.7 161.0,74.3 161.4,78.8 161.7,79.5 162.1,82.1 162.5,81.7 162.9,80.7 163.2,82.6 163.6,83.8 164.0,84.1 164.4,81.9 164.8,81.2 165.1,80.6 165.5,80.5 165.9,82.9 166.3,84.4 166.6,83.9 167.0,85.4 167.4,83.3 167.8,78.8 168.1,80.0 168.5,81.8 168.9,81.2 169.3,81.0 169.6,82.9 170.0,82.7 170.4,85.6 170.8,87.2 171.2,87.0 171.5,91.2 171.9,90.9 172.3,90.6 172.7,90.5 173.0,89.8 173.4,88.3 173.8,85.1 174.2,88.0 174.5,88.5 174.9,82.9 175.3,88.8 175.7,88.4 176.1,88.7 176.4,88.6 176.8,88.7 177.2,90.3 177.6,93.9 177.9,95.2 178.3,94.6 178.7,95.5 179.1,95.6 179.4,97.6 179.8,103.6 180.2,106.4 180.6,107.9 180.9,109.3 181.3,109.5 181.7,113.9 182.1,115.7 182.5,115.9 182.8,116.3 183.2,113.6 183.6,112.9 184.0,112.5 184.3,112.8 184.7,115.4 185.1,114.1 185.5,117.0 185.8,117.1 186.2,114.5 186.6,111.1 187.0,114.8 187.4,99.0 187.7,88.5 188.1,102.7 188.5,101.7 188.9,102.3 189.2,101.4 189.6,99.7 190.0,98.8 190.4,96.2 190.7,95.5 191.1,96.4 191.5,85.8 191.9,84.8 192.3,92.1 192.6,89.5 193.0,86.3 193.4,88.6 193.8,94.3 194.1,95.2 194.5,96.8 194.9,96.9 195.3,95.7 195.6,96.3 196.0,98.0 196.4,97.9 196.8,97.6 197.1,98.6 197.5,100.1 197.9,100.5 198.3,98.5 198.7,100.2 199.0,102.4 199.8,106.9 200.2,107.7 200.5,106.3 200.9,108.2 201.3,107.7 201.7,107.8 202.0,103.9 202.4,104.2 202.8,105.1 203.2,104.8 203.6,105.7 203.9,105.8 204.3,110.9 204.7,108.8 205.1,108.0 205.4,106.6 205.8,106.3 206.2,105.3 206.6,104.2 206.9,107.5 207.3,108.0 207.7,111.8 208.1,112.1 208.4,112.9 208.8,113.0 209.2,112.4 209.6,111.5 210.0,113.3 210.3,113.8 210.7,114.0 211.1,114.9 211.5,115.4 211.8,115.6 212.2,110.8 212.6,111.1 213.0,106.8 213.3,104.7 213.7,103.3 214.1,103.1 214.5,105.4 214.9,106.0 215.2,106.0 215.6,109.9 216.0,108.7 216.4,111.0 216.7,112.2 217.1,109.3 217.5,108.2 217.9,110.8 218.2,112.9 218.6,112.7 219.0,108.6 219.4,106.5 219.8,107.5 220.1,108.7 220.5,108.8 220.9,109.4 221.3,108.8 221.6,109.0 222.0,112.7 222.4,107.9 222.8,103.1 223.1,101.3 223.5,107.1 223.9,106.9 224.3,106.5 224.6,106.8 225.0,105.0 225.4,107.2 225.8,109.5 226.2,109.2 226.5,110.6 226.9,108.9 227.3,105.5 227.7,105.0 228.0,105.2 228.4,109.1 228.8,110.8 229.2,114.1 229.5,114.3 229.9,115.8 230.3,116.3 230.7,116.1 231.1,118.0 231.4,113.1 231.8,112.5 232.2,115.3 232.6,115.0 232.9,114.9 233.3,114.9 233.7,110.0 234.1,114.8 234.4,113.7 234.8,114.3 235.2,114.9 235.6,117.5 235.9,118.7 236.3,113.6 236.7,110.8 237.1,108.9 237.5,113.6 237.8,117.6 238.2,115.1 238.6,108.5 239.0,107.7 239.3,104.2 239.7,104.8 240.1,100.1 240.5,103.3 240.8,102.5 241.2,98.2 241.6,98.4 242.0,98.6 242.4,99.3 242.7,98.8 243.1,98.9 243.5,99.4 243.9,99.7 244.2,89.6 244.6,94.5 245.0,98.3 245.4,98.6 245.7,87.0 246.1,88.8 246.5,87.7 246.9,88.4 247.3,92.8 247.6,90.1 248.0,89.9 248.4,87.8 248.8,87.8 249.1,88.5 249.5,89.7 249.9,89.5 250.3,87.9 250.6,89.4 251.0,90.3 251.4,85.0 251.8,83.4 252.1,79.0 252.5,84.2 252.9,86.3 253.3,81.2 253.7,79.3 254.0,80.6 254.4,81.3 254.8,82.1 255.2,83.2 255.5,82.6 255.9,81.7 256.3,80.2 256.7,81.3 257.0,80.9 257.4,81.8 257.8,80.2 258.2,82.0 258.6,85.2 258.9,84.8 259.3,83.5 259.7,82.4 260.1,83.7 260.4,85.5 260.8,84.7 261.2,84.7 261.6,83.3 261.9,83.2 262.3,84.4 262.7,85.2 263.1,85.3 263.4,81.9 263.8,80.3 264.2,81.7 264.6,84.9 265.0,86.7 265.3,85.3 265.7,86.5 266.1,88.1 266.5,86.1 266.8,85.9 267.2,83.9 267.6,83.1 268.0,85.0 268.3,82.6 268.7,81.6 269.1,80.1 269.5,79.7 269.9,84.2 270.2,79.6 270.6,73.8 271.0,72.8 271.4,75.5 271.7,75.3 272.1,74.7 272.5,73.9 272.9,73.4 273.2,74.1 273.6,74.1 274.0,76.6 274.4,75.9 274.7,71.2 275.1,74.2 275.5,73.2 275.9,72.0 276.3,73.5 276.6,69.3 277.0,68.0 277.4,68.0 277.8,66.7 278.1,69.9 278.5,71.2 278.9,77.6 279.3,76.9 279.6,77.0 280.0,75.8 280.4,75.7 280.8,69.0 281.2,68.8 281.5,71.0 281.9,71.3 282.3,71.9 282.7,71.6 283.0,70.4 283.4,71.0 283.8,69.8 284.2,73.1 284.5,74.2 284.9,73.4 285.3,73.8 285.7,72.1 286.1,71.8 286.4,73.2 286.8,72.6 287.2,71.4 287.6,71.7 287.9,71.7 288.3,76.3 288.7,74.7 289.1,74.9 289.4,75.5 289.8,75.7 290.2,77.7 290.6,77.0 290.9,74.4 291.3,74.2 291.7,77.5 292.1,81.6 292.5,80.6 292.8,80.2 293.2,73.6 293.6,73.6 294.0,78.1 294.3,74.3 294.7,75.5 295.1,73.4 295.5,76.4 295.8,78.9 296.2,78.8 296.6,79.1 297.0,81.2 297.4,82.4 298.1,84.9 298.5,85.8 298.9,83.9 299.2,81.7 299.6,81.5 300.0,80.9 300.4,83.1 300.7,81.7 301.1,81.3 301.5,83.4 301.9,80.9 302.2,81.3 302.6,79.9 303.0,81.9 303.4,80.9 303.8,78.9 304.1,83.7 304.5,82.4 304.9,82.3 305.3,84.5 305.6,78.9 306.0,85.1 306.4,83.0 306.8,86.4 307.1,85.3 307.5,87.2 307.9,89.7 308.3,89.0 308.7,92.3 309.0,93.9 309.4,90.1 309.8,84.9 310.2,81.7 310.5,84.5 310.9,85.8 311.3,88.8 311.7,91.2 312.0,92.3 312.4,96.5 312.8,95.8 313.2,92.6 313.6,91.6 313.9,91.6 314.3,97.0 314.7,97.1 315.1,96.0 315.4,99.7 315.8,98.2 316.2,97.0 316.6,97.1 316.9,96.8 317.3,96.1 317.7,94.1 318.1,78.5 318.4,75.7 318.8,75.9 319.2,87.7 319.6,84.7 320.0,82.5 320.3,80.8 320.7,79.6 321.1,81.1 321.5,81.6 321.8,82.9 322.2,82.9 322.6,80.2 323.0,84.0 323.3,81.9 323.7,80.9 324.1,79.0 324.5,78.1 324.9,78.5 325.2,80.1 325.6,84.3 326.0,86.3 326.4,83.0 326.7,86.4 327.1,89.9 327.5,95.7 327.9,95.9 328.2,92.4 328.6,93.2 329.0,90.3 329.4,92.2 329.7,88.4 330.1,87.8 330.5,89.1 330.9,88.2 331.3,88.4 331.6,88.5 332.0,88.8 332.4,90.9 332.8,86.6 333.1,86.3 333.5,85.7 333.9,89.2 334.3,92.1 334.6,91.8 335.0,92.1 335.4,94.4 335.8,95.3 336.2,97.8 336.5,100.6 336.9,99.7 337.3,98.4 337.7,97.1 338.0,97.5 338.4,92.9 338.8,92.5 339.2,92.5 339.5,95.7 339.9,93.3 340.3,92.6 340.7,95.0 341.1,93.3 341.4,93.5 341.8,93.4 342.2,94.4 342.6,98.9 342.9,99.9 343.3,100.9 343.7,102.2 344.1,98.4 344.4,97.9 344.8,96.4 345.2,96.7 345.6,100.1 345.9,98.6 346.7,100.0 347.1,99.7 347.5,97.8 347.8,95.9 348.2,100.8 348.6,99.0 349.0,98.6 349.3,97.5 349.7,97.0 350.1,96.4 350.5,87.7 350.8,99.4 351.2,101.1 351.6,100.8 352.0,100.7 352.4,96.3 352.7,95.4 353.1,98.8 353.5,99.6 353.9,101.1 354.2,100.3 355.0,100.1 355.4,102.3 355.7,101.5 356.1,102.9 356.5,95.8 356.9,98.2 357.2,106.7 357.6,107.3 358.0,108.0 358.4,111.8 358.8,111.2 359.1,111.5 359.5,114.1 359.9,113.3 360.3,114.7 360.6,111.3 361.0,108.1 361.4,108.3 361.8,106.0 362.1,109.5 362.5,108.3 362.9,107.8 363.3,104.9 363.7,104.8 364.0,105.4 364.4,97.4 364.8,96.9 365.2,98.6 365.5,98.3 365.9,103.8 366.3,104.3 366.7,106.0 367.0,106.7 367.4,105.6 367.8,105.8 368.2,106.4 368.5,106.6 368.9,106.3 369.3,105.3 369.7,105.7 370.1,105.5 370.4,108.7 370.8,110.6 371.2,108.4 371.6,107.5 371.9,103.0 372.3,106.9 372.7,110.0 373.1,107.7 373.4,108.1 373.8,108.4 374.2,110.3 374.6,110.1 375.0,107.0 375.3,92.9 375.7,99.6 376.1,108.3 376.5,106.6 376.8,104.0 377.2,102.8 377.6,102.2 378.0,102.9 378.3,103.9 378.7,104.7 379.1,106.4 379.5,96.0 379.9,88.4 380.2,89.5 380.6,94.9 381.0,94.3 381.4,93.1 381.7,97.5 382.1,99.9 382.5,100.9 382.9,100.4 383.2,103.3 383.6,103.2 384.0,102.6 384.4,102.1 384.7,99.7 385.1,99.9 385.5,100.8 385.9,99.5 386.3,100.4 386.6,103.7 387.0,98.2 387.4,99.1 387.8,97.6 388.1,99.2 388.5,99.0 388.9,98.9 389.3,99.6 389.6,99.3 390.0,101.2 390.4,100.5 390.8,100.4 391.2,102.6 391.5,101.0 391.9,100.6 392.3,98.2 392.7,98.8 393.0,103.0 393.4,104.3 393.8,106.4 394.2,109.9 394.5,109.8 394.9,109.5 395.3,109.5 395.7,110.4 396.0,110.5 396.4,109.0 396.8,108.1 397.2,107.7 397.6,107.0 397.9,106.5 398.3,103.2 398.7,66.1 399.1,88.9 399.4,96.2 399.8,96.6 400.2,98.8 400.6,100.3 400.9,100.0 401.3,102.4 401.7,100.1 402.1,99.3 402.5,99.4 402.8,95.7 403.2,101.8 403.6,103.6 404.0,102.7 404.3,100.7 404.7,99.7 405.1,100.5 405.5,97.7 405.8,102.3 406.2,106.8 406.6,104.7 407.0,101.2 407.4,100.1 407.7,100.2 408.1,102.8 408.5,102.7 408.9,104.2 409.2,104.0 409.6,104.4 410.0,104.0 410.4,98.6 410.7,102.9 411.1,102.6 411.5,108.7 411.9,106.9 412.2,109.4 412.6,110.8 413.0,110.4 413.4,109.4 413.8,111.5 414.1,106.7 414.5,108.4 414.9,110.0 415.3,113.5 415.6,115.3 416.0,113.7 416.4,118.2 416.8,117.4 417.1,117.8 417.5,121.4 417.9,124.1 418.3,125.5 418.7,125.8 419.0,117.8 419.4,114.0 419.8,104.5 420.2,106.5 420.5,111.9 420.9,114.4 421.3,114.8 421.7,114.5 422.0,119.8 422.4,122.0 422.8,121.4 423.2,119.9 423.5,117.1 423.9,128.9 424.3,129.1 424.7,132.8 425.1,133.8 425.4,133.3 425.8,135.8 426.2,136.2 426.6,137.0 426.9,135.8 427.3,138.2 427.7,139.2 428.1,134.0 428.4,137.3 428.8,136.9 429.2,136.0 429.6,135.5 430.0,135.3 430.3,137.4 430.7,134.5 431.1,130.5 431.5,133.9 431.8,133.2 432.2,132.9 432.6,132.2 433.0,131.3 433.3,133.7 433.7,133.8 434.1,137.5 434.5,133.9 434.8,136.8 435.2,137.6 435.6,135.3 436.0,134.9 436.4,131.7 436.7,135.0 437.1,135.4 437.5,126.6 437.9,124.9 438.2,131.8 438.6,133.8 439.0,132.9 439.4,130.9 439.7,130.3 440.1,130.0 440.5,129.1 440.9,129.4 441.3,130.2 441.6,134.2 442.0,127.7 442.4,128.7 442.8,131.3 443.1,130.7 443.5,130.1 443.9,128.2 444.3,125.3 444.6,127.6 445.0,128.1 445.4,130.8 445.8,132.9 446.2,137.3 446.5,133.6 446.9,133.1 447.3,141.0 447.7,142.3 448.0,144.0 448.4,142.6 448.8,141.1 449.2,143.8 449.5,142.4 449.9,142.7 450.3,142.3 450.7,143.5 451.0,141.4 451.4,147.4 451.8,149.3 452.2,147.5 452.6,156.0 452.9,151.9 453.3,157.1 453.7,155.6 454.1,155.3 454.4,155.7 454.8,154.9 455.2,155.6 455.6,152.7 455.9,151.9 456.3,153.1 456.7,152.7 457.1,152.6 457.5,153.9 457.8,146.9 458.2,141.5 458.6,141.7 459.0,141.5 459.3,146.0 459.7,140.7 460.1,145.8 460.5,145.2 460.8,140.3 461.2,143.9 461.6,144.9 462.0,144.0 462.3,142.0 462.7,142.0 463.1,143.4 463.5,143.4 463.9,146.9 464.2,148.0 464.6,147.8 465.0,147.5 465.4,144.4 465.7,145.2 466.1,146.1 466.5,139.9 466.9,142.5 467.2,145.8 467.6,151.9 468.0,152.0 468.0,153.5 467.6,153.1 467.2,153.1 466.9,146.3 466.5,148.2 466.1,147.0 465.7,148.2 465.4,150.8 465.0,151.6 464.6,151.8 464.2,148.9 463.9,149.2 463.5,147.2 463.1,144.6 462.7,145.6 462.3,145.8 462.0,147.0 461.6,147.4 461.2,145.4 460.8,145.4 460.5,147.8 460.1,150.5 459.7,148.4 459.3,146.6 459.0,147.2 458.6,145.6 458.2,147.5 457.8,155.0 457.5,154.1 457.1,154.4 456.7,154.2 456.3,155.2 455.9,156.1 455.6,156.7 455.2,159.4 454.8,160.6 454.4,160.6 454.1,161.0 453.7,159.1 453.3,160.6 452.9,159.8 452.6,160.1 452.2,156.8 451.8,151.3 451.4,151.4 451.0,149.1 450.7,148.3 450.3,144.1 449.9,144.1 449.5,146.1 449.2,144.6 448.8,146.8 448.4,146.4 448.0,145.2 447.7,144.4 447.3,144.2 446.9,141.5 446.5,140.5 446.2,139.9 445.8,138.8 445.4,133.9 445.0,131.4 444.6,130.5 444.3,129.8 443.9,131.3 443.5,131.6 443.1,131.5 442.8,132.6 442.4,133.2 442.0,134.8 441.6,134.7 441.3,134.4 440.9,131.4 440.5,130.9 440.1,131.7 439.7,131.2 439.4,133.4 439.0,137.0 438.6,137.4 438.2,136.2 437.9,132.3 437.5,136.0 437.1,137.0 436.7,137.1 436.4,137.3 436.0,137.5 435.6,138.7 435.2,138.4 434.8,139.8 434.5,140.5 434.1,141.0 433.7,140.1 433.3,137.0 433.0,137.4 432.6,135.6 432.2,133.6 431.8,134.4 431.5,134.4 431.1,136.6 430.7,138.3 430.3,138.2 430.0,138.4 429.6,136.4 429.2,137.6 428.8,138.5 428.4,139.0 428.1,139.7 427.7,140.7 427.3,140.4 426.9,139.5 426.6,138.3 426.2,138.5 425.8,136.6 425.4,136.3 425.1,136.3 424.7,135.1 424.3,133.4 423.9,129.8 423.5,126.5 423.2,124.3 422.8,122.6 422.4,124.5 422.0,122.7 421.7,120.6 421.3,119.6 420.9,117.5 420.5,115.9 420.2,113.4 419.8,117.6 419.4,119.2 419.0,128.6 418.7,129.6 418.3,129.4 417.9,127.0 417.5,126.0 417.1,123.8 416.8,119.0 416.4,118.7 416.0,118.7 415.6,118.1 415.3,116.8 414.9,114.1 414.5,113.2 414.1,116.4 413.8,115.6 413.4,112.1 413.0,111.0 412.6,111.9 412.2,112.2 411.9,109.9 411.5,109.2 411.1,109.0 410.7,104.2 410.4,104.4 410.0,104.4 409.6,104.6 409.2,104.7 408.9,105.2 408.5,105.7 408.1,103.4 407.7,103.7 407.4,103.1 407.0,105.3 406.6,106.9 406.2,107.1 405.8,105.5 405.5,103.8 405.1,101.7 404.7,102.6 404.3,104.3 404.0,106.3 403.6,106.4 403.2,103.6 402.8,102.9 402.5,103.2 402.1,107.0 401.7,103.4 401.3,102.7 400.9,103.1 400.6,100.6 400.2,100.5 399.8,99.9 399.4,99.9 399.1,98.2 398.7,107.3 398.3,107.6 397.9,109.4 397.6,108.7 397.2,111.0 396.8,109.7 396.4,112.5 396.0,113.5 395.7,113.4 395.3,110.5 394.9,110.6 394.5,110.6 394.2,111.5 393.8,111.3 393.4,110.8 393.0,105.1 392.7,105.3 392.3,102.4 391.9,101.8 391.5,103.0 391.2,103.4 390.8,104.1 390.4,101.3 390.0,102.2 389.6,102.5 389.3,100.9 388.9,102.1 388.5,99.9 388.1,100.3 387.8,102.9 387.4,101.8 387.0,107.1 386.6,106.1 386.3,104.3 385.9,102.7 385.5,101.7 385.1,102.2 384.7,102.7 384.4,104.5 384.0,106.0 383.6,103.3 383.2,103.4 382.9,103.0 382.5,101.4 382.1,101.8 381.7,100.2 381.4,98.6 381.0,96.0 380.6,100.1 380.2,99.5 379.9,99.1 379.5,107.8 379.1,107.1 378.7,108.2 378.3,106.5 378.0,104.4 377.6,104.0 377.2,104.3 376.8,107.1 376.5,109.0 376.1,109.7 375.7,109.7 375.3,108.0 375.0,115.8 374.6,113.7 374.2,112.5 373.8,111.4 373.4,109.7 373.1,111.1 372.7,110.5 372.3,110.6 371.9,108.1 371.6,109.1 371.2,112.6 370.8,113.2 370.4,112.0 370.1,111.7 369.7,107.3 369.3,106.9 368.9,109.4 368.5,108.7 368.2,108.1 367.8,106.6 367.4,107.5 367.0,107.9 366.7,107.1 366.3,107.3 365.9,104.7 365.5,104.8 365.2,100.7 364.8,100.4 364.4,107.4 364.0,107.4 363.7,108.4 363.3,108.4 362.9,111.4 362.5,111.1 362.1,111.0 361.8,110.7 361.4,111.0 361.0,113.1 360.6,117.6 360.3,116.9 359.9,115.2 359.5,115.2 359.1,115.0 358.8,113.4 358.4,112.1 358.0,112.5 357.6,108.0 357.2,108.0 356.9,109.3 356.5,104.1 356.1,103.7 355.7,103.1 355.4,103.6 355.0,102.7 354.2,103.3 353.9,103.5 353.5,102.7 353.1,102.5 352.7,101.0 352.4,101.2 352.0,100.9 351.6,101.1 351.2,101.3 350.8,101.3 350.5,97.5 350.1,97.7 349.7,98.1 349.3,98.5 349.0,100.9 348.6,101.1 348.2,101.3 347.8,101.6 347.5,100.3 347.1,100.3 346.7,100.8 345.9,100.6 345.6,100.7 345.2,101.2 344.8,98.9 344.4,99.2 344.1,102.5 343.7,104.6 343.3,105.4 342.9,102.4 342.6,102.1 342.2,98.1 341.8,96.5 341.4,93.8 341.1,95.4 340.7,95.6 340.3,95.9 339.9,99.5 339.5,99.7 339.2,95.9 338.8,93.3 338.4,97.7 338.0,99.1 337.7,98.9 337.3,100.7 336.9,101.0 336.5,102.7 336.2,101.1 335.8,98.5 335.4,96.1 335.0,95.3 334.6,92.6 334.3,92.4 333.9,92.2 333.5,90.4 333.1,87.8 332.8,91.6 332.4,91.8 332.0,91.9 331.6,90.1 331.3,89.8 330.9,89.3 330.5,89.5 330.1,89.5 329.7,95.4 329.4,94.5 329.0,94.3 328.6,95.3 328.2,97.3 327.9,97.9 327.5,96.4 327.1,96.5 326.7,90.1 326.4,88.1 326.0,89.3 325.6,86.9 325.2,85.0 324.9,81.7 324.5,80.9 324.1,82.4 323.7,82.3 323.3,87.1 323.0,86.1 322.6,84.7 322.2,83.4 321.8,85.1 321.5,85.6 321.1,84.6 320.7,85.0 320.3,84.2 320.0,86.0 319.6,87.8 319.2,88.4 318.8,89.4 318.4,85.4 318.1,97.3 317.7,96.8 317.3,97.0 316.9,99.5 316.6,99.5 316.2,100.4 315.8,101.9 315.4,102.1 315.1,99.6 314.7,98.1 314.3,98.1 313.9,98.3 313.6,94.2 313.2,96.4 312.8,97.1 312.4,97.2 312.0,97.5 311.7,95.4 311.3,92.9 310.9,90.1 310.5,86.4 310.2,87.0 309.8,91.1 309.4,97.7 309.0,95.1 308.7,96.0 308.3,94.5 307.9,91.1 307.5,90.9 307.1,89.1 306.8,89.6 306.4,88.1 306.0,89.3 305.6,88.5 305.3,87.3 304.9,86.5 304.5,84.4 304.1,84.4 303.8,85.5 303.4,84.3 303.0,83.5 302.6,83.6 302.2,83.7 301.9,85.0 301.5,85.3 301.1,85.3 300.7,83.3 300.4,84.0 300.0,84.3 299.6,83.6 299.2,87.6 298.9,88.2 298.5,87.6 298.1,86.9 297.4,86.6 297.0,83.6 296.6,81.2 296.2,80.7 295.8,79.5 295.5,80.7 295.1,80.2 294.7,77.7 294.3,79.0 294.0,79.5 293.6,79.2 293.2,80.0 292.8,81.5 292.5,82.2 292.1,82.1 291.7,82.1 291.3,80.4 290.9,79.8 290.6,78.3 290.2,78.7 289.8,78.7 289.4,76.9 289.1,77.0 288.7,77.3 288.3,77.7 287.9,77.2 287.6,74.6 287.2,74.6 286.8,74.0 286.4,75.5 286.1,76.4 285.7,76.5 285.3,76.7 284.9,74.5 284.5,74.5 284.2,75.3 283.8,73.7 283.4,72.3 283.0,73.2 282.7,72.8 282.3,74.4 281.9,73.0 281.5,75.2 281.2,75.2 280.8,77.1 280.4,77.1 280.0,77.0 279.6,77.9 279.3,78.0 278.9,78.5 278.5,78.9 278.1,71.9 277.8,70.2 277.4,70.4 277.0,70.5 276.6,75.2 276.3,75.4 275.9,75.9 275.5,76.8 275.1,76.2 274.7,77.5 274.4,77.9 274.0,77.5 273.6,77.1 273.2,75.0 272.9,76.5 272.5,75.2 272.1,79.2 271.7,77.2 271.4,76.6 271.0,76.9 270.6,78.8 270.2,88.3 269.9,86.9 269.5,85.5 269.1,83.5 268.7,82.9 268.3,90.0 268.0,89.2 267.6,85.5 267.2,87.5 266.8,87.7 266.5,89.3 266.1,90.0 265.7,90.9 265.3,90.0 265.0,89.0 264.6,89.0 264.2,86.5 263.8,85.0 263.4,88.7 263.1,86.2 262.7,87.5 262.3,86.6 261.9,85.9 261.6,86.8 261.2,85.2 260.8,86.6 260.4,87.4 260.1,87.7 259.7,84.6 259.3,85.7 258.9,88.5 258.6,87.5 258.2,86.5 257.8,83.3 257.4,83.3 257.0,83.2 256.7,82.8 256.3,83.1 255.9,83.5 255.5,83.7 255.2,84.5 254.8,83.6 254.4,85.7 254.0,85.8 253.7,85.7 253.3,86.6 252.9,89.1 252.5,88.7 252.1,84.9 251.8,86.1 251.4,90.3 251.0,91.0 250.6,91.8 250.3,92.1 249.9,90.5 249.5,90.8 249.1,90.3 248.8,88.7 248.4,90.4 248.0,90.4 247.6,94.8 247.3,94.1 246.9,94.6 246.5,95.1 246.1,94.3 245.7,99.7 245.4,99.6 245.0,99.3 244.6,99.6 244.2,101.5 243.9,101.7 243.5,100.6 243.1,100.8 242.7,99.6 242.4,99.7 242.0,100.2 241.6,99.9 241.2,103.1 240.8,104.2 240.5,105.9 240.1,106.4 239.7,107.2 239.3,109.1 239.0,112.8 238.6,117.9 238.2,120.2 237.8,119.4 237.5,119.2 237.1,115.3 236.7,117.1 236.3,120.8 235.9,119.7 235.6,120.3 235.2,118.0 234.8,117.3 234.4,116.6 234.1,116.8 233.7,116.3 233.3,115.8 232.9,115.9 232.6,116.2 232.2,116.5 231.8,115.8 231.4,118.6 231.1,119.8 230.7,120.2 230.3,116.9 229.9,117.8 229.5,116.8 229.2,115.4 228.8,115.4 228.4,110.9 228.0,109.7 227.7,107.1 227.3,109.2 226.9,113.2 226.5,113.6 226.2,112.1 225.8,111.1 225.4,112.0 225.0,108.0 224.6,108.4 224.3,109.1 223.9,107.7 223.5,109.5 223.1,110.9 222.8,112.5 222.4,113.2 222.0,113.1 221.6,113.3 221.3,112.2 220.9,112.3 220.5,112.1 220.1,109.3 219.8,109.1 219.4,111.8 219.0,113.6 218.6,114.3 218.2,113.8 217.9,115.1 217.5,117.2 217.1,117.1 216.7,115.4 216.4,113.7 216.0,111.2 215.6,111.3 215.2,111.2 214.9,108.5 214.5,107.2 214.1,108.1 213.7,106.1 213.3,108.1 213.0,111.3 212.6,112.0 212.2,117.9 211.8,118.6 211.5,120.6 211.1,121.2 210.7,117.8 210.3,118.8 210.0,115.3 209.6,114.0 209.2,114.9 208.8,114.7 208.4,115.5 208.1,114.9 207.7,112.8 207.3,112.7 206.9,109.9 206.6,108.4 206.2,106.3 205.8,108.3 205.4,108.6 205.1,109.0 204.7,112.4 204.3,112.7 203.9,111.9 203.6,109.4 203.2,106.7 202.8,107.7 202.4,107.4 202.0,108.8 201.7,109.0 201.3,108.8 200.9,110.9 200.5,109.6 200.2,108.8 199.8,108.8 199.0,107.8 198.7,104.2 198.3,104.4 197.9,104.9 197.5,101.8 197.1,102.3 196.8,99.5 196.4,101.2 196.0,101.2 195.6,98.6 195.3,97.7 194.9,98.2 194.5,97.8 194.1,97.7 193.8,97.7 193.4,95.5 193.0,92.7 192.6,93.6 192.3,94.5 191.9,93.3 191.5,98.3 191.1,101.0 190.7,100.5 190.4,103.0 190.0,102.4 189.6,102.6 189.2,102.7 188.9,104.4 188.5,102.9 188.1,103.7 187.7,103.4 187.4,116.5 187.0,116.5 186.6,116.6 186.2,118.6 185.8,120.3 185.5,119.3 185.1,118.8 184.7,117.9 184.3,117.9 184.0,117.3 183.6,114.8 183.2,117.5 182.8,118.7 182.5,120.4 182.1,117.5 181.7,116.6 181.3,114.4 180.9,111.5 180.6,111.8 180.2,109.8 179.8,107.3 179.4,104.1 179.1,98.5 178.7,98.6 178.3,96.8 177.9,95.5 177.6,95.6 177.2,94.4 176.8,94.1 176.4,92.0 176.1,89.9 175.7,90.5 175.3,90.2 174.9,90.3 174.5,91.2 174.2,90.3 173.8,89.4 173.4,91.1 173.0,91.7 172.7,90.7 172.3,91.0 171.9,91.2 171.5,91.3 171.2,92.0 170.8,88.2 170.4,88.6 170.0,86.9 169.6,84.7 169.3,85.5 168.9,85.2 168.5,84.8 168.1,84.1 167.8,81.3 167.4,86.4 167.0,87.4 166.6,87.4 166.3,86.2 165.9,86.0 165.5,84.2 165.1,82.9 164.8,83.0 164.4,85.4 164.0,85.8 163.6,85.6 163.2,85.5 162.9,83.8 162.5,84.6 162.1,83.5 161.7,82.9 161.4,81.0 161.0,78.7 160.6,79.6 160.2,80.0 159.9,81.1 159.5,80.9 159.1,86.2 158.7,91.6 158.3,93.5 158.0,93.9 157.6,91.9 157.2,90.6 156.8,88.7 156.5,88.6 156.1,90.6 155.7,93.6 155.3,94.3 155.0,89.3 154.6,90.4 154.2,89.2 153.8,84.5 153.5,85.4 153.1,85.7 152.7,84.0 152.3,85.1 151.9,81.9 151.6,81.2 151.2,80.2 150.8,79.1 150.4,79.5 150.1,78.2 149.7,79.5 149.3,80.2 148.9,80.8 148.6,81.6 148.2,80.4 147.8,84.1 147.4,83.6 147.0,81.6 146.7,83.1 146.3,84.5 145.9,84.1 145.5,83.8 145.2,84.9 144.8,84.0 144.4,82.7 144.0,80.4 143.7,77.8 143.3,79.6 142.9,79.4 142.5,79.6 142.1,80.5 141.8,79.2 141.4,75.6 141.0,75.3 140.6,73.8 140.3,72.6 139.9,72.2 139.5,75.2 139.1,78.9 138.8,75.9 138.4,76.3 138.0,74.7 137.6,73.1 137.3,72.7 136.9,69.0 136.5,69.9 136.1,69.1 135.7,69.9 135.4,75.2 135.0,74.8 134.6,75.5 134.2,73.4 133.9,75.7 133.5,73.6 133.1,73.2 132.7,72.5 132.4,70.1 132.0,71.6 131.6,74.9 131.2,87.2 130.8,100.8 130.5,100.3 130.1,98.7 129.7,99.6 129.3,98.1 129.0,97.6 128.6,97.4 128.2,98.1 127.8,99.0 127.5,99.5 127.1,101.3 126.7,101.0 126.3,103.6 126.0,105.7 125.6,105.0 125.2,110.3 124.8,109.1 124.4,109.3 124.1,108.8 123.7,110.4 123.3,115.0 122.9,114.8 122.6,115.1 122.2,115.1 121.8,112.9 121.4,113.6 121.1,112.4 120.7,113.0 120.3,112.9 119.9,113.8 119.5,115.4 119.2,115.6 118.8,111.6 118.4,105.9 118.0,104.1 117.7,103.3 117.3,103.4 116.9,101.9 116.5,100.4 116.2,100.6 115.8,100.0 115.4,98.9 115.0,101.7 114.6,104.3 114.3,108.0 113.9,106.9 113.5,105.2 113.1,105.3 112.8,103.8 112.4,107.7 112.0,121.3 111.6,121.8 111.3,127.4 110.9,127.7 110.5,122.4 110.1,122.9 109.8,121.4 109.4,120.8 109.0,118.4 108.6,118.1 108.2,124.6 107.9,124.7 107.5,128.6 107.1,129.9 106.7,131.2 106.4,133.1 106.0,130.6 105.6,130.4 105.2,130.5 104.9,130.9 104.5,129.7 104.1,127.9 103.7,127.1 103.3,125.5 103.0,126.7 102.6,126.6 102.2,125.0 101.8,127.2 101.5,127.4 101.1,130.8 100.7,131.5 100.3,132.0 100.0,131.5 99.6,130.5 99.2,130.6 98.8,133.1 98.5,134.1 98.1,138.0 97.7,138.1 97.3,138.6 96.9,139.4 96.6,138.6 96.2,147.3 95.8,159.6 95.4,160.9 95.1,162.5 94.7,163.0 94.3,163.8 93.9,164.2 93.6,163.6 93.2,162.1 92.8,162.5 92.4,161.1 92.0,157.5 91.7,183.7 91.3,185.6 90.9,191.3 90.5,192.1 90.2,191.1 89.8,191.9 89.4,189.9 89.0,191.4 88.7,192.4 88.3,190.0 87.9,191.0 87.5,191.6 87.2,190.6 86.8,191.2 86.4,189.3 86.0,188.9 85.6,191.2 85.3,192.3 84.9,191.8 84.5,190.7 84.1,190.8 83.8,190.9 83.4,194.9 83.0,195.5 82.6,196.4 82.3,196.6 81.9,193.2 81.5,194.5 81.1,198.7 80.7,198.8 80.4,199.1 80.0,197.2 79.6,197.6 79.2,196.5 78.9,196.9 78.5,197.5 78.1,196.0 77.7,194.6 77.4,191.5 77.0,192.9 76.6,193.4 76.2,192.9 75.8,193.6 75.5,193.6 75.1,191.5 74.7,192.7 74.3,194.8 74.0,194.3 73.6,193.5 73.2,193.1 72.8,192.8 72.5,190.1 72.1,190.7 71.7,189.7 71.3,189.4 71.0,191.4 70.6,189.6 70.2,191.1 69.8,191.5 69.4,191.6 69.1,192.5 68.7,189.9 68.3,190.6 67.9,191.6 67.6,192.2 67.2,191.0 66.8,188.9 66.4,189.1 66.1,184.6 65.7,183.0 65.3,182.6 64.9,179.8 64.5,184.9 64.2,184.0 63.8,184.4 63.4,185.1 63.0,184.5 62.7,186.7 62.3,184.3 61.9,184.1 61.5,186.0 61.2,186.0 60.8,185.6 60.4,182.8 60.0,182.6 59.7,184.1 59.3,183.9 58.9,184.5 58.5,183.3 58.1,184.7 57.8,185.4 57.4,185.5 57.0,185.6 56.6,185.9 56.3,185.7 55.9,183.0 55.5,182.7 55.1,184.5 54.8,184.0 54.4,188.6 54.0,190.6"/><polygon class="fB band" points="54.0,190.1 54.4,182.5 54.8,181.2 55.1,178.8 55.5,179.1 55.9,177.9 56.3,181.3 56.6,183.9 57.0,183.8 57.4,183.6 57.8,172.0 58.1,155.7 58.5,91.1 58.9,116.9 59.3,139.8 59.7,140.8 60.0,139.6 60.4,138.4 60.8,139.7 61.2,141.5 61.5,139.2 61.9,139.9 62.3,140.4 62.7,141.0 63.0,139.3 63.4,139.2 63.8,141.0 64.2,139.0 64.5,132.9 64.9,131.8 65.3,133.0 65.7,138.9 66.1,139.6 66.4,142.3 66.8,145.4 67.2,146.9 67.6,150.0 67.9,148.3 68.3,148.1 68.7,148.4 69.1,148.3 69.4,149.5 69.8,149.3 70.2,149.5 70.6,148.6 71.0,148.5 71.3,148.1 71.7,147.3 72.1,147.6 72.5,149.3 72.8,147.4 73.2,153.8 73.6,151.2 74.0,153.9 74.3,154.2 74.7,146.9 75.1,148.0 75.5,154.8 75.8,153.8 76.2,155.8 76.6,155.4 77.0,157.3 77.4,151.0 77.7,156.5 78.1,157.8 78.5,160.1 78.9,161.4 79.2,160.5 79.6,161.5 80.0,161.3 80.4,162.0 80.7,162.0 81.1,157.3 81.5,157.4 81.9,158.3 82.3,159.2 82.6,161.0 83.0,159.6 83.4,155.1 83.8,153.8 84.1,152.8 84.5,158.7 84.9,158.3 85.3,159.7 85.6,155.6 86.0,153.6 86.4,157.0 86.8,157.0 87.2,157.5 87.5,158.0 87.9,158.1 88.3,158.4 88.7,158.3 89.0,156.2 89.4,156.8 89.8,157.7 90.2,161.8 90.5,162.5 90.9,159.3 91.3,158.5 91.7,141.1 92.0,144.8 92.4,144.8 92.8,148.8 93.2,149.3 93.6,148.5 93.9,150.3 94.3,148.5 94.7,146.2 95.1,145.6 95.4,142.1 95.8,142.4 96.2,140.6 96.6,141.7 96.9,142.6 97.3,142.5 97.7,142.7 98.1,141.9 98.5,141.7 98.8,140.6 99.2,139.5 99.6,140.4 100.0,139.3 100.3,141.8 100.7,140.5 101.1,137.8 101.5,136.2 101.8,135.8 102.2,137.2 102.6,137.2 103.0,139.1 103.3,139.6 103.7,139.0 104.1,140.5 104.5,140.6 104.9,141.9 105.2,142.1 105.6,140.6 106.0,141.9 106.4,142.7 106.7,141.9 107.1,140.9 107.5,140.3 107.9,140.6 108.2,140.5 108.6,139.9 109.0,142.4 109.4,142.2 109.8,144.5 110.1,144.8 110.5,146.6 110.9,148.5 111.3,141.7 111.6,141.6 112.0,138.7 112.4,137.7 112.8,135.0 113.1,137.0 113.5,138.8 113.9,138.8 114.3,140.1 114.6,135.2 115.0,132.0 115.4,131.6 115.8,131.5 116.2,133.2 116.5,134.8 116.9,134.2 117.3,136.4 117.7,133.9 118.0,135.0 118.4,135.0 118.8,139.0 119.2,144.5 119.5,141.9 119.9,141.0 120.3,139.0 120.7,140.2 121.1,141.9 121.4,142.2 121.8,143.6 122.2,143.9 122.6,143.2 122.9,143.8 123.3,139.2 123.7,137.1 124.1,135.5 124.4,137.6 124.8,138.5 125.2,133.4 125.6,132.7 126.0,130.6 126.3,129.9 126.7,130.3 127.1,128.2 127.5,128.2 127.8,126.8 128.2,129.4 128.6,129.2 129.0,126.3 129.3,128.9 129.7,125.0 130.1,123.6 130.5,128.7 130.8,114.0 131.2,105.4 131.6,77.0 132.0,96.9 132.4,99.4 132.7,100.2 133.1,102.9 133.5,102.4 133.9,104.8 134.2,104.9 134.6,104.2 135.0,104.3 135.4,99.5 135.7,97.1 136.1,96.6 136.5,97.5 136.9,97.9 137.3,99.8 137.6,102.7 138.0,101.8 138.4,101.4 138.8,107.1 139.1,104.8 139.5,103.0 139.9,105.8 140.3,106.9 140.6,108.4 141.0,108.6 141.4,108.5 141.8,108.8 142.1,110.2 142.5,113.2 142.9,112.8 143.3,113.1 143.7,112.7 144.0,113.4 144.4,115.3 144.8,115.0 145.2,116.8 145.5,114.9 145.9,115.8 146.3,116.4 146.7,113.7 147.0,114.1 147.4,114.9 147.8,115.9 148.2,115.9 148.6,116.1 148.9,117.2 149.3,116.6 149.7,115.6 150.1,115.4 150.4,114.6 150.8,113.5 151.2,112.8 151.6,113.3 151.9,112.7 152.3,115.8 152.7,119.6 153.1,119.4 153.5,119.3 153.8,119.3 154.2,119.7 154.6,123.8 155.0,123.1 155.3,123.1 155.7,123.9 156.1,108.2 156.5,110.2 156.8,109.8 157.2,109.8 157.6,114.1 158.0,113.7 158.3,114.9 158.7,109.2 159.1,102.6 159.5,103.6 159.9,104.0 160.2,101.9 160.6,99.7 161.0,97.7 161.4,101.9 161.7,100.5 162.1,103.0 162.5,102.4 162.9,101.4 163.2,103.6 163.6,105.8 164.0,105.0 164.4,99.1 164.8,97.7 165.1,96.6 165.5,96.9 165.9,100.9 166.3,99.6 166.6,99.6 167.0,102.4 167.4,101.4 167.8,101.5 168.1,100.8 168.5,102.1 168.9,101.5 169.3,101.2 169.6,101.7 170.0,101.4 170.4,102.6 170.8,104.2 171.2,103.2 171.5,104.0 171.9,103.7 172.3,103.4 172.7,103.3 173.0,102.3 173.4,101.9 173.8,100.5 174.2,104.4 174.5,105.7 174.9,102.5 175.3,106.5 175.7,105.6 176.1,106.1 176.4,106.2 176.8,105.9 177.2,105.1 177.6,111.3 177.9,113.0 178.3,111.3 178.7,111.9 179.1,111.9 179.4,113.9 179.8,119.4 180.2,122.1 180.6,122.0 180.9,121.6 181.3,121.8 181.7,125.5 182.1,126.9 182.5,125.2 182.8,127.9 183.2,125.4 183.6,124.8 184.0,122.0 184.3,122.3 184.7,125.1 185.1,123.4 185.5,127.0 185.8,126.2 186.2,122.8 186.6,118.3 187.0,123.0 187.4,122.7 187.7,120.6 188.1,124.6 188.5,125.1 188.9,125.4 189.2,124.5 189.6,123.0 190.0,123.6 190.4,124.8 190.7,124.7 191.1,124.0 191.5,117.5 191.9,116.9 192.3,121.1 192.6,118.6 193.0,113.6 193.4,115.9 193.8,121.0 194.1,121.3 194.5,123.1 194.9,123.6 195.3,123.0 195.6,123.8 196.0,125.1 196.4,125.0 196.8,124.7 197.1,125.7 197.5,128.1 197.9,127.7 198.3,125.7 198.7,129.7 199.0,131.3 199.8,134.6 200.2,132.5 200.5,134.6 200.9,135.5 201.3,137.8 201.7,137.9 202.0,136.2 202.4,136.4 202.8,137.7 203.2,138.2 203.6,139.0 203.9,138.8 204.3,141.8 204.7,139.5 205.1,138.5 205.4,137.0 205.8,137.6 206.2,138.1 206.6,137.6 206.9,139.0 207.3,138.4 207.7,140.1 208.1,143.0 208.4,141.8 208.8,142.0 209.2,143.4 209.6,142.5 210.0,142.3 210.3,142.8 210.7,142.4 211.1,143.3 211.5,145.1 211.8,144.7 212.2,139.9 212.6,140.1 213.0,135.8 213.3,133.8 213.7,132.3 214.1,132.1 214.5,133.3 214.9,134.2 215.2,135.4 215.6,139.2 216.0,138.1 216.4,140.0 216.7,140.9 217.1,137.7 217.5,130.9 217.9,114.5 218.2,127.8 218.6,127.7 219.0,131.0 219.4,129.9 219.8,129.9 220.1,131.6 220.5,131.6 220.9,133.7 221.3,133.4 221.6,134.2 222.0,136.9 222.4,132.3 222.8,127.5 223.1,125.7 223.5,129.9 223.9,129.5 224.3,129.0 224.6,128.0 225.0,127.9 225.4,130.0 225.8,127.9 226.2,127.2 226.5,131.8 226.9,128.5 227.3,123.5 227.7,122.7 228.0,123.2 228.4,129.0 228.8,130.8 229.2,132.2 229.5,132.8 229.9,134.0 230.3,133.7 230.7,134.1 231.1,136.9 231.4,134.1 231.8,133.8 232.2,135.2 232.6,135.3 232.9,135.2 233.3,134.3 233.7,130.4 234.1,134.7 234.4,133.8 234.8,134.9 235.2,136.2 235.6,137.6 235.9,139.1 236.3,133.9 236.7,131.1 237.1,129.2 237.5,134.1 237.8,136.6 238.2,137.6 238.6,129.7 239.0,127.5 239.3,124.0 239.7,124.6 240.1,119.9 240.5,123.3 240.8,122.5 241.2,118.2 241.6,118.4 242.0,118.6 242.4,119.2 242.7,119.2 243.1,118.5 243.5,114.6 243.9,120.2 244.2,114.0 244.6,117.6 245.0,120.8 245.4,121.0 245.7,109.3 246.1,111.2 246.5,108.5 246.9,109.2 247.3,115.0 247.6,110.3 248.0,110.0 248.4,106.4 248.8,106.3 249.1,108.0 249.5,108.5 249.9,108.3 250.3,106.8 250.6,109.3 251.0,110.0 251.4,105.6 251.8,104.3 252.1,100.5 252.5,104.8 252.9,107.2 253.3,105.3 253.7,105.9 254.0,104.3 254.4,103.6 254.8,106.5 255.2,106.9 255.5,106.1 255.9,105.2 256.3,102.9 256.7,105.6 257.0,105.3 257.4,106.0 257.8,104.4 258.2,105.0 258.6,108.2 258.9,107.5 259.3,106.2 259.7,105.1 260.1,106.6 260.4,107.7 260.8,106.7 261.2,106.7 261.6,106.4 261.9,106.3 262.3,107.3 262.7,108.1 263.1,108.3 263.4,108.6 263.8,109.3 264.2,109.3 264.6,110.0 265.0,112.1 265.3,110.7 265.7,112.8 266.1,112.3 266.5,110.0 266.8,109.8 267.2,106.9 267.6,105.3 268.0,109.0 268.3,106.6 268.7,105.6 269.1,100.7 269.5,99.4 269.9,111.0 270.2,106.7 270.6,100.9 271.0,99.9 271.4,104.8 271.7,104.5 272.1,104.6 272.5,103.8 272.9,102.2 273.2,103.4 273.6,103.6 274.0,108.0 274.4,107.7 274.7,103.6 275.1,105.9 275.5,105.0 275.9,102.8 276.3,104.6 276.6,100.8 277.0,99.5 277.4,99.5 277.8,98.2 278.1,101.0 278.5,102.9 278.9,108.7 279.3,108.1 279.6,107.2 280.0,102.4 280.4,97.0 280.8,102.1 281.2,102.0 281.5,99.8 281.9,100.2 282.3,100.7 282.7,100.6 283.0,97.0 283.4,92.5 283.8,92.1 284.2,97.0 284.5,94.7 284.9,93.4 285.3,95.3 285.7,94.2 286.1,93.9 286.4,91.0 286.8,89.2 287.2,85.9 287.6,91.9 287.9,92.0 288.3,95.5 288.7,93.9 289.1,93.7 289.4,95.3 289.8,95.6 290.2,94.5 290.6,89.7 290.9,94.8 291.3,94.8 291.7,93.8 292.1,98.1 292.5,98.5 292.8,98.4 293.2,95.3 293.6,95.3 294.0,99.3 294.3,96.5 294.7,97.2 295.1,94.6 295.5,74.6 295.8,70.6 296.2,66.9 296.6,76.8 297.0,78.7 297.4,79.8 298.1,81.4 298.5,86.4 298.9,84.9 299.2,81.1 299.6,80.9 300.0,80.3 300.4,80.8 300.7,79.7 301.1,79.6 301.5,82.1 301.9,74.9 302.2,77.0 302.6,77.0 303.0,80.1 303.4,81.6 303.8,81.0 304.1,83.7 304.5,82.4 304.9,82.2 305.3,83.1 305.6,76.5 306.0,81.8 306.4,79.7 306.8,81.7 307.1,80.6 307.5,82.5 307.9,86.2 308.3,85.3 308.7,89.9 309.0,91.8 309.4,86.8 309.8,81.6 310.2,78.4 310.5,80.4 310.9,80.8 311.3,86.2 311.7,88.7 312.0,87.8 312.4,89.1 312.8,90.0 313.2,88.2 313.6,87.2 313.9,87.2 314.3,92.2 314.7,92.2 315.1,92.1 315.4,96.9 315.8,98.4 316.2,99.0 316.6,99.0 316.9,97.6 317.3,97.3 317.7,96.0 318.1,39.8 318.4,30.6 318.8,31.3 319.2,58.5 319.6,55.5 320.0,53.3 320.3,54.6 320.7,53.0 321.1,51.7 321.5,52.2 321.8,54.4 322.2,54.4 322.6,44.0 323.0,54.0 323.3,51.8 323.7,50.8 324.1,48.8 324.5,48.1 324.9,49.7 325.2,50.2 325.6,52.9 326.0,54.2 326.4,48.7 326.7,52.3 327.1,56.5 327.5,61.2 327.9,60.8 328.2,57.9 328.6,59.0 329.0,58.2 329.4,60.1 329.7,54.5 330.1,53.9 330.5,54.4 330.9,54.1 331.3,54.5 331.6,48.3 332.0,52.9 332.4,53.3 332.8,49.6 333.1,49.2 333.5,48.6 333.9,48.5 334.3,50.0 334.6,50.4 335.0,51.8 335.4,58.4 335.8,58.2 336.2,60.2 336.5,61.6 336.9,60.7 337.3,53.9 337.7,48.7 338.0,50.7 338.4,32.0 338.8,30.5 339.2,30.5 339.5,32.8 339.9,31.6 340.3,30.9 340.7,32.0 341.1,30.3 341.4,30.4 341.8,30.0 342.2,34.1 342.6,37.2 342.9,35.9 343.3,41.1 343.7,40.2 344.1,36.4 344.4,35.9 344.8,34.5 345.2,39.1 345.6,40.5 345.9,40.3 346.7,41.2 347.1,40.9 347.5,38.9 347.8,37.1 348.2,40.3 348.6,38.0 349.0,38.0 349.3,36.6 349.7,36.0 350.1,35.2 350.5,26.7 350.8,38.6 351.2,40.2 351.6,39.9 352.0,39.8 352.4,29.8 352.7,34.9 353.1,37.4 353.5,31.8 353.9,33.3 354.2,33.8 355.0,35.5 355.4,35.9 355.7,36.8 356.1,38.4 356.5,36.9 356.9,38.2 357.2,43.7 357.6,43.6 358.0,45.2 358.4,49.0 358.8,48.0 359.1,48.2 359.5,52.0 359.9,51.7 360.3,54.5 360.6,50.0 361.0,46.8 361.4,48.5 361.8,46.3 362.1,50.2 362.5,49.0 362.9,48.1 363.3,43.4 363.7,42.6 364.0,43.2 364.4,35.2 364.8,34.7 365.2,35.4 365.5,35.1 365.9,40.6 366.3,35.9 366.7,31.1 367.0,41.2 367.4,40.4 367.8,39.1 368.2,40.7 368.5,40.8 368.9,39.5 369.3,36.4 369.7,36.7 370.1,40.0 370.4,43.4 370.8,45.1 371.2,44.6 371.6,44.0 371.9,41.0 372.3,43.3 372.7,45.8 373.1,43.4 373.4,43.8 373.8,25.5 374.2,37.6 374.6,37.7 375.0,35.1 375.3,20.9 375.7,27.7 376.1,36.3 376.5,34.5 376.8,31.9 377.2,30.8 377.6,30.2 378.0,31.3 378.3,34.3 378.7,36.6 379.1,38.9 379.5,34.2 379.9,30.3 380.2,30.9 380.6,33.2 381.0,32.6 381.4,31.5 381.7,34.9 382.1,34.9 382.5,35.9 382.9,35.3 383.2,41.1 383.6,41.1 384.0,41.5 384.4,40.9 384.7,38.6 385.1,37.0 385.5,41.6 385.9,40.3 386.3,39.7 386.6,43.0 387.0,37.3 387.4,38.3 387.8,36.7 388.1,36.8 388.5,36.4 388.9,35.9 389.3,38.6 389.6,38.3 390.0,39.8 390.4,38.8 390.8,38.7 391.2,39.1 391.5,37.5 391.9,37.1 392.3,34.5 392.7,35.1 393.0,41.2 393.4,43.4 393.8,43.3 394.2,46.1 394.5,46.0 394.9,46.1 395.3,46.1 395.7,46.6 396.0,45.5 396.4,38.3 396.8,35.4 397.2,39.7 397.6,38.6 397.9,37.5 398.3,34.2 398.7,34.0 399.1,36.6 399.4,37.8 399.8,39.7 400.2,41.6 400.6,43.2 400.9,43.8 401.3,47.6 401.7,47.4 402.1,45.0 402.5,43.6 402.8,39.9 403.2,44.8 403.6,45.7 404.0,45.4 404.3,43.3 404.7,42.4 405.1,43.2 405.5,41.6 405.8,44.9 406.2,34.1 406.6,31.7 407.0,33.6 407.4,33.0 407.7,33.3 408.1,35.6 408.5,35.3 408.9,37.6 409.2,37.2 409.6,38.4 410.0,38.2 410.4,34.6 410.7,35.6 411.1,35.3 411.5,39.6 411.9,38.4 412.2,40.4 412.6,40.5 413.0,39.5 413.4,38.8 413.8,39.4 414.1,33.7 414.5,35.4 414.9,37.2 415.3,39.2 415.6,40.4 416.0,41.7 416.4,44.6 416.8,43.8 417.1,44.3 417.5,47.6 417.9,50.0 418.3,52.7 418.7,49.5 419.0,40.1 419.4,36.4 419.8,26.8 420.2,28.8 420.5,34.3 420.9,36.8 421.3,38.5 421.7,40.6 422.0,41.0 422.4,41.9 422.8,41.3 423.2,40.2 423.5,41.9 423.9,45.3 424.3,44.9 424.7,49.6 425.1,49.1 425.4,49.1 425.8,51.7 426.2,51.7 426.6,52.1 426.9,53.2 427.3,54.4 427.7,56.2 428.1,50.9 428.4,53.0 428.8,52.3 429.2,51.0 429.6,50.2 430.0,50.0 430.3,52.0 430.7,49.3 431.1,45.3 431.5,48.7 431.8,47.4 432.2,46.9 432.6,46.7 433.0,49.3 433.3,49.9 433.7,49.4 434.1,51.7 434.5,48.2 434.8,51.6 435.2,52.4 435.6,52.1 436.0,49.9 436.4,45.8 436.7,50.8 437.1,49.5 437.5,46.2 437.9,45.4 438.2,45.5 438.6,45.4 439.0,50.3 439.4,49.6 439.7,49.3 440.1,49.2 440.5,48.9 440.9,48.2 441.3,48.9 441.6,53.7 442.0,47.8 442.4,48.8 442.8,49.7 443.1,49.0 443.5,49.0 443.9,49.9 444.3,49.5 444.6,48.7 445.0,48.3 445.4,50.8 445.8,51.5 446.2,55.1 446.5,50.4 446.9,49.9 447.3,57.3 447.7,56.0 448.0,57.9 448.4,58.7 448.8,56.8 449.2,56.6 449.5,58.3 449.9,57.0 450.3,56.4 450.7,58.0 451.0,59.6 451.4,61.0 451.8,63.3 452.2,61.5 452.6,66.4 452.9,62.3 453.3,66.2 453.7,64.5 454.1,64.1 454.4,67.4 454.8,66.9 455.2,64.2 455.6,57.0 455.9,55.1 456.3,61.1 456.7,60.7 457.1,60.5 457.5,61.2 457.8,56.0 458.2,50.6 458.6,50.8 459.0,50.6 459.3,55.7 459.7,50.1 460.1,57.5 460.5,57.7 460.8,54.9 461.2,55.9 461.6,56.0 462.0,55.0 462.3,52.4 462.7,52.4 463.1,55.0 463.5,54.4 463.9,57.2 464.2,58.7 464.6,57.6 465.0,58.1 465.4,55.0 465.7,55.8 466.1,57.2 466.5,55.8 466.9,56.7 467.2,56.6 467.6,59.9 468.0,59.9 468.0,61.5 467.6,61.0 467.2,60.4 466.9,58.1 466.5,58.4 466.1,58.0 465.7,59.0 465.4,61.4 465.0,62.2 464.6,62.4 464.2,59.5 463.9,59.8 463.5,57.4 463.1,56.1 462.7,56.9 462.3,57.2 462.0,58.2 461.6,59.0 461.2,56.5 460.8,57.8 460.5,59.1 460.1,60.2 459.7,57.7 459.3,56.3 459.0,56.9 458.6,54.7 458.2,56.6 457.8,64.1 457.5,61.6 457.1,61.7 456.7,62.1 456.3,63.1 455.9,64.0 455.6,67.0 455.2,70.6 454.8,70.9 454.4,70.8 454.1,70.5 453.7,68.6 453.3,70.4 452.9,69.8 452.6,70.5 452.2,67.9 451.8,65.3 451.4,65.5 451.0,62.7 450.7,62.1 450.3,59.1 449.9,59.4 449.5,60.3 449.2,61.0 448.8,62.5 448.4,62.2 448.0,59.8 447.7,58.2 447.3,57.9 446.9,57.7 446.5,57.3 446.2,57.7 445.8,56.8 445.4,53.2 445.0,51.3 444.6,50.4 444.3,50.1 443.9,50.3 443.5,50.3 443.1,49.9 442.8,50.9 442.4,52.4 442.0,54.9 441.6,54.8 441.3,54.1 440.9,50.2 440.5,49.6 440.1,49.8 439.7,49.7 439.4,50.5 439.0,51.9 438.6,51.0 438.2,49.3 437.9,49.0 437.5,51.1 437.1,53.0 436.7,52.9 436.4,52.8 436.0,53.2 435.6,53.1 435.2,53.2 434.8,54.6 434.5,54.8 434.1,55.3 433.7,54.5 433.3,52.6 433.0,52.6 432.6,50.1 432.2,48.1 431.8,49.7 431.5,49.7 431.1,51.4 430.7,53.1 430.3,52.9 430.0,53.1 429.6,51.6 429.2,53.5 428.8,54.8 428.4,55.6 428.1,56.6 427.7,57.7 427.3,57.0 426.9,55.8 426.6,53.7 426.2,53.6 425.8,51.7 425.4,51.8 425.1,51.2 424.7,49.6 424.3,49.9 423.9,46.1 423.5,45.7 423.2,43.1 422.8,42.5 422.4,44.4 422.0,42.8 421.7,42.9 421.3,41.9 420.9,39.8 420.5,38.3 420.2,35.7 419.8,39.9 419.4,41.5 419.0,51.0 418.7,53.8 418.3,53.5 417.9,53.5 417.5,51.9 417.1,49.9 416.8,45.5 416.4,45.1 416.0,45.1 415.6,43.2 415.3,42.0 414.9,40.9 414.5,40.5 414.1,43.7 413.8,42.9 413.4,40.0 413.0,41.0 412.6,42.8 412.2,42.9 411.9,40.9 411.5,40.1 411.1,39.9 410.7,36.9 410.4,38.9 410.0,38.4 409.6,38.6 409.2,38.6 408.9,38.6 408.5,39.1 408.1,36.4 407.7,36.8 407.4,36.2 407.0,36.1 406.6,37.8 406.2,49.0 405.8,47.3 405.5,46.4 405.1,44.9 404.7,45.3 404.3,47.0 404.0,49.0 403.6,49.1 403.2,46.6 402.8,45.9 402.5,47.3 402.1,51.1 401.7,47.7 401.3,47.9 400.9,48.2 400.6,43.9 400.2,43.2 399.8,42.0 399.4,40.6 399.1,39.3 398.7,38.3 398.3,38.6 397.9,40.3 397.6,41.8 397.2,44.9 396.8,40.6 396.4,49.3 396.0,48.6 395.7,48.5 395.3,46.9 394.9,47.3 394.5,47.2 394.2,47.7 393.8,47.6 393.4,47.7 393.0,44.0 392.7,42.2 392.3,38.7 391.9,38.3 391.5,39.5 391.2,39.9 390.8,40.6 390.4,40.0 390.0,41.4 389.6,41.1 389.3,39.9 388.9,41.1 388.5,38.3 388.1,38.6 387.8,42.4 387.4,41.0 387.0,46.3 386.6,45.3 386.3,43.6 385.9,43.0 385.5,42.5 385.1,42.9 384.7,41.6 384.4,43.4 384.0,44.9 383.6,42.1 383.2,41.2 382.9,37.9 382.5,36.4 382.1,36.8 381.7,35.3 381.4,35.2 381.0,34.3 380.6,38.4 380.2,37.9 379.9,35.8 379.5,40.2 379.1,39.6 378.7,40.1 378.3,38.0 378.0,35.1 377.6,31.8 377.2,32.3 376.8,35.0 376.5,37.0 376.1,37.7 375.7,37.6 375.3,36.1 375.0,42.8 374.6,41.4 374.2,38.4 373.8,47.1 373.4,45.3 373.1,46.8 372.7,46.3 372.3,46.3 371.9,44.4 371.6,45.1 371.2,47.5 370.8,47.7 370.4,46.7 370.1,46.0 369.7,42.2 369.3,41.0 368.9,42.5 368.5,42.5 368.2,43.3 367.8,41.5 367.4,41.7 367.0,42.3 366.7,41.2 366.3,43.6 365.9,41.5 365.5,41.6 365.2,37.6 364.8,37.4 364.4,45.2 364.0,45.2 363.7,46.2 363.3,48.4 362.9,52.6 362.5,51.7 362.1,51.6 361.8,51.3 361.4,50.2 361.0,51.8 360.6,56.3 360.3,55.6 359.9,54.6 359.5,52.2 359.1,52.3 358.8,50.0 358.4,49.3 358.0,49.7 357.6,45.2 357.2,44.7 356.9,46.3 356.5,41.5 356.1,40.9 355.7,40.1 355.4,40.2 355.0,39.3 354.2,37.8 353.9,34.8 353.5,39.4 353.1,39.8 352.7,40.5 352.4,40.7 352.0,40.0 351.6,40.2 351.2,40.4 350.8,40.5 350.5,36.6 350.1,36.9 349.7,37.4 349.3,38.0 349.0,41.2 348.6,41.3 348.2,40.3 347.8,40.4 347.5,41.4 347.1,41.4 346.7,41.9 345.9,41.7 345.6,41.1 345.2,41.6 344.8,40.1 344.4,37.2 344.1,40.6 343.7,42.7 343.3,43.5 342.9,41.2 342.6,40.4 342.2,36.4 341.8,35.2 341.4,30.8 341.1,32.4 340.7,32.6 340.3,32.8 339.9,37.8 339.5,38.0 339.2,33.2 338.8,33.6 338.4,51.5 338.0,55.4 337.7,56.4 337.3,62.0 336.9,62.0 336.5,63.6 336.2,62.5 335.8,61.0 335.4,58.8 335.0,58.8 334.6,54.0 334.3,52.1 333.9,51.4 333.5,50.4 333.1,50.9 332.8,55.0 332.4,55.5 332.0,55.5 331.6,55.0 331.3,54.8 330.9,55.9 330.5,55.5 330.1,55.6 329.7,61.5 329.4,61.1 329.0,61.2 328.6,60.9 328.2,62.8 327.9,63.4 327.5,61.9 327.1,62.0 326.7,56.7 326.4,57.2 326.0,57.9 325.6,55.8 325.2,53.2 324.9,51.9 324.5,51.3 324.1,52.3 323.7,52.1 323.3,57.0 323.0,56.1 322.6,56.3 322.2,54.8 321.8,56.6 321.5,57.1 321.1,55.3 320.7,55.7 320.3,55.5 320.0,56.7 319.6,58.5 319.2,59.2 318.8,62.0 318.4,62.5 318.1,99.6 317.7,98.3 317.3,98.2 316.9,100.1 316.6,100.2 316.2,101.1 315.8,100.9 315.4,99.2 315.1,96.8 314.7,93.3 314.3,93.4 313.9,93.8 313.6,89.9 313.2,91.9 312.8,93.1 312.4,93.6 312.0,93.0 311.7,91.2 311.3,90.5 310.9,87.5 310.5,83.6 310.2,83.6 309.8,87.8 309.4,94.4 309.0,93.2 308.7,93.2 308.3,90.9 307.9,87.8 307.5,87.4 307.1,84.4 306.8,84.9 306.4,84.8 306.0,86.0 305.6,86.0 305.3,85.4 304.9,85.1 304.5,84.4 304.1,84.4 303.8,85.5 303.4,82.7 303.0,82.8 302.6,80.4 302.2,79.3 301.9,83.9 301.5,84.1 301.1,83.5 300.7,82.0 300.4,82.4 300.0,82.9 299.6,83.0 299.2,87.0 298.9,87.6 298.5,87.8 298.1,86.8 297.4,84.7 297.0,81.1 296.6,79.0 296.2,78.1 295.8,81.4 295.5,101.7 295.1,101.4 294.7,98.9 294.3,99.5 294.0,99.4 293.6,99.4 293.2,98.7 292.8,98.7 292.5,99.9 292.1,99.0 291.7,98.3 291.3,96.9 290.9,96.7 290.6,96.8 290.2,97.9 289.8,97.3 289.4,96.0 289.1,96.0 288.7,96.4 288.3,96.9 287.9,96.4 287.6,93.5 287.2,93.3 286.8,93.0 286.4,97.1 286.1,97.1 285.7,98.7 285.3,98.8 284.9,96.7 284.5,97.0 284.2,99.6 283.8,98.6 283.4,99.8 283.0,102.1 282.7,101.5 282.3,102.4 281.9,101.3 281.5,104.1 281.2,104.0 280.8,104.9 280.4,104.7 280.0,107.1 279.6,109.4 279.3,109.2 278.9,109.7 278.5,110.1 278.1,103.6 277.8,101.9 277.4,101.9 277.0,102.0 276.6,106.7 276.3,106.7 275.9,106.7 275.5,107.9 275.1,107.2 274.7,109.1 274.4,109.5 274.0,109.0 273.6,109.0 273.2,104.9 272.9,106.3 272.5,105.2 272.1,109.2 271.7,106.4 271.4,105.9 271.0,106.2 270.6,105.9 270.2,115.4 269.9,113.5 269.5,111.7 269.1,108.9 268.7,106.9 268.3,114.0 268.0,113.1 267.6,110.0 267.2,111.7 266.8,112.0 266.5,113.5 266.1,114.1 265.7,115.0 265.3,114.5 265.0,114.5 264.6,114.4 264.2,110.4 263.8,111.3 263.4,111.2 263.1,109.1 262.7,110.5 262.3,109.5 261.9,109.4 261.6,109.9 261.2,107.3 260.8,108.3 260.4,109.7 260.1,110.0 259.7,107.5 259.3,108.4 258.9,111.2 258.6,110.6 258.2,109.6 257.8,106.9 257.4,107.4 257.0,107.2 256.7,107.1 256.3,107.5 255.9,107.4 255.5,107.5 255.2,108.1 254.8,107.2 254.4,107.7 254.0,108.1 253.7,108.2 253.3,107.4 252.9,110.0 252.5,109.6 252.1,105.5 251.8,106.6 251.4,110.0 251.0,110.7 250.6,110.9 250.3,110.9 249.9,109.3 249.5,109.8 249.1,109.5 248.8,108.2 248.4,110.9 248.0,110.8 247.6,116.7 247.3,116.3 246.9,116.8 246.5,116.0 246.1,115.7 245.7,122.1 245.4,122.0 245.0,121.8 244.6,122.2 244.2,122.0 243.9,121.5 243.5,120.8 243.1,120.9 242.7,120.2 242.4,120.2 242.0,120.3 241.6,119.9 241.2,123.1 240.8,124.2 240.5,125.9 240.1,126.2 239.7,127.0 239.3,128.9 239.0,132.7 238.6,139.1 238.2,139.6 237.8,138.5 237.5,138.2 237.1,135.5 236.7,137.3 236.3,141.1 235.9,140.1 235.6,140.7 235.2,138.3 234.8,138.7 234.4,136.6 234.1,136.9 233.7,136.8 233.3,136.6 232.9,136.1 232.6,136.4 232.2,136.7 231.8,135.7 231.4,137.5 231.1,137.9 230.7,138.2 230.3,134.2 229.9,135.2 229.5,134.7 229.2,136.3 228.8,135.6 228.4,130.9 228.0,129.3 227.7,126.3 227.3,129.7 226.9,132.4 226.5,132.8 226.2,132.6 225.8,132.8 225.4,134.4 225.0,130.9 224.6,129.6 224.3,130.3 223.9,130.8 223.5,133.2 223.1,135.3 222.8,136.9 222.4,138.1 222.0,137.3 221.6,137.5 221.3,135.5 220.9,135.1 220.5,134.9 220.1,132.1 219.8,132.0 219.4,132.6 219.0,132.6 218.6,132.8 218.2,131.3 217.9,138.5 217.5,146.7 217.1,145.6 216.7,144.0 216.4,142.7 216.0,140.4 215.6,140.7 215.2,140.6 214.9,137.1 214.5,135.1 214.1,136.1 213.7,135.1 213.3,137.2 213.0,140.3 212.6,141.0 212.2,146.9 211.8,147.6 211.5,149.6 211.1,150.2 210.7,146.2 210.3,147.1 210.0,144.3 209.6,143.9 209.2,146.0 208.8,145.1 208.4,146.5 208.1,146.1 207.7,144.1 207.3,142.9 206.9,141.3 206.6,139.8 206.2,138.8 205.8,139.5 205.4,139.2 205.1,139.7 204.7,143.5 204.3,143.8 203.9,142.8 203.6,142.3 203.2,139.7 202.8,140.3 202.4,139.8 202.0,141.0 201.7,139.6 201.3,138.6 200.9,139.3 200.5,138.2 200.2,135.8 199.8,135.3 199.0,135.4 198.7,132.0 198.3,131.2 197.9,132.1 197.5,128.9 197.1,129.0 196.8,126.6 196.4,128.3 196.0,128.3 195.6,125.7 195.3,125.6 194.9,125.5 194.5,124.8 194.1,123.3 193.8,124.0 193.4,122.0 193.0,120.0 192.6,122.7 192.3,123.6 191.9,121.8 191.5,125.2 191.1,126.5 190.7,126.3 190.4,125.7 190.0,125.8 189.6,124.9 189.2,125.9 188.9,127.6 188.5,125.7 188.1,125.8 187.7,125.2 187.4,125.3 187.0,125.2 186.6,125.6 186.2,128.2 185.8,130.3 185.5,129.4 185.1,128.8 184.7,127.2 184.3,127.5 184.0,126.8 183.6,126.5 183.2,128.9 182.8,130.0 182.5,130.7 182.1,128.3 181.7,127.5 181.3,126.1 180.9,123.8 180.6,124.1 180.2,123.8 179.8,123.1 179.4,120.0 179.1,114.3 178.7,114.9 178.3,114.4 177.9,114.1 177.6,113.8 177.2,112.0 176.8,111.1 176.4,108.5 176.1,106.9 175.7,109.2 175.3,108.9 174.9,108.0 174.5,107.7 174.2,106.4 173.8,105.4 173.4,103.2 173.0,104.1 172.7,103.5 172.3,103.8 171.9,104.0 171.5,104.1 171.2,107.2 170.8,105.2 170.4,105.6 170.0,104.2 169.6,105.0 169.3,105.7 168.9,105.4 168.5,105.1 168.1,104.5 167.8,102.2 167.4,103.5 167.0,104.4 166.6,104.6 166.3,104.0 165.9,103.7 165.5,102.2 165.1,100.9 164.8,101.1 164.4,105.7 164.0,106.2 163.6,106.0 163.2,105.9 162.9,104.5 162.5,105.3 162.1,104.4 161.7,103.8 161.4,101.9 161.0,102.0 160.6,103.0 160.2,104.9 159.9,106.1 159.5,105.4 159.1,109.7 158.7,115.2 158.3,117.1 158.0,117.5 157.6,115.0 157.2,115.0 156.8,114.7 156.5,114.5 156.1,125.0 155.7,128.5 155.3,128.5 155.0,125.1 154.6,125.8 154.2,124.6 153.8,120.3 153.5,121.3 153.1,121.5 152.7,121.0 152.3,122.1 151.9,119.1 151.6,118.5 151.2,116.4 150.8,115.3 150.4,115.8 150.1,115.7 149.7,117.0 149.3,117.7 148.9,118.3 148.6,119.1 148.2,116.4 147.8,117.4 147.4,116.8 147.0,115.5 146.7,117.0 146.3,118.4 145.9,118.5 145.5,118.1 145.2,119.5 144.8,119.0 144.4,117.6 144.0,115.4 143.7,114.2 143.3,114.0 142.9,113.8 142.5,113.9 142.1,114.9 141.8,113.4 141.4,110.3 141.0,109.7 140.6,108.8 140.3,109.1 139.9,108.1 139.5,107.9 139.1,111.5 138.8,108.8 138.4,107.7 138.0,106.2 137.6,104.9 137.3,104.6 136.9,100.3 136.5,101.0 136.1,100.3 135.7,102.3 135.4,107.6 135.0,106.5 134.6,108.5 134.2,106.4 133.9,105.6 133.5,105.3 133.1,103.9 132.7,103.2 132.4,100.9 132.0,102.6 131.6,106.2 131.2,118.5 130.8,132.1 130.5,131.6 130.1,130.0 129.7,132.0 129.3,130.5 129.0,130.5 128.6,129.7 128.2,130.4 127.8,130.6 127.5,130.6 127.1,131.6 126.7,131.2 126.3,133.9 126.0,135.9 125.6,135.2 125.2,140.6 124.8,139.2 124.4,139.0 124.1,137.9 123.7,140.2 123.3,144.8 122.9,144.7 122.6,145.0 122.2,146.5 121.8,144.5 121.4,145.1 121.1,142.8 120.7,143.6 120.3,144.3 119.9,146.2 119.5,148.1 119.2,146.9 118.8,142.4 118.4,136.7 118.0,136.3 117.7,137.8 117.3,137.8 116.9,136.5 116.5,135.1 116.2,135.3 115.8,134.7 115.4,133.6 115.0,136.3 114.6,139.0 114.3,142.6 113.9,142.0 113.5,140.4 113.1,140.1 112.8,138.9 112.4,140.8 112.0,145.8 111.6,146.0 111.3,152.2 110.9,152.5 110.5,147.5 110.1,147.2 109.8,145.5 109.4,145.0 109.0,142.8 108.6,143.1 108.2,142.4 107.9,141.5 107.5,141.8 107.1,142.9 106.7,144.3 106.4,146.1 106.0,143.6 105.6,143.3 105.2,142.6 104.9,143.3 104.5,143.3 104.1,141.6 103.7,140.8 103.3,140.5 103.0,141.4 102.6,140.7 102.2,138.6 101.8,140.9 101.5,138.3 101.1,141.7 100.7,142.4 100.3,142.9 100.0,143.0 99.6,141.3 99.2,141.5 98.8,141.7 98.5,142.5 98.1,144.1 97.7,144.2 97.3,143.6 96.9,144.5 96.6,143.6 96.2,143.5 95.8,144.9 95.4,146.7 95.1,150.2 94.7,151.2 94.3,152.8 93.9,151.5 93.6,151.0 93.2,151.0 92.8,151.3 92.4,150.0 92.0,148.1 91.7,161.1 91.3,162.1 90.9,165.0 90.5,164.8 90.2,163.7 89.8,163.4 89.4,159.5 89.0,160.2 88.7,161.2 88.3,158.8 87.9,159.9 87.5,159.7 87.2,159.2 86.8,159.8 86.4,158.0 86.0,157.8 85.6,159.5 85.3,160.6 84.9,160.0 84.5,159.3 84.1,159.1 83.8,159.1 83.4,160.9 83.0,161.8 82.6,162.4 82.3,162.7 81.9,160.3 81.5,160.3 81.1,164.5 80.7,164.6 80.4,164.9 80.0,162.5 79.6,163.2 79.2,162.4 78.9,162.4 78.5,162.8 78.1,160.6 77.7,159.2 77.4,157.4 77.0,158.5 76.6,157.9 76.2,157.3 75.8,157.3 75.5,155.1 75.1,153.9 74.7,156.5 74.3,157.9 74.0,156.9 73.6,156.7 73.2,155.5 72.8,154.5 72.5,151.1 72.1,150.3 71.7,148.8 71.3,149.0 71.0,151.0 70.6,150.0 70.2,150.6 69.8,150.6 69.4,150.6 69.1,150.9 68.7,148.8 68.3,149.1 67.9,150.2 67.6,150.8 67.2,150.2 66.8,147.3 66.4,145.6 66.1,142.6 65.7,139.9 65.3,139.5 64.9,135.8 64.5,140.8 64.2,141.4 63.8,141.8 63.4,142.5 63.0,141.4 62.7,143.6 62.3,141.9 61.9,141.3 61.5,143.3 61.2,143.4 60.8,144.0 60.4,141.4 60.0,141.1 59.7,142.7 59.3,142.1 58.9,143.2 58.5,157.5 58.1,176.2 57.8,183.8 57.4,183.9 57.0,184.1 56.6,184.3 56.3,183.9 55.9,182.0 55.5,181.9 55.1,183.8 54.8,183.7 54.4,190.1 54.0,190.1"/><polyline class="sA mid" points="54.0,189.3 54.4,185.8 54.8,183.1 55.1,182.5 55.5,181.3 55.9,180.8 56.3,183.9 56.6,185.7 57.0,185.5 57.4,185.3 57.8,184.9 58.1,183.9 58.5,180.7 58.9,182.3 59.3,182.5 59.7,183.2 60.0,181.8 60.4,181.6 60.8,183.4 61.2,185.0 61.5,183.9 61.9,183.3 62.3,183.7 62.7,185.0 63.0,183.5 63.4,183.7 63.8,184.0 64.2,182.8 64.5,180.9 64.9,177.8 65.3,179.8 65.7,182.5 66.1,183.5 66.4,186.7 66.8,188.4 67.2,189.8 67.6,191.5 67.9,190.6 68.3,189.8 68.7,189.4 69.1,191.0 69.4,191.1 69.8,190.9 70.2,189.4 70.6,189.1 71.0,190.1 71.3,189.0 71.7,188.3 72.1,189.0 72.5,189.8 72.8,190.9 73.2,192.6 73.6,193.2 74.0,193.4 74.3,192.7 74.7,188.4 75.1,188.3 75.5,193.1 75.8,192.4 76.2,191.4 76.6,191.3 77.0,192.1 77.4,187.2 77.7,193.0 78.1,194.4 78.5,196.4 78.9,196.4 79.2,195.7 79.6,196.7 80.0,196.5 80.4,197.7 80.7,197.5 81.1,195.1 81.5,193.1 81.9,192.3 82.3,194.4 82.6,195.5 83.0,194.2 83.4,191.0 83.8,188.4 84.1,186.5 84.5,190.4 84.9,190.8 85.3,191.6 85.6,189.2 86.0,187.1 86.4,188.7 86.8,189.8 87.2,189.8 87.5,190.5 87.9,190.1 88.3,189.8 88.7,190.5 89.0,189.4 89.4,188.9 89.8,190.1 90.2,190.3 90.5,190.6 90.9,185.6 91.3,182.0 91.7,163.6 92.0,154.3 92.4,156.0 92.8,161.2 93.2,161.3 93.6,161.6 93.9,163.3 94.3,162.8 94.7,161.8 95.1,161.5 95.4,155.6 95.8,148.5 96.2,134.5 96.6,135.0 96.9,138.5 97.3,138.0 97.7,137.5 98.1,135.3 98.5,133.1 98.8,130.9 99.2,127.8 99.6,130.1 100.0,129.6 100.3,131.4 100.7,130.5 101.1,128.8 101.5,126.4 101.8,125.8 102.2,124.3 102.6,124.0 103.0,125.0 103.3,125.1 103.7,125.6 104.1,127.3 104.5,128.3 104.9,129.6 105.2,130.0 105.6,128.4 106.0,129.8 106.4,131.4 106.7,130.0 107.1,128.9 107.5,124.3 107.9,121.9 108.2,118.5 108.6,115.3 109.0,117.6 109.4,119.4 109.8,120.9 110.1,121.8 110.5,122.0 110.9,125.5 111.3,122.1 111.6,119.3 112.0,112.3 112.4,104.4 112.8,99.6 113.1,102.4 113.5,104.2 113.9,105.1 114.3,106.7 114.6,102.4 115.0,99.5 115.4,97.9 115.8,98.4 116.2,99.5 116.5,100.2 116.9,100.8 117.3,102.6 117.7,103.0 118.0,103.0 118.4,104.4 118.8,109.8 119.2,114.3 119.5,113.6 119.9,112.6 120.3,111.7 120.7,111.6 121.1,111.9 121.4,112.6 121.8,112.5 122.2,113.8 122.6,113.5 122.9,114.3 123.3,112.2 123.7,108.8 124.1,107.2 124.4,108.1 124.8,108.9 125.2,106.7 125.6,103.7 126.0,103.0 126.3,101.6 126.7,100.5 127.1,99.6 127.5,97.4 127.8,97.1 128.2,97.6 128.6,97.1 129.0,96.7 129.3,97.7 129.7,96.1 130.1,95.0 130.5,98.8 130.8,91.7 131.2,80.6 131.6,60.3 132.0,68.8 132.4,69.3 132.7,70.8 133.1,72.7 133.5,72.6 133.9,71.9 134.2,69.9 134.6,73.4 135.0,73.1 135.4,71.1 135.7,67.3 136.1,66.6 136.5,68.1 136.9,67.9 137.3,70.8 137.6,72.7 138.0,72.5 138.4,73.1 138.8,75.4 139.1,75.6 139.5,72.8 139.9,70.9 140.3,70.9 140.6,72.8 141.0,74.4 141.4,74.8 141.8,77.1 142.1,79.4 142.5,79.2 142.9,78.9 143.3,79.2 143.7,77.5 144.0,78.6 144.4,81.5 144.8,82.4 145.2,83.6 145.5,82.1 145.9,82.7 146.3,83.5 146.7,81.4 147.0,80.9 147.4,81.5 147.8,81.3 148.2,79.6 148.6,79.5 148.9,80.3 149.3,79.7 149.7,78.8 150.1,78.0 150.4,78.7 150.8,78.2 151.2,78.4 151.6,80.0 151.9,78.7 152.3,81.9 152.7,83.3 153.1,84.6 153.5,84.4 153.8,84.0 154.2,86.1 154.6,89.4 155.0,88.5 155.3,90.9 155.7,92.0 156.1,88.5 156.5,87.7 156.8,86.3 157.2,87.3 157.6,91.7 158.0,92.0 158.3,92.4 158.7,88.6 159.1,82.6 159.5,80.8 159.9,80.1 160.2,78.5 160.6,77.2 161.0,76.5 161.4,79.9 161.7,81.2 162.1,82.8 162.5,83.2 162.9,82.3 163.2,84.1 163.6,84.7 164.0,84.9 164.4,83.7 164.8,82.1 165.1,81.8 165.5,82.4 165.9,84.5 166.3,85.3 166.6,85.7 167.0,86.4 167.4,84.9 167.8,80.0 168.1,82.1 168.5,83.3 168.9,83.2 169.3,83.2 169.6,83.8 170.0,84.8 170.4,87.1 170.8,87.7 171.2,89.5 171.5,91.2 171.9,91.0 172.3,90.8 172.7,90.6 173.0,90.8 173.4,89.7 173.8,87.3 174.2,89.1 174.5,89.8 174.9,86.6 175.3,89.5 175.7,89.5 176.1,89.3 176.4,90.3 176.8,91.4 177.2,92.3 177.6,94.8 177.9,95.4 178.3,95.7 178.7,97.1 179.1,97.0 179.4,100.9 179.8,105.4 180.2,108.1 180.6,109.9 180.9,110.4 181.3,112.0 181.7,115.3 182.1,116.6 182.5,118.1 182.8,117.5 183.2,115.5 183.6,113.9 184.0,114.9 184.3,115.3 184.7,116.7 185.1,116.4 185.5,118.1 185.8,118.7 186.2,116.5 186.6,113.9 187.0,115.6 187.4,107.8 187.7,95.9 188.1,103.2 188.5,102.3 188.9,103.3 189.2,102.0 189.6,101.1 190.0,100.6 190.4,99.6 190.7,98.0 191.1,98.7 191.5,92.1 191.9,89.0 192.3,93.3 192.6,91.5 193.0,89.5 193.4,92.0 193.8,96.0 194.1,96.5 194.5,97.3 194.9,97.5 195.3,96.7 195.6,97.5 196.0,99.6 196.4,99.6 196.8,98.6 197.1,100.5 197.5,100.9 197.9,102.7 198.3,101.4 198.7,102.2 199.0,105.1 199.8,107.9 200.2,108.3 200.5,108.0 200.9,109.5 201.3,108.2 201.7,108.4 202.0,106.3 202.4,105.8 202.8,106.4 203.2,105.8 203.6,107.5 203.9,108.8 204.3,111.8 204.7,110.6 205.1,108.5 205.4,107.6 205.8,107.3 206.2,105.8 206.6,106.3 206.9,108.7 207.3,110.3 207.7,112.3 208.1,113.5 208.4,114.2 208.8,113.9 209.2,113.6 209.6,112.8 210.0,114.3 210.3,116.3 210.7,115.9 211.1,118.0 211.5,118.0 211.8,117.1 212.2,114.4 212.6,111.5 213.0,109.0 213.3,106.4 213.7,104.7 214.1,105.6 214.5,106.3 214.9,107.2 215.2,108.6 215.6,110.6 216.0,110.0 216.4,112.4 216.7,113.8 217.1,113.2 217.5,112.7 217.9,112.9 218.2,113.4 218.6,113.5 219.0,111.1 219.4,109.1 219.8,108.3 220.1,109.0 220.5,110.5 220.9,110.8 221.3,110.5 221.6,111.1 222.0,112.9 222.4,110.5 222.8,107.8 223.1,106.1 223.5,108.3 223.9,107.3 224.3,107.8 224.6,107.6 225.0,106.5 225.4,109.6 225.8,110.3 226.2,110.7 226.5,112.1 226.9,111.1 227.3,107.3 227.7,106.0 228.0,107.5 228.4,110.0 228.8,113.1 229.2,114.8 229.5,115.5 229.9,116.8 230.3,116.6 230.7,118.1 231.1,118.9 231.4,115.8 231.8,114.2 232.2,115.9 232.6,115.6 232.9,115.4 233.3,115.3 233.7,113.1 234.1,115.8 234.4,115.1 234.8,115.8 235.2,116.4 235.6,118.9 235.9,119.2 236.3,117.2 236.7,113.9 237.1,112.1 237.5,116.4 237.8,118.5 238.2,117.6 238.6,113.2 239.0,110.3 239.3,106.6 239.7,106.0 240.1,103.2 240.5,104.6 240.8,103.3 241.2,100.6 241.6,99.1 242.0,99.4 242.4,99.5 242.7,99.2 243.1,99.9 243.5,100.0 243.9,100.7 244.2,95.5 244.6,97.0 245.0,98.8 245.4,99.1 245.7,93.3 246.1,91.5 246.5,91.4 246.9,91.5 247.3,93.4 247.6,92.4 248.0,90.1 248.4,89.1 248.8,88.3 249.1,89.4 249.5,90.3 249.9,90.0 250.3,90.0 250.6,90.6 251.0,90.6 251.4,87.6 251.8,84.8 252.1,81.9 252.5,86.4 252.9,87.7 253.3,83.9 253.7,82.5 254.0,83.2 254.4,83.5 254.8,82.9 255.2,83.8 255.5,83.2 255.9,82.6 256.3,81.6 256.7,82.0 257.0,82.0 257.4,82.5 257.8,81.8 258.2,84.3 258.6,86.4 258.9,86.6 259.3,84.6 259.7,83.5 260.1,85.7 260.4,86.4 260.8,85.7 261.2,84.9 261.6,85.0 261.9,84.6 262.3,85.5 262.7,86.3 263.1,85.7 263.4,85.3 263.8,82.6 264.2,84.1 264.6,86.9 265.0,87.9 265.3,87.7 265.7,88.7 266.1,89.0 266.5,87.7 266.8,86.8 267.2,85.7 267.6,84.3 268.0,87.1 268.3,86.3 268.7,82.2 269.1,81.8 269.5,82.6 269.9,85.6 270.2,83.9 270.6,76.3 271.0,74.8 271.4,76.0 271.7,76.2 272.1,76.9 272.5,74.6 272.9,75.0 273.2,74.5 273.6,75.6 274.0,77.0 274.4,76.9 274.7,74.4 275.1,75.2 275.5,75.0 275.9,73.9 276.3,74.4 276.6,72.3 277.0,69.3 277.4,69.2 277.8,68.4 278.1,70.9 278.5,75.1 278.9,78.0 279.3,77.5 279.6,77.5 280.0,76.4 280.4,76.4 280.8,73.1 281.2,72.0 281.5,73.1 281.9,72.2 282.3,73.2 282.7,72.2 283.0,71.8 283.4,71.6 283.8,71.8 284.2,74.2 284.5,74.4 284.9,74.0 285.3,75.2 285.7,74.3 286.1,74.1 286.4,74.4 286.8,73.3 287.2,73.0 287.6,73.1 287.9,74.5 288.3,77.0 288.7,76.0 289.1,76.0 289.4,76.2 289.8,77.2 290.2,78.2 290.6,77.6 290.9,77.1 291.3,77.3 291.7,79.8 292.1,81.8 292.5,81.4 292.8,80.8 293.2,76.8 293.6,76.4 294.0,78.8 294.3,76.7 294.7,76.6 295.1,76.8 295.5,78.5 295.8,79.2 296.2,79.7 296.6,80.2 297.0,82.4 297.4,84.5 298.1,85.9 298.5,86.7 298.9,86.0 299.2,84.6 299.6,82.5 300.0,82.6 300.4,83.6 300.7,82.5 301.1,83.3 301.5,84.4 301.9,82.9 302.2,82.5 302.6,81.8 303.0,82.7 303.4,82.6 303.8,82.2 304.1,84.1 304.5,83.4 304.9,84.4 305.3,85.9 305.6,83.7 306.0,87.2 306.4,85.6 306.8,88.0 307.1,87.2 307.5,89.0 307.9,90.4 308.3,91.8 308.7,94.1 309.0,94.5 309.4,93.9 309.8,88.0 310.2,84.4 310.5,85.5 310.9,87.9 311.3,90.9 311.7,93.3 312.0,94.9 312.4,96.9 312.8,96.4 313.2,94.5 313.6,92.9 313.9,95.0 314.3,97.6 314.7,97.6 315.1,97.8 315.4,100.9 315.8,100.0 316.2,98.7 316.6,98.3 316.9,98.1 317.3,96.6 317.7,95.5 318.1,87.9 318.4,80.5 318.8,82.6 319.2,88.1 319.6,86.3 320.0,84.2 320.3,82.5 320.7,82.3 321.1,82.9 321.5,83.6 321.8,84.0 322.2,83.2 322.6,82.5 323.0,85.1 323.3,84.5 323.7,81.6 324.1,80.7 324.5,79.5 324.9,80.1 325.2,82.5 325.6,85.6 326.0,87.8 326.4,85.5 326.7,88.2 327.1,93.2 327.5,96.0 327.9,96.9 328.2,94.9 328.6,94.3 329.0,92.3 329.4,93.3 329.7,91.9 330.1,88.7 330.5,89.3 330.9,88.8 331.3,89.1 331.6,89.3 332.0,90.4 332.4,91.3 332.8,89.1 333.1,87.0 333.5,88.0 333.9,90.7 334.3,92.2 334.6,92.2 335.0,93.7 335.4,95.3 335.8,96.9 336.2,99.5 336.5,101.7 336.9,100.4 337.3,99.5 337.7,98.0 338.0,98.3 338.4,95.3 338.8,92.9 339.2,94.2 339.5,97.7 339.9,96.4 340.3,94.3 340.7,95.3 341.1,94.4 341.4,93.6 341.8,94.9 342.2,96.2 342.6,100.5 342.9,101.2 343.3,103.2 343.7,103.4 344.1,100.4 344.4,98.5 344.8,97.7 345.2,99.0 345.6,100.4 345.9,99.6 346.7,100.4 347.1,100.0 347.5,99.0 347.8,98.8 348.2,101.1 348.6,100.0 349.0,99.8 349.3,98.0 349.7,97.6 350.1,97.1 350.5,92.6 350.8,100.4 351.2,101.2 351.6,101.0 352.0,100.8 352.4,98.8 352.7,98.2 353.1,100.6 353.5,101.1 353.9,102.3 354.2,101.8 355.0,101.4 355.4,102.9 355.7,102.3 356.1,103.3 356.5,100.0 356.9,103.7 357.2,107.4 357.6,107.6 358.0,110.2 358.4,112.0 358.8,112.3 359.1,113.3 359.5,114.7 359.9,114.2 360.3,115.8 360.6,114.5 361.0,110.6 361.4,109.6 361.8,108.3 362.1,110.2 362.5,109.7 362.9,109.6 363.3,106.7 363.7,106.6 364.0,106.4 364.4,102.4 364.8,98.7 365.2,99.6 365.5,101.5 365.9,104.2 366.3,105.8 366.7,106.5 367.0,107.3 367.4,106.6 367.8,106.2 368.2,107.3 368.5,107.6 368.9,107.8 369.3,106.1 369.7,106.5 370.1,108.6 370.4,110.4 370.8,111.9 371.2,110.5 371.6,108.3 371.9,105.5 372.3,108.7 372.7,110.2 373.1,109.4 373.4,108.9 373.8,109.9 374.2,111.4 374.6,111.9 375.0,111.4 375.3,100.5 375.7,104.6 376.1,109.0 376.5,107.8 376.8,105.5 377.2,103.6 377.6,103.1 378.0,103.7 378.3,105.2 378.7,106.4 379.1,106.7 379.5,101.9 379.9,93.7 380.2,94.5 380.6,97.5 381.0,95.1 381.4,95.9 381.7,98.8 382.1,100.9 382.5,101.2 382.9,101.7 383.2,103.3 383.6,103.3 384.0,104.3 384.4,103.3 384.7,101.2 385.1,101.0 385.5,101.3 385.9,101.1 386.3,102.4 386.6,104.9 387.0,102.7 387.4,100.5 387.8,100.2 388.1,99.8 388.5,99.4 388.9,100.5 389.3,100.2 389.6,100.9 390.0,101.7 390.4,100.9 390.8,102.3 391.2,103.0 391.5,102.0 391.9,101.2 392.3,100.3 392.7,102.0 393.0,104.0 393.4,107.5 393.8,108.8 394.2,110.7 394.5,110.2 394.9,110.1 395.3,110.0 395.7,111.9 396.0,112.0 396.4,110.8 396.8,108.9 397.2,109.4 397.6,107.9 397.9,107.9 398.3,105.4 398.7,86.7 399.1,93.5 399.4,98.0 399.8,98.3 400.2,99.7 400.6,100.5 400.9,101.5 401.3,102.6 401.7,101.7 402.1,103.1 402.5,101.3 402.8,99.3 403.2,102.7 403.6,105.0 404.0,104.5 404.3,102.5 404.7,101.2 405.1,101.1 405.5,100.7 405.8,103.9 406.2,106.9 406.6,105.8 407.0,103.2 407.4,101.6 407.7,102.0 408.1,103.1 408.5,104.2 408.9,104.7 409.2,104.3 409.6,104.5 410.0,104.2 410.4,101.5 410.7,103.6 411.1,105.8 411.5,109.0 411.9,108.4 412.2,110.8 412.6,111.3 413.0,110.7 413.4,110.8 413.8,113.6 414.1,111.6 414.5,110.8 414.9,112.0 415.3,115.2 415.6,116.7 416.0,116.2 416.4,118.4 416.8,118.2 417.1,120.8 417.5,123.7 417.9,125.6 418.3,127.4 418.7,127.7 419.0,123.2 419.4,116.6 419.8,111.0 420.2,109.9 420.5,113.9 420.9,115.9 421.3,117.2 421.7,117.5 422.0,121.3 422.4,123.2 422.8,122.0 423.2,122.1 423.5,121.8 423.9,129.4 424.3,131.3 424.7,133.9 425.1,135.1 425.4,134.8 425.8,136.2 426.2,137.4 426.6,137.7 426.9,137.6 427.3,139.3 427.7,140.0 428.1,136.8 428.4,138.2 428.8,137.7 429.2,136.8 429.6,135.9 430.0,136.9 430.3,137.8 430.7,136.4 431.1,133.5 431.5,134.1 431.8,133.8 432.2,133.2 432.6,133.9 433.0,134.3 433.3,135.3 433.7,137.0 434.1,139.3 434.5,137.2 434.8,138.3 435.2,138.0 435.6,137.0 436.0,136.2 436.4,134.5 436.7,136.0 437.1,136.2 437.5,131.3 437.9,128.6 438.2,134.0 438.6,135.6 439.0,135.0 439.4,132.2 439.7,130.8 440.1,130.8 440.5,130.0 440.9,130.4 441.3,132.3 441.6,134.4 442.0,131.3 442.4,131.0 442.8,131.9 443.1,131.1 443.5,130.9 443.9,129.7 444.3,127.5 444.6,129.1 445.0,129.8 445.4,132.4 445.8,135.9 446.2,138.6 446.5,137.1 446.9,137.3 447.3,142.6 447.7,143.3 448.0,144.6 448.4,144.5 448.8,143.9 449.2,144.2 449.5,144.2 449.9,143.4 450.3,143.2 450.7,145.9 451.0,145.3 451.4,149.4 451.8,150.3 452.2,152.1 452.6,158.1 452.9,155.9 453.3,158.8 453.7,157.3 454.1,158.2 454.4,158.2 454.8,157.7 455.2,157.5 455.6,154.7 455.9,154.0 456.3,154.2 456.7,153.4 457.1,153.5 457.5,154.0 457.8,151.0 458.2,144.5 458.6,143.7 459.0,144.3 459.3,146.3 459.7,144.6 460.1,148.2 460.5,146.5 460.8,142.8 461.2,144.6 461.6,146.2 462.0,145.5 462.3,143.9 462.7,143.8 463.1,144.0 463.5,145.3 463.9,148.0 464.2,148.5 464.6,149.8 465.0,149.6 465.4,147.6 465.7,146.7 466.1,146.6 466.5,144.1 466.9,144.4 467.2,149.4 467.6,152.5 468.0,152.8"/><polyline class="sB mid" points="54.0,190.1 54.4,186.3 54.8,182.5 55.1,181.3 55.5,180.5 55.9,180.0 56.3,182.6 56.6,184.1 57.0,183.9 57.4,183.7 57.8,177.9 58.1,165.9 58.5,124.3 58.9,130.0 59.3,141.0 59.7,141.7 60.0,140.4 60.4,139.9 60.8,141.8 61.2,142.4 61.5,141.3 61.9,140.6 62.3,141.1 62.7,142.3 63.0,140.4 63.4,140.9 63.8,141.4 64.2,140.2 64.5,136.9 64.9,133.8 65.3,136.2 65.7,139.4 66.1,141.1 66.4,144.0 66.8,146.4 67.2,148.6 67.6,150.4 67.9,149.3 68.3,148.6 68.7,148.6 69.1,149.6 69.4,150.1 69.8,149.9 70.2,150.1 70.6,149.3 71.0,149.7 71.3,148.5 71.7,148.1 72.1,149.0 72.5,150.2 72.8,150.9 73.2,154.7 73.6,154.0 74.0,155.4 74.3,156.0 74.7,151.7 75.1,151.0 75.5,154.9 75.8,155.5 76.2,156.5 76.6,156.7 77.0,157.9 77.4,154.2 77.7,157.9 78.1,159.2 78.5,161.4 78.9,161.9 79.2,161.5 79.6,162.3 80.0,161.9 80.4,163.4 80.7,163.3 81.1,160.9 81.5,158.9 81.9,159.3 82.3,161.0 82.6,161.7 83.0,160.7 83.4,158.0 83.8,156.5 84.1,156.0 84.5,159.0 84.9,159.2 85.3,160.2 85.6,157.6 86.0,155.7 86.4,157.5 86.8,158.4 87.2,158.4 87.5,158.8 87.9,159.0 88.3,158.6 88.7,159.8 89.0,158.2 89.4,158.1 89.8,160.6 90.2,162.8 90.5,163.6 90.9,162.1 91.3,160.3 91.7,151.1 92.0,146.5 92.4,147.4 92.8,150.1 93.2,150.2 93.6,149.8 93.9,150.9 94.3,150.6 94.7,148.7 95.1,147.9 95.4,144.4 95.8,143.6 96.2,142.0 96.6,142.7 96.9,143.5 97.3,143.1 97.7,143.4 98.1,143.0 98.5,142.1 98.8,141.2 99.2,140.5 99.6,140.9 100.0,141.1 100.3,142.3 100.7,141.4 101.1,139.8 101.5,137.3 101.8,138.3 102.2,137.9 102.6,139.0 103.0,140.3 103.3,140.1 103.7,139.9 104.1,141.0 104.5,142.0 104.9,142.6 105.2,142.4 105.6,141.9 106.0,142.7 106.4,144.4 106.7,143.1 107.1,141.9 107.5,141.1 107.9,141.0 108.2,141.4 108.6,141.5 109.0,142.6 109.4,143.6 109.8,145.0 110.1,146.0 110.5,147.1 110.9,150.5 111.3,147.0 111.6,143.8 112.0,142.3 112.4,139.2 112.8,136.9 113.1,138.5 113.5,139.6 113.9,140.4 114.3,141.4 114.6,137.1 115.0,134.1 115.4,132.6 115.8,133.1 116.2,134.2 116.5,135.0 116.9,135.4 117.3,137.1 117.7,135.9 118.0,135.7 118.4,135.9 118.8,140.7 119.2,145.7 119.5,145.0 119.9,143.6 120.3,141.7 120.7,141.9 121.1,142.4 121.4,143.7 121.8,144.0 122.2,145.2 122.6,144.1 122.9,144.2 123.3,142.0 123.7,138.6 124.1,136.7 124.4,138.3 124.8,138.9 125.2,137.0 125.6,134.0 126.0,133.3 126.3,131.9 126.7,130.8 127.1,129.9 127.5,129.4 127.8,128.7 128.2,129.9 128.6,129.5 129.0,128.4 129.3,129.7 129.7,128.5 130.1,126.8 130.5,130.1 130.8,123.0 131.2,111.9 131.6,91.6 132.0,99.7 132.4,100.1 132.7,101.7 133.1,103.4 133.5,103.8 133.9,105.2 134.2,105.7 134.6,106.3 135.0,105.4 135.4,103.5 135.7,99.7 136.1,98.4 136.5,99.3 136.9,99.1 137.3,102.2 137.6,103.8 138.0,104.0 138.4,104.6 138.8,108.0 139.1,108.2 139.5,105.4 139.9,106.9 140.3,108.0 140.6,108.6 141.0,109.1 141.4,109.4 141.8,111.1 142.1,112.6 142.5,113.6 142.9,113.3 143.3,113.5 143.7,113.4 144.0,114.4 144.4,116.4 144.8,117.0 145.2,118.1 145.5,116.5 145.9,117.2 146.3,117.4 146.7,115.4 147.0,114.8 147.4,115.8 147.8,116.6 148.2,116.2 148.6,117.6 148.9,117.8 149.3,117.2 149.7,116.3 150.1,115.5 150.4,115.2 150.8,114.4 151.2,114.6 151.6,115.9 151.9,115.9 152.3,119.0 152.7,120.3 153.1,120.5 153.5,120.3 153.8,119.8 154.2,122.2 154.6,124.8 155.0,124.1 155.3,125.8 155.7,126.2 156.1,116.6 156.5,112.4 156.8,112.3 157.2,112.4 157.6,114.6 158.0,115.6 158.3,116.0 158.7,112.2 159.1,106.2 159.5,104.5 159.9,105.0 160.2,103.4 160.6,101.3 161.0,99.8 161.4,101.9 161.7,102.1 162.1,103.7 162.5,103.9 162.9,103.0 163.2,104.7 163.6,105.9 164.0,105.6 164.4,102.4 164.8,99.4 165.1,98.7 165.5,99.6 165.9,102.3 166.3,101.8 166.6,102.1 167.0,103.4 167.4,102.4 167.8,101.9 168.1,102.7 168.5,103.6 168.9,103.4 169.3,103.4 169.6,103.4 170.0,102.8 170.4,104.1 170.8,104.7 171.2,105.2 171.5,104.1 171.9,103.9 172.3,103.6 172.7,103.4 173.0,103.2 173.4,102.6 173.8,102.9 174.2,105.4 174.5,106.7 174.9,105.2 175.3,107.7 175.7,107.4 176.1,106.5 176.4,107.4 176.8,108.5 177.2,108.6 177.6,112.6 177.9,113.5 178.3,112.8 178.7,113.4 179.1,113.1 179.4,116.9 179.8,121.3 180.2,123.0 180.6,123.0 180.9,122.7 181.3,123.9 181.7,126.5 182.1,127.6 182.5,127.9 182.8,128.9 183.2,127.2 183.6,125.7 184.0,124.4 184.3,124.9 184.7,126.1 185.1,126.1 185.5,128.2 185.8,128.3 186.2,125.5 186.6,122.0 187.0,124.1 187.4,124.0 187.7,122.9 188.1,125.2 188.5,125.4 188.9,126.5 189.2,125.2 189.6,124.0 190.0,124.7 190.4,125.3 190.7,125.5 191.1,125.3 191.5,121.4 191.9,119.3 192.3,122.4 192.6,120.6 193.0,116.8 193.4,119.0 193.8,122.5 194.1,122.3 194.5,123.9 194.9,124.5 195.3,124.3 195.6,124.8 196.0,126.7 196.4,126.6 196.8,125.6 197.1,127.4 197.5,128.5 197.9,129.9 198.3,128.5 198.7,130.9 199.0,133.3 199.8,134.9 200.2,134.2 200.5,136.4 200.9,137.4 201.3,138.2 201.7,138.8 202.0,138.6 202.4,138.1 202.8,139.0 203.2,139.0 203.6,140.6 203.9,140.8 204.3,142.8 204.7,141.5 205.1,139.1 205.4,138.1 205.8,138.6 206.2,138.5 206.6,138.7 206.9,140.1 207.3,140.7 207.7,142.1 208.1,144.5 208.4,144.1 208.8,143.5 209.2,144.7 209.6,143.2 210.0,143.3 210.3,144.9 210.7,144.3 211.1,146.7 211.5,147.3 211.8,146.2 212.2,143.4 212.6,140.5 213.0,138.1 213.3,135.5 213.7,133.7 214.1,134.1 214.5,134.2 214.9,135.7 215.2,138.0 215.6,139.9 216.0,139.2 216.4,141.3 216.7,142.5 217.1,141.7 217.5,138.8 217.9,126.5 218.2,129.5 218.6,130.3 219.0,131.8 219.4,131.3 219.8,130.9 220.1,131.8 220.5,133.3 220.9,134.4 221.3,134.5 221.6,135.8 222.0,137.1 222.4,135.2 222.8,132.2 223.1,130.5 223.5,131.5 223.9,130.2 224.3,129.6 224.6,128.8 225.0,129.4 225.4,132.2 225.8,130.4 226.2,129.9 226.5,132.3 226.9,130.4 227.3,126.6 227.7,124.5 228.0,126.2 228.4,129.9 228.8,133.2 229.2,134.2 229.5,133.7 229.9,134.6 230.3,133.9 230.7,136.2 231.1,137.4 231.4,135.8 231.8,134.7 232.2,135.9 232.6,135.9 232.9,135.7 233.3,135.5 233.7,133.6 234.1,135.8 234.4,135.2 234.8,136.8 235.2,137.2 235.6,139.2 235.9,139.6 236.3,137.5 236.7,134.2 237.1,132.4 237.5,136.1 237.8,137.5 238.2,138.6 238.6,134.4 239.0,130.1 239.3,126.4 239.7,125.8 240.1,123.0 240.5,124.6 240.8,123.3 241.2,120.7 241.6,119.2 242.0,119.4 242.4,119.7 242.7,119.7 243.1,119.7 243.5,117.7 243.9,120.8 244.2,118.0 244.6,119.9 245.0,121.3 245.4,121.5 245.7,115.7 246.1,113.4 246.5,112.3 246.9,113.0 247.3,115.6 247.6,113.5 248.0,110.4 248.4,108.6 248.8,107.2 249.1,108.8 249.5,109.1 249.9,108.8 250.3,108.8 250.6,110.1 251.0,110.3 251.4,107.8 251.8,105.4 252.1,103.0 252.5,107.2 252.9,108.6 253.3,106.4 253.7,107.1 254.0,106.2 254.4,105.6 254.8,106.8 255.2,107.5 255.5,106.8 255.9,106.3 256.3,105.2 256.7,106.4 257.0,106.2 257.4,106.7 257.8,105.6 258.2,107.3 258.6,109.4 258.9,109.3 259.3,107.3 259.7,106.3 260.1,108.3 260.4,108.7 260.8,107.5 261.2,107.0 261.6,108.1 261.9,107.8 262.3,108.4 262.7,109.3 263.1,108.7 263.4,109.9 263.8,110.3 264.2,109.9 264.6,112.2 265.0,113.3 265.3,112.6 265.7,113.9 266.1,113.2 266.5,111.8 266.8,110.9 267.2,109.3 267.6,107.7 268.0,111.1 268.3,110.3 268.7,106.2 269.1,104.8 269.5,105.5 269.9,112.2 270.2,111.1 270.6,103.4 271.0,103.0 271.4,105.3 271.7,105.4 272.1,106.9 272.5,104.5 272.9,104.3 273.2,104.2 273.6,106.3 274.0,108.5 274.4,108.6 274.7,106.3 275.1,106.6 275.5,106.4 275.9,104.8 276.3,105.7 276.6,103.8 277.0,100.7 277.4,100.7 277.8,100.0 278.1,102.3 278.5,106.5 278.9,109.2 279.3,108.6 279.6,108.3 280.0,104.8 280.4,100.9 280.8,103.5 281.2,103.0 281.5,101.9 281.9,100.7 282.3,101.6 282.7,101.0 283.0,99.5 283.4,96.1 283.8,95.3 284.2,98.3 284.5,95.8 284.9,95.0 285.3,97.1 285.7,96.4 286.1,95.5 286.4,94.0 286.8,91.1 287.2,89.6 287.6,92.7 287.9,94.2 288.3,96.2 288.7,95.1 289.1,94.9 289.4,95.7 289.8,96.4 290.2,96.2 290.6,93.3 290.9,95.8 291.3,95.9 291.7,96.0 292.1,98.6 292.5,99.2 292.8,98.6 293.2,97.0 293.6,97.3 294.0,99.3 294.3,98.0 294.7,98.1 295.1,98.0 295.5,88.1 295.8,76.0 296.2,72.5 296.6,77.9 297.0,79.9 297.4,82.2 298.1,84.1 298.5,87.1 298.9,86.2 299.2,84.1 299.6,82.0 300.0,81.6 300.4,81.6 300.7,80.8 301.1,81.5 301.5,83.1 301.9,79.4 302.2,78.1 302.6,78.7 303.0,81.5 303.4,82.1 303.8,83.3 304.1,84.0 304.5,83.4 304.9,83.6 305.3,84.2 305.6,81.3 306.0,83.9 306.4,82.3 306.8,83.3 307.1,82.5 307.5,84.9 307.9,87.0 308.3,88.1 308.7,91.6 309.0,92.5 309.4,90.6 309.8,84.7 310.2,81.0 310.5,82.0 310.9,84.2 311.3,88.3 311.7,89.9 312.0,90.4 312.4,91.3 312.8,91.5 313.2,90.0 313.6,88.5 313.9,90.5 314.3,92.8 314.7,92.8 315.1,94.4 315.4,98.0 315.8,99.7 316.2,100.1 316.6,99.6 316.9,98.8 317.3,97.7 317.7,97.2 318.1,69.7 318.4,46.5 318.8,46.6 319.2,58.8 319.6,57.0 320.0,55.0 320.3,55.1 320.7,54.3 321.1,53.5 321.5,54.7 321.8,55.5 322.2,54.6 322.6,50.2 323.0,55.0 323.3,54.4 323.7,51.4 324.1,50.6 324.5,49.7 324.9,50.8 325.2,51.7 325.6,54.4 326.0,56.1 326.4,52.9 326.7,54.5 327.1,59.2 327.5,61.5 327.9,62.1 328.2,60.4 328.6,59.9 329.0,59.7 329.4,60.6 329.7,58.0 330.1,54.7 330.5,54.9 330.9,55.0 331.3,54.6 331.6,51.7 332.0,54.2 332.4,54.4 332.8,52.3 333.1,50.1 333.5,49.5 333.9,49.9 334.3,51.0 334.6,52.2 335.0,55.3 335.4,58.6 335.8,59.6 336.2,61.3 336.5,62.6 336.9,61.3 337.3,58.0 337.7,52.6 338.0,53.0 338.4,41.8 338.8,32.1 339.2,31.9 339.5,35.4 339.9,34.7 340.3,31.9 340.7,32.3 341.1,31.3 341.4,30.6 341.8,32.6 342.2,35.2 342.6,38.8 342.9,38.6 343.3,42.3 343.7,41.5 344.1,38.5 344.4,36.6 344.8,37.3 345.2,40.3 345.6,40.8 345.9,41.0 346.7,41.6 347.1,41.1 347.5,40.2 347.8,38.7 348.2,40.3 348.6,39.6 349.0,39.6 349.3,37.3 349.7,36.7 350.1,36.0 350.5,31.6 350.8,39.5 351.2,40.3 351.6,40.1 352.0,39.9 352.4,35.3 352.7,37.7 353.1,38.6 353.5,35.6 353.9,34.1 354.2,35.8 355.0,37.4 355.4,38.1 355.7,38.5 356.1,39.6 356.5,39.2 356.9,42.2 357.2,44.2 357.6,44.4 358.0,47.4 358.4,49.1 358.8,49.0 359.1,50.2 359.5,52.1 359.9,53.2 360.3,55.0 360.6,53.2 361.0,49.3 361.4,49.3 361.8,48.8 362.1,50.9 362.5,50.3 362.9,50.3 363.3,45.9 363.7,44.4 364.0,44.2 364.4,40.2 364.8,36.1 365.2,36.5 365.5,38.3 365.9,41.0 366.3,39.7 366.7,36.2 367.0,41.8 367.4,41.0 367.8,40.3 368.2,42.0 368.5,41.6 368.9,41.0 369.3,38.7 369.7,39.4 370.1,43.0 370.4,45.1 370.8,46.4 371.2,46.0 371.6,44.6 371.9,42.7 372.3,44.8 372.7,46.0 373.1,45.1 373.4,44.5 373.8,36.3 374.2,38.0 374.6,39.5 375.0,39.0 375.3,28.5 375.7,32.6 376.1,37.0 376.5,35.8 376.8,33.5 377.2,31.5 377.6,31.0 378.0,33.2 378.3,36.1 378.7,38.3 379.1,39.2 379.5,37.2 379.9,33.0 380.2,34.4 380.6,35.8 381.0,33.5 381.4,33.3 381.7,35.1 382.1,35.9 382.5,36.2 382.9,36.6 383.2,41.1 383.6,41.6 384.0,43.2 384.4,42.2 384.7,40.1 385.1,40.0 385.5,42.0 385.9,41.7 386.3,41.7 386.6,44.2 387.0,41.8 387.4,39.6 387.8,39.6 388.1,37.7 388.5,37.4 388.9,38.5 389.3,39.3 389.6,39.7 390.0,40.6 390.4,39.4 390.8,39.6 391.2,39.5 391.5,38.5 391.9,37.7 392.3,36.6 392.7,38.6 393.0,42.6 393.4,45.6 393.8,45.4 394.2,46.9 394.5,46.6 394.9,46.7 395.3,46.5 395.7,47.5 396.0,47.1 396.4,43.8 396.8,38.0 397.2,42.3 397.6,40.2 397.9,38.9 398.3,36.4 398.7,36.1 399.1,38.0 399.4,39.2 399.8,40.8 400.2,42.4 400.6,43.5 400.9,46.0 401.3,47.7 401.7,47.6 402.1,48.1 402.5,45.4 402.8,42.9 403.2,45.7 403.6,47.4 404.0,47.2 404.3,45.2 404.7,43.8 405.1,44.0 405.5,44.0 405.8,46.1 406.2,41.5 406.6,34.8 407.0,34.9 407.4,34.6 407.7,35.1 408.1,36.0 408.5,37.2 408.9,38.1 409.2,37.9 409.6,38.5 410.0,38.3 410.4,36.7 410.7,36.2 411.1,37.6 411.5,39.9 411.9,39.7 412.2,41.7 412.6,41.6 413.0,40.2 413.4,39.4 413.8,41.2 414.1,38.7 414.5,38.0 414.9,39.0 415.3,40.6 415.6,41.8 416.0,43.4 416.4,44.9 416.8,44.6 417.1,47.1 417.5,49.7 417.9,51.7 418.3,53.1 418.7,51.7 419.0,45.5 419.4,38.9 419.8,33.4 420.2,32.2 420.5,36.3 420.9,38.3 421.3,40.2 421.7,41.8 422.0,41.9 422.4,43.1 422.8,41.9 423.2,41.7 423.5,43.8 423.9,45.7 424.3,47.4 424.7,49.6 425.1,50.1 425.4,50.4 425.8,51.7 426.2,52.6 426.6,52.9 426.9,54.5 427.3,55.7 427.7,56.9 428.1,53.8 428.4,54.3 428.8,53.5 429.2,52.3 429.6,50.9 430.0,51.5 430.3,52.5 430.7,51.2 431.1,48.3 431.5,49.2 431.8,48.6 432.2,47.5 432.6,48.4 433.0,51.0 433.3,51.3 433.7,52.0 434.1,53.5 434.5,51.5 434.8,53.1 435.2,52.8 435.6,52.6 436.0,51.5 436.4,49.3 436.7,51.8 437.1,51.3 437.5,48.7 437.9,47.2 438.2,47.4 438.6,48.2 439.0,51.1 439.4,50.0 439.7,49.5 440.1,49.5 440.5,49.2 440.9,49.2 441.3,51.5 441.6,54.2 442.0,51.4 442.4,50.6 442.8,50.3 443.1,49.5 443.5,49.7 443.9,50.1 444.3,49.8 444.6,49.6 445.0,49.8 445.4,52.0 445.8,54.2 446.2,56.4 446.5,53.9 446.9,53.8 447.3,57.6 447.7,57.1 448.0,58.8 448.4,60.4 448.8,59.7 449.2,58.8 449.5,59.3 449.9,58.2 450.3,57.8 450.7,60.0 451.0,61.2 451.4,63.2 451.8,64.3 452.2,64.7 452.6,68.4 452.9,66.1 453.3,68.3 453.7,66.6 454.1,67.3 454.4,69.1 454.8,68.9 455.2,67.4 455.6,62.0 455.9,59.6 456.3,62.1 456.7,61.4 457.1,61.1 457.5,61.4 457.8,60.0 458.2,53.6 458.6,52.8 459.0,53.7 459.3,56.0 459.7,53.9 460.1,58.8 460.5,58.4 460.8,56.4 461.2,56.2 461.6,57.5 462.0,56.6 462.3,54.8 462.7,54.6 463.1,55.5 463.5,55.9 463.9,58.5 464.2,59.1 464.6,60.0 465.0,60.1 465.4,58.2 465.7,57.4 466.1,57.6 466.5,57.1 466.9,57.4 467.2,58.5 467.6,60.4 468.0,60.7"/><circle class="fA mean" cx="468.2" cy="152.2" r="3.5"/><text class="endlab" x="475.2" y="155.7"><tspan class="ro-n">A</tspan> +328.5R</text><circle class="fB mean" cx="468.2" cy="60.1" r="3.5"/><text class="endlab" x="475.2" y="63.6"><tspan class="ro-n">B</tspan> +1125.3R</text></svg></div><div class="card"><h3>EURUSD <span class="tag">r_equity · full window</span></h3><svg class="chart" viewBox="0 0 560 232" width="100%" preserveAspectRatio="xMidYMid meet" role="img"><line class="grid" x1="54" y1="160.4" x2="468" y2="160.4"/><text class="tick" x="48" y="163.9" text-anchor="end">500</text><line class="grid" x1="54" y1="94.6" x2="468" y2="94.6"/><text class="tick" x="48" y="98.1" text-anchor="end">0</text><line class="grid" x1="54" y1="28.8" x2="468" y2="28.8"/><text class="tick" x="48" y="32.3" text-anchor="end">+500</text><line class="zero" x1="54" y1="94.6" x2="468" y2="94.6"/><line class="grid" x1="102.6" y1="208" x2="102.6" y2="212"/><text class="tick" x="102.6" y="224" text-anchor="middle">2019</text><line class="grid" x1="200.2" y1="208" x2="200.2" y2="212"/><text class="tick" x="200.2" y="224" text-anchor="middle">2021</text><line class="grid" x1="297.7" y1="208" x2="297.7" y2="212"/><text class="tick" x="297.7" y="224" text-anchor="middle">2023</text><line class="grid" x1="395.3" y1="208" x2="395.3" y2="212"/><text class="tick" x="395.3" y="224" text-anchor="middle">2025</text><polygon class="fA band" points="54.0,94.4 54.4,94.5 54.8,88.8 55.1,88.2 55.5,93.0 55.9,92.3 56.3,96.6 56.6,99.7 57.0,94.1 57.4,95.6 57.8,93.2 58.1,96.4 58.5,95.8 58.9,92.9 59.3,92.7 59.7,93.6 60.0,94.1 60.4,93.1 60.8,91.4 61.2,92.0 61.5,91.2 61.9,93.4 62.3,91.7 62.7,91.2 63.0,92.7 63.4,88.9 63.8,90.5 64.2,90.4 64.5,91.8 64.9,93.2 65.3,91.4 65.7,91.0 66.1,90.3 66.4,91.6 66.8,93.7 67.2,92.5 67.6,91.9 67.9,91.9 68.3,94.4 68.7,98.0 69.1,97.9 69.4,100.1 69.8,99.0 70.2,99.3 70.6,99.0 71.0,97.1 71.3,98.9 71.7,85.3 72.1,79.3 72.5,75.5 72.8,81.8 73.2,80.5 73.6,74.9 74.0,74.6 74.3,73.9 74.7,71.2 75.1,72.6 75.5,74.3 75.8,77.8 76.2,79.0 76.6,79.6 77.0,83.3 77.4,83.6 77.7,83.3 78.1,83.9 78.5,86.2 78.9,88.0 79.2,87.7 79.6,89.2 80.0,91.8 80.4,91.1 80.7,90.9 81.1,91.2 81.5,94.4 81.9,87.3 82.3,90.1 82.6,92.4 83.0,88.9 83.4,88.5 83.8,87.2 84.1,86.1 84.5,86.6 84.9,82.8 85.3,83.5 85.6,80.2 86.0,81.7 86.4,81.5 86.8,80.1 87.2,81.5 87.5,82.5 87.9,83.7 88.3,84.1 88.7,82.6 89.0,87.9 89.4,89.6 89.8,91.9 90.2,92.7 90.5,92.0 90.9,94.2 91.3,93.3 91.7,89.2 92.0,92.5 92.4,87.6 92.8,95.0 93.2,91.4 93.6,97.0 93.9,97.9 94.3,99.2 94.7,96.4 95.1,101.9 95.4,103.6 95.8,102.9 96.2,102.1 96.6,100.2 96.9,98.8 97.3,99.7 97.7,99.7 98.1,98.7 98.5,98.6 98.8,99.1 99.2,100.9 99.6,100.6 100.0,100.2 100.3,99.3 100.7,92.6 101.1,87.2 101.5,97.5 101.8,102.0 102.2,103.0 102.6,100.4 103.0,105.2 103.3,107.6 103.7,108.3 104.1,112.5 104.5,112.8 104.9,115.0 105.2,116.4 105.6,117.9 106.0,121.7 106.4,115.2 106.7,114.1 107.1,118.3 107.5,112.0 107.9,111.4 108.2,107.2 108.6,111.4 109.0,110.7 109.4,115.6 109.8,116.3 110.1,116.1 110.5,115.5 110.9,115.3 111.3,111.2 111.6,111.5 112.0,103.7 112.4,103.1 112.8,101.4 113.1,93.2 113.5,106.1 113.9,105.2 114.3,104.5 114.6,103.8 115.0,104.3 115.4,103.2 115.8,102.5 116.2,105.9 116.5,106.5 116.9,109.5 117.3,111.6 117.7,106.3 118.0,106.5 118.4,107.5 118.8,107.3 119.2,108.1 119.5,109.1 119.9,110.1 120.3,109.8 120.7,110.0 121.1,109.9 121.4,110.2 121.8,113.7 122.2,113.5 122.6,116.1 122.9,116.5 123.3,116.2 123.7,118.7 124.1,118.8 124.4,115.4 124.8,115.5 125.2,112.9 125.6,110.7 126.0,109.5 126.3,111.2 126.7,111.9 127.1,111.7 127.5,110.2 127.8,107.9 128.2,106.5 128.6,106.5 129.0,100.7 129.3,104.9 129.7,102.8 130.1,101.7 130.5,105.6 130.8,104.3 131.2,104.8 131.6,99.7 132.0,100.9 132.4,103.2 132.7,101.1 133.1,100.7 133.5,100.7 133.9,99.9 134.2,102.1 134.6,101.6 135.0,98.8 135.4,97.3 135.7,97.4 136.1,98.8 136.5,93.5 136.9,101.8 137.3,98.4 137.6,100.9 138.0,100.0 138.4,99.5 138.8,98.6 139.1,98.8 139.5,98.7 139.9,98.7 140.3,98.9 140.6,99.9 141.0,99.7 141.4,98.4 141.8,98.0 142.1,99.1 142.5,99.3 142.9,99.1 143.3,101.4 143.7,98.0 144.0,95.5 144.4,95.5 144.8,96.9 145.2,97.8 145.5,97.0 145.9,97.4 146.3,103.3 146.7,103.2 147.0,103.7 147.4,99.1 147.8,97.3 148.2,99.9 148.6,100.2 148.9,103.3 149.3,103.9 149.7,104.4 150.1,106.8 150.4,106.8 150.8,104.8 151.2,102.4 151.6,102.4 151.9,103.3 152.3,104.5 152.7,105.6 153.1,105.6 153.5,106.3 153.8,106.5 154.2,105.4 154.6,109.1 155.0,108.9 155.3,100.6 155.7,100.8 156.1,104.1 156.5,103.3 156.8,100.8 157.2,99.6 157.6,98.5 158.0,98.1 158.3,97.5 158.7,95.8 159.1,90.1 159.5,83.9 159.9,78.8 160.2,73.8 160.6,73.1 161.0,75.4 161.4,75.2 161.7,66.6 162.1,66.2 162.5,67.0 162.9,68.3 163.2,68.4 163.6,67.5 164.0,67.6 164.4,67.4 164.8,68.0 165.1,67.5 165.5,69.5 165.9,71.2 166.3,71.6 166.6,74.2 167.0,70.8 167.4,72.8 167.8,72.6 168.1,73.2 168.5,71.8 168.9,73.6 169.3,74.7 169.6,72.2 170.0,67.3 170.4,70.0 170.8,66.8 171.2,58.2 171.5,59.6 171.9,45.6 172.3,44.3 172.7,48.0 173.0,50.0 173.4,51.4 173.8,52.0 174.2,53.4 174.5,53.7 174.9,53.0 175.3,52.8 175.7,53.3 176.1,57.8 176.4,55.6 176.8,58.4 177.2,58.6 177.6,53.9 177.9,59.0 178.3,58.8 178.7,58.8 179.1,56.1 179.4,52.4 179.8,52.1 180.2,54.8 180.6,57.0 180.9,57.8 181.3,56.6 181.7,56.5 182.1,51.8 182.5,50.4 182.8,55.9 183.2,56.2 183.6,62.1 184.0,60.5 184.3,58.8 184.7,58.2 185.1,57.5 185.5,61.2 185.8,59.0 186.2,59.0 186.6,61.4 187.0,60.2 187.4,60.1 187.7,59.6 188.1,59.8 188.5,58.7 188.9,59.1 189.2,59.9 189.6,59.1 190.0,57.8 190.4,45.1 190.7,40.4 191.1,47.2 191.5,45.5 191.9,43.0 192.3,41.5 192.6,42.5 193.0,41.8 193.4,42.9 193.8,44.4 194.1,43.1 194.5,43.1 194.9,45.3 195.3,47.6 195.6,50.0 196.0,49.5 196.4,55.6 196.8,57.5 197.1,57.5 197.5,59.9 197.9,62.9 198.3,61.9 198.7,54.2 199.0,55.9 199.4,58.2 199.8,58.0 200.2,58.4 200.5,59.2 200.9,55.9 201.3,60.0 201.7,57.0 202.0,60.3 202.4,59.4 202.8,53.2 203.2,58.2 203.6,57.6 203.9,60.8 204.3,60.3 204.7,58.2 205.1,55.9 205.4,49.9 205.8,49.5 206.2,51.5 206.6,51.6 206.9,51.0 207.3,51.6 207.7,54.2 208.1,55.4 208.4,53.9 208.8,53.6 209.2,52.4 209.6,51.3 210.0,54.9 210.3,57.0 210.7,60.4 211.1,62.1 211.5,60.7 211.8,59.1 212.2,58.8 212.6,59.7 213.0,57.4 213.3,56.9 213.7,55.6 214.1,54.0 214.5,55.2 214.9,57.0 215.2,59.4 215.6,58.9 216.0,60.0 216.4,61.4 216.7,60.5 217.1,56.6 217.5,56.4 217.9,57.9 218.2,57.4 218.6,55.2 219.0,57.5 219.4,57.3 219.8,56.9 220.1,58.9 220.5,59.9 220.9,59.3 221.3,61.8 221.6,60.8 222.0,63.1 222.4,53.0 222.8,50.7 223.1,50.6 223.5,54.2 223.9,56.7 224.3,57.4 224.6,57.0 225.0,57.9 225.4,55.9 225.8,56.0 226.2,55.8 226.5,58.9 226.9,58.4 227.3,60.2 227.7,62.9 228.0,62.8 228.4,64.4 228.8,65.9 229.2,63.5 229.5,62.1 229.9,61.1 230.3,61.8 230.7,60.6 231.1,59.6 231.4,61.6 231.8,61.3 232.2,61.6 232.6,61.7 232.9,59.6 233.3,60.3 233.7,62.7 234.1,60.5 234.4,57.2 234.8,64.0 235.2,66.1 235.6,68.7 235.9,68.7 236.3,61.1 236.7,59.2 237.1,60.9 237.5,61.6 237.8,63.5 238.2,62.2 238.6,64.0 239.0,61.9 239.3,63.4 239.7,70.0 240.1,74.3 240.5,74.2 240.8,75.3 241.2,75.5 241.6,77.1 242.0,75.1 242.4,74.8 242.7,71.0 243.1,69.8 243.5,70.1 243.9,68.4 244.2,68.3 244.6,67.3 245.0,68.8 245.4,68.9 245.7,67.0 246.1,69.0 246.5,73.1 246.9,74.9 247.3,75.1 247.6,78.1 248.0,79.8 248.4,79.6 248.8,79.7 249.1,81.6 249.5,83.6 249.9,87.6 250.3,88.2 250.6,85.5 251.0,85.2 251.4,82.8 251.8,84.9 252.1,84.2 252.5,79.2 252.9,79.1 253.3,77.1 253.7,78.8 254.0,78.9 254.4,78.7 254.8,85.9 255.2,85.4 255.5,87.8 255.9,87.7 256.3,86.8 256.7,89.9 257.0,89.7 257.4,87.8 257.8,77.8 258.2,76.5 258.6,87.0 258.9,83.5 259.3,84.5 259.7,86.2 260.1,86.3 260.4,88.0 260.8,87.0 261.2,88.3 261.6,87.4 261.9,87.2 262.3,86.6 262.7,89.6 263.1,91.3 263.4,90.6 263.8,88.8 264.2,91.3 264.6,90.0 265.0,90.3 265.3,87.2 265.7,88.4 266.1,92.0 266.5,89.2 266.8,90.0 267.2,89.6 267.6,91.7 268.0,90.0 268.3,88.8 268.7,90.5 269.1,89.5 269.5,91.0 269.9,95.2 270.2,93.1 270.6,95.9 271.0,95.3 271.4,94.9 271.7,95.6 272.1,96.2 272.5,102.9 272.9,96.2 273.2,101.5 273.6,97.7 274.0,91.0 274.4,87.9 274.7,87.5 275.1,97.0 275.5,94.1 275.9,95.0 276.3,98.8 276.6,97.0 277.0,97.3 277.4,96.5 277.8,98.3 278.1,102.6 278.5,89.9 278.9,93.5 279.3,92.8 279.6,90.9 280.0,88.2 280.4,88.4 280.8,90.3 281.2,91.4 281.5,93.8 281.9,96.3 282.3,99.1 282.7,99.1 283.0,97.9 283.4,99.9 283.8,102.5 284.2,102.5 284.5,100.8 284.9,100.5 285.3,99.7 285.7,97.9 286.1,95.7 286.4,93.7 286.8,92.5 287.2,95.8 287.6,95.5 287.9,95.5 288.3,100.3 288.7,97.0 289.1,97.3 289.4,96.4 289.8,91.4 290.2,94.3 290.6,94.0 290.9,92.1 291.3,93.5 291.7,94.6 292.1,93.4 292.5,78.3 292.8,80.2 293.2,83.8 293.6,88.6 294.0,88.9 294.3,90.1 294.7,91.4 295.1,89.0 295.5,87.2 295.8,90.8 296.2,90.9 296.6,90.7 297.0,91.4 297.4,91.4 297.7,93.9 298.1,94.4 298.5,93.5 298.9,94.2 299.2,92.2 299.6,92.1 300.0,92.2 300.4,95.0 300.7,93.0 301.1,94.6 301.5,96.4 301.9,98.3 302.2,102.2 302.6,104.7 303.0,104.0 303.4,104.2 303.8,102.9 304.1,100.5 304.5,104.2 304.9,104.9 305.3,104.8 305.6,104.6 306.0,111.5 306.4,108.6 306.8,107.8 307.1,105.9 307.5,105.5 307.9,106.1 308.3,104.4 308.7,104.1 309.0,105.6 309.4,104.2 309.8,104.8 310.2,105.2 310.5,106.6 310.9,110.8 311.3,102.6 311.7,103.7 312.0,100.4 312.4,108.6 312.8,109.4 313.2,110.2 313.6,112.6 313.9,108.3 314.3,108.2 314.7,108.1 315.1,108.0 315.4,116.3 315.8,116.0 316.2,115.6 316.6,115.6 316.9,115.2 317.3,114.1 317.7,110.0 318.1,122.0 318.4,125.0 318.8,124.8 319.2,127.4 319.6,129.3 320.0,134.0 320.3,134.1 320.7,134.3 321.1,136.8 321.5,134.9 321.8,137.0 322.2,137.2 322.6,137.8 323.0,138.6 323.3,134.8 323.7,134.3 324.1,132.2 324.5,133.9 324.9,132.8 325.2,129.0 325.6,132.8 326.0,134.8 326.4,135.4 326.7,134.3 327.1,134.4 327.5,140.2 327.9,139.5 328.2,139.1 328.6,138.6 329.0,137.6 329.4,137.9 329.7,137.0 330.1,139.8 330.5,141.2 330.9,140.3 331.3,140.4 331.6,140.7 332.0,142.6 332.4,142.3 332.8,141.4 333.1,144.6 333.5,140.8 333.9,140.9 334.3,141.4 334.6,140.6 335.0,141.0 335.4,145.1 335.8,143.9 336.2,141.4 336.5,141.4 336.9,146.7 337.3,145.8 337.7,145.3 338.0,141.9 338.4,146.8 338.8,148.7 339.2,142.8 339.5,147.4 339.9,143.9 340.3,143.6 340.7,141.6 341.1,140.5 341.4,141.6 341.8,140.7 342.2,138.3 342.6,135.0 342.9,131.3 343.3,131.4 343.7,136.7 344.1,132.7 344.4,135.8 344.8,137.4 345.2,141.5 345.6,141.3 345.9,138.2 346.7,130.0 347.1,133.4 347.5,134.6 347.8,137.7 348.2,141.5 348.6,128.0 349.0,134.4 349.3,134.0 349.7,140.8 350.1,143.2 350.5,143.5 350.8,143.1 351.2,144.5 351.6,143.2 352.0,146.8 352.4,148.8 352.7,148.6 353.1,145.6 353.5,142.9 353.9,144.4 354.2,141.0 355.0,147.4 355.4,142.6 355.7,144.9 356.1,146.1 356.5,149.5 356.9,149.8 357.2,150.0 357.6,150.0 358.0,150.1 358.4,149.7 358.8,146.8 359.1,145.7 359.5,147.8 359.9,147.9 360.3,147.5 360.6,146.9 361.0,144.0 361.4,150.9 361.8,150.0 362.1,150.7 362.5,152.2 362.9,152.9 363.3,154.1 363.7,153.1 364.0,155.3 364.4,151.6 364.8,152.0 365.2,154.2 365.5,153.8 365.9,161.4 366.3,159.4 366.7,160.9 367.0,162.7 367.4,163.2 367.8,163.0 368.2,157.5 368.5,153.1 368.9,154.2 369.3,154.3 369.7,154.8 370.1,151.2 370.4,153.9 370.8,153.9 371.2,151.0 371.6,150.9 371.9,148.8 372.3,147.9 372.7,147.3 373.1,149.6 373.4,151.0 373.8,148.9 374.2,148.8 374.6,149.5 375.0,152.2 375.3,156.2 375.7,157.1 376.1,162.1 376.5,161.1 376.8,160.5 377.2,162.3 377.6,159.1 378.0,158.2 378.3,158.0 378.7,154.7 379.1,154.6 379.5,153.1 379.9,150.3 380.2,155.6 380.6,155.6 381.0,154.4 381.4,153.1 381.7,160.9 382.1,158.7 382.5,161.0 382.9,164.1 383.2,130.2 383.6,114.5 384.0,115.5 384.4,126.0 384.7,125.5 385.1,123.0 385.5,123.8 385.9,124.9 386.3,118.5 386.6,124.2 387.0,125.4 387.4,127.5 387.8,126.9 388.1,125.2 388.5,121.0 388.9,120.9 389.3,122.7 389.6,123.1 390.0,106.0 390.4,116.7 390.8,127.6 391.2,127.0 391.5,125.0 391.9,128.8 392.3,129.8 392.7,131.8 393.0,132.8 393.4,133.4 393.8,135.3 394.2,136.5 394.5,139.6 394.9,139.6 395.3,136.1 395.7,131.0 396.0,133.6 396.4,130.3 396.8,128.9 397.2,126.1 397.6,127.3 397.9,121.1 398.3,116.1 398.7,115.7 399.1,116.0 399.4,121.7 399.8,123.9 400.2,125.6 400.6,129.5 400.9,129.5 401.3,130.6 401.7,128.0 402.1,126.4 402.5,125.1 402.8,125.3 403.2,127.6 403.6,122.9 404.0,121.0 404.3,121.3 404.7,121.9 405.1,122.1 405.5,123.0 405.8,123.1 406.2,122.8 406.6,122.2 407.0,121.5 407.4,121.8 407.7,113.3 408.1,117.7 408.5,117.6 408.9,120.9 409.2,121.0 409.6,124.8 410.0,123.1 410.4,119.9 410.7,120.5 411.1,120.1 411.5,118.9 411.9,119.1 412.2,120.8 412.6,122.3 413.0,120.4 413.4,122.6 413.8,122.7 414.1,121.9 414.5,124.5 414.9,120.1 415.3,121.2 415.6,123.8 416.0,125.8 416.4,128.4 416.8,127.5 417.1,124.9 417.5,128.0 417.9,130.3 418.3,131.2 418.7,129.8 419.0,129.6 419.4,128.2 419.8,128.2 420.2,130.2 420.5,130.3 420.9,130.4 421.3,121.0 421.7,117.3 422.0,132.0 422.4,128.2 422.8,128.8 423.2,131.6 423.5,131.1 423.9,131.9 424.3,132.6 424.7,133.5 425.1,130.7 425.4,130.8 425.8,136.6 426.2,135.9 426.6,141.2 426.9,138.5 427.3,139.3 427.7,143.7 428.1,143.9 428.4,139.6 428.8,138.1 429.2,143.7 429.6,143.6 430.0,140.3 430.3,142.0 430.7,140.4 431.1,134.7 431.5,136.5 431.8,136.5 432.2,138.6 432.6,139.4 433.0,138.8 433.3,138.5 433.7,139.3 434.1,139.7 434.5,140.4 434.8,139.8 435.2,138.8 435.6,138.7 436.0,139.9 436.4,138.9 436.7,134.5 437.1,133.6 437.5,130.7 437.9,130.8 438.2,131.5 438.6,130.6 439.0,128.7 439.4,126.8 439.7,130.0 440.1,128.2 440.5,128.0 440.9,128.8 441.3,129.1 441.6,131.1 442.0,128.5 442.4,131.3 442.8,127.2 443.1,126.7 443.5,128.8 443.9,130.5 444.3,131.1 444.6,132.9 445.0,133.6 445.4,133.9 445.8,135.9 446.2,133.8 446.5,132.7 446.9,136.8 447.3,138.2 447.7,136.5 448.0,137.5 448.4,138.4 448.8,139.1 449.2,139.2 449.5,139.2 449.9,140.1 450.3,138.3 450.7,135.6 451.0,135.8 451.4,137.6 451.8,141.4 452.2,143.2 452.6,137.9 452.9,132.5 453.3,146.4 453.7,142.5 454.1,142.7 454.4,146.0 454.8,148.8 455.2,152.6 455.6,152.6 455.9,148.0 456.3,146.4 456.7,152.3 457.1,150.1 457.5,149.7 457.8,145.7 458.2,143.7 458.6,153.3 459.0,157.5 459.3,157.8 459.7,156.9 460.1,156.6 460.5,160.5 460.8,157.6 461.2,161.4 461.6,159.4 462.0,156.4 462.3,156.0 462.7,156.2 463.1,157.4 463.5,157.2 463.9,158.8 464.2,162.1 464.6,161.2 465.0,165.3 465.4,165.4 465.7,164.7 466.1,167.7 466.5,171.5 466.9,172.9 467.2,173.1 467.6,170.8 468.0,170.8 468.0,173.8 467.6,175.1 467.2,176.2 466.9,174.9 466.5,174.2 466.1,172.4 465.7,170.1 465.4,167.7 465.0,165.8 464.6,166.3 464.2,164.0 463.9,162.6 463.5,161.0 463.1,159.1 462.7,159.4 462.3,158.8 462.0,160.4 461.6,161.7 461.2,162.9 460.8,163.4 460.5,162.6 460.1,161.4 459.7,160.8 459.3,160.1 459.0,159.8 458.6,159.2 458.2,155.9 457.8,154.5 457.5,151.5 457.1,154.4 456.7,154.9 456.3,152.5 455.9,152.7 455.6,152.7 455.2,152.7 454.8,152.7 454.4,150.0 454.1,147.7 453.7,147.1 453.3,151.4 452.9,149.4 452.6,148.1 452.2,146.9 451.8,144.9 451.4,143.0 451.0,138.1 450.7,140.1 450.3,141.0 449.9,141.5 449.5,142.2 449.2,142.8 448.8,142.5 448.4,139.5 448.0,138.9 447.7,138.8 447.3,138.9 446.9,140.0 446.5,139.6 446.2,137.8 445.8,139.2 445.4,137.2 445.0,139.0 444.6,138.1 444.3,134.7 443.9,132.1 443.5,132.2 443.1,131.2 442.8,132.2 442.4,132.6 442.0,132.5 441.6,131.3 441.3,131.8 440.9,131.7 440.5,131.7 440.1,131.6 439.7,131.7 439.4,131.2 439.0,133.8 438.6,132.7 438.2,134.8 437.9,134.8 437.5,136.0 437.1,137.2 436.7,139.5 436.4,140.3 436.0,140.9 435.6,142.6 435.2,141.1 434.8,141.9 434.5,141.2 434.1,141.5 433.7,143.3 433.3,142.9 433.0,140.0 432.6,140.7 432.2,141.0 431.8,139.8 431.5,139.4 431.1,142.1 430.7,143.7 430.3,143.3 430.0,144.5 429.6,145.6 429.2,146.0 428.8,144.4 428.4,146.8 428.1,146.8 427.7,144.8 427.3,146.7 426.9,146.9 426.6,144.9 426.2,144.1 425.8,138.7 425.4,137.6 425.1,136.5 424.7,135.0 424.3,135.5 423.9,133.3 423.5,131.9 423.2,132.9 422.8,132.3 422.4,133.9 422.0,137.3 421.7,137.4 421.3,134.1 420.9,135.3 420.5,134.2 420.2,130.9 419.8,130.9 419.4,130.5 419.0,131.2 418.7,133.9 418.3,133.2 417.9,132.6 417.5,132.8 417.1,130.6 416.8,131.4 416.4,129.8 416.0,129.1 415.6,128.0 415.3,126.6 414.9,125.3 414.5,125.1 414.1,125.3 413.8,125.0 413.4,124.3 413.0,123.6 412.6,123.8 412.2,124.1 411.9,121.3 411.5,121.7 411.1,123.0 410.7,122.0 410.4,124.8 410.0,125.0 409.6,125.5 409.2,125.5 408.9,121.3 408.5,122.0 408.1,121.4 407.7,123.9 407.4,124.7 407.0,124.1 406.6,123.4 406.2,123.7 405.8,125.0 405.5,124.8 405.1,124.8 404.7,125.3 404.3,123.2 404.0,123.4 403.6,128.5 403.2,128.3 402.8,129.4 402.5,129.2 402.1,130.5 401.7,131.2 401.3,130.9 400.9,131.4 400.6,131.2 400.2,129.8 399.8,126.5 399.4,123.4 399.1,122.5 398.7,120.0 398.3,124.1 397.9,130.9 397.6,130.9 397.2,132.5 396.8,131.1 396.4,134.7 396.0,135.4 395.7,137.1 395.3,143.1 394.9,142.5 394.5,141.7 394.2,139.8 393.8,137.9 393.4,139.5 393.0,134.8 392.7,135.5 392.3,135.5 391.9,130.3 391.5,129.5 391.2,129.4 390.8,129.4 390.4,128.3 390.0,126.9 389.6,126.9 389.3,124.0 388.9,124.5 388.5,126.9 388.1,128.7 387.8,128.2 387.4,127.8 387.0,128.3 386.6,126.7 386.3,126.8 385.9,127.5 385.5,125.3 385.1,126.5 384.7,127.3 384.4,127.8 384.0,128.4 383.6,137.3 383.2,149.6 382.9,165.9 382.5,165.3 382.1,161.9 381.7,162.5 381.4,162.4 381.0,156.4 380.6,157.7 380.2,158.3 379.9,157.8 379.5,157.9 379.1,156.5 378.7,159.8 378.3,160.8 378.0,161.6 377.6,162.8 377.2,164.6 376.8,166.0 376.5,165.0 376.1,163.2 375.7,162.5 375.3,158.8 375.0,159.0 374.6,152.9 374.2,151.5 373.8,152.0 373.4,152.2 373.1,152.9 372.7,152.3 372.3,151.0 371.9,153.6 371.6,152.4 371.2,154.5 370.8,155.4 370.4,156.2 370.1,156.7 369.7,156.3 369.3,156.9 368.9,157.7 368.5,163.0 368.2,163.7 367.8,164.2 367.4,164.8 367.0,164.6 366.7,164.1 366.3,164.5 365.9,164.1 365.5,162.4 365.2,156.8 364.8,155.4 364.4,155.8 364.0,156.3 363.7,156.3 363.3,155.7 362.9,156.6 362.5,156.5 362.1,156.4 361.8,152.5 361.4,153.4 361.0,152.2 360.6,149.0 360.3,148.6 359.9,151.9 359.5,149.9 359.1,149.6 358.8,151.4 358.4,152.0 358.0,154.4 357.6,153.5 357.2,154.6 356.9,152.8 356.5,150.3 356.1,151.2 355.7,148.7 355.4,151.0 355.0,153.0 354.2,149.9 353.9,147.1 353.5,147.8 353.1,150.0 352.7,151.7 352.4,152.3 352.0,150.9 351.6,148.8 351.2,146.8 350.8,145.8 350.5,145.4 350.1,144.0 349.7,144.6 349.3,141.2 349.0,135.7 348.6,142.1 348.2,141.6 347.8,141.6 347.5,139.8 347.1,138.1 346.7,138.7 345.9,141.6 345.6,142.5 345.2,143.4 344.8,143.4 344.4,137.8 344.1,138.4 343.7,138.6 343.3,138.5 342.9,136.5 342.6,139.2 342.2,142.9 341.8,143.5 341.4,143.3 341.1,142.6 340.7,144.2 340.3,146.5 339.9,151.2 339.5,150.0 339.2,149.6 338.8,149.8 338.4,151.8 338.0,148.3 337.7,149.0 337.3,148.2 336.9,147.1 336.5,147.1 336.2,145.5 335.8,145.2 335.4,145.4 335.0,145.3 334.6,142.5 334.3,144.2 333.9,143.6 333.5,145.7 333.1,146.2 332.8,146.3 332.4,144.7 332.0,144.5 331.6,144.7 331.3,141.2 330.9,141.4 330.5,142.3 330.1,143.1 329.7,142.7 329.4,140.0 329.0,141.0 328.6,140.0 328.2,140.1 327.9,140.7 327.5,141.0 327.1,140.6 326.7,138.2 326.4,137.1 326.0,137.2 325.6,135.8 325.2,134.8 324.9,134.7 324.5,136.6 324.1,136.9 323.7,135.0 323.3,139.0 323.0,139.6 322.6,140.5 322.2,140.2 321.8,138.2 321.5,139.2 321.1,139.3 320.7,140.3 320.3,138.9 320.0,134.4 319.6,134.7 319.2,132.6 318.8,132.0 318.4,130.4 318.1,125.1 317.7,122.4 317.3,118.7 316.9,118.0 316.6,116.2 316.2,116.2 315.8,116.8 315.4,116.7 315.1,117.2 314.7,115.9 314.3,114.2 313.9,113.1 313.6,113.5 313.2,113.3 312.8,111.1 312.4,110.5 312.0,110.2 311.7,108.5 311.3,116.2 310.9,116.1 310.5,111.2 310.2,108.4 309.8,106.2 309.4,106.1 309.0,106.9 308.7,106.7 308.3,108.6 307.9,108.9 307.5,108.9 307.1,109.6 306.8,112.5 306.4,112.3 306.0,114.0 305.6,114.7 305.3,106.3 304.9,107.4 304.5,108.9 304.1,105.8 303.8,107.9 303.4,106.6 303.0,107.4 302.6,106.5 302.2,106.6 301.9,105.8 301.5,104.3 301.1,101.6 300.7,99.6 300.4,95.3 300.0,95.5 299.6,93.4 299.2,94.7 298.9,96.4 298.5,97.1 298.1,97.5 297.7,96.2 297.4,96.7 297.0,93.0 296.6,92.2 296.2,93.0 295.8,93.0 295.5,93.1 295.1,93.9 294.7,93.7 294.3,94.4 294.0,90.9 293.6,92.6 293.2,91.9 292.8,86.4 292.5,94.5 292.1,95.0 291.7,96.6 291.3,95.4 290.9,96.5 290.6,95.8 290.2,94.6 289.8,99.9 289.4,99.6 289.1,100.7 288.7,101.8 288.3,101.9 287.9,100.7 287.6,99.5 287.2,99.7 286.8,96.7 286.4,97.0 286.1,101.3 285.7,101.1 285.3,102.7 284.9,102.0 284.5,102.7 284.2,104.7 283.8,104.7 283.4,103.5 283.0,100.5 282.7,100.2 282.3,101.6 281.9,99.8 281.5,98.8 281.2,94.3 280.8,92.2 280.4,92.0 280.0,91.2 279.6,94.5 279.3,95.9 278.9,96.7 278.5,104.3 278.1,105.2 277.8,103.1 277.4,100.3 277.0,99.4 276.6,100.0 276.3,99.2 275.9,99.2 275.5,97.4 275.1,98.0 274.7,97.3 274.4,95.9 274.0,97.9 273.6,104.8 273.2,102.3 272.9,104.7 272.5,104.2 272.1,103.1 271.7,97.7 271.4,98.0 271.0,97.3 270.6,97.5 270.2,99.7 269.9,98.0 269.5,95.5 269.1,92.7 268.7,92.2 268.3,93.2 268.0,92.8 267.6,93.1 267.2,92.1 266.8,92.3 266.5,93.6 266.1,93.9 265.7,94.0 265.3,92.3 265.0,90.8 264.6,91.4 264.2,92.7 263.8,92.9 263.4,93.0 263.1,92.7 262.7,93.2 262.3,91.1 261.9,87.7 261.6,88.3 261.2,88.4 260.8,89.4 260.4,91.5 260.1,88.9 259.7,87.7 259.3,87.8 258.9,88.9 258.6,88.0 258.2,87.7 257.8,90.3 257.4,89.8 257.0,90.9 256.7,92.0 256.3,88.6 255.9,88.2 255.5,88.1 255.2,88.2 254.8,86.5 254.4,86.5 254.0,81.6 253.7,79.4 253.3,79.7 252.9,81.6 252.5,85.3 252.1,86.9 251.8,87.4 251.4,86.3 251.0,86.6 250.6,89.3 250.3,91.4 249.9,89.0 249.5,88.2 249.1,84.6 248.8,84.8 248.4,81.3 248.0,81.0 247.6,81.0 247.3,79.8 246.9,78.9 246.5,77.4 246.1,73.1 245.7,71.5 245.4,70.4 245.0,71.8 244.6,71.7 244.2,70.3 243.9,71.3 243.5,71.8 243.1,73.1 242.7,75.7 242.4,76.1 242.0,79.4 241.6,80.2 241.2,80.5 240.8,76.8 240.5,76.8 240.1,76.3 239.7,75.2 239.3,70.9 239.0,67.6 238.6,64.8 238.2,65.8 237.8,64.1 237.5,65.0 237.1,65.5 236.7,62.4 236.3,69.3 235.9,70.4 235.6,72.0 235.2,69.6 234.8,68.0 234.4,65.6 234.1,64.6 233.7,65.7 233.3,65.7 232.9,62.1 232.6,63.8 232.2,64.1 231.8,63.6 231.4,62.2 231.1,61.9 230.7,63.4 230.3,63.0 229.9,63.1 229.5,64.2 229.2,67.2 228.8,67.4 228.4,66.8 228.0,67.1 227.7,64.9 227.3,63.7 226.9,63.0 226.5,60.6 226.2,60.2 225.8,58.6 225.4,59.0 225.0,58.8 224.6,58.1 224.3,58.5 223.9,58.7 223.5,58.4 223.1,58.7 222.8,54.6 222.4,65.5 222.0,63.5 221.6,64.3 221.3,63.6 220.9,62.7 220.5,63.6 220.1,61.0 219.8,61.5 219.4,62.2 219.0,61.0 218.6,59.7 218.2,58.7 217.9,59.9 217.5,60.6 217.1,61.1 216.7,63.2 216.4,63.3 216.0,64.2 215.6,62.7 215.2,62.4 214.9,61.6 214.5,59.3 214.1,58.4 213.7,59.3 213.3,59.7 213.0,62.6 212.6,60.9 212.2,61.3 211.8,61.8 211.5,62.9 211.1,65.1 210.7,62.6 210.3,62.5 210.0,57.9 209.6,56.5 209.2,55.7 208.8,54.5 208.4,57.6 208.1,57.3 207.7,58.5 207.3,56.4 206.9,52.5 206.6,53.7 206.2,53.0 205.8,52.2 205.4,58.1 205.1,59.4 204.7,60.7 204.3,61.6 203.9,62.0 203.6,61.4 203.2,59.4 202.8,60.8 202.4,60.8 202.0,62.1 201.7,61.3 201.3,64.1 200.9,64.2 200.5,63.3 200.2,61.2 199.8,62.2 199.4,58.4 199.0,63.7 198.7,63.5 198.3,63.9 197.9,63.8 197.5,61.8 197.1,61.0 196.8,58.6 196.4,61.6 196.0,61.1 195.6,50.9 195.3,51.1 194.9,48.2 194.5,46.8 194.1,44.9 193.8,45.5 193.4,45.4 193.0,44.5 192.6,46.3 192.3,44.0 191.9,45.6 191.5,49.4 191.1,48.7 190.7,47.9 190.4,60.9 190.0,60.4 189.6,62.3 189.2,61.6 188.9,61.4 188.5,60.4 188.1,60.6 187.7,61.6 187.4,60.8 187.0,61.9 186.6,63.3 186.2,62.6 185.8,62.7 185.5,61.9 185.1,62.3 184.7,61.6 184.3,62.3 184.0,62.9 183.6,62.7 183.2,63.7 182.8,60.6 182.5,57.5 182.1,57.4 181.7,58.5 181.3,58.7 180.9,58.4 180.6,58.8 180.2,59.3 179.8,56.6 179.4,58.6 179.1,60.5 178.7,62.4 178.3,60.9 177.9,59.8 177.6,61.5 177.2,62.9 176.8,61.3 176.4,59.9 176.1,58.5 175.7,58.4 175.3,55.8 174.9,56.3 174.5,56.3 174.2,55.8 173.8,55.5 173.4,53.0 173.0,53.7 172.7,52.8 172.3,50.3 171.9,59.9 171.5,60.6 171.2,70.2 170.8,71.5 170.4,72.4 170.0,73.5 169.6,79.6 169.3,79.5 168.9,77.7 168.5,74.8 168.1,74.9 167.8,75.1 167.4,77.6 167.0,78.2 166.6,74.7 166.3,74.9 165.9,72.8 165.5,72.2 165.1,69.9 164.8,68.6 164.4,68.7 164.0,68.1 163.6,70.3 163.2,70.3 162.9,70.0 162.5,71.1 162.1,69.8 161.7,77.6 161.4,78.9 161.0,78.0 160.6,79.0 160.2,80.8 159.9,88.4 159.5,90.7 159.1,96.3 158.7,99.7 158.3,100.2 158.0,100.8 157.6,100.3 157.2,101.5 156.8,103.8 156.5,104.5 156.1,107.1 155.7,107.4 155.3,109.5 155.0,109.2 154.6,109.3 154.2,109.6 153.8,107.1 153.5,108.2 153.1,108.2 152.7,106.1 152.3,106.5 151.9,105.0 151.6,104.6 151.2,105.6 150.8,108.9 150.4,109.7 150.1,107.9 149.7,108.3 149.3,105.8 148.9,105.3 148.6,105.5 148.2,100.7 147.8,101.4 147.4,107.3 147.0,106.8 146.7,104.8 146.3,103.6 145.9,104.1 145.5,98.9 145.2,100.4 144.8,99.3 144.4,97.4 144.0,99.5 143.7,102.1 143.3,101.5 142.9,101.9 142.5,101.4 142.1,102.5 141.8,101.4 141.4,101.2 141.0,104.5 140.6,102.0 140.3,102.8 139.9,100.8 139.5,101.0 139.1,101.4 138.8,101.2 138.4,102.9 138.0,101.7 137.6,103.0 137.3,102.2 136.9,102.7 136.5,102.1 136.1,100.7 135.7,100.3 135.4,100.4 135.0,102.3 134.6,104.2 134.2,104.9 133.9,103.7 133.5,103.3 133.1,101.9 132.7,105.2 132.4,105.7 132.0,105.5 131.6,106.7 131.2,106.9 130.8,106.4 130.5,106.7 130.1,106.8 129.7,105.8 129.3,105.5 129.0,108.5 128.6,109.0 128.2,109.4 127.8,111.1 127.5,112.1 127.1,112.8 126.7,114.3 126.3,114.4 126.0,112.0 125.6,114.0 125.2,117.6 124.8,117.6 124.4,120.8 124.1,120.3 123.7,119.6 123.3,119.4 122.9,119.0 122.6,117.1 122.2,117.5 121.8,116.5 121.4,116.9 121.1,110.8 120.7,111.7 120.3,111.5 119.9,111.2 119.5,112.5 119.2,110.5 118.8,110.3 118.4,110.4 118.0,110.2 117.7,114.2 117.3,112.4 116.9,112.1 116.5,110.2 116.2,108.4 115.8,107.4 115.4,107.5 115.0,107.4 114.6,105.1 114.3,105.8 113.9,107.8 113.5,107.5 113.1,108.1 112.8,105.7 112.4,107.9 112.0,114.9 111.6,114.9 111.3,116.6 110.9,117.7 110.5,117.5 110.1,118.3 109.8,117.7 109.4,116.8 109.0,116.4 108.6,113.1 108.2,112.6 107.9,114.0 107.5,120.2 107.1,121.1 106.7,120.1 106.4,123.6 106.0,123.5 105.6,122.0 105.2,118.4 104.9,117.1 104.5,116.0 104.1,113.9 103.7,113.0 103.3,109.3 103.0,108.4 102.6,107.0 102.2,103.8 101.8,104.6 101.5,102.5 101.1,98.6 100.7,100.9 100.3,101.6 100.0,102.5 99.6,101.6 99.2,102.3 98.8,102.4 98.5,100.0 98.1,100.3 97.7,100.6 97.3,101.4 96.9,101.0 96.6,103.0 96.2,104.7 95.8,104.9 95.4,106.8 95.1,106.1 94.7,102.3 94.3,100.9 93.9,99.9 93.6,99.2 93.2,98.6 92.8,97.1 92.4,96.8 92.0,95.0 91.7,95.3 91.3,94.7 90.9,94.7 90.5,94.5 90.2,92.8 89.8,94.1 89.4,93.4 89.0,90.8 88.7,90.4 88.3,85.7 87.9,86.3 87.5,86.4 87.2,84.1 86.8,82.9 86.4,83.1 86.0,84.7 85.6,86.4 85.3,86.9 84.9,87.7 84.5,87.9 84.1,88.7 83.8,89.7 83.4,93.9 83.0,93.9 82.6,94.8 82.3,97.3 81.9,96.6 81.5,96.3 81.1,95.0 80.7,92.7 80.4,92.5 80.0,92.4 79.6,92.4 79.2,91.8 78.9,89.2 78.5,89.3 78.1,86.6 77.7,85.4 77.4,84.9 77.0,84.2 76.6,83.5 76.2,81.1 75.8,81.4 75.5,79.6 75.1,74.9 74.7,78.4 74.3,76.9 74.0,78.9 73.6,84.0 73.2,84.1 72.8,85.7 72.5,83.5 72.1,88.8 71.7,100.4 71.3,100.2 71.0,100.5 70.6,100.9 70.2,102.2 69.8,104.1 69.4,101.4 69.1,102.3 68.7,98.8 68.3,99.4 67.9,96.9 67.6,94.1 67.2,94.6 66.8,94.8 66.4,94.9 66.1,95.6 65.7,92.5 65.3,95.1 64.9,95.1 64.5,96.2 64.2,93.9 63.8,92.7 63.4,94.7 63.0,94.7 62.7,93.4 62.3,94.8 61.9,95.3 61.5,94.4 61.2,93.7 60.8,94.1 60.4,96.2 60.0,96.9 59.7,98.1 59.3,95.3 58.9,98.3 58.5,99.1 58.1,98.4 57.8,98.9 57.4,97.6 57.0,100.2 56.6,101.0 56.3,101.0 55.9,97.4 55.5,94.3 55.1,95.2 54.8,97.5 54.4,97.4 54.0,95.3"/><polygon class="fB band" points="54.0,94.6 54.4,94.0 54.8,89.0 55.1,88.4 55.5,92.9 55.9,91.8 56.3,94.7 56.6,97.4 57.0,93.8 57.4,95.0 57.8,95.4 58.1,94.6 58.5,93.5 58.9,90.6 59.3,90.4 59.7,92.4 60.0,91.0 60.4,87.5 60.8,83.7 61.2,87.2 61.5,88.0 61.9,90.5 62.3,88.7 62.7,88.0 63.0,88.6 63.4,86.7 63.8,87.3 64.2,87.3 64.5,89.3 64.9,86.3 65.3,84.9 65.7,87.5 66.1,88.0 66.4,88.0 66.8,90.1 67.2,90.3 67.6,90.3 67.9,88.9 68.3,91.1 68.7,94.0 69.1,93.8 69.4,93.8 69.8,92.4 70.2,90.6 70.6,90.2 71.0,88.4 71.3,90.2 71.7,81.8 72.1,78.1 72.5,75.8 72.8,81.4 73.2,80.2 73.6,74.5 74.0,76.7 74.3,76.4 74.7,72.1 75.1,73.7 75.5,76.4 75.8,80.0 76.2,81.0 76.6,82.3 77.0,85.8 77.4,85.8 77.7,85.5 78.1,87.4 78.5,88.6 78.9,93.5 79.2,93.1 79.6,93.7 80.0,91.9 80.4,93.7 80.7,94.4 81.1,94.7 81.5,99.1 81.9,96.8 82.3,98.7 82.6,98.6 83.0,96.3 83.4,95.4 83.8,94.2 84.1,93.1 84.5,94.0 84.9,90.2 85.3,90.9 85.6,86.6 86.0,88.2 86.4,89.6 86.8,89.1 87.2,90.2 87.5,90.2 87.9,87.7 88.3,92.1 88.7,90.9 89.0,95.6 89.4,97.3 89.8,100.3 90.2,101.2 90.5,100.5 90.9,100.9 91.3,97.4 91.7,95.7 92.0,98.8 92.4,94.1 92.8,100.5 93.2,96.3 93.6,101.1 93.9,103.0 94.3,104.1 94.7,102.7 95.1,106.3 95.4,107.3 95.8,106.1 96.2,106.2 96.6,104.1 96.9,102.5 97.3,104.0 97.7,103.9 98.1,102.1 98.5,104.2 98.8,105.5 99.2,108.0 99.6,108.0 100.0,108.9 100.3,108.5 100.7,108.9 101.1,107.5 101.5,109.1 101.8,113.7 102.2,115.4 102.6,111.1 103.0,116.0 103.3,119.6 103.7,120.1 104.1,120.7 104.5,120.4 104.9,121.7 105.2,122.0 105.6,123.5 106.0,128.2 106.4,121.7 106.7,120.6 107.1,124.0 107.5,117.3 107.9,116.7 108.2,112.5 108.6,117.8 109.0,117.9 109.4,122.8 109.8,123.5 110.1,123.6 110.5,123.0 110.9,122.3 111.3,118.2 111.6,119.8 112.0,113.7 112.4,113.1 112.8,111.7 113.1,104.3 113.5,111.7 113.9,110.8 114.3,110.1 114.6,109.4 115.0,109.5 115.4,109.2 115.8,108.2 116.2,111.1 116.5,112.2 116.9,115.0 117.3,116.7 117.7,111.2 118.0,111.5 118.4,111.4 118.8,111.4 119.2,113.9 119.5,113.9 119.9,113.9 120.3,113.4 120.7,113.1 121.1,116.5 121.4,116.1 121.8,119.0 122.2,119.1 122.6,120.3 122.9,120.3 123.3,120.0 123.7,122.3 124.1,122.4 124.4,119.1 124.8,119.2 125.2,118.0 125.6,117.9 126.0,117.4 126.3,117.7 126.7,123.6 127.1,123.6 127.5,123.5 127.8,122.6 128.2,121.3 128.6,121.0 129.0,114.8 129.3,120.4 129.7,118.5 130.1,117.4 130.5,120.4 130.8,120.0 131.2,121.3 131.6,119.5 132.0,120.0 132.4,122.8 132.7,125.0 133.1,124.8 133.5,124.7 133.9,124.0 134.2,127.4 134.6,127.1 135.0,124.2 135.4,122.8 135.7,122.8 136.1,124.6 136.5,125.1 136.9,128.4 137.3,128.1 137.6,130.3 138.0,127.3 138.4,128.9 138.8,128.0 139.1,128.2 139.5,128.1 139.9,126.6 140.3,129.2 140.6,130.1 141.0,129.0 141.4,127.6 141.8,127.3 142.1,128.3 142.5,128.5 142.9,128.4 143.3,131.0 143.7,128.1 144.0,125.6 144.4,125.6 144.8,125.2 145.2,125.7 145.5,124.5 145.9,125.3 146.3,130.0 146.7,129.9 147.0,129.6 147.4,125.0 147.8,123.3 148.2,126.5 148.6,126.3 148.9,127.6 149.3,128.5 149.7,129.5 150.1,130.1 150.4,130.1 150.8,124.3 151.2,119.9 151.6,121.2 151.9,121.8 152.3,124.4 152.7,125.5 153.1,124.5 153.5,122.3 153.8,121.4 154.2,122.2 154.6,124.5 155.0,124.3 155.3,116.0 155.7,116.2 156.1,116.2 156.5,114.7 156.8,110.0 157.2,107.7 157.6,105.6 158.0,104.8 158.3,104.2 158.7,102.4 159.1,96.5 159.5,90.0 159.9,84.6 160.2,79.4 160.6,78.8 161.0,79.5 161.4,80.2 161.7,71.7 162.1,71.2 162.5,68.0 162.9,58.2 163.2,58.3 163.6,62.2 164.0,62.3 164.4,61.9 164.8,63.2 165.1,63.1 165.5,64.5 165.9,66.3 166.3,65.6 166.6,65.8 167.0,64.4 167.4,65.2 167.8,65.0 168.1,66.2 168.5,62.7 168.9,68.1 169.3,70.1 169.6,66.8 170.0,61.9 170.4,63.1 170.8,60.4 171.2,51.7 171.5,53.2 171.9,39.2 172.3,37.9 172.7,41.6 173.0,42.7 173.4,44.4 173.8,45.1 174.2,46.8 174.5,46.0 174.9,44.6 175.3,45.6 175.7,45.3 176.1,50.2 176.4,33.6 176.8,46.8 177.2,47.5 177.6,42.8 177.9,47.3 178.3,48.7 178.7,48.0 179.1,44.1 179.4,40.4 179.8,40.1 180.2,42.2 180.6,43.0 180.9,45.3 181.3,43.9 181.7,43.8 182.1,41.4 182.5,41.7 182.8,43.3 183.2,44.1 183.6,45.9 184.0,44.4 184.3,43.0 184.7,42.2 185.1,41.3 185.5,44.2 185.8,43.1 186.2,43.2 186.6,45.2 187.0,43.2 187.4,43.2 187.7,43.0 188.1,43.2 188.5,41.6 188.9,42.7 189.2,44.7 189.6,43.9 190.0,42.6 190.4,28.5 190.7,20.9 191.1,31.0 191.5,29.2 191.9,26.2 192.3,24.3 192.6,25.3 193.0,24.6 193.4,25.7 193.8,26.4 194.1,24.3 194.5,24.4 194.9,23.7 195.3,29.6 195.6,31.4 196.0,30.8 196.4,26.8 196.8,28.6 197.1,29.8 197.5,32.2 197.9,36.6 198.3,36.2 198.7,34.8 199.0,36.7 199.4,38.1 199.8,38.0 200.2,37.8 200.5,39.2 200.9,40.8 201.3,39.2 201.7,36.3 202.0,39.9 202.4,39.5 202.8,38.6 203.2,40.5 203.6,40.7 203.9,44.2 204.3,46.2 204.7,43.3 205.1,43.3 205.4,41.6 205.8,41.4 206.2,42.4 206.6,39.5 206.9,39.1 207.3,40.3 207.7,41.6 208.1,42.1 208.4,38.7 208.8,38.2 209.2,36.2 209.6,38.8 210.0,40.0 210.3,40.8 210.7,43.4 211.1,44.2 211.5,42.8 211.8,41.2 212.2,40.9 212.6,43.0 213.0,39.8 213.3,39.2 213.7,40.2 214.1,42.2 214.5,42.7 214.9,43.9 215.2,46.7 215.6,46.0 216.0,46.9 216.4,46.6 216.7,44.8 217.1,39.8 217.5,39.5 217.9,42.3 218.2,42.4 218.6,39.2 219.0,43.9 219.4,41.4 219.8,41.7 220.1,44.4 220.5,46.1 220.9,48.2 221.3,47.8 221.6,45.7 222.0,45.9 222.4,32.5 222.8,29.1 223.1,29.0 223.5,34.4 223.9,36.9 224.3,37.6 224.6,37.2 225.0,37.9 225.4,37.0 225.8,39.0 226.2,36.9 226.5,41.0 226.9,40.5 227.3,41.3 227.7,45.0 228.0,44.7 228.4,44.4 228.8,45.9 229.2,44.5 229.5,43.2 229.9,42.1 230.3,41.9 230.7,41.0 231.1,39.5 231.4,34.8 231.8,31.4 232.2,36.0 232.6,34.9 232.9,32.7 233.3,33.4 233.7,34.4 234.1,33.5 234.4,30.2 234.8,37.9 235.2,37.8 235.6,38.6 235.9,42.7 236.3,41.6 236.7,41.2 237.1,41.6 237.5,40.8 237.8,42.0 238.2,41.5 238.6,43.3 239.0,40.2 239.3,41.8 239.7,46.6 240.1,51.0 240.5,50.9 240.8,54.5 241.2,54.1 241.6,58.6 242.0,55.9 242.4,55.3 242.7,51.4 243.1,50.2 243.5,53.2 243.9,52.8 244.2,51.5 244.6,50.5 245.0,51.9 245.4,52.9 245.7,50.7 246.1,53.1 246.5,57.2 246.9,58.2 247.3,60.2 247.6,63.1 248.0,64.6 248.4,65.4 248.8,67.6 249.1,72.7 249.5,75.1 249.9,78.8 250.3,79.5 250.6,80.8 251.0,81.0 251.4,76.5 251.8,78.0 252.1,78.7 252.5,75.5 252.9,75.5 253.3,73.8 253.7,73.9 254.0,74.1 254.4,76.0 254.8,79.6 255.2,78.1 255.5,80.8 255.9,80.8 256.3,76.5 256.7,88.0 257.0,84.5 257.4,89.6 257.8,83.9 258.2,83.2 258.6,88.5 258.9,88.3 259.3,89.6 259.7,89.6 260.1,90.1 260.4,92.9 260.8,91.9 261.2,92.0 261.6,87.4 261.9,86.3 262.3,87.7 262.7,89.6 263.1,91.1 263.4,90.3 263.8,88.5 264.2,91.3 264.6,90.0 265.0,89.9 265.3,90.2 265.7,93.2 266.1,91.6 266.5,91.3 266.8,92.6 267.2,86.8 267.6,93.2 268.0,91.5 268.3,92.0 268.7,92.3 269.1,91.3 269.5,92.8 269.9,96.2 270.2,88.0 270.6,79.1 271.0,78.5 271.4,86.1 271.7,86.4 272.1,87.1 272.5,94.5 272.9,92.7 273.2,94.9 273.6,87.9 274.0,81.2 274.4,78.1 274.7,77.6 275.1,84.0 275.5,81.2 275.9,82.4 276.3,87.9 276.6,84.6 277.0,89.0 277.4,88.3 277.8,89.3 278.1,93.5 278.5,89.9 278.9,90.5 279.3,83.8 279.6,82.9 280.0,78.4 280.4,78.7 280.8,81.0 281.2,83.3 281.5,85.5 281.9,90.1 282.3,89.8 282.7,91.2 283.0,89.9 283.4,90.8 283.8,92.7 284.2,95.2 284.5,93.6 284.9,93.3 285.3,94.6 285.7,92.7 286.1,92.5 286.4,92.9 286.8,92.3 287.2,92.9 287.6,96.3 287.9,96.3 288.3,101.1 288.7,97.7 289.1,98.0 289.4,97.1 289.8,92.2 290.2,93.0 290.6,91.4 290.9,91.8 291.3,90.1 291.7,92.0 292.1,91.1 292.5,87.9 292.8,88.5 293.2,87.0 293.6,93.2 294.0,93.4 294.3,94.8 294.7,96.0 295.1,97.4 295.5,96.3 295.8,99.7 296.2,100.4 296.6,103.4 297.0,104.0 297.4,103.9 297.7,104.9 298.1,104.2 298.5,105.9 298.9,103.2 299.2,99.3 299.6,99.1 300.0,100.6 300.4,107.1 300.7,104.7 301.1,103.8 301.5,105.6 301.9,109.8 302.2,115.9 302.6,118.3 303.0,117.9 303.4,118.5 303.8,118.0 304.1,115.5 304.5,120.0 304.9,119.3 305.3,118.6 305.6,116.0 306.0,124.7 306.4,124.2 306.8,121.5 307.1,119.6 307.5,119.2 307.9,122.4 308.3,120.9 308.7,120.7 309.0,121.1 309.4,117.7 309.8,116.2 310.2,116.3 310.5,116.0 310.9,125.8 311.3,116.9 311.7,118.0 312.0,115.9 312.4,123.0 312.8,123.8 313.2,125.0 313.6,131.9 313.9,127.2 314.3,127.2 314.7,128.9 315.1,128.8 315.4,136.7 315.8,133.7 316.2,131.0 316.6,132.4 316.9,130.7 317.3,129.6 317.7,125.4 318.1,136.1 318.4,139.2 318.8,137.2 319.2,142.2 319.6,142.8 320.0,144.6 320.3,144.7 320.7,142.1 321.1,144.6 321.5,144.2 321.8,145.4 322.2,147.3 322.6,148.5 323.0,148.6 323.3,144.8 323.7,144.3 324.1,143.7 324.5,142.8 324.9,141.7 325.2,136.2 325.6,142.7 326.0,143.4 326.4,144.9 326.7,144.0 327.1,144.1 327.5,149.2 327.9,148.5 328.2,148.0 328.6,146.8 329.0,147.1 329.4,147.9 329.7,147.1 330.1,149.9 330.5,151.3 330.9,150.4 331.3,150.5 331.6,150.5 332.0,144.7 332.4,147.2 332.8,148.2 333.1,153.3 333.5,151.7 333.9,147.5 334.3,147.8 334.6,147.2 335.0,148.6 335.4,150.7 335.8,150.6 336.2,148.5 336.5,148.5 336.9,154.9 337.3,154.0 337.7,153.3 338.0,151.0 338.4,156.3 338.8,156.2 339.2,156.2 339.5,157.9 339.9,154.4 340.3,154.1 340.7,152.1 341.1,151.1 341.4,153.3 341.8,152.7 342.2,150.3 342.6,147.0 342.9,143.3 343.3,143.4 343.7,145.6 344.1,141.6 344.4,144.3 344.8,146.4 345.2,148.6 345.6,148.5 345.9,145.6 346.7,138.1 347.1,140.2 347.5,143.4 347.8,145.1 348.2,149.0 348.6,135.3 349.0,144.2 349.3,143.5 349.7,149.6 350.1,153.2 350.5,153.4 350.8,154.7 351.2,158.4 351.6,158.5 352.0,159.4 352.4,159.0 352.7,159.4 353.1,161.0 353.5,159.7 353.9,160.7 354.2,156.4 355.0,163.4 355.4,158.5 355.7,160.9 356.1,163.1 356.5,167.4 356.9,166.3 357.2,165.9 357.6,166.0 358.0,166.2 358.4,165.8 358.8,162.9 359.1,161.3 359.5,164.4 359.9,164.6 360.3,164.1 360.6,163.5 361.0,159.9 361.4,167.5 361.8,167.8 362.1,168.5 362.5,173.2 362.9,175.4 363.3,176.0 363.7,174.9 364.0,176.9 364.4,170.1 364.8,170.8 365.2,175.1 365.5,173.7 365.9,180.4 366.3,178.3 366.7,179.4 367.0,182.0 367.4,182.8 367.8,185.6 368.2,182.6 368.5,184.0 368.9,185.0 369.3,186.3 369.7,186.8 370.1,185.9 370.4,189.5 370.8,189.8 371.2,186.4 371.6,186.3 371.9,184.5 372.3,183.7 372.7,183.0 373.1,184.8 373.4,184.9 373.8,181.1 374.2,182.4 374.6,182.2 375.0,185.8 375.3,188.7 375.7,189.9 376.1,193.2 376.5,191.6 376.8,191.0 377.2,192.7 377.6,189.6 378.0,190.3 378.3,190.8 378.7,187.6 379.1,187.4 379.5,185.9 379.9,183.2 380.2,188.0 380.6,186.3 381.0,184.3 381.4,184.1 381.7,188.9 382.1,188.1 382.5,191.5 382.9,197.0 383.2,163.3 383.6,147.7 384.0,148.7 384.4,157.6 384.7,157.0 385.1,154.5 385.5,155.3 385.9,155.4 386.3,154.5 386.6,155.8 387.0,158.9 387.4,159.2 387.8,158.9 388.1,158.1 388.5,153.9 388.9,153.8 389.3,154.4 389.6,154.7 390.0,137.2 390.4,147.8 390.8,155.9 391.2,156.6 391.5,156.2 391.9,158.5 392.3,159.5 392.7,160.0 393.0,161.6 393.4,160.7 393.8,162.2 394.2,163.3 394.5,167.0 394.9,166.4 395.3,164.0 395.7,158.9 396.0,152.8 396.4,154.3 396.8,151.6 397.2,153.2 397.6,154.8 397.9,147.9 398.3,142.1 398.7,141.5 399.1,144.1 399.4,147.7 399.8,147.0 400.2,147.9 400.6,151.4 400.9,150.9 401.3,153.3 401.7,150.6 402.1,149.3 402.5,147.2 402.8,136.9 403.2,131.7 403.6,137.0 404.0,134.1 404.3,134.5 404.7,134.3 405.1,134.6 405.5,135.4 405.8,135.2 406.2,134.9 406.6,134.4 407.0,134.7 407.4,136.6 407.7,136.8 408.1,136.7 408.5,134.1 408.9,132.5 409.2,133.2 409.6,138.2 410.0,136.5 410.4,135.1 410.7,135.6 411.1,135.5 411.5,134.9 411.9,135.4 412.2,138.4 412.6,139.4 413.0,137.2 413.4,140.3 413.8,143.1 414.1,142.3 414.5,145.1 414.9,141.3 415.3,142.4 415.6,144.0 416.0,145.3 416.4,151.3 416.8,151.4 417.1,149.9 417.5,150.8 417.9,152.6 418.3,153.7 418.7,155.3 419.0,155.2 419.4,153.7 419.8,153.7 420.2,153.3 420.5,153.8 420.9,154.8 421.3,145.4 421.7,141.7 422.0,152.0 422.4,145.9 422.8,146.8 423.2,142.1 423.5,136.4 423.9,145.3 424.3,144.9 424.7,145.3 425.1,145.4 425.4,146.6 425.8,148.4 426.2,147.5 426.6,149.8 426.9,152.3 427.3,155.5 427.7,155.2 428.1,155.5 428.4,152.6 428.8,151.0 429.2,156.9 429.6,156.9 430.0,153.5 430.3,155.3 430.7,155.1 431.1,150.8 431.5,153.1 431.8,153.1 432.2,155.6 432.6,149.8 433.0,146.2 433.3,150.7 433.7,136.6 434.1,138.1 434.5,139.6 434.8,140.2 435.2,140.3 435.6,140.2 436.0,142.8 436.4,141.8 436.7,133.2 437.1,131.6 437.5,126.0 437.9,126.3 438.2,129.1 438.6,128.3 439.0,128.6 439.4,129.1 439.7,131.3 440.1,129.5 440.5,129.3 440.9,129.9 441.3,133.4 441.6,134.1 442.0,131.5 442.4,134.7 442.8,130.7 443.1,130.2 443.5,133.0 443.9,133.4 444.3,135.0 444.6,133.8 445.0,134.1 445.4,134.3 445.8,136.5 446.2,134.4 446.5,133.4 446.9,137.3 447.3,138.6 447.7,136.8 448.0,137.8 448.4,138.1 448.8,138.6 449.2,136.8 449.5,136.8 449.9,138.4 450.3,136.6 450.7,134.0 451.0,135.1 451.4,137.7 451.8,141.9 452.2,135.4 452.6,130.8 452.9,125.4 453.3,141.1 453.7,141.5 454.1,141.5 454.4,143.3 454.8,145.5 455.2,146.3 455.6,145.5 455.9,143.3 456.3,143.2 456.7,145.9 457.1,143.7 457.5,143.3 457.8,137.1 458.2,135.1 458.6,144.5 459.0,147.0 459.3,147.3 459.7,145.9 460.1,146.4 460.5,150.0 460.8,147.6 461.2,153.8 461.6,151.9 462.0,148.8 462.3,148.5 462.7,149.7 463.1,152.2 463.5,152.3 463.9,154.9 464.2,159.2 464.6,158.3 465.0,163.2 465.4,163.3 465.7,165.6 466.1,168.1 466.5,169.4 466.9,170.3 467.2,168.1 467.6,167.3 468.0,167.5 468.0,169.7 467.6,169.5 467.2,171.2 466.9,170.6 466.5,171.7 466.1,170.4 465.7,170.5 465.4,168.6 465.0,163.8 464.6,164.0 464.2,161.3 463.9,158.5 463.5,157.0 463.1,153.4 462.7,152.7 462.3,152.2 462.0,152.9 461.6,154.2 461.2,153.9 460.8,153.9 460.5,152.5 460.1,150.6 459.7,150.6 459.3,149.8 459.0,149.3 458.6,148.9 458.2,146.0 457.8,145.9 457.5,145.1 457.1,148.0 456.7,148.5 456.3,146.1 455.9,146.4 455.6,147.4 455.2,148.7 454.8,148.0 454.4,146.6 454.1,145.0 453.7,142.3 453.3,142.8 452.9,142.2 452.6,140.9 452.2,146.9 451.8,144.9 451.4,143.5 451.0,138.5 450.7,138.5 450.3,139.4 449.9,139.9 449.5,140.4 449.2,140.4 448.8,140.2 448.4,139.0 448.0,138.6 447.7,139.1 447.3,139.2 446.9,140.3 446.5,140.0 446.2,138.4 445.8,139.8 445.4,137.7 445.0,139.4 444.6,138.7 444.3,135.7 443.9,136.5 443.5,136.5 443.1,135.5 442.8,135.7 442.4,135.8 442.0,135.5 441.6,134.3 441.3,134.8 440.9,134.3 440.5,131.0 440.1,132.9 439.7,133.1 439.4,131.8 439.0,132.8 438.6,130.3 438.2,132.5 437.9,132.4 437.5,136.1 437.1,138.4 436.7,142.6 436.4,143.2 436.0,143.9 435.6,145.0 435.2,142.6 434.8,143.4 434.5,146.5 434.1,146.9 433.7,153.8 433.3,153.4 433.0,153.0 432.6,158.4 432.2,157.7 431.8,156.8 431.5,154.9 431.1,157.0 430.7,158.0 430.3,157.8 430.0,158.1 429.6,158.8 429.2,159.2 428.8,157.6 428.4,159.7 428.1,158.8 427.7,156.2 427.3,158.1 426.9,157.4 426.6,153.3 426.2,152.7 425.8,150.3 425.4,149.4 425.1,147.6 424.7,146.8 424.3,147.3 423.9,147.0 423.5,144.3 423.2,151.9 422.8,151.4 422.4,155.1 422.0,160.5 421.7,160.8 421.3,158.5 420.9,159.7 420.5,158.8 420.2,157.0 419.8,157.1 419.4,156.1 419.0,156.8 418.7,159.5 418.3,159.2 417.9,155.5 417.5,155.6 417.1,154.0 416.8,156.5 416.4,152.4 416.0,151.8 415.6,148.5 415.3,147.9 414.9,146.5 414.5,145.7 414.1,145.9 413.8,145.4 413.4,143.2 413.0,140.8 412.6,140.9 412.2,141.2 411.9,138.7 411.5,137.7 411.1,138.3 410.7,136.8 410.4,138.2 410.0,138.4 409.6,138.9 409.2,138.9 408.9,135.6 408.5,139.8 408.1,139.1 407.7,138.2 407.4,137.8 407.0,137.4 406.6,135.6 406.2,135.9 405.8,136.6 405.5,136.9 405.1,136.9 404.7,136.5 404.3,135.9 404.0,137.8 403.6,145.2 403.2,142.4 402.8,155.6 402.5,153.9 402.1,153.2 401.7,154.5 401.3,153.5 400.9,153.8 400.6,153.1 400.2,151.7 399.8,148.8 399.4,147.7 399.1,148.2 398.7,146.7 398.3,151.5 397.9,157.1 397.6,156.8 397.2,157.1 396.8,155.8 396.4,162.3 396.0,163.2 395.7,165.0 395.3,171.0 394.9,169.3 394.5,168.5 394.2,167.1 393.8,165.3 393.4,166.4 393.0,161.8 392.7,163.6 392.3,163.8 391.9,159.9 391.5,159.4 391.2,157.9 390.8,157.4 390.4,156.2 390.0,158.0 389.6,158.1 389.3,155.6 388.9,156.1 388.5,159.8 388.1,161.6 387.8,160.1 387.4,159.5 387.0,160.1 386.6,159.1 386.3,156.8 385.9,157.3 385.5,156.8 385.1,158.0 384.7,158.8 384.4,159.4 384.0,160.0 383.6,170.5 383.2,182.8 382.9,199.1 382.5,198.8 382.1,191.6 381.7,188.9 381.4,188.9 381.0,187.6 380.6,189.1 380.2,189.6 379.9,190.7 379.5,190.7 379.1,189.3 378.7,192.6 378.3,193.7 378.0,192.7 377.6,193.3 377.2,195.0 376.8,196.5 376.5,195.5 376.1,194.3 375.7,193.6 375.3,191.4 375.0,191.6 374.6,186.5 374.2,185.0 373.8,186.9 373.4,187.4 373.1,187.9 372.7,187.9 372.3,186.7 371.9,189.3 371.6,188.0 371.2,190.5 370.8,191.5 370.4,192.2 370.1,191.4 369.7,189.0 369.3,188.8 368.9,188.0 368.5,188.6 368.2,187.4 367.8,186.9 367.4,187.5 367.0,183.9 366.7,183.3 366.3,182.0 365.9,181.5 365.5,180.7 365.2,176.8 364.8,175.2 364.4,177.6 364.0,178.6 363.7,178.5 363.3,177.6 362.9,178.6 362.5,176.0 362.1,174.2 361.8,170.3 361.4,171.2 361.0,168.0 360.6,165.3 360.3,165.2 359.9,168.5 359.5,166.6 359.1,165.6 358.8,166.9 358.4,168.0 358.0,170.5 357.6,169.3 357.2,170.6 356.9,168.7 356.5,168.0 356.1,168.3 355.7,164.5 355.4,166.9 355.0,168.9 354.2,165.9 353.9,161.6 353.5,162.0 353.1,163.0 352.7,163.8 352.4,163.7 352.0,163.2 351.6,161.5 351.2,160.0 350.8,159.9 350.5,156.7 350.1,154.0 349.7,154.5 349.3,150.7 349.0,145.6 348.6,149.4 348.2,149.0 347.8,149.0 347.5,147.1 347.1,144.0 346.7,146.8 345.9,149.2 345.6,149.7 345.2,150.6 344.8,150.6 344.4,146.9 344.1,147.3 343.7,147.5 343.3,147.2 342.9,148.5 342.6,151.2 342.2,154.9 341.8,155.5 341.4,155.3 341.1,153.7 340.7,154.8 340.3,157.1 339.9,161.8 339.5,160.6 339.2,158.6 338.8,157.4 338.4,159.4 338.0,156.9 337.7,156.7 337.3,156.2 336.9,155.3 336.5,155.3 336.2,153.4 335.8,152.1 335.4,152.3 335.0,151.4 334.6,150.1 334.3,152.0 333.9,152.8 333.5,153.8 333.1,154.0 332.8,154.0 332.4,152.5 332.0,155.4 331.6,154.4 331.3,151.3 330.9,151.5 330.5,152.4 330.1,153.2 329.7,152.8 329.4,150.7 329.0,151.4 328.6,149.0 328.2,149.1 327.9,149.6 327.5,150.0 327.1,149.6 326.7,147.9 326.4,145.9 326.0,146.0 325.6,144.4 325.2,143.9 324.9,143.6 324.5,145.5 324.1,145.7 323.7,145.0 323.3,149.0 323.0,149.6 322.6,150.9 322.2,151.0 321.8,148.4 321.5,148.6 321.1,146.4 320.7,148.1 320.3,147.7 320.0,145.0 319.6,145.8 319.2,146.1 318.8,144.8 318.4,142.9 318.1,139.3 317.7,136.7 317.3,134.2 316.9,133.7 316.6,134.2 316.2,134.6 315.8,137.2 315.4,137.0 315.1,137.5 314.7,136.8 314.3,134.2 313.9,132.0 313.6,132.2 313.2,132.2 312.8,125.3 312.4,125.1 312.0,123.9 311.7,122.8 311.3,130.5 310.9,130.4 310.5,126.5 310.2,122.5 309.8,120.3 309.4,122.3 309.0,123.3 308.7,123.2 308.3,125.1 307.9,125.4 307.5,124.3 307.1,123.3 306.8,126.3 306.4,125.8 306.0,126.1 305.6,125.3 305.3,122.0 304.9,121.8 304.5,123.3 304.1,120.8 303.8,122.9 303.4,121.5 303.0,121.7 302.6,119.3 302.2,119.9 301.9,116.7 301.5,113.8 301.1,110.8 300.7,108.9 300.4,107.1 300.0,107.3 299.6,101.7 299.2,104.3 298.9,107.5 298.5,107.6 298.1,107.2 297.7,107.2 297.4,107.7 297.0,105.5 296.6,105.2 296.2,104.0 295.8,101.4 295.5,100.6 295.1,100.3 294.7,98.3 294.3,99.0 294.0,95.4 293.6,97.1 293.2,96.5 292.8,90.1 292.5,92.8 292.1,93.4 291.7,94.2 291.3,93.1 290.9,95.2 290.6,93.9 290.2,94.8 289.8,100.7 289.4,100.3 289.1,101.4 288.7,102.6 288.3,102.7 287.9,101.4 287.6,99.8 287.2,98.9 286.8,93.7 286.4,94.5 286.1,96.2 285.7,95.9 285.3,97.5 284.9,96.2 284.5,95.5 284.2,97.5 283.8,97.5 283.4,93.8 283.0,92.2 282.7,91.9 282.3,92.8 281.9,91.4 281.5,90.7 281.2,86.0 280.8,84.0 280.4,82.7 280.0,83.3 279.6,88.4 279.3,92.1 278.9,93.0 278.5,96.2 278.1,96.4 277.8,94.2 277.4,91.6 277.0,91.0 276.6,90.6 276.3,87.9 275.9,88.1 275.5,84.4 275.1,85.1 274.7,84.4 274.4,86.1 274.0,88.1 273.6,95.0 273.2,94.9 272.9,96.2 272.5,95.6 272.1,94.7 271.7,88.7 271.4,89.0 271.0,88.0 270.6,89.2 270.2,101.8 269.9,99.0 269.5,96.3 269.1,94.5 268.7,94.0 268.3,95.0 268.0,94.3 267.6,94.6 267.2,95.0 266.8,94.0 266.5,97.6 266.1,96.0 265.7,95.5 265.3,94.1 265.0,91.3 264.6,91.4 264.2,92.7 263.8,92.9 263.4,92.7 263.1,92.4 262.7,92.9 262.3,90.6 261.9,89.2 261.6,92.2 261.2,92.7 260.8,94.3 260.4,96.4 260.1,94.1 259.7,92.0 259.3,91.5 258.9,90.9 258.6,89.5 258.2,89.3 257.8,90.6 257.4,90.5 257.0,91.0 256.7,90.1 256.3,84.6 255.9,84.9 255.5,82.2 255.2,82.2 254.8,80.2 254.4,80.2 254.0,77.0 253.7,74.5 253.3,75.1 252.9,76.8 252.5,79.6 252.1,80.5 251.8,80.5 251.4,81.8 251.0,83.5 250.6,82.6 250.3,83.0 249.9,80.3 249.5,79.3 249.1,75.8 248.8,73.9 248.4,69.2 248.0,65.4 247.6,65.8 247.3,64.2 246.9,63.2 246.5,61.6 246.1,57.4 245.7,55.4 245.4,55.4 245.0,55.2 244.6,53.1 244.2,53.3 243.9,53.4 243.5,53.5 243.1,53.7 242.7,56.2 242.4,56.6 242.0,59.9 241.6,59.8 241.2,59.2 240.8,55.3 240.5,54.9 240.1,53.0 239.7,51.9 239.3,47.5 239.0,45.9 238.6,44.1 238.2,45.1 237.8,43.8 237.5,44.2 237.1,44.7 236.7,41.9 236.3,43.7 235.9,44.0 235.6,42.8 235.2,39.7 234.8,40.0 234.4,38.8 234.1,37.6 233.7,36.9 233.3,36.9 232.9,35.2 232.6,36.9 232.2,36.9 231.8,37.5 231.4,41.6 231.1,42.0 230.7,44.8 230.3,45.2 229.9,44.3 229.5,45.2 229.2,48.2 228.8,48.4 228.4,46.4 228.0,47.8 227.7,46.8 227.3,45.8 226.9,42.8 226.5,42.8 226.2,42.4 225.8,40.2 225.4,40.9 225.0,39.9 224.6,37.9 224.3,38.7 223.9,39.0 223.5,38.5 223.1,38.8 222.8,35.1 222.4,51.0 222.0,48.9 221.6,51.6 221.3,50.5 220.9,49.1 220.5,49.4 220.1,46.4 219.8,45.6 219.4,46.3 219.0,44.9 218.6,44.2 218.2,44.2 217.9,45.2 217.5,42.4 217.1,47.9 216.7,50.4 216.4,50.7 216.0,52.2 215.6,50.2 215.2,48.9 214.9,47.8 214.5,46.3 214.1,43.0 213.7,43.4 213.3,42.0 213.0,44.9 212.6,43.5 212.2,43.3 211.8,43.8 211.5,45.0 211.1,47.2 210.7,45.5 210.3,45.4 210.0,41.7 209.6,40.9 209.2,40.1 208.8,39.7 208.4,44.3 208.1,44.0 207.7,45.2 207.3,44.1 206.9,42.3 206.6,45.1 206.2,43.8 205.8,43.2 205.4,45.3 205.1,45.1 204.7,47.0 204.3,47.0 203.9,46.6 203.6,44.8 203.2,41.7 202.8,42.3 202.4,40.1 202.0,41.4 201.7,40.5 201.3,43.3 200.9,43.4 200.5,41.4 200.2,38.9 199.8,40.5 199.4,38.3 199.0,39.2 198.7,37.8 198.3,37.4 197.9,37.5 197.5,35.1 197.1,34.5 196.8,30.7 196.4,32.8 196.0,32.3 195.6,32.2 195.3,32.4 194.9,30.3 194.5,28.5 194.1,27.2 193.8,27.8 193.4,27.9 193.0,27.2 192.6,29.1 192.3,27.6 191.9,29.4 191.5,33.2 191.1,32.5 190.7,31.7 190.4,44.9 190.0,44.6 189.6,47.1 189.2,46.4 188.9,46.2 188.5,43.8 188.1,44.0 187.7,45.0 187.4,44.2 187.0,45.9 186.6,47.9 186.2,46.9 185.8,46.4 185.5,45.0 185.1,45.8 184.7,46.9 184.3,47.9 184.0,48.7 183.6,48.3 183.2,49.8 182.8,46.4 182.5,44.2 182.1,44.7 181.7,45.9 181.3,46.0 180.9,45.9 180.6,46.3 180.2,47.2 179.8,44.5 179.4,46.5 179.1,48.5 178.7,50.4 178.3,50.8 177.9,49.9 177.6,50.4 177.2,51.9 176.8,50.6 176.4,50.4 176.1,50.2 175.7,50.5 175.3,48.0 174.9,48.4 174.5,48.6 174.2,48.1 173.8,49.0 173.4,46.0 173.0,46.7 172.7,45.5 172.3,43.9 171.9,53.4 171.5,54.1 171.2,63.8 170.8,65.0 170.4,65.9 170.0,68.2 169.6,74.2 169.3,74.1 168.9,71.9 168.5,68.9 168.1,68.1 167.8,67.5 167.4,70.0 167.0,70.6 166.6,68.4 166.3,68.1 165.9,66.3 165.5,66.9 165.1,65.0 164.8,63.8 164.4,64.0 164.0,62.8 163.6,65.0 163.2,65.1 162.9,69.6 162.5,76.5 162.1,74.8 161.7,82.7 161.4,84.2 161.0,84.9 160.6,85.9 160.2,86.7 159.9,94.7 159.5,97.1 159.1,102.9 158.7,106.4 158.3,106.9 158.0,107.4 157.6,109.0 157.2,111.4 156.8,115.7 156.5,117.1 156.1,121.9 155.7,122.0 155.3,124.9 155.0,124.6 154.6,124.7 154.2,125.0 153.8,123.7 153.5,127.4 153.1,126.7 152.7,125.9 152.3,126.4 151.9,124.9 151.6,123.8 151.2,125.7 150.8,131.9 150.4,132.6 150.1,131.2 149.7,131.5 149.3,131.0 148.9,129.6 148.6,129.8 148.2,127.9 147.8,127.4 147.4,133.3 147.0,132.5 146.7,130.2 146.3,130.3 145.9,130.8 145.5,126.3 145.2,127.9 144.8,127.2 144.4,126.7 144.0,129.6 143.7,132.2 143.3,131.2 142.9,131.5 142.5,130.6 142.1,131.7 141.8,130.7 141.4,130.4 141.0,133.8 140.6,132.3 140.3,133.0 139.9,131.4 139.5,130.4 139.1,130.8 138.8,130.6 138.4,132.3 138.0,132.8 137.6,133.7 137.3,131.4 136.9,128.8 136.5,128.7 136.1,126.9 135.7,124.9 135.4,125.8 135.0,127.7 134.6,129.6 134.2,130.3 133.9,127.8 133.5,127.2 133.1,125.4 132.7,126.9 132.4,127.0 132.0,123.2 131.6,123.0 131.2,122.7 130.8,122.9 130.5,121.9 130.1,120.7 129.7,121.5 129.3,121.4 129.0,122.7 128.6,123.1 128.2,123.9 127.8,124.1 127.5,123.6 127.1,123.6 126.7,123.6 126.3,123.7 126.0,118.8 125.6,119.4 125.2,121.2 124.8,121.2 124.4,124.4 124.1,124.0 123.7,123.2 123.3,123.3 122.9,122.7 122.6,121.1 122.2,121.7 121.8,120.0 121.4,119.7 121.1,116.6 120.7,116.7 120.3,116.3 119.9,115.7 119.5,115.7 119.2,113.9 118.8,113.9 118.4,115.1 118.0,115.0 117.7,119.1 117.3,117.0 116.9,117.1 116.5,115.2 116.2,114.7 115.8,113.0 115.4,113.3 115.0,113.2 114.6,110.6 114.3,111.4 113.9,113.3 113.5,113.1 113.1,113.9 112.8,115.5 112.4,117.4 112.0,121.7 111.6,120.6 111.3,123.5 110.9,124.7 110.5,125.0 110.1,125.8 109.8,125.7 109.4,124.0 109.0,123.6 108.6,120.4 108.2,119.0 107.9,119.3 107.5,125.5 107.1,126.1 106.7,126.6 106.4,130.1 106.0,130.0 105.6,128.5 105.2,124.0 104.9,122.6 104.5,123.0 104.1,122.3 103.7,121.8 103.3,121.3 103.0,120.4 102.6,117.7 102.2,116.3 101.8,117.0 101.5,113.7 101.1,110.2 100.7,111.0 100.3,111.0 100.0,111.2 99.6,109.8 99.2,109.1 98.8,108.8 98.5,105.4 98.1,105.4 97.7,105.8 97.3,106.1 96.9,105.8 96.6,107.4 96.2,109.1 95.8,108.1 95.4,110.1 95.1,109.9 94.7,106.7 94.3,105.8 93.9,105.1 93.6,103.3 93.2,103.5 92.8,101.8 92.4,102.3 92.0,101.4 91.7,101.7 91.3,101.4 90.9,101.5 90.5,101.3 90.2,101.3 89.8,102.5 89.4,100.9 89.0,98.5 88.7,98.3 88.3,94.4 87.9,95.0 87.5,93.5 87.2,91.8 86.8,90.4 86.4,90.1 86.0,90.4 85.6,92.9 85.3,93.4 84.9,95.0 84.5,95.3 84.1,96.1 83.8,96.7 83.4,100.9 83.0,100.9 82.6,101.0 82.3,103.5 81.9,101.8 81.5,101.1 81.1,99.7 80.7,96.1 80.4,96.3 80.0,97.1 79.6,96.9 79.2,96.4 78.9,94.7 78.5,94.8 78.1,89.0 77.7,88.0 77.4,87.2 77.0,86.4 76.6,86.2 76.2,84.1 75.8,83.7 75.5,81.5 75.1,76.7 74.7,79.3 74.3,77.9 74.0,78.9 73.6,83.6 73.2,83.8 72.8,85.3 72.5,81.7 72.1,84.0 71.7,91.1 71.3,91.5 71.0,91.8 70.6,92.2 70.2,93.5 69.8,95.3 69.4,94.5 69.1,95.4 68.7,94.8 68.3,95.4 67.9,93.1 67.6,91.4 67.2,91.0 66.8,91.3 66.4,91.3 66.1,92.0 65.7,88.5 65.3,89.9 64.9,91.7 64.5,93.7 64.2,91.0 63.8,89.5 63.4,90.7 63.0,89.4 62.7,89.7 62.3,91.8 61.9,92.3 61.5,91.5 61.2,89.5 60.8,89.8 60.4,94.6 60.0,93.8 59.7,95.1 59.3,92.9 58.9,96.0 58.5,96.8 58.1,96.7 57.8,97.2 57.4,96.3 57.0,98.8 56.6,99.3 56.3,98.5 55.9,95.5 55.5,95.1 55.1,95.3 54.8,97.7 54.4,97.6 54.0,94.6"/><polyline class="sA mid" points="54.0,94.9 54.4,95.9 54.8,93.2 55.1,91.7 55.5,93.7 55.9,94.9 56.3,98.8 56.6,100.3 57.0,97.1 57.4,96.6 57.8,96.0 58.1,97.4 58.5,97.5 58.9,95.6 59.3,94.0 59.7,95.8 60.0,95.5 60.4,94.7 60.8,92.7 61.2,92.8 61.5,92.8 61.9,94.3 62.3,93.3 62.7,92.3 63.0,93.7 63.4,91.8 63.8,91.6 64.2,92.2 64.5,94.0 64.9,94.1 65.3,93.3 65.7,91.7 66.1,92.9 66.4,93.2 66.8,94.3 67.2,93.5 67.6,93.0 67.9,94.4 68.3,96.9 68.7,98.4 69.1,100.1 69.4,100.8 69.8,101.5 70.2,100.8 70.6,100.0 71.0,98.8 71.3,99.6 71.7,92.9 72.1,84.0 72.5,79.5 72.8,83.7 73.2,82.3 73.6,79.4 74.0,76.7 74.3,75.4 74.7,74.8 75.1,73.8 75.5,76.9 75.8,79.6 76.2,80.0 76.6,81.6 77.0,83.7 77.4,84.2 77.7,84.4 78.1,85.3 78.5,87.8 78.9,88.6 79.2,89.8 79.6,90.8 80.0,92.1 80.4,91.8 80.7,91.8 81.1,93.1 81.5,95.3 81.9,92.0 82.3,93.7 82.6,93.6 83.0,91.4 83.4,91.2 83.8,88.5 84.1,87.4 84.5,87.3 84.9,85.2 85.3,85.2 85.6,83.3 86.0,83.2 86.4,82.3 86.8,81.5 87.2,82.8 87.5,84.4 87.9,85.0 88.3,84.9 88.7,86.5 89.0,89.4 89.4,91.5 89.8,93.0 90.2,92.8 90.5,93.3 90.9,94.5 91.3,94.0 91.7,92.3 92.0,93.7 92.4,92.2 92.8,96.0 93.2,95.0 93.6,98.1 93.9,98.9 94.3,100.0 94.7,99.3 95.1,104.0 95.4,105.2 95.8,103.9 96.2,103.4 96.6,101.6 96.9,99.9 97.3,100.6 97.7,100.1 98.1,99.5 98.5,99.3 98.8,100.8 99.2,101.6 99.6,101.1 100.0,101.3 100.3,100.4 100.7,96.7 101.1,92.9 101.5,100.0 101.8,103.3 102.2,103.4 102.6,103.7 103.0,106.8 103.3,108.4 103.7,110.7 104.1,113.2 104.5,114.4 104.9,116.0 105.2,117.4 105.6,119.9 106.0,122.6 106.4,119.4 106.7,117.1 107.1,119.7 107.5,116.1 107.9,112.7 108.2,109.9 108.6,112.2 109.0,113.6 109.4,116.2 109.8,117.0 110.1,117.2 110.5,116.5 110.9,116.5 111.3,113.9 111.6,113.2 112.0,109.3 112.4,105.5 112.8,103.6 113.1,100.6 113.5,106.8 113.9,106.5 114.3,105.2 114.6,104.5 115.0,105.9 115.4,105.3 115.8,104.9 116.2,107.1 116.5,108.4 116.9,110.8 117.3,112.0 117.7,110.2 118.0,108.4 118.4,108.9 118.8,108.8 119.2,109.3 119.5,110.8 119.9,110.7 120.3,110.7 120.7,110.8 121.1,110.3 121.4,113.5 121.8,115.1 122.2,115.5 122.6,116.6 122.9,117.8 123.3,117.8 123.7,119.1 124.1,119.6 124.4,118.1 124.8,116.6 125.2,115.2 125.6,112.4 126.0,110.8 126.3,112.8 126.7,113.1 127.1,112.3 127.5,111.2 127.8,109.5 128.2,107.9 128.6,107.7 129.0,104.6 129.3,105.2 129.7,104.3 130.1,104.2 130.5,106.2 130.8,105.4 131.2,105.8 131.6,103.2 132.0,103.2 132.4,104.5 132.7,103.2 133.1,101.3 133.5,102.0 133.9,101.8 134.2,103.5 134.6,102.9 135.0,100.5 135.4,98.9 135.7,98.9 136.1,99.8 136.5,97.8 136.9,102.2 137.3,100.3 137.6,102.0 138.0,100.8 138.4,101.2 138.8,99.9 139.1,100.1 139.5,99.9 139.9,99.7 140.3,100.8 140.6,100.9 141.0,102.1 141.4,99.8 141.8,99.7 142.1,100.8 142.5,100.3 142.9,100.5 143.3,101.4 143.7,100.0 144.0,97.5 144.4,96.4 144.8,98.1 145.2,99.1 145.5,97.9 145.9,100.8 146.3,103.4 146.7,104.0 147.0,105.2 147.4,103.2 147.8,99.4 148.2,100.3 148.6,102.9 148.9,104.3 149.3,104.9 149.7,106.3 150.1,107.4 150.4,108.2 150.8,106.9 151.2,104.0 151.6,103.5 151.9,104.2 152.3,105.5 152.7,105.8 153.1,106.9 153.5,107.2 153.8,106.8 154.2,107.5 154.6,109.2 155.0,109.1 155.3,105.1 155.7,104.1 156.1,105.6 156.5,103.9 156.8,102.3 157.2,100.6 157.6,99.4 158.0,99.4 158.3,98.9 158.7,97.7 159.1,93.2 159.5,87.3 159.9,83.6 160.2,77.3 160.6,76.1 161.0,76.7 161.4,77.0 161.7,72.1 162.1,68.0 162.5,69.1 162.9,69.2 163.2,69.3 163.6,68.9 164.0,67.8 164.4,68.1 164.8,68.3 165.1,68.7 165.5,70.8 165.9,72.0 166.3,73.3 166.6,74.5 167.0,74.5 167.4,75.2 167.8,73.8 168.1,74.0 168.5,73.3 168.9,75.7 169.3,77.1 169.6,75.9 170.0,70.4 170.4,71.2 170.8,69.1 171.2,64.2 171.5,60.1 171.9,52.7 172.3,47.3 172.7,50.4 173.0,51.9 173.4,52.2 173.8,53.8 174.2,54.6 174.5,55.0 174.9,54.7 175.3,54.3 175.7,55.9 176.1,58.1 176.4,57.7 176.8,59.8 177.2,60.8 177.6,57.7 177.9,59.4 178.3,59.9 178.7,60.6 179.1,58.3 179.4,55.5 179.8,54.3 180.2,57.1 180.6,57.9 180.9,58.1 181.3,57.6 181.7,57.5 182.1,54.6 182.5,53.9 182.8,58.3 183.2,60.0 183.6,62.4 184.0,61.7 184.3,60.5 184.7,59.9 185.1,59.9 185.5,61.5 185.8,60.8 186.2,60.8 186.6,62.4 187.0,61.0 187.4,60.5 187.7,60.6 188.1,60.2 188.5,59.5 188.9,60.2 189.2,60.7 189.6,60.7 190.0,59.1 190.4,53.0 190.7,44.2 191.1,48.0 191.5,47.4 191.9,44.3 192.3,42.7 192.6,44.4 193.0,43.1 193.4,44.2 193.8,44.9 194.1,44.0 194.5,45.0 194.9,46.7 195.3,49.3 195.6,50.5 196.0,55.3 196.4,58.6 196.8,58.1 197.1,59.2 197.5,60.8 197.9,63.3 198.3,62.9 198.7,58.8 199.0,59.8 199.4,58.3 199.8,60.1 200.2,59.8 200.5,61.2 200.9,60.0 201.3,62.0 201.7,59.2 202.0,61.2 202.4,60.1 202.8,57.0 203.2,58.8 203.6,59.5 203.9,61.4 204.3,60.9 204.7,59.5 205.1,57.7 205.4,54.0 205.8,50.8 206.2,52.2 206.6,52.7 206.9,51.8 207.3,54.0 207.7,56.4 208.1,56.3 208.4,55.8 208.8,54.1 209.2,54.1 209.6,53.9 210.0,56.4 210.3,59.7 210.7,61.5 211.1,63.6 211.5,61.8 211.8,60.4 212.2,60.1 212.6,60.3 213.0,60.0 213.3,58.3 213.7,57.4 214.1,56.2 214.5,57.2 214.9,59.3 215.2,60.9 215.6,60.8 216.0,62.1 216.4,62.4 216.7,61.8 217.1,58.9 217.5,58.5 217.9,58.9 218.2,58.1 218.6,57.4 219.0,59.2 219.4,59.8 219.8,59.2 220.1,59.9 220.5,61.7 220.9,61.0 221.3,62.7 221.6,62.5 222.0,63.3 222.4,59.2 222.8,52.6 223.1,54.6 223.5,56.3 223.9,57.7 224.3,57.9 224.6,57.6 225.0,58.4 225.4,57.4 225.8,57.3 226.2,58.0 226.5,59.8 226.9,60.7 227.3,62.0 227.7,63.9 228.0,65.0 228.4,65.6 228.8,66.6 229.2,65.3 229.5,63.2 229.9,62.1 230.3,62.4 230.7,62.0 231.1,60.7 231.4,61.9 231.8,62.4 232.2,62.9 232.6,62.8 232.9,60.8 233.3,63.0 233.7,64.2 234.1,62.5 234.4,61.4 234.8,66.0 235.2,67.8 235.6,70.4 235.9,69.6 236.3,65.2 236.7,60.8 237.1,63.2 237.5,63.3 237.8,63.8 238.2,64.0 238.6,64.4 239.0,64.7 239.3,67.2 239.7,72.6 240.1,75.3 240.5,75.5 240.8,76.0 241.2,78.0 241.6,78.7 242.0,77.3 242.4,75.4 242.7,73.4 243.1,71.4 243.5,70.9 243.9,69.9 244.2,69.3 244.6,69.5 245.0,70.3 245.4,69.6 245.7,69.3 246.1,71.1 246.5,75.2 246.9,76.9 247.3,77.4 247.6,79.6 248.0,80.4 248.4,80.5 248.8,82.2 249.1,83.1 249.5,85.9 249.9,88.3 250.3,89.8 250.6,87.4 251.0,85.9 251.4,84.5 251.8,86.1 252.1,85.6 252.5,82.3 252.9,80.4 253.3,78.4 253.7,79.1 254.0,80.3 254.4,82.6 254.8,86.2 255.2,86.8 255.5,88.0 255.9,87.9 256.3,87.7 256.7,90.9 257.0,90.3 257.4,88.8 257.8,84.1 258.2,82.1 258.6,87.5 258.9,86.2 259.3,86.1 259.7,87.0 260.1,87.6 260.4,89.8 260.8,88.2 261.2,88.3 261.6,87.9 261.9,87.5 262.3,88.8 262.7,91.4 263.1,92.0 263.4,91.8 263.8,90.8 264.2,92.0 264.6,90.7 265.0,90.5 265.3,89.7 265.7,91.2 266.1,92.9 266.5,91.4 266.8,91.1 267.2,90.9 267.6,92.4 268.0,91.4 268.3,91.0 268.7,91.3 269.1,91.1 269.5,93.3 269.9,96.6 270.2,96.4 270.6,96.7 271.0,96.3 271.4,96.4 271.7,96.6 272.1,99.6 272.5,103.6 272.9,100.4 273.2,101.9 273.6,101.3 274.0,94.5 274.4,91.9 274.7,92.4 275.1,97.5 275.5,95.7 275.9,97.1 276.3,99.0 276.6,98.5 277.0,98.4 277.4,98.4 277.8,100.7 278.1,103.9 278.5,97.1 278.9,95.1 279.3,94.4 279.6,92.7 280.0,89.7 280.4,90.2 280.8,91.2 281.2,92.9 281.5,96.3 281.9,98.0 282.3,100.3 282.7,99.7 283.0,99.2 283.4,101.7 283.8,103.6 284.2,103.6 284.5,101.7 284.9,101.2 285.3,101.2 285.7,99.5 286.1,98.5 286.4,95.3 286.8,94.6 287.2,97.7 287.6,97.5 287.9,98.1 288.3,101.1 288.7,99.4 289.1,99.0 289.4,98.0 289.8,95.7 290.2,94.5 290.6,94.9 290.9,94.3 291.3,94.5 291.7,95.6 292.1,94.2 292.5,86.4 292.8,83.3 293.2,87.8 293.6,90.6 294.0,89.9 294.3,92.3 294.7,92.6 295.1,91.4 295.5,90.2 295.8,91.9 296.2,91.9 296.6,91.5 297.0,92.2 297.4,94.1 297.7,95.0 298.1,95.9 298.5,95.3 298.9,95.3 299.2,93.5 299.6,92.7 300.0,93.8 300.4,95.1 300.7,96.3 301.1,98.1 301.5,100.4 301.9,102.0 302.2,104.4 302.6,105.6 303.0,105.7 303.4,105.4 303.8,105.4 304.1,103.1 304.5,106.6 304.9,106.1 305.3,105.6 305.6,109.6 306.0,112.7 306.4,110.5 306.8,110.2 307.1,107.8 307.5,107.2 307.9,107.5 308.3,106.5 308.7,105.4 309.0,106.2 309.4,105.2 309.8,105.5 310.2,106.8 310.5,108.9 310.9,113.4 311.3,109.4 311.7,106.1 312.0,105.3 312.4,109.5 312.8,110.3 313.2,111.8 313.6,113.0 313.9,110.7 314.3,111.2 314.7,112.0 315.1,112.6 315.4,116.5 315.8,116.4 316.2,115.9 316.6,115.9 316.9,116.6 317.3,116.4 317.7,116.2 318.1,123.6 318.4,127.7 318.8,128.4 319.2,130.0 319.6,132.0 320.0,134.2 320.3,136.5 320.7,137.3 321.1,138.1 321.5,137.1 321.8,137.6 322.2,138.7 322.6,139.1 323.0,139.1 323.3,136.9 323.7,134.6 324.1,134.5 324.5,135.3 324.9,133.8 325.2,131.9 325.6,134.3 326.0,136.0 326.4,136.2 326.7,136.2 327.1,137.5 327.5,140.6 327.9,140.1 328.2,139.6 328.6,139.3 329.0,139.3 329.4,139.0 329.7,139.9 330.1,141.5 330.5,141.7 330.9,140.8 331.3,140.8 331.6,142.7 332.0,143.5 332.4,143.5 332.8,143.8 333.1,145.4 333.5,143.2 333.9,142.3 334.3,142.8 334.6,141.5 335.0,143.2 335.4,145.2 335.8,144.6 336.2,143.5 336.5,144.3 336.9,146.9 337.3,147.0 337.7,147.2 338.0,145.1 338.4,149.3 338.8,149.2 339.2,146.2 339.5,148.7 339.9,147.5 340.3,145.0 340.7,142.9 341.1,141.5 341.4,142.5 341.8,142.1 342.2,140.6 342.6,137.1 342.9,133.9 343.3,135.0 343.7,137.7 344.1,135.6 344.4,136.8 344.8,140.4 345.2,142.5 345.6,141.9 345.9,139.9 346.7,134.3 347.1,135.7 347.5,137.2 347.8,139.7 348.2,141.5 348.6,135.0 349.0,135.1 349.3,137.6 349.7,142.7 350.1,143.6 350.5,144.4 350.8,144.4 351.2,145.6 351.6,146.0 352.0,148.8 352.4,150.5 352.7,150.1 353.1,147.8 353.5,145.3 353.9,145.7 354.2,145.4 355.0,150.2 355.4,146.8 355.7,146.8 356.1,148.7 356.5,149.9 356.9,151.3 357.2,152.3 357.6,151.7 358.0,152.3 358.4,150.8 358.8,149.1 359.1,147.7 359.5,148.9 359.9,149.9 360.3,148.0 360.6,147.9 361.0,148.1 361.4,152.1 361.8,151.2 362.1,153.5 362.5,154.4 362.9,154.8 363.3,154.9 363.7,154.7 364.0,155.8 364.4,153.7 364.8,153.7 365.2,155.5 365.5,158.1 365.9,162.8 366.3,162.0 366.7,162.5 367.0,163.7 367.4,164.0 367.8,163.6 368.2,160.6 368.5,158.1 368.9,155.9 369.3,155.6 369.7,155.6 370.1,154.0 370.4,155.0 370.8,154.6 371.2,152.8 371.6,151.6 371.9,151.2 372.3,149.5 372.7,149.8 373.1,151.3 373.4,151.6 373.8,150.4 374.2,150.1 374.6,151.2 375.0,155.6 375.3,157.5 375.7,159.8 376.1,162.6 376.5,163.0 376.8,163.3 377.2,163.4 377.6,161.0 378.0,159.9 378.3,159.4 378.7,157.3 379.1,155.5 379.5,155.5 379.9,154.1 380.2,157.0 380.6,156.7 381.0,155.4 381.4,157.7 381.7,161.7 382.1,160.3 382.5,163.1 382.9,165.0 383.2,139.9 383.6,125.9 384.0,122.0 384.4,126.9 384.7,126.4 385.1,124.7 385.5,124.5 385.9,126.2 386.3,122.7 386.6,125.4 387.0,126.9 387.4,127.6 387.8,127.5 388.1,126.9 388.5,124.0 388.9,122.7 389.3,123.3 389.6,125.0 390.0,116.5 390.4,122.5 390.8,128.5 391.2,128.2 391.5,127.3 391.9,129.6 392.3,132.7 392.7,133.7 393.0,133.8 393.4,136.5 393.8,136.6 394.2,138.2 394.5,140.7 394.9,141.1 395.3,139.6 395.7,134.0 396.0,134.5 396.4,132.5 396.8,130.0 397.2,129.3 397.6,129.1 397.9,126.0 398.3,120.1 398.7,117.8 399.1,119.3 399.4,122.6 399.8,125.2 400.2,127.7 400.6,130.4 400.9,130.5 401.3,130.7 401.7,129.6 402.1,128.4 402.5,127.2 402.8,127.4 403.2,127.9 403.6,125.7 404.0,122.2 404.3,122.2 404.7,123.6 405.1,123.5 405.5,123.9 405.8,124.0 406.2,123.3 406.6,122.8 407.0,122.8 407.4,123.3 407.7,118.6 408.1,119.6 408.5,119.8 408.9,121.1 409.2,123.3 409.6,125.2 410.0,124.1 410.4,122.3 410.7,121.2 411.1,121.5 411.5,120.3 411.9,120.2 412.2,122.5 412.6,123.0 413.0,122.0 413.4,123.5 413.8,123.8 414.1,123.6 414.5,124.8 414.9,122.7 415.3,123.9 415.6,125.9 416.0,127.5 416.4,129.1 416.8,129.5 417.1,127.7 417.5,130.4 417.9,131.4 418.3,132.2 418.7,131.8 419.0,130.4 419.4,129.4 419.8,129.5 420.2,130.6 420.5,132.2 420.9,132.9 421.3,127.5 421.7,127.4 422.0,134.6 422.4,131.1 422.8,130.6 423.2,132.2 423.5,131.5 423.9,132.6 424.3,134.0 424.7,134.3 425.1,133.6 425.4,134.2 425.8,137.6 426.2,140.0 426.6,143.0 426.9,142.7 427.3,143.0 427.7,144.3 428.1,145.3 428.4,143.2 428.8,141.2 429.2,144.8 429.6,144.6 430.0,142.4 430.3,142.7 430.7,142.1 431.1,138.4 431.5,138.0 431.8,138.1 432.2,139.8 432.6,140.0 433.0,139.4 433.3,140.7 433.7,141.3 434.1,140.6 434.5,140.8 434.8,140.9 435.2,139.9 435.6,140.7 436.0,140.4 436.4,139.6 436.7,137.0 437.1,135.4 437.5,133.3 437.9,132.8 438.2,133.1 438.6,131.7 439.0,131.2 439.4,129.0 439.7,130.9 440.1,129.9 440.5,129.9 440.9,130.3 441.3,130.4 441.6,131.2 442.0,130.5 442.4,131.9 442.8,129.7 443.1,129.0 443.5,130.5 443.9,131.3 444.3,132.9 444.6,135.5 445.0,136.3 445.4,135.6 445.8,137.6 446.2,135.8 446.5,136.2 446.9,138.4 447.3,138.6 447.7,137.6 448.0,138.2 448.4,138.9 448.8,140.8 449.2,141.0 449.5,140.7 449.9,140.8 450.3,139.7 450.7,137.9 451.0,136.9 451.4,140.3 451.8,143.1 452.2,145.0 452.6,143.0 452.9,141.0 453.3,148.9 453.7,144.8 454.1,145.2 454.4,148.0 454.8,150.8 455.2,152.7 455.6,152.6 455.9,150.3 456.3,149.4 456.7,153.6 457.1,152.3 457.5,150.6 457.8,150.1 458.2,149.8 458.6,156.2 459.0,158.7 459.3,158.9 459.7,158.9 460.1,159.0 460.5,161.5 460.8,160.5 461.2,162.1 461.6,160.6 462.0,158.4 462.3,157.4 462.7,157.8 463.1,158.2 463.5,159.1 463.9,160.7 464.2,163.1 464.6,163.7 465.0,165.5 465.4,166.6 465.7,167.4 466.1,170.0 466.5,172.8 466.9,173.9 467.2,174.6 467.6,173.0 468.0,172.3"/><polyline class="sB mid" points="54.0,94.6 54.4,95.8 54.8,93.3 55.1,91.8 55.5,94.0 55.9,93.6 56.3,96.6 56.6,98.4 57.0,96.3 57.4,95.6 57.8,96.3 58.1,95.6 58.5,95.1 58.9,93.3 59.3,91.7 59.7,93.7 60.0,92.4 60.4,91.1 60.8,86.7 61.2,88.4 61.5,89.7 61.9,91.4 62.3,90.3 62.7,88.8 63.0,89.0 63.4,88.7 63.8,88.4 64.2,89.1 64.5,91.5 64.9,89.0 65.3,87.4 65.7,88.0 66.1,90.0 66.4,89.6 66.8,90.7 67.2,90.6 67.6,90.8 67.9,91.0 68.3,93.3 68.7,94.4 69.1,94.6 69.4,94.1 69.8,93.9 70.2,92.0 70.6,91.2 71.0,90.1 71.3,90.8 71.7,86.5 72.1,81.0 72.5,78.7 72.8,83.4 73.2,82.0 73.6,79.1 74.0,77.8 74.3,77.1 74.7,75.7 75.1,75.2 75.5,78.9 75.8,81.9 76.2,82.5 76.6,84.2 77.0,86.1 77.4,86.5 77.7,86.7 78.1,88.2 78.5,91.7 78.9,94.1 79.2,94.7 79.6,95.3 80.0,94.5 80.4,95.0 80.7,95.3 81.1,97.2 81.5,100.1 81.9,99.3 82.3,101.1 82.6,99.8 83.0,98.6 83.4,98.2 83.8,95.4 84.1,94.6 84.5,94.6 84.9,92.6 85.3,92.1 85.6,89.8 86.0,89.3 86.4,89.8 86.8,89.8 87.2,91.0 87.5,91.8 87.9,91.3 88.3,93.2 88.7,94.6 89.0,97.1 89.4,99.1 89.8,101.4 90.2,101.2 90.5,100.9 90.9,101.2 91.3,99.4 91.7,98.7 92.0,100.1 92.4,98.2 92.8,101.1 93.2,99.9 93.6,102.2 93.9,104.1 94.3,104.9 94.7,104.7 95.1,108.1 95.4,108.7 95.8,107.1 96.2,107.6 96.6,105.7 96.9,104.1 97.3,105.1 97.7,104.9 98.1,103.8 98.5,104.8 98.8,107.1 99.2,108.6 99.6,108.9 100.0,110.0 100.3,109.8 100.7,109.9 101.1,108.9 101.5,111.4 101.8,115.4 102.2,115.8 102.6,114.4 103.0,118.2 103.3,120.4 103.7,121.0 104.1,121.5 104.5,121.7 104.9,122.2 105.2,123.0 105.6,126.0 106.0,129.1 106.4,125.9 106.7,123.6 107.1,125.0 107.5,121.4 107.9,118.0 108.2,115.7 108.6,119.1 109.0,120.8 109.4,123.4 109.8,124.6 110.1,124.7 110.5,124.0 110.9,123.5 111.3,120.8 111.6,120.2 112.0,117.7 112.4,115.3 112.8,113.6 113.1,109.1 113.5,112.4 113.9,112.0 114.3,110.7 114.6,110.0 115.0,111.4 115.4,111.2 115.8,110.6 116.2,112.9 116.5,113.7 116.9,116.0 117.3,116.8 117.7,115.2 118.0,113.3 118.4,113.2 118.8,112.6 119.2,113.9 119.5,114.8 119.9,114.8 120.3,114.8 120.7,114.9 121.1,116.6 121.4,117.9 121.8,119.5 122.2,120.4 122.6,120.7 122.9,121.5 123.3,121.7 123.7,122.8 124.1,123.2 124.4,121.8 124.8,120.2 125.2,119.6 125.6,118.6 126.0,118.1 126.3,120.7 126.7,123.6 127.1,123.6 127.5,123.6 127.8,123.4 128.2,122.6 128.6,122.1 129.0,118.7 129.3,120.9 129.7,120.0 130.1,119.1 130.5,121.1 130.8,121.5 131.2,122.0 131.6,121.2 132.0,121.6 132.4,124.9 132.7,126.0 133.1,125.1 133.5,126.0 133.9,125.9 134.2,128.9 134.6,128.4 135.0,126.0 135.4,124.3 135.7,123.9 136.1,125.8 136.5,126.9 136.9,128.6 137.3,129.7 137.6,132.0 138.0,130.0 138.4,130.6 138.8,129.3 139.1,129.5 139.5,129.3 139.9,129.0 140.3,131.1 140.6,131.2 141.0,131.4 141.4,129.0 141.8,129.0 142.1,130.0 142.5,129.6 142.9,130.0 143.3,131.1 143.7,130.1 144.0,127.6 144.4,126.2 144.8,126.2 145.2,126.8 145.5,125.4 145.9,128.0 146.3,130.2 146.7,130.1 147.0,131.0 147.4,129.2 147.8,125.3 148.2,127.2 148.6,128.0 148.9,128.6 149.3,129.7 149.7,130.5 150.1,130.6 150.4,131.3 150.8,128.1 151.2,122.8 151.6,122.5 151.9,123.3 152.3,125.4 152.7,125.7 153.1,125.6 153.5,124.8 153.8,122.5 154.2,123.6 154.6,124.6 155.0,124.4 155.3,120.4 155.7,119.1 156.1,119.0 156.5,115.9 156.8,112.9 157.2,109.6 157.6,107.3 158.0,106.1 158.3,105.6 158.7,104.4 159.1,99.7 159.5,93.6 159.9,89.6 160.2,83.1 160.6,82.3 161.0,82.2 161.4,82.2 161.7,77.2 162.1,73.0 162.5,72.2 162.9,63.9 163.2,61.7 163.6,63.6 164.0,62.5 164.4,62.9 164.8,63.5 165.1,64.0 165.5,65.7 165.9,66.3 166.3,66.9 166.6,67.1 167.0,67.5 167.4,67.6 167.8,66.2 168.1,67.2 168.5,65.8 168.9,70.0 169.3,72.1 169.6,70.5 170.0,65.0 170.4,64.5 170.8,62.7 171.2,57.8 171.5,53.7 171.9,46.3 172.3,40.9 172.7,43.5 173.0,44.7 173.4,45.2 173.8,47.0 174.2,47.4 174.5,47.3 174.9,46.5 175.3,46.8 175.7,47.9 176.1,50.2 176.4,42.0 176.8,48.7 177.2,49.7 177.6,46.6 177.9,48.6 178.3,49.7 178.7,49.2 179.1,46.3 179.4,43.4 179.8,42.3 180.2,44.7 180.6,44.6 180.9,45.6 181.3,44.9 181.7,44.9 182.1,43.0 182.5,42.9 182.8,44.8 183.2,47.0 183.6,47.1 184.0,46.5 184.3,45.4 184.7,44.5 185.1,43.6 185.5,44.6 185.8,44.8 186.2,45.0 186.6,46.6 187.0,44.6 187.4,43.7 187.7,44.0 188.1,43.6 188.5,42.7 188.9,44.4 189.2,45.5 189.6,45.5 190.0,43.6 190.4,36.7 190.7,26.3 191.1,31.8 191.5,31.2 191.9,27.8 192.3,25.9 192.6,27.2 193.0,25.9 193.4,26.8 193.8,27.1 194.1,25.8 194.5,26.5 194.9,27.0 195.3,31.0 195.6,31.8 196.0,31.5 196.4,29.8 196.8,29.7 197.1,32.1 197.5,33.7 197.9,37.0 198.3,36.8 198.7,36.3 199.0,37.9 199.4,38.2 199.8,39.3 200.2,38.4 200.5,40.3 200.9,42.1 201.3,41.3 201.7,38.4 202.0,40.6 202.4,39.8 202.8,40.5 203.2,41.1 203.6,42.8 203.9,45.4 204.3,46.6 204.7,45.2 205.1,44.2 205.4,43.5 205.8,42.3 206.2,43.1 206.6,42.3 206.9,40.7 207.3,42.2 207.7,43.4 208.1,43.0 208.4,41.5 208.8,39.0 209.2,38.1 209.6,39.8 210.0,40.9 210.3,43.1 210.7,44.4 211.1,45.7 211.5,43.9 211.8,42.5 212.2,42.1 212.6,43.3 213.0,42.4 213.3,40.6 213.7,41.8 214.1,42.6 214.5,44.5 214.9,45.9 215.2,47.8 215.6,48.1 216.0,49.5 216.4,48.7 216.7,47.6 217.1,43.8 217.5,40.9 217.9,43.7 218.2,43.3 218.6,41.7 219.0,44.4 219.4,43.9 219.8,43.6 220.1,45.4 220.5,47.8 220.9,48.6 221.3,49.1 221.6,48.7 222.0,47.4 222.4,41.8 222.8,32.1 223.1,33.9 223.5,36.5 223.9,37.9 224.3,38.2 224.6,37.6 225.0,38.9 225.4,39.0 225.8,39.6 226.2,39.6 226.5,41.9 226.9,41.7 227.3,43.5 227.7,45.9 228.0,46.2 228.4,45.4 228.8,47.1 229.2,46.4 229.5,44.2 229.9,43.2 230.3,43.5 230.7,42.9 231.1,40.7 231.4,38.2 231.8,34.4 232.2,36.5 232.6,35.9 232.9,33.9 233.3,35.2 233.7,35.7 234.1,35.5 234.4,34.5 234.8,39.0 235.2,38.8 235.6,40.7 235.9,43.3 236.3,42.7 236.7,41.6 237.1,43.1 237.5,42.5 237.8,42.9 238.2,43.3 238.6,43.7 239.0,43.1 239.3,44.7 239.7,49.2 240.1,52.0 240.5,52.9 240.8,54.9 241.2,56.6 241.6,59.2 242.0,57.9 242.4,55.9 242.7,53.8 243.1,52.0 243.5,53.3 243.9,53.1 244.2,52.4 244.6,51.8 245.0,53.6 245.4,54.2 245.7,53.1 246.1,55.3 246.5,59.4 246.9,60.7 247.3,62.2 247.6,64.4 248.0,65.0 248.4,67.3 248.8,70.7 249.1,74.3 249.5,77.2 249.9,79.6 250.3,81.3 250.6,81.7 251.0,82.3 251.4,79.2 251.8,79.3 252.1,79.6 252.5,77.6 252.9,76.2 253.3,74.4 253.7,74.2 254.0,75.6 254.4,78.1 254.8,79.9 255.2,80.2 255.5,81.5 255.9,82.9 256.3,80.5 256.7,89.1 257.0,87.8 257.4,90.0 257.8,87.3 258.2,86.2 258.6,89.0 258.9,89.6 259.3,90.5 259.7,90.8 260.1,92.1 260.4,94.7 260.8,93.1 261.2,92.3 261.6,89.8 261.9,87.7 262.3,89.2 262.7,91.3 263.1,91.8 263.4,91.5 263.8,90.7 264.2,92.0 264.6,90.7 265.0,90.6 265.3,92.2 265.7,94.4 266.1,93.8 266.5,94.5 266.8,93.3 267.2,90.9 267.6,93.9 268.0,92.9 268.3,93.5 268.7,93.1 269.1,92.9 269.5,94.6 269.9,97.6 270.2,94.9 270.6,84.1 271.0,83.3 271.4,87.5 271.7,87.5 272.1,90.9 272.5,95.1 272.9,94.5 273.2,94.9 273.6,91.5 274.0,84.7 274.4,82.1 274.7,81.0 275.1,84.6 275.5,82.8 275.9,85.2 276.3,87.9 276.6,87.6 277.0,90.0 277.4,89.9 277.8,91.8 278.1,94.9 278.5,93.0 278.9,91.8 279.3,88.0 279.6,85.6 280.0,80.9 280.4,80.7 280.8,82.5 281.2,84.6 281.5,88.1 281.9,90.8 282.3,91.3 282.7,91.5 283.0,91.0 283.4,92.3 283.8,95.1 284.2,96.4 284.5,94.5 284.9,94.7 285.3,96.0 285.7,94.3 286.1,94.4 286.4,93.7 286.8,93.0 287.2,95.9 287.6,98.1 287.9,98.9 288.3,101.9 288.7,100.2 289.1,99.7 289.4,98.7 289.8,96.4 290.2,93.9 290.6,92.6 290.9,93.5 291.3,91.6 291.7,93.1 292.1,92.2 292.5,90.3 292.8,89.3 293.2,91.7 293.6,95.1 294.0,94.4 294.3,96.9 294.7,97.1 295.1,98.9 295.5,98.4 295.8,100.5 296.2,102.2 296.6,104.3 297.0,104.8 297.4,105.8 297.7,106.0 298.1,105.7 298.5,106.7 298.9,105.3 299.2,101.8 299.6,100.4 300.0,104.0 300.4,107.1 300.7,106.8 301.1,107.3 301.5,109.7 301.9,113.2 302.2,117.9 302.6,118.8 303.0,119.8 303.4,120.0 303.8,120.4 304.1,118.1 304.5,121.6 304.9,120.6 305.3,120.3 305.6,120.6 306.0,125.4 306.4,125.0 306.8,123.9 307.1,121.5 307.5,121.7 307.9,123.9 308.3,123.0 308.7,121.9 309.0,122.2 309.4,120.0 309.8,118.2 310.2,119.4 310.5,121.3 310.9,128.1 311.3,123.7 311.7,120.4 312.0,119.9 312.4,124.1 312.8,124.6 313.2,128.6 313.6,132.1 313.9,129.6 314.3,130.7 314.7,132.8 315.1,133.2 315.4,136.8 315.8,135.4 316.2,132.8 316.6,133.3 316.9,132.2 317.3,131.9 317.7,131.1 318.1,137.7 318.4,141.1 318.8,141.0 319.2,144.1 319.6,144.3 320.0,144.8 320.3,146.2 320.7,145.1 321.1,145.5 321.5,146.4 321.8,146.9 322.2,149.1 322.6,149.7 323.0,149.1 323.3,146.9 323.7,144.6 324.1,144.7 324.5,144.2 324.9,142.6 325.2,140.0 325.6,143.6 326.0,144.7 326.4,145.4 326.7,145.9 327.1,146.8 327.5,149.6 327.9,149.1 328.2,148.5 328.6,147.9 329.0,149.2 329.4,149.3 329.7,150.0 330.1,151.6 330.5,151.9 330.9,151.0 331.3,150.9 331.6,152.4 332.0,150.1 332.4,149.8 332.8,151.1 333.1,153.7 333.5,152.7 333.9,150.1 334.3,149.9 334.6,148.6 335.0,150.0 335.4,151.5 335.8,151.4 336.2,151.0 336.5,151.9 336.9,155.1 337.3,155.1 337.7,155.0 338.0,154.0 338.4,157.9 338.8,156.8 339.2,157.4 339.5,159.2 339.9,158.1 340.3,155.6 340.7,153.5 341.1,152.4 341.4,154.3 341.8,154.1 342.2,152.6 342.6,149.1 342.9,145.9 343.3,145.3 343.7,146.5 344.1,144.5 344.4,145.6 344.8,148.5 345.2,149.6 345.6,149.1 345.9,147.4 346.7,142.4 347.1,142.1 347.5,145.3 347.8,147.0 348.2,149.0 348.6,142.3 349.0,144.9 349.3,147.1 349.7,152.1 350.1,153.6 350.5,155.1 350.8,157.3 351.2,159.2 351.6,160.0 352.0,161.3 352.4,161.3 352.7,161.6 353.1,162.0 353.5,160.9 353.9,161.2 354.2,161.1 355.0,166.2 355.4,162.7 355.7,162.7 356.1,165.7 356.5,167.7 356.9,167.5 357.2,168.3 357.6,167.6 358.0,168.4 358.4,166.9 358.8,164.9 359.1,163.4 359.5,165.5 359.9,166.6 360.3,164.7 360.6,164.4 361.0,164.0 361.4,169.4 361.8,169.0 362.1,171.4 362.5,174.6 362.9,177.0 363.3,176.8 363.7,176.7 364.0,177.7 364.4,173.8 364.8,173.0 365.2,175.9 365.5,177.2 365.9,180.9 366.3,180.1 366.7,181.4 367.0,182.9 367.4,185.1 367.8,186.2 368.2,185.0 368.5,186.3 368.9,186.5 369.3,187.5 369.7,187.9 370.1,188.6 370.4,190.9 370.8,190.7 371.2,188.5 371.6,187.2 371.9,186.9 372.3,185.2 372.7,185.5 373.1,186.3 373.4,186.1 373.8,184.0 374.2,183.7 374.6,184.4 375.0,188.7 375.3,190.1 375.7,191.7 376.1,193.7 376.5,193.6 376.8,193.7 377.2,193.9 377.6,191.4 378.0,191.5 378.3,192.2 378.7,190.1 379.1,188.4 379.5,188.3 379.9,186.9 380.2,188.8 380.6,187.7 381.0,185.9 381.4,186.5 381.7,188.9 382.1,189.8 382.5,195.1 382.9,198.0 383.2,173.1 383.6,159.1 384.0,154.3 384.4,158.5 384.7,157.9 385.1,156.3 385.5,156.0 385.9,156.3 386.3,155.6 386.6,157.4 387.0,159.5 387.4,159.4 387.8,159.5 388.1,159.8 388.5,156.9 388.9,154.9 389.3,155.0 389.6,156.4 390.0,147.6 390.4,152.0 390.8,156.6 391.2,157.2 391.5,157.8 391.9,159.2 392.3,161.7 392.7,161.8 393.0,161.7 393.4,163.6 393.8,163.7 394.2,165.2 394.5,167.7 394.9,167.9 395.3,167.5 395.7,161.9 396.0,158.0 396.4,158.3 396.8,153.7 397.2,155.2 397.6,155.8 397.9,152.5 398.3,146.8 398.7,144.1 399.1,146.1 399.4,147.7 399.8,147.9 400.2,149.8 400.6,152.2 400.9,152.4 401.3,153.4 401.7,152.6 402.1,151.2 402.5,150.6 402.8,146.2 403.2,137.1 403.6,141.1 404.0,135.9 404.3,135.2 404.7,135.4 405.1,135.8 405.5,136.2 405.8,135.9 406.2,135.4 406.6,135.0 407.0,136.0 407.4,137.2 407.7,137.5 408.1,137.9 408.5,137.0 408.9,134.0 409.2,136.1 409.6,138.6 410.0,137.5 410.4,136.7 410.7,136.2 411.1,136.9 411.5,136.3 411.9,137.0 412.2,139.8 412.6,140.2 413.0,139.0 413.4,141.7 413.8,144.2 414.1,144.1 414.5,145.4 414.9,143.9 415.3,145.2 415.6,146.2 416.0,148.6 416.4,151.9 416.8,154.0 417.1,151.9 417.5,153.2 417.9,154.1 418.3,156.5 418.7,157.4 419.0,156.0 419.4,154.9 419.8,155.4 420.2,155.1 420.5,156.3 420.9,157.2 421.3,151.9 421.7,151.2 422.0,156.3 422.4,150.5 422.8,149.1 423.2,147.0 423.5,140.3 423.9,146.2 424.3,146.1 424.7,146.1 425.1,146.5 425.4,148.0 425.8,149.4 426.2,150.1 426.6,151.5 426.9,154.9 427.3,156.8 427.7,155.7 428.1,157.1 428.4,156.1 428.8,154.3 429.2,158.1 429.6,157.8 430.0,155.8 430.3,156.5 430.7,156.6 431.1,153.9 431.5,154.0 431.8,155.0 432.2,156.7 432.6,154.1 433.0,149.6 433.3,152.0 433.7,145.2 434.1,142.5 434.5,143.1 434.8,141.8 435.2,141.4 435.6,142.6 436.0,143.3 436.4,142.5 436.7,137.9 437.1,135.0 437.5,131.0 437.9,129.4 438.2,130.8 438.6,129.3 439.0,130.7 439.4,130.4 439.7,132.2 440.1,131.2 440.5,130.2 440.9,132.1 441.3,134.1 441.6,134.2 442.0,133.5 442.4,135.3 442.8,133.2 443.1,132.8 443.5,134.8 443.9,134.9 444.3,135.4 444.6,136.2 445.0,136.7 445.4,136.0 445.8,138.2 446.2,136.4 446.5,136.7 446.9,138.8 447.3,138.9 447.7,138.0 448.0,138.2 448.4,138.6 448.8,139.4 449.2,138.6 449.5,138.6 449.9,139.2 450.3,138.0 450.7,136.2 451.0,136.8 451.4,140.6 451.8,143.4 452.2,141.1 452.6,135.8 452.9,133.8 453.3,142.0 453.7,141.9 454.1,143.3 454.4,145.0 454.8,146.7 455.2,147.5 455.6,146.4 455.9,144.8 456.3,144.7 456.7,147.2 457.1,145.8 457.5,144.2 457.8,141.5 458.2,140.6 458.6,146.7 459.0,148.2 459.3,148.6 459.7,148.2 460.1,148.5 460.5,151.2 460.8,150.7 461.2,153.9 461.6,153.0 462.0,150.9 462.3,150.4 462.7,151.2 463.1,152.8 463.5,154.7 463.9,156.7 464.2,160.2 464.6,161.1 465.0,163.5 465.4,166.0 465.7,168.0 466.1,169.2 466.5,170.6 466.9,170.5 467.2,169.7 467.6,168.4 468.0,168.6"/><circle class="fA mean" cx="468.2" cy="172.0" r="3.5"/><text class="endlab" x="475.2" y="180.8"><tspan class="ro-n">A</tspan> 588.0R</text><circle class="fB mean" cx="468.2" cy="169.7" r="3.5"/><text class="endlab" x="475.2" y="167.8"><tspan class="ro-n">B</tspan> 570.6R</text></svg></div><div class="card"><h3>XAUUSD <span class="tag">r_equity · full window</span></h3><svg class="chart" viewBox="0 0 560 232" width="100%" preserveAspectRatio="xMidYMid meet" role="img"><line class="grid" x1="54" y1="144.8" x2="468" y2="144.8"/><text class="tick" x="48" y="148.3" text-anchor="end">0</text><line class="grid" x1="54" y1="80.3" x2="468" y2="80.3"/><text class="tick" x="48" y="83.8" text-anchor="end">+500</text><line class="grid" x1="54" y1="15.8" x2="468" y2="15.8"/><text class="tick" x="48" y="19.3" text-anchor="end">+1000</text><line class="zero" x1="54" y1="144.8" x2="468" y2="144.8"/><line class="grid" x1="102.6" y1="208" x2="102.6" y2="212"/><text class="tick" x="102.6" y="224" text-anchor="middle">2019</text><line class="grid" x1="200.2" y1="208" x2="200.2" y2="212"/><text class="tick" x="200.2" y="224" text-anchor="middle">2021</text><line class="grid" x1="297.7" y1="208" x2="297.7" y2="212"/><text class="tick" x="297.7" y="224" text-anchor="middle">2023</text><line class="grid" x1="395.3" y1="208" x2="395.3" y2="212"/><text class="tick" x="395.3" y="224" text-anchor="middle">2025</text><polygon class="fA band" points="54.0,144.8 54.4,144.3 54.8,147.3 55.1,146.9 55.5,148.8 55.9,144.6 56.3,152.4 56.6,152.9 57.0,150.6 57.4,152.3 57.8,148.3 58.1,151.8 58.5,153.0 58.9,154.7 59.3,154.9 59.7,151.6 60.0,150.6 60.4,147.8 60.8,146.0 61.2,147.4 61.5,148.3 61.9,149.2 62.3,149.7 62.7,150.4 63.0,150.7 63.4,151.0 63.8,154.8 64.2,154.4 64.5,155.5 64.9,154.5 65.3,153.8 65.7,153.6 66.1,148.4 66.4,155.4 66.8,161.3 67.2,160.0 67.6,160.6 67.9,160.8 68.3,160.4 68.7,155.6 69.1,155.8 69.4,160.4 69.8,161.0 70.2,161.2 70.6,164.1 71.0,163.5 71.3,163.1 71.7,158.8 72.1,157.9 72.5,159.4 72.8,163.7 73.2,163.6 73.6,162.7 74.0,166.8 74.3,167.8 74.7,167.7 75.1,168.1 75.5,167.8 75.8,162.6 76.2,163.1 76.6,165.2 77.0,167.7 77.4,168.0 77.7,169.3 78.1,169.6 78.5,171.7 78.9,173.4 79.2,171.0 79.6,171.9 80.0,172.0 80.4,165.8 80.7,168.4 81.1,168.4 81.5,166.3 81.9,171.6 82.3,171.6 82.6,172.8 83.0,176.0 83.4,182.0 83.8,184.9 84.1,180.3 84.5,180.3 84.9,174.0 85.3,175.5 85.6,174.5 86.0,173.8 86.4,177.3 86.8,176.5 87.2,177.1 87.5,178.9 87.9,178.9 88.3,178.9 88.7,180.8 89.0,180.6 89.4,183.0 89.8,184.5 90.2,186.0 90.5,184.0 90.9,185.3 91.3,182.9 91.7,173.3 92.0,171.0 92.4,169.1 92.8,173.2 93.2,175.1 93.6,177.4 93.9,180.1 94.3,178.8 94.7,180.1 95.1,181.2 95.4,183.4 95.8,182.4 96.2,181.9 96.6,180.9 96.9,180.3 97.3,179.3 97.7,179.5 98.1,175.4 98.5,177.3 98.8,174.9 99.2,171.7 99.6,171.4 100.0,174.7 100.3,173.0 100.7,172.3 101.1,171.4 101.5,179.9 101.8,179.7 102.2,179.5 102.6,178.8 103.0,177.9 103.3,179.9 103.7,180.7 104.1,185.0 104.5,185.3 104.9,181.9 105.2,179.1 105.6,183.7 106.0,183.5 106.4,181.5 106.7,181.2 107.1,180.0 107.5,178.3 107.9,179.8 108.2,180.4 108.6,183.9 109.0,186.5 109.4,184.8 109.8,184.9 110.1,181.2 110.5,178.5 110.9,158.9 111.3,161.1 111.6,165.1 112.0,165.3 112.4,164.1 112.8,165.8 113.1,163.7 113.5,169.4 113.9,168.3 114.3,164.9 114.6,164.6 115.0,165.0 115.4,166.1 115.8,164.4 116.2,165.7 116.5,165.3 116.9,165.0 117.3,164.6 117.7,164.3 118.0,166.0 118.4,166.6 118.8,169.7 119.2,171.8 119.5,171.1 119.9,172.0 120.3,172.9 120.7,174.5 121.1,174.4 121.4,170.8 121.8,171.4 122.2,170.1 122.6,168.0 122.9,163.2 123.3,159.6 123.7,158.7 124.1,158.6 124.4,162.1 124.8,163.5 125.2,161.7 125.6,160.4 126.0,158.3 126.3,160.5 126.7,162.9 127.1,159.9 127.5,165.0 127.8,163.8 128.2,166.5 128.6,166.3 129.0,168.2 129.3,169.4 129.7,170.2 130.1,170.9 130.5,172.3 130.8,172.4 131.2,171.1 131.6,161.4 132.0,161.9 132.4,158.2 132.7,162.7 133.1,168.2 133.5,168.5 133.9,169.4 134.2,169.3 134.6,169.0 135.0,169.9 135.4,166.4 135.7,167.6 136.1,169.9 136.5,167.3 136.9,170.7 137.3,172.8 137.6,173.5 138.0,173.5 138.4,173.5 138.8,174.6 139.1,173.4 139.5,173.7 139.9,174.3 140.3,176.1 140.6,176.6 141.0,176.4 141.4,177.3 141.8,179.3 142.1,180.0 142.5,180.6 142.9,178.7 143.3,178.7 143.7,171.3 144.0,163.8 144.4,161.4 144.8,160.6 145.2,160.4 145.5,159.0 145.9,164.3 146.3,165.7 146.7,165.0 147.0,166.3 147.4,161.5 147.8,162.1 148.2,166.1 148.6,162.4 148.9,164.2 149.3,163.6 149.7,164.4 150.1,165.1 150.4,161.4 150.8,161.0 151.2,159.4 151.6,154.8 151.9,149.8 152.3,151.1 152.7,155.4 153.1,156.1 153.5,157.4 153.8,156.5 154.2,157.1 154.6,159.9 155.0,160.1 155.3,161.5 155.7,161.8 156.1,158.5 156.5,159.4 156.8,159.3 157.2,159.8 157.6,160.2 158.0,154.0 158.3,148.2 158.7,146.7 159.1,153.2 159.5,154.0 159.9,154.7 160.2,154.6 160.6,153.8 161.0,145.8 161.4,142.2 161.7,147.6 162.1,149.9 162.5,143.7 162.9,143.4 163.2,143.3 163.6,143.1 164.0,144.4 164.4,143.0 164.8,142.3 165.1,139.7 165.5,140.0 165.9,141.6 166.3,142.1 166.6,143.6 167.0,143.3 167.4,143.7 167.8,146.3 168.1,146.0 168.5,145.4 168.9,145.4 169.3,147.0 169.6,147.6 170.0,146.4 170.4,146.8 170.8,147.0 171.2,145.8 171.5,149.1 171.9,146.4 172.3,149.4 172.7,150.7 173.0,150.5 173.4,150.4 173.8,150.3 174.2,152.5 174.5,151.1 174.9,150.8 175.3,153.1 175.7,152.9 176.1,154.7 176.4,154.1 176.8,154.1 177.2,155.5 177.6,155.6 177.9,156.9 178.3,154.9 178.7,151.6 179.1,144.8 179.4,151.5 179.8,152.9 180.2,148.5 180.6,147.2 180.9,144.1 181.3,133.2 181.7,141.7 182.1,139.4 182.5,141.9 182.8,142.0 183.2,140.8 183.6,143.2 184.0,144.7 184.3,145.4 184.7,145.0 185.1,143.8 185.5,146.3 185.8,146.0 186.2,147.7 186.6,145.1 187.0,140.9 187.4,141.0 187.7,141.6 188.1,141.2 188.5,137.0 188.9,136.7 189.2,138.2 189.6,134.8 190.0,139.0 190.4,138.8 190.7,141.2 191.1,141.1 191.5,134.8 191.9,130.8 192.3,135.7 192.6,132.4 193.0,132.0 193.4,132.6 193.8,132.7 194.1,131.6 194.5,126.5 194.9,129.5 195.3,130.2 195.6,129.4 196.0,129.1 196.4,122.7 196.8,123.7 197.1,126.9 197.5,127.0 197.9,126.4 198.3,123.6 198.7,122.7 199.0,125.7 199.8,125.5 200.2,127.0 200.5,125.4 200.9,124.9 201.3,123.9 201.7,123.7 202.0,123.5 202.4,124.4 202.8,125.3 203.2,123.8 203.6,125.0 203.9,125.5 204.3,126.3 204.7,113.9 205.1,115.8 205.4,119.1 205.8,119.2 206.2,119.5 206.6,116.0 206.9,116.4 207.3,115.9 207.7,114.9 208.1,114.4 208.4,113.5 208.8,112.3 209.2,114.0 209.6,106.4 210.0,116.8 210.3,115.5 210.7,117.7 211.1,116.9 211.5,116.5 211.8,109.7 212.2,109.5 212.6,110.8 213.0,109.9 213.3,109.2 213.7,109.2 214.1,111.5 214.5,112.4 214.9,112.0 215.2,112.1 215.6,112.0 216.0,111.6 216.4,107.4 216.7,107.1 217.1,114.0 217.5,112.5 217.9,110.7 218.2,110.4 218.6,109.3 219.0,113.1 219.4,113.2 219.8,112.3 220.1,116.8 220.5,116.9 220.9,119.6 221.3,119.3 221.6,119.9 222.0,122.1 222.4,117.7 222.8,117.3 223.1,117.6 223.5,119.4 223.9,120.2 224.3,119.5 224.6,117.9 225.0,114.7 225.4,114.2 225.8,115.4 226.2,120.0 226.5,119.3 226.9,120.0 227.3,123.8 227.7,125.3 228.0,126.3 228.4,126.2 228.8,125.8 229.2,122.0 229.5,111.1 229.9,116.2 230.3,117.1 230.7,116.4 231.1,116.6 231.4,114.8 231.8,113.3 232.2,116.4 232.6,118.3 232.9,117.8 233.3,117.2 233.7,113.7 234.1,117.2 234.4,117.9 234.8,110.2 235.2,109.4 235.6,114.8 235.9,115.6 236.3,115.9 236.7,120.4 237.1,120.2 237.5,120.5 237.8,123.5 238.2,122.3 238.6,119.5 239.0,117.9 239.3,113.5 239.7,115.1 240.1,114.1 240.5,115.3 240.8,117.4 241.2,118.5 241.6,118.4 242.0,117.2 242.4,117.2 242.7,118.3 243.1,120.6 243.5,121.9 243.9,120.4 244.2,119.9 244.6,122.1 245.0,124.7 245.4,124.7 245.7,124.6 246.1,128.0 246.5,128.3 246.9,125.1 247.3,126.5 247.6,125.5 248.0,125.3 248.4,123.1 248.8,122.2 249.1,122.3 249.5,124.1 249.9,123.6 250.3,124.8 250.6,124.1 251.0,127.4 251.4,120.6 251.8,122.2 252.1,125.4 252.5,125.5 252.9,125.8 253.3,125.3 253.7,127.7 254.0,127.7 254.4,126.6 254.8,126.1 255.2,125.3 255.5,125.1 255.9,124.9 256.3,122.8 256.7,127.4 257.0,126.4 257.4,127.7 257.8,126.9 258.2,125.2 258.6,122.3 258.9,121.0 259.3,122.7 259.7,123.9 260.1,122.7 260.4,123.2 260.8,123.1 261.2,125.1 261.6,127.5 261.9,123.6 262.3,111.1 262.7,109.8 263.1,114.4 263.4,115.5 263.8,117.8 264.2,116.1 264.6,99.2 265.0,104.5 265.3,107.1 265.7,105.5 266.1,116.1 266.5,115.2 266.8,114.9 267.2,114.1 267.6,117.0 268.0,115.8 268.3,116.1 268.7,117.8 269.1,117.9 269.5,119.3 269.9,117.4 270.2,122.5 270.6,123.6 271.0,122.4 271.4,129.2 271.7,129.4 272.1,129.3 272.5,130.7 272.9,128.2 273.2,135.8 273.6,135.3 274.0,135.0 274.4,134.9 274.7,132.9 275.1,138.5 275.5,139.1 275.9,137.1 276.3,137.7 276.6,142.3 277.0,142.4 277.4,141.2 277.8,142.3 278.1,145.9 278.5,143.4 278.9,148.6 279.3,148.9 279.6,150.8 280.0,150.0 280.4,149.6 280.8,150.9 281.2,150.9 281.5,150.6 281.9,150.8 282.3,151.1 282.7,152.2 283.0,151.8 283.4,151.8 283.8,152.1 284.2,151.8 284.5,154.8 284.9,154.1 285.3,154.1 285.7,149.9 286.1,149.9 286.4,151.3 286.8,151.1 287.2,150.8 287.6,152.1 287.9,155.8 288.3,162.0 288.7,163.6 289.1,163.7 289.4,163.0 289.8,155.9 290.2,153.6 290.6,139.6 290.9,121.8 291.3,116.8 291.7,117.2 292.1,118.2 292.5,117.7 292.8,121.0 293.2,123.2 293.6,128.8 294.0,128.5 294.3,126.6 294.7,129.9 295.1,129.8 295.5,131.7 295.8,132.9 296.2,131.8 296.6,131.6 297.0,130.7 297.4,132.5 298.1,129.0 298.5,130.0 298.9,129.8 299.2,127.6 299.6,127.2 300.0,126.2 300.4,125.9 300.7,126.2 301.1,130.5 301.5,131.3 301.9,128.8 302.2,135.6 302.6,135.5 303.0,136.4 303.4,137.7 303.8,136.7 304.1,136.3 304.5,137.2 304.9,138.0 305.3,137.8 305.6,137.2 306.0,135.5 306.4,131.7 306.8,132.0 307.1,130.4 307.5,130.5 307.9,132.8 308.3,132.1 308.7,133.2 309.0,129.5 309.4,130.1 309.8,131.0 310.2,130.0 310.5,131.2 310.9,129.7 311.3,130.4 311.7,129.2 312.0,128.3 312.4,132.4 312.8,128.4 313.2,134.7 313.6,137.6 313.9,138.8 314.3,139.0 314.7,140.1 315.1,141.5 315.4,142.7 315.8,139.4 316.2,137.6 316.6,139.1 316.9,140.6 317.3,141.6 317.7,139.6 318.1,138.2 318.4,141.4 318.8,142.2 319.2,146.1 319.6,145.1 320.0,145.5 320.3,147.2 320.7,146.1 321.1,147.4 321.5,145.1 321.8,146.3 322.2,146.8 322.6,146.1 323.0,152.3 323.3,151.2 323.7,151.1 324.1,150.0 324.5,149.5 324.9,152.4 325.2,149.2 325.6,152.8 326.0,151.2 326.4,155.3 326.7,154.8 327.1,153.3 327.5,153.3 327.9,149.9 328.2,147.0 328.6,146.9 329.0,147.8 329.4,147.9 329.7,144.8 330.1,145.0 330.5,145.3 330.9,138.2 331.3,140.7 331.6,139.6 332.0,137.1 332.4,135.1 332.8,131.9 333.1,138.6 333.5,128.5 333.9,123.2 334.3,117.0 334.6,116.5 335.0,116.1 335.4,115.5 335.8,112.8 336.2,112.8 336.5,102.7 336.9,100.7 337.3,102.5 337.7,108.7 338.0,107.7 338.4,108.6 338.8,111.0 339.2,110.0 339.5,109.3 339.9,109.2 340.3,108.0 340.7,108.6 341.1,108.8 341.4,109.9 341.8,107.2 342.2,106.7 342.6,99.8 342.9,106.7 343.3,107.9 343.7,105.7 344.1,105.4 344.4,106.9 344.8,108.6 345.2,106.4 345.6,106.5 345.9,104.2 346.7,105.1 347.1,108.4 347.5,111.2 347.8,117.7 348.2,118.7 348.6,116.8 349.0,115.9 349.3,116.9 349.7,120.7 350.1,122.4 350.5,121.8 350.8,121.6 351.2,123.0 351.6,125.2 352.0,127.8 352.4,125.0 352.7,123.5 353.1,120.0 353.5,120.4 353.9,126.9 354.2,128.6 355.0,120.0 355.4,114.8 355.7,115.6 356.1,116.7 356.5,117.3 356.9,117.4 357.2,119.8 357.6,123.1 358.0,124.0 358.4,123.5 358.8,121.4 359.1,121.3 359.5,124.7 359.9,119.1 360.3,115.1 360.6,126.3 361.0,126.9 361.4,127.5 361.8,128.1 362.1,129.1 362.5,126.4 362.9,131.1 363.3,130.1 363.7,132.1 364.0,132.5 364.4,131.5 364.8,130.1 365.2,128.2 365.5,122.3 365.9,122.9 366.3,124.1 366.7,127.0 367.0,127.8 367.4,108.7 367.8,105.5 368.2,110.7 368.5,118.8 368.9,121.0 369.3,121.0 369.7,122.9 370.1,123.2 370.4,125.0 370.8,125.3 371.2,123.5 371.6,123.6 371.9,125.2 372.3,125.6 372.7,120.6 373.1,115.5 373.4,114.3 373.8,114.3 374.2,116.7 374.6,117.5 375.0,118.3 375.3,119.1 375.7,119.8 376.1,119.3 376.5,116.1 376.8,116.2 377.2,118.7 377.6,116.5 378.0,120.8 378.3,122.5 378.7,126.8 379.1,127.6 379.5,124.9 379.9,126.6 380.2,128.2 380.6,125.0 381.0,124.7 381.4,125.6 381.7,127.3 382.1,125.0 382.5,124.2 382.9,123.4 383.2,124.8 383.6,126.9 384.0,128.9 384.4,128.2 384.7,127.9 385.1,121.0 385.5,117.0 385.9,111.8 386.3,120.5 386.6,124.3 387.0,122.8 387.4,122.8 387.8,119.3 388.1,119.6 388.5,112.5 388.9,106.1 389.3,108.8 389.6,107.9 390.0,105.6 390.4,99.9 390.8,102.1 391.2,103.8 391.5,103.9 391.9,89.7 392.3,97.9 392.7,91.0 393.0,98.9 393.4,96.0 393.8,93.6 394.2,92.9 394.5,95.0 394.9,92.3 395.3,93.5 395.7,94.1 396.0,94.9 396.4,96.8 396.8,96.9 397.2,93.6 397.6,92.9 397.9,91.7 398.3,90.7 398.7,81.5 399.1,83.2 399.4,86.2 399.8,88.6 400.2,95.6 400.6,94.5 400.9,93.8 401.3,99.3 401.7,96.0 402.1,94.9 402.5,98.8 402.8,97.4 403.2,94.7 403.6,96.7 404.0,96.5 404.3,100.7 404.7,100.9 405.1,100.5 405.5,99.1 405.8,98.7 406.2,99.9 406.6,101.1 407.0,101.0 407.4,99.4 407.7,98.1 408.1,96.3 408.5,89.2 408.9,87.9 409.2,82.0 409.6,82.1 410.0,83.9 410.4,84.9 410.7,85.0 411.1,85.2 411.5,87.8 411.9,67.3 412.2,61.5 412.6,70.9 413.0,68.4 413.4,65.1 413.8,72.8 414.1,72.8 414.5,75.9 414.9,73.9 415.3,74.7 415.6,75.7 416.0,78.8 416.4,80.0 416.8,81.0 417.1,78.8 417.5,78.6 417.9,78.8 418.3,79.8 418.7,80.3 419.0,79.6 419.4,79.0 419.8,78.5 420.2,79.9 420.5,79.2 420.9,77.6 421.3,76.9 421.7,76.8 422.0,77.6 422.4,74.6 422.8,77.7 423.2,77.4 423.5,76.9 423.9,74.2 424.3,74.6 424.7,82.1 425.1,82.5 425.4,80.4 425.8,83.1 426.2,86.9 426.6,91.1 426.9,93.8 427.3,87.9 427.7,82.5 428.1,74.8 428.4,72.5 428.8,65.0 429.2,69.2 429.6,71.4 430.0,70.8 430.3,72.8 430.7,66.1 431.1,68.3 431.5,65.7 431.8,68.0 432.2,73.0 432.6,71.2 433.0,70.1 433.3,71.8 433.7,68.1 434.1,68.4 434.5,72.2 434.8,73.9 435.2,72.4 435.6,72.9 436.0,70.5 436.4,68.6 436.7,71.3 437.1,72.1 437.5,70.9 437.9,69.3 438.2,68.4 438.6,70.7 439.0,68.3 439.4,65.7 439.7,64.2 440.1,63.6 440.5,66.8 440.9,69.2 441.3,66.4 441.6,66.5 442.0,66.6 442.4,65.4 442.8,59.5 443.1,57.8 443.5,57.1 443.9,56.1 444.3,56.8 444.6,51.3 445.0,50.5 445.4,45.0 445.8,44.4 446.2,45.3 446.5,46.1 446.9,44.3 447.3,42.4 447.7,35.1 448.0,39.4 448.4,35.8 448.8,35.7 449.2,38.7 449.5,38.2 449.9,41.2 450.3,41.2 450.7,39.3 451.0,36.8 451.4,37.8 451.8,42.0 452.2,41.3 452.6,41.8 452.9,41.5 453.3,36.1 453.7,32.9 454.1,30.3 454.4,30.2 454.8,24.9 455.2,28.4 455.6,30.3 455.9,30.3 456.3,29.7 456.7,30.3 457.1,29.3 457.5,29.7 457.8,22.4 458.2,20.9 458.6,30.0 459.0,34.0 459.3,34.2 459.7,32.2 460.1,32.2 460.5,32.4 460.8,25.3 461.2,26.2 461.6,29.9 462.0,30.7 462.3,29.9 462.7,33.5 463.1,34.5 463.5,29.6 463.9,29.1 464.2,31.9 464.6,30.3 465.0,34.4 465.4,31.2 465.7,31.5 466.1,30.8 466.5,30.6 466.9,31.0 467.2,29.8 467.6,29.2 468.0,29.5 468.0,33.4 467.6,30.7 467.2,31.5 466.9,31.5 466.5,32.3 466.1,31.8 465.7,33.2 465.4,35.5 465.0,35.7 464.6,37.1 464.2,35.2 463.9,33.4 463.5,36.1 463.1,36.5 462.7,36.6 462.3,33.9 462.0,36.1 461.6,36.3 461.2,30.8 460.8,35.9 460.5,35.2 460.1,34.0 459.7,34.9 459.3,35.0 459.0,35.8 458.6,36.2 458.2,32.4 457.8,33.5 457.5,31.1 457.1,31.0 456.7,31.0 456.3,31.3 455.9,32.3 455.6,31.7 455.2,31.1 454.8,30.9 454.4,36.0 454.1,37.0 453.7,41.0 453.3,45.4 452.9,43.7 452.6,43.1 452.2,43.4 451.8,42.5 451.4,42.6 451.0,39.2 450.7,42.1 450.3,42.7 449.9,42.9 449.5,41.8 449.2,40.5 448.8,41.6 448.4,40.1 448.0,42.1 447.7,44.1 447.3,44.0 446.9,47.7 446.5,49.3 446.2,49.2 445.8,47.8 445.4,50.5 445.0,55.6 444.6,58.7 444.3,60.4 443.9,59.6 443.5,61.9 443.1,62.1 442.8,67.0 442.4,68.3 442.0,69.9 441.6,69.9 441.3,72.8 440.9,71.8 440.5,69.8 440.1,67.7 439.7,66.7 439.4,70.0 439.0,74.9 438.6,74.3 438.2,72.0 437.9,71.7 437.5,73.5 437.1,73.8 436.7,74.2 436.4,76.0 436.0,75.5 435.6,75.9 435.2,76.7 434.8,77.3 434.5,75.0 434.1,72.5 433.7,73.3 433.3,74.6 433.0,73.8 432.6,73.2 432.2,74.0 431.8,74.3 431.5,70.6 431.1,70.7 430.7,72.9 430.3,74.0 430.0,74.4 429.6,73.6 429.2,72.9 428.8,74.6 428.4,78.3 428.1,86.1 427.7,89.0 427.3,96.1 426.9,97.0 426.6,94.3 426.2,91.9 425.8,87.9 425.4,85.4 425.1,83.0 424.7,83.1 424.3,84.0 423.9,79.5 423.5,77.8 423.2,78.0 422.8,78.4 422.4,79.1 422.0,82.2 421.7,82.1 421.3,81.7 420.9,81.1 420.5,82.1 420.2,81.9 419.8,82.1 419.4,83.2 419.0,83.6 418.7,83.1 418.3,81.9 417.9,81.4 417.5,81.6 417.1,82.8 416.8,85.1 416.4,82.0 416.0,84.9 415.6,79.8 415.3,79.2 414.9,77.1 414.5,77.0 414.1,76.6 413.8,74.5 413.4,73.3 413.0,72.4 412.6,75.2 412.2,76.0 411.9,88.9 411.5,88.7 411.1,89.6 410.7,86.5 410.4,88.7 410.0,88.8 409.6,87.4 409.2,90.5 408.9,90.0 408.5,98.8 408.1,99.3 407.7,101.9 407.4,101.8 407.0,102.3 406.6,104.5 406.2,102.9 405.8,101.7 405.5,101.2 405.1,101.3 404.7,103.8 404.3,102.5 404.0,101.4 403.6,100.0 403.2,98.5 402.8,103.0 402.5,101.5 402.1,99.9 401.7,101.1 401.3,100.8 400.9,100.4 400.6,99.5 400.2,99.9 399.8,96.5 399.4,90.8 399.1,94.6 398.7,96.5 398.3,94.9 397.9,98.1 397.6,96.5 397.2,100.7 396.8,98.1 396.4,97.9 396.0,98.0 395.7,96.7 395.3,98.0 394.9,98.2 394.5,97.8 394.2,98.5 393.8,97.8 393.4,99.6 393.0,99.9 392.7,103.2 392.3,108.8 391.9,107.8 391.5,104.5 391.2,104.7 390.8,104.7 390.4,108.6 390.0,108.0 389.6,110.8 389.3,111.3 388.9,115.7 388.5,122.5 388.1,121.9 387.8,123.5 387.4,123.3 387.0,124.4 386.6,124.6 386.3,124.0 385.9,121.0 385.5,122.8 385.1,132.4 384.7,131.1 384.4,130.5 384.0,131.2 383.6,129.7 383.2,127.6 382.9,126.9 382.5,126.2 382.1,127.8 381.7,128.4 381.4,127.8 381.0,126.2 380.6,132.6 380.2,133.5 379.9,130.6 379.5,130.1 379.1,130.2 378.7,130.0 378.3,127.9 378.0,123.5 377.6,121.1 377.2,120.9 376.8,122.4 376.5,120.4 376.1,120.9 375.7,122.0 375.3,121.7 375.0,120.9 374.6,121.3 374.2,118.5 373.8,119.5 373.4,117.6 373.1,125.1 372.7,127.0 372.3,127.8 371.9,129.5 371.6,126.8 371.2,127.6 370.8,127.2 370.4,126.2 370.1,126.3 369.7,123.9 369.3,124.0 368.9,123.7 368.5,121.3 368.2,121.0 367.8,115.6 367.4,134.2 367.0,133.0 366.7,129.9 366.3,127.8 365.9,124.6 365.5,131.0 365.2,131.0 364.8,133.3 364.4,134.9 364.0,134.2 363.7,134.5 363.3,132.4 362.9,131.2 362.5,131.2 362.1,131.0 361.8,130.1 361.4,131.0 361.0,130.8 360.6,128.1 360.3,127.4 359.9,125.9 359.5,125.7 359.1,125.3 358.8,123.4 358.4,123.9 358.0,126.3 357.6,125.3 357.2,123.6 356.9,121.5 356.5,119.9 356.1,117.6 355.7,117.3 355.4,121.1 355.0,128.0 354.2,132.1 353.9,129.6 353.5,128.9 353.1,124.3 352.7,127.5 352.4,128.5 352.0,128.4 351.6,128.8 351.2,126.6 350.8,124.2 350.5,124.1 350.1,124.9 349.7,123.4 349.3,121.9 349.0,119.3 348.6,120.5 348.2,120.0 347.8,120.5 347.5,117.8 347.1,111.6 346.7,110.3 345.9,107.8 345.6,108.1 345.2,110.0 344.8,110.7 344.4,108.8 344.1,107.7 343.7,109.4 343.3,110.7 342.9,109.8 342.6,107.3 342.2,108.1 341.8,110.7 341.4,111.0 341.1,111.3 340.7,110.8 340.3,110.3 339.9,110.4 339.5,110.8 339.2,111.8 338.8,111.5 338.4,111.3 338.0,109.1 337.7,109.0 337.3,109.1 336.9,107.8 336.5,114.9 336.2,116.9 335.8,120.9 335.4,119.1 335.0,120.8 334.6,120.3 334.3,123.7 333.9,129.8 333.5,139.4 333.1,139.8 332.8,140.1 332.4,139.3 332.0,141.7 331.6,142.6 331.3,142.7 330.9,145.9 330.5,147.9 330.1,147.2 329.7,153.4 329.4,150.5 329.0,150.8 328.6,151.2 328.2,151.7 327.9,154.3 327.5,155.4 327.1,158.9 326.7,157.8 326.4,156.9 326.0,157.4 325.6,154.8 325.2,154.5 324.9,153.8 324.5,153.9 324.1,154.5 323.7,151.8 323.3,153.2 323.0,153.9 322.6,152.8 322.2,150.1 321.8,149.3 321.5,149.4 321.1,148.6 320.7,149.0 320.3,149.1 320.0,147.7 319.6,146.8 319.2,146.8 318.8,146.9 318.4,143.5 318.1,142.8 317.7,142.7 317.3,142.2 316.9,143.2 316.6,141.1 316.2,140.4 315.8,144.0 315.4,143.9 315.1,144.0 314.7,143.2 314.3,140.6 313.9,140.4 313.6,138.8 313.2,138.4 312.8,137.0 312.4,135.5 312.0,132.8 311.7,132.3 311.3,133.5 310.9,133.8 310.5,133.6 310.2,135.6 309.8,133.9 309.4,134.3 309.0,133.6 308.7,133.8 308.3,134.0 307.9,133.5 307.5,133.7 307.1,132.2 306.8,134.2 306.4,137.4 306.0,137.6 305.6,139.1 305.3,138.7 304.9,139.6 304.5,140.4 304.1,137.4 303.8,138.6 303.4,138.4 303.0,138.7 302.6,137.7 302.2,139.3 301.9,139.3 301.5,132.0 301.1,132.1 300.7,132.1 300.4,128.1 300.0,130.7 299.6,128.3 299.2,131.0 298.9,131.0 298.5,132.6 298.1,134.0 297.4,135.5 297.0,133.2 296.6,132.7 296.2,134.3 295.8,134.4 295.5,134.2 295.1,133.1 294.7,130.9 294.3,131.3 294.0,130.2 293.6,131.5 293.2,130.6 292.8,124.1 292.5,124.1 292.1,120.4 291.7,122.8 291.3,128.2 290.9,145.5 290.6,159.4 290.2,158.7 289.8,168.7 289.4,164.4 289.1,166.7 288.7,166.3 288.3,164.4 287.9,163.2 287.6,156.5 287.2,154.2 286.8,153.3 286.4,152.8 286.1,152.0 285.7,155.3 285.3,156.7 284.9,156.2 284.5,156.5 284.2,156.3 283.8,153.2 283.4,154.2 283.0,154.8 282.7,153.6 282.3,154.2 281.9,152.5 281.5,151.1 281.2,151.6 280.8,151.9 280.4,151.9 280.0,150.9 279.6,152.0 279.3,152.6 278.9,150.0 278.5,149.7 278.1,148.2 277.8,146.3 277.4,144.7 277.0,143.2 276.6,144.3 276.3,143.8 275.9,143.2 275.5,142.0 275.1,140.0 274.7,139.8 274.4,135.1 274.0,135.4 273.6,135.9 273.2,135.8 272.9,136.0 272.5,131.1 272.1,131.5 271.7,130.7 271.4,129.8 271.0,130.3 270.6,128.6 270.2,125.9 269.9,124.2 269.5,121.1 269.1,120.6 268.7,118.8 268.3,118.2 268.0,117.3 267.6,118.3 267.2,118.4 266.8,115.6 266.5,116.7 266.1,117.4 265.7,117.6 265.3,117.9 265.0,117.9 264.6,117.1 264.2,119.0 263.8,120.4 263.4,118.2 263.1,116.7 262.7,117.4 262.3,126.7 261.9,131.8 261.6,130.7 261.2,127.8 260.8,125.9 260.4,125.7 260.1,124.7 259.7,125.6 259.3,124.6 258.9,123.9 258.6,127.1 258.2,128.5 257.8,128.3 257.4,128.5 257.0,128.7 256.7,127.6 256.3,127.5 255.9,125.8 255.5,125.8 255.2,127.3 254.8,127.1 254.4,128.1 254.0,128.6 253.7,129.1 253.3,127.8 252.9,126.8 252.5,128.9 252.1,128.8 251.8,127.1 251.4,128.4 251.0,128.1 250.6,128.5 250.3,127.4 249.9,125.9 249.5,127.9 249.1,126.7 248.8,126.8 248.4,126.9 248.0,126.0 247.6,128.5 247.3,128.4 246.9,130.2 246.5,129.9 246.1,128.9 245.7,128.5 245.4,125.4 245.0,125.2 244.6,125.0 244.2,123.0 243.9,122.1 243.5,124.1 243.1,124.9 242.7,121.0 242.4,120.2 242.0,118.5 241.6,118.7 241.2,119.5 240.8,119.3 240.5,118.0 240.1,116.7 239.7,117.3 239.3,121.5 239.0,121.5 238.6,123.2 238.2,125.1 237.8,125.0 237.5,124.8 237.1,121.2 236.7,121.4 236.3,120.8 235.9,116.4 235.6,116.3 235.2,116.4 234.8,121.3 234.4,120.6 234.1,119.5 233.7,117.5 233.3,118.8 232.9,118.8 232.6,118.9 232.2,119.4 231.8,118.1 231.4,118.9 231.1,117.3 230.7,117.5 230.3,118.2 229.9,119.1 229.5,122.7 229.2,128.9 228.8,127.8 228.4,128.0 228.0,130.3 227.7,127.2 227.3,126.5 226.9,124.4 226.5,122.2 226.2,122.1 225.8,120.7 225.4,117.9 225.0,119.5 224.6,121.1 224.3,122.2 223.9,122.8 223.5,121.0 223.1,121.0 222.8,119.6 222.4,123.4 222.0,123.9 221.6,124.3 221.3,122.3 220.9,121.3 220.5,121.2 220.1,117.4 219.8,117.8 219.4,116.2 219.0,114.0 218.6,114.3 218.2,115.0 217.9,116.9 217.5,116.3 217.1,118.9 216.7,119.5 216.4,117.5 216.0,117.4 215.6,114.7 215.2,113.7 214.9,113.5 214.5,113.1 214.1,114.4 213.7,112.0 213.3,111.1 213.0,111.2 212.6,111.2 212.2,112.7 211.8,118.2 211.5,120.2 211.1,119.8 210.7,120.4 210.3,120.3 210.0,118.5 209.6,117.9 209.2,118.1 208.8,114.9 208.4,116.0 208.1,116.0 207.7,119.0 207.3,119.1 206.9,117.9 206.6,119.9 206.2,120.2 205.8,120.5 205.4,121.7 205.1,121.5 204.7,128.7 204.3,127.4 203.9,128.0 203.6,127.6 203.2,126.6 202.8,126.4 202.4,126.2 202.0,126.4 201.7,125.6 201.3,125.7 200.9,126.2 200.5,126.8 200.2,127.9 199.8,128.1 199.0,126.4 198.7,127.1 198.3,128.1 197.9,128.5 197.5,128.6 197.1,129.8 196.8,129.1 196.4,130.3 196.0,131.2 195.6,130.5 195.3,131.3 194.9,131.4 194.5,133.5 194.1,136.1 193.8,133.7 193.4,133.3 193.0,134.3 192.6,138.1 192.3,138.9 191.9,138.8 191.5,144.7 191.1,143.0 190.7,143.7 190.4,142.6 190.0,139.9 189.6,139.9 189.2,139.1 188.9,141.3 188.5,142.5 188.1,142.4 187.7,143.5 187.4,143.0 187.0,147.6 186.6,151.4 186.2,150.6 185.8,150.6 185.5,147.7 185.1,148.3 184.7,146.7 184.3,147.2 184.0,147.3 183.6,146.2 183.2,144.9 182.8,142.9 182.5,142.8 182.1,143.8 181.7,143.2 181.3,144.3 180.9,150.1 180.6,150.4 180.2,154.4 179.8,154.5 179.4,154.1 179.1,152.2 178.7,155.5 178.3,160.8 177.9,160.4 177.6,157.6 177.2,156.6 176.8,156.5 176.4,155.5 176.1,155.0 175.7,155.2 175.3,153.8 174.9,153.6 174.5,152.5 174.2,153.4 173.8,153.6 173.4,152.6 173.0,152.6 172.7,153.8 172.3,152.5 171.9,151.1 171.5,149.6 171.2,150.7 170.8,150.6 170.4,148.5 170.0,148.9 169.6,148.5 169.3,149.0 168.9,148.1 168.5,148.2 168.1,149.0 167.8,146.5 167.4,146.0 167.0,145.5 166.6,145.6 166.3,145.0 165.9,142.3 165.5,142.5 165.1,143.1 164.8,143.8 164.4,144.7 164.0,145.9 163.6,146.0 163.2,145.3 162.9,145.6 162.5,150.7 162.1,151.2 161.7,150.9 161.4,150.0 161.0,154.8 160.6,156.4 160.2,155.3 159.9,155.5 159.5,155.6 159.1,157.0 158.7,155.5 158.3,154.5 158.0,160.7 157.6,161.9 157.2,162.9 156.8,161.8 156.5,161.8 156.1,163.4 155.7,163.6 155.3,162.5 155.0,162.2 154.6,163.3 154.2,162.9 153.8,158.0 153.5,159.0 153.1,159.2 152.7,156.6 152.3,156.9 151.9,155.2 151.6,160.5 151.2,161.7 150.8,162.2 150.4,165.3 150.1,167.1 149.7,167.3 149.3,165.2 148.9,167.6 148.6,167.7 148.2,167.0 147.8,167.4 147.4,169.6 147.0,167.5 146.7,167.3 146.3,167.2 145.9,166.7 145.5,165.2 145.2,163.8 144.8,165.3 144.4,167.0 144.0,175.6 143.7,180.9 143.3,180.1 142.9,182.4 142.5,182.5 142.1,182.5 141.8,180.7 141.4,180.2 141.0,178.4 140.6,178.3 140.3,178.9 139.9,177.7 139.5,175.3 139.1,175.7 138.8,176.1 138.4,176.8 138.0,175.8 137.6,176.9 137.3,174.5 136.9,173.0 136.5,171.1 136.1,171.1 135.7,171.6 135.4,171.2 135.0,170.7 134.6,170.8 134.2,170.4 133.9,171.3 133.5,170.2 133.1,169.7 132.7,168.6 132.4,166.0 132.0,165.7 131.6,171.8 131.2,174.5 130.8,174.6 130.5,173.5 130.1,172.9 129.7,171.2 129.3,171.0 129.0,171.1 128.6,169.0 128.2,168.5 127.8,167.3 127.5,166.2 127.1,165.2 126.7,163.0 126.3,162.4 126.0,161.3 125.6,162.5 125.2,165.7 124.8,164.8 124.4,164.2 124.1,163.7 123.7,162.7 123.3,165.0 122.9,168.0 122.6,173.4 122.2,173.4 121.8,172.9 121.4,175.4 121.1,174.8 120.7,176.7 120.3,175.7 119.9,173.7 119.5,173.4 119.2,172.2 118.8,172.3 118.4,171.6 118.0,169.5 117.7,170.4 117.3,166.9 116.9,166.0 116.5,167.5 116.2,168.4 115.8,167.7 115.4,168.6 115.0,168.4 114.6,165.9 114.3,168.6 113.9,170.2 113.5,169.9 113.1,170.5 112.8,168.8 112.4,168.0 112.0,168.4 111.6,165.4 111.3,166.2 110.9,168.5 110.5,187.5 110.1,189.3 109.8,188.0 109.4,187.0 109.0,187.9 108.6,188.3 108.2,186.0 107.9,181.2 107.5,182.1 107.1,182.3 106.7,182.1 106.4,184.1 106.0,185.7 105.6,186.3 105.2,185.0 104.9,187.9 104.5,188.0 104.1,187.0 103.7,186.2 103.3,183.6 103.0,180.6 102.6,179.9 102.2,180.0 101.8,181.1 101.5,181.6 101.1,178.6 100.7,175.0 100.3,175.2 100.0,176.7 99.6,175.6 99.2,177.5 98.8,181.0 98.5,179.4 98.1,181.1 97.7,181.9 97.3,181.3 96.9,182.0 96.6,183.1 96.2,183.8 95.8,184.0 95.4,187.4 95.1,186.5 94.7,181.6 94.3,180.7 93.9,180.9 93.6,180.7 93.2,177.8 92.8,175.9 92.4,174.6 92.0,176.3 91.7,184.7 91.3,186.8 90.9,187.2 90.5,186.6 90.2,186.3 89.8,186.4 89.4,185.4 89.0,184.0 88.7,183.7 88.3,180.9 87.9,181.4 87.5,180.4 87.2,179.8 86.8,179.5 86.4,180.0 86.0,178.0 85.6,176.5 85.3,178.4 84.9,181.5 84.5,183.3 84.1,185.5 83.8,186.9 83.4,185.7 83.0,182.8 82.6,177.5 82.3,174.8 81.9,172.3 81.5,172.5 81.1,172.6 80.7,170.5 80.4,173.1 80.0,173.9 79.6,174.6 79.2,176.8 78.9,174.5 78.5,175.4 78.1,172.8 77.7,171.3 77.4,171.0 77.0,169.2 76.6,168.5 76.2,165.4 75.8,170.5 75.5,170.0 75.1,168.6 74.7,168.6 74.3,168.5 74.0,168.7 73.6,167.5 73.2,164.9 72.8,166.4 72.5,165.3 72.1,160.2 71.7,167.3 71.3,166.0 71.0,166.4 70.6,164.6 70.2,164.8 69.8,163.2 69.4,161.7 69.1,161.2 68.7,160.4 68.3,164.9 67.9,163.1 67.6,161.8 67.2,161.6 66.8,161.8 66.4,162.1 66.1,156.1 65.7,154.2 65.3,156.5 64.9,156.6 64.5,161.6 64.2,159.5 63.8,156.8 63.4,156.5 63.0,153.6 62.7,154.8 62.3,154.3 61.9,151.3 61.5,150.7 61.2,149.4 60.8,149.5 60.4,153.3 60.0,152.9 59.7,157.3 59.3,156.5 58.9,156.9 58.5,156.7 58.1,154.1 57.8,153.1 57.4,155.1 57.0,157.0 56.6,156.4 56.3,153.7 55.9,152.6 55.5,149.3 55.1,149.6 54.8,148.2 54.4,147.7 54.0,144.8"/><polygon class="fB band" points="54.0,144.8 54.4,144.3 54.8,147.4 55.1,147.0 55.5,149.2 55.9,148.8 56.3,152.5 56.6,154.2 57.0,151.7 57.4,154.6 57.8,153.8 58.1,155.6 58.5,156.8 58.9,158.5 59.3,158.8 59.7,155.5 60.0,154.5 60.4,141.7 60.8,136.1 61.2,143.9 61.5,145.2 61.9,146.0 62.3,142.7 62.7,148.5 63.0,149.5 63.4,149.7 63.8,152.4 64.2,152.0 64.5,152.0 64.9,151.0 65.3,150.6 65.7,150.5 66.1,147.5 66.4,151.9 66.8,154.6 67.2,152.4 67.6,154.5 67.9,156.6 68.3,156.5 68.7,151.7 69.1,151.8 69.4,155.1 69.8,155.7 70.2,156.6 70.6,156.7 71.0,157.8 71.3,157.8 71.7,156.8 72.1,156.3 72.5,157.1 72.8,158.1 73.2,157.9 73.6,158.2 74.0,161.9 74.3,162.2 74.7,162.1 75.1,163.4 75.5,163.1 75.8,160.2 76.2,160.6 76.6,162.3 77.0,162.8 77.4,162.6 77.7,163.5 78.1,161.6 78.5,163.8 78.9,166.1 79.2,161.7 79.6,163.7 80.0,163.8 80.4,157.5 80.7,160.1 81.1,160.5 81.5,158.4 81.9,163.6 82.3,164.0 82.6,166.9 83.0,170.4 83.4,173.9 83.8,176.8 84.1,172.2 84.5,174.4 84.9,172.1 85.3,171.7 85.6,170.6 86.0,172.3 86.4,175.8 86.8,174.6 87.2,174.8 87.5,173.9 87.9,173.9 88.3,178.2 88.7,178.5 89.0,181.0 89.4,181.9 89.8,183.3 90.2,185.5 90.5,186.2 90.9,186.9 91.3,184.9 91.7,176.2 92.0,173.8 92.4,174.1 92.8,178.6 93.2,179.3 93.6,182.4 93.9,184.4 94.3,183.5 94.7,185.1 95.1,185.8 95.4,184.6 95.8,182.7 96.2,181.6 96.6,179.1 96.9,177.8 97.3,177.2 97.7,179.3 98.1,174.6 98.5,177.1 98.8,175.4 99.2,172.2 99.6,172.0 100.0,174.6 100.3,175.3 100.7,171.8 101.1,170.2 101.5,178.7 101.8,178.2 102.2,178.0 102.6,177.3 103.0,176.4 103.3,178.2 103.7,177.4 104.1,182.0 104.5,182.8 104.9,181.4 105.2,178.6 105.6,184.1 106.0,181.6 106.4,175.6 106.7,174.6 107.1,176.3 107.5,175.4 107.9,178.2 108.2,178.8 108.6,181.6 109.0,183.5 109.4,182.1 109.8,182.2 110.1,182.8 110.5,181.8 110.9,175.1 111.3,172.6 111.6,172.6 112.0,174.1 112.4,174.6 112.8,177.6 113.1,178.4 113.5,184.4 113.9,183.1 114.3,177.6 114.6,177.2 115.0,178.5 115.4,179.0 115.8,177.3 116.2,178.6 116.5,178.1 116.9,177.9 117.3,177.6 117.7,177.0 118.0,178.7 118.4,179.2 118.8,182.6 119.2,184.3 119.5,183.6 119.9,186.5 120.3,186.4 120.7,184.0 121.1,183.8 121.4,182.2 121.8,182.6 122.2,178.7 122.6,178.2 122.9,170.9 123.3,165.5 123.7,164.0 124.1,167.2 124.4,169.7 124.8,170.8 125.2,169.1 125.6,167.7 126.0,165.7 126.3,167.8 126.7,170.1 127.1,169.6 127.5,171.8 127.8,170.5 128.2,173.2 128.6,175.2 129.0,176.4 129.3,177.6 129.7,178.1 130.1,178.5 130.5,180.0 130.8,180.4 131.2,181.1 131.6,177.5 132.0,177.7 132.4,172.3 132.7,176.8 133.1,182.2 133.5,182.1 133.9,183.2 134.2,181.7 134.6,182.1 135.0,183.6 135.4,180.1 135.7,181.3 136.1,183.6 136.5,181.0 136.9,185.3 137.3,185.8 137.6,189.3 138.0,189.8 138.4,189.8 138.8,191.9 139.1,190.6 139.5,190.0 139.9,191.2 140.3,193.1 140.6,193.6 141.0,192.4 141.4,195.1 141.8,196.5 142.1,196.2 142.5,197.4 142.9,195.1 143.3,194.9 143.7,195.0 144.0,193.8 144.4,193.3 144.8,188.6 145.2,186.8 145.5,186.4 145.9,191.7 146.3,192.2 146.7,191.5 147.0,193.3 147.4,189.2 147.8,189.8 148.2,192.3 148.6,189.8 148.9,193.8 149.3,195.4 149.7,195.5 150.1,196.7 150.4,193.0 150.8,192.6 151.2,190.9 151.6,186.3 151.9,181.3 152.3,181.1 152.7,186.5 153.1,187.1 153.5,185.7 153.8,183.0 154.2,185.7 154.6,188.1 155.0,188.2 155.3,190.2 155.7,190.7 156.1,188.0 156.5,190.2 156.8,190.1 157.2,191.6 157.6,191.9 158.0,185.8 158.3,180.0 158.7,178.5 159.1,184.1 159.5,185.0 159.9,185.2 160.2,184.8 160.6,184.4 161.0,176.4 161.4,172.8 161.7,177.7 162.1,180.8 162.5,174.6 162.9,174.3 163.2,174.1 163.6,173.8 164.0,175.0 164.4,173.6 164.8,172.9 165.1,170.3 165.5,170.7 165.9,171.7 166.3,171.5 166.6,172.3 167.0,171.8 167.4,172.2 167.8,174.8 168.1,173.6 168.5,176.3 168.9,177.5 169.3,179.3 169.6,179.4 170.0,177.2 170.4,178.9 170.8,179.1 171.2,179.8 171.5,180.1 171.9,178.2 172.3,180.3 172.7,179.5 173.0,179.1 173.4,179.0 173.8,181.0 174.2,179.6 174.5,171.7 174.9,172.4 175.3,177.3 175.7,177.0 176.1,179.0 176.4,178.7 176.8,176.9 177.2,181.5 177.6,182.3 177.9,183.6 178.3,181.4 178.7,178.2 179.1,171.3 179.4,177.3 179.8,177.2 180.2,172.8 180.6,171.5 180.9,169.1 181.3,158.1 181.7,166.6 182.1,164.0 182.5,166.5 182.8,166.9 183.2,166.4 183.6,168.0 184.0,169.0 184.3,167.9 184.7,166.8 185.1,169.3 185.5,170.8 185.8,170.8 186.2,172.2 186.6,169.1 187.0,164.9 187.4,165.0 187.7,163.4 188.1,161.2 188.5,160.7 188.9,160.3 189.2,159.8 189.6,160.4 190.0,162.3 190.4,162.5 190.7,166.1 191.1,166.0 191.5,160.7 191.9,156.8 192.3,158.2 192.6,149.7 193.0,148.8 193.4,154.1 193.8,154.1 194.1,153.5 194.5,153.2 194.9,155.4 195.3,154.7 195.6,154.0 196.0,153.7 196.4,146.8 196.8,147.8 197.1,150.2 197.5,150.3 197.9,149.8 198.3,147.0 198.7,146.1 199.0,145.1 199.8,146.6 200.2,146.6 200.5,139.9 200.9,137.9 201.3,137.7 201.7,137.2 202.0,138.2 202.4,140.2 202.8,141.4 203.2,140.1 203.6,141.3 203.9,141.9 204.3,144.9 204.7,132.0 205.1,133.9 205.4,137.3 205.8,137.4 206.2,138.0 206.6,134.2 206.9,134.6 207.3,133.7 207.7,133.1 208.1,132.6 208.4,131.7 208.8,131.7 209.2,131.7 209.6,130.7 210.0,133.1 210.3,133.4 210.7,136.8 211.1,136.5 211.5,138.7 211.8,125.5 212.2,125.2 212.6,127.1 213.0,124.1 213.3,121.5 213.7,124.4 214.1,124.7 214.5,127.1 214.9,126.6 215.2,127.0 215.6,129.0 216.0,129.5 216.4,131.8 216.7,131.7 217.1,132.6 217.5,132.5 217.9,133.2 218.2,131.5 218.6,130.3 219.0,132.6 219.4,131.5 219.8,130.6 220.1,134.5 220.5,134.4 220.9,137.1 221.3,137.3 221.6,138.6 222.0,139.6 222.4,135.2 222.8,134.7 223.1,135.1 223.5,136.9 223.9,139.0 224.3,139.7 224.6,126.0 225.0,114.0 225.4,112.0 225.8,124.2 226.2,125.5 226.5,126.5 226.9,124.6 227.3,129.7 227.7,132.1 228.0,133.4 228.4,135.2 228.8,130.4 229.2,129.2 229.5,118.4 229.9,122.4 230.3,125.5 230.7,125.0 231.1,125.0 231.4,124.0 231.8,123.1 232.2,125.2 232.6,127.2 232.9,124.1 233.3,125.1 233.7,121.2 234.1,125.6 234.4,126.1 234.8,119.6 235.2,118.8 235.6,123.4 235.9,125.1 236.3,124.4 236.7,127.1 237.1,122.7 237.5,124.8 237.8,130.6 238.2,128.9 238.6,126.9 239.0,126.0 239.3,127.4 239.7,128.1 240.1,127.2 240.5,130.0 240.8,131.0 241.2,127.0 241.6,133.1 242.0,132.0 242.4,132.0 242.7,131.4 243.1,134.7 243.5,135.9 243.9,134.4 244.2,134.1 244.6,135.6 245.0,137.5 245.4,137.2 245.7,137.2 246.1,140.1 246.5,140.7 246.9,129.5 247.3,133.5 247.6,135.7 248.0,135.5 248.4,133.3 248.8,128.2 249.1,131.4 249.5,136.2 249.9,135.6 250.3,133.0 250.6,131.8 251.0,135.1 251.4,130.2 251.8,131.8 252.1,135.7 252.5,132.5 252.9,133.0 253.3,134.1 253.7,136.8 254.0,136.7 254.4,135.4 254.8,134.5 255.2,133.7 255.5,133.5 255.9,133.0 256.3,129.4 256.7,135.8 257.0,139.1 257.4,140.5 257.8,139.6 258.2,137.8 258.6,134.8 258.9,133.6 259.3,135.7 259.7,135.5 260.1,134.2 260.4,135.1 260.8,136.7 261.2,138.6 261.6,139.4 261.9,137.0 262.3,124.5 262.7,123.2 263.1,127.5 263.4,127.0 263.8,127.4 264.2,125.1 264.6,122.9 265.0,123.8 265.3,124.1 265.7,123.7 266.1,115.4 266.5,114.6 266.8,118.7 267.2,118.9 267.6,121.6 268.0,120.4 268.3,118.3 268.7,121.8 269.1,122.8 269.5,125.0 269.9,123.7 270.2,129.1 270.6,131.6 271.0,130.5 271.4,136.5 271.7,136.9 272.1,137.0 272.5,138.6 272.9,141.1 273.2,143.6 273.6,143.1 274.0,142.8 274.4,142.7 274.7,142.5 275.1,143.2 275.5,143.8 275.9,142.6 276.3,143.3 276.6,147.8 277.0,147.6 277.4,146.5 277.8,146.9 278.1,149.8 278.5,148.0 278.9,153.6 279.3,155.4 279.6,157.3 280.0,156.5 280.4,156.6 280.8,158.3 281.2,158.8 281.5,158.6 281.9,158.7 282.3,159.0 282.7,160.2 283.0,161.2 283.4,160.7 283.8,160.9 284.2,161.0 284.5,166.6 284.9,165.9 285.3,167.7 285.7,164.0 286.1,164.0 286.4,164.9 286.8,164.2 287.2,164.0 287.6,168.0 287.9,171.5 288.3,172.9 288.7,174.5 289.1,175.8 289.4,175.2 289.8,172.1 290.2,176.5 290.6,172.1 290.9,166.4 291.3,164.8 291.7,164.8 292.1,163.2 292.5,162.7 292.8,164.2 293.2,166.4 293.6,173.9 294.0,173.6 294.3,174.2 294.7,174.8 295.1,175.3 295.5,178.0 295.8,178.6 296.2,176.3 296.6,177.2 297.0,176.5 297.4,178.9 298.1,174.9 298.5,177.5 298.9,175.9 299.2,172.6 299.6,171.9 300.0,172.7 300.4,172.4 300.7,172.6 301.1,175.6 301.5,178.2 301.9,174.9 302.2,169.2 302.6,169.0 303.0,173.6 303.4,175.1 303.8,174.1 304.1,173.7 304.5,174.5 304.9,175.2 305.3,175.0 305.6,170.0 306.0,163.9 306.4,163.0 306.8,158.9 307.1,151.6 307.5,152.2 307.9,155.7 308.3,154.6 308.7,154.2 309.0,148.8 309.4,152.1 309.8,156.7 310.2,154.9 310.5,156.1 310.9,147.9 311.3,154.1 311.7,154.7 312.0,155.5 312.4,157.6 312.8,159.1 313.2,162.2 313.6,166.0 313.9,161.3 314.3,162.2 314.7,166.7 315.1,168.0 315.4,170.2 315.8,169.3 316.2,170.6 316.6,171.0 316.9,172.0 317.3,173.4 317.7,172.9 318.1,173.7 318.4,170.6 318.8,175.9 319.2,178.7 319.6,178.3 320.0,180.4 320.3,183.4 320.7,182.1 321.1,182.4 321.5,181.6 321.8,182.8 322.2,184.1 322.6,183.3 323.0,189.6 323.3,188.4 323.7,188.4 324.1,187.0 324.5,186.5 324.9,188.3 325.2,186.6 325.6,189.9 326.0,188.2 326.4,193.0 326.7,192.5 327.1,190.5 327.5,190.6 327.9,187.1 328.2,184.2 328.6,184.2 329.0,185.3 329.4,185.4 329.7,180.8 330.1,181.0 330.5,177.8 330.9,160.6 331.3,167.3 331.6,168.6 332.0,160.3 332.4,155.9 332.8,148.6 333.1,163.3 333.5,153.2 333.9,148.0 334.3,141.7 334.6,141.3 335.0,140.8 335.4,140.3 335.8,133.3 336.2,133.3 336.5,123.2 336.9,121.2 337.3,126.9 337.7,129.5 338.0,128.5 338.4,129.4 338.8,132.0 339.2,130.6 339.5,129.9 339.9,129.6 340.3,128.2 340.7,128.9 341.1,127.7 341.4,130.8 341.8,128.4 342.2,127.8 342.6,121.0 342.9,127.8 343.3,129.4 343.7,127.2 344.1,126.5 344.4,128.5 344.8,130.4 345.2,128.3 345.6,128.4 345.9,126.4 346.7,127.6 347.1,130.4 347.5,132.1 347.8,133.9 348.2,136.2 348.6,136.0 349.0,132.4 349.3,134.3 349.7,140.3 350.1,143.7 350.5,143.1 350.8,142.9 351.2,143.9 351.6,144.1 352.0,150.7 352.4,150.4 352.7,149.0 353.1,151.3 353.5,151.4 353.9,153.6 354.2,155.3 355.0,146.6 355.4,141.5 355.7,142.2 356.1,143.0 356.5,145.0 356.9,145.9 357.2,148.7 357.6,151.2 358.0,152.9 358.4,152.4 358.8,150.3 359.1,150.2 359.5,152.0 359.9,148.2 360.3,144.1 360.6,154.8 361.0,156.3 361.4,154.3 361.8,155.3 362.1,156.3 362.5,154.4 362.9,159.1 363.3,158.1 363.7,160.0 364.0,162.2 364.4,160.8 364.8,159.3 365.2,157.4 365.5,151.2 365.9,151.8 366.3,153.0 366.7,155.2 367.0,156.8 367.4,160.9 367.8,160.6 368.2,156.0 368.5,162.8 368.9,164.8 369.3,165.6 369.7,166.8 370.1,167.3 370.4,169.7 370.8,170.8 371.2,167.1 371.6,167.3 371.9,167.8 372.3,168.2 372.7,163.2 373.1,160.7 373.4,159.7 373.8,157.6 374.2,158.0 374.6,159.0 375.0,161.2 375.3,162.0 375.7,162.0 376.1,161.5 376.5,158.3 376.8,158.4 377.2,161.8 377.6,159.6 378.0,162.3 378.3,164.1 378.7,166.4 379.1,166.1 379.5,163.4 379.9,164.4 380.2,165.8 380.6,161.8 381.0,161.4 381.4,162.4 381.7,164.5 382.1,162.2 382.5,161.5 382.9,161.2 383.2,162.8 383.6,165.5 384.0,167.5 384.4,166.4 384.7,166.0 385.1,157.3 385.5,153.4 385.9,148.1 386.3,157.3 386.6,161.7 387.0,161.5 387.4,161.9 387.8,159.8 388.1,160.0 388.5,153.1 388.9,146.7 389.3,149.4 389.6,148.0 390.0,144.8 390.4,144.4 390.8,146.1 391.2,148.3 391.5,149.0 391.9,136.7 392.3,144.2 392.7,137.3 393.0,145.3 393.4,142.4 393.8,142.5 394.2,143.8 394.5,143.2 394.9,142.0 395.3,143.3 395.7,142.7 396.0,144.2 396.4,145.4 396.8,145.5 397.2,142.4 397.6,141.7 397.9,141.2 398.3,139.1 398.7,140.6 399.1,142.4 399.4,139.0 399.8,141.4 400.2,144.7 400.6,140.8 400.9,140.0 401.3,145.0 401.7,145.4 402.1,146.4 402.5,148.2 402.8,146.3 403.2,143.6 403.6,145.6 404.0,147.7 404.3,150.0 404.7,150.4 405.1,149.9 405.5,148.5 405.8,148.1 406.2,148.6 406.6,149.5 407.0,147.4 407.4,143.3 407.7,139.9 408.1,143.5 408.5,137.7 408.9,136.6 409.2,131.4 409.6,131.4 410.0,129.6 410.4,131.9 410.7,131.5 411.1,132.7 411.5,136.8 411.9,135.7 412.2,134.8 412.6,133.0 413.0,130.6 413.4,129.2 413.8,136.6 414.1,135.7 414.5,136.5 414.9,135.2 415.3,136.1 415.6,136.8 416.0,138.3 416.4,141.1 416.8,141.7 417.1,138.8 417.5,137.4 417.9,138.5 418.3,139.8 418.7,139.5 419.0,139.0 419.4,138.4 419.8,138.6 420.2,141.8 420.5,139.3 420.9,141.4 421.3,140.9 421.7,142.0 422.0,141.7 422.4,138.7 422.8,141.4 423.2,140.8 423.5,137.1 423.9,142.1 424.3,142.5 424.7,147.5 425.1,145.0 425.4,145.3 425.8,148.0 426.2,150.3 426.6,154.4 426.9,156.3 427.3,150.0 427.7,144.6 428.1,136.9 428.4,134.6 428.8,127.1 429.2,130.9 429.6,131.9 430.0,131.3 430.3,133.6 430.7,130.0 431.1,131.9 431.5,130.1 431.8,132.0 432.2,133.8 432.6,132.0 433.0,131.8 433.3,133.2 433.7,129.5 434.1,129.8 434.5,133.1 434.8,133.3 435.2,131.1 435.6,132.0 436.0,132.9 436.4,132.2 436.7,135.2 437.1,134.2 437.5,133.1 437.9,132.2 438.2,131.5 438.6,134.3 439.0,135.0 439.4,133.8 439.7,133.1 440.1,132.8 440.5,134.3 440.9,136.7 441.3,135.2 441.6,135.4 442.0,135.5 442.4,136.8 442.8,132.0 443.1,130.6 443.5,130.7 443.9,131.3 444.3,129.9 444.6,131.9 445.0,132.4 445.4,129.7 445.8,129.4 446.2,129.9 446.5,128.9 446.9,127.1 447.3,125.3 447.7,117.9 448.0,115.4 448.4,110.7 448.8,115.5 449.2,118.5 449.5,118.1 449.9,119.9 450.3,109.3 450.7,113.8 451.0,116.1 451.4,116.5 451.8,117.8 452.2,117.1 452.6,117.6 452.9,116.6 453.3,116.8 453.7,115.8 454.1,114.4 454.4,110.2 454.8,104.9 455.2,108.4 455.6,111.3 455.9,111.3 456.3,110.6 456.7,111.3 457.1,110.1 457.5,110.2 457.8,104.3 458.2,107.6 458.6,114.2 459.0,113.6 459.3,113.9 459.7,110.6 460.1,111.2 460.5,112.1 460.8,104.9 461.2,105.8 461.6,108.4 462.0,112.9 462.3,112.4 462.7,113.6 463.1,117.7 463.5,115.8 463.9,114.2 464.2,116.2 464.6,117.2 465.0,119.7 465.4,116.4 465.7,116.8 466.1,116.0 466.5,115.8 466.9,118.0 467.2,116.8 467.6,115.9 468.0,116.3 468.0,119.6 467.6,117.7 467.2,118.5 466.9,118.5 466.5,119.3 466.1,117.6 465.7,119.1 465.4,120.8 465.0,120.9 464.6,122.3 464.2,119.1 463.9,118.6 463.5,119.5 463.1,118.5 462.7,118.0 462.3,114.0 462.0,116.2 461.6,116.1 461.2,110.4 460.8,115.5 460.5,114.9 460.1,113.7 459.7,115.1 459.3,115.3 459.0,116.5 458.6,116.5 458.2,113.4 457.8,115.6 457.5,113.4 457.1,112.0 456.7,112.0 456.3,112.3 455.9,113.3 455.6,112.7 455.2,111.7 454.8,110.9 454.4,116.0 454.1,117.0 453.7,120.2 453.3,122.0 452.9,120.4 452.6,118.9 452.2,119.2 451.8,118.2 451.4,118.3 451.0,117.0 450.7,118.1 450.3,122.8 449.9,121.6 449.5,120.5 449.2,119.8 448.8,120.2 448.4,118.5 448.0,124.0 447.7,126.9 447.3,126.8 446.9,130.5 446.5,132.2 446.2,131.0 445.8,131.3 445.4,132.8 445.0,134.5 444.6,134.6 444.3,134.5 443.9,133.0 443.5,134.0 443.1,134.1 442.8,138.1 442.4,138.8 442.0,138.9 441.6,138.7 441.3,141.7 440.9,139.2 440.5,137.2 440.1,134.7 439.7,134.3 439.4,135.8 439.0,137.4 438.6,136.6 438.2,134.7 437.9,134.3 437.5,134.8 437.1,136.0 436.7,136.4 436.4,136.6 436.0,136.4 435.6,134.8 435.2,135.4 434.8,136.0 434.5,135.4 434.1,133.5 433.7,134.6 433.3,136.0 433.0,135.4 432.6,134.0 432.2,134.7 431.8,135.0 431.5,134.9 431.1,135.2 430.7,134.6 430.3,135.4 430.0,135.3 429.6,134.2 429.2,133.4 428.8,136.7 428.4,140.4 428.1,148.2 427.7,151.1 427.3,158.2 426.9,159.1 426.6,157.2 426.2,155.1 425.8,151.3 425.4,150.3 425.1,148.6 424.7,148.6 424.3,149.4 423.9,147.4 423.5,141.6 423.2,141.8 422.8,142.5 422.4,143.2 422.0,146.3 421.7,146.2 421.3,143.9 420.9,145.3 420.5,145.0 420.2,144.0 419.8,143.7 419.4,142.4 419.0,143.0 418.7,142.3 418.3,140.8 417.9,141.5 417.5,141.7 417.1,143.0 416.8,144.6 416.4,142.3 416.0,143.7 415.6,141.0 415.3,140.4 414.9,138.4 414.5,137.6 414.1,137.3 413.8,137.7 413.4,136.3 413.0,134.5 412.6,137.4 412.2,138.1 411.9,138.3 411.5,137.6 411.1,138.5 410.7,135.3 410.4,135.3 410.0,134.5 409.6,134.7 409.2,138.9 408.9,138.5 408.5,146.3 408.1,146.5 407.7,149.1 407.4,149.5 407.0,150.7 406.6,155.3 406.2,151.5 405.8,150.4 405.5,150.7 405.1,150.8 404.7,153.3 404.3,152.1 404.0,151.2 403.6,148.5 403.2,147.4 402.8,151.9 402.5,150.6 402.1,148.5 401.7,148.2 401.3,146.4 400.9,146.1 400.6,145.7 400.2,146.2 399.8,145.7 399.4,143.7 399.1,147.4 398.7,145.4 398.3,143.9 397.9,147.6 397.6,145.1 397.2,149.5 396.8,146.7 396.4,146.5 396.0,146.6 395.7,145.9 395.3,147.8 394.9,147.9 394.5,147.3 394.2,146.2 393.8,144.8 393.4,146.0 393.0,146.3 392.7,149.5 392.3,155.2 391.9,154.9 391.5,151.0 391.2,149.3 390.8,148.8 390.4,148.6 390.0,148.1 389.6,152.0 389.3,152.5 388.9,156.3 388.5,163.1 388.1,163.2 387.8,162.3 387.4,162.2 387.0,162.3 386.6,162.0 386.3,161.4 385.9,157.4 385.5,159.1 385.1,168.7 384.7,168.2 384.4,168.7 384.0,169.7 383.6,168.3 383.2,166.2 382.9,164.6 382.5,164.0 382.1,165.1 381.7,165.6 381.4,165.8 381.0,162.9 380.6,169.4 380.2,170.2 379.9,168.0 379.5,168.6 379.1,168.8 378.7,168.6 378.3,167.4 378.0,165.0 377.6,163.1 377.2,163.9 376.8,165.5 376.5,162.6 376.1,163.1 375.7,164.2 375.3,163.9 375.0,163.8 374.6,164.6 374.2,161.9 373.8,164.1 373.4,162.5 373.1,166.0 372.7,169.6 372.3,170.4 371.9,172.3 371.6,170.4 371.2,171.2 370.8,171.0 370.4,171.0 370.1,169.8 369.7,169.3 369.3,168.6 368.9,168.3 368.5,165.1 368.2,163.1 367.8,161.4 367.4,162.6 367.0,161.9 366.7,158.9 366.3,156.6 365.9,153.4 365.5,159.8 365.2,160.2 364.8,162.5 364.4,164.1 364.0,162.6 363.7,163.2 363.3,160.4 362.9,159.2 362.5,159.2 362.1,158.3 361.8,158.1 361.4,160.2 361.0,159.7 360.6,157.1 360.3,155.8 359.9,155.1 359.5,153.0 359.1,152.6 358.8,152.4 358.4,152.8 358.0,155.2 357.6,154.2 357.2,151.7 356.9,150.4 356.5,148.3 356.1,145.4 355.7,143.9 355.4,147.7 355.0,154.6 354.2,158.7 353.9,156.3 353.5,155.6 353.1,151.7 352.7,151.9 352.4,151.2 352.0,151.1 351.6,151.2 351.2,147.4 350.8,145.5 350.5,145.4 350.1,146.2 349.7,143.3 349.3,141.5 349.0,137.9 348.6,138.1 348.2,137.5 347.8,137.9 347.5,135.1 347.1,132.7 346.7,132.3 345.9,130.2 345.6,129.9 345.2,131.8 344.8,132.5 344.4,130.8 344.1,129.2 343.7,130.9 343.3,132.1 342.9,131.6 342.6,128.4 342.2,129.3 341.8,131.8 341.4,132.3 341.1,131.9 340.7,129.4 340.3,130.5 339.9,130.6 339.5,131.4 339.2,132.3 338.8,132.3 338.4,132.1 338.0,129.9 337.7,129.8 337.3,129.9 336.9,127.0 336.5,135.4 336.2,137.4 335.8,141.4 335.4,143.9 335.0,145.6 334.6,145.1 334.3,148.5 333.9,154.6 333.5,164.2 333.1,164.6 332.8,164.9 332.4,165.4 332.0,170.7 331.6,171.6 331.3,170.3 330.9,179.1 330.5,183.8 330.1,183.2 329.7,189.4 329.4,187.7 329.0,188.1 328.6,187.6 328.2,188.9 327.9,191.5 327.5,192.6 327.1,196.1 326.7,195.3 326.4,194.5 326.0,195.0 325.6,191.9 325.2,190.3 324.9,189.8 324.5,190.2 324.1,191.5 323.7,189.1 323.3,190.5 323.0,191.1 322.6,190.1 322.2,187.4 321.8,185.9 321.5,185.6 321.1,183.9 320.7,183.8 320.3,185.0 320.0,183.8 319.6,182.8 319.2,181.3 318.8,179.3 318.4,176.0 318.1,174.8 317.7,174.8 317.3,174.0 316.9,175.0 316.6,173.0 316.2,171.7 315.8,172.9 315.4,171.4 315.1,171.5 314.7,169.7 314.3,167.2 313.9,166.6 313.6,166.6 313.2,166.3 312.8,162.9 312.4,160.8 312.0,158.1 311.7,157.7 311.3,157.1 310.9,157.5 310.5,158.0 310.2,160.5 309.8,158.7 309.4,159.0 309.0,156.4 308.7,157.0 308.3,157.0 307.9,156.3 307.5,156.5 307.1,158.6 306.8,166.1 306.4,168.4 306.0,171.5 305.6,176.6 305.3,175.9 304.9,176.8 304.5,177.5 304.1,174.8 303.8,175.9 303.4,175.8 303.0,176.0 302.6,174.5 302.2,182.0 301.9,181.9 301.5,178.2 301.1,178.4 300.7,177.6 300.4,174.7 300.0,176.7 299.6,173.6 299.2,177.7 298.9,177.8 298.5,178.4 298.1,180.0 297.4,181.5 297.0,180.0 296.6,179.3 296.2,180.1 295.8,180.1 295.5,179.2 295.1,178.5 294.7,176.5 294.3,177.3 294.0,175.3 293.6,176.6 293.2,175.7 292.8,166.6 292.5,167.2 292.1,165.5 291.7,167.8 291.3,168.5 290.9,173.9 290.6,178.3 290.2,178.1 289.8,180.7 289.4,176.6 289.1,177.5 288.7,177.7 288.3,175.3 287.9,174.1 287.6,172.0 287.2,170.1 286.8,165.9 286.4,165.5 286.1,165.9 285.7,169.0 285.3,170.3 284.9,168.8 284.5,168.1 284.2,168.1 283.8,162.3 283.4,162.8 283.0,163.2 282.7,163.1 282.3,162.6 281.9,160.4 281.5,159.0 281.2,159.6 280.8,159.8 280.4,159.3 280.0,157.5 279.6,158.5 279.3,159.1 278.9,156.7 278.5,154.7 278.1,152.8 277.8,150.6 277.4,148.0 277.0,148.4 276.6,149.5 276.3,148.1 275.9,148.7 275.5,147.8 275.1,144.6 274.7,144.5 274.4,142.9 274.0,143.2 273.6,143.7 273.2,143.6 272.9,143.8 272.5,142.0 272.1,140.8 271.7,138.4 271.4,137.4 271.0,138.0 270.6,136.6 270.2,132.8 269.9,130.5 269.5,127.4 269.1,126.2 268.7,123.3 268.3,122.6 268.0,122.0 267.6,122.9 267.2,123.0 266.8,120.2 266.5,122.2 266.1,127.9 265.7,127.6 265.3,125.5 265.0,125.9 264.6,126.0 264.2,127.9 263.8,129.3 263.4,129.2 263.1,128.4 262.7,130.8 262.3,140.1 261.9,145.1 261.6,144.2 261.2,140.6 260.8,138.8 260.4,137.7 260.1,137.4 259.7,138.8 259.3,137.0 258.9,136.2 258.6,139.7 258.2,141.1 257.8,140.9 257.4,141.2 257.0,141.4 256.7,137.8 256.3,135.8 255.9,134.6 255.5,134.7 255.2,136.6 254.8,136.2 254.4,137.4 254.0,137.6 253.7,138.1 253.3,137.2 252.9,134.2 252.5,137.8 252.1,137.8 251.8,136.1 251.4,138.0 251.0,137.1 250.6,136.1 250.3,138.9 249.9,138.5 249.5,140.9 249.1,138.6 248.8,137.2 248.4,137.1 248.0,136.2 247.6,138.5 247.3,137.3 246.9,142.8 246.5,142.1 246.1,141.1 245.7,140.5 245.4,139.0 245.0,138.0 244.6,137.8 244.2,136.4 243.9,136.2 243.5,138.2 243.1,139.0 242.7,135.3 242.4,133.3 242.0,133.3 241.6,133.5 241.2,134.3 240.8,133.1 240.5,131.6 240.1,130.9 239.7,129.1 239.3,130.4 239.0,130.1 238.6,129.9 238.2,132.9 237.8,132.0 237.5,131.2 237.1,129.1 236.7,128.6 236.3,127.5 235.9,125.9 235.6,126.0 235.2,125.9 234.8,130.7 234.4,130.6 234.1,127.6 233.7,126.2 233.3,127.6 232.9,128.5 232.6,127.8 232.2,128.2 231.8,127.2 231.4,128.2 231.1,127.2 230.7,125.8 230.3,126.4 229.9,126.8 229.5,130.0 229.2,136.1 228.8,137.2 228.4,135.9 228.0,137.1 227.7,134.2 227.3,132.6 226.9,130.3 226.5,128.4 226.2,127.6 225.8,126.2 225.4,125.9 225.0,132.0 224.6,138.0 224.3,142.0 223.9,141.7 223.5,139.4 223.1,137.8 222.8,137.1 222.4,140.8 222.0,141.3 221.6,141.7 221.3,140.3 220.9,138.7 220.5,138.7 220.1,135.0 219.8,135.4 219.4,134.5 219.0,133.5 218.6,133.8 218.2,136.1 217.9,138.0 217.5,134.2 217.1,137.5 216.7,138.1 216.4,135.3 216.0,134.9 215.6,131.6 215.2,130.8 214.9,128.3 214.5,127.8 214.1,128.9 213.7,126.4 213.3,126.3 213.0,128.5 212.6,128.7 212.2,131.8 211.8,141.7 211.5,142.0 211.1,140.4 210.7,136.8 210.3,137.0 210.0,134.9 209.6,134.3 209.2,134.4 208.8,132.8 208.4,134.2 208.1,134.1 207.7,137.2 207.3,137.3 206.9,136.2 206.6,138.4 206.2,138.7 205.8,138.9 205.4,139.8 205.1,139.1 204.7,146.8 204.3,145.8 203.9,146.0 203.6,144.5 203.2,142.9 202.8,142.7 202.4,141.6 202.0,141.7 201.7,140.0 201.3,142.3 200.9,142.8 200.5,145.5 200.2,150.2 199.8,150.2 199.0,149.9 198.7,150.5 198.3,151.5 197.9,151.9 197.5,152.0 197.1,152.3 196.8,151.7 196.4,154.4 196.0,155.3 195.6,155.1 195.3,155.8 194.9,156.0 194.5,156.6 194.1,156.4 193.8,155.1 193.4,154.9 193.0,154.8 192.6,164.3 192.3,165.1 191.9,164.4 191.5,170.6 191.1,167.9 190.7,168.6 190.4,167.6 190.0,164.2 189.6,163.2 189.2,161.6 188.9,164.9 188.5,165.5 188.1,165.1 187.7,167.5 187.4,166.9 187.0,171.6 186.6,175.3 186.2,174.4 185.8,173.2 185.5,172.6 185.1,172.2 184.7,170.8 184.3,172.0 184.0,171.6 183.6,170.5 183.2,170.1 182.8,167.8 182.5,167.5 182.1,168.4 181.7,168.1 181.3,169.3 180.9,175.1 180.6,174.6 180.2,178.7 179.8,178.7 179.4,178.4 179.1,178.7 178.7,182.1 178.3,187.3 177.9,186.9 177.6,184.5 177.2,183.1 176.8,181.8 176.4,180.3 176.1,179.0 175.7,179.1 175.3,177.9 174.9,177.7 174.5,179.9 174.2,183.5 173.8,183.4 173.4,181.2 173.0,181.2 172.7,182.4 172.3,181.6 171.9,181.3 171.5,180.6 171.2,181.6 170.8,181.8 170.4,180.6 170.0,181.0 169.6,180.3 169.3,180.8 168.9,179.9 168.5,178.6 168.1,178.0 167.8,174.9 167.4,174.4 167.0,173.8 166.6,173.2 166.3,173.7 165.9,172.3 165.5,172.5 165.1,173.7 164.8,174.5 164.4,175.3 164.0,176.6 163.6,176.7 163.2,176.1 162.9,176.5 162.5,181.6 162.1,182.1 161.7,181.7 161.4,180.5 161.0,185.3 160.6,187.0 160.2,186.5 159.9,187.0 159.5,186.6 159.1,187.9 158.7,186.6 158.3,186.2 158.0,192.4 157.6,193.7 157.2,194.7 156.8,193.5 156.5,192.0 156.1,192.9 155.7,193.1 155.3,192.4 155.0,190.8 154.6,191.4 154.2,191.0 153.8,187.3 153.5,189.0 153.1,189.1 152.7,187.0 152.3,187.1 151.9,185.7 151.6,192.1 151.2,193.2 150.8,193.8 150.4,196.9 150.1,198.7 149.7,198.9 149.3,195.7 148.9,196.0 148.6,195.0 148.2,193.2 147.8,193.6 147.4,197.4 147.0,195.2 146.7,194.2 146.3,193.6 145.9,193.7 145.5,192.6 145.2,191.8 144.8,194.5 144.4,194.4 144.0,195.9 143.7,196.7 143.3,196.4 142.9,199.1 142.5,198.7 142.1,198.7 141.8,198.6 141.4,197.5 141.0,195.4 140.6,195.3 140.3,195.9 139.9,194.7 139.5,192.9 139.1,193.0 138.8,193.3 138.4,194.0 138.0,192.0 137.6,193.1 137.3,189.9 136.9,187.4 136.5,185.4 136.1,184.8 135.7,185.3 135.4,184.9 135.0,184.4 134.6,184.5 134.2,184.2 133.9,184.9 133.5,183.8 133.1,183.4 132.7,182.5 132.4,180.2 132.0,178.7 131.6,181.4 131.2,182.4 130.8,182.4 130.5,181.5 130.1,180.4 129.7,178.9 129.3,178.9 129.0,179.2 128.6,176.9 128.2,176.2 127.8,173.9 127.5,172.9 127.1,172.5 126.7,170.2 126.3,169.6 126.0,168.6 125.6,169.9 125.2,173.1 124.8,172.2 124.4,171.9 124.1,171.4 123.7,170.1 123.3,173.7 122.9,178.2 122.6,185.3 122.2,184.7 121.8,183.5 121.4,184.7 121.1,184.9 120.7,188.4 120.3,188.1 119.9,186.5 119.5,186.5 119.2,185.6 118.8,185.5 118.4,184.6 118.0,182.2 117.7,183.1 117.3,180.0 116.9,178.9 116.5,180.4 116.2,181.3 115.8,180.6 115.4,181.4 115.0,181.4 114.6,179.3 114.3,183.6 113.9,185.6 113.5,185.1 113.1,185.2 112.8,180.7 112.4,179.1 112.0,177.9 111.6,174.8 111.3,177.2 110.9,178.4 110.5,184.9 110.1,185.3 109.8,183.6 109.4,184.1 109.0,184.9 108.6,185.3 108.2,183.8 107.9,179.6 107.5,180.0 107.1,179.0 106.7,177.3 106.4,183.3 106.0,188.0 105.6,187.4 105.2,184.4 104.9,187.5 104.5,186.9 104.1,182.9 103.7,182.7 103.3,180.3 103.0,178.5 102.6,178.4 102.2,178.5 101.8,179.6 101.5,180.1 101.1,179.0 100.7,176.4 100.3,176.5 100.0,176.6 99.6,175.1 99.2,178.1 98.8,181.5 98.5,181.0 98.1,180.9 97.7,180.7 97.3,180.2 96.9,181.9 96.6,184.6 96.2,185.9 95.8,185.9 95.4,191.1 95.1,190.3 94.7,186.3 94.3,185.4 93.9,185.6 93.6,185.1 93.2,183.0 92.8,180.7 92.4,179.1 92.0,179.4 91.7,188.5 91.3,189.2 90.9,188.7 90.5,187.5 90.2,185.9 89.8,185.8 89.4,183.9 89.0,182.9 88.7,182.3 88.3,178.6 87.9,178.8 87.5,177.2 87.2,177.2 86.8,177.6 86.4,178.0 86.0,176.5 85.6,172.6 85.3,174.6 84.9,175.2 84.5,175.6 84.1,177.4 83.8,178.8 83.4,178.5 83.0,175.1 82.6,170.4 82.3,168.9 81.9,164.4 81.5,164.6 81.1,164.4 80.7,162.2 80.4,164.8 80.0,165.6 79.6,166.3 79.2,168.4 78.9,166.3 78.5,166.1 78.1,164.8 77.7,164.1 77.4,165.1 77.0,163.1 76.6,163.5 76.2,162.5 75.8,167.3 75.5,166.3 75.1,164.2 74.7,164.1 74.3,162.8 74.0,163.0 73.6,162.0 73.2,159.6 72.8,161.2 72.5,160.0 72.1,157.5 71.7,160.5 71.3,160.7 71.0,161.4 70.6,159.1 70.2,158.5 69.8,157.6 69.4,156.4 69.1,155.9 68.7,156.5 68.3,161.0 67.9,158.4 67.6,157.1 67.2,156.5 66.8,156.5 66.4,155.4 66.1,152.6 65.7,151.0 65.3,153.4 64.9,153.1 64.5,158.2 64.2,156.0 63.8,154.5 63.4,154.0 63.0,151.1 62.7,152.0 62.3,150.9 61.9,147.2 61.5,147.5 61.2,146.2 60.8,146.7 60.4,156.6 60.0,156.5 59.7,161.2 59.3,160.2 58.9,160.7 58.5,160.6 58.1,157.9 57.8,156.6 57.4,155.5 57.0,158.1 56.6,157.4 56.3,154.9 55.9,152.7 55.5,149.7 55.1,150.0 54.8,148.3 54.4,147.8 54.0,144.8"/><polyline class="sA mid" points="54.0,144.8 54.4,146.0 54.8,147.7 55.1,148.3 55.5,149.0 55.9,148.6 56.3,153.0 56.6,154.7 57.0,153.8 57.4,153.7 57.8,150.7 58.1,152.9 58.5,154.9 58.9,155.8 59.3,155.7 59.7,154.4 60.0,151.7 60.4,150.6 60.8,147.7 61.2,148.4 61.5,149.5 61.9,150.2 62.3,152.0 62.7,152.6 63.0,152.2 63.4,153.8 63.8,155.8 64.2,157.0 64.5,158.5 64.9,155.5 65.3,155.2 65.7,153.9 66.1,152.2 66.4,158.8 66.8,161.6 67.2,160.8 67.6,161.2 67.9,161.9 68.3,162.7 68.7,158.0 69.1,158.5 69.4,161.0 69.8,162.1 70.2,163.0 70.6,164.3 71.0,164.9 71.3,164.5 71.7,163.0 72.1,159.0 72.5,162.4 72.8,165.0 73.2,164.3 73.6,165.1 74.0,167.8 74.3,168.2 74.7,168.2 75.1,168.3 75.5,168.9 75.8,166.6 76.2,164.3 76.6,166.9 77.0,168.4 77.4,169.5 77.7,170.3 78.1,171.2 78.5,173.5 78.9,173.9 79.2,173.9 79.6,173.3 80.0,173.0 80.4,169.4 80.7,169.5 81.1,170.5 81.5,169.4 81.9,172.0 82.3,173.2 82.6,175.2 83.0,179.4 83.4,183.8 83.8,185.9 84.1,182.9 84.5,181.8 84.9,177.7 85.3,176.9 85.6,175.5 86.0,175.9 86.4,178.6 86.8,178.0 87.2,178.5 87.5,179.6 87.9,180.1 88.3,179.9 88.7,182.3 89.0,182.3 89.4,184.2 89.8,185.5 90.2,186.1 90.5,185.3 90.9,186.3 91.3,184.8 91.7,179.0 92.0,173.7 92.4,171.9 92.8,174.5 93.2,176.5 93.6,179.1 93.9,180.5 94.3,179.8 94.7,180.9 95.1,183.9 95.4,185.4 95.8,183.2 96.2,182.9 96.6,182.0 96.9,181.2 97.3,180.3 97.7,180.7 98.1,178.3 98.5,178.4 98.8,178.0 99.2,174.6 99.6,173.5 100.0,175.7 100.3,174.1 100.7,173.6 101.1,175.0 101.5,180.8 101.8,180.4 102.2,179.7 102.6,179.3 103.0,179.2 103.3,181.7 103.7,183.5 104.1,186.0 104.5,186.6 104.9,184.9 105.2,182.1 105.6,185.0 106.0,184.6 106.4,182.8 106.7,181.6 107.1,181.2 107.5,180.2 107.9,180.5 108.2,183.2 108.6,186.1 109.0,187.2 109.4,185.9 109.8,186.5 110.1,185.3 110.5,183.0 110.9,163.7 111.3,163.7 111.6,165.3 112.0,166.9 112.4,166.0 112.8,167.3 113.1,167.1 113.5,169.6 113.9,169.3 114.3,166.7 114.6,165.2 115.0,166.7 115.4,167.3 115.8,166.1 116.2,167.1 116.5,166.4 116.9,165.5 117.3,165.8 117.7,167.3 118.0,167.8 118.4,169.1 118.8,171.0 119.2,172.0 119.5,172.3 119.9,172.9 120.3,174.3 120.7,175.6 121.1,174.6 121.4,173.1 121.8,172.1 122.2,171.8 122.6,170.7 122.9,165.6 123.3,162.3 123.7,160.7 124.1,161.1 124.4,163.1 124.8,164.1 125.2,163.7 125.6,161.4 126.0,159.8 126.3,161.5 126.7,163.0 127.1,162.6 127.5,165.6 127.8,165.6 128.2,167.5 128.6,167.7 129.0,169.7 129.3,170.2 129.7,170.7 130.1,171.9 130.5,172.9 130.8,173.5 131.2,172.8 131.6,166.6 132.0,163.8 132.4,162.1 132.7,165.7 133.1,169.0 133.5,169.4 133.9,170.3 134.2,169.8 134.6,169.9 135.0,170.3 135.4,168.8 135.7,169.6 136.1,170.5 136.5,169.2 136.9,171.9 137.3,173.6 137.6,175.2 138.0,174.6 138.4,175.2 138.8,175.4 139.1,174.6 139.5,174.5 139.9,176.0 140.3,177.5 140.6,177.4 141.0,177.4 141.4,178.8 141.8,180.0 142.1,181.3 142.5,181.6 142.9,180.6 143.3,179.4 143.7,176.1 144.0,169.7 144.4,164.2 144.8,163.0 145.2,162.1 145.5,162.1 145.9,165.5 146.3,166.4 146.7,166.1 147.0,166.9 147.4,165.6 147.8,164.7 148.2,166.5 148.6,165.0 148.9,165.9 149.3,164.4 149.7,165.9 150.1,166.1 150.4,163.4 150.8,161.6 151.2,160.5 151.6,157.6 151.9,152.5 152.3,154.0 152.7,156.0 153.1,157.6 153.5,158.2 153.8,157.2 154.2,160.0 154.6,161.6 155.0,161.2 155.3,162.0 155.7,162.7 156.1,160.9 156.5,160.6 156.8,160.5 157.2,161.4 157.6,161.1 158.0,157.3 158.3,151.3 158.7,151.1 159.1,155.1 159.5,154.8 159.9,155.1 160.2,154.9 160.6,155.1 161.0,150.3 161.4,146.1 161.7,149.3 162.1,150.5 162.5,147.2 162.9,144.5 163.2,144.3 163.6,144.5 164.0,145.2 164.4,143.8 164.8,143.0 165.1,141.4 165.5,141.2 165.9,142.0 166.3,143.6 166.6,144.6 167.0,144.4 167.4,144.9 167.8,146.4 168.1,147.5 168.5,146.8 168.9,146.8 169.3,148.0 169.6,148.1 170.0,147.6 170.4,147.6 170.8,148.8 171.2,148.2 171.5,149.4 171.9,148.8 172.3,150.9 172.7,152.3 173.0,151.6 173.4,151.5 173.8,152.0 174.2,153.0 174.5,151.8 174.9,152.2 175.3,153.4 175.7,154.0 176.1,154.9 176.4,154.8 176.8,155.3 177.2,156.1 177.6,156.6 177.9,158.6 178.3,157.8 178.7,153.6 179.1,148.5 179.4,152.8 179.8,153.7 180.2,151.5 180.6,148.8 180.9,147.1 181.3,138.7 181.7,142.4 182.1,141.6 182.5,142.3 182.8,142.5 183.2,142.9 183.6,144.7 184.0,146.0 184.3,146.3 184.7,145.9 185.1,146.0 185.5,147.0 185.8,148.3 186.2,149.1 186.6,148.3 187.0,144.3 187.4,142.0 187.7,142.5 188.1,141.8 188.5,139.7 188.9,139.0 189.2,138.6 189.6,137.3 190.0,139.5 190.4,140.7 190.7,142.4 191.1,142.1 191.5,139.7 191.9,134.8 192.3,137.3 192.6,135.3 193.0,133.1 193.4,132.9 193.8,133.2 194.1,133.8 194.5,130.0 194.9,130.4 195.3,130.7 195.6,130.0 196.0,130.2 196.4,126.5 196.8,126.4 197.1,128.4 197.5,127.8 197.9,127.5 198.3,125.8 198.7,124.9 199.0,126.0 199.8,126.8 200.2,127.5 200.5,126.1 200.9,125.6 201.3,124.8 201.7,124.6 202.0,125.0 202.4,125.3 202.8,125.9 203.2,125.2 203.6,126.3 203.9,126.7 204.3,126.8 204.7,121.3 205.1,118.7 205.4,120.4 205.8,119.8 206.2,119.9 206.6,117.9 206.9,117.1 207.3,117.5 207.7,117.0 208.1,115.2 208.4,114.8 208.8,113.6 209.2,116.1 209.6,112.2 210.0,117.6 210.3,117.9 210.7,119.0 211.1,118.4 211.5,118.4 211.8,114.0 212.2,111.1 212.6,111.0 213.0,110.5 213.3,110.2 213.7,110.6 214.1,113.0 214.5,112.7 214.9,112.7 215.2,112.9 215.6,113.3 216.0,114.5 216.4,112.5 216.7,113.3 217.1,116.4 217.5,114.4 217.9,113.8 218.2,112.7 218.6,111.8 219.0,113.5 219.4,114.7 219.8,115.0 220.1,117.1 220.5,119.1 220.9,120.5 221.3,120.8 221.6,122.1 222.0,123.0 222.4,120.6 222.8,118.4 223.1,119.3 223.5,120.2 223.9,121.5 224.3,120.9 224.6,119.5 225.0,117.1 225.4,116.1 225.8,118.0 226.2,121.1 226.5,120.7 226.9,122.2 227.3,125.2 227.7,126.2 228.0,128.3 228.4,127.1 228.8,126.8 229.2,125.4 229.5,116.9 229.9,117.7 230.3,117.7 230.7,117.0 231.1,117.0 231.4,116.8 231.8,115.7 232.2,117.9 232.6,118.6 232.9,118.3 233.3,118.0 233.7,115.6 234.1,118.3 234.4,119.3 234.8,115.7 235.2,112.9 235.6,115.5 235.9,116.0 236.3,118.3 236.7,120.9 237.1,120.7 237.5,122.7 237.8,124.3 238.2,123.7 238.6,121.4 239.0,119.7 239.3,117.5 239.7,116.2 240.1,115.4 240.5,116.7 240.8,118.3 241.2,119.0 241.6,118.5 242.0,117.9 242.4,118.7 242.7,119.7 243.1,122.8 243.5,123.0 243.9,121.3 244.2,121.4 244.6,123.6 245.0,125.0 245.4,125.0 245.7,126.5 246.1,128.5 246.5,129.1 246.9,127.7 247.3,127.4 247.6,127.0 248.0,125.6 248.4,125.0 248.8,124.5 249.1,124.5 249.5,126.0 249.9,124.7 250.3,126.1 250.6,126.3 251.0,127.7 251.4,124.5 251.8,124.7 252.1,127.1 252.5,127.2 252.9,126.3 253.3,126.6 253.7,128.4 254.0,128.1 254.4,127.3 254.8,126.6 255.2,126.3 255.5,125.5 255.9,125.3 256.3,125.1 256.7,127.5 257.0,127.5 257.4,128.1 257.8,127.6 258.2,126.9 258.6,124.7 258.9,122.5 259.3,123.6 259.7,124.8 260.1,123.7 260.4,124.5 260.8,124.5 261.2,126.5 261.6,129.1 261.9,127.7 262.3,118.9 262.7,113.6 263.1,115.5 263.4,116.8 263.8,119.1 264.2,117.6 264.6,108.1 265.0,111.2 265.3,112.5 265.7,111.5 266.1,116.8 266.5,116.0 266.8,115.3 267.2,116.2 267.6,117.6 268.0,116.5 268.3,117.2 268.7,118.3 269.1,119.2 269.5,120.2 269.9,120.8 270.2,124.2 270.6,126.1 271.0,126.4 271.4,129.5 271.7,130.0 272.1,130.4 272.5,130.9 272.9,132.1 273.2,135.8 273.6,135.6 274.0,135.2 274.4,135.0 274.7,136.3 275.1,139.2 275.5,140.5 275.9,140.1 276.3,140.7 276.6,143.3 277.0,142.8 277.4,142.9 277.8,144.3 278.1,147.1 278.5,146.6 278.9,149.3 279.3,150.7 279.6,151.4 280.0,150.5 280.4,150.7 280.8,151.4 281.2,151.3 281.5,150.9 281.9,151.7 282.3,152.6 282.7,152.9 283.0,153.3 283.4,153.0 283.8,152.6 284.2,154.0 284.5,155.6 284.9,155.2 285.3,155.4 285.7,152.6 286.1,150.9 286.4,152.1 286.8,152.2 287.2,152.5 287.6,154.3 287.9,159.5 288.3,163.2 288.7,165.0 289.1,165.2 289.4,163.7 289.8,162.3 290.2,156.1 290.6,149.5 290.9,133.6 291.3,122.5 291.7,120.0 292.1,119.3 292.5,120.9 292.8,122.5 293.2,126.9 293.6,130.2 294.0,129.4 294.3,128.9 294.7,130.4 295.1,131.4 295.5,132.9 295.8,133.6 296.2,133.1 296.6,132.2 297.0,131.9 297.4,134.0 298.1,131.5 298.5,131.3 298.9,130.4 299.2,129.3 299.6,127.7 300.0,128.5 300.4,127.0 300.7,129.2 301.1,131.3 301.5,131.6 301.9,134.0 302.2,137.4 302.6,136.6 303.0,137.6 303.4,138.1 303.8,137.7 304.1,136.9 304.5,138.8 304.9,138.8 305.3,138.3 305.6,138.2 306.0,136.6 306.4,134.5 306.8,133.1 307.1,131.3 307.5,132.1 307.9,133.1 308.3,133.1 308.7,133.5 309.0,131.6 309.4,132.2 309.8,132.4 310.2,132.8 310.5,132.4 310.9,131.8 311.3,131.9 311.7,130.8 312.0,130.6 312.4,134.0 312.8,132.7 313.2,136.6 313.6,138.2 313.9,139.6 314.3,139.8 314.7,141.6 315.1,142.7 315.4,143.3 315.8,141.7 316.2,139.0 316.6,140.1 316.9,141.9 317.3,141.9 317.7,141.1 318.1,140.5 318.4,142.4 318.8,144.6 319.2,146.4 319.6,146.0 320.0,146.6 320.3,148.1 320.7,147.6 321.1,148.0 321.5,147.2 321.8,147.8 322.2,148.4 322.6,149.4 323.0,153.1 323.3,152.2 323.7,151.5 324.1,152.2 324.5,151.7 324.9,153.1 325.2,151.9 325.6,153.8 326.0,154.3 326.4,156.1 326.7,156.3 327.1,156.1 327.5,154.4 327.9,152.1 328.2,149.3 328.6,149.1 329.0,149.3 329.4,149.2 329.7,149.1 330.1,146.1 330.5,146.6 330.9,142.0 331.3,141.7 331.6,141.1 332.0,139.4 332.4,137.2 332.8,136.0 333.1,139.2 333.5,133.9 333.9,126.5 334.3,120.3 334.6,118.4 335.0,118.4 335.4,117.3 335.8,116.9 336.2,114.8 336.5,108.8 336.9,104.3 337.3,105.8 337.7,108.9 338.0,108.4 338.4,110.0 338.8,111.2 339.2,110.9 339.5,110.0 339.9,109.8 340.3,109.1 340.7,109.7 341.1,110.1 341.4,110.4 341.8,109.0 342.2,107.4 342.6,103.5 342.9,108.3 343.3,109.3 343.7,107.5 344.1,106.6 344.4,107.9 344.8,109.6 345.2,108.2 345.6,107.3 345.9,106.0 346.7,107.7 347.1,110.0 347.5,114.5 347.8,119.1 348.2,119.4 348.6,118.6 349.0,117.6 349.3,119.4 349.7,122.0 350.1,123.7 350.5,122.9 350.8,122.9 351.2,124.8 351.6,127.0 352.0,128.1 352.4,126.8 352.7,125.5 353.1,122.1 353.5,124.6 353.9,128.2 354.2,130.3 355.0,124.0 355.4,118.0 355.7,116.4 356.1,117.2 356.5,118.6 356.9,119.5 357.2,121.7 357.6,124.2 358.0,125.1 358.4,123.7 358.8,122.4 359.1,123.3 359.5,125.2 359.9,122.5 360.3,121.2 360.6,127.2 361.0,128.9 361.4,129.3 361.8,129.1 362.1,130.1 362.5,128.8 362.9,131.1 363.3,131.2 363.7,133.3 364.0,133.4 364.4,133.2 364.8,131.7 365.2,129.6 365.5,126.6 365.9,123.7 366.3,125.9 366.7,128.5 367.0,130.4 367.4,121.4 367.8,110.6 368.2,115.8 368.5,120.1 368.9,122.3 369.3,122.5 369.7,123.4 370.1,124.8 370.4,125.6 370.8,126.3 371.2,125.5 371.6,125.2 371.9,127.4 372.3,126.7 372.7,123.8 373.1,120.3 373.4,115.9 373.8,116.9 374.2,117.6 374.6,119.4 375.0,119.6 375.3,120.4 375.7,120.9 376.1,120.1 376.5,118.2 376.8,119.3 377.2,119.8 377.6,118.8 378.0,122.1 378.3,125.2 378.7,128.4 379.1,128.9 379.5,127.5 379.9,128.6 380.2,130.8 380.6,128.8 381.0,125.4 381.4,126.7 381.7,127.8 382.1,126.4 382.5,125.2 382.9,125.2 383.2,126.2 383.6,128.3 384.0,130.1 384.4,129.4 384.7,129.5 385.1,126.7 385.5,119.9 385.9,116.4 386.3,122.3 386.6,124.4 387.0,123.6 387.4,123.0 387.8,121.4 388.1,120.7 388.5,117.5 388.9,110.9 389.3,110.0 389.6,109.3 390.0,106.8 390.4,104.2 390.8,103.4 391.2,104.3 391.5,104.2 391.9,98.7 392.3,103.3 392.7,97.1 393.0,99.4 393.4,97.8 393.8,95.7 394.2,95.7 394.5,96.4 394.9,95.2 395.3,95.8 395.7,95.4 396.0,96.5 396.4,97.3 396.8,97.5 397.2,97.1 397.6,94.7 397.9,94.9 398.3,92.8 398.7,89.0 399.1,88.9 399.4,88.5 399.8,92.6 400.2,97.7 400.6,97.0 400.9,97.1 401.3,100.1 401.7,98.6 402.1,97.4 402.5,100.1 402.8,100.2 403.2,96.6 403.6,98.3 404.0,98.9 404.3,101.6 404.7,102.4 405.1,100.9 405.5,100.1 405.8,100.2 406.2,101.4 406.6,102.8 407.0,101.6 407.4,100.6 407.7,100.0 408.1,97.8 408.5,94.0 408.9,88.9 409.2,86.3 409.6,84.7 410.0,86.4 410.4,86.8 410.7,85.7 411.1,87.4 411.5,88.2 411.9,78.1 412.2,68.7 412.6,73.1 413.0,70.4 413.4,69.2 413.8,73.6 414.1,74.7 414.5,76.5 414.9,75.5 415.3,77.0 415.6,77.7 416.0,81.8 416.4,81.0 416.8,83.1 417.1,80.8 417.5,80.1 417.9,80.1 418.3,80.9 418.7,81.7 419.0,81.6 419.4,81.1 419.8,80.3 420.2,80.9 420.5,80.7 420.9,79.3 421.3,79.3 421.7,79.5 422.0,79.9 422.4,76.8 422.8,78.1 423.2,77.7 423.5,77.4 423.9,76.8 424.3,79.3 424.7,82.6 425.1,82.8 425.4,82.9 425.8,85.5 426.2,89.4 426.6,92.7 426.9,95.4 427.3,92.0 427.7,85.7 428.1,80.4 428.4,75.4 428.8,69.8 429.2,71.1 429.6,72.5 430.0,72.6 430.3,73.4 430.7,69.5 431.1,69.5 431.5,68.1 431.8,71.1 432.2,73.5 432.6,72.2 433.0,71.9 433.3,73.2 433.7,70.7 434.1,70.5 434.5,73.6 434.8,75.6 435.2,74.5 435.6,74.4 436.0,73.0 436.4,72.3 436.7,72.8 437.1,72.9 437.5,72.2 437.9,70.5 438.2,70.2 438.6,72.5 439.0,71.6 439.4,67.8 439.7,65.4 440.1,65.6 440.5,68.3 440.9,70.5 441.3,69.6 441.6,68.2 442.0,68.3 442.4,66.9 442.8,63.3 443.1,59.9 443.5,59.5 443.9,57.8 444.3,58.6 444.6,55.0 445.0,53.1 445.4,47.7 445.8,46.1 446.2,47.3 446.5,47.7 446.9,46.0 447.3,43.2 447.7,39.6 448.0,40.7 448.4,37.9 448.8,38.7 449.2,39.6 449.5,40.0 449.9,42.0 450.3,42.0 450.7,40.7 451.0,38.0 451.4,40.2 451.8,42.2 452.2,42.4 452.6,42.5 452.9,42.6 453.3,40.7 453.7,37.0 454.1,33.7 454.4,33.1 454.8,27.9 455.2,29.7 455.6,31.0 455.9,31.3 456.3,30.5 456.7,30.7 457.1,30.1 457.5,30.4 457.8,27.9 458.2,26.7 458.6,33.1 459.0,34.9 459.3,34.6 459.7,33.6 460.1,33.1 460.5,33.8 460.8,30.6 461.2,28.5 461.6,33.1 462.0,33.4 462.3,31.9 462.7,35.1 463.1,35.5 463.5,32.8 463.9,31.3 464.2,33.5 464.6,33.7 465.0,35.1 465.4,33.3 465.7,32.4 466.1,31.3 466.5,31.5 466.9,31.3 467.2,30.6 467.6,29.9 468.0,31.4"/><polyline class="sB mid" points="54.0,144.8 54.4,146.1 54.8,147.8 55.1,148.5 55.5,149.4 55.9,150.7 56.3,153.7 56.6,155.8 57.0,154.9 57.4,155.1 57.8,155.2 58.1,156.8 58.5,158.7 58.9,159.6 59.3,159.5 59.7,158.3 60.0,155.5 60.4,149.2 60.8,141.4 61.2,145.1 61.5,146.4 61.9,146.6 62.3,146.8 62.7,150.3 63.0,150.3 63.4,151.9 63.8,153.4 64.2,154.0 64.5,155.1 64.9,152.1 65.3,152.0 65.7,150.8 66.1,150.0 66.4,153.6 66.8,155.5 67.2,154.4 67.6,155.8 67.9,157.5 68.3,158.7 68.7,154.1 69.1,153.9 69.4,155.8 69.8,156.7 70.2,157.5 70.6,157.9 71.0,159.6 71.3,159.3 71.7,158.6 72.1,156.9 72.5,158.5 72.8,159.7 73.2,158.7 73.6,160.1 74.0,162.5 74.3,162.5 74.7,163.1 75.1,163.8 75.5,164.7 75.8,163.7 76.2,161.6 76.6,162.9 77.0,162.9 77.4,163.9 77.7,163.8 78.1,163.2 78.5,164.9 78.9,166.2 79.2,165.1 79.6,165.0 80.0,164.7 80.4,161.1 80.7,161.2 81.1,162.5 81.5,161.5 81.9,164.0 82.3,166.4 82.6,168.6 83.0,172.8 83.4,176.2 83.8,177.8 84.1,174.8 84.5,175.0 84.9,173.7 85.3,173.1 85.6,171.6 86.0,174.4 86.4,176.9 86.8,176.1 87.2,176.0 87.5,175.5 87.9,176.4 88.3,178.4 88.7,180.4 89.0,182.0 89.4,182.9 89.8,184.6 90.2,185.7 90.5,186.9 90.9,187.8 91.3,187.0 91.7,182.4 92.0,176.6 92.4,176.6 92.8,179.6 93.2,181.1 93.6,183.7 93.9,185.0 94.3,184.5 94.7,185.7 95.1,188.0 95.4,187.8 95.8,184.3 96.2,183.7 96.6,181.9 96.9,179.9 97.3,178.7 97.7,180.0 98.1,177.8 98.5,179.0 98.8,178.5 99.2,175.1 99.6,173.5 100.0,175.6 100.3,175.9 100.7,174.1 101.1,174.6 101.5,179.4 101.8,178.9 102.2,178.2 102.6,177.9 103.0,177.5 103.3,179.3 103.7,180.1 104.1,182.4 104.5,184.8 104.9,184.5 105.2,181.5 105.6,185.8 106.0,184.8 106.4,179.5 106.7,175.9 107.1,177.7 107.5,177.7 107.9,178.9 108.2,181.3 108.6,183.5 109.0,184.2 109.4,183.1 109.8,182.9 110.1,184.0 110.5,183.4 110.9,176.8 111.3,174.9 111.6,173.7 112.0,176.0 112.4,176.9 112.8,179.2 113.1,181.8 113.5,184.7 113.9,184.3 114.3,180.6 114.6,178.2 115.0,180.0 115.4,180.2 115.8,179.0 116.2,180.0 116.5,179.3 116.9,178.4 117.3,178.8 117.7,180.0 118.0,180.4 118.4,181.9 118.8,184.1 119.2,185.0 119.5,185.1 119.9,186.5 120.3,187.2 120.7,186.2 121.1,184.3 121.4,183.4 121.8,183.0 122.2,181.7 122.6,181.7 122.9,174.6 123.3,169.6 123.7,167.1 124.1,169.3 124.4,170.8 124.8,171.5 125.2,171.1 125.6,168.8 126.0,167.1 126.3,168.7 126.7,170.1 127.1,171.1 127.5,172.4 127.8,172.2 128.2,174.7 128.6,176.0 129.0,177.8 129.3,178.2 129.7,178.5 130.1,179.5 130.5,180.8 130.8,181.4 131.2,181.8 131.6,179.4 132.0,178.2 132.4,176.2 132.7,179.7 133.1,182.8 133.5,183.0 133.9,184.1 134.2,183.0 134.6,183.3 135.0,184.0 135.4,182.5 135.7,183.3 136.1,184.2 136.5,183.2 136.9,186.4 137.3,187.9 137.6,191.2 138.0,190.9 138.4,191.9 138.8,192.6 139.1,191.8 139.5,191.5 139.9,193.0 140.3,194.5 140.6,194.5 141.0,193.9 141.4,196.3 141.8,197.5 142.1,197.4 142.5,198.0 142.9,197.1 143.3,195.7 143.7,195.8 144.0,194.9 144.4,193.9 144.8,191.5 145.2,189.3 145.5,189.5 145.9,192.7 146.3,192.9 146.7,192.9 147.0,194.2 147.4,193.3 147.8,191.7 148.2,192.8 148.6,192.4 148.9,194.9 149.3,195.5 149.7,197.2 150.1,197.7 150.4,194.9 150.8,193.2 151.2,192.1 151.6,189.2 151.9,183.5 152.3,184.1 152.7,186.8 153.1,188.1 153.5,187.3 153.8,185.2 154.2,188.4 154.6,189.7 155.0,189.5 155.3,191.3 155.7,191.9 156.1,190.4 156.5,191.1 156.8,191.8 157.2,193.1 157.6,192.8 158.0,189.1 158.3,183.1 158.7,182.5 159.1,186.0 159.5,185.8 159.9,186.1 160.2,185.6 160.6,185.7 161.0,180.8 161.4,176.7 161.7,179.7 162.1,181.5 162.5,178.1 162.9,175.4 163.2,175.1 163.6,175.2 164.0,175.8 164.4,174.5 164.8,173.7 165.1,172.0 165.5,171.6 165.9,172.0 166.3,172.6 166.6,172.7 167.0,172.8 167.4,173.3 167.8,174.8 168.1,175.8 168.5,177.4 168.9,178.7 169.3,180.0 169.6,179.8 170.0,179.1 170.4,179.7 170.8,180.5 171.2,180.7 171.5,180.3 171.9,179.7 172.3,180.9 172.7,181.0 173.0,180.2 173.4,180.1 173.8,182.2 174.2,181.6 174.5,175.8 174.9,175.1 175.3,177.6 175.7,178.1 176.1,179.0 176.4,179.5 176.8,179.4 177.2,182.3 177.6,183.4 177.9,185.2 178.3,184.4 178.7,180.1 179.1,175.0 179.4,177.9 179.8,178.0 180.2,175.7 180.6,173.1 180.9,172.1 181.3,163.7 181.7,167.4 182.1,166.2 182.5,167.0 182.8,167.3 183.2,168.2 183.6,169.3 184.0,170.3 184.3,169.9 184.7,168.8 185.1,170.8 185.5,171.7 185.8,172.0 186.2,173.3 186.6,172.2 187.0,168.2 187.4,165.9 187.7,165.4 188.1,163.1 188.5,163.1 188.9,162.6 189.2,160.7 189.6,161.8 190.0,163.3 190.4,165.0 190.7,167.4 191.1,167.0 191.5,165.7 191.9,160.6 192.3,161.6 192.6,157.0 193.0,151.8 193.4,154.5 193.8,154.6 194.1,154.9 194.5,154.9 194.9,155.7 195.3,155.3 195.6,154.5 196.0,154.5 196.4,150.6 196.8,149.8 197.1,151.3 197.5,151.2 197.9,150.9 198.3,149.3 198.7,148.3 199.0,147.5 199.8,148.4 200.2,148.4 200.5,142.7 200.9,140.3 201.3,140.0 201.7,138.6 202.0,140.0 202.4,140.9 202.8,142.0 203.2,141.5 203.6,142.9 203.9,144.0 204.3,145.4 204.7,139.4 205.1,136.5 205.4,138.5 205.8,138.1 206.2,138.4 206.6,136.3 206.9,135.4 207.3,135.5 207.7,135.1 208.1,133.4 208.4,132.9 208.8,132.3 209.2,133.1 209.6,132.5 210.0,134.0 210.3,135.2 210.7,136.8 211.1,138.5 211.5,140.3 211.8,133.6 212.2,128.5 212.6,127.9 213.0,126.3 213.3,123.9 213.7,125.4 214.1,126.8 214.5,127.4 214.9,127.5 215.2,128.9 215.6,130.3 216.0,132.2 216.4,133.6 216.7,134.9 217.1,135.1 217.5,133.3 217.9,135.6 218.2,133.8 218.6,132.1 219.0,133.0 219.4,133.0 219.8,133.0 220.1,134.8 220.5,136.6 220.9,137.9 221.3,138.8 221.6,140.1 222.0,140.4 222.4,138.0 222.8,135.9 223.1,136.5 223.5,138.2 223.9,140.4 224.3,140.8 224.6,132.0 225.0,123.0 225.4,119.0 225.8,125.2 226.2,126.5 226.5,127.4 226.9,127.5 227.3,131.2 227.7,133.2 228.0,135.2 228.4,135.5 228.8,133.8 229.2,132.7 229.5,124.2 229.9,124.6 230.3,126.0 230.7,125.4 231.1,126.1 231.4,126.1 231.8,125.2 232.2,126.7 232.6,127.5 232.9,126.3 233.3,126.3 233.7,123.7 234.1,126.6 234.4,128.3 234.8,125.1 235.2,122.4 235.6,124.7 235.9,125.5 236.3,126.0 236.7,127.9 237.1,125.9 237.5,128.0 237.8,131.3 238.2,130.9 238.6,128.4 239.0,128.1 239.3,128.9 239.7,128.6 240.1,129.1 240.5,130.8 240.8,132.0 241.2,130.6 241.6,133.3 242.0,132.6 242.4,132.6 242.7,133.4 243.1,136.9 243.5,137.0 243.9,135.3 244.2,135.2 244.6,136.7 245.0,137.7 245.4,138.1 245.7,138.8 246.1,140.6 246.5,141.4 246.9,136.1 247.3,135.4 247.6,137.1 248.0,135.8 248.4,135.2 248.8,132.7 249.1,135.0 249.5,138.5 249.9,137.1 250.3,136.0 250.6,134.0 251.0,136.1 251.4,134.1 251.8,133.9 252.1,136.7 252.5,135.2 252.9,133.6 253.3,135.7 253.7,137.4 254.0,137.1 254.4,136.4 254.8,135.3 255.2,135.2 255.5,134.1 255.9,133.8 256.3,132.6 256.7,136.8 257.0,140.3 257.4,140.8 257.8,140.3 258.2,139.4 258.6,137.3 258.9,134.9 259.3,136.3 259.7,137.2 260.1,135.8 260.4,136.4 260.8,137.7 261.2,139.6 261.6,141.8 261.9,141.1 262.3,132.3 262.7,127.0 263.1,128.0 263.4,128.1 263.8,128.4 264.2,126.5 264.6,124.5 265.0,124.8 265.3,124.8 265.7,125.7 266.1,121.6 266.5,118.4 266.8,119.5 267.2,121.0 267.6,122.3 268.0,121.2 268.3,120.5 268.7,122.5 269.1,124.5 269.5,126.2 269.9,127.1 270.2,131.0 270.6,134.1 271.0,134.2 271.4,136.9 271.7,137.7 272.1,138.9 272.5,140.3 272.9,142.5 273.2,143.6 273.6,143.4 274.0,143.0 274.4,142.8 274.7,143.5 275.1,143.9 275.5,145.8 275.9,145.7 276.3,145.7 276.6,148.7 277.0,148.0 277.4,147.3 277.8,148.7 278.1,151.3 278.5,151.4 278.9,155.2 279.3,157.3 279.6,157.9 280.0,157.0 280.4,158.0 280.8,159.0 281.2,159.2 281.5,158.8 281.9,159.6 282.3,160.8 282.7,161.7 283.0,162.2 283.4,161.7 283.8,161.6 284.2,164.6 284.5,167.3 284.9,167.4 285.3,169.0 285.7,166.5 286.1,165.0 286.4,165.2 286.8,165.0 287.2,167.0 287.6,170.0 287.9,172.8 288.3,174.1 288.7,176.1 289.1,176.7 289.4,175.9 289.8,176.4 290.2,177.3 290.6,175.2 290.9,170.2 291.3,166.6 291.7,166.3 292.1,164.3 292.5,164.9 292.8,165.4 293.2,171.0 293.6,175.2 294.0,174.4 294.3,175.8 294.7,175.7 295.1,176.9 295.5,178.6 295.8,179.3 296.2,178.2 296.6,178.2 297.0,178.2 297.4,180.2 298.1,177.5 298.5,177.9 298.9,176.8 299.2,175.1 299.6,172.7 300.0,174.7 300.4,173.5 300.7,175.1 301.1,177.0 301.5,178.2 301.9,178.4 302.2,175.6 302.6,171.7 303.0,174.8 303.4,175.4 303.8,175.0 304.1,174.2 304.5,176.0 304.9,176.0 305.3,175.4 305.6,173.3 306.0,167.7 306.4,165.7 306.8,162.5 307.1,155.1 307.5,154.4 307.9,156.0 308.3,155.8 308.7,155.6 309.0,152.6 309.4,155.6 309.8,157.7 310.2,157.7 310.5,157.0 310.9,152.7 311.3,155.6 311.7,156.2 312.0,156.8 312.4,159.2 312.8,161.0 313.2,164.3 313.6,166.3 313.9,163.9 314.3,164.7 314.7,168.2 315.1,169.7 315.4,170.8 315.8,171.1 316.2,171.2 316.6,172.0 316.9,173.5 317.3,173.7 317.7,173.8 318.1,174.3 318.4,173.3 318.8,177.6 319.2,180.0 319.6,180.6 320.0,182.1 320.3,184.2 320.7,183.0 321.1,183.1 321.5,183.6 321.8,184.3 322.2,185.7 322.6,186.7 323.0,190.4 323.3,189.5 323.7,188.8 324.1,189.3 324.5,188.4 324.9,189.1 325.2,188.5 325.6,190.9 326.0,191.6 326.4,193.7 326.7,193.9 327.1,193.3 327.5,191.6 327.9,189.3 328.2,186.6 328.6,185.9 329.0,186.7 329.4,186.6 329.7,185.1 330.1,182.1 330.5,180.8 330.9,169.9 331.3,168.8 331.6,170.1 332.0,165.5 332.4,160.7 332.8,156.8 333.1,164.0 333.5,158.7 333.9,151.3 334.3,145.1 334.6,143.2 335.0,143.2 335.4,142.1 335.8,137.4 336.2,135.3 336.5,129.3 336.9,124.1 337.3,128.4 337.7,129.7 338.0,129.2 338.4,130.8 338.8,132.1 339.2,131.4 339.5,130.6 339.9,130.1 340.3,129.4 340.7,129.1 341.1,129.8 341.4,131.5 341.8,130.1 342.2,128.6 342.6,124.7 342.9,129.7 343.3,130.8 343.7,129.1 344.1,127.9 344.4,129.6 344.8,131.5 345.2,130.0 345.6,129.2 345.9,128.3 346.7,130.0 347.1,131.5 347.5,133.6 347.8,135.9 348.2,136.8 348.6,137.1 349.0,135.1 349.3,137.9 349.7,141.8 350.1,144.9 350.5,144.2 350.8,144.2 351.2,145.6 351.6,147.7 352.0,150.9 352.4,150.8 352.7,150.4 353.1,151.5 353.5,153.5 353.9,155.0 354.2,157.0 355.0,150.6 355.4,144.6 355.7,143.1 356.1,144.2 356.5,146.7 356.9,148.1 357.2,150.2 357.6,152.7 358.0,154.1 358.4,152.6 358.8,151.4 359.1,151.4 359.5,152.5 359.9,151.6 360.3,150.0 360.6,155.9 361.0,158.0 361.4,157.3 361.8,156.7 362.1,157.3 362.5,156.8 362.9,159.2 363.3,159.2 363.7,161.6 364.0,162.4 364.4,162.4 364.8,160.9 365.2,158.8 365.5,155.5 365.9,152.6 366.3,154.8 366.7,157.0 367.0,159.3 367.4,161.7 367.8,161.0 368.2,159.6 368.5,163.9 368.9,166.5 369.3,167.1 369.7,168.0 370.1,168.6 370.4,170.4 370.8,170.9 371.2,169.1 371.6,168.8 371.9,170.1 372.3,169.3 372.7,166.4 373.1,163.3 373.4,161.1 373.8,160.9 374.2,159.9 374.6,161.8 375.0,162.5 375.3,163.0 375.7,163.1 376.1,162.3 376.5,160.4 376.8,162.0 377.2,162.9 377.6,161.3 378.0,163.6 378.3,165.7 378.7,167.5 379.1,167.4 379.5,166.0 379.9,166.2 380.2,168.0 380.6,165.6 381.0,162.2 381.4,164.1 381.7,165.1 382.1,163.7 382.5,162.7 382.9,162.9 383.2,164.5 383.6,166.9 384.0,168.6 384.4,167.5 384.7,167.1 385.1,163.0 385.5,156.3 385.9,152.8 386.3,159.3 386.6,161.8 387.0,161.9 387.4,162.0 387.8,161.1 388.1,161.6 388.5,158.1 388.9,151.5 389.3,151.0 389.6,150.0 390.0,146.5 390.4,146.5 390.8,147.4 391.2,148.8 391.5,150.0 391.9,145.8 392.3,149.7 392.7,143.4 393.0,145.8 393.4,144.2 393.8,143.6 394.2,145.0 394.5,145.3 394.9,145.0 395.3,145.5 395.7,144.3 396.0,145.4 396.4,145.9 396.8,146.1 397.2,146.0 397.6,143.4 397.9,144.4 398.3,141.5 398.7,143.0 399.1,144.9 399.4,141.3 399.8,143.6 400.2,145.5 400.6,143.3 400.9,143.1 401.3,145.7 401.7,146.8 402.1,147.4 402.5,149.4 402.8,149.1 403.2,145.5 403.6,147.1 404.0,149.4 404.3,151.1 404.7,151.8 405.1,150.4 405.5,149.6 405.8,149.2 406.2,150.0 406.6,152.4 407.0,149.0 407.4,146.4 407.7,144.5 408.1,145.0 408.5,142.0 408.9,137.5 409.2,135.1 409.6,133.0 410.0,132.1 410.4,133.6 410.7,133.4 411.1,135.6 411.5,137.2 411.9,137.0 412.2,136.4 412.6,135.2 413.0,132.5 413.4,132.7 413.8,137.1 414.1,136.5 414.5,137.1 414.9,136.8 415.3,138.2 415.6,138.9 416.0,141.0 416.4,141.7 416.8,143.2 417.1,140.9 417.5,139.6 417.9,140.0 418.3,140.3 418.7,140.9 419.0,141.0 419.4,140.4 419.8,141.1 420.2,142.9 420.5,142.1 420.9,143.3 421.3,142.4 421.7,144.1 422.0,144.0 422.4,140.9 422.8,141.9 423.2,141.3 423.5,139.4 423.9,144.7 424.3,146.0 424.7,148.0 425.1,146.8 425.4,147.8 425.8,149.7 426.2,152.7 426.6,155.8 426.9,157.7 427.3,154.1 427.7,147.8 428.1,142.5 428.4,137.5 428.8,131.9 429.2,132.1 429.6,133.0 430.0,133.3 430.3,134.5 430.7,132.3 431.1,133.5 431.5,132.5 431.8,133.5 432.2,134.3 432.6,133.0 433.0,133.6 433.3,134.6 433.7,132.1 434.1,131.7 434.5,134.2 434.8,134.7 435.2,133.2 435.6,133.4 436.0,134.6 436.4,134.4 436.7,135.8 437.1,135.1 437.5,134.0 437.9,133.3 438.2,133.1 438.6,135.4 439.0,136.2 439.4,134.8 439.7,133.7 440.1,133.8 440.5,135.7 440.9,137.9 441.3,138.5 441.6,137.0 442.0,137.2 442.4,137.8 442.8,135.1 443.1,132.3 443.5,132.3 443.9,132.1 444.3,132.2 444.6,133.2 445.0,133.4 445.4,131.3 445.8,130.3 446.2,130.4 446.5,130.5 446.9,128.8 447.3,126.0 447.7,122.4 448.0,119.7 448.4,114.6 448.8,117.9 449.2,119.1 449.5,119.3 449.9,120.7 450.3,116.1 450.7,115.9 451.0,116.6 451.4,117.4 451.8,118.0 452.2,118.1 452.6,118.2 452.9,118.5 453.3,119.4 453.7,118.0 454.1,115.7 454.4,113.1 454.8,107.9 455.2,110.1 455.6,112.0 455.9,112.3 456.3,111.5 456.7,111.7 457.1,111.0 457.5,111.8 457.8,109.9 458.2,110.5 458.6,115.4 459.0,115.1 459.3,114.6 459.7,112.8 460.1,112.5 460.5,113.5 460.8,110.2 461.2,108.1 461.6,112.3 462.0,114.6 462.3,113.2 462.7,115.8 463.1,118.1 463.5,117.7 463.9,116.4 464.2,117.7 464.6,119.7 465.0,120.3 465.4,118.6 465.7,117.9 466.1,116.8 466.5,117.5 466.9,118.2 467.2,117.6 467.6,116.8 468.0,117.9"/><circle class="fA mean" cx="468.2" cy="32.3" r="3.5"/><text class="endlab" x="475.2" y="35.8"><tspan class="ro-n">A</tspan> +871.8R</text><circle class="fB mean" cx="468.2" cy="118.5" r="3.5"/><text class="endlab" x="475.2" y="122.0"><tspan class="ro-n">B</tspan> +203.7R</text></svg></div></div><section class="sec"><div class="kick">07</div><h2>Artifacts &amp; reproduce</h2><p class="sub">Everything on this page is derived from the runs/ registry; every artifact is content-addressed. Same documents, same seed &#8594; same numbers.</p></section><div class="term"><div class="bar"><span class="dots"><i></i><i></i><i></i></span>aura-quadriga — reproduce</div><pre><span class="p">$</span> <span class="cmd">aura campaign run research/campaign-arc1.json</span> <span class="dim"># screen &#8594; 490d14df&#8230;</span>
<span class="p">$</span> <span class="cmd">aura campaign run research/campaign-arc1-curves.json</span> <span class="dim"># curves &#8594; da886931&#8230;</span>
<span class="p">$</span> <span class="cmd">aura runs families</span> <span class="dim"># registry index</span>
<span class="p">$</span> <span class="cmd">aura reproduce 490d14df-0-GER40-w0-r0-s1-0</span> <span class="dim"># any family, bit-identical</span>
<span class="p">$</span> <span class="cmd">aura chart da886931-0 --tap r_equity</span> <span class="dim"># interactive trace viewer</span></pre></div><div class="cards c3"><div class="card"><h3>Blueprints</h3><div class="cid"><b>bo_h1</b><br>82515a31bfe58ae087b4bd09eb4adb032cc2cabddd71a2761c543066bd237d3d</div><div class="cid"><b>bo_h1_trend</b><br>82d61d13bf21984068d6fd3ae9de9766fe99edb5163ea50ffb3485bfae9f56bc</div></div><div class="card"><h3>Processes</h3><div class="cid"><b>screen-wf-mc-generalize</b><br>41863fcae9300b334056c6f2a899e8c2672ecb29387d294e9a6e58f159ef51b4</div><div class="cid"><b>curves-sweep</b><br>476752f5af365c85be3e5bd6265e5503040fc691ac548c0bd42e67714110e05f</div></div><div class="card"><h3>Campaigns</h3><div class="cid"><b>arc1-breakout-trend</b><br>490d14df576a7ef2ad099bbfdd21b9840f4cd9436e499f7e541316dc646e47eb</div><div class="cid"><b>arc1-curves</b><br>da886931b0688d57a17e64a016cc004af792038454513dc7b8826763d778c685</div></div></div><p class="fnote foot">generated by site/build.py from the runs/ registry · engine 1ebb94c · project 221c408 · 2026-07-13</p></div><script>(function(){var t=document.getElementById('tip');document.addEventListener('pointerover',function(e){var m=e.target.closest&&e.target.closest('[data-tip]');if(!m){t.style.display='none';return;}t.textContent=m.getAttribute('data-tip');t.style.display='block';});document.addEventListener('pointermove',function(e){if(t.style.display!=='block')return;var x=Math.min(e.clientX+14,innerWidth-t.offsetWidth-8),y=Math.min(e.clientY+18,innerHeight-t.offsetHeight-8);t.style.left=x+'px';t.style.top=y+'px';});})();</script></body></html>