// Generated by scripts/minify_dashboard.py. Edit mcp2515_dashboard_ui.src.h.
#pragma once
#ifdef ESP_PLATFORM
#include "platform/espidf_runtime.h"
#else
#include <Arduino.h>
#endif
#include <stddef.h>
#include <stdint.h>

#ifndef ESP_PLATFORM
static const char DASH_HTML[] PROGMEM = R"HTML(
<!doctype html>
<html lang="en" data-theme="dark">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>EV Open CAN</title>
<style>
:root{--bg:#0d0f12;--card:#171a20;--line:#2b3038;--text:#edf1f7;--muted:#8993a2;--blue:#5b8fff;--green:#3dba72;--yellow:#f5a623;--red:#ff5b5b}
[data-theme=light]{--bg:#f4f6f9;--card:#fff;--line:#d9dee7;--text:#151922;--muted:#687386}
*{box-sizing:border-box}body{margin:0;background:var(--bg);color:var(--text);font:13px/1.45 system-ui,sans-serif}button,input,select,textarea{font:inherit}header{position:sticky;top:0;z-index:2;background:rgba(13,15,18,.94);border-bottom:1px solid var(--line);padding:12px 16px;display:flex;gap:12px;align-items:center}header h1{font-size:16px;margin:0}header .sub{color:var(--muted);font-size:11px}.dot{width:9px;height:9px;border-radius:50%;background:var(--yellow)}.dot.ok{background:var(--green)}.dot.bad{background:var(--red)}main{max-width:980px;margin:auto;padding:14px;display:grid;gap:12px}.card{background:var(--card);border:1px solid var(--line);border-radius:9px;padding:14px}.card h2{font-size:13px;margin:0 0 12px}.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(135px,1fr));gap:8px}.stat,.box{border:1px solid var(--line);border-radius:7px;padding:9px}.label{font-size:10px;color:var(--muted);text-transform:uppercase}.value{font-size:17px;font-weight:650;margin-top:3px}.ok{color:var(--green)}.warn{color:var(--yellow)}.bad{color:var(--red)}.muted{color:var(--muted)}.row{display:flex;gap:8px;align-items:center;flex-wrap:wrap;margin-top:8px}.row>*{min-width:0}.field{display:flex;flex-direction:column;gap:4px;flex:1;min-width:130px}.field span{color:var(--muted);font-size:11px}input,select,textarea{background:var(--bg);color:var(--text);border:1px solid var(--line);border-radius:6px;padding:8px}textarea{width:100%;min-height:90px;resize:vertical}button,.button{border:1px solid var(--line);background:transparent;color:var(--text);border-radius:6px;padding:8px 11px;cursor:pointer;text-decoration:none}button.primary{background:var(--blue);border-color:var(--blue);color:#fff}button.danger{color:var(--red)}button:disabled,input:disabled,select:disabled,textarea:disabled{opacity:.45;cursor:not-allowed}.status{font-size:11px;color:var(--muted);min-height:16px;margin-top:7px}.section{border-top:1px solid var(--line);margin-top:14px;padding-top:12px}.section h3{font-size:12px;margin:0 0 8px}.plugin{display:flex;gap:8px;align-items:center;border-top:1px solid var(--line);padding:9px 0}.plugin:first-child{border-top:0}.plugin .name{flex:1}.plugin small{display:block;color:var(--muted)}.probe{font-family:ui-monospace,monospace;word-spacing:4px}.note{color:var(--muted);font-size:11px}.hidden{display:none!important}.footer{text-align:center;color:var(--muted);font-size:10px;padding:10px}.toast{position:fixed;right:14px;bottom:14px;background:var(--card);border:1px solid var(--line);padding:9px 12px;border-radius:7px;display:none;max-width:360px}.toast.show{display:block}.scan-item{display:flex;justify-content:space-between;border-top:1px solid var(--line);padding:6px;cursor:pointer}.scan-item:hover{color:var(--blue)}details.card>summary{cursor:pointer;font-weight:650;list-style-position:inside}.support-report{margin:12px 0 0;max-height:65vh;overflow:auto;white-space:pre-wrap;overflow-wrap:anywhere;background:var(--bg);border:1px solid var(--line);border-radius:7px;padding:11px;font:11px/1.5 ui-monospace,monospace;color:var(--text)}
</style>
</head>
<body>
<header><span class="dot" id="dot"></span><div><h1>EV Open CAN</h1><div class="sub" id="header-status">Starting dashboard…</div></div><button style="margin-left:auto" onclick="toggleTheme()">Theme</button></header>
<main>
<section class="card"><h2>Runtime status</h2><div class="grid">
<div class="stat"><div class="label">CAN</div><div class="value" id="s-can">—</div></div>
<div class="stat"><div class="label">Injection</div><div class="value" id="s-inj">—</div></div>
<div class="stat"><div class="label">Frames</div><div class="value" id="s-rx">0</div></div>
<div class="stat"><div class="label">Last CAN frame</div><div class="value" id="s-age">—</div></div>
<div class="stat"><div class="label">TX OK / fail</div><div class="value" id="s-tx">0 / 0</div></div>
<div class="stat"><div class="label">CAN driver state</div><div class="value" id="s-twai">—</div></div>
<div class="stat"><div class="label">Free heap</div><div class="value" id="s-heap">—</div></div>
<div class="stat"><div class="label">Uptime</div><div class="value" id="s-up">—</div></div>
</div><div class="status" id="runtime-note"></div></section>

<section class="card"><h2>Last Write Check</h2><div class="value muted" id="probe-status">No injected frame yet</div>
<div class="section"><div class="label">Sent <span id="probe-tx-meta"></span></div><div class="probe" id="probe-tx">—</div></div>
<div class="section"><div class="label">Latest matching bus frame <span id="probe-rx-meta"></span></div><div class="probe" id="probe-rx">—</div></div>
<p class="note">Compares the last write attempt with the next frame of the same ID and mux. It detects overwrites; it does not prove ECU acceptance.</p></section>

<section class="card" id="config-card"><h2>Configuration and safety</h2><div id="config-controls">
<div class="row"><label class="field"><span>Hardware</span><select id="cfg-hw" onchange="updateSpeedOptions()"><option value="0">Legacy</option><option value="1">HW3</option><option value="2">HW4</option></select></label>
<label class="field"><span>Speed profile</span><select id="cfg-speed"><option value="auto">Auto</option><option value="0">Chill</option><option value="1">Normal</option><option value="2">Hurry</option><option value="3">Max (HW4)</option><option value="4">Sloth (HW4)</option></select></label>
<label class="field"><span>Plugin replay</span><input id="plugin-replay" type="number" min="1" max="20" value="1"></label>
<label class="field"><span>LED brightness</span><input id="led-brightness" type="number" min="0" max="255" value="32"></label></div>
<div class="row"><label><input id="ap-gate-tgl" type="checkbox"> Start injection after AP gate</label><label><input id="summon-only-tgl" type="checkbox"> Summon-only injection (beta)</label><label><input id="hw3-slew" type="checkbox"> HW3/HW4 offset slew</label><label class="field" style="max-width:150px"><span>Slew rate %/s</span><input id="hw3-slew-rate" type="number" min="1" max="25" value="5"></label></div>
<div class="section"><h3>Built-in nag suppression</h3><div class="row"><button id="nag-off" onclick="setNagMode(0)">Off</button><button id="nag-a" onclick="setNagMode(1)">Mode A</button><button id="nag-b" onclick="setNagMode(2)">Mode B</button><button id="nag-c" onclick="setNagMode(3)">Mode C</button></div><p class="note">Party CAN <code>0x370</code> only. A uses fixed +1.80 Nm. B cycles +1.80/+1.50/-1.50/-1.80 Nm with 1 s burst and 1.5 s pause. C uses fresh DAS status (<code>0x399</code>) and valid <code>0x129</code> steering context; stale or invalid context blocks writes. HW4 supports A/B; Mode C remains blocked after reported take-over and control faults. Built into firmware; plugins are not used.</p></div>
<p class="note">Summon-only injection is for newer Tesla software where normal injection may interfere with Autopilot. It allows writes only while fresh CAN state confirms Park at 0 km/h or active Summon, and blocks on missing, stale, invalid, or contradictory state. Signal behavior can differ by vehicle and software version; treat this as beta.</p>
<div class="row"><button class="primary" onclick="saveRuntimeConfig()">Save configuration</button><button id="btn-stop" class="danger" onclick="stopInjection()">Stop injection</button><button id="btn-resume" onclick="resumeInjection()">Arm injection</button><button onclick="rebootDevice()">Reboot</button></div>
</div><div class="status" id="config-status">Loading configuration…</div></section>

<section class="card"><h2>Plugins</h2><div id="plugin-list" class="note">Loading…</div>
<div class="section"><div class="row"><label class="field"><span>HTTPS plugin URL</span><input id="plugin-url" placeholder="https://…/plugin.json"></label><button onclick="installPluginUrl()">Install URL</button></div>
<label class="field"><span>Plugin JSON</span><textarea id="plugin-json" placeholder='{"name":"example","version":"1.0","rules":[]}'></textarea></label>
<div class="row"><input id="plugin-file" type="file" accept="application/json,.json"><button class="primary" onclick="installPluginJson()">Install JSON</button></div><div class="status" id="plugin-status"></div></div></section>

<section class="card"><h2>SavvyCAN USB serial</h2><div class="grid"><div class="stat"><div class="label">Session</div><div class="value" id="gvret-session">Off</div></div><div class="stat"><div class="label">Frames / dropped</div><div class="value" id="gvret-frames">0 / 0</div></div></div>
<div class="row"><button class="primary" onclick="startGvret()">Arm GVRET</button><button onclick="stopGvret()">Stop GVRET</button></div>
<p class="note">In SavvyCAN: Connection → Add Connection → Serial Connection (GVRET), select this board’s USB serial port, 115200 baud. Once SavvyCAN connects, text logging is suppressed so binary GVRET frames remain clean. One 500 kbit/s CAN bus is exposed; the reference command set is read-only.</p><div class="status" id="gvret-status"></div></section>

<section class="card"><h2>Connectivity</h2>
<div class="section" style="border-top:0;margin-top:0;padding-top:0"><h3>WiFi hotspot</h3><div class="row"><label class="field"><span>SSID</span><input id="ap-ssid"></label><label class="field"><span>New password (8–63)</span><input id="ap-pass" type="password" maxlength="63"></label><label><input id="ap-hidden" type="checkbox"> Hidden</label><button onclick="saveAP()">Save hotspot</button></div><div class="status" id="ap-status"></div></div>
<div class="section"><h3>WiFi internet</h3><div id="wifi-nets" class="note">No saved networks</div><div class="row"><label class="field"><span>SSID</span><input id="wifi-ssid"></label><label class="field"><span>Password</span><input id="wifi-pass" type="password"></label><button id="scan-btn" onclick="scanWifi()">Scan</button><button onclick="saveWifi()">Save network</button></div>
<label><input id="wifi-static" type="checkbox" onchange="toggleStaticFields()"> Static IPv4</label><div class="row hidden" id="wifi-static-fields"><input id="wifi-ip" placeholder="IP"><input id="wifi-gw" placeholder="Gateway"><input id="wifi-mask" placeholder="Mask"><input id="wifi-dns" placeholder="DNS"></div><div id="wifi-scan"></div><div class="status" id="wifi-status">Not configured</div></div>
<div class="section"><h3>CAN pins</h3><div class="row"><label class="field"><span>TX GPIO</span><input id="can-tx" type="number"></label><label class="field"><span>RX GPIO</span><input id="can-rx" type="number"></label><button onclick="saveCanPins()">Save and reboot</button></div><div class="status" id="can-pins-status"></div></div>
<div class="section"><h3>Settings backup</h3><div class="row"><button onclick="exportSettings()">Export JSON</button><input id="settings-file" type="file" accept="application/json,.json"><button onclick="importSettings()">Restore and reboot</button></div><div class="status" id="backup-status"></div></div>
</section>

<section class="card"><h2>Firmware update <span id="fw-ver" class="muted"></span></h2><div class="row"><label><input id="beta-tgl" type="checkbox" onchange="saveUpdateFlags()"> Beta channel</label><label><input id="auto-upd-tgl" type="checkbox" onchange="saveUpdateFlags()"> Automatic update</label><button onclick="checkUpdate()">Check release</button><button id="install-update" class="primary hidden" onclick="installUpdate()">Install update</button><button id="ota-reset-btn" onclick="resetOtaCredentials()">Reset OTA credentials</button></div>
<div class="row"><input id="ota-file" type="file" accept=".bin,application/octet-stream"><button onclick="uploadFirmware()">Upload firmware</button></div><div class="status" id="update-status"></div></section>

<details class="card" id="support-card" ontoggle="supportToggle(this)"><summary>Support diagnostics <span id="support-health" class="muted">on demand</span></summary>
<p class="note">Generates one bounded report without passwords, credentials, tokens, or keys. Open only when diagnosing a problem.</p>
<div class="row"><button id="support-refresh" class="primary" onclick="loadSupport(true)">Refresh report</button><button id="support-copy" onclick="copySupport()">Copy report</button><a class="button" href="https://github.com/ev-open-can-tools/ev-open-can-tools/issues/new?template=issue.yml" target="_blank" rel="noopener">Open GitHub issue</a></div>
<div class="status" id="support-status">Expand this section to load diagnostics.</div><pre class="support-report" id="support-report">No report loaded.</pre></details>

<div class="footer">EV Open CAN · safety-critical research firmware</div>
</main><div class="toast" id="toast"></div>
<script>
const $=id=>document.getElementById(id);let config=null,plugins=[],pendingUpdateUrl='',supportReport='',gvretWatching=false,otaUser=localStorage.getItem('otaU')||'',otaPass=localStorage.getItem('otaP')||'';const locks={};
function show(message,bad=false){const t=$('toast');t.textContent=message;t.style.color=bad?'var(--red)':'';t.classList.add('show');clearTimeout(show.timer);show.timer=setTimeout(()=>t.classList.remove('show'),2500)}
function setStatus(id,message,bad=false){const e=$(id);if(e){e.textContent=message;e.style.color=bad?'var(--red)':''}}
function toggleTheme(){const root=document.documentElement;const next=root.dataset.theme==='dark'?'light':'dark';root.dataset.theme=next;localStorage.setItem('theme',next)}document.documentElement.dataset.theme=localStorage.getItem('theme')||'dark';
async function requestJson(url,options={},timeout=4000){const c=new AbortController(),timer=setTimeout(()=>c.abort(),timeout);try{const r=await fetch(url,{...options,signal:c.signal});const text=await r.text();let data={};try{data=text?JSON.parse(text):{}}catch(e){throw new Error('Invalid response')}if(!r.ok)throw new Error(data.error||`HTTP ${r.status}`);return data}finally{clearTimeout(timer)}}
async function requestText(url,options={},timeout=8000){const c=new AbortController(),timer=setTimeout(()=>c.abort(),timeout);try{const r=await fetch(url,{...options,signal:c.signal});const text=await r.text();if(!r.ok)throw new Error(text||`HTTP ${r.status}`);return text}finally{clearTimeout(timer)}}
async function locked(name,work){if(locks[name])return;locks[name]=true;try{return await work()}finally{locks[name]=false}}
function form(data){return new URLSearchParams(data).toString()}function fmtAge(ms){if(ms===null||ms===undefined||ms>=4294967295)return'never';if(ms<1000)return ms+' ms';return(ms/1000).toFixed(ms<10000?1:0)+' s'}function fmtBytes(n){return n>1048576?(n/1048576).toFixed(1)+' MB':Math.round(n/1024)+' KB'}function hexData(data,dlc){return Array.isArray(data)?data.slice(0,dlc).map(v=>(v&255).toString(16).padStart(2,'0').toUpperCase()).join(' '):'—'}
function setConfigReady(ready){$('config-controls').querySelectorAll('button,input,select').forEach(e=>e.disabled=!ready)}setConfigReady(false);
function updateSpeedOptions(){const hw=Number($('cfg-hw').value);for(const o of $('cfg-speed').options)o.disabled=o.value!=='auto'&&Number(o.value)>2&&hw!==2;if($('cfg-speed').selectedOptions[0]?.disabled)$('cfg-speed').value='auto';$('nag-c').disabled=hw===2}
function renderConfig(c){config=c;$('cfg-hw').value=String(c.hw);$('cfg-speed').value=c.speedAuto?'auto':String(c.speedProfile);$('plugin-replay').value=c.pluginReplay;$('plugin-replay').max=c.pluginReplayMax;$('led-brightness').value=c.ledBrightness;$('ap-gate-tgl').checked=!!c.apGate;$('summon-only-tgl').checked=!!c.summonOnly;$('hw3-slew').checked=!!c.hw3OffsetSlew;$('hw3-slew-rate').value=c.hw3SlewRate;['nag-off','nag-a','nag-b','nag-c'].forEach((id,i)=>$(id).classList.toggle('primary',Number(c.nagMode)===i));setConfigReady(true);updateSpeedOptions();setStatus('config-status','Configuration loaded')}
async function loadConfig(){for(let attempt=0;attempt<5;attempt++){try{return renderConfig(await requestJson('/config'))}catch(e){setStatus('config-status',`Configuration retry ${attempt+1}/5`,true);await new Promise(r=>setTimeout(r,400*(attempt+1)))}}setStatus('config-status','Configuration unavailable; controls remain disabled',true)}
function updateApGateControl(d){if(config&&typeof d.apGate==='boolean'){config.apGate=d.apGate;$('ap-gate-tgl').checked=d.apGate}}
async function saveApGate(){return saveRuntimeConfig()}
async function setNagMode(mode){if(!config)return;return locked('nag-mode',async()=>{setConfigReady(false);try{await requestJson('/config',{method:'POST',headers:{'Content-Type':'application/x-www-form-urlencoded'},body:form({nag:String(mode)})});await loadConfig();show(mode?'Nag '+['','Mode A','Mode B','Mode C'][mode]+' selected':'Nag suppression disabled')}catch(e){setConfigReady(true);setStatus('config-status',e.message,true)}})}
async function saveRuntimeConfig(){if(!config)return;const speed=$('cfg-speed').value;const data={hw:$('cfg-hw').value,spa:speed==='auto'?'1':'0',sp:speed==='auto'?String(config.speedProfile):speed,plgr:$('plugin-replay').value,apg:$('ap-gate-tgl').checked?'1':'0',smo:$('summon-only-tgl').checked?'1':'0',hw3OffsetSlew:$('hw3-slew').checked?'1':'0',hw3SlewRate:$('hw3-slew-rate').value};try{await requestJson('/config',{method:'POST',headers:{'Content-Type':'application/x-www-form-urlencoded'},body:form(data)});await requestJson('/led_brightness',{method:'POST',headers:{'Content-Type':'application/x-www-form-urlencoded'},body:form({b:$('led-brightness').value})});await loadConfig();show('Configuration saved')}catch(e){setStatus('config-status',e.message,true)}}
async function stopInjection(){if(!confirm('Stop CAN injection and persist the stopped state?'))return;try{await fetch('/disable',{method:'POST'});await loadConfig()}catch(e){show('Stop failed',true)}}async function resumeInjection(){try{await requestJson('/config',{method:'POST',headers:{'Content-Type':'application/x-www-form-urlencoded'},body:'can=1'});await loadConfig()}catch(e){show(e.message,true)}}async function rebootDevice(){if(confirm('Reboot device?'))fetch('/reboot',{method:'POST'}).catch(()=>{})}
function renderProbe(p){if(!p||!p.active){$('probe-status').textContent='No injected frame yet';$('probe-status').className='value muted';$('probe-tx').textContent=$('probe-rx').textContent='—';return}const id='0x'+(p.id&0x7ff).toString(16).padStart(3,'0').toUpperCase()+(p.mux>=0?' mux '+p.mux:'');$('probe-tx-meta').textContent=`${id}, ${fmtAge(p.txa)} ago`;$('probe-tx').textContent=hexData(p.tx,p.txdlc);$('probe-rx-meta').textContent=p.hasrx?`${id}, ${fmtAge(p.rxa)} ago`:'not seen';$('probe-rx').textContent=p.hasrx?hexData(p.rx,p.rxdlc):'—';const states={1:['Waiting for matching frame','warn'],2:['Matching frame seen','ok'],3:['Bus frame differs from write','warn'],4:['Transmit failed','bad']};const s=states[p.state]||['Waiting','muted'];$('probe-status').textContent=s[0];$('probe-status').className='value '+s[1]}
const twaiNames=['stopped','running','bus-off','recovering'];function renderRuntime(d){const rt=d.runtime||{},driver=d.driver||{},gate=d.apGate||{};const online=!!d.can,injecting=!!d.ia;$('dot').className='dot '+(online?'ok':'bad');$('header-status').textContent=online?(injecting?'CAN online · injection active':d.ready?'CAN online · monitoring':'CAN warm-up gate active'):'Waiting for CAN';$('s-can').textContent=online?'Online':'Offline';$('s-can').className='value '+(online?'ok':'bad');$('s-inj').textContent=injecting?'Active':(d.ready?'Stopped':'Gated');$('s-inj').className='value '+(injecting?'ok':'warn');$('s-rx').textContent=rt.canFrames??d.rx??0;$('s-age').textContent=fmtAge(rt.canAgeMs);$('s-tx').textContent=`${rt.txOk??d.tx??0} / ${rt.txFail??d.txerr??0}`;const code=Number(driver.stateCode);const name=twaiNames[code]||driver.state||'unknown';$('s-twai').textContent=name;$('s-twai').className='value '+(code===1?'ok':code===2?'bad':'warn');$('s-heap').textContent=fmtBytes(rt.freeHeap||0);$('s-up').textContent=Math.floor((rt.uptimeMs||d.up*1000||0)/1000)+' s';const note=!d.ready?`Waiting: ${rt.delayRemainingMs||0} ms delay, ${rt.canFrames||0}/${(rt.frameThreshold||1000)+1} CAN frames`:gate.enabled&&!gate.allowed?`AP gate blocked: ${gate.reason||'unknown'} · AP ${gate.ap?'active':'inactive'} · stable ${fmtAge(gate.stableMs)}`:injecting?'Injection gates open':'Injection stopped or another gate blocked';setStatus('runtime-note',note);renderProbe(d.probe)}
async function pollRuntime(){return locked('runtime',async()=>{try{renderRuntime(await requestJson('/status',{},3000))}catch(e){$('dot').className='dot bad';$('header-status').textContent='Dashboard connection lost'}})}
function renderPlugins(){const el=$('plugin-list');if(!plugins.length){el.textContent='No plugins installed';return}el.innerHTML=plugins.map((p,i)=>`<div class="plugin"><div class="name"><b>${escapeHtml(p.name)}</b> <span class="muted">v${escapeHtml(p.version)}</span><small>${p.rules} rules · priority ${i+1}${p.author?' · '+escapeHtml(p.author):''}</small></div><button onclick="togglePlugin(${i})">${p.enabled?'Disable':'Enable'}</button><button onclick="movePlugin(${i},${Math.max(0,i-1)})" ${i===0?'disabled':''}>↑</button><button onclick="movePlugin(${i},${Math.min(plugins.length-1,i+1)})" ${i===plugins.length-1?'disabled':''}>↓</button><button class="danger" onclick="removePlugin(${i})">Remove</button></div>`).join('')}
function escapeHtml(s){return String(s??'').replace(/[&<>"']/g,c=>({'&':'&amp;','<':'&lt;','>':'&gt;','"':'&quot;',"'":'&#39;'}[c]))}async function loadPlugins(){return locked('plugins',async()=>{try{const d=await requestJson('/plugins',{},5000);plugins=d.plugins||[];renderPlugins()}catch(e){setStatus('plugin-status',e.message,true)}})}async function pluginAction(path,data){try{await requestJson(path,{method:'POST',headers:{'Content-Type':'application/x-www-form-urlencoded'},body:form(data)},6000);await loadPlugins()}catch(e){setStatus('plugin-status',e.message,true)}}function togglePlugin(i){pluginAction('/plugin_toggle',{idx:i})}function movePlugin(i,p){if(i!==p)pluginAction('/plugin_priority',{idx:i,priority:p})}function removePlugin(i){if(confirm(`Remove ${plugins[i].name}?`))pluginAction('/plugin_remove',{idx:i})}
async function installPluginUrl(){try{await requestJson('/plugin_install',{method:'POST',headers:{'Content-Type':'application/x-www-form-urlencoded'},body:form({url:$('plugin-url').value})},20000);await loadPlugins();show('Plugin installed')}catch(e){setStatus('plugin-status',e.message,true)}}async function installPluginJson(){let text=$('plugin-json').value.trim();const file=$('plugin-file').files[0];if(file)text=await file.text();try{JSON.parse(text);await requestJson('/plugin_upload',{method:'POST',headers:{'Content-Type':'application/json'},body:text},8000);await loadPlugins();show('Plugin installed')}catch(e){setStatus('plugin-status',e.message,true)}}
async function pollGvret(){return locked('gvret',async()=>{try{const d=await requestJson('/gvret/status');gvretWatching=!!(d.enabled||d.connected);$('gvret-session').textContent=d.connected?'Connected':d.enabled?'Armed':'Off';$('gvret-session').className='value '+(d.connected?'ok':d.enabled?'warn':'muted');$('gvret-frames').textContent=`${d.frames} / ${d.dropped}`;setStatus('gvret-status',d.connected?'Binary mode owns serial; text logs are routed away.':d.enabled?'Waiting for SavvyCAN handshake.':'GVRET is stopped.')}catch(e){setStatus('gvret-status',e.message,true)}})}async function startGvret(){try{await requestJson('/gvret/start',{method:'POST'});gvretWatching=true;pollGvret()}catch(e){show(e.message,true)}}async function stopGvret(){try{await requestJson('/gvret/stop',{method:'POST'});gvretWatching=false;pollGvret()}catch(e){show(e.message,true)}}
async function loadApStatus(){try{const d=await requestJson('/ap_status');$('ap-ssid').value=d.ssid||'';$('ap-hidden').checked=!!d.hidden;setStatus('ap-status',`${d.clients||0} client(s) · ${d.ip||''}`)}catch(e){setStatus('ap-status',e.message,true)}}async function saveAP(){const ssid=$('ap-ssid').value,pass=$('ap-pass').value;if(!ssid||pass&&pass.length<8||pass.length>63)return setStatus('ap-status','SSID required; password must be 8–63 characters',true);try{await requestJson('/ap_config',{method:'POST',headers:{'Content-Type':'application/x-www-form-urlencoded'},body:form({ssid,pass,hidden:$('ap-hidden').checked?'1':'0'})});setStatus('ap-status','Saved; reboot to apply')}catch(e){setStatus('ap-status',e.message,true)}}
function toggleStaticFields(){$('wifi-static-fields').classList.toggle('hidden',!$('wifi-static').checked)}async function loadWifi(){try{const [n,s]=await Promise.all([requestJson('/wifi_networks'),requestJson('/wifi_status')]);$('wifi-nets').innerHTML=(n.networks||[]).map(x=>`<div class="plugin"><div class="name"><b>${escapeHtml(x.ssid)}</b><small>${x.static?'static '+escapeHtml(x.ip||''):'DHCP'}${x.idx===n.active?' · active':''}</small></div><button class="danger" onclick="deleteWifi(${x.idx})">Remove</button></div>`).join('')||'No saved networks';setStatus('wifi-status',s.connected?`Connected to ${s.ssid} · ${s.ip}`:s.connecting?'Connecting…':'Not connected')}catch(e){setStatus('wifi-status',e.message,true)}}async function saveWifi(){const data={ssid:$('wifi-ssid').value,pass:$('wifi-pass').value,static:$('wifi-static').checked?'1':'0',ip:$('wifi-ip').value,gw:$('wifi-gw').value,mask:$('wifi-mask').value,dns:$('wifi-dns').value};try{await requestJson('/wifi_config',{method:'POST',headers:{'Content-Type':'application/x-www-form-urlencoded'},body:form(data)},7000);await loadWifi()}catch(e){setStatus('wifi-status',e.message,true)}}async function deleteWifi(i){try{await requestJson('/wifi_delete',{method:'POST',headers:{'Content-Type':'application/x-www-form-urlencoded'},body:form({idx:i})});loadWifi()}catch(e){show(e.message,true)}}async function scanWifi(){setStatus('wifi-status','Scanning…');try{const d=await requestJson('/wifi_scan',{},10000);$('wifi-scan').innerHTML=(d.networks||[]).map(n=>`<div class="scan-item" data-ssid="${escapeHtml(encodeURIComponent(n.ssid))}" onclick="selectWifi(this.dataset.ssid)"><span>${escapeHtml(n.ssid)}</span><span>${n.rssi} dBm</span></div>`).join('');setStatus('wifi-status',`${(d.networks||[]).length} network(s) found`)}catch(e){setStatus('wifi-status',e.message,true)}}function selectWifi(s){$('wifi-ssid').value=decodeURIComponent(s)}
async function loadCanPins(){try{const d=await requestJson('/can_pins');$('can-tx').value=d.tx;$('can-rx').value=d.rx;setStatus('can-pins-status',d.customized?'Custom pins active':'Firmware defaults')}catch(e){setStatus('can-pins-status',e.message,true)}}async function saveCanPins(){if(!confirm('Save CAN pins and reboot? Incorrect pins disable CAN.'))return;try{await requestJson('/can_pins',{method:'POST',headers:{'Content-Type':'application/x-www-form-urlencoded'},body:form({tx:$('can-tx').value,rx:$('can-rx').value})});rebootDevice()}catch(e){setStatus('can-pins-status',e.message,true)}}
function otaAuthorization(){if(!otaUser)otaUser=prompt('OTA username')||'';if(!otaPass)otaPass=prompt('OTA password')||'';if(!otaUser||!otaPass)return'';localStorage.setItem('otaU',otaUser);localStorage.setItem('otaP',otaPass);return'Basic '+btoa(otaUser+':'+otaPass)}function resetOtaCredentials(){otaUser=otaPass='';localStorage.removeItem('otaU');localStorage.removeItem('otaP');show('OTA credentials cleared')}
async function exportSettings(){const auth=otaAuthorization();if(!auth)return;try{const r=await fetch('/settings_export',{headers:{Authorization:auth}});if(!r.ok)throw new Error(`HTTP ${r.status}`);const blob=new Blob([await r.text()],{type:'application/json'}),a=document.createElement('a');a.href=URL.createObjectURL(blob);a.download='ev-open-can-settings.json';a.click();URL.revokeObjectURL(a.href)}catch(e){setStatus('backup-status',e.message,true)}}async function importSettings(){const file=$('settings-file').files[0],auth=otaAuthorization();if(!file||!auth)return;if(!confirm('Restore settings and reboot?'))return;try{const d=await requestJson('/settings_import',{method:'POST',headers:{'Content-Type':'application/json',Authorization:auth},body:await file.text()},8000);if(d.ok)rebootDevice()}catch(e){setStatus('backup-status',e.message,true)}}
async function loadUpdateInfo(){try{const [b,a]=await Promise.all([requestJson('/update_beta'),requestJson('/auto_update')]);$('beta-tgl').checked=!!b.beta;$('auto-upd-tgl').checked=!!a.enabled;$('fw-ver').textContent='v'+(b.version||'')}catch(e){setStatus('update-status',e.message,true)}}async function saveUpdateFlags(){try{await Promise.all([requestJson('/update_beta',{method:'POST',headers:{'Content-Type':'application/x-www-form-urlencoded'},body:form({beta:$('beta-tgl').checked?'1':'0'})}),requestJson('/auto_update',{method:'POST',headers:{'Content-Type':'application/x-www-form-urlencoded'},body:form({enabled:$('auto-upd-tgl').checked?'1':'0'})})])}catch(e){setStatus('update-status',e.message,true)}}async function checkUpdate(){setStatus('update-status','Checking…');try{const d=await requestJson('/update_check',{},15000);pendingUpdateUrl=d.update?d.url:'';$('install-update').classList.toggle('hidden',!d.update);setStatus('update-status',d.update?`Update ${d.latest} available (${d.artifact})`:`Up to date (${d.current})`)}catch(e){setStatus('update-status',e.message,true)}}async function installUpdate(){const auth=otaAuthorization();if(!auth||!pendingUpdateUrl||!confirm('Install update and reboot?'))return;try{await requestJson('/update_install',{method:'POST',headers:{'Content-Type':'application/x-www-form-urlencoded',Authorization:auth},body:form({url:pendingUpdateUrl})},180000);setStatus('update-status','Installed; rebooting…')}catch(e){setStatus('update-status',e.message,true)}}async function uploadFirmware(){const file=$('ota-file').files[0],auth=otaAuthorization();if(!file||!auth||!confirm('Upload firmware and reboot?'))return;setStatus('update-status','Uploading…');try{const body=new FormData();body.append('firmware',file);const r=await fetch('/update',{method:'POST',headers:{Authorization:auth,'X-File-Name':file.name,'X-File-Size':String(file.size)},body});if(!r.ok)throw new Error(`HTTP ${r.status}`);setStatus('update-status','Installed; rebooting…')}catch(e){setStatus('update-status',e.message,true)}}
function supportToggle(details){if(details.open&&!supportReport)loadSupport(false)}
async function loadSupport(){return locked('support',async()=>{const refresh=$('support-refresh'),copy=$('support-copy');refresh.disabled=copy.disabled=true;setStatus('support-status','Collecting diagnostics…');try{supportReport=await requestText('/support');$('support-report').textContent=supportReport;const match=supportReport.match(/^Overall: (OK|WARNING|ERROR)$/m),health=match?match[1]:'UNKNOWN';$('support-health').textContent=health.toLowerCase();$('support-health').className=health==='OK'?'ok':health==='ERROR'?'bad':'warn';setStatus('support-status',`Report loaded · ${supportReport.length} bytes`)}catch(e){supportReport='';$('support-report').textContent='Support report unavailable.';$('support-health').textContent='error';$('support-health').className='bad';setStatus('support-status',e.message,true)}finally{refresh.disabled=copy.disabled=false}})}
async function copySupport(){if(!supportReport)await loadSupport(false);if(!supportReport)return;let temp=null;try{if(navigator.clipboard&&window.isSecureContext)await navigator.clipboard.writeText(supportReport);else{temp=document.createElement('textarea');temp.value=supportReport;temp.style.position='fixed';temp.style.opacity='0';document.body.appendChild(temp);temp.select();if(!document.execCommand('copy'))throw new Error('Copy unavailable')}setStatus('support-status','Copied. Paste report into GitHub issue.')}catch(e){setStatus('support-status','Copy failed; select report text manually.',true)}finally{if(temp)temp.remove()}}
async function init(){await loadConfig();await Promise.allSettled([pollRuntime(),loadPlugins(),pollGvret(),loadApStatus(),loadWifi(),loadCanPins(),loadUpdateInfo()]);setInterval(pollRuntime,3000);setInterval(()=>{if(gvretWatching)pollGvret()},3000);setInterval(loadWifi,30000)}init();
</script>
</body>
</html>
)HTML";
#endif

static const uint8_t DASH_HTML_GZ[] PROGMEM = {
    0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0xcd,0x3d,0xcb,0x72,0xdb,0x48,
    0x92,0x77,0x7f,0x05,0xcc,0xf6,0x0a,0xe4,0x18,0x04,0x49,0xc9,0xf2,0x03,0x14,0xa9,
    0x90,0x65,0xbb,0x5b,0xd3,0xb6,0xa5,0x90,0xec,0xed,0x89,0x50,0x68,0x2d,0x90,0x28,
    0x92,0x68,0x81,0x00,0x06,0x00,0x45,0x72,0x28,0x46,0xf4,0x69,0xee,0xfb,0xb8,0xec,
    0x0f,0xec,0x2f,0xec,0x7d,0x3f,0xa5,0xbf,0x64,0x33,0xb3,0xaa,0x80,0x02,0x08,0x50,
    0xb2,0x67,0x3c,0xbb,0xd1,0x11,0x6d,0xb0,0x1e,0x59,0x59,0x99,0x59,0xf9,0xa8,0xca,
    0x2a,0x3d,0x3a,0x78,0xec,0x04,0xc3,0x64,0x19,0x32,0x6d,0x92,0x4c,0xbd,0xfe,0xa3,
    0x03,0xfc,0x47,0xf3,0x6c,0x7f,0xdc,0xab,0x31,0xbf,0xa6,0x39,0x76,0x62,0x37,0x93,
    0x09,0x9b,0xb2,0x5e,0xcd,0xb1,0xa3,0x9b,0x1a,0x36,0x61,0xb6,0x03,0xff,0x4c,0x59,
    0x62,0x6b,0xc3,0x89,0x1d,0xc5,0x2c,0xe9,0xd5,0x66,0xc9,0xa8,0xf9,0xb2,0x26,0x8b,
    0x7d,0x1b,0x3b,0xdc,0xba,0x6c,0x1e,0x06,0x51,0x52,0xd3,0x86,0x81,0x9f,0x30,0x1f,
    0x9a,0xcd,0x5d,0x27,0x99,0xf4,0x1c,0x76,0xeb,0x0e,0x59,0x93,0x7e,0x18,0xae,0xef,
    0x26,0xae,0xed,0x35,0xe3,0xa1,0xed,0xb1,0x5e,0x07,0x61,0x24,0x6e,0xe2,0xb1,0xfe,
    0xdb,0x7f,0xd6,0x4e,0x43,0xe6,0x6b,0xc7,0x47,0x1f,0x0f,0x5a,0xbc,0xe8,0xd1,0x41,
    0x9c,0x2c,0xf1,0x5f,0x2b,0x0a,0x82,0x64,0xd5,0x6c,0x0e,0xc6,0xd6,0x0f,0x6d,0xa7,
    0x3d,0xea,0xec,0x76,0x9b,0xcd,0xa1,0x1d,0x39,0xd6,0x0f,0x9d,0x17,0x1d,0x7b,0xb7,
    0x0d,0x3f,0x3d,0xd7,0x67,0xd6,0x0f,0xbb,0x83,0xbd,0xf6,0xde,0x4b,0xf8,0x99,0xb0,
    0x45,0x62,0xfd,0xc0,0x9c,0x51,0x67,0xf4,0x02,0x7e,0x4e,0x67,0x09,0x83,0xd6,0x2f,
    0x5f,0xbd,0xda,0xb3,0xb1,0xf3,0xc0,0x9b,0x41,0xeb,0xfd,0xc1,0xcb,0xd1,0x68,0x04,
    0x3f,0xc7,0x11,0x63,0xbe,0xf5,0xc3,0x9e,0x33,0xb0,0x5f,0x60,0xf5,0x92,0x79,0x5e,
    0x30,0xb7,0x7e,0x18,0xed,0xdb,0xcf,0x77,0xf7,0xa0,0x20,0xc2,0xde,0xa3,0xd1,0xfe,
    0x60,0x7f,0xb0,0x7e,0x74,0xa9,0xd0,0xc9,0x73,0xc7,0x93,0xe4,0x4a,0xe0,0x36,0x7a,
    0x36,0x7a,0x3e,0x7a,0x95,0xe2,0xc6,0x61,0x73,0xc4,0x9c,0x57,0x0e,0x63,0x2f,0x52,
    0xc4,0x3a,0xfb,0x9d,0x57,0xbb,0xbb,0x19,0x62,0xcf,0x5f,0xbe,0xd8,0x7b,0xf9,0x7c,
    0xfd,0xe8,0x0f,0xab,0x41,0xb0,0x68,0xc6,0xee,0x5f,0x5c,0x7f,0x6c,0x0d,0x82,0xc8,
    0x61,0x51,0x13,0x4a,0xd6,0x83,0xc0,0x59,0xae,0xa6,0x76,0x34,0x76,0x7d,0xab,0xdd,
    0x1d,0xd8,0xc3,0x9b,0x71,0x14,0xcc,0x7c,0xc7,0xba,0xb5,0xa3,0x3a,0x0e,0xde,0xe8,
    0x0e,0x03,0x2f,0x88,0xc4,0x6f,0x1c,0xa4,0xd1,0x1d,0x01,0x1f,0xac,0xce,0x5e,0xb8,
    0x68,0x75,0xcc,0x67,0xfb,0x5a,0xbc,0x8c,0x13,0x36,0x6d,0xce,0x5c,0x23,0xb6,0xfd,
    0xb8,0x19,0xb3,0xc8,0x1d,0xad,0x07,0xb3,0x24,0x09,0x7c,0x60,0x4b,0x38,0x4b,0x8c,
    0x98,0x79,0x6c,0x98,0x18,0xd8,0xdb,0x8e,0x98,0xbd,0x22,0x00,0xae,0x3f,0x81,0x96,
    0xc9,0x1a,0x05,0x81,0x45,0xab,0x30,0x88,0x81,0x83,0x81,0x6f,0xc5,0x89,0x3b,0xbc,
    0x59,0x76,0x93,0x20,0x04,0x8c,0xfe,0xd2,0x74,0x7d,0x87,0x2d,0xac,0x5d,0x15,0xb7,
    0x68,0x3c,0xb0,0xeb,0x9d,0x3d,0xa3,0xb3,0x6f,0x74,0x5e,0x1a,0xe6,0xab,0x67,0x8d,
    0x6e,0x3a,0x25,0x18,0x75,0x6a,0x75,0xc2,0x85,0x16,0x07,0x9e,0xeb,0x68,0x1c,0x6d,
    0x24,0x55,0xa3,0x1b,0xda,0x8e,0x83,0xd3,0xef,0xec,0x42,0x75,0xe7,0x79,0xb8,0xe8,
    0x3a,0x6e,0x1c,0x7a,0xf6,0xd2,0x1a,0x79,0x6c,0xd1,0x1d,0xdb,0x21,0x55,0x75,0x6d,
    0xa0,0xbd,0xdf,0x74,0x61,0x4e,0xb1,0x35,0x04,0x79,0x63,0x91,0xc0,0x51,0x9b,0x74,
    0x08,0x75,0xa4,0x23,0xb3,0x08,0x82,0x24,0x9d,0x6c,0x61,0xc6,0xb3,0xc1,0x4a,0xa5,
    0x18,0xf1,0x81,0x93,0x4c,0x74,0x03,0xe4,0xd6,0xa6,0x03,0x72,0x47,0x82,0x6b,0xbd,
    0x02,0x28,0x13,0x86,0xdc,0xa6,0x4f,0x31,0x91,0xc8,0x76,0xdc,0x59,0x6c,0xed,0xb7,
    0xff,0x69,0x93,0x29,0x5c,0x88,0x1a,0x04,0xc4,0x0c,0x6e,0x56,0x1b,0x0d,0x48,0xea,
    0x44,0xfd,0xc0,0x76,0x36,0x1b,0x80,0xd4,0x35,0xd6,0x53,0xdb,0xf5,0x81,0xf5,0x8b,
    0xa6,0xc0,0xe3,0x65,0x3b,0x9b,0x8f,0x3d,0x4b,0x82,0x8c,0x5e,0xcf,0x14,0x52,0x8d,
    0x23,0xd7,0x49,0x49,0xb5,0x36,0x51,0x20,0x37,0xe1,0x63,0xa9,0xe4,0x49,0x05,0x33,
    0xf2,0xf3,0xc4,0x99,0xab,0xc3,0x71,0xc0,0xda,0x64,0x57,0xa5,0xf7,0x9e,0x42,0x6f,
    0xad,0xad,0x71,0x04,0x10,0x9f,0x55,0x1e,0x39,0xf8,0x1f,0x08,0xea,0x14,0x4a,0x12,
    0xd6,0x04,0x5e,0xcc,0xa6,0x7e,0x6c,0x45,0x2c,0x64,0x76,0x52,0xc7,0x89,0x35,0x47,
    0x6e,0x62,0x4c,0x5d,0x1f,0xe6,0x0e,0x52,0xb4,0x1f,0x2e,0x8c,0xce,0x28,0x6a,0x34,
    0x68,0x56,0x2f,0x11,0x66,0x9c,0xd8,0x89,0x61,0xc2,0xf2,0x58,0x7d,0xc5,0x14,0x5e,
    0x28,0x53,0x78,0x85,0x50,0x3c,0x7b,0xc0,0x3c,0x15,0x7f,0xa4,0x6f,0x89,0x68,0xe0,
    0xaa,0x68,0x26,0x11,0x2c,0x9d,0x51,0x10,0x4d,0xad,0x59,0x18,0xb2,0x68,0x68,0xc7,
    0x6c,0x6d,0xde,0xda,0xa0,0x4d,0x54,0x08,0x38,0x06,0xfd,0x9c,0x73,0x81,0x79,0xbe,
    0xdf,0x16,0x14,0x69,0xe2,0x72,0xd9,0xc3,0x61,0x41,0x20,0xd4,0x41,0xa4,0x2c,0xcc,
    0xed,0xc8,0xcf,0x55,0xa4,0x52,0x84,0x12,0xa2,0x56,0x90,0x70,0x98,0x84,0x5c,0x89,
    0x24,0xaf,0xcd,0x28,0x98,0xaf,0x36,0x16,0xce,0xcb,0xd2,0x75,0xd3,0xc5,0xfa,0xe6,
    0x3c,0x82,0x06,0xf8,0x3f,0x15,0x57,0x22,0x34,0x80,0xea,0xff,0x61,0x05,0xac,0x10,
    0x32,0xd8,0x5e,0x9b,0x23,0x97,0x79,0x4e,0x1e,0x3e,0x01,0x71,0xdc,0x08,0x54,0x08,
    0xea,0x07,0xce,0x51,0x1a,0x15,0x05,0x13,0x6b,0xad,0x4e,0x37,0x03,0xd2,0xd9,0x6b,
    0x23,0x6c,0x02,0xa4,0xc5,0xa1,0xed,0x3f,0x60,0x3d,0x96,0xab,0xa9,0x07,0xaa,0xc3,
    0xaf,0x10,0x92,0xe7,0x8a,0x90,0x20,0x05,0xd2,0xa1,0x04,0xea,0x6d,0x58,0xef,0x38,
    0x13,0xa9,0x10,0x50,0x64,0x22,0x46,0x78,0xde,0xb2,0x08,0x14,0xa3,0xed,0x49,0xcd,
    0x6a,0xf2,0x7f,0xef,0x11,0xd1,0x6c,0x06,0x24,0x61,0x21,0x0c,0xe6,0x27,0x95,0x73,
    0xa8,0x40,0x53,0x43,0x1a,0x75,0x87,0xb3,0x28,0x86,0x5e,0x61,0xe0,0x12,0x6b,0x49,
    0x6c,0x1d,0x36,0x0c,0x22,0x9b,0xd8,0xe2,0x07,0x3e,0x13,0xb8,0x99,0x61,0xe4,0x02,
    0xab,0x97,0x25,0x04,0x04,0x81,0x4e,0x07,0x53,0xb1,0xe0,0x15,0xbc,0x04,0xed,0x9b,
    0x84,0xe4,0x80,0x0f,0x01,0xc6,0x61,0x43,0x3e,0x79,0xb5,0x05,0x72,0x62,0x0f,0x3c,
    0xe6,0x70,0x3b,0x93,0xfd,0xe4,0x9c,0xcc,0x7e,0x4b,0x3a,0xa7,0x25,0xab,0x20,0xb4,
    0x87,0x6e,0xb2,0xb4,0xc0,0x80,0xc9,0x99,0xf9,0x41,0xd2,0xb4,0x71,0x51,0x30,0x87,
    0xeb,0x80,0x59,0xbc,0xca,0xcb,0x49,0xd9,0xf2,0x55,0xd8,0xa5,0x58,0x04,0x92,0xf1,
    0x17,0xa4,0x4c,0xb8,0xd8,0x0a,0x3e,0x51,0x79,0x39,0xaf,0x94,0x8e,0xa4,0x71,0x05,
    0x03,0x78,0xc1,0xae,0x02,0x4a,0x9b,0xec,0xa9,0x78,0xed,0xe6,0xd5,0x22,0x2d,0xac,
    0xd0,0x9b,0xc1,0xef,0x07,0x2f,0xd3,0x7b,0x71,0x53,0x14,0x9b,0xd6,0x96,0xe0,0xad,
    0x91,0x1b,0xc5,0x49,0x73,0x38,0x71,0x61,0xc5,0x2a,0x20,0xd2,0x06,0x9a,0x89,0x1e,
    0xdc,0x8a,0xaf,0xd0,0xb4,0x30,0x9e,0x02,0x91,0x53,0xd4,0x06,0x5e,0x30,0xbc,0xe9,
    0x96,0xe9,0x99,0x30,0x0a,0x06,0x42,0xfb,0x8d,0xec,0xa9,0xeb,0x2d,0xad,0x99,0xdb,
    0x9c,0x06,0x7e,0x00,0x52,0x3c,0x64,0x46,0xfa,0xd5,0x9d,0xc3,0xd0,0x4d,0xfc,0x44,
    0x0c,0xc9,0x78,0x00,0x27,0xd9,0x43,0xac,0xf0,0xc4,0x75,0x1c,0x96,0x91,0x09,0x45,
    0xf8,0xb1,0x3b,0x45,0x67,0xd3,0xf6,0x13,0x50,0x21,0xe0,0x1d,0x82,0xf0,0x91,0xa4,
    0x13,0xd5,0x24,0xbd,0xb6,0x83,0x6e,0xab,0xc6,0x8c,0x74,0x51,0x12,0xd8,0x71,0x92,
    0x79,0x38,0x23,0x77,0xc1,0x9c,0x6e,0xc4,0x65,0xe6,0x19,0x19,0x7d,0xee,0xb6,0xd0,
    0xf7,0x37,0x18,0x53,0x95,0x3d,0x24,0x0f,0x9b,0xa6,0x49,0x9d,0x63,0x37,0xb3,0xfa,
    0x7b,0xcf,0x33,0x04,0xcd,0x78,0xa2,0xa8,0x76,0x62,0x0c,0xc8,0xdc,0xd0,0xe6,0xc2,
    0x92,0x17,0xa6,0x5f,0x67,0xe0,0xa6,0x8d,0x96,0x4d,0xe1,0x92,0x5b,0xc4,0x89,0xe6,
    0x80,0x25,0x73,0x30,0x37,0x0f,0x97,0xa7,0xe7,0x1b,0x7a,0x45,0x19,0xd1,0x9a,0x04,
    0xb7,0x85,0xb5,0x4f,0x6a,0x62,0xed,0x40,0x70,0xe0,0x7a,0x31,0xf9,0x08,0xfd,0x78,
    0x36,0x25,0x5d,0x53,0x50,0x4f,0x45,0x33,0xe9,0xb9,0x20,0xaa,0xe4,0xf6,0x37,0x53,
    0x3e,0xb8,0x7e,0xec,0x3a,0x60,0x67,0x63,0xb0,0xb9,0xc0,0x73,0xd0,0x2c,0xf8,0x8f,
    0x74,0x87,0xc9,0x4d,0x84,0x15,0x45,0xd4,0x9a,0x48,0x48,0xb7,0x93,0x2e,0x62,0x35,
    0x42,0x37,0x9e,0xbc,0xa4,0xf9,0x04,0x70,0x25,0xf1,0x63,0x56,0x18,0x31,0xb2,0x76,
    0x69,0x13,0x6e,0xfb,0x6c,0x7f,0x39,0x07,0x5f,0x97,0x95,0xfb,0xd7,0xdf,0xe8,0x63,
    0x90,0x3e,0xe2,0x9e,0x78,0x87,0x3c,0xf1,0x7d,0xad,0x62,0x7d,0x6c,0x68,0xfb,0xf5,
    0xa3,0x83,0x96,0x88,0x80,0x0e,0x5a,0x22,0x0e,0xc3,0x40,0x40,0x44,0x65,0x2c,0xea,
    0x1f,0xa0,0xdd,0xd4,0x86,0x9e,0x1d,0xc7,0x10,0xb1,0x05,0x10,0x7b,0xb9,0x0e,0xff,
    0xe8,0x43,0x57,0xa8,0xeb,0x1f,0x38,0xee,0x6d,0xff,0x60,0xd2,0xc9,0xc7,0x57,0xf0,
    0x1b,0x2b,0x64,0x4f,0x70,0x86,0x79,0x4f,0x0e,0xb6,0xc9,0x95,0x6a,0xad,0x7f,0x01,
    0xca,0x38,0x81,0x49,0x40,0x60,0x18,0x4f,0x06,0x01,0xb0,0xf1,0xf7,0xdf,0xfe,0xeb,
    0xa0,0x45,0x20,0xf9,0xff,0xb9,0x7e,0xd7,0x08,0xcb,0x5e,0x4d,0xa8,0x46,0x8f,0x8d,
    0x12,0x22,0x7a,0x4d,0x0b,0xfc,0xa1,0x07,0x61,0x42,0xaf,0x96,0x04,0xe3,0xb1,0xc7,
    0x3e,0x61,0xcc,0x54,0x6f,0xd4,0xfa,0xf4,0x71,0xd0,0xe2,0xdd,0xfb,0x7c,0x76,0x30,
    0x1f,0x08,0x28,0xc1,0xdb,0xc5,0xc0,0x4f,0xa8,0x50,0x81,0x20,0x4a,0x10,0x4c,0x69,
    0xb2,0xdb,0x3f,0x9f,0xf9,0x89,0x3b,0x65,0x1a,0x47,0x11,0x3a,0xee,0xe6,0x66,0x82,
    0x4e,0x25,0xc6,0x94,0xea,0xe4,0xa0,0x65,0x2d,0xd7,0x88,0x3c,0xbe,0x5a,0x9f,0x28,
    0x41,0xb3,0x50,0xea,0xc8,0x97,0xe3,0xc4,0x88,0x61,0x49,0xfb,0xb5,0xfe,0xef,0xbf,
    0xfd,0x87,0x3a,0xe5,0x87,0xc1,0x3e,0xf1,0x7f,0xe5,0x33,0xb8,0x67,0x04,0xd7,0xff,
    0xf5,0x1b,0x47,0x78,0x17,0x81,0xce,0x8e,0xef,0x01,0x1f,0x2d,0x6a,0xfd,0xf6,0xd7,
    0xc3,0x7e,0x0f,0x5a,0x06,0x05,0x45,0x1b,0xe1,0x20,0xf7,0x8c,0x61,0x8f,0xd9,0x37,
    0x4e,0xe1,0xd3,0x9f,0xb4,0xd3,0x9f,0xb5,0x96,0x36,0x02,0x2d,0x71,0xcf,0x20,0x09,
    0x4e,0x04,0x9a,0x7e,0xc3,0x64,0x70,0x1e,0x4e,0xe4,0xc2,0x4a,0x27,0xa1,0xb9,0x6f,
    0x3a,0xc9,0xdc,0x76,0xbf,0x99,0x25,0x8c,0x69,0x20,0xc9,0xe1,0x3d,0x43,0x60,0x93,
    0x6f,0x1c,0xe2,0x73,0x88,0xd2,0x7f,0x0f,0xfc,0x59,0x19,0xf4,0x8d,0x2e,0x62,0x91,
    0x53,0x9f,0x88,0xaf,0xaa,0x26,0x1a,0xe4,0x9a,0x5c,0xdb,0x2d,0xb1,0x08,0xfb,0x8f,
    0xb6,0xac,0x47,0x12,0x95,0x5f,0x22,0xd0,0xad,0xda,0xf1,0x84,0x0d,0x6f,0x36,0x56,
    0x24,0x61,0xa6,0x91,0xf5,0xe5,0x63,0x91,0xbf,0x90,0xaa,0x98,0x8f,0x81,0xe6,0xd2,
    0x5a,0x61,0x0e,0x97,0x36,0x6d,0xc9,0x92,0x32,0x8a,0x70,0x04,0x4a,0x89,0x72,0x01,
    0x96,0x4d,0xe3,0xaa,0x30,0x1b,0x20,0x59,0x34,0x71,0x73,0x2a,0x53,0x84,0x1b,0x04,
    0xa0,0x76,0xb5,0x5c,0x97,0x7b,0xb8,0xb2,0x05,0x87,0xf7,0x20,0x59,0x40,0x89,0xa9,
    0x9d,0x80,0x9f,0x05,0x1a,0x73,0x30,0x8b,0xc5,0x7c,0x8a,0x88,0x45,0x5f,0x8f,0x58,
    0x54,0x86,0x58,0x28,0x9b,0x73,0xa6,0x1d,0x07,0x53,0x8c,0x1a,0x62,0x2d,0x99,0x30,
    0xcd,0x43,0xae,0xcc,0x89,0x2b,0x76,0x82,0x31,0x36,0xfc,0x72,0x93,0x09,0xd5,0xf9,
    0x60,0x5a,0x04,0x6a,0xc1,0x88,0x4a,0x62,0xfc,0x3e,0x79,0xa3,0xd9,0xbe,0x03,0x8c,
    0x5a,0x98,0xda,0x49,0xa2,0x81,0xed,0x86,0xd9,0xc6,0x1a,0x5a,0x48,0x02,0x14,0x77,
    0x35,0x17,0x8a,0x03,0x18,0x01,0x06,0xd4,0x00,0xb1,0x5b,0xa6,0xbd,0x3d,0xfe,0xac,
    0xd9,0xc3,0x21,0x0b,0xc1,0x11,0x1b,0x32,0xf3,0xa0,0x15,0xde,0x2f,0x36,0x34,0x2f,
    0xf0,0x47,0x46,0xee,0xb8,0x99,0xc9,0xd1,0x31,0x15,0xcc,0x78,0x90,0x42,0x98,0xc4,
    0xf6,0x88,0x25,0xcb,0x4c,0x9e,0xd4,0x6e,0x60,0x4e,0xa3,0xc0,0x8b,0x0b,0x9a,0x1e,
    0xc2,0x54,0x00,0x46,0x0c,0x91,0x45,0x14,0x5d,0xd6,0xb8,0x9d,0xec,0xff,0x04,0xa3,
    0x41,0x7c,0xcd,0x24,0xe1,0x79,0xf4,0xc1,0x01,0x8f,0xc6,0xcd,0xc9,0x9c,0xec,0xd5,
    0x04,0x43,0x99,0x5e,0x6d,0x16,0x3a,0xc0,0xd2,0x8b,0x90,0x31,0xe7,0x34,0x44,0xa4,
    0x62,0xb4,0x5b,0x07,0x01,0x7d,0x6b,0x24,0xd5,0xbd,0x5a,0x1b,0x18,0xcf,0xc6,0xf6,
    0x10,0xd0,0xe4,0x15,0xc5,0x06,0x9d,0x5a,0xff,0xa7,0x5f,0xf6,0xaa,0x6a,0x77,0xb1,
    0xf6,0x59,0x56,0xdb,0xe2,0x18,0xc1,0x07,0x4d,0x02,0x66,0x57,0x3d,0x19,0xc2,0x0c,
    0xd9,0x30,0x72,0xbd,0xaa,0x19,0xc5,0xd8,0x66,0x03,0x69,0xb2,0xcc,0xfd,0x23,0xf8,
    0x7f,0x15,0x5e,0x30,0xad,0x63,0x88,0x16,0xbc,0x2d,0xb3,0xfa,0x18,0x44,0x10,0x1f,
    0x6c,0x9b,0xd8,0x2c,0x8a,0x2a,0xc9,0xb2,0x57,0xeb,0x7f,0xb0,0x17,0x5a,0x1d,0x66,
    0xdf,0xa8,0x6a,0xf3,0x0c,0x16,0xb6,0x17,0x80,0xd0,0x16,0x5a,0x7d,0x0d,0x91,0xce,
    0x78,0x28,0x03,0x0e,0x23,0x78,0xc4,0x92,0x48,0x14,0x83,0xf2,0xd5,0x45,0xd5,0x4d,
    0x5e,0x5d,0xd3,0x70,0x67,0x1c,0x96,0xd3,0x6c,0x3a,0x60,0x51,0x4d,0x83,0x80,0x11,
    0x67,0x0a,0x4b,0x7a,0x01,0x13,0x6a,0xd7,0x94,0xc9,0x3f,0x64,0xe8,0xf7,0x6f,0xdf,
    0x68,0x03,0x8a,0x1d,0x7c,0x16,0xc7,0x9b,0x63,0x43,0x70,0xdb,0xcc,0xea,0x4b,0x07,
    0x6f,0xcb,0xc1,0xf7,0xf7,0xd3,0xd1,0xf7,0x76,0xb3,0xe1,0x4b,0x54,0x94,0xb2,0x04,
    0xd4,0xc1,0xec,0xb0,0x39,0xc6,0x5d,0xb6,0x64,0xec,0xc9,0x91,0x86,0xa8,0xad,0x07,
    0x01,0x68,0x16,0x8d,0xdc,0x3c,0xa1,0x86,0x69,0xf5,0x8d,0xc0,0x33,0xd7,0x8e,0xce,
    0xb4,0x31,0x99,0x4b,0x01,0x6d,0x03,0x28,0x7a,0xf4,0x81,0xdf,0x0c,0x7c,0x6f,0x59,
    0x05,0x38,0x6b,0xa1,0x80,0xaf,0x43,0xf8,0x61,0x37,0xaa,0xe1,0x4e,0xe6,0x7b,0xcd,
    0xd8,0x63,0xf3,0x12,0x80,0xb0,0x96,0x5a,0x20,0x0d,0xa0,0xb8,0x46,0x31,0x4b,0x34,
    0x6c,0x95,0x87,0x93,0x67,0x45,0xe6,0x97,0xca,0x38,0xaa,0xb3,0x0f,0x71,0x54,0xba,
    0x84,0xa0,0xbb,0x06,0x1a,0x87,0x69,0xff,0xd4,0x2a,0xe1,0x90,0xc4,0xa3,0x89,0x4d,
    0xb6,0x4b,0x47,0xc6,0x9f,0xfd,0xad,0xec,0xc9,0x2c,0xc8,0x64,0xaf,0xff,0x7a,0xe6,
    0x7a,0x09,0x78,0x80,0x9a,0x6f,0x8f,0x35,0x8c,0x6d,0x40,0x7b,0xc7,0xe4,0x32,0x42,
    0xe5,0x26,0x53,0x85,0xab,0x8d,0x98,0x41,0x87,0x26,0x90,0x40,0x71,0xaf,0x81,0x1a,
    0x1f,0xed,0xf1,0x87,0xc0,0x61,0xf5,0x36,0xa8,0xa9,0xd3,0xd1,0x28,0x73,0xae,0x0b,
    0x1d,0xed,0xf2,0x6e,0x1d,0xe8,0x86,0x1f,0xda,0x51,0x65,0xcf,0x41,0x79,0xcf,0x5d,
    0xd9,0xf3,0x75,0x65,0xcf,0x61,0x79,0xcf,0x3d,0xd9,0xf3,0x58,0x09,0x05,0xc8,0xc6,
    0x15,0x8c,0xdb,0x19,0x08,0xe8,0x92,0x3c,0xd2,0x83,0x21,0xb4,0xef,0xb7,0x17,0x7b,
    0x2f,0xc0,0x15,0xa4,0x6f,0x0d,0xc5,0xcb,0xd4,0x8e,0xb4,0x59,0x0c,0xb6,0x89,0x62,
    0x76,0xed,0x69,0xc7,0x7c,0xd9,0xd6,0x3e,0x4e,0x4d,0xed,0xb5,0x36,0x5c,0x0e,0x3d,
    0xa8,0xa0,0xa2,0x16,0xfc,0x7f,0xbf,0xdd,0x6a,0xca,0xff,0x53,0x23,0x6e,0x1a,0x3b,
    0x5a,0x0c,0x46,0x3b,0x02,0xbb,0x89,0xc6,0x07,0xc3,0xb4,0x58,0x0b,0x6d,0x80,0x69,
    0x6a,0xc7,0x02,0x34,0xf0,0x67,0xa2,0xbd,0x39,0xba,0x10,0xc1,0x87,0x56,0x4f,0x91,
    0x79,0xf5,0x4a,0x20,0xd3,0xa0,0xde,0x20,0x0b,0x10,0x1f,0xca,0xda,0xce,0xae,0xac,
    0x85,0x8e,0x8c,0x45,0xe8,0x1e,0x50,0x3c,0xbe,0x48,0xba,0x08,0xca,0x03,0x43,0x1c,
    0xc1,0xfa,0xe0,0xbd,0x44,0x8d,0x46,0x71,0x7d,0xcc,0x8d,0x78,0x6c,0x6a,0x28,0xf5,
    0x22,0xfe,0x8d,0xb5,0xa3,0xd6,0xeb,0xae,0xc6,0x09,0x07,0xba,0x0d,0x43,0xa6,0x98,
    0xb7,0x87,0xa9,0xf3,0xc5,0xcb,0x43,0x64,0xf8,0x99,0xd8,0x37,0xac,0x89,0x46,0x9c,
    0x10,0x13,0x86,0x13,0x3c,0xee,0x99,0x97,0x00,0x54,0x12,0x41,0x18,0x3a,0x09,0x80,
    0x70,0xd1,0x14,0x8d,0x63,0x57,0xe3,0x5a,0x31,0xd6,0xe0,0x07,0x99,0x7a,0x98,0xbc,
    0x23,0x4c,0x7b,0xa9,0xe7,0x51,0xbe,0xca,0x5d,0x20,0x18,0x4c,0xcb,0x67,0x73,0x18,
    0xfb,0x13,0x8b,0x3d,0x1b,0xc2,0xe6,0x51,0x82,0x43,0x68,0x14,0x65,0x03,0x6c,0x34,
    0x21,0x4a,0x97,0xa9,0x8d,0x00,0x00,0xfd,0x11,0x56,0x13,0x57,0xd0,0x4a,0x85,0x2e,
    0x98,0x01,0x72,0x4a,0x68,0xd7,0x4f,0xd2,0x84,0xf8,0x0e,0xa0,0xc0,0xfc,0x09,0xd6,
    0xa0,0x7c,0x90,0x8b,0xaf,0x91,0x9f,0x10,0x4d,0x63,0x0d,0x04,0xe7,0x06,0x5c,0x20,
    0xad,0xad,0xdd,0x4c,0x5b,0x13,0xa4,0xb3,0x0d,0x63,0x81,0xe7,0xc2,0x91,0x36,0x88,
    0x2a,0x82,0xd4,0x88,0x81,0x0b,0x2b,0xd0,0x1f,0x1b,0x9c,0x2d,0x86,0x64,0x8a,0x81,
    0x1d,0x89,0x76,0x10,0xdf,0x0f,0x93,0x20,0x5a,0xf2,0x71,0x4c,0xed,0xc2,0x1d,0xfb,
    0x30,0x87,0x01,0x9b,0xd8,0xb7,0x2e,0x36,0x02,0x57,0xcf,0x71,0x47,0x30,0x01,0x6d,
    0xb0,0xd4,0x6e,0xd9,0xc4,0x05,0xe1,0xe3,0xee,0x8c,0x9c,0x3c,0xf0,0x02,0x57,0x79,
    0x57,0x4b,0x22,0x06,0x98,0x25,0x13,0xa0,0x94,0x0d,0xfc,0x03,0xa5,0x48,0x54,0x7e,
    0x54,0xb9,0xf4,0x53,0xf7,0x90,0x76,0x6d,0xd5,0x25,0x65,0xdf,0x32,0x11,0x18,0x73,
    0x3f,0x0a,0x5d,0x95,0x0b,0x28,0xe4,0x84,0x90,0x6e,0x55,0xe9,0xf2,0x1c,0x24,0x3e,
    0x38,0xe3,0x41,0x58,0x4b,0xb7,0x11,0x68,0x2b,0x57,0x85,0x0e,0xb5,0x69,0x3c,0x4b,
    0x90,0xa1,0x20,0x63,0x5b,0x25,0x54,0xe0,0xc9,0x6c,0xca,0x14,0x40,0xbc,0x20,0x07,
    0xea,0x28,0x9a,0x6e,0x81,0xa4,0xf4,0x1c,0x04,0x41,0xf2,0x86,0x0e,0x92,0xb1,0xdb,
    0x39,0xfd,0x2e,0x28,0x8d,0x7b,0x62,0x1c,0xe1,0x3b,0xca,0xc0,0xe3,0x7d,0x60,0x3b,
    0x62,0x25,0x66,0x14,0x52,0xb6,0x37,0x1e,0x12,0xfc,0x70,0xf7,0x22,0xce,0xfb,0xa8,
    0xc2,0xa9,0xc0,0x8d,0xac,0x5a,0x7e,0xa1,0x88,0x21,0xd3,0x41,0xee,0x0f,0x2e,0xee,
    0xf5,0x68,0x3f,0x7d,0x3a,0xbb,0x10,0x0b,0x56,0xfb,0x7c,0xfe,0xbe,0xd2,0xc5,0x99,
    0x45,0x60,0x9f,0xc1,0xcb,0x19,0xb2,0x49,0xe0,0x39,0x2c,0x02,0xeb,0x96,0x24,0x61,
    0x6c,0xb5,0x5a,0x80,0x4d,0x8b,0x37,0x32,0x7f,0x8d,0x69,0x7c,0x69,0xbe,0x8a,0x4c,
    0x80,0x99,0xc2,0xaa,0xf0,0xf8,0xa4,0x3f,0x47,0x1e,0x32,0xe2,0x84,0x97,0xf1,0xb1,
    0x0b,0xdc,0xb8,0xd7,0x2d,0xfb,0xe3,0xc5,0xe9,0x47,0x89,0xb1,0xdc,0xf9,0x57,0x91,
    0x26,0x7c,0x72,0x58,0xeb,0xab,0x1a,0x6e,0x55,0xd7,0xac,0x1a,0x5b,0xd8,0xd3,0xd0,
    0x63,0x35,0xa3,0x26,0xd6,0x13,0x94,0x75,0xcc,0x36,0xfc,0x8e,0x66,0xa0,0xee,0x6b,
    0xd6,0xe5,0xd5,0x5a,0x07,0x54,0x24,0x5c,0xc5,0x67,0xdb,0xa0,0xef,0x06,0xb5,0xd0,
    0xa5,0x96,0x06,0x9f,0x7f,0xf3,0x20,0x07,0x1d,0xa9,0x10,0x88,0x41,0xb2,0xd2,0x42,
    0xf4,0x0c,0x49,0xb4,0xfb,0x96,0x68,0x8e,0x78,0x7f,0x8c,0xb9,0xf4,0x4b,0xea,0x71,
    0x42,0xe4,0x2d,0x60,0x85,0x14,0x0b,0x0c,0xa5,0x14,0xe7,0x36,0xe3,0x1e,0x24,0xb3,
    0xa0,0x16,0x6e,0x97,0xa8,0x29,0x3f,0x5f,0xbc,0xd6,0x30,0x07,0x00,0xbd,0xf8,0xd2,
    0x5d,0xb4,0x07,0x6d,0x48,0x5c,0x48,0x9f,0x65,0xcb,0x8e,0xc4,0xf8,0x36,0x62,0x49,
    0x33,0xe6,0x2d,0x85,0x73,0xa2,0xa0,0xfd,0xf0,0xdd,0x2e,0xad,0xa5,0x39,0x51,0x10,
    0x86,0xcc,0x79,0xc0,0x78,0x14,0xe2,0xc6,0x25,0xdb,0x46,0x95,0x6e,0xf3,0xbd,0x6a,
    0x16,0xfd,0xe4,0x1f,0x11,0xb8,0x54,0x5d,0x3f,0xfe,0xf3,0xf9,0xdb,0x4f,0xd5,0x6a,
    0x0b,0x35,0x67,0xda,0x9e,0xb4,0x66,0xa1,0x43,0xb9,0x41,0x3d,0xf1,0x35,0xc9,0x25,
    0x4b,0x03,0x85,0xee,0x0b,0x5e,0xfe,0xfe,0xd7,0x7f,0xd3,0x8e,0x1c,0xa7,0x58,0x74,
    0x41,0x4c,0x54,0x4b,0xeb,0x34,0x4c,0x03,0xcc,0x18,0x8f,0x07,0xc9,0xc6,0x88,0xfd,
    0xdb,0xff,0x8c,0x15,0xce,0x6b,0xe8,0x25,0x18,0x5a,0xa7,0xb3,0xbf,0xdb,0x6e,0x6b,
    0x03,0x7b,0xe6,0x98,0xda,0x29,0x44,0xf2,0xe9,0xf8,0xa8,0x1e,0x11,0x6a,0x6c,0x68,
    0xe4,0x95,0x78,0xc1,0x78,0x8c,0x5a,0x13,0xe0,0x49,0x8f,0x95,0xa1,0x6d,0xd3,0x06,
    0xae,0x0f,0xc4,0xe2,0xf3,0xe3,0xbb,0x0b,0xb1,0x70,0x4d,0x60,0x6e,0xcc,0xf6,0x11,
    0x2e,0xd3,0xf6,0x61,0x94,0x9b,0x81,0x9b,0xb4,0x62,0x32,0xd6,0xb8,0x49,0x02,0x90,
    0xd8,0x22,0x0c,0x00,0x4c,0x97,0x36,0x23,0x22,0x86,0xd6,0x1f,0x71,0x18,0x06,0xd3,
    0x29,0x59,0x4e,0xf0,0xf4,0x5d,0x84,0x66,0x3b,0xe4,0x64,0x70,0x5f,0xa4,0x62,0x7d,
    0x08,0x59,0x2b,0x2c,0x8f,0x87,0x2c,0x0c,0x49,0xbf,0x5b,0x57,0xec,0x3a,0x94,0xaa,
    0x67,0x19,0x52,0xa8,0xe7,0x68,0xea,0x91,0x60,0x3b,0x77,0x1e,0xd8,0xe6,0x9e,0xfe,
    0x2f,0xee,0x3b,0x57,0x9b,0x04,0x49,0x1c,0xa2,0xd1,0x2a,0xf5,0xee,0xb7,0x04,0xfa,
    0x17,0x27,0x6f,0x36,0xf5,0x3a,0x44,0x74,0xb0,0x9c,0x1c,0x45,0x5d,0x57,0x43,0xf8,
    0x08,0x61,0x4e,0x08,0xc5,0x78,0x00,0xa7,0xd5,0x5f,0xfe,0xfe,0xdb,0xbf,0x3f,0xdf,
    0x6b,0x94,0x82,0xc4,0x56,0x52,0xf1,0xc9,0x1e,0x14,0xe3,0x78,0xcc,0x1f,0x27,0x93,
    0x5e,0xed,0xf9,0x5e,0x71,0xc4,0x02,0x04,0x7e,0x54,0x57,0x16,0xba,0x51,0x45,0xa5,
    0x71,0x41,0x17,0xe6,0xe8,0x2c,0xf5,0x5b,0x52,0x62,0x3d,0x48,0x29,0x22,0x31,0x4a,
    0x14,0x62,0x75,0xe8,0x45,0x0c,0x21,0x57,0xd3,0x67,0x0a,0x47,0x10,0xd6,0xdc,0x1d,
    0xb9,0x4d,0x28,0x8d,0x0b,0xc6,0xfb,0x63,0xa0,0x21,0x8e,0x0e,0x78,0xb4,0x09,0x90,
    0xe5,0xa6,0x64,0xeb,0xfd,0xdb,0x38,0x49,0x03,0x3e,0x98,0x97,0x67,0x82,0x2b,0x15,
    0x70,0x4a,0x19,0xb8,0x61,0xd2,0x29,0x7a,0xc7,0xe3,0x3b,0x70,0xd3,0x54,0xfd,0x06,
    0x45,0xbf,0x00,0x14,0xe2,0x02,0x7c,0x6f,0x51,0x6c,0x40,0x89,0xb4,0x25,0xf2,0x4b,
    0x10,0xa5,0xdc,0x07,0xd8,0x9c,0x2d,0x30,0xcb,0x1d,0x6e,0x08,0x89,0xb2,0xfb,0xc6,
    0x8f,0x8b,0x2e,0xa8,0xdd,0x3b,0x9c,0x3f,0xed,0xbe,0x69,0xbc,0x40,0x3b,0x39,0xbb,
    0x7d,0x96,0xce,0x29,0xcf,0x00,0x4d,0x0a,0x60,0x61,0xb0,0x26,0x51,0x31,0xae,0x6d,
    0xe0,0xe2,0x86,0x05,0xc7,0xe8,0xe4,0x6c,0xb3,0xd1,0x78,0x5e,0x68,0xf4,0x23,0x78,
    0xff,0x73,0x7b,0xb9,0xd9,0x72,0x6a,0xc7,0x37,0x85,0xb6,0x1f,0xb0,0x68,0xa3,0xa1,
    0xe3,0xc7,0x85,0x76,0x6f,0x3e,0x5e,0xd4,0x54,0x41,0xcf,0x66,0x40,0xe7,0x50,0xdb,
    0x97,0x40,0x3a,0x55,0xbe,0xa9,0x9e,0xa4,0x7e,0x6d,0x6a,0x2b,0xef,0x59,0x12,0xa8,
    0x8f,0x43,0xee,0xcc,0x7e,0x9d,0x7e,0xfa,0xf4,0x27,0xed,0xc7,0xb3,0x93,0xd3,0x4d,
    0x81,0x44,0x01,0x4b,0x16,0x85,0x8d,0x93,0x87,0xc8,0xf8,0xf9,0x36,0x88,0x51,0x35,
    0xc4,0x32,0x29,0x3d,0xb6,0xfd,0x33,0x97,0xef,0xdd,0x92,0xa0,0xa2,0x41,0x89,0xca,
    0xa2,0x87,0xca,0xb0,0x01,0xc6,0x44,0xba,0x7c,0xa5,0x86,0xb9,0x60,0x09,0x9e,0x9c,
    0x82,0xd9,0xb5,0x87,0x37,0xb3,0x70,0xfb,0x9e,0x4e,0x8a,0x31,0x5a,0xc2,0x28,0x91,
    0x7d,0x11,0xe9,0xb7,0x54,0x52,0xf0,0x10,0x95,0x3d,0x38,0xd1,0xf4,0x6f,0x70,0x59,
    0x33,0x17,0x75,0x5a,0x1c,0xfc,0x9c,0x81,0x07,0x13,0x7d,0x03,0xd1,0xf8,0xa4,0x2b,
    0x48,0xf6,0x20,0x6b,0xfc,0x4e,0x6c,0x47,0x68,0x7c,0x1f,0x5e,0x39,0x45,0x19,0xcd,
    0x9b,0xb7,0x18,0x9f,0x8a,0x2e,0xfc,0x64,0x29,0x3b,0x4c,0x29,0xb8,0xb2,0x15,0x1b,
    0xa2,0x18,0x6d,0x97,0x6e,0x5a,0x2a,0x3a,0x08,0xc5,0xe7,0x33,0x8d,0xfe,0xce,0xb3,
    0x39,0x41,0xb4,0xd7,0x22,0x0d,0x1a,0x5c,0x05,0x6f,0x8b,0x1d,0xc4,0xec,0x45,0x40,
    0xfc,0x5b,0x46,0xc0,0x1d,0x8f,0x29,0x69,0x39,0x3e,0xf3,0x4a,0xe9,0x26,0x80,0xbc,
    0x37,0x76,0xa4,0xd3,0x37,0xe0,0x12,0x38,0x5b,0x31,0x2b,0x8d,0xc9,0x45,0x08,0xd2,
    0xe4,0x70,0x6b,0x05,0x3f,0x37,0x55,0x9c,0xc5,0x90,0x25,0x1b,0x42,0x86,0x2b,0x12,
    0xb1,0x92,0x31,0x02,0x20,0x2b,0x38,0x85,0xe0,0x82,0xe5,0x4d,0x0b,0x95,0x9d,0x26,
    0xf6,0x31,0xe8,0x23,0xe6,0x63,0x06,0xb8,0x14,0x30,0x70,0xee,0x4e,0x3f,0x1d,0x69,
    0xc3,0xac,0x62,0xc3,0x88,0x6c,0x09,0xd8,0x70,0xbc,0x6a,0xd1,0x37,0xc1,0x2b,0x35,
    0x54,0xf9,0x0f,0x86,0x09,0x79,0x87,0xe0,0x4b,0x4e,0x4b,0x56,0xc0,0x2c,0xf4,0x20,
    0x44,0x97,0xa2,0x87,0x08,0x7e,0xa6,0x92,0x74,0x73,0xec,0x81,0xe2,0xcf,0x09,0xb4,
    0xcd,0x0b,0x15,0xa9,0x31,0x9b,0x07,0x63,0x32,0xc7,0x85,0x97,0x04,0x3e,0x37,0x84,
    0x69,0xf9,0x27,0xfa,0x59,0x47,0x87,0x1e,0x4f,0xa3,0x44,0x52,0x4d,0xff,0x82,0xd7,
    0x6a,0x8e,0x6b,0x8f,0xfd,0x00,0x33,0xb3,0x63,0x65,0xc5,0x48,0x98,0x13,0x66,0x7b,
    0xc9,0xa4,0xb8,0x72,0x80,0x00,0x0e,0x43,0x47,0x3b,0x5d,0x42,0x12,0xea,0x46,0x60,
    0xf2,0x23,0xf3,0x19,0x6e,0x86,0xe3,0x5e,0x19,0x83,0x80,0x62,0xe6,0x3b,0xcc,0x11,
    0x7b,0x8d,0xb4,0x5f,0x17,0x00,0x5b,0xa4,0xdb,0x01,0x21,0x83,0xc2,0x54,0x88,0x1f,
    0x82,0x1b,0xe6,0xc7,0xb4,0x95,0x76,0xc3,0x96,0xb1,0xc9,0xd3,0x51,0xc4,0x26,0x1e,
    0xf3,0x25,0xee,0x18,0x5d,0xd8,0x78,0xae,0x35,0xf0,0xd8,0xf4,0x9e,0x0d,0x31,0x75,
    0x72,0x10,0x37,0xe0,0x26,0x60,0xad,0x3a,0x7c,0x43,0x4e,0x0a,0x42,0xd5,0x93,0x68,
    0xc6,0x48,0xfe,0xf8,0xce,0x21,0x9f,0x42,0xa9,0x44,0xa7,0x0c,0x09,0x42,0x15,0x18,
    0xfe,0x94,0xc0,0x70,0xf5,0xc1,0xcf,0x0d,0x28,0xb6,0xc4,0x85,0x17,0xd4,0xb4,0x09,
    0x20,0x99,0xed,0xbc,0x8c,0x81,0x60,0xb3,0x81,0x09,0x61,0x4e,0x8b,0xdd,0x36,0x03,
    0xa0,0x46,0x93,0x4c,0x66,0x10,0x78,0x71,0x49,0x89,0x1b,0xc7,0x33,0x16,0xb7,0x7c,
    0x36,0x3f,0x94,0x59,0xd3,0x3d,0x2a,0x33,0x97,0x53,0xd4,0x32,0x10,0x83,0xe0,0xd5,
    0x8c,0x2f,0x03,0xcf,0xf6,0xc1,0x05,0x01,0x4d,0x80,0x6c,0x43,0x20,0x68,0x24,0x89,
    0xd8,0x3f,0xba,0xc9,0x4f,0xb3,0x81,0x46,0xbd,0x0e,0x5a,0x76,0x55,0xe6,0x81,0x14,
    0x63,0x39,0x75,0x29,0xc7,0x60,0x8b,0xd0,0x12,0x50,0x34,0x29,0x15,0x77,0x12,0x68,
    0xb4,0x42,0x14,0xc9,0x33,0xe5,0x1e,0x3e,0x68,0xef,0x34,0xc1,0x48,0xcd,0xdc,0xaa,
    0x15,0x18,0x47,0x65,0xe8,0x60,0x0b,0x49,0x42,0x80,0x7c,0xcb,0x39,0x62,0x88,0x23,
    0x5f,0x2b,0xb4,0x6c,0x32,0x44,0x79,0xd2,0x5f,0x4d,0xcd,0x6b,0xd2,0xfe,0xe7,0xbf,
    0xc5,0xa9,0x71,0x73,0x18,0xb9,0x94,0x85,0xab,0xa1,0xe2,0xb1,0xa3,0xe1,0x44,0x59,
    0xc2,0xc2,0x0a,0x51,0xa6,0x91,0x0a,0x91,0x92,0xeb,0x38,0x6e,0xfc,0x33,0xa5,0x4f,
    0x0c,0xe0,0xc2,0xa4,0xff,0x08,0x7c,0xaa,0x38,0xd1,0x9e,0xf4,0xa0,0x49,0xdf,0x09,
    0x86,0xb3,0x29,0x08,0xb7,0x09,0x54,0x7f,0x0b,0xa2,0x0a,0x9f,0xaf,0x97,0x27,0x4e,
    0xdd,0x75,0x1a,0x5d,0x8f,0x49,0xff,0xab,0xe7,0xcf,0x3c,0xcf,0x10,0x3b,0xea,0xbd,
    0xcb,0x2b,0x03,0x50,0xc5,0xe8,0x90,0x2b,0xd5,0xcf,0x91,0xd7,0xd3,0x75,0x43,0x50,
    0xe2,0x9c,0x66,0x8f,0x05,0x14,0xc4,0xfe,0x22,0x52,0x09,0x7a,0x23,0x58,0x3e,0xcc,
    0x00,0x4d,0xf7,0x19,0x82,0xf6,0x9e,0x17,0xc0,0xb4,0x2e,0xc0,0x2c,0xdb,0x63,0x86,
    0x63,0x9f,0x80,0x30,0xd4,0x75,0xac,0xd5,0x1b,0x77,0x77,0xd0,0x19,0x3e,0x31,0x48,
    0xa8,0x6e,0x78,0xc6,0x1b,0x76,0xf9,0x6c,0x68,0xef,0xbb,0xb7,0x5a,0x77,0x1f,0x8d,
    0x66,0x3e,0xe7,0x29,0xe6,0x17,0xd6,0x21,0x80,0x8f,0xa1,0xa7,0x31,0xb0,0x1d,0x8e,
    0x41,0x63,0xc5,0x3b,0x24,0xbd,0x27,0x75,0x9d,0x08,0xa4,0x37,0xba,0x89,0x89,0xdb,
    0x02,0xc7,0xe2,0xc2,0x8f,0xe8,0x03,0xa5,0x14,0x25,0x9b,0x94,0xd1,0xd6,0x03,0x08,
    0x87,0x7a,0x96,0x13,0xac,0x5b,0x30,0x76,0x62,0x12,0xd1,0xdf,0xbb,0x71,0x62,0x42,
    0xbc,0x5c,0xd7,0x71,0x4c,0x80,0x87,0x7b,0x05,0xd1,0x27,0x77,0xca,0x40,0x93,0xd4,
    0xb1,0xcc,0xc4,0x4d,0xed,0xa8,0xd1,0xcd,0xbe,0x7b,0x60,0x32,0x64,0x8b,0x7a,0xa3,
    0xd7,0x57,0x41,0x45,0x6c,0x1a,0xdc,0x32,0x09,0xcd,0xd8,0xdd,0x6f,0xb7,0x1b,0x6b,
    0x65,0x62,0x2c,0xb9,0x20,0x59,0x06,0x2e,0x19,0x95,0x13,0x64,0x30,0x41,0xe4,0xa2,
    0x3b,0xaa,0x43,0x19,0x2b,0x9d,0x21,0xbb,0x6f,0x86,0x6b,0x65,0xd8,0x5c,0xee,0x9b,
    0x18,0x04,0x6f,0x34,0xf5,0x52,0x19,0x92,0x1f,0x42,0x90,0x04,0x6b,0x30,0x53,0xa3,
    0x87,0x0d,0x4d,0xbc,0x70,0x04,0xc8,0x9b,0xfc,0xce,0x51,0xaf,0xa7,0xe3,0xed,0x2c,
    0xfd,0x50,0xa7,0xdb,0x47,0x30,0x1c,0xfd,0xec,0x96,0x34,0x45,0x10,0xdd,0x9c,0x24,
    0xc4,0x52,0x12,0xa8,0x81,0x6e,0xf8,0x94,0x69,0x58,0x85,0x49,0x01,0x5c,0xb9,0x4c,
    0x71,0x48,0x28,0x54,0x1c,0x8f,0x47,0x76,0xbc,0xf4,0x87,0x5a,0x3a,0xff,0x88,0xfd,
    0x19,0x34,0x57,0x42,0xbb,0x9e,0xb3,0xc8,0x33,0xf8,0x49,0x3e,0x0a,0x9d,0x91,0x70,
    0x46,0xf6,0x9e,0xb5,0x81,0x53,0x82,0x34,0x43,0xc0,0x7a,0xae,0x1d,0x0d,0x60,0x31,
    0x1c,0xf3,0xf3,0x2a,0x8f,0x45,0xf5,0x86,0x51,0xca,0xfd,0xa1,0x69,0x0f,0x48,0x07,
    0x4b,0x50,0x20,0x93,0x98,0x65,0xca,0x89,0xdc,0xb3,0xe7,0xb6,0x9b,0x68,0xa0,0x12,
    0x86,0x13,0x1a,0x7a,0x65,0x9a,0xa6,0x18,0xde,0x88,0xe9,0xec,0xc6,0x1a,0x9a,0xfc,
    0x63,0xdd,0x10,0x64,0x47,0x7e,0x8b,0x8e,0x11,0x31,0xbf,0xce,0x57,0x34,0x92,0x02,
    0x17,0x0a,0xc2,0xa7,0x6f,0xac,0x3b,0x44,0xcf,0xdc,0x0c,0xf1,0x5e,0x5c,0x9d,0x92,
    0x36,0xad,0xd5,0x7a,0x3d,0xc4,0xa5,0x8b,0xc2,0x93,0x4c,0x30,0x24,0xc5,0xe9,0xbc,
    0x8d,0xa2,0x20,0xaa,0xeb,0x27,0xe2,0x94,0x0f,0xd4,0x52,0x08,0x83,0x01,0xd5,0xd6,
    0x20,0x66,0x8f,0x23,0x33,0xb8,0x69,0x14,0x1b,0xe3,0x18,0x26,0xc3,0xcf,0xbb,0xbb,
    0x6b,0xdc,0xe9,0xd7,0x9e,0xac,0x22,0x91,0xf0,0xbe,0xbe,0x6e,0x74,0x41,0x47,0xcc,
    0x22,0x9f,0xd0,0x5a,0x8f,0x5c,0x98,0x81,0x07,0xf3,0x56,0xd7,0x0f,0x5f,0x3a,0x20,
    0x89,0xe5,0xfc,0xf8,0x84,0x53,0xab,0xe0,0xc7,0xcb,0xff,0xe7,0xfc,0xa8,0x24,0x1a,
    0xd6,0x6f,0x25,0x17,0x36,0xf8,0x3a,0x72,0xf1,0x83,0xd5,0x3a,0x1e,0x3c,0x18,0xb8,
    0xc9,0xd1,0x58,0xc1,0xe8,0xa4,0x36,0x2f,0xb1,0xec,0xaa,0xc1,0x21,0x77,0x95,0xa2,
    0x1e,0xfa,0x17,0x34,0x71,0x31,0x2a,0x47,0x1f,0x7b,0xd7,0x1b,0xe9,0xe8,0x6a,0x07,
    0xd2,0x40,0xaa,0xd2,0xc0,0x4b,0x46,0x24,0x02,0x0d,0x09,0x03,0x27,0xf9,0xf9,0xfc,
    0xfd,0x05,0xd9,0xb3,0x33,0x3b,0xb2,0xa7,0x31,0x6f,0x60,0x26,0xc1,0x45,0x82,0xc7,
    0xca,0x08,0x3b,0xed,0x3f,0x4d,0x8e,0xc6,0xac,0x3e,0x8d,0x09,0xdd,0x69,0x0c,0x5a,
    0x03,0x6d,0xd1,0xdd,0x1d,0x7d,0xa2,0xe7,0x06,0x68,0x30,0x07,0x7f,0xf7,0x7b,0xcf,
    0x76,0x5f,0x3d,0x7b,0xf5,0xfc,0xc5,0xee,0xab,0x7d,0x31,0x19,0xdd,0x67,0x10,0x64,
    0xe9,0x5d,0xea,0x7a,0xd0,0x41,0x69,0x10,0x58,0x4c,0xe3,0xa7,0x3a,0xfc,0x4f,0x17,
    0xf4,0x84,0xea,0x16,0x55,0x03,0x12,0xef,0xf0,0xec,0x5d,0xb6,0x6f,0x1f,0x76,0xac,
    0x76,0x03,0xda,0xc6,0x7a,0x0e,0xa9,0xd7,0x4b,0xf0,0x1f,0xeb,0x7e,0x36,0xab,0x7e,
    0xa7,0xfd,0xec,0xe5,0xfe,0x8b,0xe7,0x87,0x75,0xbf,0x25,0x3e,0x33,0x60,0x1d,0x84,
    0xf0,0xe1,0xb5,0x6e,0x7d,0xb0,0x93,0x89,0x49,0x29,0xd9,0xd4,0x6c,0xf7,0x19,0x56,
    0xfc,0xfc,0x5a,0x81,0x3d,0x61,0x8b,0x37,0x40,0x0d,0x22,0x89,0xe1,0x78,0xc3,0x74,
    0x84,0xa3,0x28,0xb2,0x97,0xa6,0x1b,0xd3,0xbf,0x9c,0x62,0x87,0xb4,0xb6,0x62,0x0f,
    0x8f,0x13,0xdb,0xd4,0xd8,0x9c,0xda,0x61,0xfd,0xb6,0xd7,0xaf,0xdf,0xee,0xec,0xee,
    0xef,0x2b,0x24,0xed,0x00,0x36,0x21,0x38,0x8e,0xb8,0xf7,0x5f,0xdf,0x35,0xf4,0xb6,
    0x8e,0x95,0x9f,0xf1,0xf6,0xd7,0x31,0x68,0xc6,0x7a,0xa3,0x61,0xfe,0x1a,0xb8,0x7e,
    0x5d,0xd7,0xf4,0x86,0xa5,0xff,0xfe,0xdb,0x7f,0xe8,0x79,0x83,0xc3,0x0f,0x64,0xcf,
    0x99,0xed,0x2c,0xeb,0xb8,0x85,0xbd,0x6c,0xac,0xc0,0x7e,0x16,0x12,0xd9,0x00,0x26,
    0x2c,0xc9,0x68,0x79,0x41,0xfb,0xf5,0x41,0x74,0xe4,0x79,0x75,0xbd,0xe4,0x6a,0x26,
    0xb4,0x03,0xb9,0x78,0x6b,0xa3,0x76,0xe9,0xf5,0x99,0x29,0xaf,0xc9,0xf4,0x1e,0x73,
    0xd0,0xeb,0xc2,0x80,0xdc,0xae,0x29,0xa6,0xbd,0x2c,0xab,0x4d,0x2c,0xce,0xc9,0xbc,
    0xf7,0x91,0x76,0x54,0xea,0x88,0x1f,0xe5,0xc3,0xc1,0x70,0x74,0xac,0x82,0xd7,0x26,
    0xa2,0x3a,0x6f,0x16,0x60,0xd6,0xa0,0x68,0x41,0xf9,0x65,0xd0,0x48,0xac,0xe0,0x46,
    0x90,0x21,0x14,0xf0,0x9e,0x8f,0xc1,0x56,0x61,0x34,0xac,0xef,0xec,0x08,0xe0,0xa2,
    0xa2,0xd1,0xdf,0xdd,0xd9,0x99,0xcc,0xa1,0x7e,0x17,0x85,0xac,0x00,0x90,0xcf,0x36,
    0xc5,0xf1,0xb2,0x7d,0x75,0x98,0x82,0x6e,0x14,0xda,0xf2,0xc4,0x1b,0x3e,0x4a,0x17,
    0xea,0x28,0xdf,0x04,0xca,0x53,0x54,0x60,0x62,0x30,0x8a,0xc2,0x95,0x08,0x7c,0x30,
    0xe0,0x1e,0x3f,0x29,0x1f,0xd2,0xfc,0xd1,0x55,0x1b,0x76,0x37,0x26,0xde,0x13,0x42,
    0x30,0x34,0x27,0xf3,0x46,0xb7,0x74,0x60,0x50,0x57,0xf8,0x1b,0xc3,0xf6,0x43,0x8e,
    0x84,0x95,0x76,0xa2,0x9a,0x33,0x9e,0xa2,0x47,0xdd,0x73,0x09,0x67,0x0a,0x08,0x5e,
    0x7e,0x4e,0xc5,0x65,0xed,0x30,0xcb,0x28,0xdf,0xea,0x83,0xbd,0xc0,0x86,0xf9,0x2c,
    0x32,0x05,0x22,0x54,0xbc,0x4e,0xcb,0xb1,0xa5,0x92,0x02,0x06,0xcd,0x68,0xf3,0x00,
    0xe5,0xe6,0x31,0x28,0xec,0x10,0x77,0x33,0xb1,0x4d,0x21,0xa3,0xab,0xd0,0x8e,0xd7,
    0x9e,0x42,0x25,0xb6,0x95,0xd9,0x51,0x85,0x46,0x50,0x7c,0x4a,0xc9,0x59,0x98,0x5c,
    0xa5,0xb6,0xa3,0x2c,0x2a,0x05,0x41,0x28,0xc7,0x26,0xe7,0x38,0xf4,0xa5,0x2e,0x32,
    0x9a,0x74,0x83,0xbe,0x6c,0xf1,0xef,0x40,0xfc,0x3b,0xd4,0xaf,0x52,0xb9,0x47,0xd7,
    0xcd,0x05,0x43,0x43,0x3e,0x9a,0xe2,0xfa,0x71,0x27,0x0b,0x48,0xc7,0xe3,0x3e,0xdd,
    0x10,0xf2,0x36,0x34,0x7d,0x9e,0x6d,0xd4,0x00,0x29,0x70,0x1b,0xe0,0x49,0xe6,0x97,
    0x08,0x45,0x82,0xdd,0xb2,0x75,0xd1,0xcd,0xdc,0x45,0x3d,0x97,0x3c,0x00,0x58,0xe5,
    0xd3,0x55,0x79,0xc0,0x02,0xb6,0x7c,0xd3,0x74,0xd8,0x8e,0xcc,0xc8,0x58,0xe1,0x1a,
    0x42,0x3f,0x42,0x64,0xe4,0xf6,0xda,0x5d,0xf1,0x75,0xb0,0x2f,0xbf,0x9e,0x3e,0x05,
    0x9f,0x21,0xb3,0x1a,0x39,0x41,0x15,0x16,0x50,0xf1,0xa5,0xf4,0x16,0x47,0x4b,0x6f,
    0x34,0x32,0x97,0xa3,0x1a,0xe9,0xeb,0x3c,0xd2,0x30,0x46,0xb4,0x04,0x1b,0x29,0x87,
    0xee,0xac,0x5b,0xfb,0xd7,0x06,0x27,0x07,0x1f,0x0b,0x0d,0x0e,0x48,0xef,0xd4,0x05,
    0x35,0x17,0xf5,0xfa,0x8a,0xa5,0x8f,0x0c,0x70,0xd8,0xfe,0x50,0x4f,0xbb,0x36,0x00,
    0x83,0xf5,0x83,0xc9,0x35,0xf3,0xed,0x5b,0x88,0xe8,0x70,0x75,0x76,0x65,0x4a,0x52,
    0x7a,0x5a,0x28,0x97,0xad,0xce,0x51,0x59,0x17,0x75,0xd7,0x11,0x49,0xab,0x70,0x44,
    0xea,0x0e,0x59,0x37,0x3e,0xdc,0xce,0x0e,0xee,0x01,0x81,0x76,0x72,0x84,0x48,0xa3,
    0xa3,0x3c,0x80,0xd8,0x99,0xd9,0xbe,0x2e,0x57,0xb9,0xac,0x72,0x14,0xb1,0x2f,0x5f,
    0x1a,0xb2,0xc5,0xa6,0x43,0x40,0x67,0x55,0x54,0x57,0x4f,0x8d,0x4c,0x49,0x0a,0xce,
    0x66,0xbf,0x2c,0xf3,0x6d,0x8a,0x02,0x89,0xa8,0x3f,0xe6,0x68,0x49,0x1f,0x42,0x40,
    0x13,0x2e,0x07,0x09,0x3f,0x36,0xd5,0x0d,0x02,0x85,0x0e,0xd6,0xaa,0x5c,0xc5,0xa3,
    0xd4,0x6c,0x91,0x10,0x63,0x35,0x65,0xc9,0x24,0x70,0x2c,0xfd,0xec,0xf4,0xe2,0x93,
    0x6e,0xf0,0xfb,0x36,0xb1,0xb5,0xd2,0x45,0x64,0xd3,0xfc,0x04,0xb4,0x83,0x48,0x42,
    0xdd,0x2d,0x5b,0x34,0xe7,0xf3,0x79,0x13,0x1d,0x11,0xcc,0x1f,0x61,0x3e,0xe6,0xb0,
    0x39,0xfa,0xda,0xc0,0x3b,0x48,0x16,0xf9,0x27,0x2b,0x40,0x50,0xaa,0x3b,0x9a,0xd2,
    0x1a,0xfe,0x13,0xd2,0xa3,0xca,0x7e,0x97,0x87,0x94,0xd0,0xe2,0x50,0x07,0x12,0x68,
    0xfa,0xd3,0x4b,0x88,0x54,0x75,0x9e,0x6f,0x28,0x3f,0x5e,0xcb,0x8f,0x63,0xfd,0xea,
    0x12,0xdb,0x5e,0xa1,0xf7,0x20,0x2c,0x01,0xa0,0xf6,0x31,0x9f,0x26,0x99,0x49,0x4a,
    0x5e,0xfa,0x37,0x17,0x77,0xb5,0x60,0x32,0x53,0x46,0x81,0x5c,0xd8,0xd6,0x8d,0x52,
    0x66,0x17,0x18,0x5b,0xc2,0x37,0x6e,0x1b,0x49,0xdf,0xf7,0xca,0xcc,0x84,0x68,0xc0,
    0x43,0x88,0xc9,0xdc,0xda,0xb0,0x34,0x46,0x1c,0xda,0x16,0xef,0x2f,0x4d,0xe6,0xa1,
    0xde,0x81,0x59,0xb7,0x75,0xa8,0x2a,0xd6,0x48,0x0b,0xc3,0x45,0x3a,0x67,0x66,0x78,
    0x53,0x23,0xf4,0xc6,0x91,0x55,0x65,0x71,0x0c,0x3b,0x1c,0x5b,0x55,0x82,0x9f,0x0d,
    0x3b,0x0d,0xac,0x6d,0x46,0x21,0x6d,0x98,0xd3,0xf9,0x56,0xa9,0x6d,0x50,0xdb,0x4a,
    0xb5,0x6f,0x55,0x59,0x87,0xf5,0xff,0x91,0x34,0x93,0x6b,0x98,0xca,0x6f,0x7e,0x64,
    0x90,0xb3,0x2f,0x8a,0xa1,0xfd,0x5e,0xeb,0x69,0x60,0x55,0x1a,0xf5,0xad,0x4b,0xab,
    0xa0,0x61,0xe9,0xa4,0x5a,0x7f,0x90,0x55,0xd8,0x58,0x02,0x1b,0x0b,0x20,0x9f,0xfe,
    0x97,0x09,0x3f,0xe0,0xab,0x53,0x52,0x0b,0x6e,0xbd,0x29,0xd9,0xe3,0xbe,0xa3,0x85,
    0x98,0x93,0x85,0xa1,0x1b,0xde,0x2e,0x49,0x28,0x63,0x87,0x67,0x4c,0x1e,0x82,0xad,
    0x12,0x4b,0x26,0xe3,0x31,0x0f,0x07,0xf5,0x96,0x58,0xd0,0x45,0xe2,0x96,0x4e,0x5b,
    0x99,0x1a,0xcd,0x9f,0x10,0xc1,0x8b,0x64,0x99,0xe5,0x58,0x6f,0x84,0xbd,0x85,0xf4,
    0xc3,0xd5,0x3f,0x5c,0xcc,0xf4,0xa1,0xed,0xf7,0x3a,0x0f,0x9a,0xd1,0x06,0x5f,0x36,
    0x66,0xa3,0xa6,0x44,0xa6,0x56,0x10,0x99,0xc2,0xb3,0x23,0x35,0xfe,0xee,0x0e,0x52,
    0x5c,0x12,0x98,0xf7,0xd9,0xa4,0xaf,0xc9,0x87,0x26,0xf3,0xb2,0x6e,0x6c,0x78,0xca,
    0x67,0x78,0x09,0xa9,0x1e,0x72,0xd6,0x87,0x77,0x77,0x8f,0x43,0x93,0x67,0xd1,0x52,
    0x28,0xa3,0xde,0xe7,0xc2,0xd8,0x48,0xd9,0x2d,0xd3,0x4b,0x6f,0x77,0x91,0x97,0x5e,
    0xe8,0x45,0x7e,0xdc,0x47,0x7c,0x47,0x48,0x57,0x2e,0x8c,0x29,0x2d,0x93,0x45,0x01,
    0x76,0x5a,0x13,0x15,0x6b,0x28,0x08,0x13,0x96,0x74,0xcd,0xf5,0xae,0xeb,0xf4,0xf4,
    0xf6,0x42,0x7f,0x5a,0x0f,0x4d,0xd7,0xd9,0x69,0x2f,0x5e,0x8c,0x46,0x55,0x21,0xde,
    0x5e,0x49,0x88,0x87,0xfd,0xa6,0xb3,0x45,0xbf,0xd7,0x3e,0xd4,0xf1,0x86,0x14,0xd8,
    0x2f,0x2a,0xb0,0x74,0xbd,0xa1,0xa2,0x48,0x17,0xbb,0x0a,0xd8,0x5c,0x3f,0x59,0xb9,
    0xce,0xda,0x00,0x47,0x4b,0x44,0xe4,0xa1,0x99,0x2c,0x40,0xcd,0x68,0xf6,0x38,0xb8,
    0xde,0x32,0x3f,0x19,0xce,0x62,0x73,0x03,0xff,0x87,0x51,0x6a,0x57,0x99,0x75,0xd9,
    0x60,0xa1,0x39,0xb1,0xe3,0x68,0x71,0x58,0x32,0x68,0x94,0x0e,0x6a,0xe9,0x98,0xd5,
    0x1d,0x33,0xe6,0xeb,0xdd,0x6a,0x2a,0x4a,0x50,0x19,0x1e,0x11,0xe2,0x11,0x11,0x1e,
    0x3c,0xd0,0x95,0x56,0x0f,0x17,0x76,0xdc,0x5b,0x75,0xac,0x4b,0xfd,0x17,0x90,0x6a,
    0x3c,0xc1,0xc1,0xd4,0xef,0xf4,0x2e,0x1c,0x71,0x1e,0x8c,0x3b,0xbe,0x6d,0xa2,0x5f,
    0x19,0xbb,0xd0,0xee,0x43,0xae,0x8e,0x23,0x63,0xe8,0xc1,0x0d,0x54,0xef,0x41,0xf5,
    0xeb,0xf4,0xf6,0x1c,0x4f,0xa6,0xc6,0x5f,0xc1,0x94,0x27,0x7e,0x67,0x80,0x9e,0x41,
    0xcb,0x4f,0xf8,0x5c,0xc6,0x14,0x95,0x88,0x58,0xfb,0xfa,0xc0,0x76,0xf4,0xab,0xb5,
    0xc4,0xad,0xc7,0xb1,0xbb,0x0c,0x69,0x27,0x88,0x5d,0xdd,0xdd,0xa5,0x48,0x42,0x5b,
    0x2e,0x65,0x57,0xdd,0xed,0x62,0x8c,0xf1,0xe7,0x43,0x64,0x56,0x7f,0x1a,0x5f,0x76,
    0xae,0xd6,0xe2,0x98,0x00,0x2f,0x92,0x62,0x6d,0xdc,0xbb,0xd4,0x85,0x0e,0x84,0x11,
    0xa3,0x99,0xef,0xf3,0xb1,0x07,0xb3,0x58,0x84,0x3c,0x11,0x1b,0x62,0x86,0x3e,0x16,
    0x5f,0x75,0x0b,0x6b,0x4f,0xb8,0x1e,0xe8,0xe8,0x8a,0x3d,0xb4,0x04,0x3c,0x53,0x71,
    0x5f,0xf3,0xee,0x6e,0xb5,0x36,0xf8,0xdd,0x56,0x28,0xe4,0x1f,0x54,0x36,0x56,0x5d,
    0x5c,0x2c,0x11,0xe4,0x00,0x23,0xee,0xfa,0x0c,0x02,0x35,0x07,0x96,0x3c,0x6e,0x2d,
    0x90,0x2e,0xf4,0xc7,0x54,0xe2,0xda,0x38,0x49,0x27,0x48,0xf2,0x73,0x83,0x02,0x98,
    0x59,0x9d,0x77,0x3d,0x44,0x1e,0x59,0x44,0x63,0x12,0xc6,0xdc,0x85,0xf1,0x02,0xd9,
    0x44,0x8f,0x7a,0x3a,0xca,0xa1,0x8e,0x96,0x82,0x17,0xe3,0x59,0x8d,0x62,0x33,0x48,
    0x9d,0xe8,0x16,0xcc,0x0c,0xfd,0xb6,0x62,0x43,0xf0,0x3f,0xdc,0x24,0x20,0x02,0x59,
    0x54,0x05,0x02,0x00,0xea,0x35,0xa4,0x0b,0x4a,0xb2,0x33,0x08,0xa5,0x2a,0x7d,0xd0,
    0x8c,0xc4,0x9b,0x6e,0x71,0x97,0x63,0xa6,0x9f,0xd2,0xbf,0x00,0x13,0xdc,0x17,0xfa,
    0x52,0x3b,0x94,0xb0,0xb7,0x82,0x08,0x74,0x8d,0xbb,0x30,0x84,0x32,0xe9,0x23,0x31,
    0xb9,0x7a,0x3a,0xbb,0x0b,0x21,0x0e,0x96,0x8e,0xfc,0x29,0x40,0x29,0x1b,0x57,0x81,
    0x46,0x43,0xd3,0x02,0x10,0xbd,0x36,0x56,0x6e,0x94,0x20,0x73,0x79,0xc6,0xec,0xe1,
    0x21,0x0c,0xba,0x38,0x3c,0x6c,0xf3,0xb6,0x60,0x4e,0x0a,0x8d,0x85,0x7e,0xe0,0x7d,
    0xe0,0xeb,0x43,0x2c,0xc0,0x6e,0x28,0x24,0xd0,0x29,0xd0,0x2a,0x59,0x9c,0xde,0x20,
    0xd0,0x04,0x81,0xae,0xb5,0x96,0x26,0x4a,0xdf,0xc1,0xf2,0xe3,0xe5,0x2c,0x8a,0xb0,
    0xea,0x5a,0x88,0x1c,0xda,0x3f,0xb9,0xb1,0xc4,0x25,0x94,0xaf,0xc4,0x63,0x0c,0x17,
    0xe4,0x41,0x07,0xce,0x36,0x5d,0x2f,0x97,0xd8,0x05,0x16,0xaa,0xda,0xfa,0xee,0x4e,
    0x9f,0xf9,0x37,0x7e,0x30,0xf7,0x05,0x8f,0xb0,0x75,0x01,0x41,0x84,0x92,0xab,0x2c,
    0xa3,0x24,0xa1,0xd3,0xeb,0x75,0x38,0x21,0xc5,0xaf,0xdd,0x43,0x62,0x66,0x9e,0xae,
    0x78,0x4b,0x7b,0x93,0x58,0x7c,0xfb,0x12,0xa6,0x3c,0x8a,0x18,0xfb,0x09,0x9a,0xdc,
    0xdd,0xb5,0x45,0x87,0x59,0xb1,0x39,0xed,0x59,0x8e,0xbc,0x00,0xe2,0x7e,0xec,0x31,
    0xa3,0xbb,0xdb,0x1f,0x62,0x98,0x19,0x7c,0xff,0x01,0x37,0x49,0xb1,0x33,0xdf,0x3e,
    0xa5,0x8d,0x52,0x49,0x8e,0x00,0x56,0xef,0x63,0x29,0x2d,0xd7,0x42,0xaa,0x2d,0x4e,
    0x6a,0x87,0x81,0x23,0x7f,0x4e,0xb1,0x32,0x14,0x22,0x34,0x60,0xc3,0x34,0xd6,0xa8,
    0xdc,0xe0,0x6d,0x52,0xf6,0x63,0x65,0xeb,0xc9,0x8a,0xe3,0x0b,0x05,0x9f,0x26,0x78,
    0xdc,0x1d,0x78,0xce,0xdd,0x1d,0x1f,0xb5,0xb3,0xce,0xee,0xf9,0xc7,0xd7,0x16,0xae,
    0x27,0x93,0xf9,0x14,0x56,0xed,0xec,0x3c,0xa6,0x9f,0xe2,0xa9,0x9d,0xc3,0x6b,0x71,
    0x21,0x50,0xde,0x34,0x42,0x7c,0xa8,0x01,0xa0,0x09,0x6e,0x93,0xc2,0xa1,0x35,0xae,
    0xd9,0xa3,0x33,0x59,0x6f,0x87,0x87,0xba,0x5c,0xe0,0xba,0xeb,0x8b,0x4f,0x6a,0x04,
    0xbc,0x85,0xa1,0x32,0x33,0x45,0xed,0x79,0x21,0x08,0xe2,0xfa,0xda,0x52,0x04,0x3f,
    0x75,0xdc,0x08,0x8b,0x58,0xc3,0x93,0x6d,0x00,0x98,0x15,0x4b,0x47,0x13,0x2f,0xf9,
    0x00,0x09,0x27,0x2c,0xca,0xe1,0xab,0xab,0x71,0xa0,0x7a,0xe1,0x5d,0x37,0xf0,0xff,
    0x78,0x40,0x90,0x39,0x3b,0x0e,0x7f,0xd6,0x66,0x33,0x1c,0x0c,0x03,0xcf,0x93,0x3a,
    0x39,0x0d,0xfe,0x65,0xb8,0x2e,0xa0,0xaa,0xd1,0x3a,0xdf,0xcd,0x51,0x35,0x79,0x99,
    0xc3,0x29,0x9d,0x71,0x50,0xdd,0x7b,0xc8,0x17,0xc5,0x19,0xac,0x52,0xc9,0x28,0xb0,
    0xf7,0x69,0x60,0xfd,0x8d,0x7c,0xb7,0x43,0xe6,0x71,0xf3,0x4d,0xa9,0x38,0xd1,0xd7,
    0x65,0x7e,0x1e,0x3f,0xa6,0x4e,0x77,0x84,0x99,0xd7,0xcb,0x22,0x48,0xbc,0xcf,0xa2,
    0xf3,0x83,0x17,0x71,0x9c,0x6d,0xf2,0xa4,0xe0,0xc6,0x8a,0x79,0x1b,0x5e,0x9f,0xbc,
    0x43,0x26,0x72,0x88,0x90,0xfa,0xc2,0x21,0x83,0xc6,0x2e,0xa0,0x12,0xfd,0xf4,0xe9,
    0xc3,0xfb,0x9e,0x84,0x84,0x9b,0xef,0xf5,0x90,0xf6,0xf5,0xae,0x73,0x37,0xe1,0xa9,
    0x3e,0x7f,0x23,0x80,0x2e,0x80,0xf4,0x0f,0x06,0xfd,0x27,0x2b,0x16,0x0f,0xed,0x90,
    0xfd,0x94,0x4c,0x3d,0x70,0x4f,0xb0,0xbc,0xb1,0x3e,0x68,0x0d,0xfa,0x5a,0xee,0x59,
    0x14,0x91,0xe6,0x72,0x5b,0x68,0x2e,0xae,0x8d,0x60,0x0f,0x71,0x77,0x1a,0xdf,0x3b,
    0x02,0xa0,0xe0,0xe3,0xe0,0x0d,0x92,0xb5,0x46,0xff,0xa0,0x94,0x86,0x91,0x0b,0xc6,
    0x27,0xc1,0xcd,0x32,0x17,0x56,0x0c,0x36,0x81,0x30,0x7c,0x12,0x44,0xe0,0x0d,0x42,
    0xb5,0xfe,0x34,0x07,0x98,0x57,0x35,0xf0,0x0c,0x18,0x40,0x13,0xd0,0xfc,0x63,0x29,
    0x85,0x37,0x51,0x38,0xd5,0xeb,0x00,0x7b,0xdd,0xa8,0xd1,0xf8,0x62,0x01,0x1e,0xea,
    0x6f,0x44,0x40,0x64,0xe9,0x6f,0xa9,0x08,0x21,0x56,0xa5,0xe4,0xe2,0xc1,0xb7,0x02,
    0xca,0x78,0xb2,0x22,0xf5,0x83,0x8f,0xe7,0xb5,0x0d,0xb7,0xd9,0x81,0xe8,0xb1,0x86,
    0x13,0x00,0x75,0x07,0x5e,0x6c,0xba,0x77,0x82,0x68,0xf6,0x7f,0xff,0xeb,0xbf,0x7e,
    0x3d,0x60,0xf8,0x9d,0x17,0x84,0x66,0xc7,0x00,0xf2,0x28,0xe3,0x14,0xab,0x37,0x87,
    0xfd,0xf7,0x8d,0x61,0xab,0x2e,0xa1,0xf1,0x93,0xfd,0x3c,0xad,0xce,0xa9,0xac,0x90,
    0x93,0x75,0x2d,0xcf,0x63,0x74,0x55,0xc0,0x15,0x0e,0xc5,0xe9,0xb2,0x15,0xee,0x3f,
    0x18,0x49,0x68,0x6c,0xd2,0x16,0x09,0xc4,0x52,0xad,0xcb,0x9d,0x83,0x7e,0x4d,0xbf,
    0x6a,0x8d,0x8d,0x61,0xaf,0x5f,0x5f,0xe9,0x3b,0x80,0xed,0x8e,0x3d,0x0d,0xbb,0xe0,
    0xaa,0x1d,0xe0,0xb7,0x97,0xe0,0x67,0x1f,0x3f,0xc7,0xf4,0x59,0xc3,0xcf,0x3f,0xcf,
    0x02,0xfc,0x51,0xd3,0x6b,0xf0,0xe3,0x87,0xbd,0x57,0x5d,0x7d,0x7d,0x39,0xbc,0x82,
    0xa5,0x5c,0xb2,0x27,0x9c,0xad,0xb4,0x82,0x06,0x11,0x24,0x2b,0x6a,0x10,0xb1,0x7b,
    0xd4,0x2b,0xd3,0x1d,0x69,0x17,0x50,0x1e,0xfb,0xa8,0x3c,0xba,0x32,0xdd,0xc4,0x11,
    0x27,0x06,0x60,0x06,0x2e,0xaf,0xba,0x85,0x35,0x5e,0xba,0x37,0x90,0xbb,0x5d,0x54,
    0xba,0x3d,0x56,0x54,0x87,0xd4,0xe1,0x88,0x07,0xd4,0x21,0xc8,0x85,0xc1,0x8f,0x2c,
    0xcb,0x23,0x6b,0x6a,0xf0,0x3d,0xf7,0x6e,0x8c,0xe7,0x44,0x80,0x2c,0xb8,0xfe,0xdb,
    0xa6,0x5b,0xc8,0xe0,0x10,0xd2,0xe7,0x36,0x56,0xb9,0x69,0x4b,0x16,0x7c,0xe1,0xad,
    0x80,0x11,0xae,0xb3,0xb0,0x40,0x42,0xb3,0xfe,0x8a,0xec,0xba,0x06,0x0f,0xa4,0xdd,
    0xc7,0xb0,0x40,0x1a,0xe5,0x80,0xa4,0xc2,0x91,0xa0,0x0c,0x59,0x60,0x85,0x2a,0xd4,
    0xdc,0x9a,0x70,0x73,0x7b,0x00,0xd7,0x7c,0x6d,0xc0,0x42,0x14,0x22,0x70,0xe9,0x5e,
    0x91,0x86,0x5c,0x1f,0x5e,0x37,0x2a,0x46,0xe5,0xe0,0x14,0xf4,0x8b,0xb6,0x6f,0xf3,
    0x02,0x60,0xe5,0x0e,0x8a,0x00,0x29,0x7a,0x7c,0xb7,0xed,0x32,0x28,0x57,0x36,0x39,
    0xe1,0x97,0xb2,0x59,0x66,0xec,0xb6,0xab,0x84,0x41,0xec,0x99,0x89,0x6b,0x88,0x99,
    0x8d,0xfa,0x36,0x29,0xd9,0x46,0x25,0x7e,0xd3,0x6f,0x85,0xc7,0x3e,0x94,0xc6,0x90,
    0x21,0x8b,0x49,0xd8,0x12,0x5b,0x13,0x14,0xd1,0xb4,0x2e,0xbd,0x61,0xdc,0xc6,0x55,
    0x1a,0xe2,0x4f,0x3c,0xf7,0x85,0x7f,0x28,0x10,0x05,0x2e,0xd3,0x46,0xaf,0x92,0x16,
    0x81,0xbf,0x65,0x66,0x04,0x72,0xa4,0x98,0x93,0xd2,0xdd,0xc2,0x22,0x9e,0xf3,0xfa,
    0x6d,0x1c,0xa2,0x39,0x08,0x86,0x50,0x5e,0x85,0xf1,0xf2,0x1f,0x43,0xf2,0x32,0xaf,
    0x4c,0x5c,0xb4,0x2b,0x6a,0x54,0xca,0xa5,0xfb,0x1a,0x7d,0x4a,0x1d,0xa4,0x47,0xd6,
    0xe8,0xe6,0x73,0xf1,0x1e,0x3f,0x06,0xd7,0x50,0xd8,0x67,0xf4,0xe3,0x85,0x5b,0x85,
    0x2f,0x0b,0x3e,0x11,0x63,0xc9,0x8b,0x8e,0x05,0x5f,0x4c,0x69,0x7b,0xa8,0x1f,0xcb,
    0x4f,0x0c,0x79,0x53,0x73,0x7f,0x14,0x4d,0xc9,0x34,0x42,0x34,0xaa,0x97,0x81,0x2b,
    0x8b,0x67,0x72,0x60,0x31,0xa4,0x51,0xe0,0x51,0x34,0x63,0x89,0x4d,0x0e,0x05,0x41,
    0xee,0xed,0x6f,0x86,0x77,0x0e,0x0f,0x12,0x62,0x1e,0xd6,0xe1,0x86,0x02,0x39,0xd4,
    0x10,0xca,0x29,0xac,0x51,0x2f,0xd8,0xe9,0x46,0x6e,0xf8,0xd7,0xfc,0x0e,0x20,0x1e,
    0xdd,0x68,0x10,0x07,0xc4,0xe2,0x92,0x61,0x37,0xbd,0x3a,0xc8,0xdf,0x14,0x88,0x02,
    0x44,0x08,0x53,0x62,0x96,0x66,0x0e,0x5f,0x35,0x7c,0x4f,0x2f,0x20,0x4e,0x6c,0xdf,
    0x89,0x27,0xf6,0x0d,0x33,0x31,0x5c,0xa6,0xeb,0x85,0x98,0x7e,0xca,0x7d,0x7d,0xb3,
    0x42,0x7e,0xf2,0x48,0xde,0x6f,0xc6,0xd4,0x9b,0x9d,0x95,0x3a,0x2d,0x15,0x8c,0xa8,
    0x64,0x0b,0xb5,0x20,0x27,0x94,0xff,0xa3,0x48,0xe5,0x57,0x6e,0xee,0x2a,0x17,0x47,
    0xef,0x45,0x27,0x08,0xef,0xc5,0x86,0xce,0x08,0xbf,0x06,0x9d,0xb2,0x73,0xec,0xa3,
    0x50,0x50,0xb7,0x71,0xef,0x12,0xb2,0xc3,0x2f,0xe9,0xfa,0xe1,0xc7,0x4c,0x78,0xbf,
    0x2d,0x3d,0xfc,0x77,0x4c,0xfc,0x49,0x39,0xa8,0xbc,0x96,0x5f,0x3d,0xc8,0x65,0x12,
    0x38,0xe2,0xd1,0x4f,0x55,0xf4,0xd2,0x6b,0x7e,0xba,0x41,0xd2,0x0a,0xae,0x21,0x48,
    0x2e,0x8f,0x80,0xf9,0x37,0x38,0x77,0xe8,0x91,0x63,0xa5,0x1b,0xe2,0x00,0xeb,0xeb,
    0x72,0x01,0x51,0x40,0xdd,0xcb,0x0b,0x71,0x33,0x51,0xcc,0x18,0x51,0xef,0x6d,0x4e,
    0xca,0xc0,0xb4,0x77,0x51,0x8e,0x9f,0xe9,0xc1,0x1f,0x06,0x4c,0x7c,0xba,0x58,0xbc,
    0xb3,0x83,0xff,0x17,0x1e,0xf1,0xc1,0x4b,0x5e,0x28,0x7e,0xf6,0x9f,0xef,0xc9,0x24,
    0xab,0x72,0x4c,0x75,0xbc,0x40,0x48,0xa4,0x76,0x23,0xbc,0x2e,0x9b,0xde,0xe9,0x9c,
    0xce,0x00,0xb1,0x01,0xd3,0xf8,0xd5,0x4e,0x7a,0xa6,0x1f,0xa2,0x6c,0x50,0xdf,0xe2,
    0x28,0xa4,0xf2,0x3c,0x0d,0x18,0xf5,0x9d,0x0f,0x88,0x71,0xea,0x44,0x1b,0x83,0xf3,
    0xd3,0x2a,0xe7,0xb8,0x3c,0x1f,0xa4,0x43,0xae,0xaa,0xd9,0xe3,0xa1,0x56,0x57,0x1c,
    0x7c,0x60,0xe2,0x39,0xa2,0xb2,0xd4,0xbf,0x9e,0xc1,0xc5,0xcc,0xdc,0xfc,0x35,0x43,
    0x8c,0xb8,0x37,0x2f,0x0e,0xea,0x65,0xb9,0x26,0x62,0x16,0xc6,0xe3,0x7c,0x97,0x6c,
    0x5a,0xa5,0xce,0x3f,0xbf,0x38,0xa9,0x2c,0xa2,0x4b,0xdf,0x88,0xaf,0xc4,0x42,0x12,
    0xf9,0x16,0xb8,0xeb,0x52,0xbf,0xcc,0x33,0x0b,0x47,0xf8,0x22,0x6f,0x9f,0xea,0x0d,
    0xa3,0xa4,0x56,0xae,0xba,0x2b,0x5a,0x77,0xe9,0x55,0x56,0x40,0x28,0x8b,0xb9,0xeb,
    0xbe,0x29,0x81,0x60,0x5c,0xc0,0x33,0xdf,0x16,0xdf,0x1c,0x78,0x2f,0x68,0x31,0xf3,
    0xc0,0x3b,0x8d,0xa1,0x17,0x26,0xa7,0xc4,0xa1,0xce,0xff,0xcd,0xc7,0xc8,0x0b,0xb1,
    0x38,0x21,0x46,0x7e,0xf3,0xd3,0xf1,0x99,0xbe,0xc6,0x0e,0xe0,0x74,0x62,0x8a,0xa2,
    0x38,0x59,0xe2,0x91,0x75,0xba,0x6b,0x54,0x15,0x4a,0x57,0x45,0x8b,0x0e,0x03,0x8f,
    0x8b,0xdf,0x50,0x15,0xb0,0x1f,0x12,0x2f,0x02,0x4e,0x1b,0xb7,0x7c,0x73,0xbb,0x46,
    0xca,0x25,0x4b,0xdd,0x88,0x15,0xd3,0x77,0x9d,0x1a,0x74,0x94,0xcb,0x27,0xab,0x98,
    0x88,0xb2,0xe6,0xba,0x28,0x86,0xe9,0xae,0xaf,0xad,0xb4,0x3d,0xdf,0x09,0x4f,0xbf,
    0x7f,0xff,0xed,0xbf,0x30,0xb9,0x81,0x5f,0xd9,0x14,0x5e,0x41,0xb9,0x4c,0xe7,0x86,
    0x7f,0x88,0xda,0x12,0x92,0xa6,0xe6,0x1e,0x20,0x5e,0x56,0x2a,0xae,0x45,0x05,0x96,
    0xd6,0xa8,0x2a,0xcc,0xe0,0x3c,0xb4,0xaa,0x84,0x3c,0x3d,0xdb,0x77,0xc3,0xb4,0x8d,
    0x1b,0xa6,0xbd,0xc7,0xf3,0xb4,0x74,0x9c,0xa5,0x3b,0xe0,0x3d,0xd9,0xb4,0x1c,0x7f,
    0xa4,0x35,0x8e,0x9f,0xa1,0x01,0xdf,0xf7,0x27,0x05,0x90,0xe4,0xff,0x23,0x32,0x03,
    0x8c,0x17,0x05,0xef,0x96,0xd3,0xf7,0x6f,0xe7,0x95,0x22,0xae,0x6e,0xb5,0xc1,0xa7,
    0x79,0xf2,0xa6,0xdf,0x4d,0x5d,0xcb,0xd0,0xaf,0xd1,0x2d,0x9d,0xdf,0x83,0x7c,0x97,
    0xf4,0x16,0x79,0x25,0x3d,0x74,0xbc,0x5d,0xee,0x0b,0xd9,0x57,0x13,0xc4,0xcb,0xdd,
    0x09,0xae,0xda,0xf0,0x54,0x06,0xf7,0x38,0x3a,0x3c,0xac,0x4b,0xa5,0x91,0x9f,0xd6,
    0x28,0xfa,0xcd,0x29,0xd1,0x6f,0x7e,0x41,0xbf,0xa5,0x8f,0x57,0x8b,0x3f,0x7a,0x43,
    0x56,0xbd,0x96,0x53,0x6c,0x9c,0x3e,0x9f,0xcf,0x4f,0xf0,0x65,0xcd,0xc0,0x47,0xef,
    0xc2,0xe7,0xba,0xae,0xb1,0xce,0x3d,0x67,0x86,0x09,0x4a,0x34,0x61,0xbc,0x18,0x95,
    0x5e,0x98,0xa0,0x96,0xf2,0x46,0x73,0x0e,0xb0,0x9f,0x6a,0x4c,0xb1,0xf1,0xc8,0x5b,
    0xf8,0x66,0x04,0xe5,0x6b,0xcd,0x79,0x3d,0xcd,0xbd,0x0c,0xaa,0x28,0xa8,0x4a,0x5d,
    0x04,0xee,0xd0,0xc6,0xb4,0xb9,0x53,0xb1,0x96,0x9a,0x0c,0x5d,0xa3,0x11,0xe6,0x4f,
    0x5f,0x7f,0x8b,0xc0,0x2a,0x39,0x6c,0xe9,0x74,0x63,0xc5,0x54,0xe6,0xdc,0x3b,0xb6,
    0x41,0xb8,0xb8,0x22,0x35,0x52,0x5e,0xce,0xbe,0xd7,0xa3,0x04,0x76,0x7d,0xc1,0x5b,
    0xd8,0xdc,0xa1,0xe4,0x37,0xcb,0x15,0x7f,0x32,0x59,0xc8,0xe2,0x48,0x2d,0x8e,0x16,
    0xb9,0xdc,0xaf,0xfc,0x4d,0x6e,0x0a,0x5e,0xc0,0x71,0x02,0x7b,0xfb,0x17,0x8a,0xc9,
    0xe8,0x9b,0xee,0xc0,0x67,0x86,0x27,0xbd,0x86,0xec,0x30,0xfe,0x66,0x5a,0x55,0x52,
    0x4d,0x11,0xf6,0x43,0xd4,0x73,0x36,0xfd,0x7c,0x4e,0x0d,0xde,0x53,0x97,0xd7,0xf1,
    0x95,0xbb,0xd7,0x87,0xda,0x09,0x88,0x64,0x84,0x7f,0x5f,0x83,0x57,0x89,0xdd,0x54,
    0x6c,0x6b,0x96,0xe5,0xd5,0x54,0x90,0xf0,0x7b,0xe9,0x8e,0x64,0x61,0x6d,0xf0,0xc6,
    0x88,0xd2,0xc2,0x8c,0x33,0xa4,0x5f,0xf2,0xf9,0x2b,0xdf,0x48,0xd4,0xcc,0x93,0x0b,
    0x12,0xfb,0x88,0x36,0xde,0xdd,0xbf,0xd8,0x4a,0xa2,0x92,0xb8,0x35,0xd7,0x90,0xb7,
    0xe7,0x42,0x70,0xaf,0xc2,0xa4,0xae,0xe3,0x95,0xe3,0x19,0x14,0xa0,0x4f,0x23,0xae,
    0xc3,0x89,0xe6,0x78,0x77,0xae,0x21,0xef,0xd0,0xa9,0xcd,0xa5,0xb7,0x9d,0x6f,0x8e,
    0x50,0xef,0xee,0xd2,0x8e,0xe2,0xf6,0x84,0x5e,0x71,0xe7,0x8a,0xae,0xe9,0xc9,0xab,
    0x7c,0x8d,0xea,0x46,0x67,0xe9,0x35,0x3e,0x79,0x6f,0x45,0x7f,0x6d,0xc7,0xe4,0x47,
    0x0d,0x92,0xc0,0xae,0x0b,0x08,0x4f,0x81,0x49,0x4f,0x65,0x43,0x75,0x5f,0xb0,0xe4,
    0xb2,0xf5,0x4a,0x92,0x40,0xce,0xad,0x88,0x24,0xdf,0xfe,0x53,0xaf,0x13,0x6e,0xad,
    0x3f,0xd3,0xe5,0x9e,0x4e,0xe1,0xfa,0x36,0xbd,0xf7,0x13,0x95,0xa6,0x43,0x17,0x9f,
    0x37,0x10,0x4b,0x1e,0x4f,0x4c,0x7a,0x9b,0x0c,0x24,0x12,0x63,0x9d,0x2a,0xd9,0x65,
    0x17,0x89,0xf4,0x96,0x7c,0x06,0xe1,0x0b,0x1f,0x01,0x44,0x3c,0x15,0xea,0x1c,0x50,
    0x7c,0x95,0x7e,0x02,0xf1,0x7f,0xf5,0xfd,0xa1,0xb2,0x9b,0x43,0x7c,0xcc,0x81,0x17,
    0x0c,0xe8,0x26,0xd4,0x6b,0xf8,0xa8,0x5f,0xe6,0x2f,0x24,0x5d,0x19,0x2b,0x4c,0x3e,
    0x2e,0xdb,0x1e,0x6b,0x18,0x76,0x76,0xd1,0x6f,0x88,0x6f,0xfe,0x31,0x71,0xb9,0x0e,
    0xa2,0x14,0x20,0xa2,0x6d,0xd2,0xb5,0xe0,0xcf,0xe7,0xef,0x45,0xed,0xe9,0x00,0x4f,
    0x34,0xe1,0x77,0x1d,0x87,0xc4,0x06,0x4e,0x30,0xf7,0x51,0x5f,0xf6,0x74,0xf5,0x5a,
    0xb0,0x9c,0x34,0xbd,0xe7,0xa0,0x43,0x33,0xb2,0x48,0x40,0x37,0x04,0x15,0xb1,0xdb,
    0xe0,0x46,0x01,0xc5,0x47,0x29,0x5f,0x67,0xb9,0xd7,0x1a,0x1e,0xb0,0xc1,0x39,0x2d,
    0xe5,0xa2,0xdc,0xb6,0xcc,0x3d,0x49,0xa1,0x6c,0x5c,0x1a,0xdb,0xd8,0x8c,0x8d,0x60,
    0x19,0xa9,0xdc,0xce,0xe9,0x44,0xf9,0x12,0x85,0x04,0xae,0xaa,0xc5,0xbc,0xea,0xdb,
    0x66,0x45,0x52,0x31,0xe1,0x53,0xf8,0x1b,0x36,0x3d,0x8d,0x12,0xb1,0xe2,0xba,0x70,
    0x63,0x47,0x56,0x6e,0x8a,0xc2,0x7c,0x1c,0x94,0xb8,0x07,0x28,0xbe,0xfb,0x18,0x52,
    0x66,0x4b,0xf9,0x8d,0xe2,0x13,0x7f,0x14,0xe4,0x63,0xcb,0x81,0x61,0x3f,0x20,0xb6,
    0xe4,0xb9,0xf5,0x5f,0x06,0x94,0x52,0x56,0x88,0x2c,0x31,0xe5,0xf8,0x0b,0x6f,0x20,
    0x23,0x4b,0xf9,0x7c,0x46,0x6e,0xcb,0x66,0x60,0x62,0x31,0x6d,0xe9,0x28,0xef,0x5f,
    0xe4,0x9a,0xd8,0x72,0xb3,0x0f,0x5b,0xf1,0x87,0x3c,0x8a,0x47,0xd6,0xb7,0xfa,0xd3,
    0xfa,0x40,0x9e,0xce,0x52,0x94,0x58,0x4a,0xa2,0xdc,0x13,0x0b,0x0f,0x33,0xb7,0xb9,
    0x97,0x36,0x14,0x2f,0xfb,0x81,0x64,0xf9,0x6e,0x29,0xbf,0x00,0xdc,0x2a,0xa5,0xa9,
    0xba,0x29,0xb2,0x85,0x27,0xdf,0x0b,0x31,0xc1,0x2a,0xab,0x92,0xa1,0x2a,0x7e,0x57,
    0x7f,0x17,0x36,0xe5,0xde,0x34,0xd9,0x02,0x47,0xa7,0xd7,0x4e,0x1e,0x1c,0x40,0x08,
    0x36,0x12,0x74,0x1e,0x43,0x88,0x83,0xd2,0xe2,0x65,0x7c,0x4c,0xcc,0xc1,0xef,0x43,
    0xf8,0x88,0x3c,0x8b,0x6f,0x50,0xe6,0xdf,0x4d,0xd9,0xbe,0x11,0x24,0x01,0xe4,0x5c,
    0xf5,0x02,0xf2,0xe9,0x20,0xd7,0x7c,0x60,0xda,0xae,0xf4,0xe8,0xef,0x07,0xac,0xb5,
    0xf4,0x66,0x8c,0x56,0xc7,0x62,0xfc,0xfb,0x2b,0x23,0xf0,0x46,0xd7,0x8d,0x6b,0x0b,
    0x9a,0xe3,0xee,0x02,0x75,0xa1,0xca,0xe1,0x2c,0xc2,0x3f,0x13,0x06,0x75,0x7f,0x17,
    0xe2,0x17,0xde,0x7b,0x79,0xa0,0x71,0xc6,0x74,0xe0,0x02,0x19,0xa1,0x28,0x55,0xdc,
    0xf9,0x37,0x63,0xaa,0xd5,0xf6,0x16,0xb6,0x7d,0x87,0x43,0xc4,0x6a,0xf5,0x9d,0x9d,
    0x2b,0x16,0x67,0x85,0x47,0x8a,0x9d,0x97,0x3c,0xf8,0xdc,0x22,0x99,0x27,0xf2,0x68,
    0x4b,0xee,0x54,0x4a,0x29,0xfd,0x7b,0xb0,0xa8,0xf8,0x40,0x4d,0xc1,0xf4,0xca,0xd7,
    0x70,0xbe,0xc1,0xea,0xaa,0x3c,0x2b,0x3c,0x7a,0x53,0xce,0xb4,0x2d,0x24,0xe0,0xfd,
    0x4b,0x56,0x27,0x52,0x98,0x5c,0xa8,0x77,0x40,0x65,0xca,0x2a,0xc6,0xbf,0x9c,0xe4,
    0x2c,0x4d,0xe0,0x18,0x50,0x1b,0x4c,0x82,0x18,0x52,0x37,0xf8,0x95,0xc9,0x72,0x6f,
    0xef,0x3e,0xbd,0xb7,0xc9,0x5c,0x43,0xff,0x53,0xf3,0x1d,0x40,0x6c,0xe2,0xe9,0x99,
    0x6e,0x91,0x75,0xa6,0xfb,0xdc,0xb2,0xfc,0x02,0x62,0xc0,0xf4,0xe2,0x26,0x55,0xe3,
    0xdf,0x08,0x6b,0x70,0xa1,0xf8,0x5a,0x7f,0xf1,0x1f,0x26,0x1d,0xca,0x45,0xe3,0xdc,
    0xf3,0x40,0xe2,0xc5,0x14,0x0a,0x81,0xe4,0x1f,0xe1,0x42,0xb7,0x71,0x67,0xe7,0x71,
    0xee,0xad,0x91,0x86,0xfa,0x24,0x0e,0xbf,0x48,0x56,0xea,0x5b,0xa4,0x0f,0xdd,0x14,
    0x0f,0x57,0x05,0x34,0xf5,0x78,0x55,0xb0,0x8c,0x3f,0xac,0x43,0xfe,0x60,0xfe,0x81,
    0x1e,0x70,0x2f,0xf0,0xed,0x1c,0xb5,0x06,0x7f,0xeb,0x18,0xe8,0x50,0x83,0xec,0xe2,
    0x2e,0x96,0x67,0xbf,0xe8,0x48,0x4d,0x21,0x4e,0xfe,0x75,0x1a,0xba,0x64,0xe8,0x79,
    0x7c,0x4b,0x55,0x7d,0x8d,0x26,0x93,0xc1,0xfc,0x33,0x2b,0x39,0x85,0x43,0x4f,0x21,
    0x80,0x7f,0x28,0xa6,0xc3,0x13,0x3a,0x73,0xef,0xd3,0x14,0x53,0xc2,0x55,0x58,0x42,
    0x4c,0x29,0xdf,0x3d,0x5f,0x63,0x52,0x59,0xbd,0xf5,0x2f,0xa7,0xe0,0xd0,0x00,0xdf,
    0x2d,0xad,0x7e,0xfa,0xf3,0xdd,0x2f,0x47,0xe7,0x1f,0x4f,0x3e,0xfe,0x78,0xf7,0xf6,
    0xfc,0xfc,0xf4,0xbc,0xf1,0xa4,0x35,0x6d,0x18,0xfc,0x69,0xa6,0x1e,0x35,0x3f,0xa4,
    0xff,0x5f,0x76,0xae,0x2c,0xfd,0xf3,0xc7,0x9f,0x3f,0x9e,0xfe,0x22,0x12,0x99,0x73,
    0xaf,0x38,0x6d,0xdc,0x16,0xc0,0x42,0xb0,0x47,0xef,0x83,0xb9,0xbc,0xb5,0x50,0xda,
    0x29,0x3b,0x43,0x16,0x43,0xf6,0x7a,0xfa,0xe9,0xcf,0x3a,0x3f,0x3b,0xce,0x8a,0x08,
    0x35,0x3d,0x97,0x16,0xbb,0x8d,0xf6,0xd7,0xe7,0xea,0xcb,0x3d,0x62,0xdb,0x3b,0x47,
    0x08,0xb9,0x1b,0x35,0xc0,0xfc,0xd9,0x9c,0xbd,0x2a,0x3c,0x7e,0x73,0x2f,0xe9,0x75,
    0xf9,0xd8,0x95,0x78,0x2d,0x48,0xb9,0x4d,0x6a,0xde,0x4f,0x28,0x9d,0x1e,0xd4,0xd0,
    0xef,0xa1,0x0d,0xcd,0x7b,0xdb,0x84,0x8b,0x4b,0x51,0x3e,0xe9,0x70,0x8f,0x0c,0x8b,
    0x57,0x1e,0x36,0x57,0x59,0xee,0x39,0x29,0xda,0xb9,0xc8,0x2f,0xd4,0x6c,0xcf,0x39,
    0xbf,0x5c,0xbb,0x9b,0x4d,0xe5,0x6b,0x14,0x94,0x72,0x32,0x0d,0xe9,0xd5,0x07,0x92,
    0x7f,0x68,0x0a,0xa4,0x72,0xc7,0x36,0x44,0x52,0x18,0x2b,0x86,0x94,0x19,0xba,0xb3,
    0x33,0x77,0x7d,0x08,0x30,0x4d,0x37,0xbe,0x60,0xe0,0x51,0xd0,0xd5,0x5a,0x4c,0x1a,
    0x11,0x77,0x80,0x37,0x7b,0x98,0x74,0x0d,0x83,0x96,0x4c,0x7e,0xe4,0x2e,0x03,0x94,
    0x56,0x34,0x68,0x55,0xc0,0x2b,0x9f,0xe3,0xc6,0x25,0x09,0xed,0xc4,0x4e,0x5d,0x7e,
    0x35,0x51,0x05,0x7f,0x5e,0x47,0xfe,0x09,0xc0,0x9e,0x4e,0x7f,0xd7,0x41,0x57,0xeb,
    0xc4,0x5f,0x06,0xed,0x81,0x03,0xda,0x4d,0x87,0x53,0xac,0x09,0xfe,0x05,0x1b,0xa7,
    0x8e,0x1d,0xc4,0x58,0x7c,0xeb,0x52,0x98,0xbe,0xb4,0x07,0x5b,0xb0,0xe1,0x31,0x7f,
    0x69,0x18,0xef,0xc6,0xa1,0x26,0xda,0x50,0xf2,0x3a,0x3d,0xef,0xa5,0x08,0x9a,0xde,
    0x58,0x6f,0xd7,0x44,0xa1,0xcb,0x1c,0x53,0x3b,0xb3,0xe3,0x84,0x49,0x39,0xa5,0xbf,
    0xb2,0xa0,0xbe,0xc0,0x55,0x95,0xbc,0x50,0x06,0x6e,0x29,0xee,0xb7,0x74,0xe5,0x93,
    0xce,0x02,0x28,0x65,0x56,0x00,0xee,0x33,0x94,0x3e,0x53,0x2f,0x48,0x23,0x4c,0x94,
    0xe6,0x4f,0xd3,0x17,0x6f,0x23,0x95,0x84,0x8f,0xf8,0x37,0xd9,0x41,0xea,0x4a,0xee,
    0x16,0x6e,0x04,0x48,0x18,0xf5,0x03,0x1a,0xf5,0xcb,0x5c,0x1e,0xb4,0x91,0x4b,0xf5,
    0x31,0x94,0x44,0x03,0x23,0x9f,0x39,0x60,0x64,0xa7,0x0a,0x46,0x6e,0x03,0xd8,0x28,
    0x86,0xb0,0x57,0x64,0x46,0x4f,0xf0,0x89,0x5e,0x90,0x91,0xba,0x32,0x1c,0xcf,0x90,
    0xce,0xd5,0x92,0xe1,0x81,0xc9,0xe6,0xb2,0x1e,0x1a,0x6a,0xbe,0x43,0x49,0x27,0x89,
    0x0a,0x55,0xb5,0x1b,0x6b,0x4e,0x85,0x2e,0xbe,0x4f,0x29,0x9e,0xfb,0x3a,0x68,0x89,
    0xbf,0xb6,0xd8,0x9a,0x24,0x53,0xaf,0xff,0xe8,0x7f,0x01,0x9e,0xa0,0x41,0x23,0x40,
    0x7f,0x00,0x00
};
static constexpr size_t DASH_HTML_GZ_LEN = 9923;
