Whitespace/indentation cleanup.

This commit is contained in:
Blaz Kristan 2023-01-16 22:12:02 +01:00
parent dd08751f3f
commit a397aa188c
9 changed files with 1407 additions and 1408 deletions

View File

@ -7,7 +7,7 @@
<title>2D Set-up</title>
<script>
var d=document;
var loc = false, locip;
var loc = false, locip;
var maxPanels=64;
function H(){window.open("https://kno.wled.ge/features/2D");}
function B(){window.open("/settings","_self");}
@ -33,15 +33,15 @@
});
}
function S() {
if (window.location.protocol == "file:") {
loc = true;
locip = localStorage.getItem('locIp');
if (!locip) {
locip = prompt("File Mode. Please enter WLED IP!");
localStorage.setItem('locIp', locip);
}
}
var url = (loc?`http://${locip}`:'') + '/settings/s.js?p=10';
if (window.location.protocol == "file:") {
loc = true;
locip = localStorage.getItem('locIp');
if (!locip) {
locip = prompt("File Mode. Please enter WLED IP!");
localStorage.setItem('locIp', locip);
}
}
var url = (loc?`http://${locip}`:'') + '/settings/s.js?p=10';
loadJS(url, false); // If we set async false, file is loaded and executed, then next statement is processed
}
@ -86,12 +86,12 @@ Y:<input id="P${i}Y" name="P${i}Y" type="number" min="0" max="256" value="0"><br
p.insertAdjacentHTML("beforeend", b);
}
function remPanel() {
function remPanel() {
let p = gId("panels").children;
var i = p.length;
if (i <= 1) return;
p[i-1].remove();
}
var i = p.length;
if (i <= 1) return;
p[i-1].remove();
}
function resetPanels() {
d.Sf.MPC.value = 1;
@ -144,7 +144,7 @@ Y:<input id="P${i}Y" name="P${i}Y" type="number" min="0" max="256" value="0"><br
<button type="button" onclick="B()">Back</button><button type="submit">Save</button><hr>
</div>
<h2>2D setup</h2>
Strip or panel:
Strip or panel:
<select id="somp" name="SOMP" onchange="resetPanels();addPanels();UI();" >
<option value="0">1D Strip</option>
<option value="1">2D Matrix</option>

View File

@ -1,72 +1,72 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=500">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport"/>
<meta charset="utf-8">
<title>DMX Settings</title>
<script>
var d=document;
var loc = false, locip;
function H(){window.open("https://github.com/Aircoookie/WLED/wiki/DMX");}
function B(){window.history.back();}
function GCH(num) {
d.getElementById('dmxchannels').innerHTML += "";
for (i=0;i<num;i++) {
d.getElementById('dmxchannels').innerHTML += "<span id=CH" + (i+1) + "s >Channel " + (i+1) + ": <select name=CH" + (i+1) + " id=\"CH" + (i+1) + "\"><option value=0>Set to 0</option><option value=1>Red</option><option value=2>Green</option><option value=3>Blue</option><option value=4>White</option><option value=5>Shutter (Brightness)</option><option value=6>Set to 255</option></select></span><br />\n";
}
}
function mMap(){
numCh=document.Sf.CN.value;
numGap=document.Sf.CG.value;
if (parseInt(numCh)>parseInt(numGap)) {
d.getElementById("gapwarning").style.display="block";
} else {
d.getElementById("gapwarning").style.display="none";
}
for (i=0;i<15;i++) {
if (i>=numCh) {
d.getElementById("CH"+(i+1) + "s").style.opacity = "0.5";
d.getElementById("CH"+(i+1)).disabled = true;
} else {
d.getElementById("CH"+(i+1) + "s").style.opacity = "1";
d.getElementById("CH"+(i+1)).disabled = false;
}
}
}
// https://www.educative.io/edpresso/how-to-dynamically-load-a-js-file-in-javascript
function loadJS(FILE_URL, async = true) {
let scE = d.createElement("script");
scE.setAttribute("src", FILE_URL);
scE.setAttribute("type", "text/javascript");
scE.setAttribute("async", async);
d.body.appendChild(scE);
// success event
scE.addEventListener("load", () => {
//console.log("File loaded");
GCH(15);GetV();mMap();
});
// error event
scE.addEventListener("error", (ev) => {
console.log("Error on loading file", ev);
alert("Loading of configuration script failed.\nIncomplete page data!");
});
}
function S(){
if (window.location.protocol == "file:") {
loc = true;
locip = localStorage.getItem('locIp');
if (!locip) {
locip = prompt("File Mode. Please enter WLED IP!");
localStorage.setItem('locIp', locip);
}
}
var url = (loc?`http://${locip}`:'') + '/settings/s.js?p=7';
loadJS(url, false); // If we set async false, file is loaded and executed, then next statement is processed
}
</script>
<style>@import url("style.css");</style>
<meta name="viewport" content="width=500">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport"/>
<meta charset="utf-8">
<title>DMX Settings</title>
<script>
var d=document;
var loc = false, locip;
function H(){window.open("https://github.com/Aircoookie/WLED/wiki/DMX");}
function B(){window.history.back();}
function GCH(num) {
d.getElementById('dmxchannels').innerHTML += "";
for (i=0;i<num;i++) {
d.getElementById('dmxchannels').innerHTML += "<span id=CH" + (i+1) + "s >Channel " + (i+1) + ": <select name=CH" + (i+1) + " id=\"CH" + (i+1) + "\"><option value=0>Set to 0</option><option value=1>Red</option><option value=2>Green</option><option value=3>Blue</option><option value=4>White</option><option value=5>Shutter (Brightness)</option><option value=6>Set to 255</option></select></span><br />\n";
}
}
function mMap(){
numCh=document.Sf.CN.value;
numGap=document.Sf.CG.value;
if (parseInt(numCh)>parseInt(numGap)) {
d.getElementById("gapwarning").style.display="block";
} else {
d.getElementById("gapwarning").style.display="none";
}
for (i=0;i<15;i++) {
if (i>=numCh) {
d.getElementById("CH"+(i+1) + "s").style.opacity = "0.5";
d.getElementById("CH"+(i+1)).disabled = true;
} else {
d.getElementById("CH"+(i+1) + "s").style.opacity = "1";
d.getElementById("CH"+(i+1)).disabled = false;
}
}
}
// https://www.educative.io/edpresso/how-to-dynamically-load-a-js-file-in-javascript
function loadJS(FILE_URL, async = true) {
let scE = d.createElement("script");
scE.setAttribute("src", FILE_URL);
scE.setAttribute("type", "text/javascript");
scE.setAttribute("async", async);
d.body.appendChild(scE);
// success event
scE.addEventListener("load", () => {
//console.log("File loaded");
GCH(15);GetV();mMap();
});
// error event
scE.addEventListener("error", (ev) => {
console.log("Error on loading file", ev);
alert("Loading of configuration script failed.\nIncomplete page data!");
});
}
function S(){
if (window.location.protocol == "file:") {
loc = true;
locip = localStorage.getItem('locIp');
if (!locip) {
locip = prompt("File Mode. Please enter WLED IP!");
localStorage.setItem('locIp', locip);
}
}
var url = (loc?`http://${locip}`:'') + '/settings/s.js?p=7';
loadJS(url, false); // If we set async false, file is loaded and executed, then next statement is processed
}
</script>
<style>@import url("style.css");</style>
</head>
<body onload="S()">
<form id="form_s" name="Sf" method="post">

File diff suppressed because it is too large Load Diff

View File

@ -17,7 +17,7 @@
<form id="form_s" name="Sf" method="post">
<h2>Please enter settings PIN code</h2>
<input type="password" name="PIN" size="4" maxlength="4" minlength="4" pattern="[0-9]*" inputmode="numeric" autofocus>
<hr>
<hr>
<button type="button" onclick="B()">Back</button><button type="submit">Submit</button>
</form>
</body>

View File

@ -53,7 +53,7 @@
req.send(formData);
fO.value = '';
return false;
}
}
function checkNum(o) {
const specialkeys = ["Backspace", "Tab", "Enter", "Shift", "Control", "Alt", "Pause", "CapsLock", "Escape", "Space", "PageUp", "PageDown", "End", "Home", "ArrowLeft", "ArrowUp", "ArrowRight", "ArrowDown", "Insert", "Delete"];
// true if key is a number or a special key

View File

@ -1,74 +1,74 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=500">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport"/>
<meta charset="utf-8">
<title>Sync Settings</title>
<script>var d=document;
var loc = false, locip;
function gId(s){return d.getElementById(s);}
function toggle(el){gId(el).classList.toggle("hide"); gId('No'+el).classList.toggle("hide");}
function H(){window.open("https://kno.wled.ge/interfaces/udp-notifier/");}
function B(){window.open("/settings","_self");}
function adj(){if (d.Sf.DI.value == 6454) {if (d.Sf.EU.value == 1) d.Sf.EU.value = 0;}
else if (d.Sf.DI.value == 5568) {if (d.Sf.DA.value == 0) d.Sf.DA.value = 1; if (d.Sf.EU.value == 0) d.Sf.EU.value = 1;} }
// https://www.educative.io/edpresso/how-to-dynamically-load-a-js-file-in-javascript
function loadJS(FILE_URL, async = true) {
let scE = d.createElement("script");
scE.setAttribute("src", FILE_URL);
scE.setAttribute("type", "text/javascript");
scE.setAttribute("async", async);
d.body.appendChild(scE);
// success event
scE.addEventListener("load", () => {
//console.log("File loaded");
GetV();SetVal();
});
// error event
scE.addEventListener("error", (ev) => {
console.log("Error on loading file", ev);
alert("Loading of configuration script failed.\nIncomplete page data!");
});
}
function FC()
{
for(j=0;j<8;j++)
{
gId("G"+(j+1)).checked=gId("GS").value>>j&1;
gId("R"+(j+1)).checked=gId("GR").value>>j&1;
}
}
function GC()
{
var a=0, b=0;
<meta name="viewport" content="width=500">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport"/>
<meta charset="utf-8">
<title>Sync Settings</title>
<script>var d=document;
var loc = false, locip;
function gId(s){return d.getElementById(s);}
function toggle(el){gId(el).classList.toggle("hide"); gId('No'+el).classList.toggle("hide");}
function H(){window.open("https://kno.wled.ge/interfaces/udp-notifier/");}
function B(){window.open("/settings","_self");}
function adj(){if (d.Sf.DI.value == 6454) {if (d.Sf.EU.value == 1) d.Sf.EU.value = 0;}
else if (d.Sf.DI.value == 5568) {if (d.Sf.DA.value == 0) d.Sf.DA.value = 1; if (d.Sf.EU.value == 0) d.Sf.EU.value = 1;} }
// https://www.educative.io/edpresso/how-to-dynamically-load-a-js-file-in-javascript
function loadJS(FILE_URL, async = true) {
let scE = d.createElement("script");
scE.setAttribute("src", FILE_URL);
scE.setAttribute("type", "text/javascript");
scE.setAttribute("async", async);
d.body.appendChild(scE);
// success event
scE.addEventListener("load", () => {
//console.log("File loaded");
GetV();SetVal();
});
// error event
scE.addEventListener("error", (ev) => {
console.log("Error on loading file", ev);
alert("Loading of configuration script failed.\nIncomplete page data!");
});
}
function FC()
{
for(j=0;j<8;j++)
{
gId("G"+(j+1)).checked=gId("GS").value>>j&1;
gId("R"+(j+1)).checked=gId("GR").value>>j&1;
}
}
function GC()
{
var a=0, b=0;
var m=1;
for(j=0;j<8;j++)
{
a+=gId("G"+(j+1)).checked*m;
b+=gId("R"+(j+1)).checked*m;
m*=2;
}
gId("GS").value=a;
gId("GR").value=b;
}
function SP(){var p = d.Sf.DI.value; gId("xp").style.display = (p > 0)?"none":"block"; if (p > 0) d.Sf.EP.value = p;}
function SetVal(){switch(parseInt(d.Sf.EP.value)){case 5568: d.Sf.DI.value = 5568; break; case 6454: d.Sf.DI.value = 6454; break; case 4048: d.Sf.DI.value = 4048; break; }; SP();FC();}
function S(){
if (window.location.protocol == "file:") {
loc = true;
locip = localStorage.getItem('locIp');
if (!locip) {
locip = prompt("File Mode. Please enter WLED IP!");
localStorage.setItem('locIp', locip);
}
var m=1;
for(j=0;j<8;j++)
{
a+=gId("G"+(j+1)).checked*m;
b+=gId("R"+(j+1)).checked*m;
m*=2;
}
gId("GS").value=a;
gId("GR").value=b;
}
function SP(){var p = d.Sf.DI.value; gId("xp").style.display = (p > 0)?"none":"block"; if (p > 0) d.Sf.EP.value = p;}
function SetVal(){switch(parseInt(d.Sf.EP.value)){case 5568: d.Sf.DI.value = 5568; break; case 6454: d.Sf.DI.value = 6454; break; case 4048: d.Sf.DI.value = 4048; break; }; SP();FC();}
function S(){
if (window.location.protocol == "file:") {
loc = true;
locip = localStorage.getItem('locIp');
if (!locip) {
locip = prompt("File Mode. Please enter WLED IP!");
localStorage.setItem('locIp', locip);
}
var url = (loc?`http://${locip}`:'') + '/settings/s.js?p=4';
loadJS(url, false); // If we set async false, file is loaded and executed, then next statement is processed
}
</script>
<style>@import url("style.css");</style>
}
var url = (loc?`http://${locip}`:'') + '/settings/s.js?p=4';
loadJS(url, false); // If we set async false, file is loaded and executed, then next statement is processed
}
</script>
<style>@import url("style.css");</style>
</head>
<body onload="S()">
<form id="form_s" name="Sf" method="post" onsubmit="GC()">
@ -84,39 +84,39 @@ UDP Port: <input name="UP" type="number" min="1" max="65535" class="d5" required
<input name="GS" id="GS" type="number" style="display: none;"><!-- hidden inputs for bitwise group checkboxes -->
<input name="GR" id="GR" type="number" style="display: none;">
<table style="margin: 0 auto;">
<tr>
<td></td>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
</tr>
<tr>
<td>Send:</td>
<td><input type="checkbox" id="G1" name="G1"></td>
<td><input type="checkbox" id="G2" name="G2"></td>
<td><input type="checkbox" id="G3" name="G3"></td>
<td><input type="checkbox" id="G4" name="G4"></td>
<td><input type="checkbox" id="G5" name="G5"></td>
<td><input type="checkbox" id="G6" name="G6"></td>
<td><input type="checkbox" id="G7" name="G7"></td>
<td><input type="checkbox" id="G8" name="G8"></td>
</tr>
<tr>
<td>Receive:</td>
<td><input type="checkbox" id="R1" name="R1"></td>
<td><input type="checkbox" id="R2" name="R2"></td>
<td><input type="checkbox" id="R3" name="R3"></td>
<td><input type="checkbox" id="R4" name="R4"></td>
<td><input type="checkbox" id="R5" name="R5"></td>
<td><input type="checkbox" id="R6" name="R6"></td>
<td><input type="checkbox" id="R7" name="R7"></td>
<td><input type="checkbox" id="R8" name="R8"></td>
</tr>
<tr>
<td></td>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
</tr>
<tr>
<td>Send:</td>
<td><input type="checkbox" id="G1" name="G1"></td>
<td><input type="checkbox" id="G2" name="G2"></td>
<td><input type="checkbox" id="G3" name="G3"></td>
<td><input type="checkbox" id="G4" name="G4"></td>
<td><input type="checkbox" id="G5" name="G5"></td>
<td><input type="checkbox" id="G6" name="G6"></td>
<td><input type="checkbox" id="G7" name="G7"></td>
<td><input type="checkbox" id="G8" name="G8"></td>
</tr>
<tr>
<td>Receive:</td>
<td><input type="checkbox" id="R1" name="R1"></td>
<td><input type="checkbox" id="R2" name="R2"></td>
<td><input type="checkbox" id="R3" name="R3"></td>
<td><input type="checkbox" id="R4" name="R4"></td>
<td><input type="checkbox" id="R5" name="R5"></td>
<td><input type="checkbox" id="R6" name="R6"></td>
<td><input type="checkbox" id="R7" name="R7"></td>
<td><input type="checkbox" id="R8" name="R8"></td>
</tr>
</table><br>
Receive: <nowrap><input type="checkbox" name="RB">Brightness,</nowrap> <nowrap><input type="checkbox" name="RC">Color,</nowrap> <nowrap>and <input type="checkbox" name="RX">Effects</nowrap><br>
<input type="checkbox" name="SO"> Segment options, <input type="checkbox" name="SG"> bounds<br>
@ -166,7 +166,7 @@ Realtime LED offset: <input name="WO" type="number" min="-255" max="255" require
<hr class="sml">
<h3>Alexa Voice Assistant</h3>
<div id="NoAlexa" class="hide">
<em style="color:#fa0;">This firmware build does not include Alexa support.<br></em><br>
<em style="color:#fa0;">This firmware build does not include Alexa support.<br></em><br>
</div>
<div id="Alexa">
Emulate Alexa device: <input type="checkbox" name="AL"><br>
@ -182,7 +182,7 @@ For best results, only use one of these services at a time.<br>
<hr class="sml">
<h3>Blynk</h3>
<div id="NoBlynk" class="hide">
<em style="color:#fa0;">This firmware build does not include Blynk support.<br></em>
<em style="color:#fa0;">This firmware build does not include Blynk support.<br></em>
</div>
<div id="Blynk">
Host: <input type="text" name="BH" maxlength="32">
@ -192,7 +192,7 @@ Device Auth token: <input name="BK" maxlength="33"><br>
</div>
<h3>MQTT</h3>
<div id="NoMQTT" class="hide">
<em style="color:#fa0;">This firmware build does not include MQTT support.<br></em>
<em style="color:#fa0;">This firmware build does not include MQTT support.<br></em>
</div>
<div id="MQTT">
Enable MQTT: <input type="checkbox" name="MQ"><br>
@ -210,7 +210,7 @@ Publish on button press: <input type="checkbox" name="BM"><br>
</div>
<h3>Philips Hue</h3>
<div id="NoHue" class="hide">
<em style="color:#fa0;">This firmware build does not include Philips Hue support.<br></em>
<em style="color:#fa0;">This firmware build does not include Philips Hue support.<br></em>
</div>
<div id="Hue">
<i>You can find the bridge IP and the light number in the 'About' section of the hue app.</i><br>

View File

@ -6,8 +6,8 @@
<meta charset="utf-8">
<title>Time Settings</title>
<script>
var d=document;
var loc = false, locip;
var d=document;
var loc = false, locip;
var el=false;
var ms=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];
function H() { window.open("https://kno.wled.ge/features/settings/#time-settings"); }
@ -156,7 +156,7 @@
</div>
<h2>Time setup</h2>
Get time from NTP server: <input type="checkbox" name="NT"><br>
<input type="text" name="NS" maxlength="32"><br>
<input type="text" name="NS" maxlength="32"><br>
Use 24h format: <input type="checkbox" name="CF"><br>
Time zone:
<select name="TZ">

View File

@ -6,234 +6,234 @@
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport"/>
<title>UI Settings</title>
<script>
var d = document;
var loc = false, locip;
var initial_ds, initial_st, initial_su;
var sett = null;
var l = {
"comp":{
"labels":"Show button labels",
"colors":{
"LABEL":"Color selection methods",
"picker": "Color Wheel",
"rgb": "RGB sliders",
"quick": "Quick color selectors",
"hex": "HEX color input"
},
"pcmbot": "Show bottom tab bar in PC mode",
"pid": "Show preset IDs",
"seglen": "Set segment length instead of stop LED",
"segpwr": "Hide segment power &amp; brightness",
"segexp" : "Always expand first segment",
"css": "Enable custom CSS",
"hdays": "Enable custom Holidays list"
var d = document;
var loc = false, locip;
var initial_ds, initial_st, initial_su;
var sett = null;
var l = {
"comp":{
"labels":"Show button labels",
"colors":{
"LABEL":"Color selection methods",
"picker": "Color Wheel",
"rgb": "RGB sliders",
"quick": "Quick color selectors",
"hex": "HEX color input"
},
"pcmbot": "Show bottom tab bar in PC mode",
"pid": "Show preset IDs",
"seglen": "Set segment length instead of stop LED",
"segpwr": "Hide segment power &amp; brightness",
"segexp" : "Always expand first segment",
"css": "Enable custom CSS",
"hdays": "Enable custom Holidays list"
},
"theme":{
"alpha": {
"bg":"Background opacity",
"tab":"Button opacity"
},
"theme":{
"alpha": {
"bg":"Background opacity",
"tab":"Button opacity"
},
"bg":{
"url":"BG image URL",
"random":"Random BG image"
},
"color":{
"bg":"BG HEX color"
}
"bg":{
"url":"BG image URL",
"random":"Random BG image"
},
"color":{
"bg":"BG HEX color"
}
};
function gId(s) { return d.getElementById(s); }
function toggle(el) { gId(el).classList.toggle("hide"); gId('No'+el).classList.toggle("hide"); }
function isObject(item) {
return (item && typeof item === 'object' && !Array.isArray(item));
}
function set(path, obj, val) {
var tar = obj;
var pList = path.split('_');
var len = pList.length;
for(var i = 0; i < len-1; i++) {
var elem = pList[i];
if( !tar[elem] ) tar[elem] = {}
tar = tar[elem];
}
tar[pList[len-1]] = val;
};
function gId(s) { return d.getElementById(s); }
function toggle(el) { gId(el).classList.toggle("hide"); gId('No'+el).classList.toggle("hide"); }
function isObject(item) {
return (item && typeof item === 'object' && !Array.isArray(item));
}
function set(path, obj, val) {
var tar = obj;
var pList = path.split('_');
var len = pList.length;
for(var i = 0; i < len-1; i++) {
var elem = pList[i];
if( !tar[elem] ) tar[elem] = {}
tar = tar[elem];
}
var timeout;
function showToast(text, error = false)
tar[pList[len-1]] = val;
}
var timeout;
function showToast(text, error = false)
{
var x = gId("toast");
x.innerHTML = text;
x.classList.add(error ? "error":"show");
clearTimeout(timeout);
x.style.animation = 'none';
timeout = setTimeout(function(){ x.classList.remove("show"); }, 2900);
}
function addRec(s, path = "", label = null)
{
var str = "";
for (i in s)
{
var x = gId("toast");
x.innerHTML = text;
x.classList.add(error ? "error":"show");
clearTimeout(timeout);
x.style.animation = 'none';
timeout = setTimeout(function(){ x.classList.remove("show"); }, 2900);
}
function addRec(s, path = "", label = null)
{
var str = "";
for (i in s)
{
var fk = path + (path?'_':'') + i;
if (isObject(s[i])) {
if (label && label[i] && label[i]["LABEL"]) str += `<h3>${label[i]["LABEL"]}</h3>`;
str += addRec(s[i], fk, label? label[i] : null);
} else {
var lb = fk;
if (label && label[i]) lb = label[i];
else if (s[i+'LABEL']) lb = s[i+'LABEL'];
if (i.indexOf('LABEL') > 0) continue;
var t = typeof s[i];
if (gId(fk)) { //already exists
if(t === 'boolean')
{
gId(fk).checked = s[i];
} else {
gId(fk).value = s[i];
}
if (gId(fk).previousElementSibling.matches('.l')) {
gId(fk).previousElementSibling.innerHTML = lb;
}
var fk = path + (path?'_':'') + i;
if (isObject(s[i])) {
if (label && label[i] && label[i]["LABEL"]) str += `<h3>${label[i]["LABEL"]}</h3>`;
str += addRec(s[i], fk, label? label[i] : null);
} else {
var lb = fk;
if (label && label[i]) lb = label[i];
else if (s[i+'LABEL']) lb = s[i+'LABEL'];
if (i.indexOf('LABEL') > 0) continue;
var t = typeof s[i];
if (gId(fk)) { //already exists
if(t === 'boolean')
{
gId(fk).checked = s[i];
} else {
if(t === 'boolean')
{
str += `${lb}: <input class="agi cb" type="checkbox" id=${fk} ${s[i]?"checked":""}><br>`;
} else if (t === 'number')
{
str += `${lb}: <input class="agi" type="number" id=${fk} value=${s[i]}><br>`;
} else if (t === 'string')
{
str += `${lb}:<br><input class="agi" id=${fk} value=${s[i]}><br>`;
}
gId(fk).value = s[i];
}
if (gId(fk).previousElementSibling.matches('.l')) {
gId(fk).previousElementSibling.innerHTML = lb;
}
} else {
if(t === 'boolean')
{
str += `${lb}: <input class="agi cb" type="checkbox" id=${fk} ${s[i]?"checked":""}><br>`;
} else if (t === 'number')
{
str += `${lb}: <input class="agi" type="number" id=${fk} value=${s[i]}><br>`;
} else if (t === 'string')
{
str += `${lb}:<br><input class="agi" id=${fk} value=${s[i]}><br>`;
}
}
}
return str;
}
return str;
}
function genForm(s) {
var str = "";
str = addRec(s,"",l);
gId('gen').innerHTML = str;
function genForm(s) {
var str = "";
str = addRec(s,"",l);
gId('gen').innerHTML = str;
}
function GetLS()
{
sett = localStorage.getItem('wledUiCfg');
if (!sett) gId('lserr').style.display = "inline";
try {
sett = JSON.parse(sett);
} catch (e) {
sett = {};
gId('lserr').style.display = "inline";
gId('lserr').innerHTML = "&#9888; Settings JSON parsing failed. (" + e + ")";
}
function GetLS()
{
sett = localStorage.getItem('wledUiCfg');
if (!sett) gId('lserr').style.display = "inline";
try {
sett = JSON.parse(sett);
} catch (e) {
sett = {};
gId('lserr').style.display = "inline";
gId('lserr').innerHTML = "&#9888; Settings JSON parsing failed. (" + e + ")";
}
genForm(sett);
gId('dm').checked = (gId('theme_base').value === 'light');
genForm(sett);
gId('dm').checked = (gId('theme_base').value === 'light');
}
function SetLS()
{
var l = d.querySelectorAll('.agi');
for (var i = 0; i < l.length; i++) {
var e = l[i];
var val = e.classList.contains('cb') ? e.checked : e.value;
set(e.id, sett, val);
console.log(`${e.id} set to ${val}`);
}
try {
localStorage.setItem('wledUiCfg', JSON.stringify(sett));
gId('lssuc').style.display = "inline";
} catch (e) {
gId('lssuc').style.display = "none";
gId('lserr').style.display = "inline";
gId('lserr').innerHTML = "&#9888; Settings JSON saving failed. (" + e + ")";
}
}
function cLS()
{
localStorage.removeItem('wledP');
localStorage.removeItem('wledPmt');
localStorage.removeItem('wledPalx');
showToast("Cleared.");
}
function SetLS()
{
var l = d.querySelectorAll('.agi');
for (var i = 0; i < l.length; i++) {
var e = l[i];
var val = e.classList.contains('cb') ? e.checked : e.value;
set(e.id, sett, val);
console.log(`${e.id} set to ${val}`);
}
try {
localStorage.setItem('wledUiCfg', JSON.stringify(sett));
gId('lssuc').style.display = "inline";
} catch (e) {
gId('lssuc').style.display = "none";
gId('lserr').style.display = "inline";
gId('lserr').innerHTML = "&#9888; Settings JSON saving failed. (" + e + ")";
function Save() {
SetLS();
if (d.Sf.DS.value != initial_ds || d.Sf.ST.checked != initial_st || d.Sf.SU.checked != initial_su) d.Sf.submit();
}
// https://www.educative.io/edpresso/how-to-dynamically-load-a-js-file-in-javascript
function loadJS(FILE_URL, async = true) {
let scE = d.createElement("script");
scE.setAttribute("src", FILE_URL);
scE.setAttribute("type", "text/javascript");
scE.setAttribute("async", async);
d.body.appendChild(scE);
// success event
scE.addEventListener("load", () => {
//console.log("File loaded");
GetV();
initial_ds = d.Sf.DS.value;
initial_st = d.Sf.ST.checked;
initial_su = d.Sf.SU.checked;
GetLS();
});
// error event
scE.addEventListener("error", (ev) => {
console.log("Error on loading file", ev);
alert("Loading of configuration script failed.\nIncomplete page data!");
});
}
function S()
{
if (window.location.protocol == "file:") {
loc = true;
locip = localStorage.getItem('locIp');
if (!locip) {
locip = prompt("File Mode. Please enter WLED IP!");
localStorage.setItem('locIp', locip);
}
}
var url = (loc?`http://${locip}`:'') + '/settings/s.js?p=3';
loadJS(url, false); // If we set async false, file is loaded and executed, then next statement is processed
}
function H() { window.open("https://kno.wled.ge/features/settings/#user-interface-settings"); }
function B() { window.open("/settings","_self"); }
function UI()
{
gId('idonthateyou').style.display = (gId('dm').checked) ? 'inline':'none';
var f = gId('theme_base');
if (f) f.value = (gId('dm').checked) ? 'light':'dark';
}
function cLS()
{
localStorage.removeItem('wledP');
localStorage.removeItem('wledPmt');
localStorage.removeItem('wledPalx');
showToast("Cleared.");
// random BG image
function setRandomBg() {
if (gId("theme_bg_random").checked) {
gId("theme_bg_url").value = "https://picsum.photos/1920/1080";
} else {
gId("theme_bg_url").value = "";
}
function Save() {
SetLS();
if (d.Sf.DS.value != initial_ds || d.Sf.ST.checked != initial_st || d.Sf.SU.checked != initial_su) d.Sf.submit();
}
// https://www.educative.io/edpresso/how-to-dynamically-load-a-js-file-in-javascript
function loadJS(FILE_URL, async = true) {
let scE = d.createElement("script");
scE.setAttribute("src", FILE_URL);
scE.setAttribute("type", "text/javascript");
scE.setAttribute("async", async);
d.body.appendChild(scE);
// success event
scE.addEventListener("load", () => {
//console.log("File loaded");
GetV();
initial_ds = d.Sf.DS.value;
initial_st = d.Sf.ST.checked;
initial_su = d.Sf.SU.checked;
GetLS();
});
// error event
scE.addEventListener("error", (ev) => {
console.log("Error on loading file", ev);
alert("Loading of configuration script failed.\nIncomplete page data!");
});
}
function S()
{
if (window.location.protocol == "file:") {
loc = true;
locip = localStorage.getItem('locIp');
if (!locip) {
locip = prompt("File Mode. Please enter WLED IP!");
localStorage.setItem('locIp', locip);
}
}
var url = (loc?`http://${locip}`:'') + '/settings/s.js?p=3';
loadJS(url, false); // If we set async false, file is loaded and executed, then next statement is processed
}
function H() { window.open("https://kno.wled.ge/features/settings/#user-interface-settings"); }
function B() { window.open("/settings","_self"); }
function UI()
{
gId('idonthateyou').style.display = (gId('dm').checked) ? 'inline':'none';
var f = gId('theme_base');
if (f) f.value = (gId('dm').checked) ? 'light':'dark';
}
// random BG image
function setRandomBg() {
if (gId("theme_bg_random").checked) {
gId("theme_bg_url").value = "https://picsum.photos/1920/1080";
} else {
gId("theme_bg_url").value = "";
}
}
function checkRandomBg() {
if (gId("theme_bg_url").value === "https://picsum.photos/1920/1080") {
gId("theme_bg_random").checked = true;
} else {
gId("theme_bg_random").checked = false;
}
}
function uploadFile(fO,name) {
var req = new XMLHttpRequest();
req.addEventListener('load', function(){showToast(this.responseText,this.status >= 400)});
req.addEventListener('error', function(e){showToast(e.stack,true);});
req.open("POST", "/upload");
var formData = new FormData();
formData.append("data", fO.files[0], name);
req.send(formData);
fO.value = '';
return false;
}
function checkRandomBg() {
if (gId("theme_bg_url").value === "https://picsum.photos/1920/1080") {
gId("theme_bg_random").checked = true;
} else {
gId("theme_bg_random").checked = false;
}
}
function uploadFile(fO,name) {
var req = new XMLHttpRequest();
req.addEventListener('load', function(){showToast(this.responseText,this.status >= 400)});
req.addEventListener('error', function(e){showToast(e.stack,true);});
req.open("POST", "/upload");
var formData = new FormData();
formData.append("data", fO.files[0], name);
req.send(formData);
fO.value = '';
return false;
}
</script>
<style>@import url("style.css");</style>
</head>

View File

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